From python-checkins at python.org Tue Mar 1 00:03:28 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 1 Mar 2011 00:03:28 +0100 (CET) Subject: [Python-checkins] r88687 - in python/branches/release32-maint: Doc/library/socket.rst Message-ID: <20110228230328.B8E22EEA6A@mail.python.org> Author: antoine.pitrou Date: Tue Mar 1 00:03:28 2011 New Revision: 88687 Log: Merged revisions 88686 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ........ r88686 | antoine.pitrou | 2011-02-28 23:38:07 +0100 (lun., 28 f?vr. 2011) | 4 lines Recommend inspecting the errno attribute of socket.error objects, and improve wording. ........ Modified: python/branches/release32-maint/ (props changed) python/branches/release32-maint/Doc/library/socket.rst Modified: python/branches/release32-maint/Doc/library/socket.rst ============================================================================== --- python/branches/release32-maint/Doc/library/socket.rst (original) +++ python/branches/release32-maint/Doc/library/socket.rst Tue Mar 1 00:03:28 2011 @@ -117,39 +117,44 @@ .. index:: module: errno - This exception is raised for socket-related errors. The accompanying value is - either a string telling what went wrong or a pair ``(errno, string)`` - representing an error returned by a system call, similar to the value - accompanying :exc:`os.error`. See the module :mod:`errno`, which contains names - for the error codes defined by the underlying operating system. + A subclass of :exc:`IOError`, this exception is raised for socket-related + errors. It is recommended that you inspect its ``errno`` attribute to + discriminate between different kinds of errors. + + .. seealso:: + The :mod:`errno` module contains symbolic names for the error codes + defined by the underlying operating system. .. exception:: herror - This exception is raised for address-related errors, i.e. for functions that use - *h_errno* in the C API, including :func:`gethostbyname_ex` and - :func:`gethostbyaddr`. - - The accompanying value is a pair ``(h_errno, string)`` representing an error - returned by a library call. *string* represents the description of *h_errno*, as - returned by the :c:func:`hstrerror` C function. + A subclass of :exc:`socket.error`, this exception is raised for + address-related errors, i.e. for functions that use *h_errno* in the POSIX + C API, including :func:`gethostbyname_ex` and :func:`gethostbyaddr`. + The accompanying value is a pair ``(h_errno, string)`` representing an + error returned by a library call. *h_errno* is a numeric value, while + *string* represents the description of *h_errno*, as returned by the + :c:func:`hstrerror` C function. .. exception:: gaierror - This exception is raised for address-related errors, for :func:`getaddrinfo` and - :func:`getnameinfo`. The accompanying value is a pair ``(error, string)`` - representing an error returned by a library call. *string* represents the - description of *error*, as returned by the :c:func:`gai_strerror` C function. The - *error* value will match one of the :const:`EAI_\*` constants defined in this - module. + A subclass of :exc:`socket.error`, this exception is raised for + address-related errors by :func:`getaddrinfo` and :func:`getnameinfo`. + The accompanying value is a pair ``(error, string)`` representing an error + returned by a library call. *string* represents the description of + *error*, as returned by the :c:func:`gai_strerror` C function. The + numeric *error* value will match one of the :const:`EAI_\*` constants + defined in this module. .. exception:: timeout - This exception is raised when a timeout occurs on a socket which has had - timeouts enabled via a prior call to :meth:`~socket.settimeout`. The - accompanying value is a string whose value is currently always "timed out". + A subclass of :exc:`socket.error`, this exception is raised when a timeout + occurs on a socket which has had timeouts enabled via a prior call to + :meth:`~socket.settimeout` (or implicitly through + :func:`~socket.setdefaulttimeout`). The accompanying value is a string + whose value is currently always "timed out". .. data:: AF_UNIX From python-checkins at python.org Tue Mar 1 00:18:02 2011 From: python-checkins at python.org (martin.v.loewis) Date: Tue, 1 Mar 2011 00:18:02 +0100 (CET) Subject: [Python-checkins] r88688 - python/branches/pep-382 Message-ID: <20110228231802.BB5B3EEA64@mail.python.org> Author: martin.v.loewis Date: Tue Mar 1 00:18:02 2011 New Revision: 88688 Log: Initialized merge tracking via "svnmerge" with revisions "1-85195" from svn+ssh://pythondev at svn.python.org/python/branches/py3k Modified: python/branches/pep-382/ (props changed) From python-checkins at python.org Tue Mar 1 00:48:17 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 1 Mar 2011 00:48:17 +0100 (CET) Subject: [Python-checkins] r88689 - in python/branches/release31-maint: Lib/test/support.py Lib/test/test_mmap.py Lib/test/test_zlib.py Misc/NEWS Modules/mmapmodule.c Modules/zlibmodule.c Message-ID: <20110228234817.05BF3EEA67@mail.python.org> Author: antoine.pitrou Date: Tue Mar 1 00:48:16 2011 New Revision: 88689 Log: Merged revisions 88460,88464,88466,88486,88511,88652 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ........ r88460 | antoine.pitrou | 2011-02-21 19:03:13 +0100 (lun., 21 f?vr. 2011) | 4 lines Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers larger than 4GB. Patch by Nadeem Vawda. ........ r88464 | antoine.pitrou | 2011-02-21 20:05:08 +0100 (lun., 21 f?vr. 2011) | 3 lines Fix issues on 32-bit systems introduced by r88460 ........ r88466 | antoine.pitrou | 2011-02-21 20:28:40 +0100 (lun., 21 f?vr. 2011) | 3 lines Fix compile error under MSVC introduced by r88460. ........ r88486 | antoine.pitrou | 2011-02-22 00:41:12 +0100 (mar., 22 f?vr. 2011) | 5 lines Issue #4681: Allow mmap() to work on file sizes and offsets larger than 4GB, even on 32-bit builds. Initial patch by Ross Lagerwall, adapted for 32-bit Windows. ........ r88511 | antoine.pitrou | 2011-02-22 22:42:56 +0100 (mar., 22 f?vr. 2011) | 4 lines Issue #11277: finally fix Snow Leopard crash following r88460. (probably an OS-related issue with mmap) ........ r88652 | antoine.pitrou | 2011-02-26 16:58:05 +0100 (sam., 26 f?vr. 2011) | 4 lines Issue #9931: Fix hangs in GUI tests under Windows in certain conditions. Patch by Hirokazu Yamamoto. ........ Modified: python/branches/release31-maint/ (props changed) python/branches/release31-maint/Lib/test/support.py python/branches/release31-maint/Lib/test/test_mmap.py python/branches/release31-maint/Lib/test/test_zlib.py python/branches/release31-maint/Misc/NEWS python/branches/release31-maint/Modules/mmapmodule.c python/branches/release31-maint/Modules/zlibmodule.c Modified: python/branches/release31-maint/Lib/test/support.py ============================================================================== --- python/branches/release31-maint/Lib/test/support.py (original) +++ python/branches/release31-maint/Lib/test/support.py Tue Mar 1 00:48:16 2011 @@ -198,6 +198,36 @@ # is exited) but there is a .pyo file. unlink(os.path.join(dirname, modname + '.pyo')) +# On some platforms, should not run gui test even if it is allowed +# in `use_resources'. +if sys.platform.startswith('win'): + import ctypes + import ctypes.wintypes + def _is_gui_available(): + UOI_FLAGS = 1 + WSF_VISIBLE = 0x0001 + class USEROBJECTFLAGS(ctypes.Structure): + _fields_ = [("fInherit", ctypes.wintypes.BOOL), + ("fReserved", ctypes.wintypes.BOOL), + ("dwFlags", ctypes.wintypes.DWORD)] + dll = ctypes.windll.user32 + h = dll.GetProcessWindowStation() + if not h: + raise ctypes.WinError() + uof = USEROBJECTFLAGS() + needed = ctypes.wintypes.DWORD() + res = dll.GetUserObjectInformationW(h, + UOI_FLAGS, + ctypes.byref(uof), + ctypes.sizeof(uof), + ctypes.byref(needed)) + if not res: + raise ctypes.WinError() + return bool(uof.dwFlags & WSF_VISIBLE) +else: + def _is_gui_available(): + return True + def is_resource_enabled(resource): """Test whether a resource is enabled. Known resources are set by regrtest.py.""" @@ -208,6 +238,8 @@ If the caller's module is __main__ then automatically return True. The possibility of False being returned occurs when regrtest.py is executing.""" + if resource == 'gui' and not _is_gui_available(): + raise unittest.SkipTest("Cannot use the 'gui' resource") # see if the caller's module is __main__ - if so, treat as if # the resource was set if sys._getframe(1).f_globals.get("__name__") == "__main__": @@ -869,6 +901,8 @@ return obj def requires_resource(resource): + if resource == 'gui' and not _is_gui_available(): + return unittest.skip("resource 'gui' is not available") if is_resource_enabled(resource): return _id else: Modified: python/branches/release31-maint/Lib/test/test_mmap.py ============================================================================== --- python/branches/release31-maint/Lib/test/test_mmap.py (original) +++ python/branches/release31-maint/Lib/test/test_mmap.py Tue Mar 1 00:48:16 2011 @@ -1,6 +1,6 @@ -from test.support import TESTFN, run_unittest, import_module +from test.support import TESTFN, run_unittest, import_module, unlink, requires import unittest -import os, re, itertools, socket +import os, re, itertools, socket, sys # Skip test if we can't import mmap. mmap = import_module('mmap') @@ -636,8 +636,63 @@ finally: s.close() + +class LargeMmapTests(unittest.TestCase): + + def setUp(self): + unlink(TESTFN) + + def tearDown(self): + unlink(TESTFN) + + def _working_largefile(self): + # Only run if the current filesystem supports large files. + f = open(TESTFN, 'wb', buffering=0) + try: + f.seek(0x80000001) + f.write(b'x') + f.flush() + except (IOError, OverflowError): + raise unittest.SkipTest("filesystem does not have largefile support") + finally: + f.close() + unlink(TESTFN) + + def test_large_offset(self): + if sys.platform[:3] == 'win' or sys.platform == 'darwin': + requires('largefile', + 'test requires %s bytes and a long time to run' % str(0x180000000)) + self._working_largefile() + with open(TESTFN, 'wb') as f: + f.seek(0x14FFFFFFF) + f.write(b" ") + + with open(TESTFN, 'rb') as f: + m = mmap.mmap(f.fileno(), 0, offset=0x140000000, access=mmap.ACCESS_READ) + try: + self.assertEqual(m[0xFFFFFFF], 32) + finally: + m.close() + + def test_large_filesize(self): + if sys.platform[:3] == 'win' or sys.platform == 'darwin': + requires('largefile', + 'test requires %s bytes and a long time to run' % str(0x180000000)) + self._working_largefile() + with open(TESTFN, 'wb') as f: + f.seek(0x17FFFFFFF) + f.write(b" ") + + with open(TESTFN, 'rb') as f: + m = mmap.mmap(f.fileno(), 0x10000, access=mmap.ACCESS_READ) + try: + self.assertEqual(m.size(), 0x180000000) + finally: + m.close() + + def test_main(): - run_unittest(MmapTests) + run_unittest(MmapTests, LargeMmapTests) if __name__ == '__main__': test_main() Modified: python/branches/release31-maint/Lib/test/test_zlib.py ============================================================================== --- python/branches/release31-maint/Lib/test/test_zlib.py (original) +++ python/branches/release31-maint/Lib/test/test_zlib.py Tue Mar 1 00:48:16 2011 @@ -2,10 +2,16 @@ from test import support import binascii import random -from test.support import precisionbigmemtest, _1G +import sys +from test.support import precisionbigmemtest, _1G, _4G zlib = support.import_module('zlib') +try: + import mmap +except ImportError: + mmap = None + class ChecksumTestCase(unittest.TestCase): # checksum test cases @@ -57,6 +63,28 @@ self.assertEqual(binascii.crc32(b'spam'), zlib.crc32(b'spam')) +# Issue #10276 - check that inputs >=4GB are handled correctly. +class ChecksumBigBufferTestCase(unittest.TestCase): + + def setUp(self): + with open(support.TESTFN, "wb+") as f: + f.seek(_4G) + f.write(b"asdf") + with open(support.TESTFN, "rb") as f: + self.mapping = mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ) + + def tearDown(self): + self.mapping.close() + support.unlink(support.TESTFN) + + @unittest.skipUnless(mmap, "mmap() is not available.") + @unittest.skipUnless(sys.maxsize > _4G, "Can't run on a 32-bit system.") + @unittest.skipUnless(support.is_resource_enabled("largefile"), + "May use lots of disk space.") + def test_big_buffer(self): + self.assertEqual(zlib.crc32(self.mapping), 3058686908) + self.assertEqual(zlib.adler32(self.mapping), 82837919) + class ExceptionTestCase(unittest.TestCase): # make sure we generate some expected errors @@ -567,6 +595,7 @@ def test_main(): support.run_unittest( ChecksumTestCase, + ChecksumBigBufferTestCase, ExceptionTestCase, CompressTestCase, CompressObjectTestCase Modified: python/branches/release31-maint/Misc/NEWS ============================================================================== --- python/branches/release31-maint/Misc/NEWS (original) +++ python/branches/release31-maint/Misc/NEWS Tue Mar 1 00:48:16 2011 @@ -37,6 +37,13 @@ Library ------- +- Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers + larger than 4GB. Patch by Nadeem Vawda. + +- Issue #4681: Allow mmap() to work on file sizes and offsets larger than + 4GB, even on 32-bit builds. Initial patch by Ross Lagerwall, adapted for + 32-bit Windows. + - email.header.Header was incorrectly encoding folding white space when rfc2047-encoding header values with embedded newlines, leaving them without folding whitespace. It now uses the continuation_ws, as it Modified: python/branches/release31-maint/Modules/mmapmodule.c ============================================================================== --- python/branches/release31-maint/Modules/mmapmodule.c (original) +++ python/branches/release31-maint/Modules/mmapmodule.c Tue Mar 1 00:48:16 2011 @@ -90,7 +90,11 @@ char * data; size_t size; size_t pos; /* relative to offset */ - size_t offset; +#ifdef MS_WINDOWS + PY_LONG_LONG offset; +#else + off_t offset; +#endif int exports; #ifdef MS_WINDOWS @@ -435,7 +439,11 @@ PyErr_SetFromErrno(mmap_module_error); return NULL; } - return PyLong_FromSsize_t(buf.st_size); +#ifdef HAVE_LARGEFILE_SUPPORT + return PyLong_FromLongLong(buf.st_size); +#else + return PyLong_FromLong(buf.st_size); +#endif } #endif /* UNIX */ } @@ -469,17 +477,10 @@ CloseHandle(self->map_handle); self->map_handle = NULL; /* Move to the desired EOF position */ -#if SIZEOF_SIZE_T > 4 newSizeHigh = (DWORD)((self->offset + new_size) >> 32); newSizeLow = (DWORD)((self->offset + new_size) & 0xFFFFFFFF); off_hi = (DWORD)(self->offset >> 32); off_lo = (DWORD)(self->offset & 0xFFFFFFFF); -#else - newSizeHigh = 0; - newSizeLow = (DWORD)(self->offset + new_size); - off_hi = 0; - off_lo = (DWORD)self->offset; -#endif SetFilePointer(self->file_handle, newSizeLow, &newSizeHigh, FILE_BEGIN); /* Change the size of the file */ @@ -1020,6 +1021,12 @@ } #ifdef UNIX +#ifdef HAVE_LARGEFILE_SUPPORT +#define _Py_PARSE_OFF_T "L" +#else +#define _Py_PARSE_OFF_T "l" +#endif + static PyObject * new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict) { @@ -1027,8 +1034,9 @@ struct stat st; #endif mmap_object *m_obj; - PyObject *map_size_obj = NULL, *offset_obj = NULL; - Py_ssize_t map_size, offset; + PyObject *map_size_obj = NULL; + Py_ssize_t map_size; + off_t offset = 0; int fd, flags = MAP_SHARED, prot = PROT_WRITE | PROT_READ; int devzero = -1; int access = (int)ACCESS_DEFAULT; @@ -1036,16 +1044,18 @@ "flags", "prot", "access", "offset", NULL}; - if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iO|iiiO", keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iO|iii" _Py_PARSE_OFF_T, keywords, &fd, &map_size_obj, &flags, &prot, - &access, &offset_obj)) + &access, &offset)) return NULL; map_size = _GetMapSize(map_size_obj, "size"); if (map_size < 0) return NULL; - offset = _GetMapSize(offset_obj, "offset"); - if (offset < 0) + if (offset < 0) { + PyErr_SetString(PyExc_OverflowError, + "memory mapped offset must be positive"); return NULL; + } if ((access != (int)ACCESS_DEFAULT) && ((flags != MAP_SHARED) || (prot != (PROT_WRITE | PROT_READ)))) @@ -1090,8 +1100,14 @@ "mmap offset is greater than file size"); return NULL; } - map_size = st.st_size - offset; - } else if ((size_t)offset + (size_t)map_size > st.st_size) { + off_t calc_size = st.st_size - offset; + map_size = calc_size; + if (map_size != calc_size) { + PyErr_SetString(PyExc_ValueError, + "mmap length is too large"); + return NULL; + } + } else if (offset + (size_t)map_size > st.st_size) { PyErr_SetString(PyExc_ValueError, "mmap length is greater than file size"); return NULL; @@ -1152,12 +1168,19 @@ #endif /* UNIX */ #ifdef MS_WINDOWS + +/* A note on sizes and offsets: while the actual map size must hold in a + Py_ssize_t, both the total file size and the start offset can be longer + than a Py_ssize_t, so we use PY_LONG_LONG which is always 64-bit. +*/ + static PyObject * new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict) { mmap_object *m_obj; - PyObject *map_size_obj = NULL, *offset_obj = NULL; - Py_ssize_t map_size, offset; + PyObject *map_size_obj = NULL; + Py_ssize_t map_size; + PY_LONG_LONG offset = 0, size; DWORD off_hi; /* upper 32 bits of offset */ DWORD off_lo; /* lower 32 bits of offset */ DWORD size_hi; /* upper 32 bits of size */ @@ -1172,9 +1195,9 @@ "tagname", "access", "offset", NULL }; - if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iO|ziO", keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iO|ziL", keywords, &fileno, &map_size_obj, - &tagname, &access, &offset_obj)) { + &tagname, &access, &offset)) { return NULL; } @@ -1199,9 +1222,11 @@ map_size = _GetMapSize(map_size_obj, "size"); if (map_size < 0) return NULL; - offset = _GetMapSize(offset_obj, "offset"); - if (offset < 0) + if (offset < 0) { + PyErr_SetString(PyExc_OverflowError, + "memory mapped offset must be positive"); return NULL; + } /* assume -1 and 0 both mean invalid filedescriptor to 'anonymously' map memory. @@ -1265,28 +1290,26 @@ return PyErr_SetFromWindowsErr(dwErr); } -#if SIZEOF_SIZE_T > 4 - m_obj->size = (((size_t)high)<<32) + low; -#else - if (high) - /* File is too large to map completely */ - m_obj->size = (size_t)-1; - else - m_obj->size = low; -#endif - if (offset >= m_obj->size) { + size = (((PY_LONG_LONG) high) << 32) + low; + if (offset >= size) { PyErr_SetString(PyExc_ValueError, "mmap offset is greater than file size"); Py_DECREF(m_obj); return NULL; } - m_obj->size -= offset; + if (offset - size > PY_SSIZE_T_MAX) + /* Map area too large to fit in memory */ + m_obj->size = (Py_ssize_t) -1; + else + m_obj->size = (Py_ssize_t) (size - offset); } else { m_obj->size = map_size; + size = offset + map_size; } } else { m_obj->size = map_size; + size = offset + map_size; } /* set the initial position */ @@ -1307,22 +1330,10 @@ m_obj->tagname = NULL; m_obj->access = (access_mode)access; - /* DWORD is a 4-byte int. If we're on a box where size_t consumes - * more than 4 bytes, we need to break it apart. Else (size_t - * consumes 4 bytes), C doesn't define what happens if we shift - * right by 32, so we need different code. - */ -#if SIZEOF_SIZE_T > 4 - size_hi = (DWORD)((offset + m_obj->size) >> 32); - size_lo = (DWORD)((offset + m_obj->size) & 0xFFFFFFFF); + size_hi = (DWORD)(size >> 32); + size_lo = (DWORD)(size & 0xFFFFFFFF); off_hi = (DWORD)(offset >> 32); off_lo = (DWORD)(offset & 0xFFFFFFFF); -#else - size_hi = 0; - size_lo = (DWORD)(offset + m_obj->size); - off_hi = 0; - off_lo = (DWORD)offset; -#endif /* For files, it would be sufficient to pass 0 as size. For anonymous maps, we have to pass the size explicitly. */ m_obj->map_handle = CreateFileMapping(m_obj->file_handle, Modified: python/branches/release31-maint/Modules/zlibmodule.c ============================================================================== --- python/branches/release31-maint/Modules/zlibmodule.c (original) +++ python/branches/release31-maint/Modules/zlibmodule.c Tue Mar 1 00:48:16 2011 @@ -931,8 +931,18 @@ /* Releasing the GIL for very small buffers is inefficient and may lower performance */ if (pbuf.len > 1024*5) { + unsigned char *buf = pbuf.buf; + Py_ssize_t len = pbuf.len; + Py_BEGIN_ALLOW_THREADS - adler32val = adler32(adler32val, pbuf.buf, pbuf.len); + /* Avoid truncation of length for very large buffers. adler32() takes + length as an unsigned int, which may be narrower than Py_ssize_t. */ + while (len > (size_t) UINT_MAX) { + adler32val = adler32(adler32val, buf, UINT_MAX); + buf += (size_t) UINT_MAX; + len -= (size_t) UINT_MAX; + } + adler32val = adler32(adler32val, buf, len); Py_END_ALLOW_THREADS } else { adler32val = adler32(adler32val, pbuf.buf, pbuf.len); @@ -959,8 +969,18 @@ /* Releasing the GIL for very small buffers is inefficient and may lower performance */ if (pbuf.len > 1024*5) { + unsigned char *buf = pbuf.buf; + Py_ssize_t len = pbuf.len; + Py_BEGIN_ALLOW_THREADS - signed_val = crc32(crc32val, pbuf.buf, pbuf.len); + /* Avoid truncation of length for very large buffers. crc32() takes + length as an unsigned int, which may be narrower than Py_ssize_t. */ + while (len > (size_t) UINT_MAX) { + crc32val = crc32(crc32val, buf, UINT_MAX); + buf += (size_t) UINT_MAX; + len -= (size_t) UINT_MAX; + } + signed_val = crc32(crc32val, buf, len); Py_END_ALLOW_THREADS } else { signed_val = crc32(crc32val, pbuf.buf, pbuf.len); From python-checkins at python.org Tue Mar 1 01:29:11 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 1 Mar 2011 01:29:11 +0100 (CET) Subject: [Python-checkins] r88690 - python/branches/release31-maint/Lib/test/test_zlib.py Message-ID: <20110301002911.9EB05EE9CB@mail.python.org> Author: antoine.pitrou Date: Tue Mar 1 01:29:11 2011 New Revision: 88690 Log: Apparently, skipUnless() doesn't prevent the execution of setUp() under 3.1. Modified: python/branches/release31-maint/Lib/test/test_zlib.py Modified: python/branches/release31-maint/Lib/test/test_zlib.py ============================================================================== --- python/branches/release31-maint/Lib/test/test_zlib.py (original) +++ python/branches/release31-maint/Lib/test/test_zlib.py Tue Mar 1 01:29:11 2011 @@ -66,6 +66,10 @@ # Issue #10276 - check that inputs >=4GB are handled correctly. class ChecksumBigBufferTestCase(unittest.TestCase): + @unittest.skipUnless(mmap, "mmap() is not available.") + @unittest.skipUnless(sys.maxsize > _4G, "Can't run on a 32-bit system.") + @unittest.skipUnless(support.is_resource_enabled("largefile"), + "May use lots of disk space.") def setUp(self): with open(support.TESTFN, "wb+") as f: f.seek(_4G) @@ -77,10 +81,6 @@ self.mapping.close() support.unlink(support.TESTFN) - @unittest.skipUnless(mmap, "mmap() is not available.") - @unittest.skipUnless(sys.maxsize > _4G, "Can't run on a 32-bit system.") - @unittest.skipUnless(support.is_resource_enabled("largefile"), - "May use lots of disk space.") def test_big_buffer(self): self.assertEqual(zlib.crc32(self.mapping), 3058686908) self.assertEqual(zlib.adler32(self.mapping), 82837919) From python-checkins at python.org Tue Mar 1 01:41:10 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 1 Mar 2011 01:41:10 +0100 (CET) Subject: [Python-checkins] r88691 - python/branches/py3k/Lib/test/test_telnetlib.py Message-ID: <20110301004110.BDE63EE987@mail.python.org> Author: antoine.pitrou Date: Tue Mar 1 01:41:10 2011 New Revision: 88691 Log: Endly, fix UnboundLocalError in telnetlib Modified: python/branches/py3k/Lib/test/test_telnetlib.py Modified: python/branches/py3k/Lib/test/test_telnetlib.py ============================================================================== --- python/branches/py3k/Lib/test/test_telnetlib.py (original) +++ python/branches/py3k/Lib/test/test_telnetlib.py Tue Mar 1 01:41:10 2011 @@ -17,9 +17,10 @@ conn, addr = serv.accept() except socket.timeout: pass + else: + conn.close() finally: serv.close() - conn.close() evt.set() class GeneralTests(TestCase): From python-checkins at python.org Tue Mar 1 01:45:22 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 1 Mar 2011 01:45:22 +0100 (CET) Subject: [Python-checkins] r88692 - in python/branches/release32-maint: Lib/test/test_telnetlib.py Message-ID: <20110301004522.88FF1EEA67@mail.python.org> Author: antoine.pitrou Date: Tue Mar 1 01:45:22 2011 New Revision: 88692 Log: Merged revisions 88691 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ........ r88691 | antoine.pitrou | 2011-03-01 01:41:10 +0100 (mar., 01 mars 2011) | 3 lines Endly, fix UnboundLocalError in telnetlib ........ Modified: python/branches/release32-maint/ (props changed) python/branches/release32-maint/Lib/test/test_telnetlib.py Modified: python/branches/release32-maint/Lib/test/test_telnetlib.py ============================================================================== --- python/branches/release32-maint/Lib/test/test_telnetlib.py (original) +++ python/branches/release32-maint/Lib/test/test_telnetlib.py Tue Mar 1 01:45:22 2011 @@ -17,9 +17,10 @@ conn, addr = serv.accept() except socket.timeout: pass + else: + conn.close() finally: serv.close() - conn.close() evt.set() class GeneralTests(TestCase): From python-checkins at python.org Tue Mar 1 01:48:40 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 1 Mar 2011 01:48:40 +0100 (CET) Subject: [Python-checkins] r88693 - in python/branches/release27-maint: Lib/test/test_telnetlib.py Message-ID: <20110301004840.D26DFEE987@mail.python.org> Author: antoine.pitrou Date: Tue Mar 1 01:48:40 2011 New Revision: 88693 Log: Merged revisions 88691 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ........ r88691 | antoine.pitrou | 2011-03-01 01:41:10 +0100 (mar., 01 mars 2011) | 3 lines Endly, fix UnboundLocalError in telnetlib ........ Modified: python/branches/release27-maint/ (props changed) python/branches/release27-maint/Lib/test/test_telnetlib.py Modified: python/branches/release27-maint/Lib/test/test_telnetlib.py ============================================================================== --- python/branches/release27-maint/Lib/test/test_telnetlib.py (original) +++ python/branches/release27-maint/Lib/test/test_telnetlib.py Tue Mar 1 01:48:40 2011 @@ -36,9 +36,10 @@ data = data[written:] except socket.timeout: pass + else: + conn.close() finally: serv.close() - conn.close() evt.set() class GeneralTests(TestCase): From jackdied at gmail.com Tue Mar 1 02:44:34 2011 From: jackdied at gmail.com (Jack Diederich) Date: Mon, 28 Feb 2011 20:44:34 -0500 Subject: [Python-checkins] r88691 - python/branches/py3k/Lib/test/test_telnetlib.py In-Reply-To: <20110301004110.BDE63EE987@mail.python.org> References: <20110301004110.BDE63EE987@mail.python.org> Message-ID: Much thanks. On Mon, Feb 28, 2011 at 7:41 PM, antoine.pitrou wrote: > Author: antoine.pitrou > Date: Tue Mar ?1 01:41:10 2011 > New Revision: 88691 > > Log: > Endly, fix UnboundLocalError in telnetlib > > > > Modified: > ? python/branches/py3k/Lib/test/test_telnetlib.py > > Modified: python/branches/py3k/Lib/test/test_telnetlib.py > ============================================================================== > --- python/branches/py3k/Lib/test/test_telnetlib.py ? ? (original) > +++ python/branches/py3k/Lib/test/test_telnetlib.py ? ? Tue Mar ?1 01:41:10 2011 > @@ -17,9 +17,10 @@ > ? ? ? ? conn, addr = serv.accept() > ? ? except socket.timeout: > ? ? ? ? pass > + ? ?else: > + ? ? ? ?conn.close() > ? ? finally: > ? ? ? ? serv.close() > - ? ? ? ?conn.close() > ? ? ? ? evt.set() > > ?class GeneralTests(TestCase): > _______________________________________________ > Python-checkins mailing list > Python-checkins at python.org > http://mail.python.org/mailman/listinfo/python-checkins > From python-checkins at python.org Tue Mar 1 02:58:04 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 01 Mar 2011 02:58:04 +0100 Subject: [Python-checkins] hooks: Fix signature and append a final linefeed Message-ID: antoine.pitrou pushed 03f2097b90f2 to hooks: http://hg.python.org/hooks/rev/03f2097b90f2 changeset: 36:03f2097b90f2 tag: tip user: Antoine Pitrou date: Tue Mar 01 02:58:01 2011 +0100 summary: Fix signature and append a final linefeed files: mail.py diff --git a/mail.py b/mail.py --- a/mail.py +++ b/mail.py @@ -42,7 +42,7 @@ differ = patch.diff(repo, node1, node2, opts=diffopts) body.append(''.join(chunk for chunk in differ)) - body.append('--') + body.append('-- ') body.append('Repository URL: %s%s' % (BASE, path)) to = ui.config('mail', 'notify', None) @@ -66,6 +66,6 @@ if len(parents) > 1: subj = "merge in " + subj - send(subj, FROM % user, to, '\n'.join(body)) + send(subj, FROM % user, to, '\n'.join(body) + '\n') print 'notified %s of incoming changeset %s' % (to, ctx) return False -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Tue Mar 1 02:59:08 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 01 Mar 2011 02:59:08 +0100 Subject: [Python-checkins] hooks: Test commit for hook Message-ID: antoine.pitrou pushed 3dec545110c4 to hooks: http://hg.python.org/hooks/rev/3dec545110c4 changeset: 37:3dec545110c4 tag: tip user: Antoine Pitrou date: Tue Mar 01 02:59:03 2011 +0100 summary: Test commit for hook files: mail.py diff --git a/mail.py b/mail.py --- a/mail.py +++ b/mail.py @@ -69,3 +69,4 @@ send(subj, FROM % user, to, '\n'.join(body) + '\n') print 'notified %s of incoming changeset %s' % (to, ctx) return False + -- Repository URL: http://hg.python.org/hooks From solipsis at pitrou.net Tue Mar 1 05:08:11 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Tue, 01 Mar 2011 05:08:11 +0100 Subject: [Python-checkins] Daily py3k reference leaks (r88691): sum=0 Message-ID: py3k results for svn r88691 (hg cset 7d05f3832125) -------------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/py3k/refleaks/reflog6JJOzv', '-x'] From python-checkins at python.org Tue Mar 1 07:11:40 2011 From: python-checkins at python.org (georg.brandl) Date: Tue, 01 Mar 2011 07:11:40 +0100 Subject: [Python-checkins] hooks: No need to duplicate information, or to display "tag: tip" in every email. Message-ID: georg.brandl pushed 04e822217fb3 to hooks: http://hg.python.org/hooks/rev/04e822217fb3 changeset: 38:04e822217fb3 tag: tip user: Georg Brandl date: Tue Mar 01 07:10:38 2011 +0100 summary: No need to duplicate information, or to display "tag: tip" in every email. files: mail.py diff --git a/mail.py b/mail.py --- a/mail.py +++ b/mail.py @@ -29,9 +29,11 @@ user = os.environ.get('HGPUSHER', 'local') path = '/'.join(repo.root.split('/')[4:]) - body = ['%s pushed %s to %s:' % (user, str(ctx), path), ''] + body = [] + #body += ['%s pushed %s to %s:' % (user, str(ctx), path), ''] body += [CSET_URL % (path, ctx)] - body += log.splitlines()[:-2] + body += [line for line in log.splitlines()[:-2] + if line != 'tag: tip\n'] body += ['summary:\n ' + ctx.description(), ''] body += ['files:\n ' + '\n '.join(ctx.files()), ''] -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Tue Mar 1 07:13:14 2011 From: python-checkins at python.org (georg.brandl) Date: Tue, 01 Mar 2011 07:13:14 +0100 Subject: [Python-checkins] hooks: Give the mail hook a docstring. Message-ID: georg.brandl pushed c4e31850ceb0 to hooks: http://hg.python.org/hooks/rev/c4e31850ceb0 changeset: 39:c4e31850ceb0 tag: tip user: Georg Brandl date: Tue Mar 01 07:12:12 2011 +0100 summary: Give the mail hook a docstring. files: mail.py diff --git a/mail.py b/mail.py --- a/mail.py +++ b/mail.py @@ -1,3 +1,9 @@ +""" +Mercurial hook to send an email for each changeset to a specified address. + +Use as an "incoming" hook. +""" + from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText from mercurial import cmdutil, patch -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Tue Mar 1 07:15:58 2011 From: python-checkins at python.org (georg.brandl) Date: Tue, 01 Mar 2011 07:15:58 +0100 Subject: [Python-checkins] hooks: Test commit for hook change. Message-ID: http://hg.python.org/hooks/rev/f17d5575f5e4 changeset: 40:f17d5575f5e4 tag: tip user: Georg Brandl date: Tue Mar 01 07:14:56 2011 +0100 summary: Test commit for hook change. files: mail.py diff --git a/mail.py b/mail.py --- a/mail.py +++ b/mail.py @@ -1,7 +1,7 @@ """ Mercurial hook to send an email for each changeset to a specified address. -Use as an "incoming" hook. +For use as an "incoming" hook. """ from email.mime.multipart import MIMEMultipart -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Tue Mar 1 07:18:57 2011 From: python-checkins at python.org (georg.brandl) Date: Tue, 01 Mar 2011 07:18:57 +0100 Subject: [Python-checkins] cpython: Test. Message-ID: http://hg.python.org/cpython/rev/e543abbdbd32 changeset: 68070:e543abbdbd32 tag: tip user: Georg Brandl date: Tue Mar 01 07:17:05 2011 +0100 summary: Test. files: README diff --git a/README b/README --- a/README +++ b/README @@ -1,5 +1,5 @@ -This is Python version 3.3 alpha 0 -================================== +This is Python version 3.3 alpha -1 +=================================== Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Python Software Foundation. All rights reserved. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 1 07:19:31 2011 From: python-checkins at python.org (georg.brandl) Date: Tue, 01 Mar 2011 07:19:31 +0100 Subject: [Python-checkins] hooks: Fix line. Message-ID: http://hg.python.org/hooks/rev/95b6d01e8e84 changeset: 41:95b6d01e8e84 tag: tip user: Georg Brandl date: Tue Mar 01 07:18:29 2011 +0100 summary: Fix line. files: mail.py diff --git a/mail.py b/mail.py --- a/mail.py +++ b/mail.py @@ -39,7 +39,7 @@ #body += ['%s pushed %s to %s:' % (user, str(ctx), path), ''] body += [CSET_URL % (path, ctx)] body += [line for line in log.splitlines()[:-2] - if line != 'tag: tip\n'] + if line != 'tag: tip'] body += ['summary:\n ' + ctx.description(), ''] body += ['files:\n ' + '\n '.join(ctx.files()), ''] -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Tue Mar 1 07:20:09 2011 From: python-checkins at python.org (georg.brandl) Date: Tue, 01 Mar 2011 07:20:09 +0100 Subject: [Python-checkins] cpython: Test back. Message-ID: http://hg.python.org/cpython/rev/f3613bbf262b changeset: 68071:f3613bbf262b user: Georg Brandl date: Tue Mar 01 07:18:50 2011 +0100 summary: Test back. files: README diff --git a/README b/README --- a/README +++ b/README @@ -1,5 +1,5 @@ -This is Python version 3.3 alpha -1 -=================================== +This is Python version 3.3 alpha 0 +================================== Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Python Software Foundation. All rights reserved. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 1 11:31:57 2011 From: python-checkins at python.org (eric.araujo) Date: Tue, 01 Mar 2011 11:31:57 +0100 Subject: [Python-checkins] devguide (hg_transition): Typo spotted by Terry J. Reedy Message-ID: http://hg.python.org/devguide/rev/1c75014da80e changeset: 350:1c75014da80e branch: hg_transition user: ?ric Araujo date: Tue Mar 01 11:31:37 2011 +0100 summary: Typo spotted by Terry J. Reedy files: patch.rst diff --git a/patch.rst b/patch.rst --- a/patch.rst +++ b/patch.rst @@ -119,7 +119,7 @@ make patchcheck This will check and/or fix various common things people forget to do for -patches, such as adding any new files needing for the patch to work (note +patches, such as adding any new files needed for the patch to work (note that not all checks apply to non-core developers). Assume you are using the :ref:`mq approach ` suggested earlier, -- Repository URL: http://hg.python.org/devguide From ncoghlan at gmail.com Tue Mar 1 14:36:38 2011 From: ncoghlan at gmail.com (Nick Coghlan) Date: Tue, 1 Mar 2011 23:36:38 +1000 Subject: [Python-checkins] devinabox: Add a Python script which will run the test suite in the most rigorous way In-Reply-To: References: Message-ID: On Tue, Mar 1, 2011 at 8:03 AM, brett.cannon wrote: > brett.cannon pushed 3e5a61adb41d to devinabox: > > http://hg.python.org/devinabox/rev/3e5a61adb41d > changeset: ? 8:3e5a61adb41d > user: ? ? ? ?Brett Cannon > date: ? ? ? ?Fri Feb 25 17:35:37 2011 -0800 > summary: > ?Add a Python script which will run the test suite in the most rigorous way possible. Is there any particular reason not to stick this in the main repository somewhere, so it is available in all working copies, not just devinabox? Cheers, Nick. -- Nick Coghlan?? |?? ncoghlan at gmail.com?? |?? Brisbane, Australia From python-checkins at python.org Tue Mar 1 16:06:03 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 1 Mar 2011 16:06:03 +0100 (CET) Subject: [Python-checkins] r88695 - peps/trunk/pep-0385.txt Message-ID: <20110301150603.9E6A0EE9AE@mail.python.org> Author: antoine.pitrou Date: Tue Mar 1 16:05:57 2011 New Revision: 88695 Log: 2011 is more likely Modified: peps/trunk/pep-0385.txt Modified: peps/trunk/pep-0385.txt ============================================================================== --- peps/trunk/pep-0385.txt (original) +++ peps/trunk/pep-0385.txt Tue Mar 1 16:05:57 2011 @@ -54,7 +54,7 @@ hooks will be installed for the test repository, in order to test buildbot, diff-email and whitespace checking integration. -- 2010-03-05: final conversion (tentative) +- 2011-03-05: final conversion (tentative) Commits to the Subversion branches now maintained in Mercurial will be blocked. Developers should refrain from pushing to the Mercurial From python-checkins at python.org Tue Mar 1 19:26:57 2011 From: python-checkins at python.org (eric.araujo) Date: Tue, 1 Mar 2011 19:26:57 +0100 (CET) Subject: [Python-checkins] r88696 - python/branches/py3k/Doc/library/getopt.rst Message-ID: <20110301182657.06B97EE982@mail.python.org> Author: eric.araujo Date: Tue Mar 1 19:26:56 2011 New Revision: 88696 Log: Remove outdated pointer to optparse (fixes #11360). The doc already points to argparse. Modified: python/branches/py3k/Doc/library/getopt.rst Modified: python/branches/py3k/Doc/library/getopt.rst ============================================================================== --- python/branches/py3k/Doc/library/getopt.rst (original) +++ python/branches/py3k/Doc/library/getopt.rst Tue Mar 1 19:26:56 2011 @@ -22,9 +22,6 @@ options similar to those supported by GNU software may be used as well via an optional third argument. -A more convenient, flexible, and powerful alternative is the -:mod:`optparse` module. - This module provides two functions and an exception: From python-checkins at python.org Tue Mar 1 20:47:30 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 01 Mar 2011 20:47:30 +0100 Subject: [Python-checkins] devguide (hg_transition): Rename page to "Committing and Pushing Changes" Message-ID: http://hg.python.org/devguide/rev/e0f2e1f44e79 changeset: 351:e0f2e1f44e79 branch: hg_transition user: Antoine Pitrou date: Tue Mar 01 20:39:04 2011 +0100 summary: Rename page to "Committing and Pushing Changes" files: committing.rst diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -1,7 +1,7 @@ .. _committing: -Committing Patches -================== +Committing and Pushing Changes +============================== Commit Messages --------------- -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Tue Mar 1 20:48:03 2011 From: python-checkins at python.org (georg.brandl) Date: Tue, 01 Mar 2011 20:48:03 +0100 Subject: [Python-checkins] devguide: Change :ref: to :doc: to get rid of anchors in links. Message-ID: http://hg.python.org/devguide/rev/a663128725d2 changeset: 352:a663128725d2 parent: 344:e8ba3be88996 user: Georg Brandl date: Tue Mar 01 20:46:33 2011 +0100 summary: Change :ref: to :doc: to get rid of anchors in links. files: index.rst diff --git a/index.rst b/index.rst --- a/index.rst +++ b/index.rst @@ -56,35 +56,35 @@ at once, but please do not skip around within the documentation as everything is written assuming preceding documentation has been read. -* :ref:`setup` +* :doc::`setup` * Coding style guides * `PEP 7`_ (Style Guide for C Code) * `PEP 8`_ (Style Guide for Python Code) -* :ref:`help` -* :ref:`patch` -* :ref:`runtests` +* :doc:`help` +* :doc:`patch` +* :doc:`runtests` * Beginner tasks to become familiar with the development process - * :ref:`docquality` - * :ref:`coverage` + * :doc:`docquality` + * :doc:`coverage` * Advanced tasks for once you are comfortable - * :ref:`silencewarnings` + * :doc:`silencewarnings` * Fixing issues found by the buildbots_ - * :ref:`fixingissues` - * :ref:`helptriage` -* :ref:`devrole` - * :ref:`triaging` - * :ref:`languishing` -* :ref:`communication` -* :ref:`coredev` - * :ref:`committing` - * :ref:`devcycle` + * :doc:`fixingissues` + * :doc:`helptriage` +* :doc:`devrole` + * :doc:`triaging` + * :doc:`languishing` +* :doc:`communication` +* :doc:`coredev` + * :doc:`committing` + * :doc:`devcycle` Proposing changes to Python itself ---------------------------------- -* :ref:`stdlibchanges` -* :ref:`langchanges` +* :doc:`stdlibchanges` +* :doc:`langchanges` .. _resources: -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Tue Mar 1 20:51:45 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 01 Mar 2011 20:51:45 +0100 Subject: [Python-checkins] devguide (hg_transition): Update instructions to use the new "server-side clone" button Message-ID: http://hg.python.org/devguide/rev/295dcd0865a0 changeset: 353:295dcd0865a0 branch: hg_transition parent: 351:e0f2e1f44e79 user: Antoine Pitrou date: Tue Mar 01 20:51:42 2011 +0100 summary: Update instructions to use the new "server-side clone" button files: committing.rst diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -227,28 +227,44 @@ --------------------------------- If you want to work on a feature long-term (perhaps you're implementing a -PEP, or even removing the GIL), you will want to publish your work somewhere. -We then recommend that you maintain it in a dedicated repository. +PEP), you will probably want to publish your work in a dedicated repository. +The following instructions will help you do so on `hg.python.org +`_'s infrastructure without requiring a lot of upstream +bandwidth. -First create a public (empty) repository on hg.python.org:: +Go to the main repository's Web page (http://hg.python.org/cpython/); there +you find a box labelled "server-side clone". Enter the relative path of the +repository you want to create on the server, for example ``features/mywork``; +and press the button. A new repository gets created on the server with all +the changesets of the original repository (it will seem very fast; this is +normal). - $ hg init ssh://hg at hg.python.org/features/mywork - -And do a local clone of that repository on your disk:: +You can now do a local clone of this repository on your disk:: $ hg clone ssh://hg at hg.python.org/features/mywork $ cd mywork -There, pull all the contents from the main repository, either from a local -clone:: +.. commented out: old instructions (without server-side cloning) - $ hg pull ../cpython - $ hg update + First create a public (empty) repository on hg.python.org:: -or directly from the network (which is of course slower):: + $ hg init ssh://hg at hg.python.org/features/mywork - $ hg pull http://hg.python.org/cpython - $ hg update + And do a local clone of that repository on your disk:: + + $ hg clone ssh://hg at hg.python.org/features/mywork + $ cd mywork + + There, pull all the contents from the main repository, either from a local + clone:: + + $ hg pull ../cpython + $ hg update + + or directly from the network (which is of course slower):: + + $ hg pull http://hg.python.org/cpython + $ hg update It is recommended that you create a new named branch for your work, so as to easily track changes. That named branch will exist in your feature @@ -267,14 +283,15 @@ ``http://hg.python.org/features/mywork`` for the read-only URL). When you want to synchronize your changes, you can pull from the main -repository:: +repository, either from its remote URL:: + + $ hg pull http://hg.python.org/cpython + +or from a local clone that you may have on your disk (which is of course +faster):: $ hg pull ../cpython -or from the network:: - - $ hg pull http://hg.python.org/cpython - and merge all new changes from branch ``default`` to branch ``mywork``:: $ hg branch -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Tue Mar 1 20:53:12 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 01 Mar 2011 20:53:12 +0100 Subject: [Python-checkins] merge in devguide (hg_transition): Merge default Message-ID: http://hg.python.org/devguide/rev/d57ea38b300e changeset: 354:d57ea38b300e branch: hg_transition parent: 353:295dcd0865a0 parent: 352:a663128725d2 user: Antoine Pitrou date: Tue Mar 01 20:53:09 2011 +0100 summary: Merge default files: index.rst diff --git a/index.rst b/index.rst --- a/index.rst +++ b/index.rst @@ -57,35 +57,35 @@ You can, *however*, read the :ref:`FAQ ` at any point! -* :ref:`setup` +* :doc::`setup` * Coding style guides * `PEP 7`_ (Style Guide for C Code) * `PEP 8`_ (Style Guide for Python Code) -* :ref:`help` -* :ref:`patch` -* :ref:`runtests` +* :doc:`help` +* :doc:`patch` +* :doc:`runtests` * Beginner tasks to become familiar with the development process - * :ref:`docquality` - * :ref:`coverage` + * :doc:`docquality` + * :doc:`coverage` * Advanced tasks for once you are comfortable - * :ref:`silencewarnings` + * :doc:`silencewarnings` * Fixing issues found by the buildbots_ - * :ref:`fixingissues` - * :ref:`helptriage` -* :ref:`devrole` - * :ref:`triaging` - * :ref:`languishing` -* :ref:`communication` -* :ref:`coredev` - * :ref:`committing` - * :ref:`devcycle` + * :doc:`fixingissues` + * :doc:`helptriage` +* :doc:`devrole` + * :doc:`triaging` + * :doc:`languishing` +* :doc:`communication` +* :doc:`coredev` + * :doc:`committing` + * :doc:`devcycle` Proposing changes to Python itself ---------------------------------- -* :ref:`stdlibchanges` -* :ref:`langchanges` +* :doc:`stdlibchanges` +* :doc:`langchanges` .. _resources: -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Tue Mar 1 20:54:08 2011 From: python-checkins at python.org (georg.brandl) Date: Tue, 01 Mar 2011 20:54:08 +0100 Subject: [Python-checkins] merge in devguide (hg_transition): merge with default Message-ID: http://hg.python.org/devguide/rev/f982319c30a6 changeset: 355:f982319c30a6 branch: hg_transition parent: 350:1c75014da80e parent: 352:a663128725d2 user: Georg Brandl date: Tue Mar 01 20:51:31 2011 +0100 summary: merge with default files: index.rst diff --git a/index.rst b/index.rst --- a/index.rst +++ b/index.rst @@ -57,35 +57,35 @@ You can, *however*, read the :ref:`FAQ ` at any point! -* :ref:`setup` +* :doc:`setup` * Coding style guides * `PEP 7`_ (Style Guide for C Code) * `PEP 8`_ (Style Guide for Python Code) -* :ref:`help` -* :ref:`patch` -* :ref:`runtests` +* :doc:`help` +* :doc:`patch` +* :doc:`runtests` * Beginner tasks to become familiar with the development process - * :ref:`docquality` - * :ref:`coverage` + * :doc:`docquality` + * :doc:`coverage` * Advanced tasks for once you are comfortable - * :ref:`silencewarnings` + * :doc:`silencewarnings` * Fixing issues found by the buildbots_ - * :ref:`fixingissues` - * :ref:`helptriage` -* :ref:`devrole` - * :ref:`triaging` - * :ref:`languishing` -* :ref:`communication` -* :ref:`coredev` - * :ref:`committing` - * :ref:`devcycle` + * :doc:`fixingissues` + * :doc:`helptriage` +* :doc:`devrole` + * :doc:`triaging` + * :doc:`languishing` +* :doc:`communication` +* :doc:`coredev` + * :doc:`committing` + * :doc:`devcycle` Proposing changes to Python itself ---------------------------------- -* :ref:`stdlibchanges` -* :ref:`langchanges` +* :doc:`stdlibchanges` +* :doc:`langchanges` .. _resources: -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Tue Mar 1 20:54:09 2011 From: python-checkins at python.org (georg.brandl) Date: Tue, 01 Mar 2011 20:54:09 +0100 Subject: [Python-checkins] merge in devguide (hg_transition): merge Message-ID: http://hg.python.org/devguide/rev/d8c44ecfd34f changeset: 356:d8c44ecfd34f branch: hg_transition parent: 355:f982319c30a6 parent: 354:d57ea38b300e user: Georg Brandl date: Tue Mar 01 20:53:00 2011 +0100 summary: merge files: index.rst diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -1,7 +1,7 @@ .. _committing: -Committing Patches -================== +Committing and Pushing Changes +============================== Commit Messages --------------- @@ -227,28 +227,44 @@ --------------------------------- If you want to work on a feature long-term (perhaps you're implementing a -PEP, or even removing the GIL), you will want to publish your work somewhere. -We then recommend that you maintain it in a dedicated repository. +PEP), you will probably want to publish your work in a dedicated repository. +The following instructions will help you do so on `hg.python.org +`_'s infrastructure without requiring a lot of upstream +bandwidth. -First create a public (empty) repository on hg.python.org:: +Go to the main repository's Web page (http://hg.python.org/cpython/); there +you find a box labelled "server-side clone". Enter the relative path of the +repository you want to create on the server, for example ``features/mywork``; +and press the button. A new repository gets created on the server with all +the changesets of the original repository (it will seem very fast; this is +normal). - $ hg init ssh://hg at hg.python.org/features/mywork - -And do a local clone of that repository on your disk:: +You can now do a local clone of this repository on your disk:: $ hg clone ssh://hg at hg.python.org/features/mywork $ cd mywork -There, pull all the contents from the main repository, either from a local -clone:: +.. commented out: old instructions (without server-side cloning) - $ hg pull ../cpython - $ hg update + First create a public (empty) repository on hg.python.org:: -or directly from the network (which is of course slower):: + $ hg init ssh://hg at hg.python.org/features/mywork - $ hg pull http://hg.python.org/cpython - $ hg update + And do a local clone of that repository on your disk:: + + $ hg clone ssh://hg at hg.python.org/features/mywork + $ cd mywork + + There, pull all the contents from the main repository, either from a local + clone:: + + $ hg pull ../cpython + $ hg update + + or directly from the network (which is of course slower):: + + $ hg pull http://hg.python.org/cpython + $ hg update It is recommended that you create a new named branch for your work, so as to easily track changes. That named branch will exist in your feature @@ -267,14 +283,15 @@ ``http://hg.python.org/features/mywork`` for the read-only URL). When you want to synchronize your changes, you can pull from the main -repository:: +repository, either from its remote URL:: + + $ hg pull http://hg.python.org/cpython + +or from a local clone that you may have on your disk (which is of course +faster):: $ hg pull ../cpython -or from the network:: - - $ hg pull http://hg.python.org/cpython - and merge all new changes from branch ``default`` to branch ``mywork``:: $ hg branch -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Tue Mar 1 20:54:47 2011 From: python-checkins at python.org (georg.brandl) Date: Tue, 01 Mar 2011 20:54:47 +0100 Subject: [Python-checkins] devguide: Typo fix. Message-ID: http://hg.python.org/devguide/rev/3fb5fe7001ea changeset: 357:3fb5fe7001ea parent: 352:a663128725d2 user: Georg Brandl date: Tue Mar 01 20:53:45 2011 +0100 summary: Typo fix. files: index.rst diff --git a/index.rst b/index.rst --- a/index.rst +++ b/index.rst @@ -56,7 +56,7 @@ at once, but please do not skip around within the documentation as everything is written assuming preceding documentation has been read. -* :doc::`setup` +* :doc:`setup` * Coding style guides * `PEP 7`_ (Style Guide for C Code) * `PEP 8`_ (Style Guide for Python Code) -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Tue Mar 1 20:58:32 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 01 Mar 2011 20:58:32 +0100 Subject: [Python-checkins] devguide: Fix link to FAQ Message-ID: http://hg.python.org/devguide/rev/540276f611ee changeset: 358:540276f611ee user: Antoine Pitrou date: Tue Mar 01 20:58:29 2011 +0100 summary: Fix link to FAQ files: index.rst diff --git a/index.rst b/index.rst --- a/index.rst +++ b/index.rst @@ -42,7 +42,7 @@ * `Issue tracker `_ * Buildbots_ -* :ref:`faq` +* :doc:`faq` * PEPs_ (Python Enhancement Proposals) @@ -99,7 +99,7 @@ * `Issue tracker `_ * `Meta tracker `_ (issue tracker for the issue tracker) - * :ref:`experts` + * :doc:`experts` * `Firefox search engine plug-in`_ * Buildbots_ * Source code @@ -107,16 +107,16 @@ * `Daily snapshot `_ * `Daily OS X installer `_ * Tool support - * :ref:`emacs` - * :ref:`gdb` + * :doc:`emacs` + * :doc:`gdb` * Various tools with configuration files as found in the `Misc directory`_ * Help with ... - * :ref:`grammar` - * :ref:`compiler` -* :ref:`faq` + * :doc:`grammar` + * :doc:`compiler` +* :doc:`faq` * PEPs_ (Python Enhancement Proposals) * `python.org maintenance`_ -* :ref:`developers` +* :doc:`developers` .. _buildbots: http://python.org/dev/buildbot/ -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Tue Mar 1 20:59:45 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 01 Mar 2011 20:59:45 +0100 Subject: [Python-checkins] merge in devguide (hg_transition): Merge from default Message-ID: http://hg.python.org/devguide/rev/cdfeb3450f6c changeset: 359:cdfeb3450f6c branch: hg_transition parent: 356:d8c44ecfd34f parent: 358:540276f611ee user: Antoine Pitrou date: Tue Mar 01 20:59:42 2011 +0100 summary: Merge from default files: index.rst diff --git a/index.rst b/index.rst --- a/index.rst +++ b/index.rst @@ -41,7 +41,7 @@ * `Issue tracker `_ * Buildbots_ -* :ref:`faq` +* :doc:`faq` * PEPs_ (Python Enhancement Proposals) @@ -55,7 +55,7 @@ at once, but please do not skip around within the documentation as everything is written assuming preceding documentation has been read. -You can, *however*, read the :ref:`FAQ ` at any point! +You can, *however*, read the :doc:`FAQ ` at any point! * :doc:`setup` * Coding style guides @@ -100,7 +100,7 @@ * `Issue tracker `_ * `Meta tracker `_ (issue tracker for the issue tracker) - * :ref:`experts` + * :doc:`experts` * `Firefox search engine plug-in`_ * Buildbots_ * Source code @@ -108,16 +108,16 @@ * `Snapshot of py3k `_ * `XXX Daily OS X installer `_ * Tool support - * :ref:`emacs` - * :ref:`gdb` + * :doc:`emacs` + * :doc:`gdb` * Various tools with configuration files as found in the `Misc directory`_ * Help with ... - * :ref:`grammar` - * :ref:`compiler` -* :ref:`faq` + * :doc:`grammar` + * :doc:`compiler` +* :doc:`faq` * PEPs_ (Python Enhancement Proposals) * `python.org maintenance`_ -* :ref:`developers` +* :doc:`developers` .. _buildbots: http://python.org/dev/buildbot/ -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Tue Mar 1 21:02:58 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 01 Mar 2011 21:02:58 +0100 Subject: [Python-checkins] pymigr: Optionally GC unused repos on the server Message-ID: http://hg.python.org/pymigr/rev/c565c1075f0b changeset: 120:c565c1075f0b user: Antoine Pitrou date: Tue Mar 01 21:02:53 2011 +0100 summary: Optionally GC unused repos on the server files: todo.txt diff --git a/todo.txt b/todo.txt --- a/todo.txt +++ b/todo.txt @@ -42,6 +42,9 @@ lookup WSGI app can reside permanently in a mod_wsgi process, building a cache at startup should be sufficient) * investigate roundup-rietveld integration changes required +* set up garbage collection of unused repos in /home/hg/repos + ("unused" meaning created more than X days ago, without a single changeset + ever committed) After migration =============== -- Repository URL: http://hg.python.org/pymigr From python-checkins at python.org Tue Mar 1 21:17:09 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 01 Mar 2011 21:17:09 +0100 Subject: [Python-checkins] devguide (hg_transition): Improve wording and remove obsolete XXX Message-ID: http://hg.python.org/devguide/rev/b2c4d9cb4463 changeset: 360:b2c4d9cb4463 branch: hg_transition user: Antoine Pitrou date: Tue Mar 01 21:17:06 2011 +0100 summary: Improve wording and remove obsolete XXX files: committing.rst diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -229,7 +229,7 @@ If you want to work on a feature long-term (perhaps you're implementing a PEP), you will probably want to publish your work in a dedicated repository. The following instructions will help you do so on `hg.python.org -`_'s infrastructure without requiring a lot of upstream +`_'s infrastructure without requiring a lot of upload bandwidth. Go to the main repository's Web page (http://hg.python.org/cpython/); there @@ -266,7 +266,7 @@ $ hg pull http://hg.python.org/cpython $ hg update -It is recommended that you create a new named branch for your work, so as +It is recommended that you create a new `named branch`_ for your work, so as to easily track changes. That named branch will exist in your feature repository, but not in the main repository:: @@ -280,10 +280,11 @@ When you push them, they will land in the public repository at ``ssh://hg at hg.python.org/features/mywork`` (or -``http://hg.python.org/features/mywork`` for the read-only URL). +``http://hg.python.org/features/mywork`` for the read-only URL). Other +people can clone the public repository and work on the code too. -When you want to synchronize your changes, you can pull from the main -repository, either from its remote URL:: +When you want to synchronize with CPython's upstream changes, you can pull +from the main repository, either from its remote URL:: $ hg pull http://hg.python.org/cpython @@ -299,10 +300,7 @@ $ hg merge default -.. XXX: since the initial "hg push" can be quite long on asymmetric - connections, we could offer a way for people to make a remote-to-remote - clone (like SVN allows creating branches by remote copying). - hg currently doesn't support that. +.. _named branch: http://mercurial.selenic.com/wiki/NamedBranches Uploading a patch for review -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Tue Mar 1 21:29:14 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 01 Mar 2011 21:29:14 +0100 Subject: [Python-checkins] hooks: a more descriptive subject line for merges Message-ID: http://hg.python.org/hooks/rev/46c91e36716d changeset: 42:46c91e36716d user: Antoine Pitrou date: Tue Mar 01 21:29:12 2011 +0100 summary: a more descriptive subject line for merges files: mail.py diff --git a/mail.py b/mail.py --- a/mail.py +++ b/mail.py @@ -58,11 +58,21 @@ print 'no email address configured' return False - branch = ctx.branch() - if branch == 'default': - branch_insert = '' + if len(parents) == 2: + b1, b2, b = parents[0].branch(), parents[1].branch(), ctx.branch() + if b in (b1, b2): + bp = b2 if b == b1 else b1 + # normal case + branch_insert = ' (merge: %s -> %s)' % (bp, b) + else: + # XXX really?? + branch_insert = ' (merge: %s + %s -> %s)' % (b1, b2, b) else: - branch_insert = ' (%s)' % branch + branch = ctx.branch() + if branch == 'default': + branch_insert = '' + else: + branch_insert = ' (%s)' % branch desc = ctx.description().splitlines()[0] if len(desc) > 80: @@ -71,8 +81,6 @@ desc = desc.rsplit(' ', 1)[0] subj = '%s%s: %s' % (path, branch_insert, desc) - if len(parents) > 1: - subj = "merge in " + subj send(subj, FROM % user, to, '\n'.join(body) + '\n') print 'notified %s of incoming changeset %s' % (to, ctx) -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Tue Mar 1 23:46:53 2011 From: python-checkins at python.org (victor.stinner) Date: Tue, 1 Mar 2011 23:46:53 +0100 (CET) Subject: [Python-checkins] r88697 - in python/branches/py3k: Lib/test/test_unicode.py Misc/NEWS Objects/unicodeobject.c Message-ID: <20110301224653.57073EE99D@mail.python.org> Author: victor.stinner Date: Tue Mar 1 23:46:52 2011 New Revision: 88697 Log: Issue #11246: Fix PyUnicode_FromFormat("%V") Decode the byte string from UTF-8 (with replace error handler) instead of ISO-8859-1 (in strict mode). Patch written by Ray Allen. Modified: python/branches/py3k/Lib/test/test_unicode.py python/branches/py3k/Misc/NEWS python/branches/py3k/Objects/unicodeobject.c Modified: python/branches/py3k/Lib/test/test_unicode.py ============================================================================== --- python/branches/py3k/Lib/test/test_unicode.py (original) +++ python/branches/py3k/Lib/test/test_unicode.py Tue Mar 1 23:46:52 2011 @@ -1462,6 +1462,19 @@ text = PyUnicode_FromFormat(b'%%A:%A', 'abc\xe9\uabcd\U0010ffff') self.assertEqual(text, r"%A:'abc\xe9\uabcd\U0010ffff'") + text = PyUnicode_FromFormat(b'repr=%V', 'abc', b'xyz') + self.assertEqual(text, 'repr=abc') + + # Test string decode from parameter of %s using utf-8. + # b'\xe4\xba\xba\xe6\xb0\x91' is utf-8 encoded byte sequence of + # '\u4eba\u6c11' + text = PyUnicode_FromFormat(b'repr=%V', None, b'\xe4\xba\xba\xe6\xb0\x91') + self.assertEqual(text, 'repr=\u4eba\u6c11') + + #Test replace error handler. + text = PyUnicode_FromFormat(b'repr=%V', None, b'abc\xff') + self.assertEqual(text, 'repr=abc\ufffd') + # Test PyUnicode_AsWideChar() def test_aswidechar(self): from _testcapi import unicode_aswidechar Modified: python/branches/py3k/Misc/NEWS ============================================================================== --- python/branches/py3k/Misc/NEWS (original) +++ python/branches/py3k/Misc/NEWS Tue Mar 1 23:46:52 2011 @@ -10,6 +10,10 @@ Core and Builtins ----------------- +- Issue #11246: Fix PyUnicode_FromFormat("%V") to decode the byte string from + UTF-8 (with replace error handler) instead of ISO-8859-1 (in strict mode). + Patch written by Ray Allen. + - Issue #11286: Raise a ValueError from calling PyMemoryView_FromBuffer with a buffer struct having a NULL data pointer. Modified: python/branches/py3k/Objects/unicodeobject.c ============================================================================== --- python/branches/py3k/Objects/unicodeobject.c (original) +++ python/branches/py3k/Objects/unicodeobject.c Tue Mar 1 23:46:52 2011 @@ -759,7 +759,7 @@ if (*f == '%') { if (*(f+1)=='%') continue; - if (*(f+1)=='S' || *(f+1)=='R' || *(f+1)=='A') + if (*(f+1)=='S' || *(f+1)=='R' || *(f+1)=='A' || *(f+1) == 'V') ++callcount; while (Py_ISDIGIT((unsigned)*f)) width = (width*10) + *f++ - '0'; @@ -879,12 +879,20 @@ { PyObject *obj = va_arg(count, PyObject *); const char *str = va_arg(count, const char *); + PyObject *str_obj; assert(obj || str); assert(!obj || PyUnicode_Check(obj)); - if (obj) + if (obj) { n += PyUnicode_GET_SIZE(obj); - else - n += strlen(str); + *callresult++ = NULL; + } + else { + str_obj = PyUnicode_DecodeUTF8(str, strlen(str), "replace"); + if (!str_obj) + goto fail; + n += PyUnicode_GET_SIZE(str_obj); + *callresult++ = str_obj; + } break; } case 'S': @@ -1087,14 +1095,18 @@ case 'V': { PyObject *obj = va_arg(vargs, PyObject *); - const char *str = va_arg(vargs, const char *); + va_arg(vargs, const char *); if (obj) { Py_ssize_t size = PyUnicode_GET_SIZE(obj); Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(obj), size); s += size; } else { - appendstring(str); + Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(*callresult), + PyUnicode_GET_SIZE(*callresult)); + s += PyUnicode_GET_SIZE(*callresult); + Py_DECREF(*callresult); } + ++callresult; break; } case 'S': @@ -1151,7 +1163,7 @@ if (callresults) { PyObject **callresult2 = callresults; while (callresult2 < callresult) { - Py_DECREF(*callresult2); + Py_XDECREF(*callresult2); ++callresult2; } PyObject_Free(callresults); From python-checkins at python.org Tue Mar 1 23:48:50 2011 From: python-checkins at python.org (victor.stinner) Date: Tue, 1 Mar 2011 23:48:50 +0100 (CET) Subject: [Python-checkins] r88698 - in python/branches/release32-maint: Lib/test/test_unicode.py Misc/NEWS Objects/unicodeobject.c Message-ID: <20110301224850.0A81FEE982@mail.python.org> Author: victor.stinner Date: Tue Mar 1 23:48:49 2011 New Revision: 88698 Log: Merged revisions 88697 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ........ r88697 | victor.stinner | 2011-03-01 23:46:52 +0100 (mar., 01 mars 2011) | 4 lines Issue #11246: Fix PyUnicode_FromFormat("%V") Decode the byte string from UTF-8 (with replace error handler) instead of ISO-8859-1 (in strict mode). Patch written by Ray Allen. ........ Modified: python/branches/release32-maint/ (props changed) python/branches/release32-maint/Lib/test/test_unicode.py python/branches/release32-maint/Misc/NEWS python/branches/release32-maint/Objects/unicodeobject.c Modified: python/branches/release32-maint/Lib/test/test_unicode.py ============================================================================== --- python/branches/release32-maint/Lib/test/test_unicode.py (original) +++ python/branches/release32-maint/Lib/test/test_unicode.py Tue Mar 1 23:48:49 2011 @@ -1459,6 +1459,19 @@ text = PyUnicode_FromFormat(b'%%A:%A', 'abc\xe9\uabcd\U0010ffff') self.assertEqual(text, r"%A:'abc\xe9\uabcd\U0010ffff'") + text = PyUnicode_FromFormat(b'repr=%V', 'abc', b'xyz') + self.assertEqual(text, 'repr=abc') + + # Test string decode from parameter of %s using utf-8. + # b'\xe4\xba\xba\xe6\xb0\x91' is utf-8 encoded byte sequence of + # '\u4eba\u6c11' + text = PyUnicode_FromFormat(b'repr=%V', None, b'\xe4\xba\xba\xe6\xb0\x91') + self.assertEqual(text, 'repr=\u4eba\u6c11') + + #Test replace error handler. + text = PyUnicode_FromFormat(b'repr=%V', None, b'abc\xff') + self.assertEqual(text, 'repr=abc\ufffd') + # Test PyUnicode_AsWideChar() def test_aswidechar(self): from _testcapi import unicode_aswidechar Modified: python/branches/release32-maint/Misc/NEWS ============================================================================== --- python/branches/release32-maint/Misc/NEWS (original) +++ python/branches/release32-maint/Misc/NEWS Tue Mar 1 23:48:49 2011 @@ -10,6 +10,10 @@ Core and Builtins ----------------- +- Issue #11246: Fix PyUnicode_FromFormat("%V") to decode the byte string from + UTF-8 (with replace error handler) instead of ISO-8859-1 (in strict mode). + Patch written by Ray Allen. + - Issue #11286: Raise a ValueError from calling PyMemoryView_FromBuffer with a buffer struct having a NULL data pointer. Modified: python/branches/release32-maint/Objects/unicodeobject.c ============================================================================== --- python/branches/release32-maint/Objects/unicodeobject.c (original) +++ python/branches/release32-maint/Objects/unicodeobject.c Tue Mar 1 23:48:49 2011 @@ -752,7 +752,7 @@ if (*f == '%') { if (*(f+1)=='%') continue; - if (*(f+1)=='S' || *(f+1)=='R' || *(f+1)=='A') + if (*(f+1)=='S' || *(f+1)=='R' || *(f+1)=='A' || *(f+1) == 'V') ++callcount; while (Py_ISDIGIT((unsigned)*f)) width = (width*10) + *f++ - '0'; @@ -872,12 +872,20 @@ { PyObject *obj = va_arg(count, PyObject *); const char *str = va_arg(count, const char *); + PyObject *str_obj; assert(obj || str); assert(!obj || PyUnicode_Check(obj)); - if (obj) + if (obj) { n += PyUnicode_GET_SIZE(obj); - else - n += strlen(str); + *callresult++ = NULL; + } + else { + str_obj = PyUnicode_DecodeUTF8(str, strlen(str), "replace"); + if (!str_obj) + goto fail; + n += PyUnicode_GET_SIZE(str_obj); + *callresult++ = str_obj; + } break; } case 'S': @@ -1080,14 +1088,18 @@ case 'V': { PyObject *obj = va_arg(vargs, PyObject *); - const char *str = va_arg(vargs, const char *); + va_arg(vargs, const char *); if (obj) { Py_ssize_t size = PyUnicode_GET_SIZE(obj); Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(obj), size); s += size; } else { - appendstring(str); + Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(*callresult), + PyUnicode_GET_SIZE(*callresult)); + s += PyUnicode_GET_SIZE(*callresult); + Py_DECREF(*callresult); } + ++callresult; break; } case 'S': @@ -1144,7 +1156,7 @@ if (callresults) { PyObject **callresult2 = callresults; while (callresult2 < callresult) { - Py_DECREF(*callresult2); + Py_XDECREF(*callresult2); ++callresult2; } PyObject_Free(callresults); From python-checkins at python.org Wed Mar 2 00:05:42 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 2 Mar 2011 00:05:42 +0100 (CET) Subject: [Python-checkins] r88699 - in python/branches/py3k: Lib/_dummy_thread.py Lib/test/test_dummy_thread.py Misc/ACKS Misc/NEWS Message-ID: <20110301230542.8E1A0EE9BE@mail.python.org> Author: antoine.pitrou Date: Wed Mar 2 00:05:42 2011 New Revision: 88699 Log: Followup to issue #11140 and r88682: also patch _dummy_thread. Patch by Aymeric Augustin. Modified: python/branches/py3k/Lib/_dummy_thread.py python/branches/py3k/Lib/test/test_dummy_thread.py python/branches/py3k/Misc/ACKS python/branches/py3k/Misc/NEWS Modified: python/branches/py3k/Lib/_dummy_thread.py ============================================================================== --- python/branches/py3k/Lib/_dummy_thread.py (original) +++ python/branches/py3k/Lib/_dummy_thread.py Wed Mar 2 00:05:42 2011 @@ -24,11 +24,7 @@ # imports are done when needed on a function-by-function basis. Since threads # are disabled, the import lock should not be an issue anyway (??). -class error(Exception): - """Dummy implementation of _thread.error.""" - - def __init__(self, *args): - self.args = args +error = RuntimeError def start_new_thread(function, args, kwargs={}): """Dummy implementation of _thread.start_new_thread(). Modified: python/branches/py3k/Lib/test/test_dummy_thread.py ============================================================================== --- python/branches/py3k/Lib/test/test_dummy_thread.py (original) +++ python/branches/py3k/Lib/test/test_dummy_thread.py Wed Mar 2 00:05:42 2011 @@ -35,8 +35,8 @@ "Lock object did not release properly.") def test_improper_release(self): - #Make sure release of an unlocked thread raises _thread.error - self.assertRaises(_thread.error, self.lock.release) + #Make sure release of an unlocked thread raises RuntimeError + self.assertRaises(RuntimeError, self.lock.release) def test_cond_acquire_success(self): #Make sure the conditional acquiring of the lock works. Modified: python/branches/py3k/Misc/ACKS ============================================================================== --- python/branches/py3k/Misc/ACKS (original) +++ python/branches/py3k/Misc/ACKS Wed Mar 2 00:05:42 2011 @@ -35,6 +35,7 @@ Jason Asbahr David Ascher Chris AtLee +Aymeric Augustin John Aycock Jan-Hein B?hrman Donovan Baarda Modified: python/branches/py3k/Misc/NEWS ============================================================================== --- python/branches/py3k/Misc/NEWS (original) +++ python/branches/py3k/Misc/NEWS Wed Mar 2 00:05:42 2011 @@ -44,7 +44,7 @@ - Issue #11140: Lock.release() now raises a RuntimeError when attempting to release an unacquired lock, as claimed in the threading documentation. The _thread.error exception is now an alias of RuntimeError. Patch by - Filip Gruszczy?ski. + Filip Gruszczy?ski. Patch for _dummy_thread by Aymeric Augustin. - Issue 8594: ftplib now provides a source_address parameter to specify which (address, port) to bind to before connecting. From python-checkins at python.org Wed Mar 2 00:08:36 2011 From: python-checkins at python.org (victor.stinner) Date: Wed, 2 Mar 2011 00:08:36 +0100 (CET) Subject: [Python-checkins] r88700 - in python/branches/py3k: Lib/test/test_cgi.py Misc/NEWS Message-ID: <20110301230836.875A2EE990@mail.python.org> Author: victor.stinner Date: Wed Mar 2 00:08:36 2011 New Revision: 88700 Log: Issue #10911: Add tests on CGI with non-ASCII characters Patch written by Pierre Quentel Modified: python/branches/py3k/Lib/test/test_cgi.py python/branches/py3k/Misc/NEWS Modified: python/branches/py3k/Lib/test/test_cgi.py ============================================================================== --- python/branches/py3k/Lib/test/test_cgi.py (original) +++ python/branches/py3k/Lib/test/test_cgi.py Wed Mar 2 00:08:36 2011 @@ -197,30 +197,12 @@ def test_fieldstorage_multipart(self): #Test basic FieldStorage multipart parsing - env = {'REQUEST_METHOD':'POST', 'CONTENT_TYPE':'multipart/form-data; boundary=---------------------------721837373350705526688164684', 'CONTENT_LENGTH':'558'} - postdata = """-----------------------------721837373350705526688164684 -Content-Disposition: form-data; name="id" - -1234 ------------------------------721837373350705526688164684 -Content-Disposition: form-data; name="title" - - ------------------------------721837373350705526688164684 -Content-Disposition: form-data; name="file"; filename="test.txt" -Content-Type: text/plain - -Testing 123. - ------------------------------721837373350705526688164684 -Content-Disposition: form-data; name="submit" - - Add\x20 ------------------------------721837373350705526688164684-- -""" - encoding = 'ascii' - fp = BytesIO(postdata.encode(encoding)) - fs = cgi.FieldStorage(fp, environ=env, encoding=encoding) + env = { + 'REQUEST_METHOD': 'POST', + 'CONTENT_TYPE': 'multipart/form-data; boundary={}'.format(BOUNDARY), + 'CONTENT_LENGTH': '558'} + fp = BytesIO(POSTDATA.encode('latin-1')) + fs = cgi.FieldStorage(fp, environ=env, encoding="latin-1") self.assertEqual(len(fs.list), 4) expect = [{'name':'id', 'filename':None, 'value':'1234'}, {'name':'title', 'filename':None, 'value':''}, @@ -231,6 +213,21 @@ got = getattr(fs.list[x], k) self.assertEqual(got, exp) + def test_fieldstorage_multipart_non_ascii(self): + #Test basic FieldStorage multipart parsing + env = {'REQUEST_METHOD':'POST', + 'CONTENT_TYPE': 'multipart/form-data; boundary={}'.format(BOUNDARY), + 'CONTENT_LENGTH':'558'} + for encoding in ['iso-8859-1','utf-8']: + fp = BytesIO(POSTDATA_NON_ASCII.encode(encoding)) + fs = cgi.FieldStorage(fp, environ=env,encoding=encoding) + self.assertEqual(len(fs.list), 1) + expect = [{'name':'id', 'filename':None, 'value':'\xe7\xf1\x80'}] + for x in range(len(fs.list)): + for k, exp in expect[x].items(): + got = getattr(fs.list[x], k) + self.assertEqual(got, exp) + _qs_result = { 'key1': 'value1', 'key2': ['value2x', 'value2y'], @@ -346,6 +343,36 @@ cgi.parse_header('attachment; filename="strange;name";size=123;'), ("attachment", {"filename": "strange;name", "size": "123"})) +BOUNDARY = "---------------------------721837373350705526688164684" + +POSTDATA = """-----------------------------721837373350705526688164684 +Content-Disposition: form-data; name="id" + +1234 +-----------------------------721837373350705526688164684 +Content-Disposition: form-data; name="title" + + +-----------------------------721837373350705526688164684 +Content-Disposition: form-data; name="file"; filename="test.txt" +Content-Type: text/plain + +Testing 123. + +-----------------------------721837373350705526688164684 +Content-Disposition: form-data; name="submit" + + Add\x20 +-----------------------------721837373350705526688164684-- +""" + +POSTDATA_NON_ASCII = """-----------------------------721837373350705526688164684 +Content-Disposition: form-data; name="id" + +\xe7\xf1\x80 +-----------------------------721837373350705526688164684 +""" + def test_main(): run_unittest(CgiTests) Modified: python/branches/py3k/Misc/NEWS ============================================================================== --- python/branches/py3k/Misc/NEWS (original) +++ python/branches/py3k/Misc/NEWS Wed Mar 2 00:08:36 2011 @@ -122,6 +122,9 @@ Tests ----- +- Issue #10911: Add tests on CGI with non-ASCII characters. Patch written by + Pierre Quentel. + - Issue #9931: Fix hangs in GUI tests under Windows in certain conditions. Patch by Hirokazu Yamamoto. From python-checkins at python.org Wed Mar 2 00:09:57 2011 From: python-checkins at python.org (victor.stinner) Date: Wed, 2 Mar 2011 00:09:57 +0100 (CET) Subject: [Python-checkins] r88701 - in python/branches/release32-maint: Lib/test/test_cgi.py Misc/NEWS Message-ID: <20110301230957.BB633EE990@mail.python.org> Author: victor.stinner Date: Wed Mar 2 00:09:57 2011 New Revision: 88701 Log: Merged revisions 88700 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ........ r88700 | victor.stinner | 2011-03-02 00:08:36 +0100 (mer., 02 mars 2011) | 3 lines Issue #10911: Add tests on CGI with non-ASCII characters Patch written by Pierre Quentel ........ Modified: python/branches/release32-maint/ (props changed) python/branches/release32-maint/Lib/test/test_cgi.py python/branches/release32-maint/Misc/NEWS Modified: python/branches/release32-maint/Lib/test/test_cgi.py ============================================================================== --- python/branches/release32-maint/Lib/test/test_cgi.py (original) +++ python/branches/release32-maint/Lib/test/test_cgi.py Wed Mar 2 00:09:57 2011 @@ -197,30 +197,12 @@ def test_fieldstorage_multipart(self): #Test basic FieldStorage multipart parsing - env = {'REQUEST_METHOD':'POST', 'CONTENT_TYPE':'multipart/form-data; boundary=---------------------------721837373350705526688164684', 'CONTENT_LENGTH':'558'} - postdata = """-----------------------------721837373350705526688164684 -Content-Disposition: form-data; name="id" - -1234 ------------------------------721837373350705526688164684 -Content-Disposition: form-data; name="title" - - ------------------------------721837373350705526688164684 -Content-Disposition: form-data; name="file"; filename="test.txt" -Content-Type: text/plain - -Testing 123. - ------------------------------721837373350705526688164684 -Content-Disposition: form-data; name="submit" - - Add\x20 ------------------------------721837373350705526688164684-- -""" - encoding = 'ascii' - fp = BytesIO(postdata.encode(encoding)) - fs = cgi.FieldStorage(fp, environ=env, encoding=encoding) + env = { + 'REQUEST_METHOD': 'POST', + 'CONTENT_TYPE': 'multipart/form-data; boundary={}'.format(BOUNDARY), + 'CONTENT_LENGTH': '558'} + fp = BytesIO(POSTDATA.encode('latin-1')) + fs = cgi.FieldStorage(fp, environ=env, encoding="latin-1") self.assertEqual(len(fs.list), 4) expect = [{'name':'id', 'filename':None, 'value':'1234'}, {'name':'title', 'filename':None, 'value':''}, @@ -231,6 +213,21 @@ got = getattr(fs.list[x], k) self.assertEqual(got, exp) + def test_fieldstorage_multipart_non_ascii(self): + #Test basic FieldStorage multipart parsing + env = {'REQUEST_METHOD':'POST', + 'CONTENT_TYPE': 'multipart/form-data; boundary={}'.format(BOUNDARY), + 'CONTENT_LENGTH':'558'} + for encoding in ['iso-8859-1','utf-8']: + fp = BytesIO(POSTDATA_NON_ASCII.encode(encoding)) + fs = cgi.FieldStorage(fp, environ=env,encoding=encoding) + self.assertEqual(len(fs.list), 1) + expect = [{'name':'id', 'filename':None, 'value':'\xe7\xf1\x80'}] + for x in range(len(fs.list)): + for k, exp in expect[x].items(): + got = getattr(fs.list[x], k) + self.assertEqual(got, exp) + _qs_result = { 'key1': 'value1', 'key2': ['value2x', 'value2y'], @@ -346,6 +343,36 @@ cgi.parse_header('attachment; filename="strange;name";size=123;'), ("attachment", {"filename": "strange;name", "size": "123"})) +BOUNDARY = "---------------------------721837373350705526688164684" + +POSTDATA = """-----------------------------721837373350705526688164684 +Content-Disposition: form-data; name="id" + +1234 +-----------------------------721837373350705526688164684 +Content-Disposition: form-data; name="title" + + +-----------------------------721837373350705526688164684 +Content-Disposition: form-data; name="file"; filename="test.txt" +Content-Type: text/plain + +Testing 123. + +-----------------------------721837373350705526688164684 +Content-Disposition: form-data; name="submit" + + Add\x20 +-----------------------------721837373350705526688164684-- +""" + +POSTDATA_NON_ASCII = """-----------------------------721837373350705526688164684 +Content-Disposition: form-data; name="id" + +\xe7\xf1\x80 +-----------------------------721837373350705526688164684 +""" + def test_main(): run_unittest(CgiTests) Modified: python/branches/release32-maint/Misc/NEWS ============================================================================== --- python/branches/release32-maint/Misc/NEWS (original) +++ python/branches/release32-maint/Misc/NEWS Wed Mar 2 00:09:57 2011 @@ -62,6 +62,9 @@ Tests ----- +- Issue #10911: Add tests on CGI with non-ASCII characters. Patch written by + Pierre Quentel. + - Issue #9931: Fix hangs in GUI tests under Windows in certain conditions. Patch by Hirokazu Yamamoto. From python-checkins at python.org Wed Mar 2 00:44:09 2011 From: python-checkins at python.org (victor.stinner) Date: Wed, 2 Mar 2011 00:44:09 +0100 (CET) Subject: [Python-checkins] r88702 - in python/branches/py3k: Lib/test/test_unicode.py Misc/NEWS Objects/unicodeobject.c Message-ID: <20110301234409.DA35BEE986@mail.python.org> Author: victor.stinner Date: Wed Mar 2 00:44:09 2011 New Revision: 88702 Log: Issue #10829: Refactor PyUnicode_FromFormat() * Use the same function to parse the format string in the 3 steps * Fix crashs on invalid format strings Modified: python/branches/py3k/Lib/test/test_unicode.py python/branches/py3k/Misc/NEWS python/branches/py3k/Objects/unicodeobject.c Modified: python/branches/py3k/Lib/test/test_unicode.py ============================================================================== --- python/branches/py3k/Lib/test/test_unicode.py (original) +++ python/branches/py3k/Lib/test/test_unicode.py Wed Mar 2 00:44:09 2011 @@ -1455,9 +1455,28 @@ 'string, got a non-ASCII byte: 0xe9$', PyUnicode_FromFormat, b'unicode\xe9=%s', 'ascii') + # test "%c" self.assertEqual(PyUnicode_FromFormat(b'%c', c_int(0xabcd)), '\uabcd') self.assertEqual(PyUnicode_FromFormat(b'%c', c_int(0x10ffff)), '\U0010ffff') + # test "%" + self.assertEqual(PyUnicode_FromFormat(b'%'), '%') + self.assertEqual(PyUnicode_FromFormat(b'%%'), '%') + self.assertEqual(PyUnicode_FromFormat(b'%%s'), '%s') + self.assertEqual(PyUnicode_FromFormat(b'[%%]'), '[%]') + self.assertEqual(PyUnicode_FromFormat(b'%%%s', b'abc'), '%abc') + + # test "%i" + self.assertEqual(PyUnicode_FromFormat(b'%03i', c_int(10)), '010') + self.assertEqual(PyUnicode_FromFormat(b'%0.4i', c_int(10)), '0010') + + # not supported: copy the raw format string. these tests are just here + # to check for crashs and should not be considered as specifications + self.assertEqual(PyUnicode_FromFormat(b'%1%s', b'abc'), '%s') + self.assertEqual(PyUnicode_FromFormat(b'%1abc'), '%1abc') + self.assertEqual(PyUnicode_FromFormat(b'%+i', c_int(10)), '%+i') + self.assertEqual(PyUnicode_FromFormat(b'%.%s', b'abc'), '%.%s') + # other tests text = PyUnicode_FromFormat(b'%%A:%A', 'abc\xe9\uabcd\U0010ffff') self.assertEqual(text, r"%A:'abc\xe9\uabcd\U0010ffff'") Modified: python/branches/py3k/Misc/NEWS ============================================================================== --- python/branches/py3k/Misc/NEWS (original) +++ python/branches/py3k/Misc/NEWS Wed Mar 2 00:44:09 2011 @@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #10829: Refactor PyUnicode_FromFormat(), use the same function to parse + the format string in the 3 steps, fix crashs on invalid format strings. + - Issue #11246: Fix PyUnicode_FromFormat("%V") to decode the byte string from UTF-8 (with replace error handler) instead of ISO-8859-1 (in strict mode). Patch written by Ray Allen. Modified: python/branches/py3k/Objects/unicodeobject.c ============================================================================== --- python/branches/py3k/Objects/unicodeobject.c (original) +++ python/branches/py3k/Objects/unicodeobject.c Wed Mar 2 00:44:09 2011 @@ -714,6 +714,70 @@ *fmt = '\0'; } +/* helper for PyUnicode_FromFormatV() */ + +static const char* +parse_format_flags(const char *f, + int *p_width, int *p_precision, + int *p_longflag, int *p_longlongflag, int *p_size_tflag) +{ + int width, precision, longflag, longlongflag, size_tflag; + + /* parse the width.precision part, e.g. "%2.5s" => width=2, precision=5 */ + f++; + width = 0; + while (Py_ISDIGIT((unsigned)*f)) + width = (width*10) + *f++ - '0'; + precision = 0; + if (*f == '.') { + f++; + while (Py_ISDIGIT((unsigned)*f)) + precision = (precision*10) + *f++ - '0'; + if (*f == '%') { + /* "%.3%s" => f points to "3" */ + f--; + } + } + if (*f == '\0') { + /* bogus format "%.1" => go backward, f points to "1" */ + f--; + } + if (p_width != NULL) + *p_width = width; + if (p_precision != NULL) + *p_precision = precision; + + /* Handle %ld, %lu, %lld and %llu. */ + longflag = 0; + longlongflag = 0; + + if (*f == 'l') { + if (f[1] == 'd' || f[1] == 'u') { + longflag = 1; + ++f; + } +#ifdef HAVE_LONG_LONG + else if (f[1] == 'l' && + (f[2] == 'd' || f[2] == 'u')) { + longlongflag = 1; + f += 2; + } +#endif + } + /* handle the size_t flag. */ + else if (*f == 'z' && (f[1] == 'd' || f[1] == 'u')) { + size_tflag = 1; + ++f; + } + if (p_longflag != NULL) + *p_longflag = longflag; + if (p_longlongflag != NULL) + *p_longlongflag = longlongflag; + if (p_size_tflag != NULL) + *p_size_tflag = size_tflag; + return f; +} + #define appendstring(string) {for (copy = string;*copy;) *s++ = *copy++;} /* size of fixed-size buffer for formatting single arguments */ @@ -757,15 +821,9 @@ * result in an array) */ for (f = format; *f; f++) { if (*f == '%') { - if (*(f+1)=='%') - continue; - if (*(f+1)=='S' || *(f+1)=='R' || *(f+1)=='A' || *(f+1) == 'V') - ++callcount; - while (Py_ISDIGIT((unsigned)*f)) - width = (width*10) + *f++ - '0'; - while (*++f && *f != '%' && !Py_ISALPHA((unsigned)*f)) - ; - if (*f == 's') + /* skip width or width.precision (eg. "1.2" of "%1.2f") */ + f = parse_format_flags(f, NULL, NULL, NULL, NULL, NULL); + if (*f == 's' || *f=='S' || *f=='R' || *f=='A' || *f=='V') ++callcount; } else if (128 <= (unsigned char)*f) { @@ -790,33 +848,13 @@ for (f = format; *f; f++) { if (*f == '%') { #ifdef HAVE_LONG_LONG - int longlongflag = 0; -#endif - const char* p = f; - width = 0; - while (Py_ISDIGIT((unsigned)*f)) - width = (width*10) + *f++ - '0'; - while (*++f && *f != '%' && !Py_ISALPHA((unsigned)*f)) - ; - - /* skip the 'l' or 'z' in {%ld, %zd, %lu, %zu} since - * they don't affect the amount of space we reserve. - */ - if (*f == 'l') { - if (f[1] == 'd' || f[1] == 'u') { - ++f; - } -#ifdef HAVE_LONG_LONG - else if (f[1] == 'l' && - (f[2] == 'd' || f[2] == 'u')) { - longlongflag = 1; - f += 2; - } + int longlongflag; #endif - } - else if (*f == 'z' && (f[1] == 'd' || f[1] == 'u')) { - ++f; - } + const char* p; + + p = f; + f = parse_format_flags(f, &width, NULL, + NULL, &longlongflag, NULL); switch (*f) { case 'c': @@ -981,40 +1019,15 @@ for (f = format; *f; f++) { if (*f == '%') { - const char* p = f++; - int longflag = 0; - int longlongflag = 0; - int size_tflag = 0; - zeropad = (*f == '0'); - /* parse the width.precision part */ - width = 0; - while (Py_ISDIGIT((unsigned)*f)) - width = (width*10) + *f++ - '0'; - precision = 0; - if (*f == '.') { - f++; - while (Py_ISDIGIT((unsigned)*f)) - precision = (precision*10) + *f++ - '0'; - } - /* Handle %ld, %lu, %lld and %llu. */ - if (*f == 'l') { - if (f[1] == 'd' || f[1] == 'u') { - longflag = 1; - ++f; - } -#ifdef HAVE_LONG_LONG - else if (f[1] == 'l' && - (f[2] == 'd' || f[2] == 'u')) { - longlongflag = 1; - f += 2; - } -#endif - } - /* handle the size_t flag. */ - if (*f == 'z' && (f[1] == 'd' || f[1] == 'u')) { - size_tflag = 1; - ++f; - } + const char* p; + int longflag; + int longlongflag; + int size_tflag; + + p = f; + zeropad = (f[1] == '0'); + f = parse_format_flags(f, &width, &precision, + &longflag, &longlongflag, &size_tflag); switch (*f) { case 'c': From python-checkins at python.org Wed Mar 2 01:01:53 2011 From: python-checkins at python.org (victor.stinner) Date: Wed, 2 Mar 2011 01:01:53 +0100 (CET) Subject: [Python-checkins] r88703 - python/branches/py3k/Objects/unicodeobject.c Message-ID: <20110302000153.E32D4EE988@mail.python.org> Author: victor.stinner Date: Wed Mar 2 01:01:53 2011 New Revision: 88703 Log: Fix my previous commit (r88702): initialize size_tflag in parse_format_flags() Modified: python/branches/py3k/Objects/unicodeobject.c Modified: python/branches/py3k/Objects/unicodeobject.c ============================================================================== --- python/branches/py3k/Objects/unicodeobject.c (original) +++ python/branches/py3k/Objects/unicodeobject.c Wed Mar 2 01:01:53 2011 @@ -750,6 +750,7 @@ /* Handle %ld, %lu, %lld and %llu. */ longflag = 0; longlongflag = 0; + size_tflag = 0; if (*f == 'l') { if (f[1] == 'd' || f[1] == 'u') { From python-checkins at python.org Wed Mar 2 01:04:25 2011 From: python-checkins at python.org (victor.stinner) Date: Wed, 2 Mar 2011 01:04:25 +0100 (CET) Subject: [Python-checkins] r88704 - in python/branches/py3k: Lib/test/test_unicode.py Misc/NEWS Objects/unicodeobject.c Message-ID: <20110302000425.E171BEE9B8@mail.python.org> Author: victor.stinner Date: Wed Mar 2 01:04:25 2011 New Revision: 88704 Log: Issue #10831: PyUnicode_FromFormat() supports %li, %lli and %zi formats Modified: python/branches/py3k/Lib/test/test_unicode.py python/branches/py3k/Misc/NEWS python/branches/py3k/Objects/unicodeobject.c Modified: python/branches/py3k/Lib/test/test_unicode.py ============================================================================== --- python/branches/py3k/Lib/test/test_unicode.py (original) +++ python/branches/py3k/Lib/test/test_unicode.py Wed Mar 2 01:04:25 2011 @@ -1430,7 +1430,9 @@ # Test PyUnicode_FromFormat() def test_from_format(self): support.import_module('ctypes') - from ctypes import pythonapi, py_object, c_int + from ctypes import (pythonapi, py_object, + c_int, c_long, c_longlong, c_ssize_t, + c_uint, c_ulong, c_ulonglong, c_size_t) if sys.maxunicode == 65535: name = "PyUnicodeUCS2_FromFormat" else: @@ -1466,21 +1468,29 @@ self.assertEqual(PyUnicode_FromFormat(b'[%%]'), '[%]') self.assertEqual(PyUnicode_FromFormat(b'%%%s', b'abc'), '%abc') - # test "%i" + # test integer formats (%i, %d, %u) self.assertEqual(PyUnicode_FromFormat(b'%03i', c_int(10)), '010') self.assertEqual(PyUnicode_FromFormat(b'%0.4i', c_int(10)), '0010') + self.assertEqual(PyUnicode_FromFormat(b'%i', c_int(-123)), '-123') + self.assertEqual(PyUnicode_FromFormat(b'%li', c_long(-123)), '-123') + self.assertEqual(PyUnicode_FromFormat(b'%lli', c_longlong(-123)), '-123') + self.assertEqual(PyUnicode_FromFormat(b'%zi', c_ssize_t(-123)), '-123') + + self.assertEqual(PyUnicode_FromFormat(b'%d', c_int(-123)), '-123') + self.assertEqual(PyUnicode_FromFormat(b'%ld', c_long(-123)), '-123') + self.assertEqual(PyUnicode_FromFormat(b'%lld', c_longlong(-123)), '-123') + self.assertEqual(PyUnicode_FromFormat(b'%zd', c_ssize_t(-123)), '-123') + + self.assertEqual(PyUnicode_FromFormat(b'%u', c_uint(123)), '123') + self.assertEqual(PyUnicode_FromFormat(b'%lu', c_ulong(123)), '123') + self.assertEqual(PyUnicode_FromFormat(b'%llu', c_ulonglong(123)), '123') + self.assertEqual(PyUnicode_FromFormat(b'%zu', c_size_t(123)), '123') - # not supported: copy the raw format string. these tests are just here - # to check for crashs and should not be considered as specifications - self.assertEqual(PyUnicode_FromFormat(b'%1%s', b'abc'), '%s') - self.assertEqual(PyUnicode_FromFormat(b'%1abc'), '%1abc') - self.assertEqual(PyUnicode_FromFormat(b'%+i', c_int(10)), '%+i') - self.assertEqual(PyUnicode_FromFormat(b'%.%s', b'abc'), '%.%s') - - # other tests + # test %A text = PyUnicode_FromFormat(b'%%A:%A', 'abc\xe9\uabcd\U0010ffff') self.assertEqual(text, r"%A:'abc\xe9\uabcd\U0010ffff'") + # test %V text = PyUnicode_FromFormat(b'repr=%V', 'abc', b'xyz') self.assertEqual(text, 'repr=abc') @@ -1494,6 +1504,13 @@ text = PyUnicode_FromFormat(b'repr=%V', None, b'abc\xff') self.assertEqual(text, 'repr=abc\ufffd') + # not supported: copy the raw format string. these tests are just here + # to check for crashs and should not be considered as specifications + self.assertEqual(PyUnicode_FromFormat(b'%1%s', b'abc'), '%s') + self.assertEqual(PyUnicode_FromFormat(b'%1abc'), '%1abc') + self.assertEqual(PyUnicode_FromFormat(b'%+i', c_int(10)), '%+i') + self.assertEqual(PyUnicode_FromFormat(b'%.%s', b'abc'), '%.%s') + # Test PyUnicode_AsWideChar() def test_aswidechar(self): from _testcapi import unicode_aswidechar Modified: python/branches/py3k/Misc/NEWS ============================================================================== --- python/branches/py3k/Misc/NEWS (original) +++ python/branches/py3k/Misc/NEWS Wed Mar 2 01:04:25 2011 @@ -10,6 +10,8 @@ Core and Builtins ----------------- +- Issue #10831: PyUnicode_FromFormat() supports %li, %lli and %zi formats. + - Issue #10829: Refactor PyUnicode_FromFormat(), use the same function to parse the format string in the 3 steps, fix crashs on invalid format strings. Modified: python/branches/py3k/Objects/unicodeobject.c ============================================================================== --- python/branches/py3k/Objects/unicodeobject.c (original) +++ python/branches/py3k/Objects/unicodeobject.c Wed Mar 2 01:04:25 2011 @@ -753,20 +753,20 @@ size_tflag = 0; if (*f == 'l') { - if (f[1] == 'd' || f[1] == 'u') { + if (f[1] == 'd' || f[1] == 'u' || f[1] == 'i') { longflag = 1; ++f; } #ifdef HAVE_LONG_LONG else if (f[1] == 'l' && - (f[2] == 'd' || f[2] == 'u')) { + (f[2] == 'd' || f[2] == 'u' || f[2] == 'i')) { longlongflag = 1; f += 2; } #endif } /* handle the size_t flag. */ - else if (*f == 'z' && (f[1] == 'd' || f[1] == 'u')) { + else if (*f == 'z' && (f[1] == 'd' || f[1] == 'u' || f[1] == 'i')) { size_tflag = 1; ++f; } @@ -1044,9 +1044,10 @@ *s++ = ordinal; break; } + case 'i': case 'd': makefmt(fmt, longflag, longlongflag, size_tflag, zeropad, - width, precision, 'd'); + width, precision, *f); if (longflag) sprintf(realbuffer, fmt, va_arg(vargs, long)); #ifdef HAVE_LONG_LONG @@ -1075,11 +1076,6 @@ sprintf(realbuffer, fmt, va_arg(vargs, unsigned int)); appendstring(realbuffer); break; - case 'i': - makefmt(fmt, 0, 0, 0, zeropad, width, precision, 'i'); - sprintf(realbuffer, fmt, va_arg(vargs, int)); - appendstring(realbuffer); - break; case 'x': makefmt(fmt, 0, 0, 0, zeropad, width, precision, 'x'); sprintf(realbuffer, fmt, va_arg(vargs, int)); From python-checkins at python.org Wed Mar 2 01:10:34 2011 From: python-checkins at python.org (victor.stinner) Date: Wed, 2 Mar 2011 01:10:34 +0100 (CET) Subject: [Python-checkins] r88705 - python/branches/py3k/Doc/c-api/unicode.rst Message-ID: <20110302001034.B3A2CEE988@mail.python.org> Author: victor.stinner Date: Wed Mar 2 01:10:34 2011 New Revision: 88705 Log: Issue #10831: Document the new formats (%li, %lli, %zi) Modified: python/branches/py3k/Doc/c-api/unicode.rst Modified: python/branches/py3k/Doc/c-api/unicode.rst ============================================================================== --- python/branches/py3k/Doc/c-api/unicode.rst (original) +++ python/branches/py3k/Doc/c-api/unicode.rst Wed Mar 2 01:10:34 2011 @@ -260,18 +260,27 @@ | :attr:`%ld` | long | Exactly equivalent to | | | | ``printf("%ld")``. | +-------------------+---------------------+--------------------------------+ + | :attr:`%li` | long | Exactly equivalent to | + | | | ``printf("%li")``. | + +-------------------+---------------------+--------------------------------+ | :attr:`%lu` | unsigned long | Exactly equivalent to | | | | ``printf("%lu")``. | +-------------------+---------------------+--------------------------------+ | :attr:`%lld` | long long | Exactly equivalent to | | | | ``printf("%lld")``. | +-------------------+---------------------+--------------------------------+ + | :attr:`%lli` | long long | Exactly equivalent to | + | | | ``printf("%lli")``. | + +-------------------+---------------------+--------------------------------+ | :attr:`%llu` | unsigned long long | Exactly equivalent to | | | | ``printf("%llu")``. | +-------------------+---------------------+--------------------------------+ | :attr:`%zd` | Py_ssize_t | Exactly equivalent to | | | | ``printf("%zd")``. | +-------------------+---------------------+--------------------------------+ + | :attr:`%zi` | Py_ssize_t | Exactly equivalent to | + | | | ``printf("%zi")``. | + +-------------------+---------------------+--------------------------------+ | :attr:`%zu` | size_t | Exactly equivalent to | | | | ``printf("%zu")``. | +-------------------+---------------------+--------------------------------+ @@ -322,6 +331,9 @@ .. versionchanged:: 3.2 Support for ``"%lld"`` and ``"%llu"`` added. + .. versionchanged:: 3.3 + Support for ``"%li"``, ``"%lli"`` and ``"%zi"`` added. + .. c:function:: PyObject* PyUnicode_FromFormatV(const char *format, va_list vargs) From python-checkins at python.org Wed Mar 2 01:15:45 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 2 Mar 2011 01:15:45 +0100 (CET) Subject: [Python-checkins] r88706 - python/branches/py3k/Lib/test/test_multiprocessing.py Message-ID: <20110302001545.0133BEE9B5@mail.python.org> Author: antoine.pitrou Date: Wed Mar 2 01:15:44 2011 New Revision: 88706 Log: assertEquals is deprecated Modified: python/branches/py3k/Lib/test/test_multiprocessing.py Modified: python/branches/py3k/Lib/test/test_multiprocessing.py ============================================================================== --- python/branches/py3k/Lib/test/test_multiprocessing.py (original) +++ python/branches/py3k/Lib/test/test_multiprocessing.py Wed Mar 2 01:15:44 2011 @@ -169,7 +169,7 @@ # By default uses the current process's daemon flag. proc0 = self.Process(target=self._test) - self.assertEquals(proc0.daemon, self.current_process().daemon) + self.assertEqual(proc0.daemon, self.current_process().daemon) proc1 = self.Process(target=self._test, daemon=True) self.assertTrue(proc1.daemon) proc2 = self.Process(target=self._test, daemon=False) From python-checkins at python.org Wed Mar 2 01:31:51 2011 From: python-checkins at python.org (eric.araujo) Date: Wed, 2 Mar 2011 01:31:51 +0100 (CET) Subject: [Python-checkins] r88707 - python/branches/py3k/Lib/test/test_osx_env.py Message-ID: <20110302003151.CEF55EE982@mail.python.org> Author: eric.araujo Date: Wed Mar 2 01:31:51 2011 New Revision: 88707 Log: Remove last use of distutils.sysconfig from the stdlib (#11364). Apart from distutils itself, the stdlib has now officially switched to the new top-level sysconfig module. Patch greenlighted by Ned Deily. Modified: python/branches/py3k/Lib/test/test_osx_env.py Modified: python/branches/py3k/Lib/test/test_osx_env.py ============================================================================== --- python/branches/py3k/Lib/test/test_osx_env.py (original) +++ python/branches/py3k/Lib/test/test_osx_env.py Wed Mar 2 01:31:51 2011 @@ -5,6 +5,7 @@ from test.support import EnvironmentVarGuard, run_unittest import subprocess import sys +import sysconfig import unittest class OSXEnvironmentVariableTestCase(unittest.TestCase): @@ -27,8 +28,6 @@ self._check_sys('PYTHONEXECUTABLE', '==', 'sys.executable') def test_main(): - from distutils import sysconfig - if sys.platform == 'darwin' and sysconfig.get_config_var('WITH_NEXT_FRAMEWORK'): run_unittest(OSXEnvironmentVariableTestCase) From python-checkins at python.org Wed Mar 2 02:03:12 2011 From: python-checkins at python.org (victor.stinner) Date: Wed, 2 Mar 2011 02:03:12 +0100 (CET) Subject: [Python-checkins] r88708 - in python/branches/py3k: Include/unicodeobject.h Modules/_ctypes/_ctypes.c Modules/_dbmmodule.c Objects/typeobject.c Objects/unicodeobject.c Python/bltinmodule.c Python/compile.c Python/getargs.c Message-ID: <20110302010312.21930EE983@mail.python.org> Author: victor.stinner Date: Wed Mar 2 02:03:11 2011 New Revision: 88708 Log: Remove useless argument of _PyUnicode_AsDefaultEncodedString() Modified: python/branches/py3k/Include/unicodeobject.h python/branches/py3k/Modules/_ctypes/_ctypes.c python/branches/py3k/Modules/_dbmmodule.c python/branches/py3k/Objects/typeobject.c python/branches/py3k/Objects/unicodeobject.c python/branches/py3k/Python/bltinmodule.c python/branches/py3k/Python/compile.c python/branches/py3k/Python/getargs.c Modified: python/branches/py3k/Include/unicodeobject.h ============================================================================== --- python/branches/py3k/Include/unicodeobject.h (original) +++ python/branches/py3k/Include/unicodeobject.h Wed Mar 2 02:03:11 2011 @@ -668,8 +668,7 @@ #ifndef Py_LIMITED_API PyAPI_FUNC(PyObject *) _PyUnicode_AsDefaultEncodedString( - PyObject *unicode, - const char *errors); + PyObject *unicode); #endif /* Returns a pointer to the default encoding (UTF-8) of the Modified: python/branches/py3k/Modules/_ctypes/_ctypes.c ============================================================================== --- python/branches/py3k/Modules/_ctypes/_ctypes.c (original) +++ python/branches/py3k/Modules/_ctypes/_ctypes.c Wed Mar 2 02:03:11 2011 @@ -1826,7 +1826,7 @@ return NULL; } if (PyUnicode_Check(proto)) { - PyObject *v = _PyUnicode_AsDefaultEncodedString(proto, NULL); + PyObject *v = _PyUnicode_AsDefaultEncodedString(proto); if (!v) goto error; proto_str = PyBytes_AS_STRING(v); Modified: python/branches/py3k/Modules/_dbmmodule.c ============================================================================== --- python/branches/py3k/Modules/_dbmmodule.c (original) +++ python/branches/py3k/Modules/_dbmmodule.c Wed Mar 2 02:03:11 2011 @@ -219,7 +219,7 @@ return -1; } if (PyUnicode_Check(arg)) { - arg = _PyUnicode_AsDefaultEncodedString(arg, NULL); + arg = _PyUnicode_AsDefaultEncodedString(arg); if (arg == NULL) return -1; } Modified: python/branches/py3k/Objects/typeobject.c ============================================================================== --- python/branches/py3k/Objects/typeobject.c (original) +++ python/branches/py3k/Objects/typeobject.c Wed Mar 2 02:03:11 2011 @@ -4975,7 +4975,7 @@ res = slot_tp_repr(self); if (!res) return NULL; - ress = _PyUnicode_AsDefaultEncodedString(res, NULL); + ress = _PyUnicode_AsDefaultEncodedString(res); Py_DECREF(res); return ress; } Modified: python/branches/py3k/Objects/unicodeobject.c ============================================================================== --- python/branches/py3k/Objects/unicodeobject.c (original) +++ python/branches/py3k/Objects/unicodeobject.c Wed Mar 2 02:03:11 2011 @@ -1806,14 +1806,11 @@ } PyObject * -_PyUnicode_AsDefaultEncodedString(PyObject *unicode, - const char *errors) +_PyUnicode_AsDefaultEncodedString(PyObject *unicode) { PyObject *v = ((PyUnicodeObject *)unicode)->defenc; if (v) return v; - if (errors != NULL) - Py_FatalError("non-NULL encoding in _PyUnicode_AsDefaultEncodedString"); v = PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode), PyUnicode_GET_SIZE(unicode), NULL); @@ -1959,7 +1956,7 @@ PyErr_BadArgument(); return NULL; } - bytes = _PyUnicode_AsDefaultEncodedString(unicode, NULL); + bytes = _PyUnicode_AsDefaultEncodedString(unicode); if (bytes == NULL) return NULL; if (psize != NULL) Modified: python/branches/py3k/Python/bltinmodule.c ============================================================================== --- python/branches/py3k/Python/bltinmodule.c (original) +++ python/branches/py3k/Python/bltinmodule.c Wed Mar 2 02:03:11 2011 @@ -511,7 +511,7 @@ if (PyUnicode_Check(cmd)) { cf->cf_flags |= PyCF_IGNORE_COOKIE; - cmd = _PyUnicode_AsDefaultEncodedString(cmd, NULL); + cmd = _PyUnicode_AsDefaultEncodedString(cmd); if (cmd == NULL) return NULL; } Modified: python/branches/py3k/Python/compile.c ============================================================================== --- python/branches/py3k/Python/compile.c (original) +++ python/branches/py3k/Python/compile.c Wed Mar 2 02:03:11 2011 @@ -3026,7 +3026,7 @@ case Name_kind: /* optimize away names that can't be reassigned */ id = PyBytes_AS_STRING( - _PyUnicode_AsDefaultEncodedString(e->v.Name.id, NULL)); + _PyUnicode_AsDefaultEncodedString(e->v.Name.id)); if (strcmp(id, "True") == 0) return 1; if (strcmp(id, "False") == 0) return 0; if (strcmp(id, "None") == 0) return 0; Modified: python/branches/py3k/Python/getargs.c ============================================================================== --- python/branches/py3k/Python/getargs.c (original) +++ python/branches/py3k/Python/getargs.c Wed Mar 2 02:03:11 2011 @@ -551,7 +551,7 @@ #define UNICODE_DEFAULT_ENCODING(arg) \ - _PyUnicode_AsDefaultEncodedString(arg, NULL) + _PyUnicode_AsDefaultEncodedString(arg) /* Format an error message generated by convertsimple(). */ From python-checkins at python.org Wed Mar 2 02:03:14 2011 From: python-checkins at python.org (victor.stinner) Date: Wed, 2 Mar 2011 02:03:14 +0100 (CET) Subject: [Python-checkins] r88709 - in python/branches/py3k: Misc/NEWS Objects/unicodeobject.c Message-ID: <20110302010314.642AEEE983@mail.python.org> Author: victor.stinner Date: Wed Mar 2 02:03:14 2011 New Revision: 88709 Log: Issue #8923: cache str.encode() result When a string is encoded to UTF-8 in strict mode, the result is cached into the object. Examples: str.encode(), str.encode('utf-8'), PyUnicode_AsUTF8String() and PyUnicode_AsEncodedString(unicode, "utf-8", NULL). Modified: python/branches/py3k/Misc/NEWS python/branches/py3k/Objects/unicodeobject.c Modified: python/branches/py3k/Misc/NEWS ============================================================================== --- python/branches/py3k/Misc/NEWS (original) +++ python/branches/py3k/Misc/NEWS Wed Mar 2 02:03:14 2011 @@ -10,6 +10,11 @@ Core and Builtins ----------------- +- Issue #8923: When a string is encoded to UTF-8 in strict mode, the result is + cached into the object. Examples: str.encode(), str.encode('utf-8'), + PyUnicode_AsUTF8String() and PyUnicode_AsEncodedString(unicode, "utf-8", + NULL). + - Issue #10831: PyUnicode_FromFormat() supports %li, %lli and %zi formats. - Issue #10829: Refactor PyUnicode_FromFormat(), use the same function to parse Modified: python/branches/py3k/Objects/unicodeobject.c ============================================================================== --- python/branches/py3k/Objects/unicodeobject.c (original) +++ python/branches/py3k/Objects/unicodeobject.c Wed Mar 2 02:03:14 2011 @@ -1710,17 +1710,21 @@ } if (encoding == NULL) - return PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode), - PyUnicode_GET_SIZE(unicode), - errors); + return PyUnicode_AsUTF8String(unicode); /* Shortcuts for common default encodings */ if (normalize_encoding(encoding, lower, sizeof(lower))) { if ((strcmp(lower, "utf-8") == 0) || (strcmp(lower, "utf8") == 0)) - return PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode), - PyUnicode_GET_SIZE(unicode), - errors); + { + if (errors == NULL || strcmp(errors, "strict") == 0) { + return PyUnicode_AsUTF8String(unicode); + } else { + return PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode), + PyUnicode_GET_SIZE(unicode), + errors); + } + } else if ((strcmp(lower, "latin-1") == 0) || (strcmp(lower, "latin1") == 0) || (strcmp(lower, "iso-8859-1") == 0)) @@ -3077,13 +3081,16 @@ PyObject * PyUnicode_AsUTF8String(PyObject *unicode) { + PyObject *utf8; if (!PyUnicode_Check(unicode)) { PyErr_BadArgument(); return NULL; } - return PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode), - PyUnicode_GET_SIZE(unicode), - NULL); + utf8 = _PyUnicode_AsDefaultEncodedString(unicode); + if (utf8 == NULL) + return NULL; + Py_INCREF(utf8); + return utf8; } /* --- UTF-32 Codec ------------------------------------------------------- */ From python-checkins at python.org Wed Mar 2 02:19:21 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 02 Mar 2011 02:19:21 +0100 Subject: [Python-checkins] devguide (hg_transition): Add -C option for ssh compression Message-ID: http://hg.python.org/devguide/rev/ba97613a731e changeset: 361:ba97613a731e branch: hg_transition user: Antoine Pitrou date: Wed Mar 02 02:17:45 2011 +0100 summary: Add -C option for ssh compression files: faq.rst diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -62,7 +62,7 @@ (you can do so by opening the TortoiseHg configuration dialog and then clicking *"Edit File"*). In the ``[ui]`` section, add the following line:: - ssh = TortoisePlink.exe -ssh -2 -i C:\path\to\yourkey.ppk + ssh = TortoisePlink.exe -ssh -2 -C -i C:\path\to\yourkey.ppk where ``C:\path\to\yourkey.ppk`` should be replaced with the actual path to your SSH private key. -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Wed Mar 2 02:21:47 2011 From: python-checkins at python.org (victor.stinner) Date: Wed, 2 Mar 2011 02:21:47 +0100 (CET) Subject: [Python-checkins] r88710 - python/branches/py3k/Objects/unicodeobject.c Message-ID: <20110302012147.17995EE999@mail.python.org> Author: victor.stinner Date: Wed Mar 2 02:21:46 2011 New Revision: 88710 Log: Fix my previous commit (r88709) for str.encode(errors=...) Modified: python/branches/py3k/Objects/unicodeobject.c Modified: python/branches/py3k/Objects/unicodeobject.c ============================================================================== --- python/branches/py3k/Objects/unicodeobject.c (original) +++ python/branches/py3k/Objects/unicodeobject.c Wed Mar 2 02:21:46 2011 @@ -1709,21 +1709,26 @@ return NULL; } - if (encoding == NULL) - return PyUnicode_AsUTF8String(unicode); + if (encoding == NULL) { + if (errors == NULL || strcmp(errors, "strict") == 0) + return PyUnicode_AsUTF8String(unicode); + else + return PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode), + PyUnicode_GET_SIZE(unicode), + errors); + } /* Shortcuts for common default encodings */ if (normalize_encoding(encoding, lower, sizeof(lower))) { if ((strcmp(lower, "utf-8") == 0) || (strcmp(lower, "utf8") == 0)) { - if (errors == NULL || strcmp(errors, "strict") == 0) { + if (errors == NULL || strcmp(errors, "strict") == 0) return PyUnicode_AsUTF8String(unicode); - } else { + else return PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode), PyUnicode_GET_SIZE(unicode), errors); - } } else if ((strcmp(lower, "latin-1") == 0) || (strcmp(lower, "latin1") == 0) || From solipsis at pitrou.net Wed Mar 2 05:09:57 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Wed, 02 Mar 2011 05:09:57 +0100 Subject: [Python-checkins] Daily py3k reference leaks (r88710): sum=0 Message-ID: py3k results for svn r88710 (hg cset bcdf651f669c) -------------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/py3k/refleaks/reflog_Ed1Sd', '-x'] From python-checkins at python.org Wed Mar 2 15:50:18 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 02 Mar 2011 15:50:18 +0100 Subject: [Python-checkins] cpython: Try a push Message-ID: http://hg.python.org/cpython/rev/b452a74f8f1a changeset: 68072:b452a74f8f1a user: Antoine Pitrou date: Wed Mar 02 15:50:14 2011 +0100 summary: Try a push files: LICENSE diff --git a/LICENSE b/LICENSE --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,6 @@ Copyright (C) 2011 by Python authors and Larry Wall + In place of a legal mess, here is a poem: I met a traveller from an antique land -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 2 16:14:29 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 02 Mar 2011 16:14:29 +0100 Subject: [Python-checkins] devguide (hg_transition): Add FAQ entries about heads and merging Message-ID: http://hg.python.org/devguide/rev/56874ea2f808 changeset: 362:56874ea2f808 branch: hg_transition user: Antoine Pitrou date: Wed Mar 02 16:14:27 2011 +0100 summary: Add FAQ entries about heads and merging files: faq.rst diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -420,6 +420,43 @@ to match up with the repository. +How do I find out which revisions need merging? +----------------------------------------------- + +Running:: + + hg heads + +Gives you the list of branch heads in your local repository. If you are +working only in a particular named branch, for example ``default``, do:: + + hg heads default + +to display the heads on that branch. + + +How do I list the files in conflict after a merge? +-------------------------------------------------- + +Use:: + + hg resolve --list + +(abbreviated ``hg resolve -l``) + + +How I mark a file resolved after I have resolved merge conflicts? +----------------------------------------------------------------- + +Type:: + + hg resolve --mark + +(abbreviated ``hg resolve -m ``) + +If you are sure you have resolved all conflicts, use ``hg resolve -am``. + + How do I find out who edited or what revision changed a line last? ------------------------------------------------------------------------------- -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Wed Mar 2 16:20:25 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 02 Mar 2011 16:20:25 +0100 Subject: [Python-checkins] devguide (hg_transition): Mention that "hg merge" usually figures out what to merge Message-ID: http://hg.python.org/devguide/rev/2283a2907348 changeset: 363:2283a2907348 branch: hg_transition user: Antoine Pitrou date: Wed Mar 02 16:20:22 2011 +0100 summary: Mention that "hg merge" usually figures out what to merge files: faq.rst diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -423,11 +423,15 @@ How do I find out which revisions need merging? ----------------------------------------------- -Running:: +In unambiguous cases, Mercurial will find out for you if you simply try:: + + hg merge + +If that fails and Mercurial asks for explicit revisions, running:: hg heads -Gives you the list of branch heads in your local repository. If you are +will give you the list of branch heads in your local repository. If you are working only in a particular named branch, for example ``default``, do:: hg heads default -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Wed Mar 2 16:20:51 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 02 Mar 2011 16:20:51 +0100 Subject: [Python-checkins] cpython (3.2): #11306: Treat EROFS like EACCES when making a 'file is read-only' decision Message-ID: http://hg.python.org/cpython/rev/75541fc89b11 changeset: 68073:75541fc89b11 branch: 3.2 parent: 68064:d6404ebb622d user: R David Murray date: Tue Mar 01 22:26:14 2011 -0500 summary: #11306: Treat EROFS like EACCES when making a 'file is read-only' decision files: Lib/mailbox.py diff --git a/Lib/mailbox.py b/Lib/mailbox.py --- a/Lib/mailbox.py +++ b/Lib/mailbox.py @@ -578,7 +578,7 @@ f = open(self._path, 'wb+') else: raise NoSuchMailboxError(self._path) - elif e.errno == errno.EACCES: + elif e.errno in (errno.EACCES, errno.EROFS): f = open(self._path, 'rb') else: raise @@ -2012,7 +2012,7 @@ pre_lock = _create_temporary(f.name + '.lock') pre_lock.close() except IOError as e: - if e.errno == errno.EACCES: + if e.errno in (errno.EACCES, errno.EROFS): return # Without write access, just skip dotlocking. else: raise -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 2 16:20:51 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 02 Mar 2011 16:20:51 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #11306 fix. Message-ID: http://hg.python.org/cpython/rev/6c5ded8be23f changeset: 68074:6c5ded8be23f parent: 68071:f3613bbf262b parent: 68073:75541fc89b11 user: R David Murray date: Tue Mar 01 22:32:57 2011 -0500 summary: Merge #11306 fix. files: diff --git a/Lib/mailbox.py b/Lib/mailbox.py --- a/Lib/mailbox.py +++ b/Lib/mailbox.py @@ -578,7 +578,7 @@ f = open(self._path, 'wb+') else: raise NoSuchMailboxError(self._path) - elif e.errno == errno.EACCES: + elif e.errno in (errno.EACCES, errno.EROFS): f = open(self._path, 'rb') else: raise @@ -2012,7 +2012,7 @@ pre_lock = _create_temporary(f.name + '.lock') pre_lock.close() except IOError as e: - if e.errno == errno.EACCES: + if e.errno in (errno.EACCES, errno.EROFS): return # Without write access, just skip dotlocking. else: raise -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 2 16:20:51 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 02 Mar 2011 16:20:51 +0100 Subject: [Python-checkins] cpython (3.2): NEWS entry for #11306. Message-ID: http://hg.python.org/cpython/rev/412f83bb9f51 changeset: 68075:412f83bb9f51 branch: 3.2 parent: 68073:75541fc89b11 user: R David Murray date: Wed Mar 02 09:19:11 2011 -0500 summary: NEWS entry for #11306. files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -15,6 +15,10 @@ Library ------- +- Issue #11306: mailbox in certain cases adapts to an inability to open + certain files in read-write mode. Previously it detected this by + checking for EACCES, now it also checks for EROFS. + - Issue #11074: Make 'tokenize' so it can be reloaded. - Issue #4681: Allow mmap() to work on file sizes and offsets larger than -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 2 16:20:51 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 02 Mar 2011 16:20:51 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge NEWS entry for #11306. Message-ID: http://hg.python.org/cpython/rev/3700b4b85e54 changeset: 68076:3700b4b85e54 parent: 68074:6c5ded8be23f parent: 68075:412f83bb9f51 user: R David Murray date: Wed Mar 02 09:29:40 2011 -0500 summary: Merge NEWS entry for #11306. files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -35,6 +35,10 @@ Library ------- +- Issue #11306: mailbox in certain cases adapts to an inability to open + certain files in read-write mode. Previously it detected this by + checking for EACCES, now it also checks for EROFS. + - Issue #10924: Adding salt and Modular Crypt Format to crypt library. Moved old C wrapper to _crypt, and added a Python wrapper with enhanced salt generation and simpler API for password generation. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 2 16:20:51 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 02 Mar 2011 16:20:51 +0100 Subject: [Python-checkins] cpython (2.7): #11306: Treat EROFS like EACCES when making a 'file is read-only' decision Message-ID: http://hg.python.org/cpython/rev/e6dbba882b98 changeset: 68077:e6dbba882b98 branch: 2.7 parent: 68068:41c92cafef61 user: R David Murray date: Wed Mar 02 09:39:48 2011 -0500 summary: #11306: Treat EROFS like EACCES when making a 'file is read-only' decision files: Lib/mailbox.py Misc/NEWS diff --git a/Lib/mailbox.py b/Lib/mailbox.py --- a/Lib/mailbox.py +++ b/Lib/mailbox.py @@ -554,7 +554,7 @@ f = open(self._path, 'wb+') else: raise NoSuchMailboxError(self._path) - elif e.errno == errno.EACCES: + elif e.errno in (errno.EACCES, errno.EROFS): f = open(self._path, 'rb') else: raise @@ -1915,7 +1915,7 @@ pre_lock = _create_temporary(f.name + '.lock') pre_lock.close() except IOError, e: - if e.errno == errno.EACCES: + if e.errno in (errno.EACCES, errno.EROFS): return # Without write access, just skip dotlocking. else: raise diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -37,6 +37,10 @@ Library ------- +- Issue #11306: mailbox in certain cases adapts to an inability to open + certain files in read-write mode. Previously it detected this by + checking for EACCES, now it also checks for EROFS. + - Issue #4681: Allow mmap() to work on file sizes and offsets larger than 4GB, even on 32-bit builds. Initial patch by Ross Lagerwall, adapted for 32-bit Windows. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 2 16:20:51 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 02 Mar 2011 16:20:51 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge heads Message-ID: http://hg.python.org/cpython/rev/6910af7df354 changeset: 68078:6910af7df354 parent: 68072:b452a74f8f1a parent: 68076:3700b4b85e54 user: R David Murray date: Wed Mar 02 10:20:16 2011 -0500 summary: merge heads files: diff --git a/Lib/mailbox.py b/Lib/mailbox.py --- a/Lib/mailbox.py +++ b/Lib/mailbox.py @@ -578,7 +578,7 @@ f = open(self._path, 'wb+') else: raise NoSuchMailboxError(self._path) - elif e.errno == errno.EACCES: + elif e.errno in (errno.EACCES, errno.EROFS): f = open(self._path, 'rb') else: raise @@ -2012,7 +2012,7 @@ pre_lock = _create_temporary(f.name + '.lock') pre_lock.close() except IOError as e: - if e.errno == errno.EACCES: + if e.errno in (errno.EACCES, errno.EROFS): return # Without write access, just skip dotlocking. else: raise diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -35,6 +35,10 @@ Library ------- +- Issue #11306: mailbox in certain cases adapts to an inability to open + certain files in read-write mode. Previously it detected this by + checking for EACCES, now it also checks for EROFS. + - Issue #10924: Adding salt and Modular Crypt Format to crypt library. Moved old C wrapper to _crypt, and added a Python wrapper with enhanced salt generation and simpler API for password generation. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 2 21:47:23 2011 From: python-checkins at python.org (brett.cannon) Date: Wed, 02 Mar 2011 21:47:23 +0100 Subject: [Python-checkins] devinabox: Use shutil.rmtree() over os.rmdir() in case the tests get messy. Message-ID: http://hg.python.org/devinabox/rev/830522cad268 changeset: 36:830522cad268 user: Brett Cannon date: Wed Mar 02 12:46:32 2011 -0800 summary: Use shutil.rmtree() over os.rmdir() in case the tests get messy. files: make_a_box.py run_all_tests.py diff --git a/make_a_box.py b/make_a_box.py --- a/make_a_box.py +++ b/make_a_box.py @@ -18,6 +18,7 @@ import operator import os import os.path +import shutil import subprocess import sys import urllib.request @@ -150,7 +151,7 @@ regrtest_path]) finally: # Clean up from the test run - os.rmdir('build') + shutil.rmtree('build') # Generate the HTML report print('Generating report ...') subprocess.call([executable, 'coveragepy', 'html', '-i', '--omit', diff --git a/run_all_tests.py b/run_all_tests.py --- a/run_all_tests.py +++ b/run_all_tests.py @@ -1,6 +1,7 @@ #!/usr/bin/env python """Run CPython's test suite in the most rigorous way possible.""" import multiprocessing +import shutil import subprocess import sys import build_cpython @@ -16,7 +17,7 @@ '-w', '-u', 'all', '-j', str(multiprocessing.cpu_count())]) finally: - os.rmdir('build') + shutil.rmtree('build') if __name__ == '__main__': -- Repository URL: http://hg.python.org/devinabox From python-checkins at python.org Thu Mar 3 00:37:50 2011 From: python-checkins at python.org (daniel.stutzbach) Date: Thu, 3 Mar 2011 00:37:50 +0100 (CET) Subject: [Python-checkins] r88711 - in python/branches/py3k: Misc/NEWS Objects/listobject.c Message-ID: <20110302233750.8E37CEE9AE@mail.python.org> Author: daniel.stutzbach Date: Thu Mar 3 00:37:50 2011 New Revision: 88711 Log: #11335: Fix memory leak when a sort key function throws an exception Modified: python/branches/py3k/Misc/NEWS python/branches/py3k/Objects/listobject.c Modified: python/branches/py3k/Misc/NEWS ============================================================================== --- python/branches/py3k/Misc/NEWS (original) +++ python/branches/py3k/Misc/NEWS Thu Mar 3 00:37:50 2011 @@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #11335: Fixed a memory leak in list.sort when the key function + throws an exception. + - Issue #8923: When a string is encoded to UTF-8 in strict mode, the result is cached into the object. Examples: str.encode(), str.encode('utf-8'), PyUnicode_AsUTF8String() and PyUnicode_AsEncodedString(unicode, "utf-8", Modified: python/branches/py3k/Objects/listobject.c ============================================================================== --- python/branches/py3k/Objects/listobject.c (original) +++ python/branches/py3k/Objects/listobject.c Thu Mar 3 00:37:50 2011 @@ -1957,6 +1957,8 @@ if (keys[i] == NULL) { for (i=i-1 ; i>=0 ; i--) Py_DECREF(keys[i]); + if (keys != &ms.temparray[saved_ob_size+1]) + PyMem_FREE(keys); goto keyfunc_fail; } } From python-checkins at python.org Thu Mar 3 00:40:36 2011 From: python-checkins at python.org (benjamin.peterson) Date: Thu, 3 Mar 2011 00:40:36 +0100 (CET) Subject: [Python-checkins] r88712 - in python/branches/py3k: Lib/test/test_minidom.py Lib/test/test_pulldom.py Misc/ACKS Message-ID: <20110302234036.3938BDFFD@mail.python.org> Author: benjamin.peterson Date: Thu Mar 3 00:40:36 2011 New Revision: 88712 Log: add tests for xml.pulldom #9373 Thanks to Mark Smith for the patch. Added: python/branches/py3k/Lib/test/test_pulldom.py (contents, props changed) Modified: python/branches/py3k/Lib/test/test_minidom.py python/branches/py3k/Misc/ACKS Modified: python/branches/py3k/Lib/test/test_minidom.py ============================================================================== --- python/branches/py3k/Lib/test/test_minidom.py (original) +++ python/branches/py3k/Lib/test/test_minidom.py Thu Mar 3 00:40:36 2011 @@ -4,9 +4,7 @@ from test.support import verbose, run_unittest, findfile import unittest -import xml.dom import xml.dom.minidom -import xml.parsers.expat from xml.dom.minidom import parse, Node, Document, parseString from xml.dom.minidom import getDOMImplementation @@ -14,7 +12,6 @@ tstfile = findfile("test.xml", subdir="xmltestdata") - # The tests of DocumentType importing use these helpers to construct # the documents to work with, since not all DOM builders actually # create the DocumentType nodes. @@ -1009,41 +1006,6 @@ "test NodeList.item()") doc.unlink() - def testSAX2DOM(self): - from xml.dom import pulldom - - sax2dom = pulldom.SAX2DOM() - sax2dom.startDocument() - sax2dom.startElement("doc", {}) - sax2dom.characters("text") - sax2dom.startElement("subelm", {}) - sax2dom.characters("text") - sax2dom.endElement("subelm") - sax2dom.characters("text") - sax2dom.endElement("doc") - sax2dom.endDocument() - - doc = sax2dom.document - root = doc.documentElement - (text1, elm1, text2) = root.childNodes - text3 = elm1.childNodes[0] - - self.confirm(text1.previousSibling is None and - text1.nextSibling is elm1 and - elm1.previousSibling is text1 and - elm1.nextSibling is text2 and - text2.previousSibling is elm1 and - text2.nextSibling is None and - text3.previousSibling is None and - text3.nextSibling is None, "testSAX2DOM - siblings") - - self.confirm(root.parentNode is doc and - text1.parentNode is root and - elm1.parentNode is root and - text2.parentNode is root and - text3.parentNode is elm1, "testSAX2DOM - parents") - doc.unlink() - def testEncodings(self): doc = parseString('') self.assertEqual(doc.toxml(), @@ -1490,6 +1452,7 @@ doc.appendChild(doc.createComment("foo--bar")) self.assertRaises(ValueError, doc.toxml) + def testEmptyXMLNSValue(self): doc = parseString("\n" "\n") Added: python/branches/py3k/Lib/test/test_pulldom.py ============================================================================== --- (empty file) +++ python/branches/py3k/Lib/test/test_pulldom.py Thu Mar 3 00:40:36 2011 @@ -0,0 +1,345 @@ +import io +import unittest +import sys +import xml.sax + +from xml.sax.xmlreader import AttributesImpl +from xml.dom import pulldom + +from test.support import run_unittest, findfile + + +tstfile = findfile("test.xml", subdir="xmltestdata") + +# A handy XML snippet, containing attributes, a namespace prefix, and a +# self-closing tag: +SMALL_SAMPLE = """ + + +Introduction to XSL +
+

A. Namespace

+""" + + +class PullDOMTestCase(unittest.TestCase): + + def test_parse(self): + """Minimal test of DOMEventStream.parse()""" + + # This just tests that parsing from a stream works. Actual parser + # semantics are tested using parseString with a more focused XML + # fragment. + + # Test with a filename: + list(pulldom.parse(tstfile)) + + # Test with a file object: + with open(tstfile, "rb") as fin: + list(pulldom.parse(fin)) + + def test_parse_semantics(self): + """Test DOMEventStream parsing semantics.""" + + items = pulldom.parseString(SMALL_SAMPLE) + evt, node = next(items) + # Just check the node is a Document: + self.assertTrue(hasattr(node, "createElement")) + self.assertEqual(pulldom.START_DOCUMENT, evt) + evt, node = next(items) + self.assertEqual(pulldom.START_ELEMENT, evt) + self.assertEqual("html", node.tagName) + self.assertEqual(2, len(node.attributes)) + self.assertEqual(node.attributes.getNamedItem("xmlns:xdc").value, + "http://www.xml.com/books") + evt, node = next(items) + self.assertEqual(pulldom.CHARACTERS, evt) # Line break + evt, node = next(items) + # XXX - A comment should be reported here! + # self.assertEqual(pulldom.COMMENT, evt) + # Line break after swallowed comment: + self.assertEqual(pulldom.CHARACTERS, evt) + evt, node = next(items) + self.assertEqual("title", node.tagName) + title_node = node + evt, node = next(items) + self.assertEqual(pulldom.CHARACTERS, evt) + self.assertEqual("Introduction to XSL", node.data) + evt, node = next(items) + self.assertEqual(pulldom.END_ELEMENT, evt) + self.assertEqual("title", node.tagName) + self.assertTrue(title_node is node) + evt, node = next(items) + self.assertEqual(pulldom.CHARACTERS, evt) + evt, node = next(items) + self.assertEqual(pulldom.START_ELEMENT, evt) + self.assertEqual("hr", node.tagName) + evt, node = next(items) + self.assertEqual(pulldom.END_ELEMENT, evt) + self.assertEqual("hr", node.tagName) + evt, node = next(items) + self.assertEqual(pulldom.CHARACTERS, evt) + evt, node = next(items) + self.assertEqual(pulldom.START_ELEMENT, evt) + self.assertEqual("p", node.tagName) + evt, node = next(items) + self.assertEqual(pulldom.START_ELEMENT, evt) + self.assertEqual("xdc:author", node.tagName) + evt, node = next(items) + self.assertEqual(pulldom.CHARACTERS, evt) + evt, node = next(items) + self.assertEqual(pulldom.END_ELEMENT, evt) + self.assertEqual("xdc:author", node.tagName) + evt, node = next(items) + self.assertEqual(pulldom.END_ELEMENT, evt) + evt, node = next(items) + self.assertEqual(pulldom.CHARACTERS, evt) + evt, node = next(items) + self.assertEqual(pulldom.END_ELEMENT, evt) + # XXX No END_DOCUMENT item is ever obtained: + #evt, node = next(items) + #self.assertEqual(pulldom.END_DOCUMENT, evt) + + def test_expandItem(self): + """Ensure expandItem works as expected.""" + items = pulldom.parseString(SMALL_SAMPLE) + # Loop through the nodes until we get to a "title" start tag: + for evt, item in items: + if evt == pulldom.START_ELEMENT and item.tagName == "title": + items.expandNode(item) + self.assertEqual(1, len(item.childNodes)) + break + else: + self.fail("No \"title\" element detected in SMALL_SAMPLE!") + # Loop until we get to the next start-element: + for evt, node in items: + if evt == pulldom.START_ELEMENT: + break + self.assertEqual("hr", node.tagName, + "expandNode did not leave DOMEventStream in the correct state.") + # Attempt to expand a standalone element: + items.expandNode(node) + self.assertEqual(next(items)[0], pulldom.CHARACTERS) + evt, node = next(items) + self.assertEqual(node.tagName, "p") + items.expandNode(node) + next(items) # Skip character data + evt, node = next(items) + self.assertEqual(node.tagName, "html") + with self.assertRaises(StopIteration): + next(items) + items.clear() + self.assertIsNone(items.parser) + self.assertIsNone(items.stream) + + @unittest.expectedFailure + def test_comment(self): + """PullDOM does not receive "comment" events.""" + items = pulldom.parseString(SMALL_SAMPLE) + for evt, _ in items: + if evt == pulldom.COMMENT: + break + else: + self.fail("No comment was encountered") + + @unittest.expectedFailure + def test_end_document(self): + """PullDOM does not receive "end-document" events.""" + items = pulldom.parseString(SMALL_SAMPLE) + # Read all of the nodes up to and including : + for evt, node in items: + if evt == pulldom.END_ELEMENT and node.tagName == "html": + break + try: + # Assert that the next node is END_DOCUMENT: + evt, node = next(items) + self.assertEqual(pulldom.END_DOCUMENT, evt) + except StopIteration: + self.fail( + "Ran out of events, but should have received END_DOCUMENT") + + +class ThoroughTestCase(unittest.TestCase): + """Test the hard-to-reach parts of pulldom.""" + + def test_thorough_parse(self): + """Test some of the hard-to-reach parts of PullDOM.""" + self._test_thorough(pulldom.parse(None, parser=SAXExerciser())) + + @unittest.expectedFailure + def test_sax2dom_fail(self): + """SAX2DOM can"t handle a PI before the root element.""" + pd = SAX2DOMTestHelper(None, SAXExerciser(), 12) + self._test_thorough(pd) + + def test_thorough_sax2dom(self): + """Test some of the hard-to-reach parts of SAX2DOM.""" + pd = SAX2DOMTestHelper(None, SAX2DOMExerciser(), 12) + self._test_thorough(pd, False) + + def _test_thorough(self, pd, before_root=True): + """Test some of the hard-to-reach parts of the parser, using a mock + parser.""" + + evt, node = next(pd) + self.assertEqual(pulldom.START_DOCUMENT, evt) + # Just check the node is a Document: + self.assertTrue(hasattr(node, "createElement")) + + if before_root: + evt, node = next(pd) + self.assertEqual(pulldom.COMMENT, evt) + self.assertEqual("a comment", node.data) + evt, node = next(pd) + self.assertEqual(pulldom.PROCESSING_INSTRUCTION, evt) + self.assertEqual("target", node.target) + self.assertEqual("data", node.data) + + evt, node = next(pd) + self.assertEqual(pulldom.START_ELEMENT, evt) + self.assertEqual("html", node.tagName) + + evt, node = next(pd) + self.assertEqual(pulldom.COMMENT, evt) + self.assertEqual("a comment", node.data) + evt, node = next(pd) + self.assertEqual(pulldom.PROCESSING_INSTRUCTION, evt) + self.assertEqual("target", node.target) + self.assertEqual("data", node.data) + + evt, node = next(pd) + self.assertEqual(pulldom.START_ELEMENT, evt) + self.assertEqual("p", node.tagName) + + evt, node = next(pd) + self.assertEqual(pulldom.CHARACTERS, evt) + self.assertEqual("text", node.data) + evt, node = next(pd) + self.assertEqual(pulldom.END_ELEMENT, evt) + self.assertEqual("p", node.tagName) + evt, node = next(pd) + self.assertEqual(pulldom.END_ELEMENT, evt) + self.assertEqual("html", node.tagName) + evt, node = next(pd) + self.assertEqual(pulldom.END_DOCUMENT, evt) + + +class SAXExerciser(object): + """A fake sax parser that calls some of the harder-to-reach sax methods to + ensure it emits the correct events""" + + def setContentHandler(self, handler): + self._handler = handler + + def parse(self, _): + h = self._handler + h.startDocument() + + # The next two items ensure that items preceding the first + # start_element are properly stored and emitted: + h.comment("a comment") + h.processingInstruction("target", "data") + + h.startElement("html", AttributesImpl({})) + + h.comment("a comment") + h.processingInstruction("target", "data") + + h.startElement("p", AttributesImpl({"class": "paraclass"})) + h.characters("text") + h.endElement("p") + h.endElement("html") + h.endDocument() + + def stub(self, *args, **kwargs): + """Stub method. Does nothing.""" + pass + setProperty = stub + setFeature = stub + + +class SAX2DOMExerciser(SAXExerciser): + """The same as SAXExerciser, but without the processing instruction and + comment before the root element, because S2D can"t handle it""" + + def parse(self, _): + h = self._handler + h.startDocument() + h.startElement("html", AttributesImpl({})) + h.comment("a comment") + h.processingInstruction("target", "data") + h.startElement("p", AttributesImpl({"class": "paraclass"})) + h.characters("text") + h.endElement("p") + h.endElement("html") + h.endDocument() + + +class SAX2DOMTestHelper(pulldom.DOMEventStream): + """Allows us to drive SAX2DOM from a DOMEventStream.""" + + def reset(self): + self.pulldom = pulldom.SAX2DOM() + # This content handler relies on namespace support + self.parser.setFeature(xml.sax.handler.feature_namespaces, 1) + self.parser.setContentHandler(self.pulldom) + + +class SAX2DOMTestCase(unittest.TestCase): + + def confirm(self, test, testname="Test"): + self.assertTrue(test, testname) + + def test_basic(self): + """Ensure SAX2DOM can parse from a stream.""" + with io.StringIO(SMALL_SAMPLE) as fin: + sd = SAX2DOMTestHelper(fin, xml.sax.make_parser(), + len(SMALL_SAMPLE)) + for evt, node in sd: + if evt == pulldom.START_ELEMENT and node.tagName == "html": + break + # Because the buffer is the same length as the XML, all the + # nodes should have been parsed and added: + self.assertGreater(len(node.childNodes), 0) + + def testSAX2DOM(self): + """Ensure SAX2DOM expands nodes as expected.""" + sax2dom = pulldom.SAX2DOM() + sax2dom.startDocument() + sax2dom.startElement("doc", {}) + sax2dom.characters("text") + sax2dom.startElement("subelm", {}) + sax2dom.characters("text") + sax2dom.endElement("subelm") + sax2dom.characters("text") + sax2dom.endElement("doc") + sax2dom.endDocument() + + doc = sax2dom.document + root = doc.documentElement + (text1, elm1, text2) = root.childNodes + text3 = elm1.childNodes[0] + + self.assertIsNone(text1.previousSibling) + self.assertIs(text1.nextSibling, elm1) + self.assertIs(elm1.previousSibling, text1) + self.assertIs(elm1.nextSibling, text2) + self.assertIs(text2.previousSibling, elm1) + self.assertIsNone(text2.nextSibling) + self.assertIsNone(text3.previousSibling) + self.assertIsNone(text3.nextSibling) + + self.assertIs(root.parentNode, doc) + self.assertIs(text1.parentNode, root) + self.assertIs(elm1.parentNode, root) + self.assertIs(text2.parentNode, root) + self.assertIs(text3.parentNode, elm1) + doc.unlink() + + +def test_main(): + run_unittest(PullDOMTestCase, ThoroughTestCase, SAX2DOMTestCase) + + +if __name__ == "__main__": + test_main() Modified: python/branches/py3k/Misc/ACKS ============================================================================== --- python/branches/py3k/Misc/ACKS (original) +++ python/branches/py3k/Misc/ACKS Thu Mar 3 00:40:36 2011 @@ -796,6 +796,7 @@ Eric V. Smith Christopher Smith Gregory P. Smith +Mark Smith Rafal Smotrzyk Dirk Soede Paul Sokolovsky From solipsis at pitrou.net Thu Mar 3 05:11:43 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Thu, 03 Mar 2011 05:11:43 +0100 Subject: [Python-checkins] Daily py3k reference leaks (r88712): sum=323 Message-ID: py3k results for svn r88712 (hg cset 9a48ec5947a8) -------------------------------------------------- test_pydoc leaked [323, 0, 0] references, sum=323 Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/py3k/refleaks/reflogO6Rv4u', '-x'] From python-checkins at python.org Thu Mar 3 06:27:17 2011 From: python-checkins at python.org (fred.drake) Date: Thu, 3 Mar 2011 06:27:17 +0100 (CET) Subject: [Python-checkins] r88717 - python/branches/py3k/Doc/library/argparse.rst Message-ID: <20110303052717.4B4D8EE98F@mail.python.org> Author: fred.drake Date: Thu Mar 3 06:27:17 2011 New Revision: 88717 Log: issue 11372: use range instead of xrange Modified: python/branches/py3k/Doc/library/argparse.rst Modified: python/branches/py3k/Doc/library/argparse.rst ============================================================================== --- python/branches/py3k/Doc/library/argparse.rst (original) +++ python/branches/py3k/Doc/library/argparse.rst Thu Mar 3 06:27:17 2011 @@ -929,7 +929,7 @@ simply check against a range of values:: >>> parser = argparse.ArgumentParser(prog='PROG') - >>> parser.add_argument('foo', type=int, choices=xrange(5, 10)) + >>> parser.add_argument('foo', type=int, choices=range(5, 10)) >>> parser.parse_args('7'.split()) Namespace(foo=7) >>> parser.parse_args('11'.split()) @@ -1303,7 +1303,7 @@ >>> parser = argparse.ArgumentParser() >>> parser.add_argument( - ... 'integers', metavar='int', type=int, choices=xrange(10), + ... 'integers', metavar='int', type=int, choices=range(10), ... nargs='+', help='an integer in the range 0..9') >>> parser.add_argument( ... '--sum', dest='accumulate', action='store_const', const=sum, From python-checkins at python.org Thu Mar 3 06:29:59 2011 From: python-checkins at python.org (fred.drake) Date: Thu, 3 Mar 2011 06:29:59 +0100 (CET) Subject: [Python-checkins] r88718 - in python/branches/release32-maint: Doc/library/argparse.rst Message-ID: <20110303052959.7F8EAF50E@mail.python.org> Author: fred.drake Date: Thu Mar 3 06:29:59 2011 New Revision: 88718 Log: Merged revisions 88717 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ........ r88717 | fred.drake | 2011-03-03 00:27:17 -0500 (Thu, 03 Mar 2011) | 2 lines issue 11372: use range instead of xrange ........ Modified: python/branches/release32-maint/ (props changed) python/branches/release32-maint/Doc/library/argparse.rst Modified: python/branches/release32-maint/Doc/library/argparse.rst ============================================================================== --- python/branches/release32-maint/Doc/library/argparse.rst (original) +++ python/branches/release32-maint/Doc/library/argparse.rst Thu Mar 3 06:29:59 2011 @@ -929,7 +929,7 @@ simply check against a range of values:: >>> parser = argparse.ArgumentParser(prog='PROG') - >>> parser.add_argument('foo', type=int, choices=xrange(5, 10)) + >>> parser.add_argument('foo', type=int, choices=range(5, 10)) >>> parser.parse_args('7'.split()) Namespace(foo=7) >>> parser.parse_args('11'.split()) @@ -1303,7 +1303,7 @@ >>> parser = argparse.ArgumentParser() >>> parser.add_argument( - ... 'integers', metavar='int', type=int, choices=xrange(10), + ... 'integers', metavar='int', type=int, choices=range(10), ... nargs='+', help='an integer in the range 0..9') >>> parser.add_argument( ... '--sum', dest='accumulate', action='store_const', const=sum, From python-checkins at python.org Thu Mar 3 12:08:33 2011 From: python-checkins at python.org (nick.coghlan) Date: Thu, 3 Mar 2011 12:08:33 +0100 (CET) Subject: [Python-checkins] r88719 - python/branches/py3k/Lib/test/crashers/compiler_recursion.py Message-ID: <20110303110833.6E8B8DFFD@mail.python.org> Author: nick.coghlan Date: Thu Mar 3 12:08:33 2011 New Revision: 88719 Log: Update compiler recursion crasher to more reliably blow the stack and add a tracker issue for it Modified: python/branches/py3k/Lib/test/crashers/compiler_recursion.py Modified: python/branches/py3k/Lib/test/crashers/compiler_recursion.py ============================================================================== --- python/branches/py3k/Lib/test/crashers/compiler_recursion.py (original) +++ python/branches/py3k/Lib/test/crashers/compiler_recursion.py Thu Mar 3 12:08:33 2011 @@ -1,5 +1,13 @@ """ -The compiler (>= 2.5) recurses happily. +The compiler (>= 2.5) recurses happily until it blows the stack. + +Recorded on the tracker as http://bugs.python.org/issue11383 """ -compile('()'*9**5, '?', 'exec') +# The variant below blows up in compiler_call, but there are assorted +# other variations that blow up in other functions +# e.g. '1*'*10**5+'1' will die in compiler_visit_expr + +# The exact limit to destroy the stack will vary by platform +# but 100k should do the trick most places +compile('()'*10**5, '?', 'exec') From python-checkins at python.org Thu Mar 3 13:54:05 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 3 Mar 2011 13:54:05 +0100 (CET) Subject: [Python-checkins] r88720 - in python/branches/py3k: Lib/subprocess.py Lib/test/test_subprocess.py Misc/NEWS Message-ID: <20110303125405.485CAEE98C@mail.python.org> Author: victor.stinner Date: Thu Mar 3 13:54:05 2011 New Revision: 88720 Log: Issue #8513: On UNIX, subprocess supports bytes command string. Modified: python/branches/py3k/Lib/subprocess.py python/branches/py3k/Lib/test/test_subprocess.py python/branches/py3k/Misc/NEWS Modified: python/branches/py3k/Lib/subprocess.py ============================================================================== --- python/branches/py3k/Lib/subprocess.py (original) +++ python/branches/py3k/Lib/subprocess.py Thu Mar 3 13:54:05 2011 @@ -1125,7 +1125,7 @@ restore_signals, start_new_session): """Execute program (POSIX version)""" - if isinstance(args, str): + if isinstance(args, (str, bytes)): args = [args] else: args = list(args) Modified: python/branches/py3k/Lib/test/test_subprocess.py ============================================================================== --- python/branches/py3k/Lib/test/test_subprocess.py (original) +++ python/branches/py3k/Lib/test/test_subprocess.py Thu Mar 3 13:54:05 2011 @@ -1059,6 +1059,11 @@ exitcode = subprocess.call([abs_program, "-c", "pass"]) self.assertEqual(exitcode, 0) + # absolute bytes path as a string + cmd = b"'" + abs_program + b"' -c pass" + exitcode = subprocess.call(cmd, shell=True) + self.assertEqual(exitcode, 0) + # bytes program, unicode PATH env = os.environ.copy() env["PATH"] = path Modified: python/branches/py3k/Misc/NEWS ============================================================================== --- python/branches/py3k/Misc/NEWS (original) +++ python/branches/py3k/Misc/NEWS Thu Mar 3 13:54:05 2011 @@ -52,6 +52,8 @@ Library ------- +- Issue #8513: On UNIX, subprocess supports bytes command string. + - Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall. - Issue #11140: Lock.release() now raises a RuntimeError when attempting From python-checkins at python.org Thu Mar 3 13:54:07 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 3 Mar 2011 13:54:07 +0100 (CET) Subject: [Python-checkins] r88721 - in python/branches/py3k: Doc/library/platform.rst Lib/platform.py Lib/test/test_platform.py Misc/NEWS Message-ID: <20110303125407.977B9EE9CA@mail.python.org> Author: victor.stinner Date: Thu Mar 3 13:54:07 2011 New Revision: 88721 Log: Issue #11377: Deprecate platform.popen() and reimplement it with os.popen(). Modified: python/branches/py3k/Doc/library/platform.rst python/branches/py3k/Lib/platform.py python/branches/py3k/Lib/test/test_platform.py python/branches/py3k/Misc/NEWS Modified: python/branches/py3k/Doc/library/platform.rst ============================================================================== --- python/branches/py3k/Doc/library/platform.rst (original) +++ python/branches/py3k/Doc/library/platform.rst Thu Mar 3 13:54:07 2011 @@ -214,6 +214,10 @@ preferring :func:`win32pipe.popen`. On Windows NT, :func:`win32pipe.popen` should work; on Windows 9x it hangs due to bugs in the MS C library. + .. deprecated:: 3.3 + This function is obsolete. Use the :mod:`subprocess` module. Check + especially the :ref:`subprocess-replacements` section. + Mac OS Platform --------------- Modified: python/branches/py3k/Lib/platform.py ============================================================================== --- python/branches/py3k/Lib/platform.py (original) +++ python/branches/py3k/Lib/platform.py Thu Mar 3 13:54:07 2011 @@ -357,92 +357,11 @@ supported_dists=supported_dists, full_distribution_name=0) -class _popen: - - """ Fairly portable (alternative) popen implementation. - - This is mostly needed in case os.popen() is not available, or - doesn't work as advertised, e.g. in Win9X GUI programs like - PythonWin or IDLE. - - Writing to the pipe is currently not supported. - - """ - tmpfile = '' - pipe = None - bufsize = None - mode = 'r' - - def __init__(self,cmd,mode='r',bufsize=None): - - if mode != 'r': - raise ValueError('popen()-emulation only supports read mode') - import tempfile - self.tmpfile = tmpfile = tempfile.mktemp() - os.system(cmd + ' > %s' % tmpfile) - self.pipe = open(tmpfile,'rb') - self.bufsize = bufsize - self.mode = mode - - def read(self): - - return self.pipe.read() - - def readlines(self): - - if self.bufsize is not None: - return self.pipe.readlines() - - def close(self, - - remove=os.unlink,error=os.error): - - if self.pipe: - rc = self.pipe.close() - else: - rc = 255 - if self.tmpfile: - try: - remove(self.tmpfile) - except error: - pass - return rc - - # Alias - __del__ = close - def popen(cmd, mode='r', bufsize=None): """ Portable popen() interface. """ - # Find a working popen implementation preferring win32pipe.popen - # over os.popen over _popen - popen = None - if os.environ.get('OS','') == 'Windows_NT': - # On NT win32pipe should work; on Win9x it hangs due to bugs - # in the MS C lib (see MS KnowledgeBase article Q150956) - try: - import win32pipe - except ImportError: - pass - else: - popen = win32pipe.popen - if popen is None: - if hasattr(os,'popen'): - popen = os.popen - # Check whether it works... it doesn't in GUI programs - # on Windows platforms - if sys.platform == 'win32': # XXX Others too ? - try: - popen('') - except os.error: - popen = _popen - else: - popen = _popen - if bufsize is None: - return popen(cmd,mode) - else: - return popen(cmd,mode,bufsize) + return os.popen(cmd, mode, bufsize) def _norm_version(version, build=''): Modified: python/branches/py3k/Lib/test/test_platform.py ============================================================================== --- python/branches/py3k/Lib/test/test_platform.py (original) +++ python/branches/py3k/Lib/test/test_platform.py Thu Mar 3 13:54:07 2011 @@ -243,6 +243,25 @@ ): self.assertEqual(platform._parse_release_file(input), output) + def test_popen(self): + command = "'{}' -c 'print(\"Hello\")'".format(sys.executable) + with platform.popen(command) as stdout: + hello = stdout.read().strip() + stdout.close() + self.assertEqual(hello, "Hello") + + command = "'{}' -c 'import sys; data=sys.stdin.read(); exit(len(data))'".format(sys.executable) + data = 'plop' + with platform.popen(command, 'w') as stdin: + stdout = stdin.write(data) + ret = stdin.close() + self.assertIsNotNone(ret) + if os.name == 'nt': + returncode = ret + else: + returncode = ret >> 8 + self.assertEqual(returncode, len(data)) + def test_main(): support.run_unittest( Modified: python/branches/py3k/Misc/NEWS ============================================================================== --- python/branches/py3k/Misc/NEWS (original) +++ python/branches/py3k/Misc/NEWS Thu Mar 3 13:54:07 2011 @@ -52,6 +52,8 @@ Library ------- +- Issue #11377: Deprecate platform.popen() and reimplement it with os.popen(). + - Issue #8513: On UNIX, subprocess supports bytes command string. - Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall. From python-checkins at python.org Thu Mar 3 14:57:47 2011 From: python-checkins at python.org (giampaolo.rodola) Date: Thu, 3 Mar 2011 14:57:47 +0100 (CET) Subject: [Python-checkins] r88722 - in python/branches/py3k: Lib/asyncore.py Misc/NEWS Message-ID: <20110303135747.AC028EE983@mail.python.org> Author: giampaolo.rodola Date: Thu Mar 3 14:57:47 2011 New Revision: 88722 Log: Fix issue 11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), recv() and send(). Modified: python/branches/py3k/Lib/asyncore.py python/branches/py3k/Misc/NEWS Modified: python/branches/py3k/Lib/asyncore.py ============================================================================== --- python/branches/py3k/Lib/asyncore.py (original) +++ python/branches/py3k/Lib/asyncore.py Thu Mar 3 14:57:47 2011 @@ -54,9 +54,10 @@ import os from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \ - ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, errorcode + ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, EPIPE, errorcode -_DISCONNECTED = frozenset((ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED)) +_DISCONNECTED = frozenset((ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED, EPIPE, + EBADF)) try: socket_map @@ -111,7 +112,7 @@ if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL): obj.handle_close() except socket.error as e: - if e.args[0] not in (EBADF, ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED): + if e.args[0] not in _DISCONNECTED: obj.handle_error() else: obj.handle_close() @@ -355,7 +356,7 @@ except TypeError: return None except socket.error as why: - if why.args[0] in (EWOULDBLOCK, ECONNABORTED): + if why.args[0] in (EWOULDBLOCK, ECONNABORTED, EAGAIN): return None else: raise Modified: python/branches/py3k/Misc/NEWS ============================================================================== --- python/branches/py3k/Misc/NEWS (original) +++ python/branches/py3k/Misc/NEWS Thu Mar 3 14:57:47 2011 @@ -52,6 +52,9 @@ Library ------- +- Issue #11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors + on accept(), send() and recv(). + - Issue #11377: Deprecate platform.popen() and reimplement it with os.popen(). - Issue #8513: On UNIX, subprocess supports bytes command string. From python-checkins at python.org Thu Mar 3 14:59:28 2011 From: python-checkins at python.org (giampaolo.rodola) Date: Thu, 3 Mar 2011 14:59:28 +0100 (CET) Subject: [Python-checkins] r88723 - in python/branches/release32-maint: Lib/asyncore.py Misc/NEWS Message-ID: <20110303135928.63C15EE983@mail.python.org> Author: giampaolo.rodola Date: Thu Mar 3 14:59:28 2011 New Revision: 88723 Log: Merged revisions 88722 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ........ r88722 | giampaolo.rodola | 2011-03-03 14:57:47 +0100 (gio, 03 mar 2011) | 1 line Fix issue 11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), recv() and send(). ........ Modified: python/branches/release32-maint/ (props changed) python/branches/release32-maint/Lib/asyncore.py python/branches/release32-maint/Misc/NEWS Modified: python/branches/release32-maint/Lib/asyncore.py ============================================================================== --- python/branches/release32-maint/Lib/asyncore.py (original) +++ python/branches/release32-maint/Lib/asyncore.py Thu Mar 3 14:59:28 2011 @@ -54,9 +54,10 @@ import os from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \ - ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, errorcode + ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, EPIPE, errorcode -_DISCONNECTED = frozenset((ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED)) +_DISCONNECTED = frozenset((ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED, EPIPE, + EBADF)) try: socket_map @@ -111,7 +112,7 @@ if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL): obj.handle_close() except socket.error as e: - if e.args[0] not in (EBADF, ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED): + if e.args[0] not in _DISCONNECTED: obj.handle_error() else: obj.handle_close() @@ -355,7 +356,7 @@ except TypeError: return None except socket.error as why: - if why.args[0] in (EWOULDBLOCK, ECONNABORTED): + if why.args[0] in (EWOULDBLOCK, ECONNABORTED, EAGAIN): return None else: raise Modified: python/branches/release32-maint/Misc/NEWS ============================================================================== --- python/branches/release32-maint/Misc/NEWS (original) +++ python/branches/release32-maint/Misc/NEWS Thu Mar 3 14:59:28 2011 @@ -28,6 +28,9 @@ Library ------- +- Issue #11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors + on accept(), send() and recv(). + - Issue #11326: Add the missing connect_ex() implementation for SSL sockets, and make it work for non-blocking connects. From python-checkins at python.org Thu Mar 3 15:07:22 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 3 Mar 2011 15:07:22 +0100 (CET) Subject: [Python-checkins] r88724 - python/branches/py3k/Lib/test/test_platform.py Message-ID: <20110303140722.0E3ADEE9D6@mail.python.org> Author: victor.stinner Date: Thu Mar 3 15:07:21 2011 New Revision: 88724 Log: Issue #11377: Fix quoting on Windows in test_platform Modified: python/branches/py3k/Lib/test/test_platform.py Modified: python/branches/py3k/Lib/test/test_platform.py ============================================================================== --- python/branches/py3k/Lib/test/test_platform.py (original) +++ python/branches/py3k/Lib/test/test_platform.py Thu Mar 3 15:07:21 2011 @@ -244,14 +244,23 @@ self.assertEqual(platform._parse_release_file(input), output) def test_popen(self): - command = "'{}' -c 'print(\"Hello\")'".format(sys.executable) + mswindows = (sys.platform == "win32") + + if mswindows: + command = '"{}" -c "print(\'Hello\')"'.format(sys.executable) + else: + command = "'{}' -c 'print(\"Hello\")'".format(sys.executable) with platform.popen(command) as stdout: hello = stdout.read().strip() stdout.close() self.assertEqual(hello, "Hello") - command = "'{}' -c 'import sys; data=sys.stdin.read(); exit(len(data))'".format(sys.executable) data = 'plop' + if mswindows: + command = '"{}" -c "import sys; data=sys.stdin.read(); exit(len(data))"' + else: + command = "'{}' -c 'import sys; data=sys.stdin.read(); exit(len(data))'" + command = command.format(sys.executable) with platform.popen(command, 'w') as stdin: stdout = stdin.write(data) ret = stdin.close() From python-checkins at python.org Thu Mar 3 15:09:45 2011 From: python-checkins at python.org (giampaolo.rodola) Date: Thu, 3 Mar 2011 15:09:45 +0100 (CET) Subject: [Python-checkins] r88725 - in python/branches/release31-maint: Lib/asyncore.py Misc/NEWS Message-ID: <20110303140945.7B02CF591@mail.python.org> Author: giampaolo.rodola Date: Thu Mar 3 15:09:45 2011 New Revision: 88725 Log: Merged revisions 88722 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ........ r88722 | giampaolo.rodola | 2011-03-03 14:57:47 +0100 (gio, 03 mar 2011) | 1 line Fix issue 11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), recv() and send(). ........ Modified: python/branches/release31-maint/ (props changed) python/branches/release31-maint/Lib/asyncore.py python/branches/release31-maint/Misc/NEWS Modified: python/branches/release31-maint/Lib/asyncore.py ============================================================================== --- python/branches/release31-maint/Lib/asyncore.py (original) +++ python/branches/release31-maint/Lib/asyncore.py Thu Mar 3 15:09:45 2011 @@ -52,7 +52,11 @@ import time import os from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \ - ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, errorcode + ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, EPIPE, \ + EAGAIN, errorcode + +_DISCONNECTED = frozenset((ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED, EPIPE, + EBADF)) try: socket_map @@ -107,7 +111,7 @@ if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL): obj.handle_close() except socket.error as e: - if e.args[0] not in (EBADF, ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED): + if e.args[0] not in _DISCONNECTED: obj.handle_error() else: obj.handle_close() @@ -349,7 +353,7 @@ except TypeError: return None except socket.error as why: - if why.args[0] in (EWOULDBLOCK, ECONNABORTED): + if why.args[0] in (EWOULDBLOCK, ECONNABORTED, EAGAIN): return None else: raise Modified: python/branches/release31-maint/Misc/NEWS ============================================================================== --- python/branches/release31-maint/Misc/NEWS (original) +++ python/branches/release31-maint/Misc/NEWS Thu Mar 3 15:09:45 2011 @@ -37,6 +37,9 @@ Library ------- +- Issue #11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors + on accept(), send() and recv(). + - Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers larger than 4GB. Patch by Nadeem Vawda. From python-checkins at python.org Thu Mar 3 15:10:58 2011 From: python-checkins at python.org (giampaolo.rodola) Date: Thu, 3 Mar 2011 15:10:58 +0100 (CET) Subject: [Python-checkins] r88726 - python/branches/py3k/Lib/asyncore.py Message-ID: <20110303141058.E75A0F591@mail.python.org> Author: giampaolo.rodola Date: Thu Mar 3 15:10:58 2011 New Revision: 88726 Log: fix attribute error Modified: python/branches/py3k/Lib/asyncore.py Modified: python/branches/py3k/Lib/asyncore.py ============================================================================== --- python/branches/py3k/Lib/asyncore.py (original) +++ python/branches/py3k/Lib/asyncore.py Thu Mar 3 15:10:58 2011 @@ -54,7 +54,8 @@ import os from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \ - ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, EPIPE, errorcode + ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, EPIPE, EAGAIN, \ + errorcode _DISCONNECTED = frozenset((ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED, EPIPE, EBADF)) From python-checkins at python.org Thu Mar 3 15:11:46 2011 From: python-checkins at python.org (giampaolo.rodola) Date: Thu, 3 Mar 2011 15:11:46 +0100 (CET) Subject: [Python-checkins] r88727 - in python/branches/release32-maint: Lib/asyncore.py Message-ID: <20110303141146.8066CEE98C@mail.python.org> Author: giampaolo.rodola Date: Thu Mar 3 15:11:46 2011 New Revision: 88727 Log: Merged revisions 88726 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ........ r88726 | giampaolo.rodola | 2011-03-03 15:10:58 +0100 (gio, 03 mar 2011) | 1 line fix attribute error ........ Modified: python/branches/release32-maint/ (props changed) python/branches/release32-maint/Lib/asyncore.py Modified: python/branches/release32-maint/Lib/asyncore.py ============================================================================== --- python/branches/release32-maint/Lib/asyncore.py (original) +++ python/branches/release32-maint/Lib/asyncore.py Thu Mar 3 15:11:46 2011 @@ -54,7 +54,8 @@ import os from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \ - ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, EPIPE, errorcode + ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, EPIPE, EAGAIN, \ + errorcode _DISCONNECTED = frozenset((ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED, EPIPE, EBADF)) From python-checkins at python.org Thu Mar 3 15:17:51 2011 From: python-checkins at python.org (giampaolo.rodola) Date: Thu, 3 Mar 2011 15:17:51 +0100 (CET) Subject: [Python-checkins] r88728 - in python/branches/release27-maint: Lib/asyncore.py Misc/NEWS Message-ID: <20110303141751.A6353EE9CA@mail.python.org> Author: giampaolo.rodola Date: Thu Mar 3 15:17:51 2011 New Revision: 88728 Log: Merged revisions 88722 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ........ r88722 | giampaolo.rodola | 2011-03-03 14:57:47 +0100 (gio, 03 mar 2011) | 1 line Fix issue 11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), recv() and send(). ........ Modified: python/branches/release27-maint/ (props changed) python/branches/release27-maint/Lib/asyncore.py python/branches/release27-maint/Misc/NEWS Modified: python/branches/release27-maint/Lib/asyncore.py ============================================================================== --- python/branches/release27-maint/Lib/asyncore.py (original) +++ python/branches/release27-maint/Lib/asyncore.py Thu Mar 3 15:17:51 2011 @@ -54,7 +54,11 @@ import os from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \ - ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, errorcode + ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, EPIPE, EAGAIN, \ + errorcode + +_DISCONNECTED = frozenset((ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED, EPIPE, + EBADF)) try: socket_map @@ -109,7 +113,7 @@ if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL): obj.handle_close() except socket.error, e: - if e.args[0] not in (EBADF, ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED): + if e.args[0] not in _DISCONNECTED: obj.handle_error() else: obj.handle_close() @@ -353,7 +357,7 @@ except TypeError: return None except socket.error as why: - if why.args[0] in (EWOULDBLOCK, ECONNABORTED): + if why.args[0] in (EWOULDBLOCK, ECONNABORTED, EAGAIN): return None else: raise @@ -367,7 +371,7 @@ except socket.error, why: if why.args[0] == EWOULDBLOCK: return 0 - elif why.args[0] in (ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED): + elif why.args[0] in _DISCONNECTED: self.handle_close() return 0 else: @@ -385,7 +389,7 @@ return data except socket.error, why: # winsock sometimes throws ENOTCONN - if why.args[0] in [ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED]: + if why.args[0] in _DISCONNECTED: self.handle_close() return '' else: Modified: python/branches/release27-maint/Misc/NEWS ============================================================================== --- python/branches/release27-maint/Misc/NEWS (original) +++ python/branches/release27-maint/Misc/NEWS Thu Mar 3 15:17:51 2011 @@ -37,6 +37,9 @@ Library ------- +- Issue #11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors + on accept(), send() and recv(). + - Issue #11326: Add the missing connect_ex() implementation for SSL sockets, and make it work for non-blocking connects. From python-checkins at python.org Thu Mar 3 17:10:58 2011 From: python-checkins at python.org (giampaolo.rodola) Date: Thu, 3 Mar 2011 17:10:58 +0100 (CET) Subject: [Python-checkins] r88729 - python/branches/py3k/Modules/posixmodule.c Message-ID: <20110303161058.15BDFEE98B@mail.python.org> Author: giampaolo.rodola Date: Thu Mar 3 17:10:51 2011 New Revision: 88729 Log: Issue 11351 - apply patch by Steffen Daode Nurpmeso which should fix TestSendfile.test_headers failure on OSX. Modified: python/branches/py3k/Modules/posixmodule.c Modified: python/branches/py3k/Modules/posixmodule.c ============================================================================== --- python/branches/py3k/Modules/posixmodule.c (original) +++ python/branches/py3k/Modules/posixmodule.c Thu Mar 3 17:10:51 2011 @@ -5867,36 +5867,42 @@ #ifdef HAVE_SENDFILE #if defined(__FreeBSD__) || defined(__DragonFly__) || defined(__APPLE__) -static int +static Py_ssize_t iov_setup(struct iovec **iov, Py_buffer **buf, PyObject *seq, int cnt, int type) { int i, j; + Py_ssize_t blen, total = 0; + *iov = PyMem_New(struct iovec, cnt); if (*iov == NULL) { PyErr_NoMemory(); - return 0; + return total; } + *buf = PyMem_New(Py_buffer, cnt); if (*buf == NULL) { PyMem_Del(*iov); PyErr_NoMemory(); - return 0; + return total; } for (i = 0; i < cnt; i++) { - if (PyObject_GetBuffer(PySequence_GetItem(seq, i), &(*buf)[i], - type) == -1) { + if (PyObject_GetBuffer(PySequence_GetItem(seq, i), + &(*buf)[i], type) == -1) { PyMem_Del(*iov); for (j = 0; j < i; j++) { PyBuffer_Release(&(*buf)[j]); - } + } PyMem_Del(*buf); - return 0; + total = 0; + return total; } (*iov)[i].iov_base = (*buf)[i].buf; - (*iov)[i].iov_len = (*buf)[i].len; + blen = (*buf)[i].len; + (*iov)[i].iov_len = blen; + total += blen; } - return 1; + return total; } static void @@ -5954,10 +5960,15 @@ "sendfile() headers must be a sequence or None"); return NULL; } else { + Py_ssize_t i = 0; /* Avoid uninitialized warning */ sf.hdr_cnt = PySequence_Size(headers); - if (sf.hdr_cnt > 0 && !iov_setup(&(sf.headers), &hbuf, - headers, sf.hdr_cnt, PyBUF_SIMPLE)) + if (sf.hdr_cnt > 0 && + !(i = iov_setup(&(sf.headers), &hbuf, + headers, sf.hdr_cnt, PyBUF_SIMPLE))) return NULL; +#ifdef __APPLE__ + sbytes += i; +#endif } } if (trailers != NULL) { @@ -5966,10 +5977,15 @@ "sendfile() trailers must be a sequence or None"); return NULL; } else { + Py_ssize_t i = 0; /* Avoid uninitialized warning */ sf.trl_cnt = PySequence_Size(trailers); - if (sf.trl_cnt > 0 && !iov_setup(&(sf.trailers), &tbuf, - trailers, sf.trl_cnt, PyBUF_SIMPLE)) + if (sf.trl_cnt > 0 && + !(i = iov_setup(&(sf.trailers), &tbuf, + trailers, sf.trl_cnt, PyBUF_SIMPLE))) return NULL; +#ifdef __APPLE__ + sbytes += i; +#endif } } From python-checkins at python.org Thu Mar 3 19:03:36 2011 From: python-checkins at python.org (r.david.murray) Date: Thu, 3 Mar 2011 19:03:36 +0100 (CET) Subject: [Python-checkins] r88730 - in python/branches/py3k: Lib/mailbox.py Misc/NEWS Message-ID: <20110303180336.6751EEE984@mail.python.org> Author: r.david.murray Date: Thu Mar 3 19:03:36 2011 New Revision: 88730 Log: #11306: Treat EROFS like EACCES when making a 'file is read-only' decision Modified: python/branches/py3k/Lib/mailbox.py python/branches/py3k/Misc/NEWS Modified: python/branches/py3k/Lib/mailbox.py ============================================================================== --- python/branches/py3k/Lib/mailbox.py (original) +++ python/branches/py3k/Lib/mailbox.py Thu Mar 3 19:03:36 2011 @@ -578,7 +578,7 @@ f = open(self._path, 'wb+') else: raise NoSuchMailboxError(self._path) - elif e.errno == errno.EACCES: + elif e.errno in (errno.EACCES, errno.EROFS): f = open(self._path, 'rb') else: raise @@ -2002,7 +2002,7 @@ try: fcntl.lockf(f, fcntl.LOCK_EX | fcntl.LOCK_NB) except IOError as e: - if e.errno in (errno.EAGAIN, errno.EACCES): + if e.errno in (errno.EAGAIN, errno.EACCES, errno.EROFS): raise ExternalClashError('lockf: lock unavailable: %s' % f.name) else: @@ -2012,7 +2012,7 @@ pre_lock = _create_temporary(f.name + '.lock') pre_lock.close() except IOError as e: - if e.errno == errno.EACCES: + if e.errno in (errno.EACCES, errno.EROFS): return # Without write access, just skip dotlocking. else: raise Modified: python/branches/py3k/Misc/NEWS ============================================================================== --- python/branches/py3k/Misc/NEWS (original) +++ python/branches/py3k/Misc/NEWS Thu Mar 3 19:03:36 2011 @@ -52,6 +52,10 @@ Library ------- +- Issue #11306: mailbox in certain cases adapts to an inability to open + certain files in read-write mode. Previously it detected this by + checking for EACCES, now it also checks for EROFS. + - Issue #11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), send() and recv(). From python-checkins at python.org Thu Mar 3 19:12:34 2011 From: python-checkins at python.org (r.david.murray) Date: Thu, 3 Mar 2011 19:12:34 +0100 (CET) Subject: [Python-checkins] r88731 - in python/branches/release32-maint: Lib/mailbox.py Misc/NEWS Message-ID: <20110303181234.6C1D7EE984@mail.python.org> Author: r.david.murray Date: Thu Mar 3 19:12:34 2011 New Revision: 88731 Log: Merged revisions 88730 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ........ r88730 | r.david.murray | 2011-03-03 13:03:36 -0500 (Thu, 03 Mar 2011) | 2 lines #11306: Treat EROFS like EACCES when making a 'file is read-only' decision ........ Modified: python/branches/release32-maint/ (props changed) python/branches/release32-maint/Lib/mailbox.py python/branches/release32-maint/Misc/NEWS Modified: python/branches/release32-maint/Lib/mailbox.py ============================================================================== --- python/branches/release32-maint/Lib/mailbox.py (original) +++ python/branches/release32-maint/Lib/mailbox.py Thu Mar 3 19:12:34 2011 @@ -578,7 +578,7 @@ f = open(self._path, 'wb+') else: raise NoSuchMailboxError(self._path) - elif e.errno == errno.EACCES: + elif e.errno in (errno.EACCES, errno.EROFS): f = open(self._path, 'rb') else: raise @@ -2002,7 +2002,7 @@ try: fcntl.lockf(f, fcntl.LOCK_EX | fcntl.LOCK_NB) except IOError as e: - if e.errno in (errno.EAGAIN, errno.EACCES): + if e.errno in (errno.EAGAIN, errno.EACCES, errno.EROFS): raise ExternalClashError('lockf: lock unavailable: %s' % f.name) else: @@ -2012,7 +2012,7 @@ pre_lock = _create_temporary(f.name + '.lock') pre_lock.close() except IOError as e: - if e.errno == errno.EACCES: + if e.errno in (errno.EACCES, errno.EROFS): return # Without write access, just skip dotlocking. else: raise Modified: python/branches/release32-maint/Misc/NEWS ============================================================================== --- python/branches/release32-maint/Misc/NEWS (original) +++ python/branches/release32-maint/Misc/NEWS Thu Mar 3 19:12:34 2011 @@ -28,6 +28,10 @@ Library ------- +- Issue #11306: mailbox in certain cases adapts to an inability to open + certain files in read-write mode. Previously it detected this by + checking for EACCES, now it also checks for EROFS. + - Issue #11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), send() and recv(). From python-checkins at python.org Thu Mar 3 19:17:40 2011 From: python-checkins at python.org (r.david.murray) Date: Thu, 3 Mar 2011 19:17:40 +0100 (CET) Subject: [Python-checkins] r88732 - in python/branches/release27-maint: Lib/mailbox.py Misc/NEWS Message-ID: <20110303181740.85B59EE9D5@mail.python.org> Author: r.david.murray Date: Thu Mar 3 19:17:40 2011 New Revision: 88732 Log: Merged revisions 88730 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ........ r88730 | r.david.murray | 2011-03-03 13:03:36 -0500 (Thu, 03 Mar 2011) | 2 lines #11306: Treat EROFS like EACCES when making a 'file is read-only' decision ........ Modified: python/branches/release27-maint/ (props changed) python/branches/release27-maint/Lib/mailbox.py python/branches/release27-maint/Misc/NEWS Modified: python/branches/release27-maint/Lib/mailbox.py ============================================================================== --- python/branches/release27-maint/Lib/mailbox.py (original) +++ python/branches/release27-maint/Lib/mailbox.py Thu Mar 3 19:17:40 2011 @@ -554,7 +554,7 @@ f = open(self._path, 'wb+') else: raise NoSuchMailboxError(self._path) - elif e.errno == errno.EACCES: + elif e.errno in (errno.EACCES, errno.EROFS): f = open(self._path, 'rb') else: raise @@ -1905,7 +1905,7 @@ try: fcntl.lockf(f, fcntl.LOCK_EX | fcntl.LOCK_NB) except IOError, e: - if e.errno in (errno.EAGAIN, errno.EACCES): + if e.errno in (errno.EAGAIN, errno.EACCES, errno.EROFS): raise ExternalClashError('lockf: lock unavailable: %s' % f.name) else: @@ -1915,7 +1915,7 @@ pre_lock = _create_temporary(f.name + '.lock') pre_lock.close() except IOError, e: - if e.errno == errno.EACCES: + if e.errno in (errno.EACCES, errno.EROFS): return # Without write access, just skip dotlocking. else: raise Modified: python/branches/release27-maint/Misc/NEWS ============================================================================== --- python/branches/release27-maint/Misc/NEWS (original) +++ python/branches/release27-maint/Misc/NEWS Thu Mar 3 19:17:40 2011 @@ -37,6 +37,10 @@ Library ------- +- Issue #11306: mailbox in certain cases adapts to an inability to open + certain files in read-write mode. Previously it detected this by + checking for EACCES, now it also checks for EROFS. + - Issue #11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), send() and recv(). From python-checkins at python.org Thu Mar 3 19:21:02 2011 From: python-checkins at python.org (eli.bendersky) Date: Thu, 3 Mar 2011 19:21:02 +0100 (CET) Subject: [Python-checkins] r88733 - in python/branches/py3k: Doc/library/stdtypes.rst Lib/test/test_bytes.py Misc/NEWS Objects/bytearrayobject.c Message-ID: <20110303182102.3E790EE9CE@mail.python.org> Author: eli.bendersky Date: Thu Mar 3 19:21:02 2011 New Revision: 88733 Log: Issue #10516: added copy() and clear() methods to bytearrays as well Modified: python/branches/py3k/Doc/library/stdtypes.rst python/branches/py3k/Lib/test/test_bytes.py python/branches/py3k/Misc/NEWS python/branches/py3k/Objects/bytearrayobject.c Modified: python/branches/py3k/Doc/library/stdtypes.rst ============================================================================== --- python/branches/py3k/Doc/library/stdtypes.rst (original) +++ python/branches/py3k/Doc/library/stdtypes.rst Thu Mar 3 19:21:02 2011 @@ -1675,10 +1675,10 @@ | ``s.extend(x)`` | same as ``s[len(s):len(s)] = | \(2) | | | x`` | | +------------------------------+--------------------------------+---------------------+ -| ``s.clear()`` | remove all items from ``s`` | \(8) | +| ``s.clear()`` | remove all items from ``s`` | | | | | | +------------------------------+--------------------------------+---------------------+ -| ``s.copy()`` | return a shallow copy of ``s`` | \(8) | +| ``s.copy()`` | return a shallow copy of ``s`` | | | | | | +------------------------------+--------------------------------+---------------------+ | ``s.count(x)`` | return number of *i*'s for | | @@ -1757,8 +1757,7 @@ detect that the list has been mutated during a sort. (8) - :meth:`clear`, :meth:`!copy` and :meth:`sort` are not supported by - :class:`bytearray` objects. + :meth:`sort` is not supported by :class:`bytearray` objects. .. versionadded:: 3.3 :meth:`clear` and :meth:`!copy` methods. Modified: python/branches/py3k/Lib/test/test_bytes.py ============================================================================== --- python/branches/py3k/Lib/test/test_bytes.py (original) +++ python/branches/py3k/Lib/test/test_bytes.py Thu Mar 3 19:21:02 2011 @@ -564,6 +564,39 @@ b.reverse() self.assertFalse(b) + def test_clear(self): + b = bytearray(b'python') + b.clear() + self.assertEqual(b, b'') + + b = bytearray(b'') + b.clear() + self.assertEqual(b, b'') + + b = bytearray(b'') + b.append(ord('r')) + b.clear() + b.append(ord('p')) + self.assertEqual(b, b'p') + + def test_copy(self): + b = bytearray(b'abc') + bb = b.copy() + self.assertEqual(bb, b'abc') + + b = bytearray(b'') + bb = b.copy() + self.assertEqual(bb, b'') + + # test that it's indeed a copy and not a reference + b = bytearray(b'abc') + bb = b.copy() + self.assertEqual(b, bb) + self.assertIsNot(b, bb) + bb.append(ord('d')) + self.assertEqual(bb, b'abcd') + self.assertEqual(b, b'abc') + def test_regexps(self): def by(s): return bytearray(map(ord, s)) Modified: python/branches/py3k/Misc/NEWS ============================================================================== --- python/branches/py3k/Misc/NEWS (original) +++ python/branches/py3k/Misc/NEWS Thu Mar 3 19:21:02 2011 @@ -47,7 +47,7 @@ - Check for NULL result in PyType_FromSpec. -- Issue #10516: New copy() and clear() methods for lists. +- Issue #10516: New copy() and clear() methods for lists and bytearrays. Library ------- Modified: python/branches/py3k/Objects/bytearrayobject.c ============================================================================== --- python/branches/py3k/Objects/bytearrayobject.c (original) +++ python/branches/py3k/Objects/bytearrayobject.c Thu Mar 3 19:21:02 2011 @@ -1148,6 +1148,30 @@ return count_obj; } +PyDoc_STRVAR(clear__doc__, +"B.clear() -> None\n\ +\n\ +Remove all items from B."); + +static PyObject * +bytearray_clear(PyByteArrayObject *self) +{ + if (PyByteArray_Resize((PyObject *)self, 0) < 0) + return NULL; + Py_RETURN_NONE; +} + +PyDoc_STRVAR(copy__doc__, +"B.copy() -> bytearray\n\ +\n\ +Return a copy of B."); + +static PyObject * +bytearray_copy(PyByteArrayObject *self) +{ + return PyByteArray_FromStringAndSize(PyByteArray_AS_STRING((PyObject *)self), + PyByteArray_GET_SIZE(self)); +} PyDoc_STRVAR(index__doc__, "B.index(sub[, start[, end]]) -> int\n\ @@ -2730,6 +2754,8 @@ {"capitalize", (PyCFunction)stringlib_capitalize, METH_NOARGS, _Py_capitalize__doc__}, {"center", (PyCFunction)stringlib_center, METH_VARARGS, center__doc__}, + {"clear", (PyCFunction)bytearray_clear, METH_NOARGS, clear__doc__}, + {"copy", (PyCFunction)bytearray_copy, METH_NOARGS, copy__doc__}, {"count", (PyCFunction)bytearray_count, METH_VARARGS, count__doc__}, {"decode", (PyCFunction)bytearray_decode, METH_VARARGS | METH_KEYWORDS, decode_doc}, {"endswith", (PyCFunction)bytearray_endswith, METH_VARARGS, endswith__doc__}, From python-checkins at python.org Thu Mar 3 19:34:06 2011 From: python-checkins at python.org (giampaolo.rodola) Date: Thu, 3 Mar 2011 19:34:06 +0100 (CET) Subject: [Python-checkins] r88734 - in python/branches/py3k: Doc/library/nntplib.rst Doc/whatsnew/3.3.rst Lib/nntplib.py Lib/test/test_nntplib.py Message-ID: <20110303183406.EA072EE9DC@mail.python.org> Author: giampaolo.rodola Date: Thu Mar 3 19:34:06 2011 New Revision: 88734 Log: Issue 9795: adds context manager protocol to nntplib.NNTP class so that it can used with the 'with' statement. Modified: python/branches/py3k/Doc/library/nntplib.rst python/branches/py3k/Doc/whatsnew/3.3.rst python/branches/py3k/Lib/nntplib.py python/branches/py3k/Lib/test/test_nntplib.py Modified: python/branches/py3k/Doc/library/nntplib.rst ============================================================================== --- python/branches/py3k/Doc/library/nntplib.rst (original) +++ python/branches/py3k/Doc/library/nntplib.rst Thu Mar 3 19:34:06 2011 @@ -70,10 +70,23 @@ connecting to an NNTP server on the local machine and intend to call reader-specific commands, such as ``group``. If you get unexpected :exc:`NNTPPermanentError`\ s, you might need to set *readermode*. + :class:`NNTP` class supports the :keyword:`with` statement to + unconditionally consume :exc:`socket.error` exceptions and to close the NNTP + connection when done. Here is a sample on how using it: + + >>> from nntplib import NNTP + >>> with nntplib.NNTP('news.gmane.org') as n: + ... n.group('gmane.comp.python.committers') + ... + ('211 1454 1 1454 gmane.comp.python.committers', '1454', '1', '1454', 'gmane.comp.python.committers') + >>> + .. versionchanged:: 3.2 *usenetrc* is now False by default. + .. versionchanged:: 3.3 + Support for the :keyword:`with` statement was added. .. class:: NNTP_SSL(host, port=563, user=None, password=None, ssl_context=None, readermode=None, usenetrc=False, [timeout]) Modified: python/branches/py3k/Doc/whatsnew/3.3.rst ============================================================================== --- python/branches/py3k/Doc/whatsnew/3.3.rst (original) +++ python/branches/py3k/Doc/whatsnew/3.3.rst Thu Mar 3 19:34:06 2011 @@ -88,6 +88,22 @@ (Patch submitted by Giampaolo Rodol? in :issue:`10784`.) +nntplib +------- + +The :class:`nntplib.NNTP` class now supports the context manager protocol to +unconditionally consume :exc:`socket.error` exceptions and to close the NNTP +connection when done:: + + >>> from nntplib import NNTP + >>> with nntplib.NNTP('news.gmane.org') as n: + ... n.group('gmane.comp.python.committers') + ... + ('211 1454 1 1454 gmane.comp.python.committers', '1454', '1', '1454', 'gmane.comp.python.committers') + >>> + +(Contributed by Giampaolo Rodol? in :issue:`9795`) + Optimizations ============= Modified: python/branches/py3k/Lib/nntplib.py ============================================================================== --- python/branches/py3k/Lib/nntplib.py (original) +++ python/branches/py3k/Lib/nntplib.py Thu Mar 3 19:34:06 2011 @@ -346,6 +346,20 @@ # Log in and encryption setup order is left to subclasses. self.authenticated = False + def __enter__(self): + return self + + def __exit__(self, *args): + is_connected = lambda: hasattr(self, "file") + if is_connected(): + try: + self.quit() + except (socket.error, EOFError): + pass + finally: + if is_connected(): + self._close() + def getwelcome(self): """Get the welcome message from the server (this is read and squirreled away by __init__()). Modified: python/branches/py3k/Lib/test/test_nntplib.py ============================================================================== --- python/branches/py3k/Lib/test/test_nntplib.py (original) +++ python/branches/py3k/Lib/test/test_nntplib.py Thu Mar 3 19:34:06 2011 @@ -1,4 +1,5 @@ import io +import socket import datetime import textwrap import unittest @@ -252,6 +253,26 @@ # value setattr(cls, name, wrap_meth(meth)) + def test_with_statement(self): + def is_connected(): + if not hasattr(server, 'file'): + return False + try: + server.help() + except (socket.error, EOFError): + return False + return True + + with self.NNTP_CLASS(self.NNTP_HOST, timeout=TIMEOUT, usenetrc=False) as server: + self.assertTrue(is_connected()) + self.assertTrue(server.help()) + self.assertFalse(is_connected()) + + with self.NNTP_CLASS(self.NNTP_HOST, timeout=TIMEOUT, usenetrc=False) as server: + server.quit() + self.assertFalse(is_connected()) + + NetworkedNNTPTestsMixin.wrap_methods() From solipsis at pitrou.net Fri Mar 4 05:10:13 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Fri, 04 Mar 2011 05:10:13 +0100 Subject: [Python-checkins] Daily py3k reference leaks (r88734): sum=0 Message-ID: py3k results for svn r88734 (hg cset d4c55e757de2) -------------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/py3k/refleaks/refloghArqRy', '-x'] From python-checkins at python.org Fri Mar 4 05:55:25 2011 From: python-checkins at python.org (eli.bendersky) Date: Fri, 4 Mar 2011 05:55:25 +0100 (CET) Subject: [Python-checkins] r88735 - in python/branches/py3k: Lib/test/test_bytes.py Misc/NEWS Objects/bytearrayobject.c Message-ID: <20110304045525.99083FE26@mail.python.org> Author: eli.bendersky Date: Fri Mar 4 05:55:25 2011 New Revision: 88735 Log: Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays Modified: python/branches/py3k/Lib/test/test_bytes.py python/branches/py3k/Misc/NEWS python/branches/py3k/Objects/bytearrayobject.c Modified: python/branches/py3k/Lib/test/test_bytes.py ============================================================================== --- python/branches/py3k/Lib/test/test_bytes.py (original) +++ python/branches/py3k/Lib/test/test_bytes.py Fri Mar 4 05:55:25 2011 @@ -790,7 +790,7 @@ self.assertEqual(b.pop(0), ord('w')) self.assertEqual(b.pop(-2), ord('r')) self.assertRaises(IndexError, lambda: b.pop(10)) - self.assertRaises(OverflowError, lambda: bytearray().pop()) + self.assertRaises(IndexError, lambda: bytearray().pop()) # test for issue #6846 self.assertEqual(bytearray(b'\xff').pop(), 0xff) Modified: python/branches/py3k/Misc/NEWS ============================================================================== --- python/branches/py3k/Misc/NEWS (original) +++ python/branches/py3k/Misc/NEWS Fri Mar 4 05:55:25 2011 @@ -49,6 +49,9 @@ - Issue #10516: New copy() and clear() methods for lists and bytearrays. +- Issue #11386: bytearray.pop() now throws IndexError when the bytearray is + empty, instead of OverflowError. + Library ------- Modified: python/branches/py3k/Objects/bytearrayobject.c ============================================================================== --- python/branches/py3k/Objects/bytearrayobject.c (original) +++ python/branches/py3k/Objects/bytearrayobject.c Fri Mar 4 05:55:25 2011 @@ -2309,8 +2309,8 @@ return NULL; if (n == 0) { - PyErr_SetString(PyExc_OverflowError, - "cannot pop an empty bytearray"); + PyErr_SetString(PyExc_IndexError, + "pop from empty bytearray"); return NULL; } if (where < 0) From python-checkins at python.org Fri Mar 4 05:58:22 2011 From: python-checkins at python.org (benjamin.peterson) Date: Fri, 4 Mar 2011 05:58:22 +0100 (CET) Subject: [Python-checkins] r88736 - in peps/trunk: pep-0001.txt pep-0102.txt pep-0215.txt pep-0216.txt pep-0248.txt pep-0333.txt pep-0344.txt pep-0367.txt pep0/output.py pep0/pep.py Message-ID: <20110304045822.D5648EE98B@mail.python.org> Author: benjamin.peterson Date: Fri Mar 4 05:58:22 2011 New Revision: 88736 Log: I'm going to call this superseded just to avoid collision in the key Modified: peps/trunk/pep-0001.txt peps/trunk/pep-0102.txt peps/trunk/pep-0215.txt peps/trunk/pep-0216.txt peps/trunk/pep-0248.txt peps/trunk/pep-0333.txt peps/trunk/pep-0344.txt peps/trunk/pep-0367.txt peps/trunk/pep0/output.py peps/trunk/pep0/pep.py Modified: peps/trunk/pep-0001.txt ============================================================================== --- peps/trunk/pep-0001.txt (original) +++ peps/trunk/pep-0001.txt Fri Mar 4 05:58:22 2011 @@ -271,7 +271,7 @@ Author: * Discussions-To: Status: + Withdrawn | Final | Superseded> Type: * Content-Type: * Requires: @@ -279,7 +279,7 @@ * Python-Version: Post-History: * Replaces: - * Replaced-By: + * Superseded-By: * Resolution: The Author header lists the names, and optionally the email addresses @@ -334,9 +334,9 @@ PEPs may have a Requires header, indicating the PEP numbers that this PEP depends on. -PEPs may also have a Replaced-By header indicating that a PEP has been -rendered obsolete by a later document; the value is the number of the -PEP that replaces the current document. The newer PEP must have a +PEPs may also have a Superseded-By header indicating that a PEP has +been rendered obsolete by a later document; the value is the number of +the PEP that replaces the current document. The newer PEP must have a Replaces header containing the number of the PEP that it rendered obsolete. Modified: peps/trunk/pep-0102.txt ============================================================================== --- peps/trunk/pep-0102.txt (original) +++ peps/trunk/pep-0102.txt Fri Mar 4 05:58:22 2011 @@ -5,11 +5,11 @@ Author: anthony at interlink.com.au (Anthony Baxter), barry at python.org (Barry Warsaw), guido at python.org (Guido van Rossum) -Status: Replaced +Status: Superseded Type: Informational Created: 22-Aug-2001 (edited down on 9-Jan-2002 to become PEP 102) Post-History: -Replaced-By: 101 +Superseded-By: 101 Replacement Note Modified: peps/trunk/pep-0215.txt ============================================================================== --- peps/trunk/pep-0215.txt (original) +++ peps/trunk/pep-0215.txt Fri Mar 4 05:58:22 2011 @@ -3,12 +3,12 @@ Version: $Revision$ Last-Modified: $Date$ Author: ping at zesty.ca (Ka-Ping Yee) -Status: Rejected +Status: Superseded Type: Standards Track Created: 24-Jul-2000 Python-Version: 2.1 Post-History: -Replaced-By: 292 +Superseded-By: 292 Abstract Modified: peps/trunk/pep-0216.txt ============================================================================== --- peps/trunk/pep-0216.txt (original) +++ peps/trunk/pep-0216.txt Fri Mar 4 05:58:22 2011 @@ -7,7 +7,7 @@ Type: Informational Created: 31-Jul-2000 Post-History: -Replaced-By: 287 +Superseded-By: 287 Notice Modified: peps/trunk/pep-0248.txt ============================================================================== --- peps/trunk/pep-0248.txt (original) +++ peps/trunk/pep-0248.txt Fri Mar 4 05:58:22 2011 @@ -8,7 +8,7 @@ Type: Informational Created: Post-History: -Replaced-By: 249 +Superseded-By: 249 Introduction Modified: peps/trunk/pep-0333.txt ============================================================================== --- peps/trunk/pep-0333.txt (original) +++ peps/trunk/pep-0333.txt Fri Mar 4 05:58:22 2011 @@ -9,7 +9,7 @@ Content-Type: text/x-rst Created: 07-Dec-2003 Post-History: 07-Dec-2003, 08-Aug-2004, 20-Aug-2004, 27-Aug-2004, 27-Sep-2010 -Replaced-By: 3333 +Superseded-By: 3333 Preface Modified: peps/trunk/pep-0344.txt ============================================================================== --- peps/trunk/pep-0344.txt (original) +++ peps/trunk/pep-0344.txt Fri Mar 4 05:58:22 2011 @@ -3,7 +3,7 @@ Version: $Revision$ Last-Modified: $Date$ Author: Ka-Ping Yee -Status: Replaced +Status: Superseded Type: Standards Track Content-Type: text/plain Created: 12-May-2005 Modified: peps/trunk/pep-0367.txt ============================================================================== --- peps/trunk/pep-0367.txt (original) +++ peps/trunk/pep-0367.txt Fri Mar 4 05:58:22 2011 @@ -4,7 +4,7 @@ Last-Modified: $Date$ Author: Calvin Spealman , Tim Delaney -Status: Replaced +Status: Superseded Type: Standards Track Content-Type: text/x-rst Created: 28-Apr-2007 Modified: peps/trunk/pep0/output.py ============================================================================== --- peps/trunk/pep0/output.py (original) +++ peps/trunk/pep0/output.py Fri Mar 4 05:58:22 2011 @@ -45,7 +45,7 @@ elif pep.status == 'Draft': open_.append(pep) elif pep.status in ('Rejected', 'Withdrawn', 'Deferred', - 'Incomplete', 'Replaced'): + 'Incomplete', 'Superseeded'): dead.append(pep) elif pep.type_ == 'Informational': # Hack until the conflict between the use of "Final" Modified: peps/trunk/pep0/pep.py ============================================================================== --- peps/trunk/pep0/pep.py (original) +++ peps/trunk/pep0/pep.py Fri Mar 4 05:58:22 2011 @@ -160,14 +160,14 @@ ('Content-Type', False), ('Requires', False), ('Created', True), ('Python-Version', False), ('Post-History', False), ('Replaces', False), - ('Replaced-By', False), ('Resolution', False), + ('Superseded-By', False), ('Resolution', False), ) # Valid values for the Type header. type_values = (u"Standards Track", u"Informational", u"Process") # Valid values for the Status header. # Active PEPs can only be for Informational or Process PEPs. status_values = (u"Accepted", u"Rejected", u"Withdrawn", u"Deferred", - u"Final", u"Active", u"Draft", u"Replaced") + u"Final", u"Active", u"Draft", u"Superseded") def __init__(self, pep_file): """Init object from an open PEP file object.""" From python-checkins at python.org Fri Mar 4 06:01:18 2011 From: python-checkins at python.org (benjamin.peterson) Date: Fri, 4 Mar 2011 06:01:18 +0100 (CET) Subject: [Python-checkins] r88737 - peps/trunk/pep0/output.py Message-ID: <20110304050118.0CE1DEE98B@mail.python.org> Author: benjamin.peterson Date: Fri Mar 4 06:01:17 2011 New Revision: 88737 Log: fix spelling Modified: peps/trunk/pep0/output.py Modified: peps/trunk/pep0/output.py ============================================================================== --- peps/trunk/pep0/output.py (original) +++ peps/trunk/pep0/output.py Fri Mar 4 06:01:17 2011 @@ -45,7 +45,7 @@ elif pep.status == 'Draft': open_.append(pep) elif pep.status in ('Rejected', 'Withdrawn', 'Deferred', - 'Incomplete', 'Superseeded'): + 'Incomplete', 'Superseded'): dead.append(pep) elif pep.type_ == 'Informational': # Hack until the conflict between the use of "Final" From python-checkins at python.org Fri Mar 4 06:03:27 2011 From: python-checkins at python.org (benjamin.peterson) Date: Fri, 4 Mar 2011 06:03:27 +0100 (CET) Subject: [Python-checkins] r88738 - peps/trunk/pep-0001.txt Message-ID: <20110304050327.087F7EE98B@mail.python.org> Author: benjamin.peterson Date: Fri Mar 4 06:03:26 2011 New Revision: 88738 Log: poke Modified: peps/trunk/pep-0001.txt Modified: peps/trunk/pep-0001.txt ============================================================================== --- peps/trunk/pep-0001.txt (original) +++ peps/trunk/pep-0001.txt Fri Mar 4 06:03:26 2011 @@ -167,7 +167,7 @@ was not a good idea. It is still important to have a record of this fact. -PEPs can also be replaced by a different PEP, rendering the original +PEPs can also be superseded by a different PEP, rendering the original obsolete. This is intended for Informational PEPs, where version 2 of an API can replace version 1. From python-checkins at python.org Fri Mar 4 06:10:57 2011 From: python-checkins at python.org (eli.bendersky) Date: Fri, 4 Mar 2011 06:10:57 +0100 (CET) Subject: [Python-checkins] r88739 - in python/branches/release32-maint: Lib/test/test_bytes.py Misc/NEWS Objects/bytearrayobject.c Message-ID: <20110304051057.9ED9FEE9CB@mail.python.org> Author: eli.bendersky Date: Fri Mar 4 06:10:57 2011 New Revision: 88739 Log: Merged revisions 88735 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ........ r88735 | eli.bendersky | 2011-03-04 06:55:25 +0200 (Fri, 04 Mar 2011) | 2 lines Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays ........ Modified: python/branches/release32-maint/ (props changed) python/branches/release32-maint/Lib/test/test_bytes.py python/branches/release32-maint/Misc/NEWS python/branches/release32-maint/Objects/bytearrayobject.c Modified: python/branches/release32-maint/Lib/test/test_bytes.py ============================================================================== --- python/branches/release32-maint/Lib/test/test_bytes.py (original) +++ python/branches/release32-maint/Lib/test/test_bytes.py Fri Mar 4 06:10:57 2011 @@ -755,7 +755,7 @@ self.assertEqual(b.pop(0), ord('w')) self.assertEqual(b.pop(-2), ord('r')) self.assertRaises(IndexError, lambda: b.pop(10)) - self.assertRaises(OverflowError, lambda: bytearray().pop()) + self.assertRaises(IndexError, lambda: bytearray().pop()) # test for issue #6846 self.assertEqual(bytearray(b'\xff').pop(), 0xff) Modified: python/branches/release32-maint/Misc/NEWS ============================================================================== --- python/branches/release32-maint/Misc/NEWS (original) +++ python/branches/release32-maint/Misc/NEWS Fri Mar 4 06:10:57 2011 @@ -25,6 +25,9 @@ - Check for NULL result in PyType_FromSpec. +- Issue #11386: bytearray.pop() now throws IndexError when the bytearray is + empty, instead of OverflowError. + Library ------- Modified: python/branches/release32-maint/Objects/bytearrayobject.c ============================================================================== --- python/branches/release32-maint/Objects/bytearrayobject.c (original) +++ python/branches/release32-maint/Objects/bytearrayobject.c Fri Mar 4 06:10:57 2011 @@ -2285,8 +2285,8 @@ return NULL; if (n == 0) { - PyErr_SetString(PyExc_OverflowError, - "cannot pop an empty bytearray"); + PyErr_SetString(PyExc_IndexError, + "pop from empty bytearray"); return NULL; } if (where < 0) From python-checkins at python.org Fri Mar 4 06:34:59 2011 From: python-checkins at python.org (eli.bendersky) Date: Fri, 4 Mar 2011 06:34:59 +0100 (CET) Subject: [Python-checkins] r88740 - in python/branches/py3k: Lib/collections/abc.py Misc/NEWS Message-ID: <20110304053459.1EDD8F8E5@mail.python.org> Author: eli.bendersky Date: Fri Mar 4 06:34:58 2011 New Revision: 88740 Log: Issue #11388: Added a clear() method to MutableSequence Modified: python/branches/py3k/Lib/collections/abc.py python/branches/py3k/Misc/NEWS Modified: python/branches/py3k/Lib/collections/abc.py ============================================================================== --- python/branches/py3k/Lib/collections/abc.py (original) +++ python/branches/py3k/Lib/collections/abc.py Fri Mar 4 06:34:58 2011 @@ -596,6 +596,13 @@ def append(self, value): self.insert(len(self), value) + def clear(self): + try: + while True: + self.pop() + except IndexError: + pass + def reverse(self): n = len(self) for i in range(n//2): Modified: python/branches/py3k/Misc/NEWS ============================================================================== --- python/branches/py3k/Misc/NEWS (original) +++ python/branches/py3k/Misc/NEWS Fri Mar 4 06:34:58 2011 @@ -140,6 +140,8 @@ - Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers larger than 4GB. Patch by Nadeem Vawda. +- Issue #11388: Added a clear() method to MutableSequence + Build ----- From python-checkins at python.org Fri Mar 4 07:14:57 2011 From: python-checkins at python.org (eli.bendersky) Date: Fri, 4 Mar 2011 07:14:57 +0100 (CET) Subject: [Python-checkins] r88741 - in python/branches/release27-maint: Lib/test/test_bytes.py Misc/NEWS Objects/bytearrayobject.c Message-ID: <20110304061457.3F053EE9CB@mail.python.org> Author: eli.bendersky Date: Fri Mar 4 07:14:56 2011 New Revision: 88741 Log: Merged revisions 88735 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ........ r88735 | eli.bendersky | 2011-03-04 06:55:25 +0200 (Fri, 04 Mar 2011) | 2 lines Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays ........ Modified: python/branches/release27-maint/ (props changed) python/branches/release27-maint/Lib/test/test_bytes.py python/branches/release27-maint/Misc/NEWS python/branches/release27-maint/Objects/bytearrayobject.c Modified: python/branches/release27-maint/Lib/test/test_bytes.py ============================================================================== --- python/branches/release27-maint/Lib/test/test_bytes.py (original) +++ python/branches/release27-maint/Lib/test/test_bytes.py Fri Mar 4 07:14:56 2011 @@ -695,7 +695,7 @@ self.assertEqual(b.pop(0), ord('w')) self.assertEqual(b.pop(-2), ord('r')) self.assertRaises(IndexError, lambda: b.pop(10)) - self.assertRaises(OverflowError, lambda: bytearray().pop()) + self.assertRaises(IndexError, lambda: bytearray().pop()) # test for issue #6846 self.assertEqual(bytearray(b'\xff').pop(), 0xff) Modified: python/branches/release27-maint/Misc/NEWS ============================================================================== --- python/branches/release27-maint/Misc/NEWS (original) +++ python/branches/release27-maint/Misc/NEWS Fri Mar 4 07:14:56 2011 @@ -34,6 +34,9 @@ float.__divmod__ with respect to signed zeros. -4.0 % 4.0 should be 0.0, not -0.0. +- Issue #11386: bytearray.pop() now throws IndexError when the bytearray is + empty, instead of OverflowError. + Library ------- Modified: python/branches/release27-maint/Objects/bytearrayobject.c ============================================================================== --- python/branches/release27-maint/Objects/bytearrayobject.c (original) +++ python/branches/release27-maint/Objects/bytearrayobject.c Fri Mar 4 07:14:56 2011 @@ -2355,8 +2355,8 @@ return NULL; if (n == 0) { - PyErr_SetString(PyExc_OverflowError, - "cannot pop an empty bytearray"); + PyErr_SetString(PyExc_IndexError, + "pop from empty bytearray"); return NULL; } if (where < 0) From python-checkins at python.org Fri Mar 4 11:38:14 2011 From: python-checkins at python.org (eli.bendersky) Date: Fri, 4 Mar 2011 11:38:14 +0100 (CET) Subject: [Python-checkins] r88742 - in python/branches/py3k: Doc/library/collections.abc.rst Lib/test/test_collections.py Message-ID: <20110304103814.4F4DBEE98B@mail.python.org> Author: eli.bendersky Date: Fri Mar 4 11:38:14 2011 New Revision: 88742 Log: Mentioned new clear() method of MutableSequence in its doc, and added unit tests for its mixin methods Modified: python/branches/py3k/Doc/library/collections.abc.rst python/branches/py3k/Lib/test/test_collections.py Modified: python/branches/py3k/Doc/library/collections.abc.rst ============================================================================== --- python/branches/py3k/Doc/library/collections.abc.rst (original) +++ python/branches/py3k/Doc/library/collections.abc.rst Fri Mar 4 11:38:14 2011 @@ -46,7 +46,7 @@ :class:`MutableSequence` :class:`Sequence` ``__setitem__`` Inherited Sequence methods and ``__delitem__``, ``append``, ``reverse``, ``extend``, ``pop``, - and ``insert`` ``remove``, and ``__iadd__`` + and ``insert`` ``remove``, ``clear``, and ``__iadd__`` :class:`Set` :class:`Sized`, ``__le__``, ``__lt__``, ``__eq__``, ``__ne__``, :class:`Iterable`, ``__gt__``, ``__ge__``, ``__and__``, ``__or__``, Modified: python/branches/py3k/Lib/test/test_collections.py ============================================================================== --- python/branches/py3k/Lib/test/test_collections.py (original) +++ python/branches/py3k/Lib/test/test_collections.py Fri Mar 4 11:38:14 2011 @@ -728,6 +728,44 @@ self.validate_abstract_methods(MutableSequence, '__contains__', '__iter__', '__len__', '__getitem__', '__setitem__', '__delitem__', 'insert') + def test_MutableSequence_mixins(self): + # Test the mixins of MutableSequence by creating a miminal concrete + # class inherited from it. + class MutableSequenceSubclass(MutableSequence): + def __init__(self): + self.lst = [] + + def __setitem__(self, index, value): + self.lst[index] = value + + def __getitem__(self, index): + return self.lst[index] + + def __len__(self): + return len(self.lst) + + def __delitem__(self, index): + del self.lst[index] + + def insert(self, index, value): + self.lst.insert(index, value) + + mss = MutableSequenceSubclass() + mss.append(0) + mss.extend((1, 2, 3, 4)) + self.assertEqual(len(mss), 5) + self.assertEqual(mss[3], 3) + mss.reverse() + self.assertEqual(mss[3], 1) + mss.pop() + self.assertEqual(len(mss), 4) + mss.remove(3) + self.assertEqual(len(mss), 3) + mss += (10, 20, 30) + self.assertEqual(len(mss), 6) + self.assertEqual(mss[-1], 30) + mss.clear() + self.assertEqual(len(mss), 0) ################################################################################ ### Counter From python-checkins at python.org Fri Mar 4 13:04:22 2011 From: python-checkins at python.org (nick.coghlan) Date: Fri, 4 Mar 2011 13:04:22 +0100 (CET) Subject: [Python-checkins] r88743 - peps/trunk/pep-0394.txt Message-ID: <20110304120422.6E478EE9DF@mail.python.org> Author: nick.coghlan Date: Fri Mar 4 13:04:22 2011 New Revision: 88743 Log: Add proposed PEP for *nix command naming conventions Added: peps/trunk/pep-0394.txt (contents, props changed) Added: peps/trunk/pep-0394.txt ============================================================================== --- (empty file) +++ peps/trunk/pep-0394.txt Fri Mar 4 13:04:22 2011 @@ -0,0 +1,124 @@ +PEP: 394 +Title: The "python" command on Unix-Like Systems +Version: $Revision$ +Last-Modified: $Date$ +Author: Kerrick Staley , + Nick Coghlan +Status: Draft +Type: Informational +Content-Type: text/x-rst +Created: 02-Mar-2011 +Post-History: 04-Mar-2011 + + +Abstract +======== + +This PEP provides a convention to ensure that Python scripts can continue to +be portable across ``*nix`` systems, regardless of the default version of the +Python interpreter (i.e. the version invoked by the ``python`` command). + +* ``python2`` will refer to some version of Python 2.x +* ``python3`` will refer to some version of Python 3.x +* ``python`` may refer to either, depending on distribution and system + + +Recommendation +============== + +* ``*nix`` software distributions should install the ``python2`` command into + the default path whenever a version of the Python 2 interpreter is + installed, and the same for ``python3`` and the Python 3 interpreter. When + invoked, ``python2`` should run some version of the Python 2 interpreter, + and ``python3`` should run some version of the Python 3 interpreter. The + same applies for the more general ``python`` command, which should be + installed whenever any version of Python is installed and should invoke + some Python interpreter. +* All new code that needs to invoke the Python interpreter should not specify + ``python``, but rather should specify either ``python2`` or ``python3`` (or + the more specific ``python2.x`` and ``python3.x`` versions; see the Notes). + This distinction should be made in shebangs, when invoking from a shell + script, when invoking via the system() call, or when invoking in any other + context. Note that, when reinvoking the interpreter from a Python script, + querying ``sys.executable`` remains the preferred approach. + + +Rationale +========= + +This is needed as, even though the majority of distributions still alias the +``python`` command to Python 2, some now alias it to Python 3. Some of +the former also do not provide a ``python2`` command; hence, there is +currently no way for Python 2 code (or any code that invokes the Python 2 +interpreter) to reliably run on all systems without modification, because both +the ``python`` and the ``python2`` commands will fail on some systems. The +recommendations in this PEP provide a very simple mechanism to restore +cross-platform support, with minimal additional work required on the part +of distribution maintainers. + + +Notes +===== + +* Distributions can alias the ``python`` command to whichever version of the + Python interpreter they choose (noting that, in the near term, most 3rd + party scripts will still expect this command to refer to Python 2.x). +* The ``pythonX.X`` (e.g. ``python2.6``) utilities exist on some systems, on + which they invoke specific minor versions of the Python interpreter. It + would be wise for distribution-specific packages to take advantage of these + utilities if they exist, since it will prevent code breakage if the default + minor version of a given major version is changed. However, scripts + intending to be cross-platform should not rely on the presence of these + utilities, but rather should be tested on several recent minor versions of + the target major version, compensating, if necessary, for the small + differences that exist between minor versions. This prevents the need for + sysadmins to install many very similar versions of the interpreter. +* It would be wise for distribution-specific packages to always follow the + ``python2``/``python3`` convention, even in code that is not intended to + operate on other distributions. This will prevent problems if the + distribution later decides to upgrade the version of the Python interpreter + that the ``python`` command invokes, or if a sysadmin installs a custom + ``python`` command with a different major version than the distribution + default. Distributions can test whether they are fully following this + convention by changing the ``python`` interpreter on a test box and checking + to see if anything breaks. +* If the above point is adhered to and sysadmins are permitted to change the + ``python`` command, then the ``python`` command should always be implemented + as a link to the interpreter binary (or a link to a link) and not vice + versa. That way, if a sysadmin does decide to replace the installed + ``python`` file, they can do so without inadvertently deleting the + previously installed binary. +* The first recommendation can be ignored for systems on which the ``python`` + command itself has traditionally been left undefined and users have always + had the responsibility of linking the ``python`` command to the Python + interpreter. +* If the Python 2 interpreter becomes uncommon, scripts should nevertheless + continue to use the ``python3`` convention rather that just ``python``. This + will ease transition in the event that yet another major version of Python + is released. +* If these conventions are adhered to, it will be the case that the ``python`` + command is only executed in an interactive manner. + + +Backwards Compatibility +========================= + +A potential problem can arise if a script adhering to the +``python2``/``python3`` convention is executed on a system not supporting +these commands. This is mostly a non-issue, since the sysadmin can simply +create these symbolic links and avoid further problems. + +Application to the CPython Reference Interpreter +================================================ + +While technically a new feature, the ``make install`` command of the 2.7 +version of CPython will be adjusted to create the ``python2`` symlink in +addition to the existing ``python`` symlink. This feature will first appear in +CPython 2.7.2. + +The ``make install`` command in the CPython 3.x series will continue to +install only the ``python3`` symlink for the foreseeable future. + +Copyright +=========== +This document has been placed in the public domain. From ncoghlan at gmail.com Fri Mar 4 13:33:42 2011 From: ncoghlan at gmail.com (Nick Coghlan) Date: Fri, 4 Mar 2011 22:33:42 +1000 Subject: [Python-checkins] r88729 - python/branches/py3k/Modules/posixmodule.c In-Reply-To: <20110303161058.15BDFEE98B@mail.python.org> References: <20110303161058.15BDFEE98B@mail.python.org> Message-ID: On Fri, Mar 4, 2011 at 2:10 AM, giampaolo.rodola wrote: > Author: giampaolo.rodola > Date: Thu Mar ?3 17:10:51 2011 > New Revision: 88729 > > Log: > Issue 11351 - apply patch by Steffen Daode Nurpmeso which should fix TestSendfile.test_headers failure on OSX. > > Modified: > ? python/branches/py3k/Modules/posixmodule.c NEWS entry and a new name in ACKS? (the query regarding the lack of a NEWS entry applies to your other recent commits as well). Cheers, Nick. -- Nick Coghlan?? |?? ncoghlan at gmail.com?? |?? Brisbane, Australia From ncoghlan at gmail.com Fri Mar 4 13:40:05 2011 From: ncoghlan at gmail.com (Nick Coghlan) Date: Fri, 4 Mar 2011 22:40:05 +1000 Subject: [Python-checkins] r88729 - python/branches/py3k/Modules/posixmodule.c In-Reply-To: References: <20110303161058.15BDFEE98B@mail.python.org> Message-ID: On Fri, Mar 4, 2011 at 10:33 PM, Nick Coghlan wrote: > On Fri, Mar 4, 2011 at 2:10 AM, giampaolo.rodola > wrote: >> Author: giampaolo.rodola >> Date: Thu Mar ?3 17:10:51 2011 >> New Revision: 88729 >> >> Log: >> Issue 11351 - apply patch by Steffen Daode Nurpmeso which should fix TestSendfile.test_headers failure on OSX. >> >> Modified: >> ? python/branches/py3k/Modules/posixmodule.c > > NEWS entry and a new name in ACKS? > > (the query regarding the lack of a NEWS entry applies to your other > recent commits as well). Oops, one of them did have an entry, and a second was just a tweak to the first one. So the NEWS query only applies to this one and the NNTP change. Cheers, Nick. -- Nick Coghlan?? |?? ncoghlan at gmail.com?? |?? Brisbane, Australia From python-checkins at python.org Fri Mar 4 13:51:08 2011 From: python-checkins at python.org (giampaolo.rodola) Date: Fri, 4 Mar 2011 13:51:08 +0100 (CET) Subject: [Python-checkins] r88744 - python/branches/py3k/Misc/ACKS Message-ID: <20110304125108.80799FAC2@mail.python.org> Author: giampaolo.rodola Date: Fri Mar 4 13:51:08 2011 New Revision: 88744 Log: Include ???? ????????? and Steffen Daode Nurpmeso in Mist/ACKS for contributions in issues 11265 and 11351. Modified: python/branches/py3k/Misc/ACKS Modified: python/branches/py3k/Misc/ACKS ============================================================================== --- python/branches/py3k/Misc/ACKS (original) +++ python/branches/py3k/Misc/ACKS Fri Mar 4 13:51:08 2011 @@ -469,6 +469,7 @@ Pat Knight Greg Kochanski Damon Kohler +???? ????????? Vlad Korolev Joseph Koshy Maksim Kozyarchuk @@ -621,6 +622,7 @@ Tim Northover Joe Norton Neal Norwitz +Steffen Daode Nurpmeso Nigel O'Brian Kevin O'Connor Tim O'Malley From python-checkins at python.org Fri Mar 4 13:54:34 2011 From: python-checkins at python.org (giampaolo.rodola) Date: Fri, 4 Mar 2011 13:54:34 +0100 (CET) Subject: [Python-checkins] r88745 - python/branches/py3k/Misc/NEWS Message-ID: <20110304125434.60863EBDE@mail.python.org> Author: giampaolo.rodola Date: Fri Mar 4 13:54:34 2011 New Revision: 88745 Log: Update Misc/NEWS to include issue #9795 (nntplib context manager support) Modified: python/branches/py3k/Misc/NEWS Modified: python/branches/py3k/Misc/NEWS ============================================================================== --- python/branches/py3k/Misc/NEWS (original) +++ python/branches/py3k/Misc/NEWS Fri Mar 4 13:54:34 2011 @@ -55,6 +55,8 @@ Library ------- +- Issue #9795: add context manager protocol support for nntplib.NNTP class. + - Issue #11306: mailbox in certain cases adapts to an inability to open certain files in read-write mode. Previously it detected this by checking for EACCES, now it also checks for EROFS. From python-checkins at python.org Fri Mar 4 13:57:07 2011 From: python-checkins at python.org (victor.stinner) Date: Fri, 4 Mar 2011 13:57:07 +0100 (CET) Subject: [Python-checkins] r88746 - in python/branches/py3k: Doc/c-api/module.rst Include/moduleobject.h Objects/moduleobject.c Message-ID: <20110304125707.AC6CCEE9EB@mail.python.org> Author: victor.stinner Date: Fri Mar 4 13:57:07 2011 New Revision: 88746 Log: Issue #3080: Add PyModule_NewObject() function Modified: python/branches/py3k/Doc/c-api/module.rst python/branches/py3k/Include/moduleobject.h python/branches/py3k/Objects/moduleobject.c Modified: python/branches/py3k/Doc/c-api/module.rst ============================================================================== --- python/branches/py3k/Doc/c-api/module.rst (original) +++ python/branches/py3k/Doc/c-api/module.rst Fri Mar 4 13:57:07 2011 @@ -29,7 +29,7 @@ :c:data:`PyModule_Type`. -.. c:function:: PyObject* PyModule_New(const char *name) +.. c:function:: PyObject* PyModule_NewObject(PyObject *name) .. index:: single: __name__ (module attribute) @@ -40,6 +40,14 @@ Only the module's :attr:`__doc__` and :attr:`__name__` attributes are filled in; the caller is responsible for providing a :attr:`__file__` attribute. + .. versionadded:: 3.3 + + +.. c:function:: PyObject* PyModule_New(const char *name) + + Similar to :c:func:`PyImport_NewObject`, but the name is an UTF-8 encoded + string instead of a Unicode object. + .. c:function:: PyObject* PyModule_GetDict(PyObject *module) Modified: python/branches/py3k/Include/moduleobject.h ============================================================================== --- python/branches/py3k/Include/moduleobject.h (original) +++ python/branches/py3k/Include/moduleobject.h Fri Mar 4 13:57:07 2011 @@ -12,6 +12,9 @@ #define PyModule_Check(op) PyObject_TypeCheck(op, &PyModule_Type) #define PyModule_CheckExact(op) (Py_TYPE(op) == &PyModule_Type) +PyAPI_FUNC(PyObject *) PyModule_NewObject( + PyObject *name + ); PyAPI_FUNC(PyObject *) PyModule_New( const char *name /* UTF-8 encoded string */ ); Modified: python/branches/py3k/Objects/moduleobject.c ============================================================================== --- python/branches/py3k/Objects/moduleobject.c (original) +++ python/branches/py3k/Objects/moduleobject.c Fri Mar 4 13:57:07 2011 @@ -27,36 +27,45 @@ PyObject * -PyModule_New(const char *name) +PyModule_NewObject(PyObject *name) { PyModuleObject *m; - PyObject *nameobj; m = PyObject_GC_New(PyModuleObject, &PyModule_Type); if (m == NULL) return NULL; m->md_def = NULL; m->md_state = NULL; - nameobj = PyUnicode_FromString(name); m->md_dict = PyDict_New(); - if (m->md_dict == NULL || nameobj == NULL) + if (m->md_dict == NULL) goto fail; - if (PyDict_SetItemString(m->md_dict, "__name__", nameobj) != 0) + if (PyDict_SetItemString(m->md_dict, "__name__", name) != 0) goto fail; if (PyDict_SetItemString(m->md_dict, "__doc__", Py_None) != 0) goto fail; if (PyDict_SetItemString(m->md_dict, "__package__", Py_None) != 0) goto fail; - Py_DECREF(nameobj); PyObject_GC_Track(m); return (PyObject *)m; fail: - Py_XDECREF(nameobj); Py_DECREF(m); return NULL; } PyObject * +PyModule_New(const char *name) +{ + PyObject *nameobj, *module; + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + module = PyModule_NewObject(nameobj); + Py_DECREF(nameobj); + return module; +} + + +PyObject * PyModule_Create2(struct PyModuleDef* module, int module_api_version) { PyObject *d, *v, *n; From python-checkins at python.org Fri Mar 4 13:57:09 2011 From: python-checkins at python.org (victor.stinner) Date: Fri, 4 Mar 2011 13:57:09 +0100 (CET) Subject: [Python-checkins] r88747 - in python/branches/py3k: Doc/c-api/import.rst Include/import.h Python/import.c Message-ID: <20110304125709.7D8EEEEA0D@mail.python.org> Author: victor.stinner Date: Fri Mar 4 13:57:09 2011 New Revision: 88747 Log: Issue #3080: Add PyImport_AddModuleObject() and PyImport_ExecCodeModuleObject() Modified: python/branches/py3k/Doc/c-api/import.rst python/branches/py3k/Include/import.h python/branches/py3k/Python/import.c Modified: python/branches/py3k/Doc/c-api/import.rst ============================================================================== --- python/branches/py3k/Doc/c-api/import.rst (original) +++ python/branches/py3k/Doc/c-api/import.rst Fri Mar 4 13:57:09 2011 @@ -86,7 +86,7 @@ an exception set on failure (the module still exists in this case). -.. c:function:: PyObject* PyImport_AddModule(const char *name) +.. c:function:: PyObject* PyImport_AddModuleObject(PyObject *name) Return the module object corresponding to a module name. The *name* argument may be of the form ``package.module``. First check the modules dictionary if @@ -100,6 +100,14 @@ or one of its variants to import a module. Package structures implied by a dotted name for *name* are not created if not already present. + .. versionadded:: 3.3 + + +.. c:function:: PyObject* PyImport_AddModule(const char *name) + + Similar to :c:func:`PyImport_AddModuleObject`, but the name is an UTF-8 + encoded string instead of a Unicode object. + .. c:function:: PyObject* PyImport_ExecCodeModule(char *name, PyObject *co) @@ -136,14 +144,23 @@ See also :c:func:`PyImport_ExecCodeModuleWithPathnames`. -.. c:function:: PyObject* PyImport_ExecCodeModuleWithPathnames(char *name, PyObject *co, char *pathname, char *cpathname) +.. c:function:: PyObject* PyImport_ExecCodeModuleObject(PyObject *name, PyObject *co, PyObject *pathname, PyObject *cpathname) Like :c:func:`PyImport_ExecCodeModuleEx`, but the :attr:`__cached__` attribute of the module object is set to *cpathname* if it is non-``NULL``. Of the three functions, this is the preferred one to use. + .. versionadded:: 3.3 + + +.. c:function:: PyObject* PyImport_ExecCodeModuleWithPathnames(char *name, PyObject *co, char *pathname, char *cpathname) + + Like :c:func:`PyImport_ExecCodeModuleObject`, but *name*, *pathname* and + *cpathname* are UTF-8 encoded strings. + .. versionadded:: 3.2 + .. c:function:: long PyImport_GetMagicNumber() Return the magic number for Python bytecode files (a.k.a. :file:`.pyc` and Modified: python/branches/py3k/Include/import.h ============================================================================== --- python/branches/py3k/Include/import.h (original) +++ python/branches/py3k/Include/import.h Fri Mar 4 13:57:09 2011 @@ -24,7 +24,16 @@ char *pathname, /* decoded from the filesystem encoding */ char *cpathname /* decoded from the filesystem encoding */ ); +PyAPI_FUNC(PyObject *) PyImport_ExecCodeModuleObject( + PyObject *name, + PyObject *co, + PyObject *pathname, + PyObject *cpathname + ); PyAPI_FUNC(PyObject *) PyImport_GetModuleDict(void); +PyAPI_FUNC(PyObject *) PyImport_AddModuleObject( + PyObject *name + ); PyAPI_FUNC(PyObject *) PyImport_AddModule( const char *name /* UTF-8 encoded string */ ); Modified: python/branches/py3k/Python/import.c ============================================================================== --- python/branches/py3k/Python/import.c (original) +++ python/branches/py3k/Python/import.c Fri Mar 4 13:57:09 2011 @@ -698,18 +698,18 @@ 'NEW' REFERENCE! */ PyObject * -PyImport_AddModule(const char *name) +PyImport_AddModuleObject(PyObject *name) { PyObject *modules = PyImport_GetModuleDict(); PyObject *m; - if ((m = PyDict_GetItemString(modules, name)) != NULL && + if ((m = PyDict_GetItem(modules, name)) != NULL && PyModule_Check(m)) return m; - m = PyModule_New(name); + m = PyModule_NewObject(name); if (m == NULL) return NULL; - if (PyDict_SetItemString(modules, name, m) != 0) { + if (PyDict_SetItem(modules, name, m) != 0) { Py_DECREF(m); return NULL; } @@ -718,14 +718,27 @@ return m; } +PyObject * +PyImport_AddModule(const char *name) +{ + PyObject *nameobj, *module; + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + module = PyImport_AddModuleObject(nameobj); + Py_DECREF(nameobj); + return module; +} + + /* Remove name from sys.modules, if it's there. */ static void -remove_module(const char *name) +remove_module(PyObject *name) { PyObject *modules = PyImport_GetModuleDict(); - if (PyDict_GetItemString(modules, name) == NULL) + if (PyDict_GetItem(modules, name) == NULL) return; - if (PyDict_DelItemString(modules, name) < 0) + if (PyDict_DelItem(modules, name) < 0) Py_FatalError("import: deleting existing key in" "sys.modules failed"); } @@ -763,10 +776,42 @@ PyImport_ExecCodeModuleWithPathnames(char *name, PyObject *co, char *pathname, char *cpathname) { + PyObject *m = NULL; + PyObject *nameobj, *pathobj = NULL, *cpathobj = NULL; + + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + + if (pathname != NULL) { + pathobj = PyUnicode_DecodeFSDefault(pathname); + if (pathobj == NULL) + goto error; + } else + pathobj = NULL; + if (cpathname != NULL) { + cpathobj = PyUnicode_DecodeFSDefault(cpathname); + if (cpathobj == NULL) + goto error; + } else + cpathobj = NULL; + m = PyImport_ExecCodeModuleObject(nameobj, co, pathobj, cpathobj); +error: + Py_DECREF(nameobj); + Py_XDECREF(pathobj); + Py_XDECREF(cpathobj); + return m; +} + +PyObject* +PyImport_ExecCodeModuleObject(PyObject *name, PyObject *co, PyObject *pathname, + PyObject *cpathname) +{ PyObject *modules = PyImport_GetModuleDict(); PyObject *m, *d, *v; + PyObject *pathbytes; - m = PyImport_AddModule(name); + m = PyImport_AddModuleObject(name); if (m == NULL) return NULL; /* If the module is being reloaded, we get the old module back @@ -778,12 +823,18 @@ goto error; } /* Remember the filename as the __file__ attribute */ - v = NULL; if (pathname != NULL) { - v = get_sourcefile(pathname); + pathbytes = PyUnicode_EncodeFSDefault(pathname); + if (pathbytes != NULL) { + v = get_sourcefile(PyBytes_AS_STRING(pathbytes)); + Py_DECREF(pathbytes); + } else + v = NULL; if (v == NULL) PyErr_Clear(); } + else + v = NULL; if (v == NULL) { v = ((PyCodeObject *)co)->co_filename; Py_INCREF(v); @@ -793,27 +844,21 @@ Py_DECREF(v); /* Remember the pyc path name as the __cached__ attribute. */ - if (cpathname == NULL) { - v = Py_None; - Py_INCREF(v); - } - else if ((v = PyUnicode_FromString(cpathname)) == NULL) { - PyErr_Clear(); /* Not important enough to report */ + if (cpathname != NULL) + v = cpathname; + else v = Py_None; - Py_INCREF(v); - } if (PyDict_SetItemString(d, "__cached__", v) != 0) PyErr_Clear(); /* Not important enough to report */ - Py_DECREF(v); v = PyEval_EvalCode(co, d, d); if (v == NULL) goto error; Py_DECREF(v); - if ((m = PyDict_GetItemString(modules, name)) == NULL) { + if ((m = PyDict_GetItem(modules, name)) == NULL) { PyErr_Format(PyExc_ImportError, - "Loaded module %.200s not found in sys.modules", + "Loaded module %R not found in sys.modules", name); return NULL; } From python-checkins at python.org Fri Mar 4 16:26:36 2011 From: python-checkins at python.org (nick.coghlan) Date: Fri, 4 Mar 2011 16:26:36 +0100 (CET) Subject: [Python-checkins] r88748 - peps/trunk/pep-0395.txt Message-ID: <20110304152636.18992EEA09@mail.python.org> Author: nick.coghlan Date: Fri Mar 4 16:26:35 2011 New Revision: 88748 Log: PEP 395: Module Aliasing, aka Do What I Mean for several import and script execution corner cases Added: peps/trunk/pep-0395.txt (contents, props changed) Added: peps/trunk/pep-0395.txt ============================================================================== --- (empty file) +++ peps/trunk/pep-0395.txt Fri Mar 4 16:26:35 2011 @@ -0,0 +1,257 @@ +PEP: 395 +Title: Module Aliasing +Version: $Revision$ +Last-Modified: $Date$ +Author: Nick Coghlan +Status: Draft +Type: Standards Track +Content-Type: text/x-rst +Created: 4-Mar-2011 +Python-Version: 3.3 +Post-History: N/A + + +Abstract +======== + +This PEP proposes new mechanisms that eliminate some longstanding traps for +the unwary when dealing with Python's import system, the pickle module and +introspection interfaces. + + + + +What's in a ``__name__``? +========================= + +Over time, a module's ``__name__`` attribute has come to be used to handle a +number of different tasks. + +The key use cases identified for this module attribute are: + +1. Flagging the main module in a program, using the ``if __name__ == + "__main__":`` convention. +2. As the starting point for relative imports +3. To identify the location of function and class definitions within the + running application +4. To identify the location of classes for serialisation into pickle objects + which may be shared with other interpreter instances + + +Traps for the Unwary +==================== + +The overloading of the semantics of ``__name__`` have resulted in several +traps for the unwary. These traps can be quite annoying in practice, as +they are highly unobvious and can cause quite confusing behaviour. A lot of +the time, you won't even notice them, which just makes them all the more +surprising when they do come up. + + +Importing the main module twice +------------------------------- + +The most venerable of these traps is the issue of (effectively) importing +``__main__`` twice. This occurs when the main module is also imported under +its real name, effectively creating two instances of the same module under +different names. + +This problem used to be significantly worse due to implicit relative imports +from the main module, but the switch to allowing only absolute imports and +explicit relative imports means this issue is now restricted to affecting the +main module itself. + + +Why are my relative imports broken? +----------------------------------- + +PEP 366 defines a mechanism that allows relative imports to work correctly +when a module inside a package is executed via the ``-m`` switch. + +Unfortunately, many users still attempt to directly execute scripts inside +packages. While this no longer silently does the wrong thing by +creating duplicate copies of peer modules due to implicit relative imports, it +now fails noisily at the first explicit relative import, even though the +interpreter actually has sufficient information available on the filesystem to +make it work properly. + + + + +In a bit of a pickle +-------------------- + +Something many users may not realise is that the ``pickle`` module serialises +objects based on the ``__name__`` of the containing module. So objects +defined in ``__main__`` are pickled that way, and won't be unpickled +correctly by another python instance that only imported that module instead +of running it directly. Thus the advice from many Python veterans to do as +little as possible in the ``__main__`` module in any application that +involves any form of object serialisation and persistence. + +Similarly, when creating a pseudo-module\*, pickles rely on the name of the +module where a class is actually defined, rather than the officially +documented location for that class in the module hierarchy. + +While this PEP focuses specifically on ``pickle`` as the principal +serialisation scheme in the standard library, this issue may also affect +other mechanisms that support serialisation of arbitrary class instances. + +\*For the purposes of this PEP, a "pseudo-module" is a package designed like +the Python 3.2 ``unittest`` and ``concurrent.futures`` packages. These +packages are documented as if they were single modules, but are in fact +internally implemented as a package. This is *supposed* to be an +implementation detail that users and other implementations don't need to worry +about, but, thanks to ``pickle``, the details are exposed and effectively +become part of the public API. + + +Where's the source? +------------------- + +Some sophisticated users of the pseudo-module technique described +above recognise the problem with implementation details leaking out via the +``pickle`` module, and choose to address it by altering ``__name__`` to refer +to the public location for the module before defining any functions or classes +(or else by modifying the ``__module__`` attributes of those objects after +they have been defined). + +This approach is effective at eliminating the leakage of information via +pickling, but comes at the cost of breaking introspection for functions and +classes (as their ``__module__`` attribute now points to the wrong place). + + +Forkless Windows +---------------- + +To get around the lack of ``os.fork`` on Windows, the ``multiprocessing`` +module attempts to re-execute Python with the same main module, but skipping +over any code guarded by ``if __name__ == "__main__":`` checks. It does the +best it can with the information it has, but is forced to make assumptions +that simply aren't valid whenever the main module isn't an ordinary directly +executed script or top-level module. Packages and non-top-level modules +executed via the ``-m`` switch, as well as directly executed zipfiles or +directories, are likely to make multiprocessing on Windows do the wrong thing +(either quietly or noisily) when spawning a new process. + + +Proposed Changes +================ + +The following changes are interrelated and make the most sense when +considered together. They collectively either completely eliminate the traps +for the unwary noted above, or else provide straightforward mechanisms for +dealing with them. + +A rough draft of some of the concepts presented here was first posted on the +python-ideas list [1], but they have evolved considerably since first being +discussed in that thread. + + +Fixing dual imports of the main module +-------------------------------------- + +Two simple changes are proposed to fix this problem: + +1. In ``runpy``, modify the implementation of the ``-m`` switch handling to + install the specified module in ``sys.modules`` under both its real name + and the name ``__main__``. (Currently it is only installed as the latter) +2. When directly executing a module, install it in ``sys.modules`` under + ``os.path.splitext(os.path.basename(__file__))[0]`` as well as under + ``__main__``. + +With the main module also stored under its "real" name, imports will pick it +up from the ``sys.modules`` cache rather than reimporting it under a new name. + + +Fixing direct execution inside packages +--------------------------------------- + +To fix this problem, it is proposed that an additional filesystem check be +performed before proceeding with direct execution of a ``PY_SOURCE`` or +``PY_COMPILED`` file that has been named on the command line. + +This additional check would look for an ``__init__`` file that is a peer to +the specified file with a matching extension (either ``.py``, ``.pyc`` or +``.pyo``, depending what was passed on the command line). + +If this check fails to find anything, direct execution proceeds as usual. + +If, however, it finds something, execution is handed over to a +helper function in the ``runpy`` module that ``runpy.run_path`` also invokes +in the same circumstances. That function will walk back up the +directory hierarchy from the supplied path, looking for the first directory +that doesn't contain an ``__init__`` file. Once that directory is found, it +will be set to ``sys.path[0]``, ``sys.argv[0]`` will be set to ``-m`` and +``runpy._run_module_as_main`` will be invoked with the appropriate module +name (as calculated based on the original filename and the directories +traversed while looking for a directory without an ``__init__`` file. + + +Fixing pickling without breaking introspection +---------------------------------------------- + +To fix this problem, it is proposed to add two optional module level +attributes: ``__source_name__`` and ``__pickle_name__``. + +When setting the ``__module__`` attribute on a function or class, the +interpreter will be updated to use ``__source_name__`` if defined, falling +back to ``__name__`` otherwise. + +``__source_name__`` will automatically be set to the main module's "real" name +(as described above under the fix to prevent duplicate imports of the main +module) by the interpreter. This will fix both pickling and introspection for +the main module. + +It is also proposed that the pickling mechanism for classes and functions be +updated to use an optional ``__pickle_module__`` attribute when deciding how +to pickle these objects (falling back to the existing ``__module__`` +attribute if the optional attribute is not defined). When a class or function +is defined, this optional attribute will be defined if ``__pickle_name__`` is +defined at the module level, and left out otherwise. This will allow +pseudo-modules to fix pickling without breaking introspection. + +Other serialisation schemes could add support for this new attribute +relatively easily by replacing ``x.__module__`` with ``getattr(x, +"__pickle_module__", x.__module__)``. + +``pydoc`` and ``inspect`` would also be updated to make appropriate use of +the new attributes for any cases not already covered by the above rules for +setting ``__module__``. + +Fixing multiprocessing on Windows +--------------------------------- + +With ``__source_name__`` now available to tell ``multiprocessing`` the real +name of the main module, it should be able to simply include it in the +serialised information passed to the child process, eliminating the dubious +reverse engineering of the ``__file__`` attribute. + + +Reference Implementation +======================== + +None as yet. I'll probably be sprinting on this after Pycon. + + +References +========== + +.. [1] Module aliases and/or "real names" + (http://mail.python.org/pipermail/python-ideas/2011-January/008983.html) + + +Copyright +========= + +This document has been placed in the public domain. + +.. + Local Variables: + mode: indented-text + indent-tabs-mode: nil + sentence-end-double-space: t + fill-column: 70 + End: From python-checkins at python.org Fri Mar 4 16:38:00 2011 From: python-checkins at python.org (nick.coghlan) Date: Fri, 4 Mar 2011 16:38:00 +0100 (CET) Subject: [Python-checkins] r88749 - peps/trunk/pep-0395.txt Message-ID: <20110304153800.87C0CEEA07@mail.python.org> Author: nick.coghlan Date: Fri Mar 4 16:38:00 2011 New Revision: 88749 Log: Update post history for PEP 395 Modified: peps/trunk/pep-0395.txt Modified: peps/trunk/pep-0395.txt ============================================================================== --- peps/trunk/pep-0395.txt (original) +++ peps/trunk/pep-0395.txt Fri Mar 4 16:38:00 2011 @@ -8,7 +8,7 @@ Content-Type: text/x-rst Created: 4-Mar-2011 Python-Version: 3.3 -Post-History: N/A +Post-History: 5-Mar-2011 Abstract From python-checkins at python.org Fri Mar 4 16:46:44 2011 From: python-checkins at python.org (nick.coghlan) Date: Fri, 4 Mar 2011 16:46:44 +0100 (CET) Subject: [Python-checkins] r88750 - peps/trunk/pep-0395.txt Message-ID: <20110304154644.C47C3EE9A4@mail.python.org> Author: nick.coghlan Date: Fri Mar 4 16:46:44 2011 New Revision: 88750 Log: Fix a few wording nits Modified: peps/trunk/pep-0395.txt Modified: peps/trunk/pep-0395.txt ============================================================================== --- peps/trunk/pep-0395.txt (original) +++ peps/trunk/pep-0395.txt Fri Mar 4 16:46:44 2011 @@ -162,8 +162,9 @@ ``os.path.splitext(os.path.basename(__file__))[0]`` as well as under ``__main__``. -With the main module also stored under its "real" name, imports will pick it -up from the ``sys.modules`` cache rather than reimporting it under a new name. +With the main module also stored under its "real" name, attempts to import it +will pick it up from the ``sys.modules`` cache rather than reimporting it +under the new name. Fixing direct execution inside packages @@ -187,7 +188,7 @@ will be set to ``sys.path[0]``, ``sys.argv[0]`` will be set to ``-m`` and ``runpy._run_module_as_main`` will be invoked with the appropriate module name (as calculated based on the original filename and the directories -traversed while looking for a directory without an ``__init__`` file. +traversed while looking for a directory without an ``__init__`` file). Fixing pickling without breaking introspection @@ -200,10 +201,10 @@ interpreter will be updated to use ``__source_name__`` if defined, falling back to ``__name__`` otherwise. -``__source_name__`` will automatically be set to the main module's "real" name -(as described above under the fix to prevent duplicate imports of the main -module) by the interpreter. This will fix both pickling and introspection for -the main module. +In the main module, ``__source_name__`` will automatically be set to the main +module's "real" name (as described above under the fix to prevent duplicate +imports of the main module) by the interpreter. This will fix both pickling +and introspection for the main module. It is also proposed that the pickling mechanism for classes and functions be updated to use an optional ``__pickle_module__`` attribute when deciding how @@ -226,8 +227,8 @@ With ``__source_name__`` now available to tell ``multiprocessing`` the real name of the main module, it should be able to simply include it in the -serialised information passed to the child process, eliminating the dubious -reverse engineering of the ``__file__`` attribute. +serialised information passed to the child process, eliminating the +need for dubious reverse engineering of the ``__file__`` attribute. Reference Implementation From python-checkins at python.org Fri Mar 4 16:51:29 2011 From: python-checkins at python.org (brian.curtin) Date: Fri, 04 Mar 2011 16:51:29 +0100 Subject: [Python-checkins] cpython: Updated introduction. (testing ssh push from Windows) Message-ID: http://hg.python.org/cpython/rev/2384ee936769 changeset: 68079:2384ee936769 user: briancurtin date: Fri Mar 04 09:28:05 2011 -0600 summary: Updated introduction. (testing ssh push from Windows) files: README diff --git a/README b/README --- a/README +++ b/README @@ -4,10 +4,12 @@ Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Python Software Foundation. All rights reserved. -Python 3.x is a new version of the language, which is incompatible with the 2.x -line of releases. The language is mostly the same, but many details, especially -how built-in objects like dictionaries and strings work, have changed -considerably, and a lot of deprecated features have finally been removed. +Python 3.x is a new version of the language that all of the cool kids are +using. Its incompatible with the 2.x line of releases, but porting isn't +that hard, although it's harder than ripping it on internet message boards. +The language is mostly the same, but many details, especially how built-in +objects like dictionaries and strings work, have changed considerably for the +better, and a lot of deprecated features have finally been removed. Build Instructions -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 4 17:13:51 2011 From: python-checkins at python.org (brian.curtin) Date: Fri, 04 Mar 2011 17:13:51 +0100 Subject: [Python-checkins] cpython: line ending test when edited in Visual Studio Message-ID: http://hg.python.org/cpython/rev/86700f7b0f59 changeset: 68080:86700f7b0f59 user: briancurtin date: Fri Mar 04 10:13:23 2011 -0600 summary: line ending test when edited in Visual Studio files: PC/winreg.c diff --git a/PC/winreg.c b/PC/winreg.c --- a/PC/winreg.c +++ b/PC/winreg.c @@ -20,7 +20,9 @@ static PyObject *PyHKEY_FromHKEY(HKEY h); static BOOL PyHKEY_Close(PyObject *obHandle); -static char errNotAHandle[] = "Object is not a handle"; +static char errNotAHandle[] = "Object is probably not a handle (I think)"; +/* let's see what happens with these line endings + hurf durf */ /* The win32api module reports the function name that failed, but this concept is not in the Python core. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 4 17:51:04 2011 From: python-checkins at python.org (antoine.pitrou) Date: Fri, 4 Mar 2011 17:51:04 +0100 (CET) Subject: [Python-checkins] r88751 - sandbox/trunk/stringbench/README Message-ID: <20110304165104.BB9A0EE9F5@mail.python.org> Author: antoine.pitrou Date: Fri Mar 4 17:51:04 2011 New Revision: 88751 Log: test commit Modified: sandbox/trunk/stringbench/README Modified: sandbox/trunk/stringbench/README ============================================================================== --- sandbox/trunk/stringbench/README (original) +++ sandbox/trunk/stringbench/README Fri Mar 4 17:51:04 2011 @@ -65,3 +65,4 @@ 4079.83 5432.25 75.1 TOTAL However, this has no meaning as it evenly weights every test. + From python-checkins at python.org Fri Mar 4 18:02:33 2011 From: python-checkins at python.org (antoine.pitrou) Date: Fri, 04 Mar 2011 18:02:33 +0100 Subject: [Python-checkins] pymigr: Forgot this instance of "trunk" Message-ID: http://hg.python.org/pymigr/rev/fe1cd5965c41 changeset: 121:fe1cd5965c41 user: Antoine Pitrou date: Fri Mar 04 18:02:31 2011 +0100 summary: Forgot this instance of "trunk" files: convert.sh diff --git a/convert.sh b/convert.sh --- a/convert.sh +++ b/convert.sh @@ -20,7 +20,7 @@ echo '' >> $HGREPO/.hg/hgrc echo '[hgsubversion]' >> $HGREPO/.hg/hgrc echo 'defaultauthors = False' >> $HGREPO/.hg/hgrc -echo 'trunkbranch = trunk' >> $HGREPO/.hg/hgrc +echo 'trunkbranch = legacy-trunk' >> $HGREPO/.hg/hgrc cd $HGREPO -- Repository URL: http://hg.python.org/pymigr From python-checkins at python.org Fri Mar 4 18:28:34 2011 From: python-checkins at python.org (antoine.pitrou) Date: Fri, 04 Mar 2011 18:28:34 +0100 Subject: [Python-checkins] pymigr: Update instructions for hooks Message-ID: http://hg.python.org/pymigr/rev/5f1c1e8f3278 changeset: 122:5f1c1e8f3278 user: Antoine Pitrou date: Fri Mar 04 18:28:31 2011 +0100 summary: Update instructions for hooks files: README.txt diff --git a/README.txt b/README.txt --- a/README.txt +++ b/README.txt @@ -79,15 +79,17 @@ [hooks] - # Uses our modified version of eol.py (see - # http://mercurial.selenic.com/bts/issue2660 and - # http://mercurial.selenic.com/bts/issue2665) - pretxnchangegroup.eol = python:/home/hg/mercurial-1.7.5/hgext/eol.py:allcsethook - #pretxnchangegroup.eol = python:hgext.eol.hook + # Uses our modified version of eol.py (see http://mercurial.selenic.com/bts/issue2665) + pretxnchangegroup.eol = python:hgext.eol.allcsethook + # Enforce whitespace rules for all new head(s) + pretxnchangegroup.checkwhitespace = python:/data/hg/repos/hooks/checkwhitespace.py:check_whitespace + # Reject new changesets on closed branches, or brand-new branches + pretxnchangegroup.checkbranch = python:/data/hg/repos/hooks/checkbranch.py:hook + # Reject multiple heads per branch + pretxnchangegroup.checkheads = python:/data/hg/repos/hooks/checkheads.py:hook - pretxnchangegroup.checkheads = python:/home/hg/repos/hooks/checkheads.py:hook - pretxnchangegroup.checkbranch = python:/home/hg/repos/hooks/checkbranch.py:hook - incoming.notify = python:/home/hg/repos/hooks/mail.py:incoming + incoming.notify = python:/data/hg/repos/hooks/mail.py:incoming + #incoming.sphinxbuild = hg up; sh -c 'source /data/hg/sphinx-env/bin/activate; sphinx-build -q . /data/ftp.python.org/pub/docs.python.org/devguide' [mail] notify = python-checkins at python.org -- Repository URL: http://hg.python.org/pymigr From python-checkins at python.org Fri Mar 4 18:50:22 2011 From: python-checkins at python.org (stefan.krah) Date: Fri, 4 Mar 2011 18:50:22 +0100 (CET) Subject: [Python-checkins] r88752 - in python/branches/py3k-cdecimal: .hgeol .hgignore Doc/ACKS.txt Doc/Makefile Doc/README.txt Doc/bugs.rst Doc/c-api/code.rst Doc/c-api/import.rst Doc/c-api/init.rst Doc/c-api/module.rst Doc/c-api/object.rst Doc/c-api/type.rst Doc/c-api/unicode.rst Doc/distutils/uploading.rst Doc/documenting/markup.rst Doc/faq/design.rst Doc/faq/extending.rst Doc/faq/general.rst Doc/faq/gui.rst Doc/faq/installed.rst Doc/faq/library.rst Doc/faq/programming.rst Doc/howto/index.rst Doc/howto/logging-cookbook.rst Doc/howto/logging.rst Doc/howto/pyporting.rst Doc/howto/sorting.rst Doc/library/2to3.rst Doc/library/__future__.rst Doc/library/_dummy_thread.rst Doc/library/_thread.rst Doc/library/abc.rst Doc/library/aifc.rst Doc/library/argparse.rst Doc/library/ast.rst Doc/library/asynchat.rst Doc/library/asyncore.rst Doc/library/bdb.rst Doc/library/cgi.rst Doc/library/codecs.rst Doc/library/collections.abc.rst Doc/library/collections.rst Doc/library/colorsys.rst Doc/library/compileall.rst Doc/library/concurrent.futures.rst Doc/library/configparser.rst Doc/library/crypt.rst Doc/library/ctypes.rst Doc/library/datatypes.rst Doc/library/decimal.rst Doc/library/dummy_threading.rst Doc/library/fractions.rst Doc/library/ftplib.rst Doc/library/getopt.rst Doc/library/gettext.rst Doc/library/gzip.rst Doc/library/hashlib.rst Doc/library/hmac.rst Doc/library/html.entities.rst Doc/library/html.parser.rst Doc/library/html.rst Doc/library/http.client.rst Doc/library/http.cookiejar.rst Doc/library/http.cookies.rst Doc/library/http.server.rst Doc/library/imaplib.rst Doc/library/imghdr.rst Doc/library/importlib.rst Doc/library/inspect.rst Doc/library/io.rst Doc/library/itertools.rst Doc/library/json.rst Doc/library/logging.config.rst Doc/library/logging.handlers.rst Doc/library/mailbox.rst Doc/library/mailcap.rst Doc/library/mimetypes.rst Doc/library/modulefinder.rst Doc/library/multiprocessing.rst Doc/library/netrc.rst Doc/library/nntplib.rst Doc/library/operator.rst Doc/library/optparse.rst Doc/library/os.rst Doc/library/pdb.rst Doc/library/pickletools.rst Doc/library/pipes.rst Doc/library/pkgutil.rst Doc/library/platform.rst Doc/library/plistlib.rst Doc/library/poplib.rst Doc/library/profile.rst Doc/library/py_compile.rst Doc/library/pyclbr.rst Doc/library/pydoc.rst Doc/library/reprlib.rst Doc/library/rlcompleter.rst Doc/library/runpy.rst Doc/library/select.rst Doc/library/shelve.rst Doc/library/shlex.rst Doc/library/shutil.rst Doc/library/site.rst Doc/library/smtpd.rst Doc/library/smtplib.rst Doc/library/sndhdr.rst Doc/library/socket.rst Doc/library/socketserver.rst Doc/library/ssl.rst Doc/library/stat.rst Doc/library/stdtypes.rst Doc/library/string.rst Doc/library/subprocess.rst Doc/library/sunau.rst Doc/library/symbol.rst Doc/library/sys.rst Doc/library/sysconfig.rst Doc/library/tabnanny.rst Doc/library/tarfile.rst Doc/library/telnetlib.rst Doc/library/tempfile.rst Doc/library/threading.rst Doc/library/timeit.rst Doc/library/tkinter.tix.rst Doc/library/token.rst Doc/library/turtle.rst Doc/library/types.rst Doc/library/unittest.rst Doc/library/urllib.parse.rst Doc/library/urllib.request.rst Doc/library/warnings.rst Doc/library/wave.rst Doc/library/weakref.rst Doc/library/webbrowser.rst Doc/library/xdrlib.rst Doc/library/xml.dom.minidom.rst Doc/library/xml.dom.pulldom.rst Doc/library/xml.etree.elementtree.rst Doc/library/xmlrpc.client.rst Doc/library/xmlrpc.server.rst Doc/library/zipfile.rst Doc/license.rst Doc/make.bat Doc/reference/executionmodel.rst Doc/reference/expressions.rst Doc/reference/simple_stmts.rst Doc/tools/sphinxext/indexsidebar.html Doc/tools/sphinxext/static/basic.css Doc/tools/sphinxext/susp-ignored.csv Doc/tutorial/inputoutput.rst Doc/tutorial/interpreter.rst Doc/tutorial/stdlib.rst Doc/tutorial/stdlib2.rst Doc/using/unix.rst Doc/using/windows.rst Doc/whatsnew/2.0.rst Doc/whatsnew/2.1.rst Doc/whatsnew/2.2.rst Doc/whatsnew/2.4.rst Doc/whatsnew/3.0.rst Doc/whatsnew/3.2.rst Doc/whatsnew/3.3.rst Doc/whatsnew/index.rst Include/import.h Include/moduleobject.h Include/object.h Include/patchlevel.h Include/pycapsule.h Include/pydebug.h Include/pyerrors.h Include/typeslots.h Include/unicodeobject.h LICENSE Lib/_abcoll.py Lib/_dummy_thread.py Lib/_pyio.py Lib/abc.py Lib/argparse.py Lib/ast.py Lib/asynchat.py Lib/asyncore.py Lib/cgi.py Lib/collections Lib/collections.py Lib/compileall.py Lib/configparser.py Lib/crypt.py Lib/ctypes/test/test_callbacks.py Lib/ctypes/test/test_memfunctions.py Lib/ctypes/test/test_python_api.py Lib/ctypes/test/test_refcounts.py Lib/ctypes/test/test_stringptr.py Lib/decimal.py Lib/distutils/__init__.py Lib/distutils/command/bdist_wininst.py Lib/doctest.py Lib/email/__init__.py Lib/email/generator.py Lib/email/test/test_email.py Lib/ftplib.py Lib/functools.py Lib/hashlib.py Lib/http/client.py Lib/http/server.py Lib/idlelib/EditorWindow.py Lib/idlelib/PyShell.py Lib/idlelib/RemoteObjectBrowser.py Lib/idlelib/ScriptBinding.py Lib/idlelib/config-keys.def Lib/idlelib/idlever.py Lib/idlelib/macosxSupport.py Lib/imaplib.py Lib/importlib/_bootstrap.py Lib/importlib/abc.py Lib/json/__init__.py Lib/lib2to3 Lib/lib2to3/__main__.py Lib/lib2to3/patcomp.py Lib/lib2to3/pgen2/driver.py Lib/lib2to3/tests/test_parser.py Lib/logging/__init__.py Lib/logging/handlers.py Lib/mailbox.py Lib/multiprocessing/connection.py Lib/multiprocessing/forking.py Lib/multiprocessing/process.py Lib/nntplib.py Lib/numbers.py Lib/os.py Lib/platform.py Lib/poplib.py Lib/pyclbr.py Lib/pydoc.py Lib/pydoc_data/topics.py Lib/random.py Lib/reprlib.py Lib/shutil.py Lib/smtpd.py Lib/smtplib.py Lib/socket.py Lib/sqlite3/test/types.py Lib/sre_parse.py Lib/ssl.py Lib/string.py Lib/struct.py Lib/subprocess.py Lib/tarfile.py Lib/test/crashers/compiler_recursion.py Lib/test/crashers/underlying_dict.py Lib/test/decimaltestdata/abs.decTest Lib/test/decimaltestdata/add.decTest Lib/test/decimaltestdata/base.decTest Lib/test/decimaltestdata/clamp.decTest Lib/test/decimaltestdata/compare.decTest Lib/test/decimaltestdata/decDouble.decTest Lib/test/decimaltestdata/decQuad.decTest Lib/test/decimaltestdata/decSingle.decTest Lib/test/decimaltestdata/divide.decTest Lib/test/decimaltestdata/divideint.decTest Lib/test/decimaltestdata/inexact.decTest Lib/test/decimaltestdata/max.decTest Lib/test/decimaltestdata/min.decTest Lib/test/decimaltestdata/minus.decTest Lib/test/decimaltestdata/multiply.decTest Lib/test/decimaltestdata/plus.decTest Lib/test/decimaltestdata/power.decTest Lib/test/decimaltestdata/quantize.decTest Lib/test/decimaltestdata/randomBound32.decTest Lib/test/decimaltestdata/randoms.decTest Lib/test/decimaltestdata/reduce.decTest Lib/test/decimaltestdata/remainder.decTest Lib/test/decimaltestdata/remainderNear.decTest Lib/test/decimaltestdata/rescale.decTest Lib/test/decimaltestdata/rounding.decTest Lib/test/decimaltestdata/samequantum.decTest Lib/test/decimaltestdata/squareroot.decTest Lib/test/decimaltestdata/subtract.decTest Lib/test/decimaltestdata/testall.decTest Lib/test/decimaltestdata/tointegral.decTest Lib/test/list_tests.py Lib/test/pickletester.py Lib/test/regrtest.py Lib/test/subprocessdata/fd_status.py Lib/test/support.py Lib/test/test_abc.py Lib/test/test_argparse.py Lib/test/test_array.py Lib/test/test_asyncore.py Lib/test/test_bigaddrspace.py Lib/test/test_bigmem.py Lib/test/test_builtin.py Lib/test/test_bytes.py Lib/test/test_bz2.py Lib/test/test_capi.py Lib/test/test_cfgparser.py Lib/test/test_cgi.py Lib/test/test_cmd_line.py Lib/test/test_codecs.py Lib/test/test_collections.py Lib/test/test_compileall.py Lib/test/test_configparser.py Lib/test/test_crypt.py Lib/test/test_dbm.py Lib/test/test_deque.py Lib/test/test_descr.py Lib/test/test_descrtut.py Lib/test/test_doctest.py Lib/test/test_dummy_thread.py Lib/test/test_exceptions.py Lib/test/test_float.py Lib/test/test_ftplib.py Lib/test/test_gc.py Lib/test/test_genexps.py Lib/test/test_getargs2.py Lib/test/test_hashlib.py Lib/test/test_httpservers.py Lib/test/test_imaplib.py Lib/test/test_io.py Lib/test/test_logging.py Lib/test/test_mailbox.py Lib/test/test_memoryview.py Lib/test/test_metaclass.py Lib/test/test_minidom.py Lib/test/test_mmap.py Lib/test/test_multiprocessing.py Lib/test/test_nntplib.py Lib/test/test_os.py Lib/test/test_osx_env.py Lib/test/test_pdb.py Lib/test/test_pep3120.py Lib/test/test_pickle.py Lib/test/test_pickletools.py Lib/test/test_platform.py Lib/test/test_poplib.py Lib/test/test_posix.py Lib/test/test_pulldom.py Lib/test/test_pydoc.py Lib/test/test_range.py Lib/test/test_reprlib.py Lib/test/test_richcmp.py Lib/test/test_runpy.py Lib/test/test_sax.py Lib/test/test_scope.py Lib/test/test_shelve.py Lib/test/test_socket.py Lib/test/test_ssl.py Lib/test/test_strlit.py Lib/test/test_subprocess.py Lib/test/test_sys.py Lib/test/test_sys_settrace.py Lib/test/test_tarfile.py Lib/test/test_telnetlib.py Lib/test/test_threading.py Lib/test/test_trace.py Lib/test/test_unicode.py Lib/test/test_urllib.py Lib/test/test_urllib2.py Lib/test/test_urlparse.py Lib/test/test_uuid.py Lib/test/test_xml_etree.py Lib/test/test_xmlrpc_net.py Lib/test/test_zipimport_support.py Lib/test/test_zlib.py Lib/threading.py Lib/tokenize.py Lib/unittest/case.py Lib/unittest/test/_test_warnings.py Lib/unittest/test/test_assertions.py Lib/unittest/test/test_case.py Lib/unittest/test/test_runner.py Lib/urllib/parse.py Lib/urllib/request.py Mac/BuildScript/README.txt Mac/BuildScript/build-installer.py Mac/BuildScript/resources/ReadMe.txt Mac/BuildScript/resources/Welcome.rtf Mac/BuildScript/scripts/postflight.documentation Mac/Extras.ReadMe.txt Mac/IDLE/idlemain.py Mac/Makefile.in Makefile.pre.in Misc/ACKS Misc/AIX-NOTES Misc/NEWS Misc/PURIFY.README Misc/README Misc/README.AIX Misc/README.Emacs Misc/README.OpenBSD Misc/README.klocwork Misc/RPM/python-3.2.spec Misc/RPM/python-3.3.spec Misc/cheatsheet Misc/developers.txt Misc/maintainers.rst Modules/Setup.dist Modules/_collectionsmodule.c Modules/_cryptmodule.c Modules/_ctypes/_ctypes.c Modules/_ctypes/_ctypes_test.c Modules/_ctypes/cfield.c Modules/_ctypes/libffi_msvc/ffi.c Modules/_datetimemodule.c Modules/_dbmmodule.c Modules/_io/bufferedio.c Modules/_io/bytesio.c Modules/_io/textio.c Modules/_json.c Modules/_multiprocessing/multiprocessing.h Modules/_pickle.c Modules/_sqlite/connection.c Modules/_sqlite/cursor.c Modules/_sqlite/module.c Modules/_sqlite/statement.c Modules/_ssl.c Modules/_testcapimodule.c Modules/_threadmodule.c Modules/_tkinter.c Modules/arraymodule.c Modules/audioop.c Modules/cjkcodecs/_codecs_iso2022.c Modules/cjkcodecs/multibytecodec.c Modules/cryptmodule.c Modules/ld_so_aix.in Modules/main.c Modules/mmapmodule.c Modules/posixmodule.c Modules/socketmodule.c Modules/xxlimited.c Modules/zipimport.c Modules/zlibmodule.c Objects/bytearrayobject.c Objects/fileobject.c Objects/floatobject.c Objects/listobject.c Objects/memoryobject.c Objects/moduleobject.c Objects/obmalloc.c Objects/rangeobject.c Objects/stringlib/string_format.h Objects/tupleobject.c Objects/typeobject.c Objects/typeslots.inc Objects/unicodeobject.c Objects/weakrefobject.c PC PC/VC6/pythoncore.dsp PC/VC6/readme.txt PC/VS7.1/build_ssl.bat PC/VS7.1/pythoncore.vcproj PC/VS7.1/readme.txt PC/VS8.0/build.bat PC/VS8.0/build_env.bat PC/VS8.0/build_pgo.bat PC/VS8.0/build_ssl.bat PC/VS8.0/env.bat PC/VS8.0/idle.bat PC/VS8.0/kill_python.c PC/VS8.0/pyproject.vsprops PC/VS8.0/rt.bat PC/bdist_wininst/wininst.dsp PC/bdist_wininst/wininst.dsw PC/example_nt/example.vcproj PC/import_nt.c PC/os2emx/Makefile PC/os2emx/README.os2emx PC/os2emx/python27.def PC/os2emx/python33.def PC/pyconfig.h PC/python3.def PC/python3.mak PC/python32gen.py PC/python32stub.def PC/python33gen.py PC/python33stub.def PC/python3dll.c PCbuild/build_ssl.bat PCbuild/kill_python.c PCbuild/pyproject.vsprops PCbuild/readme.txt Parser/parsetok.c Parser/pgenmain.c Python/ast.c Python/bltinmodule.c Python/ceval.c Python/ceval_gil.h Python/compile.c Python/dtoa.c Python/dynload_aix.c Python/dynload_dl.c Python/dynload_hpux.c Python/dynload_next.c Python/dynload_os2.c Python/dynload_shlib.c Python/dynload_win.c Python/getargs.c Python/import.c Python/importdl.c Python/pystrtod.c Python/pythonrun.c Python/sysmodule.c README Tools/buildbot/build-amd64.bat Tools/buildbot/build.bat Tools/buildbot/buildmsi.bat Tools/buildbot/clean-amd64.bat Tools/buildbot/clean.bat Tools/buildbot/external-amd64.bat Tools/buildbot/external-common.bat Tools/buildbot/external.bat Tools/buildbot/test-amd64.bat Tools/buildbot/test.bat Tools/ccbench/ccbench.py Tools/msi/msi.py Tools/msi/uuids.py Tools/scripts/abitype.py Tools/scripts/find_recursionlimit.py Tools/unicode/genwincodecs.bat configure configure.in pyconfig.h.in setup.py Message-ID: <20110304175022.6CFB8EE9A0@mail.python.org> Author: stefan.krah Date: Fri Mar 4 18:50:17 2011 New Revision: 88752 Log: Merged revisions 87938-87943,87946-87949,87952-87954,87957-87958,87960,87966,87968-87969,87971-87975,87978,87980-87984,87986,87988-87991,87993,87996-88001,88003-88009,88011-88018,88021-88022,88026,88028,88032-88033,88035-88036,88040-88044,88047-88058,88063,88066,88069,88072-88080,88083-88085,88092-88094,88097,88100-88109,88111,88114-88115,88117-88122,88125-88131,88134-88137,88139-88147,88149-88166,88170-88172,88174,88176,88178-88188,88191,88196-88201,88203-88204,88207,88209-88215,88220-88223,88226,88228,88230-88232,88234-88236,88239-88240,88244-88247,88251-88252,88256,88258-88259,88261,88263-88266,88271-88276,88280-88281,88284,88299,88301-88302,88322,88329-88334,88337,88340-88352,88355-88371,88374-88375,88377,88381-88389,88394-88396,88399-88403,88407,88411-88413,88420-88421,88423-88424,88426,88430-88432,88434-88435,88438-88445,88447-88449,88451,88456,88459-88460,88463-88467,88470,88474-88476,88478,88480-88481,88484,88486,88490-88494,88496,88498,88500-88501,88503,88505-88507,88511-88513,88515-88517,88519-88521,88523-88525,88527-88528,88530,88533-88534,88538-88541,88545-88546,88550,88552-88554,88558,88567,88574-88581,88584-88589,88602-88604,88607-88610,88613,88616,88618-88622,88624-88633,88636,88639-88640,88643-88647,88650,88652-88654,88656,88658,88660,88663-88664,88668,88671,88679-88680,88682-88686,88691,88696-88697,88699-88700,88702-88712,88717,88719-88722,88724,88726,88729-88730,88733-88735,88740,88742,88744-88747 via svnmerge from svn+ssh://pythondev at svn.python.org/python/branches/py3k ................ r87938 | raymond.hettinger | 2011-01-11 20:59:46 +0100 (Tue, 11 Jan 2011) | 1 line Add entry for Barrier objects. ................ r87939 | raymond.hettinger | 2011-01-11 21:51:45 +0100 (Tue, 11 Jan 2011) | 2 lines Clean-up threading.Barrier example. ................ r87940 | raymond.hettinger | 2011-01-11 22:13:26 +0100 (Tue, 11 Jan 2011) | 2 lines Update the datetime and time section. ................ r87941 | raymond.hettinger | 2011-01-11 22:20:20 +0100 (Tue, 11 Jan 2011) | 1 line Update the email section ................ r87942 | alexander.belopolsky | 2011-01-11 22:44:00 +0100 (Tue, 11 Jan 2011) | 3 lines Issue #5109: array.array constructor will now use fast code when initial data is provided in an array object with correct type. ................ r87943 | raymond.hettinger | 2011-01-11 23:08:55 +0100 (Tue, 11 Jan 2011) | 2 lines Add comment. ................ r87946 | terry.reedy | 2011-01-12 00:05:50 +0100 (Wed, 12 Jan 2011) | 3 lines Issue #10225: Correct interactive Doc/howto/sorting.rst examples so doctest runs. Based on part of A. Belopolsky's patch. ................ r87947 | raymond.hettinger | 2011-01-12 02:16:57 +0100 (Wed, 12 Jan 2011) | 5 lines Revert r87946. The virtues of readability and of examples that can be cut and pasted are more important than having a doctests on examples that already work. ................ r87948 | nick.coghlan | 2011-01-12 04:15:52 +0100 (Wed, 12 Jan 2011) | 1 line Issue 10889: Support slicing and indexing of large ranges (no docs changes, since, as far as I know, we never said anywhere that this *didn't* work) ................ r87949 | benjamin.peterson | 2011-01-12 05:44:41 +0100 (Wed, 12 Jan 2011) | 1 line fix weirdly ambigious sentence ................ r87952 | benjamin.peterson | 2011-01-12 16:24:27 +0100 (Wed, 12 Jan 2011) | 1 line move this test to test_descr; it's not abc specific ................ r87953 | benjamin.peterson | 2011-01-12 16:25:02 +0100 (Wed, 12 Jan 2011) | 1 line oops, wrong class ................ r87954 | benjamin.peterson | 2011-01-12 16:34:01 +0100 (Wed, 12 Jan 2011) | 1 line don't segfault on deleting __abstractmethods__ #10892 ................ r87957 | alexander.belopolsky | 2011-01-12 17:37:14 +0100 (Wed, 12 Jan 2011) | 1 line Issue #10225: Fixed the simple mistakes in doctests. ................ r87958 | antoine.pitrou | 2011-01-12 19:45:27 +0100 (Wed, 12 Jan 2011) | 4 lines Issue #10822: Fix test_posix:test_getgroups failure under Solaris. Patch by Ross Lagerwall. ................ r87960 | benjamin.peterson | 2011-01-12 19:56:07 +0100 (Wed, 12 Jan 2011) | 1 line use PyErr_SetString instead of PyErr_Format ................ r87966 | raymond.hettinger | 2011-01-12 21:37:47 +0100 (Wed, 12 Jan 2011) | 3 lines Remove function annotations that slipped into _abcoll. These are reserved for third-party use. ................ r87968 | antoine.pitrou | 2011-01-12 21:46:37 +0100 (Wed, 12 Jan 2011) | 4 lines Fix the expected memory use of utf-8 encoding. Also, release the one reference to a huge object even when an exception is raised. ................ r87969 | raymond.hettinger | 2011-01-12 21:52:39 +0100 (Wed, 12 Jan 2011) | 1 line Remove the funky function annotation from numbers.py. ................ r87971 | antoine.pitrou | 2011-01-12 22:19:59 +0100 (Wed, 12 Jan 2011) | 3 lines Make test skipping message nicer, and remove the rather useless "overhead" parameter. ................ r87972 | antoine.pitrou | 2011-01-12 22:40:20 +0100 (Wed, 12 Jan 2011) | 3 lines Fix @bigmemtest when no limit is given by the user (oops) ................ r87973 | antoine.pitrou | 2011-01-12 22:50:44 +0100 (Wed, 12 Jan 2011) | 3 lines More informative skip message in @bigaddrspace ................ r87974 | antoine.pitrou | 2011-01-12 22:58:39 +0100 (Wed, 12 Jan 2011) | 3 lines A better message again ................ r87975 | antoine.pitrou | 2011-01-12 23:02:45 +0100 (Wed, 12 Jan 2011) | 3 lines Fix test_bigaddrspace (some tests didn't trigger the expected MemoryError) ................ r87978 | raymond.hettinger | 2011-01-13 00:39:31 +0100 (Thu, 13 Jan 2011) | 4 lines Issue #10899: No function type annotations in the standard library. Removed function type annotations from _pyio.py. ................ r87980 | raymond.hettinger | 2011-01-13 03:31:25 +0100 (Thu, 13 Jan 2011) | 1 line Issue 10899: Remove function type annotations from the stdlib ................ r87981 | raymond.hettinger | 2011-01-13 03:52:26 +0100 (Thu, 13 Jan 2011) | 1 line Issue 10899: Remove function type annotations from the stdlib ................ r87982 | benjamin.peterson | 2011-01-13 05:22:54 +0100 (Thu, 13 Jan 2011) | 1 line plug reference leak ................ r87983 | georg.brandl | 2011-01-13 08:13:06 +0100 (Thu, 13 Jan 2011) | 1 line More PEP 8: no space around "=" in argument lists. ................ r87984 | georg.brandl | 2011-01-13 08:24:40 +0100 (Thu, 13 Jan 2011) | 1 line Add semicolon for consistency. ................ r87986 | georg.brandl | 2011-01-13 08:31:18 +0100 (Thu, 13 Jan 2011) | 1 line Fix the example output of count(). ................ r87988 | raymond.hettinger | 2011-01-13 19:15:51 +0100 (Thu, 13 Jan 2011) | 5 lines Issue #10899: Move function type annotations into docstrings. Note, the docstrings (for the most part) were already very thorough and included type information. ................ r87989 | raymond.hettinger | 2011-01-13 20:08:04 +0100 (Thu, 13 Jan 2011) | 1 line Issue 10899: Remove function type annotations from the stdlib ................ r87990 | alexander.belopolsky | 2011-01-13 22:58:44 +0100 (Thu, 13 Jan 2011) | 5 lines Issue #9268: Documented -m pickletools usage. Also added a source code link. ................ r87991 | eli.bendersky | 2011-01-14 08:31:14 +0100 (Fri, 14 Jan 2011) | 2 lines Remove call to nonexisting function (relic from Python 2.x) under #ifdef __INSURE__. Issue 9844 ................ r87993 | eli.bendersky | 2011-01-14 09:25:03 +0100 (Fri, 14 Jan 2011) | 2 lines Issue #10902: Fix reference to run* methods ................ r87996 | victor.stinner | 2011-01-14 13:52:12 +0100 (Fri, 14 Jan 2011) | 1 line Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl() ................ r87997 | victor.stinner | 2011-01-14 14:05:19 +0100 (Fri, 14 Jan 2011) | 1 line test_urlparse: add tests for encoding and errors arguments ................ r87998 | victor.stinner | 2011-01-14 14:05:21 +0100 (Fri, 14 Jan 2011) | 3 lines Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, not as unicode, and accept binary files. Add encoding and errors attributes to cgi.FieldStorage. ................ r87999 | victor.stinner | 2011-01-14 14:08:27 +0100 (Fri, 14 Jan 2011) | 1 line cgi: use isinstance(x, list) instead of type(x) == type([]) ................ r88000 | victor.stinner | 2011-01-14 14:31:45 +0100 (Fri, 14 Jan 2011) | 1 line urllib doc: add versionchanged sections for parse_qs() and parse_qsl() ................ r88001 | victor.stinner | 2011-01-14 15:11:45 +0100 (Fri, 14 Jan 2011) | 1 line Issue #4953: add the author of the patch ................ r88003 | ned.deily | 2011-01-15 05:37:12 +0100 (Sat, 15 Jan 2011) | 5 lines #10907: Warn OS X 10.6 IDLE users to use ActiveState Tcl/Tk 8.5, rather than the currently problematic Apple-supplied one, when running with the 64-/32-bit installer variant. ................ r88004 | ned.deily | 2011-01-15 05:44:12 +0100 (Sat, 15 Jan 2011) | 4 lines #10907: Update OS X installer build README to better reflect current build practices. ................ r88005 | ned.deily | 2011-01-15 06:05:53 +0100 (Sat, 15 Jan 2011) | 5 lines #10843: Install the Tools directory on OS X in the applications Extras (/Applications/Python 3.n/Extras/) where the Demo directory had previous been installed. ................ r88006 | ned.deily | 2011-01-15 06:29:12 +0100 (Sat, 15 Jan 2011) | 6 lines #10843: Update third-party library versions used in OS X 32-bit installer builds: bzip2 1.0.6, readline 6.1.2, SQLite 3.7.4 (with FTS3/FTS4 and RTREE enabled), and ncursesw 5.5 (wide-char support enabled). ................ r88007 | ned.deily | 2011-01-15 06:44:21 +0100 (Sat, 15 Jan 2011) | 5 lines Remove spurious copy of Mac/IDLE/idlemain.py left over from conversion from Python 2 build process. The correct version is in Mac/IDLE/IDLE.app/Contents/Resources/ ................ r88008 | ned.deily | 2011-01-15 06:53:33 +0100 (Sat, 15 Jan 2011) | 2 lines Add self to mac platform area in maintainers.rst. ................ r88009 | eli.bendersky | 2011-01-15 11:23:34 +0100 (Sat, 15 Jan 2011) | 2 lines Issue #10912: Clarify the documentation of PyObject_RichCompareBool. Thanks to Devin Jeanpierre for spotting the problem. ................ r88011 | antoine.pitrou | 2011-01-15 12:37:11 +0100 (Sat, 15 Jan 2011) | 4 lines Fix the GIL with subinterpreters. Hopefully this will allow mod_wsgi to work with 3.2. (we need some tests for this) ................ r88012 | antoine.pitrou | 2011-01-15 12:39:23 +0100 (Sat, 15 Jan 2011) | 3 lines Avoid ResourceWarnings in ccbench ................ r88013 | antoine.pitrou | 2011-01-15 12:44:17 +0100 (Sat, 15 Jan 2011) | 3 lines Standard streams use file descriptors, not FILE pointers. ................ r88014 | antoine.pitrou | 2011-01-15 12:57:42 +0100 (Sat, 15 Jan 2011) | 3 lines Restructure a bit ................ r88015 | antoine.pitrou | 2011-01-15 13:10:48 +0100 (Sat, 15 Jan 2011) | 3 lines Improve description of issues ................ r88016 | antoine.pitrou | 2011-01-15 13:21:53 +0100 (Sat, 15 Jan 2011) | 3 lines Add mention of how to switch interpreters ................ r88017 | antoine.pitrou | 2011-01-15 13:54:19 +0100 (Sat, 15 Jan 2011) | 3 lines Reword and restructure the GIL API doc ................ r88018 | antoine.pitrou | 2011-01-15 14:11:48 +0100 (Sat, 15 Jan 2011) | 4 lines Issue #10913: Deprecate misleading functions PyEval_AcquireLock() and PyEval_ReleaseLock(). The thread-state aware APIs should be used instead. ................ r88021 | antoine.pitrou | 2011-01-15 15:31:49 +0100 (Sat, 15 Jan 2011) | 3 lines Nits ................ r88022 | antoine.pitrou | 2011-01-15 17:17:07 +0100 (Sat, 15 Jan 2011) | 7 lines Issue #10916: mmap should not segfault when a file is mapped using 0 as length and a non-zero offset, and an attempt to read past the end of file is made (IndexError is raised instead). Patch by Ross Lagerwall. Requested by Georg. ................ r88026 | georg.brandl | 2011-01-15 17:44:11 +0100 (Sat, 15 Jan 2011) | 1 line Update pydoc topics. ................ r88028 | georg.brandl | 2011-01-15 17:45:03 +0100 (Sat, 15 Jan 2011) | 1 line Update to 1.0.7. ................ r88032 | georg.brandl | 2011-01-15 18:03:02 +0100 (Sat, 15 Jan 2011) | 1 line Fix a few doc errors, mostly undefined keywords. ................ r88033 | georg.brandl | 2011-01-15 18:05:20 +0100 (Sat, 15 Jan 2011) | 1 line Fix "make suspicious" errors and update ignore file. ................ r88035 | georg.brandl | 2011-01-15 18:08:53 +0100 (Sat, 15 Jan 2011) | 1 line Bump to 3.2rc1. ................ r88036 | antoine.pitrou | 2011-01-15 18:25:58 +0100 (Sat, 15 Jan 2011) | 3 lines Fix mmap and test_mmap under Windows too (followup to r88022) ................ r88040 | martin.v.loewis | 2011-01-15 20:43:18 +0100 (Sat, 15 Jan 2011) | 2 lines Package zip_cp437_header.zip. Don't try to package subprocessdata/*.py twice. ................ r88041 | georg.brandl | 2011-01-16 09:44:50 +0100 (Sun, 16 Jan 2011) | 1 line Post-release updates. ................ r88042 | georg.brandl | 2011-01-16 10:11:45 +0100 (Sun, 16 Jan 2011) | 1 line Fix two small issues. ................ r88043 | raymond.hettinger | 2011-01-16 10:16:27 +0100 (Sun, 16 Jan 2011) | 1 line Remove out-of-date comment ................ r88044 | raymond.hettinger | 2011-01-16 10:18:59 +0100 (Sun, 16 Jan 2011) | 2 lines Clean-up comment. ................ r88047 | nick.coghlan | 2011-01-16 14:08:48 +0100 (Sun, 16 Jan 2011) | 1 line Add missing NEWS entry for r87948 ................ r88048 | georg.brandl | 2011-01-16 15:17:26 +0100 (Sun, 16 Jan 2011) | 1 line Rewrap and punctuation consistency. ................ r88049 | antoine.pitrou | 2011-01-16 19:16:09 +0100 (Sun, 16 Jan 2011) | 3 lines Better description of SSL-related changes ................ r88050 | antoine.pitrou | 2011-01-16 19:16:52 +0100 (Sun, 16 Jan 2011) | 3 lines Fix misindent ................ r88051 | antoine.pitrou | 2011-01-16 19:21:12 +0100 (Sun, 16 Jan 2011) | 3 lines Get proper credit ................ r88052 | raymond.hettinger | 2011-01-16 19:22:06 +0100 (Sun, 16 Jan 2011) | 3 lines Issue 10889: Added entry for handling of indexing and slicing with ranges bigger than sys.maxsize. ................ r88053 | antoine.pitrou | 2011-01-16 19:29:34 +0100 (Sun, 16 Jan 2011) | 4 lines Mention the new context parameter to FTP_TLS, and the small API change in subprocess.Popen. ................ r88054 | antoine.pitrou | 2011-01-16 19:34:09 +0100 (Sun, 16 Jan 2011) | 3 lines Mention HTTP 0.9's partial demise. ................ r88055 | antoine.pitrou | 2011-01-16 19:41:36 +0100 (Sun, 16 Jan 2011) | 3 lines More SSL-related stuff ................ r88056 | antoine.pitrou | 2011-01-16 19:45:17 +0100 (Sun, 16 Jan 2011) | 3 lines Mention deprecation of PyEval_{Acquire,Release}Lock(). ................ r88057 | matthias.klose | 2011-01-16 21:57:01 +0100 (Sun, 16 Jan 2011) | 2 lines rangeobject.c (compute_slice_indices): Make function static. ................ r88058 | brett.cannon | 2011-01-16 22:02:09 +0100 (Sun, 16 Jan 2011) | 1 line Placeholder sentence pointing out that imoprtlib has updated (as well as deprecated) ABCs thanks to the new .pyc situation. ................ r88063 | benjamin.peterson | 2011-01-17 20:24:34 +0100 (Mon, 17 Jan 2011) | 4 lines turn some checks into assertions, since they are implied by the caller Reviewed by Georg. ................ r88066 | benjamin.peterson | 2011-01-17 20:44:46 +0100 (Mon, 17 Jan 2011) | 1 line correct assertion ................ r88069 | benjamin.peterson | 2011-01-17 20:54:55 +0100 (Mon, 17 Jan 2011) | 1 line remove unneeded assertion ................ r88072 | raymond.hettinger | 2011-01-17 22:05:07 +0100 (Mon, 17 Jan 2011) | 2 lines Note that two-phase cyclic barriers are suitable for use in loops. ................ r88073 | brett.cannon | 2011-01-17 22:12:54 +0100 (Mon, 17 Jan 2011) | 1 line Short README on gdb support. ................ r88074 | raymond.hettinger | 2011-01-17 22:29:58 +0100 (Mon, 17 Jan 2011) | 2 lines Tidy-up the ssl section. ................ r88075 | raymond.hettinger | 2011-01-17 22:55:40 +0100 (Mon, 17 Jan 2011) | 2 lines Fix-up the XXX for importlib.abc. ................ r88076 | raymond.hettinger | 2011-01-17 23:33:11 +0100 (Mon, 17 Jan 2011) | 2 lines Wording nits. ................ r88077 | raymond.hettinger | 2011-01-18 00:10:55 +0100 (Tue, 18 Jan 2011) | 2 lines Beautify code examples. ................ r88078 | raymond.hettinger | 2011-01-18 00:39:39 +0100 (Tue, 18 Jan 2011) | 2 lines The example for configparser was weird. ................ r88079 | raymond.hettinger | 2011-01-18 00:42:17 +0100 (Tue, 18 Jan 2011) | 2 lines Add an import to the logging example ................ r88080 | benjamin.peterson | 2011-01-18 00:49:51 +0100 (Tue, 18 Jan 2011) | 1 line very out of date file ................ r88083 | raymond.hettinger | 2011-01-18 01:02:40 +0100 (Tue, 18 Jan 2011) | 2 lines Nits. ................ r88084 | raymond.hettinger | 2011-01-18 01:19:30 +0100 (Tue, 18 Jan 2011) | 2 lines Add example for the abc module. ................ r88085 | raymond.hettinger | 2011-01-18 01:30:24 +0100 (Tue, 18 Jan 2011) | 2 lines More nits. ................ r88092 | raymond.hettinger | 2011-01-18 08:15:39 +0100 (Tue, 18 Jan 2011) | 2 lines Nits. ................ r88093 | raymond.hettinger | 2011-01-18 09:28:01 +0100 (Tue, 18 Jan 2011) | 2 lines More nits. ................ r88094 | raymond.hettinger | 2011-01-18 10:01:34 +0100 (Tue, 18 Jan 2011) | 2 lines Typos. ................ r88097 | antoine.pitrou | 2011-01-18 19:57:52 +0100 (Tue, 18 Jan 2011) | 4 lines Issue #10451: memoryview objects could allow to mutate a readable buffer. Initial patch by Ross Lagerwall. ................ r88100 | raymond.hettinger | 2011-01-18 21:25:04 +0100 (Tue, 18 Jan 2011) | 3 lines Reword the OrderedDict entry to emphasize the default behavior, to show equivalent code, and to provide a use case. ................ r88101 | raymond.hettinger | 2011-01-18 22:14:27 +0100 (Tue, 18 Jan 2011) | 2 lines Missing word. ................ r88102 | raymond.hettinger | 2011-01-18 23:58:33 +0100 (Tue, 18 Jan 2011) | 2 lines Expand barrier example to show time-outs. ................ r88103 | david.malcolm | 2011-01-19 00:45:53 +0100 (Wed, 19 Jan 2011) | 2 lines Fix typo in example of barrier timeouts from r88102 ................ r88104 | brett.cannon | 2011-01-19 01:49:06 +0100 (Wed, 19 Jan 2011) | 2 lines Klocwork scan site no longer available. ................ r88105 | raymond.hettinger | 2011-01-19 05:14:34 +0100 (Wed, 19 Jan 2011) | 2 lines Add examples for inspect. ................ r88106 | raymond.hettinger | 2011-01-19 05:24:57 +0100 (Wed, 19 Jan 2011) | 2 lines Improve looks by replacing a bullet list with a table. ................ r88107 | raymond.hettinger | 2011-01-19 05:43:45 +0100 (Wed, 19 Jan 2011) | 2 lines Expand entry for pydoc. ................ r88108 | georg.brandl | 2011-01-19 09:42:03 +0100 (Wed, 19 Jan 2011) | 1 line Suppress trailing spaces in table paragraphs. ................ r88109 | raymond.hettinger | 2011-01-19 09:44:33 +0100 (Wed, 19 Jan 2011) | 2 lines Fix markup. ................ r88111 | antoine.pitrou | 2011-01-19 16:21:35 +0100 (Wed, 19 Jan 2011) | 4 lines Issue #10898: Allow compiling the posix module when the C library defines a symbol named FSTAT. ................ r88114 | alexander.belopolsky | 2011-01-19 20:53:30 +0100 (Wed, 19 Jan 2011) | 5 lines Issue #10934: Fixed and expanded Internaldate2tuple() and Time2Internaldate() documentation. Thanks Joe Peterson for the report and the original patch. ................ r88115 | georg.brandl | 2011-01-19 21:05:49 +0100 (Wed, 19 Jan 2011) | 1 line #10944: add c_bool to types table. ................ r88117 | brett.cannon | 2011-01-20 00:08:44 +0100 (Thu, 20 Jan 2011) | 1 line Rename AIX-NOTES to something that follows the convention in Misc. ................ r88118 | brett.cannon | 2011-01-20 04:56:50 +0100 (Thu, 20 Jan 2011) | 2 lines Move maintainers.rst into the devguide and rename it the Experts Index. ................ r88119 | raymond.hettinger | 2011-01-20 05:03:19 +0100 (Thu, 20 Jan 2011) | 1 line Add more examples ................ r88120 | raymond.hettinger | 2011-01-20 05:12:37 +0100 (Thu, 20 Jan 2011) | 2 lines Add hasattr() example. ................ r88121 | raymond.hettinger | 2011-01-20 10:04:39 +0100 (Thu, 20 Jan 2011) | 4 lines Make an entry for the os module's bytes accessors. Split codecs into a separate section. Rewrite the Unicode section. ................ r88122 | raymond.hettinger | 2011-01-20 10:47:04 +0100 (Thu, 20 Jan 2011) | 2 lines Add an entry for the code repository. ................ r88125 | brett.cannon | 2011-01-20 20:30:51 +0100 (Thu, 20 Jan 2011) | 1 line Move README.Emacs to the devguide. ................ r88126 | brett.cannon | 2011-01-20 20:33:06 +0100 (Thu, 20 Jan 2011) | 1 line Move README.gdb to the devguide. ................ r88127 | brett.cannon | 2011-01-20 20:34:35 +0100 (Thu, 20 Jan 2011) | 1 line Remove some outdated files from Misc. ................ r88128 | brett.cannon | 2011-01-20 20:36:12 +0100 (Thu, 20 Jan 2011) | 1 line Update Misc/README. ................ r88129 | brett.cannon | 2011-01-20 20:42:08 +0100 (Thu, 20 Jan 2011) | 1 line Move developers.txt to the devguide. ................ r88130 | alexander.belopolsky | 2011-01-20 20:51:31 +0100 (Thu, 20 Jan 2011) | 1 line Corrected the entry about new year range in the time module. ................ r88131 | antoine.pitrou | 2011-01-20 22:07:24 +0100 (Thu, 20 Jan 2011) | 6 lines Issue #10955: Fix a potential crash when trying to mmap() a file past its length. Initial patch by Ross Lagerwall. This fixes a regression introduced by r88022. ................ r88134 | raymond.hettinger | 2011-01-21 04:00:00 +0100 (Fri, 21 Jan 2011) | 2 lines Clarify what changed with respect to date ranges and two-digit years. ................ r88135 | raymond.hettinger | 2011-01-21 05:59:00 +0100 (Fri, 21 Jan 2011) | 2 lines Add example for __wrapped__. ................ r88136 | raymond.hettinger | 2011-01-21 10:18:19 +0100 (Fri, 21 Jan 2011) | 2 lines Use a Latin-1 example that won't break the LaTeX PDF build. ................ r88137 | antoine.pitrou | 2011-01-21 22:37:32 +0100 (Fri, 21 Jan 2011) | 3 lines Fix JSON docs about loads() accepting only str objects, not bytes. ................ r88139 | vinay.sajip | 2011-01-22 00:35:57 +0100 (Sat, 22 Jan 2011) | 1 line Issue #10949: Improved robustness of rotating file handlers. ................ r88140 | victor.stinner | 2011-01-22 11:30:29 +0100 (Sat, 22 Jan 2011) | 6 lines Issue #10955: zipimport uses ASCII at bootstrap zipimport uses ASCII encoding instead of cp497 to decode filenames, at bootstrap, if the codec registry is not ready yet. It is still possible to have non-ASCII filenames using the Unicode flag (UTF-8 encoding) for file entries in the ZIP file. ................ r88141 | victor.stinner | 2011-01-22 11:33:01 +0100 (Sat, 22 Jan 2011) | 1 line Issue #10955: fix NEWS entry ................ r88142 | armin.ronacher | 2011-01-22 14:13:05 +0100 (Sat, 22 Jan 2011) | 5 lines Issue #10980: encode headers with latin1 instead of ASCII in the HTTP server. This makes the implementation of PEP 3333 compliant servers on top of BaseHTTPServer possible. ................ r88143 | armin.ronacher | 2011-01-22 14:44:22 +0100 (Sat, 22 Jan 2011) | 7 lines To match the behaviour of HTTP server, the HTTP client library now also encodes headers with iso-8859-1 (latin1) encoding. It was already doing that for incoming headers which makes this behaviour now consistent in both incoming and outgoing direction. ................ r88144 | georg.brandl | 2011-01-22 23:06:24 +0100 (Sat, 22 Jan 2011) | 1 line #10983: fix several bugs in the _tunnel implementation that seem to have missed while porting between branches. A unittest is needed! ................ r88145 | victor.stinner | 2011-01-23 01:11:58 +0100 (Sun, 23 Jan 2011) | 1 line Issue #10955: Fix typo in NEWS, cp497 => cp437 ................ r88146 | raymond.hettinger | 2011-01-23 12:29:08 +0100 (Sun, 23 Jan 2011) | 1 line Add entry for shutil's archiving operations. ................ r88147 | antoine.pitrou | 2011-01-23 18:12:25 +0100 (Sun, 23 Jan 2011) | 3 lines Issue #10987: Fix the recursion limit handling in the _pickle module. ................ r88149 | raymond.hettinger | 2011-01-23 22:05:46 +0100 (Sun, 23 Jan 2011) | 1 line Add entry for reprlib. ................ r88150 | raymond.hettinger | 2011-01-23 22:13:27 +0100 (Sun, 23 Jan 2011) | 2 lines Add tracker references. ................ r88151 | raymond.hettinger | 2011-01-23 22:32:18 +0100 (Sun, 23 Jan 2011) | 2 lines minor clean-up. ................ r88152 | raymond.hettinger | 2011-01-23 22:33:36 +0100 (Sun, 23 Jan 2011) | 1 line Fix typo. ................ r88153 | brett.cannon | 2011-01-24 00:06:05 +0100 (Mon, 24 Jan 2011) | 6 lines Skip a recursion depth check test when running under CPython and have a trace function set. Otherwise a Python fatal error about hitting an unrecoverable recursion depth gets triggered. Closes issue #10985. Code review by Georg Brandl. ................ r88154 | raymond.hettinger | 2011-01-24 02:18:30 +0100 (Mon, 24 Jan 2011) | 2 lines Add entries for array, asyncore, csv, compileall, and ast. ................ r88155 | raymond.hettinger | 2011-01-24 02:51:49 +0100 (Mon, 24 Jan 2011) | 2 lines Add entries for dis, dbm, and ctypes. ................ r88156 | raymond.hettinger | 2011-01-24 05:52:27 +0100 (Mon, 24 Jan 2011) | 1 line Make the type consistent for hashlib algorithm constants. (Reviewed by Benjamin). ................ r88157 | raymond.hettinger | 2011-01-24 06:07:13 +0100 (Mon, 24 Jan 2011) | 2 lines Add entry for hashlib and expand the GC entry. ................ r88158 | raymond.hettinger | 2011-01-24 06:26:00 +0100 (Mon, 24 Jan 2011) | 2 lines Add entry for the html module. ................ r88159 | raymond.hettinger | 2011-01-24 10:01:27 +0100 (Mon, 24 Jan 2011) | 1 line Add section for urllib.parse. ................ r88160 | raymond.hettinger | 2011-01-24 10:17:24 +0100 (Mon, 24 Jan 2011) | 2 lines Add entry for hash_info(). ................ r88161 | raymond.hettinger | 2011-01-24 11:11:12 +0100 (Mon, 24 Jan 2011) | 2 lines Fix markup and add todo. ................ r88162 | raymond.hettinger | 2011-01-24 17:28:06 +0100 (Mon, 24 Jan 2011) | 1 line Missing source links. ................ r88163 | raymond.hettinger | 2011-01-24 19:19:01 +0100 (Mon, 24 Jan 2011) | 2 lines Typos. ................ r88164 | r.david.murray | 2011-01-24 20:34:58 +0100 (Mon, 24 Jan 2011) | 12 lines #10960: fix 'stat' links, link to lstat from stat, general tidy of stat doc. Original patch by Michal Nowikowski, with some additions and wording fixes by me. I changed the wording from 'Performs a stat system call' to 'Performs the equivalent of a stat system call', since on Windows there are no stat/lstat system calls involved. I also extended Michal's breakout of the attributes into a list to the other paragraphs, and rearranged the order of the paragraphs in the 'stat' docs to make it flow better and put it in what I think is a more logical/useful order. ................ r88165 | georg.brandl | 2011-01-24 20:53:18 +0100 (Mon, 24 Jan 2011) | 1 line Typo fix. ................ r88166 | georg.brandl | 2011-01-24 20:59:08 +0100 (Mon, 24 Jan 2011) | 1 line Fix label syntax. ................ r88170 | terry.reedy | 2011-01-24 21:48:40 +0100 (Mon, 24 Jan 2011) | 2 lines Update last tix code example for 3.x, as already done for previous examples. ................ r88171 | steven.bethard | 2011-01-24 22:02:50 +0100 (Mon, 24 Jan 2011) | 1 line Issue #9509: make argarse properly handle IOErrors raised by argparse.FileType. Approved by Georg in the tracker. ................ r88172 | terry.reedy | 2011-01-24 22:36:03 +0100 (Mon, 24 Jan 2011) | 2 lines Issue #11000 ast.parse parses source, not just expressions. ................ r88174 | ned.deily | 2011-01-24 22:46:44 +0100 (Mon, 24 Jan 2011) | 6 lines #10974: IDLE no longer crashes if its recent files list includes files with non-ASCII characters in their path names. (with approval of release manager for 3.2rc2) ................ r88176 | raymond.hettinger | 2011-01-24 23:14:42 +0100 (Mon, 24 Jan 2011) | 2 lines Add entry for io.BytesIO.getbuffer(). ................ r88178 | benjamin.peterson | 2011-01-25 01:00:28 +0100 (Tue, 25 Jan 2011) | 1 line another pretty crasher served up by pypy ................ r88179 | brett.cannon | 2011-01-25 01:56:18 +0100 (Tue, 25 Jan 2011) | 1 line Ignore the gdb.py file under OS X. ................ r88180 | raymond.hettinger | 2011-01-25 03:35:58 +0100 (Tue, 25 Jan 2011) | 2 lines Add entry for the math module. ................ r88181 | raymond.hettinger | 2011-01-25 03:38:59 +0100 (Tue, 25 Jan 2011) | 2 lines Nits. ................ r88182 | raymond.hettinger | 2011-01-25 06:53:27 +0100 (Tue, 25 Jan 2011) | 2 lines Typo. ................ r88183 | raymond.hettinger | 2011-01-25 07:58:01 +0100 (Tue, 25 Jan 2011) | 1 line Add math.erfc and turtledemo. ................ r88184 | raymond.hettinger | 2011-01-25 08:46:07 +0100 (Tue, 25 Jan 2011) | 2 lines Add entries for select and site. ................ r88185 | raymond.hettinger | 2011-01-25 09:01:01 +0100 (Tue, 25 Jan 2011) | 2 lines Typo. ................ r88186 | antoine.pitrou | 2011-01-25 17:28:44 +0100 (Tue, 25 Jan 2011) | 3 lines Fix the doc for PIPE_BUF ................ r88187 | antoine.pitrou | 2011-01-25 18:24:57 +0100 (Tue, 25 Jan 2011) | 3 lines Fix the description of PIPE_BUF ................ r88188 | brett.cannon | 2011-01-25 19:26:35 +0100 (Tue, 25 Jan 2011) | 3 lines Tighten the restrictions on the test_sys test which triggers a fatal error when run with tracing turned on. ................ r88191 | raymond.hettinger | 2011-01-25 22:32:39 +0100 (Tue, 25 Jan 2011) | 9 lines Issue #11004: Repair edge case in deque.count(). (Reviewed by Georg Brandl.) Also made similar changes to deque.reverse() though this wasn't strictly necessary (the edge case cannot occur with two pointers moving to meet in the middle). Making the change in reverse() was more a matter of future-proofing. ................ r88196 | victor.stinner | 2011-01-26 00:15:47 +0100 (Wed, 26 Jan 2011) | 3 lines fix import in email.message_from_binary_file() Parser => BytesParser ................ r88197 | victor.stinner | 2011-01-26 01:39:19 +0100 (Wed, 26 Jan 2011) | 1 line Fix BytesGenerator._handle_text() if the message has no payload (None) ................ r88198 | raymond.hettinger | 2011-01-26 02:13:26 +0100 (Wed, 26 Jan 2011) | 2 lines Add a few imports to examples. ................ r88199 | r.david.murray | 2011-01-26 03:31:37 +0100 (Wed, 26 Jan 2011) | 2 lines Revert r88197. I'll refix correctly once there is a test. ................ r88200 | raymond.hettinger | 2011-01-26 20:36:13 +0100 (Wed, 26 Jan 2011) | 2 lines Markup nits. ................ r88201 | raymond.hettinger | 2011-01-26 21:34:14 +0100 (Wed, 26 Jan 2011) | 7 lines Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into a keyword-only argument. The preceding positional argument was deprecated, so it made no sense to add filter as a positional argument. (Patch reviewed by Brian Curtin and Anthony Long.) ................ r88203 | r.david.murray | 2011-01-26 22:21:32 +0100 (Wed, 26 Jan 2011) | 4 lines #11019: Make BytesGenerator handle Message with None body. Bug discovery and initial patch by Victor Stinner. ................ r88204 | antoine.pitrou | 2011-01-27 00:29:28 +0100 (Thu, 27 Jan 2011) | 4 lines Issue #11018: fix a test to not be a no-op in test_bz2. Found by Nadeem Vawda, reviewed by Brett. ................ r88207 | raymond.hettinger | 2011-01-27 01:06:54 +0100 (Thu, 27 Jan 2011) | 6 lines Issue #11020: Command-line pyclbr was broken because of missing 2-to-3 conversion. (Patch reviewed by David Murray.) ................ r88209 | raymond.hettinger | 2011-01-27 02:20:32 +0100 (Thu, 27 Jan 2011) | 1 line More source links. ................ r88210 | raymond.hettinger | 2011-01-27 06:48:56 +0100 (Thu, 27 Jan 2011) | 2 lines Add an entry for tarfile. ................ r88211 | raymond.hettinger | 2011-01-27 07:10:18 +0100 (Thu, 27 Jan 2011) | 2 lines Update todo list. ................ r88212 | raymond.hettinger | 2011-01-27 07:46:54 +0100 (Thu, 27 Jan 2011) | 2 lines Add missing attributions. ................ r88213 | raymond.hettinger | 2011-01-27 08:34:45 +0100 (Thu, 27 Jan 2011) | 2 lines More typical sample invocation of tarfile. ................ r88214 | vinay.sajip | 2011-01-27 20:14:16 +0100 (Thu, 27 Jan 2011) | 1 line Issue 11008: docs updated to show versionadded for dictConfig. ................ r88215 | raymond.hettinger | 2011-01-27 21:38:46 +0100 (Thu, 27 Jan 2011) | 1 line More source links ................ r88220 | lukasz.langa | 2011-01-28 12:57:30 +0100 (Fri, 28 Jan 2011) | 3 lines #11027: documented how to override SECTCRE ................ r88221 | michael.foord | 2011-01-28 20:51:48 +0100 (Fri, 28 Jan 2011) | 3 lines Issue 10573: revert unittest docs to first / second Minor internal change to unittest.TestCase.assertCountEqual Reviewed by R. David Murray ................ r88222 | eric.smith | 2011-01-28 21:23:25 +0100 (Fri, 28 Jan 2011) | 1 line Added a placeholder for str.format_map, as discussed with Raymond. My prose is horrible, some cleanup is required. ................ r88223 | raymond.hettinger | 2011-01-29 09:51:57 +0100 (Sat, 29 Jan 2011) | 3 lines Add entry for str.format_map(). Add bullet list and reference to documentation section. ................ r88226 | eric.smith | 2011-01-29 12:15:35 +0100 (Sat, 29 Jan 2011) | 3 lines Issue #11302: missing type check on _string.formatter_field_name_split and _string.formatter_parser caused crash. Originial patch by haypo, reviewed by me, okayed by Georg. ................ r88228 | victor.stinner | 2011-01-29 12:31:20 +0100 (Sat, 29 Jan 2011) | 3 lines Issue #10989: Fix a crash on SSLContext.load_verify_locations(None, True). Patch reviewed by Antoine Pitrou, okayed by Georg Brandl. ................ r88230 | giampaolo.rodola | 2011-01-29 14:24:33 +0100 (Sat, 29 Jan 2011) | 1 line fix reference to issue where the addition of select.PIPE_BUF was discussed ................ r88231 | alexander.belopolsky | 2011-01-29 18:19:08 +0100 (Sat, 29 Jan 2011) | 4 lines Issue #10939: Fixed imaplib.Internaldate2tuple(). Thanks Joe Peterson for the report and the patch. Reviewed by Georg Brandl. ................ r88232 | ned.deily | 2011-01-29 19:29:01 +0100 (Sat, 29 Jan 2011) | 5 lines Issue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using the menu accelerators for Open Module, Go to Line, and New Indent Width. The accelerators still work but no longer appear in the menu items. ................ r88234 | ned.deily | 2011-01-29 19:43:56 +0100 (Sat, 29 Jan 2011) | 5 lines Issue #11053: Fix IDLE "Syntax Error" windows to behave as in 2.x, preventing a confusing hung appearance on OS X with the windows obscured. (with release manager approval for 3.2rc2) ................ r88235 | ned.deily | 2011-01-29 19:56:28 +0100 (Sat, 29 Jan 2011) | 5 lines Issue #11054: Allow Mac OS X installer builds to again work on 10.5 with the system-provided Python. Also, properly guard a new Python 3 only installer build step so that build-installer.py can stay compatible with the 2.7 version. (with release manager approval for 3.2rc2) ................ r88236 | ned.deily | 2011-01-29 20:10:26 +0100 (Sat, 29 Jan 2011) | 3 lines Issue 11052: Correct IDLE menu accelerators on Mac OS X for Save commands. (with release manager approval for 3.2rc2) ................ r88239 | alexander.belopolsky | 2011-01-29 20:49:40 +0100 (Sat, 29 Jan 2011) | 1 line Issue #10939: Make Internaldate2tuple test more robust. ................ r88240 | eric.araujo | 2011-01-29 21:32:11 +0100 (Sat, 29 Jan 2011) | 6 lines Protect logging call against None argument (fixes #11045). Initial patch by Kelsey Hightower. Approved by Raymond. A test was non-trivial to write without calling the private function directly, so we moved that for later. ................ r88244 | raymond.hettinger | 2011-01-30 01:39:00 +0100 (Sun, 30 Jan 2011) | 2 lines Typos. ................ r88245 | raymond.hettinger | 2011-01-30 01:55:47 +0100 (Sun, 30 Jan 2011) | 4 lines Add section for http.client. Link to OS X build instructions. Add back issue references for datetime. ................ r88246 | raymond.hettinger | 2011-01-30 02:10:07 +0100 (Sun, 30 Jan 2011) | 2 lines Markup nits. ................ r88247 | nick.coghlan | 2011-01-30 02:24:08 +0100 (Sun, 30 Jan 2011) | 1 line Issue #10845: Improve compatibility between multiprocessing on Windows and package, zipfile and directory execution (Reviewed by Antoine Pitrou and approved by Georg Brandl) ................ r88251 | raymond.hettinger | 2011-01-30 06:37:16 +0100 (Sun, 30 Jan 2011) | 2 lines List known build/install problems for OS X. ................ r88252 | r.david.murray | 2011-01-30 07:21:28 +0100 (Sun, 30 Jan 2011) | 16 lines #9124: mailbox now accepts binary input and uses binary internally Although this patch contains API changes and is rather weighty for an RC phase, the mailbox module was essentially unusable without the patch since it would produce UnicodeErrors when handling non-ascii input at arbitrary and somewhat mysterious places, and any non-trivial amount of email processing will encounter messages with non-ascii bytes. The release manager approved the patch application. The changes allow binary input, and reject non-ASCII string input early with a useful message instead of failing mysteriously later. Binary is used internally for reading and writing the mailbox files. StringIO and Text file input are deprecated. Initial patch by Victor Stinner, validated and expanded by R. David Murray. ................ r88256 | raymond.hettinger | 2011-01-30 08:56:03 +0100 (Sun, 30 Jan 2011) | 2 lines Add entry for the mailbox fixups. ................ r88258 | georg.brandl | 2011-01-30 09:16:07 +0100 (Sun, 30 Jan 2011) | 3 lines #11069: fix the IDLE Stack Viewer, by not using "list" as a variable name. Original patch by Brian Curtin, reviewed by me. ................ r88259 | raymond.hettinger | 2011-01-30 09:20:37 +0100 (Sun, 30 Jan 2011) | 2 lines Clarify the status of get_string() and recommend using the binary API. ................ r88261 | georg.brandl | 2011-01-30 09:37:19 +0100 (Sun, 30 Jan 2011) | 4 lines #10961: fix exception handling in new pydoc server code. Patch by Ron Adam, reviewed by Eric Araujo. ................ r88263 | georg.brandl | 2011-01-30 13:19:35 +0100 (Sun, 30 Jan 2011) | 1 line #10680: fix mutually exclusive arguments in argument groups. ................ r88264 | georg.brandl | 2011-01-30 15:00:32 +0100 (Sun, 30 Jan 2011) | 1 line Update pydoc topics. ................ r88265 | georg.brandl | 2011-01-30 15:02:36 +0100 (Sun, 30 Jan 2011) | 1 line Update suspicious ignore file. ................ r88266 | georg.brandl | 2011-01-30 15:03:33 +0100 (Sun, 30 Jan 2011) | 1 line Bump version. ................ r88271 | eli.bendersky | 2011-01-31 05:05:52 +0100 (Mon, 31 Jan 2011) | 3 lines Fix some grammar and typos ................ r88272 | eli.bendersky | 2011-01-31 05:10:23 +0100 (Mon, 31 Jan 2011) | 3 lines Fix PEP-8 violation in argparse usage example (similar examples in argparse.rst do follow PEP-8) ................ r88273 | eli.bendersky | 2011-01-31 05:21:40 +0100 (Mon, 31 Jan 2011) | 3 lines Mention new parameter and attributes of the difflib.SequenceMatcher class added in 3.2 (issue 2986) ................ r88274 | raymond.hettinger | 2011-01-31 07:14:48 +0100 (Mon, 31 Jan 2011) | 4 lines Fix minor grammar nits. Revert r88272 -- the examples are more readable with spacing. Add todos for difflib and logging. ................ r88275 | raymond.hettinger | 2011-01-31 07:34:47 +0100 (Mon, 31 Jan 2011) | 2 lines Recommend use of the tracker during the RC phase or just before a beta. ................ r88276 | georg.brandl | 2011-01-31 11:39:57 +0100 (Mon, 31 Jan 2011) | 1 line Post-release updates. ................ r88280 | alexander.belopolsky | 2011-01-31 20:27:55 +0100 (Mon, 31 Jan 2011) | 3 lines Issue #11081: Fixed struct.__all__. Reviewed by Georg Brandl. ................ r88281 | brian.curtin | 2011-01-31 20:35:02 +0100 (Mon, 31 Jan 2011) | 2 lines #11083 typo: RuntimeException -> RuntimeError ................ r88284 | antoine.pitrou | 2011-01-31 22:08:57 +0100 (Mon, 31 Jan 2011) | 4 lines Issue #8275: Fix passing of callback arguments with ctypes under Win64. Patch by Stan Mihai. Ok'ed by Georg. ................ r88299 | eric.smith | 2011-02-01 22:31:22 +0100 (Tue, 01 Feb 2011) | 1 line Wording fix. ................ r88301 | antoine.pitrou | 2011-02-02 00:43:46 +0100 (Wed, 02 Feb 2011) | 3 lines Add a svn:ignore for PC/python3dll.obj ................ r88302 | raymond.hettinger | 2011-02-02 00:54:43 +0100 (Wed, 02 Feb 2011) | 8 lines Get command-line doctest of Lib/decimal.py to work again. If tested as '__main__' instead 'decimal', the tracebacks would abbreviate 'decimal.Inexact' as 'Inexact', breaking the doctests. (Reviewed by Antoine.) ................ r88322 | raymond.hettinger | 2011-02-02 22:12:39 +0100 (Wed, 02 Feb 2011) | 1 line Punctuation typo. ................ r88329 | georg.brandl | 2011-02-03 08:08:25 +0100 (Thu, 03 Feb 2011) | 1 line Punctuation typos. ................ r88330 | georg.brandl | 2011-02-03 08:46:41 +0100 (Thu, 03 Feb 2011) | 1 line Remove lots of spaces within exception message. ................ r88331 | brett.cannon | 2011-02-03 23:01:54 +0100 (Thu, 03 Feb 2011) | 1 line Add a HOWTO on how to port from Python 2 to Python 3. ................ r88332 | brett.cannon | 2011-02-03 23:14:58 +0100 (Thu, 03 Feb 2011) | 1 line use 3-space indents. ................ r88333 | martin.v.loewis | 2011-02-04 20:09:02 +0100 (Fri, 04 Feb 2011) | 1 line Issue #11118: Fix bogus export of None in python3.dll. ................ r88334 | antoine.pitrou | 2011-02-04 21:11:11 +0100 (Fri, 04 Feb 2011) | 3 lines Mention that seek and tell over a TextIOWrapper can be very slow. ................ r88337 | brett.cannon | 2011-02-04 21:24:02 +0100 (Fri, 04 Feb 2011) | 5 lines There was a possibility that the initialization of _sqlite, when it failed, would lead to a decref of a NULL. Fixes issue #11110. ................ r88340 | antoine.pitrou | 2011-02-05 11:43:57 +0100 (Sat, 05 Feb 2011) | 3 lines Update info in the GUI FAQ ................ r88341 | antoine.pitrou | 2011-02-05 11:57:17 +0100 (Sat, 05 Feb 2011) | 3 lines Mention Cython and remove obsolete alternatives ................ r88342 | antoine.pitrou | 2011-02-05 12:04:01 +0100 (Sat, 05 Feb 2011) | 3 lines Update test of "why is Python installed" FAQ. ................ r88343 | antoine.pitrou | 2011-02-05 12:18:34 +0100 (Sat, 05 Feb 2011) | 3 lines Mention concurrent.futures and update answers about the GIL. ................ r88344 | antoine.pitrou | 2011-02-05 12:24:15 +0100 (Sat, 05 Feb 2011) | 3 lines Mention asyncore and Twisted in the library FAQ. ................ r88345 | antoine.pitrou | 2011-02-05 12:40:05 +0100 (Sat, 05 Feb 2011) | 3 lines Mention -b and -bb ................ r88346 | antoine.pitrou | 2011-02-05 12:53:39 +0100 (Sat, 05 Feb 2011) | 3 lines Fix entries pertaining to file I/O ................ r88347 | antoine.pitrou | 2011-02-05 13:01:07 +0100 (Sat, 05 Feb 2011) | 4 lines Soften the wording about tracebacks. Reference cycles *don't* prevent garbage collection! (fortunately) ................ r88348 | antoine.pitrou | 2011-02-05 13:13:38 +0100 (Sat, 05 Feb 2011) | 3 lines Everybody hates this one :) (bytes indexing) ................ r88349 | eric.araujo | 2011-02-05 17:03:12 +0100 (Sat, 05 Feb 2011) | 2 lines Use an internal reference instead of hard-coded URI. ................ r88350 | martin.v.loewis | 2011-02-05 21:26:52 +0100 (Sat, 05 Feb 2011) | 2 lines Issue #11121: Fix building with --enable-shared. ................ r88351 | martin.v.loewis | 2011-02-05 21:35:29 +0100 (Sat, 05 Feb 2011) | 3 lines Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check in the limited ABI ................ r88352 | gregory.p.smith | 2011-02-05 22:47:25 +0100 (Sat, 05 Feb 2011) | 3 lines issue7678 - Properly document how to replace a shell pipeline so that SIGPIPE happens when the end exits before the beginning. ................ r88355 | brett.cannon | 2011-02-05 23:05:05 +0100 (Sat, 05 Feb 2011) | 7 lines Re-arrange and clarify some __future__ import statements. The absolute_import statement got moved to a new Python 2.5 and Newer section as it was available since then. The division statement got moved to Common Gotchas since it has been around for so long that any modern Python program can use it. ................ r88356 | brett.cannon | 2011-02-05 23:16:40 +0100 (Sat, 05 Feb 2011) | 1 line Soften wording on doctest. ................ r88357 | brett.cannon | 2011-02-05 23:22:47 +0100 (Sat, 05 Feb 2011) | 1 line Mention that people going the source compatibility route should run 2to3 to find pain points. ................ r88358 | raymond.hettinger | 2011-02-06 07:11:29 +0100 (Sun, 06 Feb 2011) | 2 lines Small markup and wording tweaks for the sorting-howto. ................ r88359 | raymond.hettinger | 2011-02-06 21:08:57 +0100 (Sun, 06 Feb 2011) | 2 lines Issue #11071: Various improvements to whatsnew. ................ r88360 | raymond.hettinger | 2011-02-06 22:00:38 +0100 (Sun, 06 Feb 2011) | 2 lines Fix awkwardly rendered sentence. ................ r88361 | raymond.hettinger | 2011-02-07 05:00:24 +0100 (Mon, 07 Feb 2011) | 2 lines Typo. Doh! ................ r88362 | eli.bendersky | 2011-02-07 05:19:57 +0100 (Mon, 07 Feb 2011) | 6 lines Fix some typos and grammar [commit during RC with Brett's approval] ................ r88363 | eli.bendersky | 2011-02-07 05:44:19 +0100 (Mon, 07 Feb 2011) | 3 lines Fix some typos and grammar ................ r88364 | georg.brandl | 2011-02-07 13:10:46 +0100 (Mon, 07 Feb 2011) | 1 line #11138: fix order of fill and align specifiers. ................ r88365 | georg.brandl | 2011-02-07 13:13:58 +0100 (Mon, 07 Feb 2011) | 1 line #8691: document that right alignment is default for numbers. ................ r88366 | georg.brandl | 2011-02-07 13:36:54 +0100 (Mon, 07 Feb 2011) | 2 lines #11132: pass optimize parameter to recursive call in compileall.compile_dir(). Reviewed by Eric A. ................ r88367 | raymond.hettinger | 2011-02-07 13:51:05 +0100 (Mon, 07 Feb 2011) | 2 lines Add link to table for Tcl/Tk issues on the Mac. ................ r88368 | nick.coghlan | 2011-02-07 14:43:07 +0100 (Mon, 07 Feb 2011) | 2 lines Issue 10971: Make test_zipimport_support once again compatible with refleak hunting (reviewed by Georg Brandl) ................ r88369 | georg.brandl | 2011-02-07 16:30:45 +0100 (Mon, 07 Feb 2011) | 1 line Consistent heading spacing, and fix two typos. ................ r88370 | georg.brandl | 2011-02-07 16:44:27 +0100 (Mon, 07 Feb 2011) | 1 line Spelling fixes. ................ r88371 | antoine.pitrou | 2011-02-07 16:58:11 +0100 (Mon, 07 Feb 2011) | 3 lines Clarify that IMAP4() implicitly calls open(), and that logout() implicitly calls shutdown(). ................ r88374 | ned.deily | 2011-02-07 17:44:19 +0100 (Mon, 07 Feb 2011) | 5 lines Issue #11079: The /Applications/Python x.x folder created by the Mac OS X installers no longer includes an Extras directory. The Tools directory is now installed in the framework under share/doc. ................ r88375 | ned.deily | 2011-02-07 17:48:28 +0100 (Mon, 07 Feb 2011) | 5 lines - Issue #11079: The /Applications/Python x.x folder created by the Mac OS X installers now includes a link to the installed documentation plus another in the framework share/doc directory. ................ r88377 | antoine.pitrou | 2011-02-08 00:10:33 +0100 (Tue, 08 Feb 2011) | 4 lines Issue #11141: Fix the shelve documentation to use a list, not a range object. Patch by SilentGhost. ................ r88381 | raymond.hettinger | 2011-02-09 19:16:32 +0100 (Wed, 09 Feb 2011) | 2 lines Typo. ................ r88382 | terry.reedy | 2011-02-09 20:21:00 +0100 (Wed, 09 Feb 2011) | 2 lines Add 'pysqlite' before version 2.6.0 ................ r88383 | brett.cannon | 2011-02-09 23:55:13 +0100 (Wed, 09 Feb 2011) | 1 line Tweak wording about equality comparison. ................ r88384 | raymond.hettinger | 2011-02-10 09:09:36 +0100 (Thu, 10 Feb 2011) | 1 line Add missing source links. ................ r88385 | raymond.hettinger | 2011-02-10 10:20:26 +0100 (Thu, 10 Feb 2011) | 2 lines Add an entry for logging. ................ r88386 | raymond.hettinger | 2011-02-10 10:43:04 +0100 (Thu, 10 Feb 2011) | 2 lines Fix nits. ................ r88387 | giampaolo.rodola | 2011-02-10 19:42:36 +0100 (Thu, 10 Feb 2011) | 1 line get rid of asyncore.dispatcher's debug attribute, which is no longer used (assuming it ever was). ................ r88388 | raymond.hettinger | 2011-02-11 01:03:03 +0100 (Fri, 11 Feb 2011) | 2 lines Insert missing section heading (noticed by Victor Stinner). ................ r88389 | raymond.hettinger | 2011-02-11 01:08:38 +0100 (Fri, 11 Feb 2011) | 2 lines Missing paren. ................ r88394 | senthil.kumaran | 2011-02-11 12:25:47 +0100 (Fri, 11 Feb 2011) | 3 lines Fixed issue11082 - Reject str for POST data with a TypeError. Document the need to explicitly encode to bytes when using urlencode. ................ r88395 | giampaolo.rodola | 2011-02-11 14:04:18 +0100 (Fri, 11 Feb 2011) | 4 lines asyncore: introduce a new 'closed' attribute to make sure that dispatcher gets closed only once. In different occasions close() might be called more than once, causing problems with already disconnected sockets/dispatchers. ................ r88396 | giampaolo.rodola | 2011-02-11 15:01:46 +0100 (Fri, 11 Feb 2011) | 1 line reverting r88395 and r88387 as per http://mail.python.org/pipermail/python-dev/2011-February/108005.html ................ r88399 | martin.v.loewis | 2011-02-11 21:44:40 +0100 (Fri, 11 Feb 2011) | 2 lines Add uuid for 3.2rc3. ................ r88400 | martin.v.loewis | 2011-02-11 21:47:49 +0100 (Fri, 11 Feb 2011) | 3 lines Issue #11135: Remove redundant doc field from PyType_Spec. Reviewed by Georg Brandl. ................ r88401 | martin.v.loewis | 2011-02-11 21:50:24 +0100 (Fri, 11 Feb 2011) | 3 lines Issue #11134: Add missing fields to typeslots.h. Reviewed by Georg Brandl. ................ r88402 | r.david.murray | 2011-02-11 23:37:16 +0100 (Fri, 11 Feb 2011) | 2 lines Fix argument name typo in compileall docs. ................ r88403 | r.david.murray | 2011-02-11 23:47:17 +0100 (Fri, 11 Feb 2011) | 3 lines #11116: roll back on error during add so mailbox isn't left corrupted. ................ r88407 | r.david.murray | 2011-02-12 01:03:31 +0100 (Sat, 12 Feb 2011) | 2 lines Fix #11116 fix on Windows (close file before removing in MH code) ................ r88411 | georg.brandl | 2011-02-13 10:54:12 +0100 (Sun, 13 Feb 2011) | 1 line Update pydoc topics. ................ r88412 | georg.brandl | 2011-02-13 10:59:39 +0100 (Sun, 13 Feb 2011) | 1 line Fix markup error and update suspicious ignores. ................ r88413 | georg.brandl | 2011-02-13 11:00:57 +0100 (Sun, 13 Feb 2011) | 1 line Bump for 3.2rc3. ................ r88420 | georg.brandl | 2011-02-14 07:35:00 +0100 (Mon, 14 Feb 2011) | 1 line Post-release updates. ................ r88421 | raymond.hettinger | 2011-02-14 19:18:49 +0100 (Mon, 14 Feb 2011) | 1 line Fix accumulate() example. (Reported by David Murray.) ................ r88423 | georg.brandl | 2011-02-15 13:41:17 +0100 (Tue, 15 Feb 2011) | 1 line Apply logging SocketHandler doc update by Vinay. ................ r88424 | georg.brandl | 2011-02-15 13:44:43 +0100 (Tue, 15 Feb 2011) | 1 line Remove editing slip. ................ r88426 | georg.brandl | 2011-02-15 16:44:51 +0100 (Tue, 15 Feb 2011) | 1 line #941346: Fix broken shared library build on AIX. Patch by Sebastien Sable, review by Antoine Pitrou. ................ r88430 | georg.brandl | 2011-02-15 20:48:59 +0100 (Tue, 15 Feb 2011) | 1 line #730467: Another small AIX fix. ................ r88431 | raymond.hettinger | 2011-02-17 20:05:53 +0100 (Thu, 17 Feb 2011) | 2 lines Fix an import and add a citation. ................ r88432 | raymond.hettinger | 2011-02-17 20:19:44 +0100 (Thu, 17 Feb 2011) | 2 lines Fix-up logging.dictConfig() example. ................ r88434 | raymond.hettinger | 2011-02-18 01:53:55 +0100 (Fri, 18 Feb 2011) | 1 line Doc fixups. ................ r88435 | brett.cannon | 2011-02-18 02:34:28 +0100 (Fri, 18 Feb 2011) | 5 lines Update the porting HOWTO to be a little less harsh on using 2to3. Patch reviewed by Raymond Hettinger, permission from Georg Brandl to commit during an RC. ................ r88438 | georg.brandl | 2011-02-19 09:44:47 +0100 (Sat, 19 Feb 2011) | 1 line #10709: add back an updated AIX-NOTES (as README.AIX). ................ r88439 | georg.brandl | 2011-02-19 09:47:14 +0100 (Sat, 19 Feb 2011) | 1 line #11222: fix non-framework shared library build on Mac, patch by Ned Deily. ................ r88440 | georg.brandl | 2011-02-19 09:58:23 +0100 (Sat, 19 Feb 2011) | 1 line #11184: Fix large file support on AIX. ................ r88441 | eric.araujo | 2011-02-19 19:06:50 +0100 (Sat, 19 Feb 2011) | 2 lines Some more grammar fixes/typos for what?s new (approved by Raymond; #11071) ................ r88442 | eric.araujo | 2011-02-19 19:46:02 +0100 (Sat, 19 Feb 2011) | 2 lines Fix two typos in what?s new (#11234). ................ r88443 | georg.brandl | 2011-02-19 22:47:02 +0100 (Sat, 19 Feb 2011) | 1 line #11249: in PyType_FromSpec, copy tp_doc slot since it usually will point to a static string literal which should not be deallocated together with the type. ................ r88444 | georg.brandl | 2011-02-20 11:22:41 +0100 (Sun, 20 Feb 2011) | 1 line Topic and suspicious update. ................ r88445 | georg.brandl | 2011-02-20 11:29:04 +0100 (Sun, 20 Feb 2011) | 1 line Version bump to 3.2 final. ................ r88447 | georg.brandl | 2011-02-20 11:33:21 +0100 (Sun, 20 Feb 2011) | 2 lines Bump to 3.3a0. ................ r88448 | georg.brandl | 2011-02-20 11:37:07 +0100 (Sun, 20 Feb 2011) | 1 line Bump trunk to 3.3 alpha 0. ................ r88449 | georg.brandl | 2011-02-20 11:41:31 +0100 (Sun, 20 Feb 2011) | 1 line More automated version replacement. ................ r88451 | georg.brandl | 2011-02-20 12:18:09 +0100 (Sun, 20 Feb 2011) | 1 line Remove unittest methods scheduled for removal in 3.3 -- makes the unittest test suite pass again. ................ r88456 | martin.v.loewis | 2011-02-21 17:24:00 +0100 (Mon, 21 Feb 2011) | 2 lines - Check for NULL result in PyType_FromSpec. ................ r88459 | raymond.hettinger | 2011-02-21 18:54:36 +0100 (Mon, 21 Feb 2011) | 1 line Issue 10160: Both single-arg and multi-arg calls have been sped-up. ................ r88460 | antoine.pitrou | 2011-02-21 19:03:13 +0100 (Mon, 21 Feb 2011) | 4 lines Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers larger than 4GB. Patch by Nadeem Vawda. ................ r88463 | georg.brandl | 2011-02-21 19:37:01 +0100 (Mon, 21 Feb 2011) | 1 line 3.2 is stable now. ................ r88464 | antoine.pitrou | 2011-02-21 20:05:08 +0100 (Mon, 21 Feb 2011) | 3 lines Fix issues on 32-bit systems introduced by r88460 ................ r88465 | brett.cannon | 2011-02-21 20:24:10 +0100 (Mon, 21 Feb 2011) | 2 lines Ignore Vim .swp files. ................ r88466 | antoine.pitrou | 2011-02-21 20:28:40 +0100 (Mon, 21 Feb 2011) | 3 lines Fix compile error under MSVC introduced by r88460. ................ r88467 | brett.cannon | 2011-02-21 20:29:56 +0100 (Mon, 21 Feb 2011) | 11 lines Issue #10990: Prevent tests from clobbering a set trace function. Many tests simply didn't care if they unset a pre-existing trace function. This made test coverage impossible. This patch fixes various tests to put back any pre-existing trace function. It also introduces test.support.no_tracing as a decorator which will temporarily unset the trace function for tests which simply fail otherwise. Thanks to Kristian Vlaardingerbroek for helping to find the cause of various trace function unsets. ................ r88470 | raymond.hettinger | 2011-02-21 20:42:11 +0100 (Mon, 21 Feb 2011) | 4 lines Issue #11089: Fix performance issue limiting the use of ConfigParser() with large config files. ................ r88474 | raymond.hettinger | 2011-02-21 20:58:37 +0100 (Mon, 21 Feb 2011) | 1 line Issue 11263: Fix link to source code. ................ r88475 | ned.deily | 2011-02-21 21:44:27 +0100 (Mon, 21 Feb 2011) | 3 lines Issue #11268: Prevent Mac OS X Installer failure if Documentation package had previously been installed. ................ r88476 | victor.stinner | 2011-02-21 21:51:28 +0100 (Mon, 21 Feb 2011) | 7 lines Remove bootstrap code of PyUnicode_AsEncodedString() Issue #11187: Remove bootstrap code (use ASCII) of PyUnicode_AsEncodedString(), it was replaced by a better fallback (use the locale encoding) in PyUnicode_EncodeFSDefault(). Prepare also empty sections in NEWS. ................ r88478 | victor.stinner | 2011-02-21 21:58:02 +0100 (Mon, 21 Feb 2011) | 4 lines compileall uses repr() to format filenames/paths Issue #11169: compileall module uses repr() to format filenames and paths to escape surrogate characters and show spaces. ................ r88480 | victor.stinner | 2011-02-21 22:05:50 +0100 (Mon, 21 Feb 2011) | 6 lines Remove filename variable from ceval.c Issue #11168: Remove filename debug variable from PyEval_EvalFrameEx(). It encoded the Unicode filename to UTF-8, but the encoding fails on undecodable filename (on surrogate characters) which raises an unexpected UnicodeEncodeError on recursion limit. ................ r88481 | victor.stinner | 2011-02-21 22:13:44 +0100 (Mon, 21 Feb 2011) | 4 lines Fix PyUnicode_FromFormatV("%c") for non-BMP char Issue #10830: Fix PyUnicode_FromFormatV("%c") for non-BMP characters on narrow build. ................ r88484 | antoine.pitrou | 2011-02-21 22:55:48 +0100 (Mon, 21 Feb 2011) | 4 lines Issue #10826: Prevent sporadic failure in test_subprocess on Solaris due to open door files. ................ r88486 | antoine.pitrou | 2011-02-22 00:41:12 +0100 (Tue, 22 Feb 2011) | 5 lines Issue #4681: Allow mmap() to work on file sizes and offsets larger than 4GB, even on 32-bit builds. Initial patch by Ross Lagerwall, adapted for 32-bit Windows. ................ r88490 | raymond.hettinger | 2011-02-22 01:41:50 +0100 (Tue, 22 Feb 2011) | 6 lines Issue #11085: Moved collections abstract base classes into a separate module called collections.abc, following the pattern used by importlib.abc. For backwards compatibility, the names continue to also be imported into the collections module. ................ r88491 | raymond.hettinger | 2011-02-22 02:48:33 +0100 (Tue, 22 Feb 2011) | 1 line Have the test filename match the module filename. ................ r88492 | raymond.hettinger | 2011-02-22 02:55:36 +0100 (Tue, 22 Feb 2011) | 1 line Factor-out common code for helper classes. ................ r88493 | brett.cannon | 2011-02-22 03:42:41 +0100 (Tue, 22 Feb 2011) | 1 line Ignore __pycache__ in Lib/collections. ................ r88494 | brett.cannon | 2011-02-22 04:04:06 +0100 (Tue, 22 Feb 2011) | 10 lines Issue #10992: make tests pass when run under coverage. Various tests fail when run under coverage. A primary culprit is refcount tests which fail as the counts are thrown off by the coverage code. A new decorator -- test.support.refcount_test -- is used to decorate tests which test refcounts and to skip them when running under coverage. Other tests simply fail because of changes in the system (e.g., __local__ suddenly appearing). Thanks to Kristian Vlaardingerbroek for helping to diagnose the test failures. ................ r88496 | brett.cannon | 2011-02-22 04:14:12 +0100 (Tue, 22 Feb 2011) | 4 lines Issue #10512: close the log file in cgi when running tests. Thanks to Nadeem Vawda for the find and an initial fix. ................ r88498 | brett.cannon | 2011-02-22 04:25:12 +0100 (Tue, 22 Feb 2011) | 8 lines Issue #11074: Make 'tokenize' so it can be reloaded. The module stored away the 'open' object as found in the global namespace (which fell through to the built-in namespace) since it defined its own 'open'. Problem is that if you reloaded the module it then grabbed the 'open' defined in the previous load, leading to code that infinite recursed. Switched to simply call builtins.open directly. ................ r88500 | sean.reifschneider | 2011-02-22 11:55:44 +0100 (Tue, 22 Feb 2011) | 2 lines Issue #10924: Adding salt and Modular Crypt Format to crypt library. ................ r88501 | giampaolo.rodola | 2011-02-22 16:56:20 +0100 (Tue, 22 Feb 2011) | 1 line smtlib.py PEP8 normalization via pep8.py script. ................ r88503 | brett.cannon | 2011-02-22 20:12:43 +0100 (Tue, 22 Feb 2011) | 1 line Add lib2to3.__main__ to make it easier for debugging purposes to run 2to3. ................ r88505 | giampaolo.rodola | 2011-02-22 20:24:33 +0100 (Tue, 22 Feb 2011) | 1 line In FTP.close() method, make sure to also close the socket object, not only the file. ................ r88506 | brett.cannon | 2011-02-22 21:15:44 +0100 (Tue, 22 Feb 2011) | 2 lines Issue #8914: fix various warnings from the Clang static analyzer v254. ................ r88507 | brett.cannon | 2011-02-22 21:17:14 +0100 (Tue, 22 Feb 2011) | 1 line Fix test.test_crypt.test_methods() to pass on OS X. ................ r88511 | antoine.pitrou | 2011-02-22 22:42:56 +0100 (Tue, 22 Feb 2011) | 4 lines Issue #11277: finally fix Snow Leopard crash following r88460. (probably an OS-related issue with mmap) ................ r88512 | brett.cannon | 2011-02-22 22:48:06 +0100 (Tue, 22 Feb 2011) | 3 lines Make Lib/crypt.py meet PEP 8 standards. This also led to a tweak in the new API by making methods() into a module attribute as it is statically calculated. ................ r88513 | brett.cannon | 2011-02-22 22:55:51 +0100 (Tue, 22 Feb 2011) | 1 line A crypt algorithm may not be available by returning None. ................ r88515 | victor.stinner | 2011-02-23 00:12:28 +0100 (Wed, 23 Feb 2011) | 4 lines Issue #3080: Mark PyWin_FindRegisteredModule() as private This function was not declared in Python public API (in any .h file) and not documented. Mark it as private to prepare a change of its API. ................ r88516 | victor.stinner | 2011-02-23 00:16:19 +0100 (Wed, 23 Feb 2011) | 3 lines Issue #3080: Remove unused argument of _PyImport_GetDynLoadFunc() The first argument, fqname, was not used. ................ r88517 | victor.stinner | 2011-02-23 00:38:34 +0100 (Wed, 23 Feb 2011) | 1 line Issue #3080: document encoding used by import functions ................ r88519 | victor.stinner | 2011-02-23 01:02:00 +0100 (Wed, 23 Feb 2011) | 5 lines Issue #3080: Mark _PyImport_FindBuiltin() argument as constant And as a consequence, mark also name argument of _PyImport_FindExtensionUnicode() constant too. But I plan to change this argument type to PyObject* later. ................ r88520 | victor.stinner | 2011-02-23 01:21:43 +0100 (Wed, 23 Feb 2011) | 4 lines Issue #3080: Add PyModule_GetNameObject() repr(module) uses %R to format module name and filenames, instead of '%s' and '%U', so surrogates from undecodable bytes in a filename (PEP 383) are escaped. ................ r88521 | raymond.hettinger | 2011-02-23 01:46:28 +0100 (Wed, 23 Feb 2011) | 1 line Fix imports from collections.abc ................ r88523 | georg.brandl | 2011-02-23 08:30:12 +0100 (Wed, 23 Feb 2011) | 1 line Add new subdirectory to LIBSUBDIRS. ................ r88524 | georg.brandl | 2011-02-23 08:31:24 +0100 (Wed, 23 Feb 2011) | 1 line Indent "versionadded" properly. ................ r88525 | raymond.hettinger | 2011-02-23 08:56:53 +0100 (Wed, 23 Feb 2011) | 1 line Add tests for the _ChainMap helper class. ................ r88527 | victor.stinner | 2011-02-23 12:29:28 +0100 (Wed, 23 Feb 2011) | 1 line dynload_dl.c: replace tabs by spaces ................ r88528 | lars.gustaebel | 2011-02-23 12:42:22 +0100 (Wed, 23 Feb 2011) | 16 lines Issue #11224: Improved sparse file read support (r85916) introduced a regression in _FileInFile which is used in file-like objects returned by TarFile.extractfile(). The inefficient design of the _FileInFile.read() method causes various dramatic side-effects and errors: - The data segment of a file member is read completely into memory every(!) time a small block is accessed. This is not only slow but may cause unexpected MemoryErrors with very large files. - Reading members from compressed tar archives is even slower because of the excessive backwards seeking which is done when the same data segment is read over and over again. - As a backwards seek on a TarFile opened in stream mode is not possible, using extractfile() fails with a StreamError. ................ r88530 | victor.stinner | 2011-02-23 13:07:37 +0100 (Wed, 23 Feb 2011) | 4 lines Issue #11272: Fix input() and sys.stdin for Windows newline On Windows, input() strips '\r' (and not only '\n'), and sys.stdin uses universal newline (replace '\r\n' by '\n'). ................ r88533 | victor.stinner | 2011-02-23 15:14:48 +0100 (Wed, 23 Feb 2011) | 3 lines Issue #3080: Fix test_reprlib on Windows Fix the test for last module changes (r88520). ................ r88534 | brett.cannon | 2011-02-23 19:48:52 +0100 (Wed, 23 Feb 2011) | 1 line Revert r88503 as Benjamin's request. ................ r88538 | raymond.hettinger | 2011-02-24 01:08:13 +0100 (Thu, 24 Feb 2011) | 1 line Issue #11304: Input/output tutorial - PI is rounded not truncated. ................ r88539 | benjamin.peterson | 2011-02-24 02:41:46 +0100 (Thu, 24 Feb 2011) | 9 lines Merged revisions 88535 via svnmerge from svn+ssh://pythondev at svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r88535 | brett.cannon | 2011-02-23 13:46:46 -0600 (Wed, 23 Feb 2011) | 1 line Add lib2to3.__main__ for easy testing from the console. ........ ................ r88540 | benjamin.peterson | 2011-02-24 03:46:00 +0100 (Thu, 24 Feb 2011) | 1 line this seems to be pointlessly nested ................ r88541 | benjamin.peterson | 2011-02-24 03:53:05 +0100 (Thu, 24 Feb 2011) | 1 line rewrite ................ r88545 | eric.araujo | 2011-02-24 19:03:10 +0100 (Thu, 24 Feb 2011) | 2 lines Allow usage of SomeABC.register as a class decorator. Patch by Edoardo Spadolini (#10868). ................ r88546 | alexander.belopolsky | 2011-02-24 20:40:09 +0100 (Thu, 24 Feb 2011) | 3 lines Issue #11286: Fixed unpickling of empty 2.x strings. ................ r88550 | antoine.pitrou | 2011-02-24 21:50:49 +0100 (Thu, 24 Feb 2011) | 4 lines Issue #11286: Raise a ValueError from calling PyMemoryView_FromBuffer with a buffer struct having a NULL data pointer. ................ r88552 | giampaolo.rodola | 2011-02-24 21:59:48 +0100 (Thu, 24 Feb 2011) | 1 line Adds Python 3.3 what's new document. ................ r88553 | alexander.belopolsky | 2011-02-25 02:14:14 +0100 (Fri, 25 Feb 2011) | 5 lines Issue #11311: Short-circuit default encoding case in PyUnicode_Decode() and PyUnicode_AsEncodedString(). Thanks Ezio Melotti for the tests and the review. ................ r88554 | eli.bendersky | 2011-02-25 06:47:53 +0100 (Fri, 25 Feb 2011) | 3 lines Issue #10516: adding list.clear() and list.copy() methods ................ r88558 | eli.bendersky | 2011-02-25 11:14:17 +0100 (Fri, 25 Feb 2011) | 3 lines Removed fcmp and FUZZ from test.support, following the discussion on python-dev: http://mail.python.org/pipermail/python-dev/2011-January/107735.html ................ r88567 | georg.brandl | 2011-02-25 12:03:15 +0100 (Fri, 25 Feb 2011) | 1 line Remove unused m4 define. ................ r88574 | georg.brandl | 2011-02-25 12:28:22 +0100 (Fri, 25 Feb 2011) | 1 line Add 3.3 whatsnew to index. ................ r88575 | benjamin.peterson | 2011-02-25 15:01:05 +0100 (Fri, 25 Feb 2011) | 1 line run autoconf ................ r88576 | benjamin.peterson | 2011-02-25 15:05:42 +0100 (Fri, 25 Feb 2011) | 1 line rewrite with assertIs ................ r88577 | antoine.pitrou | 2011-02-25 15:19:48 +0100 (Fri, 25 Feb 2011) | 3 lines Make svn:eol-style's more consistent ................ r88578 | antoine.pitrou | 2011-02-25 15:31:09 +0100 (Fri, 25 Feb 2011) | 3 lines More eol-style's ................ r88579 | antoine.pitrou | 2011-02-25 15:32:24 +0100 (Fri, 25 Feb 2011) | 3 lines Fix .hgeol ................ r88580 | giampaolo.rodola | 2011-02-25 15:39:16 +0100 (Fri, 25 Feb 2011) | 1 line Issue 10882: add os.sendfile(). (patch provided by Ross Lagerwall) ................ r88581 | giampaolo.rodola | 2011-02-25 15:50:57 +0100 (Fri, 25 Feb 2011) | 1 line (issue 11232) - fix asyncore documentation issue (patch by Sandro Tosi) ................ r88584 | georg.brandl | 2011-02-25 16:21:47 +0100 (Fri, 25 Feb 2011) | 1 line Regenerate configure after r88580. ................ r88585 | georg.brandl | 2011-02-25 16:23:18 +0100 (Fri, 25 Feb 2011) | 1 line Rename internal helper function and make it static. ................ r88586 | marc-andre.lemburg | 2011-02-25 16:42:01 +0100 (Fri, 25 Feb 2011) | 10 lines Normalize the encoding names for Latin-1 and UTF-8 to 'latin-1' and 'utf-8'. These are optimized in the Python Unicode implementation to result in more direct processing, bypassing the codec registry. Also see issue11303. ................ r88587 | vinay.sajip | 2011-02-25 16:56:55 +0100 (Fri, 25 Feb 2011) | 1 line Improved QueueListener implementation - queue sentinel addition made extensible. ................ r88588 | vinay.sajip | 2011-02-25 17:05:26 +0100 (Fri, 25 Feb 2011) | 1 line Documented QueueListener change. ................ r88589 | vinay.sajip | 2011-02-25 18:02:43 +0100 (Fri, 25 Feb 2011) | 1 line logging: enabled test which was intermittently failing on buildbots. ................ r88602 | alexander.belopolsky | 2011-02-25 20:19:57 +0100 (Fri, 25 Feb 2011) | 4 lines Issue #11303: Added shortcuts for utf8 and latin1 encodings. Documented the list of optimized encodings as CPython implementation detail. ................ r88603 | giampaolo.rodola | 2011-02-25 21:01:05 +0100 (Fri, 25 Feb 2011) | 1 line Skip os.sendfile() test if threading module is not available. ................ r88604 | giampaolo.rodola | 2011-02-25 21:05:48 +0100 (Fri, 25 Feb 2011) | 1 line (issue 11214) - fix asyncore.strerror test failure on AIX ................ r88607 | antoine.pitrou | 2011-02-25 21:27:33 +0100 (Fri, 25 Feb 2011) | 5 lines Issue #11114: Fix catastrophic performance of tell() on text files (up to 1000x faster in some cases). It is still one to two order of magnitudes slower than binary tell(). ................ r88608 | giampaolo.rodola | 2011-02-25 21:57:54 +0100 (Fri, 25 Feb 2011) | 1 line Issue 10784: adds os.getpriority() and os.setpriority() functions. ................ r88609 | giampaolo.rodola | 2011-02-25 22:00:10 +0100 (Fri, 25 Feb 2011) | 1 line Update Misc/NEWS to include os.getpriority() and os.setpriority() addition. ................ r88610 | antoine.pitrou | 2011-02-25 22:24:11 +0100 (Fri, 25 Feb 2011) | 4 lines Issue #10956: Buffered I/O classes retry reading or writing after a signal has arrived and the handler returned successfully. ................ r88613 | eric.araujo | 2011-02-25 22:40:34 +0100 (Fri, 25 Feb 2011) | 2 lines Add missing read() in distutils doc. ................ r88616 | giampaolo.rodola | 2011-02-25 22:46:01 +0100 (Fri, 25 Feb 2011) | 1 line (issue 11323) - attempt to fix solaris buildbot failure for os.sendfile(). Also fixed an AttributeError in get/set priority tests. ................ r88618 | antoine.pitrou | 2011-02-25 23:07:43 +0100 (Fri, 25 Feb 2011) | 7 lines Issue #6064: Add a `daemon` keyword argument to the threading.Thread and multiprocessing.Process constructors in order to override the default behaviour of inheriting the daemonic property from the current thread/process. ................ r88619 | giampaolo.rodola | 2011-02-25 23:21:22 +0100 (Fri, 25 Feb 2011) | 1 line Issue 11177: asyncore's create_socket() arguments can now be omitted. ................ r88620 | giampaolo.rodola | 2011-02-25 23:28:24 +0100 (Fri, 25 Feb 2011) | 1 line Issue 11291: poplib suppresses errors on QUIT. ................ r88621 | vinay.sajip | 2011-02-25 23:45:25 +0100 (Fri, 25 Feb 2011) | 1 line test_logging: Added more diagnostics for buildbot failures. ................ r88622 | antoine.pitrou | 2011-02-26 00:07:44 +0100 (Sat, 26 Feb 2011) | 5 lines Issue #7322: Trying to read from a socket's file-like object after a timeout occurred now raises an error instead of silently losing data. Patch by Ross Lagerwall. ................ r88624 | antoine.pitrou | 2011-02-26 00:25:17 +0100 (Sat, 26 Feb 2011) | 4 lines Issue #4761: Add the *at() family of functions (openat(), etc.) to the posix module. Patch by Ross Lagerwall. ................ r88625 | antoine.pitrou | 2011-02-26 00:41:16 +0100 (Sat, 26 Feb 2011) | 3 lines Issue #10755: Add the posix.fdlistdir() function. Patch by Ross Lagerwall. ................ r88626 | antoine.pitrou | 2011-02-26 01:22:09 +0100 (Sat, 26 Feb 2011) | 3 lines Fix compilation warning in Modules/posixmodule.c. ................ r88627 | antoine.pitrou | 2011-02-26 01:22:25 +0100 (Sat, 26 Feb 2011) | 3 lines Fix AttributeError. ................ r88628 | raymond.hettinger | 2011-02-26 02:02:51 +0100 (Sat, 26 Feb 2011) | 3 lines Issue #11297: Add collections.ChainMap() ................ r88629 | alexander.belopolsky | 2011-02-26 02:02:56 +0100 (Sat, 26 Feb 2011) | 1 line PEP 7 conformance changes (whitespace only). ................ r88630 | raymond.hettinger | 2011-02-26 03:48:44 +0100 (Sat, 26 Feb 2011) | 2 lines Make Py3.x style "import builtins" ................ r88631 | senthil.kumaran | 2011-02-26 04:44:03 +0100 (Sat, 26 Feb 2011) | 2 lines Fix Issue10228 - Refleak run of test_dbm fails when several dbm modules are available (Patch by Ray.Allen) ................ r88632 | vinay.sajip | 2011-02-26 07:37:04 +0100 (Sat, 26 Feb 2011) | 1 line test_logging: diagnostic code changes. ................ r88633 | raymond.hettinger | 2011-02-26 07:53:58 +0100 (Sat, 26 Feb 2011) | 1 line Add __bool__ method. Add tests. Fix-up broken test. ................ r88636 | vinay.sajip | 2011-02-26 08:18:22 +0100 (Sat, 26 Feb 2011) | 1 line test_logging: Changed TimedRotatingFileHandler tests to use UTC time rather than local time. ................ r88639 | antoine.pitrou | 2011-02-26 09:45:20 +0100 (Sat, 26 Feb 2011) | 4 lines Issue #11258: Speed up ctypes.util.find_library() under Linux a lot. Patch by Jonas H. ................ r88640 | antoine.pitrou | 2011-02-26 10:37:45 +0100 (Sat, 26 Feb 2011) | 3 lines Revert r88639 (the optimization changes behaviour and breaks buildbots) ................ r88643 | antoine.pitrou | 2011-02-26 14:38:35 +0100 (Sat, 26 Feb 2011) | 3 lines Check error return from _parse_off_t(), and remove cruft from the 2->3 transition. ................ r88644 | vinay.sajip | 2011-02-26 15:15:48 +0100 (Sat, 26 Feb 2011) | 1 line Issue #11330: asctime format bug fixed. ................ r88645 | vinay.sajip | 2011-02-26 15:24:29 +0100 (Sat, 26 Feb 2011) | 1 line Issue #11331: fixed documentation in logging cookbook. ................ r88646 | vinay.sajip | 2011-02-26 15:28:36 +0100 (Sat, 26 Feb 2011) | 1 line Removed typo. ................ r88647 | antoine.pitrou | 2011-02-26 15:29:24 +0100 (Sat, 26 Feb 2011) | 3 lines Issue #11323: fix sendfile tests under 64-bit Solaris. ................ r88650 | eric.araujo | 2011-02-26 15:57:23 +0100 (Sat, 26 Feb 2011) | 2 lines Replace links to the old dev doc with links to the new devguide. ................ r88652 | antoine.pitrou | 2011-02-26 16:58:05 +0100 (Sat, 26 Feb 2011) | 4 lines Issue #9931: Fix hangs in GUI tests under Windows in certain conditions. Patch by Hirokazu Yamamoto. ................ r88653 | vinay.sajip | 2011-02-26 17:00:04 +0100 (Sat, 26 Feb 2011) | 1 line Issue #11330: Added regression test. ................ r88654 | vinay.sajip | 2011-02-26 17:06:02 +0100 (Sat, 26 Feb 2011) | 1 line Issue #11330: Updated tests for correct asctime handling. ................ r88656 | antoine.pitrou | 2011-02-26 18:52:50 +0100 (Sat, 26 Feb 2011) | 3 lines Make sendfile tests more robust ................ r88658 | benjamin.peterson | 2011-02-26 22:32:16 +0100 (Sat, 26 Feb 2011) | 1 line this isn't true anymore ................ r88660 | benjamin.peterson | 2011-02-26 22:35:16 +0100 (Sat, 26 Feb 2011) | 1 line revert accidental formatting change ................ r88663 | benjamin.peterson | 2011-02-26 23:12:10 +0100 (Sat, 26 Feb 2011) | 12 lines Merged revisions 88661 via svnmerge from svn+ssh://pythondev at svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r88661 | benjamin.peterson | 2011-02-26 16:06:24 -0600 (Sat, 26 Feb 2011) | 6 lines fix refactoring on formfeed characters #11250 This is because text.splitlines() is not the same as list(StringIO.StringIO(text)). ........ ................ r88664 | antoine.pitrou | 2011-02-27 00:24:06 +0100 (Sun, 27 Feb 2011) | 4 lines Issue #11326: Add the missing connect_ex() implementation for SSL sockets, and make it work for non-blocking connects. ................ r88668 | benjamin.peterson | 2011-02-27 16:06:44 +0100 (Sun, 27 Feb 2011) | 1 line make this a link #11345 ................ r88671 | antoine.pitrou | 2011-02-27 16:44:12 +0100 (Sun, 27 Feb 2011) | 3 lines Follow up to r88664: non-blocking connect-ex() can return EWOULDBLOCK under Windows ................ r88679 | giampaolo.rodola | 2011-02-28 20:19:51 +0100 (Mon, 28 Feb 2011) | 1 line Fix issue 8594: adds a source_address parameter to ftplib module. ................ r88680 | giampaolo.rodola | 2011-02-28 20:27:16 +0100 (Mon, 28 Feb 2011) | 1 line Issue 11348: skip os.setpriority() test if current nice level is >= 19. ................ r88682 | antoine.pitrou | 2011-02-28 23:03:34 +0100 (Mon, 28 Feb 2011) | 5 lines Issue #11140: Lock.release() now raises a RuntimeError when attempting to release an unacquired lock, as claimed in the threading documentation. The _thread.error exception is now an alias of RuntimeError. ................ r88683 | antoine.pitrou | 2011-02-28 23:04:51 +0100 (Mon, 28 Feb 2011) | 3 lines No need to put this at top ................ r88684 | antoine.pitrou | 2011-02-28 23:06:48 +0100 (Mon, 28 Feb 2011) | 3 lines Add credit for r88682. ................ r88685 | antoine.pitrou | 2011-02-28 23:25:22 +0100 (Mon, 28 Feb 2011) | 3 lines Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall. ................ r88686 | antoine.pitrou | 2011-02-28 23:38:07 +0100 (Mon, 28 Feb 2011) | 4 lines Recommend inspecting the errno attribute of socket.error objects, and improve wording. ................ r88691 | antoine.pitrou | 2011-03-01 01:41:10 +0100 (Tue, 01 Mar 2011) | 3 lines Endly, fix UnboundLocalError in telnetlib ................ r88696 | eric.araujo | 2011-03-01 19:26:56 +0100 (Tue, 01 Mar 2011) | 4 lines Remove outdated pointer to optparse (fixes #11360). The doc already points to argparse. ................ r88697 | victor.stinner | 2011-03-01 23:46:52 +0100 (Tue, 01 Mar 2011) | 4 lines Issue #11246: Fix PyUnicode_FromFormat("%V") Decode the byte string from UTF-8 (with replace error handler) instead of ISO-8859-1 (in strict mode). Patch written by Ray Allen. ................ r88699 | antoine.pitrou | 2011-03-02 00:05:42 +0100 (Wed, 02 Mar 2011) | 4 lines Followup to issue #11140 and r88682: also patch _dummy_thread. Patch by Aymeric Augustin. ................ r88700 | victor.stinner | 2011-03-02 00:08:36 +0100 (Wed, 02 Mar 2011) | 3 lines Issue #10911: Add tests on CGI with non-ASCII characters Patch written by Pierre Quentel ................ r88702 | victor.stinner | 2011-03-02 00:44:09 +0100 (Wed, 02 Mar 2011) | 4 lines Issue #10829: Refactor PyUnicode_FromFormat() * Use the same function to parse the format string in the 3 steps * Fix crashs on invalid format strings ................ r88703 | victor.stinner | 2011-03-02 01:01:53 +0100 (Wed, 02 Mar 2011) | 1 line Fix my previous commit (r88702): initialize size_tflag in parse_format_flags() ................ r88704 | victor.stinner | 2011-03-02 01:04:25 +0100 (Wed, 02 Mar 2011) | 1 line Issue #10831: PyUnicode_FromFormat() supports %li, %lli and %zi formats ................ r88705 | victor.stinner | 2011-03-02 01:10:34 +0100 (Wed, 02 Mar 2011) | 1 line Issue #10831: Document the new formats (%li, %lli, %zi) ................ r88706 | antoine.pitrou | 2011-03-02 01:15:44 +0100 (Wed, 02 Mar 2011) | 3 lines assertEquals is deprecated ................ r88707 | eric.araujo | 2011-03-02 01:31:51 +0100 (Wed, 02 Mar 2011) | 5 lines Remove last use of distutils.sysconfig from the stdlib (#11364). Apart from distutils itself, the stdlib has now officially switched to the new top-level sysconfig module. Patch greenlighted by Ned Deily. ................ r88708 | victor.stinner | 2011-03-02 02:03:11 +0100 (Wed, 02 Mar 2011) | 1 line Remove useless argument of _PyUnicode_AsDefaultEncodedString() ................ r88709 | victor.stinner | 2011-03-02 02:03:14 +0100 (Wed, 02 Mar 2011) | 5 lines Issue #8923: cache str.encode() result When a string is encoded to UTF-8 in strict mode, the result is cached into the object. Examples: str.encode(), str.encode('utf-8'), PyUnicode_AsUTF8String() and PyUnicode_AsEncodedString(unicode, "utf-8", NULL). ................ r88710 | victor.stinner | 2011-03-02 02:21:46 +0100 (Wed, 02 Mar 2011) | 1 line Fix my previous commit (r88709) for str.encode(errors=...) ................ r88711 | daniel.stutzbach | 2011-03-03 00:37:50 +0100 (Thu, 03 Mar 2011) | 1 line #11335: Fix memory leak when a sort key function throws an exception ................ r88712 | benjamin.peterson | 2011-03-03 00:40:36 +0100 (Thu, 03 Mar 2011) | 4 lines add tests for xml.pulldom #9373 Thanks to Mark Smith for the patch. ................ r88717 | fred.drake | 2011-03-03 06:27:17 +0100 (Thu, 03 Mar 2011) | 2 lines issue 11372: use range instead of xrange ................ r88719 | nick.coghlan | 2011-03-03 12:08:33 +0100 (Thu, 03 Mar 2011) | 1 line Update compiler recursion crasher to more reliably blow the stack and add a tracker issue for it ................ r88720 | victor.stinner | 2011-03-03 13:54:05 +0100 (Thu, 03 Mar 2011) | 1 line Issue #8513: On UNIX, subprocess supports bytes command string. ................ r88721 | victor.stinner | 2011-03-03 13:54:07 +0100 (Thu, 03 Mar 2011) | 1 line Issue #11377: Deprecate platform.popen() and reimplement it with os.popen(). ................ r88722 | giampaolo.rodola | 2011-03-03 14:57:47 +0100 (Thu, 03 Mar 2011) | 1 line Fix issue 11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), recv() and send(). ................ r88724 | victor.stinner | 2011-03-03 15:07:21 +0100 (Thu, 03 Mar 2011) | 1 line Issue #11377: Fix quoting on Windows in test_platform ................ r88726 | giampaolo.rodola | 2011-03-03 15:10:58 +0100 (Thu, 03 Mar 2011) | 1 line fix attribute error ................ r88729 | giampaolo.rodola | 2011-03-03 17:10:51 +0100 (Thu, 03 Mar 2011) | 1 line Issue 11351 - apply patch by Steffen Daode Nurpmeso which should fix TestSendfile.test_headers failure on OSX. ................ r88730 | r.david.murray | 2011-03-03 19:03:36 +0100 (Thu, 03 Mar 2011) | 2 lines #11306: Treat EROFS like EACCES when making a 'file is read-only' decision ................ r88733 | eli.bendersky | 2011-03-03 19:21:02 +0100 (Thu, 03 Mar 2011) | 3 lines Issue #10516: added copy() and clear() methods to bytearrays as well ................ r88734 | giampaolo.rodola | 2011-03-03 19:34:06 +0100 (Thu, 03 Mar 2011) | 1 line Issue 9795: adds context manager protocol to nntplib.NNTP class so that it can used with the 'with' statement. ................ r88735 | eli.bendersky | 2011-03-04 05:55:25 +0100 (Fri, 04 Mar 2011) | 2 lines Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays ................ r88740 | eli.bendersky | 2011-03-04 06:34:58 +0100 (Fri, 04 Mar 2011) | 3 lines Issue #11388: Added a clear() method to MutableSequence ................ r88742 | eli.bendersky | 2011-03-04 11:38:14 +0100 (Fri, 04 Mar 2011) | 2 lines Mentioned new clear() method of MutableSequence in its doc, and added unit tests for its mixin methods ................ r88744 | giampaolo.rodola | 2011-03-04 13:51:08 +0100 (Fri, 04 Mar 2011) | 1 line Include ???? ????????? and Steffen Daode Nurpmeso in Mist/ACKS for contributions in issues 11265 and 11351. ................ r88745 | giampaolo.rodola | 2011-03-04 13:54:34 +0100 (Fri, 04 Mar 2011) | 1 line Update Misc/NEWS to include issue #9795 (nntplib context manager support) ................ r88746 | victor.stinner | 2011-03-04 13:57:07 +0100 (Fri, 04 Mar 2011) | 1 line Issue #3080: Add PyModule_NewObject() function ................ r88747 | victor.stinner | 2011-03-04 13:57:09 +0100 (Fri, 04 Mar 2011) | 1 line Issue #3080: Add PyImport_AddModuleObject() and PyImport_ExecCodeModuleObject() ................ Added: python/branches/py3k-cdecimal/Doc/howto/pyporting.rst - copied unchanged from r88747, /python/branches/py3k/Doc/howto/pyporting.rst python/branches/py3k-cdecimal/Doc/library/collections.abc.rst - copied unchanged from r88747, /python/branches/py3k/Doc/library/collections.abc.rst python/branches/py3k-cdecimal/Doc/whatsnew/3.3.rst - copied unchanged from r88747, /python/branches/py3k/Doc/whatsnew/3.3.rst python/branches/py3k-cdecimal/Lib/collections/ (props changed) - copied from r88747, /python/branches/py3k/Lib/collections/ python/branches/py3k-cdecimal/Lib/crypt.py - copied unchanged from r88747, /python/branches/py3k/Lib/crypt.py python/branches/py3k-cdecimal/Lib/lib2to3/__main__.py - copied unchanged from r88747, /python/branches/py3k/Lib/lib2to3/__main__.py python/branches/py3k-cdecimal/Lib/test/crashers/underlying_dict.py - copied unchanged from r88747, /python/branches/py3k/Lib/test/crashers/underlying_dict.py python/branches/py3k-cdecimal/Lib/test/test_configparser.py - copied unchanged from r88747, /python/branches/py3k/Lib/test/test_configparser.py python/branches/py3k-cdecimal/Lib/test/test_pulldom.py - copied unchanged from r88747, /python/branches/py3k/Lib/test/test_pulldom.py python/branches/py3k-cdecimal/Misc/README.AIX - copied unchanged from r88747, /python/branches/py3k/Misc/README.AIX python/branches/py3k-cdecimal/Misc/RPM/python-3.3.spec - copied unchanged from r88747, /python/branches/py3k/Misc/RPM/python-3.3.spec python/branches/py3k-cdecimal/Modules/_cryptmodule.c - copied unchanged from r88747, /python/branches/py3k/Modules/_cryptmodule.c python/branches/py3k-cdecimal/PC/os2emx/python33.def - copied unchanged from r88747, /python/branches/py3k/PC/os2emx/python33.def python/branches/py3k-cdecimal/PC/python33gen.py - copied unchanged from r88747, /python/branches/py3k/PC/python33gen.py python/branches/py3k-cdecimal/PC/python33stub.def - copied unchanged from r88747, /python/branches/py3k/PC/python33stub.def Removed: python/branches/py3k-cdecimal/Lib/_abcoll.py python/branches/py3k-cdecimal/Lib/collections.py python/branches/py3k-cdecimal/Lib/test/test_cfgparser.py python/branches/py3k-cdecimal/Mac/Extras.ReadMe.txt python/branches/py3k-cdecimal/Mac/IDLE/idlemain.py python/branches/py3k-cdecimal/Misc/AIX-NOTES python/branches/py3k-cdecimal/Misc/PURIFY.README python/branches/py3k-cdecimal/Misc/README.Emacs python/branches/py3k-cdecimal/Misc/README.OpenBSD python/branches/py3k-cdecimal/Misc/README.klocwork python/branches/py3k-cdecimal/Misc/RPM/python-3.2.spec python/branches/py3k-cdecimal/Misc/cheatsheet python/branches/py3k-cdecimal/Misc/developers.txt python/branches/py3k-cdecimal/Misc/maintainers.rst python/branches/py3k-cdecimal/Modules/cryptmodule.c python/branches/py3k-cdecimal/PC/os2emx/python27.def python/branches/py3k-cdecimal/PC/python32gen.py python/branches/py3k-cdecimal/PC/python32stub.def Modified: python/branches/py3k-cdecimal/ (props changed) python/branches/py3k-cdecimal/.hgeol python/branches/py3k-cdecimal/.hgignore python/branches/py3k-cdecimal/Doc/ACKS.txt python/branches/py3k-cdecimal/Doc/Makefile python/branches/py3k-cdecimal/Doc/README.txt python/branches/py3k-cdecimal/Doc/bugs.rst python/branches/py3k-cdecimal/Doc/c-api/code.rst python/branches/py3k-cdecimal/Doc/c-api/import.rst python/branches/py3k-cdecimal/Doc/c-api/init.rst python/branches/py3k-cdecimal/Doc/c-api/module.rst python/branches/py3k-cdecimal/Doc/c-api/object.rst python/branches/py3k-cdecimal/Doc/c-api/type.rst python/branches/py3k-cdecimal/Doc/c-api/unicode.rst python/branches/py3k-cdecimal/Doc/distutils/uploading.rst python/branches/py3k-cdecimal/Doc/documenting/markup.rst python/branches/py3k-cdecimal/Doc/faq/design.rst python/branches/py3k-cdecimal/Doc/faq/extending.rst python/branches/py3k-cdecimal/Doc/faq/general.rst python/branches/py3k-cdecimal/Doc/faq/gui.rst python/branches/py3k-cdecimal/Doc/faq/installed.rst python/branches/py3k-cdecimal/Doc/faq/library.rst python/branches/py3k-cdecimal/Doc/faq/programming.rst python/branches/py3k-cdecimal/Doc/howto/index.rst python/branches/py3k-cdecimal/Doc/howto/logging-cookbook.rst python/branches/py3k-cdecimal/Doc/howto/logging.rst python/branches/py3k-cdecimal/Doc/howto/sorting.rst python/branches/py3k-cdecimal/Doc/library/2to3.rst python/branches/py3k-cdecimal/Doc/library/__future__.rst python/branches/py3k-cdecimal/Doc/library/_dummy_thread.rst python/branches/py3k-cdecimal/Doc/library/_thread.rst python/branches/py3k-cdecimal/Doc/library/abc.rst python/branches/py3k-cdecimal/Doc/library/aifc.rst python/branches/py3k-cdecimal/Doc/library/argparse.rst python/branches/py3k-cdecimal/Doc/library/ast.rst python/branches/py3k-cdecimal/Doc/library/asynchat.rst python/branches/py3k-cdecimal/Doc/library/asyncore.rst python/branches/py3k-cdecimal/Doc/library/bdb.rst python/branches/py3k-cdecimal/Doc/library/cgi.rst python/branches/py3k-cdecimal/Doc/library/codecs.rst python/branches/py3k-cdecimal/Doc/library/collections.rst python/branches/py3k-cdecimal/Doc/library/colorsys.rst python/branches/py3k-cdecimal/Doc/library/compileall.rst python/branches/py3k-cdecimal/Doc/library/concurrent.futures.rst python/branches/py3k-cdecimal/Doc/library/configparser.rst python/branches/py3k-cdecimal/Doc/library/crypt.rst python/branches/py3k-cdecimal/Doc/library/ctypes.rst python/branches/py3k-cdecimal/Doc/library/datatypes.rst python/branches/py3k-cdecimal/Doc/library/decimal.rst python/branches/py3k-cdecimal/Doc/library/dummy_threading.rst python/branches/py3k-cdecimal/Doc/library/fractions.rst python/branches/py3k-cdecimal/Doc/library/ftplib.rst python/branches/py3k-cdecimal/Doc/library/getopt.rst python/branches/py3k-cdecimal/Doc/library/gettext.rst python/branches/py3k-cdecimal/Doc/library/gzip.rst python/branches/py3k-cdecimal/Doc/library/hashlib.rst python/branches/py3k-cdecimal/Doc/library/hmac.rst python/branches/py3k-cdecimal/Doc/library/html.entities.rst python/branches/py3k-cdecimal/Doc/library/html.parser.rst python/branches/py3k-cdecimal/Doc/library/html.rst python/branches/py3k-cdecimal/Doc/library/http.client.rst python/branches/py3k-cdecimal/Doc/library/http.cookiejar.rst python/branches/py3k-cdecimal/Doc/library/http.cookies.rst python/branches/py3k-cdecimal/Doc/library/http.server.rst python/branches/py3k-cdecimal/Doc/library/imaplib.rst python/branches/py3k-cdecimal/Doc/library/imghdr.rst python/branches/py3k-cdecimal/Doc/library/importlib.rst python/branches/py3k-cdecimal/Doc/library/inspect.rst python/branches/py3k-cdecimal/Doc/library/io.rst python/branches/py3k-cdecimal/Doc/library/itertools.rst python/branches/py3k-cdecimal/Doc/library/json.rst python/branches/py3k-cdecimal/Doc/library/logging.config.rst python/branches/py3k-cdecimal/Doc/library/logging.handlers.rst python/branches/py3k-cdecimal/Doc/library/mailbox.rst python/branches/py3k-cdecimal/Doc/library/mailcap.rst python/branches/py3k-cdecimal/Doc/library/mimetypes.rst python/branches/py3k-cdecimal/Doc/library/modulefinder.rst python/branches/py3k-cdecimal/Doc/library/multiprocessing.rst python/branches/py3k-cdecimal/Doc/library/netrc.rst python/branches/py3k-cdecimal/Doc/library/nntplib.rst python/branches/py3k-cdecimal/Doc/library/operator.rst python/branches/py3k-cdecimal/Doc/library/optparse.rst python/branches/py3k-cdecimal/Doc/library/os.rst python/branches/py3k-cdecimal/Doc/library/pdb.rst python/branches/py3k-cdecimal/Doc/library/pickletools.rst python/branches/py3k-cdecimal/Doc/library/pipes.rst python/branches/py3k-cdecimal/Doc/library/pkgutil.rst python/branches/py3k-cdecimal/Doc/library/platform.rst python/branches/py3k-cdecimal/Doc/library/plistlib.rst python/branches/py3k-cdecimal/Doc/library/poplib.rst python/branches/py3k-cdecimal/Doc/library/profile.rst python/branches/py3k-cdecimal/Doc/library/py_compile.rst python/branches/py3k-cdecimal/Doc/library/pyclbr.rst python/branches/py3k-cdecimal/Doc/library/pydoc.rst python/branches/py3k-cdecimal/Doc/library/reprlib.rst python/branches/py3k-cdecimal/Doc/library/rlcompleter.rst python/branches/py3k-cdecimal/Doc/library/runpy.rst python/branches/py3k-cdecimal/Doc/library/select.rst python/branches/py3k-cdecimal/Doc/library/shelve.rst python/branches/py3k-cdecimal/Doc/library/shlex.rst python/branches/py3k-cdecimal/Doc/library/shutil.rst python/branches/py3k-cdecimal/Doc/library/site.rst python/branches/py3k-cdecimal/Doc/library/smtpd.rst python/branches/py3k-cdecimal/Doc/library/smtplib.rst python/branches/py3k-cdecimal/Doc/library/sndhdr.rst python/branches/py3k-cdecimal/Doc/library/socket.rst python/branches/py3k-cdecimal/Doc/library/socketserver.rst python/branches/py3k-cdecimal/Doc/library/ssl.rst python/branches/py3k-cdecimal/Doc/library/stat.rst python/branches/py3k-cdecimal/Doc/library/stdtypes.rst python/branches/py3k-cdecimal/Doc/library/string.rst python/branches/py3k-cdecimal/Doc/library/subprocess.rst python/branches/py3k-cdecimal/Doc/library/sunau.rst python/branches/py3k-cdecimal/Doc/library/symbol.rst python/branches/py3k-cdecimal/Doc/library/sys.rst python/branches/py3k-cdecimal/Doc/library/sysconfig.rst python/branches/py3k-cdecimal/Doc/library/tabnanny.rst python/branches/py3k-cdecimal/Doc/library/tarfile.rst python/branches/py3k-cdecimal/Doc/library/telnetlib.rst python/branches/py3k-cdecimal/Doc/library/tempfile.rst python/branches/py3k-cdecimal/Doc/library/threading.rst python/branches/py3k-cdecimal/Doc/library/timeit.rst python/branches/py3k-cdecimal/Doc/library/tkinter.tix.rst python/branches/py3k-cdecimal/Doc/library/token.rst python/branches/py3k-cdecimal/Doc/library/turtle.rst python/branches/py3k-cdecimal/Doc/library/types.rst python/branches/py3k-cdecimal/Doc/library/unittest.rst python/branches/py3k-cdecimal/Doc/library/urllib.parse.rst python/branches/py3k-cdecimal/Doc/library/urllib.request.rst python/branches/py3k-cdecimal/Doc/library/warnings.rst python/branches/py3k-cdecimal/Doc/library/wave.rst python/branches/py3k-cdecimal/Doc/library/weakref.rst python/branches/py3k-cdecimal/Doc/library/webbrowser.rst python/branches/py3k-cdecimal/Doc/library/xdrlib.rst python/branches/py3k-cdecimal/Doc/library/xml.dom.minidom.rst python/branches/py3k-cdecimal/Doc/library/xml.dom.pulldom.rst python/branches/py3k-cdecimal/Doc/library/xml.etree.elementtree.rst python/branches/py3k-cdecimal/Doc/library/xmlrpc.client.rst python/branches/py3k-cdecimal/Doc/library/xmlrpc.server.rst python/branches/py3k-cdecimal/Doc/library/zipfile.rst python/branches/py3k-cdecimal/Doc/license.rst python/branches/py3k-cdecimal/Doc/make.bat (contents, props changed) python/branches/py3k-cdecimal/Doc/reference/executionmodel.rst python/branches/py3k-cdecimal/Doc/reference/expressions.rst python/branches/py3k-cdecimal/Doc/reference/simple_stmts.rst python/branches/py3k-cdecimal/Doc/tools/sphinxext/indexsidebar.html python/branches/py3k-cdecimal/Doc/tools/sphinxext/static/basic.css python/branches/py3k-cdecimal/Doc/tools/sphinxext/susp-ignored.csv python/branches/py3k-cdecimal/Doc/tutorial/inputoutput.rst python/branches/py3k-cdecimal/Doc/tutorial/interpreter.rst python/branches/py3k-cdecimal/Doc/tutorial/stdlib.rst python/branches/py3k-cdecimal/Doc/tutorial/stdlib2.rst python/branches/py3k-cdecimal/Doc/using/unix.rst python/branches/py3k-cdecimal/Doc/using/windows.rst python/branches/py3k-cdecimal/Doc/whatsnew/2.0.rst python/branches/py3k-cdecimal/Doc/whatsnew/2.1.rst python/branches/py3k-cdecimal/Doc/whatsnew/2.2.rst python/branches/py3k-cdecimal/Doc/whatsnew/2.4.rst python/branches/py3k-cdecimal/Doc/whatsnew/3.0.rst python/branches/py3k-cdecimal/Doc/whatsnew/3.2.rst python/branches/py3k-cdecimal/Doc/whatsnew/index.rst python/branches/py3k-cdecimal/Include/import.h python/branches/py3k-cdecimal/Include/moduleobject.h python/branches/py3k-cdecimal/Include/object.h python/branches/py3k-cdecimal/Include/patchlevel.h python/branches/py3k-cdecimal/Include/pycapsule.h python/branches/py3k-cdecimal/Include/pydebug.h python/branches/py3k-cdecimal/Include/pyerrors.h python/branches/py3k-cdecimal/Include/typeslots.h python/branches/py3k-cdecimal/Include/unicodeobject.h python/branches/py3k-cdecimal/LICENSE python/branches/py3k-cdecimal/Lib/_dummy_thread.py python/branches/py3k-cdecimal/Lib/_pyio.py python/branches/py3k-cdecimal/Lib/abc.py python/branches/py3k-cdecimal/Lib/argparse.py python/branches/py3k-cdecimal/Lib/ast.py python/branches/py3k-cdecimal/Lib/asynchat.py python/branches/py3k-cdecimal/Lib/asyncore.py python/branches/py3k-cdecimal/Lib/cgi.py python/branches/py3k-cdecimal/Lib/compileall.py python/branches/py3k-cdecimal/Lib/configparser.py python/branches/py3k-cdecimal/Lib/ctypes/test/test_callbacks.py python/branches/py3k-cdecimal/Lib/ctypes/test/test_memfunctions.py python/branches/py3k-cdecimal/Lib/ctypes/test/test_python_api.py python/branches/py3k-cdecimal/Lib/ctypes/test/test_refcounts.py python/branches/py3k-cdecimal/Lib/ctypes/test/test_stringptr.py python/branches/py3k-cdecimal/Lib/decimal.py python/branches/py3k-cdecimal/Lib/distutils/__init__.py python/branches/py3k-cdecimal/Lib/distutils/command/bdist_wininst.py python/branches/py3k-cdecimal/Lib/doctest.py python/branches/py3k-cdecimal/Lib/email/__init__.py python/branches/py3k-cdecimal/Lib/email/generator.py python/branches/py3k-cdecimal/Lib/email/test/test_email.py python/branches/py3k-cdecimal/Lib/ftplib.py python/branches/py3k-cdecimal/Lib/functools.py python/branches/py3k-cdecimal/Lib/hashlib.py python/branches/py3k-cdecimal/Lib/http/client.py python/branches/py3k-cdecimal/Lib/http/server.py python/branches/py3k-cdecimal/Lib/idlelib/EditorWindow.py python/branches/py3k-cdecimal/Lib/idlelib/PyShell.py python/branches/py3k-cdecimal/Lib/idlelib/RemoteObjectBrowser.py python/branches/py3k-cdecimal/Lib/idlelib/ScriptBinding.py python/branches/py3k-cdecimal/Lib/idlelib/config-keys.def python/branches/py3k-cdecimal/Lib/idlelib/idlever.py python/branches/py3k-cdecimal/Lib/idlelib/macosxSupport.py python/branches/py3k-cdecimal/Lib/imaplib.py python/branches/py3k-cdecimal/Lib/importlib/_bootstrap.py python/branches/py3k-cdecimal/Lib/importlib/abc.py python/branches/py3k-cdecimal/Lib/json/__init__.py python/branches/py3k-cdecimal/Lib/lib2to3/ (props changed) python/branches/py3k-cdecimal/Lib/lib2to3/patcomp.py python/branches/py3k-cdecimal/Lib/lib2to3/pgen2/driver.py python/branches/py3k-cdecimal/Lib/lib2to3/tests/test_parser.py python/branches/py3k-cdecimal/Lib/logging/__init__.py python/branches/py3k-cdecimal/Lib/logging/handlers.py python/branches/py3k-cdecimal/Lib/mailbox.py python/branches/py3k-cdecimal/Lib/multiprocessing/connection.py python/branches/py3k-cdecimal/Lib/multiprocessing/forking.py python/branches/py3k-cdecimal/Lib/multiprocessing/process.py python/branches/py3k-cdecimal/Lib/nntplib.py python/branches/py3k-cdecimal/Lib/numbers.py python/branches/py3k-cdecimal/Lib/os.py python/branches/py3k-cdecimal/Lib/platform.py python/branches/py3k-cdecimal/Lib/poplib.py python/branches/py3k-cdecimal/Lib/pyclbr.py python/branches/py3k-cdecimal/Lib/pydoc.py python/branches/py3k-cdecimal/Lib/pydoc_data/topics.py python/branches/py3k-cdecimal/Lib/random.py python/branches/py3k-cdecimal/Lib/reprlib.py python/branches/py3k-cdecimal/Lib/shutil.py python/branches/py3k-cdecimal/Lib/smtpd.py python/branches/py3k-cdecimal/Lib/smtplib.py python/branches/py3k-cdecimal/Lib/socket.py python/branches/py3k-cdecimal/Lib/sqlite3/test/types.py python/branches/py3k-cdecimal/Lib/sre_parse.py python/branches/py3k-cdecimal/Lib/ssl.py python/branches/py3k-cdecimal/Lib/string.py python/branches/py3k-cdecimal/Lib/struct.py python/branches/py3k-cdecimal/Lib/subprocess.py python/branches/py3k-cdecimal/Lib/tarfile.py python/branches/py3k-cdecimal/Lib/test/crashers/compiler_recursion.py python/branches/py3k-cdecimal/Lib/test/decimaltestdata/abs.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/add.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/base.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/clamp.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/compare.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/decDouble.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/decQuad.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/decSingle.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/divide.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/divideint.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/inexact.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/max.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/min.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/minus.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/multiply.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/plus.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/power.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/quantize.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/randomBound32.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/randoms.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/reduce.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/remainder.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/remainderNear.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/rescale.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/rounding.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/samequantum.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/squareroot.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/subtract.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/testall.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/decimaltestdata/tointegral.decTest (props changed) python/branches/py3k-cdecimal/Lib/test/list_tests.py python/branches/py3k-cdecimal/Lib/test/pickletester.py python/branches/py3k-cdecimal/Lib/test/regrtest.py python/branches/py3k-cdecimal/Lib/test/subprocessdata/fd_status.py python/branches/py3k-cdecimal/Lib/test/support.py python/branches/py3k-cdecimal/Lib/test/test_abc.py python/branches/py3k-cdecimal/Lib/test/test_argparse.py python/branches/py3k-cdecimal/Lib/test/test_array.py python/branches/py3k-cdecimal/Lib/test/test_asyncore.py python/branches/py3k-cdecimal/Lib/test/test_bigaddrspace.py python/branches/py3k-cdecimal/Lib/test/test_bigmem.py python/branches/py3k-cdecimal/Lib/test/test_builtin.py python/branches/py3k-cdecimal/Lib/test/test_bytes.py python/branches/py3k-cdecimal/Lib/test/test_bz2.py python/branches/py3k-cdecimal/Lib/test/test_capi.py python/branches/py3k-cdecimal/Lib/test/test_cgi.py python/branches/py3k-cdecimal/Lib/test/test_cmd_line.py python/branches/py3k-cdecimal/Lib/test/test_codecs.py python/branches/py3k-cdecimal/Lib/test/test_collections.py python/branches/py3k-cdecimal/Lib/test/test_compileall.py python/branches/py3k-cdecimal/Lib/test/test_crypt.py python/branches/py3k-cdecimal/Lib/test/test_dbm.py python/branches/py3k-cdecimal/Lib/test/test_deque.py python/branches/py3k-cdecimal/Lib/test/test_descr.py python/branches/py3k-cdecimal/Lib/test/test_descrtut.py python/branches/py3k-cdecimal/Lib/test/test_doctest.py python/branches/py3k-cdecimal/Lib/test/test_dummy_thread.py python/branches/py3k-cdecimal/Lib/test/test_exceptions.py python/branches/py3k-cdecimal/Lib/test/test_float.py python/branches/py3k-cdecimal/Lib/test/test_ftplib.py python/branches/py3k-cdecimal/Lib/test/test_gc.py python/branches/py3k-cdecimal/Lib/test/test_genexps.py python/branches/py3k-cdecimal/Lib/test/test_getargs2.py python/branches/py3k-cdecimal/Lib/test/test_hashlib.py python/branches/py3k-cdecimal/Lib/test/test_httpservers.py python/branches/py3k-cdecimal/Lib/test/test_imaplib.py python/branches/py3k-cdecimal/Lib/test/test_io.py python/branches/py3k-cdecimal/Lib/test/test_logging.py python/branches/py3k-cdecimal/Lib/test/test_mailbox.py python/branches/py3k-cdecimal/Lib/test/test_memoryview.py python/branches/py3k-cdecimal/Lib/test/test_metaclass.py python/branches/py3k-cdecimal/Lib/test/test_minidom.py python/branches/py3k-cdecimal/Lib/test/test_mmap.py python/branches/py3k-cdecimal/Lib/test/test_multiprocessing.py python/branches/py3k-cdecimal/Lib/test/test_nntplib.py python/branches/py3k-cdecimal/Lib/test/test_os.py python/branches/py3k-cdecimal/Lib/test/test_osx_env.py python/branches/py3k-cdecimal/Lib/test/test_pdb.py python/branches/py3k-cdecimal/Lib/test/test_pep3120.py python/branches/py3k-cdecimal/Lib/test/test_pickle.py python/branches/py3k-cdecimal/Lib/test/test_pickletools.py python/branches/py3k-cdecimal/Lib/test/test_platform.py python/branches/py3k-cdecimal/Lib/test/test_poplib.py python/branches/py3k-cdecimal/Lib/test/test_posix.py python/branches/py3k-cdecimal/Lib/test/test_pydoc.py python/branches/py3k-cdecimal/Lib/test/test_range.py python/branches/py3k-cdecimal/Lib/test/test_reprlib.py python/branches/py3k-cdecimal/Lib/test/test_richcmp.py python/branches/py3k-cdecimal/Lib/test/test_runpy.py python/branches/py3k-cdecimal/Lib/test/test_sax.py python/branches/py3k-cdecimal/Lib/test/test_scope.py python/branches/py3k-cdecimal/Lib/test/test_shelve.py python/branches/py3k-cdecimal/Lib/test/test_socket.py python/branches/py3k-cdecimal/Lib/test/test_ssl.py python/branches/py3k-cdecimal/Lib/test/test_strlit.py python/branches/py3k-cdecimal/Lib/test/test_subprocess.py python/branches/py3k-cdecimal/Lib/test/test_sys.py python/branches/py3k-cdecimal/Lib/test/test_sys_settrace.py python/branches/py3k-cdecimal/Lib/test/test_tarfile.py python/branches/py3k-cdecimal/Lib/test/test_telnetlib.py python/branches/py3k-cdecimal/Lib/test/test_threading.py python/branches/py3k-cdecimal/Lib/test/test_trace.py python/branches/py3k-cdecimal/Lib/test/test_unicode.py python/branches/py3k-cdecimal/Lib/test/test_urllib.py python/branches/py3k-cdecimal/Lib/test/test_urllib2.py python/branches/py3k-cdecimal/Lib/test/test_urlparse.py python/branches/py3k-cdecimal/Lib/test/test_uuid.py python/branches/py3k-cdecimal/Lib/test/test_xml_etree.py python/branches/py3k-cdecimal/Lib/test/test_xmlrpc_net.py python/branches/py3k-cdecimal/Lib/test/test_zipimport_support.py python/branches/py3k-cdecimal/Lib/test/test_zlib.py python/branches/py3k-cdecimal/Lib/threading.py python/branches/py3k-cdecimal/Lib/tokenize.py python/branches/py3k-cdecimal/Lib/unittest/case.py python/branches/py3k-cdecimal/Lib/unittest/test/_test_warnings.py python/branches/py3k-cdecimal/Lib/unittest/test/test_assertions.py python/branches/py3k-cdecimal/Lib/unittest/test/test_case.py python/branches/py3k-cdecimal/Lib/unittest/test/test_runner.py python/branches/py3k-cdecimal/Lib/urllib/parse.py python/branches/py3k-cdecimal/Lib/urllib/request.py python/branches/py3k-cdecimal/Mac/BuildScript/README.txt python/branches/py3k-cdecimal/Mac/BuildScript/build-installer.py python/branches/py3k-cdecimal/Mac/BuildScript/resources/ReadMe.txt python/branches/py3k-cdecimal/Mac/BuildScript/resources/Welcome.rtf python/branches/py3k-cdecimal/Mac/BuildScript/scripts/postflight.documentation python/branches/py3k-cdecimal/Mac/Makefile.in python/branches/py3k-cdecimal/Makefile.pre.in python/branches/py3k-cdecimal/Misc/ACKS python/branches/py3k-cdecimal/Misc/NEWS python/branches/py3k-cdecimal/Misc/README python/branches/py3k-cdecimal/Modules/Setup.dist python/branches/py3k-cdecimal/Modules/_collectionsmodule.c python/branches/py3k-cdecimal/Modules/_ctypes/_ctypes.c python/branches/py3k-cdecimal/Modules/_ctypes/_ctypes_test.c python/branches/py3k-cdecimal/Modules/_ctypes/cfield.c python/branches/py3k-cdecimal/Modules/_ctypes/libffi_msvc/ffi.c python/branches/py3k-cdecimal/Modules/_datetimemodule.c python/branches/py3k-cdecimal/Modules/_dbmmodule.c python/branches/py3k-cdecimal/Modules/_io/bufferedio.c python/branches/py3k-cdecimal/Modules/_io/bytesio.c python/branches/py3k-cdecimal/Modules/_io/textio.c python/branches/py3k-cdecimal/Modules/_json.c python/branches/py3k-cdecimal/Modules/_multiprocessing/multiprocessing.h python/branches/py3k-cdecimal/Modules/_pickle.c python/branches/py3k-cdecimal/Modules/_sqlite/connection.c python/branches/py3k-cdecimal/Modules/_sqlite/cursor.c python/branches/py3k-cdecimal/Modules/_sqlite/module.c python/branches/py3k-cdecimal/Modules/_sqlite/statement.c python/branches/py3k-cdecimal/Modules/_ssl.c python/branches/py3k-cdecimal/Modules/_testcapimodule.c python/branches/py3k-cdecimal/Modules/_threadmodule.c python/branches/py3k-cdecimal/Modules/_tkinter.c python/branches/py3k-cdecimal/Modules/arraymodule.c python/branches/py3k-cdecimal/Modules/audioop.c python/branches/py3k-cdecimal/Modules/cjkcodecs/_codecs_iso2022.c python/branches/py3k-cdecimal/Modules/cjkcodecs/multibytecodec.c python/branches/py3k-cdecimal/Modules/ld_so_aix.in python/branches/py3k-cdecimal/Modules/main.c python/branches/py3k-cdecimal/Modules/mmapmodule.c python/branches/py3k-cdecimal/Modules/posixmodule.c python/branches/py3k-cdecimal/Modules/socketmodule.c python/branches/py3k-cdecimal/Modules/xxlimited.c python/branches/py3k-cdecimal/Modules/zipimport.c python/branches/py3k-cdecimal/Modules/zlibmodule.c python/branches/py3k-cdecimal/Objects/bytearrayobject.c python/branches/py3k-cdecimal/Objects/fileobject.c python/branches/py3k-cdecimal/Objects/floatobject.c python/branches/py3k-cdecimal/Objects/listobject.c python/branches/py3k-cdecimal/Objects/memoryobject.c python/branches/py3k-cdecimal/Objects/moduleobject.c python/branches/py3k-cdecimal/Objects/obmalloc.c python/branches/py3k-cdecimal/Objects/rangeobject.c python/branches/py3k-cdecimal/Objects/stringlib/string_format.h python/branches/py3k-cdecimal/Objects/tupleobject.c python/branches/py3k-cdecimal/Objects/typeobject.c python/branches/py3k-cdecimal/Objects/typeslots.inc python/branches/py3k-cdecimal/Objects/unicodeobject.c python/branches/py3k-cdecimal/Objects/weakrefobject.c python/branches/py3k-cdecimal/PC/ (props changed) python/branches/py3k-cdecimal/PC/VC6/pythoncore.dsp python/branches/py3k-cdecimal/PC/VC6/readme.txt python/branches/py3k-cdecimal/PC/VS7.1/build_ssl.bat (contents, props changed) python/branches/py3k-cdecimal/PC/VS7.1/pythoncore.vcproj python/branches/py3k-cdecimal/PC/VS7.1/readme.txt python/branches/py3k-cdecimal/PC/VS8.0/build.bat (contents, props changed) python/branches/py3k-cdecimal/PC/VS8.0/build_env.bat (contents, props changed) python/branches/py3k-cdecimal/PC/VS8.0/build_pgo.bat (contents, props changed) python/branches/py3k-cdecimal/PC/VS8.0/build_ssl.bat (contents, props changed) python/branches/py3k-cdecimal/PC/VS8.0/env.bat (contents, props changed) python/branches/py3k-cdecimal/PC/VS8.0/idle.bat (contents, props changed) python/branches/py3k-cdecimal/PC/VS8.0/kill_python.c python/branches/py3k-cdecimal/PC/VS8.0/pyproject.vsprops python/branches/py3k-cdecimal/PC/VS8.0/rt.bat (contents, props changed) python/branches/py3k-cdecimal/PC/bdist_wininst/wininst.dsp (contents, props changed) python/branches/py3k-cdecimal/PC/bdist_wininst/wininst.dsw (contents, props changed) python/branches/py3k-cdecimal/PC/example_nt/example.vcproj python/branches/py3k-cdecimal/PC/import_nt.c python/branches/py3k-cdecimal/PC/os2emx/Makefile python/branches/py3k-cdecimal/PC/os2emx/README.os2emx python/branches/py3k-cdecimal/PC/pyconfig.h python/branches/py3k-cdecimal/PC/python3.def (contents, props changed) python/branches/py3k-cdecimal/PC/python3.mak (contents, props changed) python/branches/py3k-cdecimal/PC/python3dll.c (contents, props changed) python/branches/py3k-cdecimal/PCbuild/build_ssl.bat python/branches/py3k-cdecimal/PCbuild/kill_python.c python/branches/py3k-cdecimal/PCbuild/pyproject.vsprops python/branches/py3k-cdecimal/PCbuild/readme.txt python/branches/py3k-cdecimal/Parser/parsetok.c python/branches/py3k-cdecimal/Parser/pgenmain.c python/branches/py3k-cdecimal/Python/ast.c python/branches/py3k-cdecimal/Python/bltinmodule.c python/branches/py3k-cdecimal/Python/ceval.c python/branches/py3k-cdecimal/Python/ceval_gil.h python/branches/py3k-cdecimal/Python/compile.c python/branches/py3k-cdecimal/Python/dtoa.c python/branches/py3k-cdecimal/Python/dynload_aix.c python/branches/py3k-cdecimal/Python/dynload_dl.c python/branches/py3k-cdecimal/Python/dynload_hpux.c python/branches/py3k-cdecimal/Python/dynload_next.c python/branches/py3k-cdecimal/Python/dynload_os2.c python/branches/py3k-cdecimal/Python/dynload_shlib.c python/branches/py3k-cdecimal/Python/dynload_win.c python/branches/py3k-cdecimal/Python/getargs.c python/branches/py3k-cdecimal/Python/import.c python/branches/py3k-cdecimal/Python/importdl.c python/branches/py3k-cdecimal/Python/pystrtod.c python/branches/py3k-cdecimal/Python/pythonrun.c python/branches/py3k-cdecimal/Python/sysmodule.c python/branches/py3k-cdecimal/README python/branches/py3k-cdecimal/Tools/buildbot/build-amd64.bat (contents, props changed) python/branches/py3k-cdecimal/Tools/buildbot/build.bat (contents, props changed) python/branches/py3k-cdecimal/Tools/buildbot/buildmsi.bat (contents, props changed) python/branches/py3k-cdecimal/Tools/buildbot/clean-amd64.bat (contents, props changed) python/branches/py3k-cdecimal/Tools/buildbot/clean.bat (contents, props changed) python/branches/py3k-cdecimal/Tools/buildbot/external-amd64.bat (contents, props changed) python/branches/py3k-cdecimal/Tools/buildbot/external-common.bat (contents, props changed) python/branches/py3k-cdecimal/Tools/buildbot/external.bat (contents, props changed) python/branches/py3k-cdecimal/Tools/buildbot/test-amd64.bat (contents, props changed) python/branches/py3k-cdecimal/Tools/buildbot/test.bat (contents, props changed) python/branches/py3k-cdecimal/Tools/ccbench/ccbench.py python/branches/py3k-cdecimal/Tools/msi/msi.py python/branches/py3k-cdecimal/Tools/msi/uuids.py python/branches/py3k-cdecimal/Tools/scripts/abitype.py python/branches/py3k-cdecimal/Tools/scripts/find_recursionlimit.py python/branches/py3k-cdecimal/Tools/unicode/genwincodecs.bat (contents, props changed) python/branches/py3k-cdecimal/configure python/branches/py3k-cdecimal/configure.in python/branches/py3k-cdecimal/pyconfig.h.in python/branches/py3k-cdecimal/setup.py Modified: python/branches/py3k-cdecimal/.hgeol ============================================================================== --- python/branches/py3k-cdecimal/.hgeol (original) +++ python/branches/py3k-cdecimal/.hgeol Fri Mar 4 18:50:17 2011 @@ -1,16 +1,13 @@ [patterns] -** = native -**.bat = CRLF -**.def = CRLF -**.dsp = CRLF -**.dsw = CRLF -**.mak = CRLF -**.mk = CRLF -**.rc = CRLF -**.sln = CRLF -**.vcproj = CRLF -**.vsprops = CRLF +# Non human-editable files are binary + +**.dsp = BIN +**.dsw = BIN +**.mk = BIN +**.sln = BIN +**.vcproj = BIN +**.vsprops = BIN **.aif = BIN **.au = BIN @@ -31,6 +28,12 @@ Lib/email/test/data/msg_26.txt = BIN Lib/test/sndhdrdata/sndhdr.* = BIN +Lib/test/decimaltestdata/*.decTest = BIN + +# All other files (which presumably are human-editable) are "native". +# This must be the last rule! + +** = native [repository] -native = LF \ No newline at end of file +native = LF Modified: python/branches/py3k-cdecimal/.hgignore ============================================================================== --- python/branches/py3k-cdecimal/.hgignore (original) +++ python/branches/py3k-cdecimal/.hgignore Fri Mar 4 18:50:17 2011 @@ -34,10 +34,12 @@ Parser/pgen.stamp$ ^core ^python-gdb.py +^python.exe-gdb.py ^pybuilddir.txt syntax: glob libpython*.a +*.swp *.o *.pyc *.pyo Modified: python/branches/py3k-cdecimal/Doc/ACKS.txt ============================================================================== --- python/branches/py3k-cdecimal/Doc/ACKS.txt (original) +++ python/branches/py3k-cdecimal/Doc/ACKS.txt Fri Mar 4 18:50:17 2011 @@ -130,6 +130,7 @@ * Andrew MacIntyre * Vladimir Marangozov * Vincent Marchetti + * Westley Mart?nez * Laura Matson * Daniel May * Rebecca McCreary @@ -140,6 +141,7 @@ * Ross Moore * Sjoerd Mullender * Dale Nagata + * Michal Nowikowski * Ng Pheng Siong * Koray Oner * Tomas Oppelstrup @@ -180,6 +182,7 @@ * Joakim Sernbrant * Justin Sheehy * Charlie Shepherd + * SilentGhost * Michael Simcich * Ionel Simionescu * Michael Sloan Modified: python/branches/py3k-cdecimal/Doc/Makefile ============================================================================== --- python/branches/py3k-cdecimal/Doc/Makefile (original) +++ python/branches/py3k-cdecimal/Doc/Makefile Fri Mar 4 18:50:17 2011 @@ -41,7 +41,7 @@ checkout: @if [ ! -d tools/sphinx ]; then \ echo "Checking out Sphinx..."; \ - svn checkout $(SVNROOT)/external/Sphinx-1.0.5/sphinx tools/sphinx; \ + svn checkout $(SVNROOT)/external/Sphinx-1.0.7/sphinx tools/sphinx; \ fi @if [ ! -d tools/docutils ]; then \ echo "Checking out Docutils..."; \ Modified: python/branches/py3k-cdecimal/Doc/README.txt ============================================================================== --- python/branches/py3k-cdecimal/Doc/README.txt (original) +++ python/branches/py3k-cdecimal/Doc/README.txt Fri Mar 4 18:50:17 2011 @@ -81,7 +81,7 @@ You'll need to install the Sphinx package, either by checking it out via :: - svn co http://svn.python.org/projects/external/Sphinx-1.0.5/sphinx tools/sphinx + svn co http://svn.python.org/projects/external/Sphinx-1.0.7/sphinx tools/sphinx or by installing it from PyPI. Modified: python/branches/py3k-cdecimal/Doc/bugs.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/bugs.rst (original) +++ python/branches/py3k-cdecimal/Doc/bugs.rst Fri Mar 4 18:50:17 2011 @@ -57,12 +57,14 @@ Each bug report will be assigned to a developer who will determine what needs to be done to correct the problem. You will receive an update each time action is -taken on the bug. See http://www.python.org/dev/workflow/ for a detailed -description of the issue workflow. +taken on the bug. .. seealso:: + `Python Developer's Guide `_ + Detailed description of the issue workflow and developers tools. + `How to Report Bugs Effectively `_ Article which goes into some detail about how to create a useful bug report. This describes what kind of information is useful and why it is useful. Modified: python/branches/py3k-cdecimal/Doc/c-api/code.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/c-api/code.rst (original) +++ python/branches/py3k-cdecimal/Doc/c-api/code.rst Fri Mar 4 18:50:17 2011 @@ -47,4 +47,4 @@ Return a new empty code object with the specified filename, function name, and first line number. It is illegal to - :keyword:`exec` or :func:`eval` the resulting code object. + :func:`exec` or :func:`eval` the resulting code object. Modified: python/branches/py3k-cdecimal/Doc/c-api/import.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/c-api/import.rst (original) +++ python/branches/py3k-cdecimal/Doc/c-api/import.rst Fri Mar 4 18:50:17 2011 @@ -86,7 +86,7 @@ an exception set on failure (the module still exists in this case). -.. c:function:: PyObject* PyImport_AddModule(const char *name) +.. c:function:: PyObject* PyImport_AddModuleObject(PyObject *name) Return the module object corresponding to a module name. The *name* argument may be of the form ``package.module``. First check the modules dictionary if @@ -100,6 +100,14 @@ or one of its variants to import a module. Package structures implied by a dotted name for *name* are not created if not already present. + .. versionadded:: 3.3 + + +.. c:function:: PyObject* PyImport_AddModule(const char *name) + + Similar to :c:func:`PyImport_AddModuleObject`, but the name is an UTF-8 + encoded string instead of a Unicode object. + .. c:function:: PyObject* PyImport_ExecCodeModule(char *name, PyObject *co) @@ -136,14 +144,23 @@ See also :c:func:`PyImport_ExecCodeModuleWithPathnames`. -.. c:function:: PyObject* PyImport_ExecCodeModuleWithPathnames(char *name, PyObject *co, char *pathname, char *cpathname) +.. c:function:: PyObject* PyImport_ExecCodeModuleObject(PyObject *name, PyObject *co, PyObject *pathname, PyObject *cpathname) Like :c:func:`PyImport_ExecCodeModuleEx`, but the :attr:`__cached__` attribute of the module object is set to *cpathname* if it is non-``NULL``. Of the three functions, this is the preferred one to use. + .. versionadded:: 3.3 + + +.. c:function:: PyObject* PyImport_ExecCodeModuleWithPathnames(char *name, PyObject *co, char *pathname, char *cpathname) + + Like :c:func:`PyImport_ExecCodeModuleObject`, but *name*, *pathname* and + *cpathname* are UTF-8 encoded strings. + .. versionadded:: 3.2 + .. c:function:: long PyImport_GetMagicNumber() Return the magic number for Python bytecode files (a.k.a. :file:`.pyc` and Modified: python/branches/py3k-cdecimal/Doc/c-api/init.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/c-api/init.rst (original) +++ python/branches/py3k-cdecimal/Doc/c-api/init.rst Fri Mar 4 18:50:17 2011 @@ -8,13 +8,15 @@ ***************************************** +Initializing and finalizing the interpreter +=========================================== + + .. c:function:: void Py_Initialize() .. index:: single: Py_SetProgramName() single: PyEval_InitThreads() - single: PyEval_ReleaseLock() - single: PyEval_AcquireLock() single: modules (in module sys) single: path (in module sys) module: builtins @@ -28,8 +30,7 @@ Initialize the Python interpreter. In an application embedding Python, this should be called before using any other Python/C API functions; with the exception of :c:func:`Py_SetProgramName`, :c:func:`Py_SetPath`, - :c:func:`PyEval_InitThreads`, :c:func:`PyEval_ReleaseLock`, and - :c:func:`PyEval_AcquireLock`. This initializes + and :c:func:`PyEval_InitThreads`. This initializes the table of loaded modules (``sys.modules``), and creates the fundamental modules :mod:`builtins`, :mod:`__main__` and :mod:`sys`. It also initializes the module search path (``sys.path``). It does not set ``sys.argv``; use @@ -82,85 +83,8 @@ :c:func:`Py_Finalize` more than once. -.. c:function:: PyThreadState* Py_NewInterpreter() - - .. index:: - module: builtins - module: __main__ - module: sys - single: stdout (in module sys) - single: stderr (in module sys) - single: stdin (in module sys) - - Create a new sub-interpreter. This is an (almost) totally separate environment - for the execution of Python code. In particular, the new interpreter has - separate, independent versions of all imported modules, including the - fundamental modules :mod:`builtins`, :mod:`__main__` and :mod:`sys`. The - table of loaded modules (``sys.modules``) and the module search path - (``sys.path``) are also separate. The new environment has no ``sys.argv`` - variable. It has new standard I/O stream file objects ``sys.stdin``, - ``sys.stdout`` and ``sys.stderr`` (however these refer to the same underlying - :c:type:`FILE` structures in the C library). - - The return value points to the first thread state created in the new - sub-interpreter. This thread state is made in the current thread state. - Note that no actual thread is created; see the discussion of thread states - below. If creation of the new interpreter is unsuccessful, *NULL* is - returned; no exception is set since the exception state is stored in the - current thread state and there may not be a current thread state. (Like all - other Python/C API functions, the global interpreter lock must be held before - calling this function and is still held when it returns; however, unlike most - other Python/C API functions, there needn't be a current thread state on - entry.) - - .. index:: - single: Py_Finalize() - single: Py_Initialize() - - Extension modules are shared between (sub-)interpreters as follows: the first - time a particular extension is imported, it is initialized normally, and a - (shallow) copy of its module's dictionary is squirreled away. When the same - extension is imported by another (sub-)interpreter, a new module is initialized - and filled with the contents of this copy; the extension's ``init`` function is - not called. Note that this is different from what happens when an extension is - imported after the interpreter has been completely re-initialized by calling - :c:func:`Py_Finalize` and :c:func:`Py_Initialize`; in that case, the extension's - ``initmodule`` function *is* called again. - - .. index:: single: close() (in module os) - - **Bugs and caveats:** Because sub-interpreters (and the main interpreter) are - part of the same process, the insulation between them isn't perfect --- for - example, using low-level file operations like :func:`os.close` they can - (accidentally or maliciously) affect each other's open files. Because of the - way extensions are shared between (sub-)interpreters, some extensions may not - work properly; this is especially likely when the extension makes use of - (static) global variables, or when the extension manipulates its module's - dictionary after its initialization. It is possible to insert objects created - in one sub-interpreter into a namespace of another sub-interpreter; this should - be done with great care to avoid sharing user-defined functions, methods, - instances or classes between sub-interpreters, since import operations executed - by such objects may affect the wrong (sub-)interpreter's dictionary of loaded - modules. (XXX This is a hard-to-fix bug that will be addressed in a future - release.) - - Also note that the use of this functionality is incompatible with extension - modules such as PyObjC and ctypes that use the :c:func:`PyGILState_\*` APIs (and - this is inherent in the way the :c:func:`PyGILState_\*` functions work). Simple - things may work, but confusing behavior will always be near. - - -.. c:function:: void Py_EndInterpreter(PyThreadState *tstate) - - .. index:: single: Py_Finalize() - - Destroy the (sub-)interpreter represented by the given thread state. The given - thread state must be the current thread state. See the discussion of thread - states below. When the call returns, the current thread state is *NULL*. All - thread states associated with this interpreter are destroyed. (The global - interpreter lock must be held before calling this function and is still held - when it returns.) :c:func:`Py_Finalize` will destroy all sub-interpreters that - haven't been explicitly destroyed at that point. +Process-wide parameters +======================= .. c:function:: void Py_SetProgramName(wchar_t *name) @@ -439,48 +363,47 @@ single: lock, interpreter The Python interpreter is not fully thread-safe. In order to support -multi-threaded Python programs, there's a global lock, called the :dfn:`global -interpreter lock` or :dfn:`GIL`, that must be held by the current thread before +multi-threaded Python programs, there's a global lock, called the :term:`global +interpreter lock` or :term:`GIL`, that must be held by the current thread before it can safely access Python objects. Without the lock, even the simplest operations could cause problems in a multi-threaded program: for example, when two threads simultaneously increment the reference count of the same object, the reference count could end up being incremented only once instead of twice. -.. index:: single: setcheckinterval() (in module sys) +.. index:: single: setswitchinterval() (in module sys) -Therefore, the rule exists that only the thread that has acquired the global -interpreter lock may operate on Python objects or call Python/C API functions. -In order to support multi-threaded Python programs, the interpreter regularly -releases and reacquires the lock --- by default, every 100 bytecode instructions -(this can be changed with :func:`sys.setcheckinterval`). The lock is also -released and reacquired around potentially blocking I/O operations like reading -or writing a file, so that other threads can run while the thread that requests -the I/O is waiting for the I/O operation to complete. +Therefore, the rule exists that only the thread that has acquired the +:term:`GIL` may operate on Python objects or call Python/C API functions. +In order to emulate concurrency of execution, the interpreter regularly +tries to switch threads (see :func:`sys.setswitchinterval`). The lock is also +released around potentially blocking I/O operations like reading or writing +a file, so that other Python threads can run in the meantime. .. index:: single: PyThreadState single: PyThreadState -The Python interpreter needs to keep some bookkeeping information separate per -thread --- for this it uses a data structure called :c:type:`PyThreadState`. -There's one global variable, however: the pointer to the current -:c:type:`PyThreadState` structure. Before the addition of :dfn:`thread-local -storage` (:dfn:`TLS`) the current thread state had to be manipulated -explicitly. +The Python interpreter keeps some thread-specific bookkeeping information +inside a data structure called :c:type:`PyThreadState`. There's also one +global variable pointing to the current :c:type:`PyThreadState`: it can +be retrieved using :c:func:`PyThreadState_Get`. -This is easy enough in most cases. Most code manipulating the global -interpreter lock has the following simple structure:: +Releasing the GIL from extension code +------------------------------------- + +Most extension code manipulating the :term:`GIL` has the following simple +structure:: Save the thread state in a local variable. Release the global interpreter lock. - ...Do some blocking I/O operation... + ... Do some blocking I/O operation ... Reacquire the global interpreter lock. Restore the thread state from the local variable. This is so common that a pair of macros exists to simplify it:: Py_BEGIN_ALLOW_THREADS - ...Do some blocking I/O operation... + ... Do some blocking I/O operation ... Py_END_ALLOW_THREADS .. index:: @@ -489,9 +412,8 @@ The :c:macro:`Py_BEGIN_ALLOW_THREADS` macro opens a new block and declares a hidden local variable; the :c:macro:`Py_END_ALLOW_THREADS` macro closes the -block. Another advantage of using these two macros is that when Python is -compiled without thread support, they are defined empty, thus saving the thread -state and GIL manipulations. +block. These two macros are still available when Python is compiled without +thread support (they simply have an empty expansion). When thread support is enabled, the block above expands to the following code:: @@ -501,65 +423,60 @@ ...Do some blocking I/O operation... PyEval_RestoreThread(_save); -Using even lower level primitives, we can get roughly the same effect as -follows:: - - PyThreadState *_save; - - _save = PyThreadState_Swap(NULL); - PyEval_ReleaseLock(); - ...Do some blocking I/O operation... - PyEval_AcquireLock(); - PyThreadState_Swap(_save); - .. index:: single: PyEval_RestoreThread() - single: errno single: PyEval_SaveThread() - single: PyEval_ReleaseLock() - single: PyEval_AcquireLock() -There are some subtle differences; in particular, :c:func:`PyEval_RestoreThread` -saves and restores the value of the global variable :c:data:`errno`, since the -lock manipulation does not guarantee that :c:data:`errno` is left alone. Also, -when thread support is disabled, :c:func:`PyEval_SaveThread` and -:c:func:`PyEval_RestoreThread` don't manipulate the GIL; in this case, -:c:func:`PyEval_ReleaseLock` and :c:func:`PyEval_AcquireLock` are not available. -This is done so that dynamically loaded extensions compiled with thread support -enabled can be loaded by an interpreter that was compiled with disabled thread -support. - -The global interpreter lock is used to protect the pointer to the current thread -state. When releasing the lock and saving the thread state, the current thread -state pointer must be retrieved before the lock is released (since another -thread could immediately acquire the lock and store its own thread state in the -global variable). Conversely, when acquiring the lock and restoring the thread -state, the lock must be acquired before storing the thread state pointer. - -It is important to note that when threads are created from C, they don't have -the global interpreter lock, nor is there a thread state data structure for -them. Such threads must bootstrap themselves into existence, by first -creating a thread state data structure, then acquiring the lock, and finally -storing their thread state pointer, before they can start using the Python/C -API. When they are done, they should reset the thread state pointer, release -the lock, and finally free their thread state data structure. - -Threads can take advantage of the :c:func:`PyGILState_\*` functions to do all of -the above automatically. The typical idiom for calling into Python from a C -thread is now:: +Here is how these functions work: the global interpreter lock is used to protect the pointer to the +current thread state. When releasing the lock and saving the thread state, +the current thread state pointer must be retrieved before the lock is released +(since another thread could immediately acquire the lock and store its own thread +state in the global variable). Conversely, when acquiring the lock and restoring +the thread state, the lock must be acquired before storing the thread state +pointer. + +.. note:: + Calling system I/O functions is the most common use case for releasing + the GIL, but it can also be useful before calling long-running computations + which don't need access to Python objects, such as compression or + cryptographic functions operating over memory buffers. For example, the + standard :mod:`zlib` and :mod:`hashlib` modules release the GIL when + compressing or hashing data. + +Non-Python created threads +-------------------------- + +When threads are created using the dedicated Python APIs (such as the +:mod:`threading` module), a thread state is automatically associated to them +and the code showed above is therefore correct. However, when threads are +created from C (for example by a third-party library with its own thread +management), they don't hold the GIL, nor is there a thread state structure +for them. + +If you need to call Python code from these threads (often this will be part +of a callback API provided by the aforementioned third-party library), +you must first register these threads with the interpreter by +creating a thread state data structure, then acquiring the GIL, and finally +storing their thread state pointer, before you can start using the Python/C +API. When you are done, you should reset the thread state pointer, release +the GIL, and finally free the thread state data structure. + +The :c:func:`PyGILState_Ensure` and :c:func:`PyGILState_Release` functions do +all of the above automatically. The typical idiom for calling into Python +from a C thread is:: PyGILState_STATE gstate; gstate = PyGILState_Ensure(); - /* Perform Python actions here. */ + /* Perform Python actions here. */ result = CallSomeFunction(); - /* evaluate result */ + /* evaluate result or handle exception */ /* Release the thread. No Python API allowed beyond this point. */ PyGILState_Release(gstate); Note that the :c:func:`PyGILState_\*` functions assume there is only one global -interpreter (created automatically by :c:func:`Py_Initialize`). Python still +interpreter (created automatically by :c:func:`Py_Initialize`). Python supports the creation of additional interpreters (using :c:func:`Py_NewInterpreter`), but mixing multiple interpreters and the :c:func:`PyGILState_\*` API is unsupported. @@ -581,6 +498,13 @@ :c:func:`PyOS_AfterFork` tries to reset the necessary locks, but is not always able to. + +High-level API +-------------- + +These are the most commonly used types and functions when writing C extension +code, or when embedding the Python interpreter: + .. c:type:: PyInterpreterState This data structure represents the state shared by a number of cooperating @@ -604,16 +528,15 @@ .. c:function:: void PyEval_InitThreads() .. index:: - single: PyEval_ReleaseLock() + single: PyEval_AcquireThread() single: PyEval_ReleaseThread() single: PyEval_SaveThread() single: PyEval_RestoreThread() Initialize and acquire the global interpreter lock. It should be called in the main thread before creating a second thread or engaging in any other thread - operations such as :c:func:`PyEval_ReleaseLock` or - ``PyEval_ReleaseThread(tstate)``. It is not needed before calling - :c:func:`PyEval_SaveThread` or :c:func:`PyEval_RestoreThread`. + operations such as ``PyEval_ReleaseThread(tstate)``. It is not needed before + calling :c:func:`PyEval_SaveThread` or :c:func:`PyEval_RestoreThread`. .. index:: single: Py_Initialize() @@ -622,21 +545,22 @@ .. index:: module: _thread - When only the main thread exists, no GIL operations are needed. This is a - common situation (most Python programs do not use threads), and the lock - operations slow the interpreter down a bit. Therefore, the lock is not - created initially. This situation is equivalent to having acquired the lock: - when there is only a single thread, all object accesses are safe. Therefore, - when this function initializes the global interpreter lock, it also acquires - it. Before the Python :mod:`_thread` module creates a new thread, knowing - that either it has the lock or the lock hasn't been created yet, it calls - :c:func:`PyEval_InitThreads`. When this call returns, it is guaranteed that - the lock has been created and that the calling thread has acquired it. + .. note:: + When only the main thread exists, no GIL operations are needed. This is a + common situation (most Python programs do not use threads), and the lock + operations slow the interpreter down a bit. Therefore, the lock is not + created initially. This situation is equivalent to having acquired the lock: + when there is only a single thread, all object accesses are safe. Therefore, + when this function initializes the global interpreter lock, it also acquires + it. Before the Python :mod:`_thread` module creates a new thread, knowing + that either it has the lock or the lock hasn't been created yet, it calls + :c:func:`PyEval_InitThreads`. When this call returns, it is guaranteed that + the lock has been created and that the calling thread has acquired it. - It is **not** safe to call this function when it is unknown which thread (if - any) currently has the global interpreter lock. + It is **not** safe to call this function when it is unknown which thread (if + any) currently has the global interpreter lock. - This function is not available when thread support is disabled at compile time. + This function is not available when thread support is disabled at compile time. .. c:function:: int PyEval_ThreadsInitialized() @@ -647,37 +571,6 @@ not available when thread support is disabled at compile time. -.. c:function:: void PyEval_AcquireLock() - - Acquire the global interpreter lock. The lock must have been created earlier. - If this thread already has the lock, a deadlock ensues. This function is not - available when thread support is disabled at compile time. - - -.. c:function:: void PyEval_ReleaseLock() - - Release the global interpreter lock. The lock must have been created earlier. - This function is not available when thread support is disabled at compile time. - - -.. c:function:: void PyEval_AcquireThread(PyThreadState *tstate) - - Acquire the global interpreter lock and set the current thread state to - *tstate*, which should not be *NULL*. The lock must have been created earlier. - If this thread already has the lock, deadlock ensues. This function is not - available when thread support is disabled at compile time. - - -.. c:function:: void PyEval_ReleaseThread(PyThreadState *tstate) - - Reset the current thread state to *NULL* and release the global interpreter - lock. The lock must have been created earlier and must be held by the current - thread. The *tstate* argument, which must not be *NULL*, is only used to check - that it represents the current thread state --- if it isn't, a fatal error is - reported. This function is not available when thread support is disabled at - compile time. - - .. c:function:: PyThreadState* PyEval_SaveThread() Release the global interpreter lock (if it has been created and thread @@ -696,6 +589,20 @@ when thread support is disabled at compile time.) +.. c:function:: PyThreadState* PyThreadState_Get() + + Return the current thread state. The global interpreter lock must be held. + When the current thread state is *NULL*, this issues a fatal error (so that + the caller needn't check for *NULL*). + + +.. c:function:: PyThreadState* PyThreadState_Swap(PyThreadState *tstate) + + Swap the current thread state with the thread state given by the argument + *tstate*, which may be *NULL*. The global interpreter lock must be held + and is not released. + + .. c:function:: void PyEval_ReInitThreads() This function is called from :c:func:`PyOS_AfterFork` to ensure that newly @@ -703,6 +610,43 @@ are not running in the child process. +The following functions use thread-local storage, and are not compatible +with sub-interpreters: + +.. c:function:: PyGILState_STATE PyGILState_Ensure() + + Ensure that the current thread is ready to call the Python C API regardless + of the current state of Python, or of the global interpreter lock. This may + be called as many times as desired by a thread as long as each call is + matched with a call to :c:func:`PyGILState_Release`. In general, other + thread-related APIs may be used between :c:func:`PyGILState_Ensure` and + :c:func:`PyGILState_Release` calls as long as the thread state is restored to + its previous state before the Release(). For example, normal usage of the + :c:macro:`Py_BEGIN_ALLOW_THREADS` and :c:macro:`Py_END_ALLOW_THREADS` macros is + acceptable. + + The return value is an opaque "handle" to the thread state when + :c:func:`PyGILState_Ensure` was called, and must be passed to + :c:func:`PyGILState_Release` to ensure Python is left in the same state. Even + though recursive calls are allowed, these handles *cannot* be shared - each + unique call to :c:func:`PyGILState_Ensure` must save the handle for its call + to :c:func:`PyGILState_Release`. + + When the function returns, the current thread will hold the GIL and be able + to call arbitrary Python code. Failure is a fatal error. + + +.. c:function:: void PyGILState_Release(PyGILState_STATE) + + Release any resources previously acquired. After this call, Python's state will + be the same as it was prior to the corresponding :c:func:`PyGILState_Ensure` call + (but generally this state will be unknown to the caller, hence the use of the + GILState API). + + Every call to :c:func:`PyGILState_Ensure` must be matched by a call to + :c:func:`PyGILState_Release` on the same thread. + + The following macros are normally used without a trailing semicolon; look for example usage in the Python source distribution. @@ -736,6 +680,10 @@ :c:macro:`Py_BEGIN_ALLOW_THREADS` without the opening brace and variable declaration. It is a no-op when thread support is disabled at compile time. + +Low-level API +------------- + All of the following functions are only available when thread support is enabled at compile time, and must be called only when the global interpreter lock has been created. @@ -781,19 +729,6 @@ :c:func:`PyThreadState_Clear`. -.. c:function:: PyThreadState* PyThreadState_Get() - - Return the current thread state. The global interpreter lock must be held. - When the current thread state is *NULL*, this issues a fatal error (so that - the caller needn't check for *NULL*). - - -.. c:function:: PyThreadState* PyThreadState_Swap(PyThreadState *tstate) - - Swap the current thread state with the thread state given by the argument - *tstate*, which may be *NULL*. The global interpreter lock must be held. - - .. c:function:: PyObject* PyThreadState_GetDict() Return a dictionary in which extensions can store thread-specific state @@ -814,39 +749,148 @@ exception (if any) for the thread is cleared. This raises no exceptions. -.. c:function:: PyGILState_STATE PyGILState_Ensure() +.. c:function:: void PyEval_AcquireThread(PyThreadState *tstate) - Ensure that the current thread is ready to call the Python C API regardless - of the current state of Python, or of the global interpreter lock. This may - be called as many times as desired by a thread as long as each call is - matched with a call to :c:func:`PyGILState_Release`. In general, other - thread-related APIs may be used between :c:func:`PyGILState_Ensure` and - :c:func:`PyGILState_Release` calls as long as the thread state is restored to - its previous state before the Release(). For example, normal usage of the - :c:macro:`Py_BEGIN_ALLOW_THREADS` and :c:macro:`Py_END_ALLOW_THREADS` macros is - acceptable. + Acquire the global interpreter lock and set the current thread state to + *tstate*, which should not be *NULL*. The lock must have been created earlier. + If this thread already has the lock, deadlock ensues. - The return value is an opaque "handle" to the thread state when - :c:func:`PyGILState_Ensure` was called, and must be passed to - :c:func:`PyGILState_Release` to ensure Python is left in the same state. Even - though recursive calls are allowed, these handles *cannot* be shared - each - unique call to :c:func:`PyGILState_Ensure` must save the handle for its call - to :c:func:`PyGILState_Release`. + :c:func:`PyEval_RestoreThread` is a higher-level function which is always + available (even when thread support isn't enabled or when threads have + not been initialized). - When the function returns, the current thread will hold the GIL. Failure is a - fatal error. +.. c:function:: void PyEval_ReleaseThread(PyThreadState *tstate) -.. c:function:: void PyGILState_Release(PyGILState_STATE) + Reset the current thread state to *NULL* and release the global interpreter + lock. The lock must have been created earlier and must be held by the current + thread. The *tstate* argument, which must not be *NULL*, is only used to check + that it represents the current thread state --- if it isn't, a fatal error is + reported. - Release any resources previously acquired. After this call, Python's state will - be the same as it was prior to the corresponding :c:func:`PyGILState_Ensure` call - (but generally this state will be unknown to the caller, hence the use of the - GILState API.) + :c:func:`PyEval_SaveThread` is a higher-level function which is always + available (even when thread support isn't enabled or when threads have + not been initialized). - Every call to :c:func:`PyGILState_Ensure` must be matched by a call to - :c:func:`PyGILState_Release` on the same thread. +.. c:function:: void PyEval_AcquireLock() + + Acquire the global interpreter lock. The lock must have been created earlier. + If this thread already has the lock, a deadlock ensues. + + .. deprecated:: 3.2 + This function does not update the current thread state. Please use + :c:func:`PyEval_RestoreThread` or :c:func:`PyEval_AcquireThread` + instead. + + +.. c:function:: void PyEval_ReleaseLock() + + Release the global interpreter lock. The lock must have been created earlier. + + .. deprecated:: 3.2 + This function does not update the current thread state. Please use + :c:func:`PyEval_SaveThread` or :c:func:`PyEval_ReleaseThread` + instead. + + +Sub-interpreter support +======================= + +While in most uses, you will only embed a single Python interpreter, there +are cases where you need to create several independent interpreters in the +same process and perhaps even in the same thread. Sub-interpreters allow +you to do that. You can switch between sub-interpreters using the +:c:func:`PyThreadState_Swap` function. You can create and destroy them +using the following functions: + + +.. c:function:: PyThreadState* Py_NewInterpreter() + + .. index:: + module: builtins + module: __main__ + module: sys + single: stdout (in module sys) + single: stderr (in module sys) + single: stdin (in module sys) + + Create a new sub-interpreter. This is an (almost) totally separate environment + for the execution of Python code. In particular, the new interpreter has + separate, independent versions of all imported modules, including the + fundamental modules :mod:`builtins`, :mod:`__main__` and :mod:`sys`. The + table of loaded modules (``sys.modules``) and the module search path + (``sys.path``) are also separate. The new environment has no ``sys.argv`` + variable. It has new standard I/O stream file objects ``sys.stdin``, + ``sys.stdout`` and ``sys.stderr`` (however these refer to the same underlying + file descriptors). + + The return value points to the first thread state created in the new + sub-interpreter. This thread state is made in the current thread state. + Note that no actual thread is created; see the discussion of thread states + below. If creation of the new interpreter is unsuccessful, *NULL* is + returned; no exception is set since the exception state is stored in the + current thread state and there may not be a current thread state. (Like all + other Python/C API functions, the global interpreter lock must be held before + calling this function and is still held when it returns; however, unlike most + other Python/C API functions, there needn't be a current thread state on + entry.) + + .. index:: + single: Py_Finalize() + single: Py_Initialize() + + Extension modules are shared between (sub-)interpreters as follows: the first + time a particular extension is imported, it is initialized normally, and a + (shallow) copy of its module's dictionary is squirreled away. When the same + extension is imported by another (sub-)interpreter, a new module is initialized + and filled with the contents of this copy; the extension's ``init`` function is + not called. Note that this is different from what happens when an extension is + imported after the interpreter has been completely re-initialized by calling + :c:func:`Py_Finalize` and :c:func:`Py_Initialize`; in that case, the extension's + ``initmodule`` function *is* called again. + + .. index:: single: close() (in module os) + + +.. c:function:: void Py_EndInterpreter(PyThreadState *tstate) + + .. index:: single: Py_Finalize() + + Destroy the (sub-)interpreter represented by the given thread state. The given + thread state must be the current thread state. See the discussion of thread + states below. When the call returns, the current thread state is *NULL*. All + thread states associated with this interpreter are destroyed. (The global + interpreter lock must be held before calling this function and is still held + when it returns.) :c:func:`Py_Finalize` will destroy all sub-interpreters that + haven't been explicitly destroyed at that point. + + +Bugs and caveats +---------------- + +Because sub-interpreters (and the main interpreter) are part of the same +process, the insulation between them isn't perfect --- for example, using +low-level file operations like :func:`os.close` they can +(accidentally or maliciously) affect each other's open files. Because of the +way extensions are shared between (sub-)interpreters, some extensions may not +work properly; this is especially likely when the extension makes use of +(static) global variables, or when the extension manipulates its module's +dictionary after its initialization. It is possible to insert objects created +in one sub-interpreter into a namespace of another sub-interpreter; this should +be done with great care to avoid sharing user-defined functions, methods, +instances or classes between sub-interpreters, since import operations executed +by such objects may affect the wrong (sub-)interpreter's dictionary of loaded +modules. + +Also note that combining this functionality with :c:func:`PyGILState_\*` APIs +is delicate, become these APIs assume a bijection between Python thread states +and OS-level threads, an assumption broken by the presence of sub-interpreters. +It is highly recommended that you don't switch sub-interpreters between a pair +of matching :c:func:`PyGILState_Ensure` and :c:func:`PyGILState_Release` calls. +Furthermore, extensions (such as :mod:`ctypes`) using these APIs to allow calling +of Python code from non-Python created threads will probably be broken when using +sub-interpreters. Asynchronous Notifications Modified: python/branches/py3k-cdecimal/Doc/c-api/module.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/c-api/module.rst (original) +++ python/branches/py3k-cdecimal/Doc/c-api/module.rst Fri Mar 4 18:50:17 2011 @@ -29,7 +29,7 @@ :c:data:`PyModule_Type`. -.. c:function:: PyObject* PyModule_New(const char *name) +.. c:function:: PyObject* PyModule_NewObject(PyObject *name) .. index:: single: __name__ (module attribute) @@ -40,6 +40,14 @@ Only the module's :attr:`__doc__` and :attr:`__name__` attributes are filled in; the caller is responsible for providing a :attr:`__file__` attribute. + .. versionadded:: 3.3 + + +.. c:function:: PyObject* PyModule_New(const char *name) + + Similar to :c:func:`PyImport_NewObject`, but the name is an UTF-8 encoded + string instead of a Unicode object. + .. c:function:: PyObject* PyModule_GetDict(PyObject *module) @@ -52,7 +60,7 @@ manipulate a module's :attr:`__dict__`. -.. c:function:: char* PyModule_GetName(PyObject *module) +.. c:function:: PyObject* PyModule_GetNameObject(PyObject *module) .. index:: single: __name__ (module attribute) @@ -61,15 +69,13 @@ Return *module*'s :attr:`__name__` value. If the module does not provide one, or if it is not a string, :exc:`SystemError` is raised and *NULL* is returned. + .. versionadded:: 3.3 -.. c:function:: char* PyModule_GetFilename(PyObject *module) - Similar to :c:func:`PyModule_GetFilenameObject` but return the filename - encoded to 'utf-8'. +.. c:function:: char* PyModule_GetName(PyObject *module) - .. deprecated:: 3.2 - :c:func:`PyModule_GetFilename` raises :c:type:`UnicodeEncodeError` on - unencodable filenames, use :c:func:`PyModule_GetFilenameObject` instead. + Similar to :c:func:`PyModule_GetNameObject` but return the name encoded to + ``'utf-8'``. .. c:function:: PyObject* PyModule_GetFilenameObject(PyObject *module) @@ -86,6 +92,16 @@ .. versionadded:: 3.2 +.. c:function:: char* PyModule_GetFilename(PyObject *module) + + Similar to :c:func:`PyModule_GetFilenameObject` but return the filename + encoded to 'utf-8'. + + .. deprecated:: 3.2 + :c:func:`PyModule_GetFilename` raises :c:type:`UnicodeEncodeError` on + unencodable filenames, use :c:func:`PyModule_GetFilenameObject` instead. + + .. c:function:: void* PyModule_GetState(PyObject *module) Return the "state" of the module, that is, a pointer to the block of memory Modified: python/branches/py3k-cdecimal/Doc/c-api/object.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/c-api/object.rst (original) +++ python/branches/py3k-cdecimal/Doc/c-api/object.rst Fri Mar 4 18:50:17 2011 @@ -108,6 +108,9 @@ Python expression ``o1 op o2``, where ``op`` is the operator corresponding to *opid*. +.. note:: + If *o1* and *o2* are the same object, :c:func:`PyObject_RichCompareBool` + will always return ``1`` for :const:`Py_EQ` and ``0`` for :const:`Py_NE`. .. c:function:: PyObject* PyObject_Repr(PyObject *o) Modified: python/branches/py3k-cdecimal/Doc/c-api/type.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/c-api/type.rst (original) +++ python/branches/py3k-cdecimal/Doc/c-api/type.rst Fri Mar 4 18:50:17 2011 @@ -35,6 +35,14 @@ Clear the internal lookup cache. Return the current version tag. +.. c:function:: long PyType_GetFlags(PyTypeObject* type) + + Return the :attr:`tp_flags` member of *type*. This function is primarily + meant for use with `Py_LIMITED_API`; the individual flag bits are + guaranteed to be stable across Python releases, but access to + :attr:`tp_flags` itself is not part of the limited API. + + .. versionadded:: 3.2 .. c:function:: void PyType_Modified(PyTypeObject *type) Modified: python/branches/py3k-cdecimal/Doc/c-api/unicode.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/c-api/unicode.rst (original) +++ python/branches/py3k-cdecimal/Doc/c-api/unicode.rst Fri Mar 4 18:50:17 2011 @@ -260,18 +260,27 @@ | :attr:`%ld` | long | Exactly equivalent to | | | | ``printf("%ld")``. | +-------------------+---------------------+--------------------------------+ + | :attr:`%li` | long | Exactly equivalent to | + | | | ``printf("%li")``. | + +-------------------+---------------------+--------------------------------+ | :attr:`%lu` | unsigned long | Exactly equivalent to | | | | ``printf("%lu")``. | +-------------------+---------------------+--------------------------------+ | :attr:`%lld` | long long | Exactly equivalent to | | | | ``printf("%lld")``. | +-------------------+---------------------+--------------------------------+ + | :attr:`%lli` | long long | Exactly equivalent to | + | | | ``printf("%lli")``. | + +-------------------+---------------------+--------------------------------+ | :attr:`%llu` | unsigned long long | Exactly equivalent to | | | | ``printf("%llu")``. | +-------------------+---------------------+--------------------------------+ | :attr:`%zd` | Py_ssize_t | Exactly equivalent to | | | | ``printf("%zd")``. | +-------------------+---------------------+--------------------------------+ + | :attr:`%zi` | Py_ssize_t | Exactly equivalent to | + | | | ``printf("%zi")``. | + +-------------------+---------------------+--------------------------------+ | :attr:`%zu` | size_t | Exactly equivalent to | | | | ``printf("%zu")``. | +-------------------+---------------------+--------------------------------+ @@ -322,6 +331,9 @@ .. versionchanged:: 3.2 Support for ``"%lld"`` and ``"%llu"`` added. + .. versionchanged:: 3.3 + Support for ``"%li"``, ``"%lli"`` and ``"%zi"`` added. + .. c:function:: PyObject* PyUnicode_FromFormatV(const char *format, va_list vargs) Modified: python/branches/py3k-cdecimal/Doc/distutils/uploading.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/distutils/uploading.rst (original) +++ python/branches/py3k-cdecimal/Doc/distutils/uploading.rst Fri Mar 4 18:50:17 2011 @@ -57,8 +57,11 @@ from distutils.core import setup + with open('README.txt') as file: + long_description = file.read() + setup(name='Distutils', - long_description=open('README.txt')) + long_description=long_description) In that case, :file:`README.txt` is a regular reStructuredText text file located in the root of the package besides :file:`setup.py`. Modified: python/branches/py3k-cdecimal/Doc/documenting/markup.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/documenting/markup.rst (original) +++ python/branches/py3k-cdecimal/Doc/documenting/markup.rst Fri Mar 4 18:50:17 2011 @@ -611,7 +611,7 @@ The ``:ref:`` invocation is replaced with the section title. Alternatively, you can reference any label (not just section titles) -if you provide the link text ``:ref:`link text````. +if you provide the link text ``:ref:`link text ```. Paragraph-level markup ---------------------- Modified: python/branches/py3k-cdecimal/Doc/faq/design.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/faq/design.rst (original) +++ python/branches/py3k-cdecimal/Doc/faq/design.rst Fri Mar 4 18:50:17 2011 @@ -418,11 +418,9 @@ .. XXX check which of these projects are still alive There are also several programs which make it easier to intermingle Python and C -code in various ways to increase performance. See, for example, `Psyco -`_, `Pyrex -`_, `PyInline -`_, `Py2Cmod -`_, and `Weave +code in various ways to increase performance. See, for example, `Cython +`_, `Pyrex +`_ and `Weave `_. Modified: python/branches/py3k-cdecimal/Doc/faq/extending.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/faq/extending.rst (original) +++ python/branches/py3k-cdecimal/Doc/faq/extending.rst Fri Mar 4 18:50:17 2011 @@ -45,10 +45,11 @@ very little effort, as long as you're running on a machine with an x86-compatible processor. -`Pyrex `_ is a compiler -that accepts a slightly modified form of Python and generates the corresponding -C code. Pyrex makes it possible to write an extension without having to learn -Python's C API. +`Cython `_ and its relative `Pyrex +`_ are compilers +that accept a slightly modified form of Python and generate the corresponding +C code. Cython and Pyrex make it possible to write an extension without having +to learn Python's C API. If you need to interface to some C or C++ library for which no Python extension currently exists, you can try wrapping the library's data types and functions Modified: python/branches/py3k-cdecimal/Doc/faq/general.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/faq/general.rst (original) +++ python/branches/py3k-cdecimal/Doc/faq/general.rst Fri Mar 4 18:50:17 2011 @@ -166,7 +166,7 @@ .. XXX update link once the dev faq is relocated -Consult the `Developer FAQ `__ for more +Consult the `Developer FAQ `__ for more information on getting the source code and compiling it. @@ -224,7 +224,7 @@ .. XXX update link once the dev faq is relocated You can also access the development version of Python through Subversion. See -http://www.python.org/dev/faq/ for details. +http://docs.python.org/devguide/faq for details. How do I submit bug reports and patches for Python? @@ -242,7 +242,7 @@ .. XXX adapt link to dev guide For more information on how Python is developed, consult `the Python Developer's -Guide `_. +Guide `_. Are there any published articles about Python that I can reference? Modified: python/branches/py3k-cdecimal/Doc/faq/gui.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/faq/gui.rst (original) +++ python/branches/py3k-cdecimal/Doc/faq/gui.rst Fri Mar 4 18:50:17 2011 @@ -15,7 +15,9 @@ What platform-independent GUI toolkits exist for Python? ======================================================== -Depending on what platform(s) you are aiming at, there are several. +Depending on what platform(s) you are aiming at, there are several. Some +of them haven't been ported to Python 3 yet. At least `Tkinter`_ and `Qt`_ +are known to be Python 3-compatible. .. XXX check links @@ -23,10 +25,12 @@ ------- Standard builds of Python include an object-oriented interface to the Tcl/Tk -widget set, called Tkinter. This is probably the easiest to install and use. -For more info about Tk, including pointers to the source, see the Tcl/Tk home -page at http://www.tcl.tk. Tcl/Tk is fully portable to the MacOS, Windows, and -Unix platforms. +widget set, called :ref:`tkinter `. This is probably the easiest to +install (since it comes included with most +`binary distributions `_ of Python) and use. +For more info about Tk, including pointers to the source, see the +`Tcl/Tk home page `_. Tcl/Tk is fully portable to the +MacOS, Windows, and Unix platforms. wxWidgets --------- @@ -51,13 +55,15 @@ Qt --- -There are bindings available for the Qt toolkit (`PyQt -`_) and for KDE (`PyKDE `__). If -you're writing open source software, you don't need to pay for PyQt, but if you -want to write proprietary applications, you must buy a PyQt license from -`Riverbank Computing `_ and (up to Qt 4.4; -Qt 4.5 upwards is licensed under the LGPL license) a Qt license from `Trolltech -`_. +There are bindings available for the Qt toolkit (using either `PyQt +`_ or `PySide +`_) and for KDE (`PyKDE `__). +PyQt is currently more mature than PySide, but you must buy a PyQt license from +`Riverbank Computing `_ +if you want to write proprietary applications. PySide is free for all applications. + +Qt 4.5 upwards is licensed under the LGPL license; also, commercial licenses +are available from `Nokia `_. Gtk+ ---- Modified: python/branches/py3k-cdecimal/Doc/faq/installed.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/faq/installed.rst (original) +++ python/branches/py3k-cdecimal/Doc/faq/installed.rst Fri Mar 4 18:50:17 2011 @@ -24,14 +24,14 @@ it; you'll have to figure out who's been using the machine and might have installed it. * A third-party application installed on the machine might have been written in - Python and included a Python installation. For a home computer, the most - common such application is `PySol `_, a - solitaire game that includes over 1000 different games and variations. + Python and included a Python installation. There are many such applications, + from GUI programs to network servers and administrative scripts. * Some Windows machines also have Python installed. At this writing we're aware of computers from Hewlett-Packard and Compaq that include Python. Apparently some of HP/Compaq's administrative tools are written in Python. -* All Apple computers running Mac OS X have Python installed; it's included in - the base installation. +* Many Unix-compatible operating systems, such as Mac OS X and some Linux + distributions, have Python installed by default; it's included in the base + installation. Can I delete Python? Modified: python/branches/py3k-cdecimal/Doc/faq/library.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/faq/library.rst (original) +++ python/branches/py3k-cdecimal/Doc/faq/library.rst Fri Mar 4 18:50:17 2011 @@ -285,11 +285,15 @@ How do I parcel out work among a bunch of worker threads? --------------------------------------------------------- -Use the :mod:`queue` module to create a queue containing a list of jobs. The -:class:`~queue.Queue` class maintains a list of objects with ``.put(obj)`` to -add an item to the queue and ``.get()`` to return an item. The class will take -care of the locking necessary to ensure that each job is handed out exactly -once. +The easiest way is to use the new :mod:`concurrent.futures` module, +especially the :mod:`~concurrent.futures.ThreadPoolExecutor` class. + +Or, if you want fine control over the dispatching algorithm, you can write +your own logic manually. Use the :mod:`queue` module to create a queue +containing a list of jobs. The :class:`~queue.Queue` class maintains a +list of objects with ``.put(obj)`` to add an item to the queue and ``.get()`` +to return an item. The class will take care of the locking necessary to +ensure that each job is handed out exactly once. Here's a trivial example:: @@ -352,7 +356,7 @@ What kinds of global value mutation are thread-safe? ---------------------------------------------------- -A global interpreter lock (GIL) is used internally to ensure that only one +A :term:`global interpreter lock` (GIL) is used internally to ensure that only one thread runs in the Python VM at a time. In general, Python offers to switch among threads only between bytecode instructions; how frequently it switches can be set via :func:`sys.setswitchinterval`. Each bytecode instruction and @@ -395,32 +399,34 @@ Can't we get rid of the Global Interpreter Lock? ------------------------------------------------ -.. XXX mention multiprocessing .. XXX link to dbeazley's talk about GIL? -The Global Interpreter Lock (GIL) is often seen as a hindrance to Python's +The :term:`global interpreter lock` (GIL) is often seen as a hindrance to Python's deployment on high-end multiprocessor server machines, because a multi-threaded Python program effectively only uses one CPU, due to the insistence that (almost) all Python code can only run while the GIL is held. Back in the days of Python 1.5, Greg Stein actually implemented a comprehensive patch set (the "free threading" patches) that removed the GIL and replaced it -with fine-grained locking. Unfortunately, even on Windows (where locks are very -efficient) this ran ordinary Python code about twice as slow as the interpreter -using the GIL. On Linux the performance loss was even worse because pthread -locks aren't as efficient. - -Since then, the idea of getting rid of the GIL has occasionally come up but -nobody has found a way to deal with the expected slowdown, and users who don't -use threads would not be happy if their code ran at half at the speed. Greg's -free threading patch set has not been kept up-to-date for later Python versions. +with fine-grained locking. Adam Olsen recently did a similar experiment +in his `python-safethread `_ +project. Unfortunately, both experiments exhibited a sharp drop in single-thread +performance (at least 30% slower), due to the amount of fine-grained locking +necessary to compensate for the removal of the GIL. This doesn't mean that you can't make good use of Python on multi-CPU machines! You just have to be creative with dividing the work up between multiple -*processes* rather than multiple *threads*. Judicious use of C extensions will -also help; if you use a C extension to perform a time-consuming task, the -extension can release the GIL while the thread of execution is in the C code and -allow other threads to get some work done. +*processes* rather than multiple *threads*. The +:class:`~concurrent.futures.ProcessPoolExecutor` class in the new +:mod:`concurrent.futures` module provides an easy way of doing so; the +:mod:`multiprocessing` module provides a lower-level API in case you want +more control over dispatching of tasks. + +Judicious use of C extensions will also help; if you use a C extension to +perform a time-consuming task, the extension can release the GIL while the +thread of execution is in the C code and allow other threads to get some work +done. Some standard library modules such as :mod:`zlib` and :mod:`hashlib` +already do this. It has been suggested that the GIL should be a per-interpreter-state lock rather than truly global; interpreters then wouldn't be able to share objects. @@ -751,7 +757,8 @@ How do I avoid blocking in the connect() method of a socket? ------------------------------------------------------------ -The select module is commonly used to help with asynchronous I/O on sockets. +The :mod:`select` module is commonly used to help with asynchronous I/O on +sockets. To prevent the TCP connect from blocking, you can set the socket to non-blocking mode. Then when you do the ``connect()``, you will either connect immediately @@ -765,6 +772,12 @@ -- ``0`` or ``errno.EISCONN`` indicate that you're connected -- or you can pass this socket to select to check if it's writable. +.. note:: + The :mod:`asyncore` module presents a framework-like approach to the problem + of writing non-blocking networking code. + The third-party `Twisted `_ library is + a popular and feature-rich alternative. + Databases ========= Modified: python/branches/py3k-cdecimal/Doc/faq/programming.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/faq/programming.rst (original) +++ python/branches/py3k-cdecimal/Doc/faq/programming.rst Fri Mar 4 18:50:17 2011 @@ -127,9 +127,9 @@ .. XXX seems to have overlap with other questions! -`Pyrex `_ can compile a -slightly modified version of Python code into a C extension, and can be used on -many different platforms. +`Cython `_ and `Pyrex `_ +can compile a slightly modified version of Python code into a C extension, and +can be used on many different platforms. `Psyco `_ is a just-in-time compiler that translates Python code into x86 assembly language. If you can use it, Psyco can Modified: python/branches/py3k-cdecimal/Doc/howto/index.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/howto/index.rst (original) +++ python/branches/py3k-cdecimal/Doc/howto/index.rst Fri Mar 4 18:50:17 2011 @@ -14,6 +14,7 @@ :maxdepth: 1 advocacy.rst + pyporting.rst cporting.rst curses.rst descriptor.rst Modified: python/branches/py3k-cdecimal/Doc/howto/logging-cookbook.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/howto/logging-cookbook.rst (original) +++ python/branches/py3k-cdecimal/Doc/howto/logging-cookbook.rst Fri Mar 4 18:50:17 2011 @@ -6,7 +6,8 @@ :Author: Vinay Sajip -This page contains a number of recipes related to logging, which have been found useful in the past. +This page contains a number of recipes related to logging, which have been found +useful in the past. .. currentmodule:: logging @@ -283,7 +284,7 @@ performance-critical threads. They simply write to their queue, which can be sized to a large enough capacity or initialized with no upper bound to their size. The write to the queue will typically be accepted quickly, though you -will probably need to catch the :ref:`queue.Full` exception as a precaution +will probably need to catch the :exc:`queue.Full` exception as a precaution in your code. If you are a library developer who has performance-critical threads in their code, be sure to document this (together with a suggestion to attach only ``QueueHandlers`` to your loggers) for the benefit of other @@ -629,8 +630,6 @@ if __name__ == '__main__': levels = (logging.DEBUG, logging.INFO, logging.WARNING, logging.ERROR, logging.CRITICAL) - a1 = logging.LoggerAdapter(logging.getLogger('a.b.c'), - { 'ip' : '123.231.231.123', 'user' : 'sheila' }) logging.basicConfig(level=logging.DEBUG, format='%(asctime)-15s %(name)-5s %(levelname)-8s IP: %(ip)-15s User: %(user)-8s %(message)s') a1 = logging.getLogger('a.b.c') @@ -696,7 +695,7 @@ a separate listener process listens for events sent by other processes and logs them according to its own logging configuration. Although the example only demonstrates one way of doing it (for example, you may want to use a listener -thread rather than a separate listener process - the implementation would be +thread rather than a separate listener process -- the implementation would be analogous) it does allow for completely different logging configurations for the listener and the other processes in your application, and can be used as the basis for code meeting your own specific requirements:: @@ -718,7 +717,7 @@ # # In practice, you can configure the listener however you want, but note that in this # simple example, the listener does not apply level or filter logic to received records. - # In practice, you would probably want to do ths logic in the worker processes, to avoid + # In practice, you would probably want to do this logic in the worker processes, to avoid # sending events which would be filtered out between processes. # # The size of the rotated files is made small so you can see the results easily. @@ -917,7 +916,7 @@ Sometimes you want to let a log file grow to a certain size, then open a new file and log to that. You may want to keep a certain number of these files, and when that many files have been created, rotate the files so that the number of -files and the size of the files both remin bounded. For this usage pattern, the +files and the size of the files both remain bounded. For this usage pattern, the logging package provides a :class:`RotatingFileHandler`:: import glob Modified: python/branches/py3k-cdecimal/Doc/howto/logging.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/howto/logging.rst (original) +++ python/branches/py3k-cdecimal/Doc/howto/logging.rst Fri Mar 4 18:50:17 2011 @@ -214,8 +214,8 @@ usage pattern, you won't know, by looking in the log file, *where* in your application your messages came from, apart from looking at the event description. If you want to track the location of your messages, you'll need -to refer to the documentation beyond the tutorial level - see -:ref:`advanced-logging-tutorial`. +to refer to the documentation beyond the tutorial level -- see +:ref:`logging-advanced-tutorial`. Logging variable data @@ -549,9 +549,9 @@ 3. Creating a dictionary of configuration information and passing it to the :func:`dictConfig` function. -For the reference documentation on the last two options, see :ref:`config-ref`. -The following example configures a very simple logger, a console handler, and -a simple formatter using Python code:: +For the reference documentation on the last two options, see +:ref:`logging-config-api`. The following example configures a very simple +logger, a console handler, and a simple formatter using Python code:: import logging Modified: python/branches/py3k-cdecimal/Doc/howto/sorting.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/howto/sorting.rst (original) +++ python/branches/py3k-cdecimal/Doc/howto/sorting.rst Fri Mar 4 18:50:17 2011 @@ -8,8 +8,8 @@ Python lists have a built-in :meth:`list.sort` method that modifies the list -in-place and a :func:`sorted` built-in function that builds a new sorted list -from an iterable. +in-place. There is also a :func:`sorted` built-in function that builds a new +sorted list from an iterable. In this document, we explore the various techniques for sorting data using Python. @@ -23,7 +23,7 @@ >>> sorted([5, 2, 3, 1, 4]) [1, 2, 3, 4, 5] -You can also use the :meth:`list.sort` method of a list. It modifies the list +You can also use the :meth:`list.sort` method. It modifies the list in-place (and returns *None* to avoid confusion). Usually it's less convenient than :func:`sorted` - but if you don't need the original list, it's slightly more efficient. @@ -87,9 +87,9 @@ ========================= The key-function patterns shown above are very common, so Python provides -convenience functions to make accessor functions easier and faster. The operator -module has :func:`operator.itemgetter`, :func:`operator.attrgetter`, and -an :func:`operator.methodcaller` function. +convenience functions to make accessor functions easier and faster. The +:mod:`operator` module has :func:`~operator.itemgetter`, +:func:`~operator.attrgetter`, and an :func:`~operator.methodcaller` function. Using those functions, the above examples become simpler and faster: @@ -248,7 +248,7 @@ [5, 4, 3, 2, 1] In Python 3.2, the :func:`functools.cmp_to_key` function was added to the -functools module in the standard library. +:mod:`functools` module in the standard library. Odd and Ends ============ @@ -256,7 +256,7 @@ * For locale aware sorting, use :func:`locale.strxfrm` for a key function or :func:`locale.strcoll` for a comparison function. -* The *reverse* parameter still maintains sort stability (i.e. records with +* The *reverse* parameter still maintains sort stability (so that records with equal keys retain the original order). Interestingly, that effect can be simulated without the parameter by using the builtin :func:`reversed` function twice: Modified: python/branches/py3k-cdecimal/Doc/library/2to3.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/2to3.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/2to3.rst Fri Mar 4 18:50:17 2011 @@ -141,7 +141,7 @@ .. 2to3fixer:: exec - Converts the :keyword:`exec` statement to the :func:`exec` function. + Converts the ``exec`` statement to the :func:`exec` function. .. 2to3fixer:: execfile @@ -293,7 +293,7 @@ .. 2to3fixer:: print - Converts the :keyword:`print` statement to the :func:`print` function. + Converts the ``print`` statement to the :func:`print` function. .. 2to3fixer:: raise Modified: python/branches/py3k-cdecimal/Doc/library/__future__.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/__future__.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/__future__.rst Fri Mar 4 18:50:17 2011 @@ -4,6 +4,9 @@ .. module:: __future__ :synopsis: Future statement definitions +**Source code:** :source:`Lib/__future__.py` + +-------------- :mod:`__future__` is a real module, and serves three purposes: Modified: python/branches/py3k-cdecimal/Doc/library/_dummy_thread.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/_dummy_thread.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/_dummy_thread.rst Fri Mar 4 18:50:17 2011 @@ -4,6 +4,9 @@ .. module:: _dummy_thread :synopsis: Drop-in replacement for the _thread module. +**Source code:** :source:`Lib/_dummy_thread.py` + +-------------- This module provides a duplicate interface to the :mod:`_thread` module. It is meant to be imported when the :mod:`_thread` module is not provided on a Modified: python/branches/py3k-cdecimal/Doc/library/_thread.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/_thread.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/_thread.rst Fri Mar 4 18:50:17 2011 @@ -35,6 +35,9 @@ Raised on thread-specific errors. + .. versionchanged:: 3.3 + This is now a synonym of the built-in :exc:`RuntimeError`. + .. data:: LockType Modified: python/branches/py3k-cdecimal/Doc/library/abc.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/abc.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/abc.rst Fri Mar 4 18:50:17 2011 @@ -7,6 +7,10 @@ .. sectionauthor:: Georg Brandl .. much of the content adapted from docstrings +**Source code:** :source:`Lib/abc.py` + +-------------- + This module provides the infrastructure for defining an :term:`abstract base class` (ABCs) in Python, as outlined in :pep:`3119`; see the PEP for why this was added to Python. (See also :pep:`3141` and the :mod:`numbers` module @@ -51,6 +55,9 @@ assert issubclass(tuple, MyABC) assert isinstance((), MyABC) + .. versionchanged:: 3.3 + Returns the registered subclass, to allow usage as a class decorator. + You can also override this method in an abstract base class: .. method:: __subclasshook__(subclass) Modified: python/branches/py3k-cdecimal/Doc/library/aifc.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/aifc.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/aifc.rst Fri Mar 4 18:50:17 2011 @@ -10,6 +10,10 @@ single: AIFF single: AIFF-C +**Source code:** :source:`Lib/aifc.py` + +-------------- + This module provides support for reading and writing AIFF and AIFF-C files. AIFF is Audio Interchange File Format, a format for storing digital audio samples in a file. AIFF-C is a newer version of the format that includes the Modified: python/branches/py3k-cdecimal/Doc/library/argparse.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/argparse.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/argparse.rst Fri Mar 4 18:50:17 2011 @@ -4,9 +4,13 @@ .. module:: argparse :synopsis: Command-line option and argument parsing library. .. moduleauthor:: Steven Bethard -.. versionadded:: 3.2 .. sectionauthor:: Steven Bethard +**Source code:** :source:`Lib/argparse.py` + +.. versionadded:: 3.2 + +-------------- The :mod:`argparse` module makes it easy to write user friendly command line interfaces. The program defines what arguments it requires, and :mod:`argparse` @@ -925,7 +929,7 @@ simply check against a range of values:: >>> parser = argparse.ArgumentParser(prog='PROG') - >>> parser.add_argument('foo', type=int, choices=xrange(5, 10)) + >>> parser.add_argument('foo', type=int, choices=range(5, 10)) >>> parser.parse_args('7'.split()) Namespace(foo=7) >>> parser.parse_args('11'.split()) @@ -1299,7 +1303,7 @@ >>> parser = argparse.ArgumentParser() >>> parser.add_argument( - ... 'integers', metavar='int', type=int, choices=xrange(10), + ... 'integers', metavar='int', type=int, choices=range(10), ... nargs='+', help='an integer in the range 0..9') >>> parser.add_argument( ... '--sum', dest='accumulate', action='store_const', const=sum, Modified: python/branches/py3k-cdecimal/Doc/library/ast.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/ast.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/ast.rst Fri Mar 4 18:50:17 2011 @@ -110,9 +110,9 @@ Apart from the node classes, :mod:`ast` module defines these utility functions and classes for traversing abstract syntax trees: -.. function:: parse(expr, filename='', mode='exec') +.. function:: parse(source, filename='', mode='exec') - Parse an expression into an AST node. Equivalent to ``compile(expr, + Parse the source into an AST node. Equivalent to ``compile(source, filename, mode, ast.PyCF_ONLY_AST)``. Modified: python/branches/py3k-cdecimal/Doc/library/asynchat.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/asynchat.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/asynchat.rst Fri Mar 4 18:50:17 2011 @@ -6,6 +6,9 @@ .. moduleauthor:: Sam Rushing .. sectionauthor:: Steve Holden +**Source code:** :source:`Lib/asynchat.py` + +-------------- This module builds on the :mod:`asyncore` infrastructure, simplifying asynchronous clients and servers and making it easier to handle protocols Modified: python/branches/py3k-cdecimal/Doc/library/asyncore.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/asyncore.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/asyncore.rst Fri Mar 4 18:50:17 2011 @@ -9,6 +9,9 @@ .. sectionauthor:: Steve Holden .. heavily adapted from original documentation by Sam Rushing +**Source code:** :source:`Lib/asyncore.py` + +-------------- This module provides the basic infrastructure for writing asynchronous socket service clients and servers. @@ -181,12 +184,14 @@ Most of these are nearly identical to their socket partners. - .. method:: create_socket(family, type) + .. method:: create_socket(family=socket.AF_INET, type=socket.SOCK_STREAM) This is identical to the creation of a normal socket, and will use the same options for creation. Refer to the :mod:`socket` documentation for information on creating sockets. + .. versionchanged:: 3.3 family and type arguments can be omitted. + .. method:: connect(address) @@ -277,7 +282,7 @@ def __init__(self, host, path): asyncore.dispatcher.__init__(self) - self.create_socket(socket.AF_INET, socket.SOCK_STREAM) + self.create_socket() self.connect( (host, 80) ) self.buffer = bytes('GET %s HTTP/1.0\r\n\r\n' % path, 'ascii') @@ -306,7 +311,7 @@ asyncore Example basic echo server ---------------------------------- -Here is abasic echo server that uses the :class:`dispatcher` class to accept +Here is a basic echo server that uses the :class:`dispatcher` class to accept connections and dispatches the incoming connections to a handler:: import asyncore @@ -316,13 +321,14 @@ def handle_read(self): data = self.recv(8192) - self.send(data) + if data: + self.send(data) class EchoServer(asyncore.dispatcher): def __init__(self, host, port): asyncore.dispatcher.__init__(self) - self.create_socket(socket.AF_INET, socket.SOCK_STREAM) + self.create_socket() self.set_reuse_addr() self.bind((host, port)) self.listen(5) Modified: python/branches/py3k-cdecimal/Doc/library/bdb.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/bdb.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/bdb.rst Fri Mar 4 18:50:17 2011 @@ -4,6 +4,10 @@ .. module:: bdb :synopsis: Debugger framework. +**Source code:** :source:`Lib/bdb.py` + +-------------- + The :mod:`bdb` module handles basic debugger functions, like setting breakpoints or managing execution via the debugger. Modified: python/branches/py3k-cdecimal/Doc/library/cgi.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/cgi.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/cgi.rst Fri Mar 4 18:50:17 2011 @@ -13,6 +13,10 @@ single: URL single: Common Gateway Interface +**Source code:** :source:`Lib/cgi.py` + +-------------- + Support module for Common Gateway Interface (CGI) scripts. This module defines a number of utilities for use by CGI scripts written in Modified: python/branches/py3k-cdecimal/Doc/library/codecs.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/codecs.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/codecs.rst Fri Mar 4 18:50:17 2011 @@ -904,6 +904,15 @@ case or use a hyphen instead of an underscore are also valid aliases; therefore, e.g. ``'utf-8'`` is a valid alias for the ``'utf_8'`` codec. +.. impl-detail:: + + Some common encodings can bypass the codecs lookup machinery to + improve performance. These optimization opportunities are only + recognized by CPython for a limited set of aliases: utf-8, utf8, + latin-1, latin1, iso-8859-1, mbcs (Windows only), ascii, utf-16, + and utf-32. Using alternative spellings for these encodings may + result in slower execution. + Many of the character sets support the same languages. They vary in individual characters (e.g. whether the EURO SIGN is supported or not), and in the assignment of characters to code positions. For the European languages in Modified: python/branches/py3k-cdecimal/Doc/library/collections.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/collections.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/collections.rst Fri Mar 4 18:50:17 2011 @@ -12,7 +12,7 @@ import itertools __name__ = '' -**Source code:** :source:`Lib/collections.py` +**Source code:** :source:`Lib/collections/__init__.py` -------------- @@ -23,6 +23,7 @@ ===================== ==================================================================== :func:`namedtuple` factory function for creating tuple subclasses with named fields :class:`deque` list-like container with fast appends and pops on either end +:class:`ChainMap` dict-like class for creating a single view of multiple mappings :class:`Counter` dict subclass for counting hashable objects :class:`OrderedDict` dict subclass that remembers the order entries were added :class:`defaultdict` dict subclass that calls a factory function to supply missing values @@ -31,11 +32,125 @@ :class:`UserString` wrapper around string objects for easier string subclassing ===================== ==================================================================== -In addition to the concrete container classes, the collections module provides -:ref:`abstract-base-classes` that can be used to test whether a class provides a -particular interface, for example, whether it is hashable or a mapping. +.. versionchanged:: 3.3 + Moved :ref:`abstract-base-classes` to the :mod:`collections.abc` module. + For backwards compatibility, they continue to be visible in this module + as well. +:class:`ChainMap` objects +------------------------- + +A :class:`ChainMap` class is provided for quickly linking a number of mappings +so they can be treated as a single unit. It is often much faster than creating +a new dictionary and running multiple :meth:`~dict.update` calls. + +The class can be used to simulate nested scopes and is useful in templating. + +.. class:: ChainMap(*maps) + + A :class:`ChainMap` groups multiple dicts or other mappings together to + create a single, updateable view. If no *maps* are specified, a single empty + dictionary is provided so that a new chain always has at least one mapping. + + The underlying mappings are stored in a list. That list is public and can + accessed or updated using the *maps* attribute. There is no other state. + + Lookups search the underlying mappings successively until a key is found. In + contrast, writes, updates, and deletions only operate on the first mapping. + + A class:`ChainMap` incorporates the underlying mappings by reference. So, if + one of the underlying mappings gets updated, those changes will be reflected + in class:`ChainMap`. + + All of the usual dictionary methods are supported. In addition, there is a + *maps* attribute, a method for creating new subcontexts, and a property for + accessing all but the first mapping: + + .. attribute:: maps + + A user updateable list of mappings. The list is ordered from + first-searched to last-searched. It is the only stored state and can + modified to change which mappings are searched. The list should + always contain at least one mapping. + + .. method:: new_child() + + Returns a new :class:`ChainMap` containing a new :class:`dict` followed by + all of the maps in the current instance. A call to ``d.new_child()`` is + equivalent to: ``ChainMap({}, *d.maps)``. This method is used for + creating subcontexts that can be updated without altering values in any + of the parent mappings. + + .. attribute:: parents() + + Returns a new :class:`ChainMap` containing all of the maps in the current + instance except the first one. This is useful for skipping the first map + in the search. The use-cases are similar to those for the + :keyword:`nonlocal` keyword used in :term:`nested scopes `. + The use-cases also parallel those for the builtin :func:`super` function. + A reference to ``d.parents`` is equivalent to: ``ChainMap(*d.maps[1:])``. + + .. versionadded:: 3.3 + + Example of simulating Python's internal lookup chain:: + + import builtins + pylookup = ChainMap(locals(), globals(), vars(builtins)) + + Example of letting user specified values take precedence over environment + variables which in turn take precedence over default values:: + + import os, argparse + defaults = {'color': 'red', 'user': guest} + parser = argparse.ArgumentParser() + parser.add_argument('-u', '--user') + parser.add_argument('-c', '--color') + user_specified = vars(parser.parse_args()) + combined = ChainMap(user_specified, os.environ, defaults) + + Example patterns for using the :class:`ChainMap` class to simulate nested + contexts:: + + c = ChainMap() Create root context + d = c.new_child() Create nested child context + e = c.new_child() Child of c, independent from d + e.maps[0] Current context dictionary -- like Python's locals() + e.maps[-1] Root context -- like Python's globals() + e.parents Enclosing context chain -- like Python's nonlocals + + d['x'] Get first key in the chain of contexts + d['x'] = 1 Set value in current context + del['x'] Delete from current context + list(d) All nested values + k in d Check all nested values + len(d) Number of nested values + d.items() All nested items + dict(d) Flatten into a regular dictionary + + .. seealso:: + + * The `MultiContext class + `_ + in the Enthought `CodeTools package + `_\ has options to support + writing to any mapping in the chain. + + * Django's `Context class + `_ + for templating is a read-only chain of mappings. It also features + pushing and popping of contexts similar to the + :meth:`~collections.ChainMap.new_child` method and the + :meth:`~collections.ChainMap.parents` property. + + * The `Nested Contexts recipe + `_ has options to control + whether writes and other mutations apply only to the first mapping or to + any mapping in the chain. + + * A `greatly simplified read-only version of Chainmap + `_\. + :class:`Counter` objects ------------------------ @@ -957,121 +1072,3 @@ be an instance of :class:`bytes`, :class:`str`, :class:`UserString` (or a subclass) or an arbitrary sequence which can be converted into a string using the built-in :func:`str` function. - -.. _abstract-base-classes: - -ABCs - abstract base classes ----------------------------- - -The collections module offers the following ABCs: - -========================= ===================== ====================== ==================================================== -ABC Inherits Abstract Methods Mixin Methods -========================= ===================== ====================== ==================================================== -:class:`Container` ``__contains__`` -:class:`Hashable` ``__hash__`` -:class:`Iterable` ``__iter__`` -:class:`Iterator` :class:`Iterable` ``__next__`` ``__iter__`` -:class:`Sized` ``__len__`` -:class:`Callable` ``__call__`` - -:class:`Sequence` :class:`Sized`, ``__getitem__`` ``__contains__``. ``__iter__``, ``__reversed__``. - :class:`Iterable`, ``index``, and ``count`` - :class:`Container` - -:class:`MutableSequence` :class:`Sequence` ``__setitem__`` Inherited Sequence methods and - ``__delitem__``, ``append``, ``reverse``, ``extend``, ``pop``, - and ``insert`` ``remove``, and ``__iadd__`` - -:class:`Set` :class:`Sized`, ``__le__``, ``__lt__``, ``__eq__``, ``__ne__``, - :class:`Iterable`, ``__gt__``, ``__ge__``, ``__and__``, ``__or__`` - :class:`Container` ``__sub__``, ``__xor__``, and ``isdisjoint`` - -:class:`MutableSet` :class:`Set` ``add`` and Inherited Set methods and - ``discard`` ``clear``, ``pop``, ``remove``, ``__ior__``, - ``__iand__``, ``__ixor__``, and ``__isub__`` - -:class:`Mapping` :class:`Sized`, ``__getitem__`` ``__contains__``, ``keys``, ``items``, ``values``, - :class:`Iterable`, ``get``, ``__eq__``, and ``__ne__`` - :class:`Container` - -:class:`MutableMapping` :class:`Mapping` ``__setitem__`` and Inherited Mapping methods and - ``__delitem__`` ``pop``, ``popitem``, ``clear``, ``update``, - and ``setdefault`` - - -:class:`MappingView` :class:`Sized` ``__len__`` -:class:`KeysView` :class:`MappingView`, ``__contains__``, - :class:`Set` ``__iter__`` -:class:`ItemsView` :class:`MappingView`, ``__contains__``, - :class:`Set` ``__iter__`` -:class:`ValuesView` :class:`MappingView` ``__contains__``, ``__iter__`` -========================= ===================== ====================== ==================================================== - -These ABCs allow us to ask classes or instances if they provide -particular functionality, for example:: - - size = None - if isinstance(myvar, collections.Sized): - size = len(myvar) - -Several of the ABCs are also useful as mixins that make it easier to develop -classes supporting container APIs. For example, to write a class supporting -the full :class:`Set` API, it only necessary to supply the three underlying -abstract methods: :meth:`__contains__`, :meth:`__iter__`, and :meth:`__len__`. -The ABC supplies the remaining methods such as :meth:`__and__` and -:meth:`isdisjoint` :: - - class ListBasedSet(collections.Set): - ''' Alternate set implementation favoring space over speed - and not requiring the set elements to be hashable. ''' - def __init__(self, iterable): - self.elements = lst = [] - for value in iterable: - if value not in lst: - lst.append(value) - def __iter__(self): - return iter(self.elements) - def __contains__(self, value): - return value in self.elements - def __len__(self): - return len(self.elements) - - s1 = ListBasedSet('abcdef') - s2 = ListBasedSet('defghi') - overlap = s1 & s2 # The __and__() method is supported automatically - -Notes on using :class:`Set` and :class:`MutableSet` as a mixin: - -(1) - Since some set operations create new sets, the default mixin methods need - a way to create new instances from an iterable. The class constructor is - assumed to have a signature in the form ``ClassName(iterable)``. - That assumption is factored-out to an internal classmethod called - :meth:`_from_iterable` which calls ``cls(iterable)`` to produce a new set. - If the :class:`Set` mixin is being used in a class with a different - constructor signature, you will need to override :meth:`from_iterable` - with a classmethod that can construct new instances from - an iterable argument. - -(2) - To override the comparisons (presumably for speed, as the - semantics are fixed), redefine :meth:`__le__` and - then the other operations will automatically follow suit. - -(3) - The :class:`Set` mixin provides a :meth:`_hash` method to compute a hash value - for the set; however, :meth:`__hash__` is not defined because not all sets - are hashable or immutable. To add set hashabilty using mixins, - inherit from both :meth:`Set` and :meth:`Hashable`, then define - ``__hash__ = Set._hash``. - -.. seealso:: - - * Latest version of the :source:`Python source code for the collections - abstract base classes ` - - * `OrderedSet recipe `_ for an - example built on :class:`MutableSet`. - - * For more about ABCs, see the :mod:`abc` module and :pep:`3119`. Modified: python/branches/py3k-cdecimal/Doc/library/colorsys.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/colorsys.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/colorsys.rst Fri Mar 4 18:50:17 2011 @@ -5,6 +5,9 @@ :synopsis: Conversion functions between RGB and other color systems. .. sectionauthor:: David Ascher +**Source code:** :source:`Lib/colorsys.py` + +-------------- The :mod:`colorsys` module defines bidirectional conversions of color values between colors expressed in the RGB (Red Green Blue) color space used in Modified: python/branches/py3k-cdecimal/Doc/library/compileall.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/compileall.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/compileall.rst Fri Mar 4 18:50:17 2011 @@ -119,7 +119,7 @@ cases where the source file does not exist at the time the byte-code file is executed. - If *ra* is given, its search method is passed the full path name to the + If *rx* is given, its search method is passed the full path name to the file being compiled, and if it returns a true value, the file is not compiled and ``True`` is returned. Modified: python/branches/py3k-cdecimal/Doc/library/concurrent.futures.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/concurrent.futures.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/concurrent.futures.rst Fri Mar 4 18:50:17 2011 @@ -4,8 +4,13 @@ .. module:: concurrent.futures :synopsis: Execute computations concurrently using threads or processes. +**Source code:** :source:`Lib/concurrent/futures/thread.py` +and :source:`Lib/concurrent/futures/process.py` + .. versionadded:: 3.2 +-------------- + The :mod:`concurrent.futures` module provides a high-level interface for asynchronously executing callables. @@ -216,7 +221,7 @@ .. method:: cancel() Attempt to cancel the call. If the call is currently being executed and - cannot be cancelled and the method will return ``False``, otherwise the + cannot be cancelled then the method will return ``False``, otherwise the call will be cancelled and the method will return ``True``. .. method:: cancelled() Modified: python/branches/py3k-cdecimal/Doc/library/configparser.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/configparser.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/configparser.rst Fri Mar 4 18:50:17 2011 @@ -716,6 +716,38 @@ >>> list(custom['Section2'].keys()) ['AnotherKey'] +.. attribute:: SECTCRE + + A compiled regular expression used to parse section headers. The default + matches ``[section]`` to the name ``"section"``. Whitespace is considered part + of the section name, thus ``[ larch ]`` will be read as a section of name + ``" larch "``. Override this attribute if that's unsuitable. For example: + + .. doctest:: + + >>> config = """ + ... [Section 1] + ... option = value + ... + ... [ Section 2 ] + ... another = val + ... """ + >>> typical = ConfigParser() + >>> typical.read_string(config) + >>> typical.sections() + ['Section 1', ' Section 2 '] + >>> custom = ConfigParser() + >>> custom.SECTCRE = re.compile(r"\[ *(?P
[^]]+?) *\]") + >>> custom.read_string(config) + >>> custom.sections() + ['Section 1', 'Section 2'] + + .. note:: + + While ConfigParser objects also use an ``OPTCRE`` attribute for recognizing + option lines, it's not recommended to override it because that would + interfere with constructor options *allow_no_value* and *delimiters*. + Legacy API Examples ------------------- Modified: python/branches/py3k-cdecimal/Doc/library/crypt.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/crypt.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/crypt.rst Fri Mar 4 18:50:17 2011 @@ -15,9 +15,9 @@ This module implements an interface to the :manpage:`crypt(3)` routine, which is a one-way hash function based upon a modified DES algorithm; see the Unix man -page for further details. Possible uses include allowing Python scripts to -accept typed passwords from the user, or attempting to crack Unix passwords with -a dictionary. +page for further details. Possible uses include storing hashed passwords +so you can check passwords without storing the actual password, or attempting +to crack Unix passwords with a dictionary. .. index:: single: crypt(3) @@ -26,15 +26,81 @@ extensions available on the current implementation will also be available on this module. +Hashing Methods +--------------- -.. function:: crypt(word, salt) +The :mod:`crypt` module defines the list of hashing methods (not all methods +are available on all platforms): + +.. data:: METHOD_SHA512 + + A Modular Crypt Format method with 16 character salt and 86 character + hash. This is the strongest method. + + .. versionadded:: 3.3 + +.. data:: METHOD_SHA256 + + Another Modular Crypt Format method with 16 character salt and 43 + character hash. + + .. versionadded:: 3.3 + +.. data:: METHOD_MD5 + + Another Modular Crypt Format method with 8 character salt and 22 + character hash. + + .. versionadded:: 3.3 + +.. data:: METHOD_CRYPT + + The traditional method with a 2 character salt and 13 characters of + hash. This is the weakest method. + + .. versionadded:: 3.3 + + +Module Attributes +----------------- + + +.. attribute:: methods + + A list of available password hashing algorithms, as + ``crypt.METHOD_*`` objects. This list is sorted from strongest to + weakest, and is guaranteed to have at least ``crypt.METHOD_CRYPT``. + + .. versionadded:: 3.3 + + +Module Functions +---------------- + +The :mod:`crypt` module defines the following functions: + +.. function:: crypt(word, salt=None) *word* will usually be a user's password as typed at a prompt or in a graphical - interface. *salt* is usually a random two-character string which will be used - to perturb the DES algorithm in one of 4096 ways. The characters in *salt* must - be in the set ``[./a-zA-Z0-9]``. Returns the hashed password as a string, which - will be composed of characters from the same alphabet as the salt (the first two - characters represent the salt itself). + interface. The optional *salt* is either a string as returned from + :func:`mksalt`, one of the ``crypt.METHOD_*`` values (though not all + may be available on all platforms), or a full encrypted password + including salt, as returned by this function. If *salt* is not + provided, the strongest method will be used (as returned by + :func:`methods`. + + Checking a password is usually done by passing the plain-text password + as *word* and the full results of a previous :func:`crypt` call, + which should be the same as the results of this call. + + *salt* (either a random 2 or 16 character string, possibly prefixed with + ``$digit$`` to indicate the method) which will be used to perturb the + encryption algorithm. The characters in *salt* must be in the set + ``[./a-zA-Z0-9]``, with the exception of Modular Crypt Format which + prefixes a ``$digit$``. + + Returns the hashed password as a string, which will be composed of + characters from the same alphabet as the salt. .. index:: single: crypt(3) @@ -42,6 +108,27 @@ different sizes in the *salt*, it is recommended to use the full crypted password as salt when checking for a password. +.. versionchanged:: 3.3 + Before version 3.3, *salt* must be specified as a string and cannot + accept ``crypt.METHOD_*`` values (which don't exist anyway). + + +.. function:: mksalt(method=None) + + Return a randomly generated salt of the specified method. If no + *method* is given, the strongest method available as returned by + :func:`methods` is used. + + The return value is a string either of 2 characters in length for + ``crypt.METHOD_CRYPT``, or 19 characters starting with ``$digit$`` and + 16 random characters from the set ``[./a-zA-Z0-9]``, suitable for + passing as the *salt* argument to :func:`crypt`. + +.. versionadded:: 3.3 + +Examples +-------- + A simple example illustrating typical use:: import crypt, getpass, pwd @@ -57,3 +144,11 @@ else: return 1 +To generate a hash of a password using the strongest available method and +check it against the original:: + + import crypt + + hashed = crypt.crypt(plaintext) + if hashed != crypt.crypt(plaintext, hashed): + raise "Hashed version doesn't validate against original" Modified: python/branches/py3k-cdecimal/Doc/library/ctypes.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/ctypes.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/ctypes.rst Fri Mar 4 18:50:17 2011 @@ -216,6 +216,8 @@ +----------------------+------------------------------------------+----------------------------+ | ctypes type | C type | Python type | +======================+==========================================+============================+ +| :class:`c_bool` | :c:type:`_Bool` | bool (1) | ++----------------------+------------------------------------------+----------------------------+ | :class:`c_char` | :c:type:`char` | 1-character bytes object | +----------------------+------------------------------------------+----------------------------+ | :class:`c_wchar` | :c:type:`wchar_t` | 1-character string | @@ -254,6 +256,9 @@ | :class:`c_void_p` | :c:type:`void *` | int or ``None`` | +----------------------+------------------------------------------+----------------------------+ +(1) + The constructor accepts any object with a truth value. + All these types can be created by calling them with an optional initializer of the correct type and value:: Modified: python/branches/py3k-cdecimal/Doc/library/datatypes.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/datatypes.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/datatypes.rst Fri Mar 4 18:50:17 2011 @@ -21,6 +21,7 @@ datetime.rst calendar.rst collections.rst + collections.abc.rst heapq.rst bisect.rst array.rst Modified: python/branches/py3k-cdecimal/Doc/library/decimal.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/decimal.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/decimal.rst Fri Mar 4 18:50:17 2011 @@ -144,7 +144,7 @@ >>> Decimal((0, (3, 1, 4), -2)) Decimal('3.14') >>> Decimal(str(2.0 ** 0.5)) - Decimal('1.41421356237') + Decimal('1.4142135623730951') >>> Decimal(2) ** Decimal('0.5') Decimal('1.414213562373095048801688724') >>> Decimal('NaN') Modified: python/branches/py3k-cdecimal/Doc/library/dummy_threading.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/dummy_threading.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/dummy_threading.rst Fri Mar 4 18:50:17 2011 @@ -4,6 +4,9 @@ .. module:: dummy_threading :synopsis: Drop-in replacement for the threading module. +**Source code:** :source:`Lib/dummy_threading.py` + +-------------- This module provides a duplicate interface to the :mod:`threading` module. It is meant to be imported when the :mod:`_thread` module is not provided on a Modified: python/branches/py3k-cdecimal/Doc/library/fractions.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/fractions.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/fractions.rst Fri Mar 4 18:50:17 2011 @@ -6,6 +6,9 @@ .. moduleauthor:: Jeffrey Yasskin .. sectionauthor:: Jeffrey Yasskin +**Source code:** :source:`Lib/fractions.py` + +-------------- The :mod:`fractions` module provides support for rational number arithmetic. Modified: python/branches/py3k-cdecimal/Doc/library/ftplib.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/ftplib.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/ftplib.rst Fri Mar 4 18:50:17 2011 @@ -9,6 +9,10 @@ pair: FTP; protocol single: FTP; ftplib (standard module) +**Source code:** :source:`Lib/ftplib.py` + +-------------- + This module defines the class :class:`FTP` and a few related items. The :class:`FTP` class implements the client side of the FTP protocol. You can use this to write Python programs that perform a variety of automated FTP jobs, such @@ -36,7 +40,7 @@ The module defines the following items: -.. class:: FTP(host='', user='', passwd='', acct=''[, timeout]) +.. class:: FTP(host='', user='', passwd='', acct='', timeout=None, source_address=None) Return a new instance of the :class:`FTP` class. When *host* is given, the method call ``connect(host)`` is made. When *user* is given, additionally @@ -44,7 +48,8 @@ *acct* default to the empty string when not given). The optional *timeout* parameter specifies a timeout in seconds for blocking operations like the connection attempt (if is not specified, the global default timeout setting - will be used). + will be used). *source_address* is a 2-tuple ``(host, port)`` for the socket + to bind to as its source address before connecting. :class:`FTP` class supports the :keyword:`with` statement. Here is a sample on how using it: @@ -64,8 +69,11 @@ .. versionchanged:: 3.2 Support for the :keyword:`with` statement was added. + .. versionchanged:: 3.3 + *source_address* parameter was added. + -.. class:: FTP_TLS(host='', user='', passwd='', acct='', [keyfile[, certfile[, context[, timeout]]]]) +.. class:: FTP_TLS(host='', user='', passwd='', acct='', keyfile=None, certfile=None, context=None, timeout=None, source_address=None) A :class:`FTP` subclass which adds TLS support to FTP as described in :rfc:`4217`. @@ -76,10 +84,15 @@ private key and certificate chain file name for the SSL connection. *context* parameter is a :class:`ssl.SSLContext` object which allows bundling SSL configuration options, certificates and private keys into a - single (potentially long-lived) structure. + single (potentially long-lived) structure. *source_address* is a 2-tuple + ``(host, port)`` for the socket to bind to as its source address before + connecting. .. versionadded:: 3.2 + .. versionchanged:: 3.3 + *source_address* parameter was added. + Here's a sample session using the :class:`FTP_TLS` class: >>> from ftplib import FTP_TLS @@ -170,7 +183,7 @@ debugging output, logging each line sent and received on the control connection. -.. method:: FTP.connect(host='', port=0[, timeout]) +.. method:: FTP.connect(host='', port=0, timeout=None, source_address=None) Connect to the given host and port. The default port number is ``21``, as specified by the FTP protocol specification. It is rarely needed to specify a @@ -178,10 +191,14 @@ instance; it should not be called at all if a host was given when the instance was created. All other methods can only be used after a connection has been made. - The optional *timeout* parameter specifies a timeout in seconds for the connection attempt. If no *timeout* is passed, the global default timeout setting will be used. + *source_address* is a 2-tuple ``(host, port)`` for the socket to bind to as + its source address before connecting. + + .. versionchanged:: 3.3 + *source_address* parameter was added. .. method:: FTP.getwelcome() Modified: python/branches/py3k-cdecimal/Doc/library/getopt.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/getopt.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/getopt.rst Fri Mar 4 18:50:17 2011 @@ -5,6 +5,10 @@ :synopsis: Portable parser for command line options; support both short and long option names. +**Source code:** :source:`Lib/getopt.py` + +-------------- + .. note:: The :mod:`getopt` module is a parser for command line options whose API is designed to be familiar to users of the C :c:func:`getopt` function. Users who @@ -18,9 +22,6 @@ options similar to those supported by GNU software may be used as well via an optional third argument. -A more convenient, flexible, and powerful alternative is the -:mod:`optparse` module. - This module provides two functions and an exception: Modified: python/branches/py3k-cdecimal/Doc/library/gettext.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/gettext.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/gettext.rst Fri Mar 4 18:50:17 2011 @@ -6,6 +6,9 @@ .. moduleauthor:: Barry A. Warsaw .. sectionauthor:: Barry A. Warsaw +**Source code:** :source:`Lib/gettext.py` + +-------------- The :mod:`gettext` module provides internationalization (I18N) and localization (L10N) services for your Python modules and applications. It supports both the Modified: python/branches/py3k-cdecimal/Doc/library/gzip.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/gzip.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/gzip.rst Fri Mar 4 18:50:17 2011 @@ -4,6 +4,10 @@ .. module:: gzip :synopsis: Interfaces for gzip compression and decompression using file objects. +**Source code:** :source:`Lib/gzip.py` + +-------------- + This module provides a simple interface to compress and decompress files just like the GNU programs :program:`gzip` and :program:`gunzip` would. Modified: python/branches/py3k-cdecimal/Doc/library/hashlib.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/hashlib.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/hashlib.rst Fri Mar 4 18:50:17 2011 @@ -11,6 +11,10 @@ single: message digest, MD5 single: secure hash algorithm, SHA1, SHA224, SHA256, SHA384, SHA512 +**Source code:** :source:`Lib/hashlib.py` + +-------------- + This module implements a common interface to many different secure hash and message digest algorithms. Included are the FIPS secure hash algorithms SHA1, SHA224, SHA256, SHA384, and SHA512 (defined in FIPS 180-2) as well as RSA's MD5 Modified: python/branches/py3k-cdecimal/Doc/library/hmac.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/hmac.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/hmac.rst Fri Mar 4 18:50:17 2011 @@ -7,6 +7,9 @@ .. moduleauthor:: Gerhard H?ring .. sectionauthor:: Gerhard H?ring +**Source code:** :source:`Lib/hmac.py` + +-------------- This module implements the HMAC algorithm as described by :rfc:`2104`. Modified: python/branches/py3k-cdecimal/Doc/library/html.entities.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/html.entities.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/html.entities.rst Fri Mar 4 18:50:17 2011 @@ -5,6 +5,9 @@ :synopsis: Definitions of HTML general entities. .. sectionauthor:: Fred L. Drake, Jr. +**Source code:** :source:`Lib/html/entities.py` + +-------------- This module defines three dictionaries, ``name2codepoint``, ``codepoint2name``, and ``entitydefs``. ``entitydefs`` is used to provide the :attr:`entitydefs` Modified: python/branches/py3k-cdecimal/Doc/library/html.parser.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/html.parser.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/html.parser.rst Fri Mar 4 18:50:17 2011 @@ -9,6 +9,10 @@ single: HTML single: XHTML +**Source code:** :source:`Lib/html/parser.py` + +-------------- + This module defines a class :class:`HTMLParser` which serves as the basis for parsing text files formatted in HTML (HyperText Mark-up Language) and XHTML. Modified: python/branches/py3k-cdecimal/Doc/library/html.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/html.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/html.rst Fri Mar 4 18:50:17 2011 @@ -6,6 +6,9 @@ .. versionadded:: 3.2 +**Source code:** :source:`Lib/html/__init__.py` + +-------------- This module defines utilities to manipulate HTML. Modified: python/branches/py3k-cdecimal/Doc/library/http.client.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/http.client.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/http.client.rst Fri Mar 4 18:50:17 2011 @@ -11,6 +11,10 @@ .. index:: module: urllib.request +**Source code:** :source:`Lib/http/client.py` + +-------------- + This module defines classes which implement the client side of the HTTP and HTTPS protocols. It is normally not used directly --- the module :mod:`urllib.request` uses it to handle URLs that use HTTP and HTTPS. @@ -32,7 +36,7 @@ used. If the optional *timeout* parameter is given, blocking operations (like connection attempts) will timeout after that many seconds (if it is not given, the global default timeout setting is used). - The optional *source_address* parameter may be a typle of a (host, port) + The optional *source_address* parameter may be a tuple of a (host, port) to use as the source address the HTTP connection is made from. For example, the following calls all create instances that connect to the server @@ -396,7 +400,7 @@ contents of the file is sent; this file object should support ``fileno()`` and ``read()`` methods. The header Content-Length is automatically set to the length of the file as reported by stat. The *body* argument may also be - an iterable and Contet-Length header should be explicitly provided when the + an iterable and Content-Length header should be explicitly provided when the body is an iterable. The *headers* argument should be a mapping of extra HTTP Modified: python/branches/py3k-cdecimal/Doc/library/http.cookiejar.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/http.cookiejar.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/http.cookiejar.rst Fri Mar 4 18:50:17 2011 @@ -6,6 +6,9 @@ .. moduleauthor:: John J. Lee .. sectionauthor:: John J. Lee +**Source code:** :source:`Lib/http/cookiejar.py` + +-------------- The :mod:`http.cookiejar` module defines classes for automatic handling of HTTP cookies. It is useful for accessing web sites that require small pieces of data Modified: python/branches/py3k-cdecimal/Doc/library/http.cookies.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/http.cookies.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/http.cookies.rst Fri Mar 4 18:50:17 2011 @@ -6,6 +6,9 @@ .. moduleauthor:: Timothy O'Malley .. sectionauthor:: Moshe Zadka +**Source code:** :source:`Lib/http/cookies.py` + +-------------- The :mod:`http.cookies` module defines classes for abstracting the concept of cookies, an HTTP state management mechanism. It supports both simple string-only Modified: python/branches/py3k-cdecimal/Doc/library/http.server.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/http.server.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/http.server.rst Fri Mar 4 18:50:17 2011 @@ -11,6 +11,10 @@ single: URL single: httpd +**Source code:** :source:`Lib/http/server.py` + +-------------- + This module defines classes for implementing HTTP servers (Web servers). One class, :class:`HTTPServer`, is a :class:`socketserver.TCPServer` subclass. Modified: python/branches/py3k-cdecimal/Doc/library/imaplib.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/imaplib.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/imaplib.rst Fri Mar 4 18:50:17 2011 @@ -16,6 +16,10 @@ pair: IMAP4_SSL; protocol pair: IMAP4_stream; protocol +**Source code:** :source:`Lib/imaplib.py` + +-------------- + This module defines three classes, :class:`IMAP4`, :class:`IMAP4_SSL` and :class:`IMAP4_stream`, which encapsulate a connection to an IMAP4 server and implement a large subset of the IMAP4rev1 client protocol as defined in @@ -85,9 +89,9 @@ .. function:: Internaldate2tuple(datestr) - Converts an IMAP4 INTERNALDATE string to Coordinated Universal Time. Returns a - :mod:`time` module tuple. - + Parse an IMAP4 ``INTERNALDATE`` string and return corresponding local + time. The return value is a :class:`time.struct_time` tuple or + None if the string has wrong format. .. function:: Int2AP(num) @@ -102,9 +106,13 @@ .. function:: Time2Internaldate(date_time) - Converts a :mod:`time` module tuple to an IMAP4 ``INTERNALDATE`` representation. - Returns a string in the form: ``"DD-Mmm-YYYY HH:MM:SS +HHMM"`` (including - double-quotes). + Convert *date_time* to an IMAP4 ``INTERNALDATE`` representation. The + return value is a string in the form: ``"DD-Mmm-YYYY HH:MM:SS + +HHMM"`` (including double-quotes). The *date_time* argument can be a + number (int or float) represening seconds since epoch (as returned + by :func:`time.time`), a 9-tuple representing local time (as returned by + :func:`time.localtime`), or a double-quoted string. In the last case, it + is assumed to already be in the correct format. Note that IMAP4 message numbers change as the mailbox changes; in particular, after an ``EXPUNGE`` command performs deletions the remaining messages are @@ -290,9 +298,10 @@ .. method:: IMAP4.open(host, port) - Opens socket to *port* at *host*. The connection objects established by this + Opens socket to *port* at *host*. This method is implicitly called by + the :class:`IMAP4` constructor. The connection objects established by this method will be used in the ``read``, ``readline``, ``send``, and ``shutdown`` - methods. You may override this method. + methods. You may override this method. .. method:: IMAP4.partial(message_num, message_part, start, length) @@ -382,7 +391,8 @@ .. method:: IMAP4.shutdown() - Close connection established in ``open``. You may override this method. + Close connection established in ``open``. This method is implicitly + called by :meth:`IMAP4.logout`. You may override this method. .. method:: IMAP4.socket() Modified: python/branches/py3k-cdecimal/Doc/library/imghdr.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/imghdr.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/imghdr.rst Fri Mar 4 18:50:17 2011 @@ -4,6 +4,9 @@ .. module:: imghdr :synopsis: Determine the type of image contained in a file or byte stream. +**Source code:** :source:`Lib/imghdr.py` + +-------------- The :mod:`imghdr` module determines the type of image contained in a file or byte stream. Modified: python/branches/py3k-cdecimal/Doc/library/importlib.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/importlib.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/importlib.rst Fri Mar 4 18:50:17 2011 @@ -32,7 +32,7 @@ `Packages specification `__ Original specification of packages. Some semantics have changed since - the writing of this document (e.g. redirecting based on :keyword:`None` + the writing of this document (e.g. redirecting based on ``None`` in :data:`sys.modules`). The :func:`.__import__` function @@ -109,7 +109,7 @@ module. If the :term:`finder` is found on :data:`sys.meta_path` and the module to be searched for is a subpackage or module then *path* will be the value of :attr:`__path__` from the parent package. If a loader - cannot be found, :keyword:`None` is returned. + cannot be found, ``None`` is returned. .. class:: Loader @@ -185,14 +185,14 @@ .. method:: get_code(fullname) An abstract method to return the :class:`code` object for a module. - :keyword:`None` is returned if the module does not have a code object + ``None`` is returned if the module does not have a code object (e.g. built-in module). :exc:`ImportError` is raised if loader cannot find the requested module. .. method:: get_source(fullname) An abstract method to return the source of a module. It is returned as - a text string with universal newlines. Returns :keyword:`None` if no + a text string with universal newlines. Returns ``None`` if no source is available (e.g. a built-in module). Raises :exc:`ImportError` if the loader cannot find the module specified. @@ -320,7 +320,7 @@ .. method:: source_path(fullname) An abstract method that returns the path to the source code for a - module. Should return :keyword:`None` if there is no source code. + module. Should return ``None`` if there is no source code. Raises :exc:`ImportError` if the loader knows it cannot handle the module. @@ -329,7 +329,7 @@ A concrete implementation of :meth:`importlib.abc.ExecutionLoader.get_filename` that relies on :meth:`source_path`. If :meth:`source_path` returns - :keyword:`None`, then :exc:`ImportError` is raised. + ``None``, then :exc:`ImportError` is raised. .. method:: load_module(fullname) @@ -374,13 +374,13 @@ An abstract method which returns the modification time for the source code of the specified module. The modification time should be an - integer. If there is no source code, return :keyword:`None`. If the + integer. If there is no source code, return ``None``. If the module cannot be found then :exc:`ImportError` is raised. .. method:: bytecode_path(fullname) An abstract method which returns the path to the bytecode for the - specified module, if it exists. It returns :keyword:`None` + specified module, if it exists. It returns ``None`` if no bytecode exists (yet). Raises :exc:`ImportError` if the loader knows it cannot handle the module. @@ -398,8 +398,8 @@ .. method:: write_bytecode(fullname, bytecode) An abstract method which has the loader write *bytecode* for future - use. If the bytecode is written, return :keyword:`True`. Return - :keyword:`False` if the bytecode could not be written. This method + use. If the bytecode is written, return ``True``. Return + ``False`` if the bytecode could not be written. This method should not be called if :data:`sys.dont_write_bytecode` is true. The *bytecode* argument should be a bytes string or bytes array. @@ -457,7 +457,7 @@ :data:`sys.path_importer_cache`, then :data:`sys.path_hooks` is searched for a finder for the path entry and, if found, is stored in :data:`sys.path_importer_cache` along with being queried about the - module. If no finder is ever found then :keyword:`None` is returned. + module. If no finder is ever found then ``None`` is returned. :mod:`importlib.util` -- Utility code for importers @@ -506,7 +506,7 @@ A :term:`decorator` for a :term:`loader` to set the :attr:`__package__` attribute on the module returned by the loader. If :attr:`__package__` is - set and has a value other than :keyword:`None` it will not be changed. + set and has a value other than ``None`` it will not be changed. Note that the module returned by the loader is what has the attribute set on and not the module found in :data:`sys.modules`. Modified: python/branches/py3k-cdecimal/Doc/library/inspect.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/inspect.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/inspect.rst Fri Mar 4 18:50:17 2011 @@ -6,6 +6,9 @@ .. moduleauthor:: Ka-Ping Yee .. sectionauthor:: Ka-Ping Yee +**Source code:** :source:`Lib/inspect.py` + +-------------- The :mod:`inspect` module provides several useful functions to help get information about live objects such as modules, classes, methods, functions, @@ -637,9 +640,9 @@ Get current state of a generator-iterator. Possible states are: - - GEN_CREATED: Waiting to start execution. - - GEN_RUNNING: Currently being executed by the interpreter. - - GEN_SUSPENDED: Currently suspended at a yield expression. - - GEN_CLOSED: Execution has completed. + * GEN_CREATED: Waiting to start execution. + * GEN_RUNNING: Currently being executed by the interpreter. + * GEN_SUSPENDED: Currently suspended at a yield expression. + * GEN_CLOSED: Execution has completed. .. versionadded:: 3.2 Modified: python/branches/py3k-cdecimal/Doc/library/io.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/io.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/io.rst Fri Mar 4 18:50:17 2011 @@ -785,35 +785,33 @@ inherits :class:`codecs.IncrementalDecoder`. -Advanced topics ---------------- - -Here we will discuss several advanced topics pertaining to the concrete -I/O implementations described above. - Performance -^^^^^^^^^^^ +----------- + +This section discusses the performance of the provided concrete I/O +implementations. Binary I/O -"""""""""" +^^^^^^^^^^ -By reading and writing only large chunks of data even when the user asks -for a single byte, buffered I/O is designed to hide any inefficiency in -calling and executing the operating system's unbuffered I/O routines. The -gain will vary very much depending on the OS and the kind of I/O which is -performed (for example, on some contemporary OSes such as Linux, unbuffered -disk I/O can be as fast as buffered I/O). The bottom line, however, is -that buffered I/O will offer you predictable performance regardless of the -platform and the backing device. Therefore, it is most always preferable to -use buffered I/O rather than unbuffered I/O. +By reading and writing only large chunks of data even when the user asks for a +single byte, buffered I/O hides any inefficiency in calling and executing the +operating system's unbuffered I/O routines. The gain depends on the OS and the +kind of I/O which is performed. For example, on some modern OSes such as Linux, +unbuffered disk I/O can be as fast as buffered I/O. The bottom line, however, +is that buffered I/O offers predictable performance regardless of the platform +and the backing device. Therefore, it is most always preferable to use buffered +I/O rather than unbuffered I/O for binary datal Text I/O -"""""""" +^^^^^^^^ Text I/O over a binary storage (such as a file) is significantly slower than -binary I/O over the same storage, because it implies conversions from -unicode to binary data using a character codec. This can become noticeable -if you handle huge amounts of text data (for example very large log files). +binary I/O over the same storage, because it requires conversions between +unicode and binary data using a character codec. This can become noticeable +handling huge amounts of text data like large log files. Also, +:meth:`TextIOWrapper.tell` and :meth:`TextIOWrapper.seek` are both quite slow +due to the reconstruction algorithm used. :class:`StringIO`, however, is a native in-memory unicode container and will exhibit similar speed to :class:`BytesIO`. @@ -821,9 +819,8 @@ Multi-threading ^^^^^^^^^^^^^^^ -:class:`FileIO` objects are thread-safe to the extent that the operating -system calls (such as ``read(2)`` under Unix) they are wrapping are thread-safe -too. +:class:`FileIO` objects are thread-safe to the extent that the operating system +calls (such as ``read(2)`` under Unix) they wrap are thread-safe too. Binary buffered objects (instances of :class:`BufferedReader`, :class:`BufferedWriter`, :class:`BufferedRandom` and :class:`BufferedRWPair`) @@ -838,12 +835,13 @@ Binary buffered objects (instances of :class:`BufferedReader`, :class:`BufferedWriter`, :class:`BufferedRandom` and :class:`BufferedRWPair`) are not reentrant. While reentrant calls will not happen in normal situations, -they can arise if you are doing I/O in a :mod:`signal` handler. If it is -attempted to enter a buffered object again while already being accessed -*from the same thread*, then a :exc:`RuntimeError` is raised. - -The above implicitly extends to text files, since the :func:`open()` -function will wrap a buffered object inside a :class:`TextIOWrapper`. This -includes standard streams and therefore affects the built-in function -:func:`print()` as well. +they can arise from doing I/O in a :mod:`signal` handler. If a thread tries to +renter a buffered object which it is already accessing, a :exc:`RuntimeError` is +raised. Note this doesn't prohibit a different thread from entering the +buffered object. + +The above implicitly extends to text files, since the :func:`open()` function +will wrap a buffered object inside a :class:`TextIOWrapper`. This includes +standard streams and therefore affects the built-in function :func:`print()` as +well. Modified: python/branches/py3k-cdecimal/Doc/library/itertools.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/itertools.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/itertools.rst Fri Mar 4 18:50:17 2011 @@ -246,7 +246,7 @@ def count(start=0, step=1): # count(10) --> 10 11 12 13 14 ... - # count(2.5, 0.5) -> 3.5 3.0 4.5 ... + # count(2.5, 0.5) -> 2.5 3.0 3.5 ... n = start while True: yield n Modified: python/branches/py3k-cdecimal/Doc/library/json.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/json.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/json.rst Fri Mar 4 18:50:17 2011 @@ -6,7 +6,7 @@ .. moduleauthor:: Bob Ippolito .. sectionauthor:: Bob Ippolito -JSON (JavaScript Object Notation) is a subset of JavaScript +`JSON (JavaScript Object Notation) `_ is a subset of JavaScript syntax (ECMA-262 3rd edition) used as a lightweight data interchange format. :mod:`json` exposes an API familiar to users of the standard library @@ -118,9 +118,8 @@ file-like object). If *skipkeys* is ``True`` (default: ``False``), then dict keys that are not - of a basic type (:class:`bytes`, :class:`str`, :class:`int`, - :class:`float`, :class:`bool`, ``None``) will be skipped instead of raising a - :exc:`TypeError`. + of a basic type (:class:`str`, :class:`int`, :class:`float`, :class:`bool`, + ``None``) will be skipped instead of raising a :exc:`TypeError`. The :mod:`json` module always produces :class:`str` objects, not :class:`bytes` objects. Therefore, ``fp.write()`` must support :class:`str` @@ -203,15 +202,11 @@ .. function:: loads(s, encoding=None, cls=None, object_hook=None, parse_float=None, parse_int=None, parse_constant=None, object_pairs_hook=None, **kw) - Deserialize *s* (a :class:`bytes` or :class:`str` instance containing a JSON - document) to a Python object. - - If *s* is a :class:`bytes` instance and is encoded with an ASCII based encoding - other than UTF-8 (e.g. latin-1), then an appropriate *encoding* name must be - specified. Encodings that are not ASCII based (such as UCS-2) are not - allowed and should be decoded to :class:`str` first. + Deserialize *s* (a :class:`str` instance containing a JSON document) to a + Python object. - The other arguments have the same meaning as in :func:`load`. + The other arguments have the same meaning as in :func:`load`, except + *encoding* which is ignored and deprecated. Encoders and decoders Modified: python/branches/py3k-cdecimal/Doc/library/logging.config.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/logging.config.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/logging.config.rst Fri Mar 4 18:50:17 2011 @@ -72,6 +72,8 @@ this new subclass, and then :func:`dictConfig` could be called exactly as in the default, uncustomized state. + .. versionadded:: 3.2 + .. function:: fileConfig(fname[, defaults]) Reads the logging configuration from a :mod:`configparser`\-format file named Modified: python/branches/py3k-cdecimal/Doc/library/logging.handlers.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/logging.handlers.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/logging.handlers.rst Fri Mar 4 18:50:17 2011 @@ -326,12 +326,35 @@ them on the receiving end, or alternatively you can disable unpickling of global objects on the receiving end. + .. method:: send(packet) Send a pickled string *packet* to the socket. This function allows for partial sends which can happen when the network is busy. + .. method:: createSocket() + + Tries to create a socket; on failure, uses an exponential back-off + algorithm. On intial failure, the handler will drop the message it was + trying to send. When subsequent messages are handled by the same + instance, it will not try connecting until some time has passed. The + default parameters are such that the initial delay is one second, and if + after that delay the connection still can't be made, the handler will + double the delay each time up to a maximum of 30 seconds. + + This behaviour is controlled by the following handler attributes: + + * ``retryStart`` (initial delay, defaulting to 1.0 seconds). + * ``retryFactor`` (multiplier, defaulting to 2.0). + * ``retryMax`` (maximum delay, defaulting to 30.0 seconds). + + This means that if the remote listener starts up *after* the handler has + been used, you could lose messages (since the handler won't even attempt + a connection until the delay has elapsed, but just silently drop messages + during the delay period). + + .. _datagram-handler: DatagramHandler @@ -815,6 +838,15 @@ Note that if you don't call this before your application exits, there may be some records still left on the queue, which won't be processed. + .. method:: enqueue_sentinel() + + Writes a sentinel to the queue to tell the listener to quit. This + implementation uses ``put_nowait()``. You may want to override this + method if you want to use timeouts or work with custom queue + implementations. + + .. versionadded:: 3.3 + .. seealso:: Modified: python/branches/py3k-cdecimal/Doc/library/mailbox.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/mailbox.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/mailbox.rst Fri Mar 4 18:50:17 2011 @@ -81,13 +81,16 @@ it. Parameter *message* may be a :class:`Message` instance, an - :class:`email.Message.Message` instance, a string, or a file-like object - (which should be open in text mode). If *message* is an instance of the + :class:`email.Message.Message` instance, a string, a byte string, or a + file-like object (which should be open in binary mode). If *message* is + an instance of the appropriate format-specific :class:`Message` subclass (e.g., if it's an :class:`mboxMessage` instance and this is an :class:`mbox` instance), its format-specific information is used. Otherwise, reasonable defaults for format-specific information are used. + .. versionchanged:: 3.2 support for binary input + .. method:: remove(key) __delitem__(key) @@ -108,8 +111,9 @@ :exc:`KeyError` exception if no message already corresponds to *key*. As with :meth:`add`, parameter *message* may be a :class:`Message` - instance, an :class:`email.Message.Message` instance, a string, or a - file-like object (which should be open in text mode). If *message* is an + instance, an :class:`email.Message.Message` instance, a string, a byte + string, or a file-like object (which should be open in binary mode). If + *message* is an instance of the appropriate format-specific :class:`Message` subclass (e.g., if it's an :class:`mboxMessage` instance and this is an :class:`mbox` instance), its format-specific information is @@ -171,10 +175,20 @@ raise a :exc:`KeyError` exception if no such message exists. + .. method:: get_bytes(key) + + Return a byte representation of the message corresponding to *key*, or + raise a :exc:`KeyError` exception if no such message exists. + + .. versionadded:: 3.2 + + .. method:: get_string(key) Return a string representation of the message corresponding to *key*, or - raise a :exc:`KeyError` exception if no such message exists. + raise a :exc:`KeyError` exception if no such message exists. The + message is processed through :class:`email.message.Message` to + convert it to a 7bit clean representation. .. method:: get_file(key) @@ -184,9 +198,11 @@ file-like object behaves as if open in binary mode. This file should be closed once it is no longer needed. - .. versionadded:: 3.2 - The file-like object supports the context manager protocol, so that - you can use a :keyword:`with` statement to automatically close it. + .. versionchanged:: 3.2 + The file object really is a binary file; previously it was incorrectly + returned in text mode. Also, the file-like object now supports the + context manager protocol: you can use a :keyword:`with` statement to + automatically close it. .. note:: @@ -746,9 +762,11 @@ If *message* is omitted, the new instance is created in a default, empty state. If *message* is an :class:`email.Message.Message` instance, its contents are copied; furthermore, any format-specific information is converted insofar as - possible if *message* is a :class:`Message` instance. If *message* is a string + possible if *message* is a :class:`Message` instance. If *message* is a string, + a byte string, or a file, it should contain an :rfc:`2822`\ -compliant message, which is read - and parsed. + and parsed. Files should be open in binary mode, but text mode files + are accepted for backward compatibility. The format-specific state and behaviors offered by subclasses vary, but in general it is only the properties that are not specific to a particular Modified: python/branches/py3k-cdecimal/Doc/library/mailcap.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/mailcap.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/mailcap.rst Fri Mar 4 18:50:17 2011 @@ -4,6 +4,9 @@ .. module:: mailcap :synopsis: Mailcap file handling. +**Source code:** :source:`Lib/mailcap.py` + +-------------- Mailcap files are used to configure how MIME-aware applications such as mail readers and Web browsers react to files with different MIME types. (The name Modified: python/branches/py3k-cdecimal/Doc/library/mimetypes.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/mimetypes.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/mimetypes.rst Fri Mar 4 18:50:17 2011 @@ -8,6 +8,10 @@ .. index:: pair: MIME; content type +**Source code:** :source:`Lib/mimetypes.py` + +-------------- + The :mod:`mimetypes` module converts between a filename or URL and the MIME type associated with the filename extension. Conversions are provided from filename to MIME type and from MIME type to filename extension; encodings are not Modified: python/branches/py3k-cdecimal/Doc/library/modulefinder.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/modulefinder.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/modulefinder.rst Fri Mar 4 18:50:17 2011 @@ -7,6 +7,9 @@ .. module:: modulefinder :synopsis: Find modules used by a script. +**Source code:** :source:`Lib/modulefinder.py` + +-------------- This module provides a :class:`ModuleFinder` class that can be used to determine the set of modules imported by a script. ``modulefinder.py`` can also be run as Modified: python/branches/py3k-cdecimal/Doc/library/multiprocessing.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/multiprocessing.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/multiprocessing.rst Fri Mar 4 18:50:17 2011 @@ -297,7 +297,7 @@ :class:`Process` and exceptions ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -.. class:: Process([group[, target[, name[, args[, kwargs]]]]]) +.. class:: Process([group[, target[, name[, args[, kwargs]]]]], *, daemon=None) Process objects represent activity that is run in a separate process. The :class:`Process` class has equivalents of all the methods of @@ -312,13 +312,19 @@ :sub:`1`,N\ :sub:`2`,...,N\ :sub:`k` is a sequence of integers whose length is determined by the *generation* of the process. *args* is the argument tuple for the target invocation. *kwargs* is a dictionary of keyword - arguments for the target invocation. By default, no arguments are passed to - *target*. + arguments for the target invocation. If provided, the keyword-only *daemon* argument + sets the process :attr:`daemon` flag to ``True`` or ``False``. If ``None`` + (the default), this flag will be inherited from the creating process. + + By default, no arguments are passed to *target*. If a subclass overrides the constructor, it must make sure it invokes the base class constructor (:meth:`Process.__init__`) before doing anything else to the process. + .. versionchanged:: 3.3 + Added the *daemon* argument. + .. method:: run() Method representing the process's activity. Modified: python/branches/py3k-cdecimal/Doc/library/netrc.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/netrc.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/netrc.rst Fri Mar 4 18:50:17 2011 @@ -7,6 +7,9 @@ .. moduleauthor:: Eric S. Raymond .. sectionauthor:: Eric S. Raymond +**Source code:** :source:`Lib/netrc.py` + +-------------- The :class:`netrc` class parses and encapsulates the netrc file format used by the Unix :program:`ftp` program and other FTP clients. Modified: python/branches/py3k-cdecimal/Doc/library/nntplib.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/nntplib.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/nntplib.rst Fri Mar 4 18:50:17 2011 @@ -10,6 +10,10 @@ pair: NNTP; protocol single: Network News Transfer Protocol +**Source code:** :source:`Lib/nntplib.py` + +-------------- + This module defines the class :class:`NNTP` which implements the client side of the Network News Transfer Protocol. It can be used to implement a news reader or poster, or automated news processors. It is compatible with :rfc:`3977` @@ -66,10 +70,23 @@ connecting to an NNTP server on the local machine and intend to call reader-specific commands, such as ``group``. If you get unexpected :exc:`NNTPPermanentError`\ s, you might need to set *readermode*. + :class:`NNTP` class supports the :keyword:`with` statement to + unconditionally consume :exc:`socket.error` exceptions and to close the NNTP + connection when done. Here is a sample on how using it: + + >>> from nntplib import NNTP + >>> with nntplib.NNTP('news.gmane.org') as n: + ... n.group('gmane.comp.python.committers') + ... + ('211 1454 1 1454 gmane.comp.python.committers', '1454', '1', '1454', 'gmane.comp.python.committers') + >>> + .. versionchanged:: 3.2 *usenetrc* is now False by default. + .. versionchanged:: 3.3 + Support for the :keyword:`with` statement was added. .. class:: NNTP_SSL(host, port=563, user=None, password=None, ssl_context=None, readermode=None, usenetrc=False, [timeout]) Modified: python/branches/py3k-cdecimal/Doc/library/operator.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/operator.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/operator.rst Fri Mar 4 18:50:17 2011 @@ -9,7 +9,7 @@ .. testsetup:: import operator - from operator import itemgetter + from operator import itemgetter, iadd The :mod:`operator` module exports a set of functions implemented in C Modified: python/branches/py3k-cdecimal/Doc/library/optparse.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/optparse.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/optparse.rst Fri Mar 4 18:50:17 2011 @@ -4,14 +4,16 @@ .. module:: optparse :synopsis: Command-line option parsing library. :deprecated: - -.. deprecated:: 2.7 - The :mod:`optparse` module is deprecated and will not be developed further; - development will continue with the :mod:`argparse` module. - .. moduleauthor:: Greg Ward .. sectionauthor:: Greg Ward +**Source code:** :source:`Lib/optparse.py` + +-------------- + +.. deprecated:: 2.7 + The :mod:`optparse` module is deprecated and will not be developed further; + development will continue with the :mod:`argparse` module. :mod:`optparse` is a more convenient, flexible, and powerful library for parsing command-line options than the old :mod:`getopt` module. :mod:`optparse` uses a Modified: python/branches/py3k-cdecimal/Doc/library/os.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/os.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/os.rst Fri Mar 4 18:50:17 2011 @@ -286,6 +286,22 @@ .. versionchanged:: 3.2 Added support for Windows. +.. function:: getpriority(which, who) + + .. index:: single: process; scheduling priority + + Get program scheduling priority. The value *which* is one of + :const:`PRIO_PROCESS`, :const:`PRIO_PGRP`, or :const:`PRIO_USER`, and *who* + is interpreted relative to *which* (a process identifier for + :const:`PRIO_PROCESS`, process group identifier for :const:`PRIO_PGRP`, and a + user ID for :const:`PRIO_USER`). A zero value for *who* denotes + (respectively) the calling process, the process group of the calling process, + or the real user ID of the calling process. + + Availability: Unix + + .. versionadded:: 3.3 + .. function:: getresuid() Return a tuple (ruid, euid, suid) denoting the current process's @@ -336,6 +352,15 @@ .. versionadded:: 3.2 +.. data:: PRIO_PROCESS + PRIO_PGRP + PRIO_USER + + Parameters for :func:`getpriority` and :func:`setpriority` functions. + + Availability: Unix. + + .. versionadded:: 3.3 .. function:: putenv(key, value) @@ -405,6 +430,25 @@ Availability: Unix. +.. function:: setpriority(which, who, priority) + + .. index:: single: process; scheduling priority + + Set program scheduling priority. The value *which* is one of + :const:`PRIO_PROCESS`, :const:`PRIO_PGRP`, or :const:`PRIO_USER`, and *who* + is interpreted relative to *which* (a process identifier for + :const:`PRIO_PROCESS`, process group identifier for :const:`PRIO_PGRP`, and a + user ID for :const:`PRIO_USER`). A zero value for *who* denotes + (respectively) the calling process, the process group of the calling process, + or the real user ID of the calling process. + *priority* is a value in the range -20 to 19. The default priority is 0; + lower priorities cause more favorable scheduling. + + Availability: Unix + + .. versionadded:: 3.3 + + .. function:: setregid(rgid, egid) Set the current process's real and effective group ids. @@ -562,6 +606,21 @@ descriptor directly will bypass the file object methods, ignoring aspects such as internal buffering of data. +.. data:: AT_SYMLINK_NOFOLLOW + AT_EACCESS + AT_FDCWD + AT_REMOVEDIR + AT_SYMLINK_FOLLOW + UTIME_NOW + UTIME_OMIT + + These parameters are used as flags to the \*at family of functions. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: close(fd) Close file descriptor *fd*. @@ -610,6 +669,19 @@ Availability: Unix, Windows. +.. function:: faccessat(dirfd, path, mode, flags=0) + + Like :func:`access` but if *path* is relative, it is taken as relative to *dirfd*. + *flags* is optional and can be constructed by ORing together zero or more + of these values: :data:`AT_SYMLINK_NOFOLLOW`, :data:`AT_EACCESS`. + If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path* + is interpreted relative to the current working directory. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: fchmod(fd, mode) Change the mode of the file given by *fd* to the numeric *mode*. See the docs @@ -618,6 +690,18 @@ Availability: Unix. +.. function:: fchmodat(dirfd, path, mode, flags=0) + + Like :func:`chmod` but if *path* is relative, it is taken as relative to *dirfd*. + *flags* is optional and may be 0 or :data:`AT_SYMLINK_NOFOLLOW`. + If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path* + is interpreted relative to the current working directory. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: fchown(fd, uid, gid) Change the owner and group id of the file given by *fd* to the numeric *uid* @@ -626,6 +710,18 @@ Availability: Unix. +.. function:: fchownat(dirfd, path, uid, gid, flags=0) + + Like :func:`chown` but if *path* is relative, it is taken as relative to *dirfd*. + *flags* is optional and may be 0 or :data:`AT_SYMLINK_NOFOLLOW`. + If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path* + is interpreted relative to the current working directory. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: fdatasync(fd) Force write of file with filedescriptor *fd* to disk. Does not force update of @@ -637,6 +733,16 @@ This function is not available on MacOS. +.. function:: fdlistdir(fd) + + Like :func:`listdir`, but uses a file descriptor instead and always returns + strings. After execution of this function, *fd* will be closed. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: fpathconf(fd, name) Return system configuration information relevant to an open file. *name* @@ -657,10 +763,21 @@ .. function:: fstat(fd) - Return status for file descriptor *fd*, like :func:`stat`. + Return status for file descriptor *fd*, like :func:`~os.stat`. Availability: Unix, Windows. +.. function:: fstatat(dirfd, path, flags=0) + + Like :func:`stat` but if *path* is relative, it is taken as relative to *dirfd*. + *flags* is optional and may be 0 or :data:`AT_SYMLINK_NOFOLLOW`. + If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path* + is interpreted relative to the current working directory. + + Availability: Unix. + + .. versionadded:: 3.3 + .. function:: fstatvfs(fd) @@ -690,6 +807,18 @@ Availability: Unix. +.. function:: futimesat(dirfd, path, (atime, mtime)) + futimesat(dirfd, path, None) + + Like :func:`utime` but if *path* is relative, it is taken as relative to *dirfd*. + If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path* + is interpreted relative to the current working directory. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: isatty(fd) Return ``True`` if the file descriptor *fd* is open and connected to a @@ -698,6 +827,20 @@ Availability: Unix. +.. function:: linkat(srcfd, srcpath, dstfd, dstpath, flags=0) + + Like :func:`link` but if *srcpath* is relative, it is taken as relative to *srcfd* + and if *dstpath* is relative, it is taken as relative to *dstfd*. + *flags* is optional and may be 0 or :data:`AT_SYMLINK_FOLLOW`. + If *srcpath* is relative and *srcfd* is the special value :data:`AT_FDCWD`, then + *srcpath* is interpreted relative to the current working directory. This + also applies for *dstpath*. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: lseek(fd, pos, how) Set the current position of file descriptor *fd* to position *pos*, modified @@ -717,6 +860,39 @@ respectively. Availability: Windows, Unix. +.. function:: mkdirat(dirfd, path, mode=0o777) + + Like :func:`mkdir` but if *path* is relative, it is taken as relative to *dirfd*. + If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path* + is interpreted relative to the current working directory. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: mkfifoat(dirfd, path, mode=0o666) + + Like :func:`mkfifo` but if *path* is relative, it is taken as relative to *dirfd*. + If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path* + is interpreted relative to the current working directory. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: mknodat(dirfd, path, mode=0o600, device=0) + + Like :func:`mknod` but if *path* is relative, it is taken as relative to *dirfd*. + If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path* + is interpreted relative to the current working directory. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: open(file, flags[, mode]) Open the file *file* and set various flags according to *flags* and possibly @@ -739,6 +915,17 @@ wrap a file descriptor in a file object, use :func:`fdopen`. +.. function:: openat(dirfd, path, flags, mode=0o777) + + Like :func:`open` but if *path* is relative, it is taken as relative to *dirfd*. + If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path* + is interpreted relative to the current working directory. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: openpty() .. index:: module: pty @@ -775,6 +962,82 @@ :meth:`~file.readline` methods. +.. function:: sendfile(out, in, offset, nbytes) + sendfile(out, in, offset, nbytes, headers=None, trailers=None, flags=0) + + Copy *nbytes* bytes from file descriptor *in* to file descriptor *out* + starting at *offset*. + Return the number of bytes sent. When EOF is reached return 0. + + The first function notation is supported by all platforms that define + :func:`sendfile`. + + On Linux, if *offset* is given as ``None``, the bytes are read from the + current position of *in* and the position of *in* is updated. + + The second case may be used on Mac OS X and FreeBSD where *headers* and + *trailers* are arbitrary sequences of buffers that are written before and + after the data from *in* is written. It returns the same as the first case. + + On Mac OS X and FreeBSD, a value of 0 for *nbytes* specifies to send until + the end of *in* is reached. + + On Solaris, *out* may be the file descriptor of a regular file or the file + descriptor of a socket. On all other platforms, *out* must be the file + descriptor of an open socket. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. data:: SF_NODISKIO + SF_MNOWAIT + SF_SYNC + + Parameters to the :func:`sendfile` function, if the implementation supports + them. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: readlinkat(dirfd, path) + + Like :func:`readlink` but if *path* is relative, it is taken as relative to *dirfd*. + If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path* + is interpreted relative to the current working directory. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: renameat(olddirfd, oldpath, newdirfd, newpath) + + Like :func:`rename` but if *oldpath* is relative, it is taken as relative to + *olddirfd* and if *newpath* is relative, it is taken as relative to *newdirfd*. + If *oldpath* is relative and *olddirfd* is the special value :data:`AT_FDCWD`, then + *oldpath* is interpreted relative to the current working directory. This + also applies for *newpath*. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: symlinkat(src, dstfd, dst) + + Like :func:`symlink` but if *dst* is relative, it is taken as relative to *dstfd*. + If *dst* is relative and *dstfd* is the special value :data:`AT_FDCWD`, then *dst* + is interpreted relative to the current working directory. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: tcgetpgrp(fd) Return the process group associated with the terminal given by *fd* (an open @@ -800,6 +1063,38 @@ Availability: Unix. +.. function:: unlinkat(dirfd, path, flags=0) + + Like :func:`unlink` but if *path* is relative, it is taken as relative to *dirfd*. + *flags* is optional and may be 0 or :data:`AT_REMOVEDIR`. If :data:`AT_REMOVEDIR` is + specified, :func:`unlinkat` behaves like :func:`rmdir`. + If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path* + is interpreted relative to the current working directory. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: utimensat(dirfd, path, (atime_sec, atime_nsec), (mtime_sec, mtime_nsec), flags) + utimensat(dirfd, path, None, None, flags) + + Updates the timestamps of a file with nanosecond precision. + The second form sets *atime* and *mtime* to the current time. + If *atime_nsec* or *mtime_nsec* is specified as :data:`UTIME_NOW`, the corresponding + timestamp is updated to the current time. + If *atime_nsec* or *mtime_nsec* is specified as :data:`UTIME_OMIT`, the corresponding + timestamp is not updated. + If *path* is relative, it is taken as relative to *dirfd*. + *flags* is optional and may be 0 or :data:`AT_SYMLINK_NOFOLLOW`. + If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path* + is interpreted relative to the current working directory. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: write(fd, str) Write the bytestring in *str* to file descriptor *fd*. Return the number of @@ -1080,8 +1375,10 @@ .. function:: lstat(path) - Like :func:`stat`, but do not follow symbolic links. This is an alias for - :func:`stat` on platforms that do not support symbolic links. + Perform the equivalent of an :c:func:`lstat` system call on the given path. + Similar to :func:`~os.stat`, but does not follow symbolic links. On + platforms that do not support symbolic links, this is an alias for + :func:`~os.stat`. .. versionchanged:: 3.2 Added support for Windows 6.0 (Vista) symbolic links. @@ -1276,56 +1573,75 @@ .. function:: stat(path) - Perform a :c:func:`stat` system call on the given path. The return value is an - object whose attributes correspond to the members of the :c:type:`stat` - structure, namely: :attr:`st_mode` (protection bits), :attr:`st_ino` (inode - number), :attr:`st_dev` (device), :attr:`st_nlink` (number of hard links), - :attr:`st_uid` (user id of owner), :attr:`st_gid` (group id of owner), - :attr:`st_size` (size of file, in bytes), :attr:`st_atime` (time of most recent - access), :attr:`st_mtime` (time of most recent content modification), - :attr:`st_ctime` (platform dependent; time of most recent metadata change on - Unix, or the time of creation on Windows):: + Perform the equivalent of a :c:func:`stat` system call on the given path. + (This function follows symlinks; to stat a symlink use :func:`lstat`.) - >>> import os - >>> statinfo = os.stat('somefile.txt') - >>> statinfo - (33188, 422511, 769, 1, 1032, 100, 926, 1105022698,1105022732, 1105022732) - >>> statinfo.st_size - 926 - >>> + The return value is an object whose attributes correspond to the members + of the :c:type:`stat` structure, namely: + * :attr:`st_mode` - protection bits, + * :attr:`st_ino` - inode number, + * :attr:`st_dev` - device, + * :attr:`st_nlink` - number of hard links, + * :attr:`st_uid` - user id of owner, + * :attr:`st_gid` - group id of owner, + * :attr:`st_size` - size of file, in bytes, + * :attr:`st_atime` - time of most recent access, + * :attr:`st_mtime` - time of most recent content modification, + * :attr:`st_ctime` - platform dependent; time of most recent metadata change on + Unix, or the time of creation on Windows) On some Unix systems (such as Linux), the following attributes may also be - available: :attr:`st_blocks` (number of blocks allocated for file), - :attr:`st_blksize` (filesystem blocksize), :attr:`st_rdev` (type of device if an - inode device). :attr:`st_flags` (user defined flags for file). + available: + + * :attr:`st_blocks` - number of blocks allocated for file + * :attr:`st_blksize` - filesystem blocksize + * :attr:`st_rdev` - type of device if an inode device + * :attr:`st_flags` - user defined flags for file On other Unix systems (such as FreeBSD), the following attributes may be - available (but may be only filled out if root tries to use them): :attr:`st_gen` - (file generation number), :attr:`st_birthtime` (time of file creation). + available (but may be only filled out if root tries to use them): + + * :attr:`st_gen` - file generation number + * :attr:`st_birthtime` - time of file creation On Mac OS systems, the following attributes may also be available: - :attr:`st_rsize`, :attr:`st_creator`, :attr:`st_type`. - .. index:: module: stat + * :attr:`st_rsize` + * :attr:`st_creator` + * :attr:`st_type` + + .. note:: + + The exact meaning and resolution of the :attr:`st_atime`, :attr:`st_mtime`, and + :attr:`st_ctime` members depends on the operating system and the file system. + For example, on Windows systems using the FAT or FAT32 file systems, + :attr:`st_mtime` has 2-second resolution, and :attr:`st_atime` has only 1-day + resolution. See your operating system documentation for details. - For backward compatibility, the return value of :func:`stat` is also accessible + For backward compatibility, the return value of :func:`~os.stat` is also accessible as a tuple of at least 10 integers giving the most important (and portable) members of the :c:type:`stat` structure, in the order :attr:`st_mode`, :attr:`st_ino`, :attr:`st_dev`, :attr:`st_nlink`, :attr:`st_uid`, :attr:`st_gid`, :attr:`st_size`, :attr:`st_atime`, :attr:`st_mtime`, :attr:`st_ctime`. More items may be added at the end by some implementations. + + .. index:: module: stat + The standard module :mod:`stat` defines functions and constants that are useful for extracting information from a :c:type:`stat` structure. (On Windows, some items are filled with dummy values.) - .. note:: + Example:: - The exact meaning and resolution of the :attr:`st_atime`, :attr:`st_mtime`, and - :attr:`st_ctime` members depends on the operating system and the file system. - For example, on Windows systems using the FAT or FAT32 file systems, - :attr:`st_mtime` has 2-second resolution, and :attr:`st_atime` has only 1-day - resolution. See your operating system documentation for details. + >>> import os + >>> statinfo = os.stat('somefile.txt') + >>> statinfo + posix.stat_result(st_mode=33188, st_ino=7876932, st_dev=234881026, + st_nlink=1, st_uid=501, st_gid=501, st_size=264, st_atime=1297230295, + st_mtime=1297230027, st_ctime=1297230027) + >>> statinfo.st_size + 264 Availability: Unix, Windows. @@ -1333,7 +1649,7 @@ .. function:: stat_float_times([newvalue]) Determine whether :class:`stat_result` represents time stamps as float objects. - If *newvalue* is ``True``, future calls to :func:`stat` return floats, if it is + If *newvalue* is ``True``, future calls to :func:`~os.stat` return floats, if it is ``False``, future calls return ints. If *newvalue* is omitted, return the current setting. @@ -1430,8 +1746,8 @@ respectively. Whether a directory can be given for *path* depends on whether the operating system implements directories as files (for example, Windows does not). Note that the exact times you set here may not be returned by a - subsequent :func:`stat` call, depending on the resolution with which your - operating system records access and modification times; see :func:`stat`. + subsequent :func:`~os.stat` call, depending on the resolution with which your + operating system records access and modification times; see :func:`~os.stat`. Availability: Unix, Windows. Modified: python/branches/py3k-cdecimal/Doc/library/pdb.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/pdb.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/pdb.rst Fri Mar 4 18:50:17 2011 @@ -131,7 +131,7 @@ :data:`sys.last_traceback`. -The ``run_*`` functions and :func:`set_trace` are aliases for instantiating the +The ``run*`` functions and :func:`set_trace` are aliases for instantiating the :class:`Pdb` class and calling the method of the same name. If you want to access further features, you have to do this yourself: Modified: python/branches/py3k-cdecimal/Doc/library/pickletools.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/pickletools.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/pickletools.rst Fri Mar 4 18:50:17 2011 @@ -5,6 +5,11 @@ :synopsis: Contains extensive comments about the pickle protocols and pickle-machine opcodes, as well as some useful functions. +**Source code:** :source:`Lib/pickletools.py` + +-------------- + + This module contains various constants relating to the intimate details of the :mod:`pickle` module, some lengthy comments about the implementation, and a few useful functions for analyzing pickled data. The contents of this module @@ -12,6 +17,65 @@ ordinary users of the :mod:`pickle` module probably won't find the :mod:`pickletools` module relevant. +Command line usage +------------------ + +.. versionadded:: 3.2 + +When invoked from the command line, ``python -m pickletools`` will +disassemble the contents of one or more pickle files. Note that if +you want to see the Python object stored in the pickle rather than the +details of pickle format, you may want to use ``-m pickle`` instead. +However, when the pickle file that you want to examine comes from an +untrusted source, ``-m pickletools`` is a safer option because it does +not execute pickle bytecode. + +For example, with a tuple ``(1, 2)`` pickled in file ``x.pickle``:: + + $ python -m pickle x.pickle + (1, 2) + + $ python -m pickletools x.pickle + 0: \x80 PROTO 3 + 2: K BININT1 1 + 4: K BININT1 2 + 6: \x86 TUPLE2 + 7: q BINPUT 0 + 9: . STOP + highest protocol among opcodes = 2 + +Command line options +^^^^^^^^^^^^^^^^^^^^ + +.. program:: pickletools + +.. cmdoption:: -a, --annotate + + Annotate each line with a short opcode description. + +.. cmdoption:: -o, --output= + + Name of a file where the output should be written. + +.. cmdoption:: -l, --indentlevel= + + The number of blanks by which to indent a new MARK level. + +.. cmdoption:: -m, --memo + + When multiple objects are disassembled, preserve memo between + disassemblies. + +.. cmdoption:: -p, --preamble= + + When more than one pickle file are specified, print given preamble + before each disassembly. + + + +Programmatic Interface +---------------------- + .. function:: dis(pickle, out=None, memo=None, indentlevel=4, annotate=0) Modified: python/branches/py3k-cdecimal/Doc/library/pipes.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/pipes.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/pipes.rst Fri Mar 4 18:50:17 2011 @@ -6,6 +6,9 @@ :synopsis: A Python interface to Unix shell pipelines. .. sectionauthor:: Moshe Zadka +**Source code:** :source:`Lib/pipes.py` + +-------------- The :mod:`pipes` module defines a class to abstract the concept of a *pipeline* --- a sequence of converters from one file to another. Modified: python/branches/py3k-cdecimal/Doc/library/pkgutil.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/pkgutil.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/pkgutil.rst Fri Mar 4 18:50:17 2011 @@ -4,6 +4,10 @@ .. module:: pkgutil :synopsis: Utilities for the import system. +**Source code:** :source:`Lib/pkgutil.py` + +-------------- + This module provides utilities for the import system, in particular package support. Modified: python/branches/py3k-cdecimal/Doc/library/platform.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/platform.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/platform.rst Fri Mar 4 18:50:17 2011 @@ -6,6 +6,9 @@ .. moduleauthor:: Marc-Andre Lemburg .. sectionauthor:: Bjorn Pettersen +**Source code:** :source:`Lib/platform.py` + +-------------- .. note:: @@ -211,6 +214,10 @@ preferring :func:`win32pipe.popen`. On Windows NT, :func:`win32pipe.popen` should work; on Windows 9x it hangs due to bugs in the MS C library. + .. deprecated:: 3.3 + This function is obsolete. Use the :mod:`subprocess` module. Check + especially the :ref:`subprocess-replacements` section. + Mac OS Platform --------------- Modified: python/branches/py3k-cdecimal/Doc/library/plistlib.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/plistlib.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/plistlib.rst Fri Mar 4 18:50:17 2011 @@ -11,6 +11,10 @@ pair: plist; file single: property list +**Source code:** :source:`Lib/plistlib.py` + +-------------- + This module provides an interface for reading and writing the "property list" XML files used mainly by Mac OS X. Modified: python/branches/py3k-cdecimal/Doc/library/poplib.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/poplib.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/poplib.rst Fri Mar 4 18:50:17 2011 @@ -8,6 +8,10 @@ .. index:: pair: POP3; protocol +**Source code:** :source:`Lib/poplib.py` + +-------------- + This module defines a class, :class:`POP3`, which encapsulates a connection to a POP3 server and implements the protocol as defined in :rfc:`1725`. The :class:`POP3` class supports both the minimal and optional command sets. Modified: python/branches/py3k-cdecimal/Doc/library/profile.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/profile.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/profile.rst Fri Mar 4 18:50:17 2011 @@ -9,6 +9,9 @@ .. module:: profile :synopsis: Python source profiler. +**Source code:** :source:`Lib/profile.py` and :source:`Lib/pstats.py` + +-------------- .. _profiler-introduction: Modified: python/branches/py3k-cdecimal/Doc/library/py_compile.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/py_compile.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/py_compile.rst Fri Mar 4 18:50:17 2011 @@ -8,6 +8,10 @@ .. index:: pair: file; byte-code +**Source code:** :source:`Lib/py_compile.py` + +-------------- + The :mod:`py_compile` module provides a function to generate a byte-code file from a source file, and another function used when the module source file is invoked as a script. Modified: python/branches/py3k-cdecimal/Doc/library/pyclbr.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/pyclbr.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/pyclbr.rst Fri Mar 4 18:50:17 2011 @@ -5,6 +5,9 @@ :synopsis: Supports information extraction for a Python class browser. .. sectionauthor:: Fred L. Drake, Jr. +**Source code:** :source:`Lib/pyclbr.py` + +-------------- The :mod:`pyclbr` module can be used to determine some limited information about the classes, methods and top-level functions defined in a module. The Modified: python/branches/py3k-cdecimal/Doc/library/pydoc.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/pydoc.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/pydoc.rst Fri Mar 4 18:50:17 2011 @@ -12,6 +12,10 @@ single: documentation; online single: help; online +**Source code:** :source:`Lib/pydoc.py` + +-------------- + The :mod:`pydoc` module automatically generates documentation from Python modules. The documentation can be presented as pages of text on the console, served to a Web browser, or saved to HTML files. Modified: python/branches/py3k-cdecimal/Doc/library/reprlib.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/reprlib.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/reprlib.rst Fri Mar 4 18:50:17 2011 @@ -5,6 +5,9 @@ :synopsis: Alternate repr() implementation with size limits. .. sectionauthor:: Fred L. Drake, Jr. +**Source code:** :source:`Lib/reprlib.py` + +-------------- The :mod:`reprlib` module provides a means for producing object representations with limits on the size of the resulting strings. This is used in the Python Modified: python/branches/py3k-cdecimal/Doc/library/rlcompleter.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/rlcompleter.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/rlcompleter.rst Fri Mar 4 18:50:17 2011 @@ -5,6 +5,9 @@ :synopsis: Python identifier completion, suitable for the GNU readline library. .. sectionauthor:: Moshe Zadka +**Source code:** :source:`Lib/rlcompleter.py` + +-------------- The :mod:`rlcompleter` module defines a completion function suitable for the :mod:`readline` module by completing valid Python identifiers and keywords. Modified: python/branches/py3k-cdecimal/Doc/library/runpy.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/runpy.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/runpy.rst Fri Mar 4 18:50:17 2011 @@ -5,6 +5,9 @@ :synopsis: Locate and run Python modules without importing them first. .. moduleauthor:: Nick Coghlan +**Source code:** :source:`Lib/runpy.py` + +-------------- The :mod:`runpy` module is used to locate and run Python modules without importing them first. Its main use is to implement the :option:`-m` command Modified: python/branches/py3k-cdecimal/Doc/library/select.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/select.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/select.rst Fri Mar 4 18:50:17 2011 @@ -94,11 +94,13 @@ library, and does not handle file descriptors that don't originate from WinSock. -.. attribute:: select.PIPE_BUF +.. attribute:: PIPE_BUF + + The minimum number of bytes which can be written without blocking to a pipe + when the pipe has been reported as ready for writing by :func:`select`, + :func:`poll` or another interface in this module. This doesn't apply + to other kind of file-like objects such as sockets. - Files reported as ready for writing by :func:`select`, :func:`poll` or - similar interfaces in this module are guaranteed to not block on a write - of up to :const:`PIPE_BUF` bytes. This value is guaranteed by POSIX to be at least 512. Availability: Unix. .. versionadded:: 3.2 Modified: python/branches/py3k-cdecimal/Doc/library/shelve.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/shelve.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/shelve.rst Fri Mar 4 18:50:17 2011 @@ -169,8 +169,8 @@ klist = list(d.keys()) # a list of all existing keys (slow!) # as d was opened WITHOUT writeback=True, beware: - d['xx'] = range(4) # this works as expected, but... - d['xx'].append(5) # *this doesn't!* -- d['xx'] is STILL range(4)! + d['xx'] = [0, 1, 2] # this works as expected, but... + d['xx'].append(3) # *this doesn't!* -- d['xx'] is STILL [0, 1, 2]! # having opened d without writeback=True, you need to code carefully: temp = d['xx'] # extracts the copy Modified: python/branches/py3k-cdecimal/Doc/library/shlex.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/shlex.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/shlex.rst Fri Mar 4 18:50:17 2011 @@ -8,6 +8,9 @@ .. sectionauthor:: Eric S. Raymond .. sectionauthor:: Gustavo Niemeyer +**Source code:** :source:`Lib/shlex.py` + +-------------- The :class:`shlex` class makes it easy to write lexical analyzers for simple syntaxes resembling that of the Unix shell. This will often be useful for Modified: python/branches/py3k-cdecimal/Doc/library/shutil.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/shutil.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/shutil.rst Fri Mar 4 18:50:17 2011 @@ -234,19 +234,21 @@ copytree(source, destination, ignore=_logpath) -Archives operations -------------------- +.. _archiving-operations: + +Archiving operations +-------------------- .. function:: make_archive(base_name, format, [root_dir, [base_dir, [verbose, [dry_run, [owner, [group, [logger]]]]]]]) - Create an archive file (e.g. zip or tar) and returns its name. + Create an archive file (such as zip or tar) and return its name. *base_name* is the name of the file to create, including the path, minus any format-specific extension. *format* is the archive format: one of "zip", "tar", "bztar" (if the :mod:`bz2` module is available) or "gztar". *root_dir* is a directory that will be the root directory of the - archive; i.e. we typically chdir into *root_dir* before creating the + archive; for example, we typically chdir into *root_dir* before creating the archive. *base_dir* is the directory where we start archiving from; @@ -258,6 +260,8 @@ *owner* and *group* are used when creating a tar archive. By default, uses the current owner and group. + *logger* is an instance of :class:`logging.Logger`. + .. versionadded:: 3.2 @@ -284,7 +288,7 @@ Registers an archiver for the format *name*. *function* is a callable that will be used to invoke the archiver. - If given, *extra_args* is a sequence of ``(name, value)`` that will be + If given, *extra_args* is a sequence of ``(name, value)`` pairs that will be used as extra keywords arguments when the archiver callable is used. *description* is used by :func:`get_archive_formats` which returns the @@ -316,7 +320,7 @@ .. versionadded:: 3.2 -.. function:: register_unpack_format(name, extensions, function[, extra_args[,description]]) +.. function:: register_unpack_format(name, extensions, function[, extra_args[, description]]) Registers an unpack format. *name* is the name of the format and *extensions* is a list of extensions corresponding to the format, like Modified: python/branches/py3k-cdecimal/Doc/library/site.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/site.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/site.rst Fri Mar 4 18:50:17 2011 @@ -4,6 +4,9 @@ .. module:: site :synopsis: A standard way to reference site-specific modules. +**Source code:** :source:`Lib/site.py` + +-------------- **This module is automatically imported during initialization.** The automatic import can be suppressed using the interpreter's :option:`-S` option. Modified: python/branches/py3k-cdecimal/Doc/library/smtpd.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/smtpd.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/smtpd.rst Fri Mar 4 18:50:17 2011 @@ -7,8 +7,9 @@ .. moduleauthor:: Barry Warsaw .. sectionauthor:: Moshe Zadka +**Source code:** :source:`Lib/smtpd.py` - +-------------- This module offers several classes to implement SMTP (email) servers. @@ -166,4 +167,4 @@ DATA Sets the internal state to :attr:`DATA` and stores remaining lines from the client in :attr:`received_data` until the terminator "\r\n.\r\n" is received. - ======== =================================================================== \ No newline at end of file + ======== =================================================================== Modified: python/branches/py3k-cdecimal/Doc/library/smtplib.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/smtplib.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/smtplib.rst Fri Mar 4 18:50:17 2011 @@ -10,6 +10,10 @@ pair: SMTP; protocol single: Simple Mail Transfer Protocol +**Source code:** :source:`Lib/smtplib.py` + +-------------- + The :mod:`smtplib` module defines an SMTP client session object that can be used to send mail to any Internet machine with an SMTP or ESMTP listener daemon. For details of SMTP and ESMTP operation, consult :rfc:`821` (Simple Mail Transfer Modified: python/branches/py3k-cdecimal/Doc/library/sndhdr.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/sndhdr.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/sndhdr.rst Fri Mar 4 18:50:17 2011 @@ -10,6 +10,10 @@ single: A-LAW single: u-LAW +**Source code:** :source:`Lib/sndhdr.py` + +-------------- + The :mod:`sndhdr` provides utility functions which attempt to determine the type of sound data which is in a file. When these functions are able to determine what type of sound data is stored in a file, they return a tuple ``(type, Modified: python/branches/py3k-cdecimal/Doc/library/socket.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/socket.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/socket.rst Fri Mar 4 18:50:17 2011 @@ -117,39 +117,44 @@ .. index:: module: errno - This exception is raised for socket-related errors. The accompanying value is - either a string telling what went wrong or a pair ``(errno, string)`` - representing an error returned by a system call, similar to the value - accompanying :exc:`os.error`. See the module :mod:`errno`, which contains names - for the error codes defined by the underlying operating system. + A subclass of :exc:`IOError`, this exception is raised for socket-related + errors. It is recommended that you inspect its ``errno`` attribute to + discriminate between different kinds of errors. + + .. seealso:: + The :mod:`errno` module contains symbolic names for the error codes + defined by the underlying operating system. .. exception:: herror - This exception is raised for address-related errors, i.e. for functions that use - *h_errno* in the C API, including :func:`gethostbyname_ex` and - :func:`gethostbyaddr`. - - The accompanying value is a pair ``(h_errno, string)`` representing an error - returned by a library call. *string* represents the description of *h_errno*, as - returned by the :c:func:`hstrerror` C function. + A subclass of :exc:`socket.error`, this exception is raised for + address-related errors, i.e. for functions that use *h_errno* in the POSIX + C API, including :func:`gethostbyname_ex` and :func:`gethostbyaddr`. + The accompanying value is a pair ``(h_errno, string)`` representing an + error returned by a library call. *h_errno* is a numeric value, while + *string* represents the description of *h_errno*, as returned by the + :c:func:`hstrerror` C function. .. exception:: gaierror - This exception is raised for address-related errors, for :func:`getaddrinfo` and - :func:`getnameinfo`. The accompanying value is a pair ``(error, string)`` - representing an error returned by a library call. *string* represents the - description of *error*, as returned by the :c:func:`gai_strerror` C function. The - *error* value will match one of the :const:`EAI_\*` constants defined in this - module. + A subclass of :exc:`socket.error`, this exception is raised for + address-related errors by :func:`getaddrinfo` and :func:`getnameinfo`. + The accompanying value is a pair ``(error, string)`` representing an error + returned by a library call. *string* represents the description of + *error*, as returned by the :c:func:`gai_strerror` C function. The + numeric *error* value will match one of the :const:`EAI_\*` constants + defined in this module. .. exception:: timeout - This exception is raised when a timeout occurs on a socket which has had - timeouts enabled via a prior call to :meth:`~socket.settimeout`. The - accompanying value is a string whose value is currently always "timed out". + A subclass of :exc:`socket.error`, this exception is raised when a timeout + occurs on a socket which has had timeouts enabled via a prior call to + :meth:`~socket.settimeout` (or implicitly through + :func:`~socket.setdefaulttimeout`). The accompanying value is a string + whose value is currently always "timed out". .. data:: AF_UNIX @@ -521,6 +526,16 @@ meanings. +.. function:: sethostname(name) + + Set the machine's hostname to *name*. This will raise a + :exc:`socket.error` if you don't have enough rights. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. data:: SocketType This is a Python type object that represents the socket object type. It is the Modified: python/branches/py3k-cdecimal/Doc/library/socketserver.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/socketserver.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/socketserver.rst Fri Mar 4 18:50:17 2011 @@ -4,6 +4,10 @@ .. module:: socketserver :synopsis: A framework for network servers. +**Source code:** :source:`Lib/socketserver.py` + +-------------- + The :mod:`socketserver` module simplifies the task of writing network servers. There are four basic server classes: :class:`TCPServer` uses the Internet TCP Modified: python/branches/py3k-cdecimal/Doc/library/ssl.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/ssl.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/ssl.rst Fri Mar 4 18:50:17 2011 @@ -12,6 +12,10 @@ .. index:: TLS, SSL, Transport Layer Security, Secure Sockets Layer +**Source code:** :source:`Lib/ssl.py` + +-------------- + This module provides access to Transport Layer Security (often known as "Secure Sockets Layer") encryption and peer authentication facilities for network sockets, both client-side and server-side. This module uses the OpenSSL Modified: python/branches/py3k-cdecimal/Doc/library/stat.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/stat.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/stat.rst Fri Mar 4 18:50:17 2011 @@ -6,6 +6,9 @@ os.lstat() and os.fstat(). .. sectionauthor:: Skip Montanaro +**Source code:** :source:`Lib/stat.py` + +-------------- The :mod:`stat` module defines constants and functions for interpreting the results of :func:`os.stat`, :func:`os.fstat` and :func:`os.lstat` (if they Modified: python/branches/py3k-cdecimal/Doc/library/stdtypes.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/stdtypes.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/stdtypes.rst Fri Mar 4 18:50:17 2011 @@ -197,8 +197,8 @@ operator: in operator: not in -Two more operations with the same syntactic priority, ``in`` and ``not in``, are -supported only by sequence types (below). +Two more operations with the same syntactic priority, :keyword:`in` and +:keyword:`not in`, are supported only by sequence types (below). .. _typesnumeric: @@ -1642,6 +1642,8 @@ single: append() (sequence method) single: extend() (sequence method) single: count() (sequence method) + single: clear() (sequence method) + single: copy() (sequence method) single: index() (sequence method) single: insert() (sequence method) single: pop() (sequence method) @@ -1673,6 +1675,12 @@ | ``s.extend(x)`` | same as ``s[len(s):len(s)] = | \(2) | | | x`` | | +------------------------------+--------------------------------+---------------------+ +| ``s.clear()`` | remove all items from ``s`` | | +| | | | ++------------------------------+--------------------------------+---------------------+ +| ``s.copy()`` | return a shallow copy of ``s`` | | +| | | | ++------------------------------+--------------------------------+---------------------+ | ``s.count(x)`` | return number of *i*'s for | | | | which ``s[i] == x`` | | +------------------------------+--------------------------------+---------------------+ @@ -1751,6 +1759,9 @@ (8) :meth:`sort` is not supported by :class:`bytearray` objects. + .. versionadded:: 3.3 + :meth:`clear` and :meth:`!copy` methods. + .. _bytes-methods: Modified: python/branches/py3k-cdecimal/Doc/library/string.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/string.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/string.rst Fri Mar 4 18:50:17 2011 @@ -90,7 +90,7 @@ The :class:`Formatter` class has the following public methods: - .. method:: format(format_string, *args, *kwargs) + .. method:: format(format_string, *args, **kwargs) :meth:`format` is the primary API method. It takes a format template string, and an arbitrary set of positional and keyword argument. @@ -310,10 +310,10 @@ | Option | Meaning | +=========+==========================================================+ | ``'<'`` | Forces the field to be left-aligned within the available | - | | space (this is the default). | + | | space (this is the default for most objects). | +---------+----------------------------------------------------------+ | ``'>'`` | Forces the field to be right-aligned within the | - | | available space. | + | | available space (this is the default for numbers). | +---------+----------------------------------------------------------+ | ``'='`` | Forces the padding to be placed after the sign (if any) | | | but before the digits. This is used for printing fields | @@ -595,7 +595,7 @@ Nesting arguments and more complex examples:: >>> for align, text in zip('<^>', ['left', 'center', 'right']): - ... '{0:{align}{fill}16}'.format(text, fill=align, align=align) + ... '{0:{fill}{align}16}'.format(text, fill=align, align=align) ... 'left<<<<<<<<<<<<' '^^^^^center^^^^^' Modified: python/branches/py3k-cdecimal/Doc/library/subprocess.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/subprocess.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/subprocess.rst Fri Mar 4 18:50:17 2011 @@ -519,8 +519,11 @@ ==> p1 = Popen(["dmesg"], stdout=PIPE) p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE) + p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits. output = p2.communicate()[0] +The p1.stdout.close() call after starting the p2 is important in order for p1 +to receive a SIGPIPE if p2 exits before p1. Replacing :func:`os.system` ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Modified: python/branches/py3k-cdecimal/Doc/library/sunau.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/sunau.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/sunau.rst Fri Mar 4 18:50:17 2011 @@ -5,6 +5,9 @@ :synopsis: Provide an interface to the Sun AU sound format. .. sectionauthor:: Moshe Zadka +**Source code:** :source:`Lib/sunau.py` + +-------------- The :mod:`sunau` module provides a convenient interface to the Sun AU sound format. Note that this module is interface-compatible with the modules Modified: python/branches/py3k-cdecimal/Doc/library/symbol.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/symbol.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/symbol.rst Fri Mar 4 18:50:17 2011 @@ -5,6 +5,9 @@ :synopsis: Constants representing internal nodes of the parse tree. .. sectionauthor:: Fred L. Drake, Jr. +**Source code:** :source:`Lib/symbol.py` + +-------------- This module provides constants which represent the numeric values of internal nodes of the parse tree. Unlike most Python constants, these use lower-case Modified: python/branches/py3k-cdecimal/Doc/library/sys.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/sys.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/sys.rst Fri Mar 4 18:50:17 2011 @@ -634,7 +634,7 @@ imported. The :meth:`find_module` method is called at least with the absolute name of the module being imported. If the module to be imported is contained in package then the parent package's :attr:`__path__` attribute - is passed in as a second argument. The method returns :keyword:`None` if + is passed in as a second argument. The method returns ``None`` if the module cannot be found, else returns a :term:`loader`. :data:`sys.meta_path` is searched before any implicit default finders or @@ -687,7 +687,7 @@ A dictionary acting as a cache for :term:`finder` objects. The keys are paths that have been passed to :data:`sys.path_hooks` and the values are the finders that are found. If a path is a valid file system path but no - explicit finder is found on :data:`sys.path_hooks` then :keyword:`None` is + explicit finder is found on :data:`sys.path_hooks` then ``None`` is stored to represent the implicit default finder should be used. If the path is not an existing path then :class:`imp.NullImporter` is set. Modified: python/branches/py3k-cdecimal/Doc/library/sysconfig.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/sysconfig.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/sysconfig.rst Fri Mar 4 18:50:17 2011 @@ -5,10 +5,15 @@ :synopsis: Python's configuration information .. moduleauthor:: Tarek Ziade .. sectionauthor:: Tarek Ziade -.. versionadded:: 3.2 .. index:: single: configuration information +**Source code:** :source:`Lib/sysconfig.py` + +.. versionadded:: 3.2 + +-------------- + The :mod:`sysconfig` module provides access to Python's configuration information like the list of installation paths and the configuration variables relevant for the current platform. Modified: python/branches/py3k-cdecimal/Doc/library/tabnanny.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/tabnanny.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/tabnanny.rst Fri Mar 4 18:50:17 2011 @@ -9,6 +9,10 @@ .. rudimentary documentation based on module comments +**Source code:** :source:`Lib/tabnanny.py` + +-------------- + For the time being this module is intended to be called as a script. However it is possible to import it into an IDE and use the function :func:`check` described below. Modified: python/branches/py3k-cdecimal/Doc/library/tarfile.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/tarfile.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/tarfile.rst Fri Mar 4 18:50:17 2011 @@ -8,6 +8,9 @@ .. moduleauthor:: Lars Gust?bel .. sectionauthor:: Lars Gust?bel +**Source code:** :source:`Lib/tarfile.py` + +-------------- The :mod:`tarfile` module makes it possible to read and write tar archives, including those using gzip or bz2 compression. @@ -370,19 +373,20 @@ and :meth:`close`, and also supports iteration over its lines. -.. method:: TarFile.add(name, arcname=None, recursive=True, exclude=None, filter=None) +.. method:: TarFile.add(name, arcname=None, recursive=True, exclude=None, *, filter=None) - Add the file *name* to the archive. *name* may be any type of file (directory, - fifo, symbolic link, etc.). If given, *arcname* specifies an alternative name - for the file in the archive. Directories are added recursively by default. This - can be avoided by setting *recursive* to :const:`False`. If *exclude* is given, - it must be a function that takes one filename argument and returns a boolean - value. Depending on this value the respective file is either excluded - (:const:`True`) or added (:const:`False`). If *filter* is specified it must - be a function that takes a :class:`TarInfo` object argument and returns the - changed :class:`TarInfo` object. If it instead returns :const:`None` the :class:`TarInfo` - object will be excluded from the archive. See :ref:`tar-examples` for an - example. + Add the file *name* to the archive. *name* may be any type of file + (directory, fifo, symbolic link, etc.). If given, *arcname* specifies an + alternative name for the file in the archive. Directories are added + recursively by default. This can be avoided by setting *recursive* to + :const:`False`. If *exclude* is given, it must be a function that takes one + filename argument and returns a boolean value. Depending on this value the + respective file is either excluded (:const:`True`) or added + (:const:`False`). If *filter* is specified it must be a keyword argument. It + should be a function that takes a :class:`TarInfo` object argument and + returns the changed :class:`TarInfo` object. If it instead returns + :const:`None` the :class:`TarInfo` object will be excluded from the + archive. See :ref:`tar-examples` for an example. .. versionchanged:: 3.2 Added the *filter* parameter. Modified: python/branches/py3k-cdecimal/Doc/library/telnetlib.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/telnetlib.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/telnetlib.rst Fri Mar 4 18:50:17 2011 @@ -8,6 +8,10 @@ .. index:: single: protocol; Telnet +**Source code:** :source:`Lib/telnetlib.py` + +-------------- + The :mod:`telnetlib` module provides a :class:`Telnet` class that implements the Telnet protocol. See :rfc:`854` for details about the protocol. In addition, it provides symbolic constants for the protocol characters (see below), and for the Modified: python/branches/py3k-cdecimal/Doc/library/tempfile.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/tempfile.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/tempfile.rst Fri Mar 4 18:50:17 2011 @@ -12,6 +12,10 @@ pair: temporary; file name pair: temporary; file +**Source code:** :source:`Lib/tempfile.py` + +-------------- + This module generates temporary files and directories. It works on all supported platforms. It provides three new functions, :func:`NamedTemporaryFile`, :func:`mkstemp`, and :func:`mkdtemp`, which should Modified: python/branches/py3k-cdecimal/Doc/library/threading.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/threading.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/threading.rst Fri Mar 4 18:50:17 2011 @@ -20,17 +20,6 @@ methods and functions in this module in the Python 2.x series are still supported by this module. -.. impl-detail:: - - Due to the :term:`Global Interpreter Lock`, in CPython only one thread - can execute Python code at once (even though certain performance-oriented - libraries might overcome this limitation). - If you want your application to make better of use of the computational - resources of multi-core machines, you are advised to use - :mod:`multiprocessing` or :class:`concurrent.futures.ProcessPoolExecutor`. - However, threading is still an appropriate model if you want to run - multiple I/O-bound tasks simultaneously. - This module defines the following functions and objects: @@ -241,7 +230,7 @@ A thread can be flagged as a "daemon thread". The significance of this flag is that the entire Python program exits when only daemon threads are left. The initial value is inherited from the creating thread. The flag can be set -through the :attr:`daemon` property. +through the :attr:`daemon` property or the *daemon* constructor argument. There is a "main thread" object; this corresponds to the initial thread of control in the Python program. It is not a daemon thread. @@ -254,7 +243,8 @@ impossible to detect the termination of alien threads. -.. class:: Thread(group=None, target=None, name=None, args=(), kwargs={}) +.. class:: Thread(group=None, target=None, name=None, args=(), kwargs={}, + verbose=None, *, daemon=None) This constructor should always be called with keyword arguments. Arguments are: @@ -273,10 +263,19 @@ *kwargs* is a dictionary of keyword arguments for the target invocation. Defaults to ``{}``. + *verbose* is a flag used for debugging messages. + + If not ``None``, *daemon* explicitly sets whether the thread is daemonic. + If ``None`` (the default), the daemonic property is inherited from the + current thread. + If the subclass overrides the constructor, it must make sure to invoke the base class constructor (``Thread.__init__()``) before doing anything else to the thread. + .. versionchanged:: 3.3 + Added the *daemon* argument. + .. method:: start() Start the thread's activity. @@ -284,7 +283,7 @@ It must be called at most once per thread object. It arranges for the object's :meth:`run` method to be invoked in a separate thread of control. - This method will raise a :exc:`RuntimeException` if called more than once + This method will raise a :exc:`RuntimeError` if called more than once on the same thread object. .. method:: run() @@ -364,6 +363,18 @@ property instead. +.. impl-detail:: + + Due to the :term:`Global Interpreter Lock`, in CPython only one thread + can execute Python code at once (even though certain performance-oriented + libraries might overcome this limitation). + If you want your application to make better of use of the computational + resources of multi-core machines, you are advised to use + :mod:`multiprocessing` or :class:`concurrent.futures.ProcessPoolExecutor`. + However, threading is still an appropriate model if you want to run + multiple I/O-bound tasks simultaneously. + + .. _lock-objects: Lock Objects @@ -868,7 +879,7 @@ constructor. The return value is an integer in the range 0 to *parties* -- 1, different - for each thrad. This can be used to select a thread to do some special + for each thread. This can be used to select a thread to do some special housekeeping, e.g.:: i = barrier.wait() Modified: python/branches/py3k-cdecimal/Doc/library/timeit.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/timeit.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/timeit.rst Fri Mar 4 18:50:17 2011 @@ -9,6 +9,10 @@ single: Benchmarking single: Performance +**Source code:** :source:`Lib/timeit.py` + +-------------- + This module provides a simple way to time small bits of Python code. It has both command line as well as callable interfaces. It avoids a number of common traps for measuring execution times. See also Tim Peters' introduction to the Modified: python/branches/py3k-cdecimal/Doc/library/tkinter.tix.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/tkinter.tix.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/tkinter.tix.rst Fri Mar 4 18:50:17 2011 @@ -499,8 +499,8 @@ To view the current settings, the common usage is:: - import Tix - root = Tix.Tk() + from tkinter import tix + root = tix.Tk() print(root.tix_configure()) Modified: python/branches/py3k-cdecimal/Doc/library/token.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/token.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/token.rst Fri Mar 4 18:50:17 2011 @@ -5,6 +5,9 @@ :synopsis: Constants representing terminal nodes of the parse tree. .. sectionauthor:: Fred L. Drake, Jr. +**Source code:** :source:`Lib/token.py` + +-------------- This module provides constants which represent the numeric values of leaf nodes of the parse tree (terminal tokens). Refer to the file :file:`Grammar/Grammar` Modified: python/branches/py3k-cdecimal/Doc/library/turtle.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/turtle.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/turtle.rst Fri Mar 4 18:50:17 2011 @@ -1878,7 +1878,7 @@ >>> cv = screen.getcanvas() >>> cv - + .. function:: getshapes() Modified: python/branches/py3k-cdecimal/Doc/library/types.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/types.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/types.rst Fri Mar 4 18:50:17 2011 @@ -4,6 +4,9 @@ .. module:: types :synopsis: Names for built-in types. +**Source code:** :source:`Lib/types.py` + +-------------- This module defines names for some object types that are used by the standard Python interpreter, but not exposed as builtins like :class:`int` or Modified: python/branches/py3k-cdecimal/Doc/library/unittest.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/unittest.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/unittest.rst Fri Mar 4 18:50:17 2011 @@ -352,9 +352,9 @@ The basic building blocks of unit testing are :dfn:`test cases` --- single scenarios that must be set up and checked for correctness. In :mod:`unittest`, -test cases are represented by instances of :mod:`unittest`'s :class:`TestCase` -class. To make your own test cases you must write subclasses of -:class:`TestCase`, or use :class:`FunctionTestCase`. +test cases are represented by :class:`unittest.TestCase` instances. +To make your own test cases you must write subclasses of +:class:`TestCase` or use :class:`FunctionTestCase`. An instance of a :class:`TestCase`\ -derived class is an object that can completely run a single test method, together with optional set-up and tidy-up @@ -860,12 +860,12 @@ accept a *msg* argument that, if specified, is used as the error message on failure (see also :data:`longMessage`). - .. method:: assertEqual(actual, expected, msg=None) + .. method:: assertEqual(first, second, msg=None) - Test that *actual* and *expected* are equal. If the values do not + Test that *first* and *second* are equal. If the values do not compare equal, the test will fail. - In addition, if *actual* and *expected* are the exact same type and one of + In addition, if *first* and *second* are the exact same type and one of list, tuple, dict, set, frozenset or str or any type that a subclass registers with :meth:`addTypeEqualityFunc` the type specific equality function will be called in order to generate a more useful default @@ -880,9 +880,9 @@ function for comparing strings. - .. method:: assertNotEqual(actual, expected, msg=None) + .. method:: assertNotEqual(first, second, msg=None) - Test that *actual* and *expected* are not equal. If the values do + Test that *first* and *second* are not equal. If the values do compare equal, the test will fail. .. method:: assertTrue(expr, msg=None) @@ -897,10 +897,10 @@ provide a better error message in case of failure. - .. method:: assertIs(actual, expected, msg=None) - assertIsNot(actual, expected, msg=None) + .. method:: assertIs(first, second, msg=None) + assertIsNot(first, second, msg=None) - Test that *actual* and *expected* evaluate (or don't evaluate) to the + Test that *first* and *second* evaluate (or don't evaluate) to the same object. .. versionadded:: 3.1 @@ -1096,17 +1096,17 @@ +---------------------------------------+--------------------------------+--------------+ - .. method:: assertAlmostEqual(actual, expected, places=7, msg=None, delta=None) - assertNotAlmostEqual(actual, expected, places=7, msg=None, delta=None) + .. method:: assertAlmostEqual(first, second, places=7, msg=None, delta=None) + assertNotAlmostEqual(first, second, places=7, msg=None, delta=None) - Test that *actual* and *expected* are approximately (or not approximately) + Test that *first* and *second* are approximately (or not approximately) equal by computing the difference, rounding to the given number of decimal *places* (default 7), and comparing to zero. Note that these methods round the values to the given number of *decimal places* (i.e. like the :func:`round` function) and not *significant digits*. If *delta* is supplied instead of *places* then the difference - between *actual* and *expected* must be less (or more) than *delta*. + between *first* and *second* must be less (or more) than *delta*. Supplying both *delta* and *places* raises a ``TypeError``. @@ -1116,12 +1116,12 @@ if the objects compare equal. Added the *delta* keyword argument. - .. method:: assertGreater(actual, expected, msg=None) - assertGreaterEqual(actual, expected, msg=None) - assertLess(actual, expected, msg=None) - assertLessEqual(actual, expected, msg=None) + .. method:: assertGreater(first, second, msg=None) + assertGreaterEqual(first, second, msg=None) + assertLess(first, second, msg=None) + assertLessEqual(first, second, msg=None) - Test that *actual* is respectively >, >=, < or <= than *expected* depending + Test that *first* is respectively >, >=, < or <= than *second* depending on the method name. If not, the test will fail:: >>> self.assertGreaterEqual(3, 4) @@ -1177,14 +1177,14 @@ .. versionadded:: 3.2 - .. method:: assertSameElements(actual, expected, msg=None) + .. method:: assertSameElements(first, second, msg=None) - Test that sequence *actual* contains the same elements as *expected*, + Test that sequence *first* contains the same elements as *second*, regardless of their order. When they don't, an error message listing the differences between the sequences will be generated. - Duplicate elements are ignored when comparing *actual* and *expected*. - It is the equivalent of ``assertEqual(set(actual), set(expected))`` + Duplicate elements are ignored when comparing *first* and *second*. + It is the equivalent of ``assertEqual(set(first), set(second))`` but it works with sequences of unhashable objects as well. Because duplicates are ignored, this method has been deprecated in favour of :meth:`assertCountEqual`. @@ -1241,9 +1241,9 @@ - .. method:: assertMultiLineEqual(actual, expected, msg=None) + .. method:: assertMultiLineEqual(first, second, msg=None) - Test that the multiline string *actual* is equal to the string *expected*. + Test that the multiline string *first* is equal to the string *second*. When not equal a diff of the two strings highlighting the differences will be included in the error message. This method is used by default when comparing strings with :meth:`assertEqual`. @@ -1251,10 +1251,10 @@ .. versionadded:: 3.1 - .. method:: assertSequenceEqual(actual, expected, msg=None, seq_type=None) + .. method:: assertSequenceEqual(first, second, msg=None, seq_type=None) Tests that two sequences are equal. If a *seq_type* is supplied, both - *actual* and *expected* must be instances of *seq_type* or a failure will + *first* and *second* must be instances of *seq_type* or a failure will be raised. If the sequences are different an error message is constructed that shows the difference between the two. @@ -1265,8 +1265,8 @@ .. versionadded:: 3.1 - .. method:: assertListEqual(actual, expected, msg=None) - assertTupleEqual(actual, expected, msg=None) + .. method:: assertListEqual(first, second, msg=None) + assertTupleEqual(first, second, msg=None) Tests that two lists or tuples are equal. If not an error message is constructed that shows only the differences between the two. An error @@ -1277,19 +1277,19 @@ .. versionadded:: 3.1 - .. method:: assertSetEqual(actual, expected, msg=None) + .. method:: assertSetEqual(first, second, msg=None) Tests that two sets are equal. If not, an error message is constructed that lists the differences between the sets. This method is used by default when comparing sets or frozensets with :meth:`assertEqual`. - Fails if either of *actual* or *expected* does not have a :meth:`set.difference` + Fails if either of *first* or *second* does not have a :meth:`set.difference` method. .. versionadded:: 3.1 - .. method:: assertDictEqual(actual, expected, msg=None) + .. method:: assertDictEqual(first, second, msg=None) Test that two dictionaries are equal. If not, an error message is constructed that shows the differences in the dictionaries. This Modified: python/branches/py3k-cdecimal/Doc/library/urllib.parse.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/urllib.parse.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/urllib.parse.rst Fri Mar 4 18:50:17 2011 @@ -116,7 +116,7 @@ Added IPv6 URL parsing capabilities. -.. function:: parse_qs(qs, keep_blank_values=False, strict_parsing=False) +.. function:: parse_qs(qs, keep_blank_values=False, strict_parsing=False, encoding='utf-8', errors='replace') Parse a query string given as a string argument (data of type :mimetype:`application/x-www-form-urlencoded`). Data are returned as a @@ -133,11 +133,19 @@ parsing errors. If false (the default), errors are silently ignored. If true, errors raise a :exc:`ValueError` exception. + The optional *encoding* and *errors* parameters specify how to decode + percent-encoded sequences into Unicode characters, as accepted by the + :meth:`bytes.decode` method. + Use the :func:`urllib.parse.urlencode` function to convert such dictionaries into query strings. -.. function:: parse_qsl(qs, keep_blank_values=False, strict_parsing=False) + .. versionchanged:: 3.2 + Add *encoding* and *errors* parameters. + + +.. function:: parse_qsl(qs, keep_blank_values=False, strict_parsing=False, encoding='utf-8', errors='replace') Parse a query string given as a string argument (data of type :mimetype:`application/x-www-form-urlencoded`). Data are returned as a list of @@ -153,9 +161,16 @@ parsing errors. If false (the default), errors are silently ignored. If true, errors raise a :exc:`ValueError` exception. + The optional *encoding* and *errors* parameters specify how to decode + percent-encoded sequences into Unicode characters, as accepted by the + :meth:`bytes.decode` method. + Use the :func:`urllib.parse.urlencode` function to convert such lists of pairs into query strings. + .. versionchanged:: 3.2 + Add *encoding* and *errors* parameters. + .. function:: urlunparse(parts) @@ -265,8 +280,9 @@ object. .. versionchanged:: 3.2 - Result is a structured object rather than a simple 2-tuple + Result is a structured object rather than a simple 2-tuple. +.. _parsing-ascii-encoded-bytes: Parsing ASCII Encoded Bytes --------------------------- @@ -491,9 +507,10 @@ .. function:: urlencode(query, doseq=False, safe='', encoding=None, errors=None) Convert a mapping object or a sequence of two-element tuples, which may - either be a :class:`str` or a :class:`bytes`, to a "percent-encoded" string, - suitable to pass to :func:`urlopen` above as the optional *data* argument. - This is useful to pass a dictionary of form fields to a ``POST`` request. + either be a :class:`str` or a :class:`bytes`, to a "percent-encoded" + string. The resultant string must be converted to bytes using the + user-specified encoding before it is sent to :func:`urlopen` as the optional + *data* argument. The resulting string is a series of ``key=value`` pairs separated by ``'&'`` characters, where both *key* and *value* are quoted using :func:`quote_plus` above. When a sequence of two-element tuples is used as the *query* @@ -510,6 +527,9 @@ To reverse this encoding process, :func:`parse_qs` and :func:`parse_qsl` are provided in this module to parse query strings into Python data structures. + Refer to :ref:`urllib examples ` to find out how urlencode + method can be used for generating query string for a URL or data for POST. + .. versionchanged:: 3.2 Query parameter supports bytes and string objects. Modified: python/branches/py3k-cdecimal/Doc/library/urllib.request.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/urllib.request.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/urllib.request.rst Fri Mar 4 18:50:17 2011 @@ -967,7 +967,7 @@ >>> import urllib.request >>> req = urllib.request.Request(url='https://localhost/cgi-bin/test.cgi', - ... data='This data is passed to stdin of the CGI') + ... data=b'This data is passed to stdin of the CGI') >>> f = urllib.request.urlopen(req) >>> print(f.read().decode('utf-8')) Got Data: "This data is passed to stdin of the CGI" @@ -1043,11 +1043,13 @@ >>> f = urllib.request.urlopen("http://www.musi-cal.com/cgi-bin/query?%s" % params) >>> print(f.read().decode('utf-8')) -The following example uses the ``POST`` method instead:: +The following example uses the ``POST`` method instead. Note that params output +from urlencode is encoded to bytes before it is sent to urlopen as data:: >>> import urllib.request >>> import urllib.parse >>> params = urllib.parse.urlencode({'spam': 1, 'eggs': 2, 'bacon': 0}) + >>> params = params.encode('utf-8') >>> f = urllib.request.urlopen("http://www.musi-cal.com/cgi-bin/query", params) >>> print(f.read().decode('utf-8')) Modified: python/branches/py3k-cdecimal/Doc/library/warnings.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/warnings.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/warnings.rst Fri Mar 4 18:50:17 2011 @@ -6,6 +6,9 @@ .. module:: warnings :synopsis: Issue warning messages and control their disposition. +**Source code:** :source:`Lib/warnings.py` + +-------------- Warning messages are typically issued in situations where it is useful to alert the user of some condition in a program, where that condition (normally) doesn't Modified: python/branches/py3k-cdecimal/Doc/library/wave.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/wave.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/wave.rst Fri Mar 4 18:50:17 2011 @@ -6,6 +6,10 @@ .. sectionauthor:: Moshe Zadka .. Documentations stolen from comments in file. +**Source code:** :source:`Lib/wave.py` + +-------------- + The :mod:`wave` module provides a convenient interface to the WAV sound format. It does not support compression/decompression, but it does support mono/stereo. Modified: python/branches/py3k-cdecimal/Doc/library/weakref.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/weakref.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/weakref.rst Fri Mar 4 18:50:17 2011 @@ -8,6 +8,9 @@ .. moduleauthor:: Martin von L?wis .. sectionauthor:: Fred L. Drake, Jr. +**Source code:** :source:`Lib/weakref.py` + +-------------- The :mod:`weakref` module allows the Python programmer to create :dfn:`weak references` to objects. Modified: python/branches/py3k-cdecimal/Doc/library/webbrowser.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/webbrowser.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/webbrowser.rst Fri Mar 4 18:50:17 2011 @@ -6,6 +6,9 @@ .. moduleauthor:: Fred L. Drake, Jr. .. sectionauthor:: Fred L. Drake, Jr. +**Source code:** :source:`Lib/webbrowser.py` + +-------------- The :mod:`webbrowser` module provides a high-level interface to allow displaying Web-based documents to users. Under most circumstances, simply calling the Modified: python/branches/py3k-cdecimal/Doc/library/xdrlib.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/xdrlib.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/xdrlib.rst Fri Mar 4 18:50:17 2011 @@ -9,6 +9,10 @@ single: XDR single: External Data Representation +**Source code:** :source:`Lib/xdrlib.py` + +-------------- + The :mod:`xdrlib` module supports the External Data Representation Standard as described in :rfc:`1014`, written by Sun Microsystems, Inc. June 1987. It supports most of the data types described in the RFC. Modified: python/branches/py3k-cdecimal/Doc/library/xml.dom.minidom.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/xml.dom.minidom.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/xml.dom.minidom.rst Fri Mar 4 18:50:17 2011 @@ -7,6 +7,9 @@ .. sectionauthor:: Paul Prescod .. sectionauthor:: Martin v. L?wis +**Source code:** :source:`Lib/xml/dom/minidom.py` + +-------------- :mod:`xml.dom.minidom` is a light-weight implementation of the Document Object Model interface. It is intended to be simpler than the full DOM and also Modified: python/branches/py3k-cdecimal/Doc/library/xml.dom.pulldom.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/xml.dom.pulldom.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/xml.dom.pulldom.rst Fri Mar 4 18:50:17 2011 @@ -5,6 +5,9 @@ :synopsis: Support for building partial DOM trees from SAX events. .. moduleauthor:: Paul Prescod +**Source code:** :source:`Lib/xml/dom/pulldom.py` + +-------------- :mod:`xml.dom.pulldom` allows building only selected portions of a Document Object Model representation of a document from SAX events. Modified: python/branches/py3k-cdecimal/Doc/library/xml.etree.elementtree.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/xml.etree.elementtree.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/xml.etree.elementtree.rst Fri Mar 4 18:50:17 2011 @@ -5,6 +5,9 @@ :synopsis: Implementation of the ElementTree API. .. moduleauthor:: Fredrik Lundh +**Source code:** :source:`Lib/xml/etree/ElementTree.py` + +-------------- The :class:`Element` type is a flexible container object, designed to store hierarchical data structures in memory. The type can be described as a cross Modified: python/branches/py3k-cdecimal/Doc/library/xmlrpc.client.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/xmlrpc.client.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/xmlrpc.client.rst Fri Mar 4 18:50:17 2011 @@ -10,6 +10,10 @@ .. XXX Not everything is documented yet. It might be good to describe Marshaller, Unmarshaller, getparser, dumps, loads, and Transport. +**Source code:** :source:`Lib/xmlrpc/client.py` + +-------------- + XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP as a transport. With it, a client can call methods with parameters on a remote server (the server is named by a URI) and get back structured data. This module Modified: python/branches/py3k-cdecimal/Doc/library/xmlrpc.server.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/xmlrpc.server.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/xmlrpc.server.rst Fri Mar 4 18:50:17 2011 @@ -6,6 +6,9 @@ .. moduleauthor:: Brian Quinlan .. sectionauthor:: Fred L. Drake, Jr. +**Source code:** :source:`Lib/xmlrpc/server.py` + +-------------- The :mod:`xmlrpc.server` module provides a basic server framework for XML-RPC servers written in Python. Servers can either be free standing, using Modified: python/branches/py3k-cdecimal/Doc/library/zipfile.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/library/zipfile.rst (original) +++ python/branches/py3k-cdecimal/Doc/library/zipfile.rst Fri Mar 4 18:50:17 2011 @@ -6,6 +6,10 @@ .. moduleauthor:: James C. Ahlstrom .. sectionauthor:: James C. Ahlstrom +**Source code:** :source:`Lib/zipfile.py` + +-------------- + The ZIP file format is a common archive and compression standard. This module provides tools to create, read, write, append, and list a ZIP file. Any advanced use of this module will require an understanding of the format, as Modified: python/branches/py3k-cdecimal/Doc/license.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/license.rst (original) +++ python/branches/py3k-cdecimal/Doc/license.rst Fri Mar 4 18:50:17 2011 @@ -110,6 +110,8 @@ +----------------+--------------+------------+------------+-----------------+ | 3.2 | 3.1 | 2011 | PSF | yes | +----------------+--------------+------------+------------+-----------------+ +| 3.3 | 3.2 | 2012 | PSF | yes | ++----------------+--------------+------------+------------+-----------------+ .. note:: Modified: python/branches/py3k-cdecimal/Doc/make.bat ============================================================================== --- python/branches/py3k-cdecimal/Doc/make.bat (original) +++ python/branches/py3k-cdecimal/Doc/make.bat Fri Mar 4 18:50:17 2011 @@ -1,59 +1,59 @@ -@@echo off -setlocal - -set SVNROOT=http://svn.python.org/projects -if "%PYTHON%" EQU "" set PYTHON=..\pcbuild\python -if "%HTMLHELP%" EQU "" set HTMLHELP=%ProgramFiles%\HTML Help Workshop\hhc.exe -if "%DISTVERSION%" EQU "" for /f "usebackq" %%v in (`%PYTHON% tools/sphinxext/patchlevel.py`) do set DISTVERSION=%%v - -if "%1" EQU "" goto help -if "%1" EQU "html" goto build -if "%1" EQU "htmlhelp" goto build -if "%1" EQU "latex" goto build -if "%1" EQU "text" goto build -if "%1" EQU "suspicious" goto build -if "%1" EQU "linkcheck" goto build -if "%1" EQU "changes" goto build -if "%1" EQU "checkout" goto checkout -if "%1" EQU "update" goto update - -:help -set this=%~n0 -echo HELP -echo. -echo %this% checkout -echo %this% update -echo %this% html -echo %this% htmlhelp -echo %this% latex -echo %this% text -echo %this% suspicious -echo %this% linkcheck -echo %this% changes -echo. -goto end - -:checkout -svn co %SVNROOT%/external/Sphinx-1.0.5/sphinx tools/sphinx -svn co %SVNROOT%/external/docutils-0.6/docutils tools/docutils -svn co %SVNROOT%/external/Jinja-2.3.1/jinja2 tools/jinja2 -svn co %SVNROOT%/external/Pygments-1.3.1/pygments tools/pygments -goto end - -:update -svn update tools/sphinx -svn update tools/docutils -svn update tools/jinja2 -svn update tools/pygments -goto end - -:build -if not exist build mkdir build -if not exist build\%1 mkdir build\%1 -if not exist build\doctrees mkdir build\doctrees -cmd /C %PYTHON% --version -cmd /C %PYTHON% tools\sphinx-build.py -b%1 -dbuild\doctrees . build\%* -if "%1" EQU "htmlhelp" "%HTMLHELP%" build\htmlhelp\python%DISTVERSION:.=%.hhp -goto end - -:end +@@echo off +setlocal + +set SVNROOT=http://svn.python.org/projects +if "%PYTHON%" EQU "" set PYTHON=..\pcbuild\python +if "%HTMLHELP%" EQU "" set HTMLHELP=%ProgramFiles%\HTML Help Workshop\hhc.exe +if "%DISTVERSION%" EQU "" for /f "usebackq" %%v in (`%PYTHON% tools/sphinxext/patchlevel.py`) do set DISTVERSION=%%v + +if "%1" EQU "" goto help +if "%1" EQU "html" goto build +if "%1" EQU "htmlhelp" goto build +if "%1" EQU "latex" goto build +if "%1" EQU "text" goto build +if "%1" EQU "suspicious" goto build +if "%1" EQU "linkcheck" goto build +if "%1" EQU "changes" goto build +if "%1" EQU "checkout" goto checkout +if "%1" EQU "update" goto update + +:help +set this=%~n0 +echo HELP +echo. +echo %this% checkout +echo %this% update +echo %this% html +echo %this% htmlhelp +echo %this% latex +echo %this% text +echo %this% suspicious +echo %this% linkcheck +echo %this% changes +echo. +goto end + +:checkout +svn co %SVNROOT%/external/Sphinx-1.0.7/sphinx tools/sphinx +svn co %SVNROOT%/external/docutils-0.6/docutils tools/docutils +svn co %SVNROOT%/external/Jinja-2.3.1/jinja2 tools/jinja2 +svn co %SVNROOT%/external/Pygments-1.3.1/pygments tools/pygments +goto end + +:update +svn update tools/sphinx +svn update tools/docutils +svn update tools/jinja2 +svn update tools/pygments +goto end + +:build +if not exist build mkdir build +if not exist build\%1 mkdir build\%1 +if not exist build\doctrees mkdir build\doctrees +cmd /C %PYTHON% --version +cmd /C %PYTHON% tools\sphinx-build.py -b%1 -dbuild\doctrees . build\%* +if "%1" EQU "htmlhelp" "%HTMLHELP%" build\htmlhelp\python%DISTVERSION:.=%.hhp +goto end + +:end Modified: python/branches/py3k-cdecimal/Doc/reference/executionmodel.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/reference/executionmodel.rst (original) +++ python/branches/py3k-cdecimal/Doc/reference/executionmodel.rst Fri Mar 4 18:50:17 2011 @@ -94,9 +94,7 @@ at the module level. A target occurring in a :keyword:`del` statement is also considered bound for -this purpose (though the actual semantics are to unbind the name). It is -illegal to unbind a name that is referenced by an enclosing scope; the compiler -will report a :exc:`SyntaxError`. +this purpose (though the actual semantics are to unbind the name). Each assignment or import statement occurs within a block defined by a class or function definition or at the module level (the top-level code block). Modified: python/branches/py3k-cdecimal/Doc/reference/expressions.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/reference/expressions.rst (original) +++ python/branches/py3k-cdecimal/Doc/reference/expressions.rst Fri Mar 4 18:50:17 2011 @@ -963,9 +963,9 @@ .. _comparisons: .. _is: -.. _isnot: +.. _is not: .. _in: -.. _notin: +.. _not in: Comparisons =========== Modified: python/branches/py3k-cdecimal/Doc/reference/simple_stmts.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/reference/simple_stmts.rst (original) +++ python/branches/py3k-cdecimal/Doc/reference/simple_stmts.rst Fri Mar 4 18:50:17 2011 @@ -678,7 +678,7 @@ for the module or package can begin. The first place checked is :data:`sys.modules`, the cache of all modules that have been imported previously. If the module is found there then it is used in step (2) of import -unless :keyword:`None` is found in :data:`sys.modules`, in which case +unless ``None`` is found in :data:`sys.modules`, in which case :exc:`ImportError` is raised. .. index:: @@ -696,7 +696,7 @@ second argument to :meth:`find_module` is given as the value of the :attr:`__path__` attribute from the parent package (everything up to the last dot in the name of the module being imported). If a finder can find the module -it returns a :term:`loader` (discussed later) or returns :keyword:`None`. +it returns a :term:`loader` (discussed later) or returns ``None``. .. index:: single: sys.path_hooks @@ -723,11 +723,11 @@ the list with a single argument of the path, returning a finder or raises :exc:`ImportError`. If a finder is returned then it is cached in :data:`sys.path_importer_cache` and then used for that path entry. If no finder -can be found but the path exists then a value of :keyword:`None` is +can be found but the path exists then a value of ``None`` is stored in :data:`sys.path_importer_cache` to signify that an implicit, file-based finder that handles modules stored as individual files should be used for that path. If the path does not exist then a finder which always -returns :keyword:`None` is placed in the cache for the path. +returns ``None`` is placed in the cache for the path. .. index:: single: loader Modified: python/branches/py3k-cdecimal/Doc/tools/sphinxext/indexsidebar.html ============================================================================== --- python/branches/py3k-cdecimal/Doc/tools/sphinxext/indexsidebar.html (original) +++ python/branches/py3k-cdecimal/Doc/tools/sphinxext/indexsidebar.html Fri Mar 4 18:50:17 2011 @@ -3,7 +3,7 @@

Docs for other versions

Modified: python/branches/py3k-cdecimal/Doc/tools/sphinxext/static/basic.css ============================================================================== --- python/branches/py3k-cdecimal/Doc/tools/sphinxext/static/basic.css (original) +++ python/branches/py3k-cdecimal/Doc/tools/sphinxext/static/basic.css Fri Mar 4 18:50:17 2011 @@ -257,6 +257,10 @@ background-color: #eef; } +table.docutils td p.last, table.docutils th p.last { + margin-bottom: 0; +} + table.field-list td, table.field-list th { border: 0 !important; } @@ -342,7 +346,7 @@ } .footnote:target { - background-color: #ffa + background-color: #ffa; } .impl-detail { Modified: python/branches/py3k-cdecimal/Doc/tools/sphinxext/susp-ignored.csv ============================================================================== --- python/branches/py3k-cdecimal/Doc/tools/sphinxext/susp-ignored.csv (original) +++ python/branches/py3k-cdecimal/Doc/tools/sphinxext/susp-ignored.csv Fri Mar 4 18:50:17 2011 @@ -343,3 +343,46 @@ whatsnew/3.2,,:directory,... ${buildout:directory}/downloads/dist whatsnew/3.2,,:location,... zope9-location = ${zope9:location} whatsnew/3.2,,:prefix,... zope-conf = ${custom:prefix}/etc/zope.conf +howto/logging,,:root,WARNING:root:Watch out! +howto/logging,,:Watch,WARNING:root:Watch out! +howto/logging,,:root,DEBUG:root:This message should go to the log file +howto/logging,,:This,DEBUG:root:This message should go to the log file +howto/logging,,:root,INFO:root:So should this +howto/logging,,:So,INFO:root:So should this +howto/logging,,:root,"WARNING:root:And this, too" +howto/logging,,:And,"WARNING:root:And this, too" +howto/logging,,:root,INFO:root:Started +howto/logging,,:Started,INFO:root:Started +howto/logging,,:root,INFO:root:Doing something +howto/logging,,:Doing,INFO:root:Doing something +howto/logging,,:root,INFO:root:Finished +howto/logging,,:Finished,INFO:root:Finished +howto/logging,,:root,WARNING:root:Look before you leap! +howto/logging,,:Look,WARNING:root:Look before you leap! +howto/logging,,:This,DEBUG:This message should appear on the console +howto/logging,,:So,INFO:So should this +howto/logging,,:And,"WARNING:And this, too" +howto/logging,,:logger,severity:logger name:message +howto/logging,,:message,severity:logger name:message +library/logging.handlers,,:port,host:port +documenting/markup,613,`,:ref:`link text ` +library/imaplib,116,:MM,"""DD-Mmm-YYYY HH:MM:SS" +library/imaplib,116,:SS,"""DD-Mmm-YYYY HH:MM:SS" +whatsnew/3.2,,::,"$ export PYTHONWARNINGS='ignore::RuntimeWarning::,once::UnicodeWarning::'" +howto/pyporting,75,::,# make sure to use :: Python *and* :: Python :: 3 so +howto/pyporting,75,::,"'Programming Language :: Python'," +howto/pyporting,75,::,'Programming Language :: Python :: 3' +whatsnew/3.2,,:gz,">>> with tarfile.open(name='myarchive.tar.gz', mode='w:gz') as tf:" +whatsnew/3.2,,:directory,${buildout:directory}/downloads/dist +whatsnew/3.2,,:location,zope9-location = ${zope9:location} +whatsnew/3.2,,:prefix,zope-conf = ${custom:prefix}/etc/zope.conf +whatsnew/3.2,,:beef,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/') +whatsnew/3.2,,:cafe,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/') +whatsnew/3.2,,:affe,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/') +whatsnew/3.2,,:deaf,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/') +whatsnew/3.2,,:feed,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/') +whatsnew/3.2,,:beef,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]'," +whatsnew/3.2,,:cafe,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]'," +whatsnew/3.2,,:affe,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]'," +whatsnew/3.2,,:deaf,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]'," +whatsnew/3.2,,:feed,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]'," Modified: python/branches/py3k-cdecimal/Doc/tutorial/inputoutput.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/tutorial/inputoutput.rst (original) +++ python/branches/py3k-cdecimal/Doc/tutorial/inputoutput.rst Fri Mar 4 18:50:17 2011 @@ -163,7 +163,7 @@ An optional ``':'`` and format specifier can follow the field name. This allows greater control over how the value is formatted. The following example -truncates Pi to three places after the decimal. +rounds Pi to three places after the decimal. >>> import math >>> print('The value of PI is approximately {0:.3f}.'.format(math.pi)) Modified: python/branches/py3k-cdecimal/Doc/tutorial/interpreter.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/tutorial/interpreter.rst (original) +++ python/branches/py3k-cdecimal/Doc/tutorial/interpreter.rst Fri Mar 4 18:50:17 2011 @@ -10,11 +10,11 @@ Invoking the Interpreter ======================== -The Python interpreter is usually installed as :file:`/usr/local/bin/python3.2` +The Python interpreter is usually installed as :file:`/usr/local/bin/python3.3` on those machines where it is available; putting :file:`/usr/local/bin` in your Unix shell's search path makes it possible to start it by typing the command :: - python3.2 + python3.3 to the shell. [#]_ Since the choice of the directory where the interpreter lives is an installation option, other places are possible; check with your local @@ -22,11 +22,11 @@ popular alternative location.) On Windows machines, the Python installation is usually placed in -:file:`C:\\Python32`, though you can change this when you're running the +:file:`C:\\Python33`, though you can change this when you're running the installer. To add this directory to your path, you can type the following command into the command prompt in a DOS box:: - set path=%path%;C:\python32 + set path=%path%;C:\python33 Typing an end-of-file character (:kbd:`Control-D` on Unix, :kbd:`Control-Z` on Windows) at the primary prompt causes the interpreter to exit with a zero exit @@ -94,8 +94,8 @@ prints a welcome message stating its version number and a copyright notice before printing the first prompt:: - $ python3.2 - Python 3.2 (py3k, Sep 12 2007, 12:21:02) + $ python3.3 + Python 3.3 (py3k, Sep 12 2007, 12:21:02) [GCC 3.4.6 20060404 (Red Hat 3.4.6-8)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> @@ -148,7 +148,7 @@ On BSD'ish Unix systems, Python scripts can be made directly executable, like shell scripts, by putting the line :: - #! /usr/bin/env python3.2 + #! /usr/bin/env python3.3 (assuming that the interpreter is on the user's :envvar:`PATH`) at the beginning of the script and giving the file an executable mode. The ``#!`` must be the Modified: python/branches/py3k-cdecimal/Doc/tutorial/stdlib.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/tutorial/stdlib.rst (original) +++ python/branches/py3k-cdecimal/Doc/tutorial/stdlib.rst Fri Mar 4 18:50:17 2011 @@ -15,7 +15,7 @@ >>> import os >>> os.getcwd() # Return the current working directory - 'C:\\Python31' + 'C:\\Python33' >>> os.chdir('/server/accesslogs') # Change current working directory >>> os.system('mkdir today') # Run the command mkdir in the system shell 0 Modified: python/branches/py3k-cdecimal/Doc/tutorial/stdlib2.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/tutorial/stdlib2.rst (original) +++ python/branches/py3k-cdecimal/Doc/tutorial/stdlib2.rst Fri Mar 4 18:50:17 2011 @@ -271,7 +271,7 @@ Traceback (most recent call last): File "", line 1, in d['primary'] # entry was automatically removed - File "C:/python31/lib/weakref.py", line 46, in __getitem__ + File "C:/python33/lib/weakref.py", line 46, in __getitem__ o = self.data[key]() KeyError: 'primary' Modified: python/branches/py3k-cdecimal/Doc/using/unix.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/using/unix.rst (original) +++ python/branches/py3k-cdecimal/Doc/using/unix.rst Fri Mar 4 18:50:17 2011 @@ -66,7 +66,7 @@ If you want to compile CPython yourself, first thing you should do is get the `source `_. You can download either the latest release's source or just grab a fresh `checkout -`_. +`_. The build process consists the usual :: Modified: python/branches/py3k-cdecimal/Doc/using/windows.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/using/windows.rst (original) +++ python/branches/py3k-cdecimal/Doc/using/windows.rst Fri Mar 4 18:50:17 2011 @@ -290,7 +290,7 @@ If you want to compile CPython yourself, first thing you should do is get the `source `_. You can download either the latest release's source or just grab a fresh `checkout -`_. +`_. For Microsoft Visual C++, which is the compiler with which official Python releases are built, the source tree contains solutions/project files. View the Modified: python/branches/py3k-cdecimal/Doc/whatsnew/2.0.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/whatsnew/2.0.rst (original) +++ python/branches/py3k-cdecimal/Doc/whatsnew/2.0.rst Fri Mar 4 18:50:17 2011 @@ -189,7 +189,7 @@ ignored and ``'replace'`` uses U+FFFD, the official replacement character, in case of any problems. -* The :keyword:`exec` statement, and various built-ins such as ``eval()``, +* The ``exec`` statement, and various built-ins such as ``eval()``, ``getattr()``, and ``setattr()`` will also accept Unicode strings as well as regular strings. (It's possible that the process of fixing this missed some built-ins; if you find a built-in function that accepts strings but doesn't @@ -515,11 +515,11 @@ # kw is a dictionary of keyword args ... -The :keyword:`print` statement can now have its output directed to a file-like -object by following the :keyword:`print` with ``>> file``, similar to the +The ``print`` statement can now have its output directed to a file-like +object by following the ``print`` with ``>> file``, similar to the redirection operator in Unix shells. Previously you'd either have to use the :meth:`write` method of the file-like object, which lacks the convenience and -simplicity of :keyword:`print`, or you could assign a new value to +simplicity of ``print``, or you could assign a new value to ``sys.stdout`` and then restore the old value. For sending output to standard error, it's much easier to write this:: @@ -581,7 +581,7 @@ An attempt has been made to alleviate one of Python's warts, the often-confusing :exc:`NameError` exception when code refers to a local variable before the variable has been assigned a value. For example, the following code raises an -exception on the :keyword:`print` statement in both 1.5.2 and 2.0; in 1.5.2 a +exception on the ``print`` statement in both 1.5.2 and 2.0; in 1.5.2 a :exc:`NameError` exception is raised, while 2.0 raises a new :exc:`UnboundLocalError` exception. :exc:`UnboundLocalError` is a subclass of :exc:`NameError`, so any existing code that expects :exc:`NameError` to be Modified: python/branches/py3k-cdecimal/Doc/whatsnew/2.1.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/whatsnew/2.1.rst (original) +++ python/branches/py3k-cdecimal/Doc/whatsnew/2.1.rst Fri Mar 4 18:50:17 2011 @@ -81,13 +81,13 @@ place. One side effect of the change is that the ``from module import *`` and -:keyword:`exec` statements have been made illegal inside a function scope under +``exec`` statements have been made illegal inside a function scope under certain conditions. The Python reference manual has said all along that ``from module import *`` is only legal at the top level of a module, but the CPython interpreter has never enforced this before. As part of the implementation of nested scopes, the compiler which turns Python source into bytecodes has to generate different code to access variables in a containing scope. ``from -module import *`` and :keyword:`exec` make it impossible for the compiler to +module import *`` and ``exec`` make it impossible for the compiler to figure this out, because they add names to the local namespace that are unknowable at compile time. Therefore, if a function contains function definitions or :keyword:`lambda` expressions with free variables, the compiler @@ -102,11 +102,11 @@ def g(): return x -Line 4 containing the :keyword:`exec` statement is a syntax error, since -:keyword:`exec` would define a new local variable named ``x`` whose value should +Line 4 containing the ``exec`` statement is a syntax error, since +``exec`` would define a new local variable named ``x`` whose value should be accessed by :func:`g`. -This shouldn't be much of a limitation, since :keyword:`exec` is rarely used in +This shouldn't be much of a limitation, since ``exec`` is rarely used in most Python code (and when it is used, it's often a sign of a poor design anyway). Modified: python/branches/py3k-cdecimal/Doc/whatsnew/2.2.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/whatsnew/2.2.rst (original) +++ python/branches/py3k-cdecimal/Doc/whatsnew/2.2.rst Fri Mar 4 18:50:17 2011 @@ -892,13 +892,13 @@ place. One side effect of the change is that the ``from module import *`` and -:keyword:`exec` statements have been made illegal inside a function scope under +``exec`` statements have been made illegal inside a function scope under certain conditions. The Python reference manual has said all along that ``from module import *`` is only legal at the top level of a module, but the CPython interpreter has never enforced this before. As part of the implementation of nested scopes, the compiler which turns Python source into bytecodes has to generate different code to access variables in a containing scope. ``from -module import *`` and :keyword:`exec` make it impossible for the compiler to +module import *`` and ``exec`` make it impossible for the compiler to figure this out, because they add names to the local namespace that are unknowable at compile time. Therefore, if a function contains function definitions or :keyword:`lambda` expressions with free variables, the compiler @@ -913,11 +913,11 @@ def g(): return x -Line 4 containing the :keyword:`exec` statement is a syntax error, since -:keyword:`exec` would define a new local variable named ``x`` whose value should +Line 4 containing the ``exec`` statement is a syntax error, since +``exec`` would define a new local variable named ``x`` whose value should be accessed by :func:`g`. -This shouldn't be much of a limitation, since :keyword:`exec` is rarely used in +This shouldn't be much of a limitation, since ``exec`` is rarely used in most Python code (and when it is used, it's often a sign of a poor design anyway). Modified: python/branches/py3k-cdecimal/Doc/whatsnew/2.4.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/whatsnew/2.4.rst (original) +++ python/branches/py3k-cdecimal/Doc/whatsnew/2.4.rst Fri Mar 4 18:50:17 2011 @@ -896,7 +896,7 @@ (Contributed by Nick Coghlan.) * The :func:`eval(expr, globals, locals)` and :func:`execfile(filename, globals, - locals)` functions and the :keyword:`exec` statement now accept any mapping type + locals)` functions and the ``exec`` statement now accept any mapping type for the *locals* parameter. Previously this had to be a regular Python dictionary. (Contributed by Raymond Hettinger.) Modified: python/branches/py3k-cdecimal/Doc/whatsnew/3.0.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/whatsnew/3.0.rst (original) +++ python/branches/py3k-cdecimal/Doc/whatsnew/3.0.rst Fri Mar 4 18:50:17 2011 @@ -96,9 +96,9 @@ Print Is A Function ------------------- -The :keyword:`print` statement has been replaced with a :func:`print` +The ``print`` statement has been replaced with a :func:`print` function, with keyword arguments to replace most of the special syntax -of the old :keyword:`print` statement (:pep:`3105`). Examples:: +of the old ``print`` statement (:pep:`3105`). Examples:: Old: print "The answer is", 2*2 New: print("The answer is", 2*2) @@ -126,7 +126,7 @@ Note: * The :func:`print` function doesn't support the "softspace" feature of - the old :keyword:`print` statement. For example, in Python 2.x, + the old ``print`` statement. For example, in Python 2.x, ``print "A\n", "B"`` would write ``"A\nB\n"``; but in Python 3.0, ``print("A\n", "B")`` writes ``"A\n B\n"``. @@ -135,7 +135,7 @@ ``print(x)`` instead! * When using the ``2to3`` source-to-source conversion tool, all - :keyword:`print` statements are automatically converted to + ``print`` statements are automatically converted to :func:`print` function calls, so this is mostly a non-issue for larger projects. @@ -178,7 +178,7 @@ meaningful natural ordering. Thus, expressions like ``1 < ''``, ``0 > None`` or ``len <= len`` are no longer valid, and e.g. ``None < None`` raises :exc:`TypeError` instead of returning - :keyword:`False`. A corollary is that sorting a heterogeneous list + ``False``. A corollary is that sorting a heterogeneous list no longer makes sense -- all the elements must be comparable to each other. Note that this does not apply to the ``==`` and ``!=`` operators: objects of different incomparable types always compare @@ -397,9 +397,8 @@ * :keyword:`as` and :keyword:`with` are now reserved words. (Since 2.6, actually.) -* :keyword:`True`, :keyword:`False`, and :keyword:`None` are reserved - words. (2.6 partially enforced the restrictions on :keyword:`None` - already.) +* ``True``, ``False``, and ``None`` are reserved words. (2.6 partially enforced + the restrictions on ``None`` already.) * Change from :keyword:`except` *exc*, *var* to :keyword:`except` *exc* :keyword:`as` *var*. See :pep:`3110`. @@ -906,7 +905,7 @@ It is not recommended to try to write source code that runs unchanged under both Python 2.6 and 3.0; you'd have to use a very contorted -coding style, e.g. avoiding :keyword:`print` statements, metaclasses, +coding style, e.g. avoiding ``print`` statements, metaclasses, and much more. If you are maintaining a library that needs to support both Python 2.6 and Python 3.0, the best approach is to modify step 3 above by editing the 2.6 version of the source code and running the Modified: python/branches/py3k-cdecimal/Doc/whatsnew/3.2.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/whatsnew/3.2.rst (original) +++ python/branches/py3k-cdecimal/Doc/whatsnew/3.2.rst Fri Mar 4 18:50:17 2011 @@ -11,7 +11,10 @@ * Anyone can add text to this document. Do not spend very much time on the wording of your changes, because your text will probably - get rewritten. + get rewritten. (Note, during release candidate phase or just before + a beta release, please use the tracker instead -- this helps avoid + merge conflicts. If you must add a suggested entry directly, + please put it in an XXX comment and the maintainer will take notice). * The maintainer will go through Misc/NEWS periodically and add changes; it's therefore more important to add your changes to @@ -55,6 +58,7 @@ :pep:`392` - Python 3.2 Release Schedule + PEP 384: Defining a Stable ABI ============================== @@ -78,6 +82,7 @@ :pep:`384` - Defining a Stable ABI PEP written by Martin von L?wis. + PEP 389: Argparse Command Line Parsing Module ============================================= @@ -86,7 +91,7 @@ positional arguments (not just options), subcommands, required options and other common patterns of specifying and validating options. -This module has already has wide-spread success in the community as a +This module has already had widespread success in the community as a third-party module. Being more fully featured than its predecessor, the :mod:`argparse` module is now the preferred module for command-line processing. The older module is still being kept available because of the substantial amount @@ -101,14 +106,14 @@ description = 'Manage servers', # main description for help epilog = 'Tested on Solaris and Linux') # displayed after help parser.add_argument('action', # argument name - choices = ['deploy', 'start', 'stop'], # one of four allowed values + choices = ['deploy', 'start', 'stop'], # three allowed values help = 'action on each target') # help msg parser.add_argument('targets', metavar = 'HOSTNAME', # var name used in help msg - nargs = '+', # require 1 or more targets + nargs = '+', # require one or more targets help = 'url for target machines') # help msg explanation parser.add_argument('-u', '--user', # -u or --user option - required = True, # make this a required argument + required = True, # make it a required argument help = 'login as user') Example of calling the parser on a command string:: @@ -167,8 +172,7 @@ :pep:`389` - New Command Line Parsing Module PEP written by Steven Bethard. - :ref:`upgrading-optparse-code` for details on the differences from - :mod:`optparse`. + :ref:`upgrading-optparse-code` for details on the differences from :mod:`optparse`. PEP 391: Dictionary Based Configuration for Logging @@ -189,7 +193,7 @@ {"version": 1, "formatters": {"brief": {"format": "%(levelname)-8s: %(name)-15s: %(message)s"}, - "full": {"format": "%(asctime)s %(name)-15s %(levelname)-8s %(message)s"}, + "full": {"format": "%(asctime)s %(name)-15s %(levelname)-8s %(message)s"} }, "handlers": {"console": { "class": "logging.StreamHandler", @@ -200,7 +204,7 @@ "class": "logging.StreamHandler", "formatter": "full", "level": "ERROR", - "stream": "ext://sys.stderr"}, + "stream": "ext://sys.stderr"} }, "root": {"level": "DEBUG", "handlers": ["console", "console_priority"]}} @@ -208,26 +212,31 @@ If that dictionary is stored in a file called :file:`conf.json`, it can be loaded and called with code like this:: - >>> import logging.config - >>> logging.config.dictConfig(json.load(open('conf.json', 'rb'))) + >>> import json, logging.config + >>> with open('conf.json') as f: + conf = json.load(f) + >>> logging.config.dictConfig(conf) >>> logging.info("Transaction completed normally") + INFO : root : Transaction completed normally >>> logging.critical("Abnormal termination") + 2011-02-17 11:14:36,694 root CRITICAL Abnormal termination .. seealso:: :pep:`391` - Dictionary Based Configuration for Logging PEP written by Vinay Sajip. + PEP 3148: The ``concurrent.futures`` module ============================================ -Code for creating and managing concurrency is being collected in a new toplevel +Code for creating and managing concurrency is being collected in a new top-level namespace, *concurrent*. Its first member is a *futures* package which provides -a uniform high level interface for managing threads and processes. +a uniform high-level interface for managing threads and processes. The design for :mod:`concurrent.futures` was inspired by *java.util.concurrent.package*. In that model, a running call and its result -are represented by a :class:`~concurrent.futures.Future` object which abstracts +are represented by a :class:`~concurrent.futures.Future` object that abstracts features common to threads, processes, and remote procedure calls. That object supports status checks (running or done), timeouts, cancellations, adding callbacks, and access to results or exceptions. @@ -249,15 +258,15 @@ returning a :class:`~concurrent.futures.Future` object; :meth:`~concurrent.futures.Executor.map` for scheduling many asynchronous calls at a time, and :meth:`~concurrent.futures.Executor.shutdown` for freeing -resources. The class is a :term:`context manager` and can be used within a +resources. The class is a :term:`context manager` and can be used in a :keyword:`with` statement to assure that resources are automatically released when currently pending futures are done executing. A simple of example of :class:`~concurrent.futures.ThreadPoolExecutor` is a launch of four parallel threads for copying files:: - import shutil - with ThreadPoolExecutor(max_workers=4) as e: + import concurrent.futures, shutil + with concurrent.futures.ThreadPoolExecutor(max_workers=4) as e: e.submit(shutil.copy, 'src1.txt', 'dest1.txt') e.submit(shutil.copy, 'src2.txt', 'dest2.txt') e.submit(shutil.copy, 'src3.txt', 'dest3.txt') @@ -276,7 +285,6 @@ :class:`~concurrent.futures.ProcessPoolExecutor`. - PEP 3147: PYC Repository Directories ===================================== @@ -324,7 +332,17 @@ 'c:/py32/lib/__pycache__/collections.cpython-32.pyc' * The :mod:`py_compile` and :mod:`compileall` modules have been updated to - reflect the new naming convention and target directory. + reflect the new naming convention and target directory. The command-line + invocation of *compileall* has new options: ``-i`` for + specifying a list of files and directories to compile and ``-b`` which causes + bytecode files to be written to their legacy location rather than + *__pycache__*. + +* The :mod:`importlib.abc` module has been updated with new :term:`abstract base + classes ` for loading bytecode files. The obsolete + ABCs, :class:`~importlib.abc.PyLoader` and + :class:`~importlib.abc.PyPycLoader`, have been deprecated (instructions on how + to stay Python 3.1 compatible are included with the documentation). .. seealso:: @@ -355,13 +373,14 @@ >>> sysconfig.get_config_var('SOABI') # find the version tag 'cpython-32mu' >>> sysconfig.get_config_var('SO') # find the full filename extension - 'cpython-32mu.so' + '.cpython-32mu.so' .. seealso:: :pep:`3149` - ABI Version Tagged .so Files PEP written by Barry Warsaw. + PEP 3333: Python Web Server Gateway Interface v1.0.1 ===================================================== @@ -375,9 +394,9 @@ the bodies of requests and responses. The *native strings* are always of type :class:`str` but are restricted to code -points between *u0000* through *u00FF* which are translatable to bytes using +points between *U+0000* through *U+00FF* which are translatable to bytes using *Latin-1* encoding. These strings are used for the keys and values in the -environ dictionary and for response headers and statuses in the +environment dictionary and for response headers and statuses in the :func:`start_response` function. They must follow :rfc:`2616` with respect to encoding. That is, they must either be *ISO-8859-1* characters or use :rfc:`2047` MIME encoding. @@ -398,7 +417,7 @@ For server implementers writing CGI-to-WSGI pathways or other CGI-style protocols, the users must to be able access the environment using native strings -eventhough the underlying platform may have a different convention. To bridge +even though the underlying platform may have a different convention. To bridge this gap, the :mod:`wsgiref` module has a new function, :func:`wsgiref.handlers.read_environ` for transcoding CGI variables from :attr:`os.environ` into native strings and returning a new dictionary. @@ -408,6 +427,7 @@ :pep:`3333` - Python Web Server Gateway Interface v1.0.1 PEP written by Phillip Eby. + Other Language Changes ====================== @@ -427,7 +447,37 @@ (Suggested by Mark Dickinson and implemented by Eric Smith in :issue:`7094`.) -* The interpreter can now be started with a quiet option, ``-q``, to suppress +* There is also a new :meth:`str.format_map` method that extends the + capabilities of the existing :meth:`str.format` method by accepting arbitrary + :term:`mapping` objects. This new method makes it possible to use string + formatting with any of Python's many dictionary-like objects such as + :class:`~collections.defaultdict`, :class:`~shelve.Shelf`, + :class:`~configparser.ConfigParser`, or :mod:`dbm`. It is also useful with + custom :class:`dict` subclasses that normalize keys before look-up or that + supply a :meth:`__missing__` method for unknown keys:: + + >>> import shelve + >>> d = shelve.open('tmp.shl') + >>> 'The {project_name} status is {status} as of {date}'.format_map(d) + 'The testing project status is green as of February 15, 2011' + + >>> class LowerCasedDict(dict): + def __getitem__(self, key): + return dict.__getitem__(self, key.lower()) + >>> lcd = LowerCasedDict(part='widgets', quantity=10) + >>> 'There are {QUANTITY} {Part} in stock'.format_map(lcd) + 'There are 10 widgets in stock' + + >>> class PlaceholderDict(dict): + def __missing__(self, key): + return '<{}>'.format(key) + >>> 'Hello {name}, welcome to {location}'.format_map(PlaceholderDict()) + 'Hello , welcome to ' + + (Suggested by Raymond Hettinger and implemented by Eric Smith in + :issue:`6081`.) + +* The interpreter can now be started with a quiet option, ``-q``, to prevent the copyright and version information from being displayed in the interactive mode. The option can be introspected using the :attr:`sys.flags` attribute:: @@ -445,7 +495,18 @@ would otherwise be absent from the class dictionary. Formerly, *hasattr* would catch any exception, possibly masking genuine errors. Now, *hasattr* has been tightened to only catch :exc:`AttributeError` and let other - exceptions pass through. + exceptions pass through:: + + >>> class A: + @property + def f(self): + return 1 // 0 + + >>> a = A() + >>> hasattr(a, 'f') + Traceback (most recent call last): + ... + ZeroDivisionError: integer division or modulo by zero (Discovered by Yury Selivanov and fixed by Benjamin Peterson; :issue:`9666`.) @@ -454,6 +515,7 @@ caused confusion and is no longer needed now that the shortest possible :func:`repr` is displayed by default: + >>> import math >>> repr(math.pi) '3.141592653589793' >>> str(math.pi) @@ -467,8 +529,7 @@ original object. >>> with memoryview(b'abcdefgh') as v: - ... print(v.tolist()) - ... + print(v.tolist()) [97, 98, 99, 100, 101, 102, 103, 104] (Added by Antoine Pitrou; :issue:`9757`.) @@ -476,52 +537,59 @@ * Previously it was illegal to delete a name from the local namespace if it occurs as a free variable in a nested block:: - >>> def outer(x): - ... def inner(): - ... return x - ... inner() - ... del x + def outer(x): + def inner(): + return x + inner() + del x This is now allowed. Remember that the target of an :keyword:`except` clause is cleared, so this code which used to work with Python 2.6, raised a :exc:`SyntaxError` with Python 3.1 and now works again:: - >>> def f(): - ... def print_error(): - ... print(e) - ... try: - ... something - ... except Exception as e: - ... print_error() - ... # implicit "del e" here + def f(): + def print_error(): + print(e) + try: + something + except Exception as e: + print_error() + # implicit "del e" here (See :issue:`4617`.) * The internal :c:type:`structsequence` tool now creates subclasses of tuple. This means that C structures like those returned by :func:`os.stat`, - :func:`time.gmtime`, and :func:`sys.version_info` now work like a + :func:`time.gmtime`, and :attr:`sys.version_info` now work like a :term:`named tuple` and now work with functions and methods that - expect a tuple as an argument. The is a big step forward in making the C - structures as flexible as their pure Python counterparts. + expect a tuple as an argument. This is a big step forward in making the C + structures as flexible as their pure Python counterparts: + + >>> isinstance(sys.version_info, tuple) + True + >>> 'Version %d.%d.%d %s(%d)' % sys.version_info + 'Version 3.2.0 final(0)' (Suggested by Arfrever Frehtes Taifersar Arahesis and implemented by Benjamin Peterson in :issue:`8413`.) -* Warnings are now easier to control. A :envvar:`PYTHONWARNINGS` environment - variable is now available as an alternative to using ``-W`` at the command - line. +* Warnings are now easier to control using the :envvar:`PYTHONWARNINGS` + environment variable as an alternative to using ``-W`` at the command line:: + + $ export PYTHONWARNINGS='ignore::RuntimeWarning::,once::UnicodeWarning::' (Suggested by Barry Warsaw and implemented by Philip Jenvey in :issue:`7301`.) * A new warning category, :exc:`ResourceWarning`, has been added. It is emitted when potential issues with resource consumption or cleanup - are detected. It is silenced by default in normal release builds, but + are detected. It is silenced by default in normal release builds but can be enabled through the means provided by the :mod:`warnings` module, or on the command line. A :exc:`ResourceWarning` is issued at interpreter shutdown if the - :data:`gc.garbage` list isn't empty. This is meant to make the programmer - aware that their code contains object finalization issues. + :data:`gc.garbage` list isn't empty, and if :attr:`gc.DEBUG_UNCOLLECTABLE` is + set, all uncollectable objects are printed. This is meant to make the + programmer aware that their code contains object finalization issues. A :exc:`ResourceWarning` is also issued when a :term:`file object` is destroyed without having been explicitly closed. While the deallocator for such @@ -541,8 +609,8 @@ of an effort to make more objects fully implement the :class:`collections.Sequence` :term:`abstract base class`. As a result, the language will have a more uniform API. In addition, :class:`range` objects - now support slicing and negative indices. This makes *range* more - interoperable with lists:: + now support slicing and negative indices, even with values larger than + :attr:`sys.maxsize`. This makes *range* more interoperable with lists:: >>> range(0, 100, 2).count(10) 1 @@ -553,8 +621,8 @@ >>> range(0, 100, 2)[0:5] range(0, 10, 2) - (Contributed by Daniel Stutzbach in :issue:`9213` and by Alexander Belopolsky - in :issue:`2690`.) + (Contributed by Daniel Stutzbach in :issue:`9213`, by Alexander Belopolsky + in :issue:`2690`, and by Nick Coghlan in :issue:`10889`.) * The :func:`callable` builtin function from Py2.x was resurrected. It provides a concise, readable alternative to using an :term:`abstract base class` in an @@ -567,10 +635,11 @@ (See :issue:`10518`.) -* Python's import mechanism can now load module installed in directories with - non-ASCII characters in the path name. +* Python's import mechanism can now load modules installed in directories with + non-ASCII characters in the path name. This solved an aggravating problem + with home directories for users with non-ASCII characters in their usernames. - (Required extensive work by Victor Stinner in :issue:`9425`.) + (Required extensive work by Victor Stinner in :issue:`9425`.) New, Improved, and Deprecated Modules @@ -579,20 +648,21 @@ Python's standard library has undergone significant maintenance efforts and quality improvements. -The biggest news for Python 3.2 is that the :mod:`email` package and -:mod:`nntplib` modules now work correctly with the bytes/text model in Python 3. -For the first time, there is correct handling of inputs with mixed encodings. +The biggest news for Python 3.2 is that the :mod:`email` package, :mod:`mailbox` +module, and :mod:`nntplib` modules now work correctly with the bytes/text model +in Python 3. For the first time, there is correct handling of messages with +mixed encodings. Throughout the standard library, there has been more careful attention to encodings and text versus bytes issues. In particular, interactions with the -operating system are now better able to pass non-ASCII data using the Windows -mcbs encoding, locale-aware encodings, or UTF-8. +operating system are now better able to exchange non-ASCII data using the +Windows MBCS encoding, locale-aware encodings, or UTF-8. Another significant win is the addition of substantially better support for *SSL* connections and security certificates. In addition, more classes now implement a :term:`context manager` to support -convenient and reliable resource clean-up using the :keyword:`with`-statement. +convenient and reliable resource clean-up using a :keyword:`with` statement. email ----- @@ -618,7 +688,8 @@ convert message bodies that have a :mailheader:`Content-Transfer-Encoding` of *8bit* to instead have a *7bit* :mailheader:`Content-Transfer-Encoding`. -.. XXX: Headers with Un-encoded non-ASCII bytes will be :rfc:`2047`\ -encoded using the charset `unknown-8bit`. + Headers with unencoded non-ASCII bytes are deemed to be :rfc:`2047`\ -encoded + using the *unknown-8bit* character set. * A new class :class:`~email.generator.BytesGenerator` produces bytes as output, preserving any unchanged non-ASCII data that was present in the input used to @@ -631,8 +702,6 @@ :class:`~email.message.Message` object and can optionally obtain the *from_addr* and *to_addrs* addresses directly from the object. -.. XXX Update before 3.2rc1 to reflect all of the latest work and add examples. - (Proposed and implemented by R. David Murray, :issue:`4661` and :issue:`10321`.) elementtree @@ -677,16 +746,17 @@ resource whenever the results are expected to be the same. For example, adding a caching decorator to a database query function can save - database accesses for popular searches:: + database accesses for popular searches: - @functools.lru_cache(maxsize=300) - def get_phone_number(name): - c = conn.cursor() - c.execute('SELECT phonenumber FROM phonelist WHERE name=?', (name,)) - return c.fetchone()[0] + >>> import functools + >>> @functools.lru_cache(maxsize=300) + >>> def get_phone_number(name): + c = conn.cursor() + c.execute('SELECT phonenumber FROM phonelist WHERE name=?', (name,)) + return c.fetchone()[0] >>> for name in user_requests: - ... get_phone_number(name) # cached lookup + get_phone_number(name) # cached lookup To help with choosing an effective cache size, the wrapped function is instrumented for tracking cache statistics: @@ -699,8 +769,11 @@ >>> get_phone_number.cache_clear() - (Contributed by Raymond Hettinger and incorporating design ideas from - Jim Baker, Miki Tebeka, and Nick Coghlan.) + (Contributed by Raymond Hettinger and incorporating design ideas from Jim + Baker, Miki Tebeka, and Nick Coghlan; see `recipe 498245 + `_\, `recipe 577479 + `_\, :issue:`10586`, and + :issue:`10593`.) * The :func:`functools.wraps` decorator now adds a :attr:`__wrapped__` attribute pointing to the original callable function. This allows wrapped functions to @@ -708,6 +781,11 @@ it also gracefully skips over missing attributes such as :attr:`__doc__` which might not be defined for the wrapped callable. + In the above example, the cache can be removed by recovering the original + function: + + >>> get_phone_number = get_phone_number.__wrapped__ # uncached function + (By Nick Coghlan and Terrence Cole; :issue:`9567`, :issue:`3445`, and :issue:`8814`.) @@ -732,7 +810,7 @@ (Contributed by Raymond Hettinger.) -* To aid in porting programs from Python 2, the :func:`~functools.cmp_to_key` +* To aid in porting programs from Python 2, the :func:`functools.cmp_to_key` function converts an old-style comparison function to modern :term:`key function`: @@ -748,9 +826,10 @@ --------- * The :mod:`itertools` module has a new :func:`~itertools.accumulate` function - modeled on APL's *scan* operator and on Numpy's *accumulate* function: + modeled on APL's *scan* operator and Numpy's *accumulate* function: - >>> list(accumulate(8, 2, 50)) + >>> from itertools import accumulate + >>> list(accumulate([8, 2, 50])) [8, 10, 60] >>> prob_dist = [0.1, 0.4, 0.2, 0.3] @@ -788,25 +867,27 @@ * The :class:`collections.OrderedDict` class has a new method :meth:`~collections.OrderedDict.move_to_end` which takes an existing key and - moves it to either the beginning or end of an ordered sequence. When the - dictionary sequence is being used as a queue, these operations correspond to - "move to the front of the line" or "move to the back of the line": + moves it to either the first or last position in the ordered sequence. + + The default is to move an item to the last position. This is equivalent of + renewing an entry with ``od[k] = od.pop(k)``. + + A fast move-to-end operation is useful for resequencing entries. For example, + an ordered dictionary can be used to track order of access by aging entries + from the oldest to the most recently accessed. >>> d = OrderedDict.fromkeys(['a', 'b', 'X', 'd', 'e']) >>> list(d) ['a', 'b', 'X', 'd', 'e'] - >>> d.move_to_end('X', last=True) + >>> d.move_to_end('X') >>> list(d) ['a', 'b', 'd', 'e', 'X'] - >>> d.move_to_end('X', last=False) - >>> list(d) - ['X', 'a', 'b', 'd', 'e'] (Contributed by Raymond Hettinger.) -* The :class:`collections.deque` grew two new methods :meth:`~collections.deque.count` - and :meth:`collections.deque.reverse` that make them more substitutable for - :class:`list` when needed: +* The :class:`collections.deque` class grew two new methods + :meth:`~collections.deque.count` and :meth:`~collections.deque.reverse` that + make them more substitutable for :class:`list` objects: >>> d = deque('simsalabim') >>> d.count('s') @@ -817,51 +898,175 @@ (Contributed by Raymond Hettinger.) -.. XXX threading.py and Barrier objects +threading +--------- -datetime --------- +The :mod:`threading` module has a new :class:`~threading.Barrier` +synchronization class for making multiple threads wait until all of them have +reached a common barrier point. Barriers are useful for making sure that a task +with multiple preconditions does not run until all of the predecessor tasks are +complete. + +Barriers can work with an arbitrary number of threads. This is a generalization +of a `Rendezvous `_ which +is defined for only two threads. + +Implemented as a two-phase cyclic barrier, :class:`~threading.Barrier` objects +are suitable for use in loops. The separate *filling* and *draining* phases +assure that all threads get released (drained) before any one of them can loop +back and re-enter the barrier. The barrier fully resets after each cycle. + +Example of using barriers:: + + from threading import Barrier, Thread + + def get_votes(site): + ballots = conduct_election(site) + all_polls_closed.wait() # do not count until all polls are closed + totals = summarize(ballots) + publish(site, totals) + + all_polls_closed = Barrier(len(sites)) + for site in sites: + Thread(target=get_votes, args=(site,)).start() + +In this example, the barrier enforces a rule that votes cannot be counted at any +polling site until all polls are closed. Notice how a solution with a barrier +is similar to one with :meth:`threading.Thread.join`, but the threads stay alive +and continue to do work (summarizing ballots) after the barrier point is +crossed. + +If any of the predecessor tasks can hang or be delayed, a barrier can be created +with an optional *timeout* parameter. Then if the timeout period elapses before +all the predecessor tasks reach the barrier point, all waiting threads are +released and a :exc:`~threading.BrokenBarrierError` exception is raised:: + + def get_votes(site): + ballots = conduct_election(site) + try: + all_polls_closed.wait(timeout = midnight - time.now()) + except BrokenBarrierError: + lockbox = seal_ballots(ballots) + queue.put(lockbox) + else: + totals = summarize(ballots) + publish(site, totals) + +In this example, the barrier enforces a more robust rule. If some election +sites do not finish before midnight, the barrier times-out and the ballots are +sealed and deposited in a queue for later handling. + +See `Barrier Synchronization Patterns +`_ for +more examples of how barriers can be used in parallel computing. Also, there is +a simple but thorough explanation of barriers in `The Little Book of Semaphores +`_, *section 3.6*. + +(Contributed by Kristj?n Valur J?nsson with an API review by Jeffrey Yasskin in +:issue:`8777`.) + +datetime and time +----------------- * The :mod:`datetime` module has a new type :class:`~datetime.timezone` that implements the :class:`~datetime.tzinfo` interface by returning a fixed UTC offset and timezone name. This makes it easier to create timezone-aware - datetime objects: + datetime objects:: + + >>> from datetime import datetime, timezone - >>> datetime.now(timezone.utc) - datetime.datetime(2010, 12, 8, 21, 4, 2, 923754, tzinfo=datetime.timezone.utc) + >>> datetime.now(timezone.utc) + datetime.datetime(2010, 12, 8, 21, 4, 2, 923754, tzinfo=datetime.timezone.utc) - >>> datetime.strptime("01/01/2000 12:00 +0000", "%m/%d/%Y %H:%M %z") - datetime.datetime(2000, 1, 1, 12, 0, tzinfo=datetime.timezone.utc) + >>> datetime.strptime("01/01/2000 12:00 +0000", "%m/%d/%Y %H:%M %z") + datetime.datetime(2000, 1, 1, 12, 0, tzinfo=datetime.timezone.utc) * Also, :class:`~datetime.timedelta` objects can now be multiplied by :class:`float` and divided by :class:`float` and :class:`int` objects. And :class:`~datetime.timedelta` objects can now divide one another. - (Contributed by Alexander Belopolsky in :issue:`1289118`, :issue:`5094`, - :issue:`6641`, and :issue:`2706`.) +* The :meth:`datetime.date.strftime` method is no longer restricted to years + after 1900. The new supported year range is from 1000 to 9999 inclusive. + +* Whenever a two-digit year is used in a time tuple, the interpretation has been + governed by :attr:`time.accept2dyear`. The default is *True* which means that + for a two-digit year, the century is guessed according to the POSIX rules + governing the ``%y`` strptime format. + + Starting with Py3.2, use of the century guessing heuristic will emit a + :exc:`DeprecationWarning`. Instead, it is recommended that + :attr:`time.accept2dyear` be set to *False* so that large date ranges + can be used without guesswork:: + + >>> import time, warnings + >>> warnings.resetwarnings() # remove the default warning filters + + >>> time.accept2dyear = True # guess whether 11 means 11 or 2011 + >>> time.asctime((11, 1, 1, 12, 34, 56, 4, 1, 0)) + Warning (from warnings module): + ... + DeprecationWarning: Century info guessed for a 2-digit year. + 'Fri Jan 1 12:34:56 2011' + + >>> time.accept2dyear = False # use the full range of allowable dates + >>> time.asctime((11, 1, 1, 12, 34, 56, 4, 1, 0)) + 'Fri Jan 1 12:34:56 11' + + Several functions now have significantly expanded date ranges. When + :attr:`time.accept2dyear` is false, the :func:`time.asctime` function will + accept any year that fits in a C int, while the :func:`time.mktime` and + :func:`time.strftime` functions will accept the full range supported by the + corresponding operating system functions. + +(Contributed by Alexander Belopolsky and Victor Stinner in :issue:`1289118`, +:issue:`5094`, :issue:`6641`, :issue:`2706`, :issue:`1777412`, :issue:`8013`, +and :issue:`10827`.) + +.. XXX http://bugs.python.org/issue?%40search_text=datetime&%40sort=-activity + +math +---- -.. XXX +The :mod:`math` module has been updated with six new functions inspired by the +C99 standard. - * The ``strftime()`` method of :class:`~datetime.date` and - :class:`~datetime.datetime` are no longer restricted to years >= - 1900. The new supported year range is [1000, 9999]. (Contributed - by Alexander Belopolsky and Victor Stinner in :issue:`1777412`) - -.. XXX Add a section on time module. - - * The :func:`time.asctime` and :func:`time.ctime` functions no - longer call C library asctime. (Contributed by Alexander - Belopolsky in :issue:`8013`.) - - * Changed the rules for using 2-digit years in time tuples. The - :func:`time.asctime` and - :func:`time.strftime` functions will now format any year when - ``time.accept2dyear`` is false and will accept years >= 1000 - otherwise. :func:`time.mktime` and :func:`time.strftime` now - accepts full range supported by the OS. Conversion of 2-digit - years to 4-digit is deprecated. (Contributed by Alexander - Belopolsky and Victor Stinner in :issue:`10827`.) +The :func:`~math.isfinite` function provides a reliable and fast way to detect +special values. It returns *True* for regular numbers and *False* for *Nan* or +*Infinity*: + +>>> [isfinite(x) for x in (123, 4.56, float('Nan'), float('Inf'))] +[True, True, False, False] + +The :func:`~math.expm1` function computes ``e**x-1`` for small values of *x* +without incurring the loss of precision that usually accompanies the subtraction +of nearly equal quantities: + +>>> expm1(0.013671875) # more accurate way to compute e**x-1 for a small x +0.013765762467652909 + +The :func:`~math.erf` function computes a probability integral or `Gaussian +error function `_. The +complementary error function, :func:`~math.erfc`, is ``1 - erf(x)``: + +>>> erf(1.0/sqrt(2.0)) # portion of normal distribution within 1 standard deviation +0.682689492137086 +>>> erfc(1.0/sqrt(2.0)) # portion of normal distribution outside 1 standard deviation +0.31731050786291404 +>>> erf(1.0/sqrt(2.0)) + erfc(1.0/sqrt(2.0)) +1.0 + +The :func:`~math.gamma` function is a continuous extension of the factorial +function. See http://en.wikipedia.org/wiki/Gamma_function for details. Because +the function is related to factorials, it grows large even for small values of +*x*, so there is also a :func:`~math.lgamma` function for computing the natural +logarithm of the gamma function: + +>>> gamma(7.0) # six factorial +720.0 +>>> lgamma(801.0) # log(800 factorial) +4551.950730698041 +(Contributed by Mark Dickinson.) abc --- @@ -869,12 +1074,139 @@ The :mod:`abc` module now supports :func:`~abc.abstractclassmethod` and :func:`~abc.abstractstaticmethod`. -These tools make it possible to define an :term:`Abstract Base Class` that +These tools make it possible to define an :term:`abstract base class` that requires a particular :func:`classmethod` or :func:`staticmethod` to be -implemented. +implemented:: + + class Temperature(metaclass=abc.ABCMeta): + @abc.abstractclassmethod + def from_fahrenheit(cls, t): + ... + @abc.abstractclassmethod + def from_celsius(cls, t): + ... (Patch submitted by Daniel Urban; :issue:`5867`.) +io +-- + +The :class:`io.BytesIO` has a new method, :meth:`~io.BytesIO.getbuffer`, which +provides functionality similar to :func:`memoryview`. It creates an editable +view of the data without making a copy. The buffer's random access and support +for slice notation are well-suited to in-place editing:: + + >>> REC_LEN, LOC_START, LOC_LEN = 34, 7, 11 + + >>> def change_location(buffer, record_number, location): + start = record_number * REC_LEN + LOC_START + buffer[start: start+LOC_LEN] = location + + >>> import io + + >>> byte_stream = io.BytesIO( + b'G3805 storeroom Main chassis ' + b'X7899 shipping Reserve cog ' + b'L6988 receiving Primary sprocket' + ) + >>> buffer = byte_stream.getbuffer() + >>> change_location(buffer, 1, b'warehouse ') + >>> change_location(buffer, 0, b'showroom ') + >>> print(byte_stream.getvalue()) + b'G3805 showroom Main chassis ' + b'X7899 warehouse Reserve cog ' + b'L6988 receiving Primary sprocket' + +(Contributed by Antoine Pitrou in :issue:`5506`.) + +reprlib +------- + +When writing a :meth:`__repr__` method for a custom container, it is easy to +forget to handle the case where a member refers back to the container itself. +Python's builtin objects such as :class:`list` and :class:`set` handle +self-reference by displaying "..." in the recursive part of the representation +string. + +To help write such :meth:`__repr__` methods, the :mod:`reprlib` module has a new +decorator, :func:`~reprlib.recursive_repr`, for detecting recursive calls to +:meth:`__repr__` and substituting a placeholder string instead:: + + >>> class MyList(list): + @recursive_repr() + def __repr__(self): + return '<' + '|'.join(map(repr, self)) + '>' + + >>> m = MyList('abc') + >>> m.append(m) + >>> m.append('x') + >>> print(m) + <'a'|'b'|'c'|...|'x'> + +(Contributed by Raymond Hettinger in :issue:`9826` and :issue:`9840`.) + +logging +------- + +In addition to dictionary-based configuration described above, the +:mod:`logging` package has many other improvements. + +The logging documentation has been augmented by a :ref:`basic tutorial +`\, an :ref:`advanced tutorial +`\, and a :ref:`cookbook ` of +logging recipes. These documents are the fastest way to learn about logging. + +The :func:`logging.basicConfig` set-up function gained a *style* argument to +support three different types of string formatting. It defaults to "%" for +traditional %-formatting, can be set to "{" for the new :meth:`str.format` style, or +can be set to "$" for the shell-style formatting provided by +:class:`string.Template`. The following three configurations are equivalent:: + + >>> from logging import basicConfig + >>> basicConfig(style='%', format="%(name)s -> %(levelname)s: %(message)s") + >>> basicConfig(style='{', format="{name} -> {levelname} {message}") + >>> basicConfig(style='$', format="$name -> $levelname: $message") + +If no configuration is set-up before a logging event occurs, there is now a +default configuration using a :class:`~logging.StreamHandler` directed to +:attr:`sys.stderr` for events of ``WARNING`` level or higher. Formerly, an +event occurring before a configuration was set-up would either raise an +exception or silently drop the event depending on the value of +:attr:`logging.raiseExceptions`. The new default handler is stored in +:attr:`logging.lastResort`. + +The use of filters has been simplified. Instead of creating a +:class:`~logging.Filter` object, the predicate can be any Python callable that +returns *True* or *False*. + +There were a number of other improvements that add flexibility and simplify +configuration. See the module documentation for a full listing of changes in +Python 3.2. + +csv +--- + +The :mod:`csv` module now supports a new dialect, :class:`~csv.unix_dialect`, +which applies quoting for all fields and a traditional Unix style with ``'\n'`` as +the line terminator. The registered dialect name is ``unix``. + +The :class:`csv.DictWriter` has a new method, +:meth:`~csv.DictWriter.writeheader` for writing-out an initial row to document +the field names:: + + >>> import csv, sys + >>> w = csv.DictWriter(sys.stdout, ['name', 'dept'], dialect='unix') + >>> w.writeheader() + "name","dept" + >>> w.writerows([ + {'name': 'tom', 'dept': 'accounting'}, + {'name': 'susan', 'dept': 'Salesl'}]) + "tom","accounting" + "susan","sales" + +(New dialect suggested by Jay Talbot in :issue:`5975`, and the new method +suggested by Ed Abraham in :issue:`1537721`.) + contextlib ---------- @@ -888,7 +1220,7 @@ The basic idea is that both context managers and function decorators can be used for pre-action and post-action wrappers. Context managers wrap a group of -statements using the :keyword:`with`-statement, and function decorators wrap a +statements using a :keyword:`with` statement, and function decorators wrap a group of statements enclosed in a function. So, occasionally there is a need to write a pre-action or post-action wrapper that can be used in either role. @@ -896,32 +1228,35 @@ with a logger that can track the time of entry and time of exit. Rather than writing both a function decorator and a context manager for the task, the :func:`~contextlib.contextmanager` provides both capabilities in a single -definition: +definition:: + + from contextlib import contextmanager + import logging + + logging.basicConfig(level=logging.INFO) + + @contextmanager + def track_entry_and_exit(name): + logging.info('Entering: {}'.format(name)) + yield + logging.info('Exiting: {}'.format(name)) + +Formerly, this would have only been usable as a context manager:: ->>> import logging ->>> logging.basicConfig(level=logging.INFO) ->>> @contextmanager -... def track_entry_and_exit(name): -... logging.info('Entering: {}'.format(name)) -... yield -... logging.info('Exiting: {}'.format(name)) - -Formerly, this would have only been usable as a context manager: - ->>> with track_entry_and_exit('widget loader'): -... print('Some time consuming activity goes here') -... load_widget() - -Now, it can be used as a decorator as well: - ->>> @track_entry_and_exit('widget loader') -... def activity(): -... print('Some time consuming activity goes here') -... load_widget() + with track_entry_and_exit('widget loader'): + print('Some time consuming activity goes here') + load_widget() + +Now, it can be used as a decorator as well:: + + @track_entry_and_exit('widget loader') + def activity(): + print('Some time consuming activity goes here') + load_widget() Trying to fulfill two roles at once places some limitations on the technique. Context managers normally have the flexibility to return an argument usable by -the :keyword:`with`-statement, but there is no parallel for function decorators. +a :keyword:`with` statement, but there is no parallel for function decorators. In the above example, there is not a clean way for the *track_entry_and_exit* context manager to return a logging instance for use in the body of enclosed @@ -936,11 +1271,19 @@ different numeric datatypes will have the same hash value whenever their actual values are equal (:issue:`8188`):: - >>> assert hash(Fraction(3, 2)) == hash(1.5) == \ - hash(Decimal("1.5")) == hash(complex(1.5, 0)) + assert hash(Fraction(3, 2)) == hash(1.5) == \ + hash(Decimal("1.5")) == hash(complex(1.5, 0)) + +Some of the hashing details are exposed through a new attribute, +:attr:`sys.hash_info`, which describes the bit width of the hash value, the +prime modulus, the hash values for *infinity* and *nan*, and the multiplier +used for the imaginary part of a number: + +>>> sys.hash_info +sys.hash_info(width=64, modulus=2305843009213693951, inf=314159, nan=0, imag=1000003) An early decision to limit the inter-operability of various numeric types has -been relaxed. It is still unsupported (and ill-advised) to to have implicit +been relaxed. It is still unsupported (and ill-advised) to have implicit mixing in arithmetic expressions such as ``Decimal('1.1') + float('1.1')`` because the latter loses information in the process of constructing the binary float. However, since existing floating point value can be converted losslessly @@ -980,9 +1323,9 @@ >>> from ftplib import FTP >>> with FTP("ftp1.at.proftpd.org") as ftp: - ... ftp.login() - ... ftp.dir() - ... + ftp.login() + ftp.dir() + '230 Anonymous login ok, restrictions apply.' dr-xr-xr-x 9 ftp ftp 154 May 6 10:43 . dr-xr-xr-x 9 ftp ftp 154 May 6 10:43 .. @@ -999,11 +1342,34 @@ (Contributed by Tarek Ziad? and Giampaolo Rodol? in :issue:`4972`, and by Georg Brandl in :issue:`8046` and :issue:`1286`.) +The :class:`~ftplib.FTP_TLS` class now accepts a *context* parameter, which is a +:class:`ssl.SSLContext` object allowing bundling SSL configuration options, +certificates and private keys into a single (potentially long-lived) structure. + +(Contributed by Giampaolo Rodol?; :issue:`8806`.) + popen ----- The :func:`os.popen` and :func:`subprocess.Popen` functions now support -the :keyword:`with`-statement` for auto-closing of the file descriptors. +:keyword:`with` statements for auto-closing of the file descriptors. + +(Contributed by Antoine Pitrou and Brian Curtin in :issue:`7461` and +:issue:`10554`.) + +select +------ + +The :mod:`select` module now exposes a new, constant attribute, +:attr:`~select.PIPE_BUF`, which gives the minimum number of bytes which are +guaranteed not to block when :func:`select.select` says a pipe is ready +for writing. + +>>> import select +>>> select.PIPE_BUF +512 + +(Available on Unix systems. Patch by S?bastien Sabl? in :issue:`9862`) gzip and zipfile ---------------- @@ -1039,26 +1405,166 @@ also solves an issue where interleaved calls to *read* and *readline* gave the wrong results. -(Patch submitted by by Nir Aides in :issue:`7610`.) +(Patch submitted by Nir Aides in :issue:`7610`.) + +tarfile +------- + +The :class:`~tarfile.TarFile` class can now be used as a context manager. In +addition, its :meth:`~tarfile.TarFile.add` method has a new option, *filter*, +that controls which files are added to the archive and allows the file metadata +to be edited. + +The new *filter* option replaces the older, less flexible *exclude* parameter +which is now deprecated. If specified, the optional *filter* parameter needs to +be a :term:`keyword argument`. The user-supplied filter function accepts a +:class:`~tarfile.TarInfo` object and returns an updated +:class:`~tarfile.TarInfo` object, or if it wants the file to be excluded, the +function can return *None*:: + + >>> import tarfile, glob + + >>> def myfilter(tarinfo): + if tarinfo.isfile(): # only save real files + tarinfo.uname = 'monty' # redact the user name + return tarinfo + + >>> with tarfile.open(name='myarchive.tar.gz', mode='w:gz') as tf: + for filename in glob.glob('*.txt'): + tf.add(filename, filter=myfilter) + tf.list() + -rw-r--r-- monty/501 902 2011-01-26 17:59:11 annotations.txt + -rw-r--r-- monty/501 123 2011-01-26 17:59:11 general_questions.txt + -rw-r--r-- monty/501 3514 2011-01-26 17:59:11 prion.txt + -rw-r--r-- monty/501 124 2011-01-26 17:59:11 py_todo.txt + -rw-r--r-- monty/501 1399 2011-01-26 17:59:11 semaphore_notes.txt + +(Proposed by Tarek Ziad? and implemented by Lars Gust?bel in :issue:`6856`.) + +hashlib +------- + +The :mod:`hashlib` module has two new constant attributes listing the hashing +algorithms guaranteed to be present in all implementations and those available +on the current implementation:: + + >>> import hashlib + + >>> hashlib.algorithms_guaranteed + {'sha1', 'sha224', 'sha384', 'sha256', 'sha512', 'md5'} + + >>> hashlib.algorithms_available + {'md2', 'SHA256', 'SHA512', 'dsaWithSHA', 'mdc2', 'SHA224', 'MD4', 'sha256', + 'sha512', 'ripemd160', 'SHA1', 'MDC2', 'SHA', 'SHA384', 'MD2', + 'ecdsa-with-SHA1','md4', 'md5', 'sha1', 'DSA-SHA', 'sha224', + 'dsaEncryption', 'DSA', 'RIPEMD160', 'sha', 'MD5', 'sha384'} + +(Suggested by Carl Chenet in :issue:`7418`.) + +ast +--- + +The :mod:`ast` module has a wonderful a general-purpose tool for safely +evaluating expression strings using the Python literal +syntax. The :func:`ast.literal_eval` function serves as a secure alternative to +the builtin :func:`eval` function which is easily abused. Python 3.2 adds +:class:`bytes` and :class:`set` literals to the list of supported types: +strings, bytes, numbers, tuples, lists, dicts, sets, booleans, and None. + +:: + + >>> from ast import literal_eval + + >>> request = "{'req': 3, 'func': 'pow', 'args': (2, 0.5)}" + >>> literal_eval(request) + {'args': (2, 0.5), 'req': 3, 'func': 'pow'} + + >>> request = "os.system('do something harmful')" + >>> literal_eval(request) + Traceback (most recent call last): + ... + ValueError: malformed node or string: <_ast.Call object at 0x101739a10> + +(Implemented by Benjamin Peterson and Georg Brandl.) + +os +-- + +Different operating systems use various encodings for filenames and environment +variables. The :mod:`os` module provides two new functions, +:func:`~os.fsencode` and :func:`~os.fsdecode`, for encoding and decoding +filenames: + +>>> filename = 'Sehensw?rdigkeiten' +>>> os.fsencode(filename) +b'Sehensw\xc3\xbcrdigkeiten' + +Some operating systems allow direct access to the unencoded bytes in the +environment. If so, the :attr:`os.supports_bytes_environ` constant will be +true. + +For direct access to unencoded environment variables (if available), +use the new :func:`os.getenvb` function or use :data:`os.environb` +which is a bytes version of :data:`os.environ`. + +(Contributed by Victor Stinner.) shutil ------ The :func:`shutil.copytree` function has two new options: - * *ignore_dangling_symlinks*: when ``symlinks=False`` so that the function - copies the file pointed to by the symlink, not the symlink itself. This - option will silence the error raised if the file doesn't exist. +* *ignore_dangling_symlinks*: when ``symlinks=False`` so that the function + copies a file pointed to by a symlink, not the symlink itself. This option + will silence the error raised if the file doesn't exist. + +* *copy_function*: is a callable that will be used to copy files. + :func:`shutil.copy2` is used by default. + +(Contributed by Tarek Ziad?.) - * *copy_function*: is a callable that will be used to copy files. - :func:`shutil.copy2` is used by default. +In addition, the :mod:`shutil` module now supports :ref:`archiving operations +` for zipfiles, uncompressed tarfiles, gzipped tarfiles, +and bzipped tarfiles. And there are functions for registering additional +archiving file formats (such as xz compressed tarfiles or custom formats). + +The principal functions are :func:`~shutil.make_archive` and +:func:`~shutil.unpack_archive`. By default, both operate on the current +directory (which can be set by :func:`os.chdir`) and on any sub-directories. +The archive filename needs to be specified with a full pathname. The archiving +step is non-destructive (the original files are left unchanged). + +:: + + >>> import shutil, pprint + + >>> os.chdir('mydata') # change to the source directory + >>> f = shutil.make_archive('/var/backup/mydata', + 'zip') # archive the current directory + >>> f # show the name of archive + '/var/backup/mydata.zip' + >>> os.chdir('tmp') # change to an unpacking + >>> shutil.unpack_archive('/var/backup/mydata.zip') # recover the data + + >>> pprint.pprint(shutil.get_archive_formats()) # display known formats + [('bztar', "bzip2'ed tar-file"), + ('gztar', "gzip'ed tar-file"), + ('tar', 'uncompressed tar file'), + ('zip', 'ZIP file')] + + >>> shutil.register_archive_format( # register a new archive format + name = 'xz', + function = xz.compress, # callable archiving function + extra_args = [('level', 8)], # arguments to the function + description = 'xz compression' + ) (Contributed by Tarek Ziad?.) sqlite3 ------- -The :mod:`sqlite3` module was updated to version 2.6.0. It has two new capabilities. +The :mod:`sqlite3` module was updated to pysqlite version 2.6.0. It has two new capabilities. * The :attr:`sqlite3.Connection.in_transit` attribute is true if there is an active transaction for uncommitted changes. @@ -1070,6 +1576,17 @@ (Contributed by R. David Murray and Shashwat Anand; :issue:`8845`.) +html +---- + +A new :mod:`html` module was introduced with only a single function, +:func:`~html.escape`, which is used for escaping reserved characters from HTML +markup: + +>>> import html +>>> html.escape('x > 2 && x < 7') +'x > 2 && x < 7' + socket ------ @@ -1088,44 +1605,44 @@ ssl --- -* The :mod:`ssl` module has a new class, :class:`~ssl.SSLContext` which serves - as a container for various persistent SSL data, such as protocol settings, - certificates, private keys, and various other options. The - :meth:`~ssl.SSLContext.wrap_socket` method allows to create an SSL socket from - such an SSL context. (Added by Antoine Pitrou; :issue:`8550`.) - -* A new function, :func:`ssl.match_hostname`, helps implement server identity - verification for higher-level protocols by implementing the rules of - HTTPS (from :rfc:`2818`), which are also suitable for other protocols. - (Added by Antoine Pitrou, :issue:`1589`). +The :mod:`ssl` module added a number of features to satisfy common requirements +for secure (encrypted, authenticated) internet connections: + +* A new class, :class:`~ssl.SSLContext`, serves as a container for persistent + SSL data, such as protocol settings, certificates, private keys, and various + other options. It includes a :meth:`~ssl.SSLContext.wrap_socket` for creating + an SSL socket from an SSL context. + +* A new function, :func:`ssl.match_hostname`, supports server identity + verification for higher-level protocols by implementing the rules of HTTPS + (from :rfc:`2818`) which are also suitable for other protocols. * The :func:`ssl.wrap_socket` constructor function now takes a *ciphers* - argument that's a string listing the encryption algorithms to be allowed; the - format of the string is described `in the OpenSSL documentation - `__. (Added - by Antoine Pitrou; :issue:`8322`.) - -* When linked against a recent enough version of OpenSSL, the :mod:`ssl` - module now supports the Server Name Indication extension to the TLS - protocol, allowing for several "virtual hosts" using different certificates - on a single IP/port. This extension is only supported in client mode, - and is activated by passing the *server_hostname* argument to - :meth:`SSLContext.wrap_socket`. - (Added by Antoine Pitrou, :issue:`5639`.) + argument. The *ciphers* string lists the allowed encryption algorithms using + the format described in the `OpenSSL documentation + `__. + +* When linked against recent versions of OpenSSL, the :mod:`ssl` module now + supports the Server Name Indication extension to the TLS protocol, allowing + multiple "virtual hosts" using different certificates on a single IP port. + This extension is only supported in client mode, and is activated by passing + the *server_hostname* argument to :meth:`ssl.SSLContext.wrap_socket`. * Various options have been added to the :mod:`ssl` module, such as - :data:`~ssl.OP_NO_SSLv2` which allows to force disabling of the insecure and - obsolete SSLv2 protocol. (Added by Antoine Pitrou; :issue:`4870`.) + :data:`~ssl.OP_NO_SSLv2` which disables the insecure and obsolete SSLv2 + protocol. + +* The extension now loads all the OpenSSL ciphers and digest algorithms. If + some SSL certificates cannot be verified, they are reported as an "unknown + algorithm" error. + +* The version of OpenSSL being used is now accessible using the module + attributes :data:`ssl.OPENSSL_VERSION` (a string), + :data:`ssl.OPENSSL_VERSION_INFO` (a 5-tuple), and + :data:`ssl.OPENSSL_VERSION_NUMBER` (an integer). -* Another change makes the extension load all of OpenSSL's ciphers and digest - algorithms so that they're all available. Some SSL certificates couldn't be - verified, reporting an "unknown algorithm" error. (Reported by Beda Kosata, - and fixed by Antoine Pitrou; :issue:`8484`.) - -* The version of OpenSSL being used is now available as the module attributes - :data:`ssl.OPENSSL_VERSION` (a string), :data:`ssl.OPENSSL_VERSION_INFO` (a - 5-tuple), and :data:`ssl.OPENSSL_VERSION_NUMBER` (an integer). (Added by - Antoine Pitrou; :issue:`8321`.) +(Contributed by Antoine Pitrou in :issue:`8850`, :issue:`1589`, :issue:`8322`, +:issue:`5639`, :issue:`4870`, :issue:`8484`, and :issue:`8321`.) nntp ---- @@ -1135,7 +1652,11 @@ compatibility with the nntplib version in Python 3.1, which was partly dysfunctional in itself. -(Contributed by Antoine Pitrou in :issue:`9360`) +Support for secure connections through both implicit (using +:class:`nntplib.NNTP_SSL`) and explicit (using :meth:`nntplib.NNTP.starttls`) +TLS has also been added. + +(Contributed by Antoine Pitrou in :issue:`9360` and Andrew Vant in :issue:`1926`.) certificates ------------ @@ -1147,6 +1668,45 @@ (Added by Antoine Pitrou, :issue:`9003`.) +imaplib +------- + +Support for explicit TLS on standard IMAP4 connections has been added through +the new :mod:`imaplib.IMAP4.starttls` method. + +(Contributed by Lorenzo M. Catucci and Antoine Pitrou, :issue:`4471`.) + +http.client +----------- + +There were a number of small API improvements in the :mod:`http.client` module. +The old-style HTTP 0.9 simple responses are no longer supported and the *strict* +parameter is deprecated in all classes. + +The :class:`~http.client.HTTPConnection` and +:class:`~http.client.HTTPSConnection` classes now have a *source_address* +parameter for a (host, port) tuple indicating where the HTTP connection is made +from. + +Support for certificate checking and HTTPS virtual hosts were added to +:class:`~http.client.HTTPSConnection`. + +The :meth:`~http.client.HTTPConnection.request` method on connection objects +allowed an optional *body* argument so that a :term:`file object` could be used +to supply the content of the request. Conveniently, the *body* argument now +also accepts an :term:`iterable` object so long as it includes an explicit +``Content-Length`` header. This extended interface is much more flexible than +before. + +To establish an HTTPS connection through a proxy server, there is a new +:meth:`~http.client.HTTPConnection.set_tunnel` method that sets the host and +port for HTTP Connect tunneling. + +To match the behavior of :mod:`http.server`, the HTTP client library now also +encodes headers with ISO-8859-1 (Latin-1) encoding. It was already doing that +for incoming headers, so now the behavior is consistent for both incoming and +outgoing traffic. (See work by Armin Ronacher in :issue:`10980`.) + unittest -------- @@ -1158,7 +1718,7 @@ * The command-line call ``python -m unittest`` can now accept file paths instead of module names for running specific tests (:issue:`10620`). The new test discovery can find tests within packages, locating any test importable - from the top level directory. The top level directory can be specified with + from the top-level directory. The top-level directory can be specified with the `-t` option, a pattern for matching files with ``-p``, and a directory to start discovery with ``-s``:: @@ -1177,12 +1737,12 @@ * The :mod:`unittest` module has two new methods, :meth:`~unittest.TestCase.assertWarns` and :meth:`~unittest.TestCase.assertWarnsRegex` to verify that a given warning type - is triggered by the code under test: + is triggered by the code under test:: - >>> with self.assertWarns(DeprecationWarning): - ... legacy_function('XYZ') + with self.assertWarns(DeprecationWarning): + legacy_function('XYZ') - (Contributed by Michael Foord and Ezio Melotti.) + (Contributed by Antoine Pitrou, :issue:`9754`.) Another new method, :meth:`~unittest.TestCase.assertCountEqual` is used to compare two iterables to determine if their element counts are equal (whether @@ -1198,8 +1758,8 @@ diagnostics when a test fails. When possible, the failure is recorded along with a diff of the output. This is especially helpful for analyzing log files of failed test runs. However, since diffs can sometime be voluminous, there is - a new :attr:`~unittest.TestCase.maxDiff` attribute which sets maximum length of - diffs. + a new :attr:`~unittest.TestCase.maxDiff` attribute that sets maximum length of + diffs displayed. * In addition, the method names in the module have undergone a number of clean-ups. @@ -1216,20 +1776,24 @@ * To improve consistency, some long-standing method aliases are being deprecated in favor of the preferred names: - - replace :meth:`assert_` with :meth:`.assertTrue` - - replace :meth:`assertEquals` with :meth:`.assertEqual` - - replace :meth:`assertNotEquals` with :meth:`.assertNotEqual` - - replace :meth:`assertAlmostEquals` with :meth:`.assertAlmostEqual` - - replace :meth:`assertNotAlmostEquals` with :meth:`.assertNotAlmostEqual` + =============================== ============================== + Old Name Preferred Name + =============================== ============================== + :meth:`assert_` :meth:`.assertTrue` + :meth:`assertEquals` :meth:`.assertEqual` + :meth:`assertNotEquals` :meth:`.assertNotEqual` + :meth:`assertAlmostEquals` :meth:`.assertAlmostEqual` + :meth:`assertNotAlmostEquals` :meth:`.assertNotAlmostEqual` + =============================== ============================== Likewise, the ``TestCase.fail*`` methods deprecated in Python 3.1 are expected - to be removed in Python 3.3. See also the :ref:`deprecated-aliases` section in + to be removed in Python 3.3. Also see the :ref:`deprecated-aliases` section in the :mod:`unittest` documentation. (Contributed by Ezio Melotti; :issue:`9424`.) * The :meth:`~unittest.TestCase.assertDictContainsSubset` method was deprecated - because it was mis-implemented with the arguments in the wrong order. This + because it was misimplemented with the arguments in the wrong order. This created hard-to-debug optical illusions where tests like ``TestCase().assertDictContainsSubset({'a':1, 'b':2}, {'a':1})`` would fail. @@ -1241,7 +1805,7 @@ The integer methods in the :mod:`random` module now do a better job of producing uniform distributions. Previously, they computed selections with ``int(n*random())`` which had a slight bias whenever *n* was not a power of two. -Now, multiple selections are made from a range upto the next power of two and a +Now, multiple selections are made from a range up to the next power of two and a selection is kept only when it falls within the range ``0 <= x < n``. The functions and methods affected are :func:`~random.randrange`, :func:`~random.randint`, :func:`~random.choice`, :func:`~random.shuffle` and @@ -1252,31 +1816,34 @@ poplib ------ -* :class:`~poplib.POP3_SSL` class now accepts a *context* parameter, which is a - :class:`ssl.SSLContext` object allowing bundling SSL configuration options, - certificates and private keys into a single (potentially long-lived) - structure. - - (Contributed by Giampaolo Rodol?; :issue:`8807`.) - -* :class:`asyncore.dispatcher` now provides a - :meth:`~asyncore.dispatcher.handle_accepted()` method - returning a `(sock, addr)` pair which is called when a connection has actually - been established with a new remote endpoint. This is supposed to be used as a - replacement for old :meth:`~asyncore.dispatcher.handle_accept()` and avoids - the user to call :meth:`~asyncore.dispatcher.accept()` directly. +:class:`~poplib.POP3_SSL` class now accepts a *context* parameter, which is a +:class:`ssl.SSLContext` object allowing bundling SSL configuration options, +certificates and private keys into a single (potentially long-lived) +structure. + +(Contributed by Giampaolo Rodol?; :issue:`8807`.) + +asyncore +-------- - (Contributed by Giampaolo Rodol?; :issue:`6706`.) +:class:`asyncore.dispatcher` now provides a +:meth:`~asyncore.dispatcher.handle_accepted()` method +returning a `(sock, addr)` pair which is called when a connection has actually +been established with a new remote endpoint. This is supposed to be used as a +replacement for old :meth:`~asyncore.dispatcher.handle_accept()` and avoids +the user to call :meth:`~asyncore.dispatcher.accept()` directly. + +(Contributed by Giampaolo Rodol?; :issue:`6706`.) tempfile -------- The :mod:`tempfile` module has a new context manager, :class:`~tempfile.TemporaryDirectory` which provides easy deterministic -cleanup of temporary directories: +cleanup of temporary directories:: ->>> with tempfile.TemporaryDirectory() as tmpdirname: -... print('created temporary dir:', tmpdirname) + with tempfile.TemporaryDirectory() as tmpdirname: + print('created temporary dir:', tmpdirname) (Contributed by Neil Schemenauer and Nick Coghlan; :issue:`5178`.) @@ -1285,29 +1852,166 @@ * The :mod:`inspect` module has a new function :func:`~inspect.getgeneratorstate` to easily identify the current state of a - generator as one of ``GEN_CREATED``, ``GEN_RUNNING``, ``GEN_SUSPENDED`` or - ``GEN_CLOSED``. (Contributed by Rodolpho Eckhardt and Nick Coghlan, - :issue:`10220`.) + generator-iterator:: + + >>> from inspect import getgeneratorstate + >>> def gen(): + yield 'demo' + >>> g = gen() + >>> getgeneratorstate(g) + 'GEN_CREATED' + >>> next(g) + 'demo' + >>> getgeneratorstate(g) + 'GEN_SUSPENDED' + >>> next(g, None) + >>> getgeneratorstate(g) + 'GEN_CLOSED' + + (Contributed by Rodolpho Eckhardt and Nick Coghlan, :issue:`10220`.) * To support lookups without the possibility of activating a dynamic attribute, the :mod:`inspect` module has a new function, :func:`~inspect.getattr_static`. - Unlike, :func:`hasattr`, this is a true read-only search, guaranteed not to - change state while it is searching. (Contributed by Michael Foord.) + Unlike :func:`hasattr`, this is a true read-only search, guaranteed not to + change state while it is searching:: + + >>> class A: + @property + def f(self): + print('Running') + return 10 + + >>> a = A() + >>> getattr(a, 'f') + Running + 10 + >>> inspect.getattr_static(a, 'f') + + + (Contributed by Michael Foord.) pydoc ----- -The :mod:`pydoc` module now provides a much improved Web server interface, -as well as a new command-line option to automatically open a browser -window to display that server. +The :mod:`pydoc` module now provides a much-improved Web server interface, as +well as a new command-line option ``-b`` to automatically open a browser window +to display that server:: + + $ pydoc3.2 -b (Contributed by Ron Adam; :issue:`2001`.) +dis +--- + +The :mod:`dis` module gained two new functions for inspecting code, +:func:`~dis.code_info` and :func:`~dis.show_code`. Both provide detailed code +object information for the supplied function, method, source code string or code +object. The former returns a string and the latter prints it:: + + >>> import dis, random + >>> dis.show_code(random.choice) + Name: choice + Filename: /Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/random.py + Argument count: 2 + Kw-only arguments: 0 + Number of locals: 3 + Stack size: 11 + Flags: OPTIMIZED, NEWLOCALS, NOFREE + Constants: + 0: 'Choose a random element from a non-empty sequence.' + 1: 'Cannot choose from an empty sequence' + Names: + 0: _randbelow + 1: len + 2: ValueError + 3: IndexError + Variable names: + 0: self + 1: seq + 2: i + +In addition, the :func:`~dis.dis` function now accepts string arguments +so that the common idiom ``dis(compile(s, '', 'eval'))`` can be shortened +to ``dis(s)``:: + + >>> dis('3*x+1 if x%2==1 else x//2') + 1 0 LOAD_NAME 0 (x) + 3 LOAD_CONST 0 (2) + 6 BINARY_MODULO + 7 LOAD_CONST 1 (1) + 10 COMPARE_OP 2 (==) + 13 POP_JUMP_IF_FALSE 28 + 16 LOAD_CONST 2 (3) + 19 LOAD_NAME 0 (x) + 22 BINARY_MULTIPLY + 23 LOAD_CONST 1 (1) + 26 BINARY_ADD + 27 RETURN_VALUE + >> 28 LOAD_NAME 0 (x) + 31 LOAD_CONST 0 (2) + 34 BINARY_FLOOR_DIVIDE + 35 RETURN_VALUE + +Taken together, these improvements make it easier to explore how CPython is +implemented and to see for yourself what the language syntax does +under-the-hood. + +(Contributed by Nick Coghlan in :issue:`9147`.) + +dbm +--- + +All database modules now support the :meth:`get` and :meth:`setdefault` methods. + +(Suggested by Ray Allen in :issue:`9523`.) + +ctypes +------ + +A new type, :class:`ctypes.c_ssize_t` represents the C :c:type:`ssize_t` datatype. + +site +---- + +The :mod:`site` module has three new functions useful for reporting on the +details of a given Python installation. + +* :func:`~site.getsitepackages` lists all global site-packages directories. + +* :func:`~site.getuserbase` reports on the user's base directory where data can + be stored. + +* :func:`~site.getusersitepackages` reveals the user-specific site-packages + directory path. + +:: + + >>> import site + >>> site.getsitepackages() + ['/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/site-packages', + '/Library/Frameworks/Python.framework/Versions/3.2/lib/site-python', + '/Library/Python/3.2/site-packages'] + >>> site.getuserbase() + '/Users/raymondhettinger/Library/Python/3.2' + >>> site.getusersitepackages() + '/Users/raymondhettinger/Library/Python/3.2/lib/python/site-packages' + +Conveniently, some of site's functionality is accessible directly from the +command-line:: + + $ python -m site --user-base + /Users/raymondhettinger/.local + $ python -m site --user-site + /Users/raymondhettinger/.local/lib/python3.2/site-packages + +(Contributed by Tarek Ziad? in :issue:`6693`.) + sysconfig --------- The new :mod:`sysconfig` module makes it straightforward to discover -installation paths and configuration variables which vary across platforms and +installation paths and configuration variables that vary across platforms and installations. The module offers access simple access functions for platform and version @@ -1364,6 +2068,8 @@ srcdir = "C:\Python32" userbase = "C:\Documents and Settings\Raymond\Application Data\Python" +(Moved out of Distutils by Tarek Ziad?.) + pdb --- @@ -1396,55 +2102,62 @@ Config parsers gained a new API based on the mapping protocol:: - >>> parser = ConfigParser() - >>> parser.read_string(""" - ... [DEFAULT] - ... monty = python - ... - ... [phrases] - ... the = who - ... full = metal jacket - ... """) - >>> parser['phrases']['full'] - 'metal jacket' - >>> section = parser['phrases'] - >>> section['the'] - 'who' - >>> section['british'] = '%(the)s %(full)s %(monty)s!' - >>> parser['phrases']['british'] - 'who metal jacket python!' - >>> 'british' in section - True + >>> parser = ConfigParser() + >>> parser.read_string(""" + [DEFAULT] + location = upper left + visible = yes + editable = no + color = blue + + [main] + title = Main Menu + color = green + + [options] + title = Options + """) + >>> parser['main']['color'] + 'green' + >>> parser['main']['editable'] + 'no' + >>> section = parser['options'] + >>> section['title'] + 'Options' + >>> section['title'] = 'Options (editable: %(editable)s)' + >>> section['title'] + 'Options (editable: no)' -The new API is implemented on top of the classical API so custom parser +The new API is implemented on top of the classical API, so custom parser subclasses should be able to use it without modifications. The INI file structure accepted by config parsers can now be customized. Users can specify alternative option/value delimiters and comment prefixes, change the -name of the *DEFAULT* section or switch the interpolation syntax. Along with -support for pluggable interpolation, an additional interpolation handler -:class:`~configparser.ExtendedInterpolation` was introduced:: +name of the *DEFAULT* section or switch the interpolation syntax. + +There is support for pluggable interpolation including an additional interpolation +handler :class:`~configparser.ExtendedInterpolation`:: >>> parser = ConfigParser(interpolation=ExtendedInterpolation()) >>> parser.read_dict({'buildout': {'directory': '/home/ambv/zope9'}, - ... 'custom': {'prefix': '/usr/local'}}) + 'custom': {'prefix': '/usr/local'}}) >>> parser.read_string(""" - ... [buildout] - ... parts = - ... zope9 - ... instance - ... find-links = - ... ${buildout:directory}/downloads/dist - ... - ... [zope9] - ... recipe = plone.recipe.zope9install - ... location = /opt/zope - ... - ... [instance] - ... recipe = plone.recipe.zope9instance - ... zope9-location = ${zope9:location} - ... zope-conf = ${custom:prefix}/etc/zope.conf - ... """) + [buildout] + parts = + zope9 + instance + find-links = + ${buildout:directory}/downloads/dist + + [zope9] + recipe = plone.recipe.zope9install + location = /opt/zope + + [instance] + recipe = plone.recipe.zope9instance + zope9-location = ${zope9:location} + zope-conf = ${custom:prefix}/etc/zope.conf + """) >>> parser['buildout']['find-links'] '\n/home/ambv/zope9/downloads/dist' >>> parser['instance']['zope-conf'] @@ -1461,27 +2174,114 @@ (All changes contributed by ?ukasz Langa.) -.. XXX: Mention urllib.parse changes - Issue 9873 (Nick Coghlan): - - ASCII byte sequence support in URL parsing - - named tuple for urldefrag return value - Issue 5468 (Dan Mahn) for urlencode: - - bytes input support - - non-UTF8 percent encoding of non-ASCII characters - Issue 2987 for IPv6 (RFC2732) support in urlparse +.. XXX consider showing a difflib example + +urllib.parse +------------ +A number of usability improvements were made for the :mod:`urllib.parse` module. + +The :func:`~urllib.parse.urlparse` function now supports `IPv6 +`_ addresses as described in :rfc:`2732`: + + >>> import urllib.parse + >>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/') + ParseResult(scheme='http', + netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]', + path='/foo/', + params='', + query='', + fragment='') + +The :func:`~urllib.parse.urldefrag` function now returns a :term:`named tuple`:: + + >>> r = urllib.parse.urldefrag('http://python.org/about/#target') + >>> r + DefragResult(url='http://python.org/about/', fragment='target') + >>> r[0] + 'http://python.org/about/' + >>> r.fragment + 'target' + +And, the :func:`~urllib.parse.urlencode` function is now much more flexible, +accepting either a string or bytes type for the *query* argument. If it is a +string, then the *safe*, *encoding*, and *error* parameters are sent to +:func:`~urllib.parse.quote_plus` for encoding:: + + >>> urllib.parse.urlencode([ + ('type', 'telenovela'), + ('name', '?D?nde Est? Elisa?')], + encoding='latin-1') + 'type=telenovela&name=%BFD%F3nde+Est%E1+Elisa%3F' + +As detailed in :ref:`parsing-ascii-encoded-bytes`, all the :mod:`urllib.parse` +functions now accept ASCII-encoded byte strings as input, so long as they are +not mixed with regular strings. If ASCII-encoded byte strings are given as +parameters, the return types will also be an ASCII-encoded byte strings: + + >>> urllib.parse.urlparse(b'http://www.python.org:80/about/') + ParseResultBytes(scheme=b'http', netloc=b'www.python.org:80', + path=b'/about/', params=b'', query=b'', fragment=b'') + +(Work by Nick Coghlan, Dan Mahn, and Senthil Kumaran in :issue:`2987`, +:issue:`5468`, and :issue:`9873`.) + +mailbox +------- + +Thanks to a concerted effort by R. David Murray, the :mod:`mailbox` module has +been fixed for Python 3.2. The challenge was that mailbox had been originally +designed with a text interface, but email messages are best represented with +:class:`bytes` because various parts of a message may have different encodings. + +The solution harnessed the :mod:`email` package's binary support for parsing +arbitrary email messages. In addition, the solution required a number of API +changes. + +As expected, the :meth:`~mailbox.Mailbox.add` method for +:class:`mailbox.Mailbox` objects now accepts binary input. + +:class:`~io.StringIO` and text file input are deprecated. Also, string input +will fail early if non-ASCII characters are used. Previously it would fail when +the email was processed in a later step. + +There is also support for binary output. The :meth:`~mailbox.Mailbox.get_file` +method now returns a file in the binary mode (where it used to incorrectly set +the file to text-mode). There is also a new :meth:`~mailbox.Mailbox.get_bytes` +method that returns a :class:`bytes` representation of a message corresponding +to a given *key*. + +It is still possible to get non-binary output using the old API's +:meth:`~mailbox.Mailbox.get_string` method, but that approach +is not very useful. Instead, it is best to extract messages from +a :class:`~mailbox.Message` object or to load them from binary input. + +(Contributed by R. David Murray, with efforts from Steffen Daode Nurpmeso and an +initial patch by Victor Stinner in :issue:`9124`.) + +turtledemo +---------- + +The demonstration code for the :mod:`turtle` module was moved from the *Demo* +directory to main library. It includes over a dozen sample scripts with +lively displays. Being on :attr:`sys.path`, it can now be run directly +from the command-line:: + + $ python -m turtledemo + +(Moved from the Demo directory by Alexander Belopolsky in :issue:`10199`.) Multi-threading =============== * The mechanism for serializing execution of concurrently running Python threads - (generally known as the GIL or Global Interpreter Lock) has been rewritten. - Among the objectives were more predictable switching intervals and reduced - overhead due to lock contention and the number of ensuing system calls. The - notion of a "check interval" to allow thread switches has been abandoned and - replaced by an absolute duration expressed in seconds. This parameter is - tunable through :func:`sys.setswitchinterval()`. It currently defaults to 5 - milliseconds. + (generally known as the :term:`GIL` or :term:`Global Interpreter Lock`) has + been rewritten. Among the objectives were more predictable switching + intervals and reduced overhead due to lock contention and the number of + ensuing system calls. The notion of a "check interval" to allow thread + switches has been abandoned and replaced by an absolute duration expressed in + seconds. This parameter is tunable through :func:`sys.setswitchinterval()`. + It currently defaults to 5 milliseconds. Additional details about the implementation can be read from a `python-dev mailing-list message @@ -1492,13 +2292,14 @@ (Contributed by Antoine Pitrou.) * Regular and recursive locks now accept an optional *timeout* argument to their - :meth:`acquire` method. (Contributed by Antoine Pitrou; :issue:`7316`.) + :meth:`~threading.Lock.acquire` method. (Contributed by Antoine Pitrou; + :issue:`7316`.) * Similarly, :meth:`threading.Semaphore.acquire` also gained a *timeout* argument. (Contributed by Torsten Landschoff; :issue:`850728`.) * Regular and recursive lock acquisitions can now be interrupted by signals on - platforms using pthreads. This means that Python programs that deadlock while + platforms using Pthreads. This means that Python programs that deadlock while acquiring locks can be successfully killed by repeatedly sending SIGINT to the process (by pressing :kbd:`Ctrl+C` in most shells). (Contributed by Reid Kleckner; :issue:`8844`.) @@ -1521,7 +2322,7 @@ if extension in {'xml', 'html', 'xhtml', 'css'}: handle(name) - (Patch and additional tests by Dave Malcolm; :issue:`6690`). + (Patch and additional tests contributed by Dave Malcolm; :issue:`6690`). * Serializing and unserializing data using the :mod:`pickle` module is now several times faster. @@ -1534,9 +2335,8 @@ when called with a :term:`key function`. Previously, every element of a list was wrapped with a temporary object that remembered the key value associated with each element. Now, two arrays of keys and values are - sorted in parallel. This save the memory consumed by the sort wrappers, - and it saves time lost during comparisons which were delegated by the - sort wrappers. + sorted in parallel. This saves the memory consumed by the sort wrappers, + and it saves time lost to delegating comparisons. (Patch by Daniel Stutzbach in :issue:`9915`.) @@ -1572,57 +2372,48 @@ :issue:`8685`). The :meth:`array.repeat` method has a faster implementation (:issue:`1569291` by Alexander Belopolsky). The :class:`BaseHTTPRequestHandler` has more efficient buffering (:issue:`3709` by Andrew Schaaf). The -multi-argument form of :func:`operator.attrgetter` function now runs slightly -faster (:issue:`10160` by Christos Georgiou). And :class:`ConfigParser` loads -multi-line arguments a bit faster (:issue:`7113` by ?ukasz Langa). +:func:`operator.attrgetter` function has been sped-up (:issue:`10160` by +Christos Georgiou). And :class:`ConfigParser` loads multi-line arguments a bit +faster (:issue:`7113` by ?ukasz Langa). Unicode ======= -Python has been updated to Unicode 6.0.0. The new features of the -Unicode Standard that will affect Python users include: +Python has been updated to `Unicode 6.0.0 +`_. The update to the standard adds +over 2,000 new characters including `emoji `_ +symbols which are important for mobile phones. -* addition of 2,088 characters, including over 1,000 additional - symbols?chief among them the additional emoji symbols, which are - especially important for mobile phones; - -* changes to character properties for existing characters including - - - a general category change to two Kannada characters (U+0CF1, - U+0CF2), which has the effect of making them newly eligible for - inclusion in identifiers; - - - a general category change to one New Tai Lue numeric character - (U+19DA), which has the effect of disqualifying it from - inclusion in identifiers. - - For more information, see `Unicode Character Database Changes - `_ - at the `Unicode Consortium `_ web site. - -The :mod:`os` module has two new functions: :func:`~os.fsencode` and -:func:`~os.fsdecode`. Add :data:`os.environb`: bytes version of -:data:`os.environ`, :func:`os.getenvb` function and -:data:`os.supports_bytes_environ` constant. - -``'mbcs'`` encoding doesn't ignore the error handler argument any more. By -default (strict mode), it raises an UnicodeDecodeError on undecodable byte -sequence and UnicodeEncodeError on unencodable character. To get the ``'mbcs'`` -encoding of Python 3.1, use ``'ignore'`` error handler to decode and -``'replace'`` error handler to encode. ``'mbcs'`` supports ``'strict'`` and -``'ignore'`` error handlers for decoding, and ``'strict'`` and ``'replace'`` -for encoding. - -On Mac OS X, Python uses ``'utf-8'`` to decode the command line arguments, -instead of the locale encoding (which is ISO-8859-1 if the ``LANG`` environment -variable is not set). +In addition, the updated standard has altered the character properties for two +Kannada characters (U+0CF1, U+0CF2) and one New Tai Lue numeric character +(U+19DA), making the former eligible for use in identifiers while disqualifying +the latter. For more information, see `Unicode Character Database Changes +`_. -By default, tarfile uses ``'utf-8'`` encoding on Windows (instead of -``'mbcs'``), and the ``'surrogateescape'`` error handler on all operating -systems. -Also, support was added for *cp720* Arabic DOS encoding (:issue:`1616979`). +Codecs +====== + +Support was added for *cp720* Arabic DOS encoding (:issue:`1616979`). + +MBCS encoding no longer ignores the error handler argument. In the default +strict mode, it raises an :exc:`UnicodeDecodeError` when it encounters an +undecodable byte sequence and an :exc:`UnicodeEncodeError` for an unencodable +character. + +The MBCS codec supports ``'strict'`` and ``'ignore'`` error handlers for +decoding, and ``'strict'`` and ``'replace'`` for encoding. + +To emulate Python3.1 MBCS encoding, select the ``'ignore'`` handler for decoding +and the ``'replace'`` handler for encoding. + +On Mac OS X, Python decodes command line arguments with ``'utf-8'`` rather than +the locale encoding. + +By default, :mod:`tarfile` uses ``'utf-8'`` encoding on Windows (instead of +``'mbcs'``) and the ``'surrogateescape'`` error handler on all operating +systems. Documentation @@ -1630,27 +2421,37 @@ The documentation continues to be improved. -A table of quick links has been added to the top of lengthy sections such as -:ref:`built-in-funcs`. In the case of :mod:`itertools`, the links are -accompanied by tables of cheatsheet-style summaries to provide an overview and -memory jog without having to read all of the docs. - -In some cases, the pure Python source code can be a helpful adjunct to the -documentation, so now many modules now feature quick links to the latest version -of the source code. For example, the :mod:`functools` module documentation has -a quick link at the top labeled: **Source code** :source:`Lib/functools.py`. - -The docs now contain more examples and recipes. In particular, :mod:`re` module -has an extensive section, :ref:`re-examples`. Likewise, the :mod:`itertools` -module continues to be updated with new :ref:`itertools-recipes`. - -The :mod:`datetime` module now has an auxiliary implementation in pure Python. -No functionality was changed. This just provides an easier-to-read -alternate implementation. (Contributed by Alexander Belopolsky.) - -The unmaintained :file:`Demo` directory has been removed. Some demos were -integrated into the documentation, some were moved to the :file:`Tools/demo` -directory, and others were removed altogether. (Contributed by Georg Brandl.) +* A table of quick links has been added to the top of lengthy sections such as + :ref:`built-in-funcs`. In the case of :mod:`itertools`, the links are + accompanied by tables of cheatsheet-style summaries to provide an overview and + memory jog without having to read all of the docs. + +* In some cases, the pure Python source code can be a helpful adjunct to the + documentation, so now many modules now feature quick links to the latest + version of the source code. For example, the :mod:`functools` module + documentation has a quick link at the top labeled: + + **Source code** :source:`Lib/functools.py`. + + (Contributed by Raymond Hettinger; see + `rationale `_.) + +* The docs now contain more examples and recipes. In particular, :mod:`re` + module has an extensive section, :ref:`re-examples`. Likewise, the + :mod:`itertools` module continues to be updated with new + :ref:`itertools-recipes`. + +* The :mod:`datetime` module now has an auxiliary implementation in pure Python. + No functionality was changed. This just provides an easier-to-read alternate + implementation. + + (Contributed by Alexander Belopolsky in :issue:`9528`.) + +* The unmaintained :file:`Demo` directory has been removed. Some demos were + integrated into the documentation, some were moved to the :file:`Tools/demo` + directory, and others were removed altogether. + + (Contributed by Georg Brandl in :issue:`7962`.) IDLE @@ -1665,6 +2466,22 @@ (Contributed by Kevin Walzer, Ned Deily, and Ronald Oussoren; :issue:`6075`.) +Code Repository +=============== + +In addition to the existing Subversion code repository at http://svn.python.org +there is now a `Mercurial `_ repository at +http://hg.python.org/ . + +After the 3.2 release, there are plans to switch to Mercurial as the primary +repository. This distributed version control system should make it easier for +members of the community to create and share external changesets. See +:pep:`385` for details. + +To learn to use the new version control system, see the `tutorial by Joel +Spolsky `_ or the `Guide to Mercurial Workflows +`_. + Build and C API Changes ======================= @@ -1716,13 +2533,13 @@ function declaration, which was kept for backwards compatibility reasons, is now removed -- the macro was introduced in 1997 (:issue:`8276`). -* The is a new function :c:func:`PyLong_AsLongLongAndOverflow` which +* There is a new function :c:func:`PyLong_AsLongLongAndOverflow` which is analogous to :c:func:`PyLong_AsLongAndOverflow`. They both serve to convert Python :class:`int` into a native fixed-width type while providing detection of cases where the conversion won't fit (:issue:`7767`). -* The :c:func:`PyUnicode_CompareWithASCIIString` now returns *not equal* - if the Python string in *NUL* terminated. +* The :c:func:`PyUnicode_CompareWithASCIIString` function now returns *not + equal* if the Python string is *NUL* terminated. * There is a new function :c:func:`PyErr_NewExceptionWithDoc` that is like :c:func:`PyErr_NewException` but allows a docstring to be specified. @@ -1738,8 +2555,14 @@ longer used and it had never been documented (:issue:`8837`). There were a number of other small changes to the C-API. See the -:file:`Misc/NEWS` file for a complete list. +:source:`Misc/NEWS` file for a complete list. +Also, there were a number of updates to the Mac OS X build, see +:source:`Mac/BuildScript/README.txt` for details. For users running a 32/64-bit +build, there is a known problem with the default Tcl/Tk on Mac OS X 10.6. +Accordingly, we recommend installing an updated alternative such as +`ActiveState Tcl/Tk 8.5.9 `_\. +See http://www.python.org/download/mac/tcltk/ for additional details. Porting to Python 3.2 ===================== @@ -1750,7 +2573,7 @@ * The :mod:`configparser` module has a number of clean-ups. The major change is to replace the old :class:`ConfigParser` class with long-standing preferred alternative :class:`SafeConfigParser`. In addition there are a number of - smaller incompatibilites: + smaller incompatibilities: * The interpolation syntax is now validated on :meth:`~configparser.ConfigParser.get` and @@ -1784,6 +2607,10 @@ * :class:`bytearray` objects can no longer be used as filenames; instead, they should be converted to :class:`bytes`. +* The :meth:`array.tostring` and :meth:`array.fromstring` have been renamed to + :meth:`array.tobytes` and :meth:`array.frombytes` for clarity. The old names + have been deprecated. (See :issue:`8990`.) + * ``PyArg_Parse*()`` functions: * "t#" format has been removed: use "s#" or "s*" instead @@ -1818,10 +2645,10 @@ and it does a better job finalizing multiple context managers when one of them raises an exception:: - >>> with open('mylog.txt') as infile, open('a.out', 'w') as outfile: - ... for line in infile: - ... if '' in line: - ... outfile.write(line) + with open('mylog.txt') as infile, open('a.out', 'w') as outfile: + for line in infile: + if '' in line: + outfile.write(line) (Contributed by Georg Brandl and Mattias Br?ndstr?m; `appspot issue 53094 `_.) @@ -1843,3 +2670,31 @@ * The new, longer :func:`str` value on floats may break doctests which rely on the old output format. + +* In :class:`subprocess.Popen`, the default value for *close_fds* is now + ``True`` under Unix; under Windows, it is ``True`` if the three standard + streams are set to ``None``, ``False`` otherwise. Previously, *close_fds* + was always ``False`` by default, which produced difficult to solve bugs + or race conditions when open file descriptors would leak into the child + process. + +* Support for legacy HTTP 0.9 has been removed from :mod:`urllib.request` + and :mod:`http.client`. Such support is still present on the server side + (in :mod:`http.server`). + + (Contributed by Antoine Pitrou, :issue:`10711`.) + +* SSL sockets in timeout mode now raise :exc:`socket.timeout` when a timeout + occurs, rather than a generic :exc:`~ssl.SSLError`. + + (Contributed by Antoine Pitrou, :issue:`10272`.) + +* The misleading functions :c:func:`PyEval_AcquireLock()` and + :c:func:`PyEval_ReleaseLock()` have been officially deprecated. The + thread-state aware APIs (such as :c:func:`PyEval_SaveThread()` + and :c:func:`PyEval_RestoreThread()`) should be used instead. + +* Due to security risks, :func:`asyncore.handle_accept` has been deprecated, and + a new function, :func:`asyncore.handle_accepted`, was added to replace it. + + (Contributed by Giampaolo Rodola in :issue:`6706`.) Modified: python/branches/py3k-cdecimal/Doc/whatsnew/index.rst ============================================================================== --- python/branches/py3k-cdecimal/Doc/whatsnew/index.rst (original) +++ python/branches/py3k-cdecimal/Doc/whatsnew/index.rst Fri Mar 4 18:50:17 2011 @@ -11,6 +11,7 @@ .. toctree:: :maxdepth: 2 + 3.3.rst 3.2.rst 3.1.rst 3.0.rst Modified: python/branches/py3k-cdecimal/Include/import.h ============================================================================== --- python/branches/py3k-cdecimal/Include/import.h (original) +++ python/branches/py3k-cdecimal/Include/import.h Fri Mar 4 18:50:17 2011 @@ -9,26 +9,58 @@ PyAPI_FUNC(long) PyImport_GetMagicNumber(void); PyAPI_FUNC(const char *) PyImport_GetMagicTag(void); -PyAPI_FUNC(PyObject *) PyImport_ExecCodeModule(char *name, PyObject *co); +PyAPI_FUNC(PyObject *) PyImport_ExecCodeModule( + char *name, /* UTF-8 encoded string */ + PyObject *co + ); PyAPI_FUNC(PyObject *) PyImport_ExecCodeModuleEx( - char *name, PyObject *co, char *pathname); + char *name, /* UTF-8 encoded string */ + PyObject *co, + char *pathname /* decoded from the filesystem encoding */ + ); PyAPI_FUNC(PyObject *) PyImport_ExecCodeModuleWithPathnames( - char *name, PyObject *co, char *pathname, char *cpathname); + char *name, /* UTF-8 encoded string */ + PyObject *co, + char *pathname, /* decoded from the filesystem encoding */ + char *cpathname /* decoded from the filesystem encoding */ + ); +PyAPI_FUNC(PyObject *) PyImport_ExecCodeModuleObject( + PyObject *name, + PyObject *co, + PyObject *pathname, + PyObject *cpathname + ); PyAPI_FUNC(PyObject *) PyImport_GetModuleDict(void); -PyAPI_FUNC(PyObject *) PyImport_AddModule(const char *name); -PyAPI_FUNC(PyObject *) PyImport_ImportModule(const char *name); -PyAPI_FUNC(PyObject *) PyImport_ImportModuleNoBlock(const char *); -PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel(char *name, - PyObject *globals, PyObject *locals, PyObject *fromlist, int level); +PyAPI_FUNC(PyObject *) PyImport_AddModuleObject( + PyObject *name + ); +PyAPI_FUNC(PyObject *) PyImport_AddModule( + const char *name /* UTF-8 encoded string */ + ); +PyAPI_FUNC(PyObject *) PyImport_ImportModule( + const char *name /* UTF-8 encoded string */ + ); +PyAPI_FUNC(PyObject *) PyImport_ImportModuleNoBlock( + const char *name /* UTF-8 encoded string */ + ); +PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel( + char *name, /* UTF-8 encoded string */ + PyObject *globals, + PyObject *locals, + PyObject *fromlist, + int level + ); #define PyImport_ImportModuleEx(n, g, l, f) \ - PyImport_ImportModuleLevel(n, g, l, f, -1) + PyImport_ImportModuleLevel(n, g, l, f, -1) PyAPI_FUNC(PyObject *) PyImport_GetImporter(PyObject *path); PyAPI_FUNC(PyObject *) PyImport_Import(PyObject *name); PyAPI_FUNC(PyObject *) PyImport_ReloadModule(PyObject *m); PyAPI_FUNC(void) PyImport_Cleanup(void); -PyAPI_FUNC(int) PyImport_ImportFrozenModule(char *); +PyAPI_FUNC(int) PyImport_ImportFrozenModule( + char *name /* UTF-8 encoded string */ + ); #ifndef Py_LIMITED_API #ifdef WITH_THREAD @@ -41,9 +73,14 @@ PyAPI_FUNC(void) _PyImport_ReInitLock(void); -PyAPI_FUNC(PyObject *)_PyImport_FindBuiltin(char *); -PyAPI_FUNC(PyObject *)_PyImport_FindExtensionUnicode(char *, PyObject *); -PyAPI_FUNC(int)_PyImport_FixupBuiltin(PyObject*, char *); +PyAPI_FUNC(PyObject *)_PyImport_FindBuiltin( + const char *name /* UTF-8 encoded string */ + ); +PyAPI_FUNC(PyObject *)_PyImport_FindExtensionUnicode(const char *, PyObject *); +PyAPI_FUNC(int)_PyImport_FixupBuiltin( + PyObject *mod, + char *name /* UTF-8 encoded string */ + ); PyAPI_FUNC(int)_PyImport_FixupExtensionUnicode(PyObject*, char *, PyObject *); struct _inittab { @@ -56,11 +93,14 @@ PyAPI_DATA(PyTypeObject) PyNullImporter_Type; -PyAPI_FUNC(int) PyImport_AppendInittab(const char *name, PyObject* (*initfunc)(void)); +PyAPI_FUNC(int) PyImport_AppendInittab( + const char *name, /* ASCII encoded string */ + PyObject* (*initfunc)(void) + ); #ifndef Py_LIMITED_API struct _frozen { - char *name; + char *name; /* ASCII encoded string */ unsigned char *code; int size; }; Modified: python/branches/py3k-cdecimal/Include/moduleobject.h ============================================================================== --- python/branches/py3k-cdecimal/Include/moduleobject.h (original) +++ python/branches/py3k-cdecimal/Include/moduleobject.h Fri Mar 4 18:50:17 2011 @@ -12,8 +12,14 @@ #define PyModule_Check(op) PyObject_TypeCheck(op, &PyModule_Type) #define PyModule_CheckExact(op) (Py_TYPE(op) == &PyModule_Type) -PyAPI_FUNC(PyObject *) PyModule_New(const char *); +PyAPI_FUNC(PyObject *) PyModule_NewObject( + PyObject *name + ); +PyAPI_FUNC(PyObject *) PyModule_New( + const char *name /* UTF-8 encoded string */ + ); PyAPI_FUNC(PyObject *) PyModule_GetDict(PyObject *); +PyAPI_FUNC(PyObject *) PyModule_GetNameObject(PyObject *); PyAPI_FUNC(const char *) PyModule_GetName(PyObject *); PyAPI_FUNC(const char *) PyModule_GetFilename(PyObject *); PyAPI_FUNC(PyObject *) PyModule_GetFilenameObject(PyObject *); Modified: python/branches/py3k-cdecimal/Include/object.h ============================================================================== --- python/branches/py3k-cdecimal/Include/object.h (original) +++ python/branches/py3k-cdecimal/Include/object.h Fri Mar 4 18:50:17 2011 @@ -396,7 +396,6 @@ typedef struct{ const char* name; - const char* doc; int basicsize; int itemsize; int flags; @@ -437,6 +436,8 @@ PyAPI_DATA(PyTypeObject) PyBaseObject_Type; /* built-in 'object' */ PyAPI_DATA(PyTypeObject) PySuper_Type; /* built-in 'super' */ +PyAPI_FUNC(long) PyType_GetFlags(PyTypeObject*); + #define PyType_Check(op) \ PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS) #define PyType_CheckExact(op) (Py_TYPE(op) == &PyType_Type) @@ -589,7 +590,11 @@ Py_TPFLAGS_HAVE_VERSION_TAG | \ 0) +#ifdef Py_LIMITED_API +#define PyType_HasFeature(t,f) ((PyType_GetFlags(t) & (f)) != 0) +#else #define PyType_HasFeature(t,f) (((t)->tp_flags & (f)) != 0) +#endif #define PyType_FastSubclass(t,f) PyType_HasFeature(t,f) Modified: python/branches/py3k-cdecimal/Include/patchlevel.h ============================================================================== --- python/branches/py3k-cdecimal/Include/patchlevel.h (original) +++ python/branches/py3k-cdecimal/Include/patchlevel.h Fri Mar 4 18:50:17 2011 @@ -17,13 +17,13 @@ /* Version parsed out into numeric values */ /*--start constants--*/ #define PY_MAJOR_VERSION 3 -#define PY_MINOR_VERSION 2 +#define PY_MINOR_VERSION 3 #define PY_MICRO_VERSION 0 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA -#define PY_RELEASE_SERIAL 2 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA +#define PY_RELEASE_SERIAL 0 /* Version as a string */ -#define PY_VERSION "3.2b2+" +#define PY_VERSION "3.3a0" /*--end constants--*/ /* Subversion Revision number of this file (not of the repository) */ Modified: python/branches/py3k-cdecimal/Include/pycapsule.h ============================================================================== --- python/branches/py3k-cdecimal/Include/pycapsule.h (original) +++ python/branches/py3k-cdecimal/Include/pycapsule.h Fri Mar 4 18:50:17 2011 @@ -48,7 +48,9 @@ PyAPI_FUNC(int) PyCapsule_SetContext(PyObject *capsule, void *context); -PyAPI_FUNC(void *) PyCapsule_Import(const char *name, int no_block); +PyAPI_FUNC(void *) PyCapsule_Import( + const char *name, /* UTF-8 encoded string */ + int no_block); #ifdef __cplusplus Modified: python/branches/py3k-cdecimal/Include/pydebug.h ============================================================================== --- python/branches/py3k-cdecimal/Include/pydebug.h (original) +++ python/branches/py3k-cdecimal/Include/pydebug.h Fri Mar 4 18:50:17 2011 @@ -26,8 +26,6 @@ PYTHONPATH and PYTHONHOME from the environment */ #define Py_GETENV(s) (Py_IgnoreEnvironmentFlag ? NULL : getenv(s)) -PyAPI_FUNC(void) Py_FatalError(const char *message); - #ifdef __cplusplus } #endif Modified: python/branches/py3k-cdecimal/Include/pyerrors.h ============================================================================== --- python/branches/py3k-cdecimal/Include/pyerrors.h (original) +++ python/branches/py3k-cdecimal/Include/pyerrors.h Fri Mar 4 18:50:17 2011 @@ -70,7 +70,17 @@ PyAPI_FUNC(void) PyErr_Clear(void); PyAPI_FUNC(void) PyErr_Fetch(PyObject **, PyObject **, PyObject **); PyAPI_FUNC(void) PyErr_Restore(PyObject *, PyObject *, PyObject *); -PyAPI_FUNC(void) Py_FatalError(const char *message); + +#if defined(__clang__) || \ + (defined(__GNUC__) && \ + ((__GNUC_MAJOR__ >= 3) || \ + (__GNUC_MAJOR__ == 2) && (__GNUC_MINOR__ >= 5))) +#define _Py_NO_RETURN __attribute__((__noreturn__)) +#else +#define _Py_NO_RETURN +#endif + +PyAPI_FUNC(void) Py_FatalError(const char *message) _Py_NO_RETURN; #if defined(Py_DEBUG) || defined(Py_LIMITED_API) #define _PyErr_OCCURRED() PyErr_Occurred() Modified: python/branches/py3k-cdecimal/Include/typeslots.h ============================================================================== --- python/branches/py3k-cdecimal/Include/typeslots.h (original) +++ python/branches/py3k-cdecimal/Include/typeslots.h Fri Mar 4 18:50:17 2011 @@ -71,3 +71,6 @@ #define Py_tp_setattro 69 #define Py_tp_str 70 #define Py_tp_traverse 71 +#define Py_tp_members 72 +#define Py_tp_getset 73 +#define Py_tp_free 74 Modified: python/branches/py3k-cdecimal/Include/unicodeobject.h ============================================================================== --- python/branches/py3k-cdecimal/Include/unicodeobject.h (original) +++ python/branches/py3k-cdecimal/Include/unicodeobject.h Fri Mar 4 18:50:17 2011 @@ -668,8 +668,7 @@ #ifndef Py_LIMITED_API PyAPI_FUNC(PyObject *) _PyUnicode_AsDefaultEncodedString( - PyObject *unicode, - const char *errors); + PyObject *unicode); #endif /* Returns a pointer to the default encoding (UTF-8) of the Modified: python/branches/py3k-cdecimal/LICENSE ============================================================================== --- python/branches/py3k-cdecimal/LICENSE (original) +++ python/branches/py3k-cdecimal/LICENSE Fri Mar 4 18:50:17 2011 @@ -69,6 +69,7 @@ 3.1.1 3.1 2009 PSF yes 3.1.2 3.1 2010 PSF yes 3.2 3.1 2011 PSF yes + 3.3 3.2 2012 PSF yes Footnotes: Deleted: python/branches/py3k-cdecimal/Lib/_abcoll.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/_abcoll.py Fri Mar 4 18:50:17 2011 +++ (empty file) @@ -1,623 +0,0 @@ -# Copyright 2007 Google, Inc. All Rights Reserved. -# Licensed to PSF under a Contributor Agreement. - -"""Abstract Base Classes (ABCs) for collections, according to PEP 3119. - -DON'T USE THIS MODULE DIRECTLY! The classes here should be imported -via collections; they are defined here only to alleviate certain -bootstrapping issues. Unit tests are in test_collections. -""" - -from abc import ABCMeta, abstractmethod -import sys - -__all__ = ["Hashable", "Iterable", "Iterator", - "Sized", "Container", "Callable", - "Set", "MutableSet", - "Mapping", "MutableMapping", - "MappingView", "KeysView", "ItemsView", "ValuesView", - "Sequence", "MutableSequence", - "ByteString", - ] - - -### collection related types which are not exposed through builtin ### -## iterators ## -bytes_iterator = type(iter(b'')) -bytearray_iterator = type(iter(bytearray())) -#callable_iterator = ??? -dict_keyiterator = type(iter({}.keys())) -dict_valueiterator = type(iter({}.values())) -dict_itemiterator = type(iter({}.items())) -list_iterator = type(iter([])) -list_reverseiterator = type(iter(reversed([]))) -range_iterator = type(iter(range(0))) -set_iterator = type(iter(set())) -str_iterator = type(iter("")) -tuple_iterator = type(iter(())) -zip_iterator = type(iter(zip())) -## views ## -dict_keys = type({}.keys()) -dict_values = type({}.values()) -dict_items = type({}.items()) -## misc ## -dict_proxy = type(type.__dict__) - - -### ONE-TRICK PONIES ### - -class Hashable(metaclass=ABCMeta): - - @abstractmethod - def __hash__(self): - return 0 - - @classmethod - def __subclasshook__(cls, C): - if cls is Hashable: - for B in C.__mro__: - if "__hash__" in B.__dict__: - if B.__dict__["__hash__"]: - return True - break - return NotImplemented - - -class Iterable(metaclass=ABCMeta): - - @abstractmethod - def __iter__(self): - while False: - yield None - - @classmethod - def __subclasshook__(cls, C): - if cls is Iterable: - if any("__iter__" in B.__dict__ for B in C.__mro__): - return True - return NotImplemented - - -class Iterator(Iterable): - - @abstractmethod - def __next__(self): - raise StopIteration - - def __iter__(self): - return self - - @classmethod - def __subclasshook__(cls, C): - if cls is Iterator: - if (any("__next__" in B.__dict__ for B in C.__mro__) and - any("__iter__" in B.__dict__ for B in C.__mro__)): - return True - return NotImplemented - -Iterator.register(bytes_iterator) -Iterator.register(bytearray_iterator) -#Iterator.register(callable_iterator) -Iterator.register(dict_keyiterator) -Iterator.register(dict_valueiterator) -Iterator.register(dict_itemiterator) -Iterator.register(list_iterator) -Iterator.register(list_reverseiterator) -Iterator.register(range_iterator) -Iterator.register(set_iterator) -Iterator.register(str_iterator) -Iterator.register(tuple_iterator) -Iterator.register(zip_iterator) - -class Sized(metaclass=ABCMeta): - - @abstractmethod - def __len__(self): - return 0 - - @classmethod - def __subclasshook__(cls, C): - if cls is Sized: - if any("__len__" in B.__dict__ for B in C.__mro__): - return True - return NotImplemented - - -class Container(metaclass=ABCMeta): - - @abstractmethod - def __contains__(self, x): - return False - - @classmethod - def __subclasshook__(cls, C): - if cls is Container: - if any("__contains__" in B.__dict__ for B in C.__mro__): - return True - return NotImplemented - - -class Callable(metaclass=ABCMeta): - - @abstractmethod - def __call__(self, *args, **kwds): - return False - - @classmethod - def __subclasshook__(cls, C): - if cls is Callable: - if any("__call__" in B.__dict__ for B in C.__mro__): - return True - return NotImplemented - - -### SETS ### - - -class Set(Sized, Iterable, Container): - - """A set is a finite, iterable container. - - This class provides concrete generic implementations of all - methods except for __contains__, __iter__ and __len__. - - To override the comparisons (presumably for speed, as the - semantics are fixed), all you have to do is redefine __le__ and - then the other operations will automatically follow suit. - """ - - def __le__(self, other): - if not isinstance(other, Set): - return NotImplemented - if len(self) > len(other): - return False - for elem in self: - if elem not in other: - return False - return True - - def __lt__(self, other): - if not isinstance(other, Set): - return NotImplemented - return len(self) < len(other) and self.__le__(other) - - def __gt__(self, other): - if not isinstance(other, Set): - return NotImplemented - return other < self - - def __ge__(self, other): - if not isinstance(other, Set): - return NotImplemented - return other <= self - - def __eq__(self, other): - if not isinstance(other, Set): - return NotImplemented - return len(self) == len(other) and self.__le__(other) - - def __ne__(self, other): - return not (self == other) - - @classmethod - def _from_iterable(cls, it): - '''Construct an instance of the class from any iterable input. - - Must override this method if the class constructor signature - does not accept an iterable for an input. - ''' - return cls(it) - - def __and__(self, other): - if not isinstance(other, Iterable): - return NotImplemented - return self._from_iterable(value for value in other if value in self) - - def isdisjoint(self, other): - for value in other: - if value in self: - return False - return True - - def __or__(self, other): - if not isinstance(other, Iterable): - return NotImplemented - chain = (e for s in (self, other) for e in s) - return self._from_iterable(chain) - - def __sub__(self, other): - if not isinstance(other, Set): - if not isinstance(other, Iterable): - return NotImplemented - other = self._from_iterable(other) - return self._from_iterable(value for value in self - if value not in other) - - def __xor__(self, other): - if not isinstance(other, Set): - if not isinstance(other, Iterable): - return NotImplemented - other = self._from_iterable(other) - return (self - other) | (other - self) - - def _hash(self): - """Compute the hash value of a set. - - Note that we don't define __hash__: not all sets are hashable. - But if you define a hashable set type, its __hash__ should - call this function. - - This must be compatible __eq__. - - All sets ought to compare equal if they contain the same - elements, regardless of how they are implemented, and - regardless of the order of the elements; so there's not much - freedom for __eq__ or __hash__. We match the algorithm used - by the built-in frozenset type. - """ - MAX = sys.maxsize - MASK = 2 * MAX + 1 - n = len(self) - h = 1927868237 * (n + 1) - h &= MASK - for x in self: - hx = hash(x) - h ^= (hx ^ (hx << 16) ^ 89869747) * 3644798167 - h &= MASK - h = h * 69069 + 907133923 - h &= MASK - if h > MAX: - h -= MASK + 1 - if h == -1: - h = 590923713 - return h - -Set.register(frozenset) - - -class MutableSet(Set): - - @abstractmethod - def add(self, value): - """Add an element.""" - raise NotImplementedError - - @abstractmethod - def discard(self, value): - """Remove an element. Do not raise an exception if absent.""" - raise NotImplementedError - - def remove(self, value): - """Remove an element. If not a member, raise a KeyError.""" - if value not in self: - raise KeyError(value) - self.discard(value) - - def pop(self): - """Return the popped value. Raise KeyError if empty.""" - it = iter(self) - try: - value = next(it) - except StopIteration: - raise KeyError - self.discard(value) - return value - - def clear(self): - """This is slow (creates N new iterators!) but effective.""" - try: - while True: - self.pop() - except KeyError: - pass - - def __ior__(self, it: Iterable): - for value in it: - self.add(value) - return self - - def __iand__(self, it: Iterable): - for value in (self - it): - self.discard(value) - return self - - def __ixor__(self, it: Iterable): - if it is self: - self.clear() - else: - if not isinstance(it, Set): - it = self._from_iterable(it) - for value in it: - if value in self: - self.discard(value) - else: - self.add(value) - return self - - def __isub__(self, it: Iterable): - if it is self: - self.clear() - else: - for value in it: - self.discard(value) - return self - -MutableSet.register(set) - - -### MAPPINGS ### - - -class Mapping(Sized, Iterable, Container): - - @abstractmethod - def __getitem__(self, key): - raise KeyError - - def get(self, key, default=None): - try: - return self[key] - except KeyError: - return default - - def __contains__(self, key): - try: - self[key] - except KeyError: - return False - else: - return True - - def keys(self): - return KeysView(self) - - def items(self): - return ItemsView(self) - - def values(self): - return ValuesView(self) - - def __eq__(self, other): - if not isinstance(other, Mapping): - return NotImplemented - return dict(self.items()) == dict(other.items()) - - def __ne__(self, other): - return not (self == other) - - -class MappingView(Sized): - - def __init__(self, mapping): - self._mapping = mapping - - def __len__(self): - return len(self._mapping) - - def __repr__(self): - return '{0.__class__.__name__}({0._mapping!r})'.format(self) - - -class KeysView(MappingView, Set): - - @classmethod - def _from_iterable(self, it): - return set(it) - - def __contains__(self, key): - return key in self._mapping - - def __iter__(self): - for key in self._mapping: - yield key - -KeysView.register(dict_keys) - - -class ItemsView(MappingView, Set): - - @classmethod - def _from_iterable(self, it): - return set(it) - - def __contains__(self, item): - key, value = item - try: - v = self._mapping[key] - except KeyError: - return False - else: - return v == value - - def __iter__(self): - for key in self._mapping: - yield (key, self._mapping[key]) - -ItemsView.register(dict_items) - - -class ValuesView(MappingView): - - def __contains__(self, value): - for key in self._mapping: - if value == self._mapping[key]: - return True - return False - - def __iter__(self): - for key in self._mapping: - yield self._mapping[key] - -ValuesView.register(dict_values) - - -class MutableMapping(Mapping): - - @abstractmethod - def __setitem__(self, key, value): - raise KeyError - - @abstractmethod - def __delitem__(self, key): - raise KeyError - - __marker = object() - - def pop(self, key, default=__marker): - try: - value = self[key] - except KeyError: - if default is self.__marker: - raise - return default - else: - del self[key] - return value - - def popitem(self): - try: - key = next(iter(self)) - except StopIteration: - raise KeyError - value = self[key] - del self[key] - return key, value - - def clear(self): - try: - while True: - self.popitem() - except KeyError: - pass - - def update(*args, **kwds): - if len(args) > 2: - raise TypeError("update() takes at most 2 positional " - "arguments ({} given)".format(len(args))) - elif not args: - raise TypeError("update() takes at least 1 argument (0 given)") - self = args[0] - other = args[1] if len(args) >= 2 else () - - if isinstance(other, Mapping): - for key in other: - self[key] = other[key] - elif hasattr(other, "keys"): - for key in other.keys(): - self[key] = other[key] - else: - for key, value in other: - self[key] = value - for key, value in kwds.items(): - self[key] = value - - def setdefault(self, key, default=None): - try: - return self[key] - except KeyError: - self[key] = default - return default - -MutableMapping.register(dict) - - -### SEQUENCES ### - - -class Sequence(Sized, Iterable, Container): - - """All the operations on a read-only sequence. - - Concrete subclasses must override __new__ or __init__, - __getitem__, and __len__. - """ - - @abstractmethod - def __getitem__(self, index): - raise IndexError - - def __iter__(self): - i = 0 - try: - while True: - v = self[i] - yield v - i += 1 - except IndexError: - return - - def __contains__(self, value): - for v in self: - if v == value: - return True - return False - - def __reversed__(self): - for i in reversed(range(len(self))): - yield self[i] - - def index(self, value): - for i, v in enumerate(self): - if v == value: - return i - raise ValueError - - def count(self, value): - return sum(1 for v in self if v == value) - -Sequence.register(tuple) -Sequence.register(str) -Sequence.register(range) - - -class ByteString(Sequence): - - """This unifies bytes and bytearray. - - XXX Should add all their methods. - """ - -ByteString.register(bytes) -ByteString.register(bytearray) - - -class MutableSequence(Sequence): - - @abstractmethod - def __setitem__(self, index, value): - raise IndexError - - @abstractmethod - def __delitem__(self, index): - raise IndexError - - @abstractmethod - def insert(self, index, value): - raise IndexError - - def append(self, value): - self.insert(len(self), value) - - def reverse(self): - n = len(self) - for i in range(n//2): - self[i], self[n-i-1] = self[n-i-1], self[i] - - def extend(self, values): - for v in values: - self.append(v) - - def pop(self, index=-1): - v = self[index] - del self[index] - return v - - def remove(self, value): - del self[self.index(value)] - - def __iadd__(self, values): - self.extend(values) - return self - -MutableSequence.register(list) -MutableSequence.register(bytearray) # Multiply inheriting, see ByteString Modified: python/branches/py3k-cdecimal/Lib/_dummy_thread.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/_dummy_thread.py (original) +++ python/branches/py3k-cdecimal/Lib/_dummy_thread.py Fri Mar 4 18:50:17 2011 @@ -24,11 +24,7 @@ # imports are done when needed on a function-by-function basis. Since threads # are disabled, the import lock should not be an issue anyway (??). -class error(Exception): - """Dummy implementation of _thread.error.""" - - def __init__(self, *args): - self.args = args +error = RuntimeError def start_new_thread(function, args, kwargs={}): """Dummy implementation of _thread.start_new_thread(). Modified: python/branches/py3k-cdecimal/Lib/_pyio.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/_pyio.py (original) +++ python/branches/py3k-cdecimal/Lib/_pyio.py Fri Mar 4 18:50:17 2011 @@ -14,6 +14,7 @@ import io from io import (__all__, SEEK_SET, SEEK_CUR, SEEK_END) +from errno import EINTR # open() uses st_blksize whenever we can DEFAULT_BUFFER_SIZE = 8 * 1024 # bytes @@ -34,9 +35,8 @@ self.characters_written = characters_written -def open(file: (str, bytes), mode: str = "r", buffering: int = -1, - encoding: str = None, errors: str = None, - newline: str = None, closefd: bool = True) -> "IOBase": +def open(file, mode="r", buffering=-1, encoding=None, errors=None, + newline=None, closefd=True): r"""Open file and return a stream. Raise IOError upon failure. @@ -96,7 +96,7 @@ use line buffering. Other text files use the policy described above for binary files. - encoding is the name of the encoding used to decode or encode the + encoding is the str name of the encoding used to decode or encode the file. This should only be used in text mode. The default encoding is platform dependent, but any encoding supported by Python can be passed. See the codecs module for the list of supported encodings. @@ -109,9 +109,9 @@ See the documentation for codecs.register for a list of the permitted encoding error strings. - newline controls how universal newlines works (it only applies to text - mode). It can be None, '', '\n', '\r', and '\r\n'. It works as - follows: + newline is a string controlling how universal newlines works (it only + applies to text mode). It can be None, '', '\n', '\r', and '\r\n'. It works + as follows: * On input, if newline is None, universal newlines mode is enabled. Lines in the input can end in '\n', '\r', or '\r\n', and @@ -127,9 +127,9 @@ other legal values, any '\n' characters written are translated to the given string. - If closefd is False, the underlying file descriptor will be kept open - when the file is closed. This does not work when a file name is given - and must be True in that case. + closedfd is a bool. If closefd is False, the underlying file descriptor will + be kept open when the file is closed. This does not work when a file name is + given and must be True in that case. open() returns a file object whose type depends on the mode, and through which the standard file operations such as reading and writing @@ -287,33 +287,33 @@ ### Internal ### - def _unsupported(self, name: str) -> IOError: - """Internal: raise an exception for unsupported operations.""" + def _unsupported(self, name): + """Internal: raise an IOError exception for unsupported operations.""" raise UnsupportedOperation("%s.%s() not supported" % (self.__class__.__name__, name)) ### Positioning ### - def seek(self, pos: int, whence: int = 0) -> int: + def seek(self, pos, whence=0): """Change stream position. Change the stream position to byte offset offset. offset is interpreted relative to the position indicated by whence. Values - for whence are: + for whence are ints: * 0 -- start of stream (the default); offset should be zero or positive * 1 -- current stream position; offset may be negative * 2 -- end of stream; offset is usually negative - Return the new absolute position. + Return an int indicating the new absolute position. """ self._unsupported("seek") - def tell(self) -> int: - """Return current stream position.""" + def tell(self): + """Return an int indicating the current stream position.""" return self.seek(0, 1) - def truncate(self, pos: int = None) -> int: + def truncate(self, pos=None): """Truncate file to size bytes. Size defaults to the current IO position as reported by tell(). Return @@ -323,7 +323,7 @@ ### Flush and close ### - def flush(self) -> None: + def flush(self): """Flush write buffers, if applicable. This is not implemented for read-only and non-blocking streams. @@ -333,7 +333,7 @@ __closed = False - def close(self) -> None: + def close(self): """Flush and close the IO object. This method has no effect if the file is already closed. @@ -342,7 +342,7 @@ self.flush() self.__closed = True - def __del__(self) -> None: + def __del__(self): """Destructor. Calls close().""" # The try/except block is in case this is called at program # exit time, when it's possible that globals have already been @@ -356,8 +356,8 @@ ### Inquiries ### - def seekable(self) -> bool: - """Return whether object supports random access. + def seekable(self): + """Return a bool indicating whether object supports random access. If False, seek(), tell() and truncate() will raise UnsupportedOperation. This method may need to do a test seek(). @@ -371,8 +371,8 @@ raise UnsupportedOperation("File or stream is not seekable." if msg is None else msg) - def readable(self) -> bool: - """Return whether object was opened for reading. + def readable(self): + """Return a bool indicating whether object was opened for reading. If False, read() will raise UnsupportedOperation. """ @@ -385,8 +385,8 @@ raise UnsupportedOperation("File or stream is not readable." if msg is None else msg) - def writable(self) -> bool: - """Return whether object was opened for writing. + def writable(self): + """Return a bool indicating whether object was opened for writing. If False, write() and truncate() will raise UnsupportedOperation. """ @@ -416,12 +416,12 @@ ### Context manager ### - def __enter__(self) -> "IOBase": # That's a forward reference - """Context management protocol. Returns self.""" + def __enter__(self): # That's a forward reference + """Context management protocol. Returns self (an instance of IOBase).""" self._checkClosed() return self - def __exit__(self, *args) -> None: + def __exit__(self, *args): """Context management protocol. Calls close()""" self.close() @@ -429,15 +429,15 @@ # XXX Should these be present even if unimplemented? - def fileno(self) -> int: - """Returns underlying file descriptor if one exists. + def fileno(self): + """Returns underlying file descriptor (an int) if one exists. An IOError is raised if the IO object does not use a file descriptor. """ self._unsupported("fileno") - def isatty(self) -> bool: - """Return whether this is an 'interactive' stream. + def isatty(self): + """Return a bool indicating whether this is an 'interactive' stream. Return False if it can't be determined. """ @@ -446,10 +446,11 @@ ### Readline[s] and writelines ### - def readline(self, limit: int = -1) -> bytes: - r"""Read and return a line from the stream. + def readline(self, limit=-1): + r"""Read and return a line of bytes from the stream. If limit is specified, at most limit bytes will be read. + Limit should be an int. The line terminator is always b'\n' for binary files; for text files, the newlines argument to open can be used to select the line @@ -532,8 +533,8 @@ # primitive operation, but that would lead to nasty recursion in case # a subclass doesn't implement either.) - def read(self, n: int = -1) -> bytes: - """Read and return up to n bytes. + def read(self, n=-1): + """Read and return up to n bytes, where n is an int. Returns an empty bytes object on EOF, or None if the object is set not to block and has no data to read. @@ -559,15 +560,15 @@ res += data return bytes(res) - def readinto(self, b: bytearray) -> int: - """Read up to len(b) bytes into b. + def readinto(self, b): + """Read up to len(b) bytes into bytearray b. - Returns number of bytes read (0 for EOF), or None if the object - is set not to block and has no data to read. + Returns an int representing the number of bytes read (0 for EOF), or + None if the object is set not to block and has no data to read. """ self._unsupported("readinto") - def write(self, b: bytes) -> int: + def write(self, b): """Write the given buffer to the IO stream. Returns the number of bytes written, which may be less than len(b). @@ -596,8 +597,8 @@ implementation, but wrap one. """ - def read(self, n: int = None) -> bytes: - """Read and return up to n bytes. + def read(self, n=None): + """Read and return up to n bytes, where n is an int. If the argument is omitted, None, or negative, reads and returns all data until EOF. @@ -616,17 +617,19 @@ """ self._unsupported("read") - def read1(self, n: int=None) -> bytes: - """Read up to n bytes with at most one read() system call.""" + def read1(self, n=None): + """Read up to n bytes with at most one read() system call, + where n is an int. + """ self._unsupported("read1") - def readinto(self, b: bytearray) -> int: - """Read up to len(b) bytes into b. + def readinto(self, b): + """Read up to len(b) bytes into bytearray b. Like read(), this may issue multiple reads to the underlying raw stream, unless the latter is 'interactive'. - Returns the number of bytes read (0 for EOF). + Returns an int representing the number of bytes read (0 for EOF). Raises BlockingIOError if the underlying raw stream has no data at the moment. @@ -643,8 +646,8 @@ b[:n] = array.array('b', data) return n - def write(self, b: bytes) -> int: - """Write the given buffer to the IO stream. + def write(self, b): + """Write the given bytes buffer to the IO stream. Return the number of bytes written, which is never less than len(b). @@ -654,7 +657,7 @@ """ self._unsupported("write") - def detach(self) -> None: + def detach(self): """ Separate the underlying raw stream from the buffer and return it. @@ -941,7 +944,12 @@ current_size = 0 while True: # Read until EOF or until read() would block. - chunk = self.raw.read() + try: + chunk = self.raw.read() + except IOError as e: + if e.errno != EINTR: + raise + continue if chunk in empty_values: nodata_val = chunk break @@ -960,7 +968,12 @@ chunks = [buf[pos:]] wanted = max(self.buffer_size, n) while avail < n: - chunk = self.raw.read(wanted) + try: + chunk = self.raw.read(wanted) + except IOError as e: + if e.errno != EINTR: + raise + continue if chunk in empty_values: nodata_val = chunk break @@ -989,7 +1002,14 @@ have = len(self._read_buf) - self._read_pos if have < want or have <= 0: to_read = self.buffer_size - have - current = self.raw.read(to_read) + while True: + try: + current = self.raw.read(to_read) + except IOError as e: + if e.errno != EINTR: + raise + continue + break if current: self._read_buf = self._read_buf[self._read_pos:] + current self._read_pos = 0 @@ -1096,7 +1116,12 @@ written = 0 try: while self._write_buf: - n = self.raw.write(self._write_buf) + try: + n = self.raw.write(self._write_buf) + except IOError as e: + if e.errno != EINTR: + raise + continue if n > len(self._write_buf) or n < 0: raise IOError("write() returned incorrect number of bytes") del self._write_buf[:n] @@ -1272,30 +1297,32 @@ are immutable. There is no public constructor. """ - def read(self, n: int = -1) -> str: - """Read at most n characters from stream. + def read(self, n=-1): + """Read at most n characters from stream, where n is an int. Read from underlying buffer until we have n characters or we hit EOF. If n is negative or omitted, read until EOF. + + Returns a string. """ self._unsupported("read") - def write(self, s: str) -> int: - """Write string s to stream.""" + def write(self, s): + """Write string s to stream and returning an int.""" self._unsupported("write") - def truncate(self, pos: int = None) -> int: - """Truncate size to pos.""" + def truncate(self, pos=None): + """Truncate size to pos, where pos is an int.""" self._unsupported("truncate") - def readline(self) -> str: + def readline(self): """Read until newline or EOF. Returns an empty string if EOF is hit immediately. """ self._unsupported("readline") - def detach(self) -> None: + def detach(self): """ Separate the underlying buffer from the TextIOBase and return it. @@ -1484,6 +1511,7 @@ self._decoded_chars_used = 0 # offset into _decoded_chars for read() self._snapshot = None # info for reconstructing decoder state self._seekable = self._telling = self.buffer.seekable() + self._b2cratio = 0.0 if self._seekable and self.writable(): position = self.buffer.tell() @@ -1567,7 +1595,8 @@ def isatty(self): return self.buffer.isatty() - def write(self, s: str): + def write(self, s): + 'Write data, where s is a str' if self.closed: raise ValueError("write to closed file") if not isinstance(s, str): @@ -1650,7 +1679,12 @@ # Read a chunk, decode it, and put the result in self._decoded_chars. input_chunk = self.buffer.read1(self._CHUNK_SIZE) eof = not input_chunk - self._set_decoded_chars(self._decoder.decode(input_chunk, eof)) + decoded_chars = self._decoder.decode(input_chunk, eof) + self._set_decoded_chars(decoded_chars) + if decoded_chars: + self._b2cratio = len(input_chunk) / len(self._decoded_chars) + else: + self._b2cratio = 0.0 if self._telling: # At the snapshot point, len(dec_buffer) bytes before the read, @@ -1704,20 +1738,56 @@ # forward until it gives us enough decoded characters. saved_state = decoder.getstate() try: + # Fast search for an acceptable start point, close to our + # current pos. + # Rationale: calling decoder.decode() has a large overhead + # regardless of chunk size; we want the number of such calls to + # be O(1) in most situations (common decoders, non-crazy input). + # Actually, it will be exactly 1 for fixed-size codecs (all + # 8-bit codecs, also UTF-16 and UTF-32). + skip_bytes = int(self._b2cratio * chars_to_skip) + skip_back = 1 + assert skip_bytes <= len(next_input) + while skip_bytes > 0: + decoder.setstate((b'', dec_flags)) + # Decode up to temptative start point + n = len(decoder.decode(next_input[:skip_bytes])) + if n <= chars_to_skip: + b, d = decoder.getstate() + if not b: + # Before pos and no bytes buffered in decoder => OK + dec_flags = d + chars_to_skip -= n + break + # Skip back by buffered amount and reset heuristic + skip_bytes -= len(b) + skip_back = 1 + else: + # We're too far ahead, skip back a bit + skip_bytes -= skip_back + skip_back = skip_back * 2 + else: + skip_bytes = 0 + decoder.setstate((b'', dec_flags)) + # Note our initial start point. - decoder.setstate((b'', dec_flags)) - start_pos = position - start_flags, bytes_fed, chars_decoded = dec_flags, 0, 0 - need_eof = 0 + start_pos = position + skip_bytes + start_flags = dec_flags + if chars_to_skip == 0: + # We haven't moved from the start point. + return self._pack_cookie(start_pos, start_flags) # Feed the decoder one byte at a time. As we go, note the # nearest "safe start point" before the current location # (a point where the decoder has nothing buffered, so seek() # can safely start from there and advance to this location). - next_byte = bytearray(1) - for next_byte[0] in next_input: + bytes_fed = 0 + need_eof = 0 + # Chars decoded since `start_pos` + chars_decoded = 0 + for i in range(skip_bytes, len(next_input)): bytes_fed += 1 - chars_decoded += len(decoder.decode(next_byte)) + chars_decoded += len(decoder.decode(next_input[i:i+1])) dec_buffer, dec_flags = decoder.getstate() if not dec_buffer and chars_decoded <= chars_to_skip: # Decoder buffer is empty, so this is a safe start point. Modified: python/branches/py3k-cdecimal/Lib/abc.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/abc.py (original) +++ python/branches/py3k-cdecimal/Lib/abc.py Fri Mar 4 18:50:17 2011 @@ -133,11 +133,14 @@ return cls def register(cls, subclass): - """Register a virtual subclass of an ABC.""" + """Register a virtual subclass of an ABC. + + Returns the subclass, to allow usage as a class decorator. + """ if not isinstance(subclass, type): raise TypeError("Can only register classes") if issubclass(subclass, cls): - return # Already a subclass + return subclass # Already a subclass # Subtle: test for cycles *after* testing for "already a subclass"; # this means we allow X.register(X) and interpret it as a no-op. if issubclass(cls, subclass): @@ -145,6 +148,7 @@ raise RuntimeError("Refusing to create an inheritance cycle") cls._abc_registry.add(subclass) ABCMeta._abc_invalidation_counter += 1 # Invalidate negative cache + return subclass def _dump_registry(cls, file=None): """Debug helper to print the ABC registry.""" Modified: python/branches/py3k-cdecimal/Lib/argparse.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/argparse.py (original) +++ python/branches/py3k-cdecimal/Lib/argparse.py Fri Mar 4 18:50:17 2011 @@ -1121,7 +1121,7 @@ the builtin open() function. """ - def __init__(self, mode='r', bufsize=None): + def __init__(self, mode='r', bufsize=-1): self._mode = mode self._bufsize = bufsize @@ -1137,14 +1137,15 @@ raise ValueError(msg) # all other arguments are used as file names - if self._bufsize: + try: return open(string, self._mode, self._bufsize) - else: - return open(string, self._mode) + except IOError as e: + message = _("can't open '%s': %s") + raise ArgumentTypeError(message % (string, e)) def __repr__(self): - args = [self._mode, self._bufsize] - args_str = ', '.join([repr(arg) for arg in args if arg is not None]) + args = self._mode, self._bufsize + args_str = ', '.join(repr(arg) for arg in args if arg != -1) return '%s(%s)' % (type(self).__name__, args_str) # =========================== @@ -1494,6 +1495,7 @@ self._defaults = container._defaults self._has_negative_number_optionals = \ container._has_negative_number_optionals + self._mutually_exclusive_groups = container._mutually_exclusive_groups def _add_action(self, action): action = super(_ArgumentGroup, self)._add_action(action) Modified: python/branches/py3k-cdecimal/Lib/ast.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/ast.py (original) +++ python/branches/py3k-cdecimal/Lib/ast.py Fri Mar 4 18:50:17 2011 @@ -28,12 +28,12 @@ from _ast import __version__ -def parse(expr, filename='', mode='exec'): +def parse(source, filename='', mode='exec'): """ - Parse an expression into an AST node. - Equivalent to compile(expr, filename, mode, PyCF_ONLY_AST). + Parse the source into an AST node. + Equivalent to compile(source, filename, mode, PyCF_ONLY_AST). """ - return compile(expr, filename, mode, PyCF_ONLY_AST) + return compile(source, filename, mode, PyCF_ONLY_AST) def literal_eval(node_or_string): Modified: python/branches/py3k-cdecimal/Lib/asynchat.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/asynchat.py (original) +++ python/branches/py3k-cdecimal/Lib/asynchat.py Fri Mar 4 18:50:17 2011 @@ -75,7 +75,7 @@ # sign of an application bug that we don't want to pass silently use_encoding = 0 - encoding = 'latin1' + encoding = 'latin-1' def __init__ (self, sock=None, map=None): # for string terminator matching Modified: python/branches/py3k-cdecimal/Lib/asyncore.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/asyncore.py (original) +++ python/branches/py3k-cdecimal/Lib/asyncore.py Fri Mar 4 18:50:17 2011 @@ -54,9 +54,11 @@ import os from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \ - ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, errorcode + ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, EPIPE, EAGAIN, \ + errorcode -_DISCONNECTED = frozenset((ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED)) +_DISCONNECTED = frozenset((ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED, EPIPE, + EBADF)) try: socket_map @@ -111,7 +113,7 @@ if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL): obj.handle_close() except socket.error as e: - if e.args[0] not in (EBADF, ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED): + if e.args[0] not in _DISCONNECTED: obj.handle_error() else: obj.handle_close() @@ -287,7 +289,7 @@ del map[fd] self._fileno = None - def create_socket(self, family, type): + def create_socket(self, family=socket.AF_INET, type=socket.SOCK_STREAM): self.family_and_type = family, type sock = socket.socket(family, type) sock.setblocking(0) @@ -355,7 +357,7 @@ except TypeError: return None except socket.error as why: - if why.args[0] in (EWOULDBLOCK, ECONNABORTED): + if why.args[0] in (EWOULDBLOCK, ECONNABORTED, EAGAIN): return None else: raise Modified: python/branches/py3k-cdecimal/Lib/cgi.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/cgi.py (original) +++ python/branches/py3k-cdecimal/Lib/cgi.py Fri Mar 4 18:50:17 2011 @@ -31,13 +31,15 @@ # Imports # ======= -from io import StringIO +from io import StringIO, BytesIO, TextIOWrapper import sys import os import urllib.parse -import email.parser +from email.parser import FeedParser from warnings import warn import html +import locale +import tempfile __all__ = ["MiniFieldStorage", "FieldStorage", "parse", "parse_qs", "parse_qsl", "parse_multipart", @@ -109,7 +111,7 @@ Arguments, all optional: - fp : file pointer; default: sys.stdin + fp : file pointer; default: sys.stdin.buffer environ : environment dictionary; default: os.environ @@ -126,6 +128,18 @@ """ if fp is None: fp = sys.stdin + + # field keys and values (except for files) are returned as strings + # an encoding is required to decode the bytes read from self.fp + if hasattr(fp,'encoding'): + encoding = fp.encoding + else: + encoding = 'latin-1' + + # fp.read() must return bytes + if isinstance(fp, TextIOWrapper): + fp = fp.buffer + if not 'REQUEST_METHOD' in environ: environ['REQUEST_METHOD'] = 'GET' # For testing stand-alone if environ['REQUEST_METHOD'] == 'POST': @@ -136,7 +150,7 @@ clength = int(environ['CONTENT_LENGTH']) if maxlen and clength > maxlen: raise ValueError('Maximum content length exceeded') - qs = fp.read(clength) + qs = fp.read(clength).decode(encoding) else: qs = '' # Unknown content-type if 'QUERY_STRING' in environ: @@ -154,7 +168,8 @@ else: qs = "" environ['QUERY_STRING'] = qs # XXX Shouldn't, really - return urllib.parse.parse_qs(qs, keep_blank_values, strict_parsing) + return urllib.parse.parse_qs(qs, keep_blank_values, strict_parsing, + encoding=encoding) # parse query string function called from urlparse, @@ -236,8 +251,8 @@ if not line: terminator = lastpart # End outer loop break - if line[:2] == "--": - terminator = line.strip() + if line.startswith("--"): + terminator = line.rstrip() if terminator in (nextpart, lastpart): break lines.append(line) @@ -352,9 +367,10 @@ value: the value as a *string*; for file uploads, this transparently reads the file every time you request the value + and returns *bytes* - file: the file(-like) object from which you can read the data; - None if the data is stored a simple string + file: the file(-like) object from which you can read the data *as + bytes* ; None if the data is stored a simple string type: the content-type, or None if not specified @@ -375,15 +391,18 @@ directory and unlinking them as soon as they have been opened. """ - - def __init__(self, fp=None, headers=None, outerboundary="", - environ=os.environ, keep_blank_values=0, strict_parsing=0): + def __init__(self, fp=None, headers=None, outerboundary=b'', + environ=os.environ, keep_blank_values=0, strict_parsing=0, + limit=None, encoding='utf-8', errors='replace'): """Constructor. Read multipart/* until last part. Arguments, all optional: - fp : file pointer; default: sys.stdin + fp : file pointer; default: sys.stdin.buffer (not used when the request method is GET) + Can be : + 1. a TextIOWrapper object + 2. an object whose read() and readline() methods return bytes headers : header dictionary-like object; default: taken from environ as per CGI spec @@ -404,6 +423,16 @@ If false (the default), errors are silently ignored. If true, errors raise a ValueError exception. + limit : used internally to read parts of multipart/form-data forms, + to exit from the reading loop when reached. It is the difference + between the form content-length and the number of bytes already + read + + encoding, errors : the encoding and error handler used to decode the + binary stream to strings. Must be the same as the charset defined + for the page sending the form (content-type : meta http-equiv or + header) + """ method = 'GET' self.keep_blank_values = keep_blank_values @@ -418,7 +447,8 @@ qs = sys.argv[1] else: qs = "" - fp = StringIO(qs) + qs = qs.encode(locale.getpreferredencoding(), 'surrogateescape') + fp = BytesIO(qs) if headers is None: headers = {'content-type': "application/x-www-form-urlencoded"} @@ -433,10 +463,26 @@ self.qs_on_post = environ['QUERY_STRING'] if 'CONTENT_LENGTH' in environ: headers['content-length'] = environ['CONTENT_LENGTH'] - self.fp = fp or sys.stdin + if fp is None: + self.fp = sys.stdin.buffer + # self.fp.read() must return bytes + elif isinstance(fp, TextIOWrapper): + self.fp = fp.buffer + else: + self.fp = fp + + self.encoding = encoding + self.errors = errors + self.headers = headers + if not isinstance(outerboundary, bytes): + raise TypeError('outerboundary must be bytes, not %s' + % type(outerboundary).__name__) self.outerboundary = outerboundary + self.bytes_read = 0 + self.limit = limit + # Process content-disposition header cdisp, pdict = "", {} if 'content-disposition' in self.headers: @@ -449,6 +495,7 @@ self.filename = None if 'filename' in pdict: self.filename = pdict['filename'] + self._binary_file = self.filename is not None # Process content-type header # @@ -470,9 +517,11 @@ ctype, pdict = 'application/x-www-form-urlencoded', {} self.type = ctype self.type_options = pdict - self.innerboundary = "" if 'boundary' in pdict: - self.innerboundary = pdict['boundary'] + self.innerboundary = pdict['boundary'].encode(self.encoding) + else: + self.innerboundary = b"" + clen = -1 if 'content-length' in self.headers: try: @@ -482,6 +531,8 @@ if maxlen and clen > maxlen: raise ValueError('Maximum content length exceeded') self.length = clen + if self.limit is None and clen: + self.limit = clen self.list = self.file = None self.done = 0 @@ -531,7 +582,7 @@ """Dictionary style get() method, including 'value' lookup.""" if key in self: value = self[key] - if type(value) is type([]): + if isinstance(value, list): return [x.value for x in value] else: return value.value @@ -542,7 +593,7 @@ """ Return the first value received.""" if key in self: value = self[key] - if type(value) is type([]): + if isinstance(value, list): return value[0].value else: return value.value @@ -553,7 +604,7 @@ """ Return list of received values.""" if key in self: value = self[key] - if type(value) is type([]): + if isinstance(value, list): return [x.value for x in value] else: return [value.value] @@ -582,12 +633,18 @@ def read_urlencoded(self): """Internal: read data in query string format.""" qs = self.fp.read(self.length) + if not isinstance(qs, bytes): + raise ValueError("%s should return bytes, got %s" \ + % (self.fp, type(qs).__name__)) + qs = qs.decode(self.encoding, self.errors) if self.qs_on_post: qs += '&' + self.qs_on_post - self.list = list = [] - for key, value in urllib.parse.parse_qsl(qs, self.keep_blank_values, - self.strict_parsing): - list.append(MiniFieldStorage(key, value)) + self.list = [] + query = urllib.parse.parse_qsl( + qs, self.keep_blank_values, self.strict_parsing, + encoding=self.encoding, errors=self.errors) + for key, value in query: + self.list.append(MiniFieldStorage(key, value)) self.skip_lines() FieldStorageClass = None @@ -599,24 +656,42 @@ raise ValueError('Invalid boundary in multipart form: %r' % (ib,)) self.list = [] if self.qs_on_post: - for key, value in urllib.parse.parse_qsl(self.qs_on_post, - self.keep_blank_values, self.strict_parsing): + query = urllib.parse.parse_qsl( + self.qs_on_post, self.keep_blank_values, self.strict_parsing, + encoding=self.encoding, errors=self.errors) + for key, value in query: self.list.append(MiniFieldStorage(key, value)) FieldStorageClass = None klass = self.FieldStorageClass or self.__class__ - parser = email.parser.FeedParser() - # Create bogus content-type header for proper multipart parsing - parser.feed('Content-Type: %s; boundary=%s\r\n\r\n' % (self.type, ib)) - parser.feed(self.fp.read()) - full_msg = parser.close() - # Get subparts - msgs = full_msg.get_payload() - for msg in msgs: - fp = StringIO(msg.get_payload()) - part = klass(fp, msg, ib, environ, keep_blank_values, - strict_parsing) + first_line = self.fp.readline() # bytes + if not isinstance(first_line, bytes): + raise ValueError("%s should return bytes, got %s" \ + % (self.fp, type(first_line).__name__)) + self.bytes_read += len(first_line) + # first line holds boundary ; ignore it, or check that + # b"--" + ib == first_line.strip() ? + while True: + parser = FeedParser() + hdr_text = b"" + while True: + data = self.fp.readline() + hdr_text += data + if not data.strip(): + break + if not hdr_text: + break + # parser takes strings, not bytes + self.bytes_read += len(hdr_text) + parser.feed(hdr_text.decode(self.encoding, self.errors)) + headers = parser.close() + part = klass(self.fp, headers, ib, environ, keep_blank_values, + strict_parsing,self.limit-self.bytes_read, + self.encoding, self.errors) + self.bytes_read += part.bytes_read self.list.append(part) + if self.bytes_read >= self.length: + break self.skip_lines() def read_single(self): @@ -636,7 +711,11 @@ todo = self.length if todo >= 0: while todo > 0: - data = self.fp.read(min(todo, self.bufsize)) + data = self.fp.read(min(todo, self.bufsize)) # bytes + if not isinstance(data, bytes): + raise ValueError("%s should return bytes, got %s" + % (self.fp, type(data).__name__)) + self.bytes_read += len(data) if not data: self.done = -1 break @@ -645,59 +724,77 @@ def read_lines(self): """Internal: read lines until EOF or outerboundary.""" - self.file = self.__file = StringIO() + if self._binary_file: + self.file = self.__file = BytesIO() # store data as bytes for files + else: + self.file = self.__file = StringIO() # as strings for other fields if self.outerboundary: self.read_lines_to_outerboundary() else: self.read_lines_to_eof() def __write(self, line): + """line is always bytes, not string""" if self.__file is not None: if self.__file.tell() + len(line) > 1000: self.file = self.make_file() data = self.__file.getvalue() self.file.write(data) self.__file = None - self.file.write(line) + if self._binary_file: + # keep bytes + self.file.write(line) + else: + # decode to string + self.file.write(line.decode(self.encoding, self.errors)) def read_lines_to_eof(self): """Internal: read lines until EOF.""" while 1: - line = self.fp.readline(1<<16) + line = self.fp.readline(1<<16) # bytes + self.bytes_read += len(line) if not line: self.done = -1 break self.__write(line) def read_lines_to_outerboundary(self): - """Internal: read lines until outerboundary.""" - next = "--" + self.outerboundary - last = next + "--" - delim = "" + """Internal: read lines until outerboundary. + Data is read as bytes: boundaries and line ends must be converted + to bytes for comparisons. + """ + next_boundary = b"--" + self.outerboundary + last_boundary = next_boundary + b"--" + delim = b"" last_line_lfend = True + _read = 0 while 1: - line = self.fp.readline(1<<16) + if _read >= self.limit: + break + line = self.fp.readline(1<<16) # bytes + self.bytes_read += len(line) + _read += len(line) if not line: self.done = -1 break - if line[:2] == "--" and last_line_lfend: - strippedline = line.strip() - if strippedline == next: + if line.startswith(b"--") and last_line_lfend: + strippedline = line.rstrip() + if strippedline == next_boundary: break - if strippedline == last: + if strippedline == last_boundary: self.done = 1 break odelim = delim - if line[-2:] == "\r\n": - delim = "\r\n" + if line.endswith(b"\r\n"): + delim = b"\r\n" line = line[:-2] last_line_lfend = True - elif line[-1] == "\n": - delim = "\n" + elif line.endswith(b"\n"): + delim = b"\n" line = line[:-1] last_line_lfend = True else: - delim = "" + delim = b"" last_line_lfend = False self.__write(odelim + line) @@ -705,22 +802,23 @@ """Internal: skip lines until outer boundary if defined.""" if not self.outerboundary or self.done: return - next = "--" + self.outerboundary - last = next + "--" + next_boundary = b"--" + self.outerboundary + last_boundary = next_boundary + b"--" last_line_lfend = True - while 1: + while True: line = self.fp.readline(1<<16) + self.bytes_read += len(line) if not line: self.done = -1 break - if line[:2] == "--" and last_line_lfend: + if line.endswith(b"--") and last_line_lfend: strippedline = line.strip() - if strippedline == next: + if strippedline == next_boundary: break - if strippedline == last: + if strippedline == last_boundary: self.done = 1 break - last_line_lfend = line.endswith('\n') + last_line_lfend = line.endswith(b'\n') def make_file(self): """Overridable: return a readable & writable file. @@ -730,7 +828,8 @@ - seek(0) - data is read from it - The file is always opened in text mode. + The file is opened in binary mode for files, in text mode + for other fields This version opens a temporary file for reading and writing, and immediately deletes (unlinks) it. The trick (on Unix!) is @@ -745,8 +844,11 @@ which unlinks the temporary files you have created. """ - import tempfile - return tempfile.TemporaryFile("w+", encoding="utf-8", newline="\n") + if self._binary_file: + return tempfile.TemporaryFile("wb+") + else: + return tempfile.TemporaryFile("w+", + encoding=self.encoding, newline = '\n') # Test/debug code @@ -910,8 +1012,12 @@ return s -def valid_boundary(s, _vb_pattern="^[ -~]{0,200}[!-~]$"): +def valid_boundary(s, _vb_pattern=None): import re + if isinstance(s, bytes): + _vb_pattern = b"^[ -~]{0,200}[!-~]$" + else: + _vb_pattern = "^[ -~]{0,200}[!-~]$" return re.match(_vb_pattern, s) # Invoke mainline Deleted: python/branches/py3k-cdecimal/Lib/collections.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/collections.py Fri Mar 4 18:50:17 2011 +++ (empty file) @@ -1,940 +0,0 @@ -__all__ = ['deque', 'defaultdict', 'namedtuple', 'UserDict', 'UserList', - 'UserString', 'Counter', 'OrderedDict'] -# For bootstrapping reasons, the collection ABCs are defined in _abcoll.py. -# They should however be considered an integral part of collections.py. -from _abcoll import * -import _abcoll -__all__ += _abcoll.__all__ - -from _collections import deque, defaultdict -from operator import itemgetter as _itemgetter -from keyword import iskeyword as _iskeyword -import sys as _sys -import heapq as _heapq -from weakref import proxy as _proxy -from itertools import repeat as _repeat, chain as _chain, starmap as _starmap -from reprlib import recursive_repr as _recursive_repr - -################################################################################ -### OrderedDict -################################################################################ - -class _Link(object): - __slots__ = 'prev', 'next', 'key', '__weakref__' - -class OrderedDict(dict): - 'Dictionary that remembers insertion order' - # An inherited dict maps keys to values. - # The inherited dict provides __getitem__, __len__, __contains__, and get. - # The remaining methods are order-aware. - # Big-O running times for all methods are the same as for regular dictionaries. - - # The internal self.__map dictionary maps keys to links in a doubly linked list. - # The circular doubly linked list starts and ends with a sentinel element. - # The sentinel element never gets deleted (this simplifies the algorithm). - # The sentinel is stored in self.__hardroot with a weakref proxy in self.__root. - # The prev/next links are weakref proxies (to prevent circular references). - # Individual links are kept alive by the hard reference in self.__map. - # Those hard references disappear when a key is deleted from an OrderedDict. - - def __init__(self, *args, **kwds): - '''Initialize an ordered dictionary. Signature is the same as for - regular dictionaries, but keyword arguments are not recommended - because their insertion order is arbitrary. - - ''' - if len(args) > 1: - raise TypeError('expected at most 1 arguments, got %d' % len(args)) - try: - self.__root - except AttributeError: - self.__hardroot = _Link() - self.__root = root = _proxy(self.__hardroot) - root.prev = root.next = root - self.__map = {} - self.__update(*args, **kwds) - - def __setitem__(self, key, value, - dict_setitem=dict.__setitem__, proxy=_proxy, Link=_Link): - 'od.__setitem__(i, y) <==> od[i]=y' - # Setting a new item creates a new link which goes at the end of the linked - # list, and the inherited dictionary is updated with the new key/value pair. - if key not in self: - self.__map[key] = link = Link() - root = self.__root - last = root.prev - link.prev, link.next, link.key = last, root, key - last.next = link - root.prev = proxy(link) - dict_setitem(self, key, value) - - def __delitem__(self, key, dict_delitem=dict.__delitem__): - 'od.__delitem__(y) <==> del od[y]' - # Deleting an existing item uses self.__map to find the link which is - # then removed by updating the links in the predecessor and successor nodes. - dict_delitem(self, key) - link = self.__map.pop(key) - link_prev = link.prev - link_next = link.next - link_prev.next = link_next - link_next.prev = link_prev - - def __iter__(self): - 'od.__iter__() <==> iter(od)' - # Traverse the linked list in order. - root = self.__root - curr = root.next - while curr is not root: - yield curr.key - curr = curr.next - - def __reversed__(self): - 'od.__reversed__() <==> reversed(od)' - # Traverse the linked list in reverse order. - root = self.__root - curr = root.prev - while curr is not root: - yield curr.key - curr = curr.prev - - def clear(self): - 'od.clear() -> None. Remove all items from od.' - root = self.__root - root.prev = root.next = root - self.__map.clear() - dict.clear(self) - - def popitem(self, last=True): - '''od.popitem() -> (k, v), return and remove a (key, value) pair. - Pairs are returned in LIFO order if last is true or FIFO order if false. - - ''' - if not self: - raise KeyError('dictionary is empty') - root = self.__root - if last: - link = root.prev - link_prev = link.prev - link_prev.next = root - root.prev = link_prev - else: - link = root.next - link_next = link.next - root.next = link_next - link_next.prev = root - key = link.key - del self.__map[key] - value = dict.pop(self, key) - return key, value - - def move_to_end(self, key, last=True): - '''Move an existing element to the end (or beginning if last==False). - - Raises KeyError if the element does not exist. - When last=True, acts like a fast version of self[key]=self.pop(key). - - ''' - link = self.__map[key] - link_prev = link.prev - link_next = link.next - link_prev.next = link_next - link_next.prev = link_prev - root = self.__root - if last: - last = root.prev - link.prev = last - link.next = root - last.next = root.prev = link - else: - first = root.next - link.prev = root - link.next = first - root.next = first.prev = link - - def __reduce__(self): - 'Return state information for pickling' - items = [[k, self[k]] for k in self] - tmp = self.__map, self.__root, self.__hardroot - del self.__map, self.__root, self.__hardroot - inst_dict = vars(self).copy() - self.__map, self.__root, self.__hardroot = tmp - if inst_dict: - return (self.__class__, (items,), inst_dict) - return self.__class__, (items,) - - def __sizeof__(self): - sizeof = _sys.getsizeof - n = len(self) + 1 # number of links including root - size = sizeof(self.__dict__) # instance dictionary - size += sizeof(self.__map) * 2 # internal dict and inherited dict - size += sizeof(self.__hardroot) * n # link objects - size += sizeof(self.__root) * n # proxy objects - return size - - update = __update = MutableMapping.update - keys = MutableMapping.keys - values = MutableMapping.values - items = MutableMapping.items - __ne__ = MutableMapping.__ne__ - - __marker = object() - - def pop(self, key, default=__marker): - if key in self: - result = self[key] - del self[key] - return result - if default is self.__marker: - raise KeyError(key) - return default - - def setdefault(self, key, default=None): - 'OD.setdefault(k[,d]) -> OD.get(k,d), also set OD[k]=d if k not in OD' - if key in self: - return self[key] - self[key] = default - return default - - @_recursive_repr() - def __repr__(self): - 'od.__repr__() <==> repr(od)' - if not self: - return '%s()' % (self.__class__.__name__,) - return '%s(%r)' % (self.__class__.__name__, list(self.items())) - - def copy(self): - 'od.copy() -> a shallow copy of od' - return self.__class__(self) - - @classmethod - def fromkeys(cls, iterable, value=None): - '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S - and values equal to v (which defaults to None). - - ''' - d = cls() - for key in iterable: - d[key] = value - return d - - def __eq__(self, other): - '''od.__eq__(y) <==> od==y. Comparison to another OD is order-sensitive - while comparison to a regular mapping is order-insensitive. - - ''' - if isinstance(other, OrderedDict): - return len(self)==len(other) and \ - all(p==q for p, q in zip(self.items(), other.items())) - return dict.__eq__(self, other) - - -################################################################################ -### namedtuple -################################################################################ - -def namedtuple(typename, field_names, verbose=False, rename=False): - """Returns a new subclass of tuple with named fields. - - >>> Point = namedtuple('Point', 'x y') - >>> Point.__doc__ # docstring for the new class - 'Point(x, y)' - >>> p = Point(11, y=22) # instantiate with positional args or keywords - >>> p[0] + p[1] # indexable like a plain tuple - 33 - >>> x, y = p # unpack like a regular tuple - >>> x, y - (11, 22) - >>> p.x + p.y # fields also accessable by name - 33 - >>> d = p._asdict() # convert to a dictionary - >>> d['x'] - 11 - >>> Point(**d) # convert from a dictionary - Point(x=11, y=22) - >>> p._replace(x=100) # _replace() is like str.replace() but targets named fields - Point(x=100, y=22) - - """ - - # Parse and validate the field names. Validation serves two purposes, - # generating informative error messages and preventing template injection attacks. - if isinstance(field_names, str): - field_names = field_names.replace(',', ' ').split() # names separated by whitespace and/or commas - field_names = tuple(map(str, field_names)) - if rename: - names = list(field_names) - seen = set() - for i, name in enumerate(names): - if (not all(c.isalnum() or c=='_' for c in name) or _iskeyword(name) - or not name or name[0].isdigit() or name.startswith('_') - or name in seen): - names[i] = '_%d' % i - seen.add(name) - field_names = tuple(names) - for name in (typename,) + field_names: - if not all(c.isalnum() or c=='_' for c in name): - raise ValueError('Type names and field names can only contain alphanumeric characters and underscores: %r' % name) - if _iskeyword(name): - raise ValueError('Type names and field names cannot be a keyword: %r' % name) - if name[0].isdigit(): - raise ValueError('Type names and field names cannot start with a number: %r' % name) - seen_names = set() - for name in field_names: - if name.startswith('_') and not rename: - raise ValueError('Field names cannot start with an underscore: %r' % name) - if name in seen_names: - raise ValueError('Encountered duplicate field name: %r' % name) - seen_names.add(name) - - # Create and fill-in the class template - numfields = len(field_names) - argtxt = repr(field_names).replace("'", "")[1:-1] # tuple repr without parens or quotes - reprtxt = ', '.join('%s=%%r' % name for name in field_names) - template = '''class %(typename)s(tuple): - '%(typename)s(%(argtxt)s)' \n - __slots__ = () \n - _fields = %(field_names)r \n - def __new__(_cls, %(argtxt)s): - 'Create new instance of %(typename)s(%(argtxt)s)' - return _tuple.__new__(_cls, (%(argtxt)s)) \n - @classmethod - def _make(cls, iterable, new=tuple.__new__, len=len): - 'Make a new %(typename)s object from a sequence or iterable' - result = new(cls, iterable) - if len(result) != %(numfields)d: - raise TypeError('Expected %(numfields)d arguments, got %%d' %% len(result)) - return result \n - def __repr__(self): - 'Return a nicely formatted representation string' - return self.__class__.__name__ + '(%(reprtxt)s)' %% self \n - def _asdict(self): - 'Return a new OrderedDict which maps field names to their values' - return OrderedDict(zip(self._fields, self)) \n - def _replace(_self, **kwds): - 'Return a new %(typename)s object replacing specified fields with new values' - result = _self._make(map(kwds.pop, %(field_names)r, _self)) - if kwds: - raise ValueError('Got unexpected field names: %%r' %% kwds.keys()) - return result \n - def __getnewargs__(self): - 'Return self as a plain tuple. Used by copy and pickle.' - return tuple(self) \n\n''' % locals() - for i, name in enumerate(field_names): - template += " %s = _property(_itemgetter(%d), doc='Alias for field number %d')\n" % (name, i, i) - if verbose: - print(template) - - # Execute the template string in a temporary namespace and - # support tracing utilities by setting a value for frame.f_globals['__name__'] - namespace = dict(_itemgetter=_itemgetter, __name__='namedtuple_%s' % typename, - OrderedDict=OrderedDict, _property=property, _tuple=tuple) - try: - exec(template, namespace) - except SyntaxError as e: - raise SyntaxError(e.msg + ':\n\n' + template) - result = namespace[typename] - - # For pickling to work, the __module__ variable needs to be set to the frame - # where the named tuple is created. Bypass this step in enviroments where - # sys._getframe is not defined (Jython for example) or sys._getframe is not - # defined for arguments greater than 0 (IronPython). - try: - result.__module__ = _sys._getframe(1).f_globals.get('__name__', '__main__') - except (AttributeError, ValueError): - pass - - return result - - -######################################################################## -### Counter -######################################################################## - -def _count_elements(mapping, iterable): - 'Tally elements from the iterable.' - mapping_get = mapping.get - for elem in iterable: - mapping[elem] = mapping_get(elem, 0) + 1 - -try: # Load C helper function if available - from _collections import _count_elements -except ImportError: - pass - -class Counter(dict): - '''Dict subclass for counting hashable items. Sometimes called a bag - or multiset. Elements are stored as dictionary keys and their counts - are stored as dictionary values. - - >>> c = Counter('abcdeabcdabcaba') # count elements from a string - - >>> c.most_common(3) # three most common elements - [('a', 5), ('b', 4), ('c', 3)] - >>> sorted(c) # list all unique elements - ['a', 'b', 'c', 'd', 'e'] - >>> ''.join(sorted(c.elements())) # list elements with repetitions - 'aaaaabbbbcccdde' - >>> sum(c.values()) # total of all counts - 15 - - >>> c['a'] # count of letter 'a' - 5 - >>> for elem in 'shazam': # update counts from an iterable - ... c[elem] += 1 # by adding 1 to each element's count - >>> c['a'] # now there are seven 'a' - 7 - >>> del c['b'] # remove all 'b' - >>> c['b'] # now there are zero 'b' - 0 - - >>> d = Counter('simsalabim') # make another counter - >>> c.update(d) # add in the second counter - >>> c['a'] # now there are nine 'a' - 9 - - >>> c.clear() # empty the counter - >>> c - Counter() - - Note: If a count is set to zero or reduced to zero, it will remain - in the counter until the entry is deleted or the counter is cleared: - - >>> c = Counter('aaabbc') - >>> c['b'] -= 2 # reduce the count of 'b' by two - >>> c.most_common() # 'b' is still in, but its count is zero - [('a', 3), ('c', 1), ('b', 0)] - - ''' - # References: - # http://en.wikipedia.org/wiki/Multiset - # http://www.gnu.org/software/smalltalk/manual-base/html_node/Bag.html - # http://www.demo2s.com/Tutorial/Cpp/0380__set-multiset/Catalog0380__set-multiset.htm - # http://code.activestate.com/recipes/259174/ - # Knuth, TAOCP Vol. II section 4.6.3 - - def __init__(self, iterable=None, **kwds): - '''Create a new, empty Counter object. And if given, count elements - from an input iterable. Or, initialize the count from another mapping - of elements to their counts. - - >>> c = Counter() # a new, empty counter - >>> c = Counter('gallahad') # a new counter from an iterable - >>> c = Counter({'a': 4, 'b': 2}) # a new counter from a mapping - >>> c = Counter(a=4, b=2) # a new counter from keyword args - - ''' - super().__init__() - self.update(iterable, **kwds) - - def __missing__(self, key): - 'The count of elements not in the Counter is zero.' - # Needed so that self[missing_item] does not raise KeyError - return 0 - - def most_common(self, n=None): - '''List the n most common elements and their counts from the most - common to the least. If n is None, then list all element counts. - - >>> Counter('abcdeabcdabcaba').most_common(3) - [('a', 5), ('b', 4), ('c', 3)] - - ''' - # Emulate Bag.sortedByCount from Smalltalk - if n is None: - return sorted(self.items(), key=_itemgetter(1), reverse=True) - return _heapq.nlargest(n, self.items(), key=_itemgetter(1)) - - def elements(self): - '''Iterator over elements repeating each as many times as its count. - - >>> c = Counter('ABCABC') - >>> sorted(c.elements()) - ['A', 'A', 'B', 'B', 'C', 'C'] - - # Knuth's example for prime factors of 1836: 2**2 * 3**3 * 17**1 - >>> prime_factors = Counter({2: 2, 3: 3, 17: 1}) - >>> product = 1 - >>> for factor in prime_factors.elements(): # loop over factors - ... product *= factor # and multiply them - >>> product - 1836 - - Note, if an element's count has been set to zero or is a negative - number, elements() will ignore it. - - ''' - # Emulate Bag.do from Smalltalk and Multiset.begin from C++. - return _chain.from_iterable(_starmap(_repeat, self.items())) - - # Override dict methods where necessary - - @classmethod - def fromkeys(cls, iterable, v=None): - # There is no equivalent method for counters because setting v=1 - # means that no element can have a count greater than one. - raise NotImplementedError( - 'Counter.fromkeys() is undefined. Use Counter(iterable) instead.') - - def update(self, iterable=None, **kwds): - '''Like dict.update() but add counts instead of replacing them. - - Source can be an iterable, a dictionary, or another Counter instance. - - >>> c = Counter('which') - >>> c.update('witch') # add elements from another iterable - >>> d = Counter('watch') - >>> c.update(d) # add elements from another counter - >>> c['h'] # four 'h' in which, witch, and watch - 4 - - ''' - # The regular dict.update() operation makes no sense here because the - # replace behavior results in the some of original untouched counts - # being mixed-in with all of the other counts for a mismash that - # doesn't have a straight-forward interpretation in most counting - # contexts. Instead, we implement straight-addition. Both the inputs - # and outputs are allowed to contain zero and negative counts. - - if iterable is not None: - if isinstance(iterable, Mapping): - if self: - self_get = self.get - for elem, count in iterable.items(): - self[elem] = count + self_get(elem, 0) - else: - super().update(iterable) # fast path when counter is empty - else: - _count_elements(self, iterable) - if kwds: - self.update(kwds) - - def subtract(self, iterable=None, **kwds): - '''Like dict.update() but subtracts counts instead of replacing them. - Counts can be reduced below zero. Both the inputs and outputs are - allowed to contain zero and negative counts. - - Source can be an iterable, a dictionary, or another Counter instance. - - >>> c = Counter('which') - >>> c.subtract('witch') # subtract elements from another iterable - >>> c.subtract(Counter('watch')) # subtract elements from another counter - >>> c['h'] # 2 in which, minus 1 in witch, minus 1 in watch - 0 - >>> c['w'] # 1 in which, minus 1 in witch, minus 1 in watch - -1 - - ''' - if iterable is not None: - self_get = self.get - if isinstance(iterable, Mapping): - for elem, count in iterable.items(): - self[elem] = self_get(elem, 0) - count - else: - for elem in iterable: - self[elem] = self_get(elem, 0) - 1 - if kwds: - self.subtract(kwds) - - def copy(self): - 'Like dict.copy() but returns a Counter instance instead of a dict.' - return Counter(self) - - def __reduce__(self): - return self.__class__, (dict(self),) - - def __delitem__(self, elem): - 'Like dict.__delitem__() but does not raise KeyError for missing values.' - if elem in self: - super().__delitem__(elem) - - def __repr__(self): - if not self: - return '%s()' % self.__class__.__name__ - items = ', '.join(map('%r: %r'.__mod__, self.most_common())) - return '%s({%s})' % (self.__class__.__name__, items) - - # Multiset-style mathematical operations discussed in: - # Knuth TAOCP Volume II section 4.6.3 exercise 19 - # and at http://en.wikipedia.org/wiki/Multiset - # - # Outputs guaranteed to only include positive counts. - # - # To strip negative and zero counts, add-in an empty counter: - # c += Counter() - - def __add__(self, other): - '''Add counts from two counters. - - >>> Counter('abbb') + Counter('bcc') - Counter({'b': 4, 'c': 2, 'a': 1}) - - ''' - if not isinstance(other, Counter): - return NotImplemented - result = Counter() - for elem in set(self) | set(other): - newcount = self[elem] + other[elem] - if newcount > 0: - result[elem] = newcount - return result - - def __sub__(self, other): - ''' Subtract count, but keep only results with positive counts. - - >>> Counter('abbbc') - Counter('bccd') - Counter({'b': 2, 'a': 1}) - - ''' - if not isinstance(other, Counter): - return NotImplemented - result = Counter() - for elem in set(self) | set(other): - newcount = self[elem] - other[elem] - if newcount > 0: - result[elem] = newcount - return result - - def __or__(self, other): - '''Union is the maximum of value in either of the input counters. - - >>> Counter('abbb') | Counter('bcc') - Counter({'b': 3, 'c': 2, 'a': 1}) - - ''' - if not isinstance(other, Counter): - return NotImplemented - result = Counter() - for elem in set(self) | set(other): - p, q = self[elem], other[elem] - newcount = q if p < q else p - if newcount > 0: - result[elem] = newcount - return result - - def __and__(self, other): - ''' Intersection is the minimum of corresponding counts. - - >>> Counter('abbb') & Counter('bcc') - Counter({'b': 1}) - - ''' - if not isinstance(other, Counter): - return NotImplemented - result = Counter() - if len(self) < len(other): - self, other = other, self - for elem in filter(self.__contains__, other): - p, q = self[elem], other[elem] - newcount = p if p < q else q - if newcount > 0: - result[elem] = newcount - return result - - -################################################################################ -### UserDict -################################################################################ - -class UserDict(MutableMapping): - - # Start by filling-out the abstract methods - def __init__(self, dict=None, **kwargs): - self.data = {} - if dict is not None: - self.update(dict) - if len(kwargs): - self.update(kwargs) - def __len__(self): return len(self.data) - def __getitem__(self, key): - if key in self.data: - return self.data[key] - if hasattr(self.__class__, "__missing__"): - return self.__class__.__missing__(self, key) - raise KeyError(key) - def __setitem__(self, key, item): self.data[key] = item - def __delitem__(self, key): del self.data[key] - def __iter__(self): - return iter(self.data) - - # Modify __contains__ to work correctly when __missing__ is present - def __contains__(self, key): - return key in self.data - - # Now, add the methods in dicts but not in MutableMapping - def __repr__(self): return repr(self.data) - def copy(self): - if self.__class__ is UserDict: - return UserDict(self.data.copy()) - import copy - data = self.data - try: - self.data = {} - c = copy.copy(self) - finally: - self.data = data - c.update(self) - return c - @classmethod - def fromkeys(cls, iterable, value=None): - d = cls() - for key in iterable: - d[key] = value - return d - - - -################################################################################ -### UserList -################################################################################ - -class UserList(MutableSequence): - """A more or less complete user-defined wrapper around list objects.""" - def __init__(self, initlist=None): - self.data = [] - if initlist is not None: - # XXX should this accept an arbitrary sequence? - if type(initlist) == type(self.data): - self.data[:] = initlist - elif isinstance(initlist, UserList): - self.data[:] = initlist.data[:] - else: - self.data = list(initlist) - def __repr__(self): return repr(self.data) - def __lt__(self, other): return self.data < self.__cast(other) - def __le__(self, other): return self.data <= self.__cast(other) - def __eq__(self, other): return self.data == self.__cast(other) - def __ne__(self, other): return self.data != self.__cast(other) - def __gt__(self, other): return self.data > self.__cast(other) - def __ge__(self, other): return self.data >= self.__cast(other) - def __cast(self, other): - return other.data if isinstance(other, UserList) else other - def __contains__(self, item): return item in self.data - def __len__(self): return len(self.data) - def __getitem__(self, i): return self.data[i] - def __setitem__(self, i, item): self.data[i] = item - def __delitem__(self, i): del self.data[i] - def __add__(self, other): - if isinstance(other, UserList): - return self.__class__(self.data + other.data) - elif isinstance(other, type(self.data)): - return self.__class__(self.data + other) - return self.__class__(self.data + list(other)) - def __radd__(self, other): - if isinstance(other, UserList): - return self.__class__(other.data + self.data) - elif isinstance(other, type(self.data)): - return self.__class__(other + self.data) - return self.__class__(list(other) + self.data) - def __iadd__(self, other): - if isinstance(other, UserList): - self.data += other.data - elif isinstance(other, type(self.data)): - self.data += other - else: - self.data += list(other) - return self - def __mul__(self, n): - return self.__class__(self.data*n) - __rmul__ = __mul__ - def __imul__(self, n): - self.data *= n - return self - def append(self, item): self.data.append(item) - def insert(self, i, item): self.data.insert(i, item) - def pop(self, i=-1): return self.data.pop(i) - def remove(self, item): self.data.remove(item) - def count(self, item): return self.data.count(item) - def index(self, item, *args): return self.data.index(item, *args) - def reverse(self): self.data.reverse() - def sort(self, *args, **kwds): self.data.sort(*args, **kwds) - def extend(self, other): - if isinstance(other, UserList): - self.data.extend(other.data) - else: - self.data.extend(other) - - - -################################################################################ -### UserString -################################################################################ - -class UserString(Sequence): - def __init__(self, seq): - if isinstance(seq, str): - self.data = seq - elif isinstance(seq, UserString): - self.data = seq.data[:] - else: - self.data = str(seq) - def __str__(self): return str(self.data) - def __repr__(self): return repr(self.data) - def __int__(self): return int(self.data) - def __float__(self): return float(self.data) - def __complex__(self): return complex(self.data) - def __hash__(self): return hash(self.data) - - def __eq__(self, string): - if isinstance(string, UserString): - return self.data == string.data - return self.data == string - def __ne__(self, string): - if isinstance(string, UserString): - return self.data != string.data - return self.data != string - def __lt__(self, string): - if isinstance(string, UserString): - return self.data < string.data - return self.data < string - def __le__(self, string): - if isinstance(string, UserString): - return self.data <= string.data - return self.data <= string - def __gt__(self, string): - if isinstance(string, UserString): - return self.data > string.data - return self.data > string - def __ge__(self, string): - if isinstance(string, UserString): - return self.data >= string.data - return self.data >= string - - def __contains__(self, char): - if isinstance(char, UserString): - char = char.data - return char in self.data - - def __len__(self): return len(self.data) - def __getitem__(self, index): return self.__class__(self.data[index]) - def __add__(self, other): - if isinstance(other, UserString): - return self.__class__(self.data + other.data) - elif isinstance(other, str): - return self.__class__(self.data + other) - return self.__class__(self.data + str(other)) - def __radd__(self, other): - if isinstance(other, str): - return self.__class__(other + self.data) - return self.__class__(str(other) + self.data) - def __mul__(self, n): - return self.__class__(self.data*n) - __rmul__ = __mul__ - def __mod__(self, args): - return self.__class__(self.data % args) - - # the following methods are defined in alphabetical order: - def capitalize(self): return self.__class__(self.data.capitalize()) - def center(self, width, *args): - return self.__class__(self.data.center(width, *args)) - def count(self, sub, start=0, end=_sys.maxsize): - if isinstance(sub, UserString): - sub = sub.data - return self.data.count(sub, start, end) - def encode(self, encoding=None, errors=None): # XXX improve this? - if encoding: - if errors: - return self.__class__(self.data.encode(encoding, errors)) - return self.__class__(self.data.encode(encoding)) - return self.__class__(self.data.encode()) - def endswith(self, suffix, start=0, end=_sys.maxsize): - return self.data.endswith(suffix, start, end) - def expandtabs(self, tabsize=8): - return self.__class__(self.data.expandtabs(tabsize)) - def find(self, sub, start=0, end=_sys.maxsize): - if isinstance(sub, UserString): - sub = sub.data - return self.data.find(sub, start, end) - def format(self, *args, **kwds): - return self.data.format(*args, **kwds) - def index(self, sub, start=0, end=_sys.maxsize): - return self.data.index(sub, start, end) - def isalpha(self): return self.data.isalpha() - def isalnum(self): return self.data.isalnum() - def isdecimal(self): return self.data.isdecimal() - def isdigit(self): return self.data.isdigit() - def isidentifier(self): return self.data.isidentifier() - def islower(self): return self.data.islower() - def isnumeric(self): return self.data.isnumeric() - def isspace(self): return self.data.isspace() - def istitle(self): return self.data.istitle() - def isupper(self): return self.data.isupper() - def join(self, seq): return self.data.join(seq) - def ljust(self, width, *args): - return self.__class__(self.data.ljust(width, *args)) - def lower(self): return self.__class__(self.data.lower()) - def lstrip(self, chars=None): return self.__class__(self.data.lstrip(chars)) - def partition(self, sep): - return self.data.partition(sep) - def replace(self, old, new, maxsplit=-1): - if isinstance(old, UserString): - old = old.data - if isinstance(new, UserString): - new = new.data - return self.__class__(self.data.replace(old, new, maxsplit)) - def rfind(self, sub, start=0, end=_sys.maxsize): - if isinstance(sub, UserString): - sub = sub.data - return self.data.rfind(sub, start, end) - def rindex(self, sub, start=0, end=_sys.maxsize): - return self.data.rindex(sub, start, end) - def rjust(self, width, *args): - return self.__class__(self.data.rjust(width, *args)) - def rpartition(self, sep): - return self.data.rpartition(sep) - def rstrip(self, chars=None): - return self.__class__(self.data.rstrip(chars)) - def split(self, sep=None, maxsplit=-1): - return self.data.split(sep, maxsplit) - def rsplit(self, sep=None, maxsplit=-1): - return self.data.rsplit(sep, maxsplit) - def splitlines(self, keepends=0): return self.data.splitlines(keepends) - def startswith(self, prefix, start=0, end=_sys.maxsize): - return self.data.startswith(prefix, start, end) - def strip(self, chars=None): return self.__class__(self.data.strip(chars)) - def swapcase(self): return self.__class__(self.data.swapcase()) - def title(self): return self.__class__(self.data.title()) - def translate(self, *args): - return self.__class__(self.data.translate(*args)) - def upper(self): return self.__class__(self.data.upper()) - def zfill(self, width): return self.__class__(self.data.zfill(width)) - - - -################################################################################ -### Simple tests -################################################################################ - -if __name__ == '__main__': - # verify that instances can be pickled - from pickle import loads, dumps - Point = namedtuple('Point', 'x, y', True) - p = Point(x=10, y=20) - assert p == loads(dumps(p)) - - # test and demonstrate ability to override methods - class Point(namedtuple('Point', 'x y')): - __slots__ = () - @property - def hypot(self): - return (self.x ** 2 + self.y ** 2) ** 0.5 - def __str__(self): - return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot) - - for p in Point(3, 4), Point(14, 5/7.): - print (p) - - class Point(namedtuple('Point', 'x y')): - 'Point class with optimized _make() and _replace() without error-checking' - __slots__ = () - _make = classmethod(tuple.__new__) - def _replace(self, _map=map, **kwds): - return self._make(_map(kwds.get, ('x', 'y'), self)) - - print(Point(11, 22)._replace(x=100)) - - Point3D = namedtuple('Point3D', Point._fields + ('z',)) - print(Point3D.__doc__) - - import doctest - TestResults = namedtuple('TestResults', 'failed attempted') - print(TestResults(*doctest.testmod())) Modified: python/branches/py3k-cdecimal/Lib/compileall.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/compileall.py (original) +++ python/branches/py3k-cdecimal/Lib/compileall.py Fri Mar 4 18:50:17 2011 @@ -35,11 +35,11 @@ optimize: optimization level or -1 for level of the interpreter """ if not quiet: - print('Listing', dir, '...') + print('Listing {!r}...'.format(dir)) try: names = os.listdir(dir) except os.error: - print("Can't list", dir) + print("Can't list {!r}".format(dir)) names = [] names.sort() success = 1 @@ -58,7 +58,7 @@ elif (maxlevels > 0 and name != os.curdir and name != os.pardir and os.path.isdir(fullname) and not os.path.islink(fullname)): if not compile_dir(fullname, maxlevels - 1, dfile, force, rx, - quiet, legacy): + quiet, legacy, optimize): success = 0 return success @@ -109,13 +109,13 @@ except IOError: pass if not quiet: - print('Compiling', fullname, '...') + print('Compiling {!r}...'.format(fullname)) try: ok = py_compile.compile(fullname, cfile, dfile, True, optimize=optimize) except py_compile.PyCompileError as err: if quiet: - print('*** Error compiling', fullname, '...') + print('*** Error compiling {!r}...'.format(fullname)) else: print('*** ', end='') # escape non-printable characters in msg @@ -126,7 +126,7 @@ success = 0 except (SyntaxError, UnicodeError, IOError) as e: if quiet: - print('*** Error compiling', fullname, '...') + print('*** Error compiling {!r}...'.format(fullname)) else: print('*** ', end='') print(e.__class__.__name__ + ':', e) Modified: python/branches/py3k-cdecimal/Lib/configparser.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/configparser.py (original) +++ python/branches/py3k-cdecimal/Lib/configparser.py Fri Mar 4 18:50:17 2011 @@ -119,7 +119,8 @@ between keys and values are surrounded by spaces. """ -from collections import MutableMapping, OrderedDict as _default_dict +from collections.abc import MutableMapping +from collections import OrderedDict as _default_dict, ChainMap as _ChainMap import functools import io import itertools @@ -1099,23 +1100,24 @@ return exc def _unify_values(self, section, vars): - """Create a copy of the DEFAULTSECT with values from a specific - `section' and the `vars' dictionary. If provided, values in `vars' - take precendence. + """Create a sequence of lookups with 'vars' taking priority over + the 'section' which takes priority over the DEFAULTSECT. + """ - d = self._defaults.copy() + sectiondict = {} try: - d.update(self._sections[section]) + sectiondict = self._sections[section] except KeyError: if section != self.default_section: raise NoSectionError(section) # Update with the entry specific variables + vardict = {} if vars: for key, value in vars.items(): if value is not None: value = str(value) - d[self.optionxform(key)] = value - return d + vardict[self.optionxform(key)] = value + return _ChainMap(vardict, sectiondict, self._defaults) def _convert_to_boolean(self, value): """Return a boolean value translating from other types if necessary. Modified: python/branches/py3k-cdecimal/Lib/ctypes/test/test_callbacks.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/ctypes/test/test_callbacks.py (original) +++ python/branches/py3k-cdecimal/Lib/ctypes/test/test_callbacks.py Fri Mar 4 18:50:17 2011 @@ -200,6 +200,42 @@ windll.user32.EnumWindows(EnumWindowsCallbackFunc, 0) + def test_callback_register_int(self): + # Issue #8275: buggy handling of callback args under Win64 + # NOTE: should be run on release builds as well + dll = CDLL(_ctypes_test.__file__) + CALLBACK = CFUNCTYPE(c_int, c_int, c_int, c_int, c_int, c_int) + # All this function does is call the callback with its args squared + func = dll._testfunc_cbk_reg_int + func.argtypes = (c_int, c_int, c_int, c_int, c_int, CALLBACK) + func.restype = c_int + + def callback(a, b, c, d, e): + return a + b + c + d + e + + result = func(2, 3, 4, 5, 6, CALLBACK(callback)) + self.assertEqual(result, callback(2*2, 3*3, 4*4, 5*5, 6*6)) + + def test_callback_register_double(self): + # Issue #8275: buggy handling of callback args under Win64 + # NOTE: should be run on release builds as well + dll = CDLL(_ctypes_test.__file__) + CALLBACK = CFUNCTYPE(c_double, c_double, c_double, c_double, + c_double, c_double) + # All this function does is call the callback with its args squared + func = dll._testfunc_cbk_reg_double + func.argtypes = (c_double, c_double, c_double, + c_double, c_double, CALLBACK) + func.restype = c_double + + def callback(a, b, c, d, e): + return a + b + c + d + e + + result = func(1.1, 2.2, 3.3, 4.4, 5.5, CALLBACK(callback)) + self.assertEqual(result, + callback(1.1*1.1, 2.2*2.2, 3.3*3.3, 4.4*4.4, 5.5*5.5)) + + ################################################################ if __name__ == '__main__': Modified: python/branches/py3k-cdecimal/Lib/ctypes/test/test_memfunctions.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/ctypes/test/test_memfunctions.py (original) +++ python/branches/py3k-cdecimal/Lib/ctypes/test/test_memfunctions.py Fri Mar 4 18:50:17 2011 @@ -1,4 +1,5 @@ import sys +from test import support import unittest from ctypes import * @@ -49,6 +50,7 @@ self.assertEqual(cast(a, POINTER(c_byte))[:7:7], [97]) + @support.refcount_test def test_string_at(self): s = string_at(b"foo bar") # XXX The following may be wrong, depending on how Python Modified: python/branches/py3k-cdecimal/Lib/ctypes/test/test_python_api.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/ctypes/test/test_python_api.py (original) +++ python/branches/py3k-cdecimal/Lib/ctypes/test/test_python_api.py Fri Mar 4 18:50:17 2011 @@ -1,5 +1,6 @@ from ctypes import * import unittest, sys +from test import support from ctypes.test import is_resource_enabled ################################################################ @@ -25,6 +26,7 @@ self.assertEqual(PyBytes_FromStringAndSize(b"abcdefghi", 3), b"abc") + @support.refcount_test def test_PyString_FromString(self): pythonapi.PyBytes_FromString.restype = py_object pythonapi.PyBytes_FromString.argtypes = (c_char_p,) @@ -56,6 +58,7 @@ del res self.assertEqual(grc(42), ref42) + @support.refcount_test def test_PyObj_FromPtr(self): s = "abc def ghi jkl" ref = grc(s) Modified: python/branches/py3k-cdecimal/Lib/ctypes/test/test_refcounts.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/ctypes/test/test_refcounts.py (original) +++ python/branches/py3k-cdecimal/Lib/ctypes/test/test_refcounts.py Fri Mar 4 18:50:17 2011 @@ -1,4 +1,5 @@ import unittest +from test import support import ctypes import gc @@ -10,6 +11,7 @@ class RefcountTestCase(unittest.TestCase): + @support.refcount_test def test_1(self): from sys import getrefcount as grc @@ -34,6 +36,7 @@ self.assertEqual(grc(callback), 2) + @support.refcount_test def test_refcount(self): from sys import getrefcount as grc def func(*args): Modified: python/branches/py3k-cdecimal/Lib/ctypes/test/test_stringptr.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/ctypes/test/test_stringptr.py (original) +++ python/branches/py3k-cdecimal/Lib/ctypes/test/test_stringptr.py Fri Mar 4 18:50:17 2011 @@ -1,4 +1,5 @@ import unittest +from test import support from ctypes import * import _ctypes_test @@ -7,6 +8,7 @@ class StringPtrTestCase(unittest.TestCase): + @support.refcount_test def test__POINTER_c_char(self): class X(Structure): _fields_ = [("str", POINTER(c_char))] Modified: python/branches/py3k-cdecimal/Lib/decimal.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/decimal.py (original) +++ python/branches/py3k-cdecimal/Lib/decimal.py Fri Mar 4 18:50:17 2011 @@ -6245,5 +6245,5 @@ if __name__ == '__main__': - import doctest, sys - doctest.testmod(sys.modules[__name__]) + import doctest, decimal + doctest.testmod(decimal) Modified: python/branches/py3k-cdecimal/Lib/distutils/__init__.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/distutils/__init__.py (original) +++ python/branches/py3k-cdecimal/Lib/distutils/__init__.py Fri Mar 4 18:50:17 2011 @@ -15,5 +15,5 @@ # Updated automatically by the Python release process. # #--start constants-- -__version__ = "3.2b2" +__version__ = "3.3a0" #--end constants-- Modified: python/branches/py3k-cdecimal/Lib/distutils/command/bdist_wininst.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/distutils/command/bdist_wininst.py (original) +++ python/branches/py3k-cdecimal/Lib/distutils/command/bdist_wininst.py Fri Mar 4 18:50:17 2011 @@ -263,11 +263,11 @@ cfgdata = cfgdata + b"\0" if self.pre_install_script: # We need to normalize newlines, so we open in text mode and - # convert back to bytes. "latin1" simply avoids any possible + # convert back to bytes. "latin-1" simply avoids any possible # failures. with open(self.pre_install_script, "r", - encoding="latin1") as script: - script_data = script.read().encode("latin1") + encoding="latin-1") as script: + script_data = script.read().encode("latin-1") cfgdata = cfgdata + script_data + b"\n\0" else: # empty pre-install script Modified: python/branches/py3k-cdecimal/Lib/doctest.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/doctest.py (original) +++ python/branches/py3k-cdecimal/Lib/doctest.py Fri Mar 4 18:50:17 2011 @@ -1373,6 +1373,7 @@ # Note that the interactive output will go to *our* # save_stdout, even if that's not the real sys.stdout; this # allows us to write test cases for the set_trace behavior. + save_trace = sys.gettrace() save_set_trace = pdb.set_trace self.debugger = _OutputRedirectingPdb(save_stdout) self.debugger.reset() @@ -1392,6 +1393,7 @@ finally: sys.stdout = save_stdout pdb.set_trace = save_set_trace + sys.settrace(save_trace) linecache.getlines = self.save_linecache_getlines sys.displayhook = save_displayhook if clear_globs: Modified: python/branches/py3k-cdecimal/Lib/email/__init__.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/email/__init__.py (original) +++ python/branches/py3k-cdecimal/Lib/email/__init__.py Fri Mar 4 18:50:17 2011 @@ -59,5 +59,5 @@ Optional _class and strict are passed to the Parser constructor. """ - from email.parser import Parser + from email.parser import BytesParser return BytesParser(*args, **kws).parse(fp) Modified: python/branches/py3k-cdecimal/Lib/email/generator.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/email/generator.py (original) +++ python/branches/py3k-cdecimal/Lib/email/generator.py Fri Mar 4 18:50:17 2011 @@ -377,6 +377,8 @@ def _handle_text(self, msg): # If the string has surrogates the original source was bytes, so # just write it back out. + if msg._payload is None: + return if _has_surrogates(msg._payload): self.write(msg._payload) else: Modified: python/branches/py3k-cdecimal/Lib/email/test/test_email.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/email/test/test_email.py (original) +++ python/branches/py3k-cdecimal/Lib/email/test/test_email.py Fri Mar 4 18:50:17 2011 @@ -2989,6 +2989,13 @@ email.generator.BytesGenerator(out).flatten(msg) self.assertEqual(out.getvalue(), self.non_latin_bin_msg) + def test_bytes_generator_handles_None_body(self): + #Issue 11019 + msg = email.message.Message() + out = BytesIO() + email.generator.BytesGenerator(out).flatten(msg) + self.assertEqual(out.getvalue(), b"\n") + non_latin_bin_msg_as7bit_wrapped = textwrap.dedent("""\ From: foo at bar.com To: =?unknown-8bit?q?b=C3=A1z?= Modified: python/branches/py3k-cdecimal/Lib/ftplib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/ftplib.py (original) +++ python/branches/py3k-cdecimal/Lib/ftplib.py Fri Mar 4 18:50:17 2011 @@ -100,14 +100,15 @@ file = None welcome = None passiveserver = 1 - encoding = "latin1" + encoding = "latin-1" # Initialization method (called by class instantiation). # Initialize host to localhost, port to standard ftp port # Optional arguments are host (for connect()), # and user, passwd, acct (for login()) def __init__(self, host='', user='', passwd='', acct='', - timeout=_GLOBAL_DEFAULT_TIMEOUT): + timeout=_GLOBAL_DEFAULT_TIMEOUT, source_address=None): + self.source_address = source_address self.timeout = timeout if host: self.connect(host) @@ -128,10 +129,12 @@ if self.sock is not None: self.close() - def connect(self, host='', port=0, timeout=-999): + def connect(self, host='', port=0, timeout=-999, source_address=None): '''Connect to host. Arguments are: - host: hostname to connect to (string, default previous host) - port: port to connect to (integer, default previous port) + - source_address: a 2-tuple (host, port) for the socket to bind + to as its source address before connecting. ''' if host != '': self.host = host @@ -139,7 +142,10 @@ self.port = port if timeout != -999: self.timeout = timeout - self.sock = socket.create_connection((self.host, self.port), self.timeout) + if source_address is not None: + self.source_address = source_address + self.sock = socket.create_connection((self.host, self.port), self.timeout, + source_address=self.source_address) self.af = self.sock.family self.file = self.sock.makefile('r', encoding=self.encoding) self.welcome = self.getresp() @@ -334,7 +340,8 @@ size = None if self.passiveserver: host, port = self.makepasv() - conn = socket.create_connection((host, port), self.timeout) + conn = socket.create_connection((host, port), self.timeout, + source_address=self.source_address) if rest is not None: self.sendcmd("REST %s" % rest) resp = self.sendcmd(cmd) @@ -589,11 +596,11 @@ def close(self): '''Close the connection without assuming anything about it.''' - if self.file: + if self.file is not None: self.file.close() + if self.sock is not None: self.sock.close() - self.file = self.sock = None - + self.file = self.sock = None try: import ssl @@ -637,7 +644,7 @@ def __init__(self, host='', user='', passwd='', acct='', keyfile=None, certfile=None, context=None, - timeout=_GLOBAL_DEFAULT_TIMEOUT): + timeout=_GLOBAL_DEFAULT_TIMEOUT, source_address=None): if context is not None and keyfile is not None: raise ValueError("context and keyfile arguments are mutually " "exclusive") @@ -648,7 +655,7 @@ self.certfile = certfile self.context = context self._prot_p = False - FTP.__init__(self, host, user, passwd, acct, timeout) + FTP.__init__(self, host, user, passwd, acct, timeout, source_address) def login(self, user='', passwd='', acct='', secure=True): if secure and not isinstance(self.sock, ssl.SSLSocket): Modified: python/branches/py3k-cdecimal/Lib/functools.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/functools.py (original) +++ python/branches/py3k-cdecimal/Lib/functools.py Fri Mar 4 18:50:17 2011 @@ -141,7 +141,7 @@ hits = misses = 0 kwd_mark = object() # separates positional and keyword args - lock = Lock() + lock = Lock() # needed because ordereddicts aren't threadsafe if maxsize is None: cache = dict() # simple cache without ordering or size limit Modified: python/branches/py3k-cdecimal/Lib/hashlib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/hashlib.py (original) +++ python/branches/py3k-cdecimal/Lib/hashlib.py Fri Mar 4 18:50:17 2011 @@ -56,8 +56,8 @@ # always available algorithm is added. __always_supported = ('md5', 'sha1', 'sha224', 'sha256', 'sha384', 'sha512') -algorithms_guaranteed = __always_supported -algorithms_available = frozenset(__always_supported) +algorithms_guaranteed = set(__always_supported) +algorithms_available = set(__always_supported) __all__ = __always_supported + ('new', 'algorithms_guaranteed', 'algorithms_available') Modified: python/branches/py3k-cdecimal/Lib/http/client.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/http/client.py (original) +++ python/branches/py3k-cdecimal/Lib/http/client.py Fri Mar 4 18:50:17 2011 @@ -653,6 +653,7 @@ self._method = None self._tunnel_host = None self._tunnel_port = None + self._tunnel_headers = {} self._set_hostport(host, port) @@ -691,15 +692,16 @@ def _tunnel(self): self._set_hostport(self._tunnel_host, self._tunnel_port) - connect_str = "CONNECT %s:%d HTTP/1.0\r\n" %(self.host, self.port) + connect_str = "CONNECT %s:%d HTTP/1.0\r\n" % (self.host, self.port) connect_bytes = connect_str.encode("ascii") self.send(connect_bytes) - for header, value in self._tunnel_headers.iteritems(): + for header, value in self._tunnel_headers.items(): header_str = "%s: %s\r\n" % (header, value) - header_bytes = header_str.encode("ascii") + header_bytes = header_str.encode("latin-1") self.send(header_bytes) + self.send(b'\r\n') - response = self.response_class(self.sock, method = self._method) + response = self.response_class(self.sock, method=self._method) (version, code, message) = response._read_status() if code != 200: @@ -935,7 +937,7 @@ values = list(values) for i, one_value in enumerate(values): if hasattr(one_value, 'encode'): - values[i] = one_value.encode('ascii') + values[i] = one_value.encode('latin-1') elif isinstance(one_value, int): values[i] = str(one_value).encode('ascii') value = b'\r\n\t'.join(values) Modified: python/branches/py3k-cdecimal/Lib/http/server.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/http/server.py (original) +++ python/branches/py3k-cdecimal/Lib/http/server.py Fri Mar 4 18:50:17 2011 @@ -448,7 +448,7 @@ message = '' if self.request_version != 'HTTP/0.9': self.wfile.write(("%s %d %s\r\n" % - (self.protocol_version, code, message)).encode('ASCII', 'strict')) + (self.protocol_version, code, message)).encode('latin-1', 'strict')) def send_header(self, keyword, value): """Send a MIME header.""" @@ -456,7 +456,7 @@ if not hasattr(self, '_headers_buffer'): self._headers_buffer = [] self._headers_buffer.append( - ("%s: %s\r\n" % (keyword, value)).encode('ASCII', 'strict')) + ("%s: %s\r\n" % (keyword, value)).encode('latin-1', 'strict')) if keyword.lower() == 'connection': if value.lower() == 'close': Modified: python/branches/py3k-cdecimal/Lib/idlelib/EditorWindow.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/idlelib/EditorWindow.py (original) +++ python/branches/py3k-cdecimal/Lib/idlelib/EditorWindow.py Fri Mar 4 18:50:17 2011 @@ -772,7 +772,8 @@ "Load and update the recent files list and menus" rf_list = [] if os.path.exists(self.recent_files_path): - rf_list_file = open(self.recent_files_path,'r') + rf_list_file = open(self.recent_files_path,'r', + encoding='utf_8', errors='replace') try: rf_list = rf_list_file.readlines() finally: @@ -790,7 +791,8 @@ rf_list = [path for path in rf_list if path not in bad_paths] ulchars = "1234567890ABCDEFGHIJK" rf_list = rf_list[0:len(ulchars)] - rf_file = open(self.recent_files_path, 'w') + rf_file = open(self.recent_files_path, 'w', + encoding='utf_8', errors='replace') try: rf_file.writelines(rf_list) finally: @@ -1544,7 +1546,12 @@ def get_accelerator(keydefs, eventname): keylist = keydefs.get(eventname) - if not keylist: + # issue10940: temporary workaround to prevent hang with OS X Cocoa Tk 8.5 + # if not keylist: + if (not keylist) or (macosxSupport.runningAsOSXApp() and eventname in { + "<>", + "<>", + "<>"}): return "" s = keylist[0] s = re.sub(r"-[a-z]\b", lambda m: m.group().upper(), s) Modified: python/branches/py3k-cdecimal/Lib/idlelib/PyShell.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/idlelib/PyShell.py (original) +++ python/branches/py3k-cdecimal/Lib/idlelib/PyShell.py Fri Mar 4 18:50:17 2011 @@ -1417,6 +1417,13 @@ shell.interp.prepend_syspath(script) shell.interp.execfile(script) + # Check for problematic OS X Tk versions and print a warning message + # in the IDLE shell window; this is less intrusive than always opening + # a separate window. + tkversionwarning = macosxSupport.tkVersionWarning(root) + if tkversionwarning: + shell.interp.runcommand(''.join(("print('", tkversionwarning, "')"))) + root.mainloop() root.destroy() Modified: python/branches/py3k-cdecimal/Lib/idlelib/RemoteObjectBrowser.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/idlelib/RemoteObjectBrowser.py (original) +++ python/branches/py3k-cdecimal/Lib/idlelib/RemoteObjectBrowser.py Fri Mar 4 18:50:17 2011 @@ -17,8 +17,8 @@ return value def _GetSubList(self): - list = self.__item._GetSubList() - return list(map(remote_object_tree_item, list)) + sub_list = self.__item._GetSubList() + return list(map(remote_object_tree_item, sub_list)) class StubObjectTreeItem: # Lives in IDLE process @@ -32,5 +32,5 @@ return value def _GetSubList(self): - list = self.sockio.remotecall(self.oid, "_GetSubList", (), {}) - return [StubObjectTreeItem(self.sockio, oid) for oid in list] + sub_list = self.sockio.remotecall(self.oid, "_GetSubList", (), {}) + return [StubObjectTreeItem(self.sockio, oid) for oid in sub_list] Modified: python/branches/py3k-cdecimal/Lib/idlelib/ScriptBinding.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/idlelib/ScriptBinding.py (original) +++ python/branches/py3k-cdecimal/Lib/idlelib/ScriptBinding.py Fri Mar 4 18:50:17 2011 @@ -190,10 +190,10 @@ icon=tkMessageBox.QUESTION, type=tkMessageBox.OKCANCEL, default=tkMessageBox.OK, - parent=self.editwin.text) + master=self.editwin.text) return mb.show() def errorbox(self, title, message): # XXX This should really be a function of EditorWindow... - tkMessageBox.showerror(title, message, parent=self.editwin.text) + tkMessageBox.showerror(title, message, master=self.editwin.text) self.editwin.text.focus_set() Modified: python/branches/py3k-cdecimal/Lib/idlelib/config-keys.def ============================================================================== --- python/branches/py3k-cdecimal/Lib/idlelib/config-keys.def (original) +++ python/branches/py3k-cdecimal/Lib/idlelib/config-keys.def Fri Mar 4 18:50:17 2011 @@ -176,7 +176,7 @@ redo = close-window = restart-shell = -save-window-as-file = +save-window-as-file = close-all-windows = view-restart = tabify-region = @@ -208,7 +208,7 @@ open-module = find-selection = python-context-help = -save-copy-of-window-as-file = +save-copy-of-window-as-file = open-window-from-file = python-docs = Modified: python/branches/py3k-cdecimal/Lib/idlelib/idlever.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/idlelib/idlever.py (original) +++ python/branches/py3k-cdecimal/Lib/idlelib/idlever.py Fri Mar 4 18:50:17 2011 @@ -1 +1 @@ -IDLE_VERSION = "3.2b2" +IDLE_VERSION = "3.3a0" Modified: python/branches/py3k-cdecimal/Lib/idlelib/macosxSupport.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/idlelib/macosxSupport.py (original) +++ python/branches/py3k-cdecimal/Lib/idlelib/macosxSupport.py Fri Mar 4 18:50:17 2011 @@ -34,6 +34,23 @@ 'AppKit' not in root.tk.call('winfo', 'server', '.')) return _carbonaquatk +def tkVersionWarning(root): + """ + Returns a string warning message if the Tk version in use appears to + be one known to cause problems with IDLE. The Apple Cocoa-based Tk 8.5 + that was shipped with Mac OS X 10.6. + """ + + if (runningAsOSXApp() and + ('AppKit' in root.tk.call('winfo', 'server', '.')) and + (root.tk.call('info', 'patchlevel') == '8.5.7') ): + return (r"WARNING: The version of Tcl/Tk (8.5.7) in use may" + r" be unstable.\n" + r"Visit http://www.python.org/download/mac/tcltk/" + r" for current information.") + else: + return False + def addOpenEventSupport(root, flist): """ This ensures that the application will respont to open AppleEvents, which Modified: python/branches/py3k-cdecimal/Lib/imaplib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/imaplib.py (original) +++ python/branches/py3k-cdecimal/Lib/imaplib.py Fri Mar 4 18:50:17 2011 @@ -1308,13 +1308,14 @@ -Mon2num = {'Jan': 1, 'Feb': 2, 'Mar': 3, 'Apr': 4, 'May': 5, 'Jun': 6, - 'Jul': 7, 'Aug': 8, 'Sep': 9, 'Oct': 10, 'Nov': 11, 'Dec': 12} +Mon2num = {b'Jan': 1, b'Feb': 2, b'Mar': 3, b'Apr': 4, b'May': 5, b'Jun': 6, + b'Jul': 7, b'Aug': 8, b'Sep': 9, b'Oct': 10, b'Nov': 11, b'Dec': 12} def Internaldate2tuple(resp): - """Convert IMAP4 INTERNALDATE to UT. + """Parse an IMAP4 INTERNALDATE string. - Returns Python time module tuple. + Return corresponding local time. The return value is a + time.struct_time tuple or None if the string has wrong format. """ mo = InternalDate.match(resp) @@ -1335,7 +1336,7 @@ # INTERNALDATE timezone must be subtracted to get UT zone = (zoneh*60 + zonem)*60 - if zonen == '-': + if zonen == b'-': zone = -zone tt = (year, mon, day, hour, min, sec, -1, -1, -1) @@ -1381,9 +1382,14 @@ def Time2Internaldate(date_time): - """Convert 'date_time' to IMAP4 INTERNALDATE representation. + """Convert date_time to IMAP4 INTERNALDATE representation. - Return string in form: '"DD-Mmm-YYYY HH:MM:SS +HHMM"' + Return string in form: '"DD-Mmm-YYYY HH:MM:SS +HHMM"'. The + date_time argument can be a number (int or float) represening + seconds since epoch (as returned by time.time()), a 9-tuple + representing local time (as returned by time.localtime()), or a + double-quoted string. In the last case, it is assumed to already + be in the correct format. """ if isinstance(date_time, (int, float)): Modified: python/branches/py3k-cdecimal/Lib/importlib/_bootstrap.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/importlib/_bootstrap.py (original) +++ python/branches/py3k-cdecimal/Lib/importlib/_bootstrap.py Fri Mar 4 18:50:17 2011 @@ -345,17 +345,17 @@ class SourceLoader(_LoaderBasics): - def path_mtime(self, path:str) -> int: - """Optional method that returns the modification time for the specified - path. + def path_mtime(self, path): + """Optional method that returns the modification time (an int) for the + specified path, where path is a str. Implementing this method allows the loader to read bytecode files. """ raise NotImplementedError - def set_data(self, path:str, data:bytes) -> None: - """Optional method which writes data to a file path. + def set_data(self, path, data): + """Optional method which writes data (bytes) to a file path (a str). Implementing this method allows for the writing of bytecode files. Modified: python/branches/py3k-cdecimal/Lib/importlib/abc.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/importlib/abc.py (original) +++ python/branches/py3k-cdecimal/Lib/importlib/abc.py Fri Mar 4 18:50:17 2011 @@ -18,8 +18,9 @@ """Abstract base class for import loaders.""" @abc.abstractmethod - def load_module(self, fullname:str) -> types.ModuleType: - """Abstract method which when implemented should load a module.""" + def load_module(self, fullname): + """Abstract method which when implemented should load a module. + The fullname is a str.""" raise NotImplementedError @@ -28,8 +29,11 @@ """Abstract base class for import finders.""" @abc.abstractmethod - def find_module(self, fullname:str, path:[str]=None) -> Loader: - """Abstract method which when implemented should find a module.""" + def find_module(self, fullname, path=None): + """Abstract method which when implemented should find a module. + The fullname is a str and the optional path is a str or None. + Returns a Loader object. + """ raise NotImplementedError Finder.register(machinery.BuiltinImporter) @@ -47,9 +51,9 @@ """ @abc.abstractmethod - def get_data(self, path:str) -> bytes: + def get_data(self, path): """Abstract method which when implemented should return the bytes for - the specified path.""" + the specified path. The path must be a str.""" raise NotImplementedError @@ -63,21 +67,21 @@ """ @abc.abstractmethod - def is_package(self, fullname:str) -> bool: + def is_package(self, fullname): """Abstract method which when implemented should return whether the - module is a package.""" + module is a package. The fullname is a str. Returns a bool.""" raise NotImplementedError @abc.abstractmethod - def get_code(self, fullname:str) -> types.CodeType: + def get_code(self, fullname): """Abstract method which when implemented should return the code object - for the module""" + for the module. The fullname is a str. Returns a types.CodeType.""" raise NotImplementedError @abc.abstractmethod - def get_source(self, fullname:str) -> str: + def get_source(self, fullname): """Abstract method which should return the source code for the - module.""" + module. The fullname is a str. Returns a str.""" raise NotImplementedError InspectLoader.register(machinery.BuiltinImporter) @@ -94,7 +98,7 @@ """ @abc.abstractmethod - def get_filename(self, fullname:str) -> str: + def get_filename(self, fullname): """Abstract method which should return the value that __file__ is to be set to.""" raise NotImplementedError @@ -117,13 +121,15 @@ """ - def path_mtime(self, path:str) -> int: - """Return the modification time for the path.""" + def path_mtime(self, path): + """Return the (int) modification time for the path (str).""" raise NotImplementedError - def set_data(self, path:str, data:bytes) -> None: + def set_data(self, path, data): """Write the bytes to the path (if possible). + Accepts a str path and data as bytes. + Any needed intermediary directories are to be created. If for some reason the file cannot be written because of permissions, fail silently. @@ -170,9 +176,9 @@ raise NotImplementedError @abc.abstractmethod - def source_path(self, fullname:str) -> object: - """Abstract method which when implemented should return the path to the - source code for the module.""" + def source_path(self, fullname): + """Abstract method. Accepts a str module name and returns the path to + the source code for the module.""" raise NotImplementedError def get_filename(self, fullname): @@ -279,20 +285,20 @@ return code_object @abc.abstractmethod - def source_mtime(self, fullname:str) -> int: - """Abstract method which when implemented should return the + def source_mtime(self, fullname): + """Abstract method. Accepts a str filename and returns an int modification time for the source of the module.""" raise NotImplementedError @abc.abstractmethod - def bytecode_path(self, fullname:str) -> object: - """Abstract method which when implemented should return the path to the - bytecode for the module.""" + def bytecode_path(self, fullname): + """Abstract method. Accepts a str filename and returns the str pathname + to the bytecode for the module.""" raise NotImplementedError @abc.abstractmethod - def write_bytecode(self, fullname:str, bytecode:bytes) -> bool: - """Abstract method which when implemented should attempt to write the - bytecode for the module, returning a boolean representing whether the - bytecode was written or not.""" + def write_bytecode(self, fullname, bytecode): + """Abstract method. Accepts a str filename and bytes object + representing the bytecode for the module. Returns a boolean + representing whether the bytecode was written or not.""" raise NotImplementedError Modified: python/branches/py3k-cdecimal/Lib/json/__init__.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/json/__init__.py (original) +++ python/branches/py3k-cdecimal/Lib/json/__init__.py Fri Mar 4 18:50:17 2011 @@ -298,6 +298,8 @@ To use a custom ``JSONDecoder`` subclass, specify it with the ``cls`` kwarg; otherwise ``JSONDecoder`` is used. + The ``encoding`` argument is ignored and deprecated. + """ if (cls is None and object_hook is None and parse_int is None and parse_float is None and Modified: python/branches/py3k-cdecimal/Lib/lib2to3/patcomp.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/lib2to3/patcomp.py (original) +++ python/branches/py3k-cdecimal/Lib/lib2to3/patcomp.py Fri Mar 4 18:50:17 2011 @@ -11,6 +11,7 @@ __author__ = "Guido van Rossum " # Python imports +import io import os # Fairly local imports @@ -32,7 +33,7 @@ def tokenize_wrapper(input): """Tokenizes a string suppressing significant whitespace.""" skip = set((token.NEWLINE, token.INDENT, token.DEDENT)) - tokens = tokenize.generate_tokens(driver.generate_lines(input).__next__) + tokens = tokenize.generate_tokens(io.StringIO(input).readline) for quintuple in tokens: type, value, start, end, line_text = quintuple if type not in skip: Modified: python/branches/py3k-cdecimal/Lib/lib2to3/pgen2/driver.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/lib2to3/pgen2/driver.py (original) +++ python/branches/py3k-cdecimal/Lib/lib2to3/pgen2/driver.py Fri Mar 4 18:50:17 2011 @@ -17,6 +17,7 @@ # Python imports import codecs +import io import os import logging import sys @@ -101,18 +102,10 @@ def parse_string(self, text, debug=False): """Parse a string and return the syntax tree.""" - tokens = tokenize.generate_tokens(generate_lines(text).__next__) + tokens = tokenize.generate_tokens(io.StringIO(text).readline) return self.parse_tokens(tokens, debug) -def generate_lines(text): - """Generator that behaves like readline without using StringIO.""" - for line in text.splitlines(True): - yield line - while True: - yield "" - - def load_grammar(gt="Grammar.txt", gp=None, save=True, force=False, logger=None): """Load the grammar (maybe from a pickle).""" Modified: python/branches/py3k-cdecimal/Lib/lib2to3/tests/test_parser.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/lib2to3/tests/test_parser.py (original) +++ python/branches/py3k-cdecimal/Lib/lib2to3/tests/test_parser.py Fri Mar 4 18:50:17 2011 @@ -18,6 +18,16 @@ # Local imports from lib2to3.pgen2 import tokenize from ..pgen2.parse import ParseError +from lib2to3.pygram import python_symbols as syms + + +class TestDriver(support.TestCase): + + def test_formfeed(self): + s = """print 1\n\x0Cprint 2\n""" + t = driver.parse_string(s) + self.assertEqual(t.children[0].children[0].type, syms.print_stmt) + self.assertEqual(t.children[1].children[0].type, syms.print_stmt) class GrammarTest(support.TestCase): Modified: python/branches/py3k-cdecimal/Lib/logging/__init__.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/logging/__init__.py (original) +++ python/branches/py3k-cdecimal/Lib/logging/__init__.py Fri Mar 4 18:50:17 2011 @@ -360,12 +360,13 @@ default_format = '%(message)s' asctime_format = '%(asctime)s' + asctime_search = '%(asctime)' def __init__(self, fmt): self._fmt = fmt or self.default_format def usesTime(self): - return self._fmt.find(self.asctime_format) >= 0 + return self._fmt.find(self.asctime_search) >= 0 def format(self, record): return self._fmt % record.__dict__ @@ -373,6 +374,7 @@ class StrFormatStyle(PercentStyle): default_format = '{message}' asctime_format = '{asctime}' + asctime_search = '{asctime' def format(self, record): return self._fmt.format(**record.__dict__) @@ -381,6 +383,7 @@ class StringTemplateStyle(PercentStyle): default_format = '${message}' asctime_format = '${asctime}' + asctime_search = '${asctime}' def __init__(self, fmt): self._fmt = fmt or self.default_format Modified: python/branches/py3k-cdecimal/Lib/logging/handlers.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/logging/handlers.py (original) +++ python/branches/py3k-cdecimal/Lib/logging/handlers.py Fri Mar 4 18:50:17 2011 @@ -120,6 +120,7 @@ """ if self.stream: self.stream.close() + self.stream = None if self.backupCount > 0: for i in range(self.backupCount - 1, 0, -1): sfn = "%s.%d" % (self.baseFilename, i) @@ -316,6 +317,7 @@ """ if self.stream: self.stream.close() + self.stream = None # get the time that this sequence started at and make it a TimeTuple t = self.rolloverAt - self.interval if self.utc: @@ -1305,6 +1307,16 @@ except queue.Empty: break + def enqueue_sentinel(self): + """ + This is used to enqueue the sentinel record. + + The base implementation uses put_nowait. You may want to override this + method if you want to use timeouts or work with custom queue + implementations. + """ + self.queue.put_nowait(self._sentinel) + def stop(self): """ Stop the listener. @@ -1314,6 +1326,6 @@ may be some records still left on the queue, which won't be processed. """ self._stop.set() - self.queue.put_nowait(self._sentinel) + self.enqueue_sentinel() self._thread.join() self._thread = None Modified: python/branches/py3k-cdecimal/Lib/mailbox.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/mailbox.py (original) +++ python/branches/py3k-cdecimal/Lib/mailbox.py Fri Mar 4 18:50:17 2011 @@ -15,6 +15,7 @@ import socket import errno import copy +import warnings import email import email.message import email.generator @@ -31,6 +32,8 @@ 'Message', 'MaildirMessage', 'mboxMessage', 'MHMessage', 'BabylMessage', 'MMDFMessage'] +linesep = os.linesep.encode('ascii') + class Mailbox: """A group of messages in a particular place.""" @@ -80,7 +83,14 @@ raise NotImplementedError('Method must be implemented by subclass') def get_string(self, key): - """Return a string representation or raise a KeyError.""" + """Return a string representation or raise a KeyError. + + Uses email.message.Message to create a 7bit clean string + representation of the message.""" + return email.message_from_bytes(self.get_bytes(key)).as_string() + + def get_bytes(self, key): + """Return a byte string representation or raise a KeyError.""" raise NotImplementedError('Method must be implemented by subclass') def get_file(self, key): @@ -186,31 +196,55 @@ """Flush and close the mailbox.""" raise NotImplementedError('Method must be implemented by subclass') + def _string_to_bytes(self, message): + # If a message is not 7bit clean, we refuse to handle it since it + # likely came from reading invalid messages in text mode, and that way + # lies mojibake. + try: + return message.encode('ascii') + except UnicodeError: + raise ValueError("String input must be ASCII-only; " + "use bytes or a Message instead") + def _dump_message(self, message, target, mangle_from_=False): - # This assumes the target file is open in *text* mode with the - # desired encoding and newline setting. + # This assumes the target file is open in binary mode. """Dump message contents to target file.""" if isinstance(message, email.message.Message): - buffer = io.StringIO() - gen = email.generator.Generator(buffer, mangle_from_, 0) + buffer = io.BytesIO() + gen = email.generator.BytesGenerator(buffer, mangle_from_, 0) gen.flatten(message) buffer.seek(0) data = buffer.read() - ##data = data.replace('\n', os.linesep) + data = data.replace(b'\n', linesep) target.write(data) - elif isinstance(message, str): + elif isinstance(message, (str, bytes, io.StringIO)): + if isinstance(message, io.StringIO): + warnings.warn("Use of StringIO input is deprecated, " + "use BytesIO instead", DeprecationWarning, 3) + message = message.getvalue() + if isinstance(message, str): + message = self._string_to_bytes(message) if mangle_from_: - message = message.replace('\nFrom ', '\n>From ') - ##message = message.replace('\n', os.linesep) + message = message.replace(b'\nFrom ', b'\n>From ') + message = message.replace(b'\n', linesep) target.write(message) elif hasattr(message, 'read'): + if hasattr(message, 'buffer'): + warnings.warn("Use of text mode files is deprecated, " + "use a binary mode file instead", DeprecationWarning, 3) + message = message.buffer while True: line = message.readline() + # Universal newline support. + if line.endswith(b'\r\n'): + line = line[:-2] + b'\n' + elif line.endswith(b'\r'): + line = line[:-1] + b'\n' if not line: break - if mangle_from_ and line.startswith('From '): - line = '>From ' + line[5:] - ##line = line.replace('\n', os.linesep) + if mangle_from_ and line.startswith(b'From '): + line = b'>From ' + line[5:] + line = line.replace(b'\n', linesep) target.write(line) else: raise TypeError('Invalid message type: %s' % type(message)) @@ -243,8 +277,11 @@ tmp_file = self._create_tmp() try: self._dump_message(message, tmp_file) - finally: - _sync_close(tmp_file) + except BaseException: + tmp_file.close() + os.remove(tmp_file.name) + raise + _sync_close(tmp_file) if isinstance(message, MaildirMessage): subdir = message.get_subdir() suffix = self.colon + message.get_info() @@ -319,7 +356,7 @@ def get_message(self, key): """Return a Message representation or raise a KeyError.""" subpath = self._lookup(key) - f = open(os.path.join(self._path, subpath), 'r', newline='') + f = open(os.path.join(self._path, subpath), 'rb') try: if self._factory: msg = self._factory(f) @@ -334,17 +371,17 @@ msg.set_date(os.path.getmtime(os.path.join(self._path, subpath))) return msg - def get_string(self, key): - """Return a string representation or raise a KeyError.""" - f = open(os.path.join(self._path, self._lookup(key)), 'r', newline='') + def get_bytes(self, key): + """Return a bytes representation or raise a KeyError.""" + f = open(os.path.join(self._path, self._lookup(key)), 'rb') try: - return f.read() + return f.read().replace(linesep, b'\n') finally: f.close() def get_file(self, key): """Return a file-like representation or raise a KeyError.""" - f = open(os.path.join(self._path, self._lookup(key)), 'r', newline='') + f = open(os.path.join(self._path, self._lookup(key)), 'rb') return _ProxyFile(f) def iterkeys(self): @@ -534,15 +571,15 @@ """Initialize a single-file mailbox.""" Mailbox.__init__(self, path, factory, create) try: - f = open(self._path, 'r+', newline='') + f = open(self._path, 'rb+') except IOError as e: if e.errno == errno.ENOENT: if create: - f = open(self._path, 'w+', newline='') + f = open(self._path, 'wb+') else: raise NoSuchMailboxError(self._path) - elif e.errno == errno.EACCES: - f = open(self._path, 'r', newline='') + elif e.errno in (errno.EACCES, errno.EROFS): + f = open(self._path, 'rb') else: raise self._file = f @@ -690,9 +727,14 @@ def _append_message(self, message): """Append message to mailbox and return (start, stop) offsets.""" self._file.seek(0, 2) - self._pre_message_hook(self._file) - offsets = self._install_message(message) - self._post_message_hook(self._file) + before = self._file.tell() + try: + self._pre_message_hook(self._file) + offsets = self._install_message(message) + self._post_message_hook(self._file) + except BaseException: + self._file.truncate(before) + raise self._file.flush() self._file_length = self._file.tell() # Record current length of mailbox return offsets @@ -708,20 +750,25 @@ """Return a Message representation or raise a KeyError.""" start, stop = self._lookup(key) self._file.seek(start) - from_line = self._file.readline().replace(os.linesep, '') + from_line = self._file.readline().replace(linesep, b'') string = self._file.read(stop - self._file.tell()) - msg = self._message_factory(string.replace(os.linesep, '\n')) - msg.set_from(from_line[5:]) + msg = self._message_factory(string.replace(linesep, b'\n')) + msg.set_from(from_line[5:].decode('ascii')) return msg def get_string(self, key, from_=False): """Return a string representation or raise a KeyError.""" + return email.message_from_bytes( + self.get_bytes(key)).as_string(unixfrom=from_) + + def get_bytes(self, key, from_=False): + """Return a string representation or raise a KeyError.""" start, stop = self._lookup(key) self._file.seek(start) if not from_: self._file.readline() string = self._file.read(stop - self._file.tell()) - return string.replace(os.linesep, '\n') + return string.replace(linesep, b'\n') def get_file(self, key, from_=False): """Return a file-like representation or raise a KeyError.""" @@ -734,22 +781,27 @@ def _install_message(self, message): """Format a message and blindly write to self._file.""" from_line = None - if isinstance(message, str) and message.startswith('From '): - newline = message.find('\n') + if isinstance(message, str): + message = self._string_to_bytes(message) + if isinstance(message, bytes) and message.startswith(b'From '): + newline = message.find(b'\n') if newline != -1: from_line = message[:newline] message = message[newline + 1:] else: from_line = message - message = '' + message = b'' elif isinstance(message, _mboxMMDFMessage): - from_line = 'From ' + message.get_from() + author = message.get_from().encode('ascii') + from_line = b'From ' + author elif isinstance(message, email.message.Message): from_line = message.get_unixfrom() # May be None. + if from_line is not None: + from_line = from_line.encode('ascii') if from_line is None: - from_line = 'From MAILER-DAEMON %s' % time.asctime(time.gmtime()) + from_line = b'From MAILER-DAEMON ' + time.asctime(time.gmtime()).encode() start = self._file.tell() - self._file.write(from_line + os.linesep) + self._file.write(from_line + linesep) self._dump_message(message, self._file, self._mangle_from_) stop = self._file.tell() return (start, stop) @@ -768,7 +820,7 @@ def _pre_message_hook(self, f): """Called before writing each message to file f.""" if f.tell() != 0: - f.write(os.linesep) + f.write(linesep) def _generate_toc(self): """Generate key-to-(start, stop) table of contents.""" @@ -777,9 +829,9 @@ while True: line_pos = self._file.tell() line = self._file.readline() - if line.startswith('From '): + if line.startswith(b'From '): if len(stops) < len(starts): - stops.append(line_pos - len(os.linesep)) + stops.append(line_pos - len(linesep)) starts.append(line_pos) elif not line: stops.append(line_pos) @@ -799,11 +851,11 @@ def _pre_message_hook(self, f): """Called before writing each message to file f.""" - f.write('\001\001\001\001' + os.linesep) + f.write(b'\001\001\001\001' + linesep) def _post_message_hook(self, f): """Called after writing each message to file f.""" - f.write(os.linesep + '\001\001\001\001' + os.linesep) + f.write(linesep + b'\001\001\001\001' + linesep) def _generate_toc(self): """Generate key-to-(start, stop) table of contents.""" @@ -814,14 +866,14 @@ line_pos = next_pos line = self._file.readline() next_pos = self._file.tell() - if line.startswith('\001\001\001\001' + os.linesep): + if line.startswith(b'\001\001\001\001' + linesep): starts.append(next_pos) while True: line_pos = next_pos line = self._file.readline() next_pos = self._file.tell() - if line == '\001\001\001\001' + os.linesep: - stops.append(line_pos - len(os.linesep)) + if line == b'\001\001\001\001' + linesep: + stops.append(line_pos - len(linesep)) break elif not line: stops.append(line_pos) @@ -858,18 +910,29 @@ new_key = max(keys) + 1 new_path = os.path.join(self._path, str(new_key)) f = _create_carefully(new_path) + closed = False try: if self._locked: _lock_file(f) try: - self._dump_message(message, f) + try: + self._dump_message(message, f) + except BaseException: + # Unlock and close so it can be deleted on Windows + if self._locked: + _unlock_file(f) + _sync_close(f) + closed = True + os.remove(new_path) + raise if isinstance(message, MHMessage): self._dump_sequences(message, new_key) finally: if self._locked: _unlock_file(f) finally: - _sync_close(f) + if not closed: + _sync_close(f) return new_key def remove(self, key): @@ -890,7 +953,7 @@ """Replace the keyed message; raise KeyError if it doesn't exist.""" path = os.path.join(self._path, str(key)) try: - f = open(path, 'r+', newline='') + f = open(path, 'rb+') except IOError as e: if e.errno == errno.ENOENT: raise KeyError('No message with key: %s' % key) @@ -914,9 +977,9 @@ """Return a Message representation or raise a KeyError.""" try: if self._locked: - f = open(os.path.join(self._path, str(key)), 'r+', newline='') + f = open(os.path.join(self._path, str(key)), 'rb+') else: - f = open(os.path.join(self._path, str(key)), 'r', newline='') + f = open(os.path.join(self._path, str(key)), 'rb') except IOError as e: if e.errno == errno.ENOENT: raise KeyError('No message with key: %s' % key) @@ -937,13 +1000,13 @@ msg.add_sequence(name) return msg - def get_string(self, key): - """Return a string representation or raise a KeyError.""" + def get_bytes(self, key): + """Return a bytes representation or raise a KeyError.""" try: if self._locked: - f = open(os.path.join(self._path, str(key)), 'r+', newline='') + f = open(os.path.join(self._path, str(key)), 'rb+') else: - f = open(os.path.join(self._path, str(key)), 'r', newline='') + f = open(os.path.join(self._path, str(key)), 'rb') except IOError as e: if e.errno == errno.ENOENT: raise KeyError('No message with key: %s' % key) @@ -953,7 +1016,7 @@ if self._locked: _lock_file(f) try: - return f.read() + return f.read().replace(linesep, b'\n') finally: if self._locked: _unlock_file(f) @@ -963,7 +1026,7 @@ def get_file(self, key): """Return a file-like representation or raise a KeyError.""" try: - f = open(os.path.join(self._path, str(key)), 'r', newline='') + f = open(os.path.join(self._path, str(key)), 'rb') except IOError as e: if e.errno == errno.ENOENT: raise KeyError('No message with key: %s' % key) @@ -1041,7 +1104,7 @@ def get_sequences(self): """Return a name-to-key-list dictionary to define each sequence.""" results = {} - f = open(os.path.join(self._path, '.mh_sequences'), 'r', newline='') + f = open(os.path.join(self._path, '.mh_sequences'), 'r') try: all_keys = set(self.keys()) for line in f: @@ -1067,13 +1130,13 @@ def set_sequences(self, sequences): """Set sequences using the given name-to-key-list dictionary.""" - f = open(os.path.join(self._path, '.mh_sequences'), 'r+', newline='') + f = open(os.path.join(self._path, '.mh_sequences'), 'r+') try: os.close(os.open(f.name, os.O_WRONLY | os.O_TRUNC)) for name, keys in sequences.items(): if len(keys) == 0: continue - f.write('%s:' % name) + f.write(name + ':') prev = None completing = False for key in sorted(set(keys)): @@ -1168,50 +1231,55 @@ """Return a Message representation or raise a KeyError.""" start, stop = self._lookup(key) self._file.seek(start) - self._file.readline() # Skip '1,' line specifying labels. - original_headers = io.StringIO() + self._file.readline() # Skip b'1,' line specifying labels. + original_headers = io.BytesIO() while True: line = self._file.readline() - if line == '*** EOOH ***' + os.linesep or not line: + if line == b'*** EOOH ***' + linesep or not line: break - original_headers.write(line.replace(os.linesep, '\n')) - visible_headers = io.StringIO() + original_headers.write(line.replace(linesep, b'\n')) + visible_headers = io.BytesIO() while True: line = self._file.readline() - if line == os.linesep or not line: + if line == linesep or not line: break - visible_headers.write(line.replace(os.linesep, '\n')) - body = self._file.read(stop - self._file.tell()).replace(os.linesep, - '\n') + visible_headers.write(line.replace(linesep, b'\n')) + # Read up to the stop, or to the end + n = stop - self._file.tell() + assert n >= 0 + body = self._file.read(n) + body = body.replace(linesep, b'\n') msg = BabylMessage(original_headers.getvalue() + body) msg.set_visible(visible_headers.getvalue()) if key in self._labels: msg.set_labels(self._labels[key]) return msg - def get_string(self, key): + def get_bytes(self, key): """Return a string representation or raise a KeyError.""" start, stop = self._lookup(key) self._file.seek(start) - self._file.readline() # Skip '1,' line specifying labels. - original_headers = io.StringIO() + self._file.readline() # Skip b'1,' line specifying labels. + original_headers = io.BytesIO() while True: line = self._file.readline() - if line == '*** EOOH ***' + os.linesep or not line: + if line == b'*** EOOH ***' + linesep or not line: break - original_headers.write(line.replace(os.linesep, '\n')) + original_headers.write(line.replace(linesep, b'\n')) while True: line = self._file.readline() - if line == os.linesep or not line: + if line == linesep or not line: break - return original_headers.getvalue() + \ - self._file.read(stop - self._file.tell()).replace(os.linesep, - '\n') + headers = original_headers.getvalue() + n = stop - self._file.tell() + assert n >= 0 + data = self._file.read(n) + data = data.replace(linesep, b'\n') + return headers + data def get_file(self, key): """Return a file-like representation or raise a KeyError.""" - return io.StringIO(self.get_string(key).replace('\n', - os.linesep)) + return io.BytesIO(self.get_bytes(key).replace(b'\n', linesep)) def get_labels(self): """Return a list of user-defined labels in the mailbox.""" @@ -1232,19 +1300,19 @@ line_pos = next_pos line = self._file.readline() next_pos = self._file.tell() - if line == '\037\014' + os.linesep: + if line == b'\037\014' + linesep: if len(stops) < len(starts): - stops.append(line_pos - len(os.linesep)) + stops.append(line_pos - len(linesep)) starts.append(next_pos) labels = [label.strip() for label - in self._file.readline()[1:].split(',') + in self._file.readline()[1:].split(b',') if label.strip()] label_lists.append(labels) - elif line == '\037' or line == '\037' + os.linesep: + elif line == b'\037' or line == b'\037' + linesep: if len(stops) < len(starts): - stops.append(line_pos - len(os.linesep)) + stops.append(line_pos - len(linesep)) elif not line: - stops.append(line_pos - len(os.linesep)) + stops.append(line_pos - len(linesep)) break self._toc = dict(enumerate(zip(starts, stops))) self._labels = dict(enumerate(label_lists)) @@ -1254,17 +1322,21 @@ def _pre_mailbox_hook(self, f): """Called before writing the mailbox to file f.""" - f.write('BABYL OPTIONS:%sVersion: 5%sLabels:%s%s\037' % - (os.linesep, os.linesep, ','.join(self.get_labels()), - os.linesep)) + babyl = b'BABYL OPTIONS:' + linesep + babyl += b'Version: 5' + linesep + labels = self.get_labels() + labels = (label.encode() for label in labels) + babyl += b'Labels:' + b','.join(labels) + linesep + babyl += b'\037' + f.write(babyl) def _pre_message_hook(self, f): """Called before writing each message to file f.""" - f.write('\014' + os.linesep) + f.write(b'\014' + linesep) def _post_message_hook(self, f): """Called after writing each message to file f.""" - f.write(os.linesep + '\037') + f.write(linesep + b'\037') def _install_message(self, message): """Write message contents and return (start, stop).""" @@ -1277,68 +1349,80 @@ special_labels.append(label) else: labels.append(label) - self._file.write('1') + self._file.write(b'1') for label in special_labels: - self._file.write(', ' + label) - self._file.write(',,') + self._file.write(b', ' + label.encode()) + self._file.write(b',,') for label in labels: - self._file.write(' ' + label + ',') - self._file.write(os.linesep) + self._file.write(b' ' + label.encode() + b',') + self._file.write(linesep) else: - self._file.write('1,,' + os.linesep) + self._file.write(b'1,,' + linesep) if isinstance(message, email.message.Message): - orig_buffer = io.StringIO() - orig_generator = email.generator.Generator(orig_buffer, False, 0) + orig_buffer = io.BytesIO() + orig_generator = email.generator.BytesGenerator(orig_buffer, False, 0) orig_generator.flatten(message) orig_buffer.seek(0) while True: line = orig_buffer.readline() - self._file.write(line.replace('\n', os.linesep)) - if line == '\n' or not line: + self._file.write(line.replace(b'\n', linesep)) + if line == b'\n' or not line: break - self._file.write('*** EOOH ***' + os.linesep) + self._file.write(b'*** EOOH ***' + linesep) if isinstance(message, BabylMessage): - vis_buffer = io.StringIO() - vis_generator = email.generator.Generator(vis_buffer, False, 0) + vis_buffer = io.BytesIO() + vis_generator = email.generator.BytesGenerator(vis_buffer, False, 0) vis_generator.flatten(message.get_visible()) while True: line = vis_buffer.readline() - self._file.write(line.replace('\n', os.linesep)) - if line == '\n' or not line: + self._file.write(line.replace(b'\n', linesep)) + if line == b'\n' or not line: break else: orig_buffer.seek(0) while True: line = orig_buffer.readline() - self._file.write(line.replace('\n', os.linesep)) - if line == '\n' or not line: + self._file.write(line.replace(b'\n', linesep)) + if line == b'\n' or not line: break while True: buffer = orig_buffer.read(4096) # Buffer size is arbitrary. if not buffer: break - self._file.write(buffer.replace('\n', os.linesep)) - elif isinstance(message, str): - body_start = message.find('\n\n') + 2 + self._file.write(buffer.replace(b'\n', linesep)) + elif isinstance(message, (bytes, str, io.StringIO)): + if isinstance(message, io.StringIO): + warnings.warn("Use of StringIO input is deprecated, " + "use BytesIO instead", DeprecationWarning, 3) + message = message.getvalue() + if isinstance(message, str): + message = self._string_to_bytes(message) + body_start = message.find(b'\n\n') + 2 if body_start - 2 != -1: - self._file.write(message[:body_start].replace('\n', - os.linesep)) - self._file.write('*** EOOH ***' + os.linesep) - self._file.write(message[:body_start].replace('\n', - os.linesep)) - self._file.write(message[body_start:].replace('\n', - os.linesep)) + self._file.write(message[:body_start].replace(b'\n', linesep)) + self._file.write(b'*** EOOH ***' + linesep) + self._file.write(message[:body_start].replace(b'\n', linesep)) + self._file.write(message[body_start:].replace(b'\n', linesep)) else: - self._file.write('*** EOOH ***' + os.linesep + os.linesep) - self._file.write(message.replace('\n', os.linesep)) + self._file.write(b'*** EOOH ***' + linesep + linesep) + self._file.write(message.replace(b'\n', linesep)) elif hasattr(message, 'readline'): + if hasattr(message, 'buffer'): + warnings.warn("Use of text mode files is deprecated, " + "use a binary mode file instead", DeprecationWarning, 3) + message = message.buffer original_pos = message.tell() first_pass = True while True: line = message.readline() - self._file.write(line.replace('\n', os.linesep)) - if line == '\n' or not line: - self._file.write('*** EOOH ***' + os.linesep) + # Universal newline support. + if line.endswith(b'\r\n'): + line = line[:-2] + b'\n' + elif line.endswith(b'\r'): + line = line[:-1] + b'\n' + self._file.write(line.replace(b'\n', linesep)) + if line == b'\n' or not line: + self._file.write(b'*** EOOH ***' + linesep) if first_pass: first_pass = False message.seek(original_pos) @@ -1348,7 +1432,7 @@ buffer = message.read(4096) # Buffer size is arbitrary. if not buffer: break - self._file.write(buffer.replace('\n', os.linesep)) + self._file.write(buffer.replace(b'\n', linesep)) else: raise TypeError('Invalid message type: %s' % type(message)) stop = self._file.tell() @@ -1364,10 +1448,14 @@ self._become_message(copy.deepcopy(message)) if isinstance(message, Message): message._explain_to(self) + elif isinstance(message, bytes): + self._become_message(email.message_from_bytes(message)) elif isinstance(message, str): self._become_message(email.message_from_string(message)) - elif hasattr(message, "read"): + elif isinstance(message, io.TextIOWrapper): self._become_message(email.message_from_file(message)) + elif hasattr(message, "read"): + self._become_message(email.message_from_binary_file(message)) elif message is None: email.message.Message.__init__(self) else: @@ -1631,7 +1719,7 @@ if not sequence in self._sequences: self._sequences.append(sequence) else: - raise TypeError('sequence must be a string: %s' % type(sequence)) + raise TypeError('sequence type must be str: %s' % type(sequence)) def remove_sequence(self, sequence): """Remove sequence from the list of sequences including the message.""" @@ -1791,6 +1879,10 @@ """Read bytes.""" return self._read(size, self._file.read) + def read1(self, size=None): + """Read bytes.""" + return self._read(size, self._file.read1) + def readline(self, size=None): """Read a line.""" return self._read(size, self._file.readline) @@ -1847,6 +1939,22 @@ def __exit__(self, *exc): self.close() + def readable(self): + return self._file.readable() + + def writable(self): + return self._file.writable() + + def seekable(self): + return self._file.seekable() + + def flush(self): + return self._file.flush() + + @property + def closed(self): + return self._file.closed + class _PartialFile(_ProxyFile): """A read-only wrapper of part of a file.""" @@ -1875,7 +1983,7 @@ """Read size bytes using read_method, honoring start and stop.""" remaining = self._stop - self._pos if remaining <= 0: - return '' + return b'' if size is None or size < 0 or size > remaining: size = remaining return _ProxyFile._read(self, size, read_method) @@ -1894,7 +2002,7 @@ try: fcntl.lockf(f, fcntl.LOCK_EX | fcntl.LOCK_NB) except IOError as e: - if e.errno in (errno.EAGAIN, errno.EACCES): + if e.errno in (errno.EAGAIN, errno.EACCES, errno.EROFS): raise ExternalClashError('lockf: lock unavailable: %s' % f.name) else: @@ -1904,7 +2012,7 @@ pre_lock = _create_temporary(f.name + '.lock') pre_lock.close() except IOError as e: - if e.errno == errno.EACCES: + if e.errno in (errno.EACCES, errno.EROFS): return # Without write access, just skip dotlocking. else: raise @@ -1942,7 +2050,7 @@ """Create a file if it doesn't exist and open for reading and writing.""" fd = os.open(path, os.O_CREAT | os.O_EXCL | os.O_RDWR, 0o666) try: - return open(path, 'r+', newline='') + return open(path, 'rb+') finally: os.close(fd) Modified: python/branches/py3k-cdecimal/Lib/multiprocessing/connection.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/multiprocessing/connection.py (original) +++ python/branches/py3k-cdecimal/Lib/multiprocessing/connection.py Fri Mar 4 18:50:17 2011 @@ -434,10 +434,10 @@ return self._loads(s) def _xml_dumps(obj): - return xmlrpclib.dumps((obj,), None, None, None, 1).encode('utf8') + return xmlrpclib.dumps((obj,), None, None, None, 1).encode('utf-8') def _xml_loads(s): - (obj,), method = xmlrpclib.loads(s.decode('utf8')) + (obj,), method = xmlrpclib.loads(s.decode('utf-8')) return obj class XmlListener(Listener): Modified: python/branches/py3k-cdecimal/Lib/multiprocessing/forking.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/multiprocessing/forking.py (original) +++ python/branches/py3k-cdecimal/Lib/multiprocessing/forking.py Fri Mar 4 18:50:17 2011 @@ -459,12 +459,20 @@ process.ORIGINAL_DIR = data['orig_dir'] if 'main_path' in data: + # XXX (ncoghlan): The following code makes several bogus + # assumptions regarding the relationship between __file__ + # and a module's real name. See PEP 302 and issue #10845 main_path = data['main_path'] main_name = os.path.splitext(os.path.basename(main_path))[0] if main_name == '__init__': main_name = os.path.basename(os.path.dirname(main_path)) - if main_name != 'ipython': + if main_name == '__main__': + main_module = sys.modules['__main__'] + main_module.__file__ = main_path + elif main_name != 'ipython': + # Main modules not actually called __main__.py may + # contain additional code that should still be executed import imp if main_path is None: Modified: python/branches/py3k-cdecimal/Lib/multiprocessing/process.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/multiprocessing/process.py (original) +++ python/branches/py3k-cdecimal/Lib/multiprocessing/process.py Fri Mar 4 18:50:17 2011 @@ -91,12 +91,16 @@ ''' _Popen = None - def __init__(self, group=None, target=None, name=None, args=(), kwargs={}): + def __init__(self, group=None, target=None, name=None, args=(), kwargs={}, + *, daemon=None): assert group is None, 'group argument must be None for now' count = next(_current_process._counter) self._identity = _current_process._identity + (count,) self._authkey = _current_process._authkey - self._daemonic = _current_process._daemonic + if daemon is not None: + self._daemonic = daemon + else: + self._daemonic = _current_process._daemonic self._tempdir = _current_process._tempdir self._parent_pid = os.getpid() self._popen = None Modified: python/branches/py3k-cdecimal/Lib/nntplib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/nntplib.py (original) +++ python/branches/py3k-cdecimal/Lib/nntplib.py Fri Mar 4 18:50:17 2011 @@ -346,6 +346,20 @@ # Log in and encryption setup order is left to subclasses. self.authenticated = False + def __enter__(self): + return self + + def __exit__(self, *args): + is_connected = lambda: hasattr(self, "file") + if is_connected(): + try: + self.quit() + except (socket.error, EOFError): + pass + finally: + if is_connected(): + self._close() + def getwelcome(self): """Get the welcome message from the server (this is read and squirreled away by __init__()). Modified: python/branches/py3k-cdecimal/Lib/numbers.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/numbers.py (original) +++ python/branches/py3k-cdecimal/Lib/numbers.py Fri Mar 4 18:50:17 2011 @@ -189,7 +189,7 @@ raise NotImplementedError @abstractmethod - def __round__(self, ndigits:"Integral"=None): + def __round__(self, ndigits=None): """Rounds self to ndigits decimal places, defaulting to 0. If ndigits is omitted or None, returns an Integral, otherwise Modified: python/branches/py3k-cdecimal/Lib/os.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/os.py (original) +++ python/branches/py3k-cdecimal/Lib/os.py Fri Mar 4 18:50:17 2011 @@ -434,7 +434,7 @@ # Change environ to automatically call putenv(), unsetenv if they exist. -from _abcoll import MutableMapping # Can't use collections (bootstrap) +from collections.abc import MutableMapping class _Environ(MutableMapping): def __init__(self, data, encodekey, decodekey, encodevalue, decodevalue, putenv, unsetenv): Modified: python/branches/py3k-cdecimal/Lib/platform.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/platform.py (original) +++ python/branches/py3k-cdecimal/Lib/platform.py Fri Mar 4 18:50:17 2011 @@ -357,92 +357,11 @@ supported_dists=supported_dists, full_distribution_name=0) -class _popen: - - """ Fairly portable (alternative) popen implementation. - - This is mostly needed in case os.popen() is not available, or - doesn't work as advertised, e.g. in Win9X GUI programs like - PythonWin or IDLE. - - Writing to the pipe is currently not supported. - - """ - tmpfile = '' - pipe = None - bufsize = None - mode = 'r' - - def __init__(self,cmd,mode='r',bufsize=None): - - if mode != 'r': - raise ValueError('popen()-emulation only supports read mode') - import tempfile - self.tmpfile = tmpfile = tempfile.mktemp() - os.system(cmd + ' > %s' % tmpfile) - self.pipe = open(tmpfile,'rb') - self.bufsize = bufsize - self.mode = mode - - def read(self): - - return self.pipe.read() - - def readlines(self): - - if self.bufsize is not None: - return self.pipe.readlines() - - def close(self, - - remove=os.unlink,error=os.error): - - if self.pipe: - rc = self.pipe.close() - else: - rc = 255 - if self.tmpfile: - try: - remove(self.tmpfile) - except error: - pass - return rc - - # Alias - __del__ = close - def popen(cmd, mode='r', bufsize=None): """ Portable popen() interface. """ - # Find a working popen implementation preferring win32pipe.popen - # over os.popen over _popen - popen = None - if os.environ.get('OS','') == 'Windows_NT': - # On NT win32pipe should work; on Win9x it hangs due to bugs - # in the MS C lib (see MS KnowledgeBase article Q150956) - try: - import win32pipe - except ImportError: - pass - else: - popen = win32pipe.popen - if popen is None: - if hasattr(os,'popen'): - popen = os.popen - # Check whether it works... it doesn't in GUI programs - # on Windows platforms - if sys.platform == 'win32': # XXX Others too ? - try: - popen('') - except os.error: - popen = _popen - else: - popen = _popen - if bufsize is None: - return popen(cmd,mode) - else: - return popen(cmd,mode,bufsize) + return os.popen(cmd, mode, bufsize) def _norm_version(version, build=''): Modified: python/branches/py3k-cdecimal/Lib/poplib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/poplib.py (original) +++ python/branches/py3k-cdecimal/Lib/poplib.py Fri Mar 4 18:50:17 2011 @@ -250,15 +250,18 @@ def quit(self): """Signoff: commit changes on server, unlock mailbox, close connection.""" - try: - resp = self._shortcmd('QUIT') - except error_proto as val: - resp = val - self.file.close() - self.sock.close() - del self.file, self.sock + resp = self._shortcmd('QUIT') + self.close() return resp + def close(self): + """Close the connection without assuming anything about it.""" + if self.file is not None: + self.file.close() + if self.sock is not None: + self.sock.close() + self.file = self.sock = None + #__del__ = quit Modified: python/branches/py3k-cdecimal/Lib/pyclbr.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/pyclbr.py (original) +++ python/branches/py3k-cdecimal/Lib/pyclbr.py Fri Mar 4 18:50:17 2011 @@ -325,7 +325,7 @@ else: path = [] dict = readmodule_ex(mod, path) - objs = dict.values() + objs = list(dict.values()) objs.sort(key=lambda a: getattr(a, 'lineno', 0)) for obj in objs: if isinstance(obj, Class): Modified: python/branches/py3k-cdecimal/Lib/pydoc.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/pydoc.py (original) +++ python/branches/py3k-cdecimal/Lib/pydoc.py Fri Mar 4 18:50:17 2011 @@ -70,7 +70,7 @@ import warnings from collections import deque from reprlib import Repr -from traceback import extract_tb +from traceback import extract_tb, format_exception_only # --------------------------------------------------------- common routines @@ -1882,7 +1882,9 @@ def _gettopic(self, topic, more_xrefs=''): """Return unbuffered tuple of (topic, xrefs). - If an error occurs, topic is the error message, and xrefs is ''. + If an error occurs here, the exception is caught and displayed by + the url handler. + This function duplicates the showtopic method but returns its result directly so it can be formatted for display in an html page. """ @@ -1895,14 +1897,11 @@ ''' , '') target = self.topics.get(topic, self.keywords.get(topic)) if not target: - return 'no documentation found for %r' % topic, '' + raise ValueError('could not find topic') if isinstance(target, str): return self._gettopic(target, more_xrefs) label, xrefs = target - try: - doc = pydoc_data.topics.topics[label] - except KeyError: - return 'no documentation found for %r' % topic, '' + doc = pydoc_data.topics.topics[label] if more_xrefs: xrefs = (xrefs or '') + ' ' + more_xrefs return doc, xrefs @@ -2387,7 +2386,7 @@ else: content_type = 'text/html' self.send_response(200) - self.send_header('Content-Type', '%s;charset=UTF-8' % content_type) + self.send_header('Content-Type', '%s; charset=UTF-8' % content_type) self.end_headers() self.wfile.write(self.urlhandler( self.path, content_type).encode('utf-8')) @@ -2479,10 +2478,10 @@ css_path) return '''\ -Python: %s +Pydoc: %s -%s%s -''' % (title, css_link, contents) +%s%s
%s
+''' % (title, css_link, html_navbar(), contents) def filelink(self, url, path): return '%s' % (url, path) @@ -2491,12 +2490,12 @@ html = _HTMLDoc() def html_navbar(): - version = "%s [%s, %s]" % (platform.python_version(), - platform.python_build()[0], - platform.python_compiler()) + version = html.escape("%s [%s, %s]" % (platform.python_version(), + platform.python_build()[0], + platform.python_compiler())) return """
- Python %s
%s

+ Python %s
%s
@@ -2505,19 +2504,17 @@ : Keywords
-
+ -     -
-
+
  +
-
 
- """ % (version, platform.platform(terse=True)) + """ % (version, html.escape(platform.platform(terse=True))) def html_index(): """Module Index page.""" @@ -2589,7 +2586,7 @@ """Index of topic texts available.""" def bltinlink(name): - return '%s' % (name, name) + return '%s' % (name, name) heading = html.heading( 'INDEX', @@ -2609,7 +2606,7 @@ names = sorted(Helper.keywords.keys()) def bltinlink(name): - return '%s' % (name, name) + return '%s' % (name, name) contents = html.multicolumn(names, bltinlink) contents = heading + html.bigsection( @@ -2628,79 +2625,91 @@ heading = html.heading( '%s' % title, '#ffffff', '#7799ee') - contents = '
%s
' % contents + contents = '
%s
' % html.markup(contents) contents = html.bigsection(topic , '#ffffff','#ee77aa', contents) - xrefs = sorted(xrefs.split()) + if xrefs: + xrefs = sorted(xrefs.split()) - def bltinlink(name): - return '%s' % (name, name) + def bltinlink(name): + return '%s' % (name, name) - xrefs = html.multicolumn(xrefs, bltinlink) - xrefs = html.section('Related help topics: ', - '#ffffff', '#ee77aa', xrefs) + xrefs = html.multicolumn(xrefs, bltinlink) + xrefs = html.section('Related help topics: ', + '#ffffff', '#ee77aa', xrefs) return ('%s %s' % (title, topic), ''.join((heading, contents, xrefs))) - def html_error(url): + def html_getobj(url): + obj = locate(url, forceload=1) + if obj is None and url != 'None': + raise ValueError('could not find object') + title = describe(obj) + content = html.document(obj, url) + return title, content + + def html_error(url, exc): heading = html.heading( 'Error', - '#ffffff', '#ee0000') - return heading + url + '#ffffff', '#7799ee') + contents = '
'.join(html.escape(line) for line in + format_exception_only(type(exc), exc)) + contents = heading + html.bigsection(url, '#ffffff', '#bb0000', + contents) + return "Error - %s" % url, contents def get_html_page(url): """Generate an HTML page for url.""" + complete_url = url if url.endswith('.html'): url = url[:-5] - if url.startswith('/'): - url = url[1:] - if url.startswith("get?key="): - url = url[8:] - title = url - contents = '' - if url in ("", ".", "index"): - title, contents = html_index() - elif url == "topics": - title, contents = html_topics() - elif url == "keywords": - title, contents = html_keywords() - elif url.startswith("search?key="): - title, contents = html_search(url[11:]) - elif url.startswith("getfile?key="): - url = url[12:] - try: - title, contents = html_getfile(url) - except IOError: - contents = html_error('could not read file %r' % url) - title = 'Read Error' - else: - obj = None - try: - obj = locate(url, forceload=1) - except ErrorDuringImport as value: - contents = html.escape(str(value)) - if obj: - title = describe(obj) - contents = html.document(obj, url) - elif url in Helper.keywords or url in Helper.topics: - title, contents = html_topicpage(url) + try: + if url in ("", "index"): + title, content = html_index() + elif url == "topics": + title, content = html_topics() + elif url == "keywords": + title, content = html_keywords() + elif '=' in url: + op, _, url = url.partition('=') + if op == "search?key": + title, content = html_search(url) + elif op == "getfile?key": + title, content = html_getfile(url) + elif op == "topic?key": + # try topics first, then objects. + try: + title, content = html_topicpage(url) + except ValueError: + title, content = html_getobj(url) + elif op == "get?key": + # try objects first, then topics. + if url in ("", "index"): + title, content = html_index() + else: + try: + title, content = html_getobj(url) + except ValueError: + title, content = html_topicpage(url) + else: + raise ValueError('bad pydoc url') else: - contents = html_error( - 'no Python documentation found for %r' % url) - title = 'Error' - return html.page(title, html_navbar() + contents) + title, content = html_getobj(url) + except Exception as exc: + # Catch any errors and display them in an error page. + title, content = html_error(complete_url, exc) + return html.page(title, content) if url.startswith('/'): url = url[1:] if content_type == 'text/css': path_here = os.path.dirname(os.path.realpath(__file__)) - try: - with open(os.path.join(path_here, url)) as fp: - return ''.join(fp.readlines()) - except IOError: - return 'Error: can not open css file %r' % url + css_path = os.path.join(path_here, url) + with open(css_path) as fp: + return ''.join(fp.readlines()) elif content_type == 'text/html': return get_html_page(url) - return 'Error: unknown content type %r' % content_type + # Errors outside the url handler are caught by the server. + raise TypeError('unknown content type %r for url %s' % (content_type, url)) def browse(port=0, *, open_browser=True): Modified: python/branches/py3k-cdecimal/Lib/pydoc_data/topics.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/pydoc_data/topics.py (original) +++ python/branches/py3k-cdecimal/Lib/pydoc_data/topics.py Fri Mar 4 18:50:17 2011 @@ -1,4 +1,4 @@ -# Autogenerated by Sphinx on Sun Dec 19 11:18:44 2010 +# Autogenerated by Sphinx on Sun Feb 20 10:16:17 2011 topics = {'assert': '\nThe ``assert`` statement\n************************\n\nAssert statements are a convenient way to insert debugging assertions\ninto a program:\n\n assert_stmt ::= "assert" expression ["," expression]\n\nThe simple form, ``assert expression``, is equivalent to\n\n if __debug__:\n if not expression: raise AssertionError\n\nThe extended form, ``assert expression1, expression2``, is equivalent\nto\n\n if __debug__:\n if not expression1: raise AssertionError(expression2)\n\nThese equivalences assume that ``__debug__`` and ``AssertionError``\nrefer to the built-in variables with those names. In the current\nimplementation, the built-in variable ``__debug__`` is ``True`` under\nnormal circumstances, ``False`` when optimization is requested\n(command line option -O). The current code generator emits no code\nfor an assert statement when optimization is requested at compile\ntime. Note that it is unnecessary to include the source code for the\nexpression that failed in the error message; it will be displayed as\npart of the stack trace.\n\nAssignments to ``__debug__`` are illegal. The value for the built-in\nvariable is determined when the interpreter starts.\n', 'assignment': '\nAssignment statements\n*********************\n\nAssignment statements are used to (re)bind names to values and to\nmodify attributes or items of mutable objects:\n\n assignment_stmt ::= (target_list "=")+ (expression_list | yield_expression)\n target_list ::= target ("," target)* [","]\n target ::= identifier\n | "(" target_list ")"\n | "[" target_list "]"\n | attributeref\n | subscription\n | slicing\n | "*" target\n\n(See section *Primaries* for the syntax definitions for the last three\nsymbols.)\n\nAn assignment statement evaluates the expression list (remember that\nthis can be a single expression or a comma-separated list, the latter\nyielding a tuple) and assigns the single resulting object to each of\nthe target lists, from left to right.\n\nAssignment is defined recursively depending on the form of the target\n(list). When a target is part of a mutable object (an attribute\nreference, subscription or slicing), the mutable object must\nultimately perform the assignment and decide about its validity, and\nmay raise an exception if the assignment is unacceptable. The rules\nobserved by various types and the exceptions raised are given with the\ndefinition of the object types (see section *The standard type\nhierarchy*).\n\nAssignment of an object to a target list, optionally enclosed in\nparentheses or square brackets, is recursively defined as follows.\n\n* If the target list is a single target: The object is assigned to\n that target.\n\n* If the target list is a comma-separated list of targets: The object\n must be an iterable with the same number of items as there are\n targets in the target list, and the items are assigned, from left to\n right, to the corresponding targets. (This rule is relaxed as of\n Python 1.5; in earlier versions, the object had to be a tuple.\n Since strings are sequences, an assignment like ``a, b = "xy"`` is\n now legal as long as the string has the right length.)\n\n * If the target list contains one target prefixed with an asterisk,\n called a "starred" target: The object must be a sequence with at\n least as many items as there are targets in the target list, minus\n one. The first items of the sequence are assigned, from left to\n right, to the targets before the starred target. The final items\n of the sequence are assigned to the targets after the starred\n target. A list of the remaining items in the sequence is then\n assigned to the starred target (the list can be empty).\n\n * Else: The object must be a sequence with the same number of items\n as there are targets in the target list, and the items are\n assigned, from left to right, to the corresponding targets.\n\nAssignment of an object to a single target is recursively defined as\nfollows.\n\n* If the target is an identifier (name):\n\n * If the name does not occur in a ``global`` or ``nonlocal``\n statement in the current code block: the name is bound to the\n object in the current local namespace.\n\n * Otherwise: the name is bound to the object in the global namespace\n or the outer namespace determined by ``nonlocal``, respectively.\n\n The name is rebound if it was already bound. This may cause the\n reference count for the object previously bound to the name to reach\n zero, causing the object to be deallocated and its destructor (if it\n has one) to be called.\n\n* If the target is a target list enclosed in parentheses or in square\n brackets: The object must be an iterable with the same number of\n items as there are targets in the target list, and its items are\n assigned, from left to right, to the corresponding targets.\n\n* If the target is an attribute reference: The primary expression in\n the reference is evaluated. It should yield an object with\n assignable attributes; if this is not the case, ``TypeError`` is\n raised. That object is then asked to assign the assigned object to\n the given attribute; if it cannot perform the assignment, it raises\n an exception (usually but not necessarily ``AttributeError``).\n\n Note: If the object is a class instance and the attribute reference\n occurs on both sides of the assignment operator, the RHS expression,\n ``a.x`` can access either an instance attribute or (if no instance\n attribute exists) a class attribute. The LHS target ``a.x`` is\n always set as an instance attribute, creating it if necessary.\n Thus, the two occurrences of ``a.x`` do not necessarily refer to the\n same attribute: if the RHS expression refers to a class attribute,\n the LHS creates a new instance attribute as the target of the\n assignment:\n\n class Cls:\n x = 3 # class variable\n inst = Cls()\n inst.x = inst.x + 1 # writes inst.x as 4 leaving Cls.x as 3\n\n This description does not necessarily apply to descriptor\n attributes, such as properties created with ``property()``.\n\n* If the target is a subscription: The primary expression in the\n reference is evaluated. It should yield either a mutable sequence\n object (such as a list) or a mapping object (such as a dictionary).\n Next, the subscript expression is evaluated.\n\n If the primary is a mutable sequence object (such as a list), the\n subscript must yield an integer. If it is negative, the sequence\'s\n length is added to it. The resulting value must be a nonnegative\n integer less than the sequence\'s length, and the sequence is asked\n to assign the assigned object to its item with that index. If the\n index is out of range, ``IndexError`` is raised (assignment to a\n subscripted sequence cannot add new items to a list).\n\n If the primary is a mapping object (such as a dictionary), the\n subscript must have a type compatible with the mapping\'s key type,\n and the mapping is then asked to create a key/datum pair which maps\n the subscript to the assigned object. This can either replace an\n existing key/value pair with the same key value, or insert a new\n key/value pair (if no key with the same value existed).\n\n For user-defined objects, the ``__setitem__()`` method is called\n with appropriate arguments.\n\n* If the target is a slicing: The primary expression in the reference\n is evaluated. It should yield a mutable sequence object (such as a\n list). The assigned object should be a sequence object of the same\n type. Next, the lower and upper bound expressions are evaluated,\n insofar they are present; defaults are zero and the sequence\'s\n length. The bounds should evaluate to integers. If either bound is\n negative, the sequence\'s length is added to it. The resulting\n bounds are clipped to lie between zero and the sequence\'s length,\n inclusive. Finally, the sequence object is asked to replace the\n slice with the items of the assigned sequence. The length of the\n slice may be different from the length of the assigned sequence,\n thus changing the length of the target sequence, if the object\n allows it.\n\n**CPython implementation detail:** In the current implementation, the\nsyntax for targets is taken to be the same as for expressions, and\ninvalid syntax is rejected during the code generation phase, causing\nless detailed error messages.\n\nWARNING: Although the definition of assignment implies that overlaps\nbetween the left-hand side and the right-hand side are \'safe\' (for\nexample ``a, b = b, a`` swaps two variables), overlaps *within* the\ncollection of assigned-to variables are not safe! For instance, the\nfollowing program prints ``[0, 2]``:\n\n x = [0, 1]\n i = 0\n i, x[i] = 1, 2\n print(x)\n\nSee also:\n\n **PEP 3132** - Extended Iterable Unpacking\n The specification for the ``*target`` feature.\n\n\nAugmented assignment statements\n===============================\n\nAugmented assignment is the combination, in a single statement, of a\nbinary operation and an assignment statement:\n\n augmented_assignment_stmt ::= augtarget augop (expression_list | yield_expression)\n augtarget ::= identifier | attributeref | subscription | slicing\n augop ::= "+=" | "-=" | "*=" | "/=" | "//=" | "%=" | "**="\n | ">>=" | "<<=" | "&=" | "^=" | "|="\n\n(See section *Primaries* for the syntax definitions for the last three\nsymbols.)\n\nAn augmented assignment evaluates the target (which, unlike normal\nassignment statements, cannot be an unpacking) and the expression\nlist, performs the binary operation specific to the type of assignment\non the two operands, and assigns the result to the original target.\nThe target is only evaluated once.\n\nAn augmented assignment expression like ``x += 1`` can be rewritten as\n``x = x + 1`` to achieve a similar, but not exactly equal effect. In\nthe augmented version, ``x`` is only evaluated once. Also, when\npossible, the actual operation is performed *in-place*, meaning that\nrather than creating a new object and assigning that to the target,\nthe old object is modified instead.\n\nWith the exception of assigning to tuples and multiple targets in a\nsingle statement, the assignment done by augmented assignment\nstatements is handled the same way as normal assignments. Similarly,\nwith the exception of the possible *in-place* behavior, the binary\noperation performed by augmented assignment is the same as the normal\nbinary operations.\n\nFor targets which are attribute references, the same *caveat about\nclass and instance attributes* applies as for regular assignments.\n', 'atom-identifiers': '\nIdentifiers (Names)\n*******************\n\nAn identifier occurring as an atom is a name. See section\n*Identifiers and keywords* for lexical definition and section *Naming\nand binding* for documentation of naming and binding.\n\nWhen the name is bound to an object, evaluation of the atom yields\nthat object. When a name is not bound, an attempt to evaluate it\nraises a ``NameError`` exception.\n\n**Private name mangling:** When an identifier that textually occurs in\na class definition begins with two or more underscore characters and\ndoes not end in two or more underscores, it is considered a *private\nname* of that class. Private names are transformed to a longer form\nbefore code is generated for them. The transformation inserts the\nclass name in front of the name, with leading underscores removed, and\na single underscore inserted in front of the class name. For example,\nthe identifier ``__spam`` occurring in a class named ``Ham`` will be\ntransformed to ``_Ham__spam``. This transformation is independent of\nthe syntactical context in which the identifier is used. If the\ntransformed name is extremely long (longer than 255 characters),\nimplementation defined truncation may happen. If the class name\nconsists only of underscores, no transformation is done.\n', @@ -18,26 +18,26 @@ 'calls': '\nCalls\n*****\n\nA call calls a callable object (e.g., a function) with a possibly\nempty series of arguments:\n\n call ::= primary "(" [argument_list [","] | comprehension] ")"\n argument_list ::= positional_arguments ["," keyword_arguments]\n ["," "*" expression] ["," keyword_arguments]\n ["," "**" expression]\n | keyword_arguments ["," "*" expression]\n ["," keyword_arguments] ["," "**" expression]\n | "*" expression ["," keyword_arguments] ["," "**" expression]\n | "**" expression\n positional_arguments ::= expression ("," expression)*\n keyword_arguments ::= keyword_item ("," keyword_item)*\n keyword_item ::= identifier "=" expression\n\nA trailing comma may be present after the positional and keyword\narguments but does not affect the semantics.\n\nThe primary must evaluate to a callable object (user-defined\nfunctions, built-in functions, methods of built-in objects, class\nobjects, methods of class instances, and all objects having a\n``__call__()`` method are callable). All argument expressions are\nevaluated before the call is attempted. Please refer to section\n*Function definitions* for the syntax of formal parameter lists.\n\nIf keyword arguments are present, they are first converted to\npositional arguments, as follows. First, a list of unfilled slots is\ncreated for the formal parameters. If there are N positional\narguments, they are placed in the first N slots. Next, for each\nkeyword argument, the identifier is used to determine the\ncorresponding slot (if the identifier is the same as the first formal\nparameter name, the first slot is used, and so on). If the slot is\nalready filled, a ``TypeError`` exception is raised. Otherwise, the\nvalue of the argument is placed in the slot, filling it (even if the\nexpression is ``None``, it fills the slot). When all arguments have\nbeen processed, the slots that are still unfilled are filled with the\ncorresponding default value from the function definition. (Default\nvalues are calculated, once, when the function is defined; thus, a\nmutable object such as a list or dictionary used as default value will\nbe shared by all calls that don\'t specify an argument value for the\ncorresponding slot; this should usually be avoided.) If there are any\nunfilled slots for which no default value is specified, a\n``TypeError`` exception is raised. Otherwise, the list of filled\nslots is used as the argument list for the call.\n\n**CPython implementation detail:** An implementation may provide\nbuilt-in functions whose positional parameters do not have names, even\nif they are \'named\' for the purpose of documentation, and which\ntherefore cannot be supplied by keyword. In CPython, this is the case\nfor functions implemented in C that use ``PyArg_ParseTuple()`` to\nparse their arguments.\n\nIf there are more positional arguments than there are formal parameter\nslots, a ``TypeError`` exception is raised, unless a formal parameter\nusing the syntax ``*identifier`` is present; in this case, that formal\nparameter receives a tuple containing the excess positional arguments\n(or an empty tuple if there were no excess positional arguments).\n\nIf any keyword argument does not correspond to a formal parameter\nname, a ``TypeError`` exception is raised, unless a formal parameter\nusing the syntax ``**identifier`` is present; in this case, that\nformal parameter receives a dictionary containing the excess keyword\narguments (using the keywords as keys and the argument values as\ncorresponding values), or a (new) empty dictionary if there were no\nexcess keyword arguments.\n\nIf the syntax ``*expression`` appears in the function call,\n``expression`` must evaluate to a sequence. Elements from this\nsequence are treated as if they were additional positional arguments;\nif there are positional arguments *x1*,..., *xN*, and ``expression``\nevaluates to a sequence *y1*, ..., *yM*, this is equivalent to a call\nwith M+N positional arguments *x1*, ..., *xN*, *y1*, ..., *yM*.\n\nA consequence of this is that although the ``*expression`` syntax may\nappear *after* some keyword arguments, it is processed *before* the\nkeyword arguments (and the ``**expression`` argument, if any -- see\nbelow). So:\n\n >>> def f(a, b):\n ... print(a, b)\n ...\n >>> f(b=1, *(2,))\n 2 1\n >>> f(a=1, *(2,))\n Traceback (most recent call last):\n File "", line 1, in ?\n TypeError: f() got multiple values for keyword argument \'a\'\n >>> f(1, *(2,))\n 1 2\n\nIt is unusual for both keyword arguments and the ``*expression``\nsyntax to be used in the same call, so in practice this confusion does\nnot arise.\n\nIf the syntax ``**expression`` appears in the function call,\n``expression`` must evaluate to a mapping, the contents of which are\ntreated as additional keyword arguments. In the case of a keyword\nappearing in both ``expression`` and as an explicit keyword argument,\na ``TypeError`` exception is raised.\n\nFormal parameters using the syntax ``*identifier`` or ``**identifier``\ncannot be used as positional argument slots or as keyword argument\nnames.\n\nA call always returns some value, possibly ``None``, unless it raises\nan exception. How this value is computed depends on the type of the\ncallable object.\n\nIf it is---\n\na user-defined function:\n The code block for the function is executed, passing it the\n argument list. The first thing the code block will do is bind the\n formal parameters to the arguments; this is described in section\n *Function definitions*. When the code block executes a ``return``\n statement, this specifies the return value of the function call.\n\na built-in function or method:\n The result is up to the interpreter; see *Built-in Functions* for\n the descriptions of built-in functions and methods.\n\na class object:\n A new instance of that class is returned.\n\na class instance method:\n The corresponding user-defined function is called, with an argument\n list that is one longer than the argument list of the call: the\n instance becomes the first argument.\n\na class instance:\n The class must define a ``__call__()`` method; the effect is then\n the same as if that method was called.\n', 'class': '\nClass definitions\n*****************\n\nA class definition defines a class object (see section *The standard\ntype hierarchy*):\n\n classdef ::= [decorators] "class" classname [inheritance] ":" suite\n inheritance ::= "(" [argument_list [","] | comprehension] ")"\n classname ::= identifier\n\nA class definition is an executable statement. The inheritance list\nusually gives a list of base classes (see *Customizing class creation*\nfor more advanced uses), so each item in the list should evaluate to a\nclass object which allows subclassing. Classes without an inheritance\nlist inherit, by default, from the base class ``object``; hence,\n\n class Foo:\n pass\n\nis equivalent to\n\n class Foo(object):\n pass\n\nThe class\'s suite is then executed in a new execution frame (see\n*Naming and binding*), using a newly created local namespace and the\noriginal global namespace. (Usually, the suite contains mostly\nfunction definitions.) When the class\'s suite finishes execution, its\nexecution frame is discarded but its local namespace is saved. [4] A\nclass object is then created using the inheritance list for the base\nclasses and the saved local namespace for the attribute dictionary.\nThe class name is bound to this class object in the original local\nnamespace.\n\nClass creation can be customized heavily using *metaclasses*.\n\nClasses can also be decorated: just like when decorating functions,\n\n @f1(arg)\n @f2\n class Foo: pass\n\nis equivalent to\n\n class Foo: pass\n Foo = f1(arg)(f2(Foo))\n\nThe evaluation rules for the decorator expressions are the same as for\nfunction decorators. The result must be a class object, which is then\nbound to the class name.\n\n**Programmer\'s note:** Variables defined in the class definition are\nclass attributes; they are shared by instances. Instance attributes\ncan be set in a method with ``self.name = value``. Both class and\ninstance attributes are accessible through the notation\n"``self.name``", and an instance attribute hides a class attribute\nwith the same name when accessed in this way. Class attributes can be\nused as defaults for instance attributes, but using mutable values\nthere can lead to unexpected results. *Descriptors* can be used to\ncreate instance variables with different implementation details.\n\nSee also:\n\n **PEP 3116** - Metaclasses in Python 3 **PEP 3129** - Class\n Decorators\n\n-[ Footnotes ]-\n\n[1] The exception is propagated to the invocation stack only if there\n is no ``finally`` clause that negates the exception.\n\n[2] Currently, control "flows off the end" except in the case of an\n exception or the execution of a ``return``, ``continue``, or\n ``break`` statement.\n\n[3] A string literal appearing as the first statement in the function\n body is transformed into the function\'s ``__doc__`` attribute and\n therefore the function\'s *docstring*.\n\n[4] A string literal appearing as the first statement in the class\n body is transformed into the namespace\'s ``__doc__`` item and\n therefore the class\'s *docstring*.\n', 'comparisons': '\nComparisons\n***********\n\nUnlike C, all comparison operations in Python have the same priority,\nwhich is lower than that of any arithmetic, shifting or bitwise\noperation. Also unlike C, expressions like ``a < b < c`` have the\ninterpretation that is conventional in mathematics:\n\n comparison ::= or_expr ( comp_operator or_expr )*\n comp_operator ::= "<" | ">" | "==" | ">=" | "<=" | "!="\n | "is" ["not"] | ["not"] "in"\n\nComparisons yield boolean values: ``True`` or ``False``.\n\nComparisons can be chained arbitrarily, e.g., ``x < y <= z`` is\nequivalent to ``x < y and y <= z``, except that ``y`` is evaluated\nonly once (but in both cases ``z`` is not evaluated at all when ``x <\ny`` is found to be false).\n\nFormally, if *a*, *b*, *c*, ..., *y*, *z* are expressions and *op1*,\n*op2*, ..., *opN* are comparison operators, then ``a op1 b op2 c ... y\nopN z`` is equivalent to ``a op1 b and b op2 c and ... y opN z``,\nexcept that each expression is evaluated at most once.\n\nNote that ``a op1 b op2 c`` doesn\'t imply any kind of comparison\nbetween *a* and *c*, so that, e.g., ``x < y > z`` is perfectly legal\n(though perhaps not pretty).\n\nThe operators ``<``, ``>``, ``==``, ``>=``, ``<=``, and ``!=`` compare\nthe values of two objects. The objects need not have the same type.\nIf both are numbers, they are converted to a common type. Otherwise,\nthe ``==`` and ``!=`` operators *always* consider objects of different\ntypes to be unequal, while the ``<``, ``>``, ``>=`` and ``<=``\noperators raise a ``TypeError`` when comparing objects of different\ntypes that do not implement these operators for the given pair of\ntypes. You can control comparison behavior of objects of non-built-in\ntypes by defining rich comparison methods like ``__gt__()``, described\nin section *Basic customization*.\n\nComparison of objects of the same type depends on the type:\n\n* Numbers are compared arithmetically.\n\n* The values ``float(\'NaN\')`` and ``Decimal(\'NaN\')`` are special. The\n are identical to themselves, ``x is x`` but are not equal to\n themselves, ``x != x``. Additionally, comparing any value to a\n not-a-number value will return ``False``. For example, both ``3 <\n float(\'NaN\')`` and ``float(\'NaN\') < 3`` will return ``False``.\n\n* Bytes objects are compared lexicographically using the numeric\n values of their elements.\n\n* Strings are compared lexicographically using the numeric equivalents\n (the result of the built-in function ``ord()``) of their characters.\n [3] String and bytes object can\'t be compared!\n\n* Tuples and lists are compared lexicographically using comparison of\n corresponding elements. This means that to compare equal, each\n element must compare equal and the two sequences must be of the same\n type and have the same length.\n\n If not equal, the sequences are ordered the same as their first\n differing elements. For example, ``[1,2,x] <= [1,2,y]`` has the\n same value as ``x <= y``. If the corresponding element does not\n exist, the shorter sequence is ordered first (for example, ``[1,2] <\n [1,2,3]``).\n\n* Mappings (dictionaries) compare equal if and only if they have the\n same ``(key, value)`` pairs. Order comparisons ``(\'<\', \'<=\', \'>=\',\n \'>\')`` raise ``TypeError``.\n\n* Sets and frozensets define comparison operators to mean subset and\n superset tests. Those relations do not define total orderings (the\n two sets ``{1,2}`` and {2,3} are not equal, nor subsets of one\n another, nor supersets of one another). Accordingly, sets are not\n appropriate arguments for functions which depend on total ordering.\n For example, ``min()``, ``max()``, and ``sorted()`` produce\n undefined results given a list of sets as inputs.\n\n* Most other objects of built-in types compare unequal unless they are\n the same object; the choice whether one object is considered smaller\n or larger than another one is made arbitrarily but consistently\n within one execution of a program.\n\nComparison of objects of the differing types depends on whether either\nof the types provide explicit support for the comparison. Most\nnumeric types can be compared with one another, but comparisons of\n``float`` and ``Decimal`` are not supported to avoid the inevitable\nconfusion arising from representation issues such as ``float(\'1.1\')``\nbeing inexactly represented and therefore not exactly equal to\n``Decimal(\'1.1\')`` which is. When cross-type comparison is not\nsupported, the comparison method returns ``NotImplemented``. This can\ncreate the illusion of non-transitivity between supported cross-type\ncomparisons and unsupported comparisons. For example, ``Decimal(2) ==\n2`` and ``2 == float(2)`` but ``Decimal(2) != float(2)``.\n\nThe operators ``in`` and ``not in`` test for membership. ``x in s``\nevaluates to true if *x* is a member of *s*, and false otherwise. ``x\nnot in s`` returns the negation of ``x in s``. All built-in sequences\nand set types support this as well as dictionary, for which ``in``\ntests whether a the dictionary has a given key. For container types\nsuch as list, tuple, set, frozenset, dict, or collections.deque, the\nexpression ``x in y`` is equivalent to ``any(x is e or x == e for e in\ny)``.\n\nFor the string and bytes types, ``x in y`` is true if and only if *x*\nis a substring of *y*. An equivalent test is ``y.find(x) != -1``.\nEmpty strings are always considered to be a substring of any other\nstring, so ``"" in "abc"`` will return ``True``.\n\nFor user-defined classes which define the ``__contains__()`` method,\n``x in y`` is true if and only if ``y.__contains__(x)`` is true.\n\nFor user-defined classes which do not define ``__contains__()`` but do\ndefine ``__iter__()``, ``x in y`` is true if some value ``z`` with ``x\n== z`` is produced while iterating over ``y``. If an exception is\nraised during the iteration, it is as if ``in`` raised that exception.\n\nLastly, the old-style iteration protocol is tried: if a class defines\n``__getitem__()``, ``x in y`` is true if and only if there is a non-\nnegative integer index *i* such that ``x == y[i]``, and all lower\ninteger indices do not raise ``IndexError`` exception. (If any other\nexception is raised, it is as if ``in`` raised that exception).\n\nThe operator ``not in`` is defined to have the inverse true value of\n``in``.\n\nThe operators ``is`` and ``is not`` test for object identity: ``x is\ny`` is true if and only if *x* and *y* are the same object. ``x is\nnot y`` yields the inverse truth value. [4]\n', - 'compound': '\nCompound statements\n*******************\n\nCompound statements contain (groups of) other statements; they affect\nor control the execution of those other statements in some way. In\ngeneral, compound statements span multiple lines, although in simple\nincarnations a whole compound statement may be contained in one line.\n\nThe ``if``, ``while`` and ``for`` statements implement traditional\ncontrol flow constructs. ``try`` specifies exception handlers and/or\ncleanup code for a group of statements, while the ``with`` statement\nallows the execution of initialization and finalization code around a\nblock of code. Function and class definitions are also syntactically\ncompound statements.\n\nCompound statements consist of one or more \'clauses.\' A clause\nconsists of a header and a \'suite.\' The clause headers of a\nparticular compound statement are all at the same indentation level.\nEach clause header begins with a uniquely identifying keyword and ends\nwith a colon. A suite is a group of statements controlled by a\nclause. A suite can be one or more semicolon-separated simple\nstatements on the same line as the header, following the header\'s\ncolon, or it can be one or more indented statements on subsequent\nlines. Only the latter form of suite can contain nested compound\nstatements; the following is illegal, mostly because it wouldn\'t be\nclear to which ``if`` clause a following ``else`` clause would belong:\n\n if test1: if test2: print(x)\n\nAlso note that the semicolon binds tighter than the colon in this\ncontext, so that in the following example, either all or none of the\n``print()`` calls are executed:\n\n if x < y < z: print(x); print(y); print(z)\n\nSummarizing:\n\n compound_stmt ::= if_stmt\n | while_stmt\n | for_stmt\n | try_stmt\n | with_stmt\n | funcdef\n | classdef\n suite ::= stmt_list NEWLINE | NEWLINE INDENT statement+ DEDENT\n statement ::= stmt_list NEWLINE | compound_stmt\n stmt_list ::= simple_stmt (";" simple_stmt)* [";"]\n\nNote that statements always end in a ``NEWLINE`` possibly followed by\na ``DEDENT``. Also note that optional continuation clauses always\nbegin with a keyword that cannot start a statement, thus there are no\nambiguities (the \'dangling ``else``\' problem is solved in Python by\nrequiring nested ``if`` statements to be indented).\n\nThe formatting of the grammar rules in the following sections places\neach clause on a separate line for clarity.\n\n\nThe ``if`` statement\n====================\n\nThe ``if`` statement is used for conditional execution:\n\n if_stmt ::= "if" expression ":" suite\n ( "elif" expression ":" suite )*\n ["else" ":" suite]\n\nIt selects exactly one of the suites by evaluating the expressions one\nby one until one is found to be true (see section *Boolean operations*\nfor the definition of true and false); then that suite is executed\n(and no other part of the ``if`` statement is executed or evaluated).\nIf all expressions are false, the suite of the ``else`` clause, if\npresent, is executed.\n\n\nThe ``while`` statement\n=======================\n\nThe ``while`` statement is used for repeated execution as long as an\nexpression is true:\n\n while_stmt ::= "while" expression ":" suite\n ["else" ":" suite]\n\nThis repeatedly tests the expression and, if it is true, executes the\nfirst suite; if the expression is false (which may be the first time\nit is tested) the suite of the ``else`` clause, if present, is\nexecuted and the loop terminates.\n\nA ``break`` statement executed in the first suite terminates the loop\nwithout executing the ``else`` clause\'s suite. A ``continue``\nstatement executed in the first suite skips the rest of the suite and\ngoes back to testing the expression.\n\n\nThe ``for`` statement\n=====================\n\nThe ``for`` statement is used to iterate over the elements of a\nsequence (such as a string, tuple or list) or other iterable object:\n\n for_stmt ::= "for" target_list "in" expression_list ":" suite\n ["else" ":" suite]\n\nThe expression list is evaluated once; it should yield an iterable\nobject. An iterator is created for the result of the\n``expression_list``. The suite is then executed once for each item\nprovided by the iterator, in the order of ascending indices. Each\nitem in turn is assigned to the target list using the standard rules\nfor assignments (see *Assignment statements*), and then the suite is\nexecuted. When the items are exhausted (which is immediately when the\nsequence is empty or an iterator raises a ``StopIteration``\nexception), the suite in the ``else`` clause, if present, is executed,\nand the loop terminates.\n\nA ``break`` statement executed in the first suite terminates the loop\nwithout executing the ``else`` clause\'s suite. A ``continue``\nstatement executed in the first suite skips the rest of the suite and\ncontinues with the next item, or with the ``else`` clause if there was\nno next item.\n\nThe suite may assign to the variable(s) in the target list; this does\nnot affect the next item assigned to it.\n\nNames in the target list are not deleted when the loop is finished,\nbut if the sequence is empty, it will not have been assigned to at all\nby the loop. Hint: the built-in function ``range()`` returns an\niterator of integers suitable to emulate the effect of Pascal\'s ``for\ni := a to b do``; e.g., ``list(range(3))`` returns the list ``[0, 1,\n2]``.\n\nNote: There is a subtlety when the sequence is being modified by the loop\n (this can only occur for mutable sequences, i.e. lists). An\n internal counter is used to keep track of which item is used next,\n and this is incremented on each iteration. When this counter has\n reached the length of the sequence the loop terminates. This means\n that if the suite deletes the current (or a previous) item from the\n sequence, the next item will be skipped (since it gets the index of\n the current item which has already been treated). Likewise, if the\n suite inserts an item in the sequence before the current item, the\n current item will be treated again the next time through the loop.\n This can lead to nasty bugs that can be avoided by making a\n temporary copy using a slice of the whole sequence, e.g.,\n\n for x in a[:]:\n if x < 0: a.remove(x)\n\n\nThe ``try`` statement\n=====================\n\nThe ``try`` statement specifies exception handlers and/or cleanup code\nfor a group of statements:\n\n try_stmt ::= try1_stmt | try2_stmt\n try1_stmt ::= "try" ":" suite\n ("except" [expression ["as" target]] ":" suite)+\n ["else" ":" suite]\n ["finally" ":" suite]\n try2_stmt ::= "try" ":" suite\n "finally" ":" suite\n\nThe ``except`` clause(s) specify one or more exception handlers. When\nno exception occurs in the ``try`` clause, no exception handler is\nexecuted. When an exception occurs in the ``try`` suite, a search for\nan exception handler is started. This search inspects the except\nclauses in turn until one is found that matches the exception. An\nexpression-less except clause, if present, must be last; it matches\nany exception. For an except clause with an expression, that\nexpression is evaluated, and the clause matches the exception if the\nresulting object is "compatible" with the exception. An object is\ncompatible with an exception if it is the class or a base class of the\nexception object or a tuple containing an item compatible with the\nexception.\n\nIf no except clause matches the exception, the search for an exception\nhandler continues in the surrounding code and on the invocation stack.\n[1]\n\nIf the evaluation of an expression in the header of an except clause\nraises an exception, the original search for a handler is canceled and\na search starts for the new exception in the surrounding code and on\nthe call stack (it is treated as if the entire ``try`` statement\nraised the exception).\n\nWhen a matching except clause is found, the exception is assigned to\nthe target specified after the ``as`` keyword in that except clause,\nif present, and the except clause\'s suite is executed. All except\nclauses must have an executable block. When the end of this block is\nreached, execution continues normally after the entire try statement.\n(This means that if two nested handlers exist for the same exception,\nand the exception occurs in the try clause of the inner handler, the\nouter handler will not handle the exception.)\n\nWhen an exception has been assigned using ``as target``, it is cleared\nat the end of the except clause. This is as if\n\n except E as N:\n foo\n\nwas translated to\n\n except E as N:\n try:\n foo\n finally:\n del N\n\nThis means the exception must be assigned to a different name to be\nable to refer to it after the except clause. Exceptions are cleared\nbecause with the traceback attached to them, they form a reference\ncycle with the stack frame, keeping all locals in that frame alive\nuntil the next garbage collection occurs.\n\nBefore an except clause\'s suite is executed, details about the\nexception are stored in the ``sys`` module and can be access via\n``sys.exc_info()``. ``sys.exc_info()`` returns a 3-tuple consisting\nof: ``exc_type``, the exception class; ``exc_value``, the exception\ninstance; ``exc_traceback``, a traceback object (see section *The\nstandard type hierarchy*) identifying the point in the program where\nthe exception occurred. ``sys.exc_info()`` values are restored to\ntheir previous values (before the call) when returning from a function\nthat handled an exception.\n\nThe optional ``else`` clause is executed if and when control flows off\nthe end of the ``try`` clause. [2] Exceptions in the ``else`` clause\nare not handled by the preceding ``except`` clauses.\n\nIf ``finally`` is present, it specifies a \'cleanup\' handler. The\n``try`` clause is executed, including any ``except`` and ``else``\nclauses. If an exception occurs in any of the clauses and is not\nhandled, the exception is temporarily saved. The ``finally`` clause is\nexecuted. If there is a saved exception, it is re-raised at the end\nof the ``finally`` clause. If the ``finally`` clause raises another\nexception or executes a ``return`` or ``break`` statement, the saved\nexception is lost. The exception information is not available to the\nprogram during execution of the ``finally`` clause.\n\nWhen a ``return``, ``break`` or ``continue`` statement is executed in\nthe ``try`` suite of a ``try``...``finally`` statement, the\n``finally`` clause is also executed \'on the way out.\' A ``continue``\nstatement is illegal in the ``finally`` clause. (The reason is a\nproblem with the current implementation --- this restriction may be\nlifted in the future).\n\nAdditional information on exceptions can be found in section\n*Exceptions*, and information on using the ``raise`` statement to\ngenerate exceptions may be found in section *The raise statement*.\n\n\nThe ``with`` statement\n======================\n\nThe ``with`` statement is used to wrap the execution of a block with\nmethods defined by a context manager (see section *With Statement\nContext Managers*). This allows common\n``try``...``except``...``finally`` usage patterns to be encapsulated\nfor convenient reuse.\n\n with_stmt ::= "with" with_item ("," with_item)* ":" suite\n with_item ::= expression ["as" target]\n\nThe execution of the ``with`` statement with one "item" proceeds as\nfollows:\n\n1. The context expression (the expression given in the ``with_item``)\n is evaluated to obtain a context manager.\n\n2. The context manager\'s ``__exit__()`` is loaded for later use.\n\n3. The context manager\'s ``__enter__()`` method is invoked.\n\n4. If a target was included in the ``with`` statement, the return\n value from ``__enter__()`` is assigned to it.\n\n Note: The ``with`` statement guarantees that if the ``__enter__()``\n method returns without an error, then ``__exit__()`` will always\n be called. Thus, if an error occurs during the assignment to the\n target list, it will be treated the same as an error occurring\n within the suite would be. See step 6 below.\n\n5. The suite is executed.\n\n6. The context manager\'s ``__exit__()`` method is invoked. If an\n exception caused the suite to be exited, its type, value, and\n traceback are passed as arguments to ``__exit__()``. Otherwise,\n three ``None`` arguments are supplied.\n\n If the suite was exited due to an exception, and the return value\n from the ``__exit__()`` method was false, the exception is\n reraised. If the return value was true, the exception is\n suppressed, and execution continues with the statement following\n the ``with`` statement.\n\n If the suite was exited for any reason other than an exception, the\n return value from ``__exit__()`` is ignored, and execution proceeds\n at the normal location for the kind of exit that was taken.\n\nWith more than one item, the context managers are processed as if\nmultiple ``with`` statements were nested:\n\n with A() as a, B() as b:\n suite\n\nis equivalent to\n\n with A() as a:\n with B() as b:\n suite\n\nChanged in version 3.1: Support for multiple context expressions.\n\nSee also:\n\n **PEP 0343** - The "with" statement\n The specification, background, and examples for the Python\n ``with`` statement.\n\n\nFunction definitions\n====================\n\nA function definition defines a user-defined function object (see\nsection *The standard type hierarchy*):\n\n funcdef ::= [decorators] "def" funcname "(" [parameter_list] ")" ["->" expression] ":" suite\n decorators ::= decorator+\n decorator ::= "@" dotted_name ["(" [argument_list [","]] ")"] NEWLINE\n dotted_name ::= identifier ("." identifier)*\n parameter_list ::= (defparameter ",")*\n ( "*" [parameter] ("," defparameter)*\n [, "**" parameter]\n | "**" parameter\n | defparameter [","] )\n parameter ::= identifier [":" expression]\n defparameter ::= parameter ["=" expression]\n funcname ::= identifier\n\nA function definition is an executable statement. Its execution binds\nthe function name in the current local namespace to a function object\n(a wrapper around the executable code for the function). This\nfunction object contains a reference to the current global namespace\nas the global namespace to be used when the function is called.\n\nThe function definition does not execute the function body; this gets\nexecuted only when the function is called. [3]\n\nA function definition may be wrapped by one or more *decorator*\nexpressions. Decorator expressions are evaluated when the function is\ndefined, in the scope that contains the function definition. The\nresult must be a callable, which is invoked with the function object\nas the only argument. The returned value is bound to the function name\ninstead of the function object. Multiple decorators are applied in\nnested fashion. For example, the following code\n\n @f1(arg)\n @f2\n def func(): pass\n\nis equivalent to\n\n def func(): pass\n func = f1(arg)(f2(func))\n\nWhen one or more parameters have the form *parameter* ``=``\n*expression*, the function is said to have "default parameter values."\nFor a parameter with a default value, the corresponding argument may\nbe omitted from a call, in which case the parameter\'s default value is\nsubstituted. If a parameter has a default value, all following\nparameters up until the "``*``" must also have a default value ---\nthis is a syntactic restriction that is not expressed by the grammar.\n\n**Default parameter values are evaluated when the function definition\nis executed.** This means that the expression is evaluated once, when\nthe function is defined, and that that same "pre-computed" value is\nused for each call. This is especially important to understand when a\ndefault parameter is a mutable object, such as a list or a dictionary:\nif the function modifies the object (e.g. by appending an item to a\nlist), the default value is in effect modified. This is generally not\nwhat was intended. A way around this is to use ``None`` as the\ndefault, and explicitly test for it in the body of the function, e.g.:\n\n def whats_on_the_telly(penguin=None):\n if penguin is None:\n penguin = []\n penguin.append("property of the zoo")\n return penguin\n\nFunction call semantics are described in more detail in section\n*Calls*. A function call always assigns values to all parameters\nmentioned in the parameter list, either from position arguments, from\nkeyword arguments, or from default values. If the form\n"``*identifier``" is present, it is initialized to a tuple receiving\nany excess positional parameters, defaulting to the empty tuple. If\nthe form "``**identifier``" is present, it is initialized to a new\ndictionary receiving any excess keyword arguments, defaulting to a new\nempty dictionary. Parameters after "``*``" or "``*identifier``" are\nkeyword-only parameters and may only be passed used keyword arguments.\n\nParameters may have annotations of the form "``: expression``"\nfollowing the parameter name. Any parameter may have an annotation\neven those of the form ``*identifier`` or ``**identifier``. Functions\nmay have "return" annotation of the form "``-> expression``" after the\nparameter list. These annotations can be any valid Python expression\nand are evaluated when the function definition is executed.\nAnnotations may be evaluated in a different order than they appear in\nthe source code. The presence of annotations does not change the\nsemantics of a function. The annotation values are available as\nvalues of a dictionary keyed by the parameters\' names in the\n``__annotations__`` attribute of the function object.\n\nIt is also possible to create anonymous functions (functions not bound\nto a name), for immediate use in expressions. This uses lambda forms,\ndescribed in section *Lambdas*. Note that the lambda form is merely a\nshorthand for a simplified function definition; a function defined in\na "``def``" statement can be passed around or assigned to another name\njust like a function defined by a lambda form. The "``def``" form is\nactually more powerful since it allows the execution of multiple\nstatements and annotations.\n\n**Programmer\'s note:** Functions are first-class objects. A "``def``"\nform executed inside a function definition defines a local function\nthat can be returned or passed around. Free variables used in the\nnested function can access the local variables of the function\ncontaining the def. See section *Naming and binding* for details.\n\n\nClass definitions\n=================\n\nA class definition defines a class object (see section *The standard\ntype hierarchy*):\n\n classdef ::= [decorators] "class" classname [inheritance] ":" suite\n inheritance ::= "(" [argument_list [","] | comprehension] ")"\n classname ::= identifier\n\nA class definition is an executable statement. The inheritance list\nusually gives a list of base classes (see *Customizing class creation*\nfor more advanced uses), so each item in the list should evaluate to a\nclass object which allows subclassing. Classes without an inheritance\nlist inherit, by default, from the base class ``object``; hence,\n\n class Foo:\n pass\n\nis equivalent to\n\n class Foo(object):\n pass\n\nThe class\'s suite is then executed in a new execution frame (see\n*Naming and binding*), using a newly created local namespace and the\noriginal global namespace. (Usually, the suite contains mostly\nfunction definitions.) When the class\'s suite finishes execution, its\nexecution frame is discarded but its local namespace is saved. [4] A\nclass object is then created using the inheritance list for the base\nclasses and the saved local namespace for the attribute dictionary.\nThe class name is bound to this class object in the original local\nnamespace.\n\nClass creation can be customized heavily using *metaclasses*.\n\nClasses can also be decorated: just like when decorating functions,\n\n @f1(arg)\n @f2\n class Foo: pass\n\nis equivalent to\n\n class Foo: pass\n Foo = f1(arg)(f2(Foo))\n\nThe evaluation rules for the decorator expressions are the same as for\nfunction decorators. The result must be a class object, which is then\nbound to the class name.\n\n**Programmer\'s note:** Variables defined in the class definition are\nclass attributes; they are shared by instances. Instance attributes\ncan be set in a method with ``self.name = value``. Both class and\ninstance attributes are accessible through the notation\n"``self.name``", and an instance attribute hides a class attribute\nwith the same name when accessed in this way. Class attributes can be\nused as defaults for instance attributes, but using mutable values\nthere can lead to unexpected results. *Descriptors* can be used to\ncreate instance variables with different implementation details.\n\nSee also:\n\n **PEP 3116** - Metaclasses in Python 3 **PEP 3129** - Class\n Decorators\n\n-[ Footnotes ]-\n\n[1] The exception is propagated to the invocation stack only if there\n is no ``finally`` clause that negates the exception.\n\n[2] Currently, control "flows off the end" except in the case of an\n exception or the execution of a ``return``, ``continue``, or\n ``break`` statement.\n\n[3] A string literal appearing as the first statement in the function\n body is transformed into the function\'s ``__doc__`` attribute and\n therefore the function\'s *docstring*.\n\n[4] A string literal appearing as the first statement in the class\n body is transformed into the namespace\'s ``__doc__`` item and\n therefore the class\'s *docstring*.\n', + 'compound': '\nCompound statements\n*******************\n\nCompound statements contain (groups of) other statements; they affect\nor control the execution of those other statements in some way. In\ngeneral, compound statements span multiple lines, although in simple\nincarnations a whole compound statement may be contained in one line.\n\nThe ``if``, ``while`` and ``for`` statements implement traditional\ncontrol flow constructs. ``try`` specifies exception handlers and/or\ncleanup code for a group of statements, while the ``with`` statement\nallows the execution of initialization and finalization code around a\nblock of code. Function and class definitions are also syntactically\ncompound statements.\n\nCompound statements consist of one or more \'clauses.\' A clause\nconsists of a header and a \'suite.\' The clause headers of a\nparticular compound statement are all at the same indentation level.\nEach clause header begins with a uniquely identifying keyword and ends\nwith a colon. A suite is a group of statements controlled by a\nclause. A suite can be one or more semicolon-separated simple\nstatements on the same line as the header, following the header\'s\ncolon, or it can be one or more indented statements on subsequent\nlines. Only the latter form of suite can contain nested compound\nstatements; the following is illegal, mostly because it wouldn\'t be\nclear to which ``if`` clause a following ``else`` clause would belong:\n\n if test1: if test2: print(x)\n\nAlso note that the semicolon binds tighter than the colon in this\ncontext, so that in the following example, either all or none of the\n``print()`` calls are executed:\n\n if x < y < z: print(x); print(y); print(z)\n\nSummarizing:\n\n compound_stmt ::= if_stmt\n | while_stmt\n | for_stmt\n | try_stmt\n | with_stmt\n | funcdef\n | classdef\n suite ::= stmt_list NEWLINE | NEWLINE INDENT statement+ DEDENT\n statement ::= stmt_list NEWLINE | compound_stmt\n stmt_list ::= simple_stmt (";" simple_stmt)* [";"]\n\nNote that statements always end in a ``NEWLINE`` possibly followed by\na ``DEDENT``. Also note that optional continuation clauses always\nbegin with a keyword that cannot start a statement, thus there are no\nambiguities (the \'dangling ``else``\' problem is solved in Python by\nrequiring nested ``if`` statements to be indented).\n\nThe formatting of the grammar rules in the following sections places\neach clause on a separate line for clarity.\n\n\nThe ``if`` statement\n====================\n\nThe ``if`` statement is used for conditional execution:\n\n if_stmt ::= "if" expression ":" suite\n ( "elif" expression ":" suite )*\n ["else" ":" suite]\n\nIt selects exactly one of the suites by evaluating the expressions one\nby one until one is found to be true (see section *Boolean operations*\nfor the definition of true and false); then that suite is executed\n(and no other part of the ``if`` statement is executed or evaluated).\nIf all expressions are false, the suite of the ``else`` clause, if\npresent, is executed.\n\n\nThe ``while`` statement\n=======================\n\nThe ``while`` statement is used for repeated execution as long as an\nexpression is true:\n\n while_stmt ::= "while" expression ":" suite\n ["else" ":" suite]\n\nThis repeatedly tests the expression and, if it is true, executes the\nfirst suite; if the expression is false (which may be the first time\nit is tested) the suite of the ``else`` clause, if present, is\nexecuted and the loop terminates.\n\nA ``break`` statement executed in the first suite terminates the loop\nwithout executing the ``else`` clause\'s suite. A ``continue``\nstatement executed in the first suite skips the rest of the suite and\ngoes back to testing the expression.\n\n\nThe ``for`` statement\n=====================\n\nThe ``for`` statement is used to iterate over the elements of a\nsequence (such as a string, tuple or list) or other iterable object:\n\n for_stmt ::= "for" target_list "in" expression_list ":" suite\n ["else" ":" suite]\n\nThe expression list is evaluated once; it should yield an iterable\nobject. An iterator is created for the result of the\n``expression_list``. The suite is then executed once for each item\nprovided by the iterator, in the order of ascending indices. Each\nitem in turn is assigned to the target list using the standard rules\nfor assignments (see *Assignment statements*), and then the suite is\nexecuted. When the items are exhausted (which is immediately when the\nsequence is empty or an iterator raises a ``StopIteration``\nexception), the suite in the ``else`` clause, if present, is executed,\nand the loop terminates.\n\nA ``break`` statement executed in the first suite terminates the loop\nwithout executing the ``else`` clause\'s suite. A ``continue``\nstatement executed in the first suite skips the rest of the suite and\ncontinues with the next item, or with the ``else`` clause if there was\nno next item.\n\nThe suite may assign to the variable(s) in the target list; this does\nnot affect the next item assigned to it.\n\nNames in the target list are not deleted when the loop is finished,\nbut if the sequence is empty, it will not have been assigned to at all\nby the loop. Hint: the built-in function ``range()`` returns an\niterator of integers suitable to emulate the effect of Pascal\'s ``for\ni := a to b do``; e.g., ``list(range(3))`` returns the list ``[0, 1,\n2]``.\n\nNote: There is a subtlety when the sequence is being modified by the loop\n (this can only occur for mutable sequences, i.e. lists). An\n internal counter is used to keep track of which item is used next,\n and this is incremented on each iteration. When this counter has\n reached the length of the sequence the loop terminates. This means\n that if the suite deletes the current (or a previous) item from the\n sequence, the next item will be skipped (since it gets the index of\n the current item which has already been treated). Likewise, if the\n suite inserts an item in the sequence before the current item, the\n current item will be treated again the next time through the loop.\n This can lead to nasty bugs that can be avoided by making a\n temporary copy using a slice of the whole sequence, e.g.,\n\n for x in a[:]:\n if x < 0: a.remove(x)\n\n\nThe ``try`` statement\n=====================\n\nThe ``try`` statement specifies exception handlers and/or cleanup code\nfor a group of statements:\n\n try_stmt ::= try1_stmt | try2_stmt\n try1_stmt ::= "try" ":" suite\n ("except" [expression ["as" target]] ":" suite)+\n ["else" ":" suite]\n ["finally" ":" suite]\n try2_stmt ::= "try" ":" suite\n "finally" ":" suite\n\nThe ``except`` clause(s) specify one or more exception handlers. When\nno exception occurs in the ``try`` clause, no exception handler is\nexecuted. When an exception occurs in the ``try`` suite, a search for\nan exception handler is started. This search inspects the except\nclauses in turn until one is found that matches the exception. An\nexpression-less except clause, if present, must be last; it matches\nany exception. For an except clause with an expression, that\nexpression is evaluated, and the clause matches the exception if the\nresulting object is "compatible" with the exception. An object is\ncompatible with an exception if it is the class or a base class of the\nexception object or a tuple containing an item compatible with the\nexception.\n\nIf no except clause matches the exception, the search for an exception\nhandler continues in the surrounding code and on the invocation stack.\n[1]\n\nIf the evaluation of an expression in the header of an except clause\nraises an exception, the original search for a handler is canceled and\na search starts for the new exception in the surrounding code and on\nthe call stack (it is treated as if the entire ``try`` statement\nraised the exception).\n\nWhen a matching except clause is found, the exception is assigned to\nthe target specified after the ``as`` keyword in that except clause,\nif present, and the except clause\'s suite is executed. All except\nclauses must have an executable block. When the end of this block is\nreached, execution continues normally after the entire try statement.\n(This means that if two nested handlers exist for the same exception,\nand the exception occurs in the try clause of the inner handler, the\nouter handler will not handle the exception.)\n\nWhen an exception has been assigned using ``as target``, it is cleared\nat the end of the except clause. This is as if\n\n except E as N:\n foo\n\nwas translated to\n\n except E as N:\n try:\n foo\n finally:\n del N\n\nThis means the exception must be assigned to a different name to be\nable to refer to it after the except clause. Exceptions are cleared\nbecause with the traceback attached to them, they form a reference\ncycle with the stack frame, keeping all locals in that frame alive\nuntil the next garbage collection occurs.\n\nBefore an except clause\'s suite is executed, details about the\nexception are stored in the ``sys`` module and can be access via\n``sys.exc_info()``. ``sys.exc_info()`` returns a 3-tuple consisting of\nthe exception class, the exception instance and a traceback object\n(see section *The standard type hierarchy*) identifying the point in\nthe program where the exception occurred. ``sys.exc_info()`` values\nare restored to their previous values (before the call) when returning\nfrom a function that handled an exception.\n\nThe optional ``else`` clause is executed if and when control flows off\nthe end of the ``try`` clause. [2] Exceptions in the ``else`` clause\nare not handled by the preceding ``except`` clauses.\n\nIf ``finally`` is present, it specifies a \'cleanup\' handler. The\n``try`` clause is executed, including any ``except`` and ``else``\nclauses. If an exception occurs in any of the clauses and is not\nhandled, the exception is temporarily saved. The ``finally`` clause is\nexecuted. If there is a saved exception, it is re-raised at the end\nof the ``finally`` clause. If the ``finally`` clause raises another\nexception or executes a ``return`` or ``break`` statement, the saved\nexception is lost. The exception information is not available to the\nprogram during execution of the ``finally`` clause.\n\nWhen a ``return``, ``break`` or ``continue`` statement is executed in\nthe ``try`` suite of a ``try``...``finally`` statement, the\n``finally`` clause is also executed \'on the way out.\' A ``continue``\nstatement is illegal in the ``finally`` clause. (The reason is a\nproblem with the current implementation --- this restriction may be\nlifted in the future).\n\nAdditional information on exceptions can be found in section\n*Exceptions*, and information on using the ``raise`` statement to\ngenerate exceptions may be found in section *The raise statement*.\n\n\nThe ``with`` statement\n======================\n\nThe ``with`` statement is used to wrap the execution of a block with\nmethods defined by a context manager (see section *With Statement\nContext Managers*). This allows common\n``try``...``except``...``finally`` usage patterns to be encapsulated\nfor convenient reuse.\n\n with_stmt ::= "with" with_item ("," with_item)* ":" suite\n with_item ::= expression ["as" target]\n\nThe execution of the ``with`` statement with one "item" proceeds as\nfollows:\n\n1. The context expression (the expression given in the ``with_item``)\n is evaluated to obtain a context manager.\n\n2. The context manager\'s ``__exit__()`` is loaded for later use.\n\n3. The context manager\'s ``__enter__()`` method is invoked.\n\n4. If a target was included in the ``with`` statement, the return\n value from ``__enter__()`` is assigned to it.\n\n Note: The ``with`` statement guarantees that if the ``__enter__()``\n method returns without an error, then ``__exit__()`` will always\n be called. Thus, if an error occurs during the assignment to the\n target list, it will be treated the same as an error occurring\n within the suite would be. See step 6 below.\n\n5. The suite is executed.\n\n6. The context manager\'s ``__exit__()`` method is invoked. If an\n exception caused the suite to be exited, its type, value, and\n traceback are passed as arguments to ``__exit__()``. Otherwise,\n three ``None`` arguments are supplied.\n\n If the suite was exited due to an exception, and the return value\n from the ``__exit__()`` method was false, the exception is\n reraised. If the return value was true, the exception is\n suppressed, and execution continues with the statement following\n the ``with`` statement.\n\n If the suite was exited for any reason other than an exception, the\n return value from ``__exit__()`` is ignored, and execution proceeds\n at the normal location for the kind of exit that was taken.\n\nWith more than one item, the context managers are processed as if\nmultiple ``with`` statements were nested:\n\n with A() as a, B() as b:\n suite\n\nis equivalent to\n\n with A() as a:\n with B() as b:\n suite\n\nChanged in version 3.1: Support for multiple context expressions.\n\nSee also:\n\n **PEP 0343** - The "with" statement\n The specification, background, and examples for the Python\n ``with`` statement.\n\n\nFunction definitions\n====================\n\nA function definition defines a user-defined function object (see\nsection *The standard type hierarchy*):\n\n funcdef ::= [decorators] "def" funcname "(" [parameter_list] ")" ["->" expression] ":" suite\n decorators ::= decorator+\n decorator ::= "@" dotted_name ["(" [argument_list [","]] ")"] NEWLINE\n dotted_name ::= identifier ("." identifier)*\n parameter_list ::= (defparameter ",")*\n ( "*" [parameter] ("," defparameter)*\n [, "**" parameter]\n | "**" parameter\n | defparameter [","] )\n parameter ::= identifier [":" expression]\n defparameter ::= parameter ["=" expression]\n funcname ::= identifier\n\nA function definition is an executable statement. Its execution binds\nthe function name in the current local namespace to a function object\n(a wrapper around the executable code for the function). This\nfunction object contains a reference to the current global namespace\nas the global namespace to be used when the function is called.\n\nThe function definition does not execute the function body; this gets\nexecuted only when the function is called. [3]\n\nA function definition may be wrapped by one or more *decorator*\nexpressions. Decorator expressions are evaluated when the function is\ndefined, in the scope that contains the function definition. The\nresult must be a callable, which is invoked with the function object\nas the only argument. The returned value is bound to the function name\ninstead of the function object. Multiple decorators are applied in\nnested fashion. For example, the following code\n\n @f1(arg)\n @f2\n def func(): pass\n\nis equivalent to\n\n def func(): pass\n func = f1(arg)(f2(func))\n\nWhen one or more parameters have the form *parameter* ``=``\n*expression*, the function is said to have "default parameter values."\nFor a parameter with a default value, the corresponding argument may\nbe omitted from a call, in which case the parameter\'s default value is\nsubstituted. If a parameter has a default value, all following\nparameters up until the "``*``" must also have a default value ---\nthis is a syntactic restriction that is not expressed by the grammar.\n\n**Default parameter values are evaluated when the function definition\nis executed.** This means that the expression is evaluated once, when\nthe function is defined, and that that same "pre-computed" value is\nused for each call. This is especially important to understand when a\ndefault parameter is a mutable object, such as a list or a dictionary:\nif the function modifies the object (e.g. by appending an item to a\nlist), the default value is in effect modified. This is generally not\nwhat was intended. A way around this is to use ``None`` as the\ndefault, and explicitly test for it in the body of the function, e.g.:\n\n def whats_on_the_telly(penguin=None):\n if penguin is None:\n penguin = []\n penguin.append("property of the zoo")\n return penguin\n\nFunction call semantics are described in more detail in section\n*Calls*. A function call always assigns values to all parameters\nmentioned in the parameter list, either from position arguments, from\nkeyword arguments, or from default values. If the form\n"``*identifier``" is present, it is initialized to a tuple receiving\nany excess positional parameters, defaulting to the empty tuple. If\nthe form "``**identifier``" is present, it is initialized to a new\ndictionary receiving any excess keyword arguments, defaulting to a new\nempty dictionary. Parameters after "``*``" or "``*identifier``" are\nkeyword-only parameters and may only be passed used keyword arguments.\n\nParameters may have annotations of the form "``: expression``"\nfollowing the parameter name. Any parameter may have an annotation\neven those of the form ``*identifier`` or ``**identifier``. Functions\nmay have "return" annotation of the form "``-> expression``" after the\nparameter list. These annotations can be any valid Python expression\nand are evaluated when the function definition is executed.\nAnnotations may be evaluated in a different order than they appear in\nthe source code. The presence of annotations does not change the\nsemantics of a function. The annotation values are available as\nvalues of a dictionary keyed by the parameters\' names in the\n``__annotations__`` attribute of the function object.\n\nIt is also possible to create anonymous functions (functions not bound\nto a name), for immediate use in expressions. This uses lambda forms,\ndescribed in section *Lambdas*. Note that the lambda form is merely a\nshorthand for a simplified function definition; a function defined in\na "``def``" statement can be passed around or assigned to another name\njust like a function defined by a lambda form. The "``def``" form is\nactually more powerful since it allows the execution of multiple\nstatements and annotations.\n\n**Programmer\'s note:** Functions are first-class objects. A "``def``"\nform executed inside a function definition defines a local function\nthat can be returned or passed around. Free variables used in the\nnested function can access the local variables of the function\ncontaining the def. See section *Naming and binding* for details.\n\n\nClass definitions\n=================\n\nA class definition defines a class object (see section *The standard\ntype hierarchy*):\n\n classdef ::= [decorators] "class" classname [inheritance] ":" suite\n inheritance ::= "(" [argument_list [","] | comprehension] ")"\n classname ::= identifier\n\nA class definition is an executable statement. The inheritance list\nusually gives a list of base classes (see *Customizing class creation*\nfor more advanced uses), so each item in the list should evaluate to a\nclass object which allows subclassing. Classes without an inheritance\nlist inherit, by default, from the base class ``object``; hence,\n\n class Foo:\n pass\n\nis equivalent to\n\n class Foo(object):\n pass\n\nThe class\'s suite is then executed in a new execution frame (see\n*Naming and binding*), using a newly created local namespace and the\noriginal global namespace. (Usually, the suite contains mostly\nfunction definitions.) When the class\'s suite finishes execution, its\nexecution frame is discarded but its local namespace is saved. [4] A\nclass object is then created using the inheritance list for the base\nclasses and the saved local namespace for the attribute dictionary.\nThe class name is bound to this class object in the original local\nnamespace.\n\nClass creation can be customized heavily using *metaclasses*.\n\nClasses can also be decorated: just like when decorating functions,\n\n @f1(arg)\n @f2\n class Foo: pass\n\nis equivalent to\n\n class Foo: pass\n Foo = f1(arg)(f2(Foo))\n\nThe evaluation rules for the decorator expressions are the same as for\nfunction decorators. The result must be a class object, which is then\nbound to the class name.\n\n**Programmer\'s note:** Variables defined in the class definition are\nclass attributes; they are shared by instances. Instance attributes\ncan be set in a method with ``self.name = value``. Both class and\ninstance attributes are accessible through the notation\n"``self.name``", and an instance attribute hides a class attribute\nwith the same name when accessed in this way. Class attributes can be\nused as defaults for instance attributes, but using mutable values\nthere can lead to unexpected results. *Descriptors* can be used to\ncreate instance variables with different implementation details.\n\nSee also:\n\n **PEP 3116** - Metaclasses in Python 3 **PEP 3129** - Class\n Decorators\n\n-[ Footnotes ]-\n\n[1] The exception is propagated to the invocation stack only if there\n is no ``finally`` clause that negates the exception.\n\n[2] Currently, control "flows off the end" except in the case of an\n exception or the execution of a ``return``, ``continue``, or\n ``break`` statement.\n\n[3] A string literal appearing as the first statement in the function\n body is transformed into the function\'s ``__doc__`` attribute and\n therefore the function\'s *docstring*.\n\n[4] A string literal appearing as the first statement in the class\n body is transformed into the namespace\'s ``__doc__`` item and\n therefore the class\'s *docstring*.\n', 'context-managers': '\nWith Statement Context Managers\n*******************************\n\nA *context manager* is an object that defines the runtime context to\nbe established when executing a ``with`` statement. The context\nmanager handles the entry into, and the exit from, the desired runtime\ncontext for the execution of the block of code. Context managers are\nnormally invoked using the ``with`` statement (described in section\n*The with statement*), but can also be used by directly invoking their\nmethods.\n\nTypical uses of context managers include saving and restoring various\nkinds of global state, locking and unlocking resources, closing opened\nfiles, etc.\n\nFor more information on context managers, see *Context Manager Types*.\n\nobject.__enter__(self)\n\n Enter the runtime context related to this object. The ``with``\n statement will bind this method\'s return value to the target(s)\n specified in the ``as`` clause of the statement, if any.\n\nobject.__exit__(self, exc_type, exc_value, traceback)\n\n Exit the runtime context related to this object. The parameters\n describe the exception that caused the context to be exited. If the\n context was exited without an exception, all three arguments will\n be ``None``.\n\n If an exception is supplied, and the method wishes to suppress the\n exception (i.e., prevent it from being propagated), it should\n return a true value. Otherwise, the exception will be processed\n normally upon exit from this method.\n\n Note that ``__exit__()`` methods should not reraise the passed-in\n exception; this is the caller\'s responsibility.\n\nSee also:\n\n **PEP 0343** - The "with" statement\n The specification, background, and examples for the Python\n ``with`` statement.\n', 'continue': '\nThe ``continue`` statement\n**************************\n\n continue_stmt ::= "continue"\n\n``continue`` may only occur syntactically nested in a ``for`` or\n``while`` loop, but not nested in a function or class definition or\n``finally`` clause within that loop. It continues with the next cycle\nof the nearest enclosing loop.\n\nWhen ``continue`` passes control out of a ``try`` statement with a\n``finally`` clause, that ``finally`` clause is executed before really\nstarting the next loop cycle.\n', 'conversions': '\nArithmetic conversions\n**********************\n\nWhen a description of an arithmetic operator below uses the phrase\n"the numeric arguments are converted to a common type," this means\nthat the operator implementation for built-in types works that way:\n\n* If either argument is a complex number, the other is converted to\n complex;\n\n* otherwise, if either argument is a floating point number, the other\n is converted to floating point;\n\n* otherwise, both must be integers and no conversion is necessary.\n\nSome additional rules apply for certain operators (e.g., a string left\nargument to the \'%\' operator). Extensions must define their own\nconversion behavior.\n', 'customization': '\nBasic customization\n*******************\n\nobject.__new__(cls[, ...])\n\n Called to create a new instance of class *cls*. ``__new__()`` is a\n static method (special-cased so you need not declare it as such)\n that takes the class of which an instance was requested as its\n first argument. The remaining arguments are those passed to the\n object constructor expression (the call to the class). The return\n value of ``__new__()`` should be the new object instance (usually\n an instance of *cls*).\n\n Typical implementations create a new instance of the class by\n invoking the superclass\'s ``__new__()`` method using\n ``super(currentclass, cls).__new__(cls[, ...])`` with appropriate\n arguments and then modifying the newly-created instance as\n necessary before returning it.\n\n If ``__new__()`` returns an instance of *cls*, then the new\n instance\'s ``__init__()`` method will be invoked like\n ``__init__(self[, ...])``, where *self* is the new instance and the\n remaining arguments are the same as were passed to ``__new__()``.\n\n If ``__new__()`` does not return an instance of *cls*, then the new\n instance\'s ``__init__()`` method will not be invoked.\n\n ``__new__()`` is intended mainly to allow subclasses of immutable\n types (like int, str, or tuple) to customize instance creation. It\n is also commonly overridden in custom metaclasses in order to\n customize class creation.\n\nobject.__init__(self[, ...])\n\n Called when the instance is created. The arguments are those\n passed to the class constructor expression. If a base class has an\n ``__init__()`` method, the derived class\'s ``__init__()`` method,\n if any, must explicitly call it to ensure proper initialization of\n the base class part of the instance; for example:\n ``BaseClass.__init__(self, [args...])``. As a special constraint\n on constructors, no value may be returned; doing so will cause a\n ``TypeError`` to be raised at runtime.\n\nobject.__del__(self)\n\n Called when the instance is about to be destroyed. This is also\n called a destructor. If a base class has a ``__del__()`` method,\n the derived class\'s ``__del__()`` method, if any, must explicitly\n call it to ensure proper deletion of the base class part of the\n instance. Note that it is possible (though not recommended!) for\n the ``__del__()`` method to postpone destruction of the instance by\n creating a new reference to it. It may then be called at a later\n time when this new reference is deleted. It is not guaranteed that\n ``__del__()`` methods are called for objects that still exist when\n the interpreter exits.\n\n Note: ``del x`` doesn\'t directly call ``x.__del__()`` --- the former\n decrements the reference count for ``x`` by one, and the latter\n is only called when ``x``\'s reference count reaches zero. Some\n common situations that may prevent the reference count of an\n object from going to zero include: circular references between\n objects (e.g., a doubly-linked list or a tree data structure with\n parent and child pointers); a reference to the object on the\n stack frame of a function that caught an exception (the traceback\n stored in ``sys.exc_info()[2]`` keeps the stack frame alive); or\n a reference to the object on the stack frame that raised an\n unhandled exception in interactive mode (the traceback stored in\n ``sys.last_traceback`` keeps the stack frame alive). The first\n situation can only be remedied by explicitly breaking the cycles;\n the latter two situations can be resolved by storing ``None`` in\n ``sys.last_traceback``. Circular references which are garbage are\n detected when the option cycle detector is enabled (it\'s on by\n default), but can only be cleaned up if there are no Python-\n level ``__del__()`` methods involved. Refer to the documentation\n for the ``gc`` module for more information about how\n ``__del__()`` methods are handled by the cycle detector,\n particularly the description of the ``garbage`` value.\n\n Warning: Due to the precarious circumstances under which ``__del__()``\n methods are invoked, exceptions that occur during their execution\n are ignored, and a warning is printed to ``sys.stderr`` instead.\n Also, when ``__del__()`` is invoked in response to a module being\n deleted (e.g., when execution of the program is done), other\n globals referenced by the ``__del__()`` method may already have\n been deleted or in the process of being torn down (e.g. the\n import machinery shutting down). For this reason, ``__del__()``\n methods should do the absolute minimum needed to maintain\n external invariants. Starting with version 1.5, Python\n guarantees that globals whose name begins with a single\n underscore are deleted from their module before other globals are\n deleted; if no other references to such globals exist, this may\n help in assuring that imported modules are still available at the\n time when the ``__del__()`` method is called.\n\nobject.__repr__(self)\n\n Called by the ``repr()`` built-in function to compute the\n "official" string representation of an object. If at all possible,\n this should look like a valid Python expression that could be used\n to recreate an object with the same value (given an appropriate\n environment). If this is not possible, a string of the form\n ``<...some useful description...>`` should be returned. The return\n value must be a string object. If a class defines ``__repr__()``\n but not ``__str__()``, then ``__repr__()`` is also used when an\n "informal" string representation of instances of that class is\n required.\n\n This is typically used for debugging, so it is important that the\n representation is information-rich and unambiguous.\n\nobject.__str__(self)\n\n Called by the ``str()`` built-in function and by the ``print()``\n function to compute the "informal" string representation of an\n object. This differs from ``__repr__()`` in that it does not have\n to be a valid Python expression: a more convenient or concise\n representation may be used instead. The return value must be a\n string object.\n\nobject.__format__(self, format_spec)\n\n Called by the ``format()`` built-in function (and by extension, the\n ``format()`` method of class ``str``) to produce a "formatted"\n string representation of an object. The ``format_spec`` argument is\n a string that contains a description of the formatting options\n desired. The interpretation of the ``format_spec`` argument is up\n to the type implementing ``__format__()``, however most classes\n will either delegate formatting to one of the built-in types, or\n use a similar formatting option syntax.\n\n See *Format Specification Mini-Language* for a description of the\n standard formatting syntax.\n\n The return value must be a string object.\n\nobject.__lt__(self, other)\nobject.__le__(self, other)\nobject.__eq__(self, other)\nobject.__ne__(self, other)\nobject.__gt__(self, other)\nobject.__ge__(self, other)\n\n These are the so-called "rich comparison" methods. The\n correspondence between operator symbols and method names is as\n follows: ``xy`` calls ``x.__gt__(y)``, and ``x>=y`` calls\n ``x.__ge__(y)``.\n\n A rich comparison method may return the singleton\n ``NotImplemented`` if it does not implement the operation for a\n given pair of arguments. By convention, ``False`` and ``True`` are\n returned for a successful comparison. However, these methods can\n return any value, so if the comparison operator is used in a\n Boolean context (e.g., in the condition of an ``if`` statement),\n Python will call ``bool()`` on the value to determine if the result\n is true or false.\n\n There are no implied relationships among the comparison operators.\n The truth of ``x==y`` does not imply that ``x!=y`` is false.\n Accordingly, when defining ``__eq__()``, one should also define\n ``__ne__()`` so that the operators will behave as expected. See\n the paragraph on ``__hash__()`` for some important notes on\n creating *hashable* objects which support custom comparison\n operations and are usable as dictionary keys.\n\n There are no swapped-argument versions of these methods (to be used\n when the left argument does not support the operation but the right\n argument does); rather, ``__lt__()`` and ``__gt__()`` are each\n other\'s reflection, ``__le__()`` and ``__ge__()`` are each other\'s\n reflection, and ``__eq__()`` and ``__ne__()`` are their own\n reflection.\n\n Arguments to rich comparison methods are never coerced.\n\n To automatically generate ordering operations from a single root\n operation, see ``functools.total_ordering()``.\n\nobject.__hash__(self)\n\n Called by built-in function ``hash()`` and for operations on\n members of hashed collections including ``set``, ``frozenset``, and\n ``dict``. ``__hash__()`` should return an integer. The only\n required property is that objects which compare equal have the same\n hash value; it is advised to somehow mix together (e.g. using\n exclusive or) the hash values for the components of the object that\n also play a part in comparison of objects.\n\n If a class does not define an ``__eq__()`` method it should not\n define a ``__hash__()`` operation either; if it defines\n ``__eq__()`` but not ``__hash__()``, its instances will not be\n usable as items in hashable collections. If a class defines\n mutable objects and implements an ``__eq__()`` method, it should\n not implement ``__hash__()``, since the implementation of hashable\n collections requires that a key\'s hash value is immutable (if the\n object\'s hash value changes, it will be in the wrong hash bucket).\n\n User-defined classes have ``__eq__()`` and ``__hash__()`` methods\n by default; with them, all objects compare unequal (except with\n themselves) and ``x.__hash__()`` returns ``id(x)``.\n\n Classes which inherit a ``__hash__()`` method from a parent class\n but change the meaning of ``__eq__()`` such that the hash value\n returned is no longer appropriate (e.g. by switching to a value-\n based concept of equality instead of the default identity based\n equality) can explicitly flag themselves as being unhashable by\n setting ``__hash__ = None`` in the class definition. Doing so means\n that not only will instances of the class raise an appropriate\n ``TypeError`` when a program attempts to retrieve their hash value,\n but they will also be correctly identified as unhashable when\n checking ``isinstance(obj, collections.Hashable)`` (unlike classes\n which define their own ``__hash__()`` to explicitly raise\n ``TypeError``).\n\n If a class that overrides ``__eq__()`` needs to retain the\n implementation of ``__hash__()`` from a parent class, the\n interpreter must be told this explicitly by setting ``__hash__ =\n .__hash__``. Otherwise the inheritance of\n ``__hash__()`` will be blocked, just as if ``__hash__`` had been\n explicitly set to ``None``.\n\nobject.__bool__(self)\n\n Called to implement truth value testing and the built-in operation\n ``bool()``; should return ``False`` or ``True``. When this method\n is not defined, ``__len__()`` is called, if it is defined, and the\n object is considered true if its result is nonzero. If a class\n defines neither ``__len__()`` nor ``__bool__()``, all its instances\n are considered true.\n', - 'debugger': '\n``pdb`` --- The Python Debugger\n*******************************\n\nThe module ``pdb`` defines an interactive source code debugger for\nPython programs. It supports setting (conditional) breakpoints and\nsingle stepping at the source line level, inspection of stack frames,\nsource code listing, and evaluation of arbitrary Python code in the\ncontext of any stack frame. It also supports post-mortem debugging\nand can be called under program control.\n\nThe debugger is extensible -- it is actually defined as the class\n``Pdb``. This is currently undocumented but easily understood by\nreading the source. The extension interface uses the modules ``bdb``\nand ``cmd``.\n\nThe debugger\'s prompt is ``(Pdb)``. Typical usage to run a program\nunder control of the debugger is:\n\n >>> import pdb\n >>> import mymodule\n >>> pdb.run(\'mymodule.test()\')\n > (0)?()\n (Pdb) continue\n > (1)?()\n (Pdb) continue\n NameError: \'spam\'\n > (1)?()\n (Pdb)\n\n``pdb.py`` can also be invoked as a script to debug other scripts.\nFor example:\n\n python3 -m pdb myscript.py\n\nWhen invoked as a script, pdb will automatically enter post-mortem\ndebugging if the program being debugged exits abnormally. After post-\nmortem debugging (or after normal exit of the program), pdb will\nrestart the program. Automatic restarting preserves pdb\'s state (such\nas breakpoints) and in most cases is more useful than quitting the\ndebugger upon program\'s exit.\n\nNew in version 3.2: ``pdb.py`` now accepts a ``-c`` option that\nexecutes commands as if given in a ``.pdbrc`` file, see *Debugger\nCommands*.\n\nThe typical usage to break into the debugger from a running program is\nto insert\n\n import pdb; pdb.set_trace()\n\nat the location you want to break into the debugger. You can then\nstep through the code following this statement, and continue running\nwithout the debugger using the ``continue`` command.\n\nThe typical usage to inspect a crashed program is:\n\n >>> import pdb\n >>> import mymodule\n >>> mymodule.test()\n Traceback (most recent call last):\n File "", line 1, in ?\n File "./mymodule.py", line 4, in test\n test2()\n File "./mymodule.py", line 3, in test2\n print(spam)\n NameError: spam\n >>> pdb.pm()\n > ./mymodule.py(3)test2()\n -> print(spam)\n (Pdb)\n\nThe module defines the following functions; each enters the debugger\nin a slightly different way:\n\npdb.run(statement, globals=None, locals=None)\n\n Execute the *statement* (given as a string or a code object) under\n debugger control. The debugger prompt appears before any code is\n executed; you can set breakpoints and type ``continue``, or you can\n step through the statement using ``step`` or ``next`` (all these\n commands are explained below). The optional *globals* and *locals*\n arguments specify the environment in which the code is executed; by\n default the dictionary of the module ``__main__`` is used. (See\n the explanation of the built-in ``exec()`` or ``eval()``\n functions.)\n\npdb.runeval(expression, globals=None, locals=None)\n\n Evaluate the *expression* (given as a string or a code object)\n under debugger control. When ``runeval()`` returns, it returns the\n value of the expression. Otherwise this function is similar to\n ``run()``.\n\npdb.runcall(function, *args, **kwds)\n\n Call the *function* (a function or method object, not a string)\n with the given arguments. When ``runcall()`` returns, it returns\n whatever the function call returned. The debugger prompt appears\n as soon as the function is entered.\n\npdb.set_trace()\n\n Enter the debugger at the calling stack frame. This is useful to\n hard-code a breakpoint at a given point in a program, even if the\n code is not otherwise being debugged (e.g. when an assertion\n fails).\n\npdb.post_mortem(traceback=None)\n\n Enter post-mortem debugging of the given *traceback* object. If no\n *traceback* is given, it uses the one of the exception that is\n currently being handled (an exception must be being handled if the\n default is to be used).\n\npdb.pm()\n\n Enter post-mortem debugging of the traceback found in\n ``sys.last_traceback``.\n\nThe ``run_*`` functions and ``set_trace()`` are aliases for\ninstantiating the ``Pdb`` class and calling the method of the same\nname. If you want to access further features, you have to do this\nyourself:\n\nclass class pdb.Pdb(completekey=\'tab\', stdin=None, stdout=None, skip=None, nosigint=False)\n\n ``Pdb`` is the debugger class.\n\n The *completekey*, *stdin* and *stdout* arguments are passed to the\n underlying ``cmd.Cmd`` class; see the description there.\n\n The *skip* argument, if given, must be an iterable of glob-style\n module name patterns. The debugger will not step into frames that\n originate in a module that matches one of these patterns. [1]\n\n By default, Pdb sets a handler for the SIGINT signal (which is sent\n when the user presses Ctrl-C on the console) when you give a\n ``continue`` command. This allows you to break into the debugger\n again by pressing Ctrl-C. If you want Pdb not to touch the SIGINT\n handler, set *nosigint* tot true.\n\n Example call to enable tracing with *skip*:\n\n import pdb; pdb.Pdb(skip=[\'django.*\']).set_trace()\n\n New in version 3.1: The *skip* argument.\n\n New in version 3.2: The *nosigint* argument. Previously, a SIGINT\n handler was never set by Pdb.\n\n run(statement, globals=None, locals=None)\n runeval(expression, globals=None, locals=None)\n runcall(function, *args, **kwds)\n set_trace()\n\n See the documentation for the functions explained above.\n\n\nDebugger Commands\n=================\n\nThe commands recognized by the debugger are listed below. Most\ncommands can be abbreviated to one or two letters as indicated; e.g.\n``h(elp)`` means that either ``h`` or ``help`` can be used to enter\nthe help command (but not ``he`` or ``hel``, nor ``H`` or ``Help`` or\n``HELP``). Arguments to commands must be separated by whitespace\n(spaces or tabs). Optional arguments are enclosed in square brackets\n(``[]``) in the command syntax; the square brackets must not be typed.\nAlternatives in the command syntax are separated by a vertical bar\n(``|``).\n\nEntering a blank line repeats the last command entered. Exception: if\nthe last command was a ``list`` command, the next 11 lines are listed.\n\nCommands that the debugger doesn\'t recognize are assumed to be Python\nstatements and are executed in the context of the program being\ndebugged. Python statements can also be prefixed with an exclamation\npoint (``!``). This is a powerful way to inspect the program being\ndebugged; it is even possible to change a variable or call a function.\nWhen an exception occurs in such a statement, the exception name is\nprinted but the debugger\'s state is not changed.\n\nThe debugger supports *aliases*. Aliases can have parameters which\nallows one a certain level of adaptability to the context under\nexamination.\n\nMultiple commands may be entered on a single line, separated by\n``;;``. (A single ``;`` is not used as it is the separator for\nmultiple commands in a line that is passed to the Python parser.) No\nintelligence is applied to separating the commands; the input is split\nat the first ``;;`` pair, even if it is in the middle of a quoted\nstring.\n\nIf a file ``.pdbrc`` exists in the user\'s home directory or in the\ncurrent directory, it is read in and executed as if it had been typed\nat the debugger prompt. This is particularly useful for aliases. If\nboth files exist, the one in the home directory is read first and\naliases defined there can be overridden by the local file.\n\nChanged in version 3.2: ``.pdbrc`` can now contain commands that\ncontinue debugging, such as ``continue`` or ``next``. Previously,\nthese commands had no effect.\n\nh(elp) [command]\n\n Without argument, print the list of available commands. With a\n *command* as argument, print help about that command. ``help pdb``\n displays the full documentation (the docstring of the ``pdb``\n module). Since the *command* argument must be an identifier,\n ``help exec`` must be entered to get help on the ``!`` command.\n\nw(here)\n\n Print a stack trace, with the most recent frame at the bottom. An\n arrow indicates the current frame, which determines the context of\n most commands.\n\nd(own) [count]\n\n Move the current frame *count* (default one) levels down in the\n stack trace (to a newer frame).\n\nu(p) [count]\n\n Move the current frame *count* (default one) levels up in the stack\n trace (to an older frame).\n\nb(reak) [([filename:]lineno | function) [, condition]]\n\n With a *lineno* argument, set a break there in the current file.\n With a *function* argument, set a break at the first executable\n statement within that function. The line number may be prefixed\n with a filename and a colon, to specify a breakpoint in another\n file (probably one that hasn\'t been loaded yet). The file is\n searched on ``sys.path``. Note that each breakpoint is assigned a\n number to which all the other breakpoint commands refer.\n\n If a second argument is present, it is an expression which must\n evaluate to true before the breakpoint is honored.\n\n Without argument, list all breaks, including for each breakpoint,\n the number of times that breakpoint has been hit, the current\n ignore count, and the associated condition if any.\n\ntbreak [([filename:]lineno | function) [, condition]]\n\n Temporary breakpoint, which is removed automatically when it is\n first hit. The arguments are the same as for ``break``.\n\ncl(ear) [filename:lineno | bpnumber [bpnumber ...]]\n\n With a *filename:lineno* argument, clear all the breakpoints at\n this line. With a space separated list of breakpoint numbers, clear\n those breakpoints. Without argument, clear all breaks (but first\n ask confirmation).\n\ndisable [bpnumber [bpnumber ...]]\n\n Disable the breakpoints given as a space separated list of\n breakpoint numbers. Disabling a breakpoint means it cannot cause\n the program to stop execution, but unlike clearing a breakpoint, it\n remains in the list of breakpoints and can be (re-)enabled.\n\nenable [bpnumber [bpnumber ...]]\n\n Enable the breakpoints specified.\n\nignore bpnumber [count]\n\n Set the ignore count for the given breakpoint number. If count is\n omitted, the ignore count is set to 0. A breakpoint becomes active\n when the ignore count is zero. When non-zero, the count is\n decremented each time the breakpoint is reached and the breakpoint\n is not disabled and any associated condition evaluates to true.\n\ncondition bpnumber [condition]\n\n Set a new *condition* for the breakpoint, an expression which must\n evaluate to true before the breakpoint is honored. If *condition*\n is absent, any existing condition is removed; i.e., the breakpoint\n is made unconditional.\n\ncommands [bpnumber]\n\n Specify a list of commands for breakpoint number *bpnumber*. The\n commands themselves appear on the following lines. Type a line\n containing just ``end`` to terminate the commands. An example:\n\n (Pdb) commands 1\n (com) print some_variable\n (com) end\n (Pdb)\n\n To remove all commands from a breakpoint, type commands and follow\n it immediately with ``end``; that is, give no commands.\n\n With no *bpnumber* argument, commands refers to the last breakpoint\n set.\n\n You can use breakpoint commands to start your program up again.\n Simply use the continue command, or step, or any other command that\n resumes execution.\n\n Specifying any command resuming execution (currently continue,\n step, next, return, jump, quit and their abbreviations) terminates\n the command list (as if that command was immediately followed by\n end). This is because any time you resume execution (even with a\n simple next or step), you may encounter another breakpoint--which\n could have its own command list, leading to ambiguities about which\n list to execute.\n\n If you use the \'silent\' command in the command list, the usual\n message about stopping at a breakpoint is not printed. This may be\n desirable for breakpoints that are to print a specific message and\n then continue. If none of the other commands print anything, you\n see no sign that the breakpoint was reached.\n\ns(tep)\n\n Execute the current line, stop at the first possible occasion\n (either in a function that is called or on the next line in the\n current function).\n\nn(ext)\n\n Continue execution until the next line in the current function is\n reached or it returns. (The difference between ``next`` and\n ``step`` is that ``step`` stops inside a called function, while\n ``next`` executes called functions at (nearly) full speed, only\n stopping at the next line in the current function.)\n\nunt(il) [lineno]\n\n Without argument, continue execution until the line with a number\n greater than the current one is reached.\n\n With a line number, continue execution until a line with a number\n greater or equal to that is reached. In both cases, also stop when\n the current frame returns.\n\n Changed in version 3.2: Allow giving an explicit line number.\n\nr(eturn)\n\n Continue execution until the current function returns.\n\nc(ont(inue))\n\n Continue execution, only stop when a breakpoint is encountered.\n\nj(ump) lineno\n\n Set the next line that will be executed. Only available in the\n bottom-most frame. This lets you jump back and execute code again,\n or jump forward to skip code that you don\'t want to run.\n\n It should be noted that not all jumps are allowed -- for instance\n it is not possible to jump into the middle of a ``for`` loop or out\n of a ``finally`` clause.\n\nl(ist) [first[, last]]\n\n List source code for the current file. Without arguments, list 11\n lines around the current line or continue the previous listing.\n With ``.`` as argument, list 11 lines around the current line.\n With one argument, list 11 lines around at that line. With two\n arguments, list the given range; if the second argument is less\n than the first, it is interpreted as a count.\n\n The current line in the current frame is indicated by ``->``. If\n an exception is being debugged, the line where the exception was\n originally raised or propagated is indicated by ``>>``, if it\n differs from the current line.\n\n New in version 3.2: The ``>>`` marker.\n\nll | longlist\n\n List all source code for the current function or frame.\n Interesting lines are marked as for ``list``.\n\n New in version 3.2.\n\na(rgs)\n\n Print the argument list of the current function.\n\np(rint) expression\n\n Evaluate the *expression* in the current context and print its\n value.\n\npp expression\n\n Like the ``print`` command, except the value of the expression is\n pretty-printed using the ``pprint`` module.\n\nwhatis expression\n\n Print the type of the *expression*.\n\nsource expression\n\n Try to get source code for the given object and display it.\n\n New in version 3.2.\n\ndisplay [expression]\n\n Display the value of the expression if it changed, each time\n execution stops in the current frame.\n\n Without expression, list all display expressions for the current\n frame.\n\n New in version 3.2.\n\nundisplay [expression]\n\n Do not display the expression any more in the current frame.\n Without expression, clear all display expressions for the current\n frame.\n\n New in version 3.2.\n\ninteract\n\n Start an interative interpreter (using the ``code`` module) whose\n global namespace contains all the (global and local) names found in\n the current scope.\n\n New in version 3.2.\n\nalias [name [command]]\n\n Create an alias called *name* that executes *command*. The command\n must *not* be enclosed in quotes. Replaceable parameters can be\n indicated by ``%1``, ``%2``, and so on, while ``%*`` is replaced by\n all the parameters. If no command is given, the current alias for\n *name* is shown. If no arguments are given, all aliases are listed.\n\n Aliases may be nested and can contain anything that can be legally\n typed at the pdb prompt. Note that internal pdb commands *can* be\n overridden by aliases. Such a command is then hidden until the\n alias is removed. Aliasing is recursively applied to the first\n word of the command line; all other words in the line are left\n alone.\n\n As an example, here are two useful aliases (especially when placed\n in the ``.pdbrc`` file):\n\n # Print instance variables (usage "pi classInst")\n alias pi for k in %1.__dict__.keys(): print("%1.",k,"=",%1.__dict__[k])\n # Print instance variables in self\n alias ps pi self\n\nunalias name\n\n Delete the specified alias.\n\n! statement\n\n Execute the (one-line) *statement* in the context of the current\n stack frame. The exclamation point can be omitted unless the first\n word of the statement resembles a debugger command. To set a\n global variable, you can prefix the assignment command with a\n ``global`` statement on the same line, e.g.:\n\n (Pdb) global list_options; list_options = [\'-l\']\n (Pdb)\n\nrun [args ...]\nrestart [args ...]\n\n Restart the debugged Python program. If an argument is supplied,\n it is split with ``shlex`` and the result is used as the new\n ``sys.argv``. History, breakpoints, actions and debugger options\n are preserved. ``restart`` is an alias for ``run``.\n\nq(uit)\n\n Quit from the debugger. The program being executed is aborted.\n\n-[ Footnotes ]-\n\n[1] Whether a frame is considered to originate in a certain module is\n determined by the ``__name__`` in the frame globals.\n', + 'debugger': '\n``pdb`` --- The Python Debugger\n*******************************\n\nThe module ``pdb`` defines an interactive source code debugger for\nPython programs. It supports setting (conditional) breakpoints and\nsingle stepping at the source line level, inspection of stack frames,\nsource code listing, and evaluation of arbitrary Python code in the\ncontext of any stack frame. It also supports post-mortem debugging\nand can be called under program control.\n\nThe debugger is extensible -- it is actually defined as the class\n``Pdb``. This is currently undocumented but easily understood by\nreading the source. The extension interface uses the modules ``bdb``\nand ``cmd``.\n\nThe debugger\'s prompt is ``(Pdb)``. Typical usage to run a program\nunder control of the debugger is:\n\n >>> import pdb\n >>> import mymodule\n >>> pdb.run(\'mymodule.test()\')\n > (0)?()\n (Pdb) continue\n > (1)?()\n (Pdb) continue\n NameError: \'spam\'\n > (1)?()\n (Pdb)\n\n``pdb.py`` can also be invoked as a script to debug other scripts.\nFor example:\n\n python3 -m pdb myscript.py\n\nWhen invoked as a script, pdb will automatically enter post-mortem\ndebugging if the program being debugged exits abnormally. After post-\nmortem debugging (or after normal exit of the program), pdb will\nrestart the program. Automatic restarting preserves pdb\'s state (such\nas breakpoints) and in most cases is more useful than quitting the\ndebugger upon program\'s exit.\n\nNew in version 3.2: ``pdb.py`` now accepts a ``-c`` option that\nexecutes commands as if given in a ``.pdbrc`` file, see *Debugger\nCommands*.\n\nThe typical usage to break into the debugger from a running program is\nto insert\n\n import pdb; pdb.set_trace()\n\nat the location you want to break into the debugger. You can then\nstep through the code following this statement, and continue running\nwithout the debugger using the ``continue`` command.\n\nThe typical usage to inspect a crashed program is:\n\n >>> import pdb\n >>> import mymodule\n >>> mymodule.test()\n Traceback (most recent call last):\n File "", line 1, in ?\n File "./mymodule.py", line 4, in test\n test2()\n File "./mymodule.py", line 3, in test2\n print(spam)\n NameError: spam\n >>> pdb.pm()\n > ./mymodule.py(3)test2()\n -> print(spam)\n (Pdb)\n\nThe module defines the following functions; each enters the debugger\nin a slightly different way:\n\npdb.run(statement, globals=None, locals=None)\n\n Execute the *statement* (given as a string or a code object) under\n debugger control. The debugger prompt appears before any code is\n executed; you can set breakpoints and type ``continue``, or you can\n step through the statement using ``step`` or ``next`` (all these\n commands are explained below). The optional *globals* and *locals*\n arguments specify the environment in which the code is executed; by\n default the dictionary of the module ``__main__`` is used. (See\n the explanation of the built-in ``exec()`` or ``eval()``\n functions.)\n\npdb.runeval(expression, globals=None, locals=None)\n\n Evaluate the *expression* (given as a string or a code object)\n under debugger control. When ``runeval()`` returns, it returns the\n value of the expression. Otherwise this function is similar to\n ``run()``.\n\npdb.runcall(function, *args, **kwds)\n\n Call the *function* (a function or method object, not a string)\n with the given arguments. When ``runcall()`` returns, it returns\n whatever the function call returned. The debugger prompt appears\n as soon as the function is entered.\n\npdb.set_trace()\n\n Enter the debugger at the calling stack frame. This is useful to\n hard-code a breakpoint at a given point in a program, even if the\n code is not otherwise being debugged (e.g. when an assertion\n fails).\n\npdb.post_mortem(traceback=None)\n\n Enter post-mortem debugging of the given *traceback* object. If no\n *traceback* is given, it uses the one of the exception that is\n currently being handled (an exception must be being handled if the\n default is to be used).\n\npdb.pm()\n\n Enter post-mortem debugging of the traceback found in\n ``sys.last_traceback``.\n\nThe ``run*`` functions and ``set_trace()`` are aliases for\ninstantiating the ``Pdb`` class and calling the method of the same\nname. If you want to access further features, you have to do this\nyourself:\n\nclass class pdb.Pdb(completekey=\'tab\', stdin=None, stdout=None, skip=None, nosigint=False)\n\n ``Pdb`` is the debugger class.\n\n The *completekey*, *stdin* and *stdout* arguments are passed to the\n underlying ``cmd.Cmd`` class; see the description there.\n\n The *skip* argument, if given, must be an iterable of glob-style\n module name patterns. The debugger will not step into frames that\n originate in a module that matches one of these patterns. [1]\n\n By default, Pdb sets a handler for the SIGINT signal (which is sent\n when the user presses Ctrl-C on the console) when you give a\n ``continue`` command. This allows you to break into the debugger\n again by pressing Ctrl-C. If you want Pdb not to touch the SIGINT\n handler, set *nosigint* tot true.\n\n Example call to enable tracing with *skip*:\n\n import pdb; pdb.Pdb(skip=[\'django.*\']).set_trace()\n\n New in version 3.1: The *skip* argument.\n\n New in version 3.2: The *nosigint* argument. Previously, a SIGINT\n handler was never set by Pdb.\n\n run(statement, globals=None, locals=None)\n runeval(expression, globals=None, locals=None)\n runcall(function, *args, **kwds)\n set_trace()\n\n See the documentation for the functions explained above.\n\n\nDebugger Commands\n=================\n\nThe commands recognized by the debugger are listed below. Most\ncommands can be abbreviated to one or two letters as indicated; e.g.\n``h(elp)`` means that either ``h`` or ``help`` can be used to enter\nthe help command (but not ``he`` or ``hel``, nor ``H`` or ``Help`` or\n``HELP``). Arguments to commands must be separated by whitespace\n(spaces or tabs). Optional arguments are enclosed in square brackets\n(``[]``) in the command syntax; the square brackets must not be typed.\nAlternatives in the command syntax are separated by a vertical bar\n(``|``).\n\nEntering a blank line repeats the last command entered. Exception: if\nthe last command was a ``list`` command, the next 11 lines are listed.\n\nCommands that the debugger doesn\'t recognize are assumed to be Python\nstatements and are executed in the context of the program being\ndebugged. Python statements can also be prefixed with an exclamation\npoint (``!``). This is a powerful way to inspect the program being\ndebugged; it is even possible to change a variable or call a function.\nWhen an exception occurs in such a statement, the exception name is\nprinted but the debugger\'s state is not changed.\n\nThe debugger supports *aliases*. Aliases can have parameters which\nallows one a certain level of adaptability to the context under\nexamination.\n\nMultiple commands may be entered on a single line, separated by\n``;;``. (A single ``;`` is not used as it is the separator for\nmultiple commands in a line that is passed to the Python parser.) No\nintelligence is applied to separating the commands; the input is split\nat the first ``;;`` pair, even if it is in the middle of a quoted\nstring.\n\nIf a file ``.pdbrc`` exists in the user\'s home directory or in the\ncurrent directory, it is read in and executed as if it had been typed\nat the debugger prompt. This is particularly useful for aliases. If\nboth files exist, the one in the home directory is read first and\naliases defined there can be overridden by the local file.\n\nChanged in version 3.2: ``.pdbrc`` can now contain commands that\ncontinue debugging, such as ``continue`` or ``next``. Previously,\nthese commands had no effect.\n\nh(elp) [command]\n\n Without argument, print the list of available commands. With a\n *command* as argument, print help about that command. ``help pdb``\n displays the full documentation (the docstring of the ``pdb``\n module). Since the *command* argument must be an identifier,\n ``help exec`` must be entered to get help on the ``!`` command.\n\nw(here)\n\n Print a stack trace, with the most recent frame at the bottom. An\n arrow indicates the current frame, which determines the context of\n most commands.\n\nd(own) [count]\n\n Move the current frame *count* (default one) levels down in the\n stack trace (to a newer frame).\n\nu(p) [count]\n\n Move the current frame *count* (default one) levels up in the stack\n trace (to an older frame).\n\nb(reak) [([filename:]lineno | function) [, condition]]\n\n With a *lineno* argument, set a break there in the current file.\n With a *function* argument, set a break at the first executable\n statement within that function. The line number may be prefixed\n with a filename and a colon, to specify a breakpoint in another\n file (probably one that hasn\'t been loaded yet). The file is\n searched on ``sys.path``. Note that each breakpoint is assigned a\n number to which all the other breakpoint commands refer.\n\n If a second argument is present, it is an expression which must\n evaluate to true before the breakpoint is honored.\n\n Without argument, list all breaks, including for each breakpoint,\n the number of times that breakpoint has been hit, the current\n ignore count, and the associated condition if any.\n\ntbreak [([filename:]lineno | function) [, condition]]\n\n Temporary breakpoint, which is removed automatically when it is\n first hit. The arguments are the same as for ``break``.\n\ncl(ear) [filename:lineno | bpnumber [bpnumber ...]]\n\n With a *filename:lineno* argument, clear all the breakpoints at\n this line. With a space separated list of breakpoint numbers, clear\n those breakpoints. Without argument, clear all breaks (but first\n ask confirmation).\n\ndisable [bpnumber [bpnumber ...]]\n\n Disable the breakpoints given as a space separated list of\n breakpoint numbers. Disabling a breakpoint means it cannot cause\n the program to stop execution, but unlike clearing a breakpoint, it\n remains in the list of breakpoints and can be (re-)enabled.\n\nenable [bpnumber [bpnumber ...]]\n\n Enable the breakpoints specified.\n\nignore bpnumber [count]\n\n Set the ignore count for the given breakpoint number. If count is\n omitted, the ignore count is set to 0. A breakpoint becomes active\n when the ignore count is zero. When non-zero, the count is\n decremented each time the breakpoint is reached and the breakpoint\n is not disabled and any associated condition evaluates to true.\n\ncondition bpnumber [condition]\n\n Set a new *condition* for the breakpoint, an expression which must\n evaluate to true before the breakpoint is honored. If *condition*\n is absent, any existing condition is removed; i.e., the breakpoint\n is made unconditional.\n\ncommands [bpnumber]\n\n Specify a list of commands for breakpoint number *bpnumber*. The\n commands themselves appear on the following lines. Type a line\n containing just ``end`` to terminate the commands. An example:\n\n (Pdb) commands 1\n (com) print some_variable\n (com) end\n (Pdb)\n\n To remove all commands from a breakpoint, type commands and follow\n it immediately with ``end``; that is, give no commands.\n\n With no *bpnumber* argument, commands refers to the last breakpoint\n set.\n\n You can use breakpoint commands to start your program up again.\n Simply use the continue command, or step, or any other command that\n resumes execution.\n\n Specifying any command resuming execution (currently continue,\n step, next, return, jump, quit and their abbreviations) terminates\n the command list (as if that command was immediately followed by\n end). This is because any time you resume execution (even with a\n simple next or step), you may encounter another breakpoint--which\n could have its own command list, leading to ambiguities about which\n list to execute.\n\n If you use the \'silent\' command in the command list, the usual\n message about stopping at a breakpoint is not printed. This may be\n desirable for breakpoints that are to print a specific message and\n then continue. If none of the other commands print anything, you\n see no sign that the breakpoint was reached.\n\ns(tep)\n\n Execute the current line, stop at the first possible occasion\n (either in a function that is called or on the next line in the\n current function).\n\nn(ext)\n\n Continue execution until the next line in the current function is\n reached or it returns. (The difference between ``next`` and\n ``step`` is that ``step`` stops inside a called function, while\n ``next`` executes called functions at (nearly) full speed, only\n stopping at the next line in the current function.)\n\nunt(il) [lineno]\n\n Without argument, continue execution until the line with a number\n greater than the current one is reached.\n\n With a line number, continue execution until a line with a number\n greater or equal to that is reached. In both cases, also stop when\n the current frame returns.\n\n Changed in version 3.2: Allow giving an explicit line number.\n\nr(eturn)\n\n Continue execution until the current function returns.\n\nc(ont(inue))\n\n Continue execution, only stop when a breakpoint is encountered.\n\nj(ump) lineno\n\n Set the next line that will be executed. Only available in the\n bottom-most frame. This lets you jump back and execute code again,\n or jump forward to skip code that you don\'t want to run.\n\n It should be noted that not all jumps are allowed -- for instance\n it is not possible to jump into the middle of a ``for`` loop or out\n of a ``finally`` clause.\n\nl(ist) [first[, last]]\n\n List source code for the current file. Without arguments, list 11\n lines around the current line or continue the previous listing.\n With ``.`` as argument, list 11 lines around the current line.\n With one argument, list 11 lines around at that line. With two\n arguments, list the given range; if the second argument is less\n than the first, it is interpreted as a count.\n\n The current line in the current frame is indicated by ``->``. If\n an exception is being debugged, the line where the exception was\n originally raised or propagated is indicated by ``>>``, if it\n differs from the current line.\n\n New in version 3.2: The ``>>`` marker.\n\nll | longlist\n\n List all source code for the current function or frame.\n Interesting lines are marked as for ``list``.\n\n New in version 3.2.\n\na(rgs)\n\n Print the argument list of the current function.\n\np(rint) expression\n\n Evaluate the *expression* in the current context and print its\n value.\n\npp expression\n\n Like the ``print`` command, except the value of the expression is\n pretty-printed using the ``pprint`` module.\n\nwhatis expression\n\n Print the type of the *expression*.\n\nsource expression\n\n Try to get source code for the given object and display it.\n\n New in version 3.2.\n\ndisplay [expression]\n\n Display the value of the expression if it changed, each time\n execution stops in the current frame.\n\n Without expression, list all display expressions for the current\n frame.\n\n New in version 3.2.\n\nundisplay [expression]\n\n Do not display the expression any more in the current frame.\n Without expression, clear all display expressions for the current\n frame.\n\n New in version 3.2.\n\ninteract\n\n Start an interative interpreter (using the ``code`` module) whose\n global namespace contains all the (global and local) names found in\n the current scope.\n\n New in version 3.2.\n\nalias [name [command]]\n\n Create an alias called *name* that executes *command*. The command\n must *not* be enclosed in quotes. Replaceable parameters can be\n indicated by ``%1``, ``%2``, and so on, while ``%*`` is replaced by\n all the parameters. If no command is given, the current alias for\n *name* is shown. If no arguments are given, all aliases are listed.\n\n Aliases may be nested and can contain anything that can be legally\n typed at the pdb prompt. Note that internal pdb commands *can* be\n overridden by aliases. Such a command is then hidden until the\n alias is removed. Aliasing is recursively applied to the first\n word of the command line; all other words in the line are left\n alone.\n\n As an example, here are two useful aliases (especially when placed\n in the ``.pdbrc`` file):\n\n # Print instance variables (usage "pi classInst")\n alias pi for k in %1.__dict__.keys(): print("%1.",k,"=",%1.__dict__[k])\n # Print instance variables in self\n alias ps pi self\n\nunalias name\n\n Delete the specified alias.\n\n! statement\n\n Execute the (one-line) *statement* in the context of the current\n stack frame. The exclamation point can be omitted unless the first\n word of the statement resembles a debugger command. To set a\n global variable, you can prefix the assignment command with a\n ``global`` statement on the same line, e.g.:\n\n (Pdb) global list_options; list_options = [\'-l\']\n (Pdb)\n\nrun [args ...]\nrestart [args ...]\n\n Restart the debugged Python program. If an argument is supplied,\n it is split with ``shlex`` and the result is used as the new\n ``sys.argv``. History, breakpoints, actions and debugger options\n are preserved. ``restart`` is an alias for ``run``.\n\nq(uit)\n\n Quit from the debugger. The program being executed is aborted.\n\n-[ Footnotes ]-\n\n[1] Whether a frame is considered to originate in a certain module is\n determined by the ``__name__`` in the frame globals.\n', 'del': '\nThe ``del`` statement\n*********************\n\n del_stmt ::= "del" target_list\n\nDeletion is recursively defined very similar to the way assignment is\ndefined. Rather that spelling it out in full details, here are some\nhints.\n\nDeletion of a target list recursively deletes each target, from left\nto right.\n\nDeletion of a name removes the binding of that name from the local or\nglobal namespace, depending on whether the name occurs in a ``global``\nstatement in the same code block. If the name is unbound, a\n``NameError`` exception will be raised.\n\nDeletion of attribute references, subscriptions and slicings is passed\nto the primary object involved; deletion of a slicing is in general\nequivalent to assignment of an empty slice of the right type (but even\nthis is determined by the sliced object).\n\nChanged in version 3.2.\n', 'dict': '\nDictionary displays\n*******************\n\nA dictionary display is a possibly empty series of key/datum pairs\nenclosed in curly braces:\n\n dict_display ::= "{" [key_datum_list | dict_comprehension] "}"\n key_datum_list ::= key_datum ("," key_datum)* [","]\n key_datum ::= expression ":" expression\n dict_comprehension ::= expression ":" expression comp_for\n\nA dictionary display yields a new dictionary object.\n\nIf a comma-separated sequence of key/datum pairs is given, they are\nevaluated from left to right to define the entries of the dictionary:\neach key object is used as a key into the dictionary to store the\ncorresponding datum. This means that you can specify the same key\nmultiple times in the key/datum list, and the final dictionary\'s value\nfor that key will be the last one given.\n\nA dict comprehension, in contrast to list and set comprehensions,\nneeds two expressions separated with a colon followed by the usual\n"for" and "if" clauses. When the comprehension is run, the resulting\nkey and value elements are inserted in the new dictionary in the order\nthey are produced.\n\nRestrictions on the types of the key values are listed earlier in\nsection *The standard type hierarchy*. (To summarize, the key type\nshould be *hashable*, which excludes all mutable objects.) Clashes\nbetween duplicate keys are not detected; the last datum (textually\nrightmost in the display) stored for a given key value prevails.\n', 'dynamic-features': '\nInteraction with dynamic features\n*********************************\n\nThere are several cases where Python statements are illegal when used\nin conjunction with nested scopes that contain free variables.\n\nIf a variable is referenced in an enclosing scope, it is illegal to\ndelete the name. An error will be reported at compile time.\n\nIf the wild card form of import --- ``import *`` --- is used in a\nfunction and the function contains or is a nested block with free\nvariables, the compiler will raise a ``SyntaxError``.\n\nThe ``eval()`` and ``exec()`` functions do not have access to the full\nenvironment for resolving names. Names may be resolved in the local\nand global namespaces of the caller. Free variables are not resolved\nin the nearest enclosing namespace, but in the global namespace. [1]\nThe ``exec()`` and ``eval()`` functions have optional arguments to\noverride the global and local namespace. If only one namespace is\nspecified, it is used for both.\n', 'else': '\nThe ``if`` statement\n********************\n\nThe ``if`` statement is used for conditional execution:\n\n if_stmt ::= "if" expression ":" suite\n ( "elif" expression ":" suite )*\n ["else" ":" suite]\n\nIt selects exactly one of the suites by evaluating the expressions one\nby one until one is found to be true (see section *Boolean operations*\nfor the definition of true and false); then that suite is executed\n(and no other part of the ``if`` statement is executed or evaluated).\nIf all expressions are false, the suite of the ``else`` clause, if\npresent, is executed.\n', 'exceptions': '\nExceptions\n**********\n\nExceptions are a means of breaking out of the normal flow of control\nof a code block in order to handle errors or other exceptional\nconditions. An exception is *raised* at the point where the error is\ndetected; it may be *handled* by the surrounding code block or by any\ncode block that directly or indirectly invoked the code block where\nthe error occurred.\n\nThe Python interpreter raises an exception when it detects a run-time\nerror (such as division by zero). A Python program can also\nexplicitly raise an exception with the ``raise`` statement. Exception\nhandlers are specified with the ``try`` ... ``except`` statement. The\n``finally`` clause of such a statement can be used to specify cleanup\ncode which does not handle the exception, but is executed whether an\nexception occurred or not in the preceding code.\n\nPython uses the "termination" model of error handling: an exception\nhandler can find out what happened and continue execution at an outer\nlevel, but it cannot repair the cause of the error and retry the\nfailing operation (except by re-entering the offending piece of code\nfrom the top).\n\nWhen an exception is not handled at all, the interpreter terminates\nexecution of the program, or returns to its interactive main loop. In\neither case, it prints a stack backtrace, except when the exception is\n``SystemExit``.\n\nExceptions are identified by class instances. The ``except`` clause\nis selected depending on the class of the instance: it must reference\nthe class of the instance or a base class thereof. The instance can\nbe received by the handler and can carry additional information about\nthe exceptional condition.\n\nNote: Exception messages are not part of the Python API. Their contents\n may change from one version of Python to the next without warning\n and should not be relied on by code which will run under multiple\n versions of the interpreter.\n\nSee also the description of the ``try`` statement in section *The try\nstatement* and ``raise`` statement in section *The raise statement*.\n\n-[ Footnotes ]-\n\n[1] This limitation occurs because the code that is executed by these\n operations is not available at the time the module is compiled.\n', - 'execmodel': '\nExecution model\n***************\n\n\nNaming and binding\n==================\n\n*Names* refer to objects. Names are introduced by name binding\noperations. Each occurrence of a name in the program text refers to\nthe *binding* of that name established in the innermost function block\ncontaining the use.\n\nA *block* is a piece of Python program text that is executed as a\nunit. The following are blocks: a module, a function body, and a class\ndefinition. Each command typed interactively is a block. A script\nfile (a file given as standard input to the interpreter or specified\non the interpreter command line the first argument) is a code block.\nA script command (a command specified on the interpreter command line\nwith the \'**-c**\' option) is a code block. The string argument passed\nto the built-in functions ``eval()`` and ``exec()`` is a code block.\n\nA code block is executed in an *execution frame*. A frame contains\nsome administrative information (used for debugging) and determines\nwhere and how execution continues after the code block\'s execution has\ncompleted.\n\nA *scope* defines the visibility of a name within a block. If a local\nvariable is defined in a block, its scope includes that block. If the\ndefinition occurs in a function block, the scope extends to any blocks\ncontained within the defining one, unless a contained block introduces\na different binding for the name. The scope of names defined in a\nclass block is limited to the class block; it does not extend to the\ncode blocks of methods -- this includes comprehensions and generator\nexpressions since they are implemented using a function scope. This\nmeans that the following will fail:\n\n class A:\n a = 42\n b = list(a + i for i in range(10))\n\nWhen a name is used in a code block, it is resolved using the nearest\nenclosing scope. The set of all such scopes visible to a code block\nis called the block\'s *environment*.\n\nIf a name is bound in a block, it is a local variable of that block,\nunless declared as ``nonlocal``. If a name is bound at the module\nlevel, it is a global variable. (The variables of the module code\nblock are local and global.) If a variable is used in a code block\nbut not defined there, it is a *free variable*.\n\nWhen a name is not found at all, a ``NameError`` exception is raised.\nIf the name refers to a local variable that has not been bound, a\n``UnboundLocalError`` exception is raised. ``UnboundLocalError`` is a\nsubclass of ``NameError``.\n\nThe following constructs bind names: formal parameters to functions,\n``import`` statements, class and function definitions (these bind the\nclass or function name in the defining block), and targets that are\nidentifiers if occurring in an assignment, ``for`` loop header, or\nafter ``as`` in a ``with`` statement or ``except`` clause. The\n``import`` statement of the form ``from ... import *`` binds all names\ndefined in the imported module, except those beginning with an\nunderscore. This form may only be used at the module level.\n\nA target occurring in a ``del`` statement is also considered bound for\nthis purpose (though the actual semantics are to unbind the name). It\nis illegal to unbind a name that is referenced by an enclosing scope;\nthe compiler will report a ``SyntaxError``.\n\nEach assignment or import statement occurs within a block defined by a\nclass or function definition or at the module level (the top-level\ncode block).\n\nIf a name binding operation occurs anywhere within a code block, all\nuses of the name within the block are treated as references to the\ncurrent block. This can lead to errors when a name is used within a\nblock before it is bound. This rule is subtle. Python lacks\ndeclarations and allows name binding operations to occur anywhere\nwithin a code block. The local variables of a code block can be\ndetermined by scanning the entire text of the block for name binding\noperations.\n\nIf the ``global`` statement occurs within a block, all uses of the\nname specified in the statement refer to the binding of that name in\nthe top-level namespace. Names are resolved in the top-level\nnamespace by searching the global namespace, i.e. the namespace of the\nmodule containing the code block, and the builtins namespace, the\nnamespace of the module ``builtins``. The global namespace is\nsearched first. If the name is not found there, the builtins\nnamespace is searched. The global statement must precede all uses of\nthe name.\n\nThe builtins namespace associated with the execution of a code block\nis actually found by looking up the name ``__builtins__`` in its\nglobal namespace; this should be a dictionary or a module (in the\nlatter case the module\'s dictionary is used). By default, when in the\n``__main__`` module, ``__builtins__`` is the built-in module\n``builtins``; when in any other module, ``__builtins__`` is an alias\nfor the dictionary of the ``builtins`` module itself.\n``__builtins__`` can be set to a user-created dictionary to create a\nweak form of restricted execution.\n\n**CPython implementation detail:** Users should not touch\n``__builtins__``; it is strictly an implementation detail. Users\nwanting to override values in the builtins namespace should ``import``\nthe ``builtins`` module and modify its attributes appropriately.\n\nThe namespace for a module is automatically created the first time a\nmodule is imported. The main module for a script is always called\n``__main__``.\n\nThe global statement has the same scope as a name binding operation in\nthe same block. If the nearest enclosing scope for a free variable\ncontains a global statement, the free variable is treated as a global.\n\nA class definition is an executable statement that may use and define\nnames. These references follow the normal rules for name resolution.\nThe namespace of the class definition becomes the attribute dictionary\nof the class. Names defined at the class scope are not visible in\nmethods.\n\n\nInteraction with dynamic features\n---------------------------------\n\nThere are several cases where Python statements are illegal when used\nin conjunction with nested scopes that contain free variables.\n\nIf a variable is referenced in an enclosing scope, it is illegal to\ndelete the name. An error will be reported at compile time.\n\nIf the wild card form of import --- ``import *`` --- is used in a\nfunction and the function contains or is a nested block with free\nvariables, the compiler will raise a ``SyntaxError``.\n\nThe ``eval()`` and ``exec()`` functions do not have access to the full\nenvironment for resolving names. Names may be resolved in the local\nand global namespaces of the caller. Free variables are not resolved\nin the nearest enclosing namespace, but in the global namespace. [1]\nThe ``exec()`` and ``eval()`` functions have optional arguments to\noverride the global and local namespace. If only one namespace is\nspecified, it is used for both.\n\n\nExceptions\n==========\n\nExceptions are a means of breaking out of the normal flow of control\nof a code block in order to handle errors or other exceptional\nconditions. An exception is *raised* at the point where the error is\ndetected; it may be *handled* by the surrounding code block or by any\ncode block that directly or indirectly invoked the code block where\nthe error occurred.\n\nThe Python interpreter raises an exception when it detects a run-time\nerror (such as division by zero). A Python program can also\nexplicitly raise an exception with the ``raise`` statement. Exception\nhandlers are specified with the ``try`` ... ``except`` statement. The\n``finally`` clause of such a statement can be used to specify cleanup\ncode which does not handle the exception, but is executed whether an\nexception occurred or not in the preceding code.\n\nPython uses the "termination" model of error handling: an exception\nhandler can find out what happened and continue execution at an outer\nlevel, but it cannot repair the cause of the error and retry the\nfailing operation (except by re-entering the offending piece of code\nfrom the top).\n\nWhen an exception is not handled at all, the interpreter terminates\nexecution of the program, or returns to its interactive main loop. In\neither case, it prints a stack backtrace, except when the exception is\n``SystemExit``.\n\nExceptions are identified by class instances. The ``except`` clause\nis selected depending on the class of the instance: it must reference\nthe class of the instance or a base class thereof. The instance can\nbe received by the handler and can carry additional information about\nthe exceptional condition.\n\nNote: Exception messages are not part of the Python API. Their contents\n may change from one version of Python to the next without warning\n and should not be relied on by code which will run under multiple\n versions of the interpreter.\n\nSee also the description of the ``try`` statement in section *The try\nstatement* and ``raise`` statement in section *The raise statement*.\n\n-[ Footnotes ]-\n\n[1] This limitation occurs because the code that is executed by these\n operations is not available at the time the module is compiled.\n', + 'execmodel': '\nExecution model\n***************\n\n\nNaming and binding\n==================\n\n*Names* refer to objects. Names are introduced by name binding\noperations. Each occurrence of a name in the program text refers to\nthe *binding* of that name established in the innermost function block\ncontaining the use.\n\nA *block* is a piece of Python program text that is executed as a\nunit. The following are blocks: a module, a function body, and a class\ndefinition. Each command typed interactively is a block. A script\nfile (a file given as standard input to the interpreter or specified\non the interpreter command line the first argument) is a code block.\nA script command (a command specified on the interpreter command line\nwith the \'**-c**\' option) is a code block. The string argument passed\nto the built-in functions ``eval()`` and ``exec()`` is a code block.\n\nA code block is executed in an *execution frame*. A frame contains\nsome administrative information (used for debugging) and determines\nwhere and how execution continues after the code block\'s execution has\ncompleted.\n\nA *scope* defines the visibility of a name within a block. If a local\nvariable is defined in a block, its scope includes that block. If the\ndefinition occurs in a function block, the scope extends to any blocks\ncontained within the defining one, unless a contained block introduces\na different binding for the name. The scope of names defined in a\nclass block is limited to the class block; it does not extend to the\ncode blocks of methods -- this includes comprehensions and generator\nexpressions since they are implemented using a function scope. This\nmeans that the following will fail:\n\n class A:\n a = 42\n b = list(a + i for i in range(10))\n\nWhen a name is used in a code block, it is resolved using the nearest\nenclosing scope. The set of all such scopes visible to a code block\nis called the block\'s *environment*.\n\nIf a name is bound in a block, it is a local variable of that block,\nunless declared as ``nonlocal``. If a name is bound at the module\nlevel, it is a global variable. (The variables of the module code\nblock are local and global.) If a variable is used in a code block\nbut not defined there, it is a *free variable*.\n\nWhen a name is not found at all, a ``NameError`` exception is raised.\nIf the name refers to a local variable that has not been bound, a\n``UnboundLocalError`` exception is raised. ``UnboundLocalError`` is a\nsubclass of ``NameError``.\n\nThe following constructs bind names: formal parameters to functions,\n``import`` statements, class and function definitions (these bind the\nclass or function name in the defining block), and targets that are\nidentifiers if occurring in an assignment, ``for`` loop header, or\nafter ``as`` in a ``with`` statement or ``except`` clause. The\n``import`` statement of the form ``from ... import *`` binds all names\ndefined in the imported module, except those beginning with an\nunderscore. This form may only be used at the module level.\n\nA target occurring in a ``del`` statement is also considered bound for\nthis purpose (though the actual semantics are to unbind the name). It\nis illegal to unbind a name that is referenced by an enclosing scope;\nthe compiler will report a ``SyntaxError``.\n\nEach assignment or import statement occurs within a block defined by a\nclass or function definition or at the module level (the top-level\ncode block).\n\nIf a name binding operation occurs anywhere within a code block, all\nuses of the name within the block are treated as references to the\ncurrent block. This can lead to errors when a name is used within a\nblock before it is bound. This rule is subtle. Python lacks\ndeclarations and allows name binding operations to occur anywhere\nwithin a code block. The local variables of a code block can be\ndetermined by scanning the entire text of the block for name binding\noperations.\n\nIf the ``global`` statement occurs within a block, all uses of the\nname specified in the statement refer to the binding of that name in\nthe top-level namespace. Names are resolved in the top-level\nnamespace by searching the global namespace, i.e. the namespace of the\nmodule containing the code block, and the builtins namespace, the\nnamespace of the module ``builtins``. The global namespace is\nsearched first. If the name is not found there, the builtins\nnamespace is searched. The global statement must precede all uses of\nthe name.\n\nThe builtins namespace associated with the execution of a code block\nis actually found by looking up the name ``__builtins__`` in its\nglobal namespace; this should be a dictionary or a module (in the\nlatter case the module\'s dictionary is used). By default, when in the\n``__main__`` module, ``__builtins__`` is the built-in module\n``builtins``; when in any other module, ``__builtins__`` is an alias\nfor the dictionary of the ``builtins`` module itself.\n``__builtins__`` can be set to a user-created dictionary to create a\nweak form of restricted execution.\n\n**CPython implementation detail:** Users should not touch\n``__builtins__``; it is strictly an implementation detail. Users\nwanting to override values in the builtins namespace should ``import``\nthe ``builtins`` module and modify its attributes appropriately.\n\nThe namespace for a module is automatically created the first time a\nmodule is imported. The main module for a script is always called\n``__main__``.\n\nThe ``global`` statement has the same scope as a name binding\noperation in the same block. If the nearest enclosing scope for a\nfree variable contains a global statement, the free variable is\ntreated as a global.\n\nA class definition is an executable statement that may use and define\nnames. These references follow the normal rules for name resolution.\nThe namespace of the class definition becomes the attribute dictionary\nof the class. Names defined at the class scope are not visible in\nmethods.\n\n\nInteraction with dynamic features\n---------------------------------\n\nThere are several cases where Python statements are illegal when used\nin conjunction with nested scopes that contain free variables.\n\nIf a variable is referenced in an enclosing scope, it is illegal to\ndelete the name. An error will be reported at compile time.\n\nIf the wild card form of import --- ``import *`` --- is used in a\nfunction and the function contains or is a nested block with free\nvariables, the compiler will raise a ``SyntaxError``.\n\nThe ``eval()`` and ``exec()`` functions do not have access to the full\nenvironment for resolving names. Names may be resolved in the local\nand global namespaces of the caller. Free variables are not resolved\nin the nearest enclosing namespace, but in the global namespace. [1]\nThe ``exec()`` and ``eval()`` functions have optional arguments to\noverride the global and local namespace. If only one namespace is\nspecified, it is used for both.\n\n\nExceptions\n==========\n\nExceptions are a means of breaking out of the normal flow of control\nof a code block in order to handle errors or other exceptional\nconditions. An exception is *raised* at the point where the error is\ndetected; it may be *handled* by the surrounding code block or by any\ncode block that directly or indirectly invoked the code block where\nthe error occurred.\n\nThe Python interpreter raises an exception when it detects a run-time\nerror (such as division by zero). A Python program can also\nexplicitly raise an exception with the ``raise`` statement. Exception\nhandlers are specified with the ``try`` ... ``except`` statement. The\n``finally`` clause of such a statement can be used to specify cleanup\ncode which does not handle the exception, but is executed whether an\nexception occurred or not in the preceding code.\n\nPython uses the "termination" model of error handling: an exception\nhandler can find out what happened and continue execution at an outer\nlevel, but it cannot repair the cause of the error and retry the\nfailing operation (except by re-entering the offending piece of code\nfrom the top).\n\nWhen an exception is not handled at all, the interpreter terminates\nexecution of the program, or returns to its interactive main loop. In\neither case, it prints a stack backtrace, except when the exception is\n``SystemExit``.\n\nExceptions are identified by class instances. The ``except`` clause\nis selected depending on the class of the instance: it must reference\nthe class of the instance or a base class thereof. The instance can\nbe received by the handler and can carry additional information about\nthe exceptional condition.\n\nNote: Exception messages are not part of the Python API. Their contents\n may change from one version of Python to the next without warning\n and should not be relied on by code which will run under multiple\n versions of the interpreter.\n\nSee also the description of the ``try`` statement in section *The try\nstatement* and ``raise`` statement in section *The raise statement*.\n\n-[ Footnotes ]-\n\n[1] This limitation occurs because the code that is executed by these\n operations is not available at the time the module is compiled.\n', 'exprlists': '\nExpression lists\n****************\n\n expression_list ::= expression ( "," expression )* [","]\n\nAn expression list containing at least one comma yields a tuple. The\nlength of the tuple is the number of expressions in the list. The\nexpressions are evaluated from left to right.\n\nThe trailing comma is required only to create a single tuple (a.k.a. a\n*singleton*); it is optional in all other cases. A single expression\nwithout a trailing comma doesn\'t create a tuple, but rather yields the\nvalue of that expression. (To create an empty tuple, use an empty pair\nof parentheses: ``()``.)\n', 'floating': '\nFloating point literals\n***********************\n\nFloating point literals are described by the following lexical\ndefinitions:\n\n floatnumber ::= pointfloat | exponentfloat\n pointfloat ::= [intpart] fraction | intpart "."\n exponentfloat ::= (intpart | pointfloat) exponent\n intpart ::= digit+\n fraction ::= "." digit+\n exponent ::= ("e" | "E") ["+" | "-"] digit+\n\nNote that the integer and exponent parts are always interpreted using\nradix 10. For example, ``077e010`` is legal, and denotes the same\nnumber as ``77e10``. The allowed range of floating point literals is\nimplementation-dependent. Some examples of floating point literals:\n\n 3.14 10. .001 1e100 3.14e-10 0e0\n\nNote that numeric literals do not include a sign; a phrase like ``-1``\nis actually an expression composed of the unary operator ``-`` and the\nliteral ``1``.\n', 'for': '\nThe ``for`` statement\n*********************\n\nThe ``for`` statement is used to iterate over the elements of a\nsequence (such as a string, tuple or list) or other iterable object:\n\n for_stmt ::= "for" target_list "in" expression_list ":" suite\n ["else" ":" suite]\n\nThe expression list is evaluated once; it should yield an iterable\nobject. An iterator is created for the result of the\n``expression_list``. The suite is then executed once for each item\nprovided by the iterator, in the order of ascending indices. Each\nitem in turn is assigned to the target list using the standard rules\nfor assignments (see *Assignment statements*), and then the suite is\nexecuted. When the items are exhausted (which is immediately when the\nsequence is empty or an iterator raises a ``StopIteration``\nexception), the suite in the ``else`` clause, if present, is executed,\nand the loop terminates.\n\nA ``break`` statement executed in the first suite terminates the loop\nwithout executing the ``else`` clause\'s suite. A ``continue``\nstatement executed in the first suite skips the rest of the suite and\ncontinues with the next item, or with the ``else`` clause if there was\nno next item.\n\nThe suite may assign to the variable(s) in the target list; this does\nnot affect the next item assigned to it.\n\nNames in the target list are not deleted when the loop is finished,\nbut if the sequence is empty, it will not have been assigned to at all\nby the loop. Hint: the built-in function ``range()`` returns an\niterator of integers suitable to emulate the effect of Pascal\'s ``for\ni := a to b do``; e.g., ``list(range(3))`` returns the list ``[0, 1,\n2]``.\n\nNote: There is a subtlety when the sequence is being modified by the loop\n (this can only occur for mutable sequences, i.e. lists). An\n internal counter is used to keep track of which item is used next,\n and this is incremented on each iteration. When this counter has\n reached the length of the sequence the loop terminates. This means\n that if the suite deletes the current (or a previous) item from the\n sequence, the next item will be skipped (since it gets the index of\n the current item which has already been treated). Likewise, if the\n suite inserts an item in the sequence before the current item, the\n current item will be treated again the next time through the loop.\n This can lead to nasty bugs that can be avoided by making a\n temporary copy using a slice of the whole sequence, e.g.,\n\n for x in a[:]:\n if x < 0: a.remove(x)\n', - 'formatstrings': '\nFormat String Syntax\n********************\n\nThe ``str.format()`` method and the ``Formatter`` class share the same\nsyntax for format strings (although in the case of ``Formatter``,\nsubclasses can define their own format string syntax).\n\nFormat strings contain "replacement fields" surrounded by curly braces\n``{}``. Anything that is not contained in braces is considered literal\ntext, which is copied unchanged to the output. If you need to include\na brace character in the literal text, it can be escaped by doubling:\n``{{`` and ``}}``.\n\nThe grammar for a replacement field is as follows:\n\n replacement_field ::= "{" [field_name] ["!" conversion] [":" format_spec] "}"\n field_name ::= arg_name ("." attribute_name | "[" element_index "]")*\n arg_name ::= [identifier | integer]\n attribute_name ::= identifier\n element_index ::= integer | index_string\n index_string ::= +\n conversion ::= "r" | "s" | "a"\n format_spec ::= \n\nIn less formal terms, the replacement field can start with a\n*field_name* that specifies the object whose value is to be formatted\nand inserted into the output instead of the replacement field. The\n*field_name* is optionally followed by a *conversion* field, which is\npreceded by an exclamation point ``\'!\'``, and a *format_spec*, which\nis preceded by a colon ``\':\'``. These specify a non-default format\nfor the replacement value.\n\nSee also the *Format Specification Mini-Language* section.\n\nThe *field_name* itself begins with an *arg_name* that is either\neither a number or a keyword. If it\'s a number, it refers to a\npositional argument, and if it\'s a keyword, it refers to a named\nkeyword argument. If the numerical arg_names in a format string are\n0, 1, 2, ... in sequence, they can all be omitted (not just some) and\nthe numbers 0, 1, 2, ... will be automatically inserted in that order.\nThe *arg_name* can be followed by any number of index or attribute\nexpressions. An expression of the form ``\'.name\'`` selects the named\nattribute using ``getattr()``, while an expression of the form\n``\'[index]\'`` does an index lookup using ``__getitem__()``.\n\nChanged in version 3.1: The positional argument specifiers can be\nomitted, so ``\'{} {}\'`` is equivalent to ``\'{0} {1}\'``.\n\nSome simple format string examples:\n\n "First, thou shalt count to {0}" # References first positional argument\n "Bring me a {}" # Implicitly references the first positional argument\n "From {} to {}" # Same as "From {0} to {1}"\n "My quest is {name}" # References keyword argument \'name\'\n "Weight in tons {0.weight}" # \'weight\' attribute of first positional arg\n "Units destroyed: {players[0]}" # First element of keyword argument \'players\'.\n\nThe *conversion* field causes a type coercion before formatting.\nNormally, the job of formatting a value is done by the\n``__format__()`` method of the value itself. However, in some cases\nit is desirable to force a type to be formatted as a string,\noverriding its own definition of formatting. By converting the value\nto a string before calling ``__format__()``, the normal formatting\nlogic is bypassed.\n\nThree conversion flags are currently supported: ``\'!s\'`` which calls\n``str()`` on the value, ``\'!r\'`` which calls ``repr()`` and ``\'!a\'``\nwhich calls ``ascii()``.\n\nSome examples:\n\n "Harold\'s a clever {0!s}" # Calls str() on the argument first\n "Bring out the holy {name!r}" # Calls repr() on the argument first\n "More {!a}" # Calls ascii() on the argument first\n\nThe *format_spec* field contains a specification of how the value\nshould be presented, including such details as field width, alignment,\npadding, decimal precision and so on. Each value type can define its\nown "formatting mini-language" or interpretation of the *format_spec*.\n\nMost built-in types support a common formatting mini-language, which\nis described in the next section.\n\nA *format_spec* field can also include nested replacement fields\nwithin it. These nested replacement fields can contain only a field\nname; conversion flags and format specifications are not allowed. The\nreplacement fields within the format_spec are substituted before the\n*format_spec* string is interpreted. This allows the formatting of a\nvalue to be dynamically specified.\n\nSee the *Format examples* section for some examples.\n\n\nFormat Specification Mini-Language\n==================================\n\n"Format specifications" are used within replacement fields contained\nwithin a format string to define how individual values are presented\n(see *Format String Syntax*). They can also be passed directly to the\nbuilt-in ``format()`` function. Each formattable type may define how\nthe format specification is to be interpreted.\n\nMost built-in types implement the following options for format\nspecifications, although some of the formatting options are only\nsupported by the numeric types.\n\nA general convention is that an empty format string (``""``) produces\nthe same result as if you had called ``str()`` on the value. A non-\nempty format string typically modifies the result.\n\nThe general form of a *standard format specifier* is:\n\n format_spec ::= [[fill]align][sign][#][0][width][,][.precision][type]\n fill ::= \n align ::= "<" | ">" | "=" | "^"\n sign ::= "+" | "-" | " "\n width ::= integer\n precision ::= integer\n type ::= "b" | "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "n" | "o" | "s" | "x" | "X" | "%"\n\nThe *fill* character can be any character other than \'{\' or \'}\'. The\npresence of a fill character is signaled by the character following\nit, which must be one of the alignment options. If the second\ncharacter of *format_spec* is not a valid alignment option, then it is\nassumed that both the fill character and the alignment option are\nabsent.\n\nThe meaning of the various alignment options is as follows:\n\n +-----------+------------------------------------------------------------+\n | Option | Meaning |\n +===========+============================================================+\n | ``\'<\'`` | Forces the field to be left-aligned within the available |\n | | space (this is the default). |\n +-----------+------------------------------------------------------------+\n | ``\'>\'`` | Forces the field to be right-aligned within the available |\n | | space. |\n +-----------+------------------------------------------------------------+\n | ``\'=\'`` | Forces the padding to be placed after the sign (if any) |\n | | but before the digits. This is used for printing fields |\n | | in the form \'+000000120\'. This alignment option is only |\n | | valid for numeric types. |\n +-----------+------------------------------------------------------------+\n | ``\'^\'`` | Forces the field to be centered within the available |\n | | space. |\n +-----------+------------------------------------------------------------+\n\nNote that unless a minimum field width is defined, the field width\nwill always be the same size as the data to fill it, so that the\nalignment option has no meaning in this case.\n\nThe *sign* option is only valid for number types, and can be one of\nthe following:\n\n +-----------+------------------------------------------------------------+\n | Option | Meaning |\n +===========+============================================================+\n | ``\'+\'`` | indicates that a sign should be used for both positive as |\n | | well as negative numbers. |\n +-----------+------------------------------------------------------------+\n | ``\'-\'`` | indicates that a sign should be used only for negative |\n | | numbers (this is the default behavior). |\n +-----------+------------------------------------------------------------+\n | space | indicates that a leading space should be used on positive |\n | | numbers, and a minus sign on negative numbers. |\n +-----------+------------------------------------------------------------+\n\nThe ``\'#\'`` option causes the "alternate form" to be used for the\nconversion. The alternate form is defined differently for different\ntypes. This option is only valid for integer, float, complex and\nDecimal types. For integers, when binary, octal, or hexadecimal output\nis used, this option adds the prefix respective ``\'0b\'``, ``\'0o\'``, or\n``\'0x\'`` to the output value. For floats, complex and Decimal the\nalternate form causes the result of the conversion to always contain a\ndecimal-point character, even if no digits follow it. Normally, a\ndecimal-point character appears in the result of these conversions\nonly if a digit follows it. In addition, for ``\'g\'`` and ``\'G\'``\nconversions, trailing zeros are not removed from the result.\n\nThe ``\',\'`` option signals the use of a comma for a thousands\nseparator. For a locale aware separator, use the ``\'n\'`` integer\npresentation type instead.\n\nChanged in version 3.1: Added the ``\',\'`` option (see also **PEP\n378**).\n\n*width* is a decimal integer defining the minimum field width. If not\nspecified, then the field width will be determined by the content.\n\nIf the *width* field is preceded by a zero (``\'0\'``) character, this\nenables zero-padding. This is equivalent to an *alignment* type of\n``\'=\'`` and a *fill* character of ``\'0\'``.\n\nThe *precision* is a decimal number indicating how many digits should\nbe displayed after the decimal point for a floating point value\nformatted with ``\'f\'`` and ``\'F\'``, or before and after the decimal\npoint for a floating point value formatted with ``\'g\'`` or ``\'G\'``.\nFor non-number types the field indicates the maximum field size - in\nother words, how many characters will be used from the field content.\nThe *precision* is not allowed for integer values.\n\nFinally, the *type* determines how the data should be presented.\n\nThe available string presentation types are:\n\n +-----------+------------------------------------------------------------+\n | Type | Meaning |\n +===========+============================================================+\n | ``\'s\'`` | String format. This is the default type for strings and |\n | | may be omitted. |\n +-----------+------------------------------------------------------------+\n | None | The same as ``\'s\'``. |\n +-----------+------------------------------------------------------------+\n\nThe available integer presentation types are:\n\n +-----------+------------------------------------------------------------+\n | Type | Meaning |\n +===========+============================================================+\n | ``\'b\'`` | Binary format. Outputs the number in base 2. |\n +-----------+------------------------------------------------------------+\n | ``\'c\'`` | Character. Converts the integer to the corresponding |\n | | unicode character before printing. |\n +-----------+------------------------------------------------------------+\n | ``\'d\'`` | Decimal Integer. Outputs the number in base 10. |\n +-----------+------------------------------------------------------------+\n | ``\'o\'`` | Octal format. Outputs the number in base 8. |\n +-----------+------------------------------------------------------------+\n | ``\'x\'`` | Hex format. Outputs the number in base 16, using lower- |\n | | case letters for the digits above 9. |\n +-----------+------------------------------------------------------------+\n | ``\'X\'`` | Hex format. Outputs the number in base 16, using upper- |\n | | case letters for the digits above 9. |\n +-----------+------------------------------------------------------------+\n | ``\'n\'`` | Number. This is the same as ``\'d\'``, except that it uses |\n | | the current locale setting to insert the appropriate |\n | | number separator characters. |\n +-----------+------------------------------------------------------------+\n | None | The same as ``\'d\'``. |\n +-----------+------------------------------------------------------------+\n\nIn addition to the above presentation types, integers can be formatted\nwith the floating point presentation types listed below (except\n``\'n\'`` and None). When doing so, ``float()`` is used to convert the\ninteger to a floating point number before formatting.\n\nThe available presentation types for floating point and decimal values\nare:\n\n +-----------+------------------------------------------------------------+\n | Type | Meaning |\n +===========+============================================================+\n | ``\'e\'`` | Exponent notation. Prints the number in scientific |\n | | notation using the letter \'e\' to indicate the exponent. |\n +-----------+------------------------------------------------------------+\n | ``\'E\'`` | Exponent notation. Same as ``\'e\'`` except it uses an upper |\n | | case \'E\' as the separator character. |\n +-----------+------------------------------------------------------------+\n | ``\'f\'`` | Fixed point. Displays the number as a fixed-point number. |\n +-----------+------------------------------------------------------------+\n | ``\'F\'`` | Fixed point. Same as ``\'f\'``, but converts ``nan`` to |\n | | ``NAN`` and ``inf`` to ``INF``. |\n +-----------+------------------------------------------------------------+\n | ``\'g\'`` | General format. For a given precision ``p >= 1``, this |\n | | rounds the number to ``p`` significant digits and then |\n | | formats the result in either fixed-point format or in |\n | | scientific notation, depending on its magnitude. The |\n | | precise rules are as follows: suppose that the result |\n | | formatted with presentation type ``\'e\'`` and precision |\n | | ``p-1`` would have exponent ``exp``. Then if ``-4 <= exp |\n | | < p``, the number is formatted with presentation type |\n | | ``\'f\'`` and precision ``p-1-exp``. Otherwise, the number |\n | | is formatted with presentation type ``\'e\'`` and precision |\n | | ``p-1``. In both cases insignificant trailing zeros are |\n | | removed from the significand, and the decimal point is |\n | | also removed if there are no remaining digits following |\n | | it. Positive and negative infinity, positive and negative |\n | | zero, and nans, are formatted as ``inf``, ``-inf``, ``0``, |\n | | ``-0`` and ``nan`` respectively, regardless of the |\n | | precision. A precision of ``0`` is treated as equivalent |\n | | to a precision of ``1``. |\n +-----------+------------------------------------------------------------+\n | ``\'G\'`` | General format. Same as ``\'g\'`` except switches to ``\'E\'`` |\n | | if the number gets too large. The representations of |\n | | infinity and NaN are uppercased, too. |\n +-----------+------------------------------------------------------------+\n | ``\'n\'`` | Number. This is the same as ``\'g\'``, except that it uses |\n | | the current locale setting to insert the appropriate |\n | | number separator characters. |\n +-----------+------------------------------------------------------------+\n | ``\'%\'`` | Percentage. Multiplies the number by 100 and displays in |\n | | fixed (``\'f\'``) format, followed by a percent sign. |\n +-----------+------------------------------------------------------------+\n | None | Similar to ``\'g\'``, except with at least one digit past |\n | | the decimal point and a default precision of 12. This is |\n | | intended to match ``str()``, except you can add the other |\n | | format modifiers. |\n +-----------+------------------------------------------------------------+\n\n\nFormat examples\n===============\n\nThis section contains examples of the new format syntax and comparison\nwith the old ``%``-formatting.\n\nIn most of the cases the syntax is similar to the old\n``%``-formatting, with the addition of the ``{}`` and with ``:`` used\ninstead of ``%``. For example, ``\'%03.2f\'`` can be translated to\n``\'{:03.2f}\'``.\n\nThe new format syntax also supports new and different options, shown\nin the follow examples.\n\nAccessing arguments by position:\n\n >>> \'{0}, {1}, {2}\'.format(\'a\', \'b\', \'c\')\n \'a, b, c\'\n >>> \'{}, {}, {}\'.format(\'a\', \'b\', \'c\') # 3.1+ only\n \'a, b, c\'\n >>> \'{2}, {1}, {0}\'.format(\'a\', \'b\', \'c\')\n \'c, b, a\'\n >>> \'{2}, {1}, {0}\'.format(*\'abc\') # unpacking argument sequence\n \'c, b, a\'\n >>> \'{0}{1}{0}\'.format(\'abra\', \'cad\') # arguments\' indices can be repeated\n \'abracadabra\'\n\nAccessing arguments by name:\n\n >>> \'Coordinates: {latitude}, {longitude}\'.format(latitude=\'37.24N\', longitude=\'-115.81W\')\n \'Coordinates: 37.24N, -115.81W\'\n >>> coord = {\'latitude\': \'37.24N\', \'longitude\': \'-115.81W\'}\n >>> \'Coordinates: {latitude}, {longitude}\'.format(**coord)\n \'Coordinates: 37.24N, -115.81W\'\n\nAccessing arguments\' attributes:\n\n >>> c = 3-5j\n >>> (\'The complex number {0} is formed from the real part {0.real} \'\n ... \'and the imaginary part {0.imag}.\').format(c)\n \'The complex number (3-5j) is formed from the real part 3.0 and the imaginary part -5.0.\'\n >>> class Point:\n ... def __init__(self, x, y):\n ... self.x, self.y = x, y\n ... def __str__(self):\n ... return \'Point({self.x}, {self.y})\'.format(self=self)\n ...\n >>> str(Point(4, 2))\n \'Point(4, 2)\'\n\nAccessing arguments\' items:\n\n >>> coord = (3, 5)\n >>> \'X: {0[0]}; Y: {0[1]}\'.format(coord)\n \'X: 3; Y: 5\'\n\nReplacing ``%s`` and ``%r``:\n\n >>> "repr() shows quotes: {!r}; str() doesn\'t: {!s}".format(\'test1\', \'test2\')\n "repr() shows quotes: \'test1\'; str() doesn\'t: test2"\n\nAligning the text and specifying a width:\n\n >>> \'{:<30}\'.format(\'left aligned\')\n \'left aligned \'\n >>> \'{:>30}\'.format(\'right aligned\')\n \' right aligned\'\n >>> \'{:^30}\'.format(\'centered\')\n \' centered \'\n >>> \'{:*^30}\'.format(\'centered\') # use \'*\' as a fill char\n \'***********centered***********\'\n\nReplacing ``%+f``, ``%-f``, and ``% f`` and specifying a sign:\n\n >>> \'{:+f}; {:+f}\'.format(3.14, -3.14) # show it always\n \'+3.140000; -3.140000\'\n >>> \'{: f}; {: f}\'.format(3.14, -3.14) # show a space for positive numbers\n \' 3.140000; -3.140000\'\n >>> \'{:-f}; {:-f}\'.format(3.14, -3.14) # show only the minus -- same as \'{:f}; {:f}\'\n \'3.140000; -3.140000\'\n\nReplacing ``%x`` and ``%o`` and converting the value to different\nbases:\n\n >>> # format also supports binary numbers\n >>> "int: {0:d}; hex: {0:x}; oct: {0:o}; bin: {0:b}".format(42)\n \'int: 42; hex: 2a; oct: 52; bin: 101010\'\n >>> # with 0x, 0o, or 0b as prefix:\n >>> "int: {0:d}; hex: {0:#x}; oct: {0:#o}; bin: {0:#b}".format(42)\n \'int: 42; hex: 0x2a; oct: 0o52; bin: 0b101010\'\n\nUsing the comma as a thousands separator:\n\n >>> \'{:,}\'.format(1234567890)\n \'1,234,567,890\'\n\nExpressing a percentage:\n\n >>> points = 19\n >>> total = 22\n >>> \'Correct answers: {:.2%}.\'.format(points/total)\n \'Correct answers: 86.36%\'\n\nUsing type-specific formatting:\n\n >>> import datetime\n >>> d = datetime.datetime(2010, 7, 4, 12, 15, 58)\n >>> \'{:%Y-%m-%d %H:%M:%S}\'.format(d)\n \'2010-07-04 12:15:58\'\n\nNesting arguments and more complex examples:\n\n >>> for align, text in zip(\'<^>\', [\'left\', \'center\', \'right\']):\n ... \'{0:{align}{fill}16}\'.format(text, fill=align, align=align)\n ...\n \'left<<<<<<<<<<<<\'\n \'^^^^^center^^^^^\'\n \'>>>>>>>>>>>right\'\n >>>\n >>> octets = [192, 168, 0, 1]\n >>> \'{:02X}{:02X}{:02X}{:02X}\'.format(*octets)\n \'C0A80001\'\n >>> int(_, 16)\n 3232235521\n >>>\n >>> width = 5\n >>> for num in range(5,12):\n ... for base in \'dXob\':\n ... print(\'{0:{width}{base}}\'.format(num, base=base, width=width), end=\' \')\n ... print()\n ...\n 5 5 5 101\n 6 6 6 110\n 7 7 7 111\n 8 8 10 1000\n 9 9 11 1001\n 10 A 12 1010\n 11 B 13 1011\n', + 'formatstrings': '\nFormat String Syntax\n********************\n\nThe ``str.format()`` method and the ``Formatter`` class share the same\nsyntax for format strings (although in the case of ``Formatter``,\nsubclasses can define their own format string syntax).\n\nFormat strings contain "replacement fields" surrounded by curly braces\n``{}``. Anything that is not contained in braces is considered literal\ntext, which is copied unchanged to the output. If you need to include\na brace character in the literal text, it can be escaped by doubling:\n``{{`` and ``}}``.\n\nThe grammar for a replacement field is as follows:\n\n replacement_field ::= "{" [field_name] ["!" conversion] [":" format_spec] "}"\n field_name ::= arg_name ("." attribute_name | "[" element_index "]")*\n arg_name ::= [identifier | integer]\n attribute_name ::= identifier\n element_index ::= integer | index_string\n index_string ::= +\n conversion ::= "r" | "s" | "a"\n format_spec ::= \n\nIn less formal terms, the replacement field can start with a\n*field_name* that specifies the object whose value is to be formatted\nand inserted into the output instead of the replacement field. The\n*field_name* is optionally followed by a *conversion* field, which is\npreceded by an exclamation point ``\'!\'``, and a *format_spec*, which\nis preceded by a colon ``\':\'``. These specify a non-default format\nfor the replacement value.\n\nSee also the *Format Specification Mini-Language* section.\n\nThe *field_name* itself begins with an *arg_name* that is either\neither a number or a keyword. If it\'s a number, it refers to a\npositional argument, and if it\'s a keyword, it refers to a named\nkeyword argument. If the numerical arg_names in a format string are\n0, 1, 2, ... in sequence, they can all be omitted (not just some) and\nthe numbers 0, 1, 2, ... will be automatically inserted in that order.\nThe *arg_name* can be followed by any number of index or attribute\nexpressions. An expression of the form ``\'.name\'`` selects the named\nattribute using ``getattr()``, while an expression of the form\n``\'[index]\'`` does an index lookup using ``__getitem__()``.\n\nChanged in version 3.1: The positional argument specifiers can be\nomitted, so ``\'{} {}\'`` is equivalent to ``\'{0} {1}\'``.\n\nSome simple format string examples:\n\n "First, thou shalt count to {0}" # References first positional argument\n "Bring me a {}" # Implicitly references the first positional argument\n "From {} to {}" # Same as "From {0} to {1}"\n "My quest is {name}" # References keyword argument \'name\'\n "Weight in tons {0.weight}" # \'weight\' attribute of first positional arg\n "Units destroyed: {players[0]}" # First element of keyword argument \'players\'.\n\nThe *conversion* field causes a type coercion before formatting.\nNormally, the job of formatting a value is done by the\n``__format__()`` method of the value itself. However, in some cases\nit is desirable to force a type to be formatted as a string,\noverriding its own definition of formatting. By converting the value\nto a string before calling ``__format__()``, the normal formatting\nlogic is bypassed.\n\nThree conversion flags are currently supported: ``\'!s\'`` which calls\n``str()`` on the value, ``\'!r\'`` which calls ``repr()`` and ``\'!a\'``\nwhich calls ``ascii()``.\n\nSome examples:\n\n "Harold\'s a clever {0!s}" # Calls str() on the argument first\n "Bring out the holy {name!r}" # Calls repr() on the argument first\n "More {!a}" # Calls ascii() on the argument first\n\nThe *format_spec* field contains a specification of how the value\nshould be presented, including such details as field width, alignment,\npadding, decimal precision and so on. Each value type can define its\nown "formatting mini-language" or interpretation of the *format_spec*.\n\nMost built-in types support a common formatting mini-language, which\nis described in the next section.\n\nA *format_spec* field can also include nested replacement fields\nwithin it. These nested replacement fields can contain only a field\nname; conversion flags and format specifications are not allowed. The\nreplacement fields within the format_spec are substituted before the\n*format_spec* string is interpreted. This allows the formatting of a\nvalue to be dynamically specified.\n\nSee the *Format examples* section for some examples.\n\n\nFormat Specification Mini-Language\n==================================\n\n"Format specifications" are used within replacement fields contained\nwithin a format string to define how individual values are presented\n(see *Format String Syntax*). They can also be passed directly to the\nbuilt-in ``format()`` function. Each formattable type may define how\nthe format specification is to be interpreted.\n\nMost built-in types implement the following options for format\nspecifications, although some of the formatting options are only\nsupported by the numeric types.\n\nA general convention is that an empty format string (``""``) produces\nthe same result as if you had called ``str()`` on the value. A non-\nempty format string typically modifies the result.\n\nThe general form of a *standard format specifier* is:\n\n format_spec ::= [[fill]align][sign][#][0][width][,][.precision][type]\n fill ::= \n align ::= "<" | ">" | "=" | "^"\n sign ::= "+" | "-" | " "\n width ::= integer\n precision ::= integer\n type ::= "b" | "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "n" | "o" | "s" | "x" | "X" | "%"\n\nThe *fill* character can be any character other than \'{\' or \'}\'. The\npresence of a fill character is signaled by the character following\nit, which must be one of the alignment options. If the second\ncharacter of *format_spec* is not a valid alignment option, then it is\nassumed that both the fill character and the alignment option are\nabsent.\n\nThe meaning of the various alignment options is as follows:\n\n +-----------+------------------------------------------------------------+\n | Option | Meaning |\n +===========+============================================================+\n | ``\'<\'`` | Forces the field to be left-aligned within the available |\n | | space (this is the default for most objects). |\n +-----------+------------------------------------------------------------+\n | ``\'>\'`` | Forces the field to be right-aligned within the available |\n | | space (this is the default for numbers). |\n +-----------+------------------------------------------------------------+\n | ``\'=\'`` | Forces the padding to be placed after the sign (if any) |\n | | but before the digits. This is used for printing fields |\n | | in the form \'+000000120\'. This alignment option is only |\n | | valid for numeric types. |\n +-----------+------------------------------------------------------------+\n | ``\'^\'`` | Forces the field to be centered within the available |\n | | space. |\n +-----------+------------------------------------------------------------+\n\nNote that unless a minimum field width is defined, the field width\nwill always be the same size as the data to fill it, so that the\nalignment option has no meaning in this case.\n\nThe *sign* option is only valid for number types, and can be one of\nthe following:\n\n +-----------+------------------------------------------------------------+\n | Option | Meaning |\n +===========+============================================================+\n | ``\'+\'`` | indicates that a sign should be used for both positive as |\n | | well as negative numbers. |\n +-----------+------------------------------------------------------------+\n | ``\'-\'`` | indicates that a sign should be used only for negative |\n | | numbers (this is the default behavior). |\n +-----------+------------------------------------------------------------+\n | space | indicates that a leading space should be used on positive |\n | | numbers, and a minus sign on negative numbers. |\n +-----------+------------------------------------------------------------+\n\nThe ``\'#\'`` option causes the "alternate form" to be used for the\nconversion. The alternate form is defined differently for different\ntypes. This option is only valid for integer, float, complex and\nDecimal types. For integers, when binary, octal, or hexadecimal output\nis used, this option adds the prefix respective ``\'0b\'``, ``\'0o\'``, or\n``\'0x\'`` to the output value. For floats, complex and Decimal the\nalternate form causes the result of the conversion to always contain a\ndecimal-point character, even if no digits follow it. Normally, a\ndecimal-point character appears in the result of these conversions\nonly if a digit follows it. In addition, for ``\'g\'`` and ``\'G\'``\nconversions, trailing zeros are not removed from the result.\n\nThe ``\',\'`` option signals the use of a comma for a thousands\nseparator. For a locale aware separator, use the ``\'n\'`` integer\npresentation type instead.\n\nChanged in version 3.1: Added the ``\',\'`` option (see also **PEP\n378**).\n\n*width* is a decimal integer defining the minimum field width. If not\nspecified, then the field width will be determined by the content.\n\nIf the *width* field is preceded by a zero (``\'0\'``) character, this\nenables zero-padding. This is equivalent to an *alignment* type of\n``\'=\'`` and a *fill* character of ``\'0\'``.\n\nThe *precision* is a decimal number indicating how many digits should\nbe displayed after the decimal point for a floating point value\nformatted with ``\'f\'`` and ``\'F\'``, or before and after the decimal\npoint for a floating point value formatted with ``\'g\'`` or ``\'G\'``.\nFor non-number types the field indicates the maximum field size - in\nother words, how many characters will be used from the field content.\nThe *precision* is not allowed for integer values.\n\nFinally, the *type* determines how the data should be presented.\n\nThe available string presentation types are:\n\n +-----------+------------------------------------------------------------+\n | Type | Meaning |\n +===========+============================================================+\n | ``\'s\'`` | String format. This is the default type for strings and |\n | | may be omitted. |\n +-----------+------------------------------------------------------------+\n | None | The same as ``\'s\'``. |\n +-----------+------------------------------------------------------------+\n\nThe available integer presentation types are:\n\n +-----------+------------------------------------------------------------+\n | Type | Meaning |\n +===========+============================================================+\n | ``\'b\'`` | Binary format. Outputs the number in base 2. |\n +-----------+------------------------------------------------------------+\n | ``\'c\'`` | Character. Converts the integer to the corresponding |\n | | unicode character before printing. |\n +-----------+------------------------------------------------------------+\n | ``\'d\'`` | Decimal Integer. Outputs the number in base 10. |\n +-----------+------------------------------------------------------------+\n | ``\'o\'`` | Octal format. Outputs the number in base 8. |\n +-----------+------------------------------------------------------------+\n | ``\'x\'`` | Hex format. Outputs the number in base 16, using lower- |\n | | case letters for the digits above 9. |\n +-----------+------------------------------------------------------------+\n | ``\'X\'`` | Hex format. Outputs the number in base 16, using upper- |\n | | case letters for the digits above 9. |\n +-----------+------------------------------------------------------------+\n | ``\'n\'`` | Number. This is the same as ``\'d\'``, except that it uses |\n | | the current locale setting to insert the appropriate |\n | | number separator characters. |\n +-----------+------------------------------------------------------------+\n | None | The same as ``\'d\'``. |\n +-----------+------------------------------------------------------------+\n\nIn addition to the above presentation types, integers can be formatted\nwith the floating point presentation types listed below (except\n``\'n\'`` and None). When doing so, ``float()`` is used to convert the\ninteger to a floating point number before formatting.\n\nThe available presentation types for floating point and decimal values\nare:\n\n +-----------+------------------------------------------------------------+\n | Type | Meaning |\n +===========+============================================================+\n | ``\'e\'`` | Exponent notation. Prints the number in scientific |\n | | notation using the letter \'e\' to indicate the exponent. |\n +-----------+------------------------------------------------------------+\n | ``\'E\'`` | Exponent notation. Same as ``\'e\'`` except it uses an upper |\n | | case \'E\' as the separator character. |\n +-----------+------------------------------------------------------------+\n | ``\'f\'`` | Fixed point. Displays the number as a fixed-point number. |\n +-----------+------------------------------------------------------------+\n | ``\'F\'`` | Fixed point. Same as ``\'f\'``, but converts ``nan`` to |\n | | ``NAN`` and ``inf`` to ``INF``. |\n +-----------+------------------------------------------------------------+\n | ``\'g\'`` | General format. For a given precision ``p >= 1``, this |\n | | rounds the number to ``p`` significant digits and then |\n | | formats the result in either fixed-point format or in |\n | | scientific notation, depending on its magnitude. The |\n | | precise rules are as follows: suppose that the result |\n | | formatted with presentation type ``\'e\'`` and precision |\n | | ``p-1`` would have exponent ``exp``. Then if ``-4 <= exp |\n | | < p``, the number is formatted with presentation type |\n | | ``\'f\'`` and precision ``p-1-exp``. Otherwise, the number |\n | | is formatted with presentation type ``\'e\'`` and precision |\n | | ``p-1``. In both cases insignificant trailing zeros are |\n | | removed from the significand, and the decimal point is |\n | | also removed if there are no remaining digits following |\n | | it. Positive and negative infinity, positive and negative |\n | | zero, and nans, are formatted as ``inf``, ``-inf``, ``0``, |\n | | ``-0`` and ``nan`` respectively, regardless of the |\n | | precision. A precision of ``0`` is treated as equivalent |\n | | to a precision of ``1``. |\n +-----------+------------------------------------------------------------+\n | ``\'G\'`` | General format. Same as ``\'g\'`` except switches to ``\'E\'`` |\n | | if the number gets too large. The representations of |\n | | infinity and NaN are uppercased, too. |\n +-----------+------------------------------------------------------------+\n | ``\'n\'`` | Number. This is the same as ``\'g\'``, except that it uses |\n | | the current locale setting to insert the appropriate |\n | | number separator characters. |\n +-----------+------------------------------------------------------------+\n | ``\'%\'`` | Percentage. Multiplies the number by 100 and displays in |\n | | fixed (``\'f\'``) format, followed by a percent sign. |\n +-----------+------------------------------------------------------------+\n | None | Similar to ``\'g\'``, except with at least one digit past |\n | | the decimal point and a default precision of 12. This is |\n | | intended to match ``str()``, except you can add the other |\n | | format modifiers. |\n +-----------+------------------------------------------------------------+\n\n\nFormat examples\n===============\n\nThis section contains examples of the new format syntax and comparison\nwith the old ``%``-formatting.\n\nIn most of the cases the syntax is similar to the old\n``%``-formatting, with the addition of the ``{}`` and with ``:`` used\ninstead of ``%``. For example, ``\'%03.2f\'`` can be translated to\n``\'{:03.2f}\'``.\n\nThe new format syntax also supports new and different options, shown\nin the follow examples.\n\nAccessing arguments by position:\n\n >>> \'{0}, {1}, {2}\'.format(\'a\', \'b\', \'c\')\n \'a, b, c\'\n >>> \'{}, {}, {}\'.format(\'a\', \'b\', \'c\') # 3.1+ only\n \'a, b, c\'\n >>> \'{2}, {1}, {0}\'.format(\'a\', \'b\', \'c\')\n \'c, b, a\'\n >>> \'{2}, {1}, {0}\'.format(*\'abc\') # unpacking argument sequence\n \'c, b, a\'\n >>> \'{0}{1}{0}\'.format(\'abra\', \'cad\') # arguments\' indices can be repeated\n \'abracadabra\'\n\nAccessing arguments by name:\n\n >>> \'Coordinates: {latitude}, {longitude}\'.format(latitude=\'37.24N\', longitude=\'-115.81W\')\n \'Coordinates: 37.24N, -115.81W\'\n >>> coord = {\'latitude\': \'37.24N\', \'longitude\': \'-115.81W\'}\n >>> \'Coordinates: {latitude}, {longitude}\'.format(**coord)\n \'Coordinates: 37.24N, -115.81W\'\n\nAccessing arguments\' attributes:\n\n >>> c = 3-5j\n >>> (\'The complex number {0} is formed from the real part {0.real} \'\n ... \'and the imaginary part {0.imag}.\').format(c)\n \'The complex number (3-5j) is formed from the real part 3.0 and the imaginary part -5.0.\'\n >>> class Point:\n ... def __init__(self, x, y):\n ... self.x, self.y = x, y\n ... def __str__(self):\n ... return \'Point({self.x}, {self.y})\'.format(self=self)\n ...\n >>> str(Point(4, 2))\n \'Point(4, 2)\'\n\nAccessing arguments\' items:\n\n >>> coord = (3, 5)\n >>> \'X: {0[0]}; Y: {0[1]}\'.format(coord)\n \'X: 3; Y: 5\'\n\nReplacing ``%s`` and ``%r``:\n\n >>> "repr() shows quotes: {!r}; str() doesn\'t: {!s}".format(\'test1\', \'test2\')\n "repr() shows quotes: \'test1\'; str() doesn\'t: test2"\n\nAligning the text and specifying a width:\n\n >>> \'{:<30}\'.format(\'left aligned\')\n \'left aligned \'\n >>> \'{:>30}\'.format(\'right aligned\')\n \' right aligned\'\n >>> \'{:^30}\'.format(\'centered\')\n \' centered \'\n >>> \'{:*^30}\'.format(\'centered\') # use \'*\' as a fill char\n \'***********centered***********\'\n\nReplacing ``%+f``, ``%-f``, and ``% f`` and specifying a sign:\n\n >>> \'{:+f}; {:+f}\'.format(3.14, -3.14) # show it always\n \'+3.140000; -3.140000\'\n >>> \'{: f}; {: f}\'.format(3.14, -3.14) # show a space for positive numbers\n \' 3.140000; -3.140000\'\n >>> \'{:-f}; {:-f}\'.format(3.14, -3.14) # show only the minus -- same as \'{:f}; {:f}\'\n \'3.140000; -3.140000\'\n\nReplacing ``%x`` and ``%o`` and converting the value to different\nbases:\n\n >>> # format also supports binary numbers\n >>> "int: {0:d}; hex: {0:x}; oct: {0:o}; bin: {0:b}".format(42)\n \'int: 42; hex: 2a; oct: 52; bin: 101010\'\n >>> # with 0x, 0o, or 0b as prefix:\n >>> "int: {0:d}; hex: {0:#x}; oct: {0:#o}; bin: {0:#b}".format(42)\n \'int: 42; hex: 0x2a; oct: 0o52; bin: 0b101010\'\n\nUsing the comma as a thousands separator:\n\n >>> \'{:,}\'.format(1234567890)\n \'1,234,567,890\'\n\nExpressing a percentage:\n\n >>> points = 19\n >>> total = 22\n >>> \'Correct answers: {:.2%}.\'.format(points/total)\n \'Correct answers: 86.36%\'\n\nUsing type-specific formatting:\n\n >>> import datetime\n >>> d = datetime.datetime(2010, 7, 4, 12, 15, 58)\n >>> \'{:%Y-%m-%d %H:%M:%S}\'.format(d)\n \'2010-07-04 12:15:58\'\n\nNesting arguments and more complex examples:\n\n >>> for align, text in zip(\'<^>\', [\'left\', \'center\', \'right\']):\n ... \'{0:{fill}{align}16}\'.format(text, fill=align, align=align)\n ...\n \'left<<<<<<<<<<<<\'\n \'^^^^^center^^^^^\'\n \'>>>>>>>>>>>right\'\n >>>\n >>> octets = [192, 168, 0, 1]\n >>> \'{:02X}{:02X}{:02X}{:02X}\'.format(*octets)\n \'C0A80001\'\n >>> int(_, 16)\n 3232235521\n >>>\n >>> width = 5\n >>> for num in range(5,12):\n ... for base in \'dXob\':\n ... print(\'{0:{width}{base}}\'.format(num, base=base, width=width), end=\' \')\n ... print()\n ...\n 5 5 5 101\n 6 6 6 110\n 7 7 7 111\n 8 8 10 1000\n 9 9 11 1001\n 10 A 12 1010\n 11 B 13 1011\n', 'function': '\nFunction definitions\n********************\n\nA function definition defines a user-defined function object (see\nsection *The standard type hierarchy*):\n\n funcdef ::= [decorators] "def" funcname "(" [parameter_list] ")" ["->" expression] ":" suite\n decorators ::= decorator+\n decorator ::= "@" dotted_name ["(" [argument_list [","]] ")"] NEWLINE\n dotted_name ::= identifier ("." identifier)*\n parameter_list ::= (defparameter ",")*\n ( "*" [parameter] ("," defparameter)*\n [, "**" parameter]\n | "**" parameter\n | defparameter [","] )\n parameter ::= identifier [":" expression]\n defparameter ::= parameter ["=" expression]\n funcname ::= identifier\n\nA function definition is an executable statement. Its execution binds\nthe function name in the current local namespace to a function object\n(a wrapper around the executable code for the function). This\nfunction object contains a reference to the current global namespace\nas the global namespace to be used when the function is called.\n\nThe function definition does not execute the function body; this gets\nexecuted only when the function is called. [3]\n\nA function definition may be wrapped by one or more *decorator*\nexpressions. Decorator expressions are evaluated when the function is\ndefined, in the scope that contains the function definition. The\nresult must be a callable, which is invoked with the function object\nas the only argument. The returned value is bound to the function name\ninstead of the function object. Multiple decorators are applied in\nnested fashion. For example, the following code\n\n @f1(arg)\n @f2\n def func(): pass\n\nis equivalent to\n\n def func(): pass\n func = f1(arg)(f2(func))\n\nWhen one or more parameters have the form *parameter* ``=``\n*expression*, the function is said to have "default parameter values."\nFor a parameter with a default value, the corresponding argument may\nbe omitted from a call, in which case the parameter\'s default value is\nsubstituted. If a parameter has a default value, all following\nparameters up until the "``*``" must also have a default value ---\nthis is a syntactic restriction that is not expressed by the grammar.\n\n**Default parameter values are evaluated when the function definition\nis executed.** This means that the expression is evaluated once, when\nthe function is defined, and that that same "pre-computed" value is\nused for each call. This is especially important to understand when a\ndefault parameter is a mutable object, such as a list or a dictionary:\nif the function modifies the object (e.g. by appending an item to a\nlist), the default value is in effect modified. This is generally not\nwhat was intended. A way around this is to use ``None`` as the\ndefault, and explicitly test for it in the body of the function, e.g.:\n\n def whats_on_the_telly(penguin=None):\n if penguin is None:\n penguin = []\n penguin.append("property of the zoo")\n return penguin\n\nFunction call semantics are described in more detail in section\n*Calls*. A function call always assigns values to all parameters\nmentioned in the parameter list, either from position arguments, from\nkeyword arguments, or from default values. If the form\n"``*identifier``" is present, it is initialized to a tuple receiving\nany excess positional parameters, defaulting to the empty tuple. If\nthe form "``**identifier``" is present, it is initialized to a new\ndictionary receiving any excess keyword arguments, defaulting to a new\nempty dictionary. Parameters after "``*``" or "``*identifier``" are\nkeyword-only parameters and may only be passed used keyword arguments.\n\nParameters may have annotations of the form "``: expression``"\nfollowing the parameter name. Any parameter may have an annotation\neven those of the form ``*identifier`` or ``**identifier``. Functions\nmay have "return" annotation of the form "``-> expression``" after the\nparameter list. These annotations can be any valid Python expression\nand are evaluated when the function definition is executed.\nAnnotations may be evaluated in a different order than they appear in\nthe source code. The presence of annotations does not change the\nsemantics of a function. The annotation values are available as\nvalues of a dictionary keyed by the parameters\' names in the\n``__annotations__`` attribute of the function object.\n\nIt is also possible to create anonymous functions (functions not bound\nto a name), for immediate use in expressions. This uses lambda forms,\ndescribed in section *Lambdas*. Note that the lambda form is merely a\nshorthand for a simplified function definition; a function defined in\na "``def``" statement can be passed around or assigned to another name\njust like a function defined by a lambda form. The "``def``" form is\nactually more powerful since it allows the execution of multiple\nstatements and annotations.\n\n**Programmer\'s note:** Functions are first-class objects. A "``def``"\nform executed inside a function definition defines a local function\nthat can be returned or passed around. Free variables used in the\nnested function can access the local variables of the function\ncontaining the def. See section *Naming and binding* for details.\n', 'global': '\nThe ``global`` statement\n************************\n\n global_stmt ::= "global" identifier ("," identifier)*\n\nThe ``global`` statement is a declaration which holds for the entire\ncurrent code block. It means that the listed identifiers are to be\ninterpreted as globals. It would be impossible to assign to a global\nvariable without ``global``, although free variables may refer to\nglobals without being declared global.\n\nNames listed in a ``global`` statement must not be used in the same\ncode block textually preceding that ``global`` statement.\n\nNames listed in a ``global`` statement must not be defined as formal\nparameters or in a ``for`` loop control target, ``class`` definition,\nfunction definition, or ``import`` statement.\n\n**CPython implementation detail:** The current implementation does not\nenforce the latter two restrictions, but programs should not abuse\nthis freedom, as future implementations may enforce them or silently\nchange the meaning of the program.\n\n**Programmer\'s note:** the ``global`` is a directive to the parser.\nIt applies only to code parsed at the same time as the ``global``\nstatement. In particular, a ``global`` statement contained in a string\nor code object supplied to the built-in ``exec()`` function does not\naffect the code block *containing* the function call, and code\ncontained in such a string is unaffected by ``global`` statements in\nthe code containing the function call. The same applies to the\n``eval()`` and ``compile()`` functions.\n', 'id-classes': '\nReserved classes of identifiers\n*******************************\n\nCertain classes of identifiers (besides keywords) have special\nmeanings. These classes are identified by the patterns of leading and\ntrailing underscore characters:\n\n``_*``\n Not imported by ``from module import *``. The special identifier\n ``_`` is used in the interactive interpreter to store the result of\n the last evaluation; it is stored in the ``builtins`` module. When\n not in interactive mode, ``_`` has no special meaning and is not\n defined. See section *The import statement*.\n\n Note: The name ``_`` is often used in conjunction with\n internationalization; refer to the documentation for the\n ``gettext`` module for more information on this convention.\n\n``__*__``\n System-defined names. These names are defined by the interpreter\n and its implementation (including the standard library). Current\n system names are discussed in the *Special method names* section\n and elsewhere. More will likely be defined in future versions of\n Python. *Any* use of ``__*__`` names, in any context, that does\n not follow explicitly documented use, is subject to breakage\n without warning.\n\n``__*``\n Class-private names. Names in this category, when used within the\n context of a class definition, are re-written to use a mangled form\n to help avoid name clashes between "private" attributes of base and\n derived classes. See section *Identifiers (Names)*.\n', - 'identifiers': '\nIdentifiers and keywords\n************************\n\nIdentifiers (also referred to as *names*) are described by the\nfollowing lexical definitions.\n\nThe syntax of identifiers in Python is based on the Unicode standard\nannex UAX-31, with elaboration and changes as defined below; see also\n**PEP 3131** for further details.\n\nWithin the ASCII range (U+0001..U+007F), the valid characters for\nidentifiers are the same as in Python 2.x: the uppercase and lowercase\nletters ``A`` through ``Z``, the underscore ``_`` and, except for the\nfirst character, the digits ``0`` through ``9``.\n\nPython 3.0 introduces additional characters from outside the ASCII\nrange (see **PEP 3131**). For these characters, the classification\nuses the version of the Unicode Character Database as included in the\n``unicodedata`` module.\n\nIdentifiers are unlimited in length. Case is significant.\n\n identifier ::= id_start id_continue*\n id_start ::= \n id_continue ::= \n\nThe Unicode category codes mentioned above stand for:\n\n* *Lu* - uppercase letters\n\n* *Ll* - lowercase letters\n\n* *Lt* - titlecase letters\n\n* *Lm* - modifier letters\n\n* *Lo* - other letters\n\n* *Nl* - letter numbers\n\n* *Mn* - nonspacing marks\n\n* *Mc* - spacing combining marks\n\n* *Nd* - decimal numbers\n\n* *Pc* - connector punctuations\n\nAll identifiers are converted into the normal form NFC while parsing;\ncomparison of identifiers is based on NFC.\n\nA non-normative HTML file listing all valid identifier characters for\nUnicode 4.1 can be found at http://www.dcl.hpi.uni-\npotsdam.de/home/loewis/table-3131.html.\n\n\nKeywords\n========\n\nThe following identifiers are used as reserved words, or *keywords* of\nthe language, and cannot be used as ordinary identifiers. They must\nbe spelled exactly as written here:\n\n False class finally is return\n None continue for lambda try\n True def from nonlocal while\n and del global not with\n as elif if or yield\n assert else import pass\n break except in raise\n\n\nReserved classes of identifiers\n===============================\n\nCertain classes of identifiers (besides keywords) have special\nmeanings. These classes are identified by the patterns of leading and\ntrailing underscore characters:\n\n``_*``\n Not imported by ``from module import *``. The special identifier\n ``_`` is used in the interactive interpreter to store the result of\n the last evaluation; it is stored in the ``builtins`` module. When\n not in interactive mode, ``_`` has no special meaning and is not\n defined. See section *The import statement*.\n\n Note: The name ``_`` is often used in conjunction with\n internationalization; refer to the documentation for the\n ``gettext`` module for more information on this convention.\n\n``__*__``\n System-defined names. These names are defined by the interpreter\n and its implementation (including the standard library). Current\n system names are discussed in the *Special method names* section\n and elsewhere. More will likely be defined in future versions of\n Python. *Any* use of ``__*__`` names, in any context, that does\n not follow explicitly documented use, is subject to breakage\n without warning.\n\n``__*``\n Class-private names. Names in this category, when used within the\n context of a class definition, are re-written to use a mangled form\n to help avoid name clashes between "private" attributes of base and\n derived classes. See section *Identifiers (Names)*.\n', + 'identifiers': '\nIdentifiers and keywords\n************************\n\nIdentifiers (also referred to as *names*) are described by the\nfollowing lexical definitions.\n\nThe syntax of identifiers in Python is based on the Unicode standard\nannex UAX-31, with elaboration and changes as defined below; see also\n**PEP 3131** for further details.\n\nWithin the ASCII range (U+0001..U+007F), the valid characters for\nidentifiers are the same as in Python 2.x: the uppercase and lowercase\nletters ``A`` through ``Z``, the underscore ``_`` and, except for the\nfirst character, the digits ``0`` through ``9``.\n\nPython 3.0 introduces additional characters from outside the ASCII\nrange (see **PEP 3131**). For these characters, the classification\nuses the version of the Unicode Character Database as included in the\n``unicodedata`` module.\n\nIdentifiers are unlimited in length. Case is significant.\n\n identifier ::= xid_start xid_continue*\n id_start ::= \n id_continue ::= \n xid_start ::= \n xid_continue ::= \n\nThe Unicode category codes mentioned above stand for:\n\n* *Lu* - uppercase letters\n\n* *Ll* - lowercase letters\n\n* *Lt* - titlecase letters\n\n* *Lm* - modifier letters\n\n* *Lo* - other letters\n\n* *Nl* - letter numbers\n\n* *Mn* - nonspacing marks\n\n* *Mc* - spacing combining marks\n\n* *Nd* - decimal numbers\n\n* *Pc* - connector punctuations\n\n* *Other_ID_Start* - explicit list of characters in PropList.txt to\n support backwards compatibility\n\n* *Other_ID_Continue* - likewise\n\nAll identifiers are converted into the normal form NFKC while parsing;\ncomparison of identifiers is based on NFKC.\n\nA non-normative HTML file listing all valid identifier characters for\nUnicode 4.1 can be found at http://www.dcl.hpi.uni-\npotsdam.de/home/loewis/table-3131.html.\n\n\nKeywords\n========\n\nThe following identifiers are used as reserved words, or *keywords* of\nthe language, and cannot be used as ordinary identifiers. They must\nbe spelled exactly as written here:\n\n False class finally is return\n None continue for lambda try\n True def from nonlocal while\n and del global not with\n as elif if or yield\n assert else import pass\n break except in raise\n\n\nReserved classes of identifiers\n===============================\n\nCertain classes of identifiers (besides keywords) have special\nmeanings. These classes are identified by the patterns of leading and\ntrailing underscore characters:\n\n``_*``\n Not imported by ``from module import *``. The special identifier\n ``_`` is used in the interactive interpreter to store the result of\n the last evaluation; it is stored in the ``builtins`` module. When\n not in interactive mode, ``_`` has no special meaning and is not\n defined. See section *The import statement*.\n\n Note: The name ``_`` is often used in conjunction with\n internationalization; refer to the documentation for the\n ``gettext`` module for more information on this convention.\n\n``__*__``\n System-defined names. These names are defined by the interpreter\n and its implementation (including the standard library). Current\n system names are discussed in the *Special method names* section\n and elsewhere. More will likely be defined in future versions of\n Python. *Any* use of ``__*__`` names, in any context, that does\n not follow explicitly documented use, is subject to breakage\n without warning.\n\n``__*``\n Class-private names. Names in this category, when used within the\n context of a class definition, are re-written to use a mangled form\n to help avoid name clashes between "private" attributes of base and\n derived classes. See section *Identifiers (Names)*.\n', 'if': '\nThe ``if`` statement\n********************\n\nThe ``if`` statement is used for conditional execution:\n\n if_stmt ::= "if" expression ":" suite\n ( "elif" expression ":" suite )*\n ["else" ":" suite]\n\nIt selects exactly one of the suites by evaluating the expressions one\nby one until one is found to be true (see section *Boolean operations*\nfor the definition of true and false); then that suite is executed\n(and no other part of the ``if`` statement is executed or evaluated).\nIf all expressions are false, the suite of the ``else`` clause, if\npresent, is executed.\n', 'imaginary': '\nImaginary literals\n******************\n\nImaginary literals are described by the following lexical definitions:\n\n imagnumber ::= (floatnumber | intpart) ("j" | "J")\n\nAn imaginary literal yields a complex number with a real part of 0.0.\nComplex numbers are represented as a pair of floating point numbers\nand have the same restrictions on their range. To create a complex\nnumber with a nonzero real part, add a floating point number to it,\ne.g., ``(3+4j)``. Some examples of imaginary literals:\n\n 3.14j 10.j 10j .001j 1e100j 3.14e-10j\n', 'import': '\nThe ``import`` statement\n************************\n\n import_stmt ::= "import" module ["as" name] ( "," module ["as" name] )*\n | "from" relative_module "import" identifier ["as" name]\n ( "," identifier ["as" name] )*\n | "from" relative_module "import" "(" identifier ["as" name]\n ( "," identifier ["as" name] )* [","] ")"\n | "from" module "import" "*"\n module ::= (identifier ".")* identifier\n relative_module ::= "."* module | "."+\n name ::= identifier\n\nImport statements are executed in two steps: (1) find a module, and\ninitialize it if necessary; (2) define a name or names in the local\nnamespace (of the scope where the ``import`` statement occurs). The\nstatement comes in two forms differing on whether it uses the ``from``\nkeyword. The first form (without ``from``) repeats these steps for\neach identifier in the list. The form with ``from`` performs step (1)\nonce, and then performs step (2) repeatedly. For a reference\nimplementation of step (1), see the ``importlib`` module.\n\nTo understand how step (1) occurs, one must first understand how\nPython handles hierarchical naming of modules. To help organize\nmodules and provide a hierarchy in naming, Python has a concept of\npackages. A package can contain other packages and modules while\nmodules cannot contain other modules or packages. From a file system\nperspective, packages are directories and modules are files. The\noriginal specification for packages is still available to read,\nalthough minor details have changed since the writing of that\ndocument.\n\nOnce the name of the module is known (unless otherwise specified, the\nterm "module" will refer to both packages and modules), searching for\nthe module or package can begin. The first place checked is\n``sys.modules``, the cache of all modules that have been imported\npreviously. If the module is found there then it is used in step (2)\nof import unless ``None`` is found in ``sys.modules``, in which case\n``ImportError`` is raised.\n\nIf the module is not found in the cache, then ``sys.meta_path`` is\nsearched (the specification for ``sys.meta_path`` can be found in\n**PEP 302**). The object is a list of *finder* objects which are\nqueried in order as to whether they know how to load the module by\ncalling their ``find_module()`` method with the name of the module. If\nthe module happens to be contained within a package (as denoted by the\nexistence of a dot in the name), then a second argument to\n``find_module()`` is given as the value of the ``__path__`` attribute\nfrom the parent package (everything up to the last dot in the name of\nthe module being imported). If a finder can find the module it returns\na *loader* (discussed later) or returns ``None``.\n\nIf none of the finders on ``sys.meta_path`` are able to find the\nmodule then some implicitly defined finders are queried.\nImplementations of Python vary in what implicit meta path finders are\ndefined. The one they all do define, though, is one that handles\n``sys.path_hooks``, ``sys.path_importer_cache``, and ``sys.path``.\n\nThe implicit finder searches for the requested module in the "paths"\nspecified in one of two places ("paths" do not have to be file system\npaths). If the module being imported is supposed to be contained\nwithin a package then the second argument passed to ``find_module()``,\n``__path__`` on the parent package, is used as the source of paths. If\nthe module is not contained in a package then ``sys.path`` is used as\nthe source of paths.\n\nOnce the source of paths is chosen it is iterated over to find a\nfinder that can handle that path. The dict at\n``sys.path_importer_cache`` caches finders for paths and is checked\nfor a finder. If the path does not have a finder cached then\n``sys.path_hooks`` is searched by calling each object in the list with\na single argument of the path, returning a finder or raises\n``ImportError``. If a finder is returned then it is cached in\n``sys.path_importer_cache`` and then used for that path entry. If no\nfinder can be found but the path exists then a value of ``None`` is\nstored in ``sys.path_importer_cache`` to signify that an implicit,\nfile-based finder that handles modules stored as individual files\nshould be used for that path. If the path does not exist then a finder\nwhich always returns ``None`` is placed in the cache for the path.\n\nIf no finder can find the module then ``ImportError`` is raised.\nOtherwise some finder returned a loader whose ``load_module()`` method\nis called with the name of the module to load (see **PEP 302** for the\noriginal definition of loaders). A loader has several responsibilities\nto perform on a module it loads. First, if the module already exists\nin ``sys.modules`` (a possibility if the loader is called outside of\nthe import machinery) then it is to use that module for initialization\nand not a new module. But if the module does not exist in\n``sys.modules`` then it is to be added to that dict before\ninitialization begins. If an error occurs during loading of the module\nand it was added to ``sys.modules`` it is to be removed from the dict.\nIf an error occurs but the module was already in ``sys.modules`` it is\nleft in the dict.\n\nThe loader must set several attributes on the module. ``__name__`` is\nto be set to the name of the module. ``__file__`` is to be the "path"\nto the file unless the module is built-in (and thus listed in\n``sys.builtin_module_names``) in which case the attribute is not set.\nIf what is being imported is a package then ``__path__`` is to be set\nto a list of paths to be searched when looking for modules and\npackages contained within the package being imported. ``__package__``\nis optional but should be set to the name of package that contains the\nmodule or package (the empty string is used for module not contained\nin a package). ``__loader__`` is also optional but should be set to\nthe loader object that is loading the module.\n\nIf an error occurs during loading then the loader raises\n``ImportError`` if some other exception is not already being\npropagated. Otherwise the loader returns the module that was loaded\nand initialized.\n\nWhen step (1) finishes without raising an exception, step (2) can\nbegin.\n\nThe first form of ``import`` statement binds the module name in the\nlocal namespace to the module object, and then goes on to import the\nnext identifier, if any. If the module name is followed by ``as``,\nthe name following ``as`` is used as the local name for the module.\n\nThe ``from`` form does not bind the module name: it goes through the\nlist of identifiers, looks each one of them up in the module found in\nstep (1), and binds the name in the local namespace to the object thus\nfound. As with the first form of ``import``, an alternate local name\ncan be supplied by specifying "``as`` localname". If a name is not\nfound, ``ImportError`` is raised. If the list of identifiers is\nreplaced by a star (``\'*\'``), all public names defined in the module\nare bound in the local namespace of the ``import`` statement.\n\nThe *public names* defined by a module are determined by checking the\nmodule\'s namespace for a variable named ``__all__``; if defined, it\nmust be a sequence of strings which are names defined or imported by\nthat module. The names given in ``__all__`` are all considered public\nand are required to exist. If ``__all__`` is not defined, the set of\npublic names includes all names found in the module\'s namespace which\ndo not begin with an underscore character (``\'_\'``). ``__all__``\nshould contain the entire public API. It is intended to avoid\naccidentally exporting items that are not part of the API (such as\nlibrary modules which were imported and used within the module).\n\nThe ``from`` form with ``*`` may only occur in a module scope. The\nwild card form of import --- ``import *`` --- is only allowed at the\nmodule level. Attempting to use it in class or function definitions\nwill raise a ``SyntaxError``.\n\nWhen specifying what module to import you do not have to specify the\nabsolute name of the module. When a module or package is contained\nwithin another package it is possible to make a relative import within\nthe same top package without having to mention the package name. By\nusing leading dots in the specified module or package after ``from``\nyou can specify how high to traverse up the current package hierarchy\nwithout specifying exact names. One leading dot means the current\npackage where the module making the import exists. Two dots means up\none package level. Three dots is up two levels, etc. So if you execute\n``from . import mod`` from a module in the ``pkg`` package then you\nwill end up importing ``pkg.mod``. If you execute ``from ..subpkg2\nimport mod`` from within ``pkg.subpkg1`` you will import\n``pkg.subpkg2.mod``. The specification for relative imports is\ncontained within **PEP 328**.\n\n``importlib.import_module()`` is provided to support applications that\ndetermine which modules need to be loaded dynamically.\n\n\nFuture statements\n=================\n\nA *future statement* is a directive to the compiler that a particular\nmodule should be compiled using syntax or semantics that will be\navailable in a specified future release of Python. The future\nstatement is intended to ease migration to future versions of Python\nthat introduce incompatible changes to the language. It allows use of\nthe new features on a per-module basis before the release in which the\nfeature becomes standard.\n\n future_statement ::= "from" "__future__" "import" feature ["as" name]\n ("," feature ["as" name])*\n | "from" "__future__" "import" "(" feature ["as" name]\n ("," feature ["as" name])* [","] ")"\n feature ::= identifier\n name ::= identifier\n\nA future statement must appear near the top of the module. The only\nlines that can appear before a future statement are:\n\n* the module docstring (if any),\n\n* comments,\n\n* blank lines, and\n\n* other future statements.\n\nThe features recognized by Python 3.0 are ``absolute_import``,\n``division``, ``generators``, ``unicode_literals``,\n``print_function``, ``nested_scopes`` and ``with_statement``. They\nare all redundant because they are always enabled, and only kept for\nbackwards compatibility.\n\nA future statement is recognized and treated specially at compile\ntime: Changes to the semantics of core constructs are often\nimplemented by generating different code. It may even be the case\nthat a new feature introduces new incompatible syntax (such as a new\nreserved word), in which case the compiler may need to parse the\nmodule differently. Such decisions cannot be pushed off until\nruntime.\n\nFor any given release, the compiler knows which feature names have\nbeen defined, and raises a compile-time error if a future statement\ncontains a feature not known to it.\n\nThe direct runtime semantics are the same as for any import statement:\nthere is a standard module ``__future__``, described later, and it\nwill be imported in the usual way at the time the future statement is\nexecuted.\n\nThe interesting runtime semantics depend on the specific feature\nenabled by the future statement.\n\nNote that there is nothing special about the statement:\n\n import __future__ [as name]\n\nThat is not a future statement; it\'s an ordinary import statement with\nno special semantics or syntax restrictions.\n\nCode compiled by calls to the built-in functions ``exec()`` and\n``compile()`` that occur in a module ``M`` containing a future\nstatement will, by default, use the new syntax or semantics associated\nwith the future statement. This can be controlled by optional\narguments to ``compile()`` --- see the documentation of that function\nfor details.\n\nA future statement typed at an interactive interpreter prompt will\ntake effect for the rest of the interpreter session. If an\ninterpreter is started with the *-i* option, is passed a script name\nto execute, and the script includes a future statement, it will be in\neffect in the interactive session started after the script is\nexecuted.\n\nSee also:\n\n **PEP 236** - Back to the __future__\n The original proposal for the __future__ mechanism.\n', @@ -45,7 +45,7 @@ 'integers': '\nInteger literals\n****************\n\nInteger literals are described by the following lexical definitions:\n\n integer ::= decimalinteger | octinteger | hexinteger | bininteger\n decimalinteger ::= nonzerodigit digit* | "0"+\n nonzerodigit ::= "1"..."9"\n digit ::= "0"..."9"\n octinteger ::= "0" ("o" | "O") octdigit+\n hexinteger ::= "0" ("x" | "X") hexdigit+\n bininteger ::= "0" ("b" | "B") bindigit+\n octdigit ::= "0"..."7"\n hexdigit ::= digit | "a"..."f" | "A"..."F"\n bindigit ::= "0" | "1"\n\nThere is no limit for the length of integer literals apart from what\ncan be stored in available memory.\n\nNote that leading zeros in a non-zero decimal number are not allowed.\nThis is for disambiguation with C-style octal literals, which Python\nused before version 3.0.\n\nSome examples of integer literals:\n\n 7 2147483647 0o177 0b100110111\n 3 79228162514264337593543950336 0o377 0x100000000\n 79228162514264337593543950336 0xdeadbeef\n', 'lambda': '\nLambdas\n*******\n\n lambda_form ::= "lambda" [parameter_list]: expression\n lambda_form_nocond ::= "lambda" [parameter_list]: expression_nocond\n\nLambda forms (lambda expressions) have the same syntactic position as\nexpressions. They are a shorthand to create anonymous functions; the\nexpression ``lambda arguments: expression`` yields a function object.\nThe unnamed object behaves like a function object defined with\n\n def (arguments):\n return expression\n\nSee section *Function definitions* for the syntax of parameter lists.\nNote that functions created with lambda forms cannot contain\nstatements or annotations.\n', 'lists': '\nList displays\n*************\n\nA list display is a possibly empty series of expressions enclosed in\nsquare brackets:\n\n list_display ::= "[" [expression_list | comprehension] "]"\n\nA list display yields a new list object, the contents being specified\nby either a list of expressions or a comprehension. When a comma-\nseparated list of expressions is supplied, its elements are evaluated\nfrom left to right and placed into the list object in that order.\nWhen a comprehension is supplied, the list is constructed from the\nelements resulting from the comprehension.\n', - 'naming': "\nNaming and binding\n******************\n\n*Names* refer to objects. Names are introduced by name binding\noperations. Each occurrence of a name in the program text refers to\nthe *binding* of that name established in the innermost function block\ncontaining the use.\n\nA *block* is a piece of Python program text that is executed as a\nunit. The following are blocks: a module, a function body, and a class\ndefinition. Each command typed interactively is a block. A script\nfile (a file given as standard input to the interpreter or specified\non the interpreter command line the first argument) is a code block.\nA script command (a command specified on the interpreter command line\nwith the '**-c**' option) is a code block. The string argument passed\nto the built-in functions ``eval()`` and ``exec()`` is a code block.\n\nA code block is executed in an *execution frame*. A frame contains\nsome administrative information (used for debugging) and determines\nwhere and how execution continues after the code block's execution has\ncompleted.\n\nA *scope* defines the visibility of a name within a block. If a local\nvariable is defined in a block, its scope includes that block. If the\ndefinition occurs in a function block, the scope extends to any blocks\ncontained within the defining one, unless a contained block introduces\na different binding for the name. The scope of names defined in a\nclass block is limited to the class block; it does not extend to the\ncode blocks of methods -- this includes comprehensions and generator\nexpressions since they are implemented using a function scope. This\nmeans that the following will fail:\n\n class A:\n a = 42\n b = list(a + i for i in range(10))\n\nWhen a name is used in a code block, it is resolved using the nearest\nenclosing scope. The set of all such scopes visible to a code block\nis called the block's *environment*.\n\nIf a name is bound in a block, it is a local variable of that block,\nunless declared as ``nonlocal``. If a name is bound at the module\nlevel, it is a global variable. (The variables of the module code\nblock are local and global.) If a variable is used in a code block\nbut not defined there, it is a *free variable*.\n\nWhen a name is not found at all, a ``NameError`` exception is raised.\nIf the name refers to a local variable that has not been bound, a\n``UnboundLocalError`` exception is raised. ``UnboundLocalError`` is a\nsubclass of ``NameError``.\n\nThe following constructs bind names: formal parameters to functions,\n``import`` statements, class and function definitions (these bind the\nclass or function name in the defining block), and targets that are\nidentifiers if occurring in an assignment, ``for`` loop header, or\nafter ``as`` in a ``with`` statement or ``except`` clause. The\n``import`` statement of the form ``from ... import *`` binds all names\ndefined in the imported module, except those beginning with an\nunderscore. This form may only be used at the module level.\n\nA target occurring in a ``del`` statement is also considered bound for\nthis purpose (though the actual semantics are to unbind the name). It\nis illegal to unbind a name that is referenced by an enclosing scope;\nthe compiler will report a ``SyntaxError``.\n\nEach assignment or import statement occurs within a block defined by a\nclass or function definition or at the module level (the top-level\ncode block).\n\nIf a name binding operation occurs anywhere within a code block, all\nuses of the name within the block are treated as references to the\ncurrent block. This can lead to errors when a name is used within a\nblock before it is bound. This rule is subtle. Python lacks\ndeclarations and allows name binding operations to occur anywhere\nwithin a code block. The local variables of a code block can be\ndetermined by scanning the entire text of the block for name binding\noperations.\n\nIf the ``global`` statement occurs within a block, all uses of the\nname specified in the statement refer to the binding of that name in\nthe top-level namespace. Names are resolved in the top-level\nnamespace by searching the global namespace, i.e. the namespace of the\nmodule containing the code block, and the builtins namespace, the\nnamespace of the module ``builtins``. The global namespace is\nsearched first. If the name is not found there, the builtins\nnamespace is searched. The global statement must precede all uses of\nthe name.\n\nThe builtins namespace associated with the execution of a code block\nis actually found by looking up the name ``__builtins__`` in its\nglobal namespace; this should be a dictionary or a module (in the\nlatter case the module's dictionary is used). By default, when in the\n``__main__`` module, ``__builtins__`` is the built-in module\n``builtins``; when in any other module, ``__builtins__`` is an alias\nfor the dictionary of the ``builtins`` module itself.\n``__builtins__`` can be set to a user-created dictionary to create a\nweak form of restricted execution.\n\n**CPython implementation detail:** Users should not touch\n``__builtins__``; it is strictly an implementation detail. Users\nwanting to override values in the builtins namespace should ``import``\nthe ``builtins`` module and modify its attributes appropriately.\n\nThe namespace for a module is automatically created the first time a\nmodule is imported. The main module for a script is always called\n``__main__``.\n\nThe global statement has the same scope as a name binding operation in\nthe same block. If the nearest enclosing scope for a free variable\ncontains a global statement, the free variable is treated as a global.\n\nA class definition is an executable statement that may use and define\nnames. These references follow the normal rules for name resolution.\nThe namespace of the class definition becomes the attribute dictionary\nof the class. Names defined at the class scope are not visible in\nmethods.\n\n\nInteraction with dynamic features\n=================================\n\nThere are several cases where Python statements are illegal when used\nin conjunction with nested scopes that contain free variables.\n\nIf a variable is referenced in an enclosing scope, it is illegal to\ndelete the name. An error will be reported at compile time.\n\nIf the wild card form of import --- ``import *`` --- is used in a\nfunction and the function contains or is a nested block with free\nvariables, the compiler will raise a ``SyntaxError``.\n\nThe ``eval()`` and ``exec()`` functions do not have access to the full\nenvironment for resolving names. Names may be resolved in the local\nand global namespaces of the caller. Free variables are not resolved\nin the nearest enclosing namespace, but in the global namespace. [1]\nThe ``exec()`` and ``eval()`` functions have optional arguments to\noverride the global and local namespace. If only one namespace is\nspecified, it is used for both.\n", + 'naming': "\nNaming and binding\n******************\n\n*Names* refer to objects. Names are introduced by name binding\noperations. Each occurrence of a name in the program text refers to\nthe *binding* of that name established in the innermost function block\ncontaining the use.\n\nA *block* is a piece of Python program text that is executed as a\nunit. The following are blocks: a module, a function body, and a class\ndefinition. Each command typed interactively is a block. A script\nfile (a file given as standard input to the interpreter or specified\non the interpreter command line the first argument) is a code block.\nA script command (a command specified on the interpreter command line\nwith the '**-c**' option) is a code block. The string argument passed\nto the built-in functions ``eval()`` and ``exec()`` is a code block.\n\nA code block is executed in an *execution frame*. A frame contains\nsome administrative information (used for debugging) and determines\nwhere and how execution continues after the code block's execution has\ncompleted.\n\nA *scope* defines the visibility of a name within a block. If a local\nvariable is defined in a block, its scope includes that block. If the\ndefinition occurs in a function block, the scope extends to any blocks\ncontained within the defining one, unless a contained block introduces\na different binding for the name. The scope of names defined in a\nclass block is limited to the class block; it does not extend to the\ncode blocks of methods -- this includes comprehensions and generator\nexpressions since they are implemented using a function scope. This\nmeans that the following will fail:\n\n class A:\n a = 42\n b = list(a + i for i in range(10))\n\nWhen a name is used in a code block, it is resolved using the nearest\nenclosing scope. The set of all such scopes visible to a code block\nis called the block's *environment*.\n\nIf a name is bound in a block, it is a local variable of that block,\nunless declared as ``nonlocal``. If a name is bound at the module\nlevel, it is a global variable. (The variables of the module code\nblock are local and global.) If a variable is used in a code block\nbut not defined there, it is a *free variable*.\n\nWhen a name is not found at all, a ``NameError`` exception is raised.\nIf the name refers to a local variable that has not been bound, a\n``UnboundLocalError`` exception is raised. ``UnboundLocalError`` is a\nsubclass of ``NameError``.\n\nThe following constructs bind names: formal parameters to functions,\n``import`` statements, class and function definitions (these bind the\nclass or function name in the defining block), and targets that are\nidentifiers if occurring in an assignment, ``for`` loop header, or\nafter ``as`` in a ``with`` statement or ``except`` clause. The\n``import`` statement of the form ``from ... import *`` binds all names\ndefined in the imported module, except those beginning with an\nunderscore. This form may only be used at the module level.\n\nA target occurring in a ``del`` statement is also considered bound for\nthis purpose (though the actual semantics are to unbind the name). It\nis illegal to unbind a name that is referenced by an enclosing scope;\nthe compiler will report a ``SyntaxError``.\n\nEach assignment or import statement occurs within a block defined by a\nclass or function definition or at the module level (the top-level\ncode block).\n\nIf a name binding operation occurs anywhere within a code block, all\nuses of the name within the block are treated as references to the\ncurrent block. This can lead to errors when a name is used within a\nblock before it is bound. This rule is subtle. Python lacks\ndeclarations and allows name binding operations to occur anywhere\nwithin a code block. The local variables of a code block can be\ndetermined by scanning the entire text of the block for name binding\noperations.\n\nIf the ``global`` statement occurs within a block, all uses of the\nname specified in the statement refer to the binding of that name in\nthe top-level namespace. Names are resolved in the top-level\nnamespace by searching the global namespace, i.e. the namespace of the\nmodule containing the code block, and the builtins namespace, the\nnamespace of the module ``builtins``. The global namespace is\nsearched first. If the name is not found there, the builtins\nnamespace is searched. The global statement must precede all uses of\nthe name.\n\nThe builtins namespace associated with the execution of a code block\nis actually found by looking up the name ``__builtins__`` in its\nglobal namespace; this should be a dictionary or a module (in the\nlatter case the module's dictionary is used). By default, when in the\n``__main__`` module, ``__builtins__`` is the built-in module\n``builtins``; when in any other module, ``__builtins__`` is an alias\nfor the dictionary of the ``builtins`` module itself.\n``__builtins__`` can be set to a user-created dictionary to create a\nweak form of restricted execution.\n\n**CPython implementation detail:** Users should not touch\n``__builtins__``; it is strictly an implementation detail. Users\nwanting to override values in the builtins namespace should ``import``\nthe ``builtins`` module and modify its attributes appropriately.\n\nThe namespace for a module is automatically created the first time a\nmodule is imported. The main module for a script is always called\n``__main__``.\n\nThe ``global`` statement has the same scope as a name binding\noperation in the same block. If the nearest enclosing scope for a\nfree variable contains a global statement, the free variable is\ntreated as a global.\n\nA class definition is an executable statement that may use and define\nnames. These references follow the normal rules for name resolution.\nThe namespace of the class definition becomes the attribute dictionary\nof the class. Names defined at the class scope are not visible in\nmethods.\n\n\nInteraction with dynamic features\n=================================\n\nThere are several cases where Python statements are illegal when used\nin conjunction with nested scopes that contain free variables.\n\nIf a variable is referenced in an enclosing scope, it is illegal to\ndelete the name. An error will be reported at compile time.\n\nIf the wild card form of import --- ``import *`` --- is used in a\nfunction and the function contains or is a nested block with free\nvariables, the compiler will raise a ``SyntaxError``.\n\nThe ``eval()`` and ``exec()`` functions do not have access to the full\nenvironment for resolving names. Names may be resolved in the local\nand global namespaces of the caller. Free variables are not resolved\nin the nearest enclosing namespace, but in the global namespace. [1]\nThe ``exec()`` and ``eval()`` functions have optional arguments to\noverride the global and local namespace. If only one namespace is\nspecified, it is used for both.\n", 'nonlocal': '\nThe ``nonlocal`` statement\n**************************\n\n nonlocal_stmt ::= "nonlocal" identifier ("," identifier)*\n\nThe ``nonlocal`` statement causes the listed identifiers to refer to\npreviously bound variables in the nearest enclosing scope. This is\nimportant because the default behavior for binding is to search the\nlocal namespace first. The statement allows encapsulated code to\nrebind variables outside of the local scope besides the global\n(module) scope.\n\nNames listed in a ``nonlocal`` statement, unlike to those listed in a\n``global`` statement, must refer to pre-existing bindings in an\nenclosing scope (the scope in which a new binding should be created\ncannot be determined unambiguously).\n\nNames listed in a ``nonlocal`` statement must not collide with pre-\nexisting bindings in the local scope.\n\nSee also:\n\n **PEP 3104** - Access to Names in Outer Scopes\n The specification for the ``nonlocal`` statement.\n\n-[ Footnotes ]-\n\n[1] It may occur within an ``except`` or ``else`` clause. The\n restriction on occurring in the ``try`` clause is implementor\'s\n laziness and will eventually be lifted.\n', 'numbers': "\nNumeric literals\n****************\n\nThere are three types of numeric literals: integers, floating point\nnumbers, and imaginary numbers. There are no complex literals\n(complex numbers can be formed by adding a real number and an\nimaginary number).\n\nNote that numeric literals do not include a sign; a phrase like ``-1``\nis actually an expression composed of the unary operator '``-``' and\nthe literal ``1``.\n", 'numeric-types': "\nEmulating numeric types\n***********************\n\nThe following methods can be defined to emulate numeric objects.\nMethods corresponding to operations that are not supported by the\nparticular kind of number implemented (e.g., bitwise operations for\nnon-integral numbers) should be left undefined.\n\nobject.__add__(self, other)\nobject.__sub__(self, other)\nobject.__mul__(self, other)\nobject.__truediv__(self, other)\nobject.__floordiv__(self, other)\nobject.__mod__(self, other)\nobject.__divmod__(self, other)\nobject.__pow__(self, other[, modulo])\nobject.__lshift__(self, other)\nobject.__rshift__(self, other)\nobject.__and__(self, other)\nobject.__xor__(self, other)\nobject.__or__(self, other)\n\n These methods are called to implement the binary arithmetic\n operations (``+``, ``-``, ``*``, ``/``, ``//``, ``%``,\n ``divmod()``, ``pow()``, ``**``, ``<<``, ``>>``, ``&``, ``^``,\n ``|``). For instance, to evaluate the expression ``x + y``, where\n *x* is an instance of a class that has an ``__add__()`` method,\n ``x.__add__(y)`` is called. The ``__divmod__()`` method should be\n the equivalent to using ``__floordiv__()`` and ``__mod__()``; it\n should not be related to ``__truediv__()``. Note that\n ``__pow__()`` should be defined to accept an optional third\n argument if the ternary version of the built-in ``pow()`` function\n is to be supported.\n\n If one of those methods does not support the operation with the\n supplied arguments, it should return ``NotImplemented``.\n\nobject.__radd__(self, other)\nobject.__rsub__(self, other)\nobject.__rmul__(self, other)\nobject.__rtruediv__(self, other)\nobject.__rfloordiv__(self, other)\nobject.__rmod__(self, other)\nobject.__rdivmod__(self, other)\nobject.__rpow__(self, other)\nobject.__rlshift__(self, other)\nobject.__rrshift__(self, other)\nobject.__rand__(self, other)\nobject.__rxor__(self, other)\nobject.__ror__(self, other)\n\n These methods are called to implement the binary arithmetic\n operations (``+``, ``-``, ``*``, ``/``, ``//``, ``%``,\n ``divmod()``, ``pow()``, ``**``, ``<<``, ``>>``, ``&``, ``^``,\n ``|``) with reflected (swapped) operands. These functions are only\n called if the left operand does not support the corresponding\n operation and the operands are of different types. [2] For\n instance, to evaluate the expression ``x - y``, where *y* is an\n instance of a class that has an ``__rsub__()`` method,\n ``y.__rsub__(x)`` is called if ``x.__sub__(y)`` returns\n *NotImplemented*.\n\n Note that ternary ``pow()`` will not try calling ``__rpow__()``\n (the coercion rules would become too complicated).\n\n Note: If the right operand's type is a subclass of the left operand's\n type and that subclass provides the reflected method for the\n operation, this method will be called before the left operand's\n non-reflected method. This behavior allows subclasses to\n override their ancestors' operations.\n\nobject.__iadd__(self, other)\nobject.__isub__(self, other)\nobject.__imul__(self, other)\nobject.__itruediv__(self, other)\nobject.__ifloordiv__(self, other)\nobject.__imod__(self, other)\nobject.__ipow__(self, other[, modulo])\nobject.__ilshift__(self, other)\nobject.__irshift__(self, other)\nobject.__iand__(self, other)\nobject.__ixor__(self, other)\nobject.__ior__(self, other)\n\n These methods are called to implement the augmented arithmetic\n assignments (``+=``, ``-=``, ``*=``, ``/=``, ``//=``, ``%=``,\n ``**=``, ``<<=``, ``>>=``, ``&=``, ``^=``, ``|=``). These methods\n should attempt to do the operation in-place (modifying *self*) and\n return the result (which could be, but does not have to be,\n *self*). If a specific method is not defined, the augmented\n assignment falls back to the normal methods. For instance, to\n execute the statement ``x += y``, where *x* is an instance of a\n class that has an ``__iadd__()`` method, ``x.__iadd__(y)`` is\n called. If *x* is an instance of a class that does not define a\n ``__iadd__()`` method, ``x.__add__(y)`` and ``y.__radd__(x)`` are\n considered, as with the evaluation of ``x + y``.\n\nobject.__neg__(self)\nobject.__pos__(self)\nobject.__abs__(self)\nobject.__invert__(self)\n\n Called to implement the unary arithmetic operations (``-``, ``+``,\n ``abs()`` and ``~``).\n\nobject.__complex__(self)\nobject.__int__(self)\nobject.__float__(self)\nobject.__round__(self[, n])\n\n Called to implement the built-in functions ``complex()``,\n ``int()``, ``float()`` and ``round()``. Should return a value of\n the appropriate type.\n\nobject.__index__(self)\n\n Called to implement ``operator.index()``. Also called whenever\n Python needs an integer object (such as in slicing, or in the\n built-in ``bin()``, ``hex()`` and ``oct()`` functions). Must return\n an integer.\n", @@ -60,17 +60,17 @@ 'slicings': '\nSlicings\n********\n\nA slicing selects a range of items in a sequence object (e.g., a\nstring, tuple or list). Slicings may be used as expressions or as\ntargets in assignment or ``del`` statements. The syntax for a\nslicing:\n\n slicing ::= primary "[" slice_list "]"\n slice_list ::= slice_item ("," slice_item)* [","]\n slice_item ::= expression | proper_slice\n proper_slice ::= [lower_bound] ":" [upper_bound] [ ":" [stride] ]\n lower_bound ::= expression\n upper_bound ::= expression\n stride ::= expression\n\nThere is ambiguity in the formal syntax here: anything that looks like\nan expression list also looks like a slice list, so any subscription\ncan be interpreted as a slicing. Rather than further complicating the\nsyntax, this is disambiguated by defining that in this case the\ninterpretation as a subscription takes priority over the\ninterpretation as a slicing (this is the case if the slice list\ncontains no proper slice).\n\nThe semantics for a slicing are as follows. The primary must evaluate\nto a mapping object, and it is indexed (using the same\n``__getitem__()`` method as normal subscription) with a key that is\nconstructed from the slice list, as follows. If the slice list\ncontains at least one comma, the key is a tuple containing the\nconversion of the slice items; otherwise, the conversion of the lone\nslice item is the key. The conversion of a slice item that is an\nexpression is that expression. The conversion of a proper slice is a\nslice object (see section *The standard type hierarchy*) whose\n``start``, ``stop`` and ``step`` attributes are the values of the\nexpressions given as lower bound, upper bound and stride,\nrespectively, substituting ``None`` for missing expressions.\n', 'specialattrs': "\nSpecial Attributes\n******************\n\nThe implementation adds a few special read-only attributes to several\nobject types, where they are relevant. Some of these are not reported\nby the ``dir()`` built-in function.\n\nobject.__dict__\n\n A dictionary or other mapping object used to store an object's\n (writable) attributes.\n\ninstance.__class__\n\n The class to which a class instance belongs.\n\nclass.__bases__\n\n The tuple of base classes of a class object.\n\nclass.__name__\n\n The name of the class or type.\n\nThe following attributes are only supported by *new-style class*es.\n\nclass.__mro__\n\n This attribute is a tuple of classes that are considered when\n looking for base classes during method resolution.\n\nclass.mro()\n\n This method can be overridden by a metaclass to customize the\n method resolution order for its instances. It is called at class\n instantiation, and its result is stored in ``__mro__``.\n\nclass.__subclasses__()\n\n Each new-style class keeps a list of weak references to its\n immediate subclasses. This method returns a list of all those\n references still alive. Example:\n\n >>> int.__subclasses__()\n []\n\n-[ Footnotes ]-\n\n[1] Additional information on these special methods may be found in\n the Python Reference Manual (*Basic customization*).\n\n[2] As a consequence, the list ``[1, 2]`` is considered equal to\n ``[1.0, 2.0]``, and similarly for tuples.\n\n[3] They must have since the parser can't tell the type of the\n operands.\n\n[4] To format only a tuple you should therefore provide a singleton\n tuple whose only element is the tuple to be formatted.\n", 'specialnames': '\nSpecial method names\n********************\n\nA class can implement certain operations that are invoked by special\nsyntax (such as arithmetic operations or subscripting and slicing) by\ndefining methods with special names. This is Python\'s approach to\n*operator overloading*, allowing classes to define their own behavior\nwith respect to language operators. For instance, if a class defines\na method named ``__getitem__()``, and ``x`` is an instance of this\nclass, then ``x[i]`` is roughly equivalent to ``type(x).__getitem__(x,\ni)``. Except where mentioned, attempts to execute an operation raise\nan exception when no appropriate method is defined (typically\n``AttributeError`` or ``TypeError``).\n\nWhen implementing a class that emulates any built-in type, it is\nimportant that the emulation only be implemented to the degree that it\nmakes sense for the object being modelled. For example, some\nsequences may work well with retrieval of individual elements, but\nextracting a slice may not make sense. (One example of this is the\n``NodeList`` interface in the W3C\'s Document Object Model.)\n\n\nBasic customization\n===================\n\nobject.__new__(cls[, ...])\n\n Called to create a new instance of class *cls*. ``__new__()`` is a\n static method (special-cased so you need not declare it as such)\n that takes the class of which an instance was requested as its\n first argument. The remaining arguments are those passed to the\n object constructor expression (the call to the class). The return\n value of ``__new__()`` should be the new object instance (usually\n an instance of *cls*).\n\n Typical implementations create a new instance of the class by\n invoking the superclass\'s ``__new__()`` method using\n ``super(currentclass, cls).__new__(cls[, ...])`` with appropriate\n arguments and then modifying the newly-created instance as\n necessary before returning it.\n\n If ``__new__()`` returns an instance of *cls*, then the new\n instance\'s ``__init__()`` method will be invoked like\n ``__init__(self[, ...])``, where *self* is the new instance and the\n remaining arguments are the same as were passed to ``__new__()``.\n\n If ``__new__()`` does not return an instance of *cls*, then the new\n instance\'s ``__init__()`` method will not be invoked.\n\n ``__new__()`` is intended mainly to allow subclasses of immutable\n types (like int, str, or tuple) to customize instance creation. It\n is also commonly overridden in custom metaclasses in order to\n customize class creation.\n\nobject.__init__(self[, ...])\n\n Called when the instance is created. The arguments are those\n passed to the class constructor expression. If a base class has an\n ``__init__()`` method, the derived class\'s ``__init__()`` method,\n if any, must explicitly call it to ensure proper initialization of\n the base class part of the instance; for example:\n ``BaseClass.__init__(self, [args...])``. As a special constraint\n on constructors, no value may be returned; doing so will cause a\n ``TypeError`` to be raised at runtime.\n\nobject.__del__(self)\n\n Called when the instance is about to be destroyed. This is also\n called a destructor. If a base class has a ``__del__()`` method,\n the derived class\'s ``__del__()`` method, if any, must explicitly\n call it to ensure proper deletion of the base class part of the\n instance. Note that it is possible (though not recommended!) for\n the ``__del__()`` method to postpone destruction of the instance by\n creating a new reference to it. It may then be called at a later\n time when this new reference is deleted. It is not guaranteed that\n ``__del__()`` methods are called for objects that still exist when\n the interpreter exits.\n\n Note: ``del x`` doesn\'t directly call ``x.__del__()`` --- the former\n decrements the reference count for ``x`` by one, and the latter\n is only called when ``x``\'s reference count reaches zero. Some\n common situations that may prevent the reference count of an\n object from going to zero include: circular references between\n objects (e.g., a doubly-linked list or a tree data structure with\n parent and child pointers); a reference to the object on the\n stack frame of a function that caught an exception (the traceback\n stored in ``sys.exc_info()[2]`` keeps the stack frame alive); or\n a reference to the object on the stack frame that raised an\n unhandled exception in interactive mode (the traceback stored in\n ``sys.last_traceback`` keeps the stack frame alive). The first\n situation can only be remedied by explicitly breaking the cycles;\n the latter two situations can be resolved by storing ``None`` in\n ``sys.last_traceback``. Circular references which are garbage are\n detected when the option cycle detector is enabled (it\'s on by\n default), but can only be cleaned up if there are no Python-\n level ``__del__()`` methods involved. Refer to the documentation\n for the ``gc`` module for more information about how\n ``__del__()`` methods are handled by the cycle detector,\n particularly the description of the ``garbage`` value.\n\n Warning: Due to the precarious circumstances under which ``__del__()``\n methods are invoked, exceptions that occur during their execution\n are ignored, and a warning is printed to ``sys.stderr`` instead.\n Also, when ``__del__()`` is invoked in response to a module being\n deleted (e.g., when execution of the program is done), other\n globals referenced by the ``__del__()`` method may already have\n been deleted or in the process of being torn down (e.g. the\n import machinery shutting down). For this reason, ``__del__()``\n methods should do the absolute minimum needed to maintain\n external invariants. Starting with version 1.5, Python\n guarantees that globals whose name begins with a single\n underscore are deleted from their module before other globals are\n deleted; if no other references to such globals exist, this may\n help in assuring that imported modules are still available at the\n time when the ``__del__()`` method is called.\n\nobject.__repr__(self)\n\n Called by the ``repr()`` built-in function to compute the\n "official" string representation of an object. If at all possible,\n this should look like a valid Python expression that could be used\n to recreate an object with the same value (given an appropriate\n environment). If this is not possible, a string of the form\n ``<...some useful description...>`` should be returned. The return\n value must be a string object. If a class defines ``__repr__()``\n but not ``__str__()``, then ``__repr__()`` is also used when an\n "informal" string representation of instances of that class is\n required.\n\n This is typically used for debugging, so it is important that the\n representation is information-rich and unambiguous.\n\nobject.__str__(self)\n\n Called by the ``str()`` built-in function and by the ``print()``\n function to compute the "informal" string representation of an\n object. This differs from ``__repr__()`` in that it does not have\n to be a valid Python expression: a more convenient or concise\n representation may be used instead. The return value must be a\n string object.\n\nobject.__format__(self, format_spec)\n\n Called by the ``format()`` built-in function (and by extension, the\n ``format()`` method of class ``str``) to produce a "formatted"\n string representation of an object. The ``format_spec`` argument is\n a string that contains a description of the formatting options\n desired. The interpretation of the ``format_spec`` argument is up\n to the type implementing ``__format__()``, however most classes\n will either delegate formatting to one of the built-in types, or\n use a similar formatting option syntax.\n\n See *Format Specification Mini-Language* for a description of the\n standard formatting syntax.\n\n The return value must be a string object.\n\nobject.__lt__(self, other)\nobject.__le__(self, other)\nobject.__eq__(self, other)\nobject.__ne__(self, other)\nobject.__gt__(self, other)\nobject.__ge__(self, other)\n\n These are the so-called "rich comparison" methods. The\n correspondence between operator symbols and method names is as\n follows: ``xy`` calls ``x.__gt__(y)``, and ``x>=y`` calls\n ``x.__ge__(y)``.\n\n A rich comparison method may return the singleton\n ``NotImplemented`` if it does not implement the operation for a\n given pair of arguments. By convention, ``False`` and ``True`` are\n returned for a successful comparison. However, these methods can\n return any value, so if the comparison operator is used in a\n Boolean context (e.g., in the condition of an ``if`` statement),\n Python will call ``bool()`` on the value to determine if the result\n is true or false.\n\n There are no implied relationships among the comparison operators.\n The truth of ``x==y`` does not imply that ``x!=y`` is false.\n Accordingly, when defining ``__eq__()``, one should also define\n ``__ne__()`` so that the operators will behave as expected. See\n the paragraph on ``__hash__()`` for some important notes on\n creating *hashable* objects which support custom comparison\n operations and are usable as dictionary keys.\n\n There are no swapped-argument versions of these methods (to be used\n when the left argument does not support the operation but the right\n argument does); rather, ``__lt__()`` and ``__gt__()`` are each\n other\'s reflection, ``__le__()`` and ``__ge__()`` are each other\'s\n reflection, and ``__eq__()`` and ``__ne__()`` are their own\n reflection.\n\n Arguments to rich comparison methods are never coerced.\n\n To automatically generate ordering operations from a single root\n operation, see ``functools.total_ordering()``.\n\nobject.__hash__(self)\n\n Called by built-in function ``hash()`` and for operations on\n members of hashed collections including ``set``, ``frozenset``, and\n ``dict``. ``__hash__()`` should return an integer. The only\n required property is that objects which compare equal have the same\n hash value; it is advised to somehow mix together (e.g. using\n exclusive or) the hash values for the components of the object that\n also play a part in comparison of objects.\n\n If a class does not define an ``__eq__()`` method it should not\n define a ``__hash__()`` operation either; if it defines\n ``__eq__()`` but not ``__hash__()``, its instances will not be\n usable as items in hashable collections. If a class defines\n mutable objects and implements an ``__eq__()`` method, it should\n not implement ``__hash__()``, since the implementation of hashable\n collections requires that a key\'s hash value is immutable (if the\n object\'s hash value changes, it will be in the wrong hash bucket).\n\n User-defined classes have ``__eq__()`` and ``__hash__()`` methods\n by default; with them, all objects compare unequal (except with\n themselves) and ``x.__hash__()`` returns ``id(x)``.\n\n Classes which inherit a ``__hash__()`` method from a parent class\n but change the meaning of ``__eq__()`` such that the hash value\n returned is no longer appropriate (e.g. by switching to a value-\n based concept of equality instead of the default identity based\n equality) can explicitly flag themselves as being unhashable by\n setting ``__hash__ = None`` in the class definition. Doing so means\n that not only will instances of the class raise an appropriate\n ``TypeError`` when a program attempts to retrieve their hash value,\n but they will also be correctly identified as unhashable when\n checking ``isinstance(obj, collections.Hashable)`` (unlike classes\n which define their own ``__hash__()`` to explicitly raise\n ``TypeError``).\n\n If a class that overrides ``__eq__()`` needs to retain the\n implementation of ``__hash__()`` from a parent class, the\n interpreter must be told this explicitly by setting ``__hash__ =\n .__hash__``. Otherwise the inheritance of\n ``__hash__()`` will be blocked, just as if ``__hash__`` had been\n explicitly set to ``None``.\n\nobject.__bool__(self)\n\n Called to implement truth value testing and the built-in operation\n ``bool()``; should return ``False`` or ``True``. When this method\n is not defined, ``__len__()`` is called, if it is defined, and the\n object is considered true if its result is nonzero. If a class\n defines neither ``__len__()`` nor ``__bool__()``, all its instances\n are considered true.\n\n\nCustomizing attribute access\n============================\n\nThe following methods can be defined to customize the meaning of\nattribute access (use of, assignment to, or deletion of ``x.name``)\nfor class instances.\n\nobject.__getattr__(self, name)\n\n Called when an attribute lookup has not found the attribute in the\n usual places (i.e. it is not an instance attribute nor is it found\n in the class tree for ``self``). ``name`` is the attribute name.\n This method should return the (computed) attribute value or raise\n an ``AttributeError`` exception.\n\n Note that if the attribute is found through the normal mechanism,\n ``__getattr__()`` is not called. (This is an intentional asymmetry\n between ``__getattr__()`` and ``__setattr__()``.) This is done both\n for efficiency reasons and because otherwise ``__getattr__()``\n would have no way to access other attributes of the instance. Note\n that at least for instance variables, you can fake total control by\n not inserting any values in the instance attribute dictionary (but\n instead inserting them in another object). See the\n ``__getattribute__()`` method below for a way to actually get total\n control over attribute access.\n\nobject.__getattribute__(self, name)\n\n Called unconditionally to implement attribute accesses for\n instances of the class. If the class also defines\n ``__getattr__()``, the latter will not be called unless\n ``__getattribute__()`` either calls it explicitly or raises an\n ``AttributeError``. This method should return the (computed)\n attribute value or raise an ``AttributeError`` exception. In order\n to avoid infinite recursion in this method, its implementation\n should always call the base class method with the same name to\n access any attributes it needs, for example,\n ``object.__getattribute__(self, name)``.\n\n Note: This method may still be bypassed when looking up special methods\n as the result of implicit invocation via language syntax or\n built-in functions. See *Special method lookup*.\n\nobject.__setattr__(self, name, value)\n\n Called when an attribute assignment is attempted. This is called\n instead of the normal mechanism (i.e. store the value in the\n instance dictionary). *name* is the attribute name, *value* is the\n value to be assigned to it.\n\n If ``__setattr__()`` wants to assign to an instance attribute, it\n should call the base class method with the same name, for example,\n ``object.__setattr__(self, name, value)``.\n\nobject.__delattr__(self, name)\n\n Like ``__setattr__()`` but for attribute deletion instead of\n assignment. This should only be implemented if ``del obj.name`` is\n meaningful for the object.\n\nobject.__dir__(self)\n\n Called when ``dir()`` is called on the object. A list must be\n returned.\n\n\nImplementing Descriptors\n------------------------\n\nThe following methods only apply when an instance of the class\ncontaining the method (a so-called *descriptor* class) appears in the\nclass dictionary of another class, known as the *owner* class. In the\nexamples below, "the attribute" refers to the attribute whose name is\nthe key of the property in the owner class\' ``__dict__``.\n\nobject.__get__(self, instance, owner)\n\n Called to get the attribute of the owner class (class attribute\n access) or of an instance of that class (instance attribute\n access). *owner* is always the owner class, while *instance* is the\n instance that the attribute was accessed through, or ``None`` when\n the attribute is accessed through the *owner*. This method should\n return the (computed) attribute value or raise an\n ``AttributeError`` exception.\n\nobject.__set__(self, instance, value)\n\n Called to set the attribute on an instance *instance* of the owner\n class to a new value, *value*.\n\nobject.__delete__(self, instance)\n\n Called to delete the attribute on an instance *instance* of the\n owner class.\n\n\nInvoking Descriptors\n--------------------\n\nIn general, a descriptor is an object attribute with "binding\nbehavior", one whose attribute access has been overridden by methods\nin the descriptor protocol: ``__get__()``, ``__set__()``, and\n``__delete__()``. If any of those methods are defined for an object,\nit is said to be a descriptor.\n\nThe default behavior for attribute access is to get, set, or delete\nthe attribute from an object\'s dictionary. For instance, ``a.x`` has a\nlookup chain starting with ``a.__dict__[\'x\']``, then\n``type(a).__dict__[\'x\']``, and continuing through the base classes of\n``type(a)`` excluding metaclasses.\n\nHowever, if the looked-up value is an object defining one of the\ndescriptor methods, then Python may override the default behavior and\ninvoke the descriptor method instead. Where this occurs in the\nprecedence chain depends on which descriptor methods were defined and\nhow they were called.\n\nThe starting point for descriptor invocation is a binding, ``a.x``.\nHow the arguments are assembled depends on ``a``:\n\nDirect Call\n The simplest and least common call is when user code directly\n invokes a descriptor method: ``x.__get__(a)``.\n\nInstance Binding\n If binding to an object instance, ``a.x`` is transformed into the\n call: ``type(a).__dict__[\'x\'].__get__(a, type(a))``.\n\nClass Binding\n If binding to a class, ``A.x`` is transformed into the call:\n ``A.__dict__[\'x\'].__get__(None, A)``.\n\nSuper Binding\n If ``a`` is an instance of ``super``, then the binding ``super(B,\n obj).m()`` searches ``obj.__class__.__mro__`` for the base class\n ``A`` immediately preceding ``B`` and then invokes the descriptor\n with the call: ``A.__dict__[\'m\'].__get__(obj, A)``.\n\nFor instance bindings, the precedence of descriptor invocation depends\non the which descriptor methods are defined. A descriptor can define\nany combination of ``__get__()``, ``__set__()`` and ``__delete__()``.\nIf it does not define ``__get__()``, then accessing the attribute will\nreturn the descriptor object itself unless there is a value in the\nobject\'s instance dictionary. If the descriptor defines ``__set__()``\nand/or ``__delete__()``, it is a data descriptor; if it defines\nneither, it is a non-data descriptor. Normally, data descriptors\ndefine both ``__get__()`` and ``__set__()``, while non-data\ndescriptors have just the ``__get__()`` method. Data descriptors with\n``__set__()`` and ``__get__()`` defined always override a redefinition\nin an instance dictionary. In contrast, non-data descriptors can be\noverridden by instances.\n\nPython methods (including ``staticmethod()`` and ``classmethod()``)\nare implemented as non-data descriptors. Accordingly, instances can\nredefine and override methods. This allows individual instances to\nacquire behaviors that differ from other instances of the same class.\n\nThe ``property()`` function is implemented as a data descriptor.\nAccordingly, instances cannot override the behavior of a property.\n\n\n__slots__\n---------\n\nBy default, instances of classes have a dictionary for attribute\nstorage. This wastes space for objects having very few instance\nvariables. The space consumption can become acute when creating large\nnumbers of instances.\n\nThe default can be overridden by defining *__slots__* in a class\ndefinition. The *__slots__* declaration takes a sequence of instance\nvariables and reserves just enough space in each instance to hold a\nvalue for each variable. Space is saved because *__dict__* is not\ncreated for each instance.\n\nobject.__slots__\n\n This class variable can be assigned a string, iterable, or sequence\n of strings with variable names used by instances. If defined in a\n class, *__slots__* reserves space for the declared variables and\n prevents the automatic creation of *__dict__* and *__weakref__* for\n each instance.\n\n\nNotes on using *__slots__*\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n* When inheriting from a class without *__slots__*, the *__dict__*\n attribute of that class will always be accessible, so a *__slots__*\n definition in the subclass is meaningless.\n\n* Without a *__dict__* variable, instances cannot be assigned new\n variables not listed in the *__slots__* definition. Attempts to\n assign to an unlisted variable name raises ``AttributeError``. If\n dynamic assignment of new variables is desired, then add\n ``\'__dict__\'`` to the sequence of strings in the *__slots__*\n declaration.\n\n* Without a *__weakref__* variable for each instance, classes defining\n *__slots__* do not support weak references to its instances. If weak\n reference support is needed, then add ``\'__weakref__\'`` to the\n sequence of strings in the *__slots__* declaration.\n\n* *__slots__* are implemented at the class level by creating\n descriptors (*Implementing Descriptors*) for each variable name. As\n a result, class attributes cannot be used to set default values for\n instance variables defined by *__slots__*; otherwise, the class\n attribute would overwrite the descriptor assignment.\n\n* The action of a *__slots__* declaration is limited to the class\n where it is defined. As a result, subclasses will have a *__dict__*\n unless they also define *__slots__* (which must only contain names\n of any *additional* slots).\n\n* If a class defines a slot also defined in a base class, the instance\n variable defined by the base class slot is inaccessible (except by\n retrieving its descriptor directly from the base class). This\n renders the meaning of the program undefined. In the future, a\n check may be added to prevent this.\n\n* Nonempty *__slots__* does not work for classes derived from\n "variable-length" built-in types such as ``int``, ``str`` and\n ``tuple``.\n\n* Any non-string iterable may be assigned to *__slots__*. Mappings may\n also be used; however, in the future, special meaning may be\n assigned to the values corresponding to each key.\n\n* *__class__* assignment works only if both classes have the same\n *__slots__*.\n\n\nCustomizing class creation\n==========================\n\nBy default, classes are constructed using ``type()``. A class\ndefinition is read into a separate namespace and the value of class\nname is bound to the result of ``type(name, bases, dict)``.\n\nWhen the class definition is read, if a callable ``metaclass`` keyword\nargument is passed after the bases in the class definition, the\ncallable given will be called instead of ``type()``. If other keyword\narguments are passed, they will also be passed to the metaclass. This\nallows classes or functions to be written which monitor or alter the\nclass creation process:\n\n* Modifying the class dictionary prior to the class being created.\n\n* Returning an instance of another class -- essentially performing the\n role of a factory function.\n\nThese steps will have to be performed in the metaclass\'s ``__new__()``\nmethod -- ``type.__new__()`` can then be called from this method to\ncreate a class with different properties. This example adds a new\nelement to the class dictionary before creating the class:\n\n class metacls(type):\n def __new__(mcs, name, bases, dict):\n dict[\'foo\'] = \'metacls was here\'\n return type.__new__(mcs, name, bases, dict)\n\nYou can of course also override other class methods (or add new\nmethods); for example defining a custom ``__call__()`` method in the\nmetaclass allows custom behavior when the class is called, e.g. not\nalways creating a new instance.\n\nIf the metaclass has a ``__prepare__()`` attribute (usually\nimplemented as a class or static method), it is called before the\nclass body is evaluated with the name of the class and a tuple of its\nbases for arguments. It should return an object that supports the\nmapping interface that will be used to store the namespace of the\nclass. The default is a plain dictionary. This could be used, for\nexample, to keep track of the order that class attributes are declared\nin by returning an ordered dictionary.\n\nThe appropriate metaclass is determined by the following precedence\nrules:\n\n* If the ``metaclass`` keyword argument is passed with the bases, it\n is used.\n\n* Otherwise, if there is at least one base class, its metaclass is\n used.\n\n* Otherwise, the default metaclass (``type``) is used.\n\nThe potential uses for metaclasses are boundless. Some ideas that have\nbeen explored including logging, interface checking, automatic\ndelegation, automatic property creation, proxies, frameworks, and\nautomatic resource locking/synchronization.\n\nHere is an example of a metaclass that uses an\n``collections.OrderedDict`` to remember the order that class members\nwere defined:\n\n class OrderedClass(type):\n\n @classmethod\n def __prepare__(metacls, name, bases, **kwds):\n return collections.OrderedDict()\n\n def __new__(cls, name, bases, classdict):\n result = type.__new__(cls, name, bases, dict(classdict))\n result.members = tuple(classdict)\n return result\n\n class A(metaclass=OrderedClass):\n def one(self): pass\n def two(self): pass\n def three(self): pass\n def four(self): pass\n\n >>> A.members\n (\'__module__\', \'one\', \'two\', \'three\', \'four\')\n\nWhen the class definition for *A* gets executed, the process begins\nwith calling the metaclass\'s ``__prepare__()`` method which returns an\nempty ``collections.OrderedDict``. That mapping records the methods\nand attributes of *A* as they are defined within the body of the class\nstatement. Once those definitions are executed, the ordered dictionary\nis fully populated and the metaclass\'s ``__new__()`` method gets\ninvoked. That method builds the new type and it saves the ordered\ndictionary keys in an attribute called ``members``.\n\n\nCustomizing instance and subclass checks\n========================================\n\nThe following methods are used to override the default behavior of the\n``isinstance()`` and ``issubclass()`` built-in functions.\n\nIn particular, the metaclass ``abc.ABCMeta`` implements these methods\nin order to allow the addition of Abstract Base Classes (ABCs) as\n"virtual base classes" to any class or type (including built-in\ntypes), including other ABCs.\n\nclass.__instancecheck__(self, instance)\n\n Return true if *instance* should be considered a (direct or\n indirect) instance of *class*. If defined, called to implement\n ``isinstance(instance, class)``.\n\nclass.__subclasscheck__(self, subclass)\n\n Return true if *subclass* should be considered a (direct or\n indirect) subclass of *class*. If defined, called to implement\n ``issubclass(subclass, class)``.\n\nNote that these methods are looked up on the type (metaclass) of a\nclass. They cannot be defined as class methods in the actual class.\nThis is consistent with the lookup of special methods that are called\non instances, only in this case the instance is itself a class.\n\nSee also:\n\n **PEP 3119** - Introducing Abstract Base Classes\n Includes the specification for customizing ``isinstance()`` and\n ``issubclass()`` behavior through ``__instancecheck__()`` and\n ``__subclasscheck__()``, with motivation for this functionality\n in the context of adding Abstract Base Classes (see the ``abc``\n module) to the language.\n\n\nEmulating callable objects\n==========================\n\nobject.__call__(self[, args...])\n\n Called when the instance is "called" as a function; if this method\n is defined, ``x(arg1, arg2, ...)`` is a shorthand for\n ``x.__call__(arg1, arg2, ...)``.\n\n\nEmulating container types\n=========================\n\nThe following methods can be defined to implement container objects.\nContainers usually are sequences (such as lists or tuples) or mappings\n(like dictionaries), but can represent other containers as well. The\nfirst set of methods is used either to emulate a sequence or to\nemulate a mapping; the difference is that for a sequence, the\nallowable keys should be the integers *k* for which ``0 <= k < N``\nwhere *N* is the length of the sequence, or slice objects, which\ndefine a range of items. It is also recommended that mappings provide\nthe methods ``keys()``, ``values()``, ``items()``, ``get()``,\n``clear()``, ``setdefault()``, ``pop()``, ``popitem()``, ``copy()``,\nand ``update()`` behaving similar to those for Python\'s standard\ndictionary objects. The ``collections`` module provides a\n``MutableMapping`` abstract base class to help create those methods\nfrom a base set of ``__getitem__()``, ``__setitem__()``,\n``__delitem__()``, and ``keys()``. Mutable sequences should provide\nmethods ``append()``, ``count()``, ``index()``, ``extend()``,\n``insert()``, ``pop()``, ``remove()``, ``reverse()`` and ``sort()``,\nlike Python standard list objects. Finally, sequence types should\nimplement addition (meaning concatenation) and multiplication (meaning\nrepetition) by defining the methods ``__add__()``, ``__radd__()``,\n``__iadd__()``, ``__mul__()``, ``__rmul__()`` and ``__imul__()``\ndescribed below; they should not define other numerical operators. It\nis recommended that both mappings and sequences implement the\n``__contains__()`` method to allow efficient use of the ``in``\noperator; for mappings, ``in`` should search the mapping\'s keys; for\nsequences, it should search through the values. It is further\nrecommended that both mappings and sequences implement the\n``__iter__()`` method to allow efficient iteration through the\ncontainer; for mappings, ``__iter__()`` should be the same as\n``keys()``; for sequences, it should iterate through the values.\n\nobject.__len__(self)\n\n Called to implement the built-in function ``len()``. Should return\n the length of the object, an integer ``>=`` 0. Also, an object\n that doesn\'t define a ``__bool__()`` method and whose ``__len__()``\n method returns zero is considered to be false in a Boolean context.\n\nNote: Slicing is done exclusively with the following three methods. A\n call like\n\n a[1:2] = b\n\n is translated to\n\n a[slice(1, 2, None)] = b\n\n and so forth. Missing slice items are always filled in with\n ``None``.\n\nobject.__getitem__(self, key)\n\n Called to implement evaluation of ``self[key]``. For sequence\n types, the accepted keys should be integers and slice objects.\n Note that the special interpretation of negative indexes (if the\n class wishes to emulate a sequence type) is up to the\n ``__getitem__()`` method. If *key* is of an inappropriate type,\n ``TypeError`` may be raised; if of a value outside the set of\n indexes for the sequence (after any special interpretation of\n negative values), ``IndexError`` should be raised. For mapping\n types, if *key* is missing (not in the container), ``KeyError``\n should be raised.\n\n Note: ``for`` loops expect that an ``IndexError`` will be raised for\n illegal indexes to allow proper detection of the end of the\n sequence.\n\nobject.__setitem__(self, key, value)\n\n Called to implement assignment to ``self[key]``. Same note as for\n ``__getitem__()``. This should only be implemented for mappings if\n the objects support changes to the values for keys, or if new keys\n can be added, or for sequences if elements can be replaced. The\n same exceptions should be raised for improper *key* values as for\n the ``__getitem__()`` method.\n\nobject.__delitem__(self, key)\n\n Called to implement deletion of ``self[key]``. Same note as for\n ``__getitem__()``. This should only be implemented for mappings if\n the objects support removal of keys, or for sequences if elements\n can be removed from the sequence. The same exceptions should be\n raised for improper *key* values as for the ``__getitem__()``\n method.\n\nobject.__iter__(self)\n\n This method is called when an iterator is required for a container.\n This method should return a new iterator object that can iterate\n over all the objects in the container. For mappings, it should\n iterate over the keys of the container, and should also be made\n available as the method ``keys()``.\n\n Iterator objects also need to implement this method; they are\n required to return themselves. For more information on iterator\n objects, see *Iterator Types*.\n\nobject.__reversed__(self)\n\n Called (if present) by the ``reversed()`` built-in to implement\n reverse iteration. It should return a new iterator object that\n iterates over all the objects in the container in reverse order.\n\n If the ``__reversed__()`` method is not provided, the\n ``reversed()`` built-in will fall back to using the sequence\n protocol (``__len__()`` and ``__getitem__()``). Objects that\n support the sequence protocol should only provide\n ``__reversed__()`` if they can provide an implementation that is\n more efficient than the one provided by ``reversed()``.\n\nThe membership test operators (``in`` and ``not in``) are normally\nimplemented as an iteration through a sequence. However, container\nobjects can supply the following special method with a more efficient\nimplementation, which also does not require the object be a sequence.\n\nobject.__contains__(self, item)\n\n Called to implement membership test operators. Should return true\n if *item* is in *self*, false otherwise. For mapping objects, this\n should consider the keys of the mapping rather than the values or\n the key-item pairs.\n\n For objects that don\'t define ``__contains__()``, the membership\n test first tries iteration via ``__iter__()``, then the old\n sequence iteration protocol via ``__getitem__()``, see *this\n section in the language reference*.\n\n\nEmulating numeric types\n=======================\n\nThe following methods can be defined to emulate numeric objects.\nMethods corresponding to operations that are not supported by the\nparticular kind of number implemented (e.g., bitwise operations for\nnon-integral numbers) should be left undefined.\n\nobject.__add__(self, other)\nobject.__sub__(self, other)\nobject.__mul__(self, other)\nobject.__truediv__(self, other)\nobject.__floordiv__(self, other)\nobject.__mod__(self, other)\nobject.__divmod__(self, other)\nobject.__pow__(self, other[, modulo])\nobject.__lshift__(self, other)\nobject.__rshift__(self, other)\nobject.__and__(self, other)\nobject.__xor__(self, other)\nobject.__or__(self, other)\n\n These methods are called to implement the binary arithmetic\n operations (``+``, ``-``, ``*``, ``/``, ``//``, ``%``,\n ``divmod()``, ``pow()``, ``**``, ``<<``, ``>>``, ``&``, ``^``,\n ``|``). For instance, to evaluate the expression ``x + y``, where\n *x* is an instance of a class that has an ``__add__()`` method,\n ``x.__add__(y)`` is called. The ``__divmod__()`` method should be\n the equivalent to using ``__floordiv__()`` and ``__mod__()``; it\n should not be related to ``__truediv__()``. Note that\n ``__pow__()`` should be defined to accept an optional third\n argument if the ternary version of the built-in ``pow()`` function\n is to be supported.\n\n If one of those methods does not support the operation with the\n supplied arguments, it should return ``NotImplemented``.\n\nobject.__radd__(self, other)\nobject.__rsub__(self, other)\nobject.__rmul__(self, other)\nobject.__rtruediv__(self, other)\nobject.__rfloordiv__(self, other)\nobject.__rmod__(self, other)\nobject.__rdivmod__(self, other)\nobject.__rpow__(self, other)\nobject.__rlshift__(self, other)\nobject.__rrshift__(self, other)\nobject.__rand__(self, other)\nobject.__rxor__(self, other)\nobject.__ror__(self, other)\n\n These methods are called to implement the binary arithmetic\n operations (``+``, ``-``, ``*``, ``/``, ``//``, ``%``,\n ``divmod()``, ``pow()``, ``**``, ``<<``, ``>>``, ``&``, ``^``,\n ``|``) with reflected (swapped) operands. These functions are only\n called if the left operand does not support the corresponding\n operation and the operands are of different types. [2] For\n instance, to evaluate the expression ``x - y``, where *y* is an\n instance of a class that has an ``__rsub__()`` method,\n ``y.__rsub__(x)`` is called if ``x.__sub__(y)`` returns\n *NotImplemented*.\n\n Note that ternary ``pow()`` will not try calling ``__rpow__()``\n (the coercion rules would become too complicated).\n\n Note: If the right operand\'s type is a subclass of the left operand\'s\n type and that subclass provides the reflected method for the\n operation, this method will be called before the left operand\'s\n non-reflected method. This behavior allows subclasses to\n override their ancestors\' operations.\n\nobject.__iadd__(self, other)\nobject.__isub__(self, other)\nobject.__imul__(self, other)\nobject.__itruediv__(self, other)\nobject.__ifloordiv__(self, other)\nobject.__imod__(self, other)\nobject.__ipow__(self, other[, modulo])\nobject.__ilshift__(self, other)\nobject.__irshift__(self, other)\nobject.__iand__(self, other)\nobject.__ixor__(self, other)\nobject.__ior__(self, other)\n\n These methods are called to implement the augmented arithmetic\n assignments (``+=``, ``-=``, ``*=``, ``/=``, ``//=``, ``%=``,\n ``**=``, ``<<=``, ``>>=``, ``&=``, ``^=``, ``|=``). These methods\n should attempt to do the operation in-place (modifying *self*) and\n return the result (which could be, but does not have to be,\n *self*). If a specific method is not defined, the augmented\n assignment falls back to the normal methods. For instance, to\n execute the statement ``x += y``, where *x* is an instance of a\n class that has an ``__iadd__()`` method, ``x.__iadd__(y)`` is\n called. If *x* is an instance of a class that does not define a\n ``__iadd__()`` method, ``x.__add__(y)`` and ``y.__radd__(x)`` are\n considered, as with the evaluation of ``x + y``.\n\nobject.__neg__(self)\nobject.__pos__(self)\nobject.__abs__(self)\nobject.__invert__(self)\n\n Called to implement the unary arithmetic operations (``-``, ``+``,\n ``abs()`` and ``~``).\n\nobject.__complex__(self)\nobject.__int__(self)\nobject.__float__(self)\nobject.__round__(self[, n])\n\n Called to implement the built-in functions ``complex()``,\n ``int()``, ``float()`` and ``round()``. Should return a value of\n the appropriate type.\n\nobject.__index__(self)\n\n Called to implement ``operator.index()``. Also called whenever\n Python needs an integer object (such as in slicing, or in the\n built-in ``bin()``, ``hex()`` and ``oct()`` functions). Must return\n an integer.\n\n\nWith Statement Context Managers\n===============================\n\nA *context manager* is an object that defines the runtime context to\nbe established when executing a ``with`` statement. The context\nmanager handles the entry into, and the exit from, the desired runtime\ncontext for the execution of the block of code. Context managers are\nnormally invoked using the ``with`` statement (described in section\n*The with statement*), but can also be used by directly invoking their\nmethods.\n\nTypical uses of context managers include saving and restoring various\nkinds of global state, locking and unlocking resources, closing opened\nfiles, etc.\n\nFor more information on context managers, see *Context Manager Types*.\n\nobject.__enter__(self)\n\n Enter the runtime context related to this object. The ``with``\n statement will bind this method\'s return value to the target(s)\n specified in the ``as`` clause of the statement, if any.\n\nobject.__exit__(self, exc_type, exc_value, traceback)\n\n Exit the runtime context related to this object. The parameters\n describe the exception that caused the context to be exited. If the\n context was exited without an exception, all three arguments will\n be ``None``.\n\n If an exception is supplied, and the method wishes to suppress the\n exception (i.e., prevent it from being propagated), it should\n return a true value. Otherwise, the exception will be processed\n normally upon exit from this method.\n\n Note that ``__exit__()`` methods should not reraise the passed-in\n exception; this is the caller\'s responsibility.\n\nSee also:\n\n **PEP 0343** - The "with" statement\n The specification, background, and examples for the Python\n ``with`` statement.\n\n\nSpecial method lookup\n=====================\n\nFor custom classes, implicit invocations of special methods are only\nguaranteed to work correctly if defined on an object\'s type, not in\nthe object\'s instance dictionary. That behaviour is the reason why\nthe following code raises an exception:\n\n >>> class C:\n ... pass\n ...\n >>> c = C()\n >>> c.__len__ = lambda: 5\n >>> len(c)\n Traceback (most recent call last):\n File "", line 1, in \n TypeError: object of type \'C\' has no len()\n\nThe rationale behind this behaviour lies with a number of special\nmethods such as ``__hash__()`` and ``__repr__()`` that are implemented\nby all objects, including type objects. If the implicit lookup of\nthese methods used the conventional lookup process, they would fail\nwhen invoked on the type object itself:\n\n >>> 1 .__hash__() == hash(1)\n True\n >>> int.__hash__() == hash(int)\n Traceback (most recent call last):\n File "", line 1, in \n TypeError: descriptor \'__hash__\' of \'int\' object needs an argument\n\nIncorrectly attempting to invoke an unbound method of a class in this\nway is sometimes referred to as \'metaclass confusion\', and is avoided\nby bypassing the instance when looking up special methods:\n\n >>> type(1).__hash__(1) == hash(1)\n True\n >>> type(int).__hash__(int) == hash(int)\n True\n\nIn addition to bypassing any instance attributes in the interest of\ncorrectness, implicit special method lookup generally also bypasses\nthe ``__getattribute__()`` method even of the object\'s metaclass:\n\n >>> class Meta(type):\n ... def __getattribute__(*args):\n ... print("Metaclass getattribute invoked")\n ... return type.__getattribute__(*args)\n ...\n >>> class C(object, metaclass=Meta):\n ... def __len__(self):\n ... return 10\n ... def __getattribute__(*args):\n ... print("Class getattribute invoked")\n ... return object.__getattribute__(*args)\n ...\n >>> c = C()\n >>> c.__len__() # Explicit lookup via instance\n Class getattribute invoked\n 10\n >>> type(c).__len__(c) # Explicit lookup via type\n Metaclass getattribute invoked\n 10\n >>> len(c) # Implicit lookup\n 10\n\nBypassing the ``__getattribute__()`` machinery in this fashion\nprovides significant scope for speed optimisations within the\ninterpreter, at the cost of some flexibility in the handling of\nspecial methods (the special method *must* be set on the class object\nitself in order to be consistently invoked by the interpreter).\n\n-[ Footnotes ]-\n\n[1] It *is* possible in some cases to change an object\'s type, under\n certain controlled conditions. It generally isn\'t a good idea\n though, since it can lead to some very strange behaviour if it is\n handled incorrectly.\n\n[2] For operands of the same type, it is assumed that if the non-\n reflected method (such as ``__add__()``) fails the operation is\n not supported, which is why the reflected method is not called.\n', - 'string-methods': '\nString Methods\n**************\n\nString objects support the methods listed below.\n\nIn addition, Python\'s strings support the sequence type methods\ndescribed in the *Sequence Types --- str, bytes, bytearray, list,\ntuple, range* section. To output formatted strings, see the *String\nFormatting* section. Also, see the ``re`` module for string functions\nbased on regular expressions.\n\nstr.capitalize()\n\n Return a copy of the string with its first character capitalized\n and the rest lowercased.\n\nstr.center(width[, fillchar])\n\n Return centered in a string of length *width*. Padding is done\n using the specified *fillchar* (default is a space).\n\nstr.count(sub[, start[, end]])\n\n Return the number of non-overlapping occurrences of substring *sub*\n in the range [*start*, *end*]. Optional arguments *start* and\n *end* are interpreted as in slice notation.\n\nstr.encode(encoding="utf-8", errors="strict")\n\n Return an encoded version of the string as a bytes object. Default\n encoding is ``\'utf-8\'``. *errors* may be given to set a different\n error handling scheme. The default for *errors* is ``\'strict\'``,\n meaning that encoding errors raise a ``UnicodeError``. Other\n possible values are ``\'ignore\'``, ``\'replace\'``,\n ``\'xmlcharrefreplace\'``, ``\'backslashreplace\'`` and any other name\n registered via ``codecs.register_error()``, see section *Codec Base\n Classes*. For a list of possible encodings, see section *Standard\n Encodings*.\n\n Changed in version 3.1: Support for keyword arguments added.\n\nstr.endswith(suffix[, start[, end]])\n\n Return ``True`` if the string ends with the specified *suffix*,\n otherwise return ``False``. *suffix* can also be a tuple of\n suffixes to look for. With optional *start*, test beginning at\n that position. With optional *end*, stop comparing at that\n position.\n\nstr.expandtabs([tabsize])\n\n Return a copy of the string where all tab characters are replaced\n by one or more spaces, depending on the current column and the\n given tab size. The column number is reset to zero after each\n newline occurring in the string. If *tabsize* is not given, a tab\n size of ``8`` characters is assumed. This doesn\'t understand other\n non-printing characters or escape sequences.\n\nstr.find(sub[, start[, end]])\n\n Return the lowest index in the string where substring *sub* is\n found, such that *sub* is contained in the slice ``s[start:end]``.\n Optional arguments *start* and *end* are interpreted as in slice\n notation. Return ``-1`` if *sub* is not found.\n\nstr.format(*args, **kwargs)\n\n Perform a string formatting operation. The string on which this\n method is called can contain literal text or replacement fields\n delimited by braces ``{}``. Each replacement field contains either\n the numeric index of a positional argument, or the name of a\n keyword argument. Returns a copy of the string where each\n replacement field is replaced with the string value of the\n corresponding argument.\n\n >>> "The sum of 1 + 2 is {0}".format(1+2)\n \'The sum of 1 + 2 is 3\'\n\n See *Format String Syntax* for a description of the various\n formatting options that can be specified in format strings.\n\nstr.format_map(mapping)\n\n Similar to ``str.format(**mapping)``, except that ``mapping`` is\n used directly and not copied to a ``dict`` . This is useful if for\n example ``mapping`` is a dict subclass:\n\n >>> class Default(dict):\n ... def __missing__(self, key):\n ... return key\n ...\n >>> \'{name} was born in {country}\'.format_map(Default(name=\'Guido\'))\n \'Guido was born in country\'\n\n New in version 3.2.\n\nstr.index(sub[, start[, end]])\n\n Like ``find()``, but raise ``ValueError`` when the substring is not\n found.\n\nstr.isalnum()\n\n Return true if all characters in the string are alphanumeric and\n there is at least one character, false otherwise.\n\nstr.isalpha()\n\n Return true if all characters in the string are alphabetic and\n there is at least one character, false otherwise.\n\nstr.isdecimal()\n\n Return true if all characters in the string are decimal characters\n and there is at least one character, false otherwise. Decimal\n characters include digit characters, and all characters that that\n can be used to form decimal-radix numbers, e.g. U+0660, ARABIC-\n INDIC DIGIT ZERO.\n\nstr.isdigit()\n\n Return true if all characters in the string are digits and there is\n at least one character, false otherwise.\n\nstr.isidentifier()\n\n Return true if the string is a valid identifier according to the\n language definition, section *Identifiers and keywords*.\n\nstr.islower()\n\n Return true if all cased characters in the string are lowercase and\n there is at least one cased character, false otherwise.\n\nstr.isnumeric()\n\n Return true if all characters in the string are numeric characters,\n and there is at least one character, false otherwise. Numeric\n characters include digit characters, and all characters that have\n the Unicode numeric value property, e.g. U+2155, VULGAR FRACTION\n ONE FIFTH.\n\nstr.isprintable()\n\n Return true if all characters in the string are printable or the\n string is empty, false otherwise. Nonprintable characters are\n those characters defined in the Unicode character database as\n "Other" or "Separator", excepting the ASCII space (0x20) which is\n considered printable. (Note that printable characters in this\n context are those which should not be escaped when ``repr()`` is\n invoked on a string. It has no bearing on the handling of strings\n written to ``sys.stdout`` or ``sys.stderr``.)\n\nstr.isspace()\n\n Return true if there are only whitespace characters in the string\n and there is at least one character, false otherwise.\n\nstr.istitle()\n\n Return true if the string is a titlecased string and there is at\n least one character, for example uppercase characters may only\n follow uncased characters and lowercase characters only cased ones.\n Return false otherwise.\n\nstr.isupper()\n\n Return true if all cased characters in the string are uppercase and\n there is at least one cased character, false otherwise.\n\nstr.join(iterable)\n\n Return a string which is the concatenation of the strings in the\n *iterable* *iterable*. A ``TypeError`` will be raised if there are\n any non-string values in *seq*, including ``bytes`` objects. The\n separator between elements is the string providing this method.\n\nstr.ljust(width[, fillchar])\n\n Return the string left justified in a string of length *width*.\n Padding is done using the specified *fillchar* (default is a\n space). The original string is returned if *width* is less than\n ``len(s)``.\n\nstr.lower()\n\n Return a copy of the string converted to lowercase.\n\nstr.lstrip([chars])\n\n Return a copy of the string with leading characters removed. The\n *chars* argument is a string specifying the set of characters to be\n removed. If omitted or ``None``, the *chars* argument defaults to\n removing whitespace. The *chars* argument is not a prefix; rather,\n all combinations of its values are stripped:\n\n >>> \' spacious \'.lstrip()\n \'spacious \'\n >>> \'www.example.com\'.lstrip(\'cmowz.\')\n \'example.com\'\n\nstatic str.maketrans(x[, y[, z]])\n\n This static method returns a translation table usable for\n ``str.translate()``.\n\n If there is only one argument, it must be a dictionary mapping\n Unicode ordinals (integers) or characters (strings of length 1) to\n Unicode ordinals, strings (of arbitrary lengths) or None.\n Character keys will then be converted to ordinals.\n\n If there are two arguments, they must be strings of equal length,\n and in the resulting dictionary, each character in x will be mapped\n to the character at the same position in y. If there is a third\n argument, it must be a string, whose characters will be mapped to\n None in the result.\n\nstr.partition(sep)\n\n Split the string at the first occurrence of *sep*, and return a\n 3-tuple containing the part before the separator, the separator\n itself, and the part after the separator. If the separator is not\n found, return a 3-tuple containing the string itself, followed by\n two empty strings.\n\nstr.replace(old, new[, count])\n\n Return a copy of the string with all occurrences of substring *old*\n replaced by *new*. If the optional argument *count* is given, only\n the first *count* occurrences are replaced.\n\nstr.rfind(sub[, start[, end]])\n\n Return the highest index in the string where substring *sub* is\n found, such that *sub* is contained within ``s[start:end]``.\n Optional arguments *start* and *end* are interpreted as in slice\n notation. Return ``-1`` on failure.\n\nstr.rindex(sub[, start[, end]])\n\n Like ``rfind()`` but raises ``ValueError`` when the substring *sub*\n is not found.\n\nstr.rjust(width[, fillchar])\n\n Return the string right justified in a string of length *width*.\n Padding is done using the specified *fillchar* (default is a\n space). The original string is returned if *width* is less than\n ``len(s)``.\n\nstr.rpartition(sep)\n\n Split the string at the last occurrence of *sep*, and return a\n 3-tuple containing the part before the separator, the separator\n itself, and the part after the separator. If the separator is not\n found, return a 3-tuple containing two empty strings, followed by\n the string itself.\n\nstr.rsplit([sep[, maxsplit]])\n\n Return a list of the words in the string, using *sep* as the\n delimiter string. If *maxsplit* is given, at most *maxsplit* splits\n are done, the *rightmost* ones. If *sep* is not specified or\n ``None``, any whitespace string is a separator. Except for\n splitting from the right, ``rsplit()`` behaves like ``split()``\n which is described in detail below.\n\nstr.rstrip([chars])\n\n Return a copy of the string with trailing characters removed. The\n *chars* argument is a string specifying the set of characters to be\n removed. If omitted or ``None``, the *chars* argument defaults to\n removing whitespace. The *chars* argument is not a suffix; rather,\n all combinations of its values are stripped:\n\n >>> \' spacious \'.rstrip()\n \' spacious\'\n >>> \'mississippi\'.rstrip(\'ipz\')\n \'mississ\'\n\nstr.split([sep[, maxsplit]])\n\n Return a list of the words in the string, using *sep* as the\n delimiter string. If *maxsplit* is given, at most *maxsplit*\n splits are done (thus, the list will have at most ``maxsplit+1``\n elements). If *maxsplit* is not specified, then there is no limit\n on the number of splits (all possible splits are made).\n\n If *sep* is given, consecutive delimiters are not grouped together\n and are deemed to delimit empty strings (for example,\n ``\'1,,2\'.split(\',\')`` returns ``[\'1\', \'\', \'2\']``). The *sep*\n argument may consist of multiple characters (for example,\n ``\'1<>2<>3\'.split(\'<>\')`` returns ``[\'1\', \'2\', \'3\']``). Splitting\n an empty string with a specified separator returns ``[\'\']``.\n\n If *sep* is not specified or is ``None``, a different splitting\n algorithm is applied: runs of consecutive whitespace are regarded\n as a single separator, and the result will contain no empty strings\n at the start or end if the string has leading or trailing\n whitespace. Consequently, splitting an empty string or a string\n consisting of just whitespace with a ``None`` separator returns\n ``[]``.\n\n For example, ``\' 1 2 3 \'.split()`` returns ``[\'1\', \'2\', \'3\']``,\n and ``\' 1 2 3 \'.split(None, 1)`` returns ``[\'1\', \'2 3 \']``.\n\nstr.splitlines([keepends])\n\n Return a list of the lines in the string, breaking at line\n boundaries. Line breaks are not included in the resulting list\n unless *keepends* is given and true.\n\nstr.startswith(prefix[, start[, end]])\n\n Return ``True`` if string starts with the *prefix*, otherwise\n return ``False``. *prefix* can also be a tuple of prefixes to look\n for. With optional *start*, test string beginning at that\n position. With optional *end*, stop comparing string at that\n position.\n\nstr.strip([chars])\n\n Return a copy of the string with the leading and trailing\n characters removed. The *chars* argument is a string specifying the\n set of characters to be removed. If omitted or ``None``, the\n *chars* argument defaults to removing whitespace. The *chars*\n argument is not a prefix or suffix; rather, all combinations of its\n values are stripped:\n\n >>> \' spacious \'.strip()\n \'spacious\'\n >>> \'www.example.com\'.strip(\'cmowz.\')\n \'example\'\n\nstr.swapcase()\n\n Return a copy of the string with uppercase characters converted to\n lowercase and vice versa.\n\nstr.title()\n\n Return a titlecased version of the string where words start with an\n uppercase character and the remaining characters are lowercase.\n\n The algorithm uses a simple language-independent definition of a\n word as groups of consecutive letters. The definition works in\n many contexts but it means that apostrophes in contractions and\n possessives form word boundaries, which may not be the desired\n result:\n\n >>> "they\'re bill\'s friends from the UK".title()\n "They\'Re Bill\'S Friends From The Uk"\n\n A workaround for apostrophes can be constructed using regular\n expressions:\n\n >>> import re\n >>> def titlecase(s):\n return re.sub(r"[A-Za-z]+(\'[A-Za-z]+)?",\n lambda mo: mo.group(0)[0].upper() +\n mo.group(0)[1:].lower(),\n s)\n\n >>> titlecase("they\'re bill\'s friends.")\n "They\'re Bill\'s Friends."\n\nstr.translate(map)\n\n Return a copy of the *s* where all characters have been mapped\n through the *map* which must be a dictionary of Unicode ordinals\n (integers) to Unicode ordinals, strings or ``None``. Unmapped\n characters are left untouched. Characters mapped to ``None`` are\n deleted.\n\n You can use ``str.maketrans()`` to create a translation map from\n character-to-character mappings in different formats.\n\n Note: An even more flexible approach is to create a custom character\n mapping codec using the ``codecs`` module (see\n ``encodings.cp1251`` for an example).\n\nstr.upper()\n\n Return a copy of the string converted to uppercase.\n\nstr.zfill(width)\n\n Return the numeric string left filled with zeros in a string of\n length *width*. A sign prefix is handled correctly. The original\n string is returned if *width* is less than ``len(s)``.\n', + 'string-methods': '\nString Methods\n**************\n\nString objects support the methods listed below.\n\nIn addition, Python\'s strings support the sequence type methods\ndescribed in the *Sequence Types --- str, bytes, bytearray, list,\ntuple, range* section. To output formatted strings, see the *String\nFormatting* section. Also, see the ``re`` module for string functions\nbased on regular expressions.\n\nstr.capitalize()\n\n Return a copy of the string with its first character capitalized\n and the rest lowercased.\n\nstr.center(width[, fillchar])\n\n Return centered in a string of length *width*. Padding is done\n using the specified *fillchar* (default is a space).\n\nstr.count(sub[, start[, end]])\n\n Return the number of non-overlapping occurrences of substring *sub*\n in the range [*start*, *end*]. Optional arguments *start* and\n *end* are interpreted as in slice notation.\n\nstr.encode(encoding="utf-8", errors="strict")\n\n Return an encoded version of the string as a bytes object. Default\n encoding is ``\'utf-8\'``. *errors* may be given to set a different\n error handling scheme. The default for *errors* is ``\'strict\'``,\n meaning that encoding errors raise a ``UnicodeError``. Other\n possible values are ``\'ignore\'``, ``\'replace\'``,\n ``\'xmlcharrefreplace\'``, ``\'backslashreplace\'`` and any other name\n registered via ``codecs.register_error()``, see section *Codec Base\n Classes*. For a list of possible encodings, see section *Standard\n Encodings*.\n\n Changed in version 3.1: Support for keyword arguments added.\n\nstr.endswith(suffix[, start[, end]])\n\n Return ``True`` if the string ends with the specified *suffix*,\n otherwise return ``False``. *suffix* can also be a tuple of\n suffixes to look for. With optional *start*, test beginning at\n that position. With optional *end*, stop comparing at that\n position.\n\nstr.expandtabs([tabsize])\n\n Return a copy of the string where all tab characters are replaced\n by one or more spaces, depending on the current column and the\n given tab size. The column number is reset to zero after each\n newline occurring in the string. If *tabsize* is not given, a tab\n size of ``8`` characters is assumed. This doesn\'t understand other\n non-printing characters or escape sequences.\n\nstr.find(sub[, start[, end]])\n\n Return the lowest index in the string where substring *sub* is\n found, such that *sub* is contained in the slice ``s[start:end]``.\n Optional arguments *start* and *end* are interpreted as in slice\n notation. Return ``-1`` if *sub* is not found.\n\nstr.format(*args, **kwargs)\n\n Perform a string formatting operation. The string on which this\n method is called can contain literal text or replacement fields\n delimited by braces ``{}``. Each replacement field contains either\n the numeric index of a positional argument, or the name of a\n keyword argument. Returns a copy of the string where each\n replacement field is replaced with the string value of the\n corresponding argument.\n\n >>> "The sum of 1 + 2 is {0}".format(1+2)\n \'The sum of 1 + 2 is 3\'\n\n See *Format String Syntax* for a description of the various\n formatting options that can be specified in format strings.\n\nstr.format_map(mapping)\n\n Similar to ``str.format(**mapping)``, except that ``mapping`` is\n used directly and not copied to a ``dict`` . This is useful if for\n example ``mapping`` is a dict subclass:\n\n >>> class Default(dict):\n ... def __missing__(self, key):\n ... return key\n ...\n >>> \'{name} was born in {country}\'.format_map(Default(name=\'Guido\'))\n \'Guido was born in country\'\n\n New in version 3.2.\n\nstr.index(sub[, start[, end]])\n\n Like ``find()``, but raise ``ValueError`` when the substring is not\n found.\n\nstr.isalnum()\n\n Return true if all characters in the string are alphanumeric and\n there is at least one character, false otherwise. A character\n ``c`` is alphanumeric if one of the following returns ``True``:\n ``c.isalpha()``, ``c.isdecimal()``, ``c.isdigit()``, or\n ``c.isnumeric()``.\n\nstr.isalpha()\n\n Return true if all characters in the string are alphabetic and\n there is at least one character, false otherwise. Alphabetic\n characters are those characters defined in the Unicode character\n database as "Letter", i.e., those with general category property\n being one of "Lm", "Lt", "Lu", "Ll", or "Lo". Note that this is\n different from the "Alphabetic" property defined in the Unicode\n Standard.\n\nstr.isdecimal()\n\n Return true if all characters in the string are decimal characters\n and there is at least one character, false otherwise. Decimal\n characters are those from general category "Nd". This category\n includes digit characters, and all characters that that can be used\n to form decimal-radix numbers, e.g. U+0660, ARABIC-INDIC DIGIT\n ZERO.\n\nstr.isdigit()\n\n Return true if all characters in the string are digits and there is\n at least one character, false otherwise. Digits include decimal\n characters and digits that need special handling, such as the\n compatibility superscript digits. Formally, a digit is a character\n that has the property value Numeric_Type=Digit or\n Numeric_Type=Decimal.\n\nstr.isidentifier()\n\n Return true if the string is a valid identifier according to the\n language definition, section *Identifiers and keywords*.\n\nstr.islower()\n\n Return true if all cased characters in the string are lowercase and\n there is at least one cased character, false otherwise. Cased\n characters are those with general category property being one of\n "Lu", "Ll", or "Lt" and lowercase characters are those with general\n category property "Ll".\n\nstr.isnumeric()\n\n Return true if all characters in the string are numeric characters,\n and there is at least one character, false otherwise. Numeric\n characters include digit characters, and all characters that have\n the Unicode numeric value property, e.g. U+2155, VULGAR FRACTION\n ONE FIFTH. Formally, numeric characters are those with the\n property value Numeric_Type=Digit, Numeric_Type=Decimal or\n Numeric_Type=Numeric.\n\nstr.isprintable()\n\n Return true if all characters in the string are printable or the\n string is empty, false otherwise. Nonprintable characters are\n those characters defined in the Unicode character database as\n "Other" or "Separator", excepting the ASCII space (0x20) which is\n considered printable. (Note that printable characters in this\n context are those which should not be escaped when ``repr()`` is\n invoked on a string. It has no bearing on the handling of strings\n written to ``sys.stdout`` or ``sys.stderr``.)\n\nstr.isspace()\n\n Return true if there are only whitespace characters in the string\n and there is at least one character, false otherwise. Whitespace\n characters are those characters defined in the Unicode character\n database as "Other" or "Separator" and those with bidirectional\n property being one of "WS", "B", or "S".\n\nstr.istitle()\n\n Return true if the string is a titlecased string and there is at\n least one character, for example uppercase characters may only\n follow uncased characters and lowercase characters only cased ones.\n Return false otherwise.\n\nstr.isupper()\n\n Return true if all cased characters in the string are uppercase and\n there is at least one cased character, false otherwise. Cased\n characters are those with general category property being one of\n "Lu", "Ll", or "Lt" and uppercase characters are those with general\n category property "Lu".\n\nstr.join(iterable)\n\n Return a string which is the concatenation of the strings in the\n *iterable* *iterable*. A ``TypeError`` will be raised if there are\n any non-string values in *seq*, including ``bytes`` objects. The\n separator between elements is the string providing this method.\n\nstr.ljust(width[, fillchar])\n\n Return the string left justified in a string of length *width*.\n Padding is done using the specified *fillchar* (default is a\n space). The original string is returned if *width* is less than\n ``len(s)``.\n\nstr.lower()\n\n Return a copy of the string converted to lowercase.\n\nstr.lstrip([chars])\n\n Return a copy of the string with leading characters removed. The\n *chars* argument is a string specifying the set of characters to be\n removed. If omitted or ``None``, the *chars* argument defaults to\n removing whitespace. The *chars* argument is not a prefix; rather,\n all combinations of its values are stripped:\n\n >>> \' spacious \'.lstrip()\n \'spacious \'\n >>> \'www.example.com\'.lstrip(\'cmowz.\')\n \'example.com\'\n\nstatic str.maketrans(x[, y[, z]])\n\n This static method returns a translation table usable for\n ``str.translate()``.\n\n If there is only one argument, it must be a dictionary mapping\n Unicode ordinals (integers) or characters (strings of length 1) to\n Unicode ordinals, strings (of arbitrary lengths) or None.\n Character keys will then be converted to ordinals.\n\n If there are two arguments, they must be strings of equal length,\n and in the resulting dictionary, each character in x will be mapped\n to the character at the same position in y. If there is a third\n argument, it must be a string, whose characters will be mapped to\n None in the result.\n\nstr.partition(sep)\n\n Split the string at the first occurrence of *sep*, and return a\n 3-tuple containing the part before the separator, the separator\n itself, and the part after the separator. If the separator is not\n found, return a 3-tuple containing the string itself, followed by\n two empty strings.\n\nstr.replace(old, new[, count])\n\n Return a copy of the string with all occurrences of substring *old*\n replaced by *new*. If the optional argument *count* is given, only\n the first *count* occurrences are replaced.\n\nstr.rfind(sub[, start[, end]])\n\n Return the highest index in the string where substring *sub* is\n found, such that *sub* is contained within ``s[start:end]``.\n Optional arguments *start* and *end* are interpreted as in slice\n notation. Return ``-1`` on failure.\n\nstr.rindex(sub[, start[, end]])\n\n Like ``rfind()`` but raises ``ValueError`` when the substring *sub*\n is not found.\n\nstr.rjust(width[, fillchar])\n\n Return the string right justified in a string of length *width*.\n Padding is done using the specified *fillchar* (default is a\n space). The original string is returned if *width* is less than\n ``len(s)``.\n\nstr.rpartition(sep)\n\n Split the string at the last occurrence of *sep*, and return a\n 3-tuple containing the part before the separator, the separator\n itself, and the part after the separator. If the separator is not\n found, return a 3-tuple containing two empty strings, followed by\n the string itself.\n\nstr.rsplit([sep[, maxsplit]])\n\n Return a list of the words in the string, using *sep* as the\n delimiter string. If *maxsplit* is given, at most *maxsplit* splits\n are done, the *rightmost* ones. If *sep* is not specified or\n ``None``, any whitespace string is a separator. Except for\n splitting from the right, ``rsplit()`` behaves like ``split()``\n which is described in detail below.\n\nstr.rstrip([chars])\n\n Return a copy of the string with trailing characters removed. The\n *chars* argument is a string specifying the set of characters to be\n removed. If omitted or ``None``, the *chars* argument defaults to\n removing whitespace. The *chars* argument is not a suffix; rather,\n all combinations of its values are stripped:\n\n >>> \' spacious \'.rstrip()\n \' spacious\'\n >>> \'mississippi\'.rstrip(\'ipz\')\n \'mississ\'\n\nstr.split([sep[, maxsplit]])\n\n Return a list of the words in the string, using *sep* as the\n delimiter string. If *maxsplit* is given, at most *maxsplit*\n splits are done (thus, the list will have at most ``maxsplit+1``\n elements). If *maxsplit* is not specified, then there is no limit\n on the number of splits (all possible splits are made).\n\n If *sep* is given, consecutive delimiters are not grouped together\n and are deemed to delimit empty strings (for example,\n ``\'1,,2\'.split(\',\')`` returns ``[\'1\', \'\', \'2\']``). The *sep*\n argument may consist of multiple characters (for example,\n ``\'1<>2<>3\'.split(\'<>\')`` returns ``[\'1\', \'2\', \'3\']``). Splitting\n an empty string with a specified separator returns ``[\'\']``.\n\n If *sep* is not specified or is ``None``, a different splitting\n algorithm is applied: runs of consecutive whitespace are regarded\n as a single separator, and the result will contain no empty strings\n at the start or end if the string has leading or trailing\n whitespace. Consequently, splitting an empty string or a string\n consisting of just whitespace with a ``None`` separator returns\n ``[]``.\n\n For example, ``\' 1 2 3 \'.split()`` returns ``[\'1\', \'2\', \'3\']``,\n and ``\' 1 2 3 \'.split(None, 1)`` returns ``[\'1\', \'2 3 \']``.\n\nstr.splitlines([keepends])\n\n Return a list of the lines in the string, breaking at line\n boundaries. Line breaks are not included in the resulting list\n unless *keepends* is given and true.\n\nstr.startswith(prefix[, start[, end]])\n\n Return ``True`` if string starts with the *prefix*, otherwise\n return ``False``. *prefix* can also be a tuple of prefixes to look\n for. With optional *start*, test string beginning at that\n position. With optional *end*, stop comparing string at that\n position.\n\nstr.strip([chars])\n\n Return a copy of the string with the leading and trailing\n characters removed. The *chars* argument is a string specifying the\n set of characters to be removed. If omitted or ``None``, the\n *chars* argument defaults to removing whitespace. The *chars*\n argument is not a prefix or suffix; rather, all combinations of its\n values are stripped:\n\n >>> \' spacious \'.strip()\n \'spacious\'\n >>> \'www.example.com\'.strip(\'cmowz.\')\n \'example\'\n\nstr.swapcase()\n\n Return a copy of the string with uppercase characters converted to\n lowercase and vice versa.\n\nstr.title()\n\n Return a titlecased version of the string where words start with an\n uppercase character and the remaining characters are lowercase.\n\n The algorithm uses a simple language-independent definition of a\n word as groups of consecutive letters. The definition works in\n many contexts but it means that apostrophes in contractions and\n possessives form word boundaries, which may not be the desired\n result:\n\n >>> "they\'re bill\'s friends from the UK".title()\n "They\'Re Bill\'S Friends From The Uk"\n\n A workaround for apostrophes can be constructed using regular\n expressions:\n\n >>> import re\n >>> def titlecase(s):\n return re.sub(r"[A-Za-z]+(\'[A-Za-z]+)?",\n lambda mo: mo.group(0)[0].upper() +\n mo.group(0)[1:].lower(),\n s)\n\n >>> titlecase("they\'re bill\'s friends.")\n "They\'re Bill\'s Friends."\n\nstr.translate(map)\n\n Return a copy of the *s* where all characters have been mapped\n through the *map* which must be a dictionary of Unicode ordinals\n (integers) to Unicode ordinals, strings or ``None``. Unmapped\n characters are left untouched. Characters mapped to ``None`` are\n deleted.\n\n You can use ``str.maketrans()`` to create a translation map from\n character-to-character mappings in different formats.\n\n Note: An even more flexible approach is to create a custom character\n mapping codec using the ``codecs`` module (see\n ``encodings.cp1251`` for an example).\n\nstr.upper()\n\n Return a copy of the string converted to uppercase.\n\nstr.zfill(width)\n\n Return the numeric string left filled with zeros in a string of\n length *width*. A sign prefix is handled correctly. The original\n string is returned if *width* is less than ``len(s)``.\n', 'strings': '\nString and Bytes literals\n*************************\n\nString literals are described by the following lexical definitions:\n\n stringliteral ::= [stringprefix](shortstring | longstring)\n stringprefix ::= "r" | "R"\n shortstring ::= "\'" shortstringitem* "\'" | \'"\' shortstringitem* \'"\'\n longstring ::= "\'\'\'" longstringitem* "\'\'\'" | \'"""\' longstringitem* \'"""\'\n shortstringitem ::= shortstringchar | stringescapeseq\n longstringitem ::= longstringchar | stringescapeseq\n shortstringchar ::= \n longstringchar ::= \n stringescapeseq ::= "\\" \n\n bytesliteral ::= bytesprefix(shortbytes | longbytes)\n bytesprefix ::= "b" | "B" | "br" | "Br" | "bR" | "BR"\n shortbytes ::= "\'" shortbytesitem* "\'" | \'"\' shortbytesitem* \'"\'\n longbytes ::= "\'\'\'" longbytesitem* "\'\'\'" | \'"""\' longbytesitem* \'"""\'\n shortbytesitem ::= shortbyteschar | bytesescapeseq\n longbytesitem ::= longbyteschar | bytesescapeseq\n shortbyteschar ::= \n longbyteschar ::= \n bytesescapeseq ::= "\\" \n\nOne syntactic restriction not indicated by these productions is that\nwhitespace is not allowed between the ``stringprefix`` or\n``bytesprefix`` and the rest of the literal. The source character set\nis defined by the encoding declaration; it is UTF-8 if no encoding\ndeclaration is given in the source file; see section *Encoding\ndeclarations*.\n\nIn plain English: Both types of literals can be enclosed in matching\nsingle quotes (``\'``) or double quotes (``"``). They can also be\nenclosed in matching groups of three single or double quotes (these\nare generally referred to as *triple-quoted strings*). The backslash\n(``\\``) character is used to escape characters that otherwise have a\nspecial meaning, such as newline, backslash itself, or the quote\ncharacter.\n\nBytes literals are always prefixed with ``\'b\'`` or ``\'B\'``; they\nproduce an instance of the ``bytes`` type instead of the ``str`` type.\nThey may only contain ASCII characters; bytes with a numeric value of\n128 or greater must be expressed with escapes.\n\nBoth string and bytes literals may optionally be prefixed with a\nletter ``\'r\'`` or ``\'R\'``; such strings are called *raw strings* and\ntreat backslashes as literal characters. As a result, in string\nliterals, ``\'\\U\'`` and ``\'\\u\'`` escapes in raw strings are not treated\nspecially.\n\nIn triple-quoted strings, unescaped newlines and quotes are allowed\n(and are retained), except that three unescaped quotes in a row\nterminate the string. (A "quote" is the character used to open the\nstring, i.e. either ``\'`` or ``"``.)\n\nUnless an ``\'r\'`` or ``\'R\'`` prefix is present, escape sequences in\nstrings are interpreted according to rules similar to those used by\nStandard C. The recognized escape sequences are:\n\n+-------------------+-----------------------------------+---------+\n| Escape Sequence | Meaning | Notes |\n+===================+===================================+=========+\n| ``\\newline`` | Backslash and newline ignored | |\n+-------------------+-----------------------------------+---------+\n| ``\\\\`` | Backslash (``\\``) | |\n+-------------------+-----------------------------------+---------+\n| ``\\\'`` | Single quote (``\'``) | |\n+-------------------+-----------------------------------+---------+\n| ``\\"`` | Double quote (``"``) | |\n+-------------------+-----------------------------------+---------+\n| ``\\a`` | ASCII Bell (BEL) | |\n+-------------------+-----------------------------------+---------+\n| ``\\b`` | ASCII Backspace (BS) | |\n+-------------------+-----------------------------------+---------+\n| ``\\f`` | ASCII Formfeed (FF) | |\n+-------------------+-----------------------------------+---------+\n| ``\\n`` | ASCII Linefeed (LF) | |\n+-------------------+-----------------------------------+---------+\n| ``\\r`` | ASCII Carriage Return (CR) | |\n+-------------------+-----------------------------------+---------+\n| ``\\t`` | ASCII Horizontal Tab (TAB) | |\n+-------------------+-----------------------------------+---------+\n| ``\\v`` | ASCII Vertical Tab (VT) | |\n+-------------------+-----------------------------------+---------+\n| ``\\ooo`` | Character with octal value *ooo* | (1,3) |\n+-------------------+-----------------------------------+---------+\n| ``\\xhh`` | Character with hex value *hh* | (2,3) |\n+-------------------+-----------------------------------+---------+\n\nEscape sequences only recognized in string literals are:\n\n+-------------------+-----------------------------------+---------+\n| Escape Sequence | Meaning | Notes |\n+===================+===================================+=========+\n| ``\\N{name}`` | Character named *name* in the | |\n| | Unicode database | |\n+-------------------+-----------------------------------+---------+\n| ``\\uxxxx`` | Character with 16-bit hex value | (4) |\n| | *xxxx* | |\n+-------------------+-----------------------------------+---------+\n| ``\\Uxxxxxxxx`` | Character with 32-bit hex value | (5) |\n| | *xxxxxxxx* | |\n+-------------------+-----------------------------------+---------+\n\nNotes:\n\n1. As in Standard C, up to three octal digits are accepted.\n\n2. Unlike in Standard C, exactly two hex digits are required.\n\n3. In a bytes literal, hexadecimal and octal escapes denote the byte\n with the given value. In a string literal, these escapes denote a\n Unicode character with the given value.\n\n4. Individual code units which form parts of a surrogate pair can be\n encoded using this escape sequence. Exactly four hex digits are\n required.\n\n5. Any Unicode character can be encoded this way, but characters\n outside the Basic Multilingual Plane (BMP) will be encoded using a\n surrogate pair if Python is compiled to use 16-bit code units (the\n default). Exactly eight hex digits are required.\n\nUnlike Standard C, all unrecognized escape sequences are left in the\nstring unchanged, i.e., *the backslash is left in the string*. (This\nbehavior is useful when debugging: if an escape sequence is mistyped,\nthe resulting output is more easily recognized as broken.) It is also\nimportant to note that the escape sequences only recognized in string\nliterals fall into the category of unrecognized escapes for bytes\nliterals.\n\nEven in a raw string, string quotes can be escaped with a backslash,\nbut the backslash remains in the string; for example, ``r"\\""`` is a\nvalid string literal consisting of two characters: a backslash and a\ndouble quote; ``r"\\"`` is not a valid string literal (even a raw\nstring cannot end in an odd number of backslashes). Specifically, *a\nraw string cannot end in a single backslash* (since the backslash\nwould escape the following quote character). Note also that a single\nbackslash followed by a newline is interpreted as those two characters\nas part of the string, *not* as a line continuation.\n', 'subscriptions': '\nSubscriptions\n*************\n\nA subscription selects an item of a sequence (string, tuple or list)\nor mapping (dictionary) object:\n\n subscription ::= primary "[" expression_list "]"\n\nThe primary must evaluate to an object that supports subscription,\ne.g. a list or dictionary. User-defined objects can support\nsubscription by defining a ``__getitem__()`` method.\n\nFor built-in objects, there are two types of objects that support\nsubscription:\n\nIf the primary is a mapping, the expression list must evaluate to an\nobject whose value is one of the keys of the mapping, and the\nsubscription selects the value in the mapping that corresponds to that\nkey. (The expression list is a tuple except if it has exactly one\nitem.)\n\nIf the primary is a sequence, the expression (list) must evaluate to\nan integer or a slice (as discussed in the following section).\n\nThe formal syntax makes no special provision for negative indices in\nsequences; however, built-in sequences all provide a ``__getitem__()``\nmethod that interprets negative indices by adding the length of the\nsequence to the index (so that ``x[-1]`` selects the last item of\n``x``). The resulting value must be a nonnegative integer less than\nthe number of items in the sequence, and the subscription selects the\nitem whose index is that value (counting from zero). Since the support\nfor negative indices and slicing occurs in the object\'s\n``__getitem__()`` method, subclasses overriding this method will need\nto explicitly add that support.\n\nA string\'s items are characters. A character is not a separate data\ntype but a string of exactly one character.\n', 'truth': "\nTruth Value Testing\n*******************\n\nAny object can be tested for truth value, for use in an ``if`` or\n``while`` condition or as operand of the Boolean operations below. The\nfollowing values are considered false:\n\n* ``None``\n\n* ``False``\n\n* zero of any numeric type, for example, ``0``, ``0.0``, ``0j``.\n\n* any empty sequence, for example, ``''``, ``()``, ``[]``.\n\n* any empty mapping, for example, ``{}``.\n\n* instances of user-defined classes, if the class defines a\n ``__bool__()`` or ``__len__()`` method, when that method returns the\n integer zero or ``bool`` value ``False``. [1]\n\nAll other values are considered true --- so objects of many types are\nalways true.\n\nOperations and built-in functions that have a Boolean result always\nreturn ``0`` or ``False`` for false and ``1`` or ``True`` for true,\nunless otherwise stated. (Important exception: the Boolean operations\n``or`` and ``and`` always return one of their operands.)\n", - 'try': '\nThe ``try`` statement\n*********************\n\nThe ``try`` statement specifies exception handlers and/or cleanup code\nfor a group of statements:\n\n try_stmt ::= try1_stmt | try2_stmt\n try1_stmt ::= "try" ":" suite\n ("except" [expression ["as" target]] ":" suite)+\n ["else" ":" suite]\n ["finally" ":" suite]\n try2_stmt ::= "try" ":" suite\n "finally" ":" suite\n\nThe ``except`` clause(s) specify one or more exception handlers. When\nno exception occurs in the ``try`` clause, no exception handler is\nexecuted. When an exception occurs in the ``try`` suite, a search for\nan exception handler is started. This search inspects the except\nclauses in turn until one is found that matches the exception. An\nexpression-less except clause, if present, must be last; it matches\nany exception. For an except clause with an expression, that\nexpression is evaluated, and the clause matches the exception if the\nresulting object is "compatible" with the exception. An object is\ncompatible with an exception if it is the class or a base class of the\nexception object or a tuple containing an item compatible with the\nexception.\n\nIf no except clause matches the exception, the search for an exception\nhandler continues in the surrounding code and on the invocation stack.\n[1]\n\nIf the evaluation of an expression in the header of an except clause\nraises an exception, the original search for a handler is canceled and\na search starts for the new exception in the surrounding code and on\nthe call stack (it is treated as if the entire ``try`` statement\nraised the exception).\n\nWhen a matching except clause is found, the exception is assigned to\nthe target specified after the ``as`` keyword in that except clause,\nif present, and the except clause\'s suite is executed. All except\nclauses must have an executable block. When the end of this block is\nreached, execution continues normally after the entire try statement.\n(This means that if two nested handlers exist for the same exception,\nand the exception occurs in the try clause of the inner handler, the\nouter handler will not handle the exception.)\n\nWhen an exception has been assigned using ``as target``, it is cleared\nat the end of the except clause. This is as if\n\n except E as N:\n foo\n\nwas translated to\n\n except E as N:\n try:\n foo\n finally:\n del N\n\nThis means the exception must be assigned to a different name to be\nable to refer to it after the except clause. Exceptions are cleared\nbecause with the traceback attached to them, they form a reference\ncycle with the stack frame, keeping all locals in that frame alive\nuntil the next garbage collection occurs.\n\nBefore an except clause\'s suite is executed, details about the\nexception are stored in the ``sys`` module and can be access via\n``sys.exc_info()``. ``sys.exc_info()`` returns a 3-tuple consisting\nof: ``exc_type``, the exception class; ``exc_value``, the exception\ninstance; ``exc_traceback``, a traceback object (see section *The\nstandard type hierarchy*) identifying the point in the program where\nthe exception occurred. ``sys.exc_info()`` values are restored to\ntheir previous values (before the call) when returning from a function\nthat handled an exception.\n\nThe optional ``else`` clause is executed if and when control flows off\nthe end of the ``try`` clause. [2] Exceptions in the ``else`` clause\nare not handled by the preceding ``except`` clauses.\n\nIf ``finally`` is present, it specifies a \'cleanup\' handler. The\n``try`` clause is executed, including any ``except`` and ``else``\nclauses. If an exception occurs in any of the clauses and is not\nhandled, the exception is temporarily saved. The ``finally`` clause is\nexecuted. If there is a saved exception, it is re-raised at the end\nof the ``finally`` clause. If the ``finally`` clause raises another\nexception or executes a ``return`` or ``break`` statement, the saved\nexception is lost. The exception information is not available to the\nprogram during execution of the ``finally`` clause.\n\nWhen a ``return``, ``break`` or ``continue`` statement is executed in\nthe ``try`` suite of a ``try``...``finally`` statement, the\n``finally`` clause is also executed \'on the way out.\' A ``continue``\nstatement is illegal in the ``finally`` clause. (The reason is a\nproblem with the current implementation --- this restriction may be\nlifted in the future).\n\nAdditional information on exceptions can be found in section\n*Exceptions*, and information on using the ``raise`` statement to\ngenerate exceptions may be found in section *The raise statement*.\n', - 'types': '\nThe standard type hierarchy\n***************************\n\nBelow is a list of the types that are built into Python. Extension\nmodules (written in C, Java, or other languages, depending on the\nimplementation) can define additional types. Future versions of\nPython may add types to the type hierarchy (e.g., rational numbers,\nefficiently stored arrays of integers, etc.), although such additions\nwill often be provided via the standard library instead.\n\nSome of the type descriptions below contain a paragraph listing\n\'special attributes.\' These are attributes that provide access to the\nimplementation and are not intended for general use. Their definition\nmay change in the future.\n\nNone\n This type has a single value. There is a single object with this\n value. This object is accessed through the built-in name ``None``.\n It is used to signify the absence of a value in many situations,\n e.g., it is returned from functions that don\'t explicitly return\n anything. Its truth value is false.\n\nNotImplemented\n This type has a single value. There is a single object with this\n value. This object is accessed through the built-in name\n ``NotImplemented``. Numeric methods and rich comparison methods may\n return this value if they do not implement the operation for the\n operands provided. (The interpreter will then try the reflected\n operation, or some other fallback, depending on the operator.) Its\n truth value is true.\n\nEllipsis\n This type has a single value. There is a single object with this\n value. This object is accessed through the literal ``...`` or the\n built-in name ``Ellipsis``. Its truth value is true.\n\n``numbers.Number``\n These are created by numeric literals and returned as results by\n arithmetic operators and arithmetic built-in functions. Numeric\n objects are immutable; once created their value never changes.\n Python numbers are of course strongly related to mathematical\n numbers, but subject to the limitations of numerical representation\n in computers.\n\n Python distinguishes between integers, floating point numbers, and\n complex numbers:\n\n ``numbers.Integral``\n These represent elements from the mathematical set of integers\n (positive and negative).\n\n There are two types of integers:\n\n Integers (``int``)\n\n These represent numbers in an unlimited range, subject to\n available (virtual) memory only. For the purpose of shift\n and mask operations, a binary representation is assumed, and\n negative numbers are represented in a variant of 2\'s\n complement which gives the illusion of an infinite string of\n sign bits extending to the left.\n\n Booleans (``bool``)\n These represent the truth values False and True. The two\n objects representing the values False and True are the only\n Boolean objects. The Boolean type is a subtype of the integer\n type, and Boolean values behave like the values 0 and 1,\n respectively, in almost all contexts, the exception being\n that when converted to a string, the strings ``"False"`` or\n ``"True"`` are returned, respectively.\n\n The rules for integer representation are intended to give the\n most meaningful interpretation of shift and mask operations\n involving negative integers.\n\n ``numbers.Real`` (``float``)\n These represent machine-level double precision floating point\n numbers. You are at the mercy of the underlying machine\n architecture (and C or Java implementation) for the accepted\n range and handling of overflow. Python does not support single-\n precision floating point numbers; the savings in processor and\n memory usage that are usually the reason for using these is\n dwarfed by the overhead of using objects in Python, so there is\n no reason to complicate the language with two kinds of floating\n point numbers.\n\n ``numbers.Complex`` (``complex``)\n These represent complex numbers as a pair of machine-level\n double precision floating point numbers. The same caveats apply\n as for floating point numbers. The real and imaginary parts of a\n complex number ``z`` can be retrieved through the read-only\n attributes ``z.real`` and ``z.imag``.\n\nSequences\n These represent finite ordered sets indexed by non-negative\n numbers. The built-in function ``len()`` returns the number of\n items of a sequence. When the length of a sequence is *n*, the\n index set contains the numbers 0, 1, ..., *n*-1. Item *i* of\n sequence *a* is selected by ``a[i]``.\n\n Sequences also support slicing: ``a[i:j]`` selects all items with\n index *k* such that *i* ``<=`` *k* ``<`` *j*. When used as an\n expression, a slice is a sequence of the same type. This implies\n that the index set is renumbered so that it starts at 0.\n\n Some sequences also support "extended slicing" with a third "step"\n parameter: ``a[i:j:k]`` selects all items of *a* with index *x*\n where ``x = i + n*k``, *n* ``>=`` ``0`` and *i* ``<=`` *x* ``<``\n *j*.\n\n Sequences are distinguished according to their mutability:\n\n Immutable sequences\n An object of an immutable sequence type cannot change once it is\n created. (If the object contains references to other objects,\n these other objects may be mutable and may be changed; however,\n the collection of objects directly referenced by an immutable\n object cannot change.)\n\n The following types are immutable sequences:\n\n Strings\n The items of a string object are Unicode code units. A\n Unicode code unit is represented by a string object of one\n item and can hold either a 16-bit or 32-bit value\n representing a Unicode ordinal (the maximum value for the\n ordinal is given in ``sys.maxunicode``, and depends on how\n Python is configured at compile time). Surrogate pairs may\n be present in the Unicode object, and will be reported as two\n separate items. The built-in functions ``chr()`` and\n ``ord()`` convert between code units and nonnegative integers\n representing the Unicode ordinals as defined in the Unicode\n Standard 3.0. Conversion from and to other encodings are\n possible through the string method ``encode()``.\n\n Tuples\n The items of a tuple are arbitrary Python objects. Tuples of\n two or more items are formed by comma-separated lists of\n expressions. A tuple of one item (a \'singleton\') can be\n formed by affixing a comma to an expression (an expression by\n itself does not create a tuple, since parentheses must be\n usable for grouping of expressions). An empty tuple can be\n formed by an empty pair of parentheses.\n\n Bytes\n A bytes object is an immutable array. The items are 8-bit\n bytes, represented by integers in the range 0 <= x < 256.\n Bytes literals (like ``b\'abc\'`` and the built-in function\n ``bytes()`` can be used to construct bytes objects. Also,\n bytes objects can be decoded to strings via the ``decode()``\n method.\n\n Mutable sequences\n Mutable sequences can be changed after they are created. The\n subscription and slicing notations can be used as the target of\n assignment and ``del`` (delete) statements.\n\n There are currently two intrinsic mutable sequence types:\n\n Lists\n The items of a list are arbitrary Python objects. Lists are\n formed by placing a comma-separated list of expressions in\n square brackets. (Note that there are no special cases needed\n to form lists of length 0 or 1.)\n\n Byte Arrays\n A bytearray object is a mutable array. They are created by\n the built-in ``bytearray()`` constructor. Aside from being\n mutable (and hence unhashable), byte arrays otherwise provide\n the same interface and functionality as immutable bytes\n objects.\n\n The extension module ``array`` provides an additional example of\n a mutable sequence type, as does the ``collections`` module.\n\nSet types\n These represent unordered, finite sets of unique, immutable\n objects. As such, they cannot be indexed by any subscript. However,\n they can be iterated over, and the built-in function ``len()``\n returns the number of items in a set. Common uses for sets are fast\n membership testing, removing duplicates from a sequence, and\n computing mathematical operations such as intersection, union,\n difference, and symmetric difference.\n\n For set elements, the same immutability rules apply as for\n dictionary keys. Note that numeric types obey the normal rules for\n numeric comparison: if two numbers compare equal (e.g., ``1`` and\n ``1.0``), only one of them can be contained in a set.\n\n There are currently two intrinsic set types:\n\n Sets\n These represent a mutable set. They are created by the built-in\n ``set()`` constructor and can be modified afterwards by several\n methods, such as ``add()``.\n\n Frozen sets\n These represent an immutable set. They are created by the\n built-in ``frozenset()`` constructor. As a frozenset is\n immutable and *hashable*, it can be used again as an element of\n another set, or as a dictionary key.\n\nMappings\n These represent finite sets of objects indexed by arbitrary index\n sets. The subscript notation ``a[k]`` selects the item indexed by\n ``k`` from the mapping ``a``; this can be used in expressions and\n as the target of assignments or ``del`` statements. The built-in\n function ``len()`` returns the number of items in a mapping.\n\n There is currently a single intrinsic mapping type:\n\n Dictionaries\n These represent finite sets of objects indexed by nearly\n arbitrary values. The only types of values not acceptable as\n keys are values containing lists or dictionaries or other\n mutable types that are compared by value rather than by object\n identity, the reason being that the efficient implementation of\n dictionaries requires a key\'s hash value to remain constant.\n Numeric types used for keys obey the normal rules for numeric\n comparison: if two numbers compare equal (e.g., ``1`` and\n ``1.0``) then they can be used interchangeably to index the same\n dictionary entry.\n\n Dictionaries are mutable; they can be created by the ``{...}``\n notation (see section *Dictionary displays*).\n\n The extension modules ``dbm.ndbm`` and ``dbm.gnu`` provide\n additional examples of mapping types, as does the\n ``collections`` module.\n\nCallable types\n These are the types to which the function call operation (see\n section *Calls*) can be applied:\n\n User-defined functions\n A user-defined function object is created by a function\n definition (see section *Function definitions*). It should be\n called with an argument list containing the same number of items\n as the function\'s formal parameter list.\n\n Special attributes:\n\n +---------------------------+---------------------------------+-------------+\n | Attribute | Meaning | |\n +===========================+=================================+=============+\n | ``__doc__`` | The function\'s documentation | Writable |\n | | string, or ``None`` if | |\n | | unavailable | |\n +---------------------------+---------------------------------+-------------+\n | ``__name__`` | The function\'s name | Writable |\n +---------------------------+---------------------------------+-------------+\n | ``__module__`` | The name of the module the | Writable |\n | | function was defined in, or | |\n | | ``None`` if unavailable. | |\n +---------------------------+---------------------------------+-------------+\n | ``__defaults__`` | A tuple containing default | Writable |\n | | argument values for those | |\n | | arguments that have defaults, | |\n | | or ``None`` if no arguments | |\n | | have a default value | |\n +---------------------------+---------------------------------+-------------+\n | ``__code__`` | The code object representing | Writable |\n | | the compiled function body. | |\n +---------------------------+---------------------------------+-------------+\n | ``__globals__`` | A reference to the dictionary | Read-only |\n | | that holds the function\'s | |\n | | global variables --- the global | |\n | | namespace of the module in | |\n | | which the function was defined. | |\n +---------------------------+---------------------------------+-------------+\n | ``__dict__`` | The namespace supporting | Writable |\n | | arbitrary function attributes. | |\n +---------------------------+---------------------------------+-------------+\n | ``__closure__`` | ``None`` or a tuple of cells | Read-only |\n | | that contain bindings for the | |\n | | function\'s free variables. | |\n +---------------------------+---------------------------------+-------------+\n | ``__annotations__`` | A dict containing annotations | Writable |\n | | of parameters. The keys of the | |\n | | dict are the parameter names, | |\n | | or ``\'return\'`` for the return | |\n | | annotation, if provided. | |\n +---------------------------+---------------------------------+-------------+\n | ``__kwdefaults__`` | A dict containing defaults for | Writable |\n | | keyword-only parameters. | |\n +---------------------------+---------------------------------+-------------+\n\n Most of the attributes labelled "Writable" check the type of the\n assigned value.\n\n Function objects also support getting and setting arbitrary\n attributes, which can be used, for example, to attach metadata\n to functions. Regular attribute dot-notation is used to get and\n set such attributes. *Note that the current implementation only\n supports function attributes on user-defined functions. Function\n attributes on built-in functions may be supported in the\n future.*\n\n Additional information about a function\'s definition can be\n retrieved from its code object; see the description of internal\n types below.\n\n Instance methods\n An instance method object combines a class, a class instance and\n any callable object (normally a user-defined function).\n\n Special read-only attributes: ``__self__`` is the class instance\n object, ``__func__`` is the function object; ``__doc__`` is the\n method\'s documentation (same as ``__func__.__doc__``);\n ``__name__`` is the method name (same as ``__func__.__name__``);\n ``__module__`` is the name of the module the method was defined\n in, or ``None`` if unavailable.\n\n Methods also support accessing (but not setting) the arbitrary\n function attributes on the underlying function object.\n\n User-defined method objects may be created when getting an\n attribute of a class (perhaps via an instance of that class), if\n that attribute is a user-defined function object or a class\n method object.\n\n When an instance method object is created by retrieving a user-\n defined function object from a class via one of its instances,\n its ``__self__`` attribute is the instance, and the method\n object is said to be bound. The new method\'s ``__func__``\n attribute is the original function object.\n\n When a user-defined method object is created by retrieving\n another method object from a class or instance, the behaviour is\n the same as for a function object, except that the ``__func__``\n attribute of the new instance is not the original method object\n but its ``__func__`` attribute.\n\n When an instance method object is created by retrieving a class\n method object from a class or instance, its ``__self__``\n attribute is the class itself, and its ``__func__`` attribute is\n the function object underlying the class method.\n\n When an instance method object is called, the underlying\n function (``__func__``) is called, inserting the class instance\n (``__self__``) in front of the argument list. For instance,\n when ``C`` is a class which contains a definition for a function\n ``f()``, and ``x`` is an instance of ``C``, calling ``x.f(1)``\n is equivalent to calling ``C.f(x, 1)``.\n\n When an instance method object is derived from a class method\n object, the "class instance" stored in ``__self__`` will\n actually be the class itself, so that calling either ``x.f(1)``\n or ``C.f(1)`` is equivalent to calling ``f(C,1)`` where ``f`` is\n the underlying function.\n\n Note that the transformation from function object to instance\n method object happens each time the attribute is retrieved from\n the instance. In some cases, a fruitful optimization is to\n assign the attribute to a local variable and call that local\n variable. Also notice that this transformation only happens for\n user-defined functions; other callable objects (and all non-\n callable objects) are retrieved without transformation. It is\n also important to note that user-defined functions which are\n attributes of a class instance are not converted to bound\n methods; this *only* happens when the function is an attribute\n of the class.\n\n Generator functions\n A function or method which uses the ``yield`` statement (see\n section *The yield statement*) is called a *generator function*.\n Such a function, when called, always returns an iterator object\n which can be used to execute the body of the function: calling\n the iterator\'s ``__next__()`` method will cause the function to\n execute until it provides a value using the ``yield`` statement.\n When the function executes a ``return`` statement or falls off\n the end, a ``StopIteration`` exception is raised and the\n iterator will have reached the end of the set of values to be\n returned.\n\n Built-in functions\n A built-in function object is a wrapper around a C function.\n Examples of built-in functions are ``len()`` and ``math.sin()``\n (``math`` is a standard built-in module). The number and type of\n the arguments are determined by the C function. Special read-\n only attributes: ``__doc__`` is the function\'s documentation\n string, or ``None`` if unavailable; ``__name__`` is the\n function\'s name; ``__self__`` is set to ``None`` (but see the\n next item); ``__module__`` is the name of the module the\n function was defined in or ``None`` if unavailable.\n\n Built-in methods\n This is really a different disguise of a built-in function, this\n time containing an object passed to the C function as an\n implicit extra argument. An example of a built-in method is\n ``alist.append()``, assuming *alist* is a list object. In this\n case, the special read-only attribute ``__self__`` is set to the\n object denoted by *list*.\n\n Classes\n Classes are callable. These objects normally act as factories\n for new instances of themselves, but variations are possible for\n class types that override ``__new__()``. The arguments of the\n call are passed to ``__new__()`` and, in the typical case, to\n ``__init__()`` to initialize the new instance.\n\n Class Instances\n Instances of arbitrary classes can be made callable by defining\n a ``__call__()`` method in their class.\n\nModules\n Modules are imported by the ``import`` statement (see section *The\n import statement*). A module object has a namespace implemented by\n a dictionary object (this is the dictionary referenced by the\n __globals__ attribute of functions defined in the module).\n Attribute references are translated to lookups in this dictionary,\n e.g., ``m.x`` is equivalent to ``m.__dict__["x"]``. A module object\n does not contain the code object used to initialize the module\n (since it isn\'t needed once the initialization is done).\n\n Attribute assignment updates the module\'s namespace dictionary,\n e.g., ``m.x = 1`` is equivalent to ``m.__dict__["x"] = 1``.\n\n Special read-only attribute: ``__dict__`` is the module\'s namespace\n as a dictionary object.\n\n **CPython implementation detail:** Because of the way CPython\n clears module dictionaries, the module dictionary will be cleared\n when the module falls out of scope even if the dictionary still has\n live references. To avoid this, copy the dictionary or keep the\n module around while using its dictionary directly.\n\n Predefined (writable) attributes: ``__name__`` is the module\'s\n name; ``__doc__`` is the module\'s documentation string, or ``None``\n if unavailable; ``__file__`` is the pathname of the file from which\n the module was loaded, if it was loaded from a file. The\n ``__file__`` attribute is not present for C modules that are\n statically linked into the interpreter; for extension modules\n loaded dynamically from a shared library, it is the pathname of the\n shared library file.\n\nCustom classes\n Custom class types are typically created by class definitions (see\n section *Class definitions*). A class has a namespace implemented\n by a dictionary object. Class attribute references are translated\n to lookups in this dictionary, e.g., ``C.x`` is translated to\n ``C.__dict__["x"]`` (although there are a number of hooks which\n allow for other means of locating attributes). When the attribute\n name is not found there, the attribute search continues in the base\n classes. This search of the base classes uses the C3 method\n resolution order which behaves correctly even in the presence of\n \'diamond\' inheritance structures where there are multiple\n inheritance paths leading back to a common ancestor. Additional\n details on the C3 MRO used by Python can be found in the\n documentation accompanying the 2.3 release at\n http://www.python.org/download/releases/2.3/mro/.\n\n When a class attribute reference (for class ``C``, say) would yield\n a class method object, it is transformed into an instance method\n object whose ``__self__`` attributes is ``C``. When it would yield\n a static method object, it is transformed into the object wrapped\n by the static method object. See section *Implementing Descriptors*\n for another way in which attributes retrieved from a class may\n differ from those actually contained in its ``__dict__``.\n\n Class attribute assignments update the class\'s dictionary, never\n the dictionary of a base class.\n\n A class object can be called (see above) to yield a class instance\n (see below).\n\n Special attributes: ``__name__`` is the class name; ``__module__``\n is the module name in which the class was defined; ``__dict__`` is\n the dictionary containing the class\'s namespace; ``__bases__`` is a\n tuple (possibly empty or a singleton) containing the base classes,\n in the order of their occurrence in the base class list;\n ``__doc__`` is the class\'s documentation string, or None if\n undefined.\n\nClass instances\n A class instance is created by calling a class object (see above).\n A class instance has a namespace implemented as a dictionary which\n is the first place in which attribute references are searched.\n When an attribute is not found there, and the instance\'s class has\n an attribute by that name, the search continues with the class\n attributes. If a class attribute is found that is a user-defined\n function object, it is transformed into an instance method object\n whose ``__self__`` attribute is the instance. Static method and\n class method objects are also transformed; see above under\n "Classes". See section *Implementing Descriptors* for another way\n in which attributes of a class retrieved via its instances may\n differ from the objects actually stored in the class\'s\n ``__dict__``. If no class attribute is found, and the object\'s\n class has a ``__getattr__()`` method, that is called to satisfy the\n lookup.\n\n Attribute assignments and deletions update the instance\'s\n dictionary, never a class\'s dictionary. If the class has a\n ``__setattr__()`` or ``__delattr__()`` method, this is called\n instead of updating the instance dictionary directly.\n\n Class instances can pretend to be numbers, sequences, or mappings\n if they have methods with certain special names. See section\n *Special method names*.\n\n Special attributes: ``__dict__`` is the attribute dictionary;\n ``__class__`` is the instance\'s class.\n\nI/O objects (also known as file objects)\n A *file object* represents an open file. Various shortcuts are\n available to create file objects: the ``open()`` built-in function,\n and also ``os.popen()``, ``os.fdopen()``, and the ``makefile()``\n method of socket objects (and perhaps by other functions or methods\n provided by extension modules).\n\n The objects ``sys.stdin``, ``sys.stdout`` and ``sys.stderr`` are\n initialized to file objects corresponding to the interpreter\'s\n standard input, output and error streams; they are all open in text\n mode and therefore follow the interface defined by the\n ``io.TextIOBase`` abstract class.\n\nInternal types\n A few types used internally by the interpreter are exposed to the\n user. Their definitions may change with future versions of the\n interpreter, but they are mentioned here for completeness.\n\n Code objects\n Code objects represent *byte-compiled* executable Python code,\n or *bytecode*. The difference between a code object and a\n function object is that the function object contains an explicit\n reference to the function\'s globals (the module in which it was\n defined), while a code object contains no context; also the\n default argument values are stored in the function object, not\n in the code object (because they represent values calculated at\n run-time). Unlike function objects, code objects are immutable\n and contain no references (directly or indirectly) to mutable\n objects.\n\n Special read-only attributes: ``co_name`` gives the function\n name; ``co_argcount`` is the number of positional arguments\n (including arguments with default values); ``co_nlocals`` is the\n number of local variables used by the function (including\n arguments); ``co_varnames`` is a tuple containing the names of\n the local variables (starting with the argument names);\n ``co_cellvars`` is a tuple containing the names of local\n variables that are referenced by nested functions;\n ``co_freevars`` is a tuple containing the names of free\n variables; ``co_code`` is a string representing the sequence of\n bytecode instructions; ``co_consts`` is a tuple containing the\n literals used by the bytecode; ``co_names`` is a tuple\n containing the names used by the bytecode; ``co_filename`` is\n the filename from which the code was compiled;\n ``co_firstlineno`` is the first line number of the function;\n ``co_lnotab`` is a string encoding the mapping from bytecode\n offsets to line numbers (for details see the source code of the\n interpreter); ``co_stacksize`` is the required stack size\n (including local variables); ``co_flags`` is an integer encoding\n a number of flags for the interpreter.\n\n The following flag bits are defined for ``co_flags``: bit\n ``0x04`` is set if the function uses the ``*arguments`` syntax\n to accept an arbitrary number of positional arguments; bit\n ``0x08`` is set if the function uses the ``**keywords`` syntax\n to accept arbitrary keyword arguments; bit ``0x20`` is set if\n the function is a generator.\n\n Future feature declarations (``from __future__ import\n division``) also use bits in ``co_flags`` to indicate whether a\n code object was compiled with a particular feature enabled: bit\n ``0x2000`` is set if the function was compiled with future\n division enabled; bits ``0x10`` and ``0x1000`` were used in\n earlier versions of Python.\n\n Other bits in ``co_flags`` are reserved for internal use.\n\n If a code object represents a function, the first item in\n ``co_consts`` is the documentation string of the function, or\n ``None`` if undefined.\n\n Frame objects\n Frame objects represent execution frames. They may occur in\n traceback objects (see below).\n\n Special read-only attributes: ``f_back`` is to the previous\n stack frame (towards the caller), or ``None`` if this is the\n bottom stack frame; ``f_code`` is the code object being executed\n in this frame; ``f_locals`` is the dictionary used to look up\n local variables; ``f_globals`` is used for global variables;\n ``f_builtins`` is used for built-in (intrinsic) names;\n ``f_lasti`` gives the precise instruction (this is an index into\n the bytecode string of the code object).\n\n Special writable attributes: ``f_trace``, if not ``None``, is a\n function called at the start of each source code line (this is\n used by the debugger); ``f_lineno`` is the current line number\n of the frame --- writing to this from within a trace function\n jumps to the given line (only for the bottom-most frame). A\n debugger can implement a Jump command (aka Set Next Statement)\n by writing to f_lineno.\n\n Traceback objects\n Traceback objects represent a stack trace of an exception. A\n traceback object is created when an exception occurs. When the\n search for an exception handler unwinds the execution stack, at\n each unwound level a traceback object is inserted in front of\n the current traceback. When an exception handler is entered,\n the stack trace is made available to the program. (See section\n *The try statement*.) It is accessible as the third item of the\n tuple returned by ``sys.exc_info()``. When the program contains\n no suitable handler, the stack trace is written (nicely\n formatted) to the standard error stream; if the interpreter is\n interactive, it is also made available to the user as\n ``sys.last_traceback``.\n\n Special read-only attributes: ``tb_next`` is the next level in\n the stack trace (towards the frame where the exception\n occurred), or ``None`` if there is no next level; ``tb_frame``\n points to the execution frame of the current level;\n ``tb_lineno`` gives the line number where the exception\n occurred; ``tb_lasti`` indicates the precise instruction. The\n line number and last instruction in the traceback may differ\n from the line number of its frame object if the exception\n occurred in a ``try`` statement with no matching except clause\n or with a finally clause.\n\n Slice objects\n Slice objects are used to represent slices for ``__getitem__()``\n methods. They are also created by the built-in ``slice()``\n function.\n\n Special read-only attributes: ``start`` is the lower bound;\n ``stop`` is the upper bound; ``step`` is the step value; each is\n ``None`` if omitted. These attributes can have any type.\n\n Slice objects support one method:\n\n slice.indices(self, length)\n\n This method takes a single integer argument *length* and\n computes information about the slice that the slice object\n would describe if applied to a sequence of *length* items.\n It returns a tuple of three integers; respectively these are\n the *start* and *stop* indices and the *step* or stride\n length of the slice. Missing or out-of-bounds indices are\n handled in a manner consistent with regular slices.\n\n Static method objects\n Static method objects provide a way of defeating the\n transformation of function objects to method objects described\n above. A static method object is a wrapper around any other\n object, usually a user-defined method object. When a static\n method object is retrieved from a class or a class instance, the\n object actually returned is the wrapped object, which is not\n subject to any further transformation. Static method objects are\n not themselves callable, although the objects they wrap usually\n are. Static method objects are created by the built-in\n ``staticmethod()`` constructor.\n\n Class method objects\n A class method object, like a static method object, is a wrapper\n around another object that alters the way in which that object\n is retrieved from classes and class instances. The behaviour of\n class method objects upon such retrieval is described above,\n under "User-defined methods". Class method objects are created\n by the built-in ``classmethod()`` constructor.\n', + 'try': '\nThe ``try`` statement\n*********************\n\nThe ``try`` statement specifies exception handlers and/or cleanup code\nfor a group of statements:\n\n try_stmt ::= try1_stmt | try2_stmt\n try1_stmt ::= "try" ":" suite\n ("except" [expression ["as" target]] ":" suite)+\n ["else" ":" suite]\n ["finally" ":" suite]\n try2_stmt ::= "try" ":" suite\n "finally" ":" suite\n\nThe ``except`` clause(s) specify one or more exception handlers. When\nno exception occurs in the ``try`` clause, no exception handler is\nexecuted. When an exception occurs in the ``try`` suite, a search for\nan exception handler is started. This search inspects the except\nclauses in turn until one is found that matches the exception. An\nexpression-less except clause, if present, must be last; it matches\nany exception. For an except clause with an expression, that\nexpression is evaluated, and the clause matches the exception if the\nresulting object is "compatible" with the exception. An object is\ncompatible with an exception if it is the class or a base class of the\nexception object or a tuple containing an item compatible with the\nexception.\n\nIf no except clause matches the exception, the search for an exception\nhandler continues in the surrounding code and on the invocation stack.\n[1]\n\nIf the evaluation of an expression in the header of an except clause\nraises an exception, the original search for a handler is canceled and\na search starts for the new exception in the surrounding code and on\nthe call stack (it is treated as if the entire ``try`` statement\nraised the exception).\n\nWhen a matching except clause is found, the exception is assigned to\nthe target specified after the ``as`` keyword in that except clause,\nif present, and the except clause\'s suite is executed. All except\nclauses must have an executable block. When the end of this block is\nreached, execution continues normally after the entire try statement.\n(This means that if two nested handlers exist for the same exception,\nand the exception occurs in the try clause of the inner handler, the\nouter handler will not handle the exception.)\n\nWhen an exception has been assigned using ``as target``, it is cleared\nat the end of the except clause. This is as if\n\n except E as N:\n foo\n\nwas translated to\n\n except E as N:\n try:\n foo\n finally:\n del N\n\nThis means the exception must be assigned to a different name to be\nable to refer to it after the except clause. Exceptions are cleared\nbecause with the traceback attached to them, they form a reference\ncycle with the stack frame, keeping all locals in that frame alive\nuntil the next garbage collection occurs.\n\nBefore an except clause\'s suite is executed, details about the\nexception are stored in the ``sys`` module and can be access via\n``sys.exc_info()``. ``sys.exc_info()`` returns a 3-tuple consisting of\nthe exception class, the exception instance and a traceback object\n(see section *The standard type hierarchy*) identifying the point in\nthe program where the exception occurred. ``sys.exc_info()`` values\nare restored to their previous values (before the call) when returning\nfrom a function that handled an exception.\n\nThe optional ``else`` clause is executed if and when control flows off\nthe end of the ``try`` clause. [2] Exceptions in the ``else`` clause\nare not handled by the preceding ``except`` clauses.\n\nIf ``finally`` is present, it specifies a \'cleanup\' handler. The\n``try`` clause is executed, including any ``except`` and ``else``\nclauses. If an exception occurs in any of the clauses and is not\nhandled, the exception is temporarily saved. The ``finally`` clause is\nexecuted. If there is a saved exception, it is re-raised at the end\nof the ``finally`` clause. If the ``finally`` clause raises another\nexception or executes a ``return`` or ``break`` statement, the saved\nexception is lost. The exception information is not available to the\nprogram during execution of the ``finally`` clause.\n\nWhen a ``return``, ``break`` or ``continue`` statement is executed in\nthe ``try`` suite of a ``try``...``finally`` statement, the\n``finally`` clause is also executed \'on the way out.\' A ``continue``\nstatement is illegal in the ``finally`` clause. (The reason is a\nproblem with the current implementation --- this restriction may be\nlifted in the future).\n\nAdditional information on exceptions can be found in section\n*Exceptions*, and information on using the ``raise`` statement to\ngenerate exceptions may be found in section *The raise statement*.\n', + 'types': '\nThe standard type hierarchy\n***************************\n\nBelow is a list of the types that are built into Python. Extension\nmodules (written in C, Java, or other languages, depending on the\nimplementation) can define additional types. Future versions of\nPython may add types to the type hierarchy (e.g., rational numbers,\nefficiently stored arrays of integers, etc.), although such additions\nwill often be provided via the standard library instead.\n\nSome of the type descriptions below contain a paragraph listing\n\'special attributes.\' These are attributes that provide access to the\nimplementation and are not intended for general use. Their definition\nmay change in the future.\n\nNone\n This type has a single value. There is a single object with this\n value. This object is accessed through the built-in name ``None``.\n It is used to signify the absence of a value in many situations,\n e.g., it is returned from functions that don\'t explicitly return\n anything. Its truth value is false.\n\nNotImplemented\n This type has a single value. There is a single object with this\n value. This object is accessed through the built-in name\n ``NotImplemented``. Numeric methods and rich comparison methods may\n return this value if they do not implement the operation for the\n operands provided. (The interpreter will then try the reflected\n operation, or some other fallback, depending on the operator.) Its\n truth value is true.\n\nEllipsis\n This type has a single value. There is a single object with this\n value. This object is accessed through the literal ``...`` or the\n built-in name ``Ellipsis``. Its truth value is true.\n\n``numbers.Number``\n These are created by numeric literals and returned as results by\n arithmetic operators and arithmetic built-in functions. Numeric\n objects are immutable; once created their value never changes.\n Python numbers are of course strongly related to mathematical\n numbers, but subject to the limitations of numerical representation\n in computers.\n\n Python distinguishes between integers, floating point numbers, and\n complex numbers:\n\n ``numbers.Integral``\n These represent elements from the mathematical set of integers\n (positive and negative).\n\n There are two types of integers:\n\n Integers (``int``)\n\n These represent numbers in an unlimited range, subject to\n available (virtual) memory only. For the purpose of shift\n and mask operations, a binary representation is assumed, and\n negative numbers are represented in a variant of 2\'s\n complement which gives the illusion of an infinite string of\n sign bits extending to the left.\n\n Booleans (``bool``)\n These represent the truth values False and True. The two\n objects representing the values False and True are the only\n Boolean objects. The Boolean type is a subtype of the integer\n type, and Boolean values behave like the values 0 and 1,\n respectively, in almost all contexts, the exception being\n that when converted to a string, the strings ``"False"`` or\n ``"True"`` are returned, respectively.\n\n The rules for integer representation are intended to give the\n most meaningful interpretation of shift and mask operations\n involving negative integers.\n\n ``numbers.Real`` (``float``)\n These represent machine-level double precision floating point\n numbers. You are at the mercy of the underlying machine\n architecture (and C or Java implementation) for the accepted\n range and handling of overflow. Python does not support single-\n precision floating point numbers; the savings in processor and\n memory usage that are usually the reason for using these is\n dwarfed by the overhead of using objects in Python, so there is\n no reason to complicate the language with two kinds of floating\n point numbers.\n\n ``numbers.Complex`` (``complex``)\n These represent complex numbers as a pair of machine-level\n double precision floating point numbers. The same caveats apply\n as for floating point numbers. The real and imaginary parts of a\n complex number ``z`` can be retrieved through the read-only\n attributes ``z.real`` and ``z.imag``.\n\nSequences\n These represent finite ordered sets indexed by non-negative\n numbers. The built-in function ``len()`` returns the number of\n items of a sequence. When the length of a sequence is *n*, the\n index set contains the numbers 0, 1, ..., *n*-1. Item *i* of\n sequence *a* is selected by ``a[i]``.\n\n Sequences also support slicing: ``a[i:j]`` selects all items with\n index *k* such that *i* ``<=`` *k* ``<`` *j*. When used as an\n expression, a slice is a sequence of the same type. This implies\n that the index set is renumbered so that it starts at 0.\n\n Some sequences also support "extended slicing" with a third "step"\n parameter: ``a[i:j:k]`` selects all items of *a* with index *x*\n where ``x = i + n*k``, *n* ``>=`` ``0`` and *i* ``<=`` *x* ``<``\n *j*.\n\n Sequences are distinguished according to their mutability:\n\n Immutable sequences\n An object of an immutable sequence type cannot change once it is\n created. (If the object contains references to other objects,\n these other objects may be mutable and may be changed; however,\n the collection of objects directly referenced by an immutable\n object cannot change.)\n\n The following types are immutable sequences:\n\n Strings\n The items of a string object are Unicode code units. A\n Unicode code unit is represented by a string object of one\n item and can hold either a 16-bit or 32-bit value\n representing a Unicode ordinal (the maximum value for the\n ordinal is given in ``sys.maxunicode``, and depends on how\n Python is configured at compile time). Surrogate pairs may\n be present in the Unicode object, and will be reported as two\n separate items. The built-in functions ``chr()`` and\n ``ord()`` convert between code units and nonnegative integers\n representing the Unicode ordinals as defined in the Unicode\n Standard 3.0. Conversion from and to other encodings are\n possible through the string method ``encode()``.\n\n Tuples\n The items of a tuple are arbitrary Python objects. Tuples of\n two or more items are formed by comma-separated lists of\n expressions. A tuple of one item (a \'singleton\') can be\n formed by affixing a comma to an expression (an expression by\n itself does not create a tuple, since parentheses must be\n usable for grouping of expressions). An empty tuple can be\n formed by an empty pair of parentheses.\n\n Bytes\n A bytes object is an immutable array. The items are 8-bit\n bytes, represented by integers in the range 0 <= x < 256.\n Bytes literals (like ``b\'abc\'`` and the built-in function\n ``bytes()`` can be used to construct bytes objects. Also,\n bytes objects can be decoded to strings via the ``decode()``\n method.\n\n Mutable sequences\n Mutable sequences can be changed after they are created. The\n subscription and slicing notations can be used as the target of\n assignment and ``del`` (delete) statements.\n\n There are currently two intrinsic mutable sequence types:\n\n Lists\n The items of a list are arbitrary Python objects. Lists are\n formed by placing a comma-separated list of expressions in\n square brackets. (Note that there are no special cases needed\n to form lists of length 0 or 1.)\n\n Byte Arrays\n A bytearray object is a mutable array. They are created by\n the built-in ``bytearray()`` constructor. Aside from being\n mutable (and hence unhashable), byte arrays otherwise provide\n the same interface and functionality as immutable bytes\n objects.\n\n The extension module ``array`` provides an additional example of\n a mutable sequence type, as does the ``collections`` module.\n\nSet types\n These represent unordered, finite sets of unique, immutable\n objects. As such, they cannot be indexed by any subscript. However,\n they can be iterated over, and the built-in function ``len()``\n returns the number of items in a set. Common uses for sets are fast\n membership testing, removing duplicates from a sequence, and\n computing mathematical operations such as intersection, union,\n difference, and symmetric difference.\n\n For set elements, the same immutability rules apply as for\n dictionary keys. Note that numeric types obey the normal rules for\n numeric comparison: if two numbers compare equal (e.g., ``1`` and\n ``1.0``), only one of them can be contained in a set.\n\n There are currently two intrinsic set types:\n\n Sets\n These represent a mutable set. They are created by the built-in\n ``set()`` constructor and can be modified afterwards by several\n methods, such as ``add()``.\n\n Frozen sets\n These represent an immutable set. They are created by the\n built-in ``frozenset()`` constructor. As a frozenset is\n immutable and *hashable*, it can be used again as an element of\n another set, or as a dictionary key.\n\nMappings\n These represent finite sets of objects indexed by arbitrary index\n sets. The subscript notation ``a[k]`` selects the item indexed by\n ``k`` from the mapping ``a``; this can be used in expressions and\n as the target of assignments or ``del`` statements. The built-in\n function ``len()`` returns the number of items in a mapping.\n\n There is currently a single intrinsic mapping type:\n\n Dictionaries\n These represent finite sets of objects indexed by nearly\n arbitrary values. The only types of values not acceptable as\n keys are values containing lists or dictionaries or other\n mutable types that are compared by value rather than by object\n identity, the reason being that the efficient implementation of\n dictionaries requires a key\'s hash value to remain constant.\n Numeric types used for keys obey the normal rules for numeric\n comparison: if two numbers compare equal (e.g., ``1`` and\n ``1.0``) then they can be used interchangeably to index the same\n dictionary entry.\n\n Dictionaries are mutable; they can be created by the ``{...}``\n notation (see section *Dictionary displays*).\n\n The extension modules ``dbm.ndbm`` and ``dbm.gnu`` provide\n additional examples of mapping types, as does the\n ``collections`` module.\n\nCallable types\n These are the types to which the function call operation (see\n section *Calls*) can be applied:\n\n User-defined functions\n A user-defined function object is created by a function\n definition (see section *Function definitions*). It should be\n called with an argument list containing the same number of items\n as the function\'s formal parameter list.\n\n Special attributes:\n\n +---------------------------+---------------------------------+-------------+\n | Attribute | Meaning | |\n +===========================+=================================+=============+\n | ``__doc__`` | The function\'s documentation | Writable |\n | | string, or ``None`` if | |\n | | unavailable | |\n +---------------------------+---------------------------------+-------------+\n | ``__name__`` | The function\'s name | Writable |\n +---------------------------+---------------------------------+-------------+\n | ``__module__`` | The name of the module the | Writable |\n | | function was defined in, or | |\n | | ``None`` if unavailable. | |\n +---------------------------+---------------------------------+-------------+\n | ``__defaults__`` | A tuple containing default | Writable |\n | | argument values for those | |\n | | arguments that have defaults, | |\n | | or ``None`` if no arguments | |\n | | have a default value | |\n +---------------------------+---------------------------------+-------------+\n | ``__code__`` | The code object representing | Writable |\n | | the compiled function body. | |\n +---------------------------+---------------------------------+-------------+\n | ``__globals__`` | A reference to the dictionary | Read-only |\n | | that holds the function\'s | |\n | | global variables --- the global | |\n | | namespace of the module in | |\n | | which the function was defined. | |\n +---------------------------+---------------------------------+-------------+\n | ``__dict__`` | The namespace supporting | Writable |\n | | arbitrary function attributes. | |\n +---------------------------+---------------------------------+-------------+\n | ``__closure__`` | ``None`` or a tuple of cells | Read-only |\n | | that contain bindings for the | |\n | | function\'s free variables. | |\n +---------------------------+---------------------------------+-------------+\n | ``__annotations__`` | A dict containing annotations | Writable |\n | | of parameters. The keys of the | |\n | | dict are the parameter names, | |\n | | or ``\'return\'`` for the return | |\n | | annotation, if provided. | |\n +---------------------------+---------------------------------+-------------+\n | ``__kwdefaults__`` | A dict containing defaults for | Writable |\n | | keyword-only parameters. | |\n +---------------------------+---------------------------------+-------------+\n\n Most of the attributes labelled "Writable" check the type of the\n assigned value.\n\n Function objects also support getting and setting arbitrary\n attributes, which can be used, for example, to attach metadata\n to functions. Regular attribute dot-notation is used to get and\n set such attributes. *Note that the current implementation only\n supports function attributes on user-defined functions. Function\n attributes on built-in functions may be supported in the\n future.*\n\n Additional information about a function\'s definition can be\n retrieved from its code object; see the description of internal\n types below.\n\n Instance methods\n An instance method object combines a class, a class instance and\n any callable object (normally a user-defined function).\n\n Special read-only attributes: ``__self__`` is the class instance\n object, ``__func__`` is the function object; ``__doc__`` is the\n method\'s documentation (same as ``__func__.__doc__``);\n ``__name__`` is the method name (same as ``__func__.__name__``);\n ``__module__`` is the name of the module the method was defined\n in, or ``None`` if unavailable.\n\n Methods also support accessing (but not setting) the arbitrary\n function attributes on the underlying function object.\n\n User-defined method objects may be created when getting an\n attribute of a class (perhaps via an instance of that class), if\n that attribute is a user-defined function object or a class\n method object.\n\n When an instance method object is created by retrieving a user-\n defined function object from a class via one of its instances,\n its ``__self__`` attribute is the instance, and the method\n object is said to be bound. The new method\'s ``__func__``\n attribute is the original function object.\n\n When a user-defined method object is created by retrieving\n another method object from a class or instance, the behaviour is\n the same as for a function object, except that the ``__func__``\n attribute of the new instance is not the original method object\n but its ``__func__`` attribute.\n\n When an instance method object is created by retrieving a class\n method object from a class or instance, its ``__self__``\n attribute is the class itself, and its ``__func__`` attribute is\n the function object underlying the class method.\n\n When an instance method object is called, the underlying\n function (``__func__``) is called, inserting the class instance\n (``__self__``) in front of the argument list. For instance,\n when ``C`` is a class which contains a definition for a function\n ``f()``, and ``x`` is an instance of ``C``, calling ``x.f(1)``\n is equivalent to calling ``C.f(x, 1)``.\n\n When an instance method object is derived from a class method\n object, the "class instance" stored in ``__self__`` will\n actually be the class itself, so that calling either ``x.f(1)``\n or ``C.f(1)`` is equivalent to calling ``f(C,1)`` where ``f`` is\n the underlying function.\n\n Note that the transformation from function object to instance\n method object happens each time the attribute is retrieved from\n the instance. In some cases, a fruitful optimization is to\n assign the attribute to a local variable and call that local\n variable. Also notice that this transformation only happens for\n user-defined functions; other callable objects (and all non-\n callable objects) are retrieved without transformation. It is\n also important to note that user-defined functions which are\n attributes of a class instance are not converted to bound\n methods; this *only* happens when the function is an attribute\n of the class.\n\n Generator functions\n A function or method which uses the ``yield`` statement (see\n section *The yield statement*) is called a *generator function*.\n Such a function, when called, always returns an iterator object\n which can be used to execute the body of the function: calling\n the iterator\'s ``__next__()`` method will cause the function to\n execute until it provides a value using the ``yield`` statement.\n When the function executes a ``return`` statement or falls off\n the end, a ``StopIteration`` exception is raised and the\n iterator will have reached the end of the set of values to be\n returned.\n\n Built-in functions\n A built-in function object is a wrapper around a C function.\n Examples of built-in functions are ``len()`` and ``math.sin()``\n (``math`` is a standard built-in module). The number and type of\n the arguments are determined by the C function. Special read-\n only attributes: ``__doc__`` is the function\'s documentation\n string, or ``None`` if unavailable; ``__name__`` is the\n function\'s name; ``__self__`` is set to ``None`` (but see the\n next item); ``__module__`` is the name of the module the\n function was defined in or ``None`` if unavailable.\n\n Built-in methods\n This is really a different disguise of a built-in function, this\n time containing an object passed to the C function as an\n implicit extra argument. An example of a built-in method is\n ``alist.append()``, assuming *alist* is a list object. In this\n case, the special read-only attribute ``__self__`` is set to the\n object denoted by *alist*.\n\n Classes\n Classes are callable. These objects normally act as factories\n for new instances of themselves, but variations are possible for\n class types that override ``__new__()``. The arguments of the\n call are passed to ``__new__()`` and, in the typical case, to\n ``__init__()`` to initialize the new instance.\n\n Class Instances\n Instances of arbitrary classes can be made callable by defining\n a ``__call__()`` method in their class.\n\nModules\n Modules are imported by the ``import`` statement (see section *The\n import statement*). A module object has a namespace implemented by\n a dictionary object (this is the dictionary referenced by the\n __globals__ attribute of functions defined in the module).\n Attribute references are translated to lookups in this dictionary,\n e.g., ``m.x`` is equivalent to ``m.__dict__["x"]``. A module object\n does not contain the code object used to initialize the module\n (since it isn\'t needed once the initialization is done).\n\n Attribute assignment updates the module\'s namespace dictionary,\n e.g., ``m.x = 1`` is equivalent to ``m.__dict__["x"] = 1``.\n\n Special read-only attribute: ``__dict__`` is the module\'s namespace\n as a dictionary object.\n\n **CPython implementation detail:** Because of the way CPython\n clears module dictionaries, the module dictionary will be cleared\n when the module falls out of scope even if the dictionary still has\n live references. To avoid this, copy the dictionary or keep the\n module around while using its dictionary directly.\n\n Predefined (writable) attributes: ``__name__`` is the module\'s\n name; ``__doc__`` is the module\'s documentation string, or ``None``\n if unavailable; ``__file__`` is the pathname of the file from which\n the module was loaded, if it was loaded from a file. The\n ``__file__`` attribute is not present for C modules that are\n statically linked into the interpreter; for extension modules\n loaded dynamically from a shared library, it is the pathname of the\n shared library file.\n\nCustom classes\n Custom class types are typically created by class definitions (see\n section *Class definitions*). A class has a namespace implemented\n by a dictionary object. Class attribute references are translated\n to lookups in this dictionary, e.g., ``C.x`` is translated to\n ``C.__dict__["x"]`` (although there are a number of hooks which\n allow for other means of locating attributes). When the attribute\n name is not found there, the attribute search continues in the base\n classes. This search of the base classes uses the C3 method\n resolution order which behaves correctly even in the presence of\n \'diamond\' inheritance structures where there are multiple\n inheritance paths leading back to a common ancestor. Additional\n details on the C3 MRO used by Python can be found in the\n documentation accompanying the 2.3 release at\n http://www.python.org/download/releases/2.3/mro/.\n\n When a class attribute reference (for class ``C``, say) would yield\n a class method object, it is transformed into an instance method\n object whose ``__self__`` attributes is ``C``. When it would yield\n a static method object, it is transformed into the object wrapped\n by the static method object. See section *Implementing Descriptors*\n for another way in which attributes retrieved from a class may\n differ from those actually contained in its ``__dict__``.\n\n Class attribute assignments update the class\'s dictionary, never\n the dictionary of a base class.\n\n A class object can be called (see above) to yield a class instance\n (see below).\n\n Special attributes: ``__name__`` is the class name; ``__module__``\n is the module name in which the class was defined; ``__dict__`` is\n the dictionary containing the class\'s namespace; ``__bases__`` is a\n tuple (possibly empty or a singleton) containing the base classes,\n in the order of their occurrence in the base class list;\n ``__doc__`` is the class\'s documentation string, or None if\n undefined.\n\nClass instances\n A class instance is created by calling a class object (see above).\n A class instance has a namespace implemented as a dictionary which\n is the first place in which attribute references are searched.\n When an attribute is not found there, and the instance\'s class has\n an attribute by that name, the search continues with the class\n attributes. If a class attribute is found that is a user-defined\n function object, it is transformed into an instance method object\n whose ``__self__`` attribute is the instance. Static method and\n class method objects are also transformed; see above under\n "Classes". See section *Implementing Descriptors* for another way\n in which attributes of a class retrieved via its instances may\n differ from the objects actually stored in the class\'s\n ``__dict__``. If no class attribute is found, and the object\'s\n class has a ``__getattr__()`` method, that is called to satisfy the\n lookup.\n\n Attribute assignments and deletions update the instance\'s\n dictionary, never a class\'s dictionary. If the class has a\n ``__setattr__()`` or ``__delattr__()`` method, this is called\n instead of updating the instance dictionary directly.\n\n Class instances can pretend to be numbers, sequences, or mappings\n if they have methods with certain special names. See section\n *Special method names*.\n\n Special attributes: ``__dict__`` is the attribute dictionary;\n ``__class__`` is the instance\'s class.\n\nI/O objects (also known as file objects)\n A *file object* represents an open file. Various shortcuts are\n available to create file objects: the ``open()`` built-in function,\n and also ``os.popen()``, ``os.fdopen()``, and the ``makefile()``\n method of socket objects (and perhaps by other functions or methods\n provided by extension modules).\n\n The objects ``sys.stdin``, ``sys.stdout`` and ``sys.stderr`` are\n initialized to file objects corresponding to the interpreter\'s\n standard input, output and error streams; they are all open in text\n mode and therefore follow the interface defined by the\n ``io.TextIOBase`` abstract class.\n\nInternal types\n A few types used internally by the interpreter are exposed to the\n user. Their definitions may change with future versions of the\n interpreter, but they are mentioned here for completeness.\n\n Code objects\n Code objects represent *byte-compiled* executable Python code,\n or *bytecode*. The difference between a code object and a\n function object is that the function object contains an explicit\n reference to the function\'s globals (the module in which it was\n defined), while a code object contains no context; also the\n default argument values are stored in the function object, not\n in the code object (because they represent values calculated at\n run-time). Unlike function objects, code objects are immutable\n and contain no references (directly or indirectly) to mutable\n objects.\n\n Special read-only attributes: ``co_name`` gives the function\n name; ``co_argcount`` is the number of positional arguments\n (including arguments with default values); ``co_nlocals`` is the\n number of local variables used by the function (including\n arguments); ``co_varnames`` is a tuple containing the names of\n the local variables (starting with the argument names);\n ``co_cellvars`` is a tuple containing the names of local\n variables that are referenced by nested functions;\n ``co_freevars`` is a tuple containing the names of free\n variables; ``co_code`` is a string representing the sequence of\n bytecode instructions; ``co_consts`` is a tuple containing the\n literals used by the bytecode; ``co_names`` is a tuple\n containing the names used by the bytecode; ``co_filename`` is\n the filename from which the code was compiled;\n ``co_firstlineno`` is the first line number of the function;\n ``co_lnotab`` is a string encoding the mapping from bytecode\n offsets to line numbers (for details see the source code of the\n interpreter); ``co_stacksize`` is the required stack size\n (including local variables); ``co_flags`` is an integer encoding\n a number of flags for the interpreter.\n\n The following flag bits are defined for ``co_flags``: bit\n ``0x04`` is set if the function uses the ``*arguments`` syntax\n to accept an arbitrary number of positional arguments; bit\n ``0x08`` is set if the function uses the ``**keywords`` syntax\n to accept arbitrary keyword arguments; bit ``0x20`` is set if\n the function is a generator.\n\n Future feature declarations (``from __future__ import\n division``) also use bits in ``co_flags`` to indicate whether a\n code object was compiled with a particular feature enabled: bit\n ``0x2000`` is set if the function was compiled with future\n division enabled; bits ``0x10`` and ``0x1000`` were used in\n earlier versions of Python.\n\n Other bits in ``co_flags`` are reserved for internal use.\n\n If a code object represents a function, the first item in\n ``co_consts`` is the documentation string of the function, or\n ``None`` if undefined.\n\n Frame objects\n Frame objects represent execution frames. They may occur in\n traceback objects (see below).\n\n Special read-only attributes: ``f_back`` is to the previous\n stack frame (towards the caller), or ``None`` if this is the\n bottom stack frame; ``f_code`` is the code object being executed\n in this frame; ``f_locals`` is the dictionary used to look up\n local variables; ``f_globals`` is used for global variables;\n ``f_builtins`` is used for built-in (intrinsic) names;\n ``f_lasti`` gives the precise instruction (this is an index into\n the bytecode string of the code object).\n\n Special writable attributes: ``f_trace``, if not ``None``, is a\n function called at the start of each source code line (this is\n used by the debugger); ``f_lineno`` is the current line number\n of the frame --- writing to this from within a trace function\n jumps to the given line (only for the bottom-most frame). A\n debugger can implement a Jump command (aka Set Next Statement)\n by writing to f_lineno.\n\n Traceback objects\n Traceback objects represent a stack trace of an exception. A\n traceback object is created when an exception occurs. When the\n search for an exception handler unwinds the execution stack, at\n each unwound level a traceback object is inserted in front of\n the current traceback. When an exception handler is entered,\n the stack trace is made available to the program. (See section\n *The try statement*.) It is accessible as the third item of the\n tuple returned by ``sys.exc_info()``. When the program contains\n no suitable handler, the stack trace is written (nicely\n formatted) to the standard error stream; if the interpreter is\n interactive, it is also made available to the user as\n ``sys.last_traceback``.\n\n Special read-only attributes: ``tb_next`` is the next level in\n the stack trace (towards the frame where the exception\n occurred), or ``None`` if there is no next level; ``tb_frame``\n points to the execution frame of the current level;\n ``tb_lineno`` gives the line number where the exception\n occurred; ``tb_lasti`` indicates the precise instruction. The\n line number and last instruction in the traceback may differ\n from the line number of its frame object if the exception\n occurred in a ``try`` statement with no matching except clause\n or with a finally clause.\n\n Slice objects\n Slice objects are used to represent slices for ``__getitem__()``\n methods. They are also created by the built-in ``slice()``\n function.\n\n Special read-only attributes: ``start`` is the lower bound;\n ``stop`` is the upper bound; ``step`` is the step value; each is\n ``None`` if omitted. These attributes can have any type.\n\n Slice objects support one method:\n\n slice.indices(self, length)\n\n This method takes a single integer argument *length* and\n computes information about the slice that the slice object\n would describe if applied to a sequence of *length* items.\n It returns a tuple of three integers; respectively these are\n the *start* and *stop* indices and the *step* or stride\n length of the slice. Missing or out-of-bounds indices are\n handled in a manner consistent with regular slices.\n\n Static method objects\n Static method objects provide a way of defeating the\n transformation of function objects to method objects described\n above. A static method object is a wrapper around any other\n object, usually a user-defined method object. When a static\n method object is retrieved from a class or a class instance, the\n object actually returned is the wrapped object, which is not\n subject to any further transformation. Static method objects are\n not themselves callable, although the objects they wrap usually\n are. Static method objects are created by the built-in\n ``staticmethod()`` constructor.\n\n Class method objects\n A class method object, like a static method object, is a wrapper\n around another object that alters the way in which that object\n is retrieved from classes and class instances. The behaviour of\n class method objects upon such retrieval is described above,\n under "User-defined methods". Class method objects are created\n by the built-in ``classmethod()`` constructor.\n', 'typesfunctions': '\nFunctions\n*********\n\nFunction objects are created by function definitions. The only\noperation on a function object is to call it: ``func(argument-list)``.\n\nThere are really two flavors of function objects: built-in functions\nand user-defined functions. Both support the same operation (to call\nthe function), but the implementation is different, hence the\ndifferent object types.\n\nSee *Function definitions* for more information.\n', - 'typesmapping': '\nMapping Types --- ``dict``\n**************************\n\nA *mapping* object maps *hashable* values to arbitrary objects.\nMappings are mutable objects. There is currently only one standard\nmapping type, the *dictionary*. (For other containers see the built\nin ``list``, ``set``, and ``tuple`` classes, and the ``collections``\nmodule.)\n\nA dictionary\'s keys are *almost* arbitrary values. Values that are\nnot *hashable*, that is, values containing lists, dictionaries or\nother mutable types (that are compared by value rather than by object\nidentity) may not be used as keys. Numeric types used for keys obey\nthe normal rules for numeric comparison: if two numbers compare equal\n(such as ``1`` and ``1.0``) then they can be used interchangeably to\nindex the same dictionary entry. (Note however, that since computers\nstore floating-point numbers as approximations it is usually unwise to\nuse them as dictionary keys.)\n\nDictionaries can be created by placing a comma-separated list of\n``key: value`` pairs within braces, for example: ``{\'jack\': 4098,\n\'sjoerd\': 4127}`` or ``{4098: \'jack\', 4127: \'sjoerd\'}``, or by the\n``dict`` constructor.\n\nclass class dict([arg])\n\n Return a new dictionary initialized from an optional positional\n argument or from a set of keyword arguments. If no arguments are\n given, return a new empty dictionary. If the positional argument\n *arg* is a mapping object, return a dictionary mapping the same\n keys to the same values as does the mapping object. Otherwise the\n positional argument must be a sequence, a container that supports\n iteration, or an iterator object. The elements of the argument\n must each also be of one of those kinds, and each must in turn\n contain exactly two objects. The first is used as a key in the new\n dictionary, and the second as the key\'s value. If a given key is\n seen more than once, the last value associated with it is retained\n in the new dictionary.\n\n If keyword arguments are given, the keywords themselves with their\n associated values are added as items to the dictionary. If a key\n is specified both in the positional argument and as a keyword\n argument, the value associated with the keyword is retained in the\n dictionary. For example, these all return a dictionary equal to\n ``{"one": 1, "two": 2}``:\n\n * ``dict(one=1, two=2)``\n\n * ``dict({\'one\': 1, \'two\': 2})``\n\n * ``dict(zip((\'one\', \'two\'), (1, 2)))``\n\n * ``dict([[\'two\', 2], [\'one\', 1]])``\n\n The first example only works for keys that are valid Python\n identifiers; the others work with any valid keys.\n\n These are the operations that dictionaries support (and therefore,\n custom mapping types should support too):\n\n len(d)\n\n Return the number of items in the dictionary *d*.\n\n d[key]\n\n Return the item of *d* with key *key*. Raises a ``KeyError`` if\n *key* is not in the map.\n\n If a subclass of dict defines a method ``__missing__()``, if the\n key *key* is not present, the ``d[key]`` operation calls that\n method with the key *key* as argument. The ``d[key]`` operation\n then returns or raises whatever is returned or raised by the\n ``__missing__(key)`` call if the key is not present. No other\n operations or methods invoke ``__missing__()``. If\n ``__missing__()`` is not defined, ``KeyError`` is raised.\n ``__missing__()`` must be a method; it cannot be an instance\n variable. For an example, see ``collections.defaultdict``.\n\n d[key] = value\n\n Set ``d[key]`` to *value*.\n\n del d[key]\n\n Remove ``d[key]`` from *d*. Raises a ``KeyError`` if *key* is\n not in the map.\n\n key in d\n\n Return ``True`` if *d* has a key *key*, else ``False``.\n\n key not in d\n\n Equivalent to ``not key in d``.\n\n iter(d)\n\n Return an iterator over the keys of the dictionary. This is a\n shortcut for ``iter(d.keys())``.\n\n clear()\n\n Remove all items from the dictionary.\n\n copy()\n\n Return a shallow copy of the dictionary.\n\n classmethod fromkeys(seq[, value])\n\n Create a new dictionary with keys from *seq* and values set to\n *value*.\n\n ``fromkeys()`` is a class method that returns a new dictionary.\n *value* defaults to ``None``.\n\n get(key[, default])\n\n Return the value for *key* if *key* is in the dictionary, else\n *default*. If *default* is not given, it defaults to ``None``,\n so that this method never raises a ``KeyError``.\n\n items()\n\n Return a new view of the dictionary\'s items (``(key, value)``\n pairs). See below for documentation of view objects.\n\n keys()\n\n Return a new view of the dictionary\'s keys. See below for\n documentation of view objects.\n\n pop(key[, default])\n\n If *key* is in the dictionary, remove it and return its value,\n else return *default*. If *default* is not given and *key* is\n not in the dictionary, a ``KeyError`` is raised.\n\n popitem()\n\n Remove and return an arbitrary ``(key, value)`` pair from the\n dictionary.\n\n ``popitem()`` is useful to destructively iterate over a\n dictionary, as often used in set algorithms. If the dictionary\n is empty, calling ``popitem()`` raises a ``KeyError``.\n\n setdefault(key[, default])\n\n If *key* is in the dictionary, return its value. If not, insert\n *key* with a value of *default* and return *default*. *default*\n defaults to ``None``.\n\n update([other])\n\n Update the dictionary with the key/value pairs from *other*,\n overwriting existing keys. Return ``None``.\n\n ``update()`` accepts either another dictionary object or an\n iterable of key/value pairs (as tuples or other iterables of\n length two). If keyword arguments are specified, the dictionary\n is then updated with those key/value pairs: ``d.update(red=1,\n blue=2)``.\n\n values()\n\n Return a new view of the dictionary\'s values. See below for\n documentation of view objects.\n\n\nDictionary view objects\n=======================\n\nThe objects returned by ``dict.keys()``, ``dict.values()`` and\n``dict.items()`` are *view objects*. They provide a dynamic view on\nthe dictionary\'s entries, which means that when the dictionary\nchanges, the view reflects these changes.\n\nDictionary views can be iterated over to yield their respective data,\nand support membership tests:\n\nlen(dictview)\n\n Return the number of entries in the dictionary.\n\niter(dictview)\n\n Return an iterator over the keys, values or items (represented as\n tuples of ``(key, value)``) in the dictionary.\n\n Keys and values are iterated over in an arbitrary order which is\n non-random, varies across Python implementations, and depends on\n the dictionary\'s history of insertions and deletions. If keys,\n values and items views are iterated over with no intervening\n modifications to the dictionary, the order of items will directly\n correspond. This allows the creation of ``(value, key)`` pairs\n using ``zip()``: ``pairs = zip(d.values(), d.keys())``. Another\n way to create the same list is ``pairs = [(v, k) for (k, v) in\n d.items()]``.\n\n Iterating views while adding or deleting entries in the dictionary\n may raise a ``RuntimeError`` or fail to iterate over all entries.\n\nx in dictview\n\n Return ``True`` if *x* is in the underlying dictionary\'s keys,\n values or items (in the latter case, *x* should be a ``(key,\n value)`` tuple).\n\nKeys views are set-like since their entries are unique and hashable.\nIf all values are hashable, so that ``(key, value)`` pairs are unique\nand hashable, then the items view is also set-like. (Values views are\nnot treated as set-like since the entries are generally not unique.)\nFor set-like views, all of the operations defined for the abstract\nbase class ``collections.Set`` are available (for example, ``==``,\n``<``, or ``^``).\n\nAn example of dictionary view usage:\n\n >>> dishes = {\'eggs\': 2, \'sausage\': 1, \'bacon\': 1, \'spam\': 500}\n >>> keys = dishes.keys()\n >>> values = dishes.values()\n\n >>> # iteration\n >>> n = 0\n >>> for val in values:\n ... n += val\n >>> print(n)\n 504\n\n >>> # keys and values are iterated over in the same order\n >>> list(keys)\n [\'eggs\', \'bacon\', \'sausage\', \'spam\']\n >>> list(values)\n [2, 1, 1, 500]\n\n >>> # view objects are dynamic and reflect dict changes\n >>> del dishes[\'eggs\']\n >>> del dishes[\'sausage\']\n >>> list(keys)\n [\'spam\', \'bacon\']\n\n >>> # set operations\n >>> keys & {\'eggs\', \'bacon\', \'salad\'}\n {\'bacon\'}\n >>> keys ^ {\'sausage\', \'juice\'}\n {\'juice\', \'eggs\', \'bacon\', \'spam\'}\n', + 'typesmapping': '\nMapping Types --- ``dict``\n**************************\n\nA *mapping* object maps *hashable* values to arbitrary objects.\nMappings are mutable objects. There is currently only one standard\nmapping type, the *dictionary*. (For other containers see the built\nin ``list``, ``set``, and ``tuple`` classes, and the ``collections``\nmodule.)\n\nA dictionary\'s keys are *almost* arbitrary values. Values that are\nnot *hashable*, that is, values containing lists, dictionaries or\nother mutable types (that are compared by value rather than by object\nidentity) may not be used as keys. Numeric types used for keys obey\nthe normal rules for numeric comparison: if two numbers compare equal\n(such as ``1`` and ``1.0``) then they can be used interchangeably to\nindex the same dictionary entry. (Note however, that since computers\nstore floating-point numbers as approximations it is usually unwise to\nuse them as dictionary keys.)\n\nDictionaries can be created by placing a comma-separated list of\n``key: value`` pairs within braces, for example: ``{\'jack\': 4098,\n\'sjoerd\': 4127}`` or ``{4098: \'jack\', 4127: \'sjoerd\'}``, or by the\n``dict`` constructor.\n\nclass class dict([arg])\n\n Return a new dictionary initialized from an optional positional\n argument or from a set of keyword arguments. If no arguments are\n given, return a new empty dictionary. If the positional argument\n *arg* is a mapping object, return a dictionary mapping the same\n keys to the same values as does the mapping object. Otherwise the\n positional argument must be a sequence, a container that supports\n iteration, or an iterator object. The elements of the argument\n must each also be of one of those kinds, and each must in turn\n contain exactly two objects. The first is used as a key in the new\n dictionary, and the second as the key\'s value. If a given key is\n seen more than once, the last value associated with it is retained\n in the new dictionary.\n\n If keyword arguments are given, the keywords themselves with their\n associated values are added as items to the dictionary. If a key\n is specified both in the positional argument and as a keyword\n argument, the value associated with the keyword is retained in the\n dictionary. For example, these all return a dictionary equal to\n ``{"one": 1, "two": 2}``:\n\n * ``dict(one=1, two=2)``\n\n * ``dict({\'one\': 1, \'two\': 2})``\n\n * ``dict(zip((\'one\', \'two\'), (1, 2)))``\n\n * ``dict([[\'two\', 2], [\'one\', 1]])``\n\n The first example only works for keys that are valid Python\n identifiers; the others work with any valid keys.\n\n These are the operations that dictionaries support (and therefore,\n custom mapping types should support too):\n\n len(d)\n\n Return the number of items in the dictionary *d*.\n\n d[key]\n\n Return the item of *d* with key *key*. Raises a ``KeyError`` if\n *key* is not in the map.\n\n If a subclass of dict defines a method ``__missing__()``, if the\n key *key* is not present, the ``d[key]`` operation calls that\n method with the key *key* as argument. The ``d[key]`` operation\n then returns or raises whatever is returned or raised by the\n ``__missing__(key)`` call if the key is not present. No other\n operations or methods invoke ``__missing__()``. If\n ``__missing__()`` is not defined, ``KeyError`` is raised.\n ``__missing__()`` must be a method; it cannot be an instance\n variable:\n\n >>> class Counter(dict):\n ... def __missing__(self, key):\n ... return 0\n >>> c = Counter()\n >>> c[\'red\']\n 0\n >>> c[\'red\'] += 1\n >>> c[\'red\']\n 1\n\n See ``collections.Counter`` for a complete implementation\n including other methods helpful for accumulating and managing\n tallies.\n\n d[key] = value\n\n Set ``d[key]`` to *value*.\n\n del d[key]\n\n Remove ``d[key]`` from *d*. Raises a ``KeyError`` if *key* is\n not in the map.\n\n key in d\n\n Return ``True`` if *d* has a key *key*, else ``False``.\n\n key not in d\n\n Equivalent to ``not key in d``.\n\n iter(d)\n\n Return an iterator over the keys of the dictionary. This is a\n shortcut for ``iter(d.keys())``.\n\n clear()\n\n Remove all items from the dictionary.\n\n copy()\n\n Return a shallow copy of the dictionary.\n\n classmethod fromkeys(seq[, value])\n\n Create a new dictionary with keys from *seq* and values set to\n *value*.\n\n ``fromkeys()`` is a class method that returns a new dictionary.\n *value* defaults to ``None``.\n\n get(key[, default])\n\n Return the value for *key* if *key* is in the dictionary, else\n *default*. If *default* is not given, it defaults to ``None``,\n so that this method never raises a ``KeyError``.\n\n items()\n\n Return a new view of the dictionary\'s items (``(key, value)``\n pairs). See below for documentation of view objects.\n\n keys()\n\n Return a new view of the dictionary\'s keys. See below for\n documentation of view objects.\n\n pop(key[, default])\n\n If *key* is in the dictionary, remove it and return its value,\n else return *default*. If *default* is not given and *key* is\n not in the dictionary, a ``KeyError`` is raised.\n\n popitem()\n\n Remove and return an arbitrary ``(key, value)`` pair from the\n dictionary.\n\n ``popitem()`` is useful to destructively iterate over a\n dictionary, as often used in set algorithms. If the dictionary\n is empty, calling ``popitem()`` raises a ``KeyError``.\n\n setdefault(key[, default])\n\n If *key* is in the dictionary, return its value. If not, insert\n *key* with a value of *default* and return *default*. *default*\n defaults to ``None``.\n\n update([other])\n\n Update the dictionary with the key/value pairs from *other*,\n overwriting existing keys. Return ``None``.\n\n ``update()`` accepts either another dictionary object or an\n iterable of key/value pairs (as tuples or other iterables of\n length two). If keyword arguments are specified, the dictionary\n is then updated with those key/value pairs: ``d.update(red=1,\n blue=2)``.\n\n values()\n\n Return a new view of the dictionary\'s values. See below for\n documentation of view objects.\n\n\nDictionary view objects\n=======================\n\nThe objects returned by ``dict.keys()``, ``dict.values()`` and\n``dict.items()`` are *view objects*. They provide a dynamic view on\nthe dictionary\'s entries, which means that when the dictionary\nchanges, the view reflects these changes.\n\nDictionary views can be iterated over to yield their respective data,\nand support membership tests:\n\nlen(dictview)\n\n Return the number of entries in the dictionary.\n\niter(dictview)\n\n Return an iterator over the keys, values or items (represented as\n tuples of ``(key, value)``) in the dictionary.\n\n Keys and values are iterated over in an arbitrary order which is\n non-random, varies across Python implementations, and depends on\n the dictionary\'s history of insertions and deletions. If keys,\n values and items views are iterated over with no intervening\n modifications to the dictionary, the order of items will directly\n correspond. This allows the creation of ``(value, key)`` pairs\n using ``zip()``: ``pairs = zip(d.values(), d.keys())``. Another\n way to create the same list is ``pairs = [(v, k) for (k, v) in\n d.items()]``.\n\n Iterating views while adding or deleting entries in the dictionary\n may raise a ``RuntimeError`` or fail to iterate over all entries.\n\nx in dictview\n\n Return ``True`` if *x* is in the underlying dictionary\'s keys,\n values or items (in the latter case, *x* should be a ``(key,\n value)`` tuple).\n\nKeys views are set-like since their entries are unique and hashable.\nIf all values are hashable, so that ``(key, value)`` pairs are unique\nand hashable, then the items view is also set-like. (Values views are\nnot treated as set-like since the entries are generally not unique.)\nFor set-like views, all of the operations defined for the abstract\nbase class ``collections.Set`` are available (for example, ``==``,\n``<``, or ``^``).\n\nAn example of dictionary view usage:\n\n >>> dishes = {\'eggs\': 2, \'sausage\': 1, \'bacon\': 1, \'spam\': 500}\n >>> keys = dishes.keys()\n >>> values = dishes.values()\n\n >>> # iteration\n >>> n = 0\n >>> for val in values:\n ... n += val\n >>> print(n)\n 504\n\n >>> # keys and values are iterated over in the same order\n >>> list(keys)\n [\'eggs\', \'bacon\', \'sausage\', \'spam\']\n >>> list(values)\n [2, 1, 1, 500]\n\n >>> # view objects are dynamic and reflect dict changes\n >>> del dishes[\'eggs\']\n >>> del dishes[\'sausage\']\n >>> list(keys)\n [\'spam\', \'bacon\']\n\n >>> # set operations\n >>> keys & {\'eggs\', \'bacon\', \'salad\'}\n {\'bacon\'}\n >>> keys ^ {\'sausage\', \'juice\'}\n {\'juice\', \'eggs\', \'bacon\', \'spam\'}\n', 'typesmethods': "\nMethods\n*******\n\nMethods are functions that are called using the attribute notation.\nThere are two flavors: built-in methods (such as ``append()`` on\nlists) and class instance methods. Built-in methods are described\nwith the types that support them.\n\nIf you access a method (a function defined in a class namespace)\nthrough an instance, you get a special object: a *bound method* (also\ncalled *instance method*) object. When called, it will add the\n``self`` argument to the argument list. Bound methods have two\nspecial read-only attributes: ``m.__self__`` is the object on which\nthe method operates, and ``m.__func__`` is the function implementing\nthe method. Calling ``m(arg-1, arg-2, ..., arg-n)`` is completely\nequivalent to calling ``m.__func__(m.__self__, arg-1, arg-2, ...,\narg-n)``.\n\nLike function objects, bound method objects support getting arbitrary\nattributes. However, since method attributes are actually stored on\nthe underlying function object (``meth.__func__``), setting method\nattributes on bound methods is disallowed. Attempting to set a method\nattribute results in a ``TypeError`` being raised. In order to set a\nmethod attribute, you need to explicitly set it on the underlying\nfunction object:\n\n class C:\n def method(self):\n pass\n\n c = C()\n c.method.__func__.whoami = 'my name is c'\n\nSee *The standard type hierarchy* for more information.\n", 'typesmodules': "\nModules\n*******\n\nThe only special operation on a module is attribute access:\n``m.name``, where *m* is a module and *name* accesses a name defined\nin *m*'s symbol table. Module attributes can be assigned to. (Note\nthat the ``import`` statement is not, strictly speaking, an operation\non a module object; ``import foo`` does not require a module object\nnamed *foo* to exist, rather it requires an (external) *definition*\nfor a module named *foo* somewhere.)\n\nA special member of every module is ``__dict__``. This is the\ndictionary containing the module's symbol table. Modifying this\ndictionary will actually change the module's symbol table, but direct\nassignment to the ``__dict__`` attribute is not possible (you can\nwrite ``m.__dict__['a'] = 1``, which defines ``m.a`` to be ``1``, but\nyou can't write ``m.__dict__ = {}``). Modifying ``__dict__`` directly\nis not recommended.\n\nModules built into the interpreter are written like this: ````. If loaded from a file, they are written as\n````.\n", - 'typesseq': '\nSequence Types --- ``str``, ``bytes``, ``bytearray``, ``list``, ``tuple``, ``range``\n************************************************************************************\n\nThere are six sequence types: strings, byte sequences (``bytes``\nobjects), byte arrays (``bytearray`` objects), lists, tuples, and\nrange objects. For other containers see the built in ``dict`` and\n``set`` classes, and the ``collections`` module.\n\nStrings contain Unicode characters. Their literals are written in\nsingle or double quotes: ``\'xyzzy\'``, ``"frobozz"``. See *String and\nBytes literals* for more about string literals. In addition to the\nfunctionality described here, there are also string-specific methods\ndescribed in the *String Methods* section.\n\nBytes and bytearray objects contain single bytes -- the former is\nimmutable while the latter is a mutable sequence. Bytes objects can\nbe constructed the constructor, ``bytes()``, and from literals; use a\n``b`` prefix with normal string syntax: ``b\'xyzzy\'``. To construct\nbyte arrays, use the ``bytearray()`` function.\n\nWhile string objects are sequences of characters (represented by\nstrings of length 1), bytes and bytearray objects are sequences of\n*integers* (between 0 and 255), representing the ASCII value of single\nbytes. That means that for a bytes or bytearray object *b*, ``b[0]``\nwill be an integer, while ``b[0:1]`` will be a bytes or bytearray\nobject of length 1. The representation of bytes objects uses the\nliteral format (``b\'...\'``) since it is generally more useful than\ne.g. ``bytes([50, 19, 100])``. You can always convert a bytes object\ninto a list of integers using ``list(b)``.\n\nAlso, while in previous Python versions, byte strings and Unicode\nstrings could be exchanged for each other rather freely (barring\nencoding issues), strings and bytes are now completely separate\nconcepts. There\'s no implicit en-/decoding if you pass an object of\nthe wrong type. A string always compares unequal to a bytes or\nbytearray object.\n\nLists are constructed with square brackets, separating items with\ncommas: ``[a, b, c]``. Tuples are constructed by the comma operator\n(not within square brackets), with or without enclosing parentheses,\nbut an empty tuple must have the enclosing parentheses, such as ``a,\nb, c`` or ``()``. A single item tuple must have a trailing comma,\nsuch as ``(d,)``.\n\nObjects of type range are created using the ``range()`` function.\nThey don\'t support concatenation or repetition, and using ``min()`` or\n``max()`` on them is inefficient.\n\nMost sequence types support the following operations. The ``in`` and\n``not in`` operations have the same priorities as the comparison\noperations. The ``+`` and ``*`` operations have the same priority as\nthe corresponding numeric operations. [3] Additional methods are\nprovided for *Mutable Sequence Types*.\n\nThis table lists the sequence operations sorted in ascending priority\n(operations in the same box have the same priority). In the table,\n*s* and *t* are sequences of the same type; *n*, *i*, *j* and *k* are\nintegers.\n\n+--------------------+----------------------------------+------------+\n| Operation | Result | Notes |\n+====================+==================================+============+\n| ``x in s`` | ``True`` if an item of *s* is | (1) |\n| | equal to *x*, else ``False`` | |\n+--------------------+----------------------------------+------------+\n| ``x not in s`` | ``False`` if an item of *s* is | (1) |\n| | equal to *x*, else ``True`` | |\n+--------------------+----------------------------------+------------+\n| ``s + t`` | the concatenation of *s* and *t* | (6) |\n+--------------------+----------------------------------+------------+\n| ``s * n, n * s`` | *n* shallow copies of *s* | (2) |\n| | concatenated | |\n+--------------------+----------------------------------+------------+\n| ``s[i]`` | *i*\'th item of *s*, origin 0 | (3) |\n+--------------------+----------------------------------+------------+\n| ``s[i:j]`` | slice of *s* from *i* to *j* | (3)(4) |\n+--------------------+----------------------------------+------------+\n| ``s[i:j:k]`` | slice of *s* from *i* to *j* | (3)(5) |\n| | with step *k* | |\n+--------------------+----------------------------------+------------+\n| ``len(s)`` | length of *s* | |\n+--------------------+----------------------------------+------------+\n| ``min(s)`` | smallest item of *s* | |\n+--------------------+----------------------------------+------------+\n| ``max(s)`` | largest item of *s* | |\n+--------------------+----------------------------------+------------+\n| ``s.index(i)`` | index of the first occurence of | |\n| | *i* in *s* | |\n+--------------------+----------------------------------+------------+\n| ``s.count(i)`` | total number of occurences of | |\n| | *i* in *s* | |\n+--------------------+----------------------------------+------------+\n\nSequence types also support comparisons. In particular, tuples and\nlists are compared lexicographically by comparing corresponding\nelements. This means that to compare equal, every element must\ncompare equal and the two sequences must be of the same type and have\nthe same length. (For full details see *Comparisons* in the language\nreference.)\n\nNotes:\n\n1. When *s* is a string object, the ``in`` and ``not in`` operations\n act like a substring test.\n\n2. Values of *n* less than ``0`` are treated as ``0`` (which yields an\n empty sequence of the same type as *s*). Note also that the copies\n are shallow; nested structures are not copied. This often haunts\n new Python programmers; consider:\n\n >>> lists = [[]] * 3\n >>> lists\n [[], [], []]\n >>> lists[0].append(3)\n >>> lists\n [[3], [3], [3]]\n\n What has happened is that ``[[]]`` is a one-element list containing\n an empty list, so all three elements of ``[[]] * 3`` are (pointers\n to) this single empty list. Modifying any of the elements of\n ``lists`` modifies this single list. You can create a list of\n different lists this way:\n\n >>> lists = [[] for i in range(3)]\n >>> lists[0].append(3)\n >>> lists[1].append(5)\n >>> lists[2].append(7)\n >>> lists\n [[3], [5], [7]]\n\n3. If *i* or *j* is negative, the index is relative to the end of the\n string: ``len(s) + i`` or ``len(s) + j`` is substituted. But note\n that ``-0`` is still ``0``.\n\n4. The slice of *s* from *i* to *j* is defined as the sequence of\n items with index *k* such that ``i <= k < j``. If *i* or *j* is\n greater than ``len(s)``, use ``len(s)``. If *i* is omitted or\n ``None``, use ``0``. If *j* is omitted or ``None``, use\n ``len(s)``. If *i* is greater than or equal to *j*, the slice is\n empty.\n\n5. The slice of *s* from *i* to *j* with step *k* is defined as the\n sequence of items with index ``x = i + n*k`` such that ``0 <= n <\n (j-i)/k``. In other words, the indices are ``i``, ``i+k``,\n ``i+2*k``, ``i+3*k`` and so on, stopping when *j* is reached (but\n never including *j*). If *i* or *j* is greater than ``len(s)``,\n use ``len(s)``. If *i* or *j* are omitted or ``None``, they become\n "end" values (which end depends on the sign of *k*). Note, *k*\n cannot be zero. If *k* is ``None``, it is treated like ``1``.\n\n6. **CPython implementation detail:** If *s* and *t* are both strings,\n some Python implementations such as CPython can usually perform an\n in-place optimization for assignments of the form ``s = s + t`` or\n ``s += t``. When applicable, this optimization makes quadratic\n run-time much less likely. This optimization is both version and\n implementation dependent. For performance sensitive code, it is\n preferable to use the ``str.join()`` method which assures\n consistent linear concatenation performance across versions and\n implementations.\n\n\nString Methods\n==============\n\nString objects support the methods listed below.\n\nIn addition, Python\'s strings support the sequence type methods\ndescribed in the *Sequence Types --- str, bytes, bytearray, list,\ntuple, range* section. To output formatted strings, see the *String\nFormatting* section. Also, see the ``re`` module for string functions\nbased on regular expressions.\n\nstr.capitalize()\n\n Return a copy of the string with its first character capitalized\n and the rest lowercased.\n\nstr.center(width[, fillchar])\n\n Return centered in a string of length *width*. Padding is done\n using the specified *fillchar* (default is a space).\n\nstr.count(sub[, start[, end]])\n\n Return the number of non-overlapping occurrences of substring *sub*\n in the range [*start*, *end*]. Optional arguments *start* and\n *end* are interpreted as in slice notation.\n\nstr.encode(encoding="utf-8", errors="strict")\n\n Return an encoded version of the string as a bytes object. Default\n encoding is ``\'utf-8\'``. *errors* may be given to set a different\n error handling scheme. The default for *errors* is ``\'strict\'``,\n meaning that encoding errors raise a ``UnicodeError``. Other\n possible values are ``\'ignore\'``, ``\'replace\'``,\n ``\'xmlcharrefreplace\'``, ``\'backslashreplace\'`` and any other name\n registered via ``codecs.register_error()``, see section *Codec Base\n Classes*. For a list of possible encodings, see section *Standard\n Encodings*.\n\n Changed in version 3.1: Support for keyword arguments added.\n\nstr.endswith(suffix[, start[, end]])\n\n Return ``True`` if the string ends with the specified *suffix*,\n otherwise return ``False``. *suffix* can also be a tuple of\n suffixes to look for. With optional *start*, test beginning at\n that position. With optional *end*, stop comparing at that\n position.\n\nstr.expandtabs([tabsize])\n\n Return a copy of the string where all tab characters are replaced\n by one or more spaces, depending on the current column and the\n given tab size. The column number is reset to zero after each\n newline occurring in the string. If *tabsize* is not given, a tab\n size of ``8`` characters is assumed. This doesn\'t understand other\n non-printing characters or escape sequences.\n\nstr.find(sub[, start[, end]])\n\n Return the lowest index in the string where substring *sub* is\n found, such that *sub* is contained in the slice ``s[start:end]``.\n Optional arguments *start* and *end* are interpreted as in slice\n notation. Return ``-1`` if *sub* is not found.\n\nstr.format(*args, **kwargs)\n\n Perform a string formatting operation. The string on which this\n method is called can contain literal text or replacement fields\n delimited by braces ``{}``. Each replacement field contains either\n the numeric index of a positional argument, or the name of a\n keyword argument. Returns a copy of the string where each\n replacement field is replaced with the string value of the\n corresponding argument.\n\n >>> "The sum of 1 + 2 is {0}".format(1+2)\n \'The sum of 1 + 2 is 3\'\n\n See *Format String Syntax* for a description of the various\n formatting options that can be specified in format strings.\n\nstr.format_map(mapping)\n\n Similar to ``str.format(**mapping)``, except that ``mapping`` is\n used directly and not copied to a ``dict`` . This is useful if for\n example ``mapping`` is a dict subclass:\n\n >>> class Default(dict):\n ... def __missing__(self, key):\n ... return key\n ...\n >>> \'{name} was born in {country}\'.format_map(Default(name=\'Guido\'))\n \'Guido was born in country\'\n\n New in version 3.2.\n\nstr.index(sub[, start[, end]])\n\n Like ``find()``, but raise ``ValueError`` when the substring is not\n found.\n\nstr.isalnum()\n\n Return true if all characters in the string are alphanumeric and\n there is at least one character, false otherwise.\n\nstr.isalpha()\n\n Return true if all characters in the string are alphabetic and\n there is at least one character, false otherwise.\n\nstr.isdecimal()\n\n Return true if all characters in the string are decimal characters\n and there is at least one character, false otherwise. Decimal\n characters include digit characters, and all characters that that\n can be used to form decimal-radix numbers, e.g. U+0660, ARABIC-\n INDIC DIGIT ZERO.\n\nstr.isdigit()\n\n Return true if all characters in the string are digits and there is\n at least one character, false otherwise.\n\nstr.isidentifier()\n\n Return true if the string is a valid identifier according to the\n language definition, section *Identifiers and keywords*.\n\nstr.islower()\n\n Return true if all cased characters in the string are lowercase and\n there is at least one cased character, false otherwise.\n\nstr.isnumeric()\n\n Return true if all characters in the string are numeric characters,\n and there is at least one character, false otherwise. Numeric\n characters include digit characters, and all characters that have\n the Unicode numeric value property, e.g. U+2155, VULGAR FRACTION\n ONE FIFTH.\n\nstr.isprintable()\n\n Return true if all characters in the string are printable or the\n string is empty, false otherwise. Nonprintable characters are\n those characters defined in the Unicode character database as\n "Other" or "Separator", excepting the ASCII space (0x20) which is\n considered printable. (Note that printable characters in this\n context are those which should not be escaped when ``repr()`` is\n invoked on a string. It has no bearing on the handling of strings\n written to ``sys.stdout`` or ``sys.stderr``.)\n\nstr.isspace()\n\n Return true if there are only whitespace characters in the string\n and there is at least one character, false otherwise.\n\nstr.istitle()\n\n Return true if the string is a titlecased string and there is at\n least one character, for example uppercase characters may only\n follow uncased characters and lowercase characters only cased ones.\n Return false otherwise.\n\nstr.isupper()\n\n Return true if all cased characters in the string are uppercase and\n there is at least one cased character, false otherwise.\n\nstr.join(iterable)\n\n Return a string which is the concatenation of the strings in the\n *iterable* *iterable*. A ``TypeError`` will be raised if there are\n any non-string values in *seq*, including ``bytes`` objects. The\n separator between elements is the string providing this method.\n\nstr.ljust(width[, fillchar])\n\n Return the string left justified in a string of length *width*.\n Padding is done using the specified *fillchar* (default is a\n space). The original string is returned if *width* is less than\n ``len(s)``.\n\nstr.lower()\n\n Return a copy of the string converted to lowercase.\n\nstr.lstrip([chars])\n\n Return a copy of the string with leading characters removed. The\n *chars* argument is a string specifying the set of characters to be\n removed. If omitted or ``None``, the *chars* argument defaults to\n removing whitespace. The *chars* argument is not a prefix; rather,\n all combinations of its values are stripped:\n\n >>> \' spacious \'.lstrip()\n \'spacious \'\n >>> \'www.example.com\'.lstrip(\'cmowz.\')\n \'example.com\'\n\nstatic str.maketrans(x[, y[, z]])\n\n This static method returns a translation table usable for\n ``str.translate()``.\n\n If there is only one argument, it must be a dictionary mapping\n Unicode ordinals (integers) or characters (strings of length 1) to\n Unicode ordinals, strings (of arbitrary lengths) or None.\n Character keys will then be converted to ordinals.\n\n If there are two arguments, they must be strings of equal length,\n and in the resulting dictionary, each character in x will be mapped\n to the character at the same position in y. If there is a third\n argument, it must be a string, whose characters will be mapped to\n None in the result.\n\nstr.partition(sep)\n\n Split the string at the first occurrence of *sep*, and return a\n 3-tuple containing the part before the separator, the separator\n itself, and the part after the separator. If the separator is not\n found, return a 3-tuple containing the string itself, followed by\n two empty strings.\n\nstr.replace(old, new[, count])\n\n Return a copy of the string with all occurrences of substring *old*\n replaced by *new*. If the optional argument *count* is given, only\n the first *count* occurrences are replaced.\n\nstr.rfind(sub[, start[, end]])\n\n Return the highest index in the string where substring *sub* is\n found, such that *sub* is contained within ``s[start:end]``.\n Optional arguments *start* and *end* are interpreted as in slice\n notation. Return ``-1`` on failure.\n\nstr.rindex(sub[, start[, end]])\n\n Like ``rfind()`` but raises ``ValueError`` when the substring *sub*\n is not found.\n\nstr.rjust(width[, fillchar])\n\n Return the string right justified in a string of length *width*.\n Padding is done using the specified *fillchar* (default is a\n space). The original string is returned if *width* is less than\n ``len(s)``.\n\nstr.rpartition(sep)\n\n Split the string at the last occurrence of *sep*, and return a\n 3-tuple containing the part before the separator, the separator\n itself, and the part after the separator. If the separator is not\n found, return a 3-tuple containing two empty strings, followed by\n the string itself.\n\nstr.rsplit([sep[, maxsplit]])\n\n Return a list of the words in the string, using *sep* as the\n delimiter string. If *maxsplit* is given, at most *maxsplit* splits\n are done, the *rightmost* ones. If *sep* is not specified or\n ``None``, any whitespace string is a separator. Except for\n splitting from the right, ``rsplit()`` behaves like ``split()``\n which is described in detail below.\n\nstr.rstrip([chars])\n\n Return a copy of the string with trailing characters removed. The\n *chars* argument is a string specifying the set of characters to be\n removed. If omitted or ``None``, the *chars* argument defaults to\n removing whitespace. The *chars* argument is not a suffix; rather,\n all combinations of its values are stripped:\n\n >>> \' spacious \'.rstrip()\n \' spacious\'\n >>> \'mississippi\'.rstrip(\'ipz\')\n \'mississ\'\n\nstr.split([sep[, maxsplit]])\n\n Return a list of the words in the string, using *sep* as the\n delimiter string. If *maxsplit* is given, at most *maxsplit*\n splits are done (thus, the list will have at most ``maxsplit+1``\n elements). If *maxsplit* is not specified, then there is no limit\n on the number of splits (all possible splits are made).\n\n If *sep* is given, consecutive delimiters are not grouped together\n and are deemed to delimit empty strings (for example,\n ``\'1,,2\'.split(\',\')`` returns ``[\'1\', \'\', \'2\']``). The *sep*\n argument may consist of multiple characters (for example,\n ``\'1<>2<>3\'.split(\'<>\')`` returns ``[\'1\', \'2\', \'3\']``). Splitting\n an empty string with a specified separator returns ``[\'\']``.\n\n If *sep* is not specified or is ``None``, a different splitting\n algorithm is applied: runs of consecutive whitespace are regarded\n as a single separator, and the result will contain no empty strings\n at the start or end if the string has leading or trailing\n whitespace. Consequently, splitting an empty string or a string\n consisting of just whitespace with a ``None`` separator returns\n ``[]``.\n\n For example, ``\' 1 2 3 \'.split()`` returns ``[\'1\', \'2\', \'3\']``,\n and ``\' 1 2 3 \'.split(None, 1)`` returns ``[\'1\', \'2 3 \']``.\n\nstr.splitlines([keepends])\n\n Return a list of the lines in the string, breaking at line\n boundaries. Line breaks are not included in the resulting list\n unless *keepends* is given and true.\n\nstr.startswith(prefix[, start[, end]])\n\n Return ``True`` if string starts with the *prefix*, otherwise\n return ``False``. *prefix* can also be a tuple of prefixes to look\n for. With optional *start*, test string beginning at that\n position. With optional *end*, stop comparing string at that\n position.\n\nstr.strip([chars])\n\n Return a copy of the string with the leading and trailing\n characters removed. The *chars* argument is a string specifying the\n set of characters to be removed. If omitted or ``None``, the\n *chars* argument defaults to removing whitespace. The *chars*\n argument is not a prefix or suffix; rather, all combinations of its\n values are stripped:\n\n >>> \' spacious \'.strip()\n \'spacious\'\n >>> \'www.example.com\'.strip(\'cmowz.\')\n \'example\'\n\nstr.swapcase()\n\n Return a copy of the string with uppercase characters converted to\n lowercase and vice versa.\n\nstr.title()\n\n Return a titlecased version of the string where words start with an\n uppercase character and the remaining characters are lowercase.\n\n The algorithm uses a simple language-independent definition of a\n word as groups of consecutive letters. The definition works in\n many contexts but it means that apostrophes in contractions and\n possessives form word boundaries, which may not be the desired\n result:\n\n >>> "they\'re bill\'s friends from the UK".title()\n "They\'Re Bill\'S Friends From The Uk"\n\n A workaround for apostrophes can be constructed using regular\n expressions:\n\n >>> import re\n >>> def titlecase(s):\n return re.sub(r"[A-Za-z]+(\'[A-Za-z]+)?",\n lambda mo: mo.group(0)[0].upper() +\n mo.group(0)[1:].lower(),\n s)\n\n >>> titlecase("they\'re bill\'s friends.")\n "They\'re Bill\'s Friends."\n\nstr.translate(map)\n\n Return a copy of the *s* where all characters have been mapped\n through the *map* which must be a dictionary of Unicode ordinals\n (integers) to Unicode ordinals, strings or ``None``. Unmapped\n characters are left untouched. Characters mapped to ``None`` are\n deleted.\n\n You can use ``str.maketrans()`` to create a translation map from\n character-to-character mappings in different formats.\n\n Note: An even more flexible approach is to create a custom character\n mapping codec using the ``codecs`` module (see\n ``encodings.cp1251`` for an example).\n\nstr.upper()\n\n Return a copy of the string converted to uppercase.\n\nstr.zfill(width)\n\n Return the numeric string left filled with zeros in a string of\n length *width*. A sign prefix is handled correctly. The original\n string is returned if *width* is less than ``len(s)``.\n\n\nOld String Formatting Operations\n================================\n\nNote: The formatting operations described here are obsolete and may go\n away in future versions of Python. Use the new *String Formatting*\n in new code.\n\nString objects have one unique built-in operation: the ``%`` operator\n(modulo). This is also known as the string *formatting* or\n*interpolation* operator. Given ``format % values`` (where *format* is\na string), ``%`` conversion specifications in *format* are replaced\nwith zero or more elements of *values*. The effect is similar to the\nusing ``sprintf()`` in the C language.\n\nIf *format* requires a single argument, *values* may be a single non-\ntuple object. [4] Otherwise, *values* must be a tuple with exactly\nthe number of items specified by the format string, or a single\nmapping object (for example, a dictionary).\n\nA conversion specifier contains two or more characters and has the\nfollowing components, which must occur in this order:\n\n1. The ``\'%\'`` character, which marks the start of the specifier.\n\n2. Mapping key (optional), consisting of a parenthesised sequence of\n characters (for example, ``(somename)``).\n\n3. Conversion flags (optional), which affect the result of some\n conversion types.\n\n4. Minimum field width (optional). If specified as an ``\'*\'``\n (asterisk), the actual width is read from the next element of the\n tuple in *values*, and the object to convert comes after the\n minimum field width and optional precision.\n\n5. Precision (optional), given as a ``\'.\'`` (dot) followed by the\n precision. If specified as ``\'*\'`` (an asterisk), the actual width\n is read from the next element of the tuple in *values*, and the\n value to convert comes after the precision.\n\n6. Length modifier (optional).\n\n7. Conversion type.\n\nWhen the right argument is a dictionary (or other mapping type), then\nthe formats in the string *must* include a parenthesised mapping key\ninto that dictionary inserted immediately after the ``\'%\'`` character.\nThe mapping key selects the value to be formatted from the mapping.\nFor example:\n\n>>> print(\'%(language)s has %(number)03d quote types.\' %\n... {\'language\': "Python", "number": 2})\nPython has 002 quote types.\n\nIn this case no ``*`` specifiers may occur in a format (since they\nrequire a sequential parameter list).\n\nThe conversion flag characters are:\n\n+-----------+-----------------------------------------------------------------------+\n| Flag | Meaning |\n+===========+=======================================================================+\n| ``\'#\'`` | The value conversion will use the "alternate form" (where defined |\n| | below). |\n+-----------+-----------------------------------------------------------------------+\n| ``\'0\'`` | The conversion will be zero padded for numeric values. |\n+-----------+-----------------------------------------------------------------------+\n| ``\'-\'`` | The converted value is left adjusted (overrides the ``\'0\'`` |\n| | conversion if both are given). |\n+-----------+-----------------------------------------------------------------------+\n| ``\' \'`` | (a space) A blank should be left before a positive number (or empty |\n| | string) produced by a signed conversion. |\n+-----------+-----------------------------------------------------------------------+\n| ``\'+\'`` | A sign character (``\'+\'`` or ``\'-\'``) will precede the conversion |\n| | (overrides a "space" flag). |\n+-----------+-----------------------------------------------------------------------+\n\nA length modifier (``h``, ``l``, or ``L``) may be present, but is\nignored as it is not necessary for Python -- so e.g. ``%ld`` is\nidentical to ``%d``.\n\nThe conversion types are:\n\n+--------------+-------------------------------------------------------+---------+\n| Conversion | Meaning | Notes |\n+==============+=======================================================+=========+\n| ``\'d\'`` | Signed integer decimal. | |\n+--------------+-------------------------------------------------------+---------+\n| ``\'i\'`` | Signed integer decimal. | |\n+--------------+-------------------------------------------------------+---------+\n| ``\'o\'`` | Signed octal value. | (1) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'u\'`` | Obsolete type -- it is identical to ``\'d\'``. | (7) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'x\'`` | Signed hexadecimal (lowercase). | (2) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'X\'`` | Signed hexadecimal (uppercase). | (2) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'e\'`` | Floating point exponential format (lowercase). | (3) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'E\'`` | Floating point exponential format (uppercase). | (3) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'f\'`` | Floating point decimal format. | (3) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'F\'`` | Floating point decimal format. | (3) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'g\'`` | Floating point format. Uses lowercase exponential | (4) |\n| | format if exponent is less than -4 or not less than | |\n| | precision, decimal format otherwise. | |\n+--------------+-------------------------------------------------------+---------+\n| ``\'G\'`` | Floating point format. Uses uppercase exponential | (4) |\n| | format if exponent is less than -4 or not less than | |\n| | precision, decimal format otherwise. | |\n+--------------+-------------------------------------------------------+---------+\n| ``\'c\'`` | Single character (accepts integer or single character | |\n| | string). | |\n+--------------+-------------------------------------------------------+---------+\n| ``\'r\'`` | String (converts any Python object using ``repr()``). | (5) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'s\'`` | String (converts any Python object using ``str()``). | |\n+--------------+-------------------------------------------------------+---------+\n| ``\'%\'`` | No argument is converted, results in a ``\'%\'`` | |\n| | character in the result. | |\n+--------------+-------------------------------------------------------+---------+\n\nNotes:\n\n1. The alternate form causes a leading zero (``\'0\'``) to be inserted\n between left-hand padding and the formatting of the number if the\n leading character of the result is not already a zero.\n\n2. The alternate form causes a leading ``\'0x\'`` or ``\'0X\'`` (depending\n on whether the ``\'x\'`` or ``\'X\'`` format was used) to be inserted\n between left-hand padding and the formatting of the number if the\n leading character of the result is not already a zero.\n\n3. The alternate form causes the result to always contain a decimal\n point, even if no digits follow it.\n\n The precision determines the number of digits after the decimal\n point and defaults to 6.\n\n4. The alternate form causes the result to always contain a decimal\n point, and trailing zeroes are not removed as they would otherwise\n be.\n\n The precision determines the number of significant digits before\n and after the decimal point and defaults to 6.\n\n5. The precision determines the maximal number of characters used.\n\n1. See **PEP 237**.\n\nSince Python strings have an explicit length, ``%s`` conversions do\nnot assume that ``\'\\0\'`` is the end of the string.\n\nChanged in version 3.1: ``%f`` conversions for numbers whose absolute\nvalue is over 1e50 are no longer replaced by ``%g`` conversions.\n\nAdditional string operations are defined in standard modules\n``string`` and ``re``.\n\n\nRange Type\n==========\n\nThe ``range`` type is an immutable sequence which is commonly used for\nlooping. The advantage of the ``range`` type is that an ``range``\nobject will always take the same amount of memory, no matter the size\nof the range it represents.\n\nRange objects have relatively little behavior: they support indexing,\ncontains, iteration, the ``len()`` function, and the following\nmethods:\n\nrange.count(x)\n\n Return the number of *i*\'s for which ``s[i] == x``.\n\n New in version 3.2.\n\nrange.index(x)\n\n Return the smallest *i* such that ``s[i] == x``. Raises\n ``ValueError`` when *x* is not in the range.\n\n New in version 3.2.\n\n\nMutable Sequence Types\n======================\n\nList and bytearray objects support additional operations that allow\nin-place modification of the object. Other mutable sequence types\n(when added to the language) should also support these operations.\nStrings and tuples are immutable sequence types: such objects cannot\nbe modified once created. The following operations are defined on\nmutable sequence types (where *x* is an arbitrary object).\n\nNote that while lists allow their items to be of any type, bytearray\nobject "items" are all integers in the range 0 <= x < 256.\n\n+--------------------------------+----------------------------------+-----------------------+\n| Operation | Result | Notes |\n+================================+==================================+=======================+\n| ``s[i] = x`` | item *i* of *s* is replaced by | |\n| | *x* | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s[i:j] = t`` | slice of *s* from *i* to *j* is | |\n| | replaced by the contents of the | |\n| | iterable *t* | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``del s[i:j]`` | same as ``s[i:j] = []`` | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s[i:j:k] = t`` | the elements of ``s[i:j:k]`` are | (1) |\n| | replaced by those of *t* | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``del s[i:j:k]`` | removes the elements of | |\n| | ``s[i:j:k]`` from the list | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.append(x)`` | same as ``s[len(s):len(s)] = | |\n| | [x]`` | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.extend(x)`` | same as ``s[len(s):len(s)] = x`` | (2) |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.count(x)`` | return number of *i*\'s for which | |\n| | ``s[i] == x`` | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.index(x[, i[, j]])`` | return smallest *k* such that | (3) |\n| | ``s[k] == x`` and ``i <= k < j`` | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.insert(i, x)`` | same as ``s[i:i] = [x]`` | (4) |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.pop([i])`` | same as ``x = s[i]; del s[i]; | (5) |\n| | return x`` | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.remove(x)`` | same as ``del s[s.index(x)]`` | (3) |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.reverse()`` | reverses the items of *s* in | (6) |\n| | place | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.sort([key[, reverse]])`` | sort the items of *s* in place | (6), (7), (8) |\n+--------------------------------+----------------------------------+-----------------------+\n\nNotes:\n\n1. *t* must have the same length as the slice it is replacing.\n\n2. *x* can be any iterable object.\n\n3. Raises ``ValueError`` when *x* is not found in *s*. When a negative\n index is passed as the second or third parameter to the ``index()``\n method, the sequence length is added, as for slice indices. If it\n is still negative, it is truncated to zero, as for slice indices.\n\n4. When a negative index is passed as the first parameter to the\n ``insert()`` method, the sequence length is added, as for slice\n indices. If it is still negative, it is truncated to zero, as for\n slice indices.\n\n5. The optional argument *i* defaults to ``-1``, so that by default\n the last item is removed and returned.\n\n6. The ``sort()`` and ``reverse()`` methods modify the sequence in\n place for economy of space when sorting or reversing a large\n sequence. To remind you that they operate by side effect, they\n don\'t return the sorted or reversed sequence.\n\n7. The ``sort()`` method takes optional arguments for controlling the\n comparisons. Each must be specified as a keyword argument.\n\n *key* specifies a function of one argument that is used to extract\n a comparison key from each list element: ``key=str.lower``. The\n default value is ``None``. Use ``functools.cmp_to_key()`` to\n convert an old-style *cmp* function to a *key* function.\n\n *reverse* is a boolean value. If set to ``True``, then the list\n elements are sorted as if each comparison were reversed.\n\n The ``sort()`` method is guaranteed to be stable. A sort is stable\n if it guarantees not to change the relative order of elements that\n compare equal --- this is helpful for sorting in multiple passes\n (for example, sort by department, then by salary grade).\n\n **CPython implementation detail:** While a list is being sorted,\n the effect of attempting to mutate, or even inspect, the list is\n undefined. The C implementation of Python makes the list appear\n empty for the duration, and raises ``ValueError`` if it can detect\n that the list has been mutated during a sort.\n\n8. ``sort()`` is not supported by ``bytearray`` objects.\n\n\nBytes and Byte Array Methods\n============================\n\nBytes and bytearray objects, being "strings of bytes", have all\nmethods found on strings, with the exception of ``encode()``,\n``format()`` and ``isidentifier()``, which do not make sense with\nthese types. For converting the objects to strings, they have a\n``decode()`` method.\n\nWherever one of these methods needs to interpret the bytes as\ncharacters (e.g. the ``is...()`` methods), the ASCII character set is\nassumed.\n\nNote: The methods on bytes and bytearray objects don\'t accept strings as\n their arguments, just as the methods on strings don\'t accept bytes\n as their arguments. For example, you have to write\n\n a = "abc"\n b = a.replace("a", "f")\n\n and\n\n a = b"abc"\n b = a.replace(b"a", b"f")\n\nbytes.decode(encoding="utf-8", errors="strict")\nbytearray.decode(encoding="utf-8", errors="strict")\n\n Return a string decoded from the given bytes. Default encoding is\n ``\'utf-8\'``. *errors* may be given to set a different error\n handling scheme. The default for *errors* is ``\'strict\'``, meaning\n that encoding errors raise a ``UnicodeError``. Other possible\n values are ``\'ignore\'``, ``\'replace\'`` and any other name\n registered via ``codecs.register_error()``, see section *Codec Base\n Classes*. For a list of possible encodings, see section *Standard\n Encodings*.\n\n Changed in version 3.1: Added support for keyword arguments.\n\nThe bytes and bytearray types have an additional class method:\n\nclassmethod bytes.fromhex(string)\nclassmethod bytearray.fromhex(string)\n\n This ``bytes`` class method returns a bytes or bytearray object,\n decoding the given string object. The string must contain two\n hexadecimal digits per byte, spaces are ignored.\n\n >>> bytes.fromhex(\'f0 f1f2 \')\n b\'\\xf0\\xf1\\xf2\'\n\nThe maketrans and translate methods differ in semantics from the\nversions available on strings:\n\nbytes.translate(table[, delete])\nbytearray.translate(table[, delete])\n\n Return a copy of the bytes or bytearray object where all bytes\n occurring in the optional argument *delete* are removed, and the\n remaining bytes have been mapped through the given translation\n table, which must be a bytes object of length 256.\n\n You can use the ``bytes.maketrans()`` method to create a\n translation table.\n\n Set the *table* argument to ``None`` for translations that only\n delete characters:\n\n >>> b\'read this short text\'.translate(None, b\'aeiou\')\n b\'rd ths shrt txt\'\n\nstatic bytes.maketrans(from, to)\nstatic bytearray.maketrans(from, to)\n\n This static method returns a translation table usable for\n ``bytes.translate()`` that will map each character in *from* into\n the character at the same position in *to*; *from* and *to* must be\n bytes objects and have the same length.\n\n New in version 3.1.\n', + 'typesseq': '\nSequence Types --- ``str``, ``bytes``, ``bytearray``, ``list``, ``tuple``, ``range``\n************************************************************************************\n\nThere are six sequence types: strings, byte sequences (``bytes``\nobjects), byte arrays (``bytearray`` objects), lists, tuples, and\nrange objects. For other containers see the built in ``dict`` and\n``set`` classes, and the ``collections`` module.\n\nStrings contain Unicode characters. Their literals are written in\nsingle or double quotes: ``\'xyzzy\'``, ``"frobozz"``. See *String and\nBytes literals* for more about string literals. In addition to the\nfunctionality described here, there are also string-specific methods\ndescribed in the *String Methods* section.\n\nBytes and bytearray objects contain single bytes -- the former is\nimmutable while the latter is a mutable sequence. Bytes objects can\nbe constructed the constructor, ``bytes()``, and from literals; use a\n``b`` prefix with normal string syntax: ``b\'xyzzy\'``. To construct\nbyte arrays, use the ``bytearray()`` function.\n\nWhile string objects are sequences of characters (represented by\nstrings of length 1), bytes and bytearray objects are sequences of\n*integers* (between 0 and 255), representing the ASCII value of single\nbytes. That means that for a bytes or bytearray object *b*, ``b[0]``\nwill be an integer, while ``b[0:1]`` will be a bytes or bytearray\nobject of length 1. The representation of bytes objects uses the\nliteral format (``b\'...\'``) since it is generally more useful than\ne.g. ``bytes([50, 19, 100])``. You can always convert a bytes object\ninto a list of integers using ``list(b)``.\n\nAlso, while in previous Python versions, byte strings and Unicode\nstrings could be exchanged for each other rather freely (barring\nencoding issues), strings and bytes are now completely separate\nconcepts. There\'s no implicit en-/decoding if you pass an object of\nthe wrong type. A string always compares unequal to a bytes or\nbytearray object.\n\nLists are constructed with square brackets, separating items with\ncommas: ``[a, b, c]``. Tuples are constructed by the comma operator\n(not within square brackets), with or without enclosing parentheses,\nbut an empty tuple must have the enclosing parentheses, such as ``a,\nb, c`` or ``()``. A single item tuple must have a trailing comma,\nsuch as ``(d,)``.\n\nObjects of type range are created using the ``range()`` function.\nThey don\'t support concatenation or repetition, and using ``min()`` or\n``max()`` on them is inefficient.\n\nMost sequence types support the following operations. The ``in`` and\n``not in`` operations have the same priorities as the comparison\noperations. The ``+`` and ``*`` operations have the same priority as\nthe corresponding numeric operations. [3] Additional methods are\nprovided for *Mutable Sequence Types*.\n\nThis table lists the sequence operations sorted in ascending priority\n(operations in the same box have the same priority). In the table,\n*s* and *t* are sequences of the same type; *n*, *i*, *j* and *k* are\nintegers.\n\n+--------------------+----------------------------------+------------+\n| Operation | Result | Notes |\n+====================+==================================+============+\n| ``x in s`` | ``True`` if an item of *s* is | (1) |\n| | equal to *x*, else ``False`` | |\n+--------------------+----------------------------------+------------+\n| ``x not in s`` | ``False`` if an item of *s* is | (1) |\n| | equal to *x*, else ``True`` | |\n+--------------------+----------------------------------+------------+\n| ``s + t`` | the concatenation of *s* and *t* | (6) |\n+--------------------+----------------------------------+------------+\n| ``s * n, n * s`` | *n* shallow copies of *s* | (2) |\n| | concatenated | |\n+--------------------+----------------------------------+------------+\n| ``s[i]`` | *i*\'th item of *s*, origin 0 | (3) |\n+--------------------+----------------------------------+------------+\n| ``s[i:j]`` | slice of *s* from *i* to *j* | (3)(4) |\n+--------------------+----------------------------------+------------+\n| ``s[i:j:k]`` | slice of *s* from *i* to *j* | (3)(5) |\n| | with step *k* | |\n+--------------------+----------------------------------+------------+\n| ``len(s)`` | length of *s* | |\n+--------------------+----------------------------------+------------+\n| ``min(s)`` | smallest item of *s* | |\n+--------------------+----------------------------------+------------+\n| ``max(s)`` | largest item of *s* | |\n+--------------------+----------------------------------+------------+\n| ``s.index(i)`` | index of the first occurence of | |\n| | *i* in *s* | |\n+--------------------+----------------------------------+------------+\n| ``s.count(i)`` | total number of occurences of | |\n| | *i* in *s* | |\n+--------------------+----------------------------------+------------+\n\nSequence types also support comparisons. In particular, tuples and\nlists are compared lexicographically by comparing corresponding\nelements. This means that to compare equal, every element must\ncompare equal and the two sequences must be of the same type and have\nthe same length. (For full details see *Comparisons* in the language\nreference.)\n\nNotes:\n\n1. When *s* is a string object, the ``in`` and ``not in`` operations\n act like a substring test.\n\n2. Values of *n* less than ``0`` are treated as ``0`` (which yields an\n empty sequence of the same type as *s*). Note also that the copies\n are shallow; nested structures are not copied. This often haunts\n new Python programmers; consider:\n\n >>> lists = [[]] * 3\n >>> lists\n [[], [], []]\n >>> lists[0].append(3)\n >>> lists\n [[3], [3], [3]]\n\n What has happened is that ``[[]]`` is a one-element list containing\n an empty list, so all three elements of ``[[]] * 3`` are (pointers\n to) this single empty list. Modifying any of the elements of\n ``lists`` modifies this single list. You can create a list of\n different lists this way:\n\n >>> lists = [[] for i in range(3)]\n >>> lists[0].append(3)\n >>> lists[1].append(5)\n >>> lists[2].append(7)\n >>> lists\n [[3], [5], [7]]\n\n3. If *i* or *j* is negative, the index is relative to the end of the\n string: ``len(s) + i`` or ``len(s) + j`` is substituted. But note\n that ``-0`` is still ``0``.\n\n4. The slice of *s* from *i* to *j* is defined as the sequence of\n items with index *k* such that ``i <= k < j``. If *i* or *j* is\n greater than ``len(s)``, use ``len(s)``. If *i* is omitted or\n ``None``, use ``0``. If *j* is omitted or ``None``, use\n ``len(s)``. If *i* is greater than or equal to *j*, the slice is\n empty.\n\n5. The slice of *s* from *i* to *j* with step *k* is defined as the\n sequence of items with index ``x = i + n*k`` such that ``0 <= n <\n (j-i)/k``. In other words, the indices are ``i``, ``i+k``,\n ``i+2*k``, ``i+3*k`` and so on, stopping when *j* is reached (but\n never including *j*). If *i* or *j* is greater than ``len(s)``,\n use ``len(s)``. If *i* or *j* are omitted or ``None``, they become\n "end" values (which end depends on the sign of *k*). Note, *k*\n cannot be zero. If *k* is ``None``, it is treated like ``1``.\n\n6. **CPython implementation detail:** If *s* and *t* are both strings,\n some Python implementations such as CPython can usually perform an\n in-place optimization for assignments of the form ``s = s + t`` or\n ``s += t``. When applicable, this optimization makes quadratic\n run-time much less likely. This optimization is both version and\n implementation dependent. For performance sensitive code, it is\n preferable to use the ``str.join()`` method which assures\n consistent linear concatenation performance across versions and\n implementations.\n\n\nString Methods\n==============\n\nString objects support the methods listed below.\n\nIn addition, Python\'s strings support the sequence type methods\ndescribed in the *Sequence Types --- str, bytes, bytearray, list,\ntuple, range* section. To output formatted strings, see the *String\nFormatting* section. Also, see the ``re`` module for string functions\nbased on regular expressions.\n\nstr.capitalize()\n\n Return a copy of the string with its first character capitalized\n and the rest lowercased.\n\nstr.center(width[, fillchar])\n\n Return centered in a string of length *width*. Padding is done\n using the specified *fillchar* (default is a space).\n\nstr.count(sub[, start[, end]])\n\n Return the number of non-overlapping occurrences of substring *sub*\n in the range [*start*, *end*]. Optional arguments *start* and\n *end* are interpreted as in slice notation.\n\nstr.encode(encoding="utf-8", errors="strict")\n\n Return an encoded version of the string as a bytes object. Default\n encoding is ``\'utf-8\'``. *errors* may be given to set a different\n error handling scheme. The default for *errors* is ``\'strict\'``,\n meaning that encoding errors raise a ``UnicodeError``. Other\n possible values are ``\'ignore\'``, ``\'replace\'``,\n ``\'xmlcharrefreplace\'``, ``\'backslashreplace\'`` and any other name\n registered via ``codecs.register_error()``, see section *Codec Base\n Classes*. For a list of possible encodings, see section *Standard\n Encodings*.\n\n Changed in version 3.1: Support for keyword arguments added.\n\nstr.endswith(suffix[, start[, end]])\n\n Return ``True`` if the string ends with the specified *suffix*,\n otherwise return ``False``. *suffix* can also be a tuple of\n suffixes to look for. With optional *start*, test beginning at\n that position. With optional *end*, stop comparing at that\n position.\n\nstr.expandtabs([tabsize])\n\n Return a copy of the string where all tab characters are replaced\n by one or more spaces, depending on the current column and the\n given tab size. The column number is reset to zero after each\n newline occurring in the string. If *tabsize* is not given, a tab\n size of ``8`` characters is assumed. This doesn\'t understand other\n non-printing characters or escape sequences.\n\nstr.find(sub[, start[, end]])\n\n Return the lowest index in the string where substring *sub* is\n found, such that *sub* is contained in the slice ``s[start:end]``.\n Optional arguments *start* and *end* are interpreted as in slice\n notation. Return ``-1`` if *sub* is not found.\n\nstr.format(*args, **kwargs)\n\n Perform a string formatting operation. The string on which this\n method is called can contain literal text or replacement fields\n delimited by braces ``{}``. Each replacement field contains either\n the numeric index of a positional argument, or the name of a\n keyword argument. Returns a copy of the string where each\n replacement field is replaced with the string value of the\n corresponding argument.\n\n >>> "The sum of 1 + 2 is {0}".format(1+2)\n \'The sum of 1 + 2 is 3\'\n\n See *Format String Syntax* for a description of the various\n formatting options that can be specified in format strings.\n\nstr.format_map(mapping)\n\n Similar to ``str.format(**mapping)``, except that ``mapping`` is\n used directly and not copied to a ``dict`` . This is useful if for\n example ``mapping`` is a dict subclass:\n\n >>> class Default(dict):\n ... def __missing__(self, key):\n ... return key\n ...\n >>> \'{name} was born in {country}\'.format_map(Default(name=\'Guido\'))\n \'Guido was born in country\'\n\n New in version 3.2.\n\nstr.index(sub[, start[, end]])\n\n Like ``find()``, but raise ``ValueError`` when the substring is not\n found.\n\nstr.isalnum()\n\n Return true if all characters in the string are alphanumeric and\n there is at least one character, false otherwise. A character\n ``c`` is alphanumeric if one of the following returns ``True``:\n ``c.isalpha()``, ``c.isdecimal()``, ``c.isdigit()``, or\n ``c.isnumeric()``.\n\nstr.isalpha()\n\n Return true if all characters in the string are alphabetic and\n there is at least one character, false otherwise. Alphabetic\n characters are those characters defined in the Unicode character\n database as "Letter", i.e., those with general category property\n being one of "Lm", "Lt", "Lu", "Ll", or "Lo". Note that this is\n different from the "Alphabetic" property defined in the Unicode\n Standard.\n\nstr.isdecimal()\n\n Return true if all characters in the string are decimal characters\n and there is at least one character, false otherwise. Decimal\n characters are those from general category "Nd". This category\n includes digit characters, and all characters that that can be used\n to form decimal-radix numbers, e.g. U+0660, ARABIC-INDIC DIGIT\n ZERO.\n\nstr.isdigit()\n\n Return true if all characters in the string are digits and there is\n at least one character, false otherwise. Digits include decimal\n characters and digits that need special handling, such as the\n compatibility superscript digits. Formally, a digit is a character\n that has the property value Numeric_Type=Digit or\n Numeric_Type=Decimal.\n\nstr.isidentifier()\n\n Return true if the string is a valid identifier according to the\n language definition, section *Identifiers and keywords*.\n\nstr.islower()\n\n Return true if all cased characters in the string are lowercase and\n there is at least one cased character, false otherwise. Cased\n characters are those with general category property being one of\n "Lu", "Ll", or "Lt" and lowercase characters are those with general\n category property "Ll".\n\nstr.isnumeric()\n\n Return true if all characters in the string are numeric characters,\n and there is at least one character, false otherwise. Numeric\n characters include digit characters, and all characters that have\n the Unicode numeric value property, e.g. U+2155, VULGAR FRACTION\n ONE FIFTH. Formally, numeric characters are those with the\n property value Numeric_Type=Digit, Numeric_Type=Decimal or\n Numeric_Type=Numeric.\n\nstr.isprintable()\n\n Return true if all characters in the string are printable or the\n string is empty, false otherwise. Nonprintable characters are\n those characters defined in the Unicode character database as\n "Other" or "Separator", excepting the ASCII space (0x20) which is\n considered printable. (Note that printable characters in this\n context are those which should not be escaped when ``repr()`` is\n invoked on a string. It has no bearing on the handling of strings\n written to ``sys.stdout`` or ``sys.stderr``.)\n\nstr.isspace()\n\n Return true if there are only whitespace characters in the string\n and there is at least one character, false otherwise. Whitespace\n characters are those characters defined in the Unicode character\n database as "Other" or "Separator" and those with bidirectional\n property being one of "WS", "B", or "S".\n\nstr.istitle()\n\n Return true if the string is a titlecased string and there is at\n least one character, for example uppercase characters may only\n follow uncased characters and lowercase characters only cased ones.\n Return false otherwise.\n\nstr.isupper()\n\n Return true if all cased characters in the string are uppercase and\n there is at least one cased character, false otherwise. Cased\n characters are those with general category property being one of\n "Lu", "Ll", or "Lt" and uppercase characters are those with general\n category property "Lu".\n\nstr.join(iterable)\n\n Return a string which is the concatenation of the strings in the\n *iterable* *iterable*. A ``TypeError`` will be raised if there are\n any non-string values in *seq*, including ``bytes`` objects. The\n separator between elements is the string providing this method.\n\nstr.ljust(width[, fillchar])\n\n Return the string left justified in a string of length *width*.\n Padding is done using the specified *fillchar* (default is a\n space). The original string is returned if *width* is less than\n ``len(s)``.\n\nstr.lower()\n\n Return a copy of the string converted to lowercase.\n\nstr.lstrip([chars])\n\n Return a copy of the string with leading characters removed. The\n *chars* argument is a string specifying the set of characters to be\n removed. If omitted or ``None``, the *chars* argument defaults to\n removing whitespace. The *chars* argument is not a prefix; rather,\n all combinations of its values are stripped:\n\n >>> \' spacious \'.lstrip()\n \'spacious \'\n >>> \'www.example.com\'.lstrip(\'cmowz.\')\n \'example.com\'\n\nstatic str.maketrans(x[, y[, z]])\n\n This static method returns a translation table usable for\n ``str.translate()``.\n\n If there is only one argument, it must be a dictionary mapping\n Unicode ordinals (integers) or characters (strings of length 1) to\n Unicode ordinals, strings (of arbitrary lengths) or None.\n Character keys will then be converted to ordinals.\n\n If there are two arguments, they must be strings of equal length,\n and in the resulting dictionary, each character in x will be mapped\n to the character at the same position in y. If there is a third\n argument, it must be a string, whose characters will be mapped to\n None in the result.\n\nstr.partition(sep)\n\n Split the string at the first occurrence of *sep*, and return a\n 3-tuple containing the part before the separator, the separator\n itself, and the part after the separator. If the separator is not\n found, return a 3-tuple containing the string itself, followed by\n two empty strings.\n\nstr.replace(old, new[, count])\n\n Return a copy of the string with all occurrences of substring *old*\n replaced by *new*. If the optional argument *count* is given, only\n the first *count* occurrences are replaced.\n\nstr.rfind(sub[, start[, end]])\n\n Return the highest index in the string where substring *sub* is\n found, such that *sub* is contained within ``s[start:end]``.\n Optional arguments *start* and *end* are interpreted as in slice\n notation. Return ``-1`` on failure.\n\nstr.rindex(sub[, start[, end]])\n\n Like ``rfind()`` but raises ``ValueError`` when the substring *sub*\n is not found.\n\nstr.rjust(width[, fillchar])\n\n Return the string right justified in a string of length *width*.\n Padding is done using the specified *fillchar* (default is a\n space). The original string is returned if *width* is less than\n ``len(s)``.\n\nstr.rpartition(sep)\n\n Split the string at the last occurrence of *sep*, and return a\n 3-tuple containing the part before the separator, the separator\n itself, and the part after the separator. If the separator is not\n found, return a 3-tuple containing two empty strings, followed by\n the string itself.\n\nstr.rsplit([sep[, maxsplit]])\n\n Return a list of the words in the string, using *sep* as the\n delimiter string. If *maxsplit* is given, at most *maxsplit* splits\n are done, the *rightmost* ones. If *sep* is not specified or\n ``None``, any whitespace string is a separator. Except for\n splitting from the right, ``rsplit()`` behaves like ``split()``\n which is described in detail below.\n\nstr.rstrip([chars])\n\n Return a copy of the string with trailing characters removed. The\n *chars* argument is a string specifying the set of characters to be\n removed. If omitted or ``None``, the *chars* argument defaults to\n removing whitespace. The *chars* argument is not a suffix; rather,\n all combinations of its values are stripped:\n\n >>> \' spacious \'.rstrip()\n \' spacious\'\n >>> \'mississippi\'.rstrip(\'ipz\')\n \'mississ\'\n\nstr.split([sep[, maxsplit]])\n\n Return a list of the words in the string, using *sep* as the\n delimiter string. If *maxsplit* is given, at most *maxsplit*\n splits are done (thus, the list will have at most ``maxsplit+1``\n elements). If *maxsplit* is not specified, then there is no limit\n on the number of splits (all possible splits are made).\n\n If *sep* is given, consecutive delimiters are not grouped together\n and are deemed to delimit empty strings (for example,\n ``\'1,,2\'.split(\',\')`` returns ``[\'1\', \'\', \'2\']``). The *sep*\n argument may consist of multiple characters (for example,\n ``\'1<>2<>3\'.split(\'<>\')`` returns ``[\'1\', \'2\', \'3\']``). Splitting\n an empty string with a specified separator returns ``[\'\']``.\n\n If *sep* is not specified or is ``None``, a different splitting\n algorithm is applied: runs of consecutive whitespace are regarded\n as a single separator, and the result will contain no empty strings\n at the start or end if the string has leading or trailing\n whitespace. Consequently, splitting an empty string or a string\n consisting of just whitespace with a ``None`` separator returns\n ``[]``.\n\n For example, ``\' 1 2 3 \'.split()`` returns ``[\'1\', \'2\', \'3\']``,\n and ``\' 1 2 3 \'.split(None, 1)`` returns ``[\'1\', \'2 3 \']``.\n\nstr.splitlines([keepends])\n\n Return a list of the lines in the string, breaking at line\n boundaries. Line breaks are not included in the resulting list\n unless *keepends* is given and true.\n\nstr.startswith(prefix[, start[, end]])\n\n Return ``True`` if string starts with the *prefix*, otherwise\n return ``False``. *prefix* can also be a tuple of prefixes to look\n for. With optional *start*, test string beginning at that\n position. With optional *end*, stop comparing string at that\n position.\n\nstr.strip([chars])\n\n Return a copy of the string with the leading and trailing\n characters removed. The *chars* argument is a string specifying the\n set of characters to be removed. If omitted or ``None``, the\n *chars* argument defaults to removing whitespace. The *chars*\n argument is not a prefix or suffix; rather, all combinations of its\n values are stripped:\n\n >>> \' spacious \'.strip()\n \'spacious\'\n >>> \'www.example.com\'.strip(\'cmowz.\')\n \'example\'\n\nstr.swapcase()\n\n Return a copy of the string with uppercase characters converted to\n lowercase and vice versa.\n\nstr.title()\n\n Return a titlecased version of the string where words start with an\n uppercase character and the remaining characters are lowercase.\n\n The algorithm uses a simple language-independent definition of a\n word as groups of consecutive letters. The definition works in\n many contexts but it means that apostrophes in contractions and\n possessives form word boundaries, which may not be the desired\n result:\n\n >>> "they\'re bill\'s friends from the UK".title()\n "They\'Re Bill\'S Friends From The Uk"\n\n A workaround for apostrophes can be constructed using regular\n expressions:\n\n >>> import re\n >>> def titlecase(s):\n return re.sub(r"[A-Za-z]+(\'[A-Za-z]+)?",\n lambda mo: mo.group(0)[0].upper() +\n mo.group(0)[1:].lower(),\n s)\n\n >>> titlecase("they\'re bill\'s friends.")\n "They\'re Bill\'s Friends."\n\nstr.translate(map)\n\n Return a copy of the *s* where all characters have been mapped\n through the *map* which must be a dictionary of Unicode ordinals\n (integers) to Unicode ordinals, strings or ``None``. Unmapped\n characters are left untouched. Characters mapped to ``None`` are\n deleted.\n\n You can use ``str.maketrans()`` to create a translation map from\n character-to-character mappings in different formats.\n\n Note: An even more flexible approach is to create a custom character\n mapping codec using the ``codecs`` module (see\n ``encodings.cp1251`` for an example).\n\nstr.upper()\n\n Return a copy of the string converted to uppercase.\n\nstr.zfill(width)\n\n Return the numeric string left filled with zeros in a string of\n length *width*. A sign prefix is handled correctly. The original\n string is returned if *width* is less than ``len(s)``.\n\n\nOld String Formatting Operations\n================================\n\nNote: The formatting operations described here are obsolete and may go\n away in future versions of Python. Use the new *String Formatting*\n in new code.\n\nString objects have one unique built-in operation: the ``%`` operator\n(modulo). This is also known as the string *formatting* or\n*interpolation* operator. Given ``format % values`` (where *format* is\na string), ``%`` conversion specifications in *format* are replaced\nwith zero or more elements of *values*. The effect is similar to the\nusing ``sprintf()`` in the C language.\n\nIf *format* requires a single argument, *values* may be a single non-\ntuple object. [4] Otherwise, *values* must be a tuple with exactly\nthe number of items specified by the format string, or a single\nmapping object (for example, a dictionary).\n\nA conversion specifier contains two or more characters and has the\nfollowing components, which must occur in this order:\n\n1. The ``\'%\'`` character, which marks the start of the specifier.\n\n2. Mapping key (optional), consisting of a parenthesised sequence of\n characters (for example, ``(somename)``).\n\n3. Conversion flags (optional), which affect the result of some\n conversion types.\n\n4. Minimum field width (optional). If specified as an ``\'*\'``\n (asterisk), the actual width is read from the next element of the\n tuple in *values*, and the object to convert comes after the\n minimum field width and optional precision.\n\n5. Precision (optional), given as a ``\'.\'`` (dot) followed by the\n precision. If specified as ``\'*\'`` (an asterisk), the actual width\n is read from the next element of the tuple in *values*, and the\n value to convert comes after the precision.\n\n6. Length modifier (optional).\n\n7. Conversion type.\n\nWhen the right argument is a dictionary (or other mapping type), then\nthe formats in the string *must* include a parenthesised mapping key\ninto that dictionary inserted immediately after the ``\'%\'`` character.\nThe mapping key selects the value to be formatted from the mapping.\nFor example:\n\n>>> print(\'%(language)s has %(number)03d quote types.\' %\n... {\'language\': "Python", "number": 2})\nPython has 002 quote types.\n\nIn this case no ``*`` specifiers may occur in a format (since they\nrequire a sequential parameter list).\n\nThe conversion flag characters are:\n\n+-----------+-----------------------------------------------------------------------+\n| Flag | Meaning |\n+===========+=======================================================================+\n| ``\'#\'`` | The value conversion will use the "alternate form" (where defined |\n| | below). |\n+-----------+-----------------------------------------------------------------------+\n| ``\'0\'`` | The conversion will be zero padded for numeric values. |\n+-----------+-----------------------------------------------------------------------+\n| ``\'-\'`` | The converted value is left adjusted (overrides the ``\'0\'`` |\n| | conversion if both are given). |\n+-----------+-----------------------------------------------------------------------+\n| ``\' \'`` | (a space) A blank should be left before a positive number (or empty |\n| | string) produced by a signed conversion. |\n+-----------+-----------------------------------------------------------------------+\n| ``\'+\'`` | A sign character (``\'+\'`` or ``\'-\'``) will precede the conversion |\n| | (overrides a "space" flag). |\n+-----------+-----------------------------------------------------------------------+\n\nA length modifier (``h``, ``l``, or ``L``) may be present, but is\nignored as it is not necessary for Python -- so e.g. ``%ld`` is\nidentical to ``%d``.\n\nThe conversion types are:\n\n+--------------+-------------------------------------------------------+---------+\n| Conversion | Meaning | Notes |\n+==============+=======================================================+=========+\n| ``\'d\'`` | Signed integer decimal. | |\n+--------------+-------------------------------------------------------+---------+\n| ``\'i\'`` | Signed integer decimal. | |\n+--------------+-------------------------------------------------------+---------+\n| ``\'o\'`` | Signed octal value. | (1) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'u\'`` | Obsolete type -- it is identical to ``\'d\'``. | (7) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'x\'`` | Signed hexadecimal (lowercase). | (2) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'X\'`` | Signed hexadecimal (uppercase). | (2) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'e\'`` | Floating point exponential format (lowercase). | (3) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'E\'`` | Floating point exponential format (uppercase). | (3) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'f\'`` | Floating point decimal format. | (3) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'F\'`` | Floating point decimal format. | (3) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'g\'`` | Floating point format. Uses lowercase exponential | (4) |\n| | format if exponent is less than -4 or not less than | |\n| | precision, decimal format otherwise. | |\n+--------------+-------------------------------------------------------+---------+\n| ``\'G\'`` | Floating point format. Uses uppercase exponential | (4) |\n| | format if exponent is less than -4 or not less than | |\n| | precision, decimal format otherwise. | |\n+--------------+-------------------------------------------------------+---------+\n| ``\'c\'`` | Single character (accepts integer or single character | |\n| | string). | |\n+--------------+-------------------------------------------------------+---------+\n| ``\'r\'`` | String (converts any Python object using ``repr()``). | (5) |\n+--------------+-------------------------------------------------------+---------+\n| ``\'s\'`` | String (converts any Python object using ``str()``). | |\n+--------------+-------------------------------------------------------+---------+\n| ``\'%\'`` | No argument is converted, results in a ``\'%\'`` | |\n| | character in the result. | |\n+--------------+-------------------------------------------------------+---------+\n\nNotes:\n\n1. The alternate form causes a leading zero (``\'0\'``) to be inserted\n between left-hand padding and the formatting of the number if the\n leading character of the result is not already a zero.\n\n2. The alternate form causes a leading ``\'0x\'`` or ``\'0X\'`` (depending\n on whether the ``\'x\'`` or ``\'X\'`` format was used) to be inserted\n between left-hand padding and the formatting of the number if the\n leading character of the result is not already a zero.\n\n3. The alternate form causes the result to always contain a decimal\n point, even if no digits follow it.\n\n The precision determines the number of digits after the decimal\n point and defaults to 6.\n\n4. The alternate form causes the result to always contain a decimal\n point, and trailing zeroes are not removed as they would otherwise\n be.\n\n The precision determines the number of significant digits before\n and after the decimal point and defaults to 6.\n\n5. The precision determines the maximal number of characters used.\n\n1. See **PEP 237**.\n\nSince Python strings have an explicit length, ``%s`` conversions do\nnot assume that ``\'\\0\'`` is the end of the string.\n\nChanged in version 3.1: ``%f`` conversions for numbers whose absolute\nvalue is over 1e50 are no longer replaced by ``%g`` conversions.\n\nAdditional string operations are defined in standard modules\n``string`` and ``re``.\n\n\nRange Type\n==========\n\nThe ``range`` type is an immutable sequence which is commonly used for\nlooping. The advantage of the ``range`` type is that an ``range``\nobject will always take the same amount of memory, no matter the size\nof the range it represents.\n\nRange objects have relatively little behavior: they support indexing,\ncontains, iteration, the ``len()`` function, and the following\nmethods:\n\nrange.count(x)\n\n Return the number of *i*\'s for which ``s[i] == x``.\n\n New in version 3.2.\n\nrange.index(x)\n\n Return the smallest *i* such that ``s[i] == x``. Raises\n ``ValueError`` when *x* is not in the range.\n\n New in version 3.2.\n\n\nMutable Sequence Types\n======================\n\nList and bytearray objects support additional operations that allow\nin-place modification of the object. Other mutable sequence types\n(when added to the language) should also support these operations.\nStrings and tuples are immutable sequence types: such objects cannot\nbe modified once created. The following operations are defined on\nmutable sequence types (where *x* is an arbitrary object).\n\nNote that while lists allow their items to be of any type, bytearray\nobject "items" are all integers in the range 0 <= x < 256.\n\n+--------------------------------+----------------------------------+-----------------------+\n| Operation | Result | Notes |\n+================================+==================================+=======================+\n| ``s[i] = x`` | item *i* of *s* is replaced by | |\n| | *x* | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s[i:j] = t`` | slice of *s* from *i* to *j* is | |\n| | replaced by the contents of the | |\n| | iterable *t* | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``del s[i:j]`` | same as ``s[i:j] = []`` | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s[i:j:k] = t`` | the elements of ``s[i:j:k]`` are | (1) |\n| | replaced by those of *t* | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``del s[i:j:k]`` | removes the elements of | |\n| | ``s[i:j:k]`` from the list | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.append(x)`` | same as ``s[len(s):len(s)] = | |\n| | [x]`` | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.extend(x)`` | same as ``s[len(s):len(s)] = x`` | (2) |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.count(x)`` | return number of *i*\'s for which | |\n| | ``s[i] == x`` | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.index(x[, i[, j]])`` | return smallest *k* such that | (3) |\n| | ``s[k] == x`` and ``i <= k < j`` | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.insert(i, x)`` | same as ``s[i:i] = [x]`` | (4) |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.pop([i])`` | same as ``x = s[i]; del s[i]; | (5) |\n| | return x`` | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.remove(x)`` | same as ``del s[s.index(x)]`` | (3) |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.reverse()`` | reverses the items of *s* in | (6) |\n| | place | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.sort([key[, reverse]])`` | sort the items of *s* in place | (6), (7), (8) |\n+--------------------------------+----------------------------------+-----------------------+\n\nNotes:\n\n1. *t* must have the same length as the slice it is replacing.\n\n2. *x* can be any iterable object.\n\n3. Raises ``ValueError`` when *x* is not found in *s*. When a negative\n index is passed as the second or third parameter to the ``index()``\n method, the sequence length is added, as for slice indices. If it\n is still negative, it is truncated to zero, as for slice indices.\n\n4. When a negative index is passed as the first parameter to the\n ``insert()`` method, the sequence length is added, as for slice\n indices. If it is still negative, it is truncated to zero, as for\n slice indices.\n\n5. The optional argument *i* defaults to ``-1``, so that by default\n the last item is removed and returned.\n\n6. The ``sort()`` and ``reverse()`` methods modify the sequence in\n place for economy of space when sorting or reversing a large\n sequence. To remind you that they operate by side effect, they\n don\'t return the sorted or reversed sequence.\n\n7. The ``sort()`` method takes optional arguments for controlling the\n comparisons. Each must be specified as a keyword argument.\n\n *key* specifies a function of one argument that is used to extract\n a comparison key from each list element: ``key=str.lower``. The\n default value is ``None``. Use ``functools.cmp_to_key()`` to\n convert an old-style *cmp* function to a *key* function.\n\n *reverse* is a boolean value. If set to ``True``, then the list\n elements are sorted as if each comparison were reversed.\n\n The ``sort()`` method is guaranteed to be stable. A sort is stable\n if it guarantees not to change the relative order of elements that\n compare equal --- this is helpful for sorting in multiple passes\n (for example, sort by department, then by salary grade).\n\n **CPython implementation detail:** While a list is being sorted,\n the effect of attempting to mutate, or even inspect, the list is\n undefined. The C implementation of Python makes the list appear\n empty for the duration, and raises ``ValueError`` if it can detect\n that the list has been mutated during a sort.\n\n8. ``sort()`` is not supported by ``bytearray`` objects.\n\n\nBytes and Byte Array Methods\n============================\n\nBytes and bytearray objects, being "strings of bytes", have all\nmethods found on strings, with the exception of ``encode()``,\n``format()`` and ``isidentifier()``, which do not make sense with\nthese types. For converting the objects to strings, they have a\n``decode()`` method.\n\nWherever one of these methods needs to interpret the bytes as\ncharacters (e.g. the ``is...()`` methods), the ASCII character set is\nassumed.\n\nNote: The methods on bytes and bytearray objects don\'t accept strings as\n their arguments, just as the methods on strings don\'t accept bytes\n as their arguments. For example, you have to write\n\n a = "abc"\n b = a.replace("a", "f")\n\n and\n\n a = b"abc"\n b = a.replace(b"a", b"f")\n\nbytes.decode(encoding="utf-8", errors="strict")\nbytearray.decode(encoding="utf-8", errors="strict")\n\n Return a string decoded from the given bytes. Default encoding is\n ``\'utf-8\'``. *errors* may be given to set a different error\n handling scheme. The default for *errors* is ``\'strict\'``, meaning\n that encoding errors raise a ``UnicodeError``. Other possible\n values are ``\'ignore\'``, ``\'replace\'`` and any other name\n registered via ``codecs.register_error()``, see section *Codec Base\n Classes*. For a list of possible encodings, see section *Standard\n Encodings*.\n\n Changed in version 3.1: Added support for keyword arguments.\n\nThe bytes and bytearray types have an additional class method:\n\nclassmethod bytes.fromhex(string)\nclassmethod bytearray.fromhex(string)\n\n This ``bytes`` class method returns a bytes or bytearray object,\n decoding the given string object. The string must contain two\n hexadecimal digits per byte, spaces are ignored.\n\n >>> bytes.fromhex(\'f0 f1f2 \')\n b\'\\xf0\\xf1\\xf2\'\n\nThe maketrans and translate methods differ in semantics from the\nversions available on strings:\n\nbytes.translate(table[, delete])\nbytearray.translate(table[, delete])\n\n Return a copy of the bytes or bytearray object where all bytes\n occurring in the optional argument *delete* are removed, and the\n remaining bytes have been mapped through the given translation\n table, which must be a bytes object of length 256.\n\n You can use the ``bytes.maketrans()`` method to create a\n translation table.\n\n Set the *table* argument to ``None`` for translations that only\n delete characters:\n\n >>> b\'read this short text\'.translate(None, b\'aeiou\')\n b\'rd ths shrt txt\'\n\nstatic bytes.maketrans(from, to)\nstatic bytearray.maketrans(from, to)\n\n This static method returns a translation table usable for\n ``bytes.translate()`` that will map each character in *from* into\n the character at the same position in *to*; *from* and *to* must be\n bytes objects and have the same length.\n\n New in version 3.1.\n', 'typesseq-mutable': '\nMutable Sequence Types\n**********************\n\nList and bytearray objects support additional operations that allow\nin-place modification of the object. Other mutable sequence types\n(when added to the language) should also support these operations.\nStrings and tuples are immutable sequence types: such objects cannot\nbe modified once created. The following operations are defined on\nmutable sequence types (where *x* is an arbitrary object).\n\nNote that while lists allow their items to be of any type, bytearray\nobject "items" are all integers in the range 0 <= x < 256.\n\n+--------------------------------+----------------------------------+-----------------------+\n| Operation | Result | Notes |\n+================================+==================================+=======================+\n| ``s[i] = x`` | item *i* of *s* is replaced by | |\n| | *x* | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s[i:j] = t`` | slice of *s* from *i* to *j* is | |\n| | replaced by the contents of the | |\n| | iterable *t* | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``del s[i:j]`` | same as ``s[i:j] = []`` | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s[i:j:k] = t`` | the elements of ``s[i:j:k]`` are | (1) |\n| | replaced by those of *t* | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``del s[i:j:k]`` | removes the elements of | |\n| | ``s[i:j:k]`` from the list | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.append(x)`` | same as ``s[len(s):len(s)] = | |\n| | [x]`` | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.extend(x)`` | same as ``s[len(s):len(s)] = x`` | (2) |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.count(x)`` | return number of *i*\'s for which | |\n| | ``s[i] == x`` | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.index(x[, i[, j]])`` | return smallest *k* such that | (3) |\n| | ``s[k] == x`` and ``i <= k < j`` | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.insert(i, x)`` | same as ``s[i:i] = [x]`` | (4) |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.pop([i])`` | same as ``x = s[i]; del s[i]; | (5) |\n| | return x`` | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.remove(x)`` | same as ``del s[s.index(x)]`` | (3) |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.reverse()`` | reverses the items of *s* in | (6) |\n| | place | |\n+--------------------------------+----------------------------------+-----------------------+\n| ``s.sort([key[, reverse]])`` | sort the items of *s* in place | (6), (7), (8) |\n+--------------------------------+----------------------------------+-----------------------+\n\nNotes:\n\n1. *t* must have the same length as the slice it is replacing.\n\n2. *x* can be any iterable object.\n\n3. Raises ``ValueError`` when *x* is not found in *s*. When a negative\n index is passed as the second or third parameter to the ``index()``\n method, the sequence length is added, as for slice indices. If it\n is still negative, it is truncated to zero, as for slice indices.\n\n4. When a negative index is passed as the first parameter to the\n ``insert()`` method, the sequence length is added, as for slice\n indices. If it is still negative, it is truncated to zero, as for\n slice indices.\n\n5. The optional argument *i* defaults to ``-1``, so that by default\n the last item is removed and returned.\n\n6. The ``sort()`` and ``reverse()`` methods modify the sequence in\n place for economy of space when sorting or reversing a large\n sequence. To remind you that they operate by side effect, they\n don\'t return the sorted or reversed sequence.\n\n7. The ``sort()`` method takes optional arguments for controlling the\n comparisons. Each must be specified as a keyword argument.\n\n *key* specifies a function of one argument that is used to extract\n a comparison key from each list element: ``key=str.lower``. The\n default value is ``None``. Use ``functools.cmp_to_key()`` to\n convert an old-style *cmp* function to a *key* function.\n\n *reverse* is a boolean value. If set to ``True``, then the list\n elements are sorted as if each comparison were reversed.\n\n The ``sort()`` method is guaranteed to be stable. A sort is stable\n if it guarantees not to change the relative order of elements that\n compare equal --- this is helpful for sorting in multiple passes\n (for example, sort by department, then by salary grade).\n\n **CPython implementation detail:** While a list is being sorted,\n the effect of attempting to mutate, or even inspect, the list is\n undefined. The C implementation of Python makes the list appear\n empty for the duration, and raises ``ValueError`` if it can detect\n that the list has been mutated during a sort.\n\n8. ``sort()`` is not supported by ``bytearray`` objects.\n', 'unary': '\nUnary arithmetic and bitwise operations\n***************************************\n\nAll unary arithmetic and bitwise operations have the same priority:\n\n u_expr ::= power | "-" u_expr | "+" u_expr | "~" u_expr\n\nThe unary ``-`` (minus) operator yields the negation of its numeric\nargument.\n\nThe unary ``+`` (plus) operator yields its numeric argument unchanged.\n\nThe unary ``~`` (invert) operator yields the bitwise inversion of its\ninteger argument. The bitwise inversion of ``x`` is defined as\n``-(x+1)``. It only applies to integral numbers.\n\nIn all three cases, if the argument does not have the proper type, a\n``TypeError`` exception is raised.\n', 'while': '\nThe ``while`` statement\n***********************\n\nThe ``while`` statement is used for repeated execution as long as an\nexpression is true:\n\n while_stmt ::= "while" expression ":" suite\n ["else" ":" suite]\n\nThis repeatedly tests the expression and, if it is true, executes the\nfirst suite; if the expression is false (which may be the first time\nit is tested) the suite of the ``else`` clause, if present, is\nexecuted and the loop terminates.\n\nA ``break`` statement executed in the first suite terminates the loop\nwithout executing the ``else`` clause\'s suite. A ``continue``\nstatement executed in the first suite skips the rest of the suite and\ngoes back to testing the expression.\n', Modified: python/branches/py3k-cdecimal/Lib/random.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/random.py (original) +++ python/branches/py3k-cdecimal/Lib/random.py Fri Mar 4 18:50:17 2011 @@ -42,7 +42,7 @@ from math import log as _log, exp as _exp, pi as _pi, e as _e, ceil as _ceil from math import sqrt as _sqrt, acos as _acos, cos as _cos, sin as _sin from os import urandom as _urandom -import collections as _collections +from collections.abc import Set as _Set, Sequence as _Sequence from hashlib import sha512 as _sha512 __all__ = ["Random","seed","random","uniform","randint","choice","sample", @@ -114,7 +114,7 @@ if version == 2: if isinstance(a, (str, bytes, bytearray)): if isinstance(a, str): - a = a.encode("utf8") + a = a.encode("utf-8") a += _sha512(a).digest() a = int.from_bytes(a, 'big') @@ -293,10 +293,10 @@ # preferred since the list takes less space than the # set and it doesn't suffer from frequent reselections. - if isinstance(population, _collections.Set): + if isinstance(population, _Set): population = tuple(population) - if not isinstance(population, _collections.Sequence): - raise TypeError("Population must be a sequence or Set. For dicts, use list(d).") + if not isinstance(population, _Sequence): + raise TypeError("Population must be a sequence or set. For dicts, use list(d).") randbelow = self._randbelow n = len(population) if not 0 <= k <= n: Modified: python/branches/py3k-cdecimal/Lib/reprlib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/reprlib.py (original) +++ python/branches/py3k-cdecimal/Lib/reprlib.py Fri Mar 4 18:50:17 2011 @@ -30,6 +30,7 @@ wrapper.__module__ = getattr(user_function, '__module__') wrapper.__doc__ = getattr(user_function, '__doc__') wrapper.__name__ = getattr(user_function, '__name__') + wrapper.__annotations__ = getattr(user_function, '__annotations__', {}) return wrapper return decorating_function Modified: python/branches/py3k-cdecimal/Lib/shutil.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/shutil.py (original) +++ python/branches/py3k-cdecimal/Lib/shutil.py Fri Mar 4 18:50:17 2011 @@ -391,7 +391,8 @@ archive_dir = os.path.dirname(archive_name) if not os.path.exists(archive_dir): - logger.info("creating %s" % archive_dir) + if logger is not None: + logger.info("creating %s" % archive_dir) if not dry_run: os.makedirs(archive_dir) Modified: python/branches/py3k-cdecimal/Lib/smtpd.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/smtpd.py (original) +++ python/branches/py3k-cdecimal/Lib/smtpd.py Fri Mar 4 18:50:17 2011 @@ -275,7 +275,7 @@ return elif limit: self.num_bytes += len(data) - self.received_lines.append(str(data, "utf8")) + self.received_lines.append(str(data, "utf-8")) # Implementation of base class abstract method def found_terminator(self): Modified: python/branches/py3k-cdecimal/Lib/smtplib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/smtplib.py (original) +++ python/branches/py3k-cdecimal/Lib/smtplib.py Fri Mar 4 18:50:17 2011 @@ -52,15 +52,15 @@ from email.base64mime import body_encode as encode_base64 from sys import stderr -__all__ = ["SMTPException","SMTPServerDisconnected","SMTPResponseException", - "SMTPSenderRefused","SMTPRecipientsRefused","SMTPDataError", - "SMTPConnectError","SMTPHeloError","SMTPAuthenticationError", - "quoteaddr","quotedata","SMTP"] +__all__ = ["SMTPException", "SMTPServerDisconnected", "SMTPResponseException", + "SMTPSenderRefused", "SMTPRecipientsRefused", "SMTPDataError", + "SMTPConnectError", "SMTPHeloError", "SMTPAuthenticationError", + "quoteaddr", "quotedata", "SMTP"] SMTP_PORT = 25 SMTP_SSL_PORT = 465 -CRLF="\r\n" -bCRLF=b"\r\n" +CRLF = "\r\n" +bCRLF = b"\r\n" OLDSTYLE_AUTH = re.compile(r"auth=(.*)", re.I) @@ -113,7 +113,7 @@ def __init__(self, recipients): self.recipients = recipients - self.args = ( recipients,) + self.args = (recipients,) class SMTPDataError(SMTPResponseException): @@ -142,7 +142,7 @@ m = email.utils.parseaddr(addr)[1] except AttributeError: pass - if m == (None, None): # Indicates parse failure or AttributeError + if m == (None, None): # Indicates parse failure or AttributeError # something weird here.. punt -ddm return "<%s>" % addr elif m is None: @@ -185,7 +185,8 @@ chr = None while chr != b"\n": chr = self.sslobj.read(1) - if not chr: break + if not chr: + break str += chr return str @@ -280,10 +281,11 @@ def _get_socket(self, host, port, timeout): # This makes it simpler for SMTP_SSL to use the SMTP connect code # and just alter the socket connection bit. - if self.debuglevel > 0: print('connect:', (host, port), file=stderr) + if self.debuglevel > 0: + print('connect:', (host, port), file=stderr) return socket.create_connection((host, port), timeout) - def connect(self, host='localhost', port = 0): + def connect(self, host='localhost', port=0): """Connect to a host on a given port. If the hostname ends with a colon (`:') followed by a number, and @@ -297,20 +299,25 @@ if not port and (host.find(':') == host.rfind(':')): i = host.rfind(':') if i >= 0: - host, port = host[:i], host[i+1:] - try: port = int(port) + host, port = host[:i], host[i + 1:] + try: + port = int(port) except ValueError: raise socket.error("nonnumeric port") - if not port: port = self.default_port - if self.debuglevel > 0: print('connect:', (host, port), file=stderr) + if not port: + port = self.default_port + if self.debuglevel > 0: + print('connect:', (host, port), file=stderr) self.sock = self._get_socket(host, port, self.timeout) (code, msg) = self.getreply() - if self.debuglevel > 0: print("connect:", msg, file=stderr) + if self.debuglevel > 0: + print("connect:", msg, file=stderr) return (code, msg) def send(self, s): """Send `s' to the server.""" - if self.debuglevel > 0: print('send:', repr(s), file=stderr) + if self.debuglevel > 0: + print('send:', repr(s), file=stderr) if hasattr(self, 'sock') and self.sock: if isinstance(s, str): s = s.encode("ascii") @@ -343,7 +350,7 @@ Raises SMTPServerDisconnected if end-of-file is reached. """ - resp=[] + resp = [] if self.file is None: self.file = self.sock.makefile('rb') while 1: @@ -354,9 +361,10 @@ if not line: self.close() raise SMTPServerDisconnected("Connection unexpectedly closed") - if self.debuglevel > 0: print('reply:', repr(line), file=stderr) + if self.debuglevel > 0: + print('reply:', repr(line), file=stderr) resp.append(line[4:].strip(b' \t\r\n')) - code=line[:3] + code = line[:3] # Check that the error code is syntactically correct. # Don't attempt to read a continuation line if it is broken. try: @@ -370,12 +378,12 @@ errmsg = b"\n".join(resp) if self.debuglevel > 0: - print('reply: retcode (%s); Msg: %s' % (errcode,errmsg), file=stderr) + print('reply: retcode (%s); Msg: %s' % (errcode, errmsg), file=stderr) return errcode, errmsg def docmd(self, cmd, args=""): """Send a command, and return its response code.""" - self.putcmd(cmd,args) + self.putcmd(cmd, args) return self.getreply() # std smtp commands @@ -385,9 +393,9 @@ host. """ self.putcmd("helo", name or self.local_hostname) - (code,msg)=self.getreply() - self.helo_resp=msg - return (code,msg) + (code, msg) = self.getreply() + self.helo_resp = msg + return (code, msg) def ehlo(self, name=''): """ SMTP 'ehlo' command. @@ -396,20 +404,20 @@ """ self.esmtp_features = {} self.putcmd(self.ehlo_msg, name or self.local_hostname) - (code,msg)=self.getreply() + (code, msg) = self.getreply() # According to RFC1869 some (badly written) # MTA's will disconnect on an ehlo. Toss an exception if # that happens -ddm if code == -1 and len(msg) == 0: self.close() raise SMTPServerDisconnected("Server not connected") - self.ehlo_resp=msg + self.ehlo_resp = msg if code != 250: - return (code,msg) - self.does_esmtp=1 + return (code, msg) + self.does_esmtp = 1 #parse the ehlo response -ddm assert isinstance(self.ehlo_resp, bytes), repr(self.ehlo_resp) - resp=self.ehlo_resp.decode("latin-1").split('\n') + resp = self.ehlo_resp.decode("latin-1").split('\n') del resp[0] for each in resp: # To be able to communicate with as many SMTP servers as possible, @@ -429,16 +437,16 @@ # It's actually stricter, in that only spaces are allowed between # parameters, but were not going to check for that here. Note # that the space isn't present if there are no parameters. - m=re.match(r'(?P[A-Za-z0-9][A-Za-z0-9\-]*) ?',each) + m = re.match(r'(?P[A-Za-z0-9][A-Za-z0-9\-]*) ?', each) if m: - feature=m.group("feature").lower() - params=m.string[m.end("feature"):].strip() + feature = m.group("feature").lower() + params = m.string[m.end("feature"):].strip() if feature == "auth": self.esmtp_features[feature] = self.esmtp_features.get(feature, "") \ + " " + params else: - self.esmtp_features[feature]=params - return (code,msg) + self.esmtp_features[feature] = params + return (code, msg) def has_extn(self, opt): """Does the server support a given SMTP service extension?""" @@ -458,23 +466,23 @@ """SMTP 'noop' command -- doesn't do anything :>""" return self.docmd("noop") - def mail(self,sender,options=[]): + def mail(self, sender, options=[]): """SMTP 'mail' command -- begins mail xfer session.""" optionlist = '' if options and self.does_esmtp: optionlist = ' ' + ' '.join(options) - self.putcmd("mail", "FROM:%s%s" % (quoteaddr(sender) ,optionlist)) + self.putcmd("mail", "FROM:%s%s" % (quoteaddr(sender), optionlist)) return self.getreply() - def rcpt(self,recip,options=[]): + def rcpt(self, recip, options=[]): """SMTP 'rcpt' command -- indicates 1 recipient for this mail.""" optionlist = '' if options and self.does_esmtp: optionlist = ' ' + ' '.join(options) - self.putcmd("rcpt","TO:%s%s" % (quoteaddr(recip),optionlist)) + self.putcmd("rcpt", "TO:%s%s" % (quoteaddr(recip), optionlist)) return self.getreply() - def data(self,msg): + def data(self, msg): """SMTP 'DATA' command -- sends message data to server. Automatically quotes lines beginning with a period per rfc821. @@ -485,10 +493,11 @@ '\r\n' characters. If msg is bytes, it is transmitted as is. """ self.putcmd("data") - (code,repl)=self.getreply() - if self.debuglevel >0 : print("data:", (code,repl), file=stderr) + (code, repl) = self.getreply() + if self.debuglevel > 0: + print("data:", (code, repl), file=stderr) if code != 354: - raise SMTPDataError(code,repl) + raise SMTPDataError(code, repl) else: if isinstance(msg, str): msg = _fix_eols(msg).encode('ascii') @@ -497,16 +506,17 @@ q = q + bCRLF q = q + b"." + bCRLF self.send(q) - (code,msg)=self.getreply() - if self.debuglevel >0 : print("data:", (code,msg), file=stderr) - return (code,msg) + (code, msg) = self.getreply() + if self.debuglevel > 0: + print("data:", (code, msg), file=stderr) + return (code, msg) def verify(self, address): """SMTP 'verify' command -- checks for address validity.""" self.putcmd("vrfy", quoteaddr(address)) return self.getreply() # a.k.a. - vrfy=verify + vrfy = verify def expn(self, address): """SMTP 'expn' command -- expands a mailing list.""" @@ -564,7 +574,6 @@ s = "\0%s\0%s" % (user, password) return encode_base64(s.encode('ascii'), eol='') - AUTH_PLAIN = "PLAIN" AUTH_CRAM_MD5 = "CRAM-MD5" AUTH_LOGIN = "LOGIN" @@ -613,7 +622,7 @@ # We could not login sucessfully. Return result of last attempt. raise SMTPAuthenticationError(code, resp) - def starttls(self, keyfile = None, certfile = None): + def starttls(self, keyfile=None, certfile=None): """Puts the connection to the SMTP server into TLS mode. If there has been no previous EHLO or HELO command this session, this @@ -721,22 +730,22 @@ esmtp_opts.append("size=%d" % len(msg)) for option in mail_options: esmtp_opts.append(option) - (code,resp) = self.mail(from_addr, esmtp_opts) + (code, resp) = self.mail(from_addr, esmtp_opts) if code != 250: self.rset() raise SMTPSenderRefused(code, resp, from_addr) - senderrs={} + senderrs = {} if isinstance(to_addrs, str): to_addrs = [to_addrs] for each in to_addrs: - (code,resp)=self.rcpt(each, rcpt_options) + (code, resp) = self.rcpt(each, rcpt_options) if (code != 250) and (code != 251): - senderrs[each]=(code,resp) - if len(senderrs)==len(to_addrs): + senderrs[each] = (code, resp) + if len(senderrs) == len(to_addrs): # the server refused all our recipients self.rset() raise SMTPRecipientsRefused(senderrs) - (code,resp) = self.data(msg) + (code, resp) = self.data(msg) if code != 250: self.rset() raise SMTPDataError(code, resp) @@ -770,7 +779,6 @@ return self.sendmail(from_addr, to_addrs, flatmsg, mail_options, rcpt_options) - def close(self): """Close the connection to the SMTP server.""" if self.file: @@ -780,7 +788,6 @@ self.sock.close() self.sock = None - def quit(self): """Terminate the SMTP session.""" res = self.docmd("quit") @@ -806,7 +813,8 @@ self.default_port = SMTP_SSL_PORT def _get_socket(self, host, port, timeout): - if self.debuglevel > 0: print('connect:', (host, port), file=stderr) + if self.debuglevel > 0: + print('connect:', (host, port), file=stderr) new_socket = socket.create_connection((host, port), timeout) new_socket = ssl.wrap_socket(new_socket, self.keyfile, self.certfile) self.file = SSLFakeFile(new_socket) @@ -834,11 +842,11 @@ ehlo_msg = "lhlo" - def __init__(self, host = '', port = LMTP_PORT, local_hostname = None): + def __init__(self, host='', port=LMTP_PORT, local_hostname=None): """Initialize a new instance.""" SMTP.__init__(self, host, port, local_hostname) - def connect(self, host = 'localhost', port = 0): + def connect(self, host='localhost', port=0): """Connect to the LMTP daemon, on either a Unix or a TCP socket.""" if host[0] != '/': return SMTP.connect(self, host, port) @@ -848,13 +856,15 @@ self.sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) self.sock.connect(host) except socket.error as msg: - if self.debuglevel > 0: print('connect fail:', host, file=stderr) + if self.debuglevel > 0: + print('connect fail:', host, file=stderr) if self.sock: self.sock.close() self.sock = None raise socket.error(msg) (code, msg) = self.getreply() - if self.debuglevel > 0: print('connect:', msg, file=stderr) + if self.debuglevel > 0: + print('connect:', msg, file=stderr) return (code, msg) @@ -868,7 +878,7 @@ return sys.stdin.readline().strip() fromaddr = prompt("From") - toaddrs = prompt("To").split(',') + toaddrs = prompt("To").split(',') print("Enter message, end with ^D:") msg = '' while 1: Modified: python/branches/py3k-cdecimal/Lib/socket.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/socket.py (original) +++ python/branches/py3k-cdecimal/Lib/socket.py Fri Mar 4 18:50:17 2011 @@ -257,6 +257,7 @@ self._mode = mode self._reading = "r" in mode self._writing = "w" in mode + self._timeout_occurred = False def readinto(self, b): """Read up to len(b) bytes into the writable buffer *b* and return @@ -268,9 +269,14 @@ """ self._checkClosed() self._checkReadable() + if self._timeout_occurred: + raise IOError("cannot read from timed out object") while True: try: return self._sock.recv_into(b) + except timeout: + self._timeout_occurred = True + raise except error as e: n = e.args[0] if n == EINTR: Modified: python/branches/py3k-cdecimal/Lib/sqlite3/test/types.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/sqlite3/test/types.py (original) +++ python/branches/py3k-cdecimal/Lib/sqlite3/test/types.py Fri Mar 4 18:50:17 2011 @@ -85,7 +85,7 @@ if isinstance(_val, bytes): # sqlite3 always calls __init__ with a bytes created from a # UTF-8 string when __conform__ was used to store the object. - _val = _val.decode('utf8') + _val = _val.decode('utf-8') self.val = _val def __cmp__(self, other): Modified: python/branches/py3k-cdecimal/Lib/sre_parse.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/sre_parse.py (original) +++ python/branches/py3k-cdecimal/Lib/sre_parse.py Fri Mar 4 18:50:17 2011 @@ -791,7 +791,7 @@ else: # The tokenizer implicitly decodes bytes objects as latin-1, we must # therefore re-encode the final representation. - encode = lambda x: x.encode('latin1') + encode = lambda x: x.encode('latin-1') for c, s in p: if c is MARK: groupsappend((i, s)) Modified: python/branches/py3k-cdecimal/Lib/ssl.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/ssl.py (original) +++ python/branches/py3k-cdecimal/Lib/ssl.py Fri Mar 4 18:50:17 2011 @@ -237,6 +237,7 @@ self._closed = False self._sslobj = None + self._connected = connected if connected: # create the SSL object try: @@ -430,23 +431,36 @@ finally: self.settimeout(timeout) - def connect(self, addr): - """Connects to remote ADDR, and then wraps the connection in - an SSL channel.""" + def _real_connect(self, addr, return_errno): if self.server_side: raise ValueError("can't connect in server-side mode") # Here we assume that the socket is client-side, and not # connected at the time of the call. We connect it, then wrap it. - if self._sslobj: + if self._connected: raise ValueError("attempt to connect already-connected SSLSocket!") - socket.connect(self, addr) self._sslobj = self.context._wrap_socket(self, False, self.server_hostname) try: + socket.connect(self, addr) if self.do_handshake_on_connect: self.do_handshake() - except: - self._sslobj = None - raise + except socket_error as e: + if return_errno: + return e.errno + else: + self._sslobj = None + raise e + self._connected = True + return 0 + + def connect(self, addr): + """Connects to remote ADDR, and then wraps the connection in + an SSL channel.""" + self._real_connect(addr, False) + + def connect_ex(self, addr): + """Connects to remote ADDR, and then wraps the connection in + an SSL channel.""" + return self._real_connect(addr, True) def accept(self): """Accepts a new connection from a remote client, and returns Modified: python/branches/py3k-cdecimal/Lib/string.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/string.py (original) +++ python/branches/py3k-cdecimal/Lib/string.py Fri Mar 4 18:50:17 2011 @@ -46,23 +46,7 @@ #################################################################### import re as _re - -class _multimap: - """Helper class for combining multiple mappings. - - Used by .{safe_,}substitute() to combine the mapping and keyword - arguments. - """ - def __init__(self, primary, secondary): - self._primary = primary - self._secondary = secondary - - def __getitem__(self, key): - try: - return self._primary[key] - except KeyError: - return self._secondary[key] - +from collections import ChainMap class _TemplateMetaclass(type): pattern = r""" @@ -116,7 +100,7 @@ if not args: mapping = kws elif kws: - mapping = _multimap(kws, args[0]) + mapping = ChainMap(kws, args[0]) else: mapping = args[0] # Helper function for .sub() @@ -142,7 +126,7 @@ if not args: mapping = kws elif kws: - mapping = _multimap(kws, args[0]) + mapping = ChainMap(kws, args[0]) else: mapping = args[0] # Helper function for .sub() Modified: python/branches/py3k-cdecimal/Lib/struct.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/struct.py (original) +++ python/branches/py3k-cdecimal/Lib/struct.py Fri Mar 4 18:50:17 2011 @@ -1,6 +1,6 @@ __all__ = [ # Functions - 'calcsize', 'pack', 'unpack', 'unpack', 'unpack_from', + 'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from', # Classes 'Struct', Modified: python/branches/py3k-cdecimal/Lib/subprocess.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/subprocess.py (original) +++ python/branches/py3k-cdecimal/Lib/subprocess.py Fri Mar 4 18:50:17 2011 @@ -1125,7 +1125,7 @@ restore_signals, start_new_session): """Execute program (POSIX version)""" - if isinstance(args, str): + if isinstance(args, (str, bytes)): args = [args] else: args = list(args) Modified: python/branches/py3k-cdecimal/Lib/tarfile.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/tarfile.py (original) +++ python/branches/py3k-cdecimal/Lib/tarfile.py Fri Mar 4 18:50:17 2011 @@ -760,9 +760,8 @@ self.map_index = 0 length = min(size, stop - self.position) if data: - self.fileobj.seek(offset) - block = self.fileobj.read(stop - start) - buf += block[self.position - start:self.position + length] + self.fileobj.seek(offset + (self.position - start)) + buf += self.fileobj.read(length) else: buf += NUL * length size -= length @@ -1085,7 +1084,7 @@ def create_pax_global_header(cls, pax_headers): """Return the object as a pax global header block sequence. """ - return cls._create_pax_generic_header(pax_headers, XGLTYPE, "utf8") + return cls._create_pax_generic_header(pax_headers, XGLTYPE, "utf-8") def _posix_split_name(self, name): """Split a name longer than 100 chars into a prefix @@ -1168,7 +1167,7 @@ binary = False for keyword, value in pax_headers.items(): try: - value.encode("utf8", "strict") + value.encode("utf-8", "strict") except UnicodeEncodeError: binary = True break @@ -1179,13 +1178,13 @@ records += b"21 hdrcharset=BINARY\n" for keyword, value in pax_headers.items(): - keyword = keyword.encode("utf8") + keyword = keyword.encode("utf-8") if binary: # Try to restore the original byte representation of `value'. # Needless to say, that the encoding must match the string. value = value.encode(encoding, "surrogateescape") else: - value = value.encode("utf8") + value = value.encode("utf-8") l = len(keyword) + len(value) + 3 # ' ' + '=' + '\n' n = p = 0 @@ -1394,7 +1393,7 @@ # the translation to UTF-8 fails. match = re.search(br"\d+ hdrcharset=([^\n]+)\n", buf) if match is not None: - pax_headers["hdrcharset"] = match.group(1).decode("utf8") + pax_headers["hdrcharset"] = match.group(1).decode("utf-8") # For the time being, we don't care about anything other than "BINARY". # The only other value that is currently allowed by the standard is @@ -1403,7 +1402,7 @@ if hdrcharset == "BINARY": encoding = tarfile.encoding else: - encoding = "utf8" + encoding = "utf-8" # Parse pax header information. A record looks like that: # "%d %s=%s\n" % (length, keyword, value). length is the size @@ -1420,20 +1419,20 @@ length = int(length) value = buf[match.end(2) + 1:match.start(1) + length - 1] - # Normally, we could just use "utf8" as the encoding and "strict" + # Normally, we could just use "utf-8" as the encoding and "strict" # as the error handler, but we better not take the risk. For # example, GNU tar <= 1.23 is known to store filenames it cannot # translate to UTF-8 as raw strings (unfortunately without a # hdrcharset=BINARY header). # We first try the strict standard encoding, and if that fails we # fall back on the user's encoding and error handler. - keyword = self._decode_pax_field(keyword, "utf8", "utf8", + keyword = self._decode_pax_field(keyword, "utf-8", "utf-8", tarfile.errors) if keyword in PAX_NAME_FIELDS: value = self._decode_pax_field(value, encoding, tarfile.encoding, tarfile.errors) else: - value = self._decode_pax_field(value, "utf8", "utf8", + value = self._decode_pax_field(value, "utf-8", "utf-8", tarfile.errors) pax_headers[keyword] = value @@ -2025,7 +2024,7 @@ print("link to", tarinfo.linkname, end=' ') print() - def add(self, name, arcname=None, recursive=True, exclude=None, filter=None): + def add(self, name, arcname=None, recursive=True, exclude=None, *, filter=None): """Add the file `name' to the archive. `name' may be any type of file (directory, fifo, symbolic link, etc.). If given, `arcname' specifies an alternative name for the file in the archive. @@ -2082,7 +2081,7 @@ if recursive: for f in os.listdir(name): self.add(os.path.join(name, f), os.path.join(arcname, f), - recursive, exclude, filter) + recursive, exclude, filter=filter) else: self.addfile(tarinfo) Modified: python/branches/py3k-cdecimal/Lib/test/crashers/compiler_recursion.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/crashers/compiler_recursion.py (original) +++ python/branches/py3k-cdecimal/Lib/test/crashers/compiler_recursion.py Fri Mar 4 18:50:17 2011 @@ -1,5 +1,13 @@ """ -The compiler (>= 2.5) recurses happily. +The compiler (>= 2.5) recurses happily until it blows the stack. + +Recorded on the tracker as http://bugs.python.org/issue11383 """ -compile('()'*9**5, '?', 'exec') +# The variant below blows up in compiler_call, but there are assorted +# other variations that blow up in other functions +# e.g. '1*'*10**5+'1' will die in compiler_visit_expr + +# The exact limit to destroy the stack will vary by platform +# but 100k should do the trick most places +compile('()'*10**5, '?', 'exec') Modified: python/branches/py3k-cdecimal/Lib/test/list_tests.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/list_tests.py (original) +++ python/branches/py3k-cdecimal/Lib/test/list_tests.py Fri Mar 4 18:50:17 2011 @@ -425,6 +425,47 @@ self.assertRaises(TypeError, u.reverse, 42) + def test_clear(self): + u = self.type2test([2, 3, 4]) + u.clear() + self.assertEqual(u, []) + + u = self.type2test([]) + u.clear() + self.assertEqual(u, []) + + u = self.type2test([]) + u.append(1) + u.clear() + u.append(2) + self.assertEqual(u, [2]) + + self.assertRaises(TypeError, u.clear, None) + + def test_copy(self): + u = self.type2test([1, 2, 3]) + v = u.copy() + self.assertEqual(v, [1, 2, 3]) + + u = self.type2test([]) + v = u.copy() + self.assertEqual(v, []) + + # test that it's indeed a copy and not a reference + u = self.type2test(['a', 'b']) + v = u.copy() + v.append('i') + self.assertEqual(u, ['a', 'b']) + self.assertEqual(v, u + ['i']) + + # test that it's a shallow, not a deep copy + u = self.type2test([1, 2, [3, 4], 5]) + v = u.copy() + self.assertEqual(u, v) + self.assertIs(v[3], u[3]) + + self.assertRaises(TypeError, u.copy, None) + def test_sort(self): u = self.type2test([1, 0]) u.sort() Modified: python/branches/py3k-cdecimal/Lib/test/pickletester.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/pickletester.py (original) +++ python/branches/py3k-cdecimal/Lib/test/pickletester.py Fri Mar 4 18:50:17 2011 @@ -5,7 +5,7 @@ import copyreg from http.cookies import SimpleCookie -from test.support import TestFailed, TESTFN, run_with_locale +from test.support import TestFailed, TESTFN, run_with_locale, no_tracing from pickle import bytes_types @@ -1002,6 +1002,7 @@ y = self.loads(s) self.assertEqual(y._reduce_called, 1) + @no_tracing def test_bad_getattr(self): x = BadGetattr() for proto in 0, 1: @@ -1093,6 +1094,10 @@ self.assertEqual(len(loaded), len(data)) self.assertEqual(loaded, data) + def test_empty_bytestring(self): + # issue 11286 + empty = self.loads(b'\x80\x03U\x00q\x00.', encoding='koi8-r') + self.assertEqual(empty, '') # Test classes for reduce_ex Modified: python/branches/py3k-cdecimal/Lib/test/regrtest.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/regrtest.py (original) +++ python/branches/py3k-cdecimal/Lib/test/regrtest.py Fri Mar 4 18:50:17 2011 @@ -827,7 +827,7 @@ resources = ('sys.argv', 'cwd', 'sys.stdin', 'sys.stdout', 'sys.stderr', 'os.environ', 'sys.path', 'sys.path_hooks', '__import__', 'warnings.filters', 'asyncore.socket_map', - 'logging._handlers', 'logging._handlerList') + 'logging._handlers', 'logging._handlerList', 'sys.gettrace') def get_sys_argv(self): return id(sys.argv), sys.argv, sys.argv[:] @@ -874,6 +874,11 @@ sys.path_hooks = saved_hooks[1] sys.path_hooks[:] = saved_hooks[2] + def get_sys_gettrace(self): + return sys.gettrace() + def restore_sys_gettrace(self, trace_fxn): + sys.settrace(trace_fxn) + def get___import__(self): return builtins.__import__ def restore___import__(self, import_): @@ -1051,7 +1056,8 @@ False if the test didn't leak references; True if we detected refleaks. """ # This code is hackish and inelegant, but it seems to do the job. - import copyreg, _abcoll + import copyreg + import collections.abc if not hasattr(sys, 'gettotalrefcount'): raise Exception("Tracking reference leaks requires a debug build " @@ -1068,7 +1074,7 @@ else: zdc = zipimport._zip_directory_cache.copy() abcs = {} - for abc in [getattr(_abcoll, a) for a in _abcoll.__all__]: + for abc in [getattr(collections.abc, a) for a in collections.abc.__all__]: if not isabstract(abc): continue for obj in abc.__subclasses__() + [abc]: @@ -1114,7 +1120,7 @@ import gc, copyreg import _strptime, linecache import urllib.parse, urllib.request, mimetypes, doctest - import struct, filecmp, _abcoll + import struct, filecmp, collections.abc from distutils.dir_util import _path_created from weakref import WeakSet @@ -1141,7 +1147,7 @@ sys._clear_type_cache() # Clear ABC registries, restoring previously saved ABC registries. - for abc in [getattr(_abcoll, a) for a in _abcoll.__all__]: + for abc in [getattr(collections.abc, a) for a in collections.abc.__all__]: if not isabstract(abc): continue for obj in abc.__subclasses__() + [abc]: Modified: python/branches/py3k-cdecimal/Lib/test/subprocessdata/fd_status.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/subprocessdata/fd_status.py (original) +++ python/branches/py3k-cdecimal/Lib/test/subprocessdata/fd_status.py Fri Mar 4 18:50:17 2011 @@ -3,22 +3,22 @@ import errno import os -import fcntl try: _MAXFD = os.sysconf("SC_OPEN_MAX") except: _MAXFD = 256 -def isopen(fd): - """Return True if the fd is open, and False otherwise""" - try: - fcntl.fcntl(fd, fcntl.F_GETFD, 0) - except IOError as e: - if e.errno == errno.EBADF: - return False - raise - return True - if __name__ == "__main__": - print(','.join(str(fd) for fd in range(0, _MAXFD) if isopen(fd))) + fds = [] + for fd in range(0, _MAXFD): + try: + st = os.fstat(fd) + except OSError as e: + if e.errno == errno.EBADF: + continue + raise + # Ignore Solaris door files + if st.st_mode & 0xF000 != 0xd000: + fds.append(fd) + print(','.join(map(str, fds))) Modified: python/branches/py3k-cdecimal/Lib/test/support.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/support.py (original) +++ python/branches/py3k-cdecimal/Lib/test/support.py Fri Mar 4 18:50:17 2011 @@ -15,7 +15,7 @@ import warnings import unittest import importlib -import collections +import collections.abc import re import subprocess import imp @@ -33,7 +33,7 @@ "verbose", "use_resources", "max_memuse", "record_original_stdout", "get_original_stdout", "unload", "unlink", "rmtree", "forget", "is_resource_enabled", "requires", "find_unused_port", "bind_port", - "fcmp", "is_jython", "TESTFN", "HOST", "FUZZ", "SAVEDCWD", "temp_cwd", + "is_jython", "TESTFN", "HOST", "SAVEDCWD", "temp_cwd", "findfile", "sortdict", "check_syntax_error", "open_urlresource", "check_warnings", "CleanImport", "EnvironmentVarGuard", "TransientResource", "captured_output", "captured_stdout", @@ -233,6 +233,36 @@ unlink(imp.cache_from_source(source, debug_override=True)) unlink(imp.cache_from_source(source, debug_override=False)) +# On some platforms, should not run gui test even if it is allowed +# in `use_resources'. +if sys.platform.startswith('win'): + import ctypes + import ctypes.wintypes + def _is_gui_available(): + UOI_FLAGS = 1 + WSF_VISIBLE = 0x0001 + class USEROBJECTFLAGS(ctypes.Structure): + _fields_ = [("fInherit", ctypes.wintypes.BOOL), + ("fReserved", ctypes.wintypes.BOOL), + ("dwFlags", ctypes.wintypes.DWORD)] + dll = ctypes.windll.user32 + h = dll.GetProcessWindowStation() + if not h: + raise ctypes.WinError() + uof = USEROBJECTFLAGS() + needed = ctypes.wintypes.DWORD() + res = dll.GetUserObjectInformationW(h, + UOI_FLAGS, + ctypes.byref(uof), + ctypes.sizeof(uof), + ctypes.byref(needed)) + if not res: + raise ctypes.WinError() + return bool(uof.dwFlags & WSF_VISIBLE) +else: + def _is_gui_available(): + return True + def is_resource_enabled(resource): """Test whether a resource is enabled. Known resources are set by regrtest.py.""" @@ -245,6 +275,8 @@ possibility of False being returned occurs when regrtest.py is executing. """ + if resource == 'gui' and not _is_gui_available(): + raise unittest.SkipTest("Cannot use the 'gui' resource") # see if the caller's module is __main__ - if so, treat as if # the resource was set if sys._getframe(1).f_globals.get("__name__") == "__main__": @@ -349,24 +381,6 @@ port = sock.getsockname()[1] return port -FUZZ = 1e-6 - -def fcmp(x, y): # fuzzy comparison function - if isinstance(x, float) or isinstance(y, float): - try: - fuzz = (abs(x) + abs(y)) * FUZZ - if abs(x-y) <= fuzz: - return 0 - except: - pass - elif type(x) == type(y) and isinstance(x, (tuple, list)): - for i in range(min(len(x), len(y))): - outcome = fcmp(x[i], y[i]) - if outcome != 0: - return outcome - return (len(x) > len(y)) - (len(x) < len(y)) - return (x > y) - (x < y) - # decorator for skipping tests on non-IEEE 754 platforms requires_IEEE_754 = unittest.skipUnless( float.__getformat__("double").startswith("IEEE"), @@ -682,7 +696,7 @@ sys.modules.update(self.original_modules) -class EnvironmentVarGuard(collections.MutableMapping): +class EnvironmentVarGuard(collections.abc.MutableMapping): """Class to help protect the environment variable properly. Can be used as a context manager.""" @@ -978,13 +992,12 @@ raise ValueError('Memory limit %r too low to be useful' % (limit,)) max_memuse = memlimit -def bigmemtest(minsize, memuse, overhead=5*_1M): +def bigmemtest(minsize, memuse): """Decorator for bigmem tests. 'minsize' is the minimum useful size for the test (in arbitrary, test-interpreted units.) 'memuse' is the number of 'bytes per size' for - the test, or a good estimate of it. 'overhead' specifies fixed overhead, - independent of the testsize, and defaults to 5Mb. + the test, or a good estimate of it. The decorator tries to guess a good value for 'size' and passes it to the decorated test function. If minsize * memuse is more than the @@ -996,52 +1009,43 @@ # Retrieve values in case someone decided to adjust them minsize = wrapper.minsize memuse = wrapper.memuse - overhead = wrapper.overhead if not max_memuse: # If max_memuse is 0 (the default), # we still want to run the tests with size set to a few kb, # to make sure they work. We still want to avoid using # too much memory, though, but we do that noisily. maxsize = 5147 - self.assertFalse(maxsize * memuse + overhead > 20 * _1M) + self.assertFalse(maxsize * memuse > 20 * _1M) else: - maxsize = int((max_memuse - overhead) / memuse) + maxsize = int(max_memuse / memuse) if maxsize < minsize: - # Really ought to print 'test skipped' or something - if verbose: - sys.stderr.write("Skipping %s because of memory " - "constraint\n" % (f.__name__,)) - return - # Try to keep some breathing room in memory use - maxsize = max(maxsize - 50 * _1M, minsize) + raise unittest.SkipTest( + "not enough memory: %.1fG minimum needed" + % (minsize * memuse / (1024 ** 3))) return f(self, maxsize) wrapper.minsize = minsize wrapper.memuse = memuse - wrapper.overhead = overhead return wrapper return decorator -def precisionbigmemtest(size, memuse, overhead=5*_1M): +def precisionbigmemtest(size, memuse): def decorator(f): def wrapper(self): size = wrapper.size memuse = wrapper.memuse - overhead = wrapper.overhead if not real_max_memuse: maxsize = 5147 else: maxsize = size if real_max_memuse and real_max_memuse < maxsize * memuse: - if verbose: - sys.stderr.write("Skipping %s because of memory " - "constraint\n" % (f.__name__,)) - return + raise unittest.SkipTest( + "not enough memory: %.1fG minimum needed" + % (size * memuse / (1024 ** 3))) return f(self, maxsize) wrapper.size = size wrapper.memuse = memuse - wrapper.overhead = overhead return wrapper return decorator @@ -1049,9 +1053,13 @@ """Decorator for tests that fill the address space.""" def wrapper(self): if max_memuse < MAX_Py_ssize_t: - if verbose: - sys.stderr.write("Skipping %s because of memory " - "constraint\n" % (f.__name__,)) + if MAX_Py_ssize_t >= 2**63 - 1 and max_memuse >= 2**31: + raise unittest.SkipTest( + "not enough memory: try a 32-bit build instead") + else: + raise unittest.SkipTest( + "not enough memory: %.1fG minimum needed" + % (MAX_Py_ssize_t / (1024 ** 3))) else: return f(self) return wrapper @@ -1069,6 +1077,8 @@ return obj def requires_resource(resource): + if resource == 'gui' and not _is_gui_available(): + return unittest.skip("resource 'gui' is not available") if is_resource_enabled(resource): return _id else: @@ -1114,6 +1124,32 @@ return guards.get(platform.python_implementation().lower(), default) +def no_tracing(func): + """Decorator to temporarily turn off tracing for the duration of a test.""" + if not hasattr(sys, 'gettrace'): + return func + else: + @functools.wraps(func) + def wrapper(*args, **kwargs): + original_trace = sys.gettrace() + try: + sys.settrace(None) + return func(*args, **kwargs) + finally: + sys.settrace(original_trace) + return wrapper + + +def refcount_test(test): + """Decorator for tests which involve reference counting. + + To start, the decorator does not run the test if is not run by CPython. + After that, any trace function is unset during the test to prevent + unexpected refcounts caused by the trace function. + + """ + return no_tracing(cpython_only(test)) + def _run_suite(suite): """Run tests from a unittest.TestSuite-derived class.""" Modified: python/branches/py3k-cdecimal/Lib/test/test_abc.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_abc.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_abc.py Fri Mar 4 18:50:17 2011 @@ -98,13 +98,6 @@ self.assertRaises(TypeError, F) # because bar is abstract now self.assertTrue(isabstract(F)) - def test_type_has_no_abstractmethods(self): - # type pretends not to have __abstractmethods__. - self.assertRaises(AttributeError, getattr, type, "__abstractmethods__") - class meta(type): - pass - self.assertRaises(AttributeError, getattr, meta, "__abstractmethods__") - def test_metaclass_abc(self): # Metaclasses can be ABCs, too. class A(metaclass=abc.ABCMeta): @@ -128,11 +121,32 @@ self.assertFalse(issubclass(B, (A,))) self.assertNotIsInstance(b, A) self.assertNotIsInstance(b, (A,)) - A.register(B) + B1 = A.register(B) + self.assertTrue(issubclass(B, A)) + self.assertTrue(issubclass(B, (A,))) + self.assertIsInstance(b, A) + self.assertIsInstance(b, (A,)) + self.assertIs(B1, B) + class C(B): + pass + c = C() + self.assertTrue(issubclass(C, A)) + self.assertTrue(issubclass(C, (A,))) + self.assertIsInstance(c, A) + self.assertIsInstance(c, (A,)) + + def test_register_as_class_deco(self): + class A(metaclass=abc.ABCMeta): + pass + @A.register + class B(object): + pass + b = B() self.assertTrue(issubclass(B, A)) self.assertTrue(issubclass(B, (A,))) self.assertIsInstance(b, A) self.assertIsInstance(b, (A,)) + @A.register class C(B): pass c = C() @@ -140,6 +154,7 @@ self.assertTrue(issubclass(C, (A,))) self.assertIsInstance(c, A) self.assertIsInstance(c, (A,)) + self.assertIs(C, A.register(C)) def test_isinstance_invalidation(self): class A(metaclass=abc.ABCMeta): Modified: python/branches/py3k-cdecimal/Lib/test/test_argparse.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_argparse.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_argparse.py Fri Mar 4 18:50:17 2011 @@ -4,6 +4,7 @@ import inspect import os import shutil +import stat import sys import textwrap import tempfile @@ -45,14 +46,13 @@ def tearDown(self): os.chdir(self.old_dir) - while True: - try: - shutil.rmtree(self.temp_dir) - except WindowsError: - continue - else: - break + shutil.rmtree(self.temp_dir, True) + def create_readonly_file(self, filename): + file_path = os.path.join(self.temp_dir, filename) + with open(file_path, 'w') as file: + file.write(filename) + os.chmod(file_path, stat.S_IREAD) class Sig(object): @@ -1446,17 +1446,19 @@ file = open(os.path.join(self.temp_dir, file_name), 'w') file.write(file_name) file.close() + self.create_readonly_file('readonly') argument_signatures = [ Sig('-x', type=argparse.FileType()), Sig('spam', type=argparse.FileType('r')), ] - failures = ['-x', ''] + failures = ['-x', '', 'non-existent-file.txt'] successes = [ ('foo', NS(x=None, spam=RFile('foo'))), ('-x foo bar', NS(x=RFile('foo'), spam=RFile('bar'))), ('bar -x foo', NS(x=RFile('foo'), spam=RFile('bar'))), ('-x - -', NS(x=sys.stdin, spam=sys.stdin)), + ('readonly', NS(x=None, spam=RFile('readonly'))), ] @@ -1503,11 +1505,15 @@ class TestFileTypeW(TempDirMixin, ParserTestCase): """Test the FileType option/argument type for writing files""" + def setUp(self): + super(TestFileTypeW, self).setUp() + self.create_readonly_file('readonly') + argument_signatures = [ Sig('-x', type=argparse.FileType('w')), Sig('spam', type=argparse.FileType('w')), ] - failures = ['-x', ''] + failures = ['-x', '', 'readonly'] successes = [ ('foo', NS(x=None, spam=WFile('foo'))), ('-x foo bar', NS(x=WFile('foo'), spam=WFile('bar'))), @@ -2534,6 +2540,46 @@ ''' +class TestMutuallyExclusiveInGroup(MEMixin, TestCase): + + def get_parser(self, required=None): + parser = ErrorRaisingArgumentParser(prog='PROG') + titled_group = parser.add_argument_group( + title='Titled group', description='Group description') + mutex_group = \ + titled_group.add_mutually_exclusive_group(required=required) + mutex_group.add_argument('--bar', help='bar help') + mutex_group.add_argument('--baz', help='baz help') + return parser + + failures = ['--bar X --baz Y', '--baz X --bar Y'] + successes = [ + ('--bar X', NS(bar='X', baz=None)), + ('--baz Y', NS(bar=None, baz='Y')), + ] + successes_when_not_required = [ + ('', NS(bar=None, baz=None)), + ] + + usage_when_not_required = '''\ + usage: PROG [-h] [--bar BAR | --baz BAZ] + ''' + usage_when_required = '''\ + usage: PROG [-h] (--bar BAR | --baz BAZ) + ''' + help = '''\ + + optional arguments: + -h, --help show this help message and exit + + Titled group: + Group description + + --bar BAR bar help + --baz BAZ baz help + ''' + + class TestMutuallyExclusiveOptionalsAndPositionalsMixed(MEMixin, TestCase): def get_parser(self, required): @@ -4282,7 +4328,7 @@ def _test_module_encoding(self, path): path, _ = os.path.splitext(path) path += ".py" - with codecs.open(path, 'r', 'utf8') as f: + with codecs.open(path, 'r', 'utf-8') as f: f.read() def test_argparse_module_encoding(self): Modified: python/branches/py3k-cdecimal/Lib/test/test_array.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_array.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_array.py Fri Mar 4 18:50:17 2011 @@ -398,6 +398,11 @@ if a.itemsize>1: self.assertRaises(ValueError, b.frombytes, b"x") + def test_fromarray(self): + a = array.array(self.typecode, self.example) + b = array.array(self.typecode, a) + self.assertEqual(a, b) + def test_repr(self): a = array.array(self.typecode, 2*self.example) self.assertEqual(a, eval(repr(a), {"array": array.array})) @@ -1113,6 +1118,11 @@ self.assertRaises(AttributeError, setattr, a, "color", "blue") + def test_frombytearray(self): + a = array.array('b', range(10)) + b = array.array(self.typecode, a) + self.assertEqual(a, b) + class SignedNumberTest(NumberTest): example = [-1, 0, 1, 42, 0x7f] smallerexample = [-1, 0, 1, 42, 0x7e] Modified: python/branches/py3k-cdecimal/Lib/test/test_asyncore.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_asyncore.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_asyncore.py Fri Mar 4 18:50:17 2011 @@ -329,7 +329,7 @@ if hasattr(os, 'strerror'): self.assertEqual(err, os.strerror(errno.EPERM)) err = asyncore._strerror(-1) - self.assertIn("unknown error", err.lower()) + self.assertTrue(err != "") class dispatcherwithsend_noread(asyncore.dispatcher_with_send): @@ -352,7 +352,7 @@ @support.reap_threads def test_send(self): evt = threading.Event() - sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock = socket.socket() sock.settimeout(3) port = support.bind_port(sock) @@ -367,7 +367,7 @@ data = b"Suppose there isn't a 16-ton weight?" d = dispatcherwithsend_noread() - d.create_socket(socket.AF_INET, socket.SOCK_STREAM) + d.create_socket() d.connect((HOST, port)) # give time for socket to connect @@ -474,7 +474,7 @@ def __init__(self, handler=BaseTestHandler, host=HOST, port=0): asyncore.dispatcher.__init__(self) - self.create_socket(socket.AF_INET, socket.SOCK_STREAM) + self.create_socket() self.set_reuse_addr() self.bind((host, port)) self.listen(5) @@ -495,7 +495,7 @@ def __init__(self, address): BaseTestHandler.__init__(self) - self.create_socket(socket.AF_INET, socket.SOCK_STREAM) + self.create_socket() self.connect(address) def handle_connect(self): @@ -536,7 +536,7 @@ def __init__(self): BaseTestHandler.__init__(self) - self.create_socket(socket.AF_INET, socket.SOCK_STREAM) + self.create_socket() self.bind((HOST, 0)) self.listen(5) self.address = self.socket.getsockname()[:2] @@ -555,7 +555,7 @@ def __init__(self): BaseTestHandler.__init__(self) - self.create_socket(socket.AF_INET, socket.SOCK_STREAM) + self.create_socket() self.bind((HOST, 0)) self.listen(5) self.address = self.socket.getsockname()[:2] @@ -693,20 +693,20 @@ def test_create_socket(self): s = asyncore.dispatcher() - s.create_socket(socket.AF_INET, socket.SOCK_STREAM) + s.create_socket() self.assertEqual(s.socket.family, socket.AF_INET) SOCK_NONBLOCK = getattr(socket, 'SOCK_NONBLOCK', 0) self.assertEqual(s.socket.type, socket.SOCK_STREAM | SOCK_NONBLOCK) def test_bind(self): s1 = asyncore.dispatcher() - s1.create_socket(socket.AF_INET, socket.SOCK_STREAM) + s1.create_socket() s1.bind((HOST, 0)) s1.listen(5) port = s1.socket.getsockname()[1] s2 = asyncore.dispatcher() - s2.create_socket(socket.AF_INET, socket.SOCK_STREAM) + s2.create_socket() # EADDRINUSE indicates the socket was correctly bound self.assertRaises(socket.error, s2.bind, (HOST, port)) @@ -723,7 +723,7 @@ self.assertFalse(s.socket.getsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR)) s.socket.close() - s.create_socket(socket.AF_INET, socket.SOCK_STREAM) + s.create_socket() s.set_reuse_addr() self.assertTrue(s.socket.getsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR)) Modified: python/branches/py3k-cdecimal/Lib/test/test_bigaddrspace.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_bigaddrspace.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_bigaddrspace.py Fri Mar 4 18:50:17 2011 @@ -23,25 +23,34 @@ # Allocate a bytestring that's near the maximum size allowed by # the address space, and then try to build a new, larger one through # concatenation. - x = b"x" * (MAX_Py_ssize_t - 128) - self.assertRaises(OverflowError, operator.add, x, b"x" * 128) + try: + x = b"x" * (MAX_Py_ssize_t - 128) + self.assertRaises(OverflowError, operator.add, x, b"x" * 128) + finally: + x = None @bigaddrspacetest def test_optimized_concat(self): - x = b"x" * (MAX_Py_ssize_t - 128) + try: + x = b"x" * (MAX_Py_ssize_t - 128) - with self.assertRaises(OverflowError) as cm: - # this statement uses a fast path in ceval.c - x = x + b"x" * 128 - - with self.assertRaises(OverflowError) as cm: - # this statement uses a fast path in ceval.c - x += b"x" * 128 + with self.assertRaises(OverflowError) as cm: + # this statement used a fast path in ceval.c + x = x + b"x" * 128 + + with self.assertRaises(OverflowError) as cm: + # this statement used a fast path in ceval.c + x += b"x" * 128 + finally: + x = None @bigaddrspacetest def test_repeat(self): - x = b"x" * (MAX_Py_ssize_t - 128) - self.assertRaises(OverflowError, operator.mul, x, 128) + try: + x = b"x" * (MAX_Py_ssize_t - 128) + self.assertRaises(OverflowError, operator.mul, x, 128) + finally: + x = None class StrTest(unittest.TestCase): @@ -50,28 +59,37 @@ @bigaddrspacetest def test_concat(self): - # Create a string half the size that would fill the address space - x = "x" * (MAX_Py_ssize_t // (2 * self.unicodesize)) - # Unicode objects trigger MemoryError in case an operation that's - # going to cause a size overflow is executed - self.assertRaises(MemoryError, operator.add, x, x) + try: + # Create a string that would fill almost the address space + x = "x" * int(MAX_Py_ssize_t // (1.1 * self.unicodesize)) + # Unicode objects trigger MemoryError in case an operation that's + # going to cause a size overflow is executed + self.assertRaises(MemoryError, operator.add, x, x) + finally: + x = None @bigaddrspacetest def test_optimized_concat(self): - x = "x" * (MAX_Py_ssize_t // (2 * self.unicodesize)) + try: + x = "x" * int(MAX_Py_ssize_t // (1.1 * self.unicodesize)) - with self.assertRaises(MemoryError) as cm: - # this statement uses a fast path in ceval.c - x = x + x - - with self.assertRaises(MemoryError) as cm: - # this statement uses a fast path in ceval.c - x += x + with self.assertRaises(MemoryError) as cm: + # this statement uses a fast path in ceval.c + x = x + x + + with self.assertRaises(MemoryError) as cm: + # this statement uses a fast path in ceval.c + x += x + finally: + x = None @bigaddrspacetest def test_repeat(self): - x = "x" * (MAX_Py_ssize_t // (2 * self.unicodesize)) - self.assertRaises(MemoryError, operator.mul, x, 2) + try: + x = "x" * int(MAX_Py_ssize_t // (1.1 * self.unicodesize)) + self.assertRaises(MemoryError, operator.mul, x, 2) + finally: + x = None def test_main(): Modified: python/branches/py3k-cdecimal/Lib/test/test_bigmem.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_bigmem.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_bigmem.py Fri Mar 4 18:50:17 2011 @@ -564,8 +564,11 @@ if expectedsize is None: expectedsize = size - s = c * size - self.assertEqual(len(s.encode(enc)), expectedsize) + try: + s = c * size + self.assertEqual(len(s.encode(enc)), expectedsize) + finally: + s = None def setUp(self): # HACK: adjust memory use of tests inherited from BaseStrTest @@ -586,7 +589,8 @@ for name, memuse in self._adjusted.items(): getattr(type(self), name).memuse = memuse - @bigmemtest(minsize=_2G + 2, memuse=character_size + 1) + # the utf8 encoder preallocates big time (4x the number of characters) + @bigmemtest(minsize=_2G + 2, memuse=character_size + 4) def test_encode(self, size): return self.basic_encode_test(size, 'utf-8') @@ -703,7 +707,7 @@ class BytesTest(unittest.TestCase, BaseStrTest): def from_latin1(self, s): - return s.encode("latin1") + return s.encode("latin-1") @bigmemtest(minsize=_2G + 2, memuse=1 + character_size) def test_decode(self, size): @@ -714,7 +718,7 @@ class BytearrayTest(unittest.TestCase, BaseStrTest): def from_latin1(self, s): - return bytearray(s.encode("latin1")) + return bytearray(s.encode("latin-1")) @bigmemtest(minsize=_2G + 2, memuse=1 + character_size) def test_decode(self, size): Modified: python/branches/py3k-cdecimal/Lib/test/test_builtin.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_builtin.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_builtin.py Fri Mar 4 18:50:17 2011 @@ -10,7 +10,7 @@ import types import builtins import random -from test.support import fcmp, TESTFN, unlink, run_unittest, check_warnings +from test.support import TESTFN, unlink, run_unittest, check_warnings from operator import neg @@ -394,10 +394,13 @@ self.assertEqual(divmod(-sys.maxsize-1, -1), (sys.maxsize+1, 0)) - self.assertTrue(not fcmp(divmod(3.25, 1.0), (3.0, 0.25))) - self.assertTrue(not fcmp(divmod(-3.25, 1.0), (-4.0, 0.75))) - self.assertTrue(not fcmp(divmod(3.25, -1.0), (-4.0, -0.75))) - self.assertTrue(not fcmp(divmod(-3.25, -1.0), (3.0, -0.25))) + for num, denom, exp_result in [ (3.25, 1.0, (3.0, 0.25)), + (-3.25, 1.0, (-4.0, 0.75)), + (3.25, -1.0, (-4.0, -0.75)), + (-3.25, -1.0, (3.0, -0.25))]: + result = divmod(num, denom) + self.assertAlmostEqual(result[0], exp_result[0]) + self.assertAlmostEqual(result[1], exp_result[1]) self.assertRaises(TypeError, divmod) Modified: python/branches/py3k-cdecimal/Lib/test/test_bytes.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_bytes.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_bytes.py Fri Mar 4 18:50:17 2011 @@ -188,24 +188,26 @@ def test_encoding(self): sample = "Hello world\n\u1234\u5678\u9abc" - for enc in ("utf8", "utf16"): + for enc in ("utf-8", "utf-16"): b = self.type2test(sample, enc) self.assertEqual(b, self.type2test(sample.encode(enc))) - self.assertRaises(UnicodeEncodeError, self.type2test, sample, "latin1") - b = self.type2test(sample, "latin1", "ignore") + self.assertRaises(UnicodeEncodeError, self.type2test, sample, "latin-1") + b = self.type2test(sample, "latin-1", "ignore") self.assertEqual(b, self.type2test(sample[:-3], "utf-8")) def test_decode(self): sample = "Hello world\n\u1234\u5678\u9abc\def0\def0" - for enc in ("utf8", "utf16"): + for enc in ("utf-8", "utf-16"): b = self.type2test(sample, enc) self.assertEqual(b.decode(enc), sample) sample = "Hello world\n\x80\x81\xfe\xff" - b = self.type2test(sample, "latin1") - self.assertRaises(UnicodeDecodeError, b.decode, "utf8") - self.assertEqual(b.decode("utf8", "ignore"), "Hello world\n") - self.assertEqual(b.decode(errors="ignore", encoding="utf8"), + b = self.type2test(sample, "latin-1") + self.assertRaises(UnicodeDecodeError, b.decode, "utf-8") + self.assertEqual(b.decode("utf-8", "ignore"), "Hello world\n") + self.assertEqual(b.decode(errors="ignore", encoding="utf-8"), "Hello world\n") + # Default encoding is utf-8 + self.assertEqual(self.type2test(b'\xe2\x98\x83').decode(), '\u2603') def test_from_int(self): b = self.type2test(0) @@ -562,6 +564,39 @@ b.reverse() self.assertFalse(b) + def test_clear(self): + b = bytearray(b'python') + b.clear() + self.assertEqual(b, b'') + + b = bytearray(b'') + b.clear() + self.assertEqual(b, b'') + + b = bytearray(b'') + b.append(ord('r')) + b.clear() + b.append(ord('p')) + self.assertEqual(b, b'p') + + def test_copy(self): + b = bytearray(b'abc') + bb = b.copy() + self.assertEqual(bb, b'abc') + + b = bytearray(b'') + bb = b.copy() + self.assertEqual(bb, b'') + + # test that it's indeed a copy and not a reference + b = bytearray(b'abc') + bb = b.copy() + self.assertEqual(b, bb) + self.assertIsNot(b, bb) + bb.append(ord('d')) + self.assertEqual(bb, b'abcd') + self.assertEqual(b, b'abc') + def test_regexps(self): def by(s): return bytearray(map(ord, s)) @@ -755,7 +790,7 @@ self.assertEqual(b.pop(0), ord('w')) self.assertEqual(b.pop(-2), ord('r')) self.assertRaises(IndexError, lambda: b.pop(10)) - self.assertRaises(OverflowError, lambda: bytearray().pop()) + self.assertRaises(IndexError, lambda: bytearray().pop()) # test for issue #6846 self.assertEqual(bytearray(b'\xff').pop(), 0xff) Modified: python/branches/py3k-cdecimal/Lib/test/test_bz2.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_bz2.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_bz2.py Fri Mar 4 18:50:17 2011 @@ -86,7 +86,7 @@ if not str: break text += str - self.assertEqual(text, text) + self.assertEqual(text, self.TEXT) def testRead100(self): # "Test BZ2File.read(100)" Modified: python/branches/py3k-cdecimal/Lib/test/test_capi.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_capi.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_capi.py Fri Mar 4 18:50:17 2011 @@ -50,6 +50,8 @@ b'Fatal Python error:' b' PyThreadState_Get: no current thread') + def test_memoryview_from_NULL_pointer(self): + self.assertRaises(ValueError, _testcapi.make_memoryview_from_NULL_pointer) @unittest.skipUnless(threading, 'Threading required for this test.') class TestPendingCalls(unittest.TestCase): Deleted: python/branches/py3k-cdecimal/Lib/test/test_cfgparser.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_cfgparser.py Fri Mar 4 18:50:17 2011 +++ (empty file) @@ -1,1342 +0,0 @@ -import collections -import configparser -import io -import os -import sys -import textwrap -import unittest -import warnings - -from test import support - -class SortedDict(collections.UserDict): - - def items(self): - return sorted(self.data.items()) - - def keys(self): - return sorted(self.data.keys()) - - def values(self): - return [i[1] for i in self.items()] - - def iteritems(self): return iter(self.items()) - def iterkeys(self): return iter(self.keys()) - __iter__ = iterkeys - def itervalues(self): return iter(self.values()) - - -class CfgParserTestCaseClass(unittest.TestCase): - allow_no_value = False - delimiters = ('=', ':') - comment_prefixes = (';', '#') - inline_comment_prefixes = (';', '#') - empty_lines_in_values = True - dict_type = configparser._default_dict - strict = False - default_section = configparser.DEFAULTSECT - interpolation = configparser._UNSET - - def newconfig(self, defaults=None): - arguments = dict( - defaults=defaults, - allow_no_value=self.allow_no_value, - delimiters=self.delimiters, - comment_prefixes=self.comment_prefixes, - inline_comment_prefixes=self.inline_comment_prefixes, - empty_lines_in_values=self.empty_lines_in_values, - dict_type=self.dict_type, - strict=self.strict, - default_section=self.default_section, - interpolation=self.interpolation, - ) - instance = self.config_class(**arguments) - return instance - - def fromstring(self, string, defaults=None): - cf = self.newconfig(defaults) - cf.read_string(string) - return cf - -class BasicTestCase(CfgParserTestCaseClass): - - def basic_test(self, cf): - E = ['Commented Bar', - 'Foo Bar', - 'Internationalized Stuff', - 'Long Line', - 'Section\\with$weird%characters[\t', - 'Spaces', - 'Spacey Bar', - 'Spacey Bar From The Beginning', - 'Types', - ] - - if self.allow_no_value: - E.append('NoValue') - E.sort() - F = [('baz', 'qwe'), ('foo', 'bar3')] - - # API access - L = cf.sections() - L.sort() - eq = self.assertEqual - eq(L, E) - L = cf.items('Spacey Bar From The Beginning') - L.sort() - eq(L, F) - - # mapping access - L = [section for section in cf] - L.sort() - E.append(self.default_section) - E.sort() - eq(L, E) - L = cf['Spacey Bar From The Beginning'].items() - L = sorted(list(L)) - eq(L, F) - L = cf.items() - L = sorted(list(L)) - self.assertEqual(len(L), len(E)) - for name, section in L: - eq(name, section.name) - eq(cf.defaults(), cf[self.default_section]) - - # The use of spaces in the section names serves as a - # regression test for SourceForge bug #583248: - # http://www.python.org/sf/583248 - - # API access - eq(cf.get('Foo Bar', 'foo'), 'bar1') - eq(cf.get('Spacey Bar', 'foo'), 'bar2') - eq(cf.get('Spacey Bar From The Beginning', 'foo'), 'bar3') - eq(cf.get('Spacey Bar From The Beginning', 'baz'), 'qwe') - eq(cf.get('Commented Bar', 'foo'), 'bar4') - eq(cf.get('Commented Bar', 'baz'), 'qwe') - eq(cf.get('Spaces', 'key with spaces'), 'value') - eq(cf.get('Spaces', 'another with spaces'), 'splat!') - eq(cf.getint('Types', 'int'), 42) - eq(cf.get('Types', 'int'), "42") - self.assertAlmostEqual(cf.getfloat('Types', 'float'), 0.44) - eq(cf.get('Types', 'float'), "0.44") - eq(cf.getboolean('Types', 'boolean'), False) - eq(cf.get('Types', '123'), 'strange but acceptable') - if self.allow_no_value: - eq(cf.get('NoValue', 'option-without-value'), None) - - # test vars= and fallback= - eq(cf.get('Foo Bar', 'foo', fallback='baz'), 'bar1') - eq(cf.get('Foo Bar', 'foo', vars={'foo': 'baz'}), 'baz') - with self.assertRaises(configparser.NoSectionError): - cf.get('No Such Foo Bar', 'foo') - with self.assertRaises(configparser.NoOptionError): - cf.get('Foo Bar', 'no-such-foo') - eq(cf.get('No Such Foo Bar', 'foo', fallback='baz'), 'baz') - eq(cf.get('Foo Bar', 'no-such-foo', fallback='baz'), 'baz') - eq(cf.get('Spacey Bar', 'foo', fallback=None), 'bar2') - eq(cf.get('No Such Spacey Bar', 'foo', fallback=None), None) - eq(cf.getint('Types', 'int', fallback=18), 42) - eq(cf.getint('Types', 'no-such-int', fallback=18), 18) - eq(cf.getint('Types', 'no-such-int', fallback="18"), "18") # sic! - with self.assertRaises(configparser.NoOptionError): - cf.getint('Types', 'no-such-int') - self.assertAlmostEqual(cf.getfloat('Types', 'float', - fallback=0.0), 0.44) - self.assertAlmostEqual(cf.getfloat('Types', 'no-such-float', - fallback=0.0), 0.0) - eq(cf.getfloat('Types', 'no-such-float', fallback="0.0"), "0.0") # sic! - with self.assertRaises(configparser.NoOptionError): - cf.getfloat('Types', 'no-such-float') - eq(cf.getboolean('Types', 'boolean', fallback=True), False) - eq(cf.getboolean('Types', 'no-such-boolean', fallback="yes"), - "yes") # sic! - eq(cf.getboolean('Types', 'no-such-boolean', fallback=True), True) - with self.assertRaises(configparser.NoOptionError): - cf.getboolean('Types', 'no-such-boolean') - eq(cf.getboolean('No Such Types', 'boolean', fallback=True), True) - if self.allow_no_value: - eq(cf.get('NoValue', 'option-without-value', fallback=False), None) - eq(cf.get('NoValue', 'no-such-option-without-value', - fallback=False), False) - - # mapping access - eq(cf['Foo Bar']['foo'], 'bar1') - eq(cf['Spacey Bar']['foo'], 'bar2') - section = cf['Spacey Bar From The Beginning'] - eq(section.name, 'Spacey Bar From The Beginning') - self.assertIs(section.parser, cf) - with self.assertRaises(AttributeError): - section.name = 'Name is read-only' - with self.assertRaises(AttributeError): - section.parser = 'Parser is read-only' - eq(section['foo'], 'bar3') - eq(section['baz'], 'qwe') - eq(cf['Commented Bar']['foo'], 'bar4') - eq(cf['Commented Bar']['baz'], 'qwe') - eq(cf['Spaces']['key with spaces'], 'value') - eq(cf['Spaces']['another with spaces'], 'splat!') - eq(cf['Long Line']['foo'], - 'this line is much, much longer than my editor\nlikes it.') - if self.allow_no_value: - eq(cf['NoValue']['option-without-value'], None) - # test vars= and fallback= - eq(cf['Foo Bar'].get('foo', 'baz'), 'bar1') - eq(cf['Foo Bar'].get('foo', fallback='baz'), 'bar1') - eq(cf['Foo Bar'].get('foo', vars={'foo': 'baz'}), 'baz') - with self.assertRaises(KeyError): - cf['No Such Foo Bar']['foo'] - with self.assertRaises(KeyError): - cf['Foo Bar']['no-such-foo'] - with self.assertRaises(KeyError): - cf['No Such Foo Bar'].get('foo', fallback='baz') - eq(cf['Foo Bar'].get('no-such-foo', 'baz'), 'baz') - eq(cf['Foo Bar'].get('no-such-foo', fallback='baz'), 'baz') - eq(cf['Foo Bar'].get('no-such-foo'), None) - eq(cf['Spacey Bar'].get('foo', None), 'bar2') - eq(cf['Spacey Bar'].get('foo', fallback=None), 'bar2') - with self.assertRaises(KeyError): - cf['No Such Spacey Bar'].get('foo', None) - eq(cf['Types'].getint('int', 18), 42) - eq(cf['Types'].getint('int', fallback=18), 42) - eq(cf['Types'].getint('no-such-int', 18), 18) - eq(cf['Types'].getint('no-such-int', fallback=18), 18) - eq(cf['Types'].getint('no-such-int', "18"), "18") # sic! - eq(cf['Types'].getint('no-such-int', fallback="18"), "18") # sic! - eq(cf['Types'].getint('no-such-int'), None) - self.assertAlmostEqual(cf['Types'].getfloat('float', 0.0), 0.44) - self.assertAlmostEqual(cf['Types'].getfloat('float', - fallback=0.0), 0.44) - self.assertAlmostEqual(cf['Types'].getfloat('no-such-float', 0.0), 0.0) - self.assertAlmostEqual(cf['Types'].getfloat('no-such-float', - fallback=0.0), 0.0) - eq(cf['Types'].getfloat('no-such-float', "0.0"), "0.0") # sic! - eq(cf['Types'].getfloat('no-such-float', fallback="0.0"), "0.0") # sic! - eq(cf['Types'].getfloat('no-such-float'), None) - eq(cf['Types'].getboolean('boolean', True), False) - eq(cf['Types'].getboolean('boolean', fallback=True), False) - eq(cf['Types'].getboolean('no-such-boolean', "yes"), "yes") # sic! - eq(cf['Types'].getboolean('no-such-boolean', fallback="yes"), - "yes") # sic! - eq(cf['Types'].getboolean('no-such-boolean', True), True) - eq(cf['Types'].getboolean('no-such-boolean', fallback=True), True) - eq(cf['Types'].getboolean('no-such-boolean'), None) - if self.allow_no_value: - eq(cf['NoValue'].get('option-without-value', False), None) - eq(cf['NoValue'].get('option-without-value', fallback=False), None) - eq(cf['NoValue'].get('no-such-option-without-value', False), False) - eq(cf['NoValue'].get('no-such-option-without-value', - fallback=False), False) - - # Make sure the right things happen for remove_section() and - # remove_option(); added to include check for SourceForge bug #123324. - - cf[self.default_section]['this_value'] = '1' - cf[self.default_section]['that_value'] = '2' - - # API access - self.assertTrue(cf.remove_section('Spaces')) - self.assertFalse(cf.has_option('Spaces', 'key with spaces')) - self.assertFalse(cf.remove_section('Spaces')) - self.assertFalse(cf.remove_section(self.default_section)) - self.assertTrue(cf.remove_option('Foo Bar', 'foo'), - "remove_option() failed to report existence of option") - self.assertFalse(cf.has_option('Foo Bar', 'foo'), - "remove_option() failed to remove option") - self.assertFalse(cf.remove_option('Foo Bar', 'foo'), - "remove_option() failed to report non-existence of option" - " that was removed") - self.assertTrue(cf.has_option('Foo Bar', 'this_value')) - self.assertFalse(cf.remove_option('Foo Bar', 'this_value')) - self.assertTrue(cf.remove_option(self.default_section, 'this_value')) - self.assertFalse(cf.has_option('Foo Bar', 'this_value')) - self.assertFalse(cf.remove_option(self.default_section, 'this_value')) - - with self.assertRaises(configparser.NoSectionError) as cm: - cf.remove_option('No Such Section', 'foo') - self.assertEqual(cm.exception.args, ('No Such Section',)) - - eq(cf.get('Long Line', 'foo'), - 'this line is much, much longer than my editor\nlikes it.') - - # mapping access - del cf['Types'] - self.assertFalse('Types' in cf) - with self.assertRaises(KeyError): - del cf['Types'] - with self.assertRaises(ValueError): - del cf[self.default_section] - del cf['Spacey Bar']['foo'] - self.assertFalse('foo' in cf['Spacey Bar']) - with self.assertRaises(KeyError): - del cf['Spacey Bar']['foo'] - self.assertTrue('that_value' in cf['Spacey Bar']) - with self.assertRaises(KeyError): - del cf['Spacey Bar']['that_value'] - del cf[self.default_section]['that_value'] - self.assertFalse('that_value' in cf['Spacey Bar']) - with self.assertRaises(KeyError): - del cf[self.default_section]['that_value'] - with self.assertRaises(KeyError): - del cf['No Such Section']['foo'] - - # Don't add new asserts below in this method as most of the options - # and sections are now removed. - - def test_basic(self): - config_string = """\ -[Foo Bar] -foo{0[0]}bar1 -[Spacey Bar] -foo {0[0]} bar2 -[Spacey Bar From The Beginning] - foo {0[0]} bar3 - baz {0[0]} qwe -[Commented Bar] -foo{0[1]} bar4 {1[1]} comment -baz{0[0]}qwe {1[0]}another one -[Long Line] -foo{0[1]} this line is much, much longer than my editor - likes it. -[Section\\with$weird%characters[\t] -[Internationalized Stuff] -foo[bg]{0[1]} Bulgarian -foo{0[0]}Default -foo[en]{0[0]}English -foo[de]{0[0]}Deutsch -[Spaces] -key with spaces {0[1]} value -another with spaces {0[0]} splat! -[Types] -int {0[1]} 42 -float {0[0]} 0.44 -boolean {0[0]} NO -123 {0[1]} strange but acceptable -""".format(self.delimiters, self.comment_prefixes) - if self.allow_no_value: - config_string += ( - "[NoValue]\n" - "option-without-value\n" - ) - cf = self.fromstring(config_string) - self.basic_test(cf) - if self.strict: - with self.assertRaises(configparser.DuplicateOptionError): - cf.read_string(textwrap.dedent("""\ - [Duplicate Options Here] - option {0[0]} with a value - option {0[1]} with another value - """.format(self.delimiters))) - with self.assertRaises(configparser.DuplicateSectionError): - cf.read_string(textwrap.dedent("""\ - [And Now For Something] - completely different {0[0]} True - [And Now For Something] - the larch {0[1]} 1 - """.format(self.delimiters))) - else: - cf.read_string(textwrap.dedent("""\ - [Duplicate Options Here] - option {0[0]} with a value - option {0[1]} with another value - """.format(self.delimiters))) - - cf.read_string(textwrap.dedent("""\ - [And Now For Something] - completely different {0[0]} True - [And Now For Something] - the larch {0[1]} 1 - """.format(self.delimiters))) - - def test_basic_from_dict(self): - config = { - "Foo Bar": { - "foo": "bar1", - }, - "Spacey Bar": { - "foo": "bar2", - }, - "Spacey Bar From The Beginning": { - "foo": "bar3", - "baz": "qwe", - }, - "Commented Bar": { - "foo": "bar4", - "baz": "qwe", - }, - "Long Line": { - "foo": "this line is much, much longer than my editor\nlikes " - "it.", - }, - "Section\\with$weird%characters[\t": { - }, - "Internationalized Stuff": { - "foo[bg]": "Bulgarian", - "foo": "Default", - "foo[en]": "English", - "foo[de]": "Deutsch", - }, - "Spaces": { - "key with spaces": "value", - "another with spaces": "splat!", - }, - "Types": { - "int": 42, - "float": 0.44, - "boolean": False, - 123: "strange but acceptable", - }, - } - if self.allow_no_value: - config.update({ - "NoValue": { - "option-without-value": None, - } - }) - cf = self.newconfig() - cf.read_dict(config) - self.basic_test(cf) - if self.strict: - with self.assertRaises(configparser.DuplicateSectionError): - cf.read_dict({ - '1': {'key': 'value'}, - 1: {'key2': 'value2'}, - }) - with self.assertRaises(configparser.DuplicateOptionError): - cf.read_dict({ - "Duplicate Options Here": { - 'option': 'with a value', - 'OPTION': 'with another value', - }, - }) - else: - cf.read_dict({ - 'section': {'key': 'value'}, - 'SECTION': {'key2': 'value2'}, - }) - cf.read_dict({ - "Duplicate Options Here": { - 'option': 'with a value', - 'OPTION': 'with another value', - }, - }) - - def test_case_sensitivity(self): - cf = self.newconfig() - cf.add_section("A") - cf.add_section("a") - cf.add_section("B") - L = cf.sections() - L.sort() - eq = self.assertEqual - eq(L, ["A", "B", "a"]) - cf.set("a", "B", "value") - eq(cf.options("a"), ["b"]) - eq(cf.get("a", "b"), "value", - "could not locate option, expecting case-insensitive option names") - with self.assertRaises(configparser.NoSectionError): - # section names are case-sensitive - cf.set("b", "A", "value") - self.assertTrue(cf.has_option("a", "b")) - self.assertFalse(cf.has_option("b", "b")) - cf.set("A", "A-B", "A-B value") - for opt in ("a-b", "A-b", "a-B", "A-B"): - self.assertTrue( - cf.has_option("A", opt), - "has_option() returned false for option which should exist") - eq(cf.options("A"), ["a-b"]) - eq(cf.options("a"), ["b"]) - cf.remove_option("a", "B") - eq(cf.options("a"), []) - - # SF bug #432369: - cf = self.fromstring( - "[MySection]\nOption{} first line \n\tsecond line \n".format( - self.delimiters[0])) - eq(cf.options("MySection"), ["option"]) - eq(cf.get("MySection", "Option"), "first line\nsecond line") - - # SF bug #561822: - cf = self.fromstring("[section]\n" - "nekey{}nevalue\n".format(self.delimiters[0]), - defaults={"key":"value"}) - self.assertTrue(cf.has_option("section", "Key")) - - - def test_case_sensitivity_mapping_access(self): - cf = self.newconfig() - cf["A"] = {} - cf["a"] = {"B": "value"} - cf["B"] = {} - L = [section for section in cf] - L.sort() - eq = self.assertEqual - elem_eq = self.assertCountEqual - eq(L, sorted(["A", "B", self.default_section, "a"])) - eq(cf["a"].keys(), {"b"}) - eq(cf["a"]["b"], "value", - "could not locate option, expecting case-insensitive option names") - with self.assertRaises(KeyError): - # section names are case-sensitive - cf["b"]["A"] = "value" - self.assertTrue("b" in cf["a"]) - cf["A"]["A-B"] = "A-B value" - for opt in ("a-b", "A-b", "a-B", "A-B"): - self.assertTrue( - opt in cf["A"], - "has_option() returned false for option which should exist") - eq(cf["A"].keys(), {"a-b"}) - eq(cf["a"].keys(), {"b"}) - del cf["a"]["B"] - elem_eq(cf["a"].keys(), {}) - - # SF bug #432369: - cf = self.fromstring( - "[MySection]\nOption{} first line \n\tsecond line \n".format( - self.delimiters[0])) - eq(cf["MySection"].keys(), {"option"}) - eq(cf["MySection"]["Option"], "first line\nsecond line") - - # SF bug #561822: - cf = self.fromstring("[section]\n" - "nekey{}nevalue\n".format(self.delimiters[0]), - defaults={"key":"value"}) - self.assertTrue("Key" in cf["section"]) - - def test_default_case_sensitivity(self): - cf = self.newconfig({"foo": "Bar"}) - self.assertEqual( - cf.get(self.default_section, "Foo"), "Bar", - "could not locate option, expecting case-insensitive option names") - cf = self.newconfig({"Foo": "Bar"}) - self.assertEqual( - cf.get(self.default_section, "Foo"), "Bar", - "could not locate option, expecting case-insensitive defaults") - - def test_parse_errors(self): - cf = self.newconfig() - self.parse_error(cf, configparser.ParsingError, - "[Foo]\n" - "{}val-without-opt-name\n".format(self.delimiters[0])) - self.parse_error(cf, configparser.ParsingError, - "[Foo]\n" - "{}val-without-opt-name\n".format(self.delimiters[1])) - e = self.parse_error(cf, configparser.MissingSectionHeaderError, - "No Section!\n") - self.assertEqual(e.args, ('', 1, "No Section!\n")) - if not self.allow_no_value: - e = self.parse_error(cf, configparser.ParsingError, - "[Foo]\n wrong-indent\n") - self.assertEqual(e.args, ('',)) - # read_file on a real file - tricky = support.findfile("cfgparser.3") - if self.delimiters[0] == '=': - error = configparser.ParsingError - expected = (tricky,) - else: - error = configparser.MissingSectionHeaderError - expected = (tricky, 1, - ' # INI with as many tricky parts as possible\n') - with open(tricky, encoding='utf-8') as f: - e = self.parse_error(cf, error, f) - self.assertEqual(e.args, expected) - - def parse_error(self, cf, exc, src): - if hasattr(src, 'readline'): - sio = src - else: - sio = io.StringIO(src) - with self.assertRaises(exc) as cm: - cf.read_file(sio) - return cm.exception - - def test_query_errors(self): - cf = self.newconfig() - self.assertEqual(cf.sections(), [], - "new ConfigParser should have no defined sections") - self.assertFalse(cf.has_section("Foo"), - "new ConfigParser should have no acknowledged " - "sections") - with self.assertRaises(configparser.NoSectionError): - cf.options("Foo") - with self.assertRaises(configparser.NoSectionError): - cf.set("foo", "bar", "value") - e = self.get_error(cf, configparser.NoSectionError, "foo", "bar") - self.assertEqual(e.args, ("foo",)) - cf.add_section("foo") - e = self.get_error(cf, configparser.NoOptionError, "foo", "bar") - self.assertEqual(e.args, ("bar", "foo")) - - def get_error(self, cf, exc, section, option): - try: - cf.get(section, option) - except exc as e: - return e - else: - self.fail("expected exception type %s.%s" - % (exc.__module__, exc.__name__)) - - def test_boolean(self): - cf = self.fromstring( - "[BOOLTEST]\n" - "T1{equals}1\n" - "T2{equals}TRUE\n" - "T3{equals}True\n" - "T4{equals}oN\n" - "T5{equals}yes\n" - "F1{equals}0\n" - "F2{equals}FALSE\n" - "F3{equals}False\n" - "F4{equals}oFF\n" - "F5{equals}nO\n" - "E1{equals}2\n" - "E2{equals}foo\n" - "E3{equals}-1\n" - "E4{equals}0.1\n" - "E5{equals}FALSE AND MORE".format(equals=self.delimiters[0]) - ) - for x in range(1, 5): - self.assertTrue(cf.getboolean('BOOLTEST', 't%d' % x)) - self.assertFalse(cf.getboolean('BOOLTEST', 'f%d' % x)) - self.assertRaises(ValueError, - cf.getboolean, 'BOOLTEST', 'e%d' % x) - - def test_weird_errors(self): - cf = self.newconfig() - cf.add_section("Foo") - with self.assertRaises(configparser.DuplicateSectionError) as cm: - cf.add_section("Foo") - e = cm.exception - self.assertEqual(str(e), "Section 'Foo' already exists") - self.assertEqual(e.args, ("Foo", None, None)) - - if self.strict: - with self.assertRaises(configparser.DuplicateSectionError) as cm: - cf.read_string(textwrap.dedent("""\ - [Foo] - will this be added{equals}True - [Bar] - what about this{equals}True - [Foo] - oops{equals}this won't - """.format(equals=self.delimiters[0])), source='') - e = cm.exception - self.assertEqual(str(e), "While reading from [line 5]: " - "section 'Foo' already exists") - self.assertEqual(e.args, ("Foo", '', 5)) - - with self.assertRaises(configparser.DuplicateOptionError) as cm: - cf.read_dict({'Bar': {'opt': 'val', 'OPT': 'is really `opt`'}}) - e = cm.exception - self.assertEqual(str(e), "While reading from : option 'opt' " - "in section 'Bar' already exists") - self.assertEqual(e.args, ("Bar", "opt", "", None)) - - def test_write(self): - config_string = ( - "[Long Line]\n" - "foo{0[0]} this line is much, much longer than my editor\n" - " likes it.\n" - "[{default_section}]\n" - "foo{0[1]} another very\n" - " long line\n" - "[Long Line - With Comments!]\n" - "test {0[1]} we {comment} can\n" - " also {comment} place\n" - " comments {comment} in\n" - " multiline {comment} values" - "\n".format(self.delimiters, comment=self.comment_prefixes[0], - default_section=self.default_section) - ) - if self.allow_no_value: - config_string += ( - "[Valueless]\n" - "option-without-value\n" - ) - - cf = self.fromstring(config_string) - for space_around_delimiters in (True, False): - output = io.StringIO() - cf.write(output, space_around_delimiters=space_around_delimiters) - delimiter = self.delimiters[0] - if space_around_delimiters: - delimiter = " {} ".format(delimiter) - expect_string = ( - "[{default_section}]\n" - "foo{equals}another very\n" - "\tlong line\n" - "\n" - "[Long Line]\n" - "foo{equals}this line is much, much longer than my editor\n" - "\tlikes it.\n" - "\n" - "[Long Line - With Comments!]\n" - "test{equals}we\n" - "\talso\n" - "\tcomments\n" - "\tmultiline\n" - "\n".format(equals=delimiter, - default_section=self.default_section) - ) - if self.allow_no_value: - expect_string += ( - "[Valueless]\n" - "option-without-value\n" - "\n" - ) - self.assertEqual(output.getvalue(), expect_string) - - def test_set_string_types(self): - cf = self.fromstring("[sect]\n" - "option1{eq}foo\n".format(eq=self.delimiters[0])) - # Check that we don't get an exception when setting values in - # an existing section using strings: - class mystr(str): - pass - cf.set("sect", "option1", "splat") - cf.set("sect", "option1", mystr("splat")) - cf.set("sect", "option2", "splat") - cf.set("sect", "option2", mystr("splat")) - cf.set("sect", "option1", "splat") - cf.set("sect", "option2", "splat") - - def test_read_returns_file_list(self): - if self.delimiters[0] != '=': - # skip reading the file if we're using an incompatible format - return - file1 = support.findfile("cfgparser.1") - # check when we pass a mix of readable and non-readable files: - cf = self.newconfig() - parsed_files = cf.read([file1, "nonexistent-file"]) - self.assertEqual(parsed_files, [file1]) - self.assertEqual(cf.get("Foo Bar", "foo"), "newbar") - # check when we pass only a filename: - cf = self.newconfig() - parsed_files = cf.read(file1) - self.assertEqual(parsed_files, [file1]) - self.assertEqual(cf.get("Foo Bar", "foo"), "newbar") - # check when we pass only missing files: - cf = self.newconfig() - parsed_files = cf.read(["nonexistent-file"]) - self.assertEqual(parsed_files, []) - # check when we pass no files: - cf = self.newconfig() - parsed_files = cf.read([]) - self.assertEqual(parsed_files, []) - - # shared by subclasses - def get_interpolation_config(self): - return self.fromstring( - "[Foo]\n" - "bar{equals}something %(with1)s interpolation (1 step)\n" - "bar9{equals}something %(with9)s lots of interpolation (9 steps)\n" - "bar10{equals}something %(with10)s lots of interpolation (10 steps)\n" - "bar11{equals}something %(with11)s lots of interpolation (11 steps)\n" - "with11{equals}%(with10)s\n" - "with10{equals}%(with9)s\n" - "with9{equals}%(with8)s\n" - "with8{equals}%(With7)s\n" - "with7{equals}%(WITH6)s\n" - "with6{equals}%(with5)s\n" - "With5{equals}%(with4)s\n" - "WITH4{equals}%(with3)s\n" - "with3{equals}%(with2)s\n" - "with2{equals}%(with1)s\n" - "with1{equals}with\n" - "\n" - "[Mutual Recursion]\n" - "foo{equals}%(bar)s\n" - "bar{equals}%(foo)s\n" - "\n" - "[Interpolation Error]\n" - # no definition for 'reference' - "name{equals}%(reference)s\n".format(equals=self.delimiters[0])) - - def check_items_config(self, expected): - cf = self.fromstring(""" - [section] - name {0[0]} %(value)s - key{0[1]} |%(name)s| - getdefault{0[1]} |%(default)s| - """.format(self.delimiters), defaults={"default": ""}) - L = list(cf.items("section", vars={'value': 'value'})) - L.sort() - self.assertEqual(L, expected) - with self.assertRaises(configparser.NoSectionError): - cf.items("no such section") - - -class StrictTestCase(BasicTestCase): - config_class = configparser.RawConfigParser - strict = True - - -class ConfigParserTestCase(BasicTestCase): - config_class = configparser.ConfigParser - - def test_interpolation(self): - cf = self.get_interpolation_config() - eq = self.assertEqual - eq(cf.get("Foo", "bar"), "something with interpolation (1 step)") - eq(cf.get("Foo", "bar9"), - "something with lots of interpolation (9 steps)") - eq(cf.get("Foo", "bar10"), - "something with lots of interpolation (10 steps)") - e = self.get_error(cf, configparser.InterpolationDepthError, "Foo", "bar11") - if self.interpolation == configparser._UNSET: - self.assertEqual(e.args, ("bar11", "Foo", "%(with1)s")) - elif isinstance(self.interpolation, configparser.LegacyInterpolation): - self.assertEqual(e.args, ("bar11", "Foo", - "something %(with11)s lots of interpolation (11 steps)")) - - def test_interpolation_missing_value(self): - cf = self.get_interpolation_config() - e = self.get_error(cf, configparser.InterpolationMissingOptionError, - "Interpolation Error", "name") - self.assertEqual(e.reference, "reference") - self.assertEqual(e.section, "Interpolation Error") - self.assertEqual(e.option, "name") - if self.interpolation == configparser._UNSET: - self.assertEqual(e.args, ('name', 'Interpolation Error', - '', 'reference')) - elif isinstance(self.interpolation, configparser.LegacyInterpolation): - self.assertEqual(e.args, ('name', 'Interpolation Error', - '%(reference)s', 'reference')) - - def test_items(self): - self.check_items_config([('default', ''), - ('getdefault', '||'), - ('key', '|value|'), - ('name', 'value'), - ('value', 'value')]) - - def test_safe_interpolation(self): - # See http://www.python.org/sf/511737 - cf = self.fromstring("[section]\n" - "option1{eq}xxx\n" - "option2{eq}%(option1)s/xxx\n" - "ok{eq}%(option1)s/%%s\n" - "not_ok{eq}%(option2)s/%%s".format( - eq=self.delimiters[0])) - self.assertEqual(cf.get("section", "ok"), "xxx/%s") - if self.interpolation == configparser._UNSET: - self.assertEqual(cf.get("section", "not_ok"), "xxx/xxx/%s") - elif isinstance(self.interpolation, configparser.LegacyInterpolation): - with self.assertRaises(TypeError): - cf.get("section", "not_ok") - - def test_set_malformatted_interpolation(self): - cf = self.fromstring("[sect]\n" - "option1{eq}foo\n".format(eq=self.delimiters[0])) - - self.assertEqual(cf.get('sect', "option1"), "foo") - - self.assertRaises(ValueError, cf.set, "sect", "option1", "%foo") - self.assertRaises(ValueError, cf.set, "sect", "option1", "foo%") - self.assertRaises(ValueError, cf.set, "sect", "option1", "f%oo") - - self.assertEqual(cf.get('sect', "option1"), "foo") - - # bug #5741: double percents are *not* malformed - cf.set("sect", "option2", "foo%%bar") - self.assertEqual(cf.get("sect", "option2"), "foo%bar") - - def test_set_nonstring_types(self): - cf = self.fromstring("[sect]\n" - "option1{eq}foo\n".format(eq=self.delimiters[0])) - # Check that we get a TypeError when setting non-string values - # in an existing section: - self.assertRaises(TypeError, cf.set, "sect", "option1", 1) - self.assertRaises(TypeError, cf.set, "sect", "option1", 1.0) - self.assertRaises(TypeError, cf.set, "sect", "option1", object()) - self.assertRaises(TypeError, cf.set, "sect", "option2", 1) - self.assertRaises(TypeError, cf.set, "sect", "option2", 1.0) - self.assertRaises(TypeError, cf.set, "sect", "option2", object()) - self.assertRaises(TypeError, cf.set, "sect", 123, "invalid opt name!") - self.assertRaises(TypeError, cf.add_section, 123) - - def test_add_section_default(self): - cf = self.newconfig() - self.assertRaises(ValueError, cf.add_section, self.default_section) - -class ConfigParserTestCaseLegacyInterpolation(ConfigParserTestCase): - config_class = configparser.ConfigParser - interpolation = configparser.LegacyInterpolation() - - def test_set_malformatted_interpolation(self): - cf = self.fromstring("[sect]\n" - "option1{eq}foo\n".format(eq=self.delimiters[0])) - - self.assertEqual(cf.get('sect', "option1"), "foo") - - cf.set("sect", "option1", "%foo") - self.assertEqual(cf.get('sect', "option1"), "%foo") - cf.set("sect", "option1", "foo%") - self.assertEqual(cf.get('sect', "option1"), "foo%") - cf.set("sect", "option1", "f%oo") - self.assertEqual(cf.get('sect', "option1"), "f%oo") - - # bug #5741: double percents are *not* malformed - cf.set("sect", "option2", "foo%%bar") - self.assertEqual(cf.get("sect", "option2"), "foo%%bar") - -class ConfigParserTestCaseNonStandardDelimiters(ConfigParserTestCase): - delimiters = (':=', '$') - comment_prefixes = ('//', '"') - inline_comment_prefixes = ('//', '"') - -class ConfigParserTestCaseNonStandardDefaultSection(ConfigParserTestCase): - default_section = 'general' - -class MultilineValuesTestCase(BasicTestCase): - config_class = configparser.ConfigParser - wonderful_spam = ("I'm having spam spam spam spam " - "spam spam spam beaked beans spam " - "spam spam and spam!").replace(' ', '\t\n') - - def setUp(self): - cf = self.newconfig() - for i in range(100): - s = 'section{}'.format(i) - cf.add_section(s) - for j in range(10): - cf.set(s, 'lovely_spam{}'.format(j), self.wonderful_spam) - with open(support.TESTFN, 'w') as f: - cf.write(f) - - def tearDown(self): - os.unlink(support.TESTFN) - - def test_dominating_multiline_values(self): - # We're reading from file because this is where the code changed - # during performance updates in Python 3.2 - cf_from_file = self.newconfig() - with open(support.TESTFN) as f: - cf_from_file.read_file(f) - self.assertEqual(cf_from_file.get('section8', 'lovely_spam4'), - self.wonderful_spam.replace('\t\n', '\n')) - -class RawConfigParserTestCase(BasicTestCase): - config_class = configparser.RawConfigParser - - def test_interpolation(self): - cf = self.get_interpolation_config() - eq = self.assertEqual - eq(cf.get("Foo", "bar"), - "something %(with1)s interpolation (1 step)") - eq(cf.get("Foo", "bar9"), - "something %(with9)s lots of interpolation (9 steps)") - eq(cf.get("Foo", "bar10"), - "something %(with10)s lots of interpolation (10 steps)") - eq(cf.get("Foo", "bar11"), - "something %(with11)s lots of interpolation (11 steps)") - - def test_items(self): - self.check_items_config([('default', ''), - ('getdefault', '|%(default)s|'), - ('key', '|%(name)s|'), - ('name', '%(value)s'), - ('value', 'value')]) - - def test_set_nonstring_types(self): - cf = self.newconfig() - cf.add_section('non-string') - cf.set('non-string', 'int', 1) - cf.set('non-string', 'list', [0, 1, 1, 2, 3, 5, 8, 13]) - cf.set('non-string', 'dict', {'pi': 3.14159}) - self.assertEqual(cf.get('non-string', 'int'), 1) - self.assertEqual(cf.get('non-string', 'list'), - [0, 1, 1, 2, 3, 5, 8, 13]) - self.assertEqual(cf.get('non-string', 'dict'), {'pi': 3.14159}) - cf.add_section(123) - cf.set(123, 'this is sick', True) - self.assertEqual(cf.get(123, 'this is sick'), True) - if cf._dict.__class__ is configparser._default_dict: - # would not work for SortedDict; only checking for the most common - # default dictionary (OrderedDict) - cf.optionxform = lambda x: x - cf.set('non-string', 1, 1) - self.assertEqual(cf.get('non-string', 1), 1) - -class RawConfigParserTestCaseNonStandardDelimiters(RawConfigParserTestCase): - delimiters = (':=', '$') - comment_prefixes = ('//', '"') - inline_comment_prefixes = ('//', '"') - -class RawConfigParserTestSambaConf(CfgParserTestCaseClass): - config_class = configparser.RawConfigParser - comment_prefixes = ('#', ';', '----') - inline_comment_prefixes = ('//',) - empty_lines_in_values = False - - def test_reading(self): - smbconf = support.findfile("cfgparser.2") - # check when we pass a mix of readable and non-readable files: - cf = self.newconfig() - parsed_files = cf.read([smbconf, "nonexistent-file"], encoding='utf-8') - self.assertEqual(parsed_files, [smbconf]) - sections = ['global', 'homes', 'printers', - 'print$', 'pdf-generator', 'tmp', 'Agustin'] - self.assertEqual(cf.sections(), sections) - self.assertEqual(cf.get("global", "workgroup"), "MDKGROUP") - self.assertEqual(cf.getint("global", "max log size"), 50) - self.assertEqual(cf.get("global", "hosts allow"), "127.") - self.assertEqual(cf.get("tmp", "echo command"), "cat %s; rm %s") - -class ConfigParserTestCaseExtendedInterpolation(BasicTestCase): - config_class = configparser.ConfigParser - interpolation = configparser.ExtendedInterpolation() - default_section = 'common' - - def test_extended_interpolation(self): - cf = self.fromstring(textwrap.dedent(""" - [common] - favourite Beatle = Paul - favourite color = green - - [tom] - favourite band = ${favourite color} day - favourite pope = John ${favourite Beatle} II - sequel = ${favourite pope}I - - [ambv] - favourite Beatle = George - son of Edward VII = ${favourite Beatle} V - son of George V = ${son of Edward VII}I - - [stanley] - favourite Beatle = ${ambv:favourite Beatle} - favourite pope = ${tom:favourite pope} - favourite color = black - favourite state of mind = paranoid - favourite movie = soylent ${common:favourite color} - favourite song = ${favourite color} sabbath - ${favourite state of mind} - """).strip()) - - eq = self.assertEqual - eq(cf['common']['favourite Beatle'], 'Paul') - eq(cf['common']['favourite color'], 'green') - eq(cf['tom']['favourite Beatle'], 'Paul') - eq(cf['tom']['favourite color'], 'green') - eq(cf['tom']['favourite band'], 'green day') - eq(cf['tom']['favourite pope'], 'John Paul II') - eq(cf['tom']['sequel'], 'John Paul III') - eq(cf['ambv']['favourite Beatle'], 'George') - eq(cf['ambv']['favourite color'], 'green') - eq(cf['ambv']['son of Edward VII'], 'George V') - eq(cf['ambv']['son of George V'], 'George VI') - eq(cf['stanley']['favourite Beatle'], 'George') - eq(cf['stanley']['favourite color'], 'black') - eq(cf['stanley']['favourite state of mind'], 'paranoid') - eq(cf['stanley']['favourite movie'], 'soylent green') - eq(cf['stanley']['favourite pope'], 'John Paul II') - eq(cf['stanley']['favourite song'], - 'black sabbath - paranoid') - - def test_endless_loop(self): - cf = self.fromstring(textwrap.dedent(""" - [one for you] - ping = ${one for me:pong} - - [one for me] - pong = ${one for you:ping} - - [selfish] - me = ${me} - """).strip()) - - with self.assertRaises(configparser.InterpolationDepthError): - cf['one for you']['ping'] - with self.assertRaises(configparser.InterpolationDepthError): - cf['selfish']['me'] - - def test_strange_options(self): - cf = self.fromstring(""" - [dollars] - $var = $$value - $var2 = ${$var} - ${sick} = cannot interpolate me - - [interpolated] - $other = ${dollars:$var} - $trying = ${dollars:${sick}} - """) - - self.assertEqual(cf['dollars']['$var'], '$value') - self.assertEqual(cf['interpolated']['$other'], '$value') - self.assertEqual(cf['dollars']['${sick}'], 'cannot interpolate me') - exception_class = configparser.InterpolationMissingOptionError - with self.assertRaises(exception_class) as cm: - cf['interpolated']['$trying'] - self.assertEqual(cm.exception.reference, 'dollars:${sick') - self.assertEqual(cm.exception.args[2], '}') #rawval - - - def test_other_errors(self): - cf = self.fromstring(""" - [interpolation fail] - case1 = ${where's the brace - case2 = ${does_not_exist} - case3 = ${wrong_section:wrong_value} - case4 = ${i:like:colon:characters} - case5 = $100 for Fail No 5! - """) - - with self.assertRaises(configparser.InterpolationSyntaxError): - cf['interpolation fail']['case1'] - with self.assertRaises(configparser.InterpolationMissingOptionError): - cf['interpolation fail']['case2'] - with self.assertRaises(configparser.InterpolationMissingOptionError): - cf['interpolation fail']['case3'] - with self.assertRaises(configparser.InterpolationSyntaxError): - cf['interpolation fail']['case4'] - with self.assertRaises(configparser.InterpolationSyntaxError): - cf['interpolation fail']['case5'] - with self.assertRaises(ValueError): - cf['interpolation fail']['case6'] = "BLACK $ABBATH" - - -class ConfigParserTestCaseNoValue(ConfigParserTestCase): - allow_no_value = True - -class ConfigParserTestCaseTrickyFile(CfgParserTestCaseClass): - config_class = configparser.ConfigParser - delimiters = {'='} - comment_prefixes = {'#'} - allow_no_value = True - - def test_cfgparser_dot_3(self): - tricky = support.findfile("cfgparser.3") - cf = self.newconfig() - self.assertEqual(len(cf.read(tricky, encoding='utf-8')), 1) - self.assertEqual(cf.sections(), ['strange', - 'corruption', - 'yeah, sections can be ' - 'indented as well', - 'another one!', - 'no values here', - 'tricky interpolation', - 'more interpolation']) - self.assertEqual(cf.getint(self.default_section, 'go', - vars={'interpolate': '-1'}), -1) - with self.assertRaises(ValueError): - # no interpolation will happen - cf.getint(self.default_section, 'go', raw=True, - vars={'interpolate': '-1'}) - self.assertEqual(len(cf.get('strange', 'other').split('\n')), 4) - self.assertEqual(len(cf.get('corruption', 'value').split('\n')), 10) - longname = 'yeah, sections can be indented as well' - self.assertFalse(cf.getboolean(longname, 'are they subsections')) - self.assertEqual(cf.get(longname, 'lets use some Unicode'), '???') - self.assertEqual(len(cf.items('another one!')), 5) # 4 in section and - # `go` from DEFAULT - with self.assertRaises(configparser.InterpolationMissingOptionError): - cf.items('no values here') - self.assertEqual(cf.get('tricky interpolation', 'lets'), 'do this') - self.assertEqual(cf.get('tricky interpolation', 'lets'), - cf.get('tricky interpolation', 'go')) - self.assertEqual(cf.get('more interpolation', 'lets'), 'go shopping') - - def test_unicode_failure(self): - tricky = support.findfile("cfgparser.3") - cf = self.newconfig() - with self.assertRaises(UnicodeDecodeError): - cf.read(tricky, encoding='ascii') - - -class Issue7005TestCase(unittest.TestCase): - """Test output when None is set() as a value and allow_no_value == False. - - http://bugs.python.org/issue7005 - - """ - - expected_output = "[section]\noption = None\n\n" - - def prepare(self, config_class): - # This is the default, but that's the point. - cp = config_class(allow_no_value=False) - cp.add_section("section") - cp.set("section", "option", None) - sio = io.StringIO() - cp.write(sio) - return sio.getvalue() - - def test_none_as_value_stringified(self): - cp = configparser.ConfigParser(allow_no_value=False) - cp.add_section("section") - with self.assertRaises(TypeError): - cp.set("section", "option", None) - - def test_none_as_value_stringified_raw(self): - output = self.prepare(configparser.RawConfigParser) - self.assertEqual(output, self.expected_output) - - -class SortedTestCase(RawConfigParserTestCase): - dict_type = SortedDict - - def test_sorted(self): - cf = self.fromstring("[b]\n" - "o4=1\n" - "o3=2\n" - "o2=3\n" - "o1=4\n" - "[a]\n" - "k=v\n") - output = io.StringIO() - cf.write(output) - self.assertEqual(output.getvalue(), - "[a]\n" - "k = v\n\n" - "[b]\n" - "o1 = 4\n" - "o2 = 3\n" - "o3 = 2\n" - "o4 = 1\n\n") - - -class CompatibleTestCase(CfgParserTestCaseClass): - config_class = configparser.RawConfigParser - comment_prefixes = '#;' - inline_comment_prefixes = ';' - - def test_comment_handling(self): - config_string = textwrap.dedent("""\ - [Commented Bar] - baz=qwe ; a comment - foo: bar # not a comment! - # but this is a comment - ; another comment - quirk: this;is not a comment - ; a space must precede an inline comment - """) - cf = self.fromstring(config_string) - self.assertEqual(cf.get('Commented Bar', 'foo'), - 'bar # not a comment!') - self.assertEqual(cf.get('Commented Bar', 'baz'), 'qwe') - self.assertEqual(cf.get('Commented Bar', 'quirk'), - 'this;is not a comment') - -class CopyTestCase(BasicTestCase): - config_class = configparser.ConfigParser - - def fromstring(self, string, defaults=None): - cf = self.newconfig(defaults) - cf.read_string(string) - cf_copy = self.newconfig() - cf_copy.read_dict(cf) - # we have to clean up option duplicates that appeared because of - # the magic DEFAULTSECT behaviour. - for section in cf_copy.values(): - if section.name == self.default_section: - continue - for default, value in cf[self.default_section].items(): - if section[default] == value: - del section[default] - return cf_copy - -class CoverageOneHundredTestCase(unittest.TestCase): - """Covers edge cases in the codebase.""" - - def test_duplicate_option_error(self): - error = configparser.DuplicateOptionError('section', 'option') - self.assertEqual(error.section, 'section') - self.assertEqual(error.option, 'option') - self.assertEqual(error.source, None) - self.assertEqual(error.lineno, None) - self.assertEqual(error.args, ('section', 'option', None, None)) - self.assertEqual(str(error), "Option 'option' in section 'section' " - "already exists") - - def test_interpolation_depth_error(self): - error = configparser.InterpolationDepthError('option', 'section', - 'rawval') - self.assertEqual(error.args, ('option', 'section', 'rawval')) - self.assertEqual(error.option, 'option') - self.assertEqual(error.section, 'section') - - def test_parsing_error(self): - with self.assertRaises(ValueError) as cm: - configparser.ParsingError() - self.assertEqual(str(cm.exception), "Required argument `source' not " - "given.") - with self.assertRaises(ValueError) as cm: - configparser.ParsingError(source='source', filename='filename') - self.assertEqual(str(cm.exception), "Cannot specify both `filename' " - "and `source'. Use `source'.") - error = configparser.ParsingError(filename='source') - self.assertEqual(error.source, 'source') - with warnings.catch_warnings(record=True) as w: - warnings.simplefilter("always", DeprecationWarning) - self.assertEqual(error.filename, 'source') - error.filename = 'filename' - self.assertEqual(error.source, 'filename') - for warning in w: - self.assertTrue(warning.category is DeprecationWarning) - - def test_interpolation_validation(self): - parser = configparser.ConfigParser() - parser.read_string(""" - [section] - invalid_percent = % - invalid_reference = %(() - invalid_variable = %(does_not_exist)s - """) - with self.assertRaises(configparser.InterpolationSyntaxError) as cm: - parser['section']['invalid_percent'] - self.assertEqual(str(cm.exception), "'%' must be followed by '%' or " - "'(', found: '%'") - with self.assertRaises(configparser.InterpolationSyntaxError) as cm: - parser['section']['invalid_reference'] - self.assertEqual(str(cm.exception), "bad interpolation variable " - "reference '%(()'") - - def test_readfp_deprecation(self): - sio = io.StringIO(""" - [section] - option = value - """) - parser = configparser.ConfigParser() - with warnings.catch_warnings(record=True) as w: - warnings.simplefilter("always", DeprecationWarning) - parser.readfp(sio, filename='StringIO') - for warning in w: - self.assertTrue(warning.category is DeprecationWarning) - self.assertEqual(len(parser), 2) - self.assertEqual(parser['section']['option'], 'value') - - def test_safeconfigparser_deprecation(self): - with warnings.catch_warnings(record=True) as w: - warnings.simplefilter("always", DeprecationWarning) - parser = configparser.SafeConfigParser() - for warning in w: - self.assertTrue(warning.category is DeprecationWarning) - - def test_sectionproxy_repr(self): - parser = configparser.ConfigParser() - parser.read_string(""" - [section] - key = value - """) - self.assertEqual(repr(parser['section']), '') - -def test_main(): - support.run_unittest( - ConfigParserTestCase, - ConfigParserTestCaseNonStandardDelimiters, - ConfigParserTestCaseNoValue, - ConfigParserTestCaseExtendedInterpolation, - ConfigParserTestCaseLegacyInterpolation, - ConfigParserTestCaseTrickyFile, - MultilineValuesTestCase, - RawConfigParserTestCase, - RawConfigParserTestCaseNonStandardDelimiters, - RawConfigParserTestSambaConf, - SortedTestCase, - Issue7005TestCase, - StrictTestCase, - CompatibleTestCase, - CopyTestCase, - ConfigParserTestCaseNonStandardDefaultSection, - CoverageOneHundredTestCase, - ) Modified: python/branches/py3k-cdecimal/Lib/test/test_cgi.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_cgi.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_cgi.py Fri Mar 4 18:50:17 2011 @@ -4,7 +4,7 @@ import sys import tempfile import unittest -from io import StringIO +from io import StringIO, BytesIO class HackedSysModule: # The regression test will have real values in sys.argv, which @@ -14,7 +14,6 @@ cgi.sys = HackedSysModule() - class ComparableException: def __init__(self, err): self.err = err @@ -38,7 +37,7 @@ env['REQUEST_METHOD'] = 'GET' env['QUERY_STRING'] = buf elif method == "POST": - fp = StringIO(buf) + fp = BytesIO(buf.encode('latin-1')) # FieldStorage expects bytes env['REQUEST_METHOD'] = 'POST' env['CONTENT_TYPE'] = 'application/x-www-form-urlencoded' env['CONTENT_LENGTH'] = str(len(buf)) @@ -106,9 +105,10 @@ return [(p[0], p[1][0]) for p in list] def gen_result(data, environ): - fake_stdin = StringIO(data) + encoding = 'latin-1' + fake_stdin = BytesIO(data.encode(encoding)) fake_stdin.seek(0) - form = cgi.FieldStorage(fp=fake_stdin, environ=environ) + form = cgi.FieldStorage(fp=fake_stdin, environ=environ, encoding=encoding) result = {} for k, v in dict(form).items(): @@ -122,9 +122,9 @@ for orig, expect in parse_strict_test_cases: # Test basic parsing d = do_test(orig, "GET") - self.assertEqual(d, expect, "Error parsing %s" % repr(orig)) + self.assertEqual(d, expect, "Error parsing %s method GET" % repr(orig)) d = do_test(orig, "POST") - self.assertEqual(d, expect, "Error parsing %s" % repr(orig)) + self.assertEqual(d, expect, "Error parsing %s method POST" % repr(orig)) env = {'QUERY_STRING': orig} fs = cgi.FieldStorage(environ=env) @@ -155,6 +155,7 @@ cgi.logfp = None cgi.logfile = "/dev/null" cgi.initlog("%s", "Testing log 3") + self.addCleanup(cgi.logfp.close) cgi.log("Testing log 4") def test_fieldstorage_readline(self): @@ -181,9 +182,9 @@ setattr(self, name, a) return a - f = TestReadlineFile(tempfile.TemporaryFile("w+")) + f = TestReadlineFile(tempfile.TemporaryFile("wb+")) self.addCleanup(f.close) - f.write('x' * 256 * 1024) + f.write(b'x' * 256 * 1024) f.seek(0) env = {'REQUEST_METHOD':'PUT'} fs = cgi.FieldStorage(fp=f, environ=env) @@ -192,41 +193,41 @@ # (by read_binary); if we are chunking properly, it will be called 5 times # as long as the chunksize is 1 << 16. self.assertTrue(f.numcalls > 2) + f.close() def test_fieldstorage_multipart(self): #Test basic FieldStorage multipart parsing - env = {'REQUEST_METHOD':'POST', 'CONTENT_TYPE':'multipart/form-data; boundary=---------------------------721837373350705526688164684', 'CONTENT_LENGTH':'558'} - postdata = """-----------------------------721837373350705526688164684 -Content-Disposition: form-data; name="id" - -1234 ------------------------------721837373350705526688164684 -Content-Disposition: form-data; name="title" - - ------------------------------721837373350705526688164684 -Content-Disposition: form-data; name="file"; filename="test.txt" -Content-Type: text/plain - -Testing 123. - ------------------------------721837373350705526688164684 -Content-Disposition: form-data; name="submit" - - Add\x20 ------------------------------721837373350705526688164684-- -""" - fs = cgi.FieldStorage(fp=StringIO(postdata), environ=env) + env = { + 'REQUEST_METHOD': 'POST', + 'CONTENT_TYPE': 'multipart/form-data; boundary={}'.format(BOUNDARY), + 'CONTENT_LENGTH': '558'} + fp = BytesIO(POSTDATA.encode('latin-1')) + fs = cgi.FieldStorage(fp, environ=env, encoding="latin-1") self.assertEqual(len(fs.list), 4) expect = [{'name':'id', 'filename':None, 'value':'1234'}, {'name':'title', 'filename':None, 'value':''}, - {'name':'file', 'filename':'test.txt', 'value':'Testing 123.'}, + {'name':'file', 'filename':'test.txt', 'value':b'Testing 123.\n'}, {'name':'submit', 'filename':None, 'value':' Add '}] for x in range(len(fs.list)): for k, exp in expect[x].items(): got = getattr(fs.list[x], k) self.assertEqual(got, exp) + def test_fieldstorage_multipart_non_ascii(self): + #Test basic FieldStorage multipart parsing + env = {'REQUEST_METHOD':'POST', + 'CONTENT_TYPE': 'multipart/form-data; boundary={}'.format(BOUNDARY), + 'CONTENT_LENGTH':'558'} + for encoding in ['iso-8859-1','utf-8']: + fp = BytesIO(POSTDATA_NON_ASCII.encode(encoding)) + fs = cgi.FieldStorage(fp, environ=env,encoding=encoding) + self.assertEqual(len(fs.list), 1) + expect = [{'name':'id', 'filename':None, 'value':'\xe7\xf1\x80'}] + for x in range(len(fs.list)): + for k, exp in expect[x].items(): + got = getattr(fs.list[x], k) + self.assertEqual(got, exp) + _qs_result = { 'key1': 'value1', 'key2': ['value2x', 'value2y'], @@ -245,8 +246,7 @@ self.assertEqual(self._qs_result, v) def testQSAndFormData(self): - data = """ ----123 + data = """---123 Content-Disposition: form-data; name="key2" value2y @@ -270,8 +270,7 @@ self.assertEqual(self._qs_result, v) def testQSAndFormDataFile(self): - data = """ ----123 + data = """---123 Content-Disposition: form-data; name="key2" value2y @@ -299,7 +298,7 @@ } result = self._qs_result.copy() result.update({ - 'upload': 'this is the content of the fake file' + 'upload': b'this is the content of the fake file\n' }) v = gen_result(data, environ) self.assertEqual(result, v) @@ -344,6 +343,36 @@ cgi.parse_header('attachment; filename="strange;name";size=123;'), ("attachment", {"filename": "strange;name", "size": "123"})) +BOUNDARY = "---------------------------721837373350705526688164684" + +POSTDATA = """-----------------------------721837373350705526688164684 +Content-Disposition: form-data; name="id" + +1234 +-----------------------------721837373350705526688164684 +Content-Disposition: form-data; name="title" + + +-----------------------------721837373350705526688164684 +Content-Disposition: form-data; name="file"; filename="test.txt" +Content-Type: text/plain + +Testing 123. + +-----------------------------721837373350705526688164684 +Content-Disposition: form-data; name="submit" + + Add\x20 +-----------------------------721837373350705526688164684-- +""" + +POSTDATA_NON_ASCII = """-----------------------------721837373350705526688164684 +Content-Disposition: form-data; name="id" + +\xe7\xf1\x80 +-----------------------------721837373350705526688164684 +""" + def test_main(): run_unittest(CgiTests) Modified: python/branches/py3k-cdecimal/Lib/test/test_cmd_line.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_cmd_line.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_cmd_line.py Fri Mar 4 18:50:17 2011 @@ -6,6 +6,7 @@ import os import sys import subprocess +import tempfile from test.script_helper import spawn_python, kill_python, assert_python_ok, assert_python_failure @@ -150,7 +151,7 @@ @unittest.skipUnless(sys.platform == 'darwin', 'test specific to Mac OS X') def test_osx_utf8(self): def check_output(text): - decoded = text.decode('utf8', 'surrogateescape') + decoded = text.decode('utf-8', 'surrogateescape') expected = ascii(decoded).encode('ascii') + b'\n' env = os.environ.copy() @@ -222,7 +223,7 @@ self.assertIn(path2.encode('ascii'), out) def test_displayhook_unencodable(self): - for encoding in ('ascii', 'latin1', 'utf8'): + for encoding in ('ascii', 'latin-1', 'utf-8'): env = os.environ.copy() env['PYTHONIOENCODING'] = encoding p = subprocess.Popen( @@ -239,6 +240,31 @@ escaped = repr(text).encode(encoding, 'backslashreplace') self.assertIn(escaped, data) + def check_input(self, code, expected): + with tempfile.NamedTemporaryFile("wb+") as stdin: + sep = os.linesep.encode('ASCII') + stdin.write(sep.join((b'abc', b'def'))) + stdin.flush() + stdin.seek(0) + with subprocess.Popen( + (sys.executable, "-c", code), + stdin=stdin, stdout=subprocess.PIPE) as proc: + stdout, stderr = proc.communicate() + self.assertEqual(stdout.rstrip(), expected) + + def test_stdin_readline(self): + # Issue #11272: check that sys.stdin.readline() replaces '\r\n' by '\n' + # on Windows (sys.stdin is opened in binary mode) + self.check_input( + "import sys; print(repr(sys.stdin.readline()))", + b"'abc\\n'") + + def test_builtin_input(self): + # Issue #11272: check that input() strips newlines ('\n' or '\r\n') + self.check_input( + "print(repr(input()))", + b"'abc'") + def test_main(): test.support.run_unittest(CmdLineTest) Modified: python/branches/py3k-cdecimal/Lib/test/test_codecs.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_codecs.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_codecs.py Fri Mar 4 18:50:17 2011 @@ -1250,7 +1250,7 @@ self.assertEqual(ef.read(), b'\\\xd5\n\x00\x00\xae') f = io.BytesIO() - ef = codecs.EncodedFile(f, 'utf-8', 'latin1') + ef = codecs.EncodedFile(f, 'utf-8', 'latin-1') ef.write(b'\xc3\xbc') self.assertEqual(f.getvalue(), b'\xfc') @@ -1611,7 +1611,7 @@ def test_latin1(self): # Issue6373 - self.assertEqual("\udce4\udceb\udcef\udcf6\udcfc".encode("latin1", "surrogateescape"), + self.assertEqual("\udce4\udceb\udcef\udcf6\udcfc".encode("latin-1", "surrogateescape"), b"\xe4\xeb\xef\xf6\xfc") Modified: python/branches/py3k-cdecimal/Lib/test/test_collections.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_collections.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_collections.py Fri Mar 4 18:50:17 2011 @@ -10,12 +10,111 @@ import keyword import re import sys -from collections import Hashable, Iterable, Iterator -from collections import Sized, Container, Callable -from collections import Set, MutableSet -from collections import Mapping, MutableMapping, KeysView, ItemsView, UserDict -from collections import Sequence, MutableSequence -from collections import ByteString +from collections import UserDict +from collections import ChainMap +from collections.abc import Hashable, Iterable, Iterator +from collections.abc import Sized, Container, Callable +from collections.abc import Set, MutableSet +from collections.abc import Mapping, MutableMapping, KeysView, ItemsView +from collections.abc import Sequence, MutableSequence +from collections.abc import ByteString + + +################################################################################ +### ChainMap (helper class for configparser and the string module) +################################################################################ + +class TestChainMap(unittest.TestCase): + + def test_basics(self): + c = ChainMap() + c['a'] = 1 + c['b'] = 2 + d = c.new_child() + d['b'] = 20 + d['c'] = 30 + self.assertEqual(d.maps, [{'b':20, 'c':30}, {'a':1, 'b':2}]) # check internal state + self.assertEqual(d.items(), dict(a=1, b=20, c=30).items()) # check items/iter/getitem + self.assertEqual(len(d), 3) # check len + for key in 'abc': # check contains + self.assertIn(key, d) + for k, v in dict(a=1, b=20, c=30, z=100).items(): # check get + self.assertEqual(d.get(k, 100), v) + + del d['b'] # unmask a value + self.assertEqual(d.maps, [{'c':30}, {'a':1, 'b':2}]) # check internal state + self.assertEqual(d.items(), dict(a=1, b=2, c=30).items()) # check items/iter/getitem + self.assertEqual(len(d), 3) # check len + for key in 'abc': # check contains + self.assertIn(key, d) + for k, v in dict(a=1, b=2, c=30, z=100).items(): # check get + self.assertEqual(d.get(k, 100), v) + self.assertIn(repr(d), [ # check repr + type(d).__name__ + "({'c': 30}, {'a': 1, 'b': 2})", + type(d).__name__ + "({'c': 30}, {'b': 2, 'a': 1})" + ]) + + for e in d.copy(), copy.copy(d): # check shallow copies + self.assertEqual(d, e) + self.assertEqual(d.maps, e.maps) + self.assertIsNot(d, e) + self.assertIsNot(d.maps[0], e.maps[0]) + for m1, m2 in zip(d.maps[1:], e.maps[1:]): + self.assertIs(m1, m2) + + for e in [pickle.loads(pickle.dumps(d)), + copy.deepcopy(d), + eval(repr(d)) + ]: # check deep copies + self.assertEqual(d, e) + self.assertEqual(d.maps, e.maps) + self.assertIsNot(d, e) + for m1, m2 in zip(d.maps, e.maps): + self.assertIsNot(m1, m2, e) + + f = d.new_child() + f['b'] = 5 + self.assertEqual(f.maps, [{'b': 5}, {'c':30}, {'a':1, 'b':2}]) + self.assertEqual(f.parents.maps, [{'c':30}, {'a':1, 'b':2}]) # check parents + self.assertEqual(f['b'], 5) # find first in chain + self.assertEqual(f.parents['b'], 2) # look beyond maps[0] + + def test_contructor(self): + self.assertEqual(ChainMap().maps, [{}]) # no-args --> one new dict + self.assertEqual(ChainMap({1:2}).maps, [{1:2}]) # 1 arg --> list + + def test_bool(self): + self.assertFalse(ChainMap()) + self.assertFalse(ChainMap({}, {})) + self.assertTrue(ChainMap({1:2}, {})) + self.assertTrue(ChainMap({}, {1:2})) + + def test_missing(self): + class DefaultChainMap(ChainMap): + def __missing__(self, key): + return 999 + d = DefaultChainMap(dict(a=1, b=2), dict(b=20, c=30)) + for k, v in dict(a=1, b=2, c=30, d=999).items(): + self.assertEqual(d[k], v) # check __getitem__ w/missing + for k, v in dict(a=1, b=2, c=30, d=77).items(): + self.assertEqual(d.get(k, 77), v) # check get() w/ missing + for k, v in dict(a=True, b=True, c=True, d=False).items(): + self.assertEqual(k in d, v) # check __contains__ w/missing + self.assertEqual(d.pop('a', 1001), 1, d) + self.assertEqual(d.pop('a', 1002), 1002) # check pop() w/missing + self.assertEqual(d.popitem(), ('b', 2)) # check popitem() w/missing + with self.assertRaises(KeyError): + d.popitem() + + def test_dict_coercion(self): + d = ChainMap(dict(a=1, b=2), dict(b=20, c=30)) + self.assertEqual(dict(d), dict(a=1, b=2, c=30)) + self.assertEqual(dict(d.items()), dict(a=1, b=2, c=30)) + + +################################################################################ +### Named Tuples +################################################################################ TestNT = namedtuple('TestNT', 'x y z') # type used for pickle tests @@ -228,6 +327,10 @@ self.assertEqual(repr(B(1)), 'B(x=1)') +################################################################################ +### Abstract Base Classes +################################################################################ + class ABCTestCase(unittest.TestCase): def validate_abstract_methods(self, abc, *names): @@ -507,7 +610,7 @@ def test_issue_4920(self): # MutableSet.pop() method did not work - class MySet(collections.MutableSet): + class MySet(MutableSet): __slots__=['__s'] def __init__(self,items=None): if items is None: @@ -553,7 +656,7 @@ self.assertTrue(issubclass(sample, Mapping)) self.validate_abstract_methods(Mapping, '__contains__', '__iter__', '__len__', '__getitem__') - class MyMapping(collections.Mapping): + class MyMapping(Mapping): def __len__(self): return 0 def __getitem__(self, i): @@ -625,6 +728,49 @@ self.validate_abstract_methods(MutableSequence, '__contains__', '__iter__', '__len__', '__getitem__', '__setitem__', '__delitem__', 'insert') + def test_MutableSequence_mixins(self): + # Test the mixins of MutableSequence by creating a miminal concrete + # class inherited from it. + class MutableSequenceSubclass(MutableSequence): + def __init__(self): + self.lst = [] + + def __setitem__(self, index, value): + self.lst[index] = value + + def __getitem__(self, index): + return self.lst[index] + + def __len__(self): + return len(self.lst) + + def __delitem__(self, index): + del self.lst[index] + + def insert(self, index, value): + self.lst.insert(index, value) + + mss = MutableSequenceSubclass() + mss.append(0) + mss.extend((1, 2, 3, 4)) + self.assertEqual(len(mss), 5) + self.assertEqual(mss[3], 3) + mss.reverse() + self.assertEqual(mss[3], 1) + mss.pop() + self.assertEqual(len(mss), 4) + mss.remove(3) + self.assertEqual(len(mss), 3) + mss += (10, 20, 30) + self.assertEqual(len(mss), 6) + self.assertEqual(mss[-1], 30) + mss.clear() + self.assertEqual(len(mss), 0) + +################################################################################ +### Counter +################################################################################ + class TestCounter(unittest.TestCase): def test_basics(self): @@ -788,6 +934,11 @@ self.assertEqual(m, OrderedDict([('a', 5), ('b', 2), ('r', 2), ('c', 1), ('d', 1)])) + +################################################################################ +### OrderedDict +################################################################################ + class TestOrderedDict(unittest.TestCase): def test_init(self): @@ -1066,12 +1217,16 @@ self.assertRaises(KeyError, d.popitem) +################################################################################ +### Run tests +################################################################################ + import doctest, collections def test_main(verbose=None): NamedTupleDocs = doctest.DocTestSuite(module=collections) test_classes = [TestNamedTuple, NamedTupleDocs, TestOneTrickPonyABCs, - TestCollectionABCs, TestCounter, + TestCollectionABCs, TestCounter, TestChainMap, TestOrderedDict, GeneralMappingTests, SubclassMappingTests] support.run_unittest(*test_classes) support.run_doctest(collections, verbose) Modified: python/branches/py3k-cdecimal/Lib/test/test_compileall.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_compileall.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_compileall.py Fri Mar 4 18:50:17 2011 @@ -24,6 +24,10 @@ self.source_path2 = os.path.join(self.directory, '_test2.py') self.bc_path2 = imp.cache_from_source(self.source_path2) shutil.copyfile(self.source_path, self.source_path2) + self.subdirectory = os.path.join(self.directory, '_subdir') + os.mkdir(self.subdirectory) + self.source_path3 = os.path.join(self.subdirectory, '_test3.py') + shutil.copyfile(self.source_path, self.source_path3) def tearDown(self): shutil.rmtree(self.directory) @@ -96,6 +100,12 @@ cached = imp.cache_from_source(self.source_path, debug_override=not optimize) self.assertTrue(os.path.isfile(cached)) + cached2 = imp.cache_from_source(self.source_path2, + debug_override=not optimize) + self.assertTrue(os.path.isfile(cached2)) + cached3 = imp.cache_from_source(self.source_path3, + debug_override=not optimize) + self.assertTrue(os.path.isfile(cached3)) class EncodingTest(unittest.TestCase): @@ -335,7 +345,7 @@ def test_invalid_arg_produces_message(self): out = self.assertRunOK('badfilename') - self.assertRegex(out, b"Can't list badfilename") + self.assertRegex(out, b"Can't list 'badfilename'") def test_main(): Modified: python/branches/py3k-cdecimal/Lib/test/test_crypt.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_crypt.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_crypt.py Fri Mar 4 18:50:17 2011 @@ -10,6 +10,25 @@ if support.verbose: print('Test encryption: ', c) + def test_salt(self): + self.assertEqual(len(crypt._saltchars), 64) + for method in crypt.methods: + salt = crypt.mksalt(method) + self.assertEqual(len(salt), + method.salt_chars + (3 if method.ident else 0)) + + def test_saltedcrypt(self): + for method in crypt.methods: + pw = crypt.crypt('assword', method) + self.assertEqual(len(pw), method.total_size) + pw = crypt.crypt('assword', crypt.mksalt(method)) + self.assertEqual(len(pw), method.total_size) + + def test_methods(self): + # Gurantee that METHOD_CRYPT is the last method in crypt.methods. + self.assertTrue(len(crypt.methods) >= 1) + self.assertEqual(crypt.METHOD_CRYPT, crypt.methods[-1]) + def test_main(): support.run_unittest(CryptTestCase) Modified: python/branches/py3k-cdecimal/Lib/test/test_dbm.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_dbm.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_dbm.py Fri Mar 4 18:50:17 2011 @@ -123,7 +123,7 @@ name = module.__name__ if name == 'dbm.dumb': continue # whichdb can't support dbm.dumb - test.support.unlink(_fname) + delete_files() f = module.open(_fname, 'c') f.close() self.assertEqual(name, dbm.whichdb(_fname)) Modified: python/branches/py3k-cdecimal/Lib/test/test_deque.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_deque.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_deque.py Fri Mar 4 18:50:17 2011 @@ -138,6 +138,15 @@ m.d = d self.assertRaises(RuntimeError, d.count, 3) + # test issue11004 + # block advance failed after rotation aligned elements on right side of block + d = deque([None]*16) + for i in range(len(d)): + d.rotate(-1) + d.rotate(1) + self.assertEqual(d.count(1), 0) + self.assertEqual(d.count(None), 16) + def test_comparisons(self): d = deque('xabc'); d.popleft() for e in [d, deque('abc'), deque('ab'), deque(), list(d)]: Modified: python/branches/py3k-cdecimal/Lib/test/test_descr.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_descr.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_descr.py Fri Mar 4 18:50:17 2011 @@ -4224,6 +4224,17 @@ self.assertRaises(AttributeError, getattr, EvilGetattribute(), "attr") + def test_abstractmethods(self): + # type pretends not to have __abstractmethods__. + self.assertRaises(AttributeError, getattr, type, "__abstractmethods__") + class meta(type): + pass + self.assertRaises(AttributeError, getattr, meta, "__abstractmethods__") + class X(object): + pass + with self.assertRaises(AttributeError): + del X.__abstractmethods__ + class DictProxyTests(unittest.TestCase): def setUp(self): @@ -4232,6 +4243,8 @@ pass self.C = C + @unittest.skipIf(hasattr(sys, 'gettrace') and sys.gettrace(), + 'trace function introduces __local__') def test_iter_keys(self): # Testing dict-proxy keys... it = self.C.__dict__.keys() @@ -4241,6 +4254,8 @@ self.assertEqual(keys, ['__dict__', '__doc__', '__module__', '__weakref__', 'meth']) + @unittest.skipIf(hasattr(sys, 'gettrace') and sys.gettrace(), + 'trace function introduces __local__') def test_iter_values(self): # Testing dict-proxy values... it = self.C.__dict__.values() @@ -4248,6 +4263,8 @@ values = list(it) self.assertEqual(len(values), 5) + @unittest.skipIf(hasattr(sys, 'gettrace') and sys.gettrace(), + 'trace function introduces __local__') def test_iter_items(self): # Testing dict-proxy iteritems... it = self.C.__dict__.items() Modified: python/branches/py3k-cdecimal/Lib/test/test_descrtut.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_descrtut.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_descrtut.py Fri Mar 4 18:50:17 2011 @@ -199,6 +199,8 @@ '__str__', '__subclasshook__', 'append', + 'clear', + 'copy', 'count', 'extend', 'index', Modified: python/branches/py3k-cdecimal/Lib/test/test_doctest.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_doctest.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_doctest.py Fri Mar 4 18:50:17 2011 @@ -5,6 +5,7 @@ from test import support import doctest import os +import sys # NOTE: There are some additional tests relating to interaction with @@ -373,7 +374,7 @@ >>> tests = finder.find(sample_func) >>> print(tests) # doctest: +ELLIPSIS - [] + [] The exact name depends on how test_doctest was invoked, so allow for leading path components. @@ -1686,226 +1687,227 @@ """ -def test_pdb_set_trace(): - """Using pdb.set_trace from a doctest. - - You can use pdb.set_trace from a doctest. To do so, you must - retrieve the set_trace function from the pdb module at the time - you use it. The doctest module changes sys.stdout so that it can - capture program output. It also temporarily replaces pdb.set_trace - with a version that restores stdout. This is necessary for you to - see debugger output. - - >>> doc = ''' - ... >>> x = 42 - ... >>> raise Exception('cl?') - ... Traceback (most recent call last): - ... Exception: cl? - ... >>> import pdb; pdb.set_trace() - ... ''' - >>> parser = doctest.DocTestParser() - >>> test = parser.get_doctest(doc, {}, "foo-bar at baz", "foo-bar at baz.py", 0) - >>> runner = doctest.DocTestRunner(verbose=False) - - To demonstrate this, we'll create a fake standard input that - captures our debugger input: - - >>> import tempfile - >>> real_stdin = sys.stdin - >>> sys.stdin = _FakeInput([ - ... 'print(x)', # print data defined by the example - ... 'continue', # stop debugging - ... '']) - - >>> try: runner.run(test) - ... finally: sys.stdin = real_stdin - --Return-- - > (1)()->None - -> import pdb; pdb.set_trace() - (Pdb) print(x) - 42 - (Pdb) continue - TestResults(failed=0, attempted=3) - - You can also put pdb.set_trace in a function called from a test: - - >>> def calls_set_trace(): - ... y=2 - ... import pdb; pdb.set_trace() - - >>> doc = ''' - ... >>> x=1 - ... >>> calls_set_trace() - ... ''' - >>> test = parser.get_doctest(doc, globals(), "foo-bar at baz", "foo-bar at baz.py", 0) - >>> real_stdin = sys.stdin - >>> sys.stdin = _FakeInput([ - ... 'print(y)', # print data defined in the function - ... 'up', # out of function - ... 'print(x)', # print data defined by the example - ... 'continue', # stop debugging - ... '']) - - >>> try: - ... runner.run(test) - ... finally: - ... sys.stdin = real_stdin - --Return-- - > (3)calls_set_trace()->None - -> import pdb; pdb.set_trace() - (Pdb) print(y) - 2 - (Pdb) up - > (1)() - -> calls_set_trace() - (Pdb) print(x) - 1 - (Pdb) continue - TestResults(failed=0, attempted=2) - - During interactive debugging, source code is shown, even for - doctest examples: - - >>> doc = ''' - ... >>> def f(x): - ... ... g(x*2) - ... >>> def g(x): - ... ... print(x+3) - ... ... import pdb; pdb.set_trace() - ... >>> f(3) - ... ''' - >>> test = parser.get_doctest(doc, globals(), "foo-bar at baz", "foo-bar at baz.py", 0) - >>> real_stdin = sys.stdin - >>> sys.stdin = _FakeInput([ - ... 'list', # list source from example 2 - ... 'next', # return from g() - ... 'list', # list source from example 1 - ... 'next', # return from f() - ... 'list', # list source from example 3 - ... 'continue', # stop debugging - ... '']) - >>> try: runner.run(test) - ... finally: sys.stdin = real_stdin - ... # doctest: +NORMALIZE_WHITESPACE - --Return-- - > (3)g()->None - -> import pdb; pdb.set_trace() - (Pdb) list - 1 def g(x): - 2 print(x+3) - 3 -> import pdb; pdb.set_trace() - [EOF] - (Pdb) next - --Return-- - > (2)f()->None - -> g(x*2) - (Pdb) list - 1 def f(x): - 2 -> g(x*2) - [EOF] - (Pdb) next - --Return-- - > (1)()->None - -> f(3) - (Pdb) list - 1 -> f(3) - [EOF] - (Pdb) continue - ********************************************************************** - File "foo-bar at baz.py", line 7, in foo-bar at baz - Failed example: - f(3) - Expected nothing - Got: - 9 - TestResults(failed=1, attempted=3) - """ - -def test_pdb_set_trace_nested(): - """This illustrates more-demanding use of set_trace with nested functions. - - >>> class C(object): - ... def calls_set_trace(self): - ... y = 1 - ... import pdb; pdb.set_trace() - ... self.f1() - ... y = 2 - ... def f1(self): - ... x = 1 - ... self.f2() - ... x = 2 - ... def f2(self): - ... z = 1 - ... z = 2 - - >>> calls_set_trace = C().calls_set_trace - - >>> doc = ''' - ... >>> a = 1 - ... >>> calls_set_trace() - ... ''' - >>> parser = doctest.DocTestParser() - >>> runner = doctest.DocTestRunner(verbose=False) - >>> test = parser.get_doctest(doc, globals(), "foo-bar at baz", "foo-bar at baz.py", 0) - >>> real_stdin = sys.stdin - >>> sys.stdin = _FakeInput([ - ... 'print(y)', # print data defined in the function - ... 'step', 'step', 'step', 'step', 'step', 'step', 'print(z)', - ... 'up', 'print(x)', - ... 'up', 'print(y)', - ... 'up', 'print(foo)', - ... 'continue', # stop debugging - ... '']) - - >>> try: - ... runner.run(test) - ... finally: - ... sys.stdin = real_stdin - ... # doctest: +REPORT_NDIFF - > (5)calls_set_trace() - -> self.f1() - (Pdb) print(y) - 1 - (Pdb) step - --Call-- - > (7)f1() - -> def f1(self): - (Pdb) step - > (8)f1() - -> x = 1 - (Pdb) step - > (9)f1() - -> self.f2() - (Pdb) step - --Call-- - > (11)f2() - -> def f2(self): - (Pdb) step - > (12)f2() - -> z = 1 - (Pdb) step - > (13)f2() - -> z = 2 - (Pdb) print(z) - 1 - (Pdb) up - > (9)f1() - -> self.f2() - (Pdb) print(x) - 1 - (Pdb) up - > (5)calls_set_trace() - -> self.f1() - (Pdb) print(y) - 1 - (Pdb) up - > (1)() - -> calls_set_trace() - (Pdb) print(foo) - *** NameError: name 'foo' is not defined - (Pdb) continue - TestResults(failed=0, attempted=2) -""" +if not hasattr(sys, 'gettrace') or not sys.gettrace(): + def test_pdb_set_trace(): + """Using pdb.set_trace from a doctest. + + You can use pdb.set_trace from a doctest. To do so, you must + retrieve the set_trace function from the pdb module at the time + you use it. The doctest module changes sys.stdout so that it can + capture program output. It also temporarily replaces pdb.set_trace + with a version that restores stdout. This is necessary for you to + see debugger output. + + >>> doc = ''' + ... >>> x = 42 + ... >>> raise Exception('cl?') + ... Traceback (most recent call last): + ... Exception: cl? + ... >>> import pdb; pdb.set_trace() + ... ''' + >>> parser = doctest.DocTestParser() + >>> test = parser.get_doctest(doc, {}, "foo-bar at baz", "foo-bar at baz.py", 0) + >>> runner = doctest.DocTestRunner(verbose=False) + + To demonstrate this, we'll create a fake standard input that + captures our debugger input: + + >>> import tempfile + >>> real_stdin = sys.stdin + >>> sys.stdin = _FakeInput([ + ... 'print(x)', # print data defined by the example + ... 'continue', # stop debugging + ... '']) + + >>> try: runner.run(test) + ... finally: sys.stdin = real_stdin + --Return-- + > (1)()->None + -> import pdb; pdb.set_trace() + (Pdb) print(x) + 42 + (Pdb) continue + TestResults(failed=0, attempted=3) + + You can also put pdb.set_trace in a function called from a test: + + >>> def calls_set_trace(): + ... y=2 + ... import pdb; pdb.set_trace() + + >>> doc = ''' + ... >>> x=1 + ... >>> calls_set_trace() + ... ''' + >>> test = parser.get_doctest(doc, globals(), "foo-bar at baz", "foo-bar at baz.py", 0) + >>> real_stdin = sys.stdin + >>> sys.stdin = _FakeInput([ + ... 'print(y)', # print data defined in the function + ... 'up', # out of function + ... 'print(x)', # print data defined by the example + ... 'continue', # stop debugging + ... '']) + + >>> try: + ... runner.run(test) + ... finally: + ... sys.stdin = real_stdin + --Return-- + > (3)calls_set_trace()->None + -> import pdb; pdb.set_trace() + (Pdb) print(y) + 2 + (Pdb) up + > (1)() + -> calls_set_trace() + (Pdb) print(x) + 1 + (Pdb) continue + TestResults(failed=0, attempted=2) + + During interactive debugging, source code is shown, even for + doctest examples: + + >>> doc = ''' + ... >>> def f(x): + ... ... g(x*2) + ... >>> def g(x): + ... ... print(x+3) + ... ... import pdb; pdb.set_trace() + ... >>> f(3) + ... ''' + >>> test = parser.get_doctest(doc, globals(), "foo-bar at baz", "foo-bar at baz.py", 0) + >>> real_stdin = sys.stdin + >>> sys.stdin = _FakeInput([ + ... 'list', # list source from example 2 + ... 'next', # return from g() + ... 'list', # list source from example 1 + ... 'next', # return from f() + ... 'list', # list source from example 3 + ... 'continue', # stop debugging + ... '']) + >>> try: runner.run(test) + ... finally: sys.stdin = real_stdin + ... # doctest: +NORMALIZE_WHITESPACE + --Return-- + > (3)g()->None + -> import pdb; pdb.set_trace() + (Pdb) list + 1 def g(x): + 2 print(x+3) + 3 -> import pdb; pdb.set_trace() + [EOF] + (Pdb) next + --Return-- + > (2)f()->None + -> g(x*2) + (Pdb) list + 1 def f(x): + 2 -> g(x*2) + [EOF] + (Pdb) next + --Return-- + > (1)()->None + -> f(3) + (Pdb) list + 1 -> f(3) + [EOF] + (Pdb) continue + ********************************************************************** + File "foo-bar at baz.py", line 7, in foo-bar at baz + Failed example: + f(3) + Expected nothing + Got: + 9 + TestResults(failed=1, attempted=3) + """ + + def test_pdb_set_trace_nested(): + """This illustrates more-demanding use of set_trace with nested functions. + + >>> class C(object): + ... def calls_set_trace(self): + ... y = 1 + ... import pdb; pdb.set_trace() + ... self.f1() + ... y = 2 + ... def f1(self): + ... x = 1 + ... self.f2() + ... x = 2 + ... def f2(self): + ... z = 1 + ... z = 2 + + >>> calls_set_trace = C().calls_set_trace + + >>> doc = ''' + ... >>> a = 1 + ... >>> calls_set_trace() + ... ''' + >>> parser = doctest.DocTestParser() + >>> runner = doctest.DocTestRunner(verbose=False) + >>> test = parser.get_doctest(doc, globals(), "foo-bar at baz", "foo-bar at baz.py", 0) + >>> real_stdin = sys.stdin + >>> sys.stdin = _FakeInput([ + ... 'print(y)', # print data defined in the function + ... 'step', 'step', 'step', 'step', 'step', 'step', 'print(z)', + ... 'up', 'print(x)', + ... 'up', 'print(y)', + ... 'up', 'print(foo)', + ... 'continue', # stop debugging + ... '']) + + >>> try: + ... runner.run(test) + ... finally: + ... sys.stdin = real_stdin + ... # doctest: +REPORT_NDIFF + > (5)calls_set_trace() + -> self.f1() + (Pdb) print(y) + 1 + (Pdb) step + --Call-- + > (7)f1() + -> def f1(self): + (Pdb) step + > (8)f1() + -> x = 1 + (Pdb) step + > (9)f1() + -> self.f2() + (Pdb) step + --Call-- + > (11)f2() + -> def f2(self): + (Pdb) step + > (12)f2() + -> z = 1 + (Pdb) step + > (13)f2() + -> z = 2 + (Pdb) print(z) + 1 + (Pdb) up + > (9)f1() + -> self.f2() + (Pdb) print(x) + 1 + (Pdb) up + > (5)calls_set_trace() + -> self.f1() + (Pdb) print(y) + 1 + (Pdb) up + > (1)() + -> calls_set_trace() + (Pdb) print(foo) + *** NameError: name 'foo' is not defined + (Pdb) continue + TestResults(failed=0, attempted=2) + """ def test_DocTestSuite(): """DocTestSuite creates a unittest test suite from a doctest. Modified: python/branches/py3k-cdecimal/Lib/test/test_dummy_thread.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_dummy_thread.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_dummy_thread.py Fri Mar 4 18:50:17 2011 @@ -35,8 +35,8 @@ "Lock object did not release properly.") def test_improper_release(self): - #Make sure release of an unlocked thread raises _thread.error - self.assertRaises(_thread.error, self.lock.release) + #Make sure release of an unlocked thread raises RuntimeError + self.assertRaises(RuntimeError, self.lock.release) def test_cond_acquire_success(self): #Make sure the conditional acquiring of the lock works. Modified: python/branches/py3k-cdecimal/Lib/test/test_exceptions.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_exceptions.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_exceptions.py Fri Mar 4 18:50:17 2011 @@ -7,7 +7,7 @@ import weakref from test.support import (TESTFN, unlink, run_unittest, captured_output, - gc_collect, cpython_only) + gc_collect, cpython_only, no_tracing) # XXX This is not really enough, each *operation* should be tested! @@ -388,6 +388,7 @@ x = DerivedException(fancy_arg=42) self.assertEqual(x.fancy_arg, 42) + @no_tracing def testInfiniteRecursion(self): def f(): return f() @@ -631,6 +632,7 @@ u.start = 1000 self.assertEqual(str(u), "can't translate characters in position 1000-4: 965230951443685724997") + @no_tracing def test_badisinstance(self): # Bug #2542: if issubclass(e, MyException) raises an exception, # it should be ignored @@ -741,6 +743,7 @@ self.fail("MemoryError not raised") self.assertEqual(wr(), None) + @no_tracing def test_recursion_error_cleanup(self): # Same test as above, but with "recursion exceeded" errors class C: Modified: python/branches/py3k-cdecimal/Lib/test/test_float.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_float.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_float.py Fri Mar 4 18:50:17 2011 @@ -88,7 +88,7 @@ self.assertRaises(ValueError, float, " -0x3.p-1 ") self.assertRaises(ValueError, float, " +0x3.p-1 ") self.assertEqual(float(" 25.e-1 "), 2.5) - self.assertEqual(support.fcmp(float(" .25e-1 "), .025), 0) + self.assertAlmostEqual(float(" .25e-1 "), .025) def test_floatconversion(self): # Make sure that calls to __float__() work properly Modified: python/branches/py3k-cdecimal/Lib/test/test_ftplib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_ftplib.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_ftplib.py Fri Mar 4 18:50:17 2011 @@ -608,6 +608,20 @@ self.assertEqual(self.server.handler_instance.last_received_cmd, 'quit') self.assertFalse(is_client_connected()) + def test_source_address(self): + self.client.quit() + port = support.find_unused_port() + self.client.connect(self.server.host, self.server.port, + source_address=(HOST, port)) + self.assertEqual(self.client.sock.getsockname()[1], port) + self.client.quit() + + def test_source_address_passive_connection(self): + port = support.find_unused_port() + self.client.source_address = (HOST, port) + sock = self.client.transfercmd('list') + self.assertEqual(sock.getsockname()[1], port) + def test_parse257(self): self.assertEqual(ftplib.parse257('257 "/foo/bar"'), '/foo/bar') self.assertEqual(ftplib.parse257('257 "/foo/bar" created'), '/foo/bar') Modified: python/branches/py3k-cdecimal/Lib/test/test_gc.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_gc.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_gc.py Fri Mar 4 18:50:17 2011 @@ -1,5 +1,6 @@ import unittest -from test.support import verbose, run_unittest, strip_python_stderr +from test.support import (verbose, refcount_test, run_unittest, + strip_python_stderr) import sys import gc import weakref @@ -175,6 +176,7 @@ del d self.assertEqual(gc.collect(), 2) + @refcount_test def test_frame(self): def f(): frame = sys._getframe() @@ -242,6 +244,7 @@ # For example: # - disposed tuples are not freed, but reused # - the call to assertEqual somehow avoids building its args tuple + @refcount_test def test_get_count(self): # Avoid future allocation of method object assertEqual = self._baseAssertEqual @@ -252,6 +255,7 @@ # the dict, and the tuple returned by get_count() assertEqual(gc.get_count(), (2, 0, 0)) + @refcount_test def test_collect_generations(self): # Avoid future allocation of method object assertEqual = self.assertEqual Modified: python/branches/py3k-cdecimal/Lib/test/test_genexps.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_genexps.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_genexps.py Fri Mar 4 18:50:17 2011 @@ -257,11 +257,15 @@ """ +import sys -__test__ = {'doctests' : doctests} +# Trace function can throw off the tuple reuse test. +if hasattr(sys, 'gettrace') and sys.gettrace(): + __test__ = {} +else: + __test__ = {'doctests' : doctests} def test_main(verbose=None): - import sys from test import support from test import test_genexps support.run_doctest(test_genexps, verbose) Modified: python/branches/py3k-cdecimal/Lib/test/test_getargs2.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_getargs2.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_getargs2.py Fri Mar 4 18:50:17 2011 @@ -381,8 +381,10 @@ self.assertRaises(TypeError, getargs_w_star, 'abc\xe9') self.assertRaises(TypeError, getargs_w_star, b'bytes') self.assertRaises(TypeError, getargs_w_star, b'nul:\0') + self.assertRaises(TypeError, getargs_w_star, memoryview(b'bytes')) self.assertEqual(getargs_w_star(bytearray(b'bytearray')), b'[ytearra]') - self.assertEqual(getargs_w_star(memoryview(b'memoryview')), b'[emoryvie]') + self.assertEqual(getargs_w_star(memoryview(bytearray(b'memoryview'))), + b'[emoryvie]') self.assertRaises(TypeError, getargs_w_star, None) Modified: python/branches/py3k-cdecimal/Lib/test/test_hashlib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_hashlib.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_hashlib.py Fri Mar 4 18:50:17 2011 @@ -103,7 +103,7 @@ def test_algorithms_guaranteed(self): self.assertEqual(hashlib.algorithms_guaranteed, - tuple(_algo for _algo in self.supported_hash_names + set(_algo for _algo in self.supported_hash_names if _algo.islower())) def test_algorithms_available(self): Modified: python/branches/py3k-cdecimal/Lib/test/test_httpservers.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_httpservers.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_httpservers.py Fri Mar 4 18:50:17 2011 @@ -97,6 +97,14 @@ self.send_header('Connection', 'close') self.end_headers() + def do_LATINONEHEADER(self): + self.send_response(999) + self.send_header('X-Special', 'D?ngerous Mind') + self.send_header('Connection', 'close') + self.end_headers() + body = self.headers['x-special-incoming'].encode('utf-8') + self.wfile.write(body) + def setUp(self): BaseTestCase.setUp(self) self.con = http.client.HTTPConnection('localhost', self.PORT) @@ -194,6 +202,14 @@ res = self.con.getresponse() self.assertEqual(res.status, 999) + def test_latin1_header(self): + self.con.request('LATINONEHEADER', '/', headers={ + 'X-Special-Incoming': '?rger mit Unicode' + }) + res = self.con.getresponse() + self.assertEqual(res.getheader('X-Special'), 'D?ngerous Mind') + self.assertEqual(res.read(), '?rger mit Unicode'.encode('utf-8')) + class SimpleHTTPServerTestCase(BaseTestCase): class request_handler(NoLogRequestHandler, SimpleHTTPRequestHandler): Modified: python/branches/py3k-cdecimal/Lib/test/test_imaplib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_imaplib.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_imaplib.py Fri Mar 4 18:50:17 2011 @@ -9,6 +9,7 @@ import os.path import socketserver import time +import calendar from test.support import reap_threads, verbose, transient_internet import unittest @@ -23,6 +24,18 @@ class TestImaplib(unittest.TestCase): + def test_Internaldate2tuple(self): + t0 = calendar.timegm((2000, 1, 1, 0, 0, 0, -1, -1, -1)) + tt = imaplib.Internaldate2tuple( + b'25 (INTERNALDATE "01-Jan-2000 00:00:00 +0000")') + self.assertEqual(time.mktime(tt), t0) + tt = imaplib.Internaldate2tuple( + b'25 (INTERNALDATE "01-Jan-2000 11:30:00 +1130")') + self.assertEqual(time.mktime(tt), t0) + tt = imaplib.Internaldate2tuple( + b'25 (INTERNALDATE "31-Dec-1999 12:30:00 -1130")') + self.assertEqual(time.mktime(tt), t0) + def test_that_Time2Internaldate_returns_a_result(self): # We can check only that it successfully produces a result, # not the correctness of the result itself, since the result Modified: python/branches/py3k-cdecimal/Lib/test/test_io.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_io.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_io.py Fri Mar 4 18:50:17 2011 @@ -46,7 +46,7 @@ def _default_chunk_size(): """Get the default TextIOWrapper chunk size""" - with open(__file__, "r", encoding="latin1") as f: + with open(__file__, "r", encoding="latin-1") as f: return f._CHUNK_SIZE @@ -1684,11 +1684,11 @@ r = self.BytesIO(b"\xc3\xa9\n\n") b = self.BufferedReader(r, 1000) t = self.TextIOWrapper(b) - t.__init__(b, encoding="latin1", newline="\r\n") - self.assertEqual(t.encoding, "latin1") + t.__init__(b, encoding="latin-1", newline="\r\n") + self.assertEqual(t.encoding, "latin-1") self.assertEqual(t.line_buffering, False) - t.__init__(b, encoding="utf8", line_buffering=True) - self.assertEqual(t.encoding, "utf8") + t.__init__(b, encoding="utf-8", line_buffering=True) + self.assertEqual(t.encoding, "utf-8") self.assertEqual(t.line_buffering, True) self.assertEqual("\xe9\n", t.readline()) self.assertRaises(TypeError, t.__init__, b, newline=42) @@ -1738,8 +1738,8 @@ def test_encoding(self): # Check the encoding attribute is always set, and valid b = self.BytesIO() - t = self.TextIOWrapper(b, encoding="utf8") - self.assertEqual(t.encoding, "utf8") + t = self.TextIOWrapper(b, encoding="utf-8") + self.assertEqual(t.encoding, "utf-8") t = self.TextIOWrapper(b) self.assertTrue(t.encoding is not None) codecs.lookup(t.encoding) @@ -1918,7 +1918,7 @@ def test_basic_io(self): for chunksize in (1, 2, 3, 4, 5, 15, 16, 17, 31, 32, 33, 63, 64, 65): - for enc in "ascii", "latin1", "utf8" :# , "utf-16-be", "utf-16-le": + for enc in "ascii", "latin-1", "utf-8" :# , "utf-16-be", "utf-16-le": f = self.open(support.TESTFN, "w+", encoding=enc) f._CHUNK_SIZE = chunksize self.assertEqual(f.write("abc"), 3) @@ -1968,7 +1968,7 @@ self.assertEqual(rlines, wlines) def test_telling(self): - f = self.open(support.TESTFN, "w+", encoding="utf8") + f = self.open(support.TESTFN, "w+", encoding="utf-8") p0 = f.tell() f.write("\xff\n") p1 = f.tell() @@ -2214,6 +2214,7 @@ with self.open(support.TESTFN, "w", errors="replace") as f: self.assertEqual(f.errors, "replace") + @support.no_tracing @unittest.skipUnless(threading, 'Threading required for this test.') def test_threads_write(self): # Issue6750: concurrent writes could duplicate data @@ -2622,7 +2623,8 @@ @unittest.skipUnless(threading, 'Threading required for this test.') def check_interrupted_write(self, item, bytes, **fdopen_kwargs): """Check that a partial write, when it gets interrupted, properly - invokes the signal handler.""" + invokes the signal handler, and bubbles up the exception raised + in the latter.""" read_results = [] def _read(): s = os.read(r, 1) @@ -2669,6 +2671,7 @@ def test_interrupted_write_text(self): self.check_interrupted_write("xy", b"xy", mode="w", encoding="ascii") + @support.no_tracing def check_reentrant_write(self, data, **fdopen_kwargs): def on_alarm(*args): # Will be called reentrantly from the same thread @@ -2701,6 +2704,98 @@ def test_reentrant_write_text(self): self.check_reentrant_write("xy", mode="w", encoding="ascii") + def check_interrupted_read_retry(self, decode, **fdopen_kwargs): + """Check that a buffered read, when it gets interrupted (either + returning a partial result or EINTR), properly invokes the signal + handler and retries if the latter returned successfully.""" + r, w = os.pipe() + fdopen_kwargs["closefd"] = False + def alarm_handler(sig, frame): + os.write(w, b"bar") + signal.signal(signal.SIGALRM, alarm_handler) + try: + rio = self.io.open(r, **fdopen_kwargs) + os.write(w, b"foo") + signal.alarm(1) + # Expected behaviour: + # - first raw read() returns partial b"foo" + # - second raw read() returns EINTR + # - third raw read() returns b"bar" + self.assertEqual(decode(rio.read(6)), "foobar") + finally: + rio.close() + os.close(w) + os.close(r) + + def test_interrupterd_read_retry_buffered(self): + self.check_interrupted_read_retry(lambda x: x.decode('latin1'), + mode="rb") + + def test_interrupterd_read_retry_text(self): + self.check_interrupted_read_retry(lambda x: x, + mode="r") + + @unittest.skipUnless(threading, 'Threading required for this test.') + def check_interrupted_write_retry(self, item, **fdopen_kwargs): + """Check that a buffered write, when it gets interrupted (either + returning a partial result or EINTR), properly invokes the signal + handler and retries if the latter returned successfully.""" + select = support.import_module("select") + # A quantity that exceeds the buffer size of an anonymous pipe's + # write end. + N = 1024 * 1024 + r, w = os.pipe() + fdopen_kwargs["closefd"] = False + # We need a separate thread to read from the pipe and allow the + # write() to finish. This thread is started after the SIGALRM is + # received (forcing a first EINTR in write()). + read_results = [] + write_finished = False + def _read(): + while not write_finished: + while r in select.select([r], [], [], 1.0)[0]: + s = os.read(r, 1024) + read_results.append(s) + t = threading.Thread(target=_read) + t.daemon = True + def alarm1(sig, frame): + signal.signal(signal.SIGALRM, alarm2) + signal.alarm(1) + def alarm2(sig, frame): + t.start() + signal.signal(signal.SIGALRM, alarm1) + try: + wio = self.io.open(w, **fdopen_kwargs) + signal.alarm(1) + # Expected behaviour: + # - first raw write() is partial (because of the limited pipe buffer + # and the first alarm) + # - second raw write() returns EINTR (because of the second alarm) + # - subsequent write()s are successful (either partial or complete) + self.assertEqual(N, wio.write(item * N)) + wio.flush() + write_finished = True + t.join() + self.assertEqual(N, sum(len(x) for x in read_results)) + finally: + write_finished = True + os.close(w) + os.close(r) + # This is deliberate. If we didn't close the file descriptor + # before closing wio, wio would try to flush its internal + # buffer, and could block (in case of failure). + try: + wio.close() + except IOError as e: + if e.errno != errno.EBADF: + raise + + def test_interrupterd_write_retry_buffered(self): + self.check_interrupted_write_retry(b"x", mode="wb") + + def test_interrupterd_write_retry_text(self): + self.check_interrupted_write_retry("x", mode="w", encoding="latin1") + class CSignalsTest(SignalsTest): io = io Modified: python/branches/py3k-cdecimal/Lib/test/test_logging.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_logging.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_logging.py Fri Mar 4 18:50:17 2011 @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright 2001-2010 by Vinay Sajip. All Rights Reserved. +# Copyright 2001-2011 by Vinay Sajip. All Rights Reserved. # # Permission to use, copy, modify, and distribute this software and its # documentation for any purpose and without fee is hereby granted, @@ -18,7 +18,7 @@ """Test harness for the logging module. Run all tests. -Copyright (C) 2001-2010 Vinay Sajip. All Rights Reserved. +Copyright (C) 2001-2011 Vinay Sajip. All Rights Reserved. """ import logging @@ -1907,6 +1907,8 @@ self.assertFalse(f.usesTime()) f = logging.Formatter('%(asctime)s') self.assertTrue(f.usesTime()) + f = logging.Formatter('%(asctime)-15s') + self.assertTrue(f.usesTime()) f = logging.Formatter('asctime') self.assertFalse(f.usesTime()) @@ -1920,6 +1922,10 @@ self.assertFalse(f.usesTime()) f = logging.Formatter('{asctime}', style='{') self.assertTrue(f.usesTime()) + f = logging.Formatter('{asctime!s:15}', style='{') + self.assertTrue(f.usesTime()) + f = logging.Formatter('{asctime:15}', style='{') + self.assertTrue(f.usesTime()) f = logging.Formatter('asctime', style='{') self.assertFalse(f.usesTime()) @@ -1935,6 +1941,8 @@ self.assertFalse(f.usesTime()) f = logging.Formatter('${asctime}', style='$') self.assertTrue(f.usesTime()) + f = logging.Formatter('${asctime', style='$') + self.assertFalse(f.usesTime()) f = logging.Formatter('$asctime', style='$') self.assertTrue(f.usesTime()) f = logging.Formatter('asctime', style='$') @@ -2044,13 +2052,43 @@ ('M', 60), ('H', 60 * 60), ('D', 60 * 60 * 24), - ('MIDNIGHT', 60 * 60 * 23), + ('MIDNIGHT', 60 * 60 * 24), # current time (epoch start) is a Thursday, W0 means Monday - ('W0', secs(days=4, hours=23)),): + ('W0', secs(days=4, hours=24)), + ): def test_compute_rollover(self, when=when, exp=exp): rh = logging.handlers.TimedRotatingFileHandler( - self.fn, when=when, interval=1, backupCount=0) - self.assertEqual(exp, rh.computeRollover(0.0)) + self.fn, when=when, interval=1, backupCount=0, utc=True) + currentTime = 0.0 + actual = rh.computeRollover(currentTime) + if exp != actual: + # Failures occur on some systems for MIDNIGHT and W0. + # Print detailed calculation for MIDNIGHT so we can try to see + # what's going on + import time + if when == 'MIDNIGHT': + try: + if rh.utc: + t = time.gmtime(currentTime) + else: + t = time.localtime(currentTime) + currentHour = t[3] + currentMinute = t[4] + currentSecond = t[5] + # r is the number of seconds left between now and midnight + r = logging.handlers._MIDNIGHT - ((currentHour * 60 + + currentMinute) * 60 + + currentSecond) + result = currentTime + r + print('t: %s (%s)' % (t, rh.utc), file=sys.stderr) + print('currentHour: %s' % currentHour, file=sys.stderr) + print('currentMinute: %s' % currentMinute, file=sys.stderr) + print('currentSecond: %s' % currentSecond, file=sys.stderr) + print('r: %s' % r, file=sys.stderr) + print('result: %s' % result, file=sys.stderr) + except Exception: + print('exception in diagnostic code: %s' % sys.exc_info()[1], file=sys.stderr) + self.assertEqual(exp, actual) rh.close() setattr(TimedRotatingFileHandlerTest, "test_compute_rollover_%s" % when, test_compute_rollover) @@ -2067,7 +2105,7 @@ LogRecordFactoryTest, ChildLoggerTest, QueueHandlerTest, RotatingFileHandlerTest, LastResortTest, - #TimedRotatingFileHandlerTest + TimedRotatingFileHandlerTest ) if __name__ == "__main__": Modified: python/branches/py3k-cdecimal/Lib/test/test_mailbox.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_mailbox.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_mailbox.py Fri Mar 4 18:50:17 2011 @@ -7,8 +7,10 @@ import email.message import re import io +import tempfile from test import support import unittest +import textwrap import mailbox import glob try: @@ -48,6 +50,8 @@ class TestMailbox(TestBase): + maxDiff = None + _factory = None # Overridden by subclasses to reuse tests _template = 'From: foo\n\n%s' @@ -69,14 +73,124 @@ self.assertEqual(len(self._box), 2) keys.append(self._box.add(email.message_from_string(_sample_message))) self.assertEqual(len(self._box), 3) - keys.append(self._box.add(io.StringIO(_sample_message))) + keys.append(self._box.add(io.BytesIO(_bytes_sample_message))) self.assertEqual(len(self._box), 4) keys.append(self._box.add(_sample_message)) self.assertEqual(len(self._box), 5) + keys.append(self._box.add(_bytes_sample_message)) + self.assertEqual(len(self._box), 6) + with self.assertWarns(DeprecationWarning): + keys.append(self._box.add( + io.TextIOWrapper(io.BytesIO(_bytes_sample_message)))) + self.assertEqual(len(self._box), 7) self.assertEqual(self._box.get_string(keys[0]), self._template % 0) - for i in (1, 2, 3, 4): + for i in (1, 2, 3, 4, 5, 6): self._check_sample(self._box[keys[i]]) + _nonascii_msg = textwrap.dedent("""\ + From: foo + Subject: Falinapt?r h?zhozsz?ll?t?ssal. M?r rendelt?l? + + 0 + """) + + def test_add_invalid_8bit_bytes_header(self): + key = self._box.add(self._nonascii_msg.encode('latin-1')) + self.assertEqual(len(self._box), 1) + self.assertEqual(self._box.get_bytes(key), + self._nonascii_msg.encode('latin-1')) + + def test_invalid_nonascii_header_as_string(self): + subj = self._nonascii_msg.splitlines()[1] + key = self._box.add(subj.encode('latin-1')) + self.assertEqual(self._box.get_string(key), + 'Subject: =?unknown-8bit?b?RmFsaW5hcHThciBo4Xpob3pzeuFsbO104XNz' + 'YWwuIE3hciByZW5kZWx06Ww/?=\n\n') + + def test_add_nonascii_string_header_raises(self): + with self.assertRaisesRegex(ValueError, "ASCII-only"): + self._box.add(self._nonascii_msg) + self._box.flush() + self.assertEqual(len(self._box), 0) + self.assertMailboxEmpty() + + def test_add_that_raises_leaves_mailbox_empty(self): + # XXX This test will start failing when Message learns to handle + # non-ASCII string headers, and a different internal failure will + # need to be found or manufactured. + with self.assertRaises(ValueError): + self._box.add(email.message_from_string("From: Alph?so")) + self.assertEqual(len(self._box), 0) + self._box.close() + self.assertMailboxEmpty() + + _non_latin_bin_msg = textwrap.dedent("""\ + From: foo at bar.com + To: b?z + Subject: Maintenant je vous pr?sente mon coll?gue, le pouf c?l?bre + \tJean de Baddie + Mime-Version: 1.0 + Content-Type: text/plain; charset="utf-8" + Content-Transfer-Encoding: 8bit + + ??, ??? ?????. + """).encode('utf-8') + + def test_add_8bit_body(self): + key = self._box.add(self._non_latin_bin_msg) + self.assertEqual(self._box.get_bytes(key), + self._non_latin_bin_msg) + with self._box.get_file(key) as f: + self.assertEqual(f.read(), + self._non_latin_bin_msg.replace(b'\n', + os.linesep.encode())) + self.assertEqual(self._box[key].get_payload(), + "??, ??? ?????.\n") + + def test_add_binary_file(self): + with tempfile.TemporaryFile('wb+') as f: + f.write(_bytes_sample_message) + f.seek(0) + key = self._box.add(f) + # See issue 11062 + if not isinstance(self._box, mailbox.Babyl): + self.assertEqual(self._box.get_bytes(key).split(b'\n'), + _bytes_sample_message.split(b'\n')) + + def test_add_binary_nonascii_file(self): + with tempfile.TemporaryFile('wb+') as f: + f.write(self._non_latin_bin_msg) + f.seek(0) + key = self._box.add(f) + # See issue 11062 + if not isinstance(self._box, mailbox.Babyl): + self.assertEqual(self._box.get_bytes(key).split(b'\n'), + self._non_latin_bin_msg.split(b'\n')) + + def test_add_text_file_warns(self): + with tempfile.TemporaryFile('w+') as f: + f.write(_sample_message) + f.seek(0) + with self.assertWarns(DeprecationWarning): + key = self._box.add(f) + # See issue 11062 + if not isinstance(self._box, mailbox.Babyl): + self.assertEqual(self._box.get_bytes(key).split(b'\n'), + _bytes_sample_message.split(b'\n')) + + def test_add_StringIO_warns(self): + with self.assertWarns(DeprecationWarning): + key = self._box.add(io.StringIO(self._template % "0")) + self.assertEqual(self._box.get_string(key), self._template % "0") + + def test_add_nonascii_StringIO_raises(self): + with self.assertWarns(DeprecationWarning): + with self.assertRaisesRegex(ValueError, "ASCII-only"): + self._box.add(io.StringIO(self._nonascii_msg)) + self.assertEqual(len(self._box), 0) + self._box.close() + self.assertMailboxEmpty() + def test_remove(self): # Remove messages using remove() self._test_remove_or_delitem(self._box.remove) @@ -154,12 +268,21 @@ self.assertEqual(msg0.get_payload(), '0') self._check_sample(self._box.get_message(key1)) + def test_get_bytes(self): + # Get bytes representations of messages + key0 = self._box.add(self._template % 0) + key1 = self._box.add(_sample_message) + self.assertEqual(self._box.get_bytes(key0), + (self._template % 0).encode('ascii')) + self.assertEqual(self._box.get_bytes(key1), _bytes_sample_message) + def test_get_string(self): # Get string representations of messages key0 = self._box.add(self._template % 0) key1 = self._box.add(_sample_message) self.assertEqual(self._box.get_string(key0), self._template % 0) - self.assertEqual(self._box.get_string(key1), _sample_message) + self.assertEqual(self._box.get_string(key1).split('\n'), + _sample_message.split('\n')) def test_get_file(self): # Get file representations of messages @@ -169,9 +292,9 @@ data0 = file.read() with self._box.get_file(key1) as file: data1 = file.read() - self.assertEqual(data0.replace(os.linesep, '\n'), + self.assertEqual(data0.decode('ascii').replace(os.linesep, '\n'), self._template % 0) - self.assertEqual(data1.replace(os.linesep, '\n'), + self.assertEqual(data1.decode('ascii').replace(os.linesep, '\n'), _sample_message) def test_iterkeys(self): @@ -405,11 +528,12 @@ def test_dump_message(self): # Write message representations to disk for input in (email.message_from_string(_sample_message), - _sample_message, io.StringIO(_sample_message)): - output = io.StringIO() + _sample_message, io.BytesIO(_bytes_sample_message)): + output = io.BytesIO() self._box._dump_message(input, output) - self.assertEqual(output.getvalue(), _sample_message) - output = io.StringIO() + self.assertEqual(output.getvalue(), + _bytes_sample_message.replace(b'\n', os.linesep.encode())) + output = io.BytesIO() self.assertRaises(TypeError, lambda: self._box._dump_message(None, output)) @@ -439,6 +563,7 @@ self.assertRaises(NotImplementedError, lambda: box.__getitem__('')) self.assertRaises(NotImplementedError, lambda: box.get_message('')) self.assertRaises(NotImplementedError, lambda: box.get_string('')) + self.assertRaises(NotImplementedError, lambda: box.get_bytes('')) self.assertRaises(NotImplementedError, lambda: box.get_file('')) self.assertRaises(NotImplementedError, lambda: '' in box) self.assertRaises(NotImplementedError, lambda: box.__contains__('')) @@ -462,6 +587,9 @@ if os.name in ('nt', 'os2') or sys.platform == 'cygwin': self._box.colon = '!' + def assertMailboxEmpty(self): + self.assertEqual(os.listdir(os.path.join(self._path, 'tmp')), []) + def test_add_MM(self): # Add a MaildirMessage instance msg = mailbox.MaildirMessage(self._template % 0) @@ -640,9 +768,9 @@ "Host name mismatch: '%s' should be '%s'" % (groups[4], hostname)) previous_groups = groups - tmp_file.write(_sample_message) + tmp_file.write(_bytes_sample_message) tmp_file.seek(0) - self.assertEqual(tmp_file.read(), _sample_message) + self.assertEqual(tmp_file.read(), _bytes_sample_message) tmp_file.close() file_count = len(os.listdir(os.path.join(self._path, "tmp"))) self.assertEqual(file_count, repetitions, @@ -781,12 +909,22 @@ for lock_remnant in glob.glob(self._path + '.*'): support.unlink(lock_remnant) + def assertMailboxEmpty(self): + with open(self._path) as f: + self.assertEqual(f.readlines(), []) + def test_add_from_string(self): # Add a string starting with 'From ' to the mailbox key = self._box.add('From foo at bar blah\nFrom: foo\n\n0') self.assertEqual(self._box[key].get_from(), 'foo at bar blah') self.assertEqual(self._box[key].get_payload(), '0') + def test_add_from_bytes(self): + # Add a byte string starting with 'From ' to the mailbox + key = self._box.add(b'From foo at bar blah\nFrom: foo\n\n0') + self.assertEqual(self._box[key].get_from(), 'foo at bar blah') + self.assertEqual(self._box[key].get_payload(), '0') + def test_add_mbox_or_mmdf_message(self): # Add an mboxMessage or MMDFMessage for class_ in (mailbox.mboxMessage, mailbox.MMDFMessage): @@ -817,7 +955,7 @@ self._box._file.seek(0) contents = self._box._file.read() self._box.close() - with open(self._path, 'r', newline='') as f: + with open(self._path, 'rb') as f: self.assertEqual(contents, f.read()) self._box = self._factory(self._path) @@ -897,6 +1035,9 @@ _factory = lambda self, path, factory=None: mailbox.MH(path, factory) + def assertMailboxEmpty(self): + self.assertEqual(os.listdir(self._path), ['.mh_sequences']) + def test_list_folders(self): # List folders self._box.add_folder('one') @@ -1029,6 +1170,10 @@ _factory = lambda self, path, factory=None: mailbox.Babyl(path, factory) + def assertMailboxEmpty(self): + with open(self._path) as f: + self.assertEqual(f.readlines(), []) + def tearDown(self): super().tearDown() self._box.close() @@ -1087,6 +1232,15 @@ self._post_initialize_hook(msg) self._check_sample(msg) + def test_initialize_with_binary_file(self): + # Initialize based on contents of binary file + with open(self._path, 'wb+') as f: + f.write(_bytes_sample_message) + f.seek(0) + msg = self._factory(f) + self._post_initialize_hook(msg) + self._check_sample(msg) + def test_initialize_with_nothing(self): # Initialize without arguments msg = self._factory() @@ -1363,6 +1517,14 @@ msg_plain = mailbox.Message(msg) self._check_sample(msg_plain) + def test_x_from_bytes(self): + # Convert all formats to Message + for class_ in (mailbox.Message, mailbox.MaildirMessage, + mailbox.mboxMessage, mailbox.MHMessage, + mailbox.BabylMessage, mailbox.MMDFMessage): + msg = class_(_bytes_sample_message) + self._check_sample(msg) + def test_x_to_invalid(self): # Convert all formats to an invalid format for class_ in (mailbox.Message, mailbox.MaildirMessage, @@ -1908,6 +2070,8 @@ --NMuMz9nt05w80d4+-- """ +_bytes_sample_message = _sample_message.encode('ascii') + _sample_headers = { "Return-Path":"", "X-Original-To":"gkj+person at localhost", Modified: python/branches/py3k-cdecimal/Lib/test/test_memoryview.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_memoryview.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_memoryview.py Fri Mar 4 18:50:17 2011 @@ -9,6 +9,7 @@ import gc import weakref import array +import io class AbstractMemoryTests: @@ -271,6 +272,17 @@ m.release() self._check_released(m, tp) + def test_writable_readonly(self): + # Issue #10451: memoryview incorrectly exposes a readonly + # buffer as writable causing a segfault if using mmap + tp = self.ro_type + if tp is None: + return + b = tp(self._source) + m = self._view(b) + i = io.BytesIO(b'ZZZZ') + self.assertRaises(TypeError, i.readinto, m) + # Variations on source objects for the buffer: bytes-like objects, then arrays # with itemsize > 1. # NOTE: support for multi-dimensional objects is unimplemented. Modified: python/branches/py3k-cdecimal/Lib/test/test_metaclass.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_metaclass.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_metaclass.py Fri Mar 4 18:50:17 2011 @@ -246,7 +246,13 @@ """ -__test__ = {'doctests' : doctests} +import sys + +# Trace function introduces __locals__ which causes various tests to fail. +if hasattr(sys, 'gettrace') and sys.gettrace(): + __test__ = {} +else: + __test__ = {'doctests' : doctests} def test_main(verbose=False): from test import support Modified: python/branches/py3k-cdecimal/Lib/test/test_minidom.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_minidom.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_minidom.py Fri Mar 4 18:50:17 2011 @@ -4,9 +4,7 @@ from test.support import verbose, run_unittest, findfile import unittest -import xml.dom import xml.dom.minidom -import xml.parsers.expat from xml.dom.minidom import parse, Node, Document, parseString from xml.dom.minidom import getDOMImplementation @@ -14,7 +12,6 @@ tstfile = findfile("test.xml", subdir="xmltestdata") - # The tests of DocumentType importing use these helpers to construct # the documents to work with, since not all DOM builders actually # create the DocumentType nodes. @@ -1009,41 +1006,6 @@ "test NodeList.item()") doc.unlink() - def testSAX2DOM(self): - from xml.dom import pulldom - - sax2dom = pulldom.SAX2DOM() - sax2dom.startDocument() - sax2dom.startElement("doc", {}) - sax2dom.characters("text") - sax2dom.startElement("subelm", {}) - sax2dom.characters("text") - sax2dom.endElement("subelm") - sax2dom.characters("text") - sax2dom.endElement("doc") - sax2dom.endDocument() - - doc = sax2dom.document - root = doc.documentElement - (text1, elm1, text2) = root.childNodes - text3 = elm1.childNodes[0] - - self.confirm(text1.previousSibling is None and - text1.nextSibling is elm1 and - elm1.previousSibling is text1 and - elm1.nextSibling is text2 and - text2.previousSibling is elm1 and - text2.nextSibling is None and - text3.previousSibling is None and - text3.nextSibling is None, "testSAX2DOM - siblings") - - self.confirm(root.parentNode is doc and - text1.parentNode is root and - elm1.parentNode is root and - text2.parentNode is root and - text3.parentNode is elm1, "testSAX2DOM - parents") - doc.unlink() - def testEncodings(self): doc = parseString('') self.assertEqual(doc.toxml(), @@ -1490,6 +1452,7 @@ doc.appendChild(doc.createComment("foo--bar")) self.assertRaises(ValueError, doc.toxml) + def testEmptyXMLNSValue(self): doc = parseString("\n" "\n") Modified: python/branches/py3k-cdecimal/Lib/test/test_mmap.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_mmap.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_mmap.py Fri Mar 4 18:50:17 2011 @@ -1,4 +1,4 @@ -from test.support import TESTFN, run_unittest, import_module +from test.support import TESTFN, run_unittest, import_module, unlink, requires import unittest import os import re @@ -320,6 +320,33 @@ mf.close() f.close() + def test_length_0_offset(self): + # Issue #10916: test mapping of remainder of file by passing 0 for + # map length with an offset doesn't cause a segfault. + if not hasattr(os, "stat"): + self.skipTest("needs os.stat") + # NOTE: allocation granularity is currently 65536 under Win64, + # and therefore the minimum offset alignment. + with open(TESTFN, "wb") as f: + f.write((65536 * 2) * b'm') # Arbitrary character + + with open(TESTFN, "rb") as f: + with mmap.mmap(f.fileno(), 0, offset=65536, access=mmap.ACCESS_READ) as mf: + self.assertRaises(IndexError, mf.__getitem__, 80000) + + def test_length_0_large_offset(self): + # Issue #10959: test mapping of a file by passing 0 for + # map length with a large offset doesn't cause a segfault. + if not hasattr(os, "stat"): + self.skipTest("needs os.stat") + + with open(TESTFN, "wb") as f: + f.write(115699 * b'm') # Arbitrary character + + with open(TESTFN, "w+b") as f: + self.assertRaises(ValueError, mmap.mmap, f.fileno(), 0, + offset=2147418112) + def test_move(self): # make move works everywhere (64-bit format problem earlier) f = open(TESTFN, 'wb+') @@ -619,9 +646,56 @@ "wrong exception raised in context manager") self.assertTrue(m.closed, "context manager failed") +class LargeMmapTests(unittest.TestCase): + + def setUp(self): + unlink(TESTFN) + + def tearDown(self): + unlink(TESTFN) + + def _working_largefile(self): + # Only run if the current filesystem supports large files. + f = open(TESTFN, 'wb', buffering=0) + try: + f.seek(0x80000001) + f.write(b'x') + f.flush() + except (IOError, OverflowError): + raise unittest.SkipTest("filesystem does not have largefile support") + finally: + f.close() + unlink(TESTFN) + + def test_large_offset(self): + if sys.platform[:3] == 'win' or sys.platform == 'darwin': + requires('largefile', + 'test requires %s bytes and a long time to run' % str(0x180000000)) + self._working_largefile() + with open(TESTFN, 'wb') as f: + f.seek(0x14FFFFFFF) + f.write(b" ") + + with open(TESTFN, 'rb') as f: + with mmap.mmap(f.fileno(), 0, offset=0x140000000, access=mmap.ACCESS_READ) as m: + self.assertEqual(m[0xFFFFFFF], 32) + + def test_large_filesize(self): + if sys.platform[:3] == 'win' or sys.platform == 'darwin': + requires('largefile', + 'test requires %s bytes and a long time to run' % str(0x180000000)) + self._working_largefile() + with open(TESTFN, 'wb') as f: + f.seek(0x17FFFFFFF) + f.write(b" ") + + with open(TESTFN, 'rb') as f: + with mmap.mmap(f.fileno(), 0x10000, access=mmap.ACCESS_READ) as m: + self.assertEqual(m.size(), 0x180000000) + def test_main(): - run_unittest(MmapTests) + run_unittest(MmapTests, LargeMmapTests) if __name__ == '__main__': test_main() Modified: python/branches/py3k-cdecimal/Lib/test/test_multiprocessing.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_multiprocessing.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_multiprocessing.py Fri Mar 4 18:50:17 2011 @@ -163,6 +163,18 @@ self.assertEqual(current.ident, os.getpid()) self.assertEqual(current.exitcode, None) + def test_daemon_argument(self): + if self.TYPE == "threads": + return + + # By default uses the current process's daemon flag. + proc0 = self.Process(target=self._test) + self.assertEqual(proc0.daemon, self.current_process().daemon) + proc1 = self.Process(target=self._test, daemon=True) + self.assertTrue(proc1.daemon) + proc2 = self.Process(target=self._test, daemon=False) + self.assertFalse(proc2.daemon) + @classmethod def _test(cls, q, *args, **kwds): current = cls.current_process() Modified: python/branches/py3k-cdecimal/Lib/test/test_nntplib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_nntplib.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_nntplib.py Fri Mar 4 18:50:17 2011 @@ -1,10 +1,11 @@ import io +import socket import datetime import textwrap import unittest import functools import contextlib -import collections +import collections.abc from test import support from nntplib import NNTP, GroupInfo, _have_ssl import nntplib @@ -246,12 +247,32 @@ if not name.startswith('test_'): continue meth = getattr(cls, name) - if not isinstance(meth, collections.Callable): + if not isinstance(meth, collections.abc.Callable): continue # Need to use a closure so that meth remains bound to its current # value setattr(cls, name, wrap_meth(meth)) + def test_with_statement(self): + def is_connected(): + if not hasattr(server, 'file'): + return False + try: + server.help() + except (socket.error, EOFError): + return False + return True + + with self.NNTP_CLASS(self.NNTP_HOST, timeout=TIMEOUT, usenetrc=False) as server: + self.assertTrue(is_connected()) + self.assertTrue(server.help()) + self.assertFalse(is_connected()) + + with self.NNTP_CLASS(self.NNTP_HOST, timeout=TIMEOUT, usenetrc=False) as server: + server.quit() + self.assertFalse(is_connected()) + + NetworkedNNTPTestsMixin.wrap_methods() @@ -813,7 +834,7 @@ def _check_article_body(self, lines): self.assertEqual(len(lines), 4) - self.assertEqual(lines[-1].decode('utf8'), "-- Signed by Andr?.") + self.assertEqual(lines[-1].decode('utf-8'), "-- Signed by Andr?.") self.assertEqual(lines[-2], b"") self.assertEqual(lines[-3], b".Here is a dot-starting line.") self.assertEqual(lines[-4], b"This is just a test article.") Modified: python/branches/py3k-cdecimal/Lib/test/test_os.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_os.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_os.py Fri Mar 4 18:50:17 2011 @@ -15,6 +15,13 @@ import contextlib import mmap import uuid +import asyncore +import asynchat +import socket +try: + import threading +except ImportError: + threading = None # Detect whether we're on a Linux system that uses the (now outdated # and unmaintained) linuxthreads threading library. There's an issue @@ -1261,6 +1268,289 @@ self.assertNotEqual(len(user_name), 0) + at unittest.skipUnless(hasattr(os, 'getpriority') and hasattr(os, 'setpriority'), + "needs os.getpriority and os.setpriority") +class ProgramPriorityTests(unittest.TestCase): + """Tests for os.getpriority() and os.setpriority().""" + + def test_set_get_priority(self): + + base = os.getpriority(os.PRIO_PROCESS, os.getpid()) + os.setpriority(os.PRIO_PROCESS, os.getpid(), base + 1) + try: + new_prio = os.getpriority(os.PRIO_PROCESS, os.getpid()) + if base >= 19 and new_prio <= 19: + raise unittest.SkipTest( + "unable to reliably test setpriority at current nice level of %s" % base) + else: + self.assertEqual(new_prio, base + 1) + finally: + try: + os.setpriority(os.PRIO_PROCESS, os.getpid(), base) + except OSError as err: + if err.errno != errno.EACCES: + raise + + +class SendfileTestServer(asyncore.dispatcher, threading.Thread): + + class Handler(asynchat.async_chat): + + def __init__(self, conn): + asynchat.async_chat.__init__(self, conn) + self.in_buffer = [] + self.closed = False + self.push(b"220 ready\r\n") + + def handle_read(self): + data = self.recv(4096) + self.in_buffer.append(data) + + def get_data(self): + return b''.join(self.in_buffer) + + def handle_close(self): + self.close() + self.closed = True + + def handle_error(self): + raise + + def __init__(self, address): + threading.Thread.__init__(self) + asyncore.dispatcher.__init__(self) + self.create_socket(socket.AF_INET, socket.SOCK_STREAM) + self.bind(address) + self.listen(5) + self.host, self.port = self.socket.getsockname()[:2] + self.handler_instance = None + self._active = False + self._active_lock = threading.Lock() + + # --- public API + + @property + def running(self): + return self._active + + def start(self): + assert not self.running + self.__flag = threading.Event() + threading.Thread.start(self) + self.__flag.wait() + + def stop(self): + assert self.running + self._active = False + self.join() + + def wait(self): + # wait for handler connection to be closed, then stop the server + while not getattr(self.handler_instance, "closed", False): + time.sleep(0.001) + self.stop() + + # --- internals + + def run(self): + self._active = True + self.__flag.set() + while self._active and asyncore.socket_map: + self._active_lock.acquire() + asyncore.loop(timeout=0.001, count=1) + self._active_lock.release() + asyncore.close_all() + + def handle_accept(self): + conn, addr = self.accept() + self.handler_instance = self.Handler(conn) + + def handle_connect(self): + self.close() + handle_read = handle_connect + + def writable(self): + return 0 + + def handle_error(self): + raise + + + at unittest.skipUnless(threading is not None, "test needs threading module") + at unittest.skipUnless(hasattr(os, 'sendfile'), "test needs os.sendfile()") +class TestSendfile(unittest.TestCase): + + DATA = b"12345abcde" * 16 * 1024 # 160 KB + SUPPORT_HEADERS_TRAILERS = not sys.platform.startswith("linux") and \ + not sys.platform.startswith("solaris") and \ + not sys.platform.startswith("sunos") + + @classmethod + def setUpClass(cls): + with open(support.TESTFN, "wb") as f: + f.write(cls.DATA) + + @classmethod + def tearDownClass(cls): + support.unlink(support.TESTFN) + + def setUp(self): + self.server = SendfileTestServer((support.HOST, 0)) + self.server.start() + self.client = socket.socket() + self.client.connect((self.server.host, self.server.port)) + self.client.settimeout(1) + # synchronize by waiting for "220 ready" response + self.client.recv(1024) + self.sockno = self.client.fileno() + self.file = open(support.TESTFN, 'rb') + self.fileno = self.file.fileno() + + def tearDown(self): + self.file.close() + self.client.close() + if self.server.running: + self.server.stop() + + def sendfile_wrapper(self, sock, file, offset, nbytes, headers=[], trailers=[]): + """A higher level wrapper representing how an application is + supposed to use sendfile(). + """ + while 1: + try: + if self.SUPPORT_HEADERS_TRAILERS: + return os.sendfile(sock, file, offset, nbytes, headers, + trailers) + else: + return os.sendfile(sock, file, offset, nbytes) + except OSError as err: + if err.errno == errno.ECONNRESET: + # disconnected + raise + elif err.errno in (errno.EAGAIN, errno.EBUSY): + # we have to retry send data + continue + else: + raise + + def test_send_whole_file(self): + # normal send + total_sent = 0 + offset = 0 + nbytes = 4096 + while total_sent < len(self.DATA): + sent = self.sendfile_wrapper(self.sockno, self.fileno, offset, nbytes) + if sent == 0: + break + offset += sent + total_sent += sent + self.assertTrue(sent <= nbytes) + self.assertEqual(offset, total_sent) + + self.assertEqual(total_sent, len(self.DATA)) + self.client.shutdown(socket.SHUT_RDWR) + self.client.close() + self.server.wait() + data = self.server.handler_instance.get_data() + self.assertEqual(len(data), len(self.DATA)) + self.assertEqual(data, self.DATA) + + def test_send_at_certain_offset(self): + # start sending a file at a certain offset + total_sent = 0 + offset = len(self.DATA) // 2 + must_send = len(self.DATA) - offset + nbytes = 4096 + while total_sent < must_send: + sent = self.sendfile_wrapper(self.sockno, self.fileno, offset, nbytes) + if sent == 0: + break + offset += sent + total_sent += sent + self.assertTrue(sent <= nbytes) + + self.client.shutdown(socket.SHUT_RDWR) + self.client.close() + self.server.wait() + data = self.server.handler_instance.get_data() + expected = self.DATA[len(self.DATA) // 2:] + self.assertEqual(total_sent, len(expected)) + self.assertEqual(len(data), len(expected)) + self.assertEqual(data, expected) + + def test_offset_overflow(self): + # specify an offset > file size + offset = len(self.DATA) + 4096 + try: + sent = os.sendfile(self.sockno, self.fileno, offset, 4096) + except OSError as e: + # Solaris can raise EINVAL if offset >= file length, ignore. + if e.errno != errno.EINVAL: + raise + else: + self.assertEqual(sent, 0) + self.client.shutdown(socket.SHUT_RDWR) + self.client.close() + self.server.wait() + data = self.server.handler_instance.get_data() + self.assertEqual(data, b'') + + def test_invalid_offset(self): + with self.assertRaises(OSError) as cm: + os.sendfile(self.sockno, self.fileno, -1, 4096) + self.assertEqual(cm.exception.errno, errno.EINVAL) + + # --- headers / trailers tests + + if SUPPORT_HEADERS_TRAILERS: + + def test_headers(self): + total_sent = 0 + sent = os.sendfile(self.sockno, self.fileno, 0, 4096, + headers=[b"x" * 512]) + total_sent += sent + offset = 4096 + nbytes = 4096 + while 1: + sent = self.sendfile_wrapper(self.sockno, self.fileno, + offset, nbytes) + if sent == 0: + break + total_sent += sent + offset += sent + + expected_data = b"x" * 512 + self.DATA + self.assertEqual(total_sent, len(expected_data)) + self.client.close() + self.server.wait() + data = self.server.handler_instance.get_data() + self.assertEqual(hash(data), hash(expected_data)) + + def test_trailers(self): + TESTFN2 = support.TESTFN + "2" + f = open(TESTFN2, 'wb') + f.write(b"abcde") + f.close() + f = open(TESTFN2, 'rb') + try: + os.sendfile(self.sockno, f.fileno(), 0, 4096, trailers=[b"12345"]) + self.client.close() + self.server.wait() + data = self.server.handler_instance.get_data() + self.assertEqual(data, b"abcde12345") + finally: + os.remove(TESTFN2) + + if hasattr(os, "SF_NODISKIO"): + def test_flags(self): + try: + os.sendfile(self.sockno, self.fileno, 0, 4096, + flags=os.SF_NODISKIO) + except OSError as err: + if err.errno not in (errno.EBUSY, errno.EAGAIN): + raise + + def test_main(): support.run_unittest( FileTests, @@ -1281,6 +1571,8 @@ PidTests, LoginTests, LinkTests, + TestSendfile, + ProgramPriorityTests, ) if __name__ == "__main__": Modified: python/branches/py3k-cdecimal/Lib/test/test_osx_env.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_osx_env.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_osx_env.py Fri Mar 4 18:50:17 2011 @@ -5,6 +5,7 @@ from test.support import EnvironmentVarGuard, run_unittest import subprocess import sys +import sysconfig import unittest class OSXEnvironmentVariableTestCase(unittest.TestCase): @@ -27,8 +28,6 @@ self._check_sys('PYTHONEXECUTABLE', '==', 'sys.executable') def test_main(): - from distutils import sysconfig - if sys.platform == 'darwin' and sysconfig.get_config_var('WITH_NEXT_FRAMEWORK'): run_unittest(OSXEnvironmentVariableTestCase) Modified: python/branches/py3k-cdecimal/Lib/test/test_pdb.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_pdb.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_pdb.py Fri Mar 4 18:50:17 2011 @@ -20,9 +20,12 @@ def __enter__(self): self.real_stdin = sys.stdin sys.stdin = _FakeInput(self.input) + self.orig_trace = sys.gettrace() if hasattr(sys, 'gettrace') else None def __exit__(self, *exc): sys.stdin = self.real_stdin + if self.orig_trace: + sys.settrace(self.orig_trace) def test_pdb_displayhook(): Modified: python/branches/py3k-cdecimal/Lib/test/test_pep3120.py ============================================================================== Binary files. No diff available. Modified: python/branches/py3k-cdecimal/Lib/test/test_pickle.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_pickle.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_pickle.py Fri Mar 4 18:50:17 2011 @@ -31,9 +31,9 @@ f.seek(0) return bytes(f.read()) - def loads(self, buf): + def loads(self, buf, **kwds): f = io.BytesIO(buf) - u = self.unpickler(f) + u = self.unpickler(f, **kwds) return u.load() @@ -45,8 +45,8 @@ def dumps(self, arg, proto=None): return pickle.dumps(arg, proto) - def loads(self, buf): - return pickle.loads(buf) + def loads(self, buf, **kwds): + return pickle.loads(buf, **kwds) class PyPersPicklerTests(AbstractPersistentPicklerTests): @@ -64,12 +64,12 @@ f.seek(0) return f.read() - def loads(self, buf): + def loads(self, buf, **kwds): class PersUnpickler(self.unpickler): def persistent_load(subself, obj): return self.persistent_load(obj) f = io.BytesIO(buf) - u = PersUnpickler(f) + u = PersUnpickler(f, **kwds) return u.load() Modified: python/branches/py3k-cdecimal/Lib/test/test_pickletools.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_pickletools.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_pickletools.py Fri Mar 4 18:50:17 2011 @@ -9,8 +9,8 @@ def dumps(self, arg, proto=None): return pickletools.optimize(pickle.dumps(arg, proto)) - def loads(self, buf): - return pickle.loads(buf) + def loads(self, buf, **kwds): + return pickle.loads(buf, **kwds) # Test relies on precise output of dumps() test_pickle_to_2x = None Modified: python/branches/py3k-cdecimal/Lib/test/test_platform.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_platform.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_platform.py Fri Mar 4 18:50:17 2011 @@ -243,6 +243,34 @@ ): self.assertEqual(platform._parse_release_file(input), output) + def test_popen(self): + mswindows = (sys.platform == "win32") + + if mswindows: + command = '"{}" -c "print(\'Hello\')"'.format(sys.executable) + else: + command = "'{}' -c 'print(\"Hello\")'".format(sys.executable) + with platform.popen(command) as stdout: + hello = stdout.read().strip() + stdout.close() + self.assertEqual(hello, "Hello") + + data = 'plop' + if mswindows: + command = '"{}" -c "import sys; data=sys.stdin.read(); exit(len(data))"' + else: + command = "'{}' -c 'import sys; data=sys.stdin.read(); exit(len(data))'" + command = command.format(sys.executable) + with platform.popen(command, 'w') as stdin: + stdout = stdin.write(data) + ret = stdin.close() + self.assertIsNotNone(ret) + if os.name == 'nt': + returncode = ret + else: + returncode = ret >> 8 + self.assertEqual(returncode, len(data)) + def test_main(): support.run_unittest( Modified: python/branches/py3k-cdecimal/Lib/test/test_poplib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_poplib.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_poplib.py Fri Mar 4 18:50:17 2011 @@ -108,6 +108,10 @@ def cmd_apop(self, arg): self.push('+OK done nothing.') + def cmd_quit(self, arg): + self.push('+OK closing.') + self.close_when_done() + class DummyPOP3Server(asyncore.dispatcher, threading.Thread): @@ -165,10 +169,10 @@ def setUp(self): self.server = DummyPOP3Server((HOST, PORT)) self.server.start() - self.client = poplib.POP3(self.server.host, self.server.port) + self.client = poplib.POP3(self.server.host, self.server.port, timeout=3) def tearDown(self): - self.client.quit() + self.client.close() self.server.stop() def test_getwelcome(self): @@ -228,6 +232,12 @@ self.client.uidl() self.client.uidl('foo') + def test_quit(self): + resp = self.client.quit() + self.assertTrue(resp) + self.assertIsNone(self.client.sock) + self.assertIsNone(self.client.file) + SUPPORTS_SSL = False if hasattr(poplib, 'POP3_SSL'): @@ -274,6 +284,7 @@ else: DummyPOP3Handler.handle_read(self) + class TestPOP3_SSLClass(TestPOP3Class): # repeat previous tests by using poplib.POP3_SSL Modified: python/branches/py3k-cdecimal/Lib/test/test_posix.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_posix.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_posix.py Fri Mar 4 18:50:17 2011 @@ -285,6 +285,18 @@ if hasattr(posix, 'listdir'): self.assertTrue(support.TESTFN in posix.listdir()) + @unittest.skipUnless(hasattr(posix, 'fdlistdir'), "test needs posix.fdlistdir()") + def test_fdlistdir(self): + f = posix.open(posix.getcwd(), posix.O_RDONLY) + self.assertEqual( + sorted(posix.listdir('.')), + sorted(posix.fdlistdir(f)) + ) + # Check the fd was closed by fdlistdir + with self.assertRaises(OSError) as ctx: + posix.close(f) + self.assertEqual(ctx.exception.errno, errno.EBADF) + def test_access(self): if hasattr(posix, 'access'): self.assertTrue(posix.access(support.TESTFN, os.R_OK)) @@ -373,6 +385,7 @@ os.chdir(curdir) support.rmtree(base_path) + @unittest.skipUnless(hasattr(os, 'getegid'), "test needs os.getegid()") def test_getgroups(self): with os.popen('id -G') as idg: groups = idg.read().strip() @@ -382,9 +395,203 @@ # 'id -G' and 'os.getgroups()' should return the same # groups, ignoring order and duplicates. + # #10822 - it is implementation defined whether posix.getgroups() + # includes the effective gid so we include it anyway, since id -G does self.assertEqual( set([int(x) for x in groups.split()]), - set(posix.getgroups())) + set(posix.getgroups() + [posix.getegid()])) + + # tests for the posix *at functions follow + + @unittest.skipUnless(hasattr(posix, 'faccessat'), "test needs posix.faccessat()") + def test_faccessat(self): + f = posix.open(posix.getcwd(), posix.O_RDONLY) + try: + self.assertTrue(posix.faccessat(f, support.TESTFN, os.R_OK)) + finally: + posix.close(f) + + @unittest.skipUnless(hasattr(posix, 'fchmodat'), "test needs posix.fchmodat()") + def test_fchmodat(self): + os.chmod(support.TESTFN, stat.S_IRUSR) + + f = posix.open(posix.getcwd(), posix.O_RDONLY) + try: + posix.fchmodat(f, support.TESTFN, stat.S_IRUSR | stat.S_IWUSR) + + s = posix.stat(support.TESTFN) + self.assertEqual(s[0] & stat.S_IRWXU, stat.S_IRUSR | stat.S_IWUSR) + finally: + posix.close(f) + + @unittest.skipUnless(hasattr(posix, 'fchownat'), "test needs posix.fchownat()") + def test_fchownat(self): + support.unlink(support.TESTFN) + open(support.TESTFN, 'w').close() + + f = posix.open(posix.getcwd(), posix.O_RDONLY) + try: + posix.fchownat(f, support.TESTFN, os.getuid(), os.getgid()) + finally: + posix.close(f) + + @unittest.skipUnless(hasattr(posix, 'fstatat'), "test needs posix.fstatat()") + def test_fstatat(self): + support.unlink(support.TESTFN) + with open(support.TESTFN, 'w') as outfile: + outfile.write("testline\n") + + f = posix.open(posix.getcwd(), posix.O_RDONLY) + try: + s1 = posix.stat(support.TESTFN) + s2 = posix.fstatat(f, support.TESTFN) + self.assertEqual(s1, s2) + finally: + posix.close(f) + + @unittest.skipUnless(hasattr(posix, 'futimesat'), "test needs posix.futimesat()") + def test_futimesat(self): + f = posix.open(posix.getcwd(), posix.O_RDONLY) + try: + now = time.time() + posix.futimesat(f, support.TESTFN, None) + self.assertRaises(TypeError, posix.futimesat, f, support.TESTFN, (None, None)) + self.assertRaises(TypeError, posix.futimesat, f, support.TESTFN, (now, None)) + self.assertRaises(TypeError, posix.futimesat, f, support.TESTFN, (None, now)) + posix.futimesat(f, support.TESTFN, (int(now), int(now))) + posix.futimesat(f, support.TESTFN, (now, now)) + finally: + posix.close(f) + + @unittest.skipUnless(hasattr(posix, 'linkat'), "test needs posix.linkat()") + def test_linkat(self): + f = posix.open(posix.getcwd(), posix.O_RDONLY) + try: + posix.linkat(f, support.TESTFN, f, support.TESTFN + 'link') + # should have same inodes + self.assertEqual(posix.stat(support.TESTFN)[1], + posix.stat(support.TESTFN + 'link')[1]) + finally: + posix.close(f) + support.unlink(support.TESTFN + 'link') + + @unittest.skipUnless(hasattr(posix, 'mkdirat'), "test needs posix.mkdirat()") + def test_mkdirat(self): + f = posix.open(posix.getcwd(), posix.O_RDONLY) + try: + posix.mkdirat(f, support.TESTFN + 'dir') + posix.stat(support.TESTFN + 'dir') # should not raise exception + finally: + posix.close(f) + support.rmtree(support.TESTFN + 'dir') + + @unittest.skipUnless(hasattr(posix, 'mknodat') and hasattr(stat, 'S_IFIFO'), + "don't have mknodat()/S_IFIFO") + def test_mknodat(self): + # Test using mknodat() to create a FIFO (the only use specified + # by POSIX). + support.unlink(support.TESTFN) + mode = stat.S_IFIFO | stat.S_IRUSR | stat.S_IWUSR + f = posix.open(posix.getcwd(), posix.O_RDONLY) + try: + posix.mknodat(f, support.TESTFN, mode, 0) + except OSError as e: + # Some old systems don't allow unprivileged users to use + # mknod(), or only support creating device nodes. + self.assertIn(e.errno, (errno.EPERM, errno.EINVAL)) + else: + self.assertTrue(stat.S_ISFIFO(posix.stat(support.TESTFN).st_mode)) + finally: + posix.close(f) + + @unittest.skipUnless(hasattr(posix, 'openat'), "test needs posix.openat()") + def test_openat(self): + support.unlink(support.TESTFN) + with open(support.TESTFN, 'w') as outfile: + outfile.write("testline\n") + a = posix.open(posix.getcwd(), posix.O_RDONLY) + b = posix.openat(a, support.TESTFN, posix.O_RDONLY) + try: + res = posix.read(b, 9).decode(encoding="utf-8") + self.assertEqual("testline\n", res) + finally: + posix.close(a) + posix.close(b) + + @unittest.skipUnless(hasattr(posix, 'readlinkat'), "test needs posix.readlinkat()") + def test_readlinkat(self): + os.symlink(support.TESTFN, support.TESTFN + 'link') + f = posix.open(posix.getcwd(), posix.O_RDONLY) + try: + self.assertEqual(posix.readlink(support.TESTFN + 'link'), + posix.readlinkat(f, support.TESTFN + 'link')) + finally: + support.unlink(support.TESTFN + 'link') + posix.close(f) + + @unittest.skipUnless(hasattr(posix, 'renameat'), "test needs posix.renameat()") + def test_renameat(self): + support.unlink(support.TESTFN) + open(support.TESTFN + 'ren', 'w').close() + f = posix.open(posix.getcwd(), posix.O_RDONLY) + try: + posix.renameat(f, support.TESTFN + 'ren', f, support.TESTFN) + except: + posix.rename(support.TESTFN + 'ren', support.TESTFN) + raise + else: + posix.stat(support.TESTFN) # should not throw exception + finally: + posix.close(f) + + @unittest.skipUnless(hasattr(posix, 'symlinkat'), "test needs posix.symlinkat()") + def test_symlinkat(self): + f = posix.open(posix.getcwd(), posix.O_RDONLY) + try: + posix.symlinkat(support.TESTFN, f, support.TESTFN + 'link') + self.assertEqual(posix.readlink(support.TESTFN + 'link'), support.TESTFN) + finally: + posix.close(f) + support.unlink(support.TESTFN + 'link') + + @unittest.skipUnless(hasattr(posix, 'unlinkat'), "test needs posix.unlinkat()") + def test_unlinkat(self): + f = posix.open(posix.getcwd(), posix.O_RDONLY) + open(support.TESTFN + 'del', 'w').close() + posix.stat(support.TESTFN + 'del') # should not throw exception + try: + posix.unlinkat(f, support.TESTFN + 'del') + except: + support.unlink(support.TESTFN + 'del') + raise + else: + self.assertRaises(OSError, posix.stat, support.TESTFN + 'link') + finally: + posix.close(f) + + @unittest.skipUnless(hasattr(posix, 'utimensat'), "test needs posix.utimensat()") + def test_utimensat(self): + f = posix.open(posix.getcwd(), posix.O_RDONLY) + try: + now = time.time() + posix.utimensat(f, support.TESTFN, None, None) + self.assertRaises(TypeError, posix.utimensat, f, support.TESTFN, (None, None), (None, None)) + self.assertRaises(TypeError, posix.utimensat, f, support.TESTFN, (now, 0), None) + self.assertRaises(TypeError, posix.utimensat, f, support.TESTFN, None, (now, 0)) + posix.utimensat(f, support.TESTFN, (int(now), int((now - int(now)) * 1e9)), + (int(now), int((now - int(now)) * 1e9))) + finally: + posix.close(f) + + @unittest.skipUnless(hasattr(posix, 'mkfifoat'), "don't have mkfifoat()") + def test_mkfifoat(self): + support.unlink(support.TESTFN) + f = posix.open(posix.getcwd(), posix.O_RDONLY) + try: + posix.mkfifoat(f, support.TESTFN, stat.S_IRUSR | stat.S_IWUSR) + self.assertTrue(stat.S_ISFIFO(posix.stat(support.TESTFN).st_mode)) + finally: + posix.close(f) class PosixGroupsTester(unittest.TestCase): Modified: python/branches/py3k-cdecimal/Lib/test/test_pydoc.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_pydoc.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_pydoc.py Fri Mar 4 18:50:17 2011 @@ -244,10 +244,12 @@ return title -class PyDocDocTest(unittest.TestCase): +class PydocDocTest(unittest.TestCase): @unittest.skipIf(sys.flags.optimize >= 2, "Docstrings are omitted with -O2 and above") + @unittest.skipIf(hasattr(sys, 'gettrace') and sys.gettrace(), + 'trace function introduces __locals__ unexpectedly') def test_html_doc(self): result, doc_loc = get_pydoc_html(pydoc_mod) mod_file = inspect.getabsfile(pydoc_mod) @@ -263,6 +265,8 @@ @unittest.skipIf(sys.flags.optimize >= 2, "Docstrings are omitted with -O2 and above") + @unittest.skipIf(hasattr(sys, 'gettrace') and sys.gettrace(), + 'trace function introduces __locals__ unexpectedly') def test_text_doc(self): result, doc_loc = get_pydoc_text(pydoc_mod) expected_text = expected_text_pattern % \ @@ -340,6 +344,8 @@ @unittest.skipIf(sys.flags.optimize >= 2, 'Docstrings are omitted with -O2 and above') + @unittest.skipIf(hasattr(sys, 'gettrace') and sys.gettrace(), + 'trace function introduces __locals__ unexpectedly') def test_help_output_redirect(self): # issue 940286, if output is set in Helper, then all output from # Helper.help should be redirected @@ -392,7 +398,7 @@ self.assertIn(expected, pydoc.render_doc(c)) -class PyDocServerTest(unittest.TestCase): +class PydocServerTest(unittest.TestCase): """Tests for pydoc._start_server""" def test_server(self): @@ -415,34 +421,31 @@ self.assertEqual(serverthread.error, None) -class PyDocUrlHandlerTest(unittest.TestCase): +class PydocUrlHandlerTest(unittest.TestCase): """Tests for pydoc._url_handler""" def test_content_type_err(self): - err = 'Error: unknown content type ' f = pydoc._url_handler - result = f("", "") - self.assertEqual(result, err + "''") - result = f("", "foobar") - self.assertEqual(result, err + "'foobar'") + self.assertRaises(TypeError, f, 'A', '') + self.assertRaises(TypeError, f, 'B', 'foobar') def test_url_requests(self): # Test for the correct title in the html pages returned. # This tests the different parts of the URL handler without # getting too picky about the exact html. requests = [ - ("", "Python: Index of Modules"), - ("get?key=", "Python: Index of Modules"), - ("index", "Python: Index of Modules"), - ("topics", "Python: Topics"), - ("keywords", "Python: Keywords"), - ("pydoc", "Python: module pydoc"), - ("get?key=pydoc", "Python: module pydoc"), - ("search?key=pydoc", "Python: Search Results"), - ("def", "Python: KEYWORD def"), - ("STRINGS", "Python: TOPIC STRINGS"), - ("foobar", "Python: Error"), - ("getfile?key=foobar", "Python: Read Error"), + ("", "Pydoc: Index of Modules"), + ("get?key=", "Pydoc: Index of Modules"), + ("index", "Pydoc: Index of Modules"), + ("topics", "Pydoc: Topics"), + ("keywords", "Pydoc: Keywords"), + ("pydoc", "Pydoc: module pydoc"), + ("get?key=pydoc", "Pydoc: module pydoc"), + ("search?key=pydoc", "Pydoc: Search Results"), + ("topic?key=def", "Pydoc: KEYWORD def"), + ("topic?key=STRINGS", "Pydoc: TOPIC STRINGS"), + ("foobar", "Pydoc: Error - foobar"), + ("getfile?key=foobar", "Pydoc: Error - getfile?key=foobar"), ] for url, title in requests: @@ -451,7 +454,7 @@ self.assertEqual(result, title) path = string.__file__ - title = "Python: getfile " + path + title = "Pydoc: getfile " + path url = "getfile?key=" + path text = pydoc._url_handler(url, "text/html") result = get_html_title(text) @@ -459,10 +462,10 @@ def test_main(): - test.support.run_unittest(PyDocDocTest, + test.support.run_unittest(PydocDocTest, TestDescriptions, - PyDocServerTest, - PyDocUrlHandlerTest, + PydocServerTest, + PydocUrlHandlerTest, ) if __name__ == "__main__": Modified: python/branches/py3k-cdecimal/Lib/test/test_range.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_range.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_range.py Fri Mar 4 18:50:17 2011 @@ -125,23 +125,102 @@ self.assertIn(a, seq) self.assertNotIn(b, seq) self.assertEqual(len(seq), 2) + self.assertEqual(seq[0], a) + self.assertEqual(seq[-1], a+c) seq = list(range(b, a, -c)) self.assertIn(b, seq) self.assertNotIn(a, seq) self.assertEqual(len(seq), 2) + self.assertEqual(seq[0], b) + self.assertEqual(seq[-1], b-c) seq = list(range(-a, -b, -c)) self.assertIn(-a, seq) self.assertNotIn(-b, seq) self.assertEqual(len(seq), 2) + self.assertEqual(seq[0], -a) + self.assertEqual(seq[-1], -a-c) - self.assertRaises(OverflowError, len, - range(-sys.maxsize, sys.maxsize)) - self.assertRaises(OverflowError, len, - range(0, 2*sys.maxsize)) - self.assertRaises(OverflowError, len, - range(0, sys.maxsize**10)) + def test_large_range(self): + # Check long ranges (len > sys.maxsize) + # len() is expected to fail due to limitations of the __len__ protocol + def _range_len(x): + try: + length = len(x) + except OverflowError: + step = x[1] - x[0] + length = 1 + ((x[-1] - x[0]) // step) + return length + a = -sys.maxsize + b = sys.maxsize + expected_len = b - a + x = range(a, b) + self.assertIn(a, x) + self.assertNotIn(b, x) + self.assertRaises(OverflowError, len, x) + self.assertEqual(_range_len(x), expected_len) + self.assertEqual(x[0], a) + idx = sys.maxsize+1 + self.assertEqual(x[idx], a+idx) + self.assertEqual(x[idx:idx+1][0], a+idx) + with self.assertRaises(IndexError): + x[-expected_len-1] + with self.assertRaises(IndexError): + x[expected_len] + + a = 0 + b = 2 * sys.maxsize + expected_len = b - a + x = range(a, b) + self.assertIn(a, x) + self.assertNotIn(b, x) + self.assertRaises(OverflowError, len, x) + self.assertEqual(_range_len(x), expected_len) + self.assertEqual(x[0], a) + idx = sys.maxsize+1 + self.assertEqual(x[idx], a+idx) + self.assertEqual(x[idx:idx+1][0], a+idx) + with self.assertRaises(IndexError): + x[-expected_len-1] + with self.assertRaises(IndexError): + x[expected_len] + + a = 0 + b = sys.maxsize**10 + c = 2*sys.maxsize + expected_len = 1 + (b - a) // c + x = range(a, b, c) + self.assertIn(a, x) + self.assertNotIn(b, x) + self.assertRaises(OverflowError, len, x) + self.assertEqual(_range_len(x), expected_len) + self.assertEqual(x[0], a) + idx = sys.maxsize+1 + self.assertEqual(x[idx], a+(idx*c)) + self.assertEqual(x[idx:idx+1][0], a+(idx*c)) + with self.assertRaises(IndexError): + x[-expected_len-1] + with self.assertRaises(IndexError): + x[expected_len] + + a = sys.maxsize**10 + b = 0 + c = -2*sys.maxsize + expected_len = 1 + (b - a) // c + x = range(a, b, c) + self.assertIn(a, x) + self.assertNotIn(b, x) + self.assertRaises(OverflowError, len, x) + self.assertEqual(_range_len(x), expected_len) + self.assertEqual(x[0], a) + idx = sys.maxsize+1 + self.assertEqual(x[idx], a+(idx*c)) + self.assertEqual(x[idx:idx+1][0], a+(idx*c)) + with self.assertRaises(IndexError): + x[-expected_len-1] + with self.assertRaises(IndexError): + x[expected_len] def test_invalid_invocation(self): self.assertRaises(TypeError, range) Modified: python/branches/py3k-cdecimal/Lib/test/test_reprlib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_reprlib.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_reprlib.py Fri Mar 4 18:50:17 2011 @@ -234,7 +234,7 @@ touch(os.path.join(self.subpkgname, self.pkgname + '.py')) from areallylongpackageandmodulenametotestreprtruncation.areallylongpackageandmodulenametotestreprtruncation import areallylongpackageandmodulenametotestreprtruncation eq(repr(areallylongpackageandmodulenametotestreprtruncation), - "" % (areallylongpackageandmodulenametotestreprtruncation.__name__, areallylongpackageandmodulenametotestreprtruncation.__file__)) + "" % (areallylongpackageandmodulenametotestreprtruncation.__name__, areallylongpackageandmodulenametotestreprtruncation.__file__)) eq(repr(sys), "") def test_type(self): Modified: python/branches/py3k-cdecimal/Lib/test/test_richcmp.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_richcmp.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_richcmp.py Fri Mar 4 18:50:17 2011 @@ -220,6 +220,7 @@ for func in (do, operator.not_): self.assertRaises(Exc, func, Bad()) + @support.no_tracing def test_recursion(self): # Check that comparison for recursive objects fails gracefully from collections import UserList Modified: python/branches/py3k-cdecimal/Lib/test/test_runpy.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_runpy.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_runpy.py Fri Mar 4 18:50:17 2011 @@ -6,7 +6,8 @@ import re import tempfile import py_compile -from test.support import forget, make_legacy_pyc, run_unittest, unload, verbose +from test.support import ( + forget, make_legacy_pyc, run_unittest, unload, verbose, no_tracing) from test.script_helper import ( make_pkg, make_script, make_zip_pkg, make_zip_script, temp_dir) @@ -395,6 +396,7 @@ msg = "can't find '__main__' module in %r" % zip_name self._check_import_error(zip_name, msg) + @no_tracing def test_main_recursion_error(self): with temp_dir() as script_dir, temp_dir() as dummy_dir: mod_name = '__main__' Modified: python/branches/py3k-cdecimal/Lib/test/test_sax.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_sax.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_sax.py Fri Mar 4 18:50:17 2011 @@ -20,8 +20,8 @@ TEST_XMLFILE = findfile("test.xml", subdir="xmltestdata") TEST_XMLFILE_OUT = findfile("test.xml.out", subdir="xmltestdata") try: - TEST_XMLFILE.encode("utf8") - TEST_XMLFILE_OUT.encode("utf8") + TEST_XMLFILE.encode("utf-8") + TEST_XMLFILE_OUT.encode("utf-8") except UnicodeEncodeError: raise unittest.SkipTest("filename is not encodable to utf8") Modified: python/branches/py3k-cdecimal/Lib/test/test_scope.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_scope.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_scope.py Fri Mar 4 18:50:17 2011 @@ -1,5 +1,5 @@ import unittest -from test.support import check_syntax_error, run_unittest +from test.support import check_syntax_error, cpython_only, run_unittest class ScopeTests(unittest.TestCase): @@ -496,23 +496,22 @@ self.assertNotIn("x", varnames) self.assertIn("y", varnames) + @cpython_only def testLocalsClass_WithTrace(self): # Issue23728: after the trace function returns, the locals() # dictionary is used to update all variables, this used to # include free variables. But in class statements, free # variables are not inserted... import sys + self.addCleanup(sys.settrace, sys.gettrace()) sys.settrace(lambda a,b,c:None) - try: - x = 12 + x = 12 - class C: - def f(self): - return x + class C: + def f(self): + return x - self.assertEqual(x, 12) # Used to raise UnboundLocalError - finally: - sys.settrace(None) + self.assertEqual(x, 12) # Used to raise UnboundLocalError def testBoundAndFree(self): # var is bound and free in class @@ -527,6 +526,7 @@ inst = f(3)() self.assertEqual(inst.a, inst.m()) + @cpython_only def testInteractionWithTraceFunc(self): import sys @@ -543,6 +543,7 @@ class TestClass: pass + self.addCleanup(sys.settrace, sys.gettrace()) sys.settrace(tracer) adaptgetter("foo", TestClass, (1, "")) sys.settrace(None) Modified: python/branches/py3k-cdecimal/Lib/test/test_shelve.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_shelve.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_shelve.py Fri Mar 4 18:50:17 2011 @@ -2,7 +2,7 @@ import shelve import glob from test import support -from collections import MutableMapping +from collections.abc import MutableMapping from test.test_dbm import dbm_iterator def L1(s): @@ -129,8 +129,8 @@ shelve.Shelf(d)[key] = [1] self.assertIn(key.encode('utf-8'), d) # but a different one can be given - shelve.Shelf(d, keyencoding='latin1')[key] = [1] - self.assertIn(key.encode('latin1'), d) + shelve.Shelf(d, keyencoding='latin-1')[key] = [1] + self.assertIn(key.encode('latin-1'), d) # with all consequences s = shelve.Shelf(d, keyencoding='ascii') self.assertRaises(UnicodeEncodeError, s.__setitem__, key, [1]) Modified: python/branches/py3k-cdecimal/Lib/test/test_socket.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_socket.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_socket.py Fri Mar 4 18:50:17 2011 @@ -44,7 +44,7 @@ return 0, 0, 0 HOST = support.HOST -MSG = 'Michael Gilfix was here\u1234\r\n'.encode('utf8') ## test unicode string and carriage return +MSG = 'Michael Gilfix was here\u1234\r\n'.encode('utf-8') ## test unicode string and carriage return SUPPORTS_IPV6 = socket.has_ipv6 and try_address('::1', family=socket.AF_INET6) try: @@ -325,6 +325,26 @@ if not fqhn in all_host_names: self.fail("Error testing host resolution mechanisms. (fqdn: %s, all: %s)" % (fqhn, repr(all_host_names))) + @unittest.skipUnless(hasattr(socket, 'sethostname'), "test needs socket.sethostname()") + @unittest.skipUnless(hasattr(socket, 'gethostname'), "test needs socket.gethostname()") + def test_sethostname(self): + oldhn = socket.gethostname() + try: + socket.sethostname('new') + except socket.error as e: + if e.errno == errno.EPERM: + self.skipTest("test should be run as root") + else: + raise + try: + # running test as root! + self.assertEqual(socket.gethostname(), 'new') + # Should work with bytes objects too + socket.sethostname(b'bar') + self.assertEqual(socket.gethostname(), 'bar') + finally: + socket.sethostname(oldhn) + def testRefCountGetNameInfo(self): # Testing reference count for getnameinfo if hasattr(sys, "getrefcount"): @@ -1065,7 +1085,7 @@ """ bufsize = -1 # Use default buffer size - encoding = 'utf8' + encoding = 'utf-8' errors = 'strict' newline = None @@ -1109,6 +1129,23 @@ self.write_file = None SocketConnectedTest.clientTearDown(self) + def testReadAfterTimeout(self): + # Issue #7322: A file object must disallow further reads + # after a timeout has occurred. + self.cli_conn.settimeout(1) + self.read_file.read(3) + # First read raises a timeout + self.assertRaises(socket.timeout, self.read_file.read, 1) + # Second read is disallowed + with self.assertRaises(IOError) as ctx: + self.read_file.read(1) + self.assertIn("cannot read from timed out object", str(ctx.exception)) + + def _testReadAfterTimeout(self): + self.write_file.write(self.write_msg[0:3]) + self.write_file.flush() + self.serv_finished.wait() + def testSmallRead(self): # Performing small file read test first_seg = self.read_file.read(len(self.read_msg)-3) @@ -1269,7 +1306,7 @@ data = b'' else: data = '' - expecting = expecting.decode('utf8') + expecting = expecting.decode('utf-8') while len(data) != len(expecting): part = fo.read(size) if not part: @@ -1427,7 +1464,7 @@ """Tests for socket.makefile() in text mode (rather than binary)""" read_mode = 'r' - read_msg = MSG.decode('utf8') + read_msg = MSG.decode('utf-8') write_mode = 'wb' write_msg = MSG newline = '' @@ -1439,7 +1476,7 @@ read_mode = 'rb' read_msg = MSG write_mode = 'w' - write_msg = MSG.decode('utf8') + write_msg = MSG.decode('utf-8') newline = '' @@ -1447,9 +1484,9 @@ """Tests for socket.makefile() in text mode (rather than binary)""" read_mode = 'r' - read_msg = MSG.decode('utf8') + read_msg = MSG.decode('utf-8') write_mode = 'w' - write_msg = MSG.decode('utf8') + write_msg = MSG.decode('utf-8') newline = '' Modified: python/branches/py3k-cdecimal/Lib/test/test_ssl.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_ssl.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_ssl.py Fri Mar 4 18:50:17 2011 @@ -394,6 +394,9 @@ ctx.load_verify_locations(CERTFILE, CAPATH) ctx.load_verify_locations(CERTFILE, capath=BYTES_CAPATH) + # Issue #10989: crash if the second argument type is invalid + self.assertRaises(TypeError, ctx.load_verify_locations, None, True) + @skip_if_broken_ubuntu_ssl def test_session_stats(self): for proto in PROTOCOLS: @@ -447,6 +450,50 @@ self.assertTrue(s.getpeercert()) finally: s.close() + + def test_connect_ex(self): + # Issue #11326: check connect_ex() implementation + with support.transient_internet("svn.python.org"): + s = ssl.wrap_socket(socket.socket(socket.AF_INET), + cert_reqs=ssl.CERT_REQUIRED, + ca_certs=SVN_PYTHON_ORG_ROOT_CERT) + try: + self.assertEqual(0, s.connect_ex(("svn.python.org", 443))) + self.assertTrue(s.getpeercert()) + finally: + s.close() + + def test_non_blocking_connect_ex(self): + # Issue #11326: non-blocking connect_ex() should allow handshake + # to proceed after the socket gets ready. + with support.transient_internet("svn.python.org"): + s = ssl.wrap_socket(socket.socket(socket.AF_INET), + cert_reqs=ssl.CERT_REQUIRED, + ca_certs=SVN_PYTHON_ORG_ROOT_CERT, + do_handshake_on_connect=False) + try: + s.setblocking(False) + rc = s.connect_ex(('svn.python.org', 443)) + # EWOULDBLOCK under Windows, EINPROGRESS elsewhere + self.assertIn(rc, (0, errno.EINPROGRESS, errno.EWOULDBLOCK)) + # Wait for connect to finish + select.select([], [s], [], 5.0) + # Non-blocking handshake + while True: + try: + s.do_handshake() + break + except ssl.SSLError as err: + if err.args[0] == ssl.SSL_ERROR_WANT_READ: + select.select([s], [], [], 5.0) + elif err.args[0] == ssl.SSL_ERROR_WANT_WRITE: + select.select([], [s], [], 5.0) + else: + raise + # SSL established + self.assertTrue(s.getpeercert()) + finally: + s.close() def test_connect_with_context(self): with support.transient_internet("svn.python.org"): Modified: python/branches/py3k-cdecimal/Lib/test/test_strlit.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_strlit.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_strlit.py Fri Mar 4 18:50:17 2011 @@ -130,7 +130,7 @@ self.assertRaises(SyntaxError, self.check_encoding, "utf-8", extra) def test_file_utf8(self): - self.check_encoding("utf8") + self.check_encoding("utf-8") def test_file_iso_8859_1(self): self.check_encoding("iso-8859-1") Modified: python/branches/py3k-cdecimal/Lib/test/test_subprocess.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_subprocess.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_subprocess.py Fri Mar 4 18:50:17 2011 @@ -1059,6 +1059,11 @@ exitcode = subprocess.call([abs_program, "-c", "pass"]) self.assertEqual(exitcode, 0) + # absolute bytes path as a string + cmd = b"'" + abs_program + b"' -c pass" + exitcode = subprocess.call(cmd, shell=True) + self.assertEqual(exitcode, 0) + # bytes program, unicode PATH env = os.environ.copy() env["PATH"] = path @@ -1156,9 +1161,6 @@ open_fds = set() - if support.verbose: - print(" -- maxfd =", subprocess.MAXFD) - for x in range(5): fds = os.pipe() self.addCleanup(os.close, fds[0]) @@ -1173,10 +1175,6 @@ remaining_fds = set(map(int, output.split(b','))) to_be_closed = open_fds - {fd} - # Temporary debug output for intermittent failures - if support.verbose: - print(" -- fds that should have been closed:", to_be_closed) - print(" -- fds that remained open:", remaining_fds) self.assertIn(fd, remaining_fds, "fd to be passed not passed") self.assertFalse(remaining_fds & to_be_closed, @@ -1198,7 +1196,7 @@ stdout, stderr = p.communicate() self.assertEqual(0, p.returncode, "sigchild_ignore.py exited" " non-zero with this error:\n%s" % - stderr.decode('utf8')) + stderr.decode('utf-8')) @unittest.skipUnless(mswindows, "Windows specific tests") Modified: python/branches/py3k-cdecimal/Lib/test/test_sys.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_sys.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_sys.py Fri Mar 4 18:50:17 2011 @@ -215,6 +215,8 @@ self.assertEqual(sys.getrecursionlimit(), 10000) sys.setrecursionlimit(oldlimit) + @unittest.skipIf(hasattr(sys, 'gettrace') and sys.gettrace(), + 'fatal error if run with a trace function') def test_recursionlimit_recovery(self): # NOTE: this test is slightly fragile in that it depends on the current # recursion count when executing the test being low enough so as to @@ -301,6 +303,7 @@ self.assertEqual(sys.getdlopenflags(), oldflags+1) sys.setdlopenflags(oldflags) + @test.support.refcount_test def test_refcount(self): # n here must be a global in order for this test to pass while # tracing with a python function. Tracing calls PyFrame_FastToLocals Modified: python/branches/py3k-cdecimal/Lib/test/test_sys_settrace.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_sys_settrace.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_sys_settrace.py Fri Mar 4 18:50:17 2011 @@ -251,6 +251,7 @@ def setUp(self): self.using_gc = gc.isenabled() gc.disable() + self.addCleanup(sys.settrace, sys.gettrace()) def tearDown(self): if self.using_gc: @@ -389,6 +390,9 @@ class RaisingTraceFuncTestCase(unittest.TestCase): + def setUp(self): + self.addCleanup(sys.settrace, sys.gettrace()) + def trace(self, frame, event, arg): """A trace function that raises an exception in response to a specific trace event.""" @@ -688,6 +692,10 @@ class JumpTestCase(unittest.TestCase): + def setUp(self): + self.addCleanup(sys.settrace, sys.gettrace()) + sys.settrace(None) + def compare_jump_output(self, expected, received): if received != expected: self.fail( "Outputs don't match:\n" + @@ -739,6 +747,8 @@ def test_18_no_jump_to_non_integers(self): self.run_test(no_jump_to_non_integers) def test_19_no_jump_without_trace_function(self): + # Must set sys.settrace(None) in setUp(), else condition is not + # triggered. no_jump_without_trace_function() def test_20_large_function(self): Modified: python/branches/py3k-cdecimal/Lib/test/test_tarfile.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_tarfile.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_tarfile.py Fri Mar 4 18:50:17 2011 @@ -419,6 +419,22 @@ mode="r|" + def test_read_through(self): + # Issue #11224: A poorly designed _FileInFile.read() method + # caused seeking errors with stream tar files. + for tarinfo in self.tar: + if not tarinfo.isreg(): + continue + fobj = self.tar.extractfile(tarinfo) + while True: + try: + buf = fobj.read(512) + except tarfile.StreamError: + self.fail("simple read-through using TarFile.extractfile() failed") + if not buf: + break + fobj.close() + def test_fileobj_regular_file(self): tarinfo = self.tar.next() # get "regtype" (can't use getmember) fobj = self.tar.extractfile(tarinfo) @@ -919,6 +935,10 @@ finally: tar.close() + # Verify that filter is a keyword-only argument + with self.assertRaises(TypeError): + tar.add(tempdir, "empty_dir", True, None, filter) + tar = tarfile.open(tmpname, "r") try: for tarinfo in tar: @@ -1269,7 +1289,7 @@ self._test_unicode_filename("utf7") def test_utf8_filename(self): - self._test_unicode_filename("utf8") + self._test_unicode_filename("utf-8") def _test_unicode_filename(self, encoding): tar = tarfile.open(tmpname, "w", format=self.format, encoding=encoding, errors="strict") @@ -1348,7 +1368,7 @@ def test_bad_pax_header(self): # Test for issue #8633. GNU tar <= 1.23 creates raw binary fields # without a hdrcharset=BINARY header. - for encoding, name in (("utf8", "pax/bad-pax-\udce4\udcf6\udcfc"), + for encoding, name in (("utf-8", "pax/bad-pax-\udce4\udcf6\udcfc"), ("iso8859-1", "pax/bad-pax-\xe4\xf6\xfc"),): with tarfile.open(tarname, encoding=encoding, errors="surrogateescape") as tar: try: @@ -1363,7 +1383,7 @@ def test_binary_header(self): # Test a POSIX.1-2008 compatible header with a hdrcharset=BINARY field. - for encoding, name in (("utf8", "pax/hdrcharset-\udce4\udcf6\udcfc"), + for encoding, name in (("utf-8", "pax/hdrcharset-\udce4\udcf6\udcfc"), ("iso8859-1", "pax/hdrcharset-\xe4\xf6\xfc"),): with tarfile.open(tarname, encoding=encoding, errors="surrogateescape") as tar: try: Modified: python/branches/py3k-cdecimal/Lib/test/test_telnetlib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_telnetlib.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_telnetlib.py Fri Mar 4 18:50:17 2011 @@ -17,9 +17,10 @@ conn, addr = serv.accept() except socket.timeout: pass + else: + conn.close() finally: serv.close() - conn.close() evt.set() class GeneralTests(TestCase): Modified: python/branches/py3k-cdecimal/Lib/test/test_threading.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_threading.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_threading.py Fri Mar 4 18:50:17 2011 @@ -427,6 +427,14 @@ t.daemon = True self.assertTrue('daemon' in repr(t)) + def test_deamon_param(self): + t = threading.Thread() + self.assertFalse(t.daemon) + t = threading.Thread(daemon=False) + self.assertFalse(t.daemon) + t = threading.Thread(daemon=True) + self.assertTrue(t.daemon) + class ThreadJoinOnShutdown(BaseTestCase): @@ -677,6 +685,10 @@ thread.start() self.assertRaises(RuntimeError, setattr, thread, "daemon", True) + def test_releasing_unacquired_lock(self): + lock = threading.Lock() + self.assertRaises(RuntimeError, lock.release) + class LockTests(lock_tests.LockTests): locktype = staticmethod(threading.Lock) Modified: python/branches/py3k-cdecimal/Lib/test/test_trace.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_trace.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_trace.py Fri Mar 4 18:50:17 2011 @@ -102,6 +102,7 @@ class TestLineCounts(unittest.TestCase): """White-box testing of line-counting, via runfunc""" def setUp(self): + self.addCleanup(sys.settrace, sys.gettrace()) self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0) self.my_py_filename = fix_ext_py(__file__) @@ -192,6 +193,7 @@ """A simple sanity test of line-counting, via runctx (exec)""" def setUp(self): self.my_py_filename = fix_ext_py(__file__) + self.addCleanup(sys.settrace, sys.gettrace()) def test_exec_counts(self): self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0) @@ -218,6 +220,7 @@ class TestFuncs(unittest.TestCase): """White-box testing of funcs tracing""" def setUp(self): + self.addCleanup(sys.settrace, sys.gettrace()) self.tracer = Trace(count=0, trace=0, countfuncs=1) self.filemod = my_file_and_modname() @@ -242,6 +245,8 @@ } self.assertEqual(self.tracer.results().calledfuncs, expected) + @unittest.skipIf(hasattr(sys, 'gettrace') and sys.gettrace(), + 'pre-existing trace function throws off measurements') def test_inst_method_calling(self): obj = TracedClass(20) self.tracer.runfunc(obj.inst_method_calling, 1) @@ -257,9 +262,12 @@ class TestCallers(unittest.TestCase): """White-box testing of callers tracing""" def setUp(self): + self.addCleanup(sys.settrace, sys.gettrace()) self.tracer = Trace(count=0, trace=0, countcallers=1) self.filemod = my_file_and_modname() + @unittest.skipIf(hasattr(sys, 'gettrace') and sys.gettrace(), + 'pre-existing trace function throws off measurements') def test_loop_caller_importing(self): self.tracer.runfunc(traced_func_importing_caller, 1) @@ -280,6 +288,9 @@ # Created separately for issue #3821 class TestCoverage(unittest.TestCase): + def setUp(self): + self.addCleanup(sys.settrace, sys.gettrace()) + def tearDown(self): rmtree(TESTFN) unlink(TESTFN) Modified: python/branches/py3k-cdecimal/Lib/test/test_unicode.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_unicode.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_unicode.py Fri Mar 4 18:50:17 2011 @@ -11,6 +11,7 @@ import unittest import warnings from test import support, string_tests +import _string # Error handling (bad decoder return) def search_function(encoding): @@ -1181,11 +1182,14 @@ self.assertEqual('hello'.encode('ascii'), b'hello') self.assertEqual('hello'.encode('utf-7'), b'hello') self.assertEqual('hello'.encode('utf-8'), b'hello') - self.assertEqual('hello'.encode('utf8'), b'hello') + self.assertEqual('hello'.encode('utf-8'), b'hello') self.assertEqual('hello'.encode('utf-16-le'), b'h\000e\000l\000l\000o\000') self.assertEqual('hello'.encode('utf-16-be'), b'\000h\000e\000l\000l\000o') self.assertEqual('hello'.encode('latin-1'), b'hello') + # Default encoding is utf-8 + self.assertEqual('\u2603'.encode(), b'\xe2\x98\x83') + # Roundtrip safety for BMP (just the first 1024 chars) for c in range(1024): u = chr(c) @@ -1426,7 +1430,9 @@ # Test PyUnicode_FromFormat() def test_from_format(self): support.import_module('ctypes') - from ctypes import pythonapi, py_object + from ctypes import (pythonapi, py_object, + c_int, c_long, c_longlong, c_ssize_t, + c_uint, c_ulong, c_ulonglong, c_size_t) if sys.maxunicode == 65535: name = "PyUnicodeUCS2_FromFormat" else: @@ -1451,10 +1457,60 @@ 'string, got a non-ASCII byte: 0xe9$', PyUnicode_FromFormat, b'unicode\xe9=%s', 'ascii') - # other tests + # test "%c" + self.assertEqual(PyUnicode_FromFormat(b'%c', c_int(0xabcd)), '\uabcd') + self.assertEqual(PyUnicode_FromFormat(b'%c', c_int(0x10ffff)), '\U0010ffff') + + # test "%" + self.assertEqual(PyUnicode_FromFormat(b'%'), '%') + self.assertEqual(PyUnicode_FromFormat(b'%%'), '%') + self.assertEqual(PyUnicode_FromFormat(b'%%s'), '%s') + self.assertEqual(PyUnicode_FromFormat(b'[%%]'), '[%]') + self.assertEqual(PyUnicode_FromFormat(b'%%%s', b'abc'), '%abc') + + # test integer formats (%i, %d, %u) + self.assertEqual(PyUnicode_FromFormat(b'%03i', c_int(10)), '010') + self.assertEqual(PyUnicode_FromFormat(b'%0.4i', c_int(10)), '0010') + self.assertEqual(PyUnicode_FromFormat(b'%i', c_int(-123)), '-123') + self.assertEqual(PyUnicode_FromFormat(b'%li', c_long(-123)), '-123') + self.assertEqual(PyUnicode_FromFormat(b'%lli', c_longlong(-123)), '-123') + self.assertEqual(PyUnicode_FromFormat(b'%zi', c_ssize_t(-123)), '-123') + + self.assertEqual(PyUnicode_FromFormat(b'%d', c_int(-123)), '-123') + self.assertEqual(PyUnicode_FromFormat(b'%ld', c_long(-123)), '-123') + self.assertEqual(PyUnicode_FromFormat(b'%lld', c_longlong(-123)), '-123') + self.assertEqual(PyUnicode_FromFormat(b'%zd', c_ssize_t(-123)), '-123') + + self.assertEqual(PyUnicode_FromFormat(b'%u', c_uint(123)), '123') + self.assertEqual(PyUnicode_FromFormat(b'%lu', c_ulong(123)), '123') + self.assertEqual(PyUnicode_FromFormat(b'%llu', c_ulonglong(123)), '123') + self.assertEqual(PyUnicode_FromFormat(b'%zu', c_size_t(123)), '123') + + # test %A text = PyUnicode_FromFormat(b'%%A:%A', 'abc\xe9\uabcd\U0010ffff') self.assertEqual(text, r"%A:'abc\xe9\uabcd\U0010ffff'") + # test %V + text = PyUnicode_FromFormat(b'repr=%V', 'abc', b'xyz') + self.assertEqual(text, 'repr=abc') + + # Test string decode from parameter of %s using utf-8. + # b'\xe4\xba\xba\xe6\xb0\x91' is utf-8 encoded byte sequence of + # '\u4eba\u6c11' + text = PyUnicode_FromFormat(b'repr=%V', None, b'\xe4\xba\xba\xe6\xb0\x91') + self.assertEqual(text, 'repr=\u4eba\u6c11') + + #Test replace error handler. + text = PyUnicode_FromFormat(b'repr=%V', None, b'abc\xff') + self.assertEqual(text, 'repr=abc\ufffd') + + # not supported: copy the raw format string. these tests are just here + # to check for crashs and should not be considered as specifications + self.assertEqual(PyUnicode_FromFormat(b'%1%s', b'abc'), '%s') + self.assertEqual(PyUnicode_FromFormat(b'%1abc'), '%1abc') + self.assertEqual(PyUnicode_FromFormat(b'%+i', c_int(10)), '%+i') + self.assertEqual(PyUnicode_FromFormat(b'%.%s', b'abc'), '%.%s') + # Test PyUnicode_AsWideChar() def test_aswidechar(self): from _testcapi import unicode_aswidechar @@ -1516,6 +1572,57 @@ self.assertEqual(wchar, nonbmp + '\0') +class StringModuleTest(unittest.TestCase): + def test_formatter_parser(self): + def parse(format): + return list(_string.formatter_parser(format)) + + formatter = parse("prefix {2!s}xxx{0:^+10.3f}{obj.attr!s} {z[0]!s:10}") + self.assertEqual(formatter, [ + ('prefix ', '2', '', 's'), + ('xxx', '0', '^+10.3f', None), + ('', 'obj.attr', '', 's'), + (' ', 'z[0]', '10', 's'), + ]) + + formatter = parse("prefix {} suffix") + self.assertEqual(formatter, [ + ('prefix ', '', '', None), + (' suffix', None, None, None), + ]) + + formatter = parse("str") + self.assertEqual(formatter, [ + ('str', None, None, None), + ]) + + formatter = parse("") + self.assertEqual(formatter, []) + + formatter = parse("{0}") + self.assertEqual(formatter, [ + ('', '0', '', None), + ]) + + self.assertRaises(TypeError, _string.formatter_parser, 1) + + def test_formatter_field_name_split(self): + def split(name): + items = list(_string.formatter_field_name_split(name)) + items[1] = list(items[1]) + return items + self.assertEqual(split("obj"), ["obj", []]) + self.assertEqual(split("obj.arg"), ["obj", [(True, 'arg')]]) + self.assertEqual(split("obj[key]"), ["obj", [(False, 'key')]]) + self.assertEqual(split("obj.arg[key1][key2]"), [ + "obj", + [(True, 'arg'), + (False, 'key1'), + (False, 'key2'), + ]]) + self.assertRaises(TypeError, _string.formatter_field_name_split, 1) + + def test_main(): support.run_unittest(__name__) Modified: python/branches/py3k-cdecimal/Lib/test/test_urllib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_urllib.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_urllib.py Fri Mar 4 18:50:17 2011 @@ -251,7 +251,7 @@ def constructLocalFileUrl(self, filePath): filePath = os.path.abspath(filePath) try: - filePath.encode("utf8") + filePath.encode("utf-8") except UnicodeEncodeError: raise unittest.SkipTest("filePath is not encodable to utf8") return "file://%s" % urllib.request.pathname2url(filePath) Modified: python/branches/py3k-cdecimal/Lib/test/test_urllib2.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_urllib2.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_urllib2.py Fri Mar 4 18:50:17 2011 @@ -599,7 +599,7 @@ def sanepathname2url(path): try: - path.encode("utf8") + path.encode("utf-8") except UnicodeEncodeError: raise unittest.SkipTest("path is not encodable to utf8") urlpath = urllib.request.pathname2url(path) @@ -794,6 +794,10 @@ http.raise_on_endheaders = True self.assertRaises(urllib.error.URLError, h.do_open, http, req) + # Check for TypeError on POST data which is str. + req = Request("http://example.com/","badpost") + self.assertRaises(TypeError, h.do_request_, req) + # check adding of standard headers o.addheaders = [("Spam", "eggs")] for data in b"", None: # POST, GET @@ -837,10 +841,11 @@ else: newreq = h.do_request_(req) - # A file object + # A file object. + # Test only Content-Length attribute of request. - file_obj = io.StringIO() - file_obj.write("Something\nSomething\nSomething\n") + file_obj = io.BytesIO() + file_obj.write(b"Something\nSomething\nSomething\n") for headers in {}, {"Content-Length": 30}: req = Request("http://example.com/", file_obj, headers) @@ -863,7 +868,6 @@ newreq = h.do_request_(req) self.assertEqual(int(newreq.get_header('Content-length')),16) - def test_http_doubleslash(self): # Checks the presence of any unnecessary double slash in url does not # break anything. Previously, a double slash directly after the host Modified: python/branches/py3k-cdecimal/Lib/test/test_urlparse.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_urlparse.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_urlparse.py Fri Mar 4 18:50:17 2011 @@ -688,6 +688,33 @@ for result_type in result_types: self._check_result_type(result_type) + def test_parse_qs_encoding(self): + result = urllib.parse.parse_qs("key=\u0141%E9", encoding="latin-1") + self.assertEqual(result, {'key': ['\u0141\xE9']}) + result = urllib.parse.parse_qs("key=\u0141%C3%A9", encoding="utf-8") + self.assertEqual(result, {'key': ['\u0141\xE9']}) + result = urllib.parse.parse_qs("key=\u0141%C3%A9", encoding="ascii") + self.assertEqual(result, {'key': ['\u0141\ufffd\ufffd']}) + result = urllib.parse.parse_qs("key=\u0141%E9-", encoding="ascii") + self.assertEqual(result, {'key': ['\u0141\ufffd-']}) + result = urllib.parse.parse_qs("key=\u0141%E9-", encoding="ascii", + errors="ignore") + self.assertEqual(result, {'key': ['\u0141-']}) + + def test_parse_qsl_encoding(self): + result = urllib.parse.parse_qsl("key=\u0141%E9", encoding="latin-1") + self.assertEqual(result, [('key', '\u0141\xE9')]) + result = urllib.parse.parse_qsl("key=\u0141%C3%A9", encoding="utf-8") + self.assertEqual(result, [('key', '\u0141\xE9')]) + result = urllib.parse.parse_qsl("key=\u0141%C3%A9", encoding="ascii") + self.assertEqual(result, [('key', '\u0141\ufffd\ufffd')]) + result = urllib.parse.parse_qsl("key=\u0141%E9-", encoding="ascii") + self.assertEqual(result, [('key', '\u0141\ufffd-')]) + result = urllib.parse.parse_qsl("key=\u0141%E9-", encoding="ascii", + errors="ignore") + self.assertEqual(result, [('key', '\u0141-')]) + + def test_main(): support.run_unittest(UrlParseTestCase) Modified: python/branches/py3k-cdecimal/Lib/test/test_uuid.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_uuid.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_uuid.py Fri Mar 4 18:50:17 2011 @@ -471,14 +471,14 @@ if pid == 0: os.close(fds[0]) value = uuid.uuid4() - os.write(fds[1], value.hex.encode('latin1')) + os.write(fds[1], value.hex.encode('latin-1')) os._exit(0) else: os.close(fds[1]) parent_value = uuid.uuid4().hex os.waitpid(pid, 0) - child_value = os.read(fds[0], 100).decode('latin1') + child_value = os.read(fds[0], 100).decode('latin-1') self.assertNotEqual(parent_value, child_value) Modified: python/branches/py3k-cdecimal/Lib/test/test_xml_etree.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_xml_etree.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_xml_etree.py Fri Mar 4 18:50:17 2011 @@ -22,7 +22,7 @@ SIMPLE_XMLFILE = findfile("simple.xml", subdir="xmltestdata") try: - SIMPLE_XMLFILE.encode("utf8") + SIMPLE_XMLFILE.encode("utf-8") except UnicodeEncodeError: raise unittest.SkipTest("filename is not encodable to utf8") SIMPLE_NS_XMLFILE = findfile("simple-ns.xml", subdir="xmltestdata") @@ -1255,8 +1255,8 @@ >>> ET.tostring(ET.PI('test', '')) b'?>' - >>> ET.tostring(ET.PI('test', '\xe3'), 'latin1') - b"\\n\\xe3?>" + >>> ET.tostring(ET.PI('test', '\xe3'), 'latin-1') + b"\\n\\xe3?>" """ # Modified: python/branches/py3k-cdecimal/Lib/test/test_xmlrpc_net.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_xmlrpc_net.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_xmlrpc_net.py Fri Mar 4 18:50:17 2011 @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -import collections +import collections.abc import errno import socket import sys @@ -48,7 +48,7 @@ # Perform a minimal sanity check on the result, just to be sure # the request means what we think it means. - self.assertIsInstance(builders, collections.Sequence) + self.assertIsInstance(builders, collections.abc.Sequence) self.assertTrue([x for x in builders if "3.x" in x], builders) Modified: python/branches/py3k-cdecimal/Lib/test/test_zipimport_support.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_zipimport_support.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_zipimport_support.py Fri Mar 4 18:50:17 2011 @@ -93,7 +93,10 @@ os.remove(init_name) sys.path.insert(0, zip_name) import zip_pkg - self.assertEqual(inspect.getsource(zip_pkg.foo), test_src) + try: + self.assertEqual(inspect.getsource(zip_pkg.foo), test_src) + finally: + del sys.modules["zip_pkg"] def test_doctest_issue4197(self): # To avoid having to keep two copies of the doctest module's @@ -128,53 +131,60 @@ os.remove(script_name) sys.path.insert(0, zip_name) import test_zipped_doctest - # Some of the doc tests depend on the colocated text files - # which aren't available to the zipped version (the doctest - # module currently requires real filenames for non-embedded - # tests). So we're forced to be selective about which tests - # to run. - # doctest could really use some APIs which take a text - # string or a file object instead of a filename... - known_good_tests = [ - test_zipped_doctest.SampleClass, - test_zipped_doctest.SampleClass.NestedClass, - test_zipped_doctest.SampleClass.NestedClass.__init__, - test_zipped_doctest.SampleClass.__init__, - test_zipped_doctest.SampleClass.a_classmethod, - test_zipped_doctest.SampleClass.a_property, - test_zipped_doctest.SampleClass.a_staticmethod, - test_zipped_doctest.SampleClass.double, - test_zipped_doctest.SampleClass.get, - test_zipped_doctest.SampleNewStyleClass, - test_zipped_doctest.SampleNewStyleClass.__init__, - test_zipped_doctest.SampleNewStyleClass.double, - test_zipped_doctest.SampleNewStyleClass.get, - test_zipped_doctest.sample_func, - test_zipped_doctest.test_DocTest, - test_zipped_doctest.test_DocTestParser, - test_zipped_doctest.test_DocTestRunner.basics, - test_zipped_doctest.test_DocTestRunner.exceptions, - test_zipped_doctest.test_DocTestRunner.option_directives, - test_zipped_doctest.test_DocTestRunner.optionflags, - test_zipped_doctest.test_DocTestRunner.verbose_flag, - test_zipped_doctest.test_Example, - test_zipped_doctest.test_debug, - test_zipped_doctest.test_pdb_set_trace, - test_zipped_doctest.test_pdb_set_trace_nested, - test_zipped_doctest.test_testsource, - test_zipped_doctest.test_trailing_space_in_test, - test_zipped_doctest.test_DocTestSuite, - test_zipped_doctest.test_DocTestFinder, - ] - # These remaining tests are the ones which need access - # to the data files, so we don't run them - fail_due_to_missing_data_files = [ - test_zipped_doctest.test_DocFileSuite, - test_zipped_doctest.test_testfile, - test_zipped_doctest.test_unittest_reportflags, - ] - for obj in known_good_tests: - _run_object_doctest(obj, test_zipped_doctest) + try: + # Some of the doc tests depend on the colocated text files + # which aren't available to the zipped version (the doctest + # module currently requires real filenames for non-embedded + # tests). So we're forced to be selective about which tests + # to run. + # doctest could really use some APIs which take a text + # string or a file object instead of a filename... + known_good_tests = [ + test_zipped_doctest.SampleClass, + test_zipped_doctest.SampleClass.NestedClass, + test_zipped_doctest.SampleClass.NestedClass.__init__, + test_zipped_doctest.SampleClass.__init__, + test_zipped_doctest.SampleClass.a_classmethod, + test_zipped_doctest.SampleClass.a_property, + test_zipped_doctest.SampleClass.a_staticmethod, + test_zipped_doctest.SampleClass.double, + test_zipped_doctest.SampleClass.get, + test_zipped_doctest.SampleNewStyleClass, + test_zipped_doctest.SampleNewStyleClass.__init__, + test_zipped_doctest.SampleNewStyleClass.double, + test_zipped_doctest.SampleNewStyleClass.get, + test_zipped_doctest.sample_func, + test_zipped_doctest.test_DocTest, + test_zipped_doctest.test_DocTestParser, + test_zipped_doctest.test_DocTestRunner.basics, + test_zipped_doctest.test_DocTestRunner.exceptions, + test_zipped_doctest.test_DocTestRunner.option_directives, + test_zipped_doctest.test_DocTestRunner.optionflags, + test_zipped_doctest.test_DocTestRunner.verbose_flag, + test_zipped_doctest.test_Example, + test_zipped_doctest.test_debug, + test_zipped_doctest.test_testsource, + test_zipped_doctest.test_trailing_space_in_test, + test_zipped_doctest.test_DocTestSuite, + test_zipped_doctest.test_DocTestFinder, + ] + # These tests are the ones which need access + # to the data files, so we don't run them + fail_due_to_missing_data_files = [ + test_zipped_doctest.test_DocFileSuite, + test_zipped_doctest.test_testfile, + test_zipped_doctest.test_unittest_reportflags, + ] + # These tests are skipped when a trace funciton is set + can_fail_due_to_tracing = [ + test_zipped_doctest.test_pdb_set_trace, + test_zipped_doctest.test_pdb_set_trace_nested, + ] + + for obj in known_good_tests: + _run_object_doctest(obj, test_zipped_doctest) + finally: + del sys.modules["test_zipped_doctest"] def test_doctest_main_issue4197(self): test_src = textwrap.dedent("""\ Modified: python/branches/py3k-cdecimal/Lib/test/test_zlib.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/test/test_zlib.py (original) +++ python/branches/py3k-cdecimal/Lib/test/test_zlib.py Fri Mar 4 18:50:17 2011 @@ -2,10 +2,16 @@ from test import support import binascii import random +import sys from test.support import precisionbigmemtest, _1G, _4G zlib = support.import_module('zlib') +try: + import mmap +except ImportError: + mmap = None + class ChecksumTestCase(unittest.TestCase): # checksum test cases @@ -57,6 +63,28 @@ self.assertEqual(binascii.crc32(b'spam'), zlib.crc32(b'spam')) +# Issue #10276 - check that inputs >=4GB are handled correctly. +class ChecksumBigBufferTestCase(unittest.TestCase): + + def setUp(self): + with open(support.TESTFN, "wb+") as f: + f.seek(_4G) + f.write(b"asdf") + with open(support.TESTFN, "rb") as f: + self.mapping = mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ) + + def tearDown(self): + self.mapping.close() + support.unlink(support.TESTFN) + + @unittest.skipUnless(mmap, "mmap() is not available.") + @unittest.skipUnless(sys.maxsize > _4G, "Can't run on a 32-bit system.") + @unittest.skipUnless(support.is_resource_enabled("largefile"), + "May use lots of disk space.") + def test_big_buffer(self): + self.assertEqual(zlib.crc32(self.mapping), 3058686908) + self.assertEqual(zlib.adler32(self.mapping), 82837919) + class ExceptionTestCase(unittest.TestCase): # make sure we generate some expected errors @@ -577,6 +605,7 @@ def test_main(): support.run_unittest( ChecksumTestCase, + ChecksumBigBufferTestCase, ExceptionTestCase, CompressTestCase, CompressObjectTestCase Modified: python/branches/py3k-cdecimal/Lib/threading.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/threading.py (original) +++ python/branches/py3k-cdecimal/Lib/threading.py Fri Mar 4 18:50:17 2011 @@ -17,12 +17,11 @@ # with the multiprocessing module, which doesn't provide the old # Java inspired names. - -# Rename some stuff so "from threading import *" is safe __all__ = ['active_count', 'Condition', 'current_thread', 'enumerate', 'Event', - 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread', + 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread', 'Barrier', 'Timer', 'setprofile', 'settrace', 'local', 'stack_size'] +# Rename some stuff so "from threading import *" is safe _start_new_thread = _thread.start_new_thread _allocate_lock = _thread.allocate_lock _get_ident = _thread.get_ident @@ -36,10 +35,6 @@ # Debug support (adapted from ihooks.py). -# All the major classes here derive from _Verbose. We force that to -# be a new-style class so that all the major classes here are new-style. -# This helps debugging (type(instance) is more revealing for instances -# of new-style classes). _VERBOSE = False @@ -627,7 +622,7 @@ #XXX __exc_clear = _sys.exc_clear def __init__(self, group=None, target=None, name=None, - args=(), kwargs=None, verbose=None): + args=(), kwargs=None, verbose=None, *, daemon=None): assert group is None, "group argument must be None for now" _Verbose.__init__(self, verbose) if kwargs is None: @@ -636,7 +631,10 @@ self._name = str(name or _newname()) self._args = args self._kwargs = kwargs - self._daemonic = self._set_daemon() + if daemon is not None: + self._daemonic = daemon + else: + self._daemonic = current_thread().daemon self._ident = None self._started = Event() self._stopped = False @@ -653,10 +651,6 @@ self._block.__init__() self._started._reset_internal_locks() - def _set_daemon(self): - # Overridden in _MainThread and _DummyThread - return current_thread().daemon - def __repr__(self): assert self._initialized, "Thread.__init__() was not called" status = "initial" @@ -953,15 +947,12 @@ class _MainThread(Thread): def __init__(self): - Thread.__init__(self, name="MainThread") + Thread.__init__(self, name="MainThread", daemon=False) self._started.set() self._set_ident() with _active_limbo_lock: _active[self._ident] = self - def _set_daemon(self): - return False - def _exitfunc(self): self._stop() t = _pickSomeNonDaemonThread() @@ -993,7 +984,7 @@ class _DummyThread(Thread): def __init__(self): - Thread.__init__(self, name=_newname("Dummy-%d")) + Thread.__init__(self, name=_newname("Dummy-%d"), daemon=True) # Thread._block consumes an OS-level locking primitive, which # can never be used by a _DummyThread. Since a _DummyThread @@ -1005,9 +996,6 @@ with _active_limbo_lock: _active[self._ident] = self - def _set_daemon(self): - return True - def join(self, timeout=None): assert False, "cannot join a dummy thread" Modified: python/branches/py3k-cdecimal/Lib/tokenize.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/tokenize.py (original) +++ python/branches/py3k-cdecimal/Lib/tokenize.py Fri Mar 4 18:50:17 2011 @@ -24,6 +24,7 @@ __credits__ = ('GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, ' 'Skip Montanaro, Raymond Hettinger, Trent Nelson, ' 'Michael Foord') +import builtins import re import sys from token import * @@ -335,13 +336,11 @@ return default, [first, second] -_builtin_open = open - def open(filename): """Open a file in read only mode using the encoding detected by detect_encoding(). """ - buffer = _builtin_open(filename, 'rb') + buffer = builtins.open(filename, 'rb') encoding, lines = detect_encoding(buffer.readline) buffer.seek(0) text = TextIOWrapper(buffer, encoding, line_buffering=True) Modified: python/branches/py3k-cdecimal/Lib/unittest/case.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/unittest/case.py (original) +++ python/branches/py3k-cdecimal/Lib/unittest/case.py Fri Mar 4 18:50:17 2011 @@ -938,77 +938,6 @@ standardMsg = self._truncateMessage(standardMsg, diff) self.fail(self._formatMessage(msg, standardMsg)) - def assertDictContainsSubset(self, subset, dictionary, msg=None): - """Checks whether dictionary is a superset of subset.""" - warnings.warn('assertDictContainsSubset is deprecated', - DeprecationWarning) - missing = [] - mismatched = [] - for key, value in subset.items(): - if key not in dictionary: - missing.append(key) - elif value != dictionary[key]: - mismatched.append('%s, expected: %s, actual: %s' % - (safe_repr(key), safe_repr(value), - safe_repr(dictionary[key]))) - - if not (missing or mismatched): - return - - standardMsg = '' - if missing: - standardMsg = 'Missing: %s' % ','.join(safe_repr(m) for m in - missing) - if mismatched: - if standardMsg: - standardMsg += '; ' - standardMsg += 'Mismatched values: %s' % ','.join(mismatched) - - self.fail(self._formatMessage(msg, standardMsg)) - - def assertSameElements(self, expected_seq, actual_seq, msg=None): - """An unordered sequence specific comparison. - - Raises with an error message listing which elements of expected_seq - are missing from actual_seq and vice versa if any. - - Duplicate elements are ignored when comparing *expected_seq* and - *actual_seq*. It is the equivalent of ``assertEqual(set(expected), - set(actual))`` but it works with sequences of unhashable objects as - well. - """ - warnings.warn('assertSameElements is deprecated', - DeprecationWarning) - try: - expected = set(expected_seq) - actual = set(actual_seq) - missing = sorted(expected.difference(actual)) - unexpected = sorted(actual.difference(expected)) - except TypeError: - # Fall back to slower list-compare if any of the objects are - # not hashable. - expected = list(expected_seq) - actual = list(actual_seq) - try: - expected.sort() - actual.sort() - except TypeError: - missing, unexpected = unorderable_list_difference(expected, - actual) - else: - missing, unexpected = sorted_list_difference(expected, actual) - errors = [] - if missing: - errors.append('Expected, but missing:\n %s' % - safe_repr(missing)) - if unexpected: - errors.append('Unexpected, but present:\n %s' % - safe_repr(unexpected)) - if errors: - standardMsg = '\n'.join(errors) - self.fail(self._formatMessage(msg, standardMsg)) - - def assertCountEqual(self, first, second, msg=None): """An unordered sequence comparison asserting that the same elements, regardless of order. If the same element occurs more than once, @@ -1022,17 +951,17 @@ - [0, 0, 1] and [0, 1] compare unequal. """ - actual_seq, expected_seq = list(first), list(second) + first_seq, second_seq = list(first), list(second) try: - actual = collections.Counter(actual_seq) - expected = collections.Counter(expected_seq) + first = collections.Counter(first_seq) + second = collections.Counter(second_seq) except TypeError: # Handle case with unhashable elements - differences = _count_diff_all_purpose(actual_seq, expected_seq) + differences = _count_diff_all_purpose(first_seq, second_seq) else: - if actual == expected: + if first == second: return - differences = _count_diff_hashable(actual_seq, expected_seq) + differences = _count_diff_hashable(first_seq, second_seq) if differences: standardMsg = 'Element counts were not equal:\n' @@ -1183,13 +1112,11 @@ # The fail* methods can be removed in 3.3, the 5 assert* methods will # have to stay around for a few more versions. See #9424. - failUnlessEqual = assertEquals = _deprecate(assertEqual) - failIfEqual = assertNotEquals = _deprecate(assertNotEqual) - failUnlessAlmostEqual = assertAlmostEquals = _deprecate(assertAlmostEqual) - failIfAlmostEqual = assertNotAlmostEquals = _deprecate(assertNotAlmostEqual) - failUnless = assert_ = _deprecate(assertTrue) - failUnlessRaises = _deprecate(assertRaises) - failIf = _deprecate(assertFalse) + assertEquals = _deprecate(assertEqual) + assertNotEquals = _deprecate(assertNotEqual) + assertAlmostEquals = _deprecate(assertAlmostEqual) + assertNotAlmostEquals = _deprecate(assertNotAlmostEqual) + assert_ = _deprecate(assertTrue) assertRaisesRegexp = _deprecate(assertRaisesRegex) assertRegexpMatches = _deprecate(assertRegex) Modified: python/branches/py3k-cdecimal/Lib/unittest/test/_test_warnings.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/unittest/test/_test_warnings.py (original) +++ python/branches/py3k-cdecimal/Lib/unittest/test/_test_warnings.py Fri Mar 4 18:50:17 2011 @@ -19,17 +19,12 @@ warnings.warn('rw', RuntimeWarning) class TestWarnings(unittest.TestCase): - # unittest warnings will be printed at most once per type (max one message - # for the fail* methods, and one for the assert* methods) + # unittest warnings will be printed at most once per type def test_assert(self): self.assertEquals(2+2, 4) self.assertEquals(2*2, 4) self.assertEquals(2**2, 4) - def test_fail(self): - self.failUnless(1) - self.failUnless(True) - def test_other_unittest(self): self.assertAlmostEqual(2+2, 4) self.assertNotAlmostEqual(4+4, 2) Modified: python/branches/py3k-cdecimal/Lib/unittest/test/test_assertions.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/unittest/test/test_assertions.py (original) +++ python/branches/py3k-cdecimal/Lib/unittest/test/test_assertions.py Fri Mar 4 18:50:17 2011 @@ -223,15 +223,6 @@ "\+ \{'key': 'value'\}$", "\+ \{'key': 'value'\} : oops$"]) - def testAssertDictContainsSubset(self): - with warnings.catch_warnings(): - warnings.simplefilter("ignore", DeprecationWarning) - - self.assertMessages('assertDictContainsSubset', ({'key': 'value'}, {}), - ["^Missing: 'key'$", "^oops$", - "^Missing: 'key'$", - "^Missing: 'key' : oops$"]) - def testAssertMultiLineEqual(self): self.assertMessages('assertMultiLineEqual', ("", "foo"), [r"\+ foo$", "^oops$", Modified: python/branches/py3k-cdecimal/Lib/unittest/test/test_case.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/unittest/test/test_case.py (original) +++ python/branches/py3k-cdecimal/Lib/unittest/test/test_case.py Fri Mar 4 18:50:17 2011 @@ -488,36 +488,6 @@ self.assertRaises(self.failureException, self.assertNotIn, 'cow', animals) - def testAssertDictContainsSubset(self): - with warnings.catch_warnings(): - warnings.simplefilter("ignore", DeprecationWarning) - - self.assertDictContainsSubset({}, {}) - self.assertDictContainsSubset({}, {'a': 1}) - self.assertDictContainsSubset({'a': 1}, {'a': 1}) - self.assertDictContainsSubset({'a': 1}, {'a': 1, 'b': 2}) - self.assertDictContainsSubset({'a': 1, 'b': 2}, {'a': 1, 'b': 2}) - - with self.assertRaises(self.failureException): - self.assertDictContainsSubset({1: "one"}, {}) - - with self.assertRaises(self.failureException): - self.assertDictContainsSubset({'a': 2}, {'a': 1}) - - with self.assertRaises(self.failureException): - self.assertDictContainsSubset({'c': 1}, {'a': 1}) - - with self.assertRaises(self.failureException): - self.assertDictContainsSubset({'a': 1, 'c': 1}, {'a': 1}) - - with self.assertRaises(self.failureException): - self.assertDictContainsSubset({'a': 1, 'c': 1}, {'a': 1}) - - one = ''.join(chr(i) for i in range(255)) - # this used to cause a UnicodeDecodeError constructing the failure msg - with self.assertRaises(self.failureException): - self.assertDictContainsSubset({'foo': one}, {'foo': '\uFFFD'}) - def testAssertEqual(self): equal_pairs = [ ((), ()), @@ -1094,20 +1064,11 @@ have to stay around for a few more versions. See #9424. """ old = ( - (self.failIfEqual, (3, 5)), (self.assertNotEquals, (3, 5)), - (self.failUnlessEqual, (3, 3)), (self.assertEquals, (3, 3)), - (self.failUnlessAlmostEqual, (2.0, 2.0)), (self.assertAlmostEquals, (2.0, 2.0)), - (self.failIfAlmostEqual, (3.0, 5.0)), (self.assertNotAlmostEquals, (3.0, 5.0)), - (self.failUnless, (True,)), (self.assert_, (True,)), - (self.failUnlessRaises, (TypeError, lambda _: 3.14 + 'spam')), - (self.failIf, (False,)), - (self.assertSameElements, ([1, 1, 2, 3], [1, 2, 3])), - (self.assertDictContainsSubset, (dict(a=1, b=2), dict(a=1, b=2, c=3))), (self.assertRaisesRegexp, (KeyError, 'foo', lambda: {}['foo'])), (self.assertRegexpMatches, ('bar', 'bar')), ) @@ -1115,19 +1076,6 @@ with self.assertWarns(DeprecationWarning): meth(*args) - def testDeprecatedFailMethods(self): - """Test that the deprecated fail* methods get removed in 3.3""" - if sys.version_info[:2] < (3, 3): - return - deprecated_names = [ - 'failIfEqual', 'failUnlessEqual', 'failUnlessAlmostEqual', - 'failIfAlmostEqual', 'failUnless', 'failUnlessRaises', 'failIf', - 'assertSameElements', 'assertDictContainsSubset', - ] - for deprecated_name in deprecated_names: - with self.assertRaises(AttributeError): - getattr(self, deprecated_name) # remove these in 3.3 - def testDeepcopy(self): # Issue: 5660 class TestableTest(unittest.TestCase): Modified: python/branches/py3k-cdecimal/Lib/unittest/test/test_runner.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/unittest/test/test_runner.py (original) +++ python/branches/py3k-cdecimal/Lib/unittest/test/test_runner.py Fri Mar 4 18:50:17 2011 @@ -257,19 +257,17 @@ return [b.splitlines() for b in p.communicate()] opts = dict(stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=os.path.dirname(__file__)) - ae_msg = b'Please use assertEqual instead.' - at_msg = b'Please use assertTrue instead.' # no args -> all the warnings are printed, unittest warnings only once p = subprocess.Popen([sys.executable, '_test_warnings.py'], **opts) out, err = get_parse_out_err(p) self.assertIn(b'OK', err) # check that the total number of warnings in the output is correct - self.assertEqual(len(out), 12) + self.assertEqual(len(out), 11) # check that the numbers of the different kind of warnings is correct for msg in [b'dw', b'iw', b'uw']: self.assertEqual(out.count(msg), 3) - for msg in [ae_msg, at_msg, b'rw']: + for msg in [b'rw']: self.assertEqual(out.count(msg), 1) args_list = ( @@ -294,11 +292,9 @@ **opts) out, err = get_parse_out_err(p) self.assertIn(b'OK', err) - self.assertEqual(len(out), 14) + self.assertEqual(len(out), 13) for msg in [b'dw', b'iw', b'uw', b'rw']: self.assertEqual(out.count(msg), 3) - for msg in [ae_msg, at_msg]: - self.assertEqual(out.count(msg), 1) def testStdErrLookedUpAtInstantiationTime(self): # see issue 10786 Modified: python/branches/py3k-cdecimal/Lib/urllib/parse.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/urllib/parse.py (original) +++ python/branches/py3k-cdecimal/Lib/urllib/parse.py Fri Mar 4 18:50:17 2011 @@ -523,7 +523,8 @@ string += pct_sequence.decode(encoding, errors) return string -def parse_qs(qs, keep_blank_values=False, strict_parsing=False): +def parse_qs(qs, keep_blank_values=False, strict_parsing=False, + encoding='utf-8', errors='replace'): """Parse a query given as a string argument. Arguments: @@ -540,16 +541,22 @@ strict_parsing: flag indicating what to do with parsing errors. If false (the default), errors are silently ignored. If true, errors raise a ValueError exception. + + encoding and errors: specify how to decode percent-encoded sequences + into Unicode characters, as accepted by the bytes.decode() method. """ dict = {} - for name, value in parse_qsl(qs, keep_blank_values, strict_parsing): + pairs = parse_qsl(qs, keep_blank_values, strict_parsing, + encoding=encoding, errors=errors) + for name, value in pairs: if name in dict: dict[name].append(value) else: dict[name] = [value] return dict -def parse_qsl(qs, keep_blank_values=False, strict_parsing=False): +def parse_qsl(qs, keep_blank_values=False, strict_parsing=False, + encoding='utf-8', errors='replace'): """Parse a query given as a string argument. Arguments: @@ -566,6 +573,9 @@ false (the default), errors are silently ignored. If true, errors raise a ValueError exception. + encoding and errors: specify how to decode percent-encoded sequences + into Unicode characters, as accepted by the bytes.decode() method. + Returns a list, as G-d intended. """ qs, _coerce_result = _coerce_args(qs) @@ -584,8 +594,12 @@ else: continue if len(nv[1]) or keep_blank_values: - name = _coerce_result(unquote(nv[0].replace('+', ' '))) - value = _coerce_result(unquote(nv[1].replace('+', ' '))) + name = nv[0].replace('+', ' ') + name = unquote(name, encoding=encoding, errors=errors) + name = _coerce_result(name) + value = nv[1].replace('+', ' ') + value = unquote(value, encoding=encoding, errors=errors) + value = _coerce_result(value) r.append((name, value)) return r Modified: python/branches/py3k-cdecimal/Lib/urllib/request.py ============================================================================== --- python/branches/py3k-cdecimal/Lib/urllib/request.py (original) +++ python/branches/py3k-cdecimal/Lib/urllib/request.py Fri Mar 4 18:50:17 2011 @@ -1048,6 +1048,9 @@ if request.data is not None: # POST data = request.data + if isinstance(data, str): + raise TypeError("POST data should be bytes" + " or an iterable of bytes. It cannot be str.") if not request.has_header('Content-type'): request.add_unredirected_header( 'Content-type', @@ -1057,8 +1060,8 @@ mv = memoryview(data) except TypeError: if isinstance(data, collections.Iterable): - raise ValueError("Content-Length should be specified \ - for iterable data of type %r %r" % (type(data), + raise ValueError("Content-Length should be specified " + "for iterable data of type %r %r" % (type(data), data)) else: request.add_unredirected_header( @@ -1843,7 +1846,7 @@ if encoding == 'base64': import base64 # XXX is this encoding/decoding ok? - data = base64.decodebytes(data.encode('ascii')).decode('latin1') + data = base64.decodebytes(data.encode('ascii')).decode('latin-1') else: data = unquote(data) msg.append('Content-Length: %d' % len(data)) Modified: python/branches/py3k-cdecimal/Mac/BuildScript/README.txt ============================================================================== --- python/branches/py3k-cdecimal/Mac/BuildScript/README.txt (original) +++ python/branches/py3k-cdecimal/Mac/BuildScript/README.txt Fri Mar 4 18:50:17 2011 @@ -1,78 +1,147 @@ -Building a MacPython distribution -================================= +Building a Python Mac OS X distribution +======================================= -The ``build-install.py`` script creates MacPython distributions, including -sleepycat db4, sqlite3 and readline support. It builds a complete +The ``build-install.py`` script creates Python distributions, including +certain third-party libraries as necessary. It builds a complete framework-based Python out-of-tree, installs it in a funny place with $DESTROOT, massages that installation to remove .pyc files and such, creates an Installer package from the installation plus other files in ``resources`` and ``scripts`` and placed that on a ``.dmg`` disk image. -Prerequisites -------------- +As of Python 2.7.x and 3.2, PSF practice is to build two installer variants +for each release: -* A MacOS X 10.4 (or later) +1. 32-bit-only, i386 and PPC universal, capable on running on all machines + supported by Mac OS X 10.3.9 through (at least) 10.6:: -* XCode 2.2 (or later), with the universal SDK + python build-installer.py \ + --sdk-path=/Developer/SDKs/MacOSX10.4u.sdk \ + --universal-archs=32-bit \ + --dep-target=10.3 + # These are the current default options -* No Fink (in ``/sw``) or DarwinPorts (in ``/opt/local``), those could + - builds the following third-party libraries + + * Bzip2 + * Zlib 1.2.3 + * GNU Readline (GPL) + * SQLite 3 + * NCurses + * Oracle Sleepycat DB 4.8 (Python 2.x only) + + - requires ActiveState ``Tcl/Tk 8.4`` (currently 8.4.19) to be installed for building + + - current target build environment: + + * Mac OS X 10.5.8 PPC or Intel + * Xcode 3.1.4 (or later) + * ``MacOSX10.4u`` SDK (later SDKs do not support PPC G3 processors) + * ``MACOSX_DEPLOYMENT_TARGET=10.3`` + * Apple ``gcc-4.0`` + * Python 2.n (n >= 4) for documentation build with Sphinx + + - alternate build environments: + + * Mac OS X 10.4.11 with Xcode 2.5 + * Mac OS X 10.6.6 with Xcode 3.2.5 + - need to change ``/System/Library/Frameworks/{Tcl,Tk}.framework/Version/Current`` to ``8.4`` + +2. 64-bit / 32-bit, x86_64 and i386 universal, for OS X 10.6 (and later):: + + python build-installer.py \ + --sdk-path=/Developer/SDKs/MacOSX10.6.sdk \ + --universal-archs=intel \ + --dep-target=10.6 + + - uses system-supplied versions of third-party libraries + + * readline module links with Apple BSD editline (libedit) + * builds Oracle Sleepycat DB 4.8 (Python 2.x only) + + - requires ActiveState Tcl/Tk 8.5.9 (or later) to be installed for building + + - current target build environment: + + * Mac OS X 10.6.6 (or later) + * Xcode 3.2.5 (or later) + * ``MacOSX10.6`` SDK + * ``MACOSX_DEPLOYMENT_TARGET=10.6`` + * Apple ``gcc-4.2`` + * Python 2.n (n >= 4) for documentation build with Sphinx + + - alternate build environments: + + * none + + +General Prerequisites +--------------------- + +* No Fink (in ``/sw``) or MacPorts (in ``/opt/local``) or other local + libraries or utilities (in ``/usr/local``) as they could interfere with the build. -* The documentation for the release must be available on python.org +* The documentation for the release is built using Sphinx because it is included in the installer. +* It is safest to start each variant build with an empty source directory + populated with a fresh copy of the untarred source. + The Recipe ---------- -Here are the steps you need to follow to build a MacPython installer: +Here are the steps you need to follow to build a Python installer: -* Run ``./build-installer.py``. Optionally you can pass a number of arguments - to specify locations of various files. Please see the top of +* Run ``build-installer.py``. Optionally you can pass a number of arguments + to specify locations of various files. Please see the top of ``build-installer.py`` for its usage. - Running this script takes some time, I will not only build Python itself + Running this script takes some time, it will not only build Python itself but also some 3th-party libraries that are needed for extensions. * When done the script will tell you where the DMG image is (by default somewhere in ``/tmp/_py``). -Building a 4-way universal installer -.................................... +Building other universal installers +................................... It is also possible to build a 4-way universal installer that runs on -OSX Leopard or later:: +OS X Leopard or later:: - $ ./build-installer.py --dep-target=10.5 --universal-archs=all --sdk=/ + python 2.6 /build-installer.py \ + --dep-target=10.5 + --universal-archs=all + --sdk-path=/Developer/SDKs/MacOSX10.5.sdk + +This requires that the deployment target is 10.5, and hence +also that you are building on at least OS X 10.5. 4-way includes +``i386``, ``x86_64``, ``ppc``, and ``ppc64`` (G5). ``ppc64`` executable +variants can only be run on G5 machines running 10.5. Note that, +while OS X 10.6 is only supported on Intel-based machines, it is possible +to run ``ppc`` (32-bit) executables unmodified thanks to the Rosetta ppc +emulation in OS X 10.5 and 10.6. + +Other ``--universal-archs`` options are ``64-bit`` (``x86_64``, ``ppc64``), +and ``3-way`` (``ppc``, ``i386``, ``x86_64``). None of these options +are regularly exercised; use at your own risk. -This requires that the deployment target is 10.5 (or later), and hence -also that your building on at least OSX 10.5. Testing ------- -The resulting binaries should work on MacOSX 10.3.9 or later. I usually run -the installer on a 10.3.9, a 10.4.x PPC and a 10.4.x Intel system and then -run the testsuite to make sure. - - -Announcements -------------- - -(This is mostly of historic interest) - -When all is done, announcements can be posted to at least the following -places: -- pythonmac-sig at python.org -- python-dev at python.org -- python-announce at python.org -- archivist at info-mac.org -- adcnews at apple.com -- news at macnn.com -- http://www.macupdate.com -- http://guide.apple.com/usindex.lasso -- http://www.apple.com/downloads/macosx/submit -- http://www.versiontracker.com/ (userid Jack.Jansen at oratrix.com) -- http://www.macshareware.net (userid jackjansen) +Ideally, the resulting binaries should be installed and the test suite run +on all supported OS X releases and architectures. As a practical matter, +that is generally not possible. At a minimum, variant 1 should be run on +at least one Intel, one PPC G4, and one PPC G3 system and one each of +OS X 10.6, 10.5, 10.4, and 10.3.9. Not all tests run on 10.3.9. +Variant 2 should be run on 10.6 in both 32-bit and 64-bit modes.:: + + arch -i386 /usr/local/bin/pythonn.n -m test.regrtest -w -u all + arch -X86_64 /usr/local/bin/pythonn.n -m test.regrtest -w -u all + +Certain tests will be skipped and some cause the interpreter to fail +which will likely generate ``Python quit unexpectedly`` alert messages +to be generated at several points during a test run. These can +be ignored. -Also, check out Stephan Deibels http://pythonology.org/market contact list Modified: python/branches/py3k-cdecimal/Mac/BuildScript/build-installer.py ============================================================================== --- python/branches/py3k-cdecimal/Mac/BuildScript/build-installer.py (original) +++ python/branches/py3k-cdecimal/Mac/BuildScript/build-installer.py Fri Mar 4 18:50:17 2011 @@ -1,12 +1,14 @@ #!/usr/bin/python """ -This script is used to build the "official unofficial" universal build on -Mac OS X. It requires Mac OS X 10.4, Xcode 2.2 and the 10.4u SDK to do its -work. 64-bit or four-way universal builds require at least OS X 10.5 and -the 10.5 SDK. - -Please ensure that this script keeps working with Python 2.3, to avoid -bootstrap issues (/usr/bin/python is Python 2.3 on OSX 10.4) +This script is used to build "official" universal installers on Mac OS X. +It requires at least Mac OS X 10.4, Xcode 2.2 and the 10.4u SDK for +32-bit builds. 64-bit or four-way universal builds require at least +OS X 10.5 and the 10.5 SDK. + +Please ensure that this script keeps working with Python 2.5, to avoid +bootstrap issues (/usr/bin/python is Python 2.5 on OSX 10.5). Sphinx, +which is used to build the documentation, currently requires at least +Python 2.4. Usage: see USAGE variable in the script. """ @@ -144,9 +146,9 @@ if DEPTARGET < '10.5': result.extend([ dict( - name="Bzip2 1.0.5", - url="http://www.bzip.org/1.0.5/bzip2-1.0.5.tar.gz", - checksum='3c15a0c8d1d3ee1c46a1634d00617b1a', + name="Bzip2 1.0.6", + url="http://bzip.org/1.0.6/bzip2-1.0.6.tar.gz", + checksum='00b516f4704d4a7cb50a1d97e6e8e15b', configure=None, install='make install CC=%s PREFIX=%s/usr/local/ CFLAGS="-arch %s -isysroot %s"'%( CC, @@ -169,29 +171,33 @@ ), dict( # Note that GNU readline is GPL'd software - name="GNU Readline 5.1.4", - url="http://ftp.gnu.org/pub/gnu/readline/readline-5.1.tar.gz" , - checksum='7ee5a692db88b30ca48927a13fd60e46', + name="GNU Readline 6.1.2", + url="http://ftp.gnu.org/pub/gnu/readline/readline-6.1.tar.gz" , + checksum='fc2f7e714fe792db1ce6ddc4c9fb4ef3', patchlevel='0', patches=[ # The readline maintainers don't do actual micro releases, but # just ship a set of patches. - 'http://ftp.gnu.org/pub/gnu/readline/readline-5.1-patches/readline51-001', - 'http://ftp.gnu.org/pub/gnu/readline/readline-5.1-patches/readline51-002', - 'http://ftp.gnu.org/pub/gnu/readline/readline-5.1-patches/readline51-003', - 'http://ftp.gnu.org/pub/gnu/readline/readline-5.1-patches/readline51-004', + 'http://ftp.gnu.org/pub/gnu/readline/readline-6.1-patches/readline61-001', + 'http://ftp.gnu.org/pub/gnu/readline/readline-6.1-patches/readline61-002', ] ), dict( - name="SQLite 3.6.11", - url="http://www.sqlite.org/sqlite-3.6.11.tar.gz", - checksum='7ebb099696ab76cc6ff65dd496d17858', + name="SQLite 3.7.4", + url="http://www.sqlite.org/sqlite-autoconf-3070400.tar.gz", + checksum='8f0c690bfb33c3cbbc2471c3d9ba0158', + configure_env=('CFLAGS="-Os' + ' -DSQLITE_ENABLE_FTS3' + ' -DSQLITE_ENABLE_FTS3_PARENTHESIS' + ' -DSQLITE_ENABLE_RTREE' + ' -DSQLITE_TCL=0' + '"'), configure_pre=[ '--enable-threadsafe', - '--enable-tempstore', '--enable-shared=no', '--enable-static=yes', - '--disable-tcl', + '--disable-readline', + '--disable-dependency-tracking', ] ), dict( @@ -199,6 +205,7 @@ url="http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.5.tar.gz", checksum='e73c1ac10b4bfc46db43b2ddfd6244ef', configure_pre=[ + "--enable-widec", "--without-cxx", "--without-ada", "--without-progs", @@ -225,18 +232,19 @@ ), ]) - result.extend([ - dict( - name="Sleepycat DB 4.7.25", - url="http://download.oracle.com/berkeley-db/db-4.7.25.tar.gz", - checksum='ec2b87e833779681a0c3a814aa71359e', - buildDir="build_unix", - configure="../dist/configure", - configure_pre=[ - '--includedir=/usr/local/include/db4', - ] - ), - ]) + if not PYTHON_3: + result.extend([ + dict( + name="Sleepycat DB 4.7.25", + url="http://download.oracle.com/berkeley-db/db-4.7.25.tar.gz", + checksum='ec2b87e833779681a0c3a814aa71359e', + buildDir="build_unix", + configure="../dist/configure", + configure_pre=[ + '--includedir=/usr/local/include/db4', + ] + ), + ]) return result @@ -399,6 +407,9 @@ Check that we're running on a supported system. """ + if sys.version_info[0:2] < (2, 4): + fatal("This script must be run with Python 2.4 or later") + if platform.system() != 'Darwin': fatal("This script should be run on a Mac OS X 10.4 (or later) system") @@ -697,6 +708,9 @@ configure_args.insert(0, configure) configure_args = [ shellQuote(a) for a in configure_args ] + if 'configure_env' in recipe: + configure_args.insert(0, recipe['configure_env']) + print "Running configure for %s"%(name,) runCommand(' '.join(configure_args) + ' 2>&1') @@ -752,9 +766,9 @@ shutil.rmtree(buildDir) if os.path.exists(rootDir): shutil.rmtree(rootDir) - os.mkdir(buildDir) - os.mkdir(rootDir) - os.mkdir(os.path.join(rootDir, 'empty-dir')) + os.makedirs(buildDir) + os.makedirs(rootDir) + os.makedirs(os.path.join(rootDir, 'empty-dir')) curdir = os.getcwd() os.chdir(buildDir) @@ -826,29 +840,33 @@ os.chmod(p, stat.S_IMODE(st.st_mode) | stat.S_IWGRP) os.chown(p, -1, gid) - LDVERSION=None - VERSION=None - ABIFLAGS=None + if PYTHON_3: + LDVERSION=None + VERSION=None + ABIFLAGS=None - with open(os.path.join(buildDir, 'Makefile')) as fp: + fp = open(os.path.join(buildDir, 'Makefile'), 'r') for ln in fp: if ln.startswith('VERSION='): VERSION=ln.split()[1] if ln.startswith('ABIFLAGS='): ABIFLAGS=ln.split()[1] - if ln.startswith('LDVERSION='): LDVERSION=ln.split()[1] + fp.close() - LDVERSION = LDVERSION.replace('$(VERSION)', VERSION) - LDVERSION = LDVERSION.replace('$(ABIFLAGS)', ABIFLAGS) + LDVERSION = LDVERSION.replace('$(VERSION)', VERSION) + LDVERSION = LDVERSION.replace('$(ABIFLAGS)', ABIFLAGS) + config_suffix = '-' + LDVERSION + else: + config_suffix = '' # Python 2.x # We added some directories to the search path during the configure # phase. Remove those because those directories won't be there on # the end-users system. path =os.path.join(rootDir, 'Library', 'Frameworks', 'Python.framework', 'Versions', version, 'lib', 'python%s'%(version,), - 'config-' + LDVERSION, 'Makefile') + 'config' + config_suffix, 'Makefile') fp = open(path, 'r') data = fp.read() fp.close() Modified: python/branches/py3k-cdecimal/Mac/BuildScript/resources/ReadMe.txt ============================================================================== --- python/branches/py3k-cdecimal/Mac/BuildScript/resources/ReadMe.txt (original) +++ python/branches/py3k-cdecimal/Mac/BuildScript/resources/ReadMe.txt Fri Mar 4 18:50:17 2011 @@ -1,29 +1,36 @@ This package will install Python $FULL_VERSION for Mac OS X -$MACOSX_DEPLOYMENT_TARGET for the following -architecture(s): $ARCHITECTURES. +$MACOSX_DEPLOYMENT_TARGET for the following architecture(s): +$ARCHITECTURES. -Separate installers are available for older versions -of Mac OS X, see the homepage, below. +Installation requires approximately $INSTALL_SIZE MB of disk space, +ignore the message that it will take zero bytes. -Installation requires approximately $INSTALL_SIZE MB of disk -space, ignore the message that it will take zero bytes. +You must install onto your current boot disk, even though the +installer does not enforce this, otherwise things will not work. -You must install onto your current boot disk, even -though the installer does not enforce this, otherwise -things will not work. - -Python consists of the Python programming language -interpreter, plus a set of programs to allow easy -access to it for Mac users including an integrated development -environment, IDLE, plus a set of pre-built extension modules -that open up specific Macintosh technologies to Python programs. - -The installer puts the applications in "Python $VERSION" -in your Applications folder, and the underlying machinery in -$PYTHONFRAMEWORKINSTALLDIR. It can optionally place -links to the command-line tools in /usr/local as well, -by default you have to add the "bin" directory inside -the framework to you shell's search path. +Python consists of the Python programming language interpreter, plus +a set of programs to allow easy access to it for Mac users including +an integrated development environment, IDLE, plus a set of pre-built +extension modules that open up specific Macintosh technologies to +Python programs. + + **** IMPORTANT **** + +Before using IDLE or other programs using the tkinter graphical user +interface toolkit, visit http://www.python.org/download/mac/tcltk/ +for current information about supported and recommended versions +of Tcl/Tk for this version of Python and Mac OS X. + + ******************* + +The installer puts applications, an "Update Shell Profile" command, +and a link to the optionally installed Python Documentation into the +"Python $VERSION" subfolder of the system Applications folder, +and puts the underlying machinery into the folder +$PYTHONFRAMEWORKINSTALLDIR. It can +optionally place links to the command-line tools in /usr/local/bin as +well. Double-click on the "Update Shell Profile" command to add the +"bin" directory inside the framework to your shell's search path. More information on Python in general can be found at http://www.python.org. Modified: python/branches/py3k-cdecimal/Mac/BuildScript/resources/Welcome.rtf ============================================================================== --- python/branches/py3k-cdecimal/Mac/BuildScript/resources/Welcome.rtf (original) +++ python/branches/py3k-cdecimal/Mac/BuildScript/resources/Welcome.rtf Fri Mar 4 18:50:17 2011 @@ -1,19 +1,35 @@ -{\rtf1\ansi\ansicpg1252\cocoartf949\cocoasubrtf430 +{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} -\paperw11900\paperh16840\margl1440\margr1440\vieww9920\viewh10660\viewkind0 +\paperw11904\paperh16836\margl1440\margr1440\vieww9640\viewh10620\viewkind0 \pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural \f0\fs24 \cf0 This package will install -\b MacPython $FULL_VERSION +\b Python $FULL_VERSION \b0 for \b Mac OS X $MACOSX_DEPLOYMENT_TARGET \b0 .\ \ -MacPython consists of the Python programming language interpreter, plus a set of programs to allow easy access to it for Mac users including an integrated development environment \b IDLE\b0 plus a set of pre-built extension modules that open up specific Macintosh technologies to Python programs.\ + +\b Python for Mac OS X +\b0 consists of the Python programming language interpreter, plus a set of programs to allow easy access to it for Mac OS X users including an integrated development environment +\b IDLE +\b0 and a set of pre-built extension modules that open up specific Macintosh technologies to Python programs.\ \ -See the ReadMe file for more information.\ +See the ReadMe file and the Python documentation for more information.\ \ \b NOTE: -\b0 This package will by default not update your shell profile and will also not install files in /usr/local. Double-click \b Update Shell Profile\b0 at any time to make $FULL_VERSION the default Python.} +\b0 This package will by default not update your shell profile and will also not install files in /usr/local. Double-click +\b Update Shell Profile +\b0 at any time to make $FULL_VERSION the default Python.\ +\ + +\b IMPORTANT: +\b0 +\b IDLE +\b0 and other programs using the +\b tkinter +\b0 graphical user interface toolkit require specific versions of the +\b Tcl/Tk +\b0 platform independent windowing toolkit. Visit {\field{\*\fldinst{HYPERLINK "http://www.python.org/download/mac/tcltk/"}}{\fldrslt http://www.python.org/download/mac/tcltk/}} for current information on supported and recommended versions of Tcl/Tk for this version of Python and Mac OS X.} \ No newline at end of file Modified: python/branches/py3k-cdecimal/Mac/BuildScript/scripts/postflight.documentation ============================================================================== --- python/branches/py3k-cdecimal/Mac/BuildScript/scripts/postflight.documentation (original) +++ python/branches/py3k-cdecimal/Mac/BuildScript/scripts/postflight.documentation Fri Mar 4 18:50:17 2011 @@ -1,11 +1,32 @@ #!/bin/sh PYVER="@PYVER@" +FWK="/Library/Frameworks/Python.framework/Versions/${PYVER}" +FWK_DOCDIR_SUBPATH="Resources/English.lproj/Documentation" +FWK_DOCDIR="${FWK}/${FWK_DOCDIR_SUBPATH}" +APPDIR="/Applications/Python ${PYVER}" +DEV_DOCDIR="/Developer/Documentation" +SHARE_DIR="${FWK}/share" +SHARE_DOCDIR="${SHARE_DIR}/doc/python${PYVER}" +SHARE_DOCDIR_TO_FWK="../../.." -if [ -d /Developer/Documentation ]; then - if [ ! -d /Developer/Documentation/Python ]; then - mkdir -p /Developer/Documentation/Python - fi +# make link in /Developer/Documentation/ for Xcode users +if [ -d "${DEV_DOCDIR}" ]; then + if [ ! -d "${DEV_DOCDIR}/Python" ]; then + mkdir -p "${DEV_DOCDIR}/Python" + fi + ln -fhs "${FWK_DOCDIR}" "${DEV_DOCDIR}/Python/Reference Documentation ${PYVER}" +fi + +# make link in /Applications/Python m.n/ for Finder users +if [ -d "${APPDIR}" ]; then + ln -fhs "${FWK_DOCDIR}/index.html" "${APPDIR}/Python Documentation.html" +fi - ln -fhs /Library/Frameworks/Python.framework/Versions/${PYVER}/Resources/English.lproj/Documentation "/Developer/Documentation/Python/Reference Documentation @PYVER@" +# make share/doc link in framework for command line users +if [ -d "${SHARE_DIR}" ]; then + mkdir -p "${SHARE_DOCDIR}" + # make relative link to html doc directory + ln -fhs "${SHARE_DOCDIR_TO_FWK}/${FWK_DOCDIR_SUBPATH}" "${SHARE_DOCDIR}/html" fi + Deleted: python/branches/py3k-cdecimal/Mac/Extras.ReadMe.txt ============================================================================== --- python/branches/py3k-cdecimal/Mac/Extras.ReadMe.txt Fri Mar 4 18:50:17 2011 +++ (empty file) @@ -1,5 +0,0 @@ -This folder contains examples of Python usage and useful scripts and tools. - -You should be aware that these are not Macintosh-specific but are shared -among Python on all platforms, so there are some that only run on Windows -or Unix or another platform, and/or make little sense on a Macintosh. Deleted: python/branches/py3k-cdecimal/Mac/IDLE/idlemain.py ============================================================================== --- python/branches/py3k-cdecimal/Mac/IDLE/idlemain.py Fri Mar 4 18:50:17 2011 +++ (empty file) @@ -1,30 +0,0 @@ -""" -Bootstrap script for IDLE as an application bundle. -""" -import sys, os - -from idlelib.PyShell import main - -# Change the current directory the user's home directory, that way we'll get -# a more useful default location in the open/save dialogs. -os.chdir(os.path.expanduser('~/Documents')) - - -# Make sure sys.executable points to the python interpreter inside the -# framework, instead of at the helper executable inside the application -# bundle (the latter works, but doesn't allow access to the window server) -if sys.executable.endswith('-32'): - sys.executable = os.path.join(sys.prefix, 'bin', 'python-32') -else: - sys.executable = os.path.join(sys.prefix, 'bin', 'python') - -# Look for the -psn argument that the launcher adds and remove it, it will -# only confuse the IDLE startup code. -for idx, value in enumerate(sys.argv): - if value.startswith('-psn_'): - del sys.argv[idx] - break - -#argvemulator.ArgvCollector().mainloop() -if __name__ == '__main__': - main() Modified: python/branches/py3k-cdecimal/Mac/Makefile.in ============================================================================== --- python/branches/py3k-cdecimal/Mac/Makefile.in (original) +++ python/branches/py3k-cdecimal/Mac/Makefile.in Fri Mar 4 18:50:17 2011 @@ -177,9 +177,11 @@ $(INSTALLED_PYTHONAPP): install_Python -installextras: $(srcdir)/Extras.ReadMe.txt $(srcdir)/Extras.install.py - $(INSTALL) -d "$(DESTDIR)$(PYTHONAPPSDIR)/Extras" - $(INSTALL) $(srcdir)/Extras.ReadMe.txt "$(DESTDIR)$(PYTHONAPPSDIR)/Extras/ReadMe.txt" +installextras: $(srcdir)/Extras.install.py + $(INSTALL) -d "$(DESTDIR)$(prefix)/share/doc/python$(VERSION)/examples" + $(RUNSHARED) $(BUILDPYTHON) $(srcdir)/Extras.install.py $(srcdir)/../Tools \ + "$(DESTDIR)$(prefix)/share/doc/python$(VERSION)/examples/Tools" ; \ + chmod -R ugo+rX,go-w "$(DESTDIR)$(prefix)/share/doc/python$(VERSION)/examples/Tools" checkapplepython: $(srcdir)/Tools/fixapplepython23.py Modified: python/branches/py3k-cdecimal/Makefile.pre.in ============================================================================== --- python/branches/py3k-cdecimal/Makefile.pre.in (original) +++ python/branches/py3k-cdecimal/Makefile.pre.in Fri Mar 4 18:50:17 2011 @@ -458,8 +458,8 @@ libpython3.so: libpython$(LDVERSION).so $(BLDSHARED) -o $@ -Wl,-hl$@ $^ -libpython$(VERSION).dylib: $(LIBRARY_OBJS) - $(CC) -dynamiclib -Wl,-single_module $(PY_LDFLAGS) -undefined dynamic_lookup -Wl,-install_name,$(prefix)/lib/libpython$(VERSION).dylib -Wl,-compatibility_version,$(VERSION) -Wl,-current_version,$(VERSION) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \ +libpython$(LDVERSION).dylib: $(LIBRARY_OBJS) + $(CC) -dynamiclib -Wl,-single_module $(PY_LDFLAGS) -undefined dynamic_lookup -Wl,-install_name,$(prefix)/lib/libpython$(LDVERSION).dylib -Wl,-compatibility_version,$(VERSION) -Wl,-current_version,$(VERSION) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \ libpython$(VERSION).sl: $(LIBRARY_OBJS) @@ -907,7 +907,7 @@ test/mpdecimal \ test/decimaltestdata test/xmltestdata test/subprocessdata \ test/tracedmodules test/encoded_modules \ - concurrent concurrent/futures encodings \ + collections concurrent concurrent/futures encodings \ email email/mime email/test email/test/data \ html json test/json_tests http dbm xmlrpc \ sqlite3 sqlite3/test \ @@ -1257,7 +1257,7 @@ done -rm -f core Makefile Makefile.pre config.status \ Modules/Setup Modules/Setup.local Modules/Setup.config \ - Modules/ld_so_aix Misc/python.pc + Modules/ld_so_aix Modules/python.exp Misc/python.pc -rm -f python*-gdb.py -rm -f pybuilddir.txt find $(srcdir) '(' -name '*.fdc' -o -name '*~' \ Modified: python/branches/py3k-cdecimal/Misc/ACKS ============================================================================== --- python/branches/py3k-cdecimal/Misc/ACKS (original) +++ python/branches/py3k-cdecimal/Misc/ACKS Fri Mar 4 18:50:17 2011 @@ -35,6 +35,7 @@ Jason Asbahr David Ascher Chris AtLee +Aymeric Augustin John Aycock Jan-Hein B?hrman Donovan Baarda @@ -326,6 +327,7 @@ Fabian Groffen Eric Groo Dag Gruneau +Filip Gruszczy?ski Michael Guravage Lars Gust?bel Thomas G?ttler @@ -467,6 +469,7 @@ Pat Knight Greg Kochanski Damon Kohler +???? ????????? Vlad Korolev Joseph Koshy Maksim Kozyarchuk @@ -574,6 +577,7 @@ Mike Meyer Steven Miale Trent Mick +Stan Mihai Aristotelis Mikropoulos Damien Miller Chad Miller @@ -618,6 +622,7 @@ Tim Northover Joe Norton Neal Norwitz +Steffen Daode Nurpmeso Nigel O'Brian Kevin O'Connor Tim O'Malley @@ -653,6 +658,7 @@ Gabriel de Perthuis Tim Peters Benjamin Peterson +Joe Peterson Chris Petrilli Bjorn Pettersen Geoff Philbrick @@ -679,6 +685,7 @@ Steve Purcell Fernando P?rez Eduardo P?rez +Pierre Quentel Brian Quinlan Anders Qvist Burton Radons @@ -791,10 +798,12 @@ Eric V. Smith Christopher Smith Gregory P. Smith +Mark Smith Rafal Smotrzyk Dirk Soede Paul Sokolovsky Cody Somerville +Edoardo Spadolini Clay Spence Per Spilling Joshua Spoerri @@ -840,6 +849,7 @@ Robin Thomas Jeremy Thurgood Eric Tiedemann +July Tikhonov Tracy Tims Oren Tirosh Jason Tishler Deleted: python/branches/py3k-cdecimal/Misc/AIX-NOTES ============================================================================== --- python/branches/py3k-cdecimal/Misc/AIX-NOTES Fri Mar 4 18:50:17 2011 +++ (empty file) @@ -1,155 +0,0 @@ -Subject: AIX - Misc/AIX-NOTES -From: Vladimir Marangozov -To: guido at CNRI.Reston.Va.US (Guido van Rossum) -Date: Wed, 6 Aug 1997 11:41:00 +0200 (EET) - -============================================================================== - COMPILER INFORMATION ------------------------------------------------------------------------------- - -(1) A problem has been reported with "make test" failing because of "weird - indentation." Searching the comp.lang.python newsgroup reveals several - threads on this subject, and it seems to be a compiler bug in an old - version of the AIX CC compiler. However, the compiler/OS combination - which has this problem is not identified. In preparation for the 1.4 - release, Vladimir Marangozov (Vladimir.Marangozov at imag.fr) and Manus Hand - (mhand at csn.net) reported no such troubles for the following compilers and - operating system versions: - AIX C compiler version 3.1.2 on AIX 4.1.3 and AIX 4.1.4 - AIX C compiler version 1.3.0 on AIX 3.2.5 - If you have this problem, please report the compiler/OS version. - -(2) Stefan Esser (se at MI.Uni-Koeln.DE), in work done to compile Python - 1.0.0 on AIX 3.2.4, reports that AIX compilers don't like the LANG - environment varaiable set to European locales. This makes the compiler - generate floating point constants using "," as the decimal separator, - which the assembler doesn't understand (or perhaps it is the other way - around, with the assembler expecting, but not getting "," in float - numbers). "LANG=C; export LANG" solves the problem, as does - "LANG=C $(MAKE) ..." in the master Makefile. - -(3) The cc (or xlc) compiler considers "Python/ceval.c" too complex to - optimize, except when invoked with "-qmaxmem=4000" - -(4) Some problems (due to _AIX not being #defined) when python 1.0.0 was - compiled using 'gcc -ansi' were reported by Stefan Esser, but were not - investigated. - -(5) The cc compiler has internal variables named "__abs" and "__div". These - names are reserved and may not be used as program variables in compiled - source. (As an anecdote in support of this, the implementation of - Python/operator.c had this problem in the 1.4 beta releases, and the - solution was to re#define some core-source variables having these names, - to give these python variables different names if the build is being done - on AIX.) - -(6) As mentioned in the README, builds done immediately after previous builds - (without "make clean" or "make clobber") sometimes fail for mysterious - reasons. There are some unpredictable results when the configuration - is changed (that is, if you "configure" with different parameters) or if - intermediate changes are made to some files. Performing "make clean" or - "make clobber" resolves the problems. - -============================================================================== - THREAD SUPPORT ------------------------------------------------------------------------------- - -As of AIX version 4, there are two (incompatible) types of pthreads on AIX: - a) AIX DCE pthreads (on AIX 3.2.5) - b) AIX 4 pthreads (on AIX 4.1 and up) -Support has been added to Python to handle the distinction. - -The cc and gcc compilers do not initialize pthreads properly. The only -compilers that can initialize pthreads properly are IBM *_r* compilers, -which use the crt0_r.o module, and which invoke ld with the reentrant -version of libc (libc_r). - -In order to enable thread support, follow these steps: - 1. Uncomment the thread module in Modules/Setup - 2. configure --without-gcc --with-thread ... - 3. make CC="cc_r" OPT="-O -qmaxmem=4000" - -For example, to make with both threads and readline, use: - ./configure --without-gcc --with-thread --with-readline=/usr/local/lib - make CC=cc_r OPT="-O2 -qmaxmem=4000" - -If the "make" which is used ignores the "CC=cc_r" directive, one could alias -the cc command to cc_r (for example, in C-shell, perform an "alias cc cc_r"). - -Vladimir Marangozov (Vladimir.Marangozov at imag.fr) provided this information, -and he reports that a cc_r build initializes threads properly and that all -demos on threads run okay with cc_r. - -============================================================================== - SHARED LIBRARY SUPPORT ------------------------------------------------------------------------------- - -AIX shared library support was added to Python in the 1.4 release by Manus -Hand (mhand at csn.net) and Vladimir Marangozov (Vladimir.Marangozov at imag.fr). - -Python modules may now be built as shared libraries on AIX using the normal -process of uncommenting the "*shared*" line in Modules/Setup before the -build. - -AIX shared libraries require that an "export" and "import" file be provided -at compile time to list all extern symbols which may be shared between -modules. The "export" file (named python.exp) for the modules and the -libraries that belong to the Python core is created by the "makexp_aix" -script before performing the link of the python binary. It lists all global -symbols (exported during the link) of the modules and the libraries that -make up the python executable. - -When shared library modules (.so files) are made, a second shell script -is invoked. This script is named "ld_so_aix" and is also provided with -the distribution in the Modules subdirectory. This script acts as an "ld" -wrapper which hides the explicit management of "export" and "import" files; -it adds the appropriate arguments (in the appropriate order) to the link -command that creates the shared module. Among other things, it specifies -that the "python.exp" file is an "import" file for the shared module. - -At the time of this writing, neither the python.exp file nor the makexp_aix -or ld_so_aix scripts are installed by the make procedure, so you should -remember to keep these and/or copy them to a different location for -safekeeping if you wish to use them to add shared extension modules to -python. However, if the make process has been updated since this writing, -these files MAY have been installed for you during the make by the -LIBAINSTALL rule, in which case the need to make safe copies is obviated. - -If you wish to add a shared extension module to the language, you would follow -the steps given in the example below (the example adds the shared extension -module "spam" to python): - 1. Make sure that "ld_so_aix" and "makexp_aix" are in your path. - 2. The "python.exp" file should be in the current directory. - 3. Issue the following commands or include them in your Makefile: - cc -c spammodule.c - ld_so_aix cc spammodule.o -o spammodule.so - -For more detailed information on the shared library support, examine the -contents of the "ld_so_aix" and "makexp_aix" scripts or refer to the AIX -documentation. - -NOTE: If the extension module is written in C++ and contains templates, - an alternative to "ld_so_aix" is the /usr/lpp/xlC/bin/makeC++SharedLib - script. Chris Myers (myers at TC.Cornell.EDU) reports that ld_so_aix - works well for some C++ (including the C++ that is generated - automatically by the Python SWIG package [SWIG can be found at - http://www.cs.utah.edu/~beazley/SWIG/swig.html]). However, it is not - known whether makeC++SharedLib can be used as a complete substitute - for ld_so_aix. - -According to Gary Hook from IBM, the format of the export file changed -in AIX 4.2. For AIX 4.2 and later, a period "." is required on the -first line after "#!". If python crashes while importing a shared -library, you can try modifying the LINKCC variable in the Makefile. -It probably looks like this: - - LINKCC= $(srcdir)/Modules/makexp_aix Modules/python.exp \"\" $(LIBRARY); $(PURIFY) $(CXX) - -You should modify the \"\" to be a period: - - LINKCC= $(srcdir)/Modules/makexp_aix Modules/python.exp . $(LIBRARY); $(PURIFY) $(CXX) - -Using a period fixed the problem in the snake farm. YMMV. -This fix has been incorporated into Python 2.3. - -============================================================================== Modified: python/branches/py3k-cdecimal/Misc/NEWS ============================================================================== --- python/branches/py3k-cdecimal/Misc/NEWS (original) +++ python/branches/py3k-cdecimal/Misc/NEWS Fri Mar 4 18:50:17 2011 @@ -2,19 +2,366 @@ Python News +++++++++++ +What's New in Python 3.3 Alpha 1? +================================= + +*Release date: XX-XXX-20XX* + +Core and Builtins +----------------- + +- Issue #11335: Fixed a memory leak in list.sort when the key function + throws an exception. + +- Issue #8923: When a string is encoded to UTF-8 in strict mode, the result is + cached into the object. Examples: str.encode(), str.encode('utf-8'), + PyUnicode_AsUTF8String() and PyUnicode_AsEncodedString(unicode, "utf-8", + NULL). + +- Issue #10831: PyUnicode_FromFormat() supports %li, %lli and %zi formats. + +- Issue #10829: Refactor PyUnicode_FromFormat(), use the same function to parse + the format string in the 3 steps, fix crashs on invalid format strings. + +- Issue #11246: Fix PyUnicode_FromFormat("%V") to decode the byte string from + UTF-8 (with replace error handler) instead of ISO-8859-1 (in strict mode). + Patch written by Ray Allen. + +- Issue #11286: Raise a ValueError from calling PyMemoryView_FromBuffer with + a buffer struct having a NULL data pointer. + +- Issue #11272: On Windows, input() strips '\r' (and not only '\n'), and + sys.stdin uses universal newline (replace '\r\n' by '\n'). + +- Issue #10830: Fix PyUnicode_FromFormatV("%c") for non-BMP characters on + narrow build. + +- Issue #11168: Remove filename debug variable from PyEval_EvalFrameEx(). + It encoded the Unicode filename to UTF-8, but the encoding fails on + undecodable filename (on surrogate characters) which raises an unexpected + UnicodeEncodeError on recursion limit. + +- Issue #11187: Remove bootstrap code (use ASCII) of + PyUnicode_AsEncodedString(), it was replaced by a better fallback (use the + locale encoding) in PyUnicode_EncodeFSDefault(). + +- Check for NULL result in PyType_FromSpec. + +- Issue #10516: New copy() and clear() methods for lists and bytearrays. + +- Issue #11386: bytearray.pop() now throws IndexError when the bytearray is + empty, instead of OverflowError. + +Library +------- + +- Issue #9795: add context manager protocol support for nntplib.NNTP class. + +- Issue #11306: mailbox in certain cases adapts to an inability to open + certain files in read-write mode. Previously it detected this by + checking for EACCES, now it also checks for EROFS. + +- Issue #11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors + on accept(), send() and recv(). + +- Issue #11377: Deprecate platform.popen() and reimplement it with os.popen(). + +- Issue #8513: On UNIX, subprocess supports bytes command string. + +- Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall. + +- Issue #11140: Lock.release() now raises a RuntimeError when attempting + to release an unacquired lock, as claimed in the threading documentation. + The _thread.error exception is now an alias of RuntimeError. Patch by + Filip Gruszczy?ski. Patch for _dummy_thread by Aymeric Augustin. + +- Issue 8594: ftplib now provides a source_address parameter to specify which + (address, port) to bind to before connecting. + +- Issue #11326: Add the missing connect_ex() implementation for SSL sockets, + and make it work for non-blocking connects. + +- Issue #11297: Add collections.ChainMap(). + +- Issue #10755: Add the posix.fdlistdir() function. Patch by Ross Lagerwall. + +- Issue #4761: Add the *at() family of functions (openat(), etc.) to the posix + module. Patch by Ross Lagerwall. + +- Issue #7322: Trying to read from a socket's file-like object after a timeout + occurred now raises an error instead of silently losing data. + +- Issue 11291: poplib.POP no longer suppresses errors on quit(). + +- Issue 11177: asyncore's create_socket() arguments can now be omitted. + +- Issue #6064: Add a ``daemon`` keyword argument to the threading.Thread + and multiprocessing.Process constructors in order to override the + default behaviour of inheriting the daemonic property from the current + thread/process. + +- Issue #10956: Buffered I/O classes retry reading or writing after a signal + has arrived and the handler returned successfully. + +- Issue #10784: New os.getpriority() and os.setpriority() functions. + +- Issue #11114: Fix catastrophic performance of tell() on text files (up + to 1000x faster in some cases). It is still one to two order of magnitudes + slower than binary tell(). + +- Issue 10882: Add os.sendfile function. + +- Issue #10868: Allow usage of the register method of an ABC as a class + decorator. + +- Issue #11224: Fixed a regression in tarfile that affected the file-like + objects returned by TarFile.extractfile() regarding performance, memory + consumption and failures with the stream interface. + +- Issue #10924: Adding salt and Modular Crypt Format to crypt library. + Moved old C wrapper to _crypt, and added a Python wrapper with + enhanced salt generation and simpler API for password generation. + +- Issue #11074: Make 'tokenize' so it can be reloaded. + +- Issue #11085: Moved collections abstract base classes into a separate + module called collections.abc, following the pattern used by importlib.abc. + For backwards compatibility, the names are imported into the collections + module. + +- Issue #4681: Allow mmap() to work on file sizes and offsets larger than + 4GB, even on 32-bit builds. Initial patch by Ross Lagerwall, adapted for + 32-bit Windows. + +- Issue #11169: compileall module uses repr() to format filenames and paths to + escape surrogate characters and show spaces. + +- Issue #11089: Fix performance issue limiting the use of ConfigParser() + with large config files. + +- Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers + larger than 4GB. Patch by Nadeem Vawda. + +- Issue #11388: Added a clear() method to MutableSequence + +Build +----- + +- Issue #11268: Prevent Mac OS X Installer failure if Documentation + package had previously been installed. + +Tests +----- + +- Issue #10911: Add tests on CGI with non-ASCII characters. Patch written by + Pierre Quentel. + +- Issue #9931: Fix hangs in GUI tests under Windows in certain conditions. + Patch by Hirokazu Yamamoto. + +- Issue #10512: Properly close sockets under test.test_cgi. + +- Issue #10992: Make tests pass under coverage. + +- Issue #10826: Prevent sporadic failure in test_subprocess on Solaris due + to open door files. + +- Issue #10990: Prevent tests from clobbering a set trace function. + + +What's New in Python 3.2? +========================= + +*Release date: 20-Feb-2011* + +Core and Builtins +----------------- + +- Issue #11249: Fix potential crashes when using the limited API. + +Build +----- + +- Issue #11222: Fix non-framework shared library build on Mac OS X. + +- Issue #11184: Fix large-file support on AIX. + +- Issue #941346: Fix broken shared library build on AIX. + +Documentation +------------- + +- Issue #10709: Add updated AIX notes in Misc/README.AIX. + + +What's New in Python 3.2 Release Candidate 3? +============================================= + +*Release date: 13-Feb-2011* + +Core and Builtins +----------------- + +- Issue #11134: Add missing fields to typeslots.h. + +- Issue #11135: Remove redundant doc field from PyType_Spec. + +- Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check in the limited + ABI. + +- Issue #11118: Fix bogus export of None in python3.dll. + +Library +------- + +- Issue #11116: any error during addition of a message to a mailbox now causes a + rollback, instead of leaving the mailbox partially modified. + +- Issue #11132: Fix passing of "optimize" parameter when recursing in + compileall.compile_dir(). + +- Issue #11110: Fix a potential decref of a NULL in sqlite3. + +- Issue #8275: Fix passing of callback arguments with ctypes under Win64. Patch + by Stan Mihai. + +Build +----- + +- Issue #11079: The /Applications/Python x.x folder created by the Mac OS X + installers now includes a link to the installed documentation and no longer + includes an Extras directory. The Tools directory is now installed in the + framework under share/doc. + +- Issue #11121: Fix building with --enable-shared. + +Tests +----- + +- Issue #10971: test_zipimport_support is once again compatible with the refleak + hunter feature of test.regrtest. + + +What's New in Python 3.2 Release Candidate 2? +============================================= + +*Release date: 30-Jan-2011* + +Core and Builtins +----------------- + +- Issue #10451: memoryview objects could allow to mutate a readable buffer. + Initial patch by Ross Lagerwall. + +Library +------- + +- Issue #9124: mailbox now accepts binary input and reads and writes mailbox + files in binary mode, using the email package's binary support to parse + arbitrary email messages. StringIO and text file input is deprecated, + and string input fails early if non-ASCII characters are used, where + previously it would fail when the email was processed in a later step. + +- Issue #10845: Mitigate the incompatibility between the multiprocessing + module on Windows and the use of package, zipfile or directory execution + by special casing main modules that actually *are* called __main__.py. + +- Issue #11045: Protect logging call against None argument. + +- Issue #11052: Correct IDLE menu accelerators on Mac OS X for Save + commands. + +- Issue #11053: Fix IDLE "Syntax Error" windows to behave as in 2.x, + preventing a confusing hung appearance on OS X with the windows + obscured. + +- Issue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using the + menu accelerators for Open Module, Go to Line, and New Indent Width. + The accelerators still work but no longer appear in the menu items. + +- Issue #10989: Fix a crash on SSLContext.load_verify_locations(None, True). + +- Issue #11020: Command-line pyclbr was broken because of missing 2-to-3 + conversion. + +- Issue #11019: Fixed BytesGenerator so that it correctly handles a Message + with a None body. + +- Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into a + keyword-only argument. The preceding positional argument was deprecated, + so it made no sense to add filter as a positional argument. + +- Issue #11004: Repaired edge case in deque.count(). + +- Issue #10974: IDLE no longer crashes if its recent files list includes files + with non-ASCII characters in their path names. + +- Have hashlib.algorithms_available and hashlib.algorithms_guaranteed both + return sets instead of one returning a tuple and the other a frozenset. + +- Issue #10987: Fix the recursion limit handling in the _pickle module. + +- Issue #10983: Fix several bugs making tunnel requests in http.client. + +- Issue #10955: zipimport uses ASCII encoding instead of cp437 to decode + filenames, at bootstrap, if the codec registry is not ready yet. It is still + possible to have non-ASCII filenames using the Unicode flag (UTF-8 encoding) + for all file entries in the ZIP file. + +- Issue #10949: Improved robustness of rotating file handlers. + +- Issue #10955: Fix a potential crash when trying to mmap() a file past its + length. Initial patch by Ross Lagerwall. + +- Issue #10898: Allow compiling the posix module when the C library defines + a symbol named FSTAT. + +- Issue #10980: the HTTP server now encodes headers with iso-8859-1 (latin1) + encoding. This is the preferred encoding of PEP 3333 and the base encoding + of HTTP 1.1. + +- To match the behaviour of HTTP server, the HTTP client library now also + encodes headers with iso-8859-1 (latin1) encoding. It was already doing + that for incoming headers which makes this behaviour now consistent in + both incoming and outgoing direction. + +- Issue #9509: argparse now properly handles IOErrors raised by + argparse.FileType. + +- Issue #10961: The new pydoc server now better handles exceptions raised + during request handling. + +- Issue #10680: Fix mutually exclusive arguments for argument groups in + argparse. + +Build +----- + +- Issue #11054: Allow Mac OS X installer builds to again work on 10.5 with + the system-provided Python. + + What's New in Python 3.2 Release Candidate 1 ============================================ +*Release date: 16-Jan-2011* + Core and Builtins ----------------- +- Issue #10889: range indexing and slicing now works correctly on ranges with + a length that exceeds sys.maxsize. + +- Issue #10892: Don't segfault when trying to delete __abstractmethods__ from a + class. + - Issue #8020: Avoid a crash where the small objects allocator would read - non-Python managed memory while it is being modified by another thread. - Patch by Matt Bandy. + non-Python managed memory while it is being modified by another thread. Patch + by Matt Bandy. -- Issue #10841: On Windows, set the binary mode on stdin, stdout, stderr and - all io.FileIO objects (to not translate newlines, \r\n <=> \n). The Python - parser translates newlines (\r\n => \n). +- Issue #10841: On Windows, set the binary mode on stdin, stdout, stderr and all + io.FileIO objects (to not translate newlines, \r\n <=> \n). The Python parser + translates newlines (\r\n => \n). - Remove buffer API from stable ABI for now, see #10181. @@ -40,20 +387,37 @@ Library ------- +- Issue #10916: mmap should not segfault when a file is mapped using 0 as length + and a non-zero offset, and an attempt to read past the end of file is made + (IndexError is raised instead). Patch by Ross Lagerwall. + +- Issue #10907: Warn OS X 10.6 IDLE users to use ActiveState Tcl/Tk 8.5, rather + than the currently problematic Apple-supplied one, when running with the + 64-/32-bit installer variant. + +- Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, not + as unicode, and accept binary files. Add encoding and errors attributes to + cgi.FieldStorage. Patch written by Pierre Quentel (with many inputs by Glenn + Linderman). + +- Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl(). + +- Issue #10899: No function type annotations in the standard library. Removed + function type annotations from _pyio.py. + - Issue #10875: Update Regular Expression HOWTO; patch by 'SilentGhost'. - Issue #10872: The repr() of TextIOWrapper objects now includes the mode if available. -- Issue #10869: Fixed bug where ast.increment_lineno modified the root - node twice. +- Issue #10869: Fixed bug where ast.increment_lineno modified the root node + twice. - Issue #5871: email.header.Header.encode now raises an error if any - continuation line in the formatted value has no leading white space - and looks like a header. Since Generator uses Header to format all - headers, this check is made for all headers in any serialized message - at serialization time. This provides protection against header - injection attacks. + continuation line in the formatted value has no leading white space and looks + like a header. Since Generator uses Header to format all headers, this check + is made for all headers in any serialized message at serialization time. This + provides protection against header injection attacks. - Issue #10859: Make ``contextlib.GeneratorContextManager`` officially private by renaming it to ``_GeneratorContextManager``. @@ -62,13 +426,13 @@ comparisons that could lead to infinite recursion. - Issue #10686: the email package now :rfc:`2047`\ -encodes headers with - non-ASCII bytes (parsed by a Bytes Parser) when doing conversion to - 7bit-clean presentation, instead of replacing them with ?s. + non-ASCII bytes (parsed by a Bytes Parser) when doing conversion to 7bit-clean + presentation, instead of replacing them with ?s. - email.header.Header was incorrectly encoding folding white space when - rfc2047-encoding header values with embedded newlines, leaving them - without folding whitespace. It now uses the continuation_ws, as it - does for continuation lines that it creates itself. + rfc2047-encoding header values with embedded newlines, leaving them without + folding whitespace. It now uses the continuation_ws, as it does for + continuation lines that it creates itself. - Issue #1777412, #10827: Changed the rules for 2-digit years. The time.asctime(), time.ctime() and time.strftime() functions will now format @@ -102,12 +466,12 @@ the input buffer length doesn't fit into an unsigned int (length bigger than 2^32-1 bytes). -- Issue #6643: Reinitialize locks held within the threading module after fork - to avoid a potential rare deadlock or crash on some platforms. +- Issue #6643: Reinitialize locks held within the threading module after fork to + avoid a potential rare deadlock or crash on some platforms. -- Issue #10806, issue #9905: Fix subprocess pipes when some of the standard - file descriptors (0, 1, 2) are closed in the parent process. Initial - patch by Ross Lagerwall. +- Issue #10806, issue #9905: Fix subprocess pipes when some of the standard file + descriptors (0, 1, 2) are closed in the parent process. Initial patch by Ross + Lagerwall. - `unittest.TestCase` can be instantiated without a method name; for simpler exploration from the interactive interpreter. @@ -118,32 +482,32 @@ - Issue #10807: Remove base64, bz2, hex, quopri, rot13, uu and zlib codecs from the codec aliases. They are still accessible via codecs.lookup(). -- Issue #10801: In zipfile, support different encodings for the header and - the filenames. +- Issue #10801: In zipfile, support different encodings for the header and the + filenames. - Issue #6285: IDLE no longer crashes on missing help file; patch by Scott David Daniels. -- Fix collections.OrderedDict.setdefault() so that it works in - subclasses that define __missing__(). +- Fix collections.OrderedDict.setdefault() so that it works in subclasses that + define __missing__(). -- Issue #10786: unittest.TextTestRunner default stream no longer bound at - import time. `sys.stderr` now looked up at instantiation time. Fix - contributed by Mark Roddy. - -- Issue #10753: Characters ';','=' and ',' in the PATH_INFO environment - variable won't be quoted when the URI is constructed by the wsgiref.util 's - request_uri method. According to RFC 3986, these characters can be a part of - params in PATH component of URI and need not be quoted. +- Issue #10786: unittest.TextTestRunner default stream no longer bound at import + time. `sys.stderr` now looked up at instantiation time. Fix contributed by + Mark Roddy. + +- Issue #10753: Characters ';','=' and ',' in the PATH_INFO environment variable + won't be quoted when the URI is constructed by the wsgiref.util 's request_uri + method. According to RFC 3986, these characters can be a part of params in + PATH component of URI and need not be quoted. - Issue #10738: Fix webbrowser.Opera.raise_opts. - Issue #9824: SimpleCookie now encodes , and ; in values to cater to how browsers actually parse cookies. -- Issue #9333: os.symlink now available regardless of user privileges. - The function now raises OSError on Windows >=6.0 when the user is unable - to create symbolic links. XP and 2003 still raise NotImplementedError. +- Issue #9333: os.symlink now available regardless of user privileges. The + function now raises OSError on Windows >=6.0 when the user is unable to create + symbolic links. XP and 2003 still raise NotImplementedError. - Issue #10783: struct.pack() no longer implicitly encodes unicode to UTF-8. @@ -183,12 +547,19 @@ C-API ----- -- Issue #10333: Remove ancient GC API, which has been deprecated since - Python 2.2. +- Issue #10913: Deprecate misleading functions PyEval_AcquireLock() and + PyEval_ReleaseLock(). The thread-state aware APIs should be used instead. + +- Issue #10333: Remove ancient GC API, which has been deprecated since Python + 2.2. Build ----- +- Issue #10843: Update third-party library versions used in OS X 32-bit + installer builds: bzip2 1.0.6, readline 6.1.2, SQLite 3.7.4 (with FTS3/FTS4 + and RTREE enabled), and ncursesw 5.5 (wide-char support enabled). + - Issue #10820: Fix OS X framework installs to support version-specific scripts (#10679). @@ -209,17 +580,24 @@ Tools/Demos ----------- +- Issue #10843: Install the Tools directory on OS X in the applications Extras + (/Applications/Python 3.n/Extras/) where the Demo directory had previous been + installed. + - Issue #7962: The Demo directory is gone. Most of the old and unmaintained demos have been removed, others integrated in documentation or a new Tools/demo subdirectory. - Issue #10502: Addition of the unittestgui tool. Originally by Steve Purcell. - Updated for test discovery by Mark Roddy and Python 3 compatibility by - Brian Curtin. + Updated for test discovery by Mark Roddy and Python 3 compatibility by Brian + Curtin. Tests ----- +- Issue #10822: Fix test_posix:test_getgroups failure under Solaris. Patch + by Ross Lagerwall. + - Make the --coverage flag work for test.regrtest. - Issue #1677694: Refactor and improve test_timeout. Original patch by @@ -228,9 +606,9 @@ - Issue #5485: Add tests for the UseForeignDTD method of expat parser objects. Patch by Jean-Paul Calderone and Sandro Tosi. -- Issue #6293: Have regrtest.py echo back sys.flags. This is done by default - in whole runs and enabled selectively using ``--header`` when running an - explicit list of tests. Original patch by Collin Winter. +- Issue #6293: Have regrtest.py echo back sys.flags. This is done by default in + whole runs and enabled selectively using ``--header`` when running an explicit + list of tests. Original patch by Collin Winter. What's New in Python 3.2 Beta 2? @@ -955,6 +1333,9 @@ Extension Modules ----------------- +- Issue #5109: array.array constructor will now use fast code when + initial data is provided in an array object with correct type. + - Issue #6317: Now winsound.PlaySound only accepts unicode. - Issue #6317: Now winsound.PlaySound can accept non ascii filename. Deleted: python/branches/py3k-cdecimal/Misc/PURIFY.README ============================================================================== --- python/branches/py3k-cdecimal/Misc/PURIFY.README Fri Mar 4 18:50:17 2011 +++ (empty file) @@ -1,97 +0,0 @@ -Purify (tm) and Quantify (tm) are commercial software quality -assurance tools available from IBM . -Purify is essentially a memory access -verifier and leak detector; Quantify is a C level profiler. The rest -of this file assumes you generally know how to use Purify and -Quantify, and that you have installed valid licenses for these -products. If you haven't installed such licenses, you can ignore the -following since it won't help you a bit! - -You can easily build a Purify or Quantify instrumented version of the -Python interpreter by passing the PURIFY variable to the make command -at the top of the Python tree: - - make PURIFY=purify - -This assumes that the `purify' program is on your $PATH. Note that -you cannot both Purify and Quantify the Python interpreter (or any -program for that matter) at the same time. If you want to build a -Quantify'd interpreter, do this: - - make PURIFY=quantify - -Starting with Python 2.3, pymalloc is enabled by default. This -will cause many supurious warnings. Modify Objects/obmalloc.c -and enable Py_USING_MEMORY_DEBUGGER by uncommenting it. -README.valgrind has more details about why this is necessary. -See below about setting up suppressions. Some tests may not -run well with Purify due to heavy memory or CPU usage. These -tests may include: test_largefile, test_import, and test_long. - -Please report any findings (problems or no warnings) to python-dev at python.org. -It may be useful to submit a bug report for any problems. - -When running the regression test (make test), I have found it useful -to set my PURIFYOPTIONS environment variable using the following -(bash) shell function. Check out the Purify documentation for -details: - -p() { - chainlen='-chain-length=12' - ignoresigs='-ignore-signals="SIGHUP,SIGINT,SIGQUIT,SIGILL,SIGTRAP,SIGAVRT,SIGEMT,SIGFPE,SIGKILL,SIGBUS,SIGSEGV,SIGPIPE,SIGTERM,SIGUSR1,SIGUSR2,SIGPOLL,SIGXCPU,SIGXFSZ,SIGFREEZE,SIGTHAW,SIGRTMIN,SIGRTMAX"' - followchild='-follow-child-processes=yes' - threads='-max-threads=50' - export PURIFYOPTIONS="$chainlen $ignoresigs $followchild $threads" - echo $PURIFYOPTIONS -} - -Note that you may want to crank -chain-length up even further. A -value of 20 should get you the entire stack up into the Python C code -in all situations. - -With the regression test on a fatly configured interpreter -(i.e. including as many modules as possible in your Modules/Setup -file), you'll probably get a gabillion UMR errors, and a few MLK -errors. I think most of these can be safely suppressed by putting the -following in your .purify file: - - suppress umr ...; "socketmodule.c" - suppress umr ...; time_strftime - suppress umr ...; "_dbmmodule.c" - suppress umr ...; "_gdbmmodule.c" - suppress umr ...; "grpmodule.c" - suppress umr ...; "nismodule.c" - suppress umr ...; "pwdmodule.c" - -Note: this list is very old and may not be accurate any longer. -It's possible some of these no longer need to be suppressed. -You will also need to suppress warnings (at least umr) -from Py_ADDRESS_IN_RANGE. - -This will still leave you with just a few UMR, mostly in the readline -library, which you can safely ignore. A lot of work has gone into -Python 1.5 to plug as many leaks as possible. - -Using Purify or Quantify in this way will give you coarse grained -reports on the whole Python interpreter. You can actually get more -fine grained control over both by linking with the optional `pure' -module, which exports (most of) the Purify and Quantify C API's into -Python. To link in this module (it must be statically linked), edit -your Modules/Setup file for your site, and rebuild the interpreter. -You might want to check out the comments in the Modules/puremodule.c -file for some idiosyncrasies. - -Using this module, you can actually profile or leak test a small -section of code, instead of the whole interpreter. Using this in -conjuction with pdb.py, dbx, or the profiler.py module really gives -you quite a bit of introspective power. - -Naturally there are a couple of caveats. This has only been tested -with Purify 4.0.1 and Quantify 2.1-beta on Solaris 2.5. Purify 4.0.1 -does not work with Solaris 2.6, but Purify 4.1 which reportedly will, -is currently in beta test. There are funky problems when Purify'ing a -Python interpreter build with threads. I've had a lot of problems -getting this to work, so I generally don't build with threads when I'm -Purify'ing. If you get this to work, let us know! - --Barry Warsaw Modified: python/branches/py3k-cdecimal/Misc/README ============================================================================== --- python/branches/py3k-cdecimal/Misc/README (original) +++ python/branches/py3k-cdecimal/Misc/README Fri Mar 4 18:50:17 2011 @@ -8,27 +8,17 @@ ---------------- ACKS Acknowledgements -AIX-NOTES Notes for building Python on AIX build.sh Script to build and test latest Python from the repository -cheatsheet Quick summary of Python by Ken Manheimer -developers.txt A history of who got developer permissions, and why gdbinit Handy stuff to put in your .gdbinit file, if you use gdb HISTORY News from previous releases -- oldest last indent.pro GNU indent profile approximating my C style -maintainers.rst A list of maintainers for library modules NEWS News for this release (for some meaning of "this") -NEWS.help How to edit NEWS Porting Mini-FAQ on porting to new platforms -PURIFY.README Information for Purify users python-config.in Python script template for python-config python.man UNIX man page for the python interpreter -python-mode.el Emacs mode for editing Python programs python.pc.in Package configuration info template for pkg-config -python-wing.wpr Wing IDE project file +python-wing*.wpr Wing IDE project file README The file you're reading now -README.coverity Information about running Coverity's Prevent on Python -README.klocwork Information about running Klocwork's K7 on Python -README.OpenBSD Help for building problems on OpenBSD README.valgrind Information for Valgrind users, see valgrind-python.supp RPM (Old) tools to build RPMs SpecialBuilds.txt Describes extra symbols you can set for debug builds Deleted: python/branches/py3k-cdecimal/Misc/README.Emacs ============================================================================== --- python/branches/py3k-cdecimal/Misc/README.Emacs Fri Mar 4 18:50:17 2011 +++ (empty file) @@ -1,32 +0,0 @@ -============= -Emacs support -============= - -If you want to edit Python code in Emacs, you should download python-mode.el -and install it somewhere on your load-path. See the project page to download: - - https://launchpad.net/python-mode - -While Emacs comes with a python.el file, it is not recommended. -python-mode.el is maintained by core Python developers and is generally -considered more Python programmer friendly. For example, python-mode.el -includes a killer feature called `pdbtrack` which allows you to set a pdb -breakpoint in your code, run your program in an Emacs shell buffer, and do gud -style debugging when the breakpoint is hit. - -python-mode.el is compatible with both GNU Emacs from the FSF, and XEmacs. - -For more information and bug reporting, see the above project page. For help, -development, or discussions, see the python-mode mailing list: - - http://mail.python.org/mailman/listinfo/python-mode - - -.. - Local Variables: - mode: indented-text - indent-tabs-mode: nil - sentence-end-double-space: t - fill-column: 78 - coding: utf-8 - End: Deleted: python/branches/py3k-cdecimal/Misc/README.OpenBSD ============================================================================== --- python/branches/py3k-cdecimal/Misc/README.OpenBSD Fri Mar 4 18:50:17 2011 +++ (empty file) @@ -1,38 +0,0 @@ - -2005-01-08 - -If you are have a problem building on OpenBSD and see output like this -while running configure: - -checking curses.h presence... yes -configure: WARNING: curses.h: present but cannot be compiled -configure: WARNING: curses.h: check for missing prerequisite headers? -configure: WARNING: curses.h: see the Autoconf documentation -configure: WARNING: curses.h: section "Present But Cannot Be Compiled" -configure: WARNING: curses.h: proceeding with the preprocessor's result -configure: WARNING: curses.h: in the future, the compiler will take precedence - -there is likely a problem that will prevent building python. -If you see the messages above and are able to completely build python, -please tell python-dev at python.org indicating your version of OpenBSD -and any other relevant system configuration. - -The build error that occurs while making may look something like this: - - /usr/include/sys/event.h:53: error: syntax error before "u_int" - /usr/include/sys/event.h:55: error: syntax error before "u_short" - -To fix this problem, you will probably need update Python's configure -script to disable certain options. Search for a line that looks like: - - OpenBSD/2.* | OpenBSD/3.@<:@012345678@:>@) - -If your version is not in that list, e.g., 3.9, add the version -number. In this case, you would just need to add a 9 after the 8. -If you modify configure.in, you will need to regenerate configure -with autoconf. - -If your version is already in the list, this is not a known problem. -Please submit a bug report here: - - http://sourceforge.net/tracker/?group_id=5470&atid=105470 Deleted: python/branches/py3k-cdecimal/Misc/README.klocwork ============================================================================== --- python/branches/py3k-cdecimal/Misc/README.klocwork Fri Mar 4 18:50:17 2011 +++ (empty file) @@ -1,30 +0,0 @@ - -Klocwork has a static analysis tool (K7) which is similar to Coverity. -They will run their tool on the Python source code on demand. -The results are available at: - - https://opensource.klocwork.com/ - -Currently, only Neal Norwitz has access to the analysis reports. Other -people can be added by request. - -K7 was first run on the Python 2.5 source code in mid-July 2006. -This is after Coverity had been making their results available. -There were originally 175 defects reported. Most of these -were false positives. However, there were numerous real issues -also uncovered. - -Each warning has a unique id and comments that can be made on it. -When checking in changes due to a K7 report, the unique id -as reported by the tool was added to the SVN commit message. -A comment was added to the K7 warning indicating the SVN revision -in addition to any analysis. - -False positives were also annotated so that the comments can -be reviewed and reversed if the analysis was incorrect. - -A second run was performed on 10-Aug-2006. The tool was tuned to remove -some false positives and perform some additional checks. ~150 new -warnings were produced, primarily related to dereferencing NULL pointers. - -Contact python-dev at python.org for more information. Deleted: python/branches/py3k-cdecimal/Misc/RPM/python-3.2.spec ============================================================================== --- python/branches/py3k-cdecimal/Misc/RPM/python-3.2.spec Fri Mar 4 18:50:17 2011 +++ (empty file) @@ -1,390 +0,0 @@ -########################## -# User-modifiable configs -########################## - -# Is the resulting package and the installed binary named "python" or -# "python2"? -#WARNING: Commenting out doesn't work. Last line is what's used. -%define config_binsuffix none -%define config_binsuffix 2.6 - -# Build tkinter? "auto" enables it if /usr/bin/wish exists. -#WARNING: Commenting out doesn't work. Last line is what's used. -%define config_tkinter no -%define config_tkinter yes -%define config_tkinter auto - -# Use pymalloc? The last line (commented or not) determines wether -# pymalloc is used. -#WARNING: Commenting out doesn't work. Last line is what's used. -%define config_pymalloc no -%define config_pymalloc yes - -# Enable IPV6? -#WARNING: Commenting out doesn't work. Last line is what's used. -%define config_ipv6 yes -%define config_ipv6 no - -# Build shared libraries or .a library? -#WARNING: Commenting out doesn't work. Last line is what's used. -%define config_sharedlib no -%define config_sharedlib yes - -# Location of the HTML directory. -%define config_htmldir /var/www/html/python - -################################# -# End of user-modifiable configs -################################# - -%define name python -#--start constants-- -%define version 3.2b2 -%define libvers 3.2 -#--end constants-- -%define release 1pydotorg -%define __prefix /usr - -# kludge to get around rpm define weirdness -%define ipv6 %(if [ "%{config_ipv6}" = yes ]; then echo --enable-ipv6; else echo --disable-ipv6; fi) -%define pymalloc %(if [ "%{config_pymalloc}" = yes ]; then echo --with-pymalloc; else echo --without-pymalloc; fi) -%define binsuffix %(if [ "%{config_binsuffix}" = none ]; then echo ; else echo "%{config_binsuffix}"; fi) -%define include_tkinter %(if [ \\( "%{config_tkinter}" = auto -a -f /usr/bin/wish \\) -o "%{config_tkinter}" = yes ]; then echo 1; else echo 0; fi) -%define libdirname %(( uname -m | egrep -q '_64$' && [ -d /usr/lib64 ] && echo lib64 ) || echo lib) -%define sharedlib %(if [ "%{config_sharedlib}" = yes ]; then echo --enable-shared; else echo ; fi) -%define include_sharedlib %(if [ "%{config_sharedlib}" = yes ]; then echo 1; else echo 0; fi) - -# detect if documentation is available -%define include_docs %(if [ -f "%{_sourcedir}/html-%{version}.tar.bz2" ]; then echo 1; else echo 0; fi) - -Summary: An interpreted, interactive, object-oriented programming language. -Name: %{name}%{binsuffix} -Version: %{version} -Release: %{release} -License: PSF -Group: Development/Languages -Source: Python-%{version}.tar.bz2 -%if %{include_docs} -Source1: html-%{version}.tar.bz2 -%endif -BuildRoot: %{_tmppath}/%{name}-%{version}-root -BuildPrereq: expat-devel -BuildPrereq: db4-devel -BuildPrereq: gdbm-devel -BuildPrereq: sqlite-devel -Prefix: %{__prefix} -Packager: Sean Reifschneider - -%description -Python is an interpreted, interactive, object-oriented programming -language. It incorporates modules, exceptions, dynamic typing, very high -level dynamic data types, and classes. Python combines remarkable power -with very clear syntax. It has interfaces to many system calls and -libraries, as well as to various window systems, and is extensible in C or -C++. It is also usable as an extension language for applications that need -a programmable interface. Finally, Python is portable: it runs on many -brands of UNIX, on PCs under Windows, MS-DOS, and OS/2, and on the -Mac. - -%package devel -Summary: The libraries and header files needed for Python extension development. -Prereq: python%{binsuffix} = %{PACKAGE_VERSION} -Group: Development/Libraries - -%description devel -The Python programming language's interpreter can be extended with -dynamically loaded extensions and can be embedded in other programs. -This package contains the header files and libraries needed to do -these types of tasks. - -Install python-devel if you want to develop Python extensions. The -python package will also need to be installed. You'll probably also -want to install the python-docs package, which contains Python -documentation. - -%if %{include_tkinter} -%package tkinter -Summary: A graphical user interface for the Python scripting language. -Group: Development/Languages -Prereq: python%{binsuffix} = %{PACKAGE_VERSION}-%{release} - -%description tkinter -The Tkinter (Tk interface) program is an graphical user interface for -the Python scripting language. - -You should install the tkinter package if you'd like to use a graphical -user interface for Python programming. -%endif - -%package tools -Summary: A collection of development tools included with Python. -Group: Development/Tools -Prereq: python%{binsuffix} = %{PACKAGE_VERSION}-%{release} - -%description tools -The Python package includes several development tools that are used -to build python programs. This package contains a selection of those -tools, including the IDLE Python IDE. - -Install python-tools if you want to use these tools to develop -Python programs. You will also need to install the python and -tkinter packages. - -%if %{include_docs} -%package docs -Summary: Python-related documentation. -Group: Development/Documentation - -%description docs -Documentation relating to the Python programming language in HTML and info -formats. -%endif - -%changelog -* Mon Dec 20 2004 Sean Reifschneider [2.4-2pydotorg] -- Changing the idle wrapper so that it passes arguments to idle. - -* Tue Oct 19 2004 Sean Reifschneider [2.4b1-1pydotorg] -- Updating to 2.4. - -* Thu Jul 22 2004 Sean Reifschneider [2.3.4-3pydotorg] -- Paul Tiemann fixes for %{prefix}. -- Adding permission changes for directory as suggested by reimeika.ca -- Adding code to detect when it should be using lib64. -- Adding a define for the location of /var/www/html for docs. - -* Thu May 27 2004 Sean Reifschneider [2.3.4-2pydotorg] -- Including changes from Ian Holsman to build under Red Hat 7.3. -- Fixing some problems with the /usr/local path change. - -* Sat Mar 27 2004 Sean Reifschneider [2.3.2-3pydotorg] -- Being more agressive about finding the paths to fix for - #!/usr/local/bin/python. - -* Sat Feb 07 2004 Sean Reifschneider [2.3.3-2pydotorg] -- Adding code to remove "#!/usr/local/bin/python" from particular files and - causing the RPM build to terminate if there are any unexpected files - which have that line in them. - -* Mon Oct 13 2003 Sean Reifschneider [2.3.2-1pydotorg] -- Adding code to detect wether documentation is available to build. - -* Fri Sep 19 2003 Sean Reifschneider [2.3.1-1pydotorg] -- Updating to the 2.3.1 release. - -* Mon Feb 24 2003 Sean Reifschneider [2.3b1-1pydotorg] -- Updating to 2.3b1 release. - -* Mon Feb 17 2003 Sean Reifschneider [2.3a1-1] -- Updating to 2.3 release. - -* Sun Dec 23 2001 Sean Reifschneider -[Release 2.2-2] -- Added -docs package. -- Added "auto" config_tkinter setting which only enables tk if - /usr/bin/wish exists. - -* Sat Dec 22 2001 Sean Reifschneider -[Release 2.2-1] -- Updated to 2.2. -- Changed the extension to "2" from "2.2". - -* Tue Nov 18 2001 Sean Reifschneider -[Release 2.2c1-1] -- Updated to 2.2c1. - -* Thu Nov 1 2001 Sean Reifschneider -[Release 2.2b1-3] -- Changed the way the sed for fixing the #! in pydoc works. - -* Wed Oct 24 2001 Sean Reifschneider -[Release 2.2b1-2] -- Fixed missing "email" package, thanks to anonymous report on sourceforge. -- Fixed missing "compiler" package. - -* Mon Oct 22 2001 Sean Reifschneider -[Release 2.2b1-1] -- Updated to 2.2b1. - -* Mon Oct 9 2001 Sean Reifschneider -[Release 2.2a4-4] -- otto at balinor.mat.unimi.it mentioned that the license file is missing. - -* Sun Sep 30 2001 Sean Reifschneider -[Release 2.2a4-3] -- Ignacio Vazquez-Abrams pointed out that I had a spruious double-quote in - the spec files. Thanks. - -* Wed Jul 25 2001 Sean Reifschneider -[Release 2.2a1-1] -- Updated to 2.2a1 release. -- Changed idle and pydoc to use binsuffix macro - -####### -# PREP -####### -%prep -%setup -n Python-%{version} - -######## -# BUILD -######## -%build -echo "Setting for ipv6: %{ipv6}" -echo "Setting for pymalloc: %{pymalloc}" -echo "Setting for binsuffix: %{binsuffix}" -echo "Setting for include_tkinter: %{include_tkinter}" -echo "Setting for libdirname: %{libdirname}" -echo "Setting for sharedlib: %{sharedlib}" -echo "Setting for include_sharedlib: %{include_sharedlib}" -./configure --enable-unicode=ucs4 %{sharedlib} %{ipv6} %{pymalloc} --prefix=%{__prefix} -make - -########## -# INSTALL -########## -%install -# set the install path -echo '[install_scripts]' >setup.cfg -echo 'install_dir='"${RPM_BUILD_ROOT}%{__prefix}/bin" >>setup.cfg - -[ -d "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT%{__prefix}/%{libdirname}/python%{libvers}/lib-dynload -make prefix=$RPM_BUILD_ROOT%{__prefix} install - -# REPLACE PATH IN PYDOC -if [ ! -z "%{binsuffix}" ] -then - ( - cd $RPM_BUILD_ROOT%{__prefix}/bin - mv pydoc pydoc.old - sed 's|#!.*|#!%{__prefix}/bin/env python'%{binsuffix}'|' \ - pydoc.old >pydoc - chmod 755 pydoc - rm -f pydoc.old - ) -fi - -# add the binsuffix -if [ ! -z "%{binsuffix}" ] -then - rm -f $RPM_BUILD_ROOT%{__prefix}/bin/python[0-9a-zA-Z]* - ( cd $RPM_BUILD_ROOT%{__prefix}/bin; - for file in *; do mv "$file" "$file"%{binsuffix}; done ) - ( cd $RPM_BUILD_ROOT%{_mandir}/man1; mv python.1 python%{binsuffix}.1 ) -fi - -######## -# Tools -echo '#!%{__prefix}/bin/env python%{binsuffix}' >${RPM_BUILD_ROOT}%{__prefix}/bin/idle%{binsuffix} -echo 'import os, sys' >>${RPM_BUILD_ROOT}%{__prefix}/bin/idle%{binsuffix} -echo 'os.execvp("%{__prefix}/bin/python%{binsuffix}", ["%{__prefix}/bin/python%{binsuffix}", "%{__prefix}/lib/python%{libvers}/idlelib/idle.py"] + sys.argv[1:])' >>${RPM_BUILD_ROOT}%{__prefix}/bin/idle%{binsuffix} -echo 'print "Failed to exec Idle"' >>${RPM_BUILD_ROOT}%{__prefix}/bin/idle%{binsuffix} -echo 'sys.exit(1)' >>${RPM_BUILD_ROOT}%{__prefix}/bin/idle%{binsuffix} -chmod 755 $RPM_BUILD_ROOT%{__prefix}/bin/idle%{binsuffix} -cp -a Tools $RPM_BUILD_ROOT%{__prefix}/%{libdirname}/python%{libvers} - -# MAKE FILE LISTS -rm -f mainpkg.files -find "$RPM_BUILD_ROOT""%{__prefix}"/%{libdirname}/python%{libvers} -type f | - sed "s|^${RPM_BUILD_ROOT}|/|" | - grep -v -e '/python%{libvers}/config$' -e '_tkinter.so$' >mainpkg.files -find "$RPM_BUILD_ROOT""%{__prefix}"/bin -type f -o -type l | - sed "s|^${RPM_BUILD_ROOT}|/|" | - grep -v -e '/bin/2to3%{binsuffix}$' | - grep -v -e '/bin/pydoc%{binsuffix}$' | - grep -v -e '/bin/smtpd.py%{binsuffix}$' | - grep -v -e '/bin/idle%{binsuffix}$' >>mainpkg.files - -rm -f tools.files -find "$RPM_BUILD_ROOT""%{__prefix}"/%{libdirname}/python%{libvers}/idlelib \ - "$RPM_BUILD_ROOT""%{__prefix}"/%{libdirname}/python%{libvers}/Tools -type f | - sed "s|^${RPM_BUILD_ROOT}|/|" >tools.files -echo "%{__prefix}"/bin/2to3%{binsuffix} >>tools.files -echo "%{__prefix}"/bin/pydoc%{binsuffix} >>tools.files -echo "%{__prefix}"/bin/smtpd.py%{binsuffix} >>tools.files -echo "%{__prefix}"/bin/idle%{binsuffix} >>tools.files - -###### -# Docs -%if %{include_docs} -mkdir -p "$RPM_BUILD_ROOT"%{config_htmldir} -( - cd "$RPM_BUILD_ROOT"%{config_htmldir} - bunzip2 < %{SOURCE1} | tar x -) -%endif - -# fix the #! line in installed files -find "$RPM_BUILD_ROOT" -type f -print0 | - xargs -0 grep -l /usr/local/bin/python | while read file -do - FIXFILE="$file" - sed 's|^#!.*python|#!%{__prefix}/bin/env python'"%{binsuffix}"'|' \ - "$FIXFILE" >/tmp/fix-python-path.$$ - cat /tmp/fix-python-path.$$ >"$FIXFILE" - rm -f /tmp/fix-python-path.$$ -done - -# check to see if there are any straggling #! lines -find "$RPM_BUILD_ROOT" -type f | xargs egrep -n '^#! */usr/local/bin/python' \ - | grep ':1:#!' >/tmp/python-rpm-files.$$ || true -if [ -s /tmp/python-rpm-files.$$ ] -then - echo '*****************************************************' - cat /tmp/python-rpm-files.$$ - cat <<@EOF - ***************************************************** - There are still files referencing /usr/local/bin/python in the - install directory. They are listed above. Please fix the .spec - file and try again. If you are an end-user, you probably want - to report this to jafo-rpms at tummy.com as well. - ***************************************************** - at EOF - rm -f /tmp/python-rpm-files.$$ - exit 1 -fi -rm -f /tmp/python-rpm-files.$$ - -######## -# CLEAN -######## -%clean -[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT -rm -f mainpkg.files tools.files - -######## -# FILES -######## -%files -f mainpkg.files -%defattr(-,root,root) -%doc Misc/README Misc/cheatsheet Misc/Porting -%doc LICENSE Misc/ACKS Misc/HISTORY Misc/NEWS -%{_mandir}/man1/python%{binsuffix}.1* - -%attr(755,root,root) %dir %{__prefix}/include/python%{libvers} -%attr(755,root,root) %dir %{__prefix}/%{libdirname}/python%{libvers}/ -%if %{include_sharedlib} -%{__prefix}/%{libdirname}/libpython* -%endif - -%files devel -%defattr(-,root,root) -%{__prefix}/include/python%{libvers}/*.h -%{__prefix}/%{libdirname}/python%{libvers}/config - -%files -f tools.files tools -%defattr(-,root,root) - -%if %{include_tkinter} -%files tkinter -%defattr(-,root,root) -%{__prefix}/%{libdirname}/python%{libvers}/tkinter -%{__prefix}/%{libdirname}/python%{libvers}/lib-dynload/_tkinter.so* -%endif - -%if %{include_docs} -%files docs -%defattr(-,root,root) -%{config_htmldir}/* -%endif Deleted: python/branches/py3k-cdecimal/Misc/cheatsheet ============================================================================== --- python/branches/py3k-cdecimal/Misc/cheatsheet Fri Mar 4 18:50:17 2011 +++ (empty file) @@ -1,2179 +0,0 @@ - Python 2.3 Quick Reference - - - 25 Jan 2003 upgraded by Raymond Hettinger for Python 2.3 - 16 May 2001 upgraded by Richard Gruet and Simon Brunning for Python 2.0 - 2000/07/18 upgraded by Richard Gruet, rgruet at intraware.com for Python 1.5.2 -from V1.3 ref -1995/10/30, by Chris Hoffmann, choffman at vicorp.com - -Based on: - Python Bestiary, Author: Ken Manheimer, ken.manheimer at nist.gov - Python manuals, Authors: Guido van Rossum and Fred Drake - What's new in Python 2.0, Authors: A.M. Kuchling and Moshe Zadka - python-mode.el, Author: Tim Peters, tim_one at email.msn.com - - and the readers of comp.lang.python - -Python's nest: http://www.python.org Developement: http:// -python.sourceforge.net/ ActivePython : http://www.ActiveState.com/ASPN/ -Python/ -newsgroup: comp.lang.python Help desk: help at python.org -Resources: http://starship.python.net/ - http://www.vex.net/parnassus/ - http://aspn.activestate.com/ASPN/Cookbook/Python -FAQ: http://www.python.org/cgi-bin/faqw.py -Full documentation: http://www.python.org/doc/ -Excellent reference books: - Python Essential Reference by David Beazley (New Riders) - Python Pocket Reference by Mark Lutz (O'Reilly) - - -Invocation Options - -python [-diOStuUvxX?] [-c command | script | - ] [args] - - Invocation Options -Option Effect --c cmd program passed in as string (terminates option list) --d Outputs parser debugging information (also PYTHONDEBUG=x) --E ignore environment variables (such as PYTHONPATH) --h print this help message and exit --i Inspect interactively after running script (also PYTHONINSPECT=x) and - force prompts, even if stdin appears not to be a terminal --m mod run library module as a script (terminates option list --O optimize generated bytecode (a tad; also PYTHONOPTIMIZE=x) --OO remove doc-strings in addition to the -O optimizations --Q arg division options: -Qold (default), -Qwarn, -Qwarnall, -Qnew --S Don't perform 'import site' on initialization --u Unbuffered binary stdout and stderr (also PYTHONUNBUFFERED=x). --v Verbose (trace import statements) (also PYTHONVERBOSE=x) --W arg : warning control (arg is action:message:category:module:lineno) --x Skip first line of source, allowing use of non-unix Forms of #!cmd --? Help! --c Specify the command to execute (see next section). This terminates the -command option list (following options are passed as arguments to the command). - the name of a python file (.py) to execute read from stdin. -script Anything afterward is passed as options to python script or command, - not interpreted as an option to interpreter itself. -args passed to script or command (in sys.argv[1:]) - If no script or command, Python enters interactive mode. - - * Available IDEs in std distrib: IDLE (tkinter based, portable), Pythonwin - (Windows). - - - -Environment variables - - Environment variables - Variable Effect -PYTHONHOME Alternate prefix directory (or prefix;exec_prefix). The - default module search path uses prefix/lib - Augments the default search path for module files. The format - is the same as the shell's $PATH: one or more directory - pathnames separated by ':' or ';' without spaces around - (semi-)colons! -PYTHONPATH On Windows first search for Registry key HKEY_LOCAL_MACHINE\ - Software\Python\PythonCore\x.y\PythonPath (default value). You - may also define a key named after your application with a - default string value giving the root directory path of your - app. - If this is the name of a readable file, the Python commands in -PYTHONSTARTUP that file are executed before the first prompt is displayed in - interactive mode (no default). -PYTHONDEBUG If non-empty, same as -d option -PYTHONINSPECT If non-empty, same as -i option -PYTHONSUPPRESS If non-empty, same as -s option -PYTHONUNBUFFERED If non-empty, same as -u option -PYTHONVERBOSE If non-empty, same as -v option -PYTHONCASEOK If non-empty, ignore case in file/module names (imports) - - - - -Notable lexical entities - -Keywords - - and del for is raise - assert elif from lambda return - break else global not try - class except if or while - continue exec import pass yield - def finally in print - - * (list of keywords in std module: keyword) - * Illegitimate Tokens (only valid in strings): @ $ ? - * A statement must all be on a single line. To break a statement over - multiple lines use "\", as with the C preprocessor. - Exception: can always break when inside any (), [], or {} pair, or in - triple-quoted strings. - * More than one statement can appear on a line if they are separated with - semicolons (";"). - * Comments start with "#" and continue to end of line. - -Identifiers - - (letter | "_") (letter | digit | "_")* - - * Python identifiers keywords, attributes, etc. are case-sensitive. - * Special forms: _ident (not imported by 'from module import *'); __ident__ - (system defined name); - __ident (class-private name mangling) - -Strings - - "a string enclosed by double quotes" - 'another string delimited by single quotes and with a " inside' - '''a string containing embedded newlines and quote (') marks, can be - delimited with triple quotes.''' - """ may also use 3- double quotes as delimiters """ - u'a unicode string' U"Another unicode string" - r'a raw string where \ are kept (literalized): handy for regular - expressions and windows paths!' - R"another raw string" -- raw strings cannot end with a \ - ur'a unicode raw string' UR"another raw unicode" - - Use \ at end of line to continue a string on next line. - adjacent strings are concatened, e.g. 'Monty' ' Python' is the same as - 'Monty Python'. - u'hello' + ' world' --> u'hello world' (coerced to unicode) - - String Literal Escapes - - \newline Ignored (escape newline) - \\ Backslash (\) \e Escape (ESC) \v Vertical Tab (VT) - \' Single quote (') \f Formfeed (FF) \OOO char with octal value OOO - \" Double quote (") \n Linefeed (LF) - \a Bell (BEL) \r Carriage Return (CR) \xHH char with hex value HH - \b Backspace (BS) \t Horizontal Tab (TAB) - \uHHHH unicode char with hex value HHHH, can only be used in unicode string - \UHHHHHHHH unicode char with hex value HHHHHHHH, can only be used in unicode string - \AnyOtherChar is left as-is - - * NUL byte (\000) is NOT an end-of-string marker; NULs may be embedded in - strings. - * Strings (and tuples) are immutable: they cannot be modified. - -Numbers - - Decimal integer: 1234, 1234567890546378940L (or l) - Octal integer: 0177, 0177777777777777777 (begin with a 0) - Hex integer: 0xFF, 0XFFFFffffFFFFFFFFFF (begin with 0x or 0X) - Long integer (unlimited precision): 1234567890123456 - Float (double precision): 3.14e-10, .001, 10., 1E3 - Complex: 1J, 2+3J, 4+5j (ends with J or j, + separates (float) real and - imaginary parts) - -Sequences - - * String of length 0, 1, 2 (see above) - '', '1', "12", 'hello\n' - * Tuple of length 0, 1, 2, etc: - () (1,) (1,2) # parentheses are optional if len > 0 - * List of length 0, 1, 2, etc: - [] [1] [1,2] - -Indexing is 0-based. Negative indices (usually) mean count backwards from end -of sequence. - -Sequence slicing [starting-at-index : but-less-than-index]. Start defaults to -'0'; End defaults to 'sequence-length'. - -a = (0,1,2,3,4,5,6,7) - a[3] ==> 3 - a[-1] ==> 7 - a[2:4] ==> (2, 3) - a[1:] ==> (1, 2, 3, 4, 5, 6, 7) - a[:3] ==> (0, 1, 2) - a[:] ==> (0,1,2,3,4,5,6,7) # makes a copy of the sequence. - -Dictionaries (Mappings) - - {} # Zero length empty dictionary - {1 : 'first'} # Dictionary with one (key, value) pair - {1 : 'first', 'next': 'second'} - dict([('one',1),('two',2)]) # Construct a dict from an item list - dict('one'=1, 'two'=2) # Construct a dict using keyword args - dict.fromkeys(['one', 'keys']) # Construct a dict from a sequence - -Operators and their evaluation order - - Operators and their evaluation order -Highest Operator Comment - (...) [...] {...} `...` Tuple, list & dict. creation; string - conv. - s[i] s[i:j] s.attr f(...) indexing & slicing; attributes, fct - calls - +x, -x, ~x Unary operators - x**y Power - x*y x/y x%y x//y mult, division, modulo, floor division - x+y x-y addition, subtraction - x<>y Bit shifting - x&y Bitwise and - x^y Bitwise exclusive or - x|y Bitwise or - xy x>=y x==y x!=y Comparison, - x is y x is not y membership - x in s x not in s - not x boolean negation - x and y boolean and - x or y boolean or -Lowest lambda args: expr anonymous function - -Alternate names are defined in module operator (e.g. __add__ and add for +) -Most operators are overridable. - -Many binary operators also support augmented assignment: - x += 1 # Same as x = x + 1 - - -Basic Types and Their Operations - -Comparisons (defined between *any* types) - - Comparisons -Comparison Meaning Notes -< strictly less than (1) -<= less than or equal to -> strictly greater than ->= greater than or equal to -== equal to -!= not equal to -is object identity (2) -is not negated object identity (2) - -Notes : - Comparison behavior can be overridden for a given class by defining special -method __cmp__. - The above comparisons return True or False which are of type bool -(a subclass of int) and behave exactly as 1 or 0 except for their type and -that they print as True or False instead of 1 or 0. - (1) X < Y < Z < W has expected meaning, unlike C - (2) Compare object identities (i.e. id(object)), not object values. - -Boolean values and operators - - Boolean values and operators - Value or Operator Returns Notes -None, numeric zeros, empty sequences and False -mappings -all other values True -not x True if x is False, else - True -x or y if x is False then y, else (1) - x -x and y if x is False then x, else (1) - y - -Notes : - Truth testing behavior can be overridden for a given class by defining -special method __bool__. - (1) Evaluate second arg only if necessary to determine outcome. - -None - - None is used as default return value on functions. Built-in single object - with type NoneType. - Input that evaluates to None does not print when running Python - interactively. - -Numeric types - -Floats and integers. - - Floats are implemented with C doubles. - Integers have unlimited size (only limit is system resources) - -Operators on all numeric types - - Operators on all numeric types - Operation Result -abs(x) the absolute value of x -int(x) x converted to integer -float(x) x converted to floating point --x x negated -+x x unchanged -x + y the sum of x and y -x - y difference of x and y -x * y product of x and y -x / y quotient of x and y -x % y remainder of x / y -divmod(x, y) the tuple (x/y, x%y) -x ** y x to the power y (the same as pow(x, y)) - -Bit operators on integers - - Bit operators -Operation >Result -~x the bits of x inverted -x ^ y bitwise exclusive or of x and y -x & y bitwise and of x and y -x | y bitwise or of x and y -x << n x shifted left by n bits -x >> n x shifted right by n bits - -Complex Numbers - - * represented as a pair of machine-level double precision floating point - numbers. - * The real and imaginary value of a complex number z can be retrieved through - the attributes z.real and z.imag. - -Numeric exceptions - -TypeError - raised on application of arithmetic operation to non-number -OverflowError - numeric bounds exceeded -ZeroDivisionError - raised when zero second argument of div or modulo op -FloatingPointError - raised when a floating point operation fails - -Operations on all sequence types (lists, tuples, strings) - - Operations on all sequence types -Operation Result Notes -x in s True if an item of s is equal to x, else False -x not in s False if an item of s is equal to x, else True -for x in s: loops over the sequence -s + t the concatenation of s and t -s * n, n*s n copies of s concatenated -s[i] i'th item of s, origin 0 (1) -s[i:j] slice of s from i (included) to j (excluded) (1), (2) -len(s) length of s -min(s) smallest item of s -max(s) largest item of (s) -iter(s) returns an iterator over s. iterators define __iter__ and next() - -Notes : - (1) if i or j is negative, the index is relative to the end of the string, -ie len(s)+ i or len(s)+j is - substituted. But note that -0 is still 0. - (2) The slice of s from i to j is defined as the sequence of items with -index k such that i <= k < j. - If i or j is greater than len(s), use len(s). If i is omitted, use -len(s). If i is greater than or - equal to j, the slice is empty. - -Operations on mutable (=modifiable) sequences (lists) - - Operations on mutable sequences - Operation Result Notes -s[i] =x item i of s is replaced by x -s[i:j] = t slice of s from i to j is replaced by t -del s[i:j] same as s[i:j] = [] -s.append(x) same as s[len(s) : len(s)] = [x] -s.count(x) return number of i's for which s[i] == x -s.extend(x) same as s[len(s):len(s)]= x -s.index(x) return smallest i such that s[i] == x (1) -s.insert(i, x) same as s[i:i] = [x] if i >= 0 -s.pop([i]) same as x = s[i]; del s[i]; return x (4) -s.remove(x) same as del s[s.index(x)] (1) -s.reverse() reverse the items of s in place (3) -s.sort([cmpFct]) sort the items of s in place (2), (3) - -Notes : - (1) raise a ValueError exception when x is not found in s (i.e. out of -range). - (2) The sort() method takes an optional argument specifying a comparison -fct of 2 arguments (list items) which should - return -1, 0, or 1 depending on whether the 1st argument is -considered smaller than, equal to, or larger than the 2nd - argument. Note that this slows the sorting process down considerably. - (3) The sort() and reverse() methods modify the list in place for economy -of space when sorting or reversing a large list. - They don't return the sorted or reversed list to remind you of this -side effect. - (4) [New 1.5.2] The optional argument i defaults to -1, so that by default the last -item is removed and returned. - - - -Operations on mappings (dictionaries) - - Operations on mappings - Operation Result Notes -len(d) the number of items in d -d[k] the item of d with key k (1) -d[k] = x set d[k] to x -del d[k] remove d[k] from d (1) -d.clear() remove all items from d -d.copy() a shallow copy of d -d.get(k,defaultval) the item of d with key k (4) -d.has_key(k) True if d has key k, else False -d.items() a copy of d's list of (key, item) pairs (2) -d.iteritems() an iterator over (key, value) pairs (7) -d.iterkeys() an iterator over the keys of d (7) -d.itervalues() an iterator over the values of d (7) -d.keys() a copy of d's list of keys (2) -d1.update(d2) for k, v in d2.items(): d1[k] = v (3) -d.values() a copy of d's list of values (2) -d.pop(k) remove d[k] and return its value -d.popitem() remove and return an arbitrary (6) - (key, item) pair -d.setdefault(k,defaultval) the item of d with key k (5) - - Notes : - TypeError is raised if key is not acceptable - (1) KeyError is raised if key k is not in the map - (2) Keys and values are listed in random order - (3) d2 must be of the same type as d1 - (4) Never raises an exception if k is not in the map, instead it returns - defaultVal. - defaultVal is optional, when not provided and k is not in the map, - None is returned. - (5) Never raises an exception if k is not in the map, instead it returns - defaultVal, and adds k to map with value defaultVal. defaultVal is - optional. When not provided and k is not in the map, None is returned and - added to map. - (6) Raises a KeyError if the dictionary is emtpy. - (7) While iterating over a dictionary, the values may be updated but - the keys cannot be changed. - -Operations on strings - -Note that these string methods largely (but not completely) supersede the -functions available in the string module. - - - Operations on strings - Operation Result Notes -s.capitalize() return a copy of s with only its first character - capitalized. -s.center(width) return a copy of s centered in a string of length width (1) - . -s.count(sub[ return the number of occurrences of substring sub in (2) -,start[,end]]) string s. -s.decode(([ return a decoded version of s. (3) - encoding - [,errors]]) -s.encode([ return an encoded version of s. Default encoding is the - encoding current default string encoding. (3) - [,errors]]) -s.endswith(suffix return true if s ends with the specified suffix, (2) - [,start[,end]]) otherwise return False. -s.expandtabs([ return a copy of s where all tab characters are (4) -tabsize]) expanded using spaces. -s.find(sub[,start return the lowest index in s where substring sub is (2) -[,end]]) found. Return -1 if sub is not found. -s.index(sub[ like find(), but raise ValueError when the substring is (2) -,start[,end]]) not found. -s.isalnum() return True if all characters in s are alphanumeric, (5) - False otherwise. -s.isalpha() return True if all characters in s are alphabetic, (5) - False otherwise. -s.isdigit() return True if all characters in s are digit (5) - characters, False otherwise. -s.islower() return True if all characters in s are lowercase, False (6) - otherwise. -s.isspace() return True if all characters in s are whitespace (5) - characters, False otherwise. -s.istitle() return True if string s is a titlecased string, False (7) - otherwise. -s.isupper() return True if all characters in s are uppercase, False (6) - otherwise. -s.join(seq) return a concatenation of the strings in the sequence - seq, separated by 's's. -s.ljust(width) return s left justified in a string of length width. (1), - (8) -s.lower() return a copy of s converted to lowercase. -s.lstrip() return a copy of s with leading whitespace removed. -s.replace(old, return a copy of s with all occurrences of substring (9) -new[, maxsplit]) old replaced by new. -s.rfind(sub[ return the highest index in s where substring sub is (2) -,start[,end]]) found. Return -1 if sub is not found. -s.rindex(sub[ like rfind(), but raise ValueError when the substring (2) -,start[,end]]) is not found. -s.rjust(width) return s right justified in a string of length width. (1), - (8) -s.rstrip() return a copy of s with trailing whitespace removed. -s.split([sep[ return a list of the words in s, using sep as the (10) -,maxsplit]]) delimiter string. -s.splitlines([ return a list of the lines in s, breaking at line (11) -keepends]) boundaries. -s.startswith return true if s starts with the specified prefix, -(prefix[,start[ otherwise return false. (2) -,end]]) -s.strip() return a copy of s with leading and trailing whitespace - removed. -s.swapcase() return a copy of s with uppercase characters converted - to lowercase and vice versa. - return a titlecased copy of s, i.e. words start with -s.title() uppercase characters, all remaining cased characters - are lowercase. -s.translate(table return a copy of s mapped through translation table (12) -[,deletechars]) table. -s.upper() return a copy of s converted to uppercase. -s.zfill(width) return a string padded with zeroes on the left side and - sliding a minus sign left if necessary. never truncates. - -Notes : - (1) Padding is done using spaces. - (2) If optional argument start is supplied, substring s[start:] is -processed. If optional arguments start and end are supplied, substring s[start: -end] is processed. - (3) Optional argument errors may be given to set a different error handling -scheme. The default for errors is 'strict', meaning that encoding errors raise -a ValueError. Other possible values are 'ignore' and 'replace'. - (4) If optional argument tabsize is not given, a tab size of 8 characters -is assumed. - (5) Returns false if string s does not contain at least one character. - (6) Returns false if string s does not contain at least one cased -character. - (7) A titlecased string is a string in which uppercase characters may only -follow uncased characters and lowercase characters only cased ones. - (8) s is returned if width is less than len(s). - (9) If the optional argument maxsplit is given, only the first maxsplit -occurrences are replaced. - (10) If sep is not specified or None, any whitespace string is a separator. -If maxsplit is given, at most maxsplit splits are done. - (11) Line breaks are not included in the resulting list unless keepends is -given and true. - (12) table must be a string of length 256. All characters occurring in the -optional argument deletechars are removed prior to translation. - -String formatting with the % operator - -formatString % args--> evaluates to a string - - * formatString uses C printf format codes : %, c, s, i, d, u, o, x, X, e, E, - f, g, G, r (details below). - * Width and precision may be a * to specify that an integer argument gives - the actual width or precision. - * The flag characters -, +, blank, # and 0 are understood. (details below) - * %s will convert any type argument to string (uses str() function) - * args may be a single arg or a tuple of args - - '%s has %03d quote types.' % ('Python', 2) # => 'Python has 002 quote types.' - - * Right-hand-side can also be a mapping: - - a = '%(lang)s has %(c)03d quote types.' % {'c':2, 'lang':'Python} -(vars() function very handy to use on right-hand-side.) - - Format codes -Conversion Meaning -d Signed integer decimal. -i Signed integer decimal. -o Unsigned octal. -u Unsigned decimal. -x Unsigned hexadecimal (lowercase). -X Unsigned hexadecimal (uppercase). -e Floating point exponential format (lowercase). -E Floating point exponential format (uppercase). -f Floating point decimal format. -F Floating point decimal format. -g Same as "e" if exponent is greater than -4 or less than precision, - "f" otherwise. -G Same as "E" if exponent is greater than -4 or less than precision, - "F" otherwise. -c Single character (accepts integer or single character string). -r String (converts any python object using repr()). -s String (converts any python object using str()). -% No argument is converted, results in a "%" character in the result. - (The complete specification is %%.) - - Conversion flag characters -Flag Meaning -# The value conversion will use the ``alternate form''. -0 The conversion will be zero padded. -- The converted value is left adjusted (overrides "-"). - (a space) A blank should be left before a positive number (or empty - string) produced by a signed conversion. -+ A sign character ("+" or "-") will precede the conversion (overrides a - "space" flag). - -File Objects - -Created with built-in function open; may be created by other modules' functions -as well. - -Operators on file objects - - File operations - Operation Result -f.close() Close file f. -f.fileno() Get fileno (fd) for file f. -f.flush() Flush file f's internal buffer. -f.isatty() True if file f is connected to a tty-like dev, else False. -f.read([size]) Read at most size bytes from file f and return as a string - object. If size omitted, read to EOF. -f.readline() Read one entire line from file f. -f.readlines() Read until EOF with readline() and return list of lines read. - Set file f's position, like "stdio's fseek()". -f.seek(offset[, whence == 0 then use absolute indexing. -whence=0]) whence == 1 then offset relative to current pos. - whence == 2 then offset relative to file end. -f.tell() Return file f's current position (byte offset). -f.write(str) Write string to file f. -f.writelines(list Write list of strings to file f. -) - -File Exceptions - - EOFError - End-of-file hit when reading (may be raised many times, e.g. if f is a - tty). - IOError - Other I/O-related I/O operation failure. - OSError - OS system call failed. - - - Advanced Types - - -See manuals for more details - - + Module objects - + Class objects - + Class instance objects - + Type objects (see module: types) - + File objects (see above) - + Slice objects - + XRange objects - + Callable types: - o User-defined (written in Python): - # User-defined Function objects - # User-defined Method objects - o Built-in (written in C): - # Built-in Function objects - # Built-in Method objects - + Internal Types: - o Code objects (byte-compile executable Python code: bytecode) - o Frame objects (execution frames) - o Traceback objects (stack trace of an exception) - - - Statements - - pass -- Null statement - del name[,name]* -- Unbind name(s) from object. Object will be indirectly - (and automatically) deleted only if no longer referenced. - print [>> fileobject,] [s1 [, s2 ]* [,] - -- Writes to sys.stdout, or to fileobject if supplied. - Puts spaces between arguments. Puts newline at end - unless statement ends with comma. - Print is not required when running interactively, - simply typing an expression will print its value, - unless the value is None. - exec x [in globals [,locals]] - -- Executes x in namespaces provided. Defaults - to current namespaces. x can be a string, file - object or a function object. - callable(value,... [id=value], [*args], [**kw]) - -- Call function callable with parameters. Parameters can - be passed by name or be omitted if function - defines default values. E.g. if callable is defined as - "def callable(p1=1, p2=2)" - "callable()" <=> "callable(1, 2)" - "callable(10)" <=> "callable(10, 2)" - "callable(p2=99)" <=> "callable(1, 99)" - *args is a tuple of positional arguments. - **kw is a dictionary of keyword arguments. - - Assignment operators - - Caption - Operator Result Notes - a = b Basic assignment - assign object b to label a (1) - a += b Roughly equivalent to a = a + b (2) - a -= b Roughly equivalent to a = a - b (2) - a *= b Roughly equivalent to a = a * b (2) - a /= b Roughly equivalent to a = a / b (2) - a %= b Roughly equivalent to a = a % b (2) - a **= b Roughly equivalent to a = a ** b (2) - a &= b Roughly equivalent to a = a & b (2) - a |= b Roughly equivalent to a = a | b (2) - a ^= b Roughly equivalent to a = a ^ b (2) - a >>= b Roughly equivalent to a = a >> b (2) - a <<= b Roughly equivalent to a = a << b (2) - - Notes : - (1) Can unpack tuples, lists, and strings. - first, second = a[0:2]; [f, s] = range(2); c1,c2,c3='abc' - Tip: x,y = y,x swaps x and y. - (2) Not exactly equivalent - a is evaluated only once. Also, where - possible, operation performed in-place - a is modified rather than - replaced. - - Control Flow - - if condition: suite - [elif condition: suite]* - [else: suite] -- usual if/else_if/else statement - while condition: suite - [else: suite] - -- usual while statement. "else" suite is executed - after loop exits, unless the loop is exited with - "break" - for element in sequence: suite - [else: suite] - -- iterates over sequence, assigning each element to element. - Use built-in range function to iterate a number of times. - "else" suite executed at end unless loop exited - with "break" - break -- immediately exits "for" or "while" loop - continue -- immediately does next iteration of "for" or "while" loop - return [result] -- Exits from function (or method) and returns result (use a tuple to - return more than one value). If no result given, then returns None. - yield result -- Freezes the execution frame of a generator and returns the result - to the iterator's .__next__() method. Upon the next call to __next__(), - resumes execution at the frozen point with all of the local variables - still intact. - - Exception Statements - - assert expr[, message] - -- expr is evaluated. if false, raises exception AssertionError - with message. Inhibited if __debug__ is 0. - try: suite1 - [except [exception [, value]: suite2]+ - [else: suite3] - -- statements in suite1 are executed. If an exception occurs, look - in "except" clauses for matching . If matches or bare - "except" execute suite of that clause. If no exception happens - suite in "else" clause is executed after suite1. - If exception has a value, it is put in value. - exception can also be tuple of exceptions, e.g. - "except (KeyError, NameError), val: print val" - try: suite1 - finally: suite2 - -- statements in suite1 are executed. If no - exception, execute suite2 (even if suite1 is - exited with a "return", "break" or "continue" - statement). If exception did occur, executes - suite2 and then immediately reraises exception. - raise exception [,value [, traceback]] - -- raises exception with optional value - value. Arg traceback specifies a traceback object to - use when printing the exception's backtrace. - raise -- a raise statement without arguments re-raises - the last exception raised in the current function -An exception is either a string (object) or a class instance. - Can create a new one simply by creating a new string: - - my_exception = 'You did something wrong' - try: - if bad: - raise my_exception, bad - except my_exception, value: - print 'Oops', value - -Exception classes must be derived from the predefined class: Exception, e.g.: - class text_exception(Exception): pass - try: - if bad: - raise text_exception() - # This is a shorthand for the form - # "raise , " - except Exception: - print 'Oops' - # This will be printed because - # text_exception is a subclass of Exception -When an error message is printed for an unhandled exception which is a -class, the class name is printed, then a colon and a space, and -finally the instance converted to a string using the built-in function -str(). -All built-in exception classes derives from Exception, itself -derived from BaseException. - -Name Space Statements - -[1.51: On Mac & Windows, the case of module file names must now match the case -as used - in the import statement] -Packages (>1.5): a package is a name space which maps to a directory including - module(s) and the special initialization module '__init__.py' - (possibly empty). Packages/dirs can be nested. You address a - module's symbol via '[package.[package...]module.symbol's. -import module1 [as name1] [, module2]* - -- imports modules. Members of module must be - referred to by qualifying with [package.]module name: - "import sys; print sys.argv:" - "import package1.subpackage.module; package1.subpackage.module.foo()" - module1 renamed as name1, if supplied. -from module import name1 [as othername1] [, name2]* - -- imports names from module module in current namespace. - "from sys import argv; print argv" - "from package1 import module; module.foo()" - "from package1.module import foo; foo()" - name1 renamed as othername1, if supplied. -from module import * - -- imports all names in module, except those starting with "_"; - *to be used sparsely, beware of name clashes* : - "from sys import *; print argv" - "from package.module import *; print x' - NB: "from package import *" only imports the symbols defined - in the package's __init__.py file, not those in the - template modules! -global name1 [, name2]* - -- names are from global scope (usually meaning from module) - rather than local (usually meaning only in function). - -- E.g. in fct without "global" statements, assuming - "a" is name that hasn't been used in fct or module - so far: - -Try to read from "a" -> NameError - -Try to write to "a" -> creates "a" local to fcn - -If "a" not defined in fct, but is in module, then - -Try to read from "a", gets value from module - -Try to write to "a", creates "a" local to fct - But note "a[0]=3" starts with search for "a", - will use to global "a" if no local "a". - -Function Definition - -def func_id ([param_list]): suite - -- Creates a function object & binds it to name func_id. - - param_list ::= [id [, id]*] - id ::= value | id = value | *id | **id - [Args are passed by value.Thus only args representing a mutable object - can be modified (are inout parameters). Use a tuple to return more than - one value] - -Example: - def test (p1, p2 = 1+1, *rest, **keywords): - -- Parameters with "=" have default value (v is - evaluated when function defined). - If list has "*id" then id is assigned a tuple of - all remaining args passed to function (like C vararg) - If list has "**id" then id is assigned a dictionary of - all extra arguments passed as keywords. - -Class Definition - -class [( [,]*)]: - -- Creates a class object and assigns it name - may contain local "defs" of class methods and - assignments to class attributes. -Example: - class my_class (class1, class_list[3]): ... - Creates a class object inheriting from both "class1" and whatever - class object "class_list[3]" evaluates to. Assigns new - class object to name "my_class". - - First arg to class methods is always instance object, called 'self' - by convention. - - Special method __init__() is called when instance is created. - - Special method __del__() called when no more reference to object. - - Create instance by "calling" class object, possibly with arg - (thus instance=apply(aClassObject, args...) creates an instance!) - - In current implementation, can't subclass off built-in - classes. But can "wrap" them, see UserDict & UserList modules, - and see __getattr__() below. -Example: - class c (c_parent): - def __init__(self, name): self.name = name - def print_name(self): print "I'm", self.name - def call_parent(self): c_parent.print_name(self) - instance = c('tom') - print instance.name - 'tom' - instance.print_name() - "I'm tom" - Call parent's super class by accessing parent's method - directly and passing "self" explicitly (see "call_parent" - in example above). - Many other special methods available for implementing - arithmetic operators, sequence, mapping indexing, etc. - -Documentation Strings - -Modules, classes and functions may be documented by placing a string literal by -itself as the first statement in the suite. The documentation can be retrieved -by getting the '__doc__' attribute from the module, class or function. -Example: - class C: - "A description of C" - def __init__(self): - "A description of the constructor" - # etc. -Then c.__doc__ == "A description of C". -Then c.__init__.__doc__ == "A description of the constructor". - -Others - -lambda [param_list]: returnedExpr - -- Creates an anonymous function. returnedExpr must be - an expression, not a statement (e.g., not "if xx:...", - "print xxx", etc.) and thus can't contain newlines. - Used mostly for filter(), map() functions, and GUI callbacks.. -List comprehensions -result = [expression for item1 in sequence1 [if condition1] - [for item2 in sequence2 ... for itemN in sequenceN] - ] -is equivalent to: -result = [] -for item1 in sequence1: - for item2 in sequence2: - ... - for itemN in sequenceN: - if (condition1) and furthur conditions: - result.append(expression) - - - -Built-In Functions - - Built-In Functions - Function Result -__import__(name[, Imports module within the given context (see lib ref for -globals[, locals[, more details) -fromlist]]]) -abs(x) Return the absolute value of number x. -bool(x) Returns True when the argument x is true and False otherwise. -buffer(obj) Creates a buffer reference to an object. -chr(i) Returns one-character string whose ASCII code isinteger i -classmethod(f) Converts a function f, into a method with the class as the - first argument. Useful for creating alternative constructors. -cmp(x,y) Returns negative, 0, positive if x <, ==, > to y -compile(string, from which the code was read, or eg. ''if not read -filename, kind) from file.kind can be 'eval' if string is a single stmt, or - 'single' which prints the output of expression statements - that evaluate to something else than None, or be 'exec'. -complex(real[, Builds a complex object (can also be done using J or j -image]) suffix,e.g. 1+3J) -delattr(obj, name) deletes attribute named name of object obj <=> del obj.name - If no args, returns the list of names in current -dict([items]) Create a new dictionary from the specified item list. -dir([object]) local symbol table. With a module, class or class - instance object as arg, returns list of names in its attr. - dict. -divmod(a,b) Returns tuple of (a/b, a%b) -enumerate(seq) Return a iterator giving: (0, seq[0]), (1, seq[1]), ... -eval(s[, globals[, Eval string s in (optional) globals, locals contexts.s must -locals]]) have no NUL's or newlines. s can also be acode object. - Example: x = 1; incr_x = eval('x + 1') -filter(function, Constructs a list from those elements of sequence for which -sequence) function returns true. function takes one parameter. -float(x) Converts a number or a string to floating point. -getattr(object, [ arg added in 1.5.2]Gets attribute called name -name[, default])) from object,e.g. getattr(x, 'f') <=> x.f). If not found, - raises AttributeError or returns default if specified. -globals() Returns a dictionary containing current global variables. -hasattr(object, Returns true if object has attr called name. -name) -hash(object) Returns the hash value of the object (if it has one) -help(f) Display documentation on object f. -hex(x) Converts a number x to a hexadecimal string. -id(object) Returns a unique 'identity' integer for an object. -int(x[, base]) base paramenter specifies base from which to convert string - values. -isinstance(obj, Returns true if obj is an instance of class. Ifissubclass -class) (A,B) then isinstance(x,A) => isinstance(x,B) -issubclass(class1, returns true if class1 is derived from class2 -class2) - Returns the length (the number of items) of an object -iter(collection) Returns an iterator over the collection. -len(obj) (sequence, dictionary, or instance of class implementing - __len__). -list(sequence) Converts sequence into a list. If already a list,returns a - copy of it. -locals() Returns a dictionary containing current local variables. - Applies function to every item of list and returns a listof -map(function, list, the results. If additional arguments are passed,function -...) must take that many arguments and it is givento function on - each call. -max(seq) Returns the largest item of the non-empty sequence seq. -min(seq) Returns the smallest item of a non-empty sequence seq. -oct(x) Converts a number to an octal string. -open(filename [, Returns a new file object. First two args are same asthose -mode='r', [bufsize= for C's "stdio open" function. bufsize is 0for unbuffered, -implementation 1 for line-buffered, negative forsys-default, all else, of -dependent]]) (about) given size. -ord(c) Returns integer ASCII value of c (a string of len 1). Works - with Unicode char. -object() Create a base type. Used as a superclass for new-style objects. -open(name Open a file. - [, mode - [, buffering]]) -pow(x, y [, z]) Returns x to power y [modulo z]. See also ** operator. -property() Created a property with access controlled by functions. -range(start [,end Returns list of ints from >= start and < end. With 1 arg, -[, step]]) list from 0..arg-1. With 2 args, list from start..end-1. - With 3 args, list from start up to end by step - after fixing it. -repr(object) Returns a string containing a printable and if possible - evaluable representation of an object. - Class redefinable (__repr__). See also str(). -round(x, n=0) Returns the floating point value x rounded to n digitsafter - the decimal point. -setattr(object, This is the counterpart of getattr(). setattr(o, 'foobar', -name, value) 3) <=> o.foobar = 3. Creates attribute if it doesn't exist! -slice([start,] stop Returns a slice object representing a range, with R/ -[, step]) O attributes: start, stop, step. -staticmethod() Convert a function to method with no self or class - argument. Useful for methods associated with a class that - do not need access to an object's internal state. -str(object) Returns a string containing a nicely - printable representation of an object. Class overridable - (__str__).See also repr(). -super(type) Create an unbound super object. Used to call cooperative - superclass methods. -sum(sequence, Add the values in the sequence and return the sum. - [start]) -tuple(sequence) Creates a tuple with same elements as sequence. If already - a tuple, return itself (not a copy). - Returns a type object [see module types] representing - thetype of obj. Example: import typesif type(x) == -type(obj) types.StringType: print 'It is a string'NB: it is - recommanded to use the following form:if isinstance(x, - types.StringType): etc... -unichr(code) code. -unicode(string[, Creates a Unicode string from a 8-bit string, using -encoding[, error thegiven encoding name and error treatment ('strict', -]]]) 'ignore',or 'replace'}. - Without arguments, returns a dictionary correspondingto the - current local symbol table. With a module,class or class -vars([object]) instance object as argumentreturns a dictionary - corresponding to the object'ssymbol table. Useful with "%" - formatting operator. -zip(seq1[, seq2, Returns an iterator of tuples where each tuple contains -...]) the nth element of each of the argument sequences. - - - -Built-In Exceptions - -Exception> - Root class for all exceptions - SystemExit - On 'sys.exit()' - StopIteration - Signal the end from iterator.__next__() - ArithmeticError - Base class for OverflowError, ZeroDivisionError, - FloatingPointError - FloatingPointError - When a floating point operation fails. - OverflowError - On excessively large arithmetic operation - ZeroDivisionError - On division or modulo operation with 0 as 2nd arg - AssertionError - When an assert statement fails. - AttributeError - On attribute reference or assignment failure - EnvironmentError [new in 1.5.2] - On error outside Python; error arg tuple is (errno, errMsg...) - IOError [changed in 1.5.2] - I/O-related operation failure - OSError [new in 1.5.2] - used by the os module's os.error exception. - EOFError - Immediate end-of-file hit by input() or raw_input() - ImportError - On failure of `import' to find module or name - KeyboardInterrupt - On user entry of the interrupt key (often `Control-C') - LookupError - base class for IndexError, KeyError - IndexError - On out-of-range sequence subscript - KeyError - On reference to a non-existent mapping (dict) key - MemoryError - On recoverable memory exhaustion - NameError - On failure to find a local or global (unqualified) name - RuntimeError - Obsolete catch-all; define a suitable error instead - NotImplementedError [new in 1.5.2] - On method not implemented - SyntaxError - On parser encountering a syntax error - IndentationError - On parser encountering an indentation syntax error - TabError - On parser encountering an indentation syntax error - SystemError - On non-fatal interpreter error - bug - report it - TypeError - On passing inappropriate type to built-in op or func - ValueError - On arg error not covered by TypeError or more precise - Warning - UserWarning - DeprecationWarning - PendingDeprecationWarning - SyntaxWarning - RuntimeWarning - FutureWarning - - - -Standard methods & operators redefinition in classes - -Standard methods & operators map to special '__methods__' and thus may be - redefined (mostly in user-defined classes), e.g.: - class x: - def __init__(self, v): self.value = v - def __add__(self, r): return self.value + r - a = x(3) # sort of like calling x.__init__(a, 3) - a + 4 # is equivalent to a.__add__(4) - -Special methods for any class - -(s: self, o: other) - __init__(s, args) instance initialization (on construction) - __del__(s) called on object demise (refcount becomes 0) - __repr__(s) repr() and `...` conversions - __str__(s) str() and 'print' statement - __cmp__(s, o) Compares s to o and returns <0, 0, or >0. - Implements >, <, == etc... - __hash__(s) Compute a 32 bit hash code; hash() and dictionary ops - __bool__(s) Returns False or True for truth value testing - __getattr__(s, name) called when attr lookup doesn't find - __setattr__(s, name, val) called when setting an attr - (inside, don't use "self.name = value" - use "self.__dict__[name] = val") - __delattr__(s, name) called to delete attr - __call__(self, *args) called when an instance is called as function. - -Operators - - See list in the operator module. Operator function names are provided with - 2 variants, with or without - ading & trailing '__' (eg. __add__ or add). - - Numeric operations special methods - (s: self, o: other) - - s+o = __add__(s,o) s-o = __sub__(s,o) - s*o = __mul__(s,o) s/o = __div__(s,o) - s%o = __mod__(s,o) divmod(s,o) = __divmod__(s,o) - s**o = __pow__(s,o) - s&o = __and__(s,o) - s^o = __xor__(s,o) s|o = __or__(s,o) - s<>o = __rshift__(s,o) - bool(s) = __bool__(s) (used in boolean testing) - -s = __neg__(s) +s = __pos__(s) - abs(s) = __abs__(s) ~s = __invert__(s) (bitwise) - s+=o = __iadd__(s,o) s-=o = __isub__(s,o) - s*=o = __imul__(s,o) s/=o = __idiv__(s,o) - s%=o = __imod__(s,o) - s**=o = __ipow__(s,o) - s&=o = __iand__(s,o) - s^=o = __ixor__(s,o) s|=o = __ior__(s,o) - s<<=o = __ilshift__(s,o) s>>=o = __irshift__(s,o) - Conversions - int(s) = __int__(s) - float(s) = __float__(s) complex(s) = __complex__(s) - oct(s) = __oct__(s) hex(s) = __hex__(s) - Right-hand-side equivalents for all binary operators exist; - are called when class instance is on r-h-s of operator: - a + 3 calls __add__(a, 3) - 3 + a calls __radd__(a, 3) - - All seqs and maps, general operations plus: - (s: self, i: index or key) - - len(s) = __len__(s) length of object, >= 0. Length 0 == false - s[i] = __getitem__(s,i) Element at index/key i, origin 0 - - Sequences, general methods, plus: - s[i]=v = __setitem__(s,i,v) - del s[i] = __delitem__(s,i) - s[i:j] = __getslice__(s,i,j) - s[i:j]=seq = __setslice__(s,i,j,seq) - del s[i:j] = __delslice__(s,i,j) == s[i:j] = [] - seq * n = __repeat__(seq, n) - s1 + s2 = __concat__(s1, s2) - i in s = __contains__(s, i) - Mappings, general methods, plus - hash(s) = __hash__(s) - hash value for dictionary references - s[k]=v = __setitem__(s,k,v) - del s[k] = __delitem__(s,k) - -Special informative state attributes for some types: - - Modules: - __doc__ (string/None, R/O): doc string (<=> __dict__['__doc__']) - __name__(string, R/O): module name (also in __dict__['__name__']) - __dict__ (dict, R/O): module's name space - __file__(string/undefined, R/O): pathname of .pyc, .pyo or .pyd (undef for - modules statically linked to the interpreter) - - Classes: [in bold: writable since 1.5.2] - __doc__ (string/None, R/W): doc string (<=> __dict__['__doc__']) - __module__ is the module name in which the class was defined - __name__(string, R/W): class name (also in __dict__['__name__']) - __bases__ (tuple, R/W): parent classes - __dict__ (dict, R/W): attributes (class name space) - - Instances: - __class__ (class, R/W): instance's class - __dict__ (dict, R/W): attributes - - User-defined functions: [bold: writable since 1.5.2] - __doc__ (string/None, R/W): doc string - __name__(string, R/O): function name - func_doc (R/W): same as __doc__ - func_name (R/O): same as __name__ - func_defaults (tuple/None, R/W): default args values if any - func_code (code, R/W): code object representing the compiled function body - func_globals (dict, R/O): ref to dictionary of func global variables - func_dict (dict, R/W): same as __dict__ contains the namespace supporting - arbitrary function attributes - func_closure (R/O): None or a tuple of cells that contain bindings - for the function's free variables. - - - User-defined Methods: - __doc__ (string/None, R/O): doc string - __name__(string, R/O): method name (same as im_func.__name__) - im_class (class, R/O): class defining the method (may be a base class) - im_self (instance/None, R/O): target instance object (None if unbound) - im_func (function, R/O): function object - - Built-in Functions & methods: - __doc__ (string/None, R/O): doc string - __name__ (string, R/O): function name - __self__ : [methods only] target object - - Codes: - co_name (string, R/O): function name - co_argcount (int, R/0): number of positional args - co_nlocals (int, R/O): number of local vars (including args) - co_varnames (tuple, R/O): names of local vars (starting with args) - co_cellvars (tuple, R/O)) the names of local variables referenced by - nested functions - co_freevars (tuple, R/O)) names of free variables - co_code (string, R/O): sequence of bytecode instructions - co_consts (tuple, R/O): litterals used by the bytecode, 1st one is - fct doc (or None) - co_names (tuple, R/O): names used by the bytecode - co_filename (string, R/O): filename from which the code was compiled - co_firstlineno (int, R/O): first line number of the function - co_lnotab (string, R/O): string encoding bytecode offsets to line numbers. - co_stacksize (int, R/O): required stack size (including local vars) - co_flags (int, R/O): flags for the interpreter - bit 2 set if fct uses "*arg" syntax - bit 3 set if fct uses '**keywords' syntax - Frames: - f_back (frame/None, R/O): previous stack frame (toward the caller) - f_code (code, R/O): code object being executed in this frame - f_locals (dict, R/O): local vars - f_globals (dict, R/O): global vars - f_builtins (dict, R/O): built-in (intrinsic) names - f_restricted (int, R/O): flag indicating whether fct is executed in - restricted mode - f_lineno (int, R/O): current line number - f_lasti (int, R/O): precise instruction (index into bytecode) - f_trace (function/None, R/W): debug hook called at start of each source line - Tracebacks: - tb_next (frame/None, R/O): next level in stack trace (toward the frame where - the exception occurred) - tb_frame (frame, R/O): execution frame of the current level - tb_lineno (int, R/O): line number where the exception occurred - tb_lasti (int, R/O): precise instruction (index into bytecode) - - Slices: - start (any/None, R/O): lowerbound - stop (any/None, R/O): upperbound - step (any/None, R/O): step value - - Complex numbers: - real (float, R/O): real part - imag (float, R/O): imaginary part - - -Important Modules - - sys - - Some sys variables - Variable Content -argv The list of command line arguments passed to aPython - script. sys.argv[0] is the script name. -builtin_module_names A list of strings giving the names of all moduleswritten - in C that are linked into this interpreter. -check_interval How often to check for thread switches or signals(measured - in number of virtual machine instructions) -last_type, Set only when an exception not handled andinterpreter -last_value, prints an error. Used by debuggers. -last_traceback -maxint maximum positive value for integers -modules Dictionary of modules that have already been loaded. -path Search path for external modules. Can be modifiedby - program. sys.path[0] == dir of script executing -platform The current platform, e.g. "sunos5", "win32" -ps1, ps2 prompts to use in interactive mode. - File objects used for I/O. One can redirect byassigning a -stdin, stdout, new file object to them (or any object:.with a method -stderr write(string) for stdout/stderr,.with a method readline() - for stdin) -version string containing version info about Python interpreter. - (and also: copyright, dllhandle, exec_prefix, prefix) -version_info tuple containing Python version info - (major, minor, - micro, level, serial). - - Some sys functions - Function Result -exit(n) Exits with status n. Raises SystemExit exception.(Hence can - be caught and ignored by program) -getrefcount(object Returns the reference count of the object. Generally one -) higher than you might expect, because of object arg temp - reference. -setcheckinterval( Sets the interpreter's thread switching interval (in number -interval) of virtual code instructions, default:100). -settrace(func) Sets a trace function: called before each line ofcode is - exited. -setprofile(func) Sets a profile function for performance profiling. - Info on exception currently being handled; this is atuple - (exc_type, exc_value, exc_traceback).Warning: assigning the -exc_info() traceback return value to a local variable in a - function handling an exception will cause a circular - reference. -getrecursionlimit Retrieve maximum recursion depth. -() -setrecursionlimit Set maximum recursion depth. (Defaults to 1000.) -() - - - - os -"synonym" for whatever O/S-specific module is proper for current environment. -this module uses posix whenever possible. -(see also M.A. Lemburg's utility http://www.lemburg.com/files/python/ -platform.py) - - Some os variables - Variable Meaning -name name of O/S-specific module (e.g. "posix", "mac", "nt") -path O/S-specific module for path manipulations. - On Unix, os.path.split() <=> posixpath.split() -curdir string used to represent current directory ('.') -pardir string used to represent parent directory ('..') -sep string used to separate directories ('/' or '\'). Tip: use - os.path.join() to build portable paths. -altsep Alternate sep -if applicable (None -otherwise) -pathsep character used to separate search path components (as in - $PATH), eg. ';' for windows. -linesep line separator as used in binary files, ie '\n' on Unix, '\ - r\n' on Dos/Win, '\r' - - Some os functions - Function Result -makedirs(path[, Recursive directory creation (create required intermediary -mode=0777]) dirs); os.error if fails. -removedirs(path) Recursive directory delete (delete intermediary empty - dirs); if fails. -renames(old, new) Recursive directory or file renaming; os.error if fails. - - - - posix -don't import this module directly, import os instead ! -(see also module: shutil for file copy & remove fcts) - - posix Variables -Variable Meaning -environ dictionary of environment variables, e.g.posix.environ['HOME']. -error exception raised on POSIX-related error. - Corresponding value is tuple of errno code and perror() string. - - Some posix functions - Function Result -chdir(path) Changes current directory to path. -chmod(path, Changes the mode of path to the numeric mode -mode) -close(fd) Closes file descriptor fd opened with posix.open. -_exit(n) Immediate exit, with no cleanups, no SystemExit,etc. Should use - this to exit a child process. -execv(p, args) "Become" executable p with args args -getcwd() Returns a string representing the current working directory -getpid() Returns the current process id -fork() Like C's fork(). Returns 0 to child, child pid to parent.[Not - on Windows] -kill(pid, Like C's kill [Not on Windows] -signal) -listdir(path) Lists (base)names of entries in directory path, excluding '.' - and '..' -lseek(fd, pos, Sets current position in file fd to position pos, expressedas -how) an offset relative to beginning of file (how=0), tocurrent - position (how=1), or to end of file (how=2) -mkdir(path[, Creates a directory named path with numeric mode (default 0777) -mode]) -open(file, Like C's open(). Returns file descriptor. Use file object -flags, mode) fctsrather than this low level ones. -pipe() Creates a pipe. Returns pair of file descriptors (r, w) [Not on - Windows]. -popen(command, Opens a pipe to or from command. Result is a file object to -mode='r', read to orwrite from, as indicated by mode being 'r' or 'w'. -bufSize=0) Use it to catch acommand output ('r' mode) or to feed it ('w' - mode). -remove(path) See unlink. -rename(src, dst Renames/moves the file or directory src to dst. [error iftarget -) name already exists] -rmdir(path) Removes the empty directory path -read(fd, n) Reads n bytes from file descriptor fd and return as string. - Returns st_mode, st_ino, st_dev, st_nlink, st_uid,st_gid, -stat(path) st_size, st_atime, st_mtime, st_ctime.[st_ino, st_uid, st_gid - are dummy on Windows] -system(command) Executes string command in a subshell. Returns exitstatus of - subshell (usually 0 means OK). - Returns accumulated CPU times in sec (user, system, children's -times() user,children's sys, elapsed real time). [3 last not on - Windows] -unlink(path) Unlinks ("deletes") the file (not dir!) path. same as: remove -utime(path, ( Sets the access & modified time of the file to the given tuple -aTime, mTime)) of values. -wait() Waits for child process completion. Returns tuple ofpid, - exit_status [Not on Windows] -waitpid(pid, Waits for process pid to complete. Returns tuple ofpid, -options) exit_status [Not on Windows] -write(fd, str) Writes str to file fd. Returns nb of bytes written. - - - - posixpath -Do not import this module directly, import os instead and refer to this module -as os.path. (e.g. os.path.exists(p)) ! - - Some posixpath functions - Function Result -abspath(p) Returns absolute path for path p, taking current working dir in - account. -dirname/ -basename(p directory and name parts of the path p. See also split. -) -exists(p) True if string p is an existing path (file or directory) -expanduser Returns string that is (a copy of) p with "~" expansion done. -(p) -expandvars Returns string that is (a copy of) p with environment vars expanded. -(p) [Windows: case significant; must use Unix: $var notation, not %var%] -getsize( return the size in bytes of filename. raise os.error. -filename) -getmtime( return last modification time of filename (integer nb of seconds -filename) since epoch). -getatime( return last access time of filename (integer nb of seconds since -filename) epoch). -isabs(p) True if string p is an absolute path. -isdir(p) True if string p is a directory. -islink(p) True if string p is a symbolic link. -ismount(p) True if string p is a mount point [true for all dirs on Windows]. -join(p[,q Joins one or more path components intelligently. -[,...]]) - Splits p into (head, tail) where tail is lastpathname component and -split(p) is everything leadingup to that. <=> (dirname(p), basename - (p)) -splitdrive Splits path p in a pair ('drive:', tail) [Windows] -(p) -splitext(p Splits into (root, ext) where last comp of root contains no periods -) and ext is empty or startswith a period. - Calls the function visit with arguments(arg, dirname, names) for - each directory recursively inthe directory tree rooted at p -walk(p, (including p itself if it's a dir)The argument dirname specifies the -visit, arg visited directory, the argumentnames lists the files in the -) directory. The visit function maymodify names to influence the set - of directories visited belowdirname, e.g., to avoid visiting certain - parts of the tree. - - - - shutil -high-level file operations (copying, deleting). - - Main shutil functions - Function Result -copy(src, dst) Copies the contents of file src to file dst, retaining file - permissions. -copytree(src, dst Recursively copies an entire directory tree rooted at src -[, symlinks]) into dst (which should not already exist). If symlinks is - true, links insrc are kept as such in dst. -rmtree(path[, Deletes an entire directory tree, ignoring errors if -ignore_errors[, ignore_errors true,or calling onerror(func, path, -onerror]]) sys.exc_info()) if supplied with - -(and also: copyfile, copymode, copystat, copy2) - -time - - Variables -Variable Meaning -altzone signed offset of local DST timezone in sec west of the 0th meridian. -daylight nonzero if a DST timezone is specified - - Functions - Function Result -time() return a float representing UTC time in seconds since the epoch. -gmtime(secs), return a tuple representing time : (year aaaa, month(1-12),day -localtime( (1-31), hour(0-23), minute(0-59), second(0-59), weekday(0-6, 0 is -secs) monday), Julian day(1-366), daylight flag(-1,0 or 1)) -asctime( -timeTuple), -strftime( -format, return a formatted string representing time. -timeTuple) -mktime(tuple) inverse of localtime(). Return a float. -strptime( parse a formatted string representing time, return tuple as in -string[, gmtime(). -format]) -sleep(secs) Suspend execution for seconds. can be a float. - -and also: clock, ctime. - - string - -As of Python 2.0, much (though not all) of the functionality provided by the -string module have been superseded by built-in string methods - see Operations -on strings for details. - - Some string variables - Variable Meaning -digits The string '0123456789' -hexdigits, octdigits legal hexadecimal & octal digits -letters, uppercase, lowercase, Strings containing the appropriate -whitespace characters -index_error Exception raised by index() if substr not - found. - - Some string functions - Function Result -expandtabs(s, returns a copy of string with tabs expanded. -tabSize) -find/rfind(s, sub Return the lowest/highest index in where the substring -[, start=0[, end= is found such that is wholly contained ins -0]) [start:end]. Return -1 if not found. -ljust/rjust/center Return a copy of string left/right justified/centerd in -(s, width) afield of given width, padded with spaces. is - nevertruncated. -lower/upper(s) Return a string that is (a copy of) in lowercase/ - uppercase -split(s[, sep= Return a list containing the words of the string ,using -whitespace[, the string as a separator. -maxsplit=0]]) -join(words[, sep=' Concatenate a list or tuple of words with -']) interveningseparators; inverse of split. -replace(s, old, Returns a copy of string with all occurrences of -new[, maxsplit=0] substring replaced by . Limits to - firstsubstitutions if specified. -strip(s) Return a string that is (a copy of) without leadingand - trailing whitespace. see also lstrip, rstrip. - - - - re (sre) - -Handles Unicode strings. Implemented in new module sre, re now a mere front-end -for compatibility. -Patterns are specified as strings. Tip: Use raw strings (e.g. r'\w*') to -litteralize backslashes. - - - Regular expression syntax - Form Description -. matches any character (including newline if DOTALL flag specified) -^ matches start of the string (of every line in MULTILINE mode) -$ matches end of the string (of every line in MULTILINE mode) -* 0 or more of preceding regular expression (as many as possible) -+ 1 or more of preceding regular expression (as many as possible) -? 0 or 1 occurrence of preceding regular expression -*?, +?, ?? Same as *, + and ? but matches as few characters as possible -{m,n} matches from m to n repetitions of preceding RE -{m,n}? idem, attempting to match as few repetitions as possible -[ ] defines character set: e.g. '[a-zA-Z]' to match all letters(see also - \w \S) -[^ ] defines complemented character set: matches if char is NOT in set - escapes special chars '*?+&$|()' and introduces special sequences -\ (see below). Due to Python string rules, write as '\\' orr'\' in the - pattern string. -\\ matches a litteral '\'; due to Python string rules, write as '\\\\ - 'in pattern string, or better using raw string: r'\\'. -| specifies alternative: 'foo|bar' matches 'foo' or 'bar' -(...) matches any RE inside (), and delimits a group. -(?:...) idem but doesn't delimit a group. - matches if ... matches next, but doesn't consume any of the string -(?=...) e.g. 'Isaac (?=Asimov)' matches 'Isaac' only if followed by - 'Asimov'. -(?!...) matches if ... doesn't match next. Negative of (?=...) -(?P...) [a-zA-Z_]\w*)' defines a group named id) -(?P=name) matches whatever text was matched by the earlier group named name. -(?#...) A comment; ignored. -(?letter) letter is one of 'i','L', 'm', 's', 'x'. Set the corresponding flags - (re.I, re.L, re.M, re.S, re.X) for the entire RE. - - Special sequences -Sequence Description -number matches content of the group of the same number; groups are numbered - starting from 1 -\A matches only at the start of the string -\b empty str at beg or end of word: '\bis\b' matches 'is', but not 'his' -\B empty str NOT at beginning or end of word -\d any decimal digit (<=> [0-9]) -\D any non-decimal digit char (<=> [^O-9]) -\s any whitespace char (<=> [ \t\n\r\f\v]) -\S any non-whitespace char (<=> [^ \t\n\r\f\v]) -\w any alphaNumeric char (depends on LOCALE flag) -\W any non-alphaNumeric char (depends on LOCALE flag) -\Z matches only at the end of the string - - Variables -Variable Meaning -error Exception when pattern string isn't a valid regexp. - - Functions - Function Result - Compile a RE pattern string into a regular expression object. - Flags (combinable by |): - - I or IGNORECASE or (?i) - case insensitive matching -compile( L or LOCALE or (?L) -pattern[, make \w, \W, \b, \B dependent on thecurrent locale -flags=0]) M or MULTILINE or (?m) - matches every new line and not onlystart/end of the whole - string - S or DOTALL or (?s) - '.' matches ALL chars, including newline - X or VERBOSE or (?x) - Ignores whitespace outside character sets -escape(string) return (a copy of) string with all non-alphanumerics - backslashed. -match(pattern, if 0 or more chars at beginning of match the RE pattern -string[, flags string,return a corresponding MatchObject instance, or None if -]) no match. -search(pattern scan thru for a location matching , return -, string[, acorresponding MatchObject instance, or None if no match. -flags]) -split(pattern, split by occurrences of . If capturing () are -string[, used inpattern, then occurrences of patterns or subpatterns are -maxsplit=0]) also returned. -findall( return a list of non-overlapping matches in , either a -pattern, list ofgroups or a list of tuples if the pattern has more than 1 -string) group. - return string obtained by replacing the ( first) lefmost -sub(pattern, non-overlapping occurrences of (a string or a RE -repl, string[, object) in by ; can be a string or a fct -count=0]) called with a single MatchObj arg, which must return the - replacement string. -subn(pattern, -repl, string[, same as sub(), but returns a tuple (newString, numberOfSubsMade) -count=0]) - -Regular Expression Objects - - -(RE objects are returned by the compile fct) - - re object attributes -Attribute Descrition -flags flags arg used when RE obj was compiled, or 0 if none provided -groupindex dictionary of {group name: group number} in pattern -pattern pattern string from which RE obj was compiled - - re object methods - Method Result - If zero or more characters at the beginning of string match this - regular expression, return a corresponding MatchObject instance. - Return None if the string does not match the pattern; note that - this is different from a zero-length match. - The optional second parameter pos gives an index in the string -match( where the search is to start; it defaults to 0. This is not -string[, completely equivalent to slicing the string; the '' pattern -pos][, character matches at the real beginning of the string and at -endpos]) positions just after a newline, but not necessarily at the index - where the search is to start. - The optional parameter endpos limits how far the string will be - searched; it will be as if the string is endpos characters long, so - only the characters from pos to endpos will be searched for a - match. - Scan through string looking for a location where this regular -search( expression produces a match, and return a corresponding MatchObject -string[, instance. Return None if no position in the string matches the -pos][, pattern; note that this is different from finding a zero-length -endpos]) match at some point in the string. - The optional pos and endpos parameters have the same meaning as for - the match() method. -split( -string[, Identical to the split() function, using the compiled pattern. -maxsplit= -0]) -findall( Identical to the findall() function, using the compiled pattern. -string) -sub(repl, -string[, Identical to the sub() function, using the compiled pattern. -count=0]) -subn(repl, -string[, Identical to the subn() function, using the compiled pattern. -count=0]) - -Match Objects - - -(Match objects are returned by the match & search functions) - - Match object attributes -Attribute Description -pos value of pos passed to search or match functions; index intostring at - which RE engine started search. -endpos value of endpos passed to search or match functions; index intostring - beyond which RE engine won't go. -re RE object whose match or search fct produced this MatchObj instance -string string passed to match() or search() - - Match object functions -Function Result - returns one or more groups of the match. If one arg, result is a -group([g1 string;if multiple args, result is a tuple with one item per arg. If -, g2, gi is 0,return value is entire matching string; if 1 <= gi <= 99, -...]) returnstring matching group #gi (or None if no such group); gi may - also bea group name. - returns a tuple of all groups of the match; groups not -groups() participatingto the match have a value of None. Returns a string - instead of tupleif len(tuple)=1 -start( -group), returns indices of start & end of substring matched by group (or -end(group Noneif group exists but doesn't contribute to the match) -) -span( returns the 2-tuple (start(group), end(group)); can be (None, None)if -group) group didn't contibute to the match. - - - - math - -Variables: -pi -e -Functions (see ordinary C man pages for info): -acos(x) -asin(x) -atan(x) -atan2(x, y) -ceil(x) -cos(x) -cosh(x) -degrees(x) -exp(x) -fabs(x) -floor(x) -fmod(x, y) -frexp(x) -- Unlike C: (float, int) = frexp(float) -ldexp(x, y) -log(x [,base]) -log10(x) -modf(x) -- Unlike C: (float, float) = modf(float) -pow(x, y) -radians(x) -sin(x) -sinh(x) -sqrt(x) -tan(x) -tanh(x) - - getopt - -Functions: -getopt(list, optstr) -- Similar to C. is option - letters to look for. Put ':' after letter - if option takes arg. E.g. - # invocation was "python test.py -c hi -a arg1 arg2" - opts, args = getopt.getopt(sys.argv[1:], 'ab:c:') - # opts would be - [('-c', 'hi'), ('-a', '')] - # args would be - ['arg1', 'arg2'] - - -List of modules and packages in base distribution - -(built-ins and content of python Lib directory) -(Python NT distribution, may be slightly different in other distributions) - - Standard library modules - Operation Result -aifc Stuff to parse AIFF-C and AIFF files. -asynchat Support for 'chat' style protocols -asyncore Asynchronous File I/O (in select style) -atexit Register functions to be called at exit of Python interpreter. -base64 Conversions to/from base64 RFC-MIME transport encoding . -bdb A generic Python debugger base class. -binhex Macintosh binhex compression/decompression. -bisect List bisection algorithms. -bz2 Support for bz2 compression/decompression. -calendar Calendar printing functions. -cgi Wraps the WWW Forms Common Gateway Interface (CGI). -cgitb Utility for handling CGI tracebacks. -cmd A generic class to build line-oriented command interpreters. -datetime Basic date and time types. -code Utilities needed to emulate Python's interactive interpreter -codecs Lookup existing Unicode encodings and register new ones. -colorsys Conversion functions between RGB and other color systems. -compileall Force "compilation" of all .py files in a directory. -configparser Configuration file parser (much like windows .ini files) -copy Generic shallow and deep copying operations. -copyreg Helper to provide extensibility for pickle/cPickle. -csv Read and write files with comma separated values. -dbm Generic interface to all dbm clones (dbm.bsd, dbm.gnu, - dbm.ndbm, dbm.dumb). -dircache Sorted list of files in a dir, using a cache. -difflib Tool for creating delta between sequences. -dis Bytecode disassembler. -distutils Package installation system. -doctest Tool for running and verifying tests inside doc strings. -dospath Common operations on DOS pathnames. -email Comprehensive support for internet email. -filecmp File comparison. -fileinput Helper class to quickly write a loop over all standard input - files. -fnmatch Filename matching with shell patterns. -formatter A test formatter. -fpformat General floating point formatting functions. -ftplib An FTP client class. Based on RFC 959. -gc Perform garbacge collection, obtain GC debug stats, and tune - GC parameters. -getopt Standard command line processing. See also ftp:// - www.pauahtun.org/pub/getargspy.zip -getpass Utilities to get a password and/or the current user name. -glob filename globbing. -gzip Read & write gzipped files. -heapq Priority queue implemented using lists organized as heaps. -hmac Keyed-Hashing for Message Authentication -- RFC 2104. -html.entities HTML entity definitions. -html.parser A parser for HTML and XHTML. -http.client HTTP client class. -http.server HTTP server services. -ihooks Hooks into the "import" mechanism. -imaplib IMAP4 client.Based on RFC 2060. -imghdr Recognizing image files based on their first few bytes. -imputil Privides a way of writing customised import hooks. -inspect Tool for probing live Python objects. -keyword List of Python keywords. -linecache Cache lines from files. -locale Support for number formatting using the current locale - settings. -logging Python logging facility. -macpath Pathname (or related) operations for the Macintosh. -macurl2path Mac specific module for conversion between pathnames and URLs. -mailbox A class to handle a unix-style or mmdf-style mailbox. -mailcap Mailcap file handling (RFC 1524). -mhlib MH (mailbox) interface. -mimetypes Guess the MIME type of a file. -mmap Interface to memory-mapped files - they behave like mutable - strings./font> -multifile Class to make multi-file messages easier to handle. -mutex Mutual exclusion -- for use with module sched. -netrc -nntplib An NNTP client class. Based on RFC 977. -ntpath Common operations on DOS pathnames. -nturl2path Mac specific module for conversion between pathnames and URLs. -optparse A comprehensive tool for processing command line options. -os Either mac, dos or posix depending system. -pdb A Python debugger. -pickle Pickling (save and restore) of Python objects (a faster - Cimplementation exists in built-in module: cPickle). -pipes Conversion pipeline templates. -pkgunil Utilities for working with Python packages. -poplib A POP3 client class. Based on the J. Myers POP3 draft. -posixpath Common operations on POSIX pathnames. -pprint Support to pretty-print lists, tuples, & dictionaries - recursively. -profile Class for profiling python code. -pstats Class for printing reports on profiled python code. -pydoc Utility for generating documentation from source files. -pty Pseudo terminal utilities. -pyexpat Interface to the Expay XML parser. -py_compile Routine to "compile" a .py file to a .pyc file. -pyclbr Parse a Python file and retrieve classes and methods. -queue A multi-producer, multi-consumer queue. -quopri Conversions to/from quoted-printable transport encoding. -random Random variable generators -re Regular Expressions. -reprlib Redo repr() but with limits on most sizes. -rlcompleter Word completion for GNU readline 2.0. -sched A generally useful event scheduler class. -shelve Manage shelves of pickled objects. -shlex Lexical analyzer class for simple shell-like syntaxes. -shutil Utility functions usable in a shell-like program. -site Append module search paths for third-party packages to - sys.path. -smtplib SMTP Client class (RFC 821) -sndhdr Several routines that help recognizing sound. -socketserver Generic socket server classes. -stat Constants and functions for interpreting stat/lstat struct. -statvfs Constants for interpreting statvfs struct as returned by - os.statvfs()and os.fstatvfs() (if they exist). -string A collection of string operations. -sunau Stuff to parse Sun and NeXT audio files. -sunaudio Interpret sun audio headers. -symbol Non-terminal symbols of Python grammar (from "graminit.h"). -tabnanny Check Python source for ambiguous indentation. -tarfile Facility for reading and writing to the *nix tarfile format. -telnetlib TELNET client class. Based on RFC 854. -tempfile Temporary file name allocation. -textwrap Object for wrapping and filling text. -threading Proposed new higher-level threading interfaces -token Tokens (from "token.h"). -tokenize Compiles a regular expression that recognizes Python tokens. -traceback Format and print Python stack traces. -tty Terminal utilities. -turtle LogoMation-like turtle graphics -types Define names for all type symbols in the std interpreter. -tzparse Parse a timezone specification. -unicodedata Interface to unicode properties. -urllib.parse Parse URLs according to latest draft of standard. -urllib.request Open an arbitrary URL. -urllib.robotparser Parse robots.txt files, useful for web spiders. -user Hook to allow user-specified customization code to run. -uu UUencode/UUdecode. -unittest Utilities for implementing unit testing. -wave Stuff to parse WAVE files. -weakref Tools for creating and managing weakly referenced objects. -webbrowser Platform independent URL launcher. -xdrlib Implements (a subset of) Sun XDR (eXternal Data - Representation). -xml.dom Classes for processing XML using the Document Object Model. -xml.sax Classes for processing XML using the SAX API. -xmlrpc.client Support for remote procedure calls using XML. -xmlrpc.server Create XMLRPC servers. -zipfile Read & write PK zipped files. - - - -* Built-ins * - - sys Interpreter state vars and functions - __built-in__ Access to all built-in python identifiers - __main__ Scope of the interpreters main program, script or stdin - array Obj efficiently representing arrays of basic values - math Math functions of C standard - time Time-related functions (also the newer datetime module) - marshal Read and write some python values in binary format - struct Convert between python values and C structs - -* Standard * - - getopt Parse cmd line args in sys.argv. A la UNIX 'getopt'. - os A more portable interface to OS dependent functionality - re Functions useful for working with regular expressions - string Useful string and characters functions and exceptions - random Mersenne Twister pseudo-random number generator - _thread Low-level primitives for working with process threads - threading idem, new recommended interface. - -* Unix/Posix * - - dbm Interface to Unix dbm databases - grp Interface to Unix group database - posix OS functionality standardized by C and POSIX standards - posixpath POSIX pathname functions - pwd Access to the Unix password database - select Access to Unix select multiplex file synchronization - socket Access to BSD socket interface - -* Tk User-interface Toolkit * - - tkinter Main interface to Tk - -* Multimedia * - - audioop Useful operations on sound fragments - imageop Useful operations on images - jpeg Access to jpeg image compressor and decompressor - rgbimg Access SGI imglib image files - -* Cryptographic Extensions * - - md5 Interface to RSA's MD5 message digest algorithm - sha Interface to the SHA message digest algorithm - HMAC Keyed-Hashing for Message Authentication -- RFC 2104. - -* SGI IRIX * (4 & 5) - - al SGI audio facilities - AL al constants - fl Interface to FORMS library - FL fl constants - flp Functions for form designer - fm Access to font manager library - gl Access to graphics library - GL Constants for gl - DEVICE More constants for gl - imgfile Imglib image file interface - - -Workspace exploration and idiom hints - - dir() list functions, variables in - dir() get object keys, defaults to local name space - if __name__ == '__main__': main() invoke main if running as script - map(None, lst1, lst2, ...) merge lists - b = a[:] create copy of seq structure - _ in interactive mode, is last value printed - - - - - - - -Python Mode for Emacs - -(Not revised, possibly not up to date) -Type C-c ? when in python-mode for extensive help. -INDENTATION -Primarily for entering new code: - TAB indent line appropriately - LFD insert newline, then indent - DEL reduce indentation, or delete single character -Primarily for reindenting existing code: - C-c : guess py-indent-offset from file content; change locally - C-u C-c : ditto, but change globally - C-c TAB reindent region to match its context - C-c < shift region left by py-indent-offset - C-c > shift region right by py-indent-offset -MARKING & MANIPULATING REGIONS OF CODE -C-c C-b mark block of lines -M-C-h mark smallest enclosing def -C-u M-C-h mark smallest enclosing class -C-c # comment out region of code -C-u C-c # uncomment region of code -MOVING POINT -C-c C-p move to statement preceding point -C-c C-n move to statement following point -C-c C-u move up to start of current block -M-C-a move to start of def -C-u M-C-a move to start of class -M-C-e move to end of def -C-u M-C-e move to end of class -EXECUTING PYTHON CODE -C-c C-c sends the entire buffer to the Python interpreter -C-c | sends the current region -C-c ! starts a Python interpreter window; this will be used by - subsequent C-c C-c or C-c | commands -C-c C-w runs PyChecker - -VARIABLES -py-indent-offset indentation increment -py-block-comment-prefix comment string used by py-comment-region -py-python-command shell command to invoke Python interpreter -py-scroll-process-buffer t means always scroll Python process buffer -py-temp-directory directory used for temp files (if needed) -py-beep-if-tab-change ring the bell if tab-width is changed - - -The Python Debugger - -(Not revised, possibly not up to date, see 1.5.2 Library Ref section 9.1; in 1.5.2, you may also use debugger integrated in IDLE) - -Accessing - -import pdb (it's a module written in Python) - -- defines functions : - run(statement[,globals[, locals]]) - -- execute statement string under debugger control, with optional - global & local environment. - runeval(expression[,globals[, locals]]) - -- same as run, but evaluate expression and return value. - runcall(function[, argument, ...]) - -- run function object with given arg(s) - pm() -- run postmortem on last exception (like debugging a core file) - post_mortem(t) - -- run postmortem on traceback object - - -- defines class Pdb : - use Pdb to create reusable debugger objects. Object - preserves state (i.e. break points) between calls. - - runs until a breakpoint hit, exception, or end of program - If exception, variable '__exception__' holds (exception,value). - -Commands - -h, help - brief reminder of commands -b, break [] - if numeric, break at line in current file - if is function object, break on entry to fcn - if no arg, list breakpoints -cl, clear [] - if numeric, clear breakpoint at in current file - if no arg, clear all breakpoints after confirmation -w, where - print current call stack -u, up - move up one stack frame (to top-level caller) -d, down - move down one stack frame -s, step - advance one line in the program, stepping into calls -n, next - advance one line, stepping over calls -r, return - continue execution until current function returns - (return value is saved in variable "__return__", which - can be printed or manipulated from debugger) -c, continue - continue until next breakpoint -j, jump lineno - Set the next line that will be executed -a, args - print args to current function -rv, retval - prints return value from last function that returned -p, print - prints value of in current stack frame -l, list [ [, ]] - List source code for the current file. - Without arguments, list 11 lines around the current line - or continue the previous listing. - With one argument, list 11 lines starting at that line. - With two arguments, list the given range; - if the second argument is less than the first, it is a count. -whatis - prints type of -! - executes rest of line as a Python statement in the current stack frame -q quit - immediately stop execution and leave debugger - - executes last command again -Any input debugger doesn't recognize as a command is assumed to be a -Python statement to execute in the current stack frame, the same way -the exclamation mark ("!") command does. - -Example - -(1394) python -Python 1.0.3 (Sep 26 1994) -Copyright 1991-1994 Stichting Mathematisch Centrum, Amsterdam ->>> import rm ->>> rm.run() -Traceback (innermost last): - File "", line 1 - File "./rm.py", line 7 - x = div(3) - File "./rm.py", line 2 - return a / r -ZeroDivisionError: integer division or modulo ->>> import pdb ->>> pdb.pm() -> ./rm.py(2)div: return a / r -(Pdb) list - 1 def div(a): - 2 -> return a / r - 3 - 4 def run(): - 5 global r - 6 r = 0 - 7 x = div(3) - 8 print x -[EOF] -(Pdb) print r -0 -(Pdb) q ->>> pdb.runcall(rm.run) -etc. - -Quirks - -Breakpoints are stored as filename, line number tuples. If a module is reloaded -after editing, any remembered breakpoints are likely to be wrong. - -Always single-steps through top-most stack frame. That is, "c" acts like "n". Deleted: python/branches/py3k-cdecimal/Misc/developers.txt ============================================================================== --- python/branches/py3k-cdecimal/Misc/developers.txt Fri Mar 4 18:50:17 2011 +++ (empty file) @@ -1,352 +0,0 @@ -Developer Log -============= - -This file is a running log of developers given permissions on SourceForge. - -The purpose is to provide some institutional memory of who was given access -and why. - -The first entry starts in April 2005. In keeping with the style of -Misc/NEWS, newer entries should be added to the top. Any markup should -be in the form of ReST. Entries should include the initials of the -project admin who made the change or granted access. Feel free to revise -the format to accommodate documentation needs as they arise. - -Note, when giving new commit permissions, be sure to get a contributor -agreement from the committer. See http://www.python.org/psf/contrib/ -for details. When the agreement is signed, please note it in this log. - -This file is encoded in UTF-8. If the usual form for a name is not in -a Latin or extended Latin alphabet, make sure to include an ASCII -transliteration too. - -Permissions History -------------------- - -- Eli Bendersky was given commit access on Jan 11 2011 by BAC, - on recommendation by Terry Reedy and Nick Coghlan. - -- Ned Deily was given commit access on Jan 9 2011 by MvL, - on recommendation by Antoine Pitrou. - -- David Malcolm was given commit access on Oct 27 2010 by GFB, - at recommendation by Antoine Pitrou and Raymond Hettinger. - -- Tal Einat was given commit access on Oct 4 2010 by MvL, - for improving IDLE. - -- ?ukasz Langa was given commit access on Sep 08 2010 by GFB, - at suggestion of Antoine Pitrou, for general bug fixing. - -- Daniel Stutzbach was given commit access on Aug 22 2010 by MvL, - for general bug fixing. - -- Ask Solem was given commit access on Aug 17 2010 by MvL, - on recommendation by Jesse Noller, for work on the multiprocessing - library. - -- George Boutsioukis was given commit access on Aug 10 2010 - by MvL, for work on 2to3. - -- ?ric Araujo was given commit access on Aug 10 2010 by BAC, - at suggestion of Tarek Ziad?. - -- Terry Reedy was given commit access on Aug 04 2010 by MvL, - at suggestion of Nick Coghlan. - -- Brian Quinlan was given commit access on Jul 26 2010 by GFB, - for work related to PEP 3148. - -- Reid Kleckner was given commit access on Jul 11 2010 by GFB, - for work on the py3k-jit branch, at suggestion of the Unladen - Swallow team. - -- Alexander Belopolsky was given commit access on May 25 2010 - by MvL at suggestion of Mark Dickinson. - -- Tim Golden was given commit access on April 21 2010 by MvL, - at suggestion of Michael Foord. - -- Giampaolo Rodol? was given commit access on April 17 2010 by - MvL, at suggestion of R. David Murray. - -- Jean-Paul Calderone was given commit access on April 6 2010 by - GFB, at suggestion of Michael Foord and others. - -- Brian Curtin was given commit access on March 24 2010 by MvL. - -- Florent Xicluna was given commit access on February 25 2010 by - MvL, based on Antoine Pitrou's recommendation. - -- Dino Viehland was given SVN access on February 23 2010 by Brett - Cannon, for backporting tests from IronPython. - -- Larry Hastings was given SVN access on February 22 2010 by - Andrew Kuchling, based on Brett Cannon's recommendation. - -- Victor Stinner was given SVN access on January 30 2010 by MvL, - at recommendation by Mark Dickinson and Amaury Forgeot d'Arc. - -- Stefan Krah was given SVN access on January 5 2010 by GFB, at - suggestion of Mark Dickinson, for work on the decimal module. - -- Doug Hellmann was given SVN access on September 19 2009 by GFB, at - suggestion of Jesse Noller, for documentation work. - -- Ezio Melotti was given SVN access on June 7 2009 by GFB, for work on and - fixes to the documentation. - -- Paul Kippes was given commit privileges at PyCon 2009 by BAC to work on 3to2. - -- Ron DuPlain was given commit privileges at PyCon 2009 by BAC to work on 3to2. - -- Several developers of alternative Python implementations where - given access for test suite and library adaptions by MvL: - Allison Randal (Parrot), Michael Foord (IronPython), - Jim Baker, Philip Jenvey, and Frank Wierzbicki (all Jython). - -- R. David Murray was given SVN access on March 30 2009 by MvL, after - recommendation by BAC. - -- Chris Withers was given SVN access on March 8 2009 by MvL, - after recommendation by GvR. - -- Tarek Ziad? was given SVN access on December 21 2008 by NCN, - for maintenance of distutils. - -- Hirokazu Yamamoto was given SVN access on August 12 2008 by MvL, - for contributions to the Windows build. - -- Antoine Pitrou was given SVN access on July 16 2008, by recommendation - from GvR, for general contributions to Python. - -- Jesse Noller was given SVN access on 16 June 2008 by GFB, - for work on the multiprocessing module. - -- Gregor Lingl was given SVN access on 10 June 2008 by MvL, - for work on the turtle module. - -- Robert Schuppenies was given SVN access on 21 May 2008 by MvL, - for GSoC contributions. - -- Rodrigo Bernardo Pimentel was given SVN access on 29 April 2008 by MvL, - for GSoC contributions. - -- Heiko Weinen was given SVN access on 29 April 2008 by MvL, - for GSoC contributions. - -- Jesus Cea was given SVN access on 24 April 2008 by MvL, - for maintenance of bsddb. - -- Guilherme Polo was given SVN access on 24 April 2008 by MvL, - for GSoC contributions. - -- Thomas Lee was given SVN access on 21 April 2008 by NCN, - for work on branches (ast/optimizer related). - -- Jeroen Ruigrok van der Werven was given SVN access on 12 April 2008 - by GFB, for documentation work. - -- Josiah Carlson was given SVN access on 26 March 2008 by GFB, - for work on asyncore/asynchat. - -- Benjamin Peterson was given SVN access on 25 March 2008 by GFB, - for bug triage work. - -- Jerry Seutter was given SVN access on 20 March 2008 by BAC, for - general contributions to Python. - -- Jeff Rush was given SVN access on 18 March 2008 by AMK, for Distutils work. - -- David Wolever was given SVN access on 17 March 2008 by MvL, - for 2to3 work. - -- Trent Nelson was given SVN access on 17 March 2008 by MvL, - for general contributions to Python. - -- Mark Dickinson was given SVN access on 6 January 2008 by Facundo - Batista for his work on mathemathics and number related issues. - -- Amaury Forgeot d'Arc was given SVN access on 9 November 2007 by MvL, - for general contributions to Python. - -- Christian Heimes was given SVN access on 31 October 2007 by MvL, - for general contributions to Python. - -- Chris Monson was given SVN access on 20 October 2007 by NCN, - for his work on editing PEPs. - -- Bill Janssen was given SVN access on 28 August 2007 by NCN, - for his work on the SSL module and other things related to (SSL) sockets. - -- Jeffrey Yasskin was given SVN access on 9 August 2007 by NCN, - for his work on PEPs and other general patches. - -- Mark Summerfield was given SVN access on 1 August 2007 by GFB, - for work on documentation. - -- Armin Ronacher was given SVN access on 23 July 2007 by GFB, - for work on the documentation toolset. He now maintains the - ast module. - -- Senthil Kumaran was given SVN access on 16 June 2007 by MvL, - for his Summer-of-Code project, mentored by Skip Montanaro. - -- Alexandre Vassalotti was given SVN access on 21 May 2007 by MvL, - for his Summer-of-Code project, mentored by Brett Cannon. - -- Travis Oliphant was given SVN access on 17 Apr 2007 by MvL, - for implementing the extended buffer protocol. - -- Ziga Seilnacht was given SVN access on 09 Mar 2007 by MvL, - for general maintenance. - -- Pete Shinners was given SVN access on 04 Mar 2007 by NCN, - for PEP 3101 work in the sandbox. - -- Pat Maupin and Eric V. Smith were given SVN access on 28 Feb 2007 by NCN, - for PEP 3101 work in the sandbox. - -- Steven Bethard (SF name "bediviere") added to the SourceForge Python - project 26 Feb 2007, by NCN, as a tracker tech. - -- Josiah Carlson (SF name "josiahcarlson") added to the SourceForge Python - project 06 Jan 2007, by NCN, as a tracker tech. He will maintain asyncore. - -- Collin Winter was given SVN access on 05 Jan 2007 by NCN, for PEP - update access. - -- Lars Gustaebel was given SVN access on 20 Dec 2006 by NCN, for tarfile.py - related work. - -- 2006 Summer of Code entries: SoC developers are expected to work - primarily in nondist/sandbox or on a branch of their own, and will - have their work reviewed before changes are accepted into the trunk. - - - Matt Fleming was added on 25 May 2006 by AMK; he'll be working on - enhancing the Python debugger. - - - Jackilyn Hoxworth was added on 25 May 2006 by AMK; she'll be adding logging - to the standard library. - - - Mateusz Rukowicz was added on 30 May 2006 by AMK; he'll be - translating the decimal module into C. - -- SVN access granted to the "Need for Speed" Iceland sprint attendees, - between May 17 and 21, 2006, by Tim Peters. All work is to be done - in new sandbox projects or on new branches, with merging to the - trunk as approved: - - Andrew Dalke - Christian Tismer - Jack Diederich - John Benediktsson - Kristj?n V. J?nsson - Martin Blais - Richard Emslie - Richard Jones - Runar Petursson - Steve Holden - Richard M. Tew - -- Steven Bethard was given SVN access on 27 Apr 2006 by DJG, for PEP - update access. - -- Talin was given SVN access on 27 Apr 2006 by DJG, for PEP update - access. - -- George Yoshida (SF name "quiver") added to the SourceForge Python - project 14 Apr 2006, by Tim Peters, as a tracker admin. See - contemporaneous python-checkins thread with the unlikely Subject: - - r45329 - python/trunk/Doc/whatsnew/whatsnew25.tex - -- Ronald Oussoren was given SVN access on 3 Mar 2006 by NCN, for Mac - related work. - -- Bob Ippolito was given SVN access on 2 Mar 2006 by NCN, for Mac - related work. - -- Nick Coghlan requested CVS access so he could update his PEP directly. - Granted by GvR on 16 Oct 2005. - -- Added two new developers for the Summer of Code project. 8 July 2005 - by RDH. Andrew Kuchling will be mentoring Gregory K Johnson for a - project to enhance mailbox. Brett Cannon requested access for Flovis - Bruynooghe (sirolf) to work on pstats, profile, and hotshot. Both users - are expected to work primarily in nondist/sandbox and have their work - reviewed before making updates to active code. - -- Georg Brandl was given SF tracker permissions on 28 May 2005 - by RDH. Since the beginning of 2005, he has been active in discussions - on python-dev and has submitted a dozen patch reviews. The permissions - add the ability to change tracker status and to attach patches. On - 3 June 2005, this was expanded by RDH to include checkin permissions. - -- Terry Reedy was given SF tracker permissions on 7 Apr 2005 by RDH. - -- Nick Coghlan was given SF tracker permissions on 5 Apr 2005 by RDH. - For several months, he has been active in reviewing and contributing - patches. The added permissions give him greater flexibility in - working with the tracker. - -- Eric Price was made a developer on 2 May 2003 by TGP. This was - specifically to work on the new ``decimal`` package, which lived in - ``nondist/sandbox/decimal/`` at the time. - -- Eric S. Raymond was made a developer on 2 Jul 2000 by TGP, for general - library work. His request is archived here: - - http://mail.python.org/pipermail/python-dev/2000-July/005314.html - - -Permissions Dropped on Request ------------------------------- - -- Roy Smith, Matt Fleming and Richard Emslie sent drop requests. - 4 Aug 2008 GFB - -- Per note from Andrew Kuchling, the permissions for Gregory K Johnson - and the Summer Of Code project are no longer needed. 4 Aug 2008 GFB - -- Per note from Andrew Kuchling, the permissions for Gregory K Johnson - and the Summer Of Code project are no longer needed. AMK will make - any future checkins directly. 16 Oct 2005 RDH - -- Johannes Gijsbers sent a drop request. 27 July 2005 RDH - -- Flovis Bruynooghe sent a drop request. 14 July 2005 RDH - -- Paul Prescod sent a drop request. 30 Apr 2005 RDH - -- Finn Bock sent a drop request. 13 Apr 2005 RDH - -- Eric Price sent a drop request. 10 Apr 2005 RDH - -- Irmen de Jong requested dropping CVS access while keeping tracker - access. 10 Apr 2005 RDH - -- Moshe Zadka and Ken Manheimer sent drop requests. 8 Apr 2005 by RDH - -- Steve Holden, Gerhard Haring, and David Cole sent email stating that - they no longer use their access. 7 Apr 2005 RDH - - -Permissions Dropped after Loss of Contact ------------------------------------------ - -- Several unsuccessful efforts were made to contact Charles G Waldman. - Removed on 8 Apr 2005 by RDH. - - -Initials of Project Admins --------------------------- - -TGP: Tim Peters -GFB: Georg Brandl -BAC: Brett Cannon -NCN: Neal Norwitz -DJG: David Goodger -MvL: Martin v. Loewis -GvR: Guido van Rossum -RDH: Raymond Hettinger Deleted: python/branches/py3k-cdecimal/Misc/maintainers.rst ============================================================================== --- python/branches/py3k-cdecimal/Misc/maintainers.rst Fri Mar 4 18:50:17 2011 +++ (empty file) @@ -1,310 +0,0 @@ -Maintainers Index -================= - -This document has tables that list Python Modules, Tools, Platforms and -Interest Areas and names for each item that indicate a maintainer or an -expert in the field. This list is intended to be used by issue submitters, -issue triage people, and other issue participants to find people to add to -the nosy list or to contact directly by email for help and decisions on -feature requests and bug fixes. People on this list may be asked to render -final judgement on a feature or bug. If no active maintainer is listed for -a given module, then questionable changes should go to python-dev, while -any other issues can and should be decided by any committer. - -Unless a name is followed by a '*', you should never assign an issue to -that person, only make them nosy. Names followed by a '*' may be assigned -issues involving the module or topic for which the name has a '*'. - -The Platform and Interest Area tables list broader fields in which various -people have expertise. These people can also be contacted for help, -opinions, and decisions when issues involve their areas. - -If a listed maintainer does not respond to requests for comment for an -extended period (three weeks or more), they should be marked as inactive -in this list by placing the word 'inactive' in parenthesis behind their -tracker id. They are of course free to remove that inactive mark at -any time. - -Committers should update these tables as their areas of expertise widen. -New topics may be added to the Interest Area table at will. - -The existence of this list is not meant to indicate that these people -*must* be contacted for decisions; it is, rather, a resource to be used -by non-committers to find responsible parties, and by committers who do -not feel qualified to make a decision in a particular context. - -See also `PEP 291`_ and `PEP 360`_ for information about certain modules -with special rules. - -.. _`PEP 291`: http://www.python.org/dev/peps/pep-0291/ -.. _`PEP 360`: http://www.python.org/dev/peps/pep-0360/ - - -================== =========== -Module Maintainers -================== =========== -__future__ -__main__ gvanrossum -_dummy_thread brett.cannon -_thread pitrou -abc -aifc r.david.murray -argparse bethard -array -ast -asynchat josiahcarlson, giampaolo.rodola, stutzbach -asyncore josiahcarlson, giampaolo.rodola, stutzbach -atexit -audioop -base64 -bdb -binascii -binhex -bisect rhettinger -builtins -bz2 -calendar rhettinger -cgi -cgitb -chunk -cmath mark.dickinson -cmd -code -codecs lemburg, doerwalter -codeop -collections rhettinger -collections._abcoll rhettinger, stutzbach -colorsys -compileall -concurrent.futures brian.quinlan -configparser lukasz.langa -contextlib -copy alexandre.vassalotti -copyreg alexandre.vassalotti -cProfile -crypt -csv skip.montanaro -ctypes theller -curses -datetime belopolsky -dbm -decimal facundobatista, rhettinger, mark.dickinson -difflib tim_one -dis -distutils tarek*, eric.araujo* -doctest tim_one (inactive) -dummy_threading brett.cannon -email barry, r.david.murray* -encodings lemburg, loewis -errno -exceptions -fcntl -filecmp -fileinput -fnmatch -formatter -fpectl -fractions mark.dickinson, rhettinger -ftplib giampaolo.rodola -functools ncoghlan, rhettinger -gc pitrou -getopt -getpass -gettext loewis -glob -grp -gzip -hashlib -heapq rhettinger, stutzbach -hmac -html -http -idlelib kbk -imaplib -imghdr -imp -importlib brett.cannon -inspect -io pitrou, benjamin.peterson, stutzbach -itertools rhettinger -json bob.ippolito (inactive), rhettinger -keyword -lib2to3 benjamin.peterson -linecache -locale loewis, lemburg -logging vinay.sajip -macpath -mailbox -mailcap -marshal -math mark.dickinson, rhettinger, stutzbach -mimetypes -mmap -modulefinder theller, jvr -msilib loewis -msvcrt -multiprocessing jnoller -netrc -nis -nntplib -numbers -operator -optparse aronacher -os loewis -ossaudiodev -parser -pdb georg.brandl* -pickle alexandre.vassalotti, pitrou -pickletools alexandre.vassalotti -pipes -pkgutil -platform lemburg -plistlib -poplib -posix -pprint fdrake -profile georg.brandl -pstats georg.brandl -pty -pwd -py_compile -pybench lemburg, pitrou -pyclbr -pydoc -queue rhettinger -quopri -random rhettinger -re effbot (inactive), pitrou, ezio.melotti -readline -reprlib -resource -rlcompleter -runpy ncoghlan -sched -select -shelve -shlex -shutil tarek -signal -site -smtpd -smtplib -sndhdr -socket -socketserver -spwd -sqlite3 ghaering -ssl janssen, pitrou, giampaolo.rodola -stat -string georg.brandl* -stringprep -struct mark.dickinson -subprocess astrand (inactive) -sunau -symbol -symtable benjamin.peterson -sys -sysconfig tarek -syslog jafo -tabnanny tim_one -tarfile lars.gustaebel -telnetlib -tempfile georg.brandl -termios -test -textwrap georg.brandl -threading pitrou -time belopolsky -timeit georg.brandl -tkinter gpolo -token georg.brandl -tokenize -trace belopolsky -traceback georg.brandl* -tty -turtle gregorlingl -types -unicodedata loewis, lemburg, ezio.melotti -unittest michael.foord, ezio.melotti -urllib orsenthil -uu -uuid -warnings brett.cannon -wave -weakref fdrake, pitrou -webbrowser georg.brandl -winreg brian.curtin*, stutzbach -winsound effbot (inactive) -wsgiref pje -xdrlib -xml.dom -xml.dom.minidom -xml.dom.pulldom -xml.etree effbot (inactive) -xml.parsers.expat -xml.sax -xml.sax.handler -xml.sax.saxutils -xml.sax.xmlreader -xmlrpc loewis -zipfile alanmcintyre -zipimport -zlib -================== =========== - - -================== =========== -Tool Maintainers ------------------- ----------- -pybench lemburg -================== =========== - - -================== =========== -Platform Maintainers ------------------- ----------- -AIX -Cygwin jlt63, stutzbach -FreeBSD -HP-UX -Linux -Mac ronaldoussoren -NetBSD1 -OS2/EMX aimacintyre -Solaris -Windows tim.golden, brian.curtin -================== =========== - - -================== =========== -Interest Area Maintainers ------------------- ----------- -algorithms -ast/compiler ncoghlan, benjamin.peterson, brett.cannon, georg.brandl -autoconf/makefiles -bsd -bug tracker ezio.melotti -buildbots -bytecode pitrou -data formats mark.dickinson, georg.brandl -database lemburg -documentation georg.brandl, ezio.melotti -GUI -i18n lemburg -import machinery brett.cannon, ncoghlan -io pitrou, benjamin.peterson, stutzbach -locale lemburg, loewis -mathematics mark.dickinson, eric.smith, lemburg, stutzbach -memory management tim_one, lemburg -networking giampaolo.rodola -packaging tarek, lemburg -py3 transition benjamin.peterson -release management tarek, lemburg, benjamin.peterson, barry, loewis, - gvanrossum, anthonybaxter -str.format eric.smith -testing michael.foord, pitrou, giampaolo.rodola, ezio.melotti -threads pitrou -time and dates lemburg, belopolsky -unicode lemburg, ezio.melotti, haypo -version control -================== =========== Modified: python/branches/py3k-cdecimal/Modules/Setup.dist ============================================================================== --- python/branches/py3k-cdecimal/Modules/Setup.dist (original) +++ python/branches/py3k-cdecimal/Modules/Setup.dist Fri Mar 4 18:50:17 2011 @@ -207,7 +207,7 @@ # # First, look at Setup.config; configure may have set this for you. -#crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems +#_crypt _cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems # Some more UNIX dependent modules -- off by default, since these Modified: python/branches/py3k-cdecimal/Modules/_collectionsmodule.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_collectionsmodule.c (original) +++ python/branches/py3k-cdecimal/Modules/_collectionsmodule.c Fri Mar 4 18:50:17 2011 @@ -485,7 +485,8 @@ /* Advance left block/index pair */ leftindex++; if (leftindex == BLOCKLEN) { - assert (leftblock->rightlink != NULL); + if (leftblock->rightlink == NULL) + break; leftblock = leftblock->rightlink; leftindex = 0; } @@ -493,7 +494,8 @@ /* Step backwards with the right block/index pair */ rightindex--; if (rightindex == -1) { - assert (rightblock->leftlink != NULL); + if (rightblock->leftlink == NULL) + break; rightblock = rightblock->leftlink; rightindex = BLOCKLEN - 1; } @@ -509,7 +511,7 @@ { block *leftblock = deque->leftblock; Py_ssize_t leftindex = deque->leftindex; - Py_ssize_t n = (deque->len); + Py_ssize_t n = deque->len; Py_ssize_t i; Py_ssize_t count = 0; PyObject *item; @@ -533,7 +535,8 @@ /* Advance left block/index pair */ leftindex++; if (leftindex == BLOCKLEN) { - assert (leftblock->rightlink != NULL); + if (leftblock->rightlink == NULL) /* can occur when i==n-1 */ + break; leftblock = leftblock->rightlink; leftindex = 0; } Modified: python/branches/py3k-cdecimal/Modules/_ctypes/_ctypes.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_ctypes/_ctypes.c (original) +++ python/branches/py3k-cdecimal/Modules/_ctypes/_ctypes.c Fri Mar 4 18:50:17 2011 @@ -1826,7 +1826,7 @@ return NULL; } if (PyUnicode_Check(proto)) { - PyObject *v = _PyUnicode_AsDefaultEncodedString(proto, NULL); + PyObject *v = _PyUnicode_AsDefaultEncodedString(proto); if (!v) goto error; proto_str = PyBytes_AS_STRING(v); Modified: python/branches/py3k-cdecimal/Modules/_ctypes/_ctypes_test.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_ctypes/_ctypes_test.c (original) +++ python/branches/py3k-cdecimal/Modules/_ctypes/_ctypes_test.c Fri Mar 4 18:50:17 2011 @@ -12,6 +12,20 @@ /* some functions handy for testing */ +EXPORT(int) +_testfunc_cbk_reg_int(int a, int b, int c, int d, int e, + int (*func)(int, int, int, int, int)) +{ + return func(a*a, b*b, c*c, d*d, e*e); +} + +EXPORT(double) +_testfunc_cbk_reg_double(double a, double b, double c, double d, double e, + double (*func)(double, double, double, double, double)) +{ + return func(a*a, b*b, c*c, d*d, e*e); +} + EXPORT(void)testfunc_array(int values[4]) { printf("testfunc_array %d %d %d %d\n", Modified: python/branches/py3k-cdecimal/Modules/_ctypes/cfield.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_ctypes/cfield.c (original) +++ python/branches/py3k-cdecimal/Modules/_ctypes/cfield.c Fri Mar 4 18:50:17 2011 @@ -52,7 +52,7 @@ { CFieldObject *self; PyObject *proto; - Py_ssize_t size, align, length; + Py_ssize_t size, align; SETFUNC setfunc = NULL; GETFUNC getfunc = NULL; StgDictObject *dict; @@ -106,7 +106,6 @@ } size = dict->size; - length = dict->length; proto = desc; /* Field descriptors for 'c_char * n' are be scpecial cased to Modified: python/branches/py3k-cdecimal/Modules/_ctypes/libffi_msvc/ffi.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_ctypes/libffi_msvc/ffi.c (original) +++ python/branches/py3k-cdecimal/Modules/_ctypes/libffi_msvc/ffi.c Fri Mar 4 18:50:17 2011 @@ -380,7 +380,7 @@ short bytes; char *tramp; #ifdef _WIN64 - int mask; + int mask = 0; #endif FFI_ASSERT (cif->abi == FFI_SYSV); Modified: python/branches/py3k-cdecimal/Modules/_datetimemodule.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_datetimemodule.c (original) +++ python/branches/py3k-cdecimal/Modules/_datetimemodule.c Fri Mar 4 18:50:17 2011 @@ -1461,7 +1461,7 @@ goto Done; Py_DECREF(x1); Py_DECREF(x2); - x1 = x2 = NULL; + /* x1 = */ x2 = NULL; /* x3 has days+seconds in seconds */ x1 = PyNumber_Multiply(x3, us_per_second); /* us */ Modified: python/branches/py3k-cdecimal/Modules/_dbmmodule.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_dbmmodule.c (original) +++ python/branches/py3k-cdecimal/Modules/_dbmmodule.c Fri Mar 4 18:50:17 2011 @@ -219,7 +219,7 @@ return -1; } if (PyUnicode_Check(arg)) { - arg = _PyUnicode_AsDefaultEncodedString(arg, NULL); + arg = _PyUnicode_AsDefaultEncodedString(arg); if (arg == NULL) return -1; } Modified: python/branches/py3k-cdecimal/Modules/_io/bufferedio.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_io/bufferedio.c (original) +++ python/branches/py3k-cdecimal/Modules/_io/bufferedio.c Fri Mar 4 18:50:17 2011 @@ -714,6 +714,39 @@ return 0; } +/* Return 1 if an EnvironmentError with errno == EINTR is set (and then + clears the error indicator), 0 otherwise. + Should only be called when PyErr_Occurred() is true. +*/ +static int +_trap_eintr(void) +{ + static PyObject *eintr_int = NULL; + PyObject *typ, *val, *tb; + PyEnvironmentErrorObject *env_err; + + if (eintr_int == NULL) { + eintr_int = PyLong_FromLong(EINTR); + assert(eintr_int != NULL); + } + if (!PyErr_ExceptionMatches(PyExc_EnvironmentError)) + return 0; + PyErr_Fetch(&typ, &val, &tb); + PyErr_NormalizeException(&typ, &val, &tb); + env_err = (PyEnvironmentErrorObject *) val; + assert(env_err != NULL); + if (env_err->myerrno != NULL && + PyObject_RichCompareBool(env_err->myerrno, eintr_int, Py_EQ) > 0) { + Py_DECREF(typ); + Py_DECREF(val); + Py_XDECREF(tb); + return 1; + } + /* This silences any error set by PyObject_RichCompareBool() */ + PyErr_Restore(typ, val, tb); + return 0; +} + /* * Shared methods and wrappers */ @@ -1269,7 +1302,14 @@ memobj = PyMemoryView_FromBuffer(&buf); if (memobj == NULL) return -1; - res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readinto, memobj, NULL); + /* NOTE: PyErr_SetFromErrno() calls PyErr_CheckSignals() when EINTR + occurs so we needn't do it ourselves. + We then retry reading, ignoring the signal if no handler has + raised (see issue #10956). + */ + do { + res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readinto, memobj, NULL); + } while (res == NULL && _trap_eintr()); Py_DECREF(memobj); if (res == NULL) return -1; @@ -1678,7 +1718,14 @@ memobj = PyMemoryView_FromBuffer(&buf); if (memobj == NULL) return -1; - res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_write, memobj, NULL); + /* NOTE: PyErr_SetFromErrno() calls PyErr_CheckSignals() when EINTR + occurs so we needn't do it ourselves. + We then retry writing, ignoring the signal if no handler has + raised (see issue #10956). + */ + do { + res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_write, memobj, NULL); + } while (res == NULL && _trap_eintr()); Py_DECREF(memobj); if (res == NULL) return -1; Modified: python/branches/py3k-cdecimal/Modules/_io/bytesio.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_io/bytesio.c (original) +++ python/branches/py3k-cdecimal/Modules/_io/bytesio.c Fri Mar 4 18:50:17 2011 @@ -938,13 +938,11 @@ bytesiobuf_getbuffer(bytesiobuf *obj, Py_buffer *view, int flags) { int ret; - void *ptr; bytesio *b = (bytesio *) obj->source; if (view == NULL) { b->exports++; return 0; } - ptr = (void *) obj; ret = PyBuffer_FillInfo(view, (PyObject*)obj, b->buf, b->string_size, 0, flags); if (ret >= 0) { Modified: python/branches/py3k-cdecimal/Modules/_io/textio.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_io/textio.c (original) +++ python/branches/py3k-cdecimal/Modules/_io/textio.c Fri Mar 4 18:50:17 2011 @@ -678,12 +678,16 @@ PyObject *pending_bytes; /* list of bytes objects waiting to be written, or NULL */ Py_ssize_t pending_bytes_count; - PyObject *snapshot; + /* snapshot is either None, or a tuple (dec_flags, next_input) where * dec_flags is the second (integer) item of the decoder state and * next_input is the chunk of input bytes that comes next after the * snapshot point. We use this to reconstruct decoder states in tell(). */ + PyObject *snapshot; + /* Bytes-to-characters ratio for the current chunk. Serves as input for + the heuristic in tell(). */ + double b2cratio; /* Cache raw object if it's a FileIO object */ PyObject *raw; @@ -850,6 +854,7 @@ self->decoded_chars_used = 0; self->pending_bytes_count = 0; self->encodefunc = NULL; + self->b2cratio = 0.0; if (encoding == NULL) { /* Try os.device_encoding(fileno) */ @@ -1390,6 +1395,7 @@ PyObject *dec_flags = NULL; PyObject *input_chunk = NULL; PyObject *decoded_chars, *chunk_size; + Py_ssize_t nbytes, nchars; int eof; /* The return value is True unless EOF was reached. The decoded string is @@ -1435,7 +1441,8 @@ goto fail; assert(PyBytes_Check(input_chunk)); - eof = (PyBytes_Size(input_chunk) == 0); + nbytes = PyBytes_Size(input_chunk); + eof = (nbytes == 0); if (Py_TYPE(self->decoder) == &PyIncrementalNewlineDecoder_Type) { decoded_chars = _PyIncrementalNewlineDecoder_decode( @@ -1450,7 +1457,12 @@ if (decoded_chars == NULL) goto fail; textiowrapper_set_decoded_chars(self, decoded_chars); - if (PyUnicode_GET_SIZE(decoded_chars) > 0) + nchars = PyUnicode_GET_SIZE(decoded_chars); + if (nchars > 0) + self->b2cratio = (double) nbytes / nchars; + else + self->b2cratio = 0.0; + if (nchars > 0) eof = 0; if (self->telling) { @@ -2139,8 +2151,12 @@ cookie_type cookie = {0,0,0,0,0}; PyObject *next_input; Py_ssize_t chars_to_skip, chars_decoded; + Py_ssize_t skip_bytes, skip_back; PyObject *saved_state = NULL; char *input, *input_end; + char *dec_buffer; + Py_ssize_t dec_buffer_len; + int dec_flags; CHECK_INITIALIZED(self); CHECK_CLOSED(self); @@ -2176,6 +2192,7 @@ #else cookie.start_pos = PyLong_AsLong(posobj); #endif + Py_DECREF(posobj); if (PyErr_Occurred()) goto fail; @@ -2190,57 +2207,99 @@ /* How many decoded characters have been used up since the snapshot? */ if (self->decoded_chars_used == 0) { /* We haven't moved from the snapshot point. */ - Py_DECREF(posobj); return textiowrapper_build_cookie(&cookie); } chars_to_skip = self->decoded_chars_used; - /* Starting from the snapshot position, we will walk the decoder - * forward until it gives us enough decoded characters. - */ + /* Decoder state will be restored at the end */ saved_state = PyObject_CallMethodObjArgs(self->decoder, _PyIO_str_getstate, NULL); if (saved_state == NULL) goto fail; - /* Note our initial start point. */ - if (_textiowrapper_decoder_setstate(self, &cookie) < 0) - goto fail; +#define DECODER_GETSTATE() do { \ + PyObject *_state = PyObject_CallMethodObjArgs(self->decoder, \ + _PyIO_str_getstate, NULL); \ + if (_state == NULL) \ + goto fail; \ + if (!PyArg_Parse(_state, "(y#i)", &dec_buffer, &dec_buffer_len, &dec_flags)) { \ + Py_DECREF(_state); \ + goto fail; \ + } \ + Py_DECREF(_state); \ + } while (0) + + /* TODO: replace assert with exception */ +#define DECODER_DECODE(start, len, res) do { \ + PyObject *_decoded = PyObject_CallMethod( \ + self->decoder, "decode", "y#", start, len); \ + if (_decoded == NULL) \ + goto fail; \ + assert (PyUnicode_Check(_decoded)); \ + res = PyUnicode_GET_SIZE(_decoded); \ + Py_DECREF(_decoded); \ + } while (0) + + /* Fast search for an acceptable start point, close to our + current pos */ + skip_bytes = (Py_ssize_t) (self->b2cratio * chars_to_skip); + skip_back = 1; + assert(skip_back <= PyBytes_GET_SIZE(next_input)); + input = PyBytes_AS_STRING(next_input); + while (skip_bytes > 0) { + /* Decode up to temptative start point */ + if (_textiowrapper_decoder_setstate(self, &cookie) < 0) + goto fail; + DECODER_DECODE(input, skip_bytes, chars_decoded); + if (chars_decoded <= chars_to_skip) { + DECODER_GETSTATE(); + if (dec_buffer_len == 0) { + /* Before pos and no bytes buffered in decoder => OK */ + cookie.dec_flags = dec_flags; + chars_to_skip -= chars_decoded; + break; + } + /* Skip back by buffered amount and reset heuristic */ + skip_bytes -= dec_buffer_len; + skip_back = 1; + } + else { + /* We're too far ahead, skip back a bit */ + skip_bytes -= skip_back; + skip_back *= 2; + } + } + if (skip_bytes <= 0) { + skip_bytes = 0; + if (_textiowrapper_decoder_setstate(self, &cookie) < 0) + goto fail; + } - /* Feed the decoder one byte at a time. As we go, note the - * nearest "safe start point" before the current location - * (a point where the decoder has nothing buffered, so seek() + /* Note our initial start point. */ + cookie.start_pos += skip_bytes; + cookie.chars_to_skip = chars_to_skip; + if (chars_to_skip == 0) + goto finally; + + /* We should be close to the desired position. Now feed the decoder one + * byte at a time until we reach the `chars_to_skip` target. + * As we go, note the nearest "safe start point" before the current + * location (a point where the decoder has nothing buffered, so seek() * can safely start from there and advance to this location). */ chars_decoded = 0; input = PyBytes_AS_STRING(next_input); input_end = input + PyBytes_GET_SIZE(next_input); + input += skip_bytes; while (input < input_end) { - PyObject *state; - char *dec_buffer; - Py_ssize_t dec_buffer_len; - int dec_flags; - - PyObject *decoded = PyObject_CallMethod( - self->decoder, "decode", "y#", input, 1); - if (decoded == NULL) - goto fail; - assert (PyUnicode_Check(decoded)); - chars_decoded += PyUnicode_GET_SIZE(decoded); - Py_DECREF(decoded); + Py_ssize_t n; + DECODER_DECODE(input, 1, n); + /* We got n chars for 1 byte */ + chars_decoded += n; cookie.bytes_to_feed += 1; - - state = PyObject_CallMethodObjArgs(self->decoder, - _PyIO_str_getstate, NULL); - if (state == NULL) - goto fail; - if (!PyArg_Parse(state, "(y#i)", &dec_buffer, &dec_buffer_len, &dec_flags)) { - Py_DECREF(state); - goto fail; - } - Py_DECREF(state); + DECODER_GETSTATE(); if (dec_buffer_len == 0 && chars_decoded <= chars_to_skip) { /* Decoder buffer is empty, so this is a safe start point. */ @@ -2272,8 +2331,7 @@ } } - /* finally */ - Py_XDECREF(posobj); +finally: res = PyObject_CallMethod(self->decoder, "setstate", "(O)", saved_state); Py_DECREF(saved_state); if (res == NULL) @@ -2284,8 +2342,7 @@ cookie.chars_to_skip = Py_SAFE_DOWNCAST(chars_to_skip, Py_ssize_t, int); return textiowrapper_build_cookie(&cookie); - fail: - Py_XDECREF(posobj); +fail: if (saved_state) { PyObject *type, *value, *traceback; PyErr_Fetch(&type, &value, &traceback); Modified: python/branches/py3k-cdecimal/Modules/_json.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_json.c (original) +++ python/branches/py3k-cdecimal/Modules/_json.c Fri Mar 4 18:50:17 2011 @@ -335,7 +335,7 @@ PyObject *rval = NULL; Py_ssize_t len = PyUnicode_GET_SIZE(pystr); Py_ssize_t begin = end - 1; - Py_ssize_t next = begin; + Py_ssize_t next /* = begin */; const Py_UNICODE *buf = PyUnicode_AS_UNICODE(pystr); PyObject *chunks = NULL; PyObject *chunk = NULL; @@ -1532,13 +1532,12 @@ goto bail; Py_CLEAR(ident); } + /* TODO DOES NOT RUN; dead code if (s->indent != Py_None) { - /* TODO: DOES NOT RUN */ indent_level -= 1; - /* - yield '\n' + (' ' * (_indent * _current_indent_level)) - */ - } + + yield '\n' + (' ' * (_indent * _current_indent_level)) + }*/ if (PyList_Append(rval, close_dict)) goto bail; return 0; @@ -1624,13 +1623,13 @@ goto bail; Py_CLEAR(ident); } + + /* TODO: DOES NOT RUN if (s->indent != Py_None) { - /* TODO: DOES NOT RUN */ indent_level -= 1; - /* - yield '\n' + (' ' * (_indent * _current_indent_level)) - */ - } + + yield '\n' + (' ' * (_indent * _current_indent_level)) + }*/ if (PyList_Append(rval, close_array)) goto bail; Py_DECREF(s_fast); Modified: python/branches/py3k-cdecimal/Modules/_multiprocessing/multiprocessing.h ============================================================================== --- python/branches/py3k-cdecimal/Modules/_multiprocessing/multiprocessing.h (original) +++ python/branches/py3k-cdecimal/Modules/_multiprocessing/multiprocessing.h Fri Mar 4 18:50:17 2011 @@ -4,7 +4,7 @@ #define PY_SSIZE_T_CLEAN #ifdef __sun -/* The control message API is only available on Solaris +/* The control message API is only available on Solaris if XPG 4.2 or later is requested. */ #define _XOPEN_SOURCE 500 #endif Modified: python/branches/py3k-cdecimal/Modules/_pickle.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_pickle.c (original) +++ python/branches/py3k-cdecimal/Modules/_pickle.c Fri Mar 4 18:50:17 2011 @@ -977,11 +977,6 @@ { Py_ssize_t num_read; - if (n == 0) { - *s = NULL; - return 0; - } - if (self->next_read_idx + n <= self->input_len) { *s = self->input_buffer + self->next_read_idx; self->next_read_idx += n; @@ -2244,19 +2239,21 @@ if (len != 0) { /* Materialize the list elements. */ if (PyList_CheckExact(obj) && self->proto > 0) { - if (Py_EnterRecursiveCall(" while pickling an object") == 0) { - status = batch_list_exact(self, obj); - Py_LeaveRecursiveCall(); - } + if (Py_EnterRecursiveCall(" while pickling an object")) + goto error; + status = batch_list_exact(self, obj); + Py_LeaveRecursiveCall(); } else { PyObject *iter = PyObject_GetIter(obj); if (iter == NULL) goto error; - if (Py_EnterRecursiveCall(" while pickling an object") == 0) { - status = batch_list(self, iter); - Py_LeaveRecursiveCall(); + if (Py_EnterRecursiveCall(" while pickling an object")) { + Py_DECREF(iter); + goto error; } + status = batch_list(self, iter); + Py_LeaveRecursiveCall(); Py_DECREF(iter); } } @@ -2504,10 +2501,10 @@ if (PyDict_CheckExact(obj) && self->proto > 0) { /* We can take certain shortcuts if we know this is a dict and not a dict subclass. */ - if (Py_EnterRecursiveCall(" while pickling an object") == 0) { - status = batch_dict_exact(self, obj); - Py_LeaveRecursiveCall(); - } + if (Py_EnterRecursiveCall(" while pickling an object")) + goto error; + status = batch_dict_exact(self, obj); + Py_LeaveRecursiveCall(); } else { items = PyObject_CallMethod(obj, "items", "()"); if (items == NULL) @@ -2516,7 +2513,12 @@ Py_DECREF(items); if (iter == NULL) goto error; + if (Py_EnterRecursiveCall(" while pickling an object")) { + Py_DECREF(iter); + goto error; + } status = batch_dict(self, iter); + Py_LeaveRecursiveCall(); Py_DECREF(iter); } } @@ -3044,7 +3046,7 @@ PyObject *reduce_value = NULL; int status = 0; - if (Py_EnterRecursiveCall(" while pickling an object") < 0) + if (Py_EnterRecursiveCall(" while pickling an object")) return -1; /* The extra pers_save argument is necessary to avoid calling save_pers() Modified: python/branches/py3k-cdecimal/Modules/_sqlite/connection.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_sqlite/connection.c (original) +++ python/branches/py3k-cdecimal/Modules/_sqlite/connection.c Fri Mar 4 18:50:17 2011 @@ -673,7 +673,6 @@ { PyObject* function_result = NULL; PyObject** aggregate_instance; - PyObject* aggregate_class; #ifdef WITH_THREAD PyGILState_STATE threadstate; @@ -681,8 +680,6 @@ threadstate = PyGILState_Ensure(); #endif - aggregate_class = (PyObject*)sqlite3_user_data(context); - aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*)); if (!*aggregate_instance) { /* this branch is executed if there was an exception in the aggregate's Modified: python/branches/py3k-cdecimal/Modules/_sqlite/cursor.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_sqlite/cursor.c (original) +++ python/branches/py3k-cdecimal/Modules/_sqlite/cursor.c Fri Mar 4 18:50:17 2011 @@ -126,11 +126,9 @@ static void pysqlite_cursor_dealloc(pysqlite_Cursor* self) { - int rc; - /* Reset the statement if the user has not closed the cursor */ if (self->statement) { - rc = pysqlite_statement_reset(self->statement); + pysqlite_statement_reset(self->statement); Py_DECREF(self->statement); } @@ -529,7 +527,7 @@ if (self->statement != NULL) { /* There is an active statement */ - rc = pysqlite_statement_reset(self->statement); + pysqlite_statement_reset(self->statement); } operation_cstr = _PyUnicode_AsStringAndSize(operation, &operation_len); @@ -734,7 +732,7 @@ } if (multiple) { - rc = pysqlite_statement_reset(self->statement); + pysqlite_statement_reset(self->statement); } Py_XDECREF(parameters); } Modified: python/branches/py3k-cdecimal/Modules/_sqlite/module.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_sqlite/module.c (original) +++ python/branches/py3k-cdecimal/Modules/_sqlite/module.c Fri Mar 4 18:50:17 2011 @@ -329,7 +329,7 @@ (pysqlite_statement_setup_types() < 0) || (pysqlite_prepare_protocol_setup_types() < 0) ) { - Py_DECREF(module); + Py_XDECREF(module); return NULL; } Modified: python/branches/py3k-cdecimal/Modules/_sqlite/statement.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_sqlite/statement.c (original) +++ python/branches/py3k-cdecimal/Modules/_sqlite/statement.c Fri Mar 4 18:50:17 2011 @@ -369,11 +369,9 @@ void pysqlite_statement_dealloc(pysqlite_Statement* self) { - int rc; - if (self->st) { Py_BEGIN_ALLOW_THREADS - rc = sqlite3_finalize(self->st); + sqlite3_finalize(self->st); Py_END_ALLOW_THREADS } Modified: python/branches/py3k-cdecimal/Modules/_ssl.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_ssl.c (original) +++ python/branches/py3k-cdecimal/Modules/_ssl.c Fri Mar 4 18:50:17 2011 @@ -354,7 +354,6 @@ /* Actually negotiate SSL connection */ /* XXX If SSL_do_handshake() returns 0, it's also a failure. */ - sockstate = 0; do { PySSL_BEGIN_ALLOW_THREADS ret = SSL_do_handshake(self->ssl); @@ -1090,7 +1089,6 @@ goto error; } do { - err = 0; PySSL_BEGIN_ALLOW_THREADS len = SSL_write(self->ssl, buf.buf, buf.len); err = SSL_get_error(self->ssl, len); @@ -1226,7 +1224,6 @@ } } do { - err = 0; PySSL_BEGIN_ALLOW_THREADS count = SSL_read(self->ssl, mem, len); err = SSL_get_error(self->ssl, count); @@ -1683,7 +1680,7 @@ return NULL; } if (capath && !PyUnicode_FSConverter(capath, &capath_bytes)) { - Py_DECREF(cafile_bytes); + Py_XDECREF(cafile_bytes); PyErr_SetString(PyExc_TypeError, "capath should be a valid filesystem path"); return NULL; Modified: python/branches/py3k-cdecimal/Modules/_testcapimodule.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_testcapimodule.c (original) +++ python/branches/py3k-cdecimal/Modules/_testcapimodule.c Fri Mar 4 18:50:17 2011 @@ -2231,6 +2231,15 @@ return PyErr_NewExceptionWithDoc(name, doc, base, dict); } +static PyObject * +make_memoryview_from_NULL_pointer(PyObject *self) +{ + Py_buffer info; + if (PyBuffer_FillInfo(&info, NULL, NULL, 1, 1, PyBUF_FULL_RO) < 0) + return NULL; + return PyMemoryView_FromBuffer(&info); +} + /* Test that the fatal error from not having a current thread doesn't cause an infinite loop. Run via Lib/test/test_capi.py */ static PyObject * @@ -2326,6 +2335,8 @@ {"code_newempty", code_newempty, METH_VARARGS}, {"make_exception_with_doc", (PyCFunction)make_exception_with_doc, METH_VARARGS | METH_KEYWORDS}, + {"make_memoryview_from_NULL_pointer", (PyCFunction)make_memoryview_from_NULL_pointer, + METH_NOARGS}, {"crash_no_current_thread", (PyCFunction)crash_no_current_thread, METH_NOARGS}, {NULL, NULL} /* sentinel */ }; Modified: python/branches/py3k-cdecimal/Modules/_threadmodule.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_threadmodule.c (original) +++ python/branches/py3k-cdecimal/Modules/_threadmodule.c Fri Mar 4 18:50:17 2011 @@ -53,8 +53,9 @@ _PyTime_timeval curtime; _PyTime_timeval endtime; + + _PyTime_gettimeofday(&endtime); if (microseconds > 0) { - _PyTime_gettimeofday(&endtime); endtime.tv_sec += microseconds / (1000 * 1000); endtime.tv_usec += microseconds % (1000 * 1000); } @@ -1307,7 +1308,9 @@ /* Add a symbolic constant */ d = PyModule_GetDict(m); - ThreadError = PyErr_NewException("_thread.error", NULL, NULL); + ThreadError = PyExc_RuntimeError; + Py_INCREF(ThreadError); + PyDict_SetItemString(d, "error", ThreadError); Locktype.tp_doc = lock_doc; Py_INCREF(&Locktype); Modified: python/branches/py3k-cdecimal/Modules/_tkinter.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/_tkinter.c (original) +++ python/branches/py3k-cdecimal/Modules/_tkinter.c Fri Mar 4 18:50:17 2011 @@ -2005,7 +2005,7 @@ PythonCmd(ClientData clientData, Tcl_Interp *interp, int argc, char *argv[]) { PythonCmd_ClientData *data = (PythonCmd_ClientData *)clientData; - PyObject *self, *func, *arg, *res; + PyObject *func, *arg, *res; int i, rv; Tcl_Obj *obj_res; @@ -2014,7 +2014,6 @@ /* TBD: no error checking here since we know, via the * Tkapp_CreateCommand() that the client data is a two-tuple */ - self = data->self; func = data->func; /* Create argument list (argv1, ..., argvN) */ Modified: python/branches/py3k-cdecimal/Modules/arraymodule.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/arraymodule.c (original) +++ python/branches/py3k-cdecimal/Modules/arraymodule.c Fri Mar 4 18:50:17 2011 @@ -876,7 +876,6 @@ if (Py_SIZE(self) > 0) { if (n < 0) n = 0; - items = self->ob_item; if ((self->ob_descr->itemsize != 0) && (Py_SIZE(self) > PY_SSIZE_T_MAX / self->ob_descr->itemsize)) { return PyErr_NoMemory(); @@ -2405,7 +2404,9 @@ || PyByteArray_Check(initial) || PyBytes_Check(initial) || PyTuple_Check(initial) - || ((c=='u') && PyUnicode_Check(initial)))) { + || ((c=='u') && PyUnicode_Check(initial)) + || (array_Check(initial) + && c == ((arrayobject*)initial)->ob_descr->typecode))) { it = PyObject_GetIter(initial); if (it == NULL) return NULL; @@ -2421,17 +2422,20 @@ PyObject *a; Py_ssize_t len; - if (initial == NULL || !(PyList_Check(initial) - || PyTuple_Check(initial))) + if (initial == NULL) len = 0; + else if (PyList_Check(initial)) + len = PyList_GET_SIZE(initial); + else if (PyTuple_Check(initial) || array_Check(initial)) + len = Py_SIZE(initial); else - len = PySequence_Size(initial); + len = 0; a = newarrayobject(type, len, descr); if (a == NULL) return NULL; - if (len > 0) { + if (len > 0 && !array_Check(initial)) { Py_ssize_t i; for (i = 0; i < len; i++) { PyObject *v = @@ -2482,6 +2486,11 @@ self->allocated = Py_SIZE(self); } } + else if (initial != NULL && array_Check(initial)) { + arrayobject *self = (arrayobject *)a; + arrayobject *other = (arrayobject *)initial; + memcpy(self->ob_item, other->ob_item, len * other->ob_descr->itemsize); + } if (it != NULL) { if (array_iter_extend((arrayobject *)a, it) == -1) { Py_DECREF(it); Modified: python/branches/py3k-cdecimal/Modules/audioop.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/audioop.c (original) +++ python/branches/py3k-cdecimal/Modules/audioop.c Fri Mar 4 18:50:17 2011 @@ -513,7 +513,6 @@ best_result = result; best_j = 0; - j = 0; for ( j=1; j<=len1-len2; j++) { aj_m1 = (double)cp1[j-1]; @@ -599,7 +598,6 @@ best_result = result; best_j = 0; - j = 0; for ( j=1; j<=len1-len2; j++) { aj_m1 = (double)cp1[j-1]; @@ -1433,7 +1431,6 @@ if ( state == Py_None ) { /* First time, it seems. Set defaults */ valpred = 0; - step = 7; index = 0; } else if ( !PyArg_ParseTuple(state, "ii", &valpred, &index) ) return 0; @@ -1534,7 +1531,6 @@ if ( state == Py_None ) { /* First time, it seems. Set defaults */ valpred = 0; - step = 7; index = 0; } else if ( !PyArg_ParseTuple(state, "ii", &valpred, &index) ) return 0; Modified: python/branches/py3k-cdecimal/Modules/cjkcodecs/_codecs_iso2022.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/cjkcodecs/_codecs_iso2022.c (original) +++ python/branches/py3k-cdecimal/Modules/cjkcodecs/_codecs_iso2022.c Fri Mar 4 18:50:17 2011 @@ -123,7 +123,7 @@ CODEC_INIT(iso2022) { - const struct iso2022_designation *desig = CONFIG_DESIGNATIONS; + const struct iso2022_designation *desig; for (desig = CONFIG_DESIGNATIONS; desig->mark; desig++) if (desig->initializer != NULL && desig->initializer() != 0) return -1; Modified: python/branches/py3k-cdecimal/Modules/cjkcodecs/multibytecodec.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/cjkcodecs/multibytecodec.c (original) +++ python/branches/py3k-cdecimal/Modules/cjkcodecs/multibytecodec.c Fri Mar 4 18:50:17 2011 @@ -483,6 +483,7 @@ return PyBytes_FromStringAndSize(NULL, 0); buf.excobj = NULL; + buf.outobj = NULL; buf.inbuf = buf.inbuf_top = *data; buf.inbuf_end = buf.inbuf_top + datalen; Deleted: python/branches/py3k-cdecimal/Modules/cryptmodule.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/cryptmodule.c Fri Mar 4 18:50:17 2011 +++ (empty file) @@ -1,62 +0,0 @@ -/* cryptmodule.c - by Steve Majewski - */ - -#include "Python.h" - -#include - -#ifdef __VMS -#include -#endif - -/* Module crypt */ - - -static PyObject *crypt_crypt(PyObject *self, PyObject *args) -{ - char *word, *salt; -#ifndef __VMS - extern char * crypt(const char *, const char *); -#endif - - if (!PyArg_ParseTuple(args, "ss:crypt", &word, &salt)) { - return NULL; - } - /* On some platforms (AtheOS) crypt returns NULL for an invalid - salt. Return None in that case. XXX Maybe raise an exception? */ - return Py_BuildValue("s", crypt(word, salt)); - -} - -PyDoc_STRVAR(crypt_crypt__doc__, -"crypt(word, salt) -> string\n\ -word will usually be a user's password. salt is a 2-character string\n\ -which will be used to select one of 4096 variations of DES. The characters\n\ -in salt must be either \".\", \"/\", or an alphanumeric character. Returns\n\ -the hashed password as a string, which will be composed of characters from\n\ -the same alphabet as the salt."); - - -static PyMethodDef crypt_methods[] = { - {"crypt", crypt_crypt, METH_VARARGS, crypt_crypt__doc__}, - {NULL, NULL} /* sentinel */ -}; - - -static struct PyModuleDef cryptmodule = { - PyModuleDef_HEAD_INIT, - "crypt", - NULL, - -1, - crypt_methods, - NULL, - NULL, - NULL, - NULL -}; - -PyMODINIT_FUNC -PyInit_crypt(void) -{ - return PyModule_Create(&cryptmodule); -} Modified: python/branches/py3k-cdecimal/Modules/ld_so_aix.in ============================================================================== --- python/branches/py3k-cdecimal/Modules/ld_so_aix.in (original) +++ python/branches/py3k-cdecimal/Modules/ld_so_aix.in Fri Mar 4 18:50:17 2011 @@ -131,7 +131,7 @@ shift done -if test "$objfile" = "libpython at VERSION@.so"; then +if test "$objfile" = "libpython at VERSION@@ABIFLAGS at .so"; then ldsocoremode="true" fi Modified: python/branches/py3k-cdecimal/Modules/main.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/main.c (original) +++ python/branches/py3k-cdecimal/Modules/main.c Fri Mar 4 18:50:17 2011 @@ -577,7 +577,6 @@ if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0') { wchar_t* buffer; size_t len = strlen(p); - size_t r; buffer = malloc(len * sizeof(wchar_t)); if (buffer == NULL) { @@ -585,7 +584,7 @@ "not enough memory to copy PYTHONEXECUTABLE"); } - r = mbstowcs(buffer, p, len); + mbstowcs(buffer, p, len); Py_SetProgramName(buffer); /* buffer is now handed off - do not free */ } else { @@ -720,7 +719,6 @@ * trade off slower shutdown for less distraction in the memory * reports. -baw */ - _Py_ReleaseInternedStrings(); _Py_ReleaseInternedUnicodeStrings(); #endif /* __INSURE__ */ Modified: python/branches/py3k-cdecimal/Modules/mmapmodule.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/mmapmodule.c (original) +++ python/branches/py3k-cdecimal/Modules/mmapmodule.c Fri Mar 4 18:50:17 2011 @@ -90,7 +90,11 @@ char * data; size_t size; size_t pos; /* relative to offset */ - size_t offset; +#ifdef MS_WINDOWS + PY_LONG_LONG offset; +#else + off_t offset; +#endif int exports; #ifdef MS_WINDOWS @@ -433,7 +437,11 @@ PyErr_SetFromErrno(mmap_module_error); return NULL; } - return PyLong_FromSsize_t(buf.st_size); +#ifdef HAVE_LARGEFILE_SUPPORT + return PyLong_FromLongLong(buf.st_size); +#else + return PyLong_FromLong(buf.st_size); +#endif } #endif /* UNIX */ } @@ -467,17 +475,10 @@ CloseHandle(self->map_handle); self->map_handle = NULL; /* Move to the desired EOF position */ -#if SIZEOF_SIZE_T > 4 newSizeHigh = (DWORD)((self->offset + new_size) >> 32); newSizeLow = (DWORD)((self->offset + new_size) & 0xFFFFFFFF); off_hi = (DWORD)(self->offset >> 32); off_lo = (DWORD)(self->offset & 0xFFFFFFFF); -#else - newSizeHigh = 0; - newSizeLow = (DWORD)(self->offset + new_size); - off_hi = 0; - off_lo = (DWORD)self->offset; -#endif SetFilePointer(self->file_handle, newSizeLow, &newSizeHigh, FILE_BEGIN); /* Change the size of the file */ @@ -1051,6 +1052,12 @@ } #ifdef UNIX +#ifdef HAVE_LARGEFILE_SUPPORT +#define _Py_PARSE_OFF_T "L" +#else +#define _Py_PARSE_OFF_T "l" +#endif + static PyObject * new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict) { @@ -1058,8 +1065,9 @@ struct stat st; #endif mmap_object *m_obj; - PyObject *map_size_obj = NULL, *offset_obj = NULL; - Py_ssize_t map_size, offset; + PyObject *map_size_obj = NULL; + Py_ssize_t map_size; + off_t offset = 0; int fd, flags = MAP_SHARED, prot = PROT_WRITE | PROT_READ; int devzero = -1; int access = (int)ACCESS_DEFAULT; @@ -1067,16 +1075,18 @@ "flags", "prot", "access", "offset", NULL}; - if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iO|iiiO", keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iO|iii" _Py_PARSE_OFF_T, keywords, &fd, &map_size_obj, &flags, &prot, - &access, &offset_obj)) + &access, &offset)) return NULL; map_size = _GetMapSize(map_size_obj, "size"); if (map_size < 0) return NULL; - offset = _GetMapSize(offset_obj, "offset"); - if (offset < 0) + if (offset < 0) { + PyErr_SetString(PyExc_OverflowError, + "memory mapped offset must be positive"); return NULL; + } if ((access != (int)ACCESS_DEFAULT) && ((flags != MAP_SHARED) || (prot != (PROT_WRITE | PROT_READ)))) @@ -1116,8 +1126,19 @@ # endif if (fd != -1 && fstat(fd, &st) == 0 && S_ISREG(st.st_mode)) { if (map_size == 0) { - map_size = st.st_size; - } else if ((size_t)offset + (size_t)map_size > st.st_size) { + if (offset >= st.st_size) { + PyErr_SetString(PyExc_ValueError, + "mmap offset is greater than file size"); + return NULL; + } + off_t calc_size = st.st_size - offset; + map_size = calc_size; + if (map_size != calc_size) { + PyErr_SetString(PyExc_ValueError, + "mmap length is too large"); + return NULL; + } + } else if (offset + (size_t)map_size > st.st_size) { PyErr_SetString(PyExc_ValueError, "mmap length is greater than file size"); return NULL; @@ -1178,12 +1199,19 @@ #endif /* UNIX */ #ifdef MS_WINDOWS + +/* A note on sizes and offsets: while the actual map size must hold in a + Py_ssize_t, both the total file size and the start offset can be longer + than a Py_ssize_t, so we use PY_LONG_LONG which is always 64-bit. +*/ + static PyObject * new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict) { mmap_object *m_obj; - PyObject *map_size_obj = NULL, *offset_obj = NULL; - Py_ssize_t map_size, offset; + PyObject *map_size_obj = NULL; + Py_ssize_t map_size; + PY_LONG_LONG offset = 0, size; DWORD off_hi; /* upper 32 bits of offset */ DWORD off_lo; /* lower 32 bits of offset */ DWORD size_hi; /* upper 32 bits of size */ @@ -1198,9 +1226,9 @@ "tagname", "access", "offset", NULL }; - if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iO|ziO", keywords, + if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iO|ziL", keywords, &fileno, &map_size_obj, - &tagname, &access, &offset_obj)) { + &tagname, &access, &offset)) { return NULL; } @@ -1225,9 +1253,11 @@ map_size = _GetMapSize(map_size_obj, "size"); if (map_size < 0) return NULL; - offset = _GetMapSize(offset_obj, "offset"); - if (offset < 0) + if (offset < 0) { + PyErr_SetString(PyExc_OverflowError, + "memory mapped offset must be positive"); return NULL; + } /* assume -1 and 0 both mean invalid filedescriptor to 'anonymously' map memory. @@ -1291,21 +1321,26 @@ return PyErr_SetFromWindowsErr(dwErr); } -#if SIZEOF_SIZE_T > 4 - m_obj->size = (((size_t)high)<<32) + low; -#else - if (high) - /* File is too large to map completely */ - m_obj->size = (size_t)-1; + size = (((PY_LONG_LONG) high) << 32) + low; + if (offset >= size) { + PyErr_SetString(PyExc_ValueError, + "mmap offset is greater than file size"); + Py_DECREF(m_obj); + return NULL; + } + if (offset - size > PY_SSIZE_T_MAX) + /* Map area too large to fit in memory */ + m_obj->size = (Py_ssize_t) -1; else - m_obj->size = low; -#endif + m_obj->size = (Py_ssize_t) (size - offset); } else { m_obj->size = map_size; + size = offset + map_size; } } else { m_obj->size = map_size; + size = offset + map_size; } /* set the initial position */ @@ -1326,22 +1361,10 @@ m_obj->tagname = NULL; m_obj->access = (access_mode)access; - /* DWORD is a 4-byte int. If we're on a box where size_t consumes - * more than 4 bytes, we need to break it apart. Else (size_t - * consumes 4 bytes), C doesn't define what happens if we shift - * right by 32, so we need different code. - */ -#if SIZEOF_SIZE_T > 4 - size_hi = (DWORD)((offset + m_obj->size) >> 32); - size_lo = (DWORD)((offset + m_obj->size) & 0xFFFFFFFF); + size_hi = (DWORD)(size >> 32); + size_lo = (DWORD)(size & 0xFFFFFFFF); off_hi = (DWORD)(offset >> 32); off_lo = (DWORD)(offset & 0xFFFFFFFF); -#else - size_hi = 0; - size_lo = (DWORD)(offset + m_obj->size); - off_hi = 0; - off_lo = (DWORD)offset; -#endif /* For files, it would be sufficient to pass 0 as size. For anonymous maps, we have to pass the size explicitly. */ m_obj->map_handle = CreateFileMapping(m_obj->file_handle, Modified: python/branches/py3k-cdecimal/Modules/posixmodule.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/posixmodule.c (original) +++ python/branches/py3k-cdecimal/Modules/posixmodule.c Fri Mar 4 18:50:17 2011 @@ -95,6 +95,20 @@ #include #endif +#ifdef HAVE_SYS_SENDFILE_H +#include +#endif + +#if defined(__FreeBSD__) || defined(__DragonFly__) || defined(__APPLE__) +#ifdef HAVE_SYS_SOCKET_H +#include +#endif + +#ifdef HAVE_SYS_UIO_H +#include +#endif +#endif + /* Various compilers have only certain posix functions */ /* XXX Gosh I wish these were all moved into pyconfig.h */ #if defined(PYCC_VACPP) && defined(PYOS_OS2) @@ -121,7 +135,7 @@ #ifdef _MSC_VER /* Microsoft compiler */ #define HAVE_GETCWD 1 #define HAVE_GETPPID 1 -#define HAVE_GETLOGIN 1 +#define HAVE_GETLOGIN 1 #define HAVE_SPAWNV 1 #define HAVE_EXECV 1 #define HAVE_PIPE 1 @@ -326,6 +340,8 @@ /* choose the appropriate stat and fstat functions and return structs */ #undef STAT +#undef FSTAT +#undef STRUCT_STAT #if defined(MS_WIN64) || defined(MS_WINDOWS) # define STAT win32_stat # define FSTAT win32_fstat @@ -347,6 +363,19 @@ #endif #endif +static int +_parse_off_t(PyObject* arg, void* addr) +{ +#if !defined(HAVE_LARGEFILE_SUPPORT) + *((off_t*)addr) = PyLong_AsLong(arg); +#else + *((off_t*)addr) = PyLong_AsLongLong(arg); +#endif + if (PyErr_Occurred()) + return 0; + return 1; +} + #if defined _MSC_VER && _MSC_VER >= 1400 /* Microsoft CRT in VS2005 and higher will verify that a filehandle is * valid and throw an assertion if it isn't. @@ -1281,7 +1310,7 @@ The _w represent Unicode equivalents of the aformentioned ANSI functions. */ -static int +static int win32_lstat(const char* path, struct win32_stat *result) { return win32_xstat(path, result, FALSE); @@ -1299,7 +1328,7 @@ return win32_xstat(path, result, TRUE); } -static int +static int win32_stat_w(const wchar_t* path, struct win32_stat *result) { return win32_xstat_w(path, result, TRUE); @@ -2337,7 +2366,7 @@ if (PyArg_ParseTuple(args, "|U:listdir", &po)) { WIN32_FIND_DATAW wFileData; Py_UNICODE *wnamebuf, *po_wchars; - + if (po == NULL) { /* Default arg: "." */ po_wchars = L"."; len = 1; @@ -2648,6 +2677,76 @@ #endif /* which OS */ } /* end of posix_listdir */ +#ifdef HAVE_FDOPENDIR +PyDoc_STRVAR(posix_fdlistdir__doc__, +"fdlistdir(fd) -> list_of_strings\n\n\ +Like listdir(), but uses a file descriptor instead.\n\ +After succesful execution of this function, fd will be closed."); + +static PyObject * +posix_fdlistdir(PyObject *self, PyObject *args) +{ + PyObject *d, *v; + DIR *dirp; + struct dirent *ep; + int fd; + + errno = 0; + if (!PyArg_ParseTuple(args, "i:fdlistdir", &fd)) + return NULL; + Py_BEGIN_ALLOW_THREADS + dirp = fdopendir(fd); + Py_END_ALLOW_THREADS + if (dirp == NULL) { + close(fd); + return posix_error(); + } + if ((d = PyList_New(0)) == NULL) { + Py_BEGIN_ALLOW_THREADS + closedir(dirp); + Py_END_ALLOW_THREADS + return NULL; + } + for (;;) { + errno = 0; + Py_BEGIN_ALLOW_THREADS + ep = readdir(dirp); + Py_END_ALLOW_THREADS + if (ep == NULL) { + if (errno == 0) { + break; + } else { + Py_BEGIN_ALLOW_THREADS + closedir(dirp); + Py_END_ALLOW_THREADS + Py_DECREF(d); + return posix_error(); + } + } + if (ep->d_name[0] == '.' && + (NAMLEN(ep) == 1 || + (ep->d_name[1] == '.' && NAMLEN(ep) == 2))) + continue; + v = PyUnicode_DecodeFSDefaultAndSize(ep->d_name, NAMLEN(ep)); + if (v == NULL) { + Py_CLEAR(d); + break; + } + if (PyList_Append(d, v) != 0) { + Py_DECREF(v); + Py_CLEAR(d); + break; + } + Py_DECREF(v); + } + Py_BEGIN_ALLOW_THREADS + closedir(dirp); + Py_END_ALLOW_THREADS + + return d; +} +#endif + #ifdef MS_WINDOWS /* A helper function for abspath on win32 */ static PyObject * @@ -2739,7 +2838,7 @@ int result_length; PyObject *result; wchar_t *path; - + if (!PyArg_ParseTuple(args, "u|:_getfinalpathname", &path)) { return NULL; } @@ -2760,7 +2859,7 @@ /* FILE_FLAG_BACKUP_SEMANTICS is required to open a directory */ FILE_FLAG_BACKUP_SEMANTICS, NULL); - + if(hFile == INVALID_HANDLE_VALUE) { return win32_error_unicode("GetFinalPathNamyByHandle", path); return PyErr_Format(PyExc_RuntimeError, @@ -2928,6 +3027,52 @@ } #endif /* HAVE_NICE */ + +#ifdef HAVE_GETPRIORITY +PyDoc_STRVAR(posix_getpriority__doc__, +"getpriority(which, who) -> current_priority\n\n\ +Get program scheduling priority."); + +static PyObject * +posix_getpriority(PyObject *self, PyObject *args) +{ + int which, who, retval; + + if (!PyArg_ParseTuple(args, "ii", &which, &who)) + return NULL; + errno = 0; + Py_BEGIN_ALLOW_THREADS + retval = getpriority(which, who); + Py_END_ALLOW_THREADS + if (errno != 0) + return posix_error(); + return PyLong_FromLong((long)retval); +} +#endif /* HAVE_GETPRIORITY */ + + +#ifdef HAVE_SETPRIORITY +PyDoc_STRVAR(posix_setpriority__doc__, +"setpriority(which, who, prio) -> None\n\n\ +Set program scheduling priority."); + +static PyObject * +posix_setpriority(PyObject *self, PyObject *args) +{ + int which, who, prio, retval; + + if (!PyArg_ParseTuple(args, "iii", &which, &who, &prio)) + return NULL; + Py_BEGIN_ALLOW_THREADS + retval = setpriority(which, who, prio); + Py_END_ALLOW_THREADS + if (retval == -1) + return posix_error(); + Py_RETURN_NONE; +} +#endif /* HAVE_SETPRIORITY */ + + PyDoc_STRVAR(posix_rename__doc__, "rename(old, new)\n\n\ Rename a file or directory."); @@ -3070,7 +3215,7 @@ if (GetFileAttributesExW(lpFileName, GetFileExInfoStandard, &info)) { is_directory = info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY; - + /* Get WIN32_FIND_DATA structure for the path to determine if it is a symlink */ if(is_directory && @@ -4260,7 +4405,7 @@ #endif gid_t grouplist[MAX_GROUPS]; - /* On MacOSX getgroups(2) can return more than MAX_GROUPS results + /* On MacOSX getgroups(2) can return more than MAX_GROUPS results * This is a helper variable to store the intermediate result when * that happens. * @@ -4476,15 +4621,15 @@ posix_getlogin(PyObject *self, PyObject *noargs) { PyObject *result = NULL; -#ifdef MS_WINDOWS +#ifdef MS_WINDOWS wchar_t user_name[UNLEN + 1]; DWORD num_chars = sizeof(user_name)/sizeof(user_name[0]); if (GetUserNameW(user_name, &num_chars)) { /* num_chars is the number of unicode chars plus null terminator */ result = PyUnicode_FromWideChar(user_name, num_chars - 1); - } - else + } + else result = PyErr_SetFromWindowsErr(GetLastError()); #else char *name; @@ -5168,12 +5313,12 @@ FILE_FLAG_OPEN_REPARSE_POINT|FILE_FLAG_BACKUP_SEMANTICS, 0); Py_END_ALLOW_THREADS - + if (reparse_point_handle==INVALID_HANDLE_VALUE) { return win32_error_unicode("readlink", path); } - + Py_BEGIN_ALLOW_THREADS /* New call DeviceIoControl to read the reparse point */ io_result = DeviceIoControl( @@ -5244,7 +5389,7 @@ int target_is_directory = 0; DWORD res; WIN32_FILE_ATTRIBUTE_DATA src_info; - + if (!check_CreateSymbolicLinkW()) { /* raise NotImplementedError */ @@ -5263,7 +5408,7 @@ Py_DECREF(src); return NULL; } - + /* if src is a directory, ensure target_is_directory==1 */ if( GetFileAttributesExW( @@ -5286,7 +5431,7 @@ { return win32_error_unicode("symlink", PyUnicode_AsUnicode(src)); } - + Py_INCREF(Py_None); return Py_None; } @@ -5626,8 +5771,7 @@ #if !defined(HAVE_LARGEFILE_SUPPORT) pos = PyLong_AsLong(posobj); #else - pos = PyLong_Check(posobj) ? - PyLong_AsLongLong(posobj) : PyLong_AsLong(posobj); + pos = PyLong_AsLongLong(posobj); #endif if (PyErr_Occurred()) return NULL; @@ -5721,6 +5865,196 @@ return PyLong_FromSsize_t(size); } +#ifdef HAVE_SENDFILE +#if defined(__FreeBSD__) || defined(__DragonFly__) || defined(__APPLE__) +static Py_ssize_t +iov_setup(struct iovec **iov, Py_buffer **buf, PyObject *seq, int cnt, int type) +{ + int i, j; + Py_ssize_t blen, total = 0; + + *iov = PyMem_New(struct iovec, cnt); + if (*iov == NULL) { + PyErr_NoMemory(); + return total; + } + + *buf = PyMem_New(Py_buffer, cnt); + if (*buf == NULL) { + PyMem_Del(*iov); + PyErr_NoMemory(); + return total; + } + + for (i = 0; i < cnt; i++) { + if (PyObject_GetBuffer(PySequence_GetItem(seq, i), + &(*buf)[i], type) == -1) { + PyMem_Del(*iov); + for (j = 0; j < i; j++) { + PyBuffer_Release(&(*buf)[j]); + } + PyMem_Del(*buf); + total = 0; + return total; + } + (*iov)[i].iov_base = (*buf)[i].buf; + blen = (*buf)[i].len; + (*iov)[i].iov_len = blen; + total += blen; + } + return total; +} + +static void +iov_cleanup(struct iovec *iov, Py_buffer *buf, int cnt) +{ + int i; + PyMem_Del(iov); + for (i = 0; i < cnt; i++) { + PyBuffer_Release(&buf[i]); + } + PyMem_Del(buf); +} +#endif + +PyDoc_STRVAR(posix_sendfile__doc__, +"sendfile(out, in, offset, nbytes) -> byteswritten\n\ +sendfile(out, in, offset, nbytes, headers=None, trailers=None, flags=0)\n\ + -> byteswritten\n\ +Copy nbytes bytes from file descriptor in to file descriptor out."); + +static PyObject * +posix_sendfile(PyObject *self, PyObject *args, PyObject *kwdict) +{ + int in, out; + Py_ssize_t ret; + off_t offset; + +#if defined(__FreeBSD__) || defined(__DragonFly__) || defined(__APPLE__) +#ifndef __APPLE__ + Py_ssize_t len; +#endif + PyObject *headers = NULL, *trailers = NULL; + Py_buffer *hbuf, *tbuf; + off_t sbytes; + struct sf_hdtr sf; + int flags = 0; + sf.headers = NULL; + sf.trailers = NULL; + static char *keywords[] = {"out", "in", + "offset", "count", + "headers", "trailers", "flags", NULL}; + +#ifdef __APPLE__ + if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iiO&O&|OOi:sendfile", + keywords, &out, &in, _parse_off_t, &offset, _parse_off_t, &sbytes, +#else + if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iiO&n|OOi:sendfile", + keywords, &out, &in, _parse_off_t, &offset, &len, +#endif + &headers, &trailers, &flags)) + return NULL; + if (headers != NULL) { + if (!PySequence_Check(headers)) { + PyErr_SetString(PyExc_TypeError, + "sendfile() headers must be a sequence or None"); + return NULL; + } else { + Py_ssize_t i = 0; /* Avoid uninitialized warning */ + sf.hdr_cnt = PySequence_Size(headers); + if (sf.hdr_cnt > 0 && + !(i = iov_setup(&(sf.headers), &hbuf, + headers, sf.hdr_cnt, PyBUF_SIMPLE))) + return NULL; +#ifdef __APPLE__ + sbytes += i; +#endif + } + } + if (trailers != NULL) { + if (!PySequence_Check(trailers)) { + PyErr_SetString(PyExc_TypeError, + "sendfile() trailers must be a sequence or None"); + return NULL; + } else { + Py_ssize_t i = 0; /* Avoid uninitialized warning */ + sf.trl_cnt = PySequence_Size(trailers); + if (sf.trl_cnt > 0 && + !(i = iov_setup(&(sf.trailers), &tbuf, + trailers, sf.trl_cnt, PyBUF_SIMPLE))) + return NULL; +#ifdef __APPLE__ + sbytes += i; +#endif + } + } + + Py_BEGIN_ALLOW_THREADS +#ifdef __APPLE__ + ret = sendfile(in, out, offset, &sbytes, &sf, flags); +#else + ret = sendfile(in, out, offset, len, &sf, &sbytes, flags); +#endif + Py_END_ALLOW_THREADS + + if (sf.headers != NULL) + iov_cleanup(sf.headers, hbuf, sf.hdr_cnt); + if (sf.trailers != NULL) + iov_cleanup(sf.trailers, tbuf, sf.trl_cnt); + + if (ret < 0) { + if ((errno == EAGAIN) || (errno == EBUSY)) { + if (sbytes != 0) { + // some data has been sent + goto done; + } + else { + // no data has been sent; upper application is supposed + // to retry on EAGAIN or EBUSY + return posix_error(); + } + } + return posix_error(); + } + goto done; + +done: + #if !defined(HAVE_LARGEFILE_SUPPORT) + return Py_BuildValue("l", sbytes); + #else + return Py_BuildValue("L", sbytes); + #endif + +#else + Py_ssize_t count; + PyObject *offobj; + static char *keywords[] = {"out", "in", + "offset", "count", NULL}; + if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iiOn:sendfile", + keywords, &out, &in, &offobj, &count)) + return NULL; +#ifdef linux + if (offobj == Py_None) { + Py_BEGIN_ALLOW_THREADS + ret = sendfile(out, in, NULL, count); + Py_END_ALLOW_THREADS + if (ret < 0) + return posix_error(); + Py_INCREF(Py_None); + return Py_BuildValue("nO", ret, Py_None); + } +#endif + if (!_parse_off_t(offobj, &offset)) + return NULL; + Py_BEGIN_ALLOW_THREADS + ret = sendfile(out, in, &offset, count); + Py_END_ALLOW_THREADS + if (ret < 0) + return posix_error(); + return Py_BuildValue("n", ret); +#endif +} +#endif PyDoc_STRVAR(posix_fstat__doc__, "fstat(fd) -> stat result\n\n\ @@ -7760,55 +8094,610 @@ } #endif -static PyMethodDef posix_methods[] = { - {"access", posix_access, METH_VARARGS, posix_access__doc__}, -#ifdef HAVE_TTYNAME - {"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__}, -#endif - {"chdir", posix_chdir, METH_VARARGS, posix_chdir__doc__}, -#ifdef HAVE_CHFLAGS - {"chflags", posix_chflags, METH_VARARGS, posix_chflags__doc__}, -#endif /* HAVE_CHFLAGS */ - {"chmod", posix_chmod, METH_VARARGS, posix_chmod__doc__}, -#ifdef HAVE_FCHMOD - {"fchmod", posix_fchmod, METH_VARARGS, posix_fchmod__doc__}, -#endif /* HAVE_FCHMOD */ -#ifdef HAVE_CHOWN - {"chown", posix_chown, METH_VARARGS, posix_chown__doc__}, -#endif /* HAVE_CHOWN */ -#ifdef HAVE_LCHMOD - {"lchmod", posix_lchmod, METH_VARARGS, posix_lchmod__doc__}, -#endif /* HAVE_LCHMOD */ -#ifdef HAVE_FCHOWN - {"fchown", posix_fchown, METH_VARARGS, posix_fchown__doc__}, -#endif /* HAVE_FCHOWN */ -#ifdef HAVE_LCHFLAGS - {"lchflags", posix_lchflags, METH_VARARGS, posix_lchflags__doc__}, -#endif /* HAVE_LCHFLAGS */ -#ifdef HAVE_LCHOWN - {"lchown", posix_lchown, METH_VARARGS, posix_lchown__doc__}, -#endif /* HAVE_LCHOWN */ -#ifdef HAVE_CHROOT - {"chroot", posix_chroot, METH_VARARGS, posix_chroot__doc__}, -#endif -#ifdef HAVE_CTERMID - {"ctermid", posix_ctermid, METH_NOARGS, posix_ctermid__doc__}, -#endif -#ifdef HAVE_GETCWD - {"getcwd", (PyCFunction)posix_getcwd_unicode, - METH_NOARGS, posix_getcwd__doc__}, - {"getcwdb", (PyCFunction)posix_getcwd_bytes, - METH_NOARGS, posix_getcwdb__doc__}, +/* Posix *at family of functions: + faccessat, fchmodat, fchownat, fstatat, futimesat, + linkat, mkdirat, mknodat, openat, readlinkat, renameat, symlinkat, + unlinkat, utimensat, mkfifoat */ + +#ifdef HAVE_FACCESSAT +PyDoc_STRVAR(posix_faccessat__doc__, +"faccessat(dirfd, path, mode, flags=0) -> True if granted, False otherwise\n\n\ +Like access() but if path is relative, it is taken as relative to dirfd.\n\ +flags is optional and can be constructed by ORing together zero or more\n\ +of these values: AT_SYMLINK_NOFOLLOW, AT_EACCESS.\n\ +If path is relative and dirfd is the special value AT_FDCWD, then path\n\ +is interpreted relative to the current working directory."); + +static PyObject * +posix_faccessat(PyObject *self, PyObject *args) +{ + PyObject *opath; + char *path; + int mode; + int res; + int dirfd, flags = 0; + if (!PyArg_ParseTuple(args, "iO&i|i:faccessat", + &dirfd, PyUnicode_FSConverter, &opath, &mode, &flags)) + return NULL; + path = PyBytes_AsString(opath); + Py_BEGIN_ALLOW_THREADS + res = faccessat(dirfd, path, mode, flags); + Py_END_ALLOW_THREADS + Py_DECREF(opath); + return PyBool_FromLong(res == 0); +} #endif -#ifdef HAVE_LINK - {"link", posix_link, METH_VARARGS, posix_link__doc__}, -#endif /* HAVE_LINK */ - {"listdir", posix_listdir, METH_VARARGS, posix_listdir__doc__}, - {"lstat", posix_lstat, METH_VARARGS, posix_lstat__doc__}, - {"mkdir", posix_mkdir, METH_VARARGS, posix_mkdir__doc__}, -#ifdef HAVE_NICE - {"nice", posix_nice, METH_VARARGS, posix_nice__doc__}, + +#ifdef HAVE_FCHMODAT +PyDoc_STRVAR(posix_fchmodat__doc__, +"fchmodat(dirfd, path, mode, flags=0)\n\n\ +Like chmod() but if path is relative, it is taken as relative to dirfd.\n\ +flags is optional and may be 0 or AT_SYMLINK_NOFOLLOW.\n\ +If path is relative and dirfd is the special value AT_FDCWD, then path\n\ +is interpreted relative to the current working directory."); + +static PyObject * +posix_fchmodat(PyObject *self, PyObject *args) +{ + int dirfd, mode, res; + int flags = 0; + PyObject *opath; + char *path; + + if (!PyArg_ParseTuple(args, "iO&i|i:fchmodat", + &dirfd, PyUnicode_FSConverter, &opath, &mode, &flags)) + return NULL; + + path = PyBytes_AsString(opath); + + Py_BEGIN_ALLOW_THREADS + res = fchmodat(dirfd, path, mode, flags); + Py_END_ALLOW_THREADS + Py_DECREF(opath); + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif /* HAVE_FCHMODAT */ + +#ifdef HAVE_FCHOWNAT +PyDoc_STRVAR(posix_fchownat__doc__, +"fchownat(dirfd, path, uid, gid, flags=0)\n\n\ +Like chown() but if path is relative, it is taken as relative to dirfd.\n\ +flags is optional and may be 0 or AT_SYMLINK_NOFOLLOW.\n\ +If path is relative and dirfd is the special value AT_FDCWD, then path\n\ +is interpreted relative to the current working directory."); + +static PyObject * +posix_fchownat(PyObject *self, PyObject *args) +{ + PyObject *opath; + int dirfd, res; + long uid, gid; + int flags = 0; + char *path; + + if (!PyArg_ParseTuple(args, "iO&ll|i:fchownat", + &dirfd, PyUnicode_FSConverter, &opath, &uid, &gid, &flags)) + return NULL; + + path = PyBytes_AsString(opath); + + Py_BEGIN_ALLOW_THREADS + res = fchownat(dirfd, path, (uid_t) uid, (gid_t) gid, flags); + Py_END_ALLOW_THREADS + Py_DECREF(opath); + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif /* HAVE_FCHOWNAT */ + +#ifdef HAVE_FSTATAT +PyDoc_STRVAR(posix_fstatat__doc__, +"fstatat(dirfd, path, flags=0) -> stat result\n\n\ +Like stat() but if path is relative, it is taken as relative to dirfd.\n\ +flags is optional and may be 0 or AT_SYMLINK_NOFOLLOW.\n\ +If path is relative and dirfd is the special value AT_FDCWD, then path\n\ +is interpreted relative to the current working directory."); + +static PyObject * +posix_fstatat(PyObject *self, PyObject *args) +{ + PyObject *opath; + char *path; + STRUCT_STAT st; + int dirfd, res, flags = 0; + + if (!PyArg_ParseTuple(args, "iO&|i:fstatat", + &dirfd, PyUnicode_FSConverter, &opath, &flags)) + return NULL; + path = PyBytes_AsString(opath); + + Py_BEGIN_ALLOW_THREADS + res = fstatat(dirfd, path, &st, flags); + Py_END_ALLOW_THREADS + Py_DECREF(opath); + if (res != 0) + return posix_error(); + + return _pystat_fromstructstat(&st); +} +#endif + +#ifdef HAVE_FUTIMESAT +PyDoc_STRVAR(posix_futimesat__doc__, +"futimesat(dirfd, path, (atime, mtime))\n\ +futimesat(dirfd, path, None)\n\n\ +Like utime() but if path is relative, it is taken as relative to dirfd.\n\ +If path is relative and dirfd is the special value AT_FDCWD, then path\n\ +is interpreted relative to the current working directory."); + +static PyObject * +posix_futimesat(PyObject *self, PyObject *args) +{ + PyObject *opath; + char *path; + int res, dirfd; + PyObject* arg; + + struct timeval buf[2]; + + if (!PyArg_ParseTuple(args, "iO&O:futimesat", + &dirfd, PyUnicode_FSConverter, &opath, &arg)) + return NULL; + path = PyBytes_AsString(opath); + if (arg == Py_None) { + /* optional time values not given */ + Py_BEGIN_ALLOW_THREADS + res = futimesat(dirfd, path, NULL); + Py_END_ALLOW_THREADS + } + else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) { + PyErr_SetString(PyExc_TypeError, + "futimesat() arg 3 must be a tuple (atime, mtime)"); + Py_DECREF(opath); + return NULL; + } + else { + if (extract_time(PyTuple_GET_ITEM(arg, 0), + &(buf[0].tv_sec), &(buf[0].tv_usec)) == -1) { + Py_DECREF(opath); + return NULL; + } + if (extract_time(PyTuple_GET_ITEM(arg, 1), + &(buf[1].tv_sec), &(buf[1].tv_usec)) == -1) { + Py_DECREF(opath); + return NULL; + } + Py_BEGIN_ALLOW_THREADS + res = futimesat(dirfd, path, buf); + Py_END_ALLOW_THREADS + } + Py_DECREF(opath); + if (res < 0) { + return posix_error(); + } + Py_RETURN_NONE; +} +#endif + +#ifdef HAVE_LINKAT +PyDoc_STRVAR(posix_linkat__doc__, +"linkat(srcfd, srcpath, dstfd, dstpath, flags=0)\n\n\ +Like link() but if srcpath is relative, it is taken as relative to srcfd\n\ +and if dstpath is relative, it is taken as relative to dstfd.\n\ +flags is optional and may be 0 or AT_SYMLINK_FOLLOW.\n\ +If srcpath is relative and srcfd is the special value AT_FDCWD, then\n\ +srcpath is interpreted relative to the current working directory. This\n\ +also applies for dstpath."); + +static PyObject * +posix_linkat(PyObject *self, PyObject *args) +{ + PyObject *osrc, *odst; + char *src, *dst; + int res, srcfd, dstfd; + int flags = 0; + + if (!PyArg_ParseTuple(args, "iO&iO&|i:linkat", + &srcfd, PyUnicode_FSConverter, &osrc, &dstfd, PyUnicode_FSConverter, &odst, &flags)) + return NULL; + src = PyBytes_AsString(osrc); + dst = PyBytes_AsString(odst); + Py_BEGIN_ALLOW_THREADS + res = linkat(srcfd, src, dstfd, dst, flags); + Py_END_ALLOW_THREADS + Py_DECREF(osrc); + Py_DECREF(odst); + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif /* HAVE_LINKAT */ + +#ifdef HAVE_MKDIRAT +PyDoc_STRVAR(posix_mkdirat__doc__, +"mkdirat(dirfd, path, mode=0o777)\n\n\ +Like mkdir() but if path is relative, it is taken as relative to dirfd.\n\ +If path is relative and dirfd is the special value AT_FDCWD, then path\n\ +is interpreted relative to the current working directory."); + +static PyObject * +posix_mkdirat(PyObject *self, PyObject *args) +{ + int res, dirfd; + PyObject *opath; + char *path; + int mode = 0777; + + if (!PyArg_ParseTuple(args, "iO&|i:mkdirat", + &dirfd, PyUnicode_FSConverter, &opath, &mode)) + return NULL; + path = PyBytes_AsString(opath); + Py_BEGIN_ALLOW_THREADS + res = mkdirat(dirfd, path, mode); + Py_END_ALLOW_THREADS + Py_DECREF(opath); + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif + +#if defined(HAVE_MKNODAT) && defined(HAVE_MAKEDEV) +PyDoc_STRVAR(posix_mknodat__doc__, +"mknodat(dirfd, path, mode=0o600, device=0)\n\n\ +Like mknod() but if path is relative, it is taken as relative to dirfd.\n\ +If path is relative and dirfd is the special value AT_FDCWD, then path\n\ +is interpreted relative to the current working directory."); + +static PyObject * +posix_mknodat(PyObject *self, PyObject *args) +{ + PyObject *opath; + char *filename; + int mode = 0600; + int device = 0; + int res, dirfd; + if (!PyArg_ParseTuple(args, "iO&|ii:mknodat", &dirfd, + PyUnicode_FSConverter, &opath, &mode, &device)) + return NULL; + filename = PyBytes_AS_STRING(opath); + Py_BEGIN_ALLOW_THREADS + res = mknodat(dirfd, filename, mode, device); + Py_END_ALLOW_THREADS + Py_DECREF(opath); + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif + +#ifdef HAVE_OPENAT +PyDoc_STRVAR(posix_openat__doc__, +"openat(dirfd, path, flag, mode=0o777) -> fd\n\n\ +Like open() but if path is relative, it is taken as relative to dirfd.\n\ +If path is relative and dirfd is the special value AT_FDCWD, then path\n\ +is interpreted relative to the current working directory."); + +static PyObject * +posix_openat(PyObject *self, PyObject *args) +{ + PyObject *ofile; + char *file; + int flag, dirfd, fd; + int mode = 0777; + + if (!PyArg_ParseTuple(args, "iO&i|i:openat", + &dirfd, PyUnicode_FSConverter, &ofile, + &flag, &mode)) + return NULL; + file = PyBytes_AsString(ofile); + Py_BEGIN_ALLOW_THREADS + fd = openat(dirfd, file, flag, mode); + Py_END_ALLOW_THREADS + Py_DECREF(ofile); + if (fd < 0) + return posix_error(); + return PyLong_FromLong((long)fd); +} +#endif + +#ifdef HAVE_READLINKAT +PyDoc_STRVAR(posix_readlinkat__doc__, +"readlinkat(dirfd, path) -> path\n\n\ +Like readlink() but if path is relative, it is taken as relative to dirfd.\n\ +If path is relative and dirfd is the special value AT_FDCWD, then path\n\ +is interpreted relative to the current working directory."); + +static PyObject * +posix_readlinkat(PyObject *self, PyObject *args) +{ + PyObject *v, *opath; + char buf[MAXPATHLEN]; + char *path; + int n, dirfd; + int arg_is_unicode = 0; + + if (!PyArg_ParseTuple(args, "iO&:readlinkat", + &dirfd, PyUnicode_FSConverter, &opath)) + return NULL; + path = PyBytes_AsString(opath); + v = PySequence_GetItem(args, 1); + if (v == NULL) { + Py_DECREF(opath); + return NULL; + } + + if (PyUnicode_Check(v)) { + arg_is_unicode = 1; + } + Py_DECREF(v); + + Py_BEGIN_ALLOW_THREADS + n = readlinkat(dirfd, path, buf, (int) sizeof buf); + Py_END_ALLOW_THREADS + Py_DECREF(opath); + if (n < 0) + return posix_error(); + + if (arg_is_unicode) + return PyUnicode_DecodeFSDefaultAndSize(buf, n); + else + return PyBytes_FromStringAndSize(buf, n); +} +#endif /* HAVE_READLINKAT */ + +#ifdef HAVE_RENAMEAT +PyDoc_STRVAR(posix_renameat__doc__, +"renameat(olddirfd, oldpath, newdirfd, newpath)\n\n\ +Like rename() but if oldpath is relative, it is taken as relative to\n\ +olddirfd and if newpath is relative, it is taken as relative to newdirfd.\n\ +If oldpath is relative and olddirfd is the special value AT_FDCWD, then\n\ +oldpath is interpreted relative to the current working directory. This\n\ +also applies for newpath."); + +static PyObject * +posix_renameat(PyObject *self, PyObject *args) +{ + int res; + PyObject *opathold, *opathnew; + char *opath, *npath; + int oldfd, newfd; + + if (!PyArg_ParseTuple(args, "iO&iO&:renameat", + &oldfd, PyUnicode_FSConverter, &opathold, &newfd, PyUnicode_FSConverter, &opathnew)) + return NULL; + opath = PyBytes_AsString(opathold); + npath = PyBytes_AsString(opathnew); + Py_BEGIN_ALLOW_THREADS + res = renameat(oldfd, opath, newfd, npath); + Py_END_ALLOW_THREADS + Py_DECREF(opathold); + Py_DECREF(opathnew); + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif + +#if HAVE_SYMLINKAT +PyDoc_STRVAR(posix_symlinkat__doc__, +"symlinkat(src, dstfd, dst)\n\n\ +Like symlink() but if dst is relative, it is taken as relative to dstfd.\n\ +If dst is relative and dstfd is the special value AT_FDCWD, then dst\n\ +is interpreted relative to the current working directory."); + +static PyObject * +posix_symlinkat(PyObject *self, PyObject *args) +{ + int res, dstfd; + PyObject *osrc, *odst; + char *src, *dst; + + if (!PyArg_ParseTuple(args, "O&iO&:symlinkat", + PyUnicode_FSConverter, &osrc, &dstfd, PyUnicode_FSConverter, &odst)) + return NULL; + src = PyBytes_AsString(osrc); + dst = PyBytes_AsString(odst); + Py_BEGIN_ALLOW_THREADS + res = symlinkat(src, dstfd, dst); + Py_END_ALLOW_THREADS + Py_DECREF(osrc); + Py_DECREF(odst); + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif /* HAVE_SYMLINKAT */ + +#ifdef HAVE_UNLINKAT +PyDoc_STRVAR(posix_unlinkat__doc__, +"unlinkat(dirfd, path, flags=0)\n\n\ +Like unlink() but if path is relative, it is taken as relative to dirfd.\n\ +flags is optional and may be 0 or AT_REMOVEDIR. If AT_REMOVEDIR is\n\ +specified, unlinkat() behaves like rmdir().\n\ +If path is relative and dirfd is the special value AT_FDCWD, then path\n\ +is interpreted relative to the current working directory."); + +static PyObject * +posix_unlinkat(PyObject *self, PyObject *args) +{ + int dirfd, res, flags = 0; + PyObject *opath; + char *path; + + if (!PyArg_ParseTuple(args, "iO&|i:unlinkat", + &dirfd, PyUnicode_FSConverter, &opath, &flags)) + return NULL; + path = PyBytes_AsString(opath); + Py_BEGIN_ALLOW_THREADS + res = unlinkat(dirfd, path, flags); + Py_END_ALLOW_THREADS + Py_DECREF(opath); + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif + +#ifdef HAVE_UTIMENSAT +PyDoc_STRVAR(posix_utimensat__doc__, +"utimensat(dirfd, path, (atime_sec, atime_nsec),\n\ + (mtime_sec, mtime_nsec), flags)\n\ +utimensat(dirfd, path, None, None, flags)\n\n\ +Updates the timestamps of a file with nanosecond precision. If path is\n\ +relative, it is taken as relative to dirfd.\n\ +The second form sets atime and mtime to the current time.\n\ +flags is optional and may be 0 or AT_SYMLINK_NOFOLLOW.\n\ +If path is relative and dirfd is the special value AT_FDCWD, then path\n\ +is interpreted relative to the current working directory.\n\ +If *_nsec is specified as UTIME_NOW, the timestamp is updated to the\n\ +current time.\n\ +If *_nsec is specified as UTIME_OMIT, the timestamp is not updated."); + +static PyObject * +posix_utimensat(PyObject *self, PyObject *args) +{ + PyObject *opath; + char *path; + int res, dirfd, flags = 0; + PyObject *atime, *mtime; + + struct timespec buf[2]; + + if (!PyArg_ParseTuple(args, "iO&OO|i:utimensat", + &dirfd, PyUnicode_FSConverter, &opath, &atime, &mtime, &flags)) + return NULL; + path = PyBytes_AsString(opath); + if (atime == Py_None && mtime == Py_None) { + /* optional time values not given */ + Py_BEGIN_ALLOW_THREADS + res = utimensat(dirfd, path, NULL, flags); + Py_END_ALLOW_THREADS + } + else if (!PyTuple_Check(atime) || PyTuple_Size(atime) != 2) { + PyErr_SetString(PyExc_TypeError, + "utimensat() arg 3 must be a tuple (atime_sec, atime_nsec)"); + Py_DECREF(opath); + return NULL; + } + else if (!PyTuple_Check(mtime) || PyTuple_Size(mtime) != 2) { + PyErr_SetString(PyExc_TypeError, + "utimensat() arg 4 must be a tuple (mtime_sec, mtime_nsec)"); + Py_DECREF(opath); + return NULL; + } + else { + if (!PyArg_ParseTuple(atime, "ll:utimensat", + &(buf[0].tv_sec), &(buf[0].tv_nsec))) { + Py_DECREF(opath); + return NULL; + } + if (!PyArg_ParseTuple(mtime, "ll:utimensat", + &(buf[1].tv_sec), &(buf[1].tv_nsec))) { + Py_DECREF(opath); + return NULL; + } + Py_BEGIN_ALLOW_THREADS + res = utimensat(dirfd, path, buf, flags); + Py_END_ALLOW_THREADS + } + Py_DECREF(opath); + if (res < 0) { + return posix_error(); + } + Py_RETURN_NONE; +} +#endif + +#ifdef HAVE_MKFIFOAT +PyDoc_STRVAR(posix_mkfifoat__doc__, +"mkfifoat(dirfd, path, mode=0o666)\n\n\ +Like mkfifo() but if path is relative, it is taken as relative to dirfd.\n\ +If path is relative and dirfd is the special value AT_FDCWD, then path\n\ +is interpreted relative to the current working directory."); + +static PyObject * +posix_mkfifoat(PyObject *self, PyObject *args) +{ + PyObject *opath; + char *filename; + int mode = 0666; + int res, dirfd; + if (!PyArg_ParseTuple(args, "iO&|i:mkfifoat", + &dirfd, PyUnicode_FSConverter, &opath, &mode)) + return NULL; + filename = PyBytes_AS_STRING(opath); + Py_BEGIN_ALLOW_THREADS + res = mkfifoat(dirfd, filename, mode); + Py_END_ALLOW_THREADS + Py_DECREF(opath); + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif + +static PyMethodDef posix_methods[] = { + {"access", posix_access, METH_VARARGS, posix_access__doc__}, +#ifdef HAVE_TTYNAME + {"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__}, +#endif + {"chdir", posix_chdir, METH_VARARGS, posix_chdir__doc__}, +#ifdef HAVE_CHFLAGS + {"chflags", posix_chflags, METH_VARARGS, posix_chflags__doc__}, +#endif /* HAVE_CHFLAGS */ + {"chmod", posix_chmod, METH_VARARGS, posix_chmod__doc__}, +#ifdef HAVE_FCHMOD + {"fchmod", posix_fchmod, METH_VARARGS, posix_fchmod__doc__}, +#endif /* HAVE_FCHMOD */ +#ifdef HAVE_CHOWN + {"chown", posix_chown, METH_VARARGS, posix_chown__doc__}, +#endif /* HAVE_CHOWN */ +#ifdef HAVE_LCHMOD + {"lchmod", posix_lchmod, METH_VARARGS, posix_lchmod__doc__}, +#endif /* HAVE_LCHMOD */ +#ifdef HAVE_FCHOWN + {"fchown", posix_fchown, METH_VARARGS, posix_fchown__doc__}, +#endif /* HAVE_FCHOWN */ +#ifdef HAVE_LCHFLAGS + {"lchflags", posix_lchflags, METH_VARARGS, posix_lchflags__doc__}, +#endif /* HAVE_LCHFLAGS */ +#ifdef HAVE_LCHOWN + {"lchown", posix_lchown, METH_VARARGS, posix_lchown__doc__}, +#endif /* HAVE_LCHOWN */ +#ifdef HAVE_CHROOT + {"chroot", posix_chroot, METH_VARARGS, posix_chroot__doc__}, +#endif +#ifdef HAVE_CTERMID + {"ctermid", posix_ctermid, METH_NOARGS, posix_ctermid__doc__}, +#endif +#ifdef HAVE_GETCWD + {"getcwd", (PyCFunction)posix_getcwd_unicode, + METH_NOARGS, posix_getcwd__doc__}, + {"getcwdb", (PyCFunction)posix_getcwd_bytes, + METH_NOARGS, posix_getcwdb__doc__}, +#endif +#ifdef HAVE_LINK + {"link", posix_link, METH_VARARGS, posix_link__doc__}, +#endif /* HAVE_LINK */ + {"listdir", posix_listdir, METH_VARARGS, posix_listdir__doc__}, +#ifdef HAVE_FDOPENDIR + {"fdlistdir", posix_fdlistdir, METH_VARARGS, posix_fdlistdir__doc__}, +#endif + {"lstat", posix_lstat, METH_VARARGS, posix_lstat__doc__}, + {"mkdir", posix_mkdir, METH_VARARGS, posix_mkdir__doc__}, +#ifdef HAVE_NICE + {"nice", posix_nice, METH_VARARGS, posix_nice__doc__}, #endif /* HAVE_NICE */ +#ifdef HAVE_GETPRIORITY + {"getpriority", posix_getpriority, METH_VARARGS, posix_getpriority__doc__}, +#endif /* HAVE_GETPRIORITY */ +#ifdef HAVE_SETPRIORITY + {"setpriority", posix_setpriority, METH_VARARGS, posix_setpriority__doc__}, +#endif /* HAVE_SETPRIORITY */ #ifdef HAVE_READLINK {"readlink", posix_readlink, METH_VARARGS, posix_readlink__doc__}, #endif /* HAVE_READLINK */ @@ -7969,6 +8858,10 @@ {"lseek", posix_lseek, METH_VARARGS, posix_lseek__doc__}, {"read", posix_read, METH_VARARGS, posix_read__doc__}, {"write", posix_write, METH_VARARGS, posix_write__doc__}, +#ifdef HAVE_SENDFILE + {"sendfile", (PyCFunction)posix_sendfile, METH_VARARGS | METH_KEYWORDS, + posix_sendfile__doc__}, +#endif {"fstat", posix_fstat, METH_VARARGS, posix_fstat__doc__}, {"isatty", posix_isatty, METH_VARARGS, posix_isatty__doc__}, #ifdef HAVE_PIPE @@ -8076,6 +8969,52 @@ {"getresgid", posix_getresgid, METH_NOARGS, posix_getresgid__doc__}, #endif +/* posix *at family of functions */ +#ifdef HAVE_FACCESSAT + {"faccessat", posix_faccessat, METH_VARARGS, posix_faccessat__doc__}, +#endif +#ifdef HAVE_FCHMODAT + {"fchmodat", posix_fchmodat, METH_VARARGS, posix_fchmodat__doc__}, +#endif /* HAVE_FCHMODAT */ +#ifdef HAVE_FCHOWNAT + {"fchownat", posix_fchownat, METH_VARARGS, posix_fchownat__doc__}, +#endif /* HAVE_FCHOWNAT */ +#ifdef HAVE_FSTATAT + {"fstatat", posix_fstatat, METH_VARARGS, posix_fstatat__doc__}, +#endif +#ifdef HAVE_FUTIMESAT + {"futimesat", posix_futimesat, METH_VARARGS, posix_futimesat__doc__}, +#endif +#ifdef HAVE_LINKAT + {"linkat", posix_linkat, METH_VARARGS, posix_linkat__doc__}, +#endif /* HAVE_LINKAT */ +#ifdef HAVE_MKDIRAT + {"mkdirat", posix_mkdirat, METH_VARARGS, posix_mkdirat__doc__}, +#endif +#if defined(HAVE_MKNODAT) && defined(HAVE_MAKEDEV) + {"mknodat", posix_mknodat, METH_VARARGS, posix_mknodat__doc__}, +#endif +#ifdef HAVE_OPENAT + {"openat", posix_openat, METH_VARARGS, posix_openat__doc__}, +#endif +#ifdef HAVE_READLINKAT + {"readlinkat", posix_readlinkat, METH_VARARGS, posix_readlinkat__doc__}, +#endif /* HAVE_READLINKAT */ +#ifdef HAVE_RENAMEAT + {"renameat", posix_renameat, METH_VARARGS, posix_renameat__doc__}, +#endif +#if HAVE_SYMLINKAT + {"symlinkat", posix_symlinkat, METH_VARARGS, posix_symlinkat__doc__}, +#endif /* HAVE_SYMLINKAT */ +#ifdef HAVE_UNLINKAT + {"unlinkat", posix_unlinkat, METH_VARARGS, posix_unlinkat__doc__}, +#endif +#ifdef HAVE_UTIMENSAT + {"utimensat", posix_utimensat, METH_VARARGS, posix_utimensat__doc__}, +#endif +#ifdef HAVE_MKFIFOAT + {"mkfifoat", posix_mkfifoat, METH_VARARGS, posix_mkfifoat__doc__}, +#endif {NULL, NULL} /* Sentinel */ }; @@ -8252,6 +9191,38 @@ #ifdef O_EXLOCK if (ins(d, "O_EXLOCK", (long)O_EXLOCK)) return -1; #endif +#ifdef PRIO_PROCESS + if (ins(d, "PRIO_PROCESS", (long)PRIO_PROCESS)) return -1; +#endif +#ifdef PRIO_PGRP + if (ins(d, "PRIO_PGRP", (long)PRIO_PGRP)) return -1; +#endif +#ifdef PRIO_USER + if (ins(d, "PRIO_USER", (long)PRIO_USER)) return -1; +#endif +/* posix - constants for *at functions */ +#ifdef AT_SYMLINK_NOFOLLOW + if (ins(d, "AT_SYMLINK_NOFOLLOW", (long)AT_SYMLINK_NOFOLLOW)) return -1; +#endif +#ifdef AT_EACCESS + if (ins(d, "AT_EACCESS", (long)AT_EACCESS)) return -1; +#endif +#ifdef AT_FDCWD + if (ins(d, "AT_FDCWD", (long)AT_FDCWD)) return -1; +#endif +#ifdef AT_REMOVEDIR + if (ins(d, "AT_REMOVEDIR", (long)AT_REMOVEDIR)) return -1; +#endif +#ifdef AT_SYMLINK_FOLLOW + if (ins(d, "AT_SYMLINK_FOLLOW", (long)AT_SYMLINK_FOLLOW)) return -1; +#endif +#ifdef UTIME_NOW + if (ins(d, "UTIME_NOW", (long)UTIME_NOW)) return -1; +#endif +#ifdef UTIME_OMIT + if (ins(d, "UTIME_OMIT", (long)UTIME_OMIT)) return -1; +#endif + /* MS Windows */ #ifdef O_NOINHERIT @@ -8360,6 +9331,17 @@ if (ins(d, "ST_NOSUID", (long)ST_NOSUID)) return -1; #endif /* ST_NOSUID */ + /* FreeBSD sendfile() constants */ +#ifdef SF_NODISKIO + if (ins(d, "SF_NODISKIO", (long)SF_NODISKIO)) return -1; +#endif +#ifdef SF_MNOWAIT + if (ins(d, "SF_MNOWAIT", (long)SF_MNOWAIT)) return -1; +#endif +#ifdef SF_SYNC + if (ins(d, "SF_SYNC", (long)SF_SYNC)) return -1; +#endif + #ifdef HAVE_SPAWNV #if defined(PYOS_OS2) && defined(PYCC_GCC) if (ins(d, "P_WAIT", (long)P_WAIT)) return -1; Modified: python/branches/py3k-cdecimal/Modules/socketmodule.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/socketmodule.c (original) +++ python/branches/py3k-cdecimal/Modules/socketmodule.c Fri Mar 4 18:50:17 2011 @@ -3135,6 +3135,37 @@ \n\ Return the current host name."); +#ifdef HAVE_SETHOSTNAME +PyDoc_STRVAR(sethostname_doc, +"sethostname(name)\n\n\ +Sets the hostname to name."); + +static PyObject * +socket_sethostname(PyObject *self, PyObject *args) +{ + PyObject *hnobj; + Py_buffer buf; + int res, flag = 0; + + if (!PyArg_ParseTuple(args, "S:sethostname", &hnobj)) { + PyErr_Clear(); + if (!PyArg_ParseTuple(args, "O&:sethostname", + PyUnicode_FSConverter, &hnobj)) + return NULL; + flag = 1; + } + res = PyObject_GetBuffer(hnobj, &buf, PyBUF_SIMPLE); + if (!res) { + res = sethostname(buf.buf, buf.len); + PyBuffer_Release(&buf); + } + if (flag) + Py_DECREF(hnobj); + if (res) + return set_error(); + Py_RETURN_NONE; +} +#endif /* Python interface to gethostbyname(name). */ @@ -3407,7 +3438,7 @@ goto finally; af = sa->sa_family; ap = NULL; - al = 0; + /* al = 0; */ switch (af) { case AF_INET: ap = (char *)&((struct sockaddr_in *)sa)->sin_addr; @@ -4233,6 +4264,10 @@ METH_VARARGS, gethostbyaddr_doc}, {"gethostname", socket_gethostname, METH_NOARGS, gethostname_doc}, +#ifdef HAVE_SETHOSTNAME + {"sethostname", socket_sethostname, + METH_VARARGS, sethostname_doc}, +#endif {"getservbyname", socket_getservbyname, METH_VARARGS, getservbyname_doc}, {"getservbyport", socket_getservbyport, Modified: python/branches/py3k-cdecimal/Modules/xxlimited.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/xxlimited.c (original) +++ python/branches/py3k-cdecimal/Modules/xxlimited.c Fri Mar 4 18:50:17 2011 @@ -50,8 +50,14 @@ static PyObject * Xxo_demo(XxoObject *self, PyObject *args) { - if (!PyArg_ParseTuple(args, ":demo")) + PyObject *o = NULL; + if (!PyArg_ParseTuple(args, "|O:demo", &o)) return NULL; + /* Test availability of fast type checks */ + if (o != NULL && PyUnicode_Check(o)) { + Py_INCREF(o); + return o; + } Py_INCREF(Py_None); return Py_None; } @@ -95,6 +101,7 @@ } static PyType_Slot Xxo_Type_slots[] = { + {Py_tp_doc, "The Xxo type"}, {Py_tp_dealloc, Xxo_dealloc}, {Py_tp_getattro, Xxo_getattro}, {Py_tp_setattr, Xxo_setattr}, @@ -103,8 +110,7 @@ }; static PyType_Spec Xxo_Type_spec = { - "xxmodule.Xxo", - NULL, + "xxlimited.Xxo", sizeof(XxoObject), 0, Py_TPFLAGS_DEFAULT, @@ -172,7 +178,6 @@ "xxlimited.Str", 0, 0, - 0, Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, Str_Type_slots }; @@ -195,7 +200,6 @@ static PyType_Spec Null_Type_spec = { "xxlimited.Null", - NULL, /* doc */ 0, /* basicsize */ 0, /* itemsize */ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, @@ -224,7 +228,7 @@ static struct PyModuleDef xxmodule = { PyModuleDef_HEAD_INIT, - "xx", + "xxlimited", module_doc, -1, xx_methods, @@ -258,7 +262,7 @@ /* Add some symbolic constants to the module */ if (ErrorObject == NULL) { - ErrorObject = PyErr_NewException("xx.error", NULL, NULL); + ErrorObject = PyErr_NewException("xxlimited.error", NULL, NULL); if (ErrorObject == NULL) goto fail; } Modified: python/branches/py3k-cdecimal/Modules/zipimport.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/zipimport.c (original) +++ python/branches/py3k-cdecimal/Modules/zipimport.c Fri Mar 4 18:50:17 2011 @@ -725,6 +725,7 @@ long arc_offset; /* offset from beginning of file to start of zip-archive */ PyObject *pathobj; const char *charset; + int bootstrap; if (PyUnicode_GET_SIZE(archive_obj) > MAXPATHLEN) { PyErr_SetString(PyExc_OverflowError, @@ -801,13 +802,30 @@ *p = 0; /* Add terminating null byte */ header_offset += header_size; + bootstrap = 0; if (flags & 0x0800) charset = "utf-8"; + else if (!PyThreadState_GET()->interp->codecs_initialized) { + /* During bootstrap, we may need to load the encodings + package from a ZIP file. But the cp437 encoding is implemented + in Python in the encodings package. + + Break out of this dependency by assuming that the path to + the encodings module is ASCII-only. */ + charset = "ascii"; + bootstrap = 1; + } else charset = "cp437"; nameobj = PyUnicode_Decode(name, name_size, charset, NULL); - if (nameobj == NULL) + if (nameobj == NULL) { + if (bootstrap) + PyErr_Format(PyExc_NotImplementedError, + "bootstrap issue: python%i%i.zip contains non-ASCII " + "filenames without the unicode flag", + PY_MAJOR_VERSION, PY_MINOR_VERSION); goto error; + } Py_UNICODE_strncpy(path + length + 1, PyUnicode_AS_UNICODE(nameobj), MAXPATHLEN - length - 1); pathobj = PyUnicode_FromUnicode(path, Py_UNICODE_strlen(path)); Modified: python/branches/py3k-cdecimal/Modules/zlibmodule.c ============================================================================== --- python/branches/py3k-cdecimal/Modules/zlibmodule.c (original) +++ python/branches/py3k-cdecimal/Modules/zlibmodule.c Fri Mar 4 18:50:17 2011 @@ -945,8 +945,18 @@ /* Releasing the GIL for very small buffers is inefficient and may lower performance */ if (pbuf.len > 1024*5) { + unsigned char *buf = pbuf.buf; + Py_ssize_t len = pbuf.len; + Py_BEGIN_ALLOW_THREADS - adler32val = adler32(adler32val, pbuf.buf, pbuf.len); + /* Avoid truncation of length for very large buffers. adler32() takes + length as an unsigned int, which may be narrower than Py_ssize_t. */ + while (len > (size_t) UINT_MAX) { + adler32val = adler32(adler32val, buf, UINT_MAX); + buf += (size_t) UINT_MAX; + len -= (size_t) UINT_MAX; + } + adler32val = adler32(adler32val, buf, len); Py_END_ALLOW_THREADS } else { adler32val = adler32(adler32val, pbuf.buf, pbuf.len); @@ -973,8 +983,18 @@ /* Releasing the GIL for very small buffers is inefficient and may lower performance */ if (pbuf.len > 1024*5) { + unsigned char *buf = pbuf.buf; + Py_ssize_t len = pbuf.len; + Py_BEGIN_ALLOW_THREADS - signed_val = crc32(crc32val, pbuf.buf, pbuf.len); + /* Avoid truncation of length for very large buffers. crc32() takes + length as an unsigned int, which may be narrower than Py_ssize_t. */ + while (len > (size_t) UINT_MAX) { + crc32val = crc32(crc32val, buf, UINT_MAX); + buf += (size_t) UINT_MAX; + len -= (size_t) UINT_MAX; + } + signed_val = crc32(crc32val, buf, len); Py_END_ALLOW_THREADS } else { signed_val = crc32(crc32val, pbuf.buf, pbuf.len); Modified: python/branches/py3k-cdecimal/Objects/bytearrayobject.c ============================================================================== --- python/branches/py3k-cdecimal/Objects/bytearrayobject.c (original) +++ python/branches/py3k-cdecimal/Objects/bytearrayobject.c Fri Mar 4 18:50:17 2011 @@ -1148,6 +1148,30 @@ return count_obj; } +PyDoc_STRVAR(clear__doc__, +"B.clear() -> None\n\ +\n\ +Remove all items from B."); + +static PyObject * +bytearray_clear(PyByteArrayObject *self) +{ + if (PyByteArray_Resize((PyObject *)self, 0) < 0) + return NULL; + Py_RETURN_NONE; +} + +PyDoc_STRVAR(copy__doc__, +"B.copy() -> bytearray\n\ +\n\ +Return a copy of B."); + +static PyObject * +bytearray_copy(PyByteArrayObject *self) +{ + return PyByteArray_FromStringAndSize(PyByteArray_AS_STRING((PyObject *)self), + PyByteArray_GET_SIZE(self)); +} PyDoc_STRVAR(index__doc__, "B.index(sub[, start[, end]]) -> int\n\ @@ -2285,8 +2309,8 @@ return NULL; if (n == 0) { - PyErr_SetString(PyExc_OverflowError, - "cannot pop an empty bytearray"); + PyErr_SetString(PyExc_IndexError, + "pop from empty bytearray"); return NULL; } if (where < 0) @@ -2439,7 +2463,7 @@ static PyObject * bytearray_rstrip(PyByteArrayObject *self, PyObject *args) { - Py_ssize_t left, right, mysize, argsize; + Py_ssize_t right, mysize, argsize; void *myptr, *argptr; PyObject *arg = Py_None; Py_buffer varg; @@ -2457,11 +2481,10 @@ } myptr = self->ob_bytes; mysize = Py_SIZE(self); - left = 0; right = rstrip_helper(myptr, mysize, argptr, argsize); if (arg != Py_None) PyBuffer_Release(&varg); - return PyByteArray_FromStringAndSize(self->ob_bytes + left, right - left); + return PyByteArray_FromStringAndSize(self->ob_bytes, right); } PyDoc_STRVAR(decode_doc, @@ -2731,6 +2754,8 @@ {"capitalize", (PyCFunction)stringlib_capitalize, METH_NOARGS, _Py_capitalize__doc__}, {"center", (PyCFunction)stringlib_center, METH_VARARGS, center__doc__}, + {"clear", (PyCFunction)bytearray_clear, METH_NOARGS, clear__doc__}, + {"copy", (PyCFunction)bytearray_copy, METH_NOARGS, copy__doc__}, {"count", (PyCFunction)bytearray_count, METH_VARARGS, count__doc__}, {"decode", (PyCFunction)bytearray_decode, METH_VARARGS | METH_KEYWORDS, decode_doc}, {"endswith", (PyCFunction)bytearray_endswith, METH_VARARGS, endswith__doc__}, Modified: python/branches/py3k-cdecimal/Objects/fileobject.c ============================================================================== --- python/branches/py3k-cdecimal/Objects/fileobject.c (original) +++ python/branches/py3k-cdecimal/Objects/fileobject.c Fri Mar 4 18:50:17 2011 @@ -297,8 +297,8 @@ *p++ = c; if (c == '\n') break; } - if ( c == EOF && skipnextlf ) - newlinetypes |= NEWLINE_CR; + /* if ( c == EOF && skipnextlf ) + newlinetypes |= NEWLINE_CR; */ FUNLOCKFILE(stream); *p = '\0'; if ( skipnextlf ) { Modified: python/branches/py3k-cdecimal/Objects/floatobject.c ============================================================================== --- python/branches/py3k-cdecimal/Objects/floatobject.c (original) +++ python/branches/py3k-cdecimal/Objects/floatobject.c Fri Mar 4 18:50:17 2011 @@ -197,7 +197,6 @@ Py_DECREF(s_buffer); return NULL; } - last = s + len; } else if (PyObject_AsCharBuffer(v, &s, &len)) { PyErr_SetString(PyExc_TypeError, @@ -2246,7 +2245,7 @@ /* Eighth byte */ *p = flo & 0xFF; - p += incr; + /* p += incr; */ /* Done */ return 0; Modified: python/branches/py3k-cdecimal/Objects/listobject.c ============================================================================== --- python/branches/py3k-cdecimal/Objects/listobject.c (original) +++ python/branches/py3k-cdecimal/Objects/listobject.c Fri Mar 4 18:50:17 2011 @@ -747,6 +747,19 @@ } static PyObject * +listclear(PyListObject *self) +{ + list_clear(self); + Py_RETURN_NONE; +} + +static PyObject * +listcopy(PyListObject *self) +{ + return list_slice(self, 0, Py_SIZE(self)); +} + +static PyObject * listappend(PyListObject *self, PyObject *v) { if (app1(self, v) == 0) @@ -1944,6 +1957,8 @@ if (keys[i] == NULL) { for (i=i-1 ; i>=0 ; i--) Py_DECREF(keys[i]); + if (keys != &ms.temparray[saved_ob_size+1]) + PyMem_FREE(keys); goto keyfunc_fail; } } @@ -2322,6 +2337,10 @@ "L.__reversed__() -- return a reverse iterator over the list"); PyDoc_STRVAR(sizeof_doc, "L.__sizeof__() -- size of L in memory, in bytes"); +PyDoc_STRVAR(clear_doc, +"L.clear() -> None -- remove all items from L"); +PyDoc_STRVAR(copy_doc, +"L.copy() -> list -- a shallow copy of L"); PyDoc_STRVAR(append_doc, "L.append(object) -- append object to end"); PyDoc_STRVAR(extend_doc, @@ -2350,9 +2369,11 @@ {"__getitem__", (PyCFunction)list_subscript, METH_O|METH_COEXIST, getitem_doc}, {"__reversed__",(PyCFunction)list_reversed, METH_NOARGS, reversed_doc}, {"__sizeof__", (PyCFunction)list_sizeof, METH_NOARGS, sizeof_doc}, + {"clear", (PyCFunction)listclear, METH_NOARGS, clear_doc}, + {"copy", (PyCFunction)listcopy, METH_NOARGS, copy_doc}, {"append", (PyCFunction)listappend, METH_O, append_doc}, {"insert", (PyCFunction)listinsert, METH_VARARGS, insert_doc}, - {"extend", (PyCFunction)listextend, METH_O, extend_doc}, + {"extend", (PyCFunction)listextend, METH_O, extend_doc}, {"pop", (PyCFunction)listpop, METH_VARARGS, pop_doc}, {"remove", (PyCFunction)listremove, METH_O, remove_doc}, {"index", (PyCFunction)listindex, METH_VARARGS, index_doc}, Modified: python/branches/py3k-cdecimal/Objects/memoryobject.c ============================================================================== --- python/branches/py3k-cdecimal/Objects/memoryobject.c (original) +++ python/branches/py3k-cdecimal/Objects/memoryobject.c Fri Mar 4 18:50:17 2011 @@ -52,9 +52,6 @@ { int res = 0; CHECK_RELEASED_INT(self); - /* XXX for whatever reason fixing the flags seems necessary */ - if (self->view.readonly) - flags &= ~PyBUF_WRITABLE; if (self->view.obj != NULL) res = PyObject_GetBuffer(self->view.obj, view, flags); if (view) @@ -78,6 +75,11 @@ { PyMemoryViewObject *mview; + if (info->buf == NULL) { + PyErr_SetString(PyExc_ValueError, + "cannot make memory view from a buffer with a NULL data pointer"); + return NULL; + } mview = (PyMemoryViewObject *) PyObject_GC_New(PyMemoryViewObject, &PyMemoryView_Type); if (mview == NULL) Modified: python/branches/py3k-cdecimal/Objects/moduleobject.c ============================================================================== --- python/branches/py3k-cdecimal/Objects/moduleobject.c (original) +++ python/branches/py3k-cdecimal/Objects/moduleobject.c Fri Mar 4 18:50:17 2011 @@ -27,36 +27,45 @@ PyObject * -PyModule_New(const char *name) +PyModule_NewObject(PyObject *name) { PyModuleObject *m; - PyObject *nameobj; m = PyObject_GC_New(PyModuleObject, &PyModule_Type); if (m == NULL) return NULL; m->md_def = NULL; m->md_state = NULL; - nameobj = PyUnicode_FromString(name); m->md_dict = PyDict_New(); - if (m->md_dict == NULL || nameobj == NULL) + if (m->md_dict == NULL) goto fail; - if (PyDict_SetItemString(m->md_dict, "__name__", nameobj) != 0) + if (PyDict_SetItemString(m->md_dict, "__name__", name) != 0) goto fail; if (PyDict_SetItemString(m->md_dict, "__doc__", Py_None) != 0) goto fail; if (PyDict_SetItemString(m->md_dict, "__package__", Py_None) != 0) goto fail; - Py_DECREF(nameobj); PyObject_GC_Track(m); return (PyObject *)m; fail: - Py_XDECREF(nameobj); Py_DECREF(m); return NULL; } PyObject * +PyModule_New(const char *name) +{ + PyObject *nameobj, *module; + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + module = PyModule_NewObject(nameobj); + Py_DECREF(nameobj); + return module; +} + + +PyObject * PyModule_Create2(struct PyModuleDef* module, int module_api_version) { PyObject *d, *v, *n; @@ -169,24 +178,35 @@ return d; } -const char * -PyModule_GetName(PyObject *m) +PyObject* +PyModule_GetNameObject(PyObject *m) { PyObject *d; - PyObject *nameobj; + PyObject *name; if (!PyModule_Check(m)) { PyErr_BadArgument(); return NULL; } d = ((PyModuleObject *)m)->md_dict; if (d == NULL || - (nameobj = PyDict_GetItemString(d, "__name__")) == NULL || - !PyUnicode_Check(nameobj)) + (name = PyDict_GetItemString(d, "__name__")) == NULL || + !PyUnicode_Check(name)) { PyErr_SetString(PyExc_SystemError, "nameless module"); return NULL; } - return _PyUnicode_AsString(nameobj); + Py_INCREF(name); + return name; +} + +const char * +PyModule_GetName(PyObject *m) +{ + PyObject *name = PyModule_GetNameObject(m); + if (name == NULL) + return NULL; + Py_DECREF(name); /* module dict has still a reference */ + return _PyUnicode_AsString(name); } PyObject* @@ -219,7 +239,7 @@ if (fileobj == NULL) return NULL; utf8 = _PyUnicode_AsString(fileobj); - Py_DECREF(fileobj); + Py_DECREF(fileobj); /* module dict has still a reference */ return utf8; } @@ -347,21 +367,25 @@ static PyObject * module_repr(PyModuleObject *m) { - const char *name; - PyObject *filename, *repr; + PyObject *name, *filename, *repr; - name = PyModule_GetName((PyObject *)m); + name = PyModule_GetNameObject((PyObject *)m); if (name == NULL) { PyErr_Clear(); - name = "?"; + name = PyUnicode_FromStringAndSize("?", 1); + if (name == NULL) + return NULL; } filename = PyModule_GetFilenameObject((PyObject *)m); if (filename == NULL) { PyErr_Clear(); - return PyUnicode_FromFormat("", name); + repr = PyUnicode_FromFormat("", name); + } + else { + repr = PyUnicode_FromFormat("", name, filename); + Py_DECREF(filename); } - repr = PyUnicode_FromFormat("", name, filename); - Py_DECREF(filename); + Py_DECREF(name); return repr; } Modified: python/branches/py3k-cdecimal/Objects/obmalloc.c ============================================================================== --- python/branches/py3k-cdecimal/Objects/obmalloc.c (original) +++ python/branches/py3k-cdecimal/Objects/obmalloc.c Fri Mar 4 18:50:17 2011 @@ -1775,7 +1775,6 @@ * will be living in full pools -- would be a shame to miss them. */ for (i = 0; i < maxarenas; ++i) { - uint poolsinarena; uint j; uptr base = arenas[i].address; @@ -1784,7 +1783,6 @@ continue; narenas += 1; - poolsinarena = arenas[i].ntotalpools; numfreepools += arenas[i].nfreepools; /* round up to pool alignment */ Modified: python/branches/py3k-cdecimal/Objects/rangeobject.c ============================================================================== --- python/branches/py3k-cdecimal/Objects/rangeobject.c (original) +++ python/branches/py3k-cdecimal/Objects/rangeobject.c Fri Mar 4 18:50:17 2011 @@ -230,18 +230,14 @@ return PyLong_AsSsize_t(r->length); } -/* range(...)[x] is necessary for: seq[:] = range(...) */ static PyObject * -compute_range_item(rangeobject *r, Py_ssize_t i) +compute_item(rangeobject *r, PyObject *i) { - PyObject *rem, *incr, *result; - - /* XXX(nnorwitz): optimize for short ints. */ - rem = PyLong_FromSsize_t(i); - if (!rem) - return NULL; - incr = PyNumber_Multiply(rem, r->step); - Py_DECREF(rem); + PyObject *incr, *result; + /* PyLong equivalent to: + * return r->start + (i * r->step) + */ + incr = PyNumber_Multiply(i, r->step); if (!incr) return NULL; result = PyNumber_Add(r->start, incr); @@ -250,22 +246,306 @@ } static PyObject * -range_item(rangeobject *r, Py_ssize_t i) +compute_range_item(rangeobject *r, PyObject *arg) { - /* XXX(nnorwitz): should we support range[x] where x > PY_SSIZE_T_MAX? */ - Py_ssize_t len = range_length(r); + int cmp_result; + PyObject *i, *result; + + PyObject *zero = PyLong_FromLong(0); + if (zero == NULL) + return NULL; - if (i < 0) - i += len; + /* PyLong equivalent to: + * if (arg < 0) { + * i = r->length + arg + * } else { + * i = arg + * } + */ + cmp_result = PyObject_RichCompareBool(arg, zero, Py_LT); + if (cmp_result == -1) { + Py_DECREF(zero); + return NULL; + } + if (cmp_result == 1) { + i = PyNumber_Add(r->length, arg); + if (!i) { + Py_DECREF(zero); + return NULL; + } + } else { + i = arg; + Py_INCREF(i); + } - if (i < 0 || i >= len) { - /* Also handles case where len < 0 due to (e.g) OverflowError */ - if (!PyErr_Occurred()) - PyErr_SetString(PyExc_IndexError, - "range object index out of range"); + /* PyLong equivalent to: + * if (i < 0 || i >= r->length) { + * + * } + */ + cmp_result = PyObject_RichCompareBool(i, zero, Py_LT); + Py_DECREF(zero); + if (cmp_result == 0) { + cmp_result = PyObject_RichCompareBool(i, r->length, Py_GE); + } + if (cmp_result == -1) { + Py_DECREF(i); + return NULL; + } + if (cmp_result == 1) { + Py_DECREF(i); + PyErr_SetString(PyExc_IndexError, + "range object index out of range"); return NULL; } - return compute_range_item(r, i); + + result = compute_item(r, i); + Py_DECREF(i); + return result; +} + +static PyObject * +range_item(rangeobject *r, Py_ssize_t i) +{ + PyObject *res, *arg = PyLong_FromLong(i); + if (!arg) { + return NULL; + } + res = compute_range_item(r, arg); + Py_DECREF(arg); + return res; +} + +/* Additional helpers, since the standard slice helpers + * all clip to PY_SSIZE_T_MAX + */ + +/* Replace _PyEval_SliceIndex */ +static PyObject * +compute_slice_element(PyObject *obj) +{ + PyObject *result = NULL; + if (obj != NULL) { + if (PyIndex_Check(obj)) { + result = PyNumber_Index(obj); + } + } + if (result == NULL) { + PyErr_SetString(PyExc_TypeError, + "slice indices must be integers or " + "None or have an __index__ method"); + } + return result; +} + +/* Replace PySlice_GetIndicesEx + * Result indicates whether or not the slice is empty + * (-1 = error, 0 = empty slice, 1 = slice contains elements) + */ +static int +compute_slice_indices(rangeobject *r, PySliceObject *slice, + PyObject **start, PyObject **stop, PyObject **step) +{ + int cmp_result, has_elements; + Py_ssize_t clamped_step = 0; + PyObject *zero = NULL, *one = NULL, *neg_one = NULL, *candidate = NULL; + PyObject *tmp_start = NULL, *tmp_stop = NULL, *tmp_step = NULL; + zero = PyLong_FromLong(0); + if (zero == NULL) goto Fail; + one = PyLong_FromLong(1); + if (one == NULL) goto Fail; + neg_one = PyLong_FromLong(-1); + if (neg_one == NULL) goto Fail; + + /* Calculate step value */ + if (slice->step == Py_None) { + clamped_step = 1; + tmp_step = one; + Py_INCREF(tmp_step); + } else { + if (!_PyEval_SliceIndex(slice->step, &clamped_step)) goto Fail; + if (clamped_step == 0) { + PyErr_SetString(PyExc_ValueError, + "slice step cannot be zero"); + goto Fail; + } + tmp_step = compute_slice_element(slice->step); + if (tmp_step == NULL) goto Fail; + } + + /* Calculate start value */ + if (slice->start == Py_None) { + if (clamped_step < 0) { + tmp_start = PyNumber_Subtract(r->length, one); + if (tmp_start == NULL) goto Fail; + } else { + tmp_start = zero; + Py_INCREF(tmp_start); + } + } else { + candidate = compute_slice_element(slice->start); + if (candidate == NULL) goto Fail; + cmp_result = PyObject_RichCompareBool(candidate, zero, Py_LT); + if (cmp_result == -1) goto Fail; + if (cmp_result) { + /* candidate < 0 */ + tmp_start = PyNumber_Add(r->length, candidate); + if (tmp_start == NULL) goto Fail; + Py_CLEAR(candidate); + } else { + /* candidate >= 0 */ + tmp_start = candidate; + candidate = NULL; + } + cmp_result = PyObject_RichCompareBool(tmp_start, zero, Py_LT); + if (cmp_result == -1) goto Fail; + if (cmp_result) { + /* tmp_start < 0 */ + Py_CLEAR(tmp_start); + if (clamped_step < 0) { + tmp_start = neg_one; + } else { + tmp_start = zero; + } + Py_INCREF(tmp_start); + } else { + /* tmp_start >= 0 */ + cmp_result = PyObject_RichCompareBool(tmp_start, r->length, Py_GE); + if (cmp_result == -1) goto Fail; + if (cmp_result) { + /* tmp_start >= r->length */ + Py_CLEAR(tmp_start); + if (clamped_step < 0) { + tmp_start = PyNumber_Subtract(r->length, one); + if (tmp_start == NULL) goto Fail; + } else { + tmp_start = r->length; + Py_INCREF(tmp_start); + } + } + } + } + + /* Calculate stop value */ + if (slice->stop == Py_None) { + if (clamped_step < 0) { + tmp_stop = neg_one; + } else { + tmp_stop = r->length; + } + Py_INCREF(tmp_stop); + } else { + candidate = compute_slice_element(slice->stop); + if (candidate == NULL) goto Fail; + cmp_result = PyObject_RichCompareBool(candidate, zero, Py_LT); + if (cmp_result == -1) goto Fail; + if (cmp_result) { + /* candidate < 0 */ + tmp_stop = PyNumber_Add(r->length, candidate); + if (tmp_stop == NULL) goto Fail; + Py_CLEAR(candidate); + } else { + /* candidate >= 0 */ + tmp_stop = candidate; + candidate = NULL; + } + cmp_result = PyObject_RichCompareBool(tmp_stop, zero, Py_LT); + if (cmp_result == -1) goto Fail; + if (cmp_result) { + /* tmp_stop < 0 */ + Py_CLEAR(tmp_stop); + if (clamped_step < 0) { + tmp_stop = neg_one; + } else { + tmp_stop = zero; + } + Py_INCREF(tmp_stop); + } else { + /* tmp_stop >= 0 */ + cmp_result = PyObject_RichCompareBool(tmp_stop, r->length, Py_GE); + if (cmp_result == -1) goto Fail; + if (cmp_result) { + /* tmp_stop >= r->length */ + Py_CLEAR(tmp_stop); + if (clamped_step < 0) { + tmp_stop = PyNumber_Subtract(r->length, one); + if (tmp_stop == NULL) goto Fail; + } else { + tmp_stop = r->length; + Py_INCREF(tmp_start); + } + } + } + } + + /* Check if the slice is empty or not */ + if (clamped_step < 0) { + has_elements = PyObject_RichCompareBool(tmp_start, tmp_stop, Py_GT); + } else { + has_elements = PyObject_RichCompareBool(tmp_start, tmp_stop, Py_LT); + } + if (has_elements == -1) goto Fail; + + *start = tmp_start; + *stop = tmp_stop; + *step = tmp_step; + Py_DECREF(neg_one); + Py_DECREF(one); + Py_DECREF(zero); + return has_elements; + + Fail: + Py_XDECREF(tmp_start); + Py_XDECREF(tmp_stop); + Py_XDECREF(tmp_step); + Py_XDECREF(candidate); + Py_XDECREF(neg_one); + Py_XDECREF(one); + Py_XDECREF(zero); + return -1; +} + +static PyObject * +compute_slice(rangeobject *r, PyObject *_slice) +{ + PySliceObject *slice = (PySliceObject *) _slice; + rangeobject *result; + PyObject *start = NULL, *stop = NULL, *step = NULL; + PyObject *substart = NULL, *substop = NULL, *substep = NULL; + int has_elements; + + has_elements = compute_slice_indices(r, slice, &start, &stop, &step); + if (has_elements == -1) return NULL; + + substep = PyNumber_Multiply(r->step, step); + if (substep == NULL) goto fail; + Py_CLEAR(step); + + substart = compute_item(r, start); + if (substart == NULL) goto fail; + Py_CLEAR(start); + + if (has_elements) { + substop = compute_item(r, stop); + if (substop == NULL) goto fail; + } else { + substop = substart; + Py_INCREF(substop); + } + Py_CLEAR(stop); + + result = make_range_object(Py_TYPE(r), substart, substop, substep); + if (result != NULL) { + return (PyObject *) result; + } +fail: + Py_XDECREF(start); + Py_XDECREF(stop); + Py_XDECREF(step); + Py_XDECREF(substart); + Py_XDECREF(substop); + Py_XDECREF(substep); + return NULL; } /* Assumes (PyLong_CheckExact(ob) || PyBool_Check(ob)) */ @@ -424,55 +704,16 @@ range_subscript(rangeobject* self, PyObject* item) { if (PyIndex_Check(item)) { - Py_ssize_t i; - i = PyNumber_AsSsize_t(item, PyExc_IndexError); - if (i == -1 && PyErr_Occurred()) + PyObject *i, *result; + i = PyNumber_Index(item); + if (!i) return NULL; - return range_item(self, i); + result = compute_range_item(self, i); + Py_DECREF(i); + return result; } if (PySlice_Check(item)) { - Py_ssize_t start, stop, step, len, rlen; - rangeobject *result; - PyObject *substart = NULL, *substep = NULL, *substop = NULL; - - rlen = range_length(self); - if (rlen < 0) { - return NULL; - } - - if (PySlice_GetIndicesEx(item, rlen, - &start, &stop, &step, &len) < 0) { - return NULL; - } - if (step == 1) { - substep = self->step; - Py_INCREF(substep); - } else { - /* NB: slice step != Py_None here */ - substep = PyNumber_Multiply(self->step, ((PySliceObject*)item)->step); - if (substep == NULL) - goto fail; - } - substart = compute_range_item(self, start); - if (substart == NULL) - goto fail; - if (len <= 0) { - substop = substart; - Py_INCREF(substop); - } - else { - substop = compute_range_item(self, stop); - if (substop == NULL) - goto fail; - } - result = make_range_object(Py_TYPE(self), substart, substop, substep); - if (result != NULL) - return (PyObject *) result; - fail: - Py_XDECREF(substart); - Py_XDECREF(substep); - Py_XDECREF(substop); - return NULL; + return compute_slice(self, item); } PyErr_Format(PyExc_TypeError, "range indices must be integers or slices, not %.200s", Modified: python/branches/py3k-cdecimal/Objects/stringlib/string_format.h ============================================================================== --- python/branches/py3k-cdecimal/Objects/stringlib/string_format.h (original) +++ python/branches/py3k-cdecimal/Objects/stringlib/string_format.h Fri Mar 4 18:50:17 2011 @@ -1192,6 +1192,11 @@ { formatteriterobject *it; + if (!PyUnicode_Check(self)) { + PyErr_Format(PyExc_TypeError, "expected str, got %s", Py_TYPE(self)->tp_name); + return NULL; + } + it = PyObject_New(formatteriterobject, &PyFormatterIter_Type); if (it == NULL) return NULL; @@ -1332,6 +1337,11 @@ PyObject *first_obj = NULL; PyObject *result = NULL; + if (!PyUnicode_Check(self)) { + PyErr_Format(PyExc_TypeError, "expected str, got %s", Py_TYPE(self)->tp_name); + return NULL; + } + it = PyObject_New(fieldnameiterobject, &PyFieldNameIter_Type); if (it == NULL) return NULL; Modified: python/branches/py3k-cdecimal/Objects/tupleobject.c ============================================================================== --- python/branches/py3k-cdecimal/Objects/tupleobject.c (original) +++ python/branches/py3k-cdecimal/Objects/tupleobject.c Fri Mar 4 18:50:17 2011 @@ -86,7 +86,7 @@ { return PyErr_NoMemory(); } - nbytes += sizeof(PyTupleObject) - sizeof(PyObject *); + /* nbytes += sizeof(PyTupleObject) - sizeof(PyObject *); */ op = PyObject_GC_NewVar(PyTupleObject, &PyTuple_Type, size); if (op == NULL) Modified: python/branches/py3k-cdecimal/Objects/typeobject.c ============================================================================== --- python/branches/py3k-cdecimal/Objects/typeobject.c (original) +++ python/branches/py3k-cdecimal/Objects/typeobject.c Fri Mar 4 18:50:17 2011 @@ -326,7 +326,7 @@ if (type != &PyType_Type) mod = PyDict_GetItemString(type->tp_dict, "__abstractmethods__"); if (!mod) { - PyErr_Format(PyExc_AttributeError, "__abstractmethods__"); + PyErr_SetString(PyExc_AttributeError, "__abstractmethods__"); return NULL; } Py_XINCREF(mod); @@ -340,8 +340,17 @@ abc.ABCMeta.__new__, so this function doesn't do anything special to update subclasses. */ - int res = PyDict_SetItemString(type->tp_dict, - "__abstractmethods__", value); + int res; + if (value != NULL) { + res = PyDict_SetItemString(type->tp_dict, "__abstractmethods__", value); + } + else { + res = PyDict_DelItemString(type->tp_dict, "__abstractmethods__"); + if (res && PyErr_ExceptionMatches(PyExc_KeyError)) { + PyErr_SetString(PyExc_AttributeError, "__abstractmethods__"); + return -1; + } + } if (res == 0) { PyType_Modified(type); if (value && PyObject_IsTrue(value)) { @@ -893,7 +902,7 @@ /* Find the nearest base with a different tp_dealloc */ base = type; - while ((basedealloc = base->tp_dealloc) == subtype_dealloc) { + while ((/*basedealloc =*/ base->tp_dealloc) == subtype_dealloc) { base = base->tp_base; assert(base); } @@ -1895,6 +1904,12 @@ return res; } +long +PyType_GetFlags(PyTypeObject *type) +{ + return type->tp_flags; +} + static PyObject * type_new(PyTypeObject *metatype, PyObject *args, PyObject *kwds) { @@ -2315,6 +2330,8 @@ char *res_start = (char*)res; PyType_Slot *slot; + if (res == NULL) + return NULL; res->ht_name = PyUnicode_FromString(spec->name); if (!res->ht_name) goto fail; @@ -2332,6 +2349,17 @@ goto fail; } *(void**)(res_start + slotoffsets[slot->slot]) = slot->pfunc; + + /* need to make a copy of the docstring slot, which usually + points to a static string literal */ + if (slot->slot == Py_tp_doc) { + ssize_t len = strlen(slot->pfunc)+1; + char *tp_doc = PyObject_MALLOC(len); + if (tp_doc == NULL) + goto fail; + memcpy(tp_doc, slot->pfunc, len); + res->ht_type.tp_doc = tp_doc; + } } return (PyObject*)res; @@ -2936,10 +2964,7 @@ Py_ssize_t size; PyObject *slots_a, *slots_b; - if (base != b->tp_base) - return 0; - if (equiv_structs(a, base) && equiv_structs(b, base)) - return 1; + assert(base == b->tp_base); size = base->tp_basicsize; if (a->tp_dictoffset == size && b->tp_dictoffset == size) size += sizeof(PyObject *); @@ -4950,7 +4975,7 @@ res = slot_tp_repr(self); if (!res) return NULL; - ress = _PyUnicode_AsDefaultEncodedString(res, NULL); + ress = _PyUnicode_AsDefaultEncodedString(res); Py_DECREF(res); return ress; } Modified: python/branches/py3k-cdecimal/Objects/typeslots.inc ============================================================================== --- python/branches/py3k-cdecimal/Objects/typeslots.inc (original) +++ python/branches/py3k-cdecimal/Objects/typeslots.inc Fri Mar 4 18:50:17 2011 @@ -70,3 +70,6 @@ offsetof(PyHeapTypeObject, ht_type.tp_setattro), offsetof(PyHeapTypeObject, ht_type.tp_str), offsetof(PyHeapTypeObject, ht_type.tp_traverse), +offsetof(PyHeapTypeObject, ht_type.tp_members), +offsetof(PyHeapTypeObject, ht_type.tp_getset), +offsetof(PyHeapTypeObject, ht_type.tp_free), Modified: python/branches/py3k-cdecimal/Objects/unicodeobject.c ============================================================================== --- python/branches/py3k-cdecimal/Objects/unicodeobject.c (original) +++ python/branches/py3k-cdecimal/Objects/unicodeobject.c Fri Mar 4 18:50:17 2011 @@ -142,16 +142,18 @@ 0, 0, 0, 0, 0, 0, 0, 0 }; -static PyObject *unicode_encode_call_errorhandler(const char *errors, +static PyObject * +unicode_encode_call_errorhandler(const char *errors, PyObject **errorHandler,const char *encoding, const char *reason, const Py_UNICODE *unicode, Py_ssize_t size, PyObject **exceptionObject, Py_ssize_t startpos, Py_ssize_t endpos, Py_ssize_t *newpos); -static void raise_encode_exception(PyObject **exceptionObject, - const char *encoding, - const Py_UNICODE *unicode, Py_ssize_t size, - Py_ssize_t startpos, Py_ssize_t endpos, - const char *reason); +static void +raise_encode_exception(PyObject **exceptionObject, + const char *encoding, + const Py_UNICODE *unicode, Py_ssize_t size, + Py_ssize_t startpos, Py_ssize_t endpos, + const char *reason); /* Same for linebreaks */ static unsigned char ascii_linebreak[] = { @@ -223,7 +225,8 @@ ((ch) < 128U ? ascii_linebreak[(ch)] : \ (BLOOM(bloom_linebreak, (ch)) && Py_UNICODE_ISLINEBREAK(ch))) -Py_LOCAL_INLINE(BLOOM_MASK) make_bloom_mask(Py_UNICODE* ptr, Py_ssize_t len) +Py_LOCAL_INLINE(BLOOM_MASK) +make_bloom_mask(Py_UNICODE* ptr, Py_ssize_t len) { /* calculate simple bloom-style bitmask for a given unicode string */ @@ -237,7 +240,8 @@ return mask; } -Py_LOCAL_INLINE(int) unicode_member(Py_UNICODE chr, Py_UNICODE* set, Py_ssize_t setlen) +Py_LOCAL_INLINE(int) +unicode_member(Py_UNICODE chr, Py_UNICODE* set, Py_ssize_t setlen) { Py_ssize_t i; @@ -253,9 +257,9 @@ /* --- Unicode Object ----------------------------------------------------- */ -static -int unicode_resize(register PyUnicodeObject *unicode, - Py_ssize_t length) +static int +unicode_resize(register PyUnicodeObject *unicode, + Py_ssize_t length) { void *oldstr; @@ -311,8 +315,8 @@ */ -static -PyUnicodeObject *_PyUnicode_New(Py_ssize_t length) +static PyUnicodeObject * +_PyUnicode_New(Py_ssize_t length) { register PyUnicodeObject *unicode; @@ -383,8 +387,8 @@ return NULL; } -static -void unicode_dealloc(register PyUnicodeObject *unicode) +static void +unicode_dealloc(register PyUnicodeObject *unicode) { switch (PyUnicode_CHECK_INTERNED(unicode)) { case SSTATE_NOT_INTERNED: @@ -428,8 +432,8 @@ } } -static -int _PyUnicode_Resize(PyUnicodeObject **unicode, Py_ssize_t length) +static int +_PyUnicode_Resize(PyUnicodeObject **unicode, Py_ssize_t length) { register PyUnicodeObject *v; @@ -464,13 +468,14 @@ return unicode_resize(v, length); } -int PyUnicode_Resize(PyObject **unicode, Py_ssize_t length) +int +PyUnicode_Resize(PyObject **unicode, Py_ssize_t length) { return _PyUnicode_Resize((PyUnicodeObject **)unicode, length); } -PyObject *PyUnicode_FromUnicode(const Py_UNICODE *u, - Py_ssize_t size) +PyObject * +PyUnicode_FromUnicode(const Py_UNICODE *u, Py_ssize_t size) { PyUnicodeObject *unicode; @@ -511,7 +516,8 @@ return (PyObject *)unicode; } -PyObject *PyUnicode_FromStringAndSize(const char *u, Py_ssize_t size) +PyObject * +PyUnicode_FromStringAndSize(const char *u, Py_ssize_t size) { PyUnicodeObject *unicode; @@ -558,7 +564,8 @@ return (PyObject *)unicode; } -PyObject *PyUnicode_FromString(const char *u) +PyObject * +PyUnicode_FromString(const char *u) { size_t size = strlen(u); if (size > PY_SSIZE_T_MAX) { @@ -580,8 +587,8 @@ /* Here sizeof(wchar_t) is 4 but Py_UNICODE_SIZE == 2, so we need to convert from UTF32 to UTF16. */ -PyObject *PyUnicode_FromWideChar(register const wchar_t *w, - Py_ssize_t size) +PyObject * +PyUnicode_FromWideChar(register const wchar_t *w, Py_ssize_t size) { PyUnicodeObject *unicode; register Py_ssize_t i; @@ -631,8 +638,8 @@ #else -PyObject *PyUnicode_FromWideChar(register const wchar_t *w, - Py_ssize_t size) +PyObject * +PyUnicode_FromWideChar(register const wchar_t *w, Py_ssize_t size) { PyUnicodeObject *unicode; @@ -707,6 +714,71 @@ *fmt = '\0'; } +/* helper for PyUnicode_FromFormatV() */ + +static const char* +parse_format_flags(const char *f, + int *p_width, int *p_precision, + int *p_longflag, int *p_longlongflag, int *p_size_tflag) +{ + int width, precision, longflag, longlongflag, size_tflag; + + /* parse the width.precision part, e.g. "%2.5s" => width=2, precision=5 */ + f++; + width = 0; + while (Py_ISDIGIT((unsigned)*f)) + width = (width*10) + *f++ - '0'; + precision = 0; + if (*f == '.') { + f++; + while (Py_ISDIGIT((unsigned)*f)) + precision = (precision*10) + *f++ - '0'; + if (*f == '%') { + /* "%.3%s" => f points to "3" */ + f--; + } + } + if (*f == '\0') { + /* bogus format "%.1" => go backward, f points to "1" */ + f--; + } + if (p_width != NULL) + *p_width = width; + if (p_precision != NULL) + *p_precision = precision; + + /* Handle %ld, %lu, %lld and %llu. */ + longflag = 0; + longlongflag = 0; + size_tflag = 0; + + if (*f == 'l') { + if (f[1] == 'd' || f[1] == 'u' || f[1] == 'i') { + longflag = 1; + ++f; + } +#ifdef HAVE_LONG_LONG + else if (f[1] == 'l' && + (f[2] == 'd' || f[2] == 'u' || f[2] == 'i')) { + longlongflag = 1; + f += 2; + } +#endif + } + /* handle the size_t flag. */ + else if (*f == 'z' && (f[1] == 'd' || f[1] == 'u' || f[1] == 'i')) { + size_tflag = 1; + ++f; + } + if (p_longflag != NULL) + *p_longflag = longflag; + if (p_longlongflag != NULL) + *p_longlongflag = longlongflag; + if (p_size_tflag != NULL) + *p_size_tflag = size_tflag; + return f; +} + #define appendstring(string) {for (copy = string;*copy;) *s++ = *copy++;} /* size of fixed-size buffer for formatting single arguments */ @@ -750,15 +822,9 @@ * result in an array) */ for (f = format; *f; f++) { if (*f == '%') { - if (*(f+1)=='%') - continue; - if (*(f+1)=='S' || *(f+1)=='R' || *(f+1)=='A') - ++callcount; - while (Py_ISDIGIT((unsigned)*f)) - width = (width*10) + *f++ - '0'; - while (*++f && *f != '%' && !Py_ISALPHA((unsigned)*f)) - ; - if (*f == 's') + /* skip width or width.precision (eg. "1.2" of "%1.2f") */ + f = parse_format_flags(f, NULL, NULL, NULL, NULL, NULL); + if (*f == 's' || *f=='S' || *f=='R' || *f=='A' || *f=='V') ++callcount; } else if (128 <= (unsigned char)*f) { @@ -783,38 +849,29 @@ for (f = format; *f; f++) { if (*f == '%') { #ifdef HAVE_LONG_LONG - int longlongflag = 0; + int longlongflag; #endif - const char* p = f; - width = 0; - while (Py_ISDIGIT((unsigned)*f)) - width = (width*10) + *f++ - '0'; - while (*++f && *f != '%' && !Py_ISALPHA((unsigned)*f)) - ; - - /* skip the 'l' or 'z' in {%ld, %zd, %lu, %zu} since - * they don't affect the amount of space we reserve. - */ - if (*f == 'l') { - if (f[1] == 'd' || f[1] == 'u') { - ++f; - } -#ifdef HAVE_LONG_LONG - else if (f[1] == 'l' && - (f[2] == 'd' || f[2] == 'u')) { - longlongflag = 1; - f += 2; - } -#endif - } - else if (*f == 'z' && (f[1] == 'd' || f[1] == 'u')) { - ++f; - } + const char* p; + + p = f; + f = parse_format_flags(f, &width, NULL, + NULL, &longlongflag, NULL); switch (*f) { case 'c': + { +#ifndef Py_UNICODE_WIDE + int ordinal = va_arg(count, int); + if (ordinal > 0xffff) + n += 2; + else + n++; +#else (void)va_arg(count, int); - /* fall through... */ + n++; +#endif + break; + } case '%': n++; break; @@ -861,12 +918,20 @@ { PyObject *obj = va_arg(count, PyObject *); const char *str = va_arg(count, const char *); + PyObject *str_obj; assert(obj || str); assert(!obj || PyUnicode_Check(obj)); - if (obj) + if (obj) { n += PyUnicode_GET_SIZE(obj); - else - n += strlen(str); + *callresult++ = NULL; + } + else { + str_obj = PyUnicode_DecodeUTF8(str, strlen(str), "replace"); + if (!str_obj) + goto fail; + n += PyUnicode_GET_SIZE(str_obj); + *callresult++ = str_obj; + } break; } case 'S': @@ -955,48 +1020,34 @@ for (f = format; *f; f++) { if (*f == '%') { - const char* p = f++; - int longflag = 0; - int longlongflag = 0; - int size_tflag = 0; - zeropad = (*f == '0'); - /* parse the width.precision part */ - width = 0; - while (Py_ISDIGIT((unsigned)*f)) - width = (width*10) + *f++ - '0'; - precision = 0; - if (*f == '.') { - f++; - while (Py_ISDIGIT((unsigned)*f)) - precision = (precision*10) + *f++ - '0'; - } - /* Handle %ld, %lu, %lld and %llu. */ - if (*f == 'l') { - if (f[1] == 'd' || f[1] == 'u') { - longflag = 1; - ++f; - } -#ifdef HAVE_LONG_LONG - else if (f[1] == 'l' && - (f[2] == 'd' || f[2] == 'u')) { - longlongflag = 1; - f += 2; - } -#endif - } - /* handle the size_t flag. */ - if (*f == 'z' && (f[1] == 'd' || f[1] == 'u')) { - size_tflag = 1; - ++f; - } + const char* p; + int longflag; + int longlongflag; + int size_tflag; + + p = f; + zeropad = (f[1] == '0'); + f = parse_format_flags(f, &width, &precision, + &longflag, &longlongflag, &size_tflag); switch (*f) { case 'c': - *s++ = va_arg(vargs, int); + { + int ordinal = va_arg(vargs, int); +#ifndef Py_UNICODE_WIDE + if (ordinal > 0xffff) { + ordinal -= 0x10000; + *s++ = 0xD800 | (ordinal >> 10); + *s++ = 0xDC00 | (ordinal & 0x3FF); + } else +#endif + *s++ = ordinal; break; + } + case 'i': case 'd': makefmt(fmt, longflag, longlongflag, size_tflag, zeropad, - width, precision, 'd'); + width, precision, *f); if (longflag) sprintf(realbuffer, fmt, va_arg(vargs, long)); #ifdef HAVE_LONG_LONG @@ -1025,11 +1076,6 @@ sprintf(realbuffer, fmt, va_arg(vargs, unsigned int)); appendstring(realbuffer); break; - case 'i': - makefmt(fmt, 0, 0, 0, zeropad, width, precision, 'i'); - sprintf(realbuffer, fmt, va_arg(vargs, int)); - appendstring(realbuffer); - break; case 'x': makefmt(fmt, 0, 0, 0, zeropad, width, precision, 'x'); sprintf(realbuffer, fmt, va_arg(vargs, int)); @@ -1059,14 +1105,18 @@ case 'V': { PyObject *obj = va_arg(vargs, PyObject *); - const char *str = va_arg(vargs, const char *); + va_arg(vargs, const char *); if (obj) { Py_ssize_t size = PyUnicode_GET_SIZE(obj); Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(obj), size); s += size; } else { - appendstring(str); + Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(*callresult), + PyUnicode_GET_SIZE(*callresult)); + s += PyUnicode_GET_SIZE(*callresult); + Py_DECREF(*callresult); } + ++callresult; break; } case 'S': @@ -1123,7 +1173,7 @@ if (callresults) { PyObject **callresult2 = callresults; while (callresult2 < callresult) { - Py_DECREF(*callresult2); + Py_XDECREF(*callresult2); ++callresult2; } PyObject_Free(callresults); @@ -1303,7 +1353,8 @@ #endif -PyObject *PyUnicode_FromOrdinal(int ordinal) +PyObject * +PyUnicode_FromOrdinal(int ordinal) { Py_UNICODE s[2]; @@ -1326,7 +1377,8 @@ return PyUnicode_FromUnicode(s, 1); } -PyObject *PyUnicode_FromObject(register PyObject *obj) +PyObject * +PyUnicode_FromObject(register PyObject *obj) { /* XXX Perhaps we should make this API an alias of PyObject_Str() instead ?! */ @@ -1346,9 +1398,10 @@ return NULL; } -PyObject *PyUnicode_FromEncodedObject(register PyObject *obj, - const char *encoding, - const char *errors) +PyObject * +PyUnicode_FromEncodedObject(register PyObject *obj, + const char *encoding, + const char *errors) { Py_buffer buffer; PyObject *v; @@ -1431,23 +1484,26 @@ return 1; } -PyObject *PyUnicode_Decode(const char *s, - Py_ssize_t size, - const char *encoding, - const char *errors) +PyObject * +PyUnicode_Decode(const char *s, + Py_ssize_t size, + const char *encoding, + const char *errors) { PyObject *buffer = NULL, *unicode; Py_buffer info; char lower[11]; /* Enough for any encoding shortcut */ if (encoding == NULL) - encoding = PyUnicode_GetDefaultEncoding(); + return PyUnicode_DecodeUTF8(s, size, errors); /* Shortcuts for common default encodings */ if (normalize_encoding(encoding, lower, sizeof(lower))) { - if (strcmp(lower, "utf-8") == 0) + if ((strcmp(lower, "utf-8") == 0) || + (strcmp(lower, "utf8") == 0)) return PyUnicode_DecodeUTF8(s, size, errors); else if ((strcmp(lower, "latin-1") == 0) || + (strcmp(lower, "latin1") == 0) || (strcmp(lower, "iso-8859-1") == 0)) return PyUnicode_DecodeLatin1(s, size, errors); #if defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T) @@ -1487,9 +1543,10 @@ return NULL; } -PyObject *PyUnicode_AsDecodedObject(PyObject *unicode, - const char *encoding, - const char *errors) +PyObject * +PyUnicode_AsDecodedObject(PyObject *unicode, + const char *encoding, + const char *errors) { PyObject *v; @@ -1511,9 +1568,10 @@ return NULL; } -PyObject *PyUnicode_AsDecodedUnicode(PyObject *unicode, - const char *encoding, - const char *errors) +PyObject * +PyUnicode_AsDecodedUnicode(PyObject *unicode, + const char *encoding, + const char *errors) { PyObject *v; @@ -1542,10 +1600,11 @@ return NULL; } -PyObject *PyUnicode_Encode(const Py_UNICODE *s, - Py_ssize_t size, - const char *encoding, - const char *errors) +PyObject * +PyUnicode_Encode(const Py_UNICODE *s, + Py_ssize_t size, + const char *encoding, + const char *errors) { PyObject *v, *unicode; @@ -1557,9 +1616,10 @@ return v; } -PyObject *PyUnicode_AsEncodedObject(PyObject *unicode, - const char *encoding, - const char *errors) +PyObject * +PyUnicode_AsEncodedObject(PyObject *unicode, + const char *encoding, + const char *errors) { PyObject *v; @@ -1636,9 +1696,10 @@ #endif } -PyObject *PyUnicode_AsEncodedString(PyObject *unicode, - const char *encoding, - const char *errors) +PyObject * +PyUnicode_AsEncodedString(PyObject *unicode, + const char *encoding, + const char *errors) { PyObject *v; char lower[11]; /* Enough for any encoding shortcut */ @@ -1648,16 +1709,29 @@ return NULL; } - if (encoding == NULL) - encoding = PyUnicode_GetDefaultEncoding(); - - /* Shortcuts for common default encodings */ - if (normalize_encoding(encoding, lower, sizeof(lower))) { - if (strcmp(lower, "utf-8") == 0) + if (encoding == NULL) { + if (errors == NULL || strcmp(errors, "strict") == 0) + return PyUnicode_AsUTF8String(unicode); + else return PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode), PyUnicode_GET_SIZE(unicode), errors); + } + + /* Shortcuts for common default encodings */ + if (normalize_encoding(encoding, lower, sizeof(lower))) { + if ((strcmp(lower, "utf-8") == 0) || + (strcmp(lower, "utf8") == 0)) + { + if (errors == NULL || strcmp(errors, "strict") == 0) + return PyUnicode_AsUTF8String(unicode); + else + return PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode), + PyUnicode_GET_SIZE(unicode), + errors); + } else if ((strcmp(lower, "latin-1") == 0) || + (strcmp(lower, "latin1") == 0) || (strcmp(lower, "iso-8859-1") == 0)) return PyUnicode_EncodeLatin1(PyUnicode_AS_UNICODE(unicode), PyUnicode_GET_SIZE(unicode), @@ -1673,21 +1747,6 @@ PyUnicode_GET_SIZE(unicode), errors); } - /* During bootstrap, we may need to find the encodings - package, to load the file system encoding, and require the - file system encoding in order to load the encodings - package. - - Break out of this dependency by assuming that the path to - the encodings module is ASCII-only. XXX could try wcstombs - instead, if the file system encoding is the locale's - encoding. */ - if (Py_FileSystemDefaultEncoding && - strcmp(encoding, Py_FileSystemDefaultEncoding) == 0 && - !PyThreadState_GET()->interp->codecs_initialized) - return PyUnicode_EncodeASCII(PyUnicode_AS_UNICODE(unicode), - PyUnicode_GET_SIZE(unicode), - errors); /* Encode via the codec registry */ v = PyCodec_Encode(unicode, encoding, errors); @@ -1723,9 +1782,10 @@ return NULL; } -PyObject *PyUnicode_AsEncodedUnicode(PyObject *unicode, - const char *encoding, - const char *errors) +PyObject * +PyUnicode_AsEncodedUnicode(PyObject *unicode, + const char *encoding, + const char *errors) { PyObject *v; @@ -1754,14 +1814,12 @@ return NULL; } -PyObject *_PyUnicode_AsDefaultEncodedString(PyObject *unicode, - const char *errors) +PyObject * +_PyUnicode_AsDefaultEncodedString(PyObject *unicode) { PyObject *v = ((PyUnicodeObject *)unicode)->defenc; if (v) return v; - if (errors != NULL) - Py_FatalError("non-NULL encoding in _PyUnicode_AsDefaultEncodedString"); v = PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode), PyUnicode_GET_SIZE(unicode), NULL); @@ -1907,7 +1965,7 @@ PyErr_BadArgument(); return NULL; } - bytes = _PyUnicode_AsDefaultEncodedString(unicode, NULL); + bytes = _PyUnicode_AsDefaultEncodedString(unicode); if (bytes == NULL) return NULL; if (psize != NULL) @@ -1921,7 +1979,8 @@ return _PyUnicode_AsStringAndSize(unicode, NULL); } -Py_UNICODE *PyUnicode_AsUnicode(PyObject *unicode) +Py_UNICODE * +PyUnicode_AsUnicode(PyObject *unicode) { if (!PyUnicode_Check(unicode)) { PyErr_BadArgument(); @@ -1933,7 +1992,8 @@ return NULL; } -Py_ssize_t PyUnicode_GetSize(PyObject *unicode) +Py_ssize_t +PyUnicode_GetSize(PyObject *unicode) { if (!PyUnicode_Check(unicode)) { PyErr_BadArgument(); @@ -1945,7 +2005,8 @@ return -1; } -const char *PyUnicode_GetDefaultEncoding(void) +const char * +PyUnicode_GetDefaultEncoding(void) { return "utf-8"; } @@ -1984,12 +2045,12 @@ return 0 on success, -1 on error */ -static -int unicode_decode_call_errorhandler(const char *errors, PyObject **errorHandler, - const char *encoding, const char *reason, - const char **input, const char **inend, Py_ssize_t *startinpos, - Py_ssize_t *endinpos, PyObject **exceptionObject, const char **inptr, - PyUnicodeObject **output, Py_ssize_t *outpos, Py_UNICODE **outptr) +static int +unicode_decode_call_errorhandler(const char *errors, PyObject **errorHandler, + const char *encoding, const char *reason, + const char **input, const char **inend, Py_ssize_t *startinpos, + Py_ssize_t *endinpos, PyObject **exceptionObject, const char **inptr, + PyUnicodeObject **output, Py_ssize_t *outpos, Py_UNICODE **outptr) { static char *argparse = "O!n;decoding error handler must return (str, int) tuple"; @@ -2159,9 +2220,10 @@ (directWS && (utf7_category[(c)] == 2)) || \ (directO && (utf7_category[(c)] == 1)))) -PyObject *PyUnicode_DecodeUTF7(const char *s, - Py_ssize_t size, - const char *errors) +PyObject * +PyUnicode_DecodeUTF7(const char *s, + Py_ssize_t size, + const char *errors) { return PyUnicode_DecodeUTF7Stateful(s, size, errors, NULL); } @@ -2173,10 +2235,11 @@ * all the shift state (seen bits, number of bits seen, high * surrogate). */ -PyObject *PyUnicode_DecodeUTF7Stateful(const char *s, - Py_ssize_t size, - const char *errors, - Py_ssize_t *consumed) +PyObject * +PyUnicode_DecodeUTF7Stateful(const char *s, + Py_ssize_t size, + const char *errors, + Py_ssize_t *consumed) { const char *starts = s; Py_ssize_t startinpos; @@ -2363,11 +2426,12 @@ } -PyObject *PyUnicode_EncodeUTF7(const Py_UNICODE *s, - Py_ssize_t size, - int base64SetO, - int base64WhiteSpace, - const char *errors) +PyObject * +PyUnicode_EncodeUTF7(const Py_UNICODE *s, + Py_ssize_t size, + int base64SetO, + int base64WhiteSpace, + const char *errors) { PyObject *v; /* It might be possible to tighten this worst case */ @@ -2488,9 +2552,10 @@ 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* F0-F4 + F5-FF */ }; -PyObject *PyUnicode_DecodeUTF8(const char *s, - Py_ssize_t size, - const char *errors) +PyObject * +PyUnicode_DecodeUTF8(const char *s, + Py_ssize_t size, + const char *errors) { return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL); } @@ -2508,10 +2573,11 @@ # error C 'long' size should be either 4 or 8! #endif -PyObject *PyUnicode_DecodeUTF8Stateful(const char *s, - Py_ssize_t size, - const char *errors, - Py_ssize_t *consumed) +PyObject * +PyUnicode_DecodeUTF8Stateful(const char *s, + Py_ssize_t size, + const char *errors, + Py_ssize_t *consumed) { const char *starts = s; int n; @@ -3017,15 +3083,19 @@ #undef MAX_SHORT_UNICHARS } -PyObject *PyUnicode_AsUTF8String(PyObject *unicode) +PyObject * +PyUnicode_AsUTF8String(PyObject *unicode) { + PyObject *utf8; if (!PyUnicode_Check(unicode)) { PyErr_BadArgument(); return NULL; } - return PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode), - PyUnicode_GET_SIZE(unicode), - NULL); + utf8 = _PyUnicode_AsDefaultEncodedString(unicode); + if (utf8 == NULL) + return NULL; + Py_INCREF(utf8); + return utf8; } /* --- UTF-32 Codec ------------------------------------------------------- */ @@ -3291,7 +3361,8 @@ #undef STORECHAR } -PyObject *PyUnicode_AsUTF32String(PyObject *unicode) +PyObject * +PyUnicode_AsUTF32String(PyObject *unicode) { if (!PyUnicode_Check(unicode)) { PyErr_BadArgument(); @@ -3681,7 +3752,8 @@ #undef STORECHAR } -PyObject *PyUnicode_AsUTF16String(PyObject *unicode) +PyObject * +PyUnicode_AsUTF16String(PyObject *unicode) { if (!PyUnicode_Check(unicode)) { PyErr_BadArgument(); @@ -3697,9 +3769,10 @@ static _PyUnicode_Name_CAPI *ucnhash_CAPI = NULL; -PyObject *PyUnicode_DecodeUnicodeEscape(const char *s, - Py_ssize_t size, - const char *errors) +PyObject * +PyUnicode_DecodeUnicodeEscape(const char *s, + Py_ssize_t size, + const char *errors) { const char *starts = s; Py_ssize_t startinpos; @@ -3955,8 +4028,9 @@ static const char *hexdigits = "0123456789abcdef"; -PyObject *PyUnicode_EncodeUnicodeEscape(const Py_UNICODE *s, - Py_ssize_t size) +PyObject * +PyUnicode_EncodeUnicodeEscape(const Py_UNICODE *s, + Py_ssize_t size) { PyObject *repr; char *p; @@ -4096,7 +4170,8 @@ return repr; } -PyObject *PyUnicode_AsUnicodeEscapeString(PyObject *unicode) +PyObject * +PyUnicode_AsUnicodeEscapeString(PyObject *unicode) { PyObject *s; if (!PyUnicode_Check(unicode)) { @@ -4110,9 +4185,10 @@ /* --- Raw Unicode Escape Codec ------------------------------------------- */ -PyObject *PyUnicode_DecodeRawUnicodeEscape(const char *s, - Py_ssize_t size, - const char *errors) +PyObject * +PyUnicode_DecodeRawUnicodeEscape(const char *s, + Py_ssize_t size, + const char *errors) { const char *starts = s; Py_ssize_t startinpos; @@ -4227,8 +4303,9 @@ return NULL; } -PyObject *PyUnicode_EncodeRawUnicodeEscape(const Py_UNICODE *s, - Py_ssize_t size) +PyObject * +PyUnicode_EncodeRawUnicodeEscape(const Py_UNICODE *s, + Py_ssize_t size) { PyObject *repr; char *p; @@ -4315,7 +4392,8 @@ return repr; } -PyObject *PyUnicode_AsRawUnicodeEscapeString(PyObject *unicode) +PyObject * +PyUnicode_AsRawUnicodeEscapeString(PyObject *unicode) { PyObject *s; if (!PyUnicode_Check(unicode)) { @@ -4330,9 +4408,10 @@ /* --- Unicode Internal Codec ------------------------------------------- */ -PyObject *_PyUnicode_DecodeUnicodeInternal(const char *s, - Py_ssize_t size, - const char *errors) +PyObject * +_PyUnicode_DecodeUnicodeInternal(const char *s, + Py_ssize_t size, + const char *errors) { const char *starts = s; Py_ssize_t startinpos; @@ -4408,9 +4487,10 @@ /* --- Latin-1 Codec ------------------------------------------------------ */ -PyObject *PyUnicode_DecodeLatin1(const char *s, - Py_ssize_t size, - const char *errors) +PyObject * +PyUnicode_DecodeLatin1(const char *s, + Py_ssize_t size, + const char *errors) { PyUnicodeObject *v; Py_UNICODE *p; @@ -4450,11 +4530,12 @@ } /* create or adjust a UnicodeEncodeError */ -static void make_encode_exception(PyObject **exceptionObject, - const char *encoding, - const Py_UNICODE *unicode, Py_ssize_t size, - Py_ssize_t startpos, Py_ssize_t endpos, - const char *reason) +static void +make_encode_exception(PyObject **exceptionObject, + const char *encoding, + const Py_UNICODE *unicode, Py_ssize_t size, + Py_ssize_t startpos, Py_ssize_t endpos, + const char *reason) { if (*exceptionObject == NULL) { *exceptionObject = PyUnicodeEncodeError_Create( @@ -4475,11 +4556,12 @@ } /* raises a UnicodeEncodeError */ -static void raise_encode_exception(PyObject **exceptionObject, - const char *encoding, - const Py_UNICODE *unicode, Py_ssize_t size, - Py_ssize_t startpos, Py_ssize_t endpos, - const char *reason) +static void +raise_encode_exception(PyObject **exceptionObject, + const char *encoding, + const Py_UNICODE *unicode, Py_ssize_t size, + Py_ssize_t startpos, Py_ssize_t endpos, + const char *reason) { make_encode_exception(exceptionObject, encoding, unicode, size, startpos, endpos, reason); @@ -4491,12 +4573,13 @@ build arguments, call the callback and check the arguments, put the result into newpos and return the replacement string, which has to be freed by the caller */ -static PyObject *unicode_encode_call_errorhandler(const char *errors, - PyObject **errorHandler, - const char *encoding, const char *reason, - const Py_UNICODE *unicode, Py_ssize_t size, PyObject **exceptionObject, - Py_ssize_t startpos, Py_ssize_t endpos, - Py_ssize_t *newpos) +static PyObject * +unicode_encode_call_errorhandler(const char *errors, + PyObject **errorHandler, + const char *encoding, const char *reason, + const Py_UNICODE *unicode, Py_ssize_t size, PyObject **exceptionObject, + Py_ssize_t startpos, Py_ssize_t endpos, + Py_ssize_t *newpos) { static char *argparse = "On;encoding error handler must return (str/bytes, int) tuple"; @@ -4545,10 +4628,11 @@ return resunicode; } -static PyObject *unicode_encode_ucs1(const Py_UNICODE *p, - Py_ssize_t size, - const char *errors, - int limit) +static PyObject * +unicode_encode_ucs1(const Py_UNICODE *p, + Py_ssize_t size, + const char *errors, + int limit) { /* output object */ PyObject *res; @@ -4741,14 +4825,16 @@ return NULL; } -PyObject *PyUnicode_EncodeLatin1(const Py_UNICODE *p, - Py_ssize_t size, - const char *errors) +PyObject * +PyUnicode_EncodeLatin1(const Py_UNICODE *p, + Py_ssize_t size, + const char *errors) { return unicode_encode_ucs1(p, size, errors, 256); } -PyObject *PyUnicode_AsLatin1String(PyObject *unicode) +PyObject * +PyUnicode_AsLatin1String(PyObject *unicode) { if (!PyUnicode_Check(unicode)) { PyErr_BadArgument(); @@ -4761,9 +4847,10 @@ /* --- 7-bit ASCII Codec -------------------------------------------------- */ -PyObject *PyUnicode_DecodeASCII(const char *s, - Py_ssize_t size, - const char *errors) +PyObject * +PyUnicode_DecodeASCII(const char *s, + Py_ssize_t size, + const char *errors) { const char *starts = s; PyUnicodeObject *v; @@ -4820,14 +4907,16 @@ return NULL; } -PyObject *PyUnicode_EncodeASCII(const Py_UNICODE *p, - Py_ssize_t size, - const char *errors) +PyObject * +PyUnicode_EncodeASCII(const Py_UNICODE *p, + Py_ssize_t size, + const char *errors) { return unicode_encode_ucs1(p, size, errors, 128); } -PyObject *PyUnicode_AsASCIIString(PyObject *unicode) +PyObject * +PyUnicode_AsASCIIString(PyObject *unicode) { if (!PyUnicode_Check(unicode)) { PyErr_BadArgument(); @@ -4851,7 +4940,8 @@ b) IsDBCSLeadByte (probably) does not work for non-DBCS multi-byte encodings, see IsDBCSLeadByteEx documentation. */ -static int is_dbcs_lead_byte(const char *s, int offset) +static int +is_dbcs_lead_byte(const char *s, int offset) { const char *curr = s + offset; @@ -4866,11 +4956,12 @@ * Decode MBCS string into unicode object. If 'final' is set, converts * trailing lead-byte too. Returns consumed size if succeed, -1 otherwise. */ -static int decode_mbcs(PyUnicodeObject **v, - const char *s, /* MBCS string */ - int size, /* sizeof MBCS string */ - int final, - const char *errors) +static int +decode_mbcs(PyUnicodeObject **v, + const char *s, /* MBCS string */ + int size, /* sizeof MBCS string */ + int final, + const char *errors) { Py_UNICODE *p; Py_ssize_t n; @@ -4949,10 +5040,11 @@ return -1; } -PyObject *PyUnicode_DecodeMBCSStateful(const char *s, - Py_ssize_t size, - const char *errors, - Py_ssize_t *consumed) +PyObject * +PyUnicode_DecodeMBCSStateful(const char *s, + Py_ssize_t size, + const char *errors, + Py_ssize_t *consumed) { PyUnicodeObject *v = NULL; int done; @@ -4987,9 +5079,10 @@ return (PyObject *)v; } -PyObject *PyUnicode_DecodeMBCS(const char *s, - Py_ssize_t size, - const char *errors) +PyObject * +PyUnicode_DecodeMBCS(const char *s, + Py_ssize_t size, + const char *errors) { return PyUnicode_DecodeMBCSStateful(s, size, errors, NULL); } @@ -4998,10 +5091,11 @@ * Convert unicode into string object (MBCS). * Returns 0 if succeed, -1 otherwise. */ -static int encode_mbcs(PyObject **repr, - const Py_UNICODE *p, /* unicode */ - int size, /* size of unicode */ - const char* errors) +static int +encode_mbcs(PyObject **repr, + const Py_UNICODE *p, /* unicode */ + int size, /* size of unicode */ + const char* errors) { BOOL usedDefaultChar = FALSE; BOOL *pusedDefaultChar; @@ -5074,9 +5168,10 @@ return -1; } -PyObject *PyUnicode_EncodeMBCS(const Py_UNICODE *p, - Py_ssize_t size, - const char *errors) +PyObject * +PyUnicode_EncodeMBCS(const Py_UNICODE *p, + Py_ssize_t size, + const char *errors) { PyObject *repr = NULL; int ret; @@ -5105,7 +5200,8 @@ return repr; } -PyObject *PyUnicode_AsMBCSString(PyObject *unicode) +PyObject * +PyUnicode_AsMBCSString(PyObject *unicode) { if (!PyUnicode_Check(unicode)) { PyErr_BadArgument(); @@ -5122,10 +5218,11 @@ /* --- Character Mapping Codec -------------------------------------------- */ -PyObject *PyUnicode_DecodeCharmap(const char *s, - Py_ssize_t size, - PyObject *mapping, - const char *errors) +PyObject * +PyUnicode_DecodeCharmap(const char *s, + Py_ssize_t size, + PyObject *mapping, + const char *errors) { const char *starts = s; Py_ssize_t startinpos; @@ -5285,7 +5382,7 @@ /* Charmap encoding: the lookup table */ -struct encoding_map{ +struct encoding_map { PyObject_HEAD unsigned char level1[32]; int count2, count3; @@ -5412,7 +5509,6 @@ if (!result) return NULL; for (i = 0; i < 256; i++) { - key = value = NULL; key = PyLong_FromLong(decode[i]); value = PyLong_FromLong(i); if (!key || !value) @@ -5500,7 +5596,8 @@ /* Lookup the character ch in the mapping. If the character can't be found, Py_None is returned (or NULL, if another error occurred). */ -static PyObject *charmapencode_lookup(Py_UNICODE c, PyObject *mapping) +static PyObject * +charmapencode_lookup(Py_UNICODE c, PyObject *mapping) { PyObject *w = PyLong_FromLong((long)c); PyObject *x; @@ -5557,16 +5654,16 @@ typedef enum charmapencode_result { enc_SUCCESS, enc_FAILED, enc_EXCEPTION -}charmapencode_result; +} charmapencode_result; /* lookup the character, put the result in the output string and adjust various state variables. Resize the output bytes object if not enough space is available. Return a new reference to the object that was put in the output buffer, or Py_None, if the mapping was undefined (in which case no character was written) or NULL, if a reallocation error occurred. The caller must decref the result */ -static -charmapencode_result charmapencode_output(Py_UNICODE c, PyObject *mapping, - PyObject **outobj, Py_ssize_t *outpos) +static charmapencode_result +charmapencode_output(Py_UNICODE c, PyObject *mapping, + PyObject **outobj, Py_ssize_t *outpos) { PyObject *rep; char *outstart; @@ -5622,8 +5719,8 @@ /* handle an error in PyUnicode_EncodeCharmap Return 0 on success, -1 on error */ -static -int charmap_encoding_error( +static int +charmap_encoding_error( const Py_UNICODE *p, Py_ssize_t size, Py_ssize_t *inpos, PyObject *mapping, PyObject **exceptionObject, int *known_errorHandler, PyObject **errorHandler, const char *errors, @@ -5757,10 +5854,11 @@ return 0; } -PyObject *PyUnicode_EncodeCharmap(const Py_UNICODE *p, - Py_ssize_t size, - PyObject *mapping, - const char *errors) +PyObject * +PyUnicode_EncodeCharmap(const Py_UNICODE *p, + Py_ssize_t size, + PyObject *mapping, + const char *errors) { /* output object */ PyObject *res = NULL; @@ -5821,8 +5919,9 @@ return NULL; } -PyObject *PyUnicode_AsCharmapString(PyObject *unicode, - PyObject *mapping) +PyObject * +PyUnicode_AsCharmapString(PyObject *unicode, + PyObject *mapping) { if (!PyUnicode_Check(unicode) || mapping == NULL) { PyErr_BadArgument(); @@ -5835,10 +5934,11 @@ } /* create or adjust a UnicodeTranslateError */ -static void make_translate_exception(PyObject **exceptionObject, - const Py_UNICODE *unicode, Py_ssize_t size, - Py_ssize_t startpos, Py_ssize_t endpos, - const char *reason) +static void +make_translate_exception(PyObject **exceptionObject, + const Py_UNICODE *unicode, Py_ssize_t size, + Py_ssize_t startpos, Py_ssize_t endpos, + const char *reason) { if (*exceptionObject == NULL) { *exceptionObject = PyUnicodeTranslateError_Create( @@ -5859,10 +5959,11 @@ } /* raises a UnicodeTranslateError */ -static void raise_translate_exception(PyObject **exceptionObject, - const Py_UNICODE *unicode, Py_ssize_t size, - Py_ssize_t startpos, Py_ssize_t endpos, - const char *reason) +static void +raise_translate_exception(PyObject **exceptionObject, + const Py_UNICODE *unicode, Py_ssize_t size, + Py_ssize_t startpos, Py_ssize_t endpos, + const char *reason) { make_translate_exception(exceptionObject, unicode, size, startpos, endpos, reason); @@ -5874,12 +5975,13 @@ build arguments, call the callback and check the arguments, put the result into newpos and return the replacement string, which has to be freed by the caller */ -static PyObject *unicode_translate_call_errorhandler(const char *errors, - PyObject **errorHandler, - const char *reason, - const Py_UNICODE *unicode, Py_ssize_t size, PyObject **exceptionObject, - Py_ssize_t startpos, Py_ssize_t endpos, - Py_ssize_t *newpos) +static PyObject * +unicode_translate_call_errorhandler(const char *errors, + PyObject **errorHandler, + const char *reason, + const Py_UNICODE *unicode, Py_ssize_t size, PyObject **exceptionObject, + Py_ssize_t startpos, Py_ssize_t endpos, + Py_ssize_t *newpos) { static char *argparse = "O!n;translating error handler must return (str, int) tuple"; @@ -5929,8 +6031,8 @@ /* Lookup the character ch in the mapping and put the result in result, which must be decrefed by the caller. Return 0 on success, -1 on error */ -static -int charmaptranslate_lookup(Py_UNICODE c, PyObject *mapping, PyObject **result) +static int +charmaptranslate_lookup(Py_UNICODE c, PyObject *mapping, PyObject **result) { PyObject *w = PyLong_FromLong((long)c); PyObject *x; @@ -5979,8 +6081,8 @@ /* ensure that *outobj is at least requiredsize characters long, if not reallocate and adjust various state variables. Return 0 on success, -1 on error */ -static -int charmaptranslate_makespace(PyObject **outobj, Py_UNICODE **outp, +static int +charmaptranslate_makespace(PyObject **outobj, Py_UNICODE **outp, Py_ssize_t requiredsize) { Py_ssize_t oldsize = PyUnicode_GET_SIZE(*outobj); @@ -6002,10 +6104,10 @@ undefined (in which case no character was written). The called must decref result. Return 0 on success, -1 on error. */ -static -int charmaptranslate_output(const Py_UNICODE *startinp, const Py_UNICODE *curinp, - Py_ssize_t insize, PyObject *mapping, PyObject **outobj, Py_UNICODE **outp, - PyObject **res) +static int +charmaptranslate_output(const Py_UNICODE *startinp, const Py_UNICODE *curinp, + Py_ssize_t insize, PyObject *mapping, PyObject **outobj, Py_UNICODE **outp, + PyObject **res) { if (charmaptranslate_lookup(*curinp, mapping, res)) return -1; @@ -6041,10 +6143,11 @@ return 0; } -PyObject *PyUnicode_TranslateCharmap(const Py_UNICODE *p, - Py_ssize_t size, - PyObject *mapping, - const char *errors) +PyObject * +PyUnicode_TranslateCharmap(const Py_UNICODE *p, + Py_ssize_t size, + PyObject *mapping, + const char *errors) { /* output object */ PyObject *res = NULL; @@ -6183,9 +6286,10 @@ return NULL; } -PyObject *PyUnicode_Translate(PyObject *str, - PyObject *mapping, - const char *errors) +PyObject * +PyUnicode_Translate(PyObject *str, + PyObject *mapping, + const char *errors) { PyObject *result; @@ -6230,10 +6334,11 @@ } /* --- Decimal Encoder ---------------------------------------------------- */ -int PyUnicode_EncodeDecimal(Py_UNICODE *s, - Py_ssize_t length, - char *output, - const char *errors) +int +PyUnicode_EncodeDecimal(Py_UNICODE *s, + Py_ssize_t length, + char *output, + const char *errors) { Py_UNICODE *p, *end; PyObject *errorHandler = NULL; @@ -6394,10 +6499,11 @@ start = 0; \ } -Py_ssize_t PyUnicode_Count(PyObject *str, - PyObject *substr, - Py_ssize_t start, - Py_ssize_t end) +Py_ssize_t +PyUnicode_Count(PyObject *str, + PyObject *substr, + Py_ssize_t start, + Py_ssize_t end) { Py_ssize_t result; PyUnicodeObject* str_obj; @@ -6424,11 +6530,12 @@ return result; } -Py_ssize_t PyUnicode_Find(PyObject *str, - PyObject *sub, - Py_ssize_t start, - Py_ssize_t end, - int direction) +Py_ssize_t +PyUnicode_Find(PyObject *str, + PyObject *sub, + Py_ssize_t start, + Py_ssize_t end, + int direction) { Py_ssize_t result; @@ -6460,12 +6567,12 @@ return result; } -static -int tailmatch(PyUnicodeObject *self, - PyUnicodeObject *substring, - Py_ssize_t start, - Py_ssize_t end, - int direction) +static int +tailmatch(PyUnicodeObject *self, + PyUnicodeObject *substring, + Py_ssize_t start, + Py_ssize_t end, + int direction) { if (substring->length == 0) return 1; @@ -6486,11 +6593,12 @@ return 0; } -Py_ssize_t PyUnicode_Tailmatch(PyObject *str, - PyObject *substr, - Py_ssize_t start, - Py_ssize_t end, - int direction) +Py_ssize_t +PyUnicode_Tailmatch(PyObject *str, + PyObject *substr, + Py_ssize_t start, + Py_ssize_t end, + int direction) { Py_ssize_t result; @@ -6514,9 +6622,9 @@ /* Apply fixfct filter to the Unicode object self and return a reference to the modified object */ -static -PyObject *fixup(PyUnicodeObject *self, - int (*fixfct)(PyUnicodeObject *s)) +static PyObject * +fixup(PyUnicodeObject *self, + int (*fixfct)(PyUnicodeObject *s)) { PyUnicodeObject *u; @@ -6538,8 +6646,8 @@ return (PyObject*) u; } -static -int fixupper(PyUnicodeObject *self) +static int +fixupper(PyUnicodeObject *self) { Py_ssize_t len = self->length; Py_UNICODE *s = self->str; @@ -6559,8 +6667,8 @@ return status; } -static -int fixlower(PyUnicodeObject *self) +static int +fixlower(PyUnicodeObject *self) { Py_ssize_t len = self->length; Py_UNICODE *s = self->str; @@ -6580,8 +6688,8 @@ return status; } -static -int fixswapcase(PyUnicodeObject *self) +static int +fixswapcase(PyUnicodeObject *self) { Py_ssize_t len = self->length; Py_UNICODE *s = self->str; @@ -6601,8 +6709,8 @@ return status; } -static -int fixcapitalize(PyUnicodeObject *self) +static int +fixcapitalize(PyUnicodeObject *self) { Py_ssize_t len = self->length; Py_UNICODE *s = self->str; @@ -6625,8 +6733,8 @@ return status; } -static -int fixtitle(PyUnicodeObject *self) +static int +fixtitle(PyUnicodeObject *self) { register Py_UNICODE *p = PyUnicode_AS_UNICODE(self); register Py_UNICODE *e; @@ -6776,11 +6884,11 @@ return NULL; } -static -PyUnicodeObject *pad(PyUnicodeObject *self, - Py_ssize_t left, - Py_ssize_t right, - Py_UNICODE fill) +static PyUnicodeObject * +pad(PyUnicodeObject *self, + Py_ssize_t left, + Py_ssize_t right, + Py_UNICODE fill) { PyUnicodeObject *u; @@ -6811,7 +6919,8 @@ return u; } -PyObject *PyUnicode_Splitlines(PyObject *string, int keepends) +PyObject * +PyUnicode_Splitlines(PyObject *string, int keepends) { PyObject *list; @@ -6827,10 +6936,10 @@ return list; } -static -PyObject *split(PyUnicodeObject *self, - PyUnicodeObject *substring, - Py_ssize_t maxcount) +static PyObject * +split(PyUnicodeObject *self, + PyUnicodeObject *substring, + Py_ssize_t maxcount) { if (maxcount < 0) maxcount = PY_SSIZE_T_MAX; @@ -6847,10 +6956,10 @@ ); } -static -PyObject *rsplit(PyUnicodeObject *self, - PyUnicodeObject *substring, - Py_ssize_t maxcount) +static PyObject * +rsplit(PyUnicodeObject *self, + PyUnicodeObject *substring, + Py_ssize_t maxcount) { if (maxcount < 0) maxcount = PY_SSIZE_T_MAX; @@ -6867,11 +6976,11 @@ ); } -static -PyObject *replace(PyUnicodeObject *self, - PyUnicodeObject *str1, - PyUnicodeObject *str2, - Py_ssize_t maxcount) +static PyObject * +replace(PyUnicodeObject *self, + PyUnicodeObject *str1, + PyUnicodeObject *str2, + Py_ssize_t maxcount) { PyUnicodeObject *u; @@ -6929,7 +7038,7 @@ } } else { - Py_ssize_t n, i, j, e; + Py_ssize_t n, i, j; Py_ssize_t product, new_size, delta; Py_UNICODE *p; @@ -6961,7 +7070,6 @@ return NULL; i = 0; p = u->str; - e = self->length - str1->length; if (str1->length > 0) { while (n-- > 0) { /* look for next match */ @@ -7206,8 +7314,8 @@ #endif -int PyUnicode_Compare(PyObject *left, - PyObject *right) +int +PyUnicode_Compare(PyObject *left, PyObject *right) { if (PyUnicode_Check(left) && PyUnicode_Check(right)) return unicode_compare((PyUnicodeObject *)left, @@ -7243,9 +7351,8 @@ #define TEST_COND(cond) \ ((cond) ? Py_True : Py_False) -PyObject *PyUnicode_RichCompare(PyObject *left, - PyObject *right, - int op) +PyObject * +PyUnicode_RichCompare(PyObject *left, PyObject *right, int op) { int result; @@ -7300,8 +7407,8 @@ return Py_NotImplemented; } -int PyUnicode_Contains(PyObject *container, - PyObject *element) +int +PyUnicode_Contains(PyObject *container, PyObject *element) { PyObject *str, *sub; int result; @@ -7331,8 +7438,8 @@ /* Concat to string or Unicode object giving a new Unicode object. */ -PyObject *PyUnicode_Concat(PyObject *left, - PyObject *right) +PyObject * +PyUnicode_Concat(PyObject *left, PyObject *right) { PyUnicodeObject *u = NULL, *v = NULL, *w; @@ -8248,10 +8355,11 @@ return (PyObject*) u; } -PyObject *PyUnicode_Replace(PyObject *obj, - PyObject *subobj, - PyObject *replobj, - Py_ssize_t maxcount) +PyObject * +PyUnicode_Replace(PyObject *obj, + PyObject *subobj, + PyObject *replobj, + Py_ssize_t maxcount) { PyObject *self; PyObject *str1; @@ -8315,8 +8423,8 @@ return result; } -static -PyObject *unicode_repr(PyObject *unicode) +static PyObject * +unicode_repr(PyObject *unicode) { PyObject *repr; Py_UNICODE *p; @@ -8549,9 +8657,8 @@ return (PyObject*) pad(self, width - self->length, 0, fillchar); } -PyObject *PyUnicode_Split(PyObject *s, - PyObject *sep, - Py_ssize_t maxsplit) +PyObject * +PyUnicode_Split(PyObject *s, PyObject *sep, Py_ssize_t maxsplit) { PyObject *result; @@ -8680,9 +8787,8 @@ return PyUnicode_RPartition((PyObject *)self, separator); } -PyObject *PyUnicode_RSplit(PyObject *s, - PyObject *sep, - Py_ssize_t maxsplit) +PyObject * +PyUnicode_RSplit(PyObject *s, PyObject *sep, Py_ssize_t maxsplit) { PyObject *result; @@ -9374,8 +9480,8 @@ */ #define FORMATBUFLEN (size_t)10 -PyObject *PyUnicode_Format(PyObject *format, - PyObject *args) +PyObject * +PyUnicode_Format(PyObject *format, PyObject *args) { Py_UNICODE *fmt, *res; Py_ssize_t fmtcnt, rescnt, reslen, arglen, argidx; @@ -10066,7 +10172,8 @@ return s; } -void _Py_ReleaseInternedUnicodeStrings(void) +void +_Py_ReleaseInternedUnicodeStrings(void) { PyObject *keys; PyUnicodeObject *s; Modified: python/branches/py3k-cdecimal/Objects/weakrefobject.c ============================================================================== --- python/branches/py3k-cdecimal/Objects/weakrefobject.c (original) +++ python/branches/py3k-cdecimal/Objects/weakrefobject.c Fri Mar 4 18:50:17 2011 @@ -168,13 +168,20 @@ PyErr_Clear(); else if (PyUnicode_Check(nameobj)) name = _PyUnicode_AsString(nameobj); - PyOS_snprintf(buffer, sizeof(buffer), - name ? "" - : "", - self, - Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name, - PyWeakref_GET_OBJECT(self), - name); + if (name) + PyOS_snprintf(buffer, sizeof(buffer), + "", + self, + Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name, + PyWeakref_GET_OBJECT(self), + name); + else + PyOS_snprintf(buffer, sizeof(buffer), + "", + self, + Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name, + PyWeakref_GET_OBJECT(self)); + Py_XDECREF(nameobj); } return PyUnicode_FromString(buffer); Modified: python/branches/py3k-cdecimal/PC/VC6/pythoncore.dsp ============================================================================== --- python/branches/py3k-cdecimal/PC/VC6/pythoncore.dsp (original) +++ python/branches/py3k-cdecimal/PC/VC6/pythoncore.dsp Fri Mar 4 18:50:17 2011 @@ -54,7 +54,7 @@ # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python32.dll" +# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python33.dll" # SUBTRACT LINK32 /pdb:none !ELSEIF "$(CFG)" == "pythoncore - Win32 Debug" @@ -82,7 +82,7 @@ # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python32_d.dll" /pdbtype:sept +# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python33_d.dll" /pdbtype:sept # SUBTRACT LINK32 /pdb:none !ENDIF Modified: python/branches/py3k-cdecimal/PC/VC6/readme.txt ============================================================================== --- python/branches/py3k-cdecimal/PC/VC6/readme.txt (original) +++ python/branches/py3k-cdecimal/PC/VC6/readme.txt Fri Mar 4 18:50:17 2011 @@ -12,7 +12,7 @@ The proper order to build subprojects: 1) pythoncore (this builds the main Python DLL and library files, - python32.{dll, lib} in Release mode) + python33.{dll, lib} in Release mode) 2) python (this builds the main Python executable, python.exe in Release mode) @@ -23,7 +23,7 @@ to the subsystems they implement; see SUBPROJECTS below) When using the Debug setting, the output files have a _d added to -their name: python32_d.dll, python_d.exe, pyexpat_d.pyd, and so on. +their name: python33_d.dll, python_d.exe, pyexpat_d.pyd, and so on. SUBPROJECTS ----------- Modified: python/branches/py3k-cdecimal/PC/VS7.1/build_ssl.bat ============================================================================== --- python/branches/py3k-cdecimal/PC/VS7.1/build_ssl.bat (original) +++ python/branches/py3k-cdecimal/PC/VS7.1/build_ssl.bat Fri Mar 4 18:50:17 2011 @@ -1,12 +1,12 @@ -if "%1" == "ReleaseAMD64" call "%MSSdk%\SetEnv" /XP64 /RETAIL - - at echo off -if not defined HOST_PYTHON ( - if %1 EQU Debug ( - set HOST_PYTHON=python_d.exe - ) ELSE ( - set HOST_PYTHON=python.exe - ) -) -%HOST_PYTHON% build_ssl.py %1 %2 - +if "%1" == "ReleaseAMD64" call "%MSSdk%\SetEnv" /XP64 /RETAIL + + at echo off +if not defined HOST_PYTHON ( + if %1 EQU Debug ( + set HOST_PYTHON=python_d.exe + ) ELSE ( + set HOST_PYTHON=python.exe + ) +) +%HOST_PYTHON% build_ssl.py %1 %2 + Modified: python/branches/py3k-cdecimal/PC/VS7.1/pythoncore.vcproj ============================================================================== --- python/branches/py3k-cdecimal/PC/VS7.1/pythoncore.vcproj (original) +++ python/branches/py3k-cdecimal/PC/VS7.1/pythoncore.vcproj Fri Mar 4 18:50:17 2011 @@ -39,15 +39,15 @@ @@ -99,15 +99,15 @@ @@ -166,15 +166,15 @@ Name="VCLinkerTool" AdditionalOptions=" /MACHINE:IA64 /USELINK:MS_SDK" AdditionalDependencies="getbuildinfo.o" - OutputFile="./python32.dll" + OutputFile="./python33.dll" LinkIncremental="1" SuppressStartupBanner="FALSE" IgnoreDefaultLibraryNames="libc" GenerateDebugInformation="TRUE" - ProgramDatabaseFile=".\./python32.pdb" + ProgramDatabaseFile=".\./python33.pdb" SubSystem="2" BaseAddress="0x1e000000" - ImportLibrary=".\./python32.lib" + ImportLibrary=".\./python33.lib" TargetMachine="0"/> @@ -233,15 +233,15 @@ Name="VCLinkerTool" AdditionalOptions=" /MACHINE:AMD64 /USELINK:MS_SDK" AdditionalDependencies="getbuildinfo.o" - OutputFile="./python32.dll" + OutputFile="./python33.dll" LinkIncremental="1" SuppressStartupBanner="TRUE" IgnoreDefaultLibraryNames="libc" GenerateDebugInformation="TRUE" - ProgramDatabaseFile=".\./python32.pdb" + ProgramDatabaseFile=".\./python33.pdb" SubSystem="2" BaseAddress="0x1e000000" - ImportLibrary=".\./python32.lib" + ImportLibrary=".\./python33.lib" TargetMachine="0"/> Modified: python/branches/py3k-cdecimal/PC/VS7.1/readme.txt ============================================================================== --- python/branches/py3k-cdecimal/PC/VS7.1/readme.txt (original) +++ python/branches/py3k-cdecimal/PC/VS7.1/readme.txt Fri Mar 4 18:50:17 2011 @@ -12,7 +12,7 @@ The proper order to build subprojects: 1) pythoncore (this builds the main Python DLL and library files, - python26.{dll, lib} in Release mode) + python33.{dll, lib} in Release mode) NOTE: in previous releases, this subproject was named after the release number, e.g. python20. @@ -26,7 +26,7 @@ test slave; see SUBPROJECTS below) When using the Debug setting, the output files have a _d added to -their name: python26_d.dll, python_d.exe, parser_d.pyd, and so on. +their name: python33_d.dll, python_d.exe, parser_d.pyd, and so on. SUBPROJECTS ----------- Modified: python/branches/py3k-cdecimal/PC/VS8.0/build.bat ============================================================================== --- python/branches/py3k-cdecimal/PC/VS8.0/build.bat (original) +++ python/branches/py3k-cdecimal/PC/VS8.0/build.bat Fri Mar 4 18:50:17 2011 @@ -1,17 +1,17 @@ - at echo off -rem A batch program to build or rebuild a particular configuration. -rem just for convenience. - -setlocal -set platf=Win32 -set conf=Release -set build=/build - -:CheckOpts -if "%1"=="-c" (set conf=%2) & shift & shift & goto CheckOpts -if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts -if "%1"=="-r" (set build=/rebuild) & shift & goto CheckOpts - -set cmd=devenv pcbuild.sln %build% "%conf%|%platf%" -echo %cmd% -%cmd% + at echo off +rem A batch program to build or rebuild a particular configuration. +rem just for convenience. + +setlocal +set platf=Win32 +set conf=Release +set build=/build + +:CheckOpts +if "%1"=="-c" (set conf=%2) & shift & shift & goto CheckOpts +if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts +if "%1"=="-r" (set build=/rebuild) & shift & goto CheckOpts + +set cmd=devenv pcbuild.sln %build% "%conf%|%platf%" +echo %cmd% +%cmd% Modified: python/branches/py3k-cdecimal/PC/VS8.0/build_env.bat ============================================================================== --- python/branches/py3k-cdecimal/PC/VS8.0/build_env.bat (original) +++ python/branches/py3k-cdecimal/PC/VS8.0/build_env.bat Fri Mar 4 18:50:17 2011 @@ -1 +1 @@ -@%comspec% /k env.bat %* +@%comspec% /k env.bat %* Modified: python/branches/py3k-cdecimal/PC/VS8.0/build_pgo.bat ============================================================================== --- python/branches/py3k-cdecimal/PC/VS8.0/build_pgo.bat (original) +++ python/branches/py3k-cdecimal/PC/VS8.0/build_pgo.bat Fri Mar 4 18:50:17 2011 @@ -1,41 +1,41 @@ - at echo off -rem A batch program to build PGO (Profile guided optimization) by first -rem building instrumented binaries, then running the testsuite, and -rem finally building the optimized code. -rem Note, after the first instrumented run, one can just keep on -rem building the PGUpdate configuration while developing. - -setlocal -set platf=Win32 - -rem use the performance testsuite. This is quick and simple -set job1=..\..\tools\pybench\pybench.py -n 1 -C 1 --with-gc -set path1=..\..\tools\pybench - -rem or the whole testsuite for more thorough testing -set job2=..\..\lib\test\regrtest.py -set path2=..\..\lib - -set job=%job1% -set clrpath=%path1% - -:CheckOpts -if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts -if "%1"=="-2" (set job=%job2%) & (set clrpath=%path2%) & shift & goto CheckOpts - -set PGI=%platf%-pgi -set PGO=%platf%-pgo - - at echo on -rem build the instrumented version -call build -p %platf% -c PGInstrument - -rem remove .pyc files, .pgc files and execute the job -%PGI%\python.exe rmpyc.py %clrpath% -del %PGI%\*.pgc -%PGI%\python.exe %job% - -rem finally build the optimized version -if exist %PGO% del /s /q %PGO% -call build -p %platf% -c PGUpdate - + at echo off +rem A batch program to build PGO (Profile guided optimization) by first +rem building instrumented binaries, then running the testsuite, and +rem finally building the optimized code. +rem Note, after the first instrumented run, one can just keep on +rem building the PGUpdate configuration while developing. + +setlocal +set platf=Win32 + +rem use the performance testsuite. This is quick and simple +set job1=..\..\tools\pybench\pybench.py -n 1 -C 1 --with-gc +set path1=..\..\tools\pybench + +rem or the whole testsuite for more thorough testing +set job2=..\..\lib\test\regrtest.py +set path2=..\..\lib + +set job=%job1% +set clrpath=%path1% + +:CheckOpts +if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts +if "%1"=="-2" (set job=%job2%) & (set clrpath=%path2%) & shift & goto CheckOpts + +set PGI=%platf%-pgi +set PGO=%platf%-pgo + + at echo on +rem build the instrumented version +call build -p %platf% -c PGInstrument + +rem remove .pyc files, .pgc files and execute the job +%PGI%\python.exe rmpyc.py %clrpath% +del %PGI%\*.pgc +%PGI%\python.exe %job% + +rem finally build the optimized version +if exist %PGO% del /s /q %PGO% +call build -p %platf% -c PGUpdate + Modified: python/branches/py3k-cdecimal/PC/VS8.0/build_ssl.bat ============================================================================== --- python/branches/py3k-cdecimal/PC/VS8.0/build_ssl.bat (original) +++ python/branches/py3k-cdecimal/PC/VS8.0/build_ssl.bat Fri Mar 4 18:50:17 2011 @@ -1,12 +1,12 @@ - at echo off -if not defined HOST_PYTHON ( - if %1 EQU Debug ( - set HOST_PYTHON=python_d.exe - if not exist python32_d.dll exit 1 - ) ELSE ( - set HOST_PYTHON=python.exe - if not exist python32.dll exit 1 - ) -) -%HOST_PYTHON% build_ssl.py %1 %2 %3 - + at echo off +if not defined HOST_PYTHON ( + if %1 EQU Debug ( + set HOST_PYTHON=python_d.exe + if not exist python33_d.dll exit 1 + ) ELSE ( + set HOST_PYTHON=python.exe + if not exist python33.dll exit 1 + ) +) +%HOST_PYTHON% build_ssl.py %1 %2 %3 + Modified: python/branches/py3k-cdecimal/PC/VS8.0/env.bat ============================================================================== --- python/branches/py3k-cdecimal/PC/VS8.0/env.bat (original) +++ python/branches/py3k-cdecimal/PC/VS8.0/env.bat Fri Mar 4 18:50:17 2011 @@ -1,5 +1,5 @@ - at echo off -set VS8=%ProgramFiles%\Microsoft Visual Studio 8 -echo Build environments: x86, ia64, amd64, x86_amd64, x86_ia64 -echo. -call "%VS8%\VC\vcvarsall.bat" %1 + at echo off +set VS8=%ProgramFiles%\Microsoft Visual Studio 8 +echo Build environments: x86, ia64, amd64, x86_amd64, x86_ia64 +echo. +call "%VS8%\VC\vcvarsall.bat" %1 Modified: python/branches/py3k-cdecimal/PC/VS8.0/idle.bat ============================================================================== --- python/branches/py3k-cdecimal/PC/VS8.0/idle.bat (original) +++ python/branches/py3k-cdecimal/PC/VS8.0/idle.bat Fri Mar 4 18:50:17 2011 @@ -1,15 +1,15 @@ - at echo off -rem start idle -rem Usage: idle [-d] -rem -d Run Debug build (python_d.exe). Else release build. - -setlocal -set exe=python -PATH %PATH%;..\..\..\tcltk\bin - -if "%1"=="-d" (set exe=python_d) & shift - -set cmd=%exe% ../../Lib/idlelib/idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9 - -echo on -%cmd% + at echo off +rem start idle +rem Usage: idle [-d] +rem -d Run Debug build (python_d.exe). Else release build. + +setlocal +set exe=python +PATH %PATH%;..\..\..\tcltk\bin + +if "%1"=="-d" (set exe=python_d) & shift + +set cmd=%exe% ../../Lib/idlelib/idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9 + +echo on +%cmd% Modified: python/branches/py3k-cdecimal/PC/VS8.0/kill_python.c ============================================================================== --- python/branches/py3k-cdecimal/PC/VS8.0/kill_python.c (original) +++ python/branches/py3k-cdecimal/PC/VS8.0/kill_python.c Fri Mar 4 18:50:17 2011 @@ -106,7 +106,7 @@ /* * XXX TODO: if we really wanted to be fancy, we could check the * modules for all processes (not just the python[_d].exe ones) - * and see if any of our DLLs are loaded (i.e. python32[_d].dll), + * and see if any of our DLLs are loaded (i.e. python33[_d].dll), * as that would also inhibit our ability to rebuild the solution. * Not worth loosing sleep over though; for now, a simple check * for just the python executable should be sufficient. Modified: python/branches/py3k-cdecimal/PC/VS8.0/pyproject.vsprops ============================================================================== --- python/branches/py3k-cdecimal/PC/VS8.0/pyproject.vsprops (original) +++ python/branches/py3k-cdecimal/PC/VS8.0/pyproject.vsprops Fri Mar 4 18:50:17 2011 @@ -38,7 +38,7 @@ /> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Application" 0x0101 - -CFG=wininst - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wininst.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wininst.mak" CFG="wininst - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "wininst - Win32 Release" (based on "Win32 (x86) Application") -!MESSAGE "wininst - Win32 Debug" (based on "Win32 (x86) Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "wininst - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\lib\distutils\command" -# PROP Intermediate_Dir "temp-release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /O1 /I "..\..\Include" /I "..\..\..\zlib-1.2.3" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x407 /d "NDEBUG" -# ADD RSC /l 0x407 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 -# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0.exe" - -!ELSEIF "$(CFG)" == "wininst - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "temp-debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Z7 /Od /I "..\..\Include" /I "..\..\..\zlib-1.2.1" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /FR /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x407 /d "_DEBUG" -# ADD RSC /l 0x407 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept -# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /pdb:none /debug /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0_d.exe" - -!ENDIF - -# Begin Target - -# Name "wininst - Win32 Release" -# Name "wininst - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=.\extract.c -# End Source File -# Begin Source File - -SOURCE=.\install.c -# End Source File -# Begin Source File - -SOURCE=.\install.rc -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=.\archive.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# Begin Source File - -SOURCE=.\PythonPowered.bmp -# End Source File -# End Group -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="wininst" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=wininst - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "wininst.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "wininst.mak" CFG="wininst - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "wininst - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "wininst - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "wininst - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "..\..\lib\distutils\command" +# PROP Intermediate_Dir "temp-release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /O1 /I "..\..\Include" /I "..\..\..\zlib-1.2.3" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0x407 /d "NDEBUG" +# ADD RSC /l 0x407 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0.exe" + +!ELSEIF "$(CFG)" == "wininst - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "temp-debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c +# ADD CPP /nologo /MD /W3 /Z7 /Od /I "..\..\Include" /I "..\..\..\zlib-1.2.1" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /FR /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0x407 /d "_DEBUG" +# ADD RSC /l 0x407 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /pdb:none /debug /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0_d.exe" + +!ENDIF + +# Begin Target + +# Name "wininst - Win32 Release" +# Name "wininst - Win32 Debug" +# Begin Group "Source Files" + +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" +# Begin Source File + +SOURCE=.\extract.c +# End Source File +# Begin Source File + +SOURCE=.\install.c +# End Source File +# Begin Source File + +SOURCE=.\install.rc +# End Source File +# End Group +# Begin Group "Header Files" + +# PROP Default_Filter "h;hpp;hxx;hm;inl" +# Begin Source File + +SOURCE=.\archive.h +# End Source File +# End Group +# Begin Group "Resource Files" + +# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" +# Begin Source File + +SOURCE=.\PythonPowered.bmp +# End Source File +# End Group +# End Target +# End Project Modified: python/branches/py3k-cdecimal/PC/bdist_wininst/wininst.dsw ============================================================================== --- python/branches/py3k-cdecimal/PC/bdist_wininst/wininst.dsw (original) +++ python/branches/py3k-cdecimal/PC/bdist_wininst/wininst.dsw Fri Mar 4 18:50:17 2011 @@ -1,29 +1,29 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "wininst"=.\wininst.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - +Microsoft Developer Studio Workspace File, Format Version 6.00 +# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + +############################################################################### + +Project: "wininst"=.\wininst.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + Modified: python/branches/py3k-cdecimal/PC/example_nt/example.vcproj ============================================================================== --- python/branches/py3k-cdecimal/PC/example_nt/example.vcproj (original) +++ python/branches/py3k-cdecimal/PC/example_nt/example.vcproj Fri Mar 4 18:50:17 2011 @@ -39,7 +39,7 @@ - -BOOL WINAPI -DllMain(HINSTANCE hInstDLL, - DWORD fdwReason, - LPVOID lpReserved) -{ - return TRUE; +#include + +BOOL WINAPI +DllMain(HINSTANCE hInstDLL, + DWORD fdwReason, + LPVOID lpReserved) +{ + return TRUE; } \ No newline at end of file Modified: python/branches/py3k-cdecimal/PCbuild/build_ssl.bat ============================================================================== --- python/branches/py3k-cdecimal/PCbuild/build_ssl.bat (original) +++ python/branches/py3k-cdecimal/PCbuild/build_ssl.bat Fri Mar 4 18:50:17 2011 @@ -2,10 +2,10 @@ if not defined HOST_PYTHON ( if %1 EQU Debug ( set HOST_PYTHON=python_d.exe - if not exist python31_d.dll exit 1 + if not exist python33_d.dll exit 1 ) ELSE ( set HOST_PYTHON=python.exe - if not exist python31.dll exit 1 + if not exist python33.dll exit 1 ) ) %HOST_PYTHON% build_ssl.py %1 %2 %3 Modified: python/branches/py3k-cdecimal/PCbuild/kill_python.c ============================================================================== --- python/branches/py3k-cdecimal/PCbuild/kill_python.c (original) +++ python/branches/py3k-cdecimal/PCbuild/kill_python.c Fri Mar 4 18:50:17 2011 @@ -106,7 +106,7 @@ /* * XXX TODO: if we really wanted to be fancy, we could check the * modules for all processes (not just the python[_d].exe ones) - * and see if any of our DLLs are loaded (i.e. python32[_d].dll), + * and see if any of our DLLs are loaded (i.e. python33[_d].dll), * as that would also inhibit our ability to rebuild the solution. * Not worth loosing sleep over though; for now, a simple check * for just the python executable should be sufficient. Modified: python/branches/py3k-cdecimal/PCbuild/pyproject.vsprops ============================================================================== --- python/branches/py3k-cdecimal/PCbuild/pyproject.vsprops (original) +++ python/branches/py3k-cdecimal/PCbuild/pyproject.vsprops Fri Mar 4 18:50:17 2011 @@ -38,7 +38,7 @@ /> cf_flags |= PyCF_IGNORE_COOKIE; - cmd = _PyUnicode_AsDefaultEncodedString(cmd, NULL); + cmd = _PyUnicode_AsDefaultEncodedString(cmd); if (cmd == NULL) return NULL; } @@ -766,7 +765,6 @@ { PyObject *v; PyObject *prog, *globals = Py_None, *locals = Py_None; - int plain = 0; if (!PyArg_UnpackTuple(args, "exec", 1, 3, &prog, &globals, &locals)) return NULL; @@ -775,7 +773,6 @@ globals = PyEval_GetGlobals(); if (locals == Py_None) { locals = PyEval_GetLocals(); - plain = 1; } if (!globals || !locals) { PyErr_SetString(PyExc_SystemError, @@ -1621,6 +1618,7 @@ PyObject *stdin_encoding; char *stdin_encoding_str; PyObject *result; + size_t len; stdin_encoding = PyObject_GetAttrString(fin, "encoding"); if (!stdin_encoding) @@ -1685,19 +1683,23 @@ Py_DECREF(stdin_encoding); return NULL; } - if (*s == '\0') { + + len = strlen(s); + if (len == 0) { PyErr_SetNone(PyExc_EOFError); result = NULL; } - else { /* strip trailing '\n' */ - size_t len = strlen(s); + else { if (len > PY_SSIZE_T_MAX) { PyErr_SetString(PyExc_OverflowError, "input: input too long"); result = NULL; } else { - result = PyUnicode_Decode(s, len-1, stdin_encoding_str, NULL); + len--; /* strip trailing '\n' */ + if (len != 0 && s[len-1] == '\r') + len--; /* strip trailing '\r' */ + result = PyUnicode_Decode(s, len, stdin_encoding_str, NULL); } } Py_DECREF(stdin_encoding); Modified: python/branches/py3k-cdecimal/Python/ceval.c ============================================================================== --- python/branches/py3k-cdecimal/Python/ceval.c (original) +++ python/branches/py3k-cdecimal/Python/ceval.c Fri Mar 4 18:50:17 2011 @@ -811,10 +811,6 @@ unsigned char *first_instr; PyObject *names; PyObject *consts; -#if defined(Py_DEBUG) || defined(LLTRACE) - /* Make it easier to find out where we are with a debugger */ - char *filename; -#endif /* Computed GOTOs, or the-optimization-commonly-but-improperly-known-as-"threaded code" @@ -1227,18 +1223,6 @@ #ifdef LLTRACE lltrace = PyDict_GetItemString(f->f_globals, "__lltrace__") != NULL; #endif -#if defined(Py_DEBUG) || defined(LLTRACE) - { - PyObject *error_type, *error_value, *error_traceback; - PyErr_Fetch(&error_type, &error_value, &error_traceback); - filename = _PyUnicode_AsString(co->co_filename); - if (filename == NULL && tstate->overflowed) { - /* maximum recursion depth exceeded */ - goto exit_eval_frame; - } - PyErr_Restore(error_type, error_value, error_traceback); - } -#endif why = WHY_NOT; err = 0; @@ -2706,7 +2690,7 @@ Py_DECREF(*pfunc); *pfunc = self; na++; - n++; + /* n++; */ } else Py_INCREF(func); sp = stack_pointer; @@ -3042,7 +3026,7 @@ PyTrace_RETURN, retval)) { Py_XDECREF(retval); retval = NULL; - why = WHY_EXCEPTION; + /* why = WHY_EXCEPTION; */ } } } Modified: python/branches/py3k-cdecimal/Python/ceval_gil.h ============================================================================== --- python/branches/py3k-cdecimal/Python/ceval_gil.h (original) +++ python/branches/py3k-cdecimal/Python/ceval_gil.h Fri Mar 4 18:50:17 2011 @@ -334,12 +334,15 @@ static void drop_gil(PyThreadState *tstate) { - /* NOTE: tstate is allowed to be NULL. */ if (!_Py_atomic_load_relaxed(&gil_locked)) Py_FatalError("drop_gil: GIL is not locked"); - if (tstate != NULL && - tstate != _Py_atomic_load_relaxed(&gil_last_holder)) - Py_FatalError("drop_gil: wrong thread state"); + /* tstate is allowed to be NULL (early interpreter init) */ + if (tstate != NULL) { + /* Sub-interpreter support: threads might have been switched + under our feet using PyThreadState_Swap(). Fix the GIL last + holder variable so that our heuristics work. */ + _Py_atomic_store_relaxed(&gil_last_holder, tstate); + } MUTEX_LOCK(gil_mutex); _Py_ANNOTATE_RWLOCK_RELEASED(&gil_locked, /*is_write=*/1); Modified: python/branches/py3k-cdecimal/Python/compile.c ============================================================================== --- python/branches/py3k-cdecimal/Python/compile.c (original) +++ python/branches/py3k-cdecimal/Python/compile.c Fri Mar 4 18:50:17 2011 @@ -3026,7 +3026,7 @@ case Name_kind: /* optimize away names that can't be reassigned */ id = PyBytes_AS_STRING( - _PyUnicode_AsDefaultEncodedString(e->v.Name.id, NULL)); + _PyUnicode_AsDefaultEncodedString(e->v.Name.id)); if (strcmp(id, "True") == 0) return 1; if (strcmp(id, "False") == 0) return 0; if (strcmp(id, "None") == 0) return 0; Modified: python/branches/py3k-cdecimal/Python/dtoa.c ============================================================================== --- python/branches/py3k-cdecimal/Python/dtoa.c (original) +++ python/branches/py3k-cdecimal/Python/dtoa.c Fri Mar 4 18:50:17 2011 @@ -2055,7 +2055,7 @@ + Exp_msk1 ; word1(&rv) = 0; - dsign = 0; + /* dsign = 0; */ break; } } @@ -2092,7 +2092,7 @@ goto undfl; } } - dsign = 1 - dsign; + /* dsign = 1 - dsign; */ break; } if ((aadj = ratio(delta, bs)) <= 2.) { Modified: python/branches/py3k-cdecimal/Python/dynload_aix.c ============================================================================== --- python/branches/py3k-cdecimal/Python/dynload_aix.c (original) +++ python/branches/py3k-cdecimal/Python/dynload_aix.c Fri Mar 4 18:50:17 2011 @@ -12,7 +12,7 @@ #ifdef AIX_GENUINE_CPLUSPLUS -#include "/usr/lpp/xlC/include/load.h" +#include #define aix_load loadAndInit #else #define aix_load load @@ -154,7 +154,7 @@ } -dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, +dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname, const char *pathname, FILE *fp) { dl_funcptr p; Modified: python/branches/py3k-cdecimal/Python/dynload_dl.c ============================================================================== --- python/branches/py3k-cdecimal/Python/dynload_dl.c (original) +++ python/branches/py3k-cdecimal/Python/dynload_dl.c Fri Mar 4 18:50:17 2011 @@ -10,17 +10,17 @@ extern char *Py_GetProgramName(void); const struct filedescr _PyImport_DynLoadFiletab[] = { - {".o", "rb", C_EXTENSION}, - {"module.o", "rb", C_EXTENSION}, - {0, 0} + {".o", "rb", C_EXTENSION}, + {"module.o", "rb", C_EXTENSION}, + {0, 0} }; -dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, - const char *pathname, FILE *fp) +dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname, + const char *pathname, FILE *fp) { - char funcname[258]; + char funcname[258]; - PyOS_snprintf(funcname, sizeof(funcname), "PyInit_%.200s", shortname); - return dl_loadmod(Py_GetProgramName(), pathname, funcname); + PyOS_snprintf(funcname, sizeof(funcname), "PyInit_%.200s", shortname); + return dl_loadmod(Py_GetProgramName(), pathname, funcname); } Modified: python/branches/py3k-cdecimal/Python/dynload_hpux.c ============================================================================== --- python/branches/py3k-cdecimal/Python/dynload_hpux.c (original) +++ python/branches/py3k-cdecimal/Python/dynload_hpux.c Fri Mar 4 18:50:17 2011 @@ -19,7 +19,7 @@ {0, 0} }; -dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, +dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname, const char *pathname, FILE *fp) { dl_funcptr p; Modified: python/branches/py3k-cdecimal/Python/dynload_next.c ============================================================================== --- python/branches/py3k-cdecimal/Python/dynload_next.c (original) +++ python/branches/py3k-cdecimal/Python/dynload_next.c Fri Mar 4 18:50:17 2011 @@ -31,8 +31,8 @@ #define LINKOPTIONS NSLINKMODULE_OPTION_BINDNOW| \ NSLINKMODULE_OPTION_RETURN_ON_ERROR|NSLINKMODULE_OPTION_PRIVATE #endif -dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, - const char *pathname, FILE *fp) +dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname, + const char *pathname, FILE *fp) { dl_funcptr p = NULL; char funcname[258]; Modified: python/branches/py3k-cdecimal/Python/dynload_os2.c ============================================================================== --- python/branches/py3k-cdecimal/Python/dynload_os2.c (original) +++ python/branches/py3k-cdecimal/Python/dynload_os2.c Fri Mar 4 18:50:17 2011 @@ -15,7 +15,7 @@ {0, 0} }; -dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, +dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname, const char *pathname, FILE *fp) { dl_funcptr p; Modified: python/branches/py3k-cdecimal/Python/dynload_shlib.c ============================================================================== --- python/branches/py3k-cdecimal/Python/dynload_shlib.c (original) +++ python/branches/py3k-cdecimal/Python/dynload_shlib.c Fri Mar 4 18:50:17 2011 @@ -75,7 +75,7 @@ static int nhandles = 0; -dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, +dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname, const char *pathname, FILE *fp) { dl_funcptr p; Modified: python/branches/py3k-cdecimal/Python/dynload_win.c ============================================================================== --- python/branches/py3k-cdecimal/Python/dynload_win.c (original) +++ python/branches/py3k-cdecimal/Python/dynload_win.c Fri Mar 4 18:50:17 2011 @@ -171,7 +171,7 @@ return NULL; } -dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, +dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname, const char *pathname, FILE *fp) { dl_funcptr p; Modified: python/branches/py3k-cdecimal/Python/getargs.c ============================================================================== --- python/branches/py3k-cdecimal/Python/getargs.c (original) +++ python/branches/py3k-cdecimal/Python/getargs.c Fri Mar 4 18:50:17 2011 @@ -551,7 +551,7 @@ #define UNICODE_DEFAULT_ENCODING(arg) \ - _PyUnicode_AsDefaultEncodedString(arg, NULL) + _PyUnicode_AsDefaultEncodedString(arg) /* Format an error message generated by convertsimple(). */ @@ -966,9 +966,10 @@ case 'u': /* raw unicode buffer (Py_UNICODE *) */ case 'Z': /* raw unicode buffer or None */ { + Py_UNICODE **p = va_arg(*p_va, Py_UNICODE **); + if (*format == '#') { /* any buffer-like object */ /* "s#" or "Z#" */ - Py_UNICODE **p = va_arg(*p_va, Py_UNICODE **); FETCH_SIZE; if (c == 'Z' && arg == Py_None) { @@ -984,8 +985,6 @@ format++; } else { /* "s" or "Z" */ - Py_UNICODE **p = va_arg(*p_va, Py_UNICODE **); - if (c == 'Z' && arg == Py_None) *p = NULL; else if (PyUnicode_Check(arg)) { Modified: python/branches/py3k-cdecimal/Python/import.c ============================================================================== --- python/branches/py3k-cdecimal/Python/import.c (original) +++ python/branches/py3k-cdecimal/Python/import.c Fri Mar 4 18:50:17 2011 @@ -636,7 +636,7 @@ } PyObject * -_PyImport_FindExtensionUnicode(char *name, PyObject *filename) +_PyImport_FindExtensionUnicode(const char *name, PyObject *filename) { PyObject *mod, *mdict; PyModuleDef* def; @@ -680,7 +680,7 @@ } PyObject * -_PyImport_FindBuiltin(char *name) +_PyImport_FindBuiltin(const char *name) { PyObject *res, *filename; filename = PyUnicode_FromString(name); @@ -698,18 +698,18 @@ 'NEW' REFERENCE! */ PyObject * -PyImport_AddModule(const char *name) +PyImport_AddModuleObject(PyObject *name) { PyObject *modules = PyImport_GetModuleDict(); PyObject *m; - if ((m = PyDict_GetItemString(modules, name)) != NULL && + if ((m = PyDict_GetItem(modules, name)) != NULL && PyModule_Check(m)) return m; - m = PyModule_New(name); + m = PyModule_NewObject(name); if (m == NULL) return NULL; - if (PyDict_SetItemString(modules, name, m) != 0) { + if (PyDict_SetItem(modules, name, m) != 0) { Py_DECREF(m); return NULL; } @@ -718,14 +718,27 @@ return m; } +PyObject * +PyImport_AddModule(const char *name) +{ + PyObject *nameobj, *module; + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + module = PyImport_AddModuleObject(nameobj); + Py_DECREF(nameobj); + return module; +} + + /* Remove name from sys.modules, if it's there. */ static void -remove_module(const char *name) +remove_module(PyObject *name) { PyObject *modules = PyImport_GetModuleDict(); - if (PyDict_GetItemString(modules, name) == NULL) + if (PyDict_GetItem(modules, name) == NULL) return; - if (PyDict_DelItemString(modules, name) < 0) + if (PyDict_DelItem(modules, name) < 0) Py_FatalError("import: deleting existing key in" "sys.modules failed"); } @@ -763,10 +776,42 @@ PyImport_ExecCodeModuleWithPathnames(char *name, PyObject *co, char *pathname, char *cpathname) { + PyObject *m = NULL; + PyObject *nameobj, *pathobj = NULL, *cpathobj = NULL; + + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + + if (pathname != NULL) { + pathobj = PyUnicode_DecodeFSDefault(pathname); + if (pathobj == NULL) + goto error; + } else + pathobj = NULL; + if (cpathname != NULL) { + cpathobj = PyUnicode_DecodeFSDefault(cpathname); + if (cpathobj == NULL) + goto error; + } else + cpathobj = NULL; + m = PyImport_ExecCodeModuleObject(nameobj, co, pathobj, cpathobj); +error: + Py_DECREF(nameobj); + Py_XDECREF(pathobj); + Py_XDECREF(cpathobj); + return m; +} + +PyObject* +PyImport_ExecCodeModuleObject(PyObject *name, PyObject *co, PyObject *pathname, + PyObject *cpathname) +{ PyObject *modules = PyImport_GetModuleDict(); PyObject *m, *d, *v; + PyObject *pathbytes; - m = PyImport_AddModule(name); + m = PyImport_AddModuleObject(name); if (m == NULL) return NULL; /* If the module is being reloaded, we get the old module back @@ -778,12 +823,18 @@ goto error; } /* Remember the filename as the __file__ attribute */ - v = NULL; if (pathname != NULL) { - v = get_sourcefile(pathname); + pathbytes = PyUnicode_EncodeFSDefault(pathname); + if (pathbytes != NULL) { + v = get_sourcefile(PyBytes_AS_STRING(pathbytes)); + Py_DECREF(pathbytes); + } else + v = NULL; if (v == NULL) PyErr_Clear(); } + else + v = NULL; if (v == NULL) { v = ((PyCodeObject *)co)->co_filename; Py_INCREF(v); @@ -793,27 +844,21 @@ Py_DECREF(v); /* Remember the pyc path name as the __cached__ attribute. */ - if (cpathname == NULL) { - v = Py_None; - Py_INCREF(v); - } - else if ((v = PyUnicode_FromString(cpathname)) == NULL) { - PyErr_Clear(); /* Not important enough to report */ + if (cpathname != NULL) + v = cpathname; + else v = Py_None; - Py_INCREF(v); - } if (PyDict_SetItemString(d, "__cached__", v) != 0) PyErr_Clear(); /* Not important enough to report */ - Py_DECREF(v); v = PyEval_EvalCode(co, d, d); if (v == NULL) goto error; Py_DECREF(v); - if ((m = PyDict_GetItemString(modules, name)) == NULL) { + if ((m = PyDict_GetItem(modules, name)) == NULL) { PyErr_Format(PyExc_ImportError, - "Loaded module %.200s not found in sys.modules", + "Loaded module %R not found in sys.modules", name); return NULL; } @@ -1547,8 +1592,8 @@ pathname and an open file. Return NULL if the module is not found. */ #ifdef MS_COREDLL -extern FILE *PyWin_FindRegisteredModule(const char *, struct filedescr **, - char *, Py_ssize_t); +extern FILE *_PyWin_FindRegisteredModule(const char *, struct filedescr **, + char *, Py_ssize_t); #endif static int case_ok(char *, Py_ssize_t, Py_ssize_t, char *); @@ -1631,7 +1676,7 @@ return &fd_builtin; } #ifdef MS_COREDLL - fp = PyWin_FindRegisteredModule(name, &fdp, buf, buflen); + fp = _PyWin_FindRegisteredModule(name, &fdp, buf, buflen); if (fp != NULL) { *p_fp = fp; return fdp; Modified: python/branches/py3k-cdecimal/Python/importdl.c ============================================================================== --- python/branches/py3k-cdecimal/Python/importdl.c (original) +++ python/branches/py3k-cdecimal/Python/importdl.c Fri Mar 4 18:50:17 2011 @@ -12,8 +12,7 @@ #include "importdl.h" -extern dl_funcptr _PyImport_GetDynLoadFunc(const char *name, - const char *shortname, +extern dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname, const char *pathname, FILE *fp); @@ -48,7 +47,7 @@ shortname = lastdot+1; } - p0 = _PyImport_GetDynLoadFunc(name, shortname, pathname, fp); + p0 = _PyImport_GetDynLoadFunc(shortname, pathname, fp); p = (PyObject*(*)(void))p0; if (PyErr_Occurred()) goto error; Modified: python/branches/py3k-cdecimal/Python/pystrtod.c ============================================================================== --- python/branches/py3k-cdecimal/Python/pystrtod.c (original) +++ python/branches/py3k-cdecimal/Python/pystrtod.c Fri Mar 4 18:50:17 2011 @@ -954,7 +954,7 @@ /* shouldn't get here: Gay's code should always return something starting with a digit, an 'I', or 'N' */ strncpy(p, "ERR", 3); - p += 3; + /* p += 3; */ assert(0); } goto exit; Modified: python/branches/py3k-cdecimal/Python/pythonrun.c ============================================================================== --- python/branches/py3k-cdecimal/Python/pythonrun.c (original) +++ python/branches/py3k-cdecimal/Python/pythonrun.c Fri Mar 4 18:50:17 2011 @@ -778,6 +778,7 @@ { PyObject *buf = NULL, *stream = NULL, *text = NULL, *raw = NULL, *res; const char* mode; + const char* newline; PyObject *line_buffering; int buffering, isatty; @@ -828,9 +829,17 @@ Py_CLEAR(raw); Py_CLEAR(text); + newline = "\n"; +#ifdef MS_WINDOWS + if (!write_mode) { + /* translate \r\n to \n for sys.stdin on Windows */ + newline = NULL; + } +#endif + stream = PyObject_CallMethod(io, "TextIOWrapper", "OsssO", buf, encoding, errors, - "\n", line_buffering); + newline, line_buffering); Py_CLEAR(buf); if (stream == NULL) goto error; Modified: python/branches/py3k-cdecimal/Python/sysmodule.c ============================================================================== --- python/branches/py3k-cdecimal/Python/sysmodule.c (original) +++ python/branches/py3k-cdecimal/Python/sysmodule.c Fri Mar 4 18:50:17 2011 @@ -1176,7 +1176,6 @@ PyObject *opts; PyObject *name = NULL, *value = NULL; const wchar_t *name_end; - int r; opts = get_xoptions(); if (opts == NULL) @@ -1194,7 +1193,7 @@ } if (name == NULL || value == NULL) goto error; - r = PyDict_SetItem(opts, name, value); + PyDict_SetItem(opts, name, value); Py_DECREF(name); Py_DECREF(value); return; Modified: python/branches/py3k-cdecimal/README ============================================================================== --- python/branches/py3k-cdecimal/README (original) +++ python/branches/py3k-cdecimal/README Fri Mar 4 18:50:17 2011 @@ -1,9 +1,8 @@ -This is Python version 3.2 beta 2 -================================= +This is Python version 3.3 alpha 0 +================================== Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 -Python Software Foundation. -All rights reserved. +Python Software Foundation. All rights reserved. Python 3.x is a new version of the language, which is incompatible with the 2.x line of releases. The language is mostly the same, but many details, especially @@ -51,9 +50,9 @@ ---------- We try to have a comprehensive overview of the changes in the "What's New in -Python 3.2" document, found at +Python 3.3" document, found at - http://docs.python.org/3.2/whatsnew/3.2.html + http://docs.python.org/3.3/whatsnew/3.3.html For a more detailed change log, read Misc/NEWS (though this file, too, is incomplete, and also doesn't list anything merged in from the 2.7 release under @@ -66,9 +65,9 @@ Documentation ------------- -Documentation for Python 3.2 is online, updated daily: +Documentation for Python 3.3 is online, updated daily: - http://docs.python.org/3.2/ + http://docs.python.org/3.3/ It can also be downloaded in many formats for faster access. The documentation is downloadable in HTML, PDF, and reStructuredText formats; the latter version @@ -86,7 +85,7 @@ A source-to-source translation tool, "2to3", can take care of the mundane task of converting large amounts of source code. It is not a complete solution but is complemented by the deprecation warnings in 2.6. See -http://docs.python.org/3.2/library/2to3.html for more information. +http://docs.python.org/3.3/library/2to3.html for more information. Testing @@ -126,8 +125,8 @@ Install that version using "make install". Install all other versions using "make altinstall". -For example, if you want to install Python 2.5, 2.6 and 3.2 with 2.6 being the -primary version, you would execute "make install" in your 2.6 build directory +For example, if you want to install Python 2.6, 2.7 and 3.3 with 2.7 being the +primary version, you would execute "make install" in your 2.7 build directory and "make altinstall" in the others. @@ -153,8 +152,8 @@ ------------------------- If you have a proposal to change Python, you may want to send an email to the -comp.lang.python or python-ideas mailing lists for inital feedback. A Python -Enhancement Proposal (PEP) may be submitted if your idea gains ground. All +comp.lang.python or python-ideas mailing lists for inital feedback. A Python +Enhancement Proposal (PEP) may be submitted if your idea gains ground. All current PEPs, as well as guidelines for submitting a new PEP, are listed at http://www.python.org/dev/peps/. @@ -162,32 +161,27 @@ Release Schedule ---------------- -See PEP 392 for release details: http://www.python.org/dev/peps/pep-0392/ +See PEP XXX for release details: http://www.python.org/dev/peps/pep-0XXX/ Copyright and License Information --------------------------------- -Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 -Python Software Foundation. -All rights reserved. +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 +Python Software Foundation. All rights reserved. -Copyright (c) 2000 BeOpen.com. -All rights reserved. +Copyright (c) 2000 BeOpen.com. All rights reserved. -Copyright (c) 1995-2001 Corporation for National Research Initiatives. -All rights reserved. +Copyright (c) 1995-2001 Corporation for National Research Initiatives. All +rights reserved. -Copyright (c) 1991-1995 Stichting Mathematisch Centrum. -All rights reserved. +Copyright (c) 1991-1995 Stichting Mathematisch Centrum. All rights reserved. -See the file "LICENSE" for information on the history of this -software, terms & conditions for usage, and a DISCLAIMER OF ALL -WARRANTIES. +See the file "LICENSE" for information on the history of this software, terms & +conditions for usage, and a DISCLAIMER OF ALL WARRANTIES. -This Python distribution contains *no* GNU General Public License -(GPL) code, so it may be used in proprietary projects. There are -interfaces to some GNU code but these are entirely optional. +This Python distribution contains *no* GNU General Public License (GPL) code, so +it may be used in proprietary projects. There are interfaces to some GNU code +but these are entirely optional. -All trademarks referenced herein are property of their respective -holders. +All trademarks referenced herein are property of their respective holders. Modified: python/branches/py3k-cdecimal/Tools/buildbot/build-amd64.bat ============================================================================== --- python/branches/py3k-cdecimal/Tools/buildbot/build-amd64.bat (original) +++ python/branches/py3k-cdecimal/Tools/buildbot/build-amd64.bat Fri Mar 4 18:50:17 2011 @@ -1,6 +1,6 @@ - at rem Used by the buildbot "compile" step. -cmd /c Tools\buildbot\external-amd64.bat -call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 -cmd /c Tools\buildbot\clean-amd64.bat -vcbuild /useenv PCbuild\kill_python.vcproj "Debug|x64" && PCbuild\amd64\kill_python_d.exe -vcbuild PCbuild\pcbuild.sln "Debug|x64" + at rem Used by the buildbot "compile" step. +cmd /c Tools\buildbot\external-amd64.bat +call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 +cmd /c Tools\buildbot\clean-amd64.bat +vcbuild /useenv PCbuild\kill_python.vcproj "Debug|x64" && PCbuild\amd64\kill_python_d.exe +vcbuild PCbuild\pcbuild.sln "Debug|x64" Modified: python/branches/py3k-cdecimal/Tools/buildbot/build.bat ============================================================================== --- python/branches/py3k-cdecimal/Tools/buildbot/build.bat (original) +++ python/branches/py3k-cdecimal/Tools/buildbot/build.bat Fri Mar 4 18:50:17 2011 @@ -1,7 +1,7 @@ - at rem Used by the buildbot "compile" step. -cmd /c Tools\buildbot\external.bat -call "%VS90COMNTOOLS%vsvars32.bat" -cmd /c Tools\buildbot\clean.bat -vcbuild /useenv PCbuild\kill_python.vcproj "Debug|Win32" && PCbuild\kill_python_d.exe -vcbuild /useenv PCbuild\pcbuild.sln "Debug|Win32" - + at rem Used by the buildbot "compile" step. +cmd /c Tools\buildbot\external.bat +call "%VS90COMNTOOLS%vsvars32.bat" +cmd /c Tools\buildbot\clean.bat +vcbuild /useenv PCbuild\kill_python.vcproj "Debug|Win32" && PCbuild\kill_python_d.exe +vcbuild /useenv PCbuild\pcbuild.sln "Debug|Win32" + Modified: python/branches/py3k-cdecimal/Tools/buildbot/buildmsi.bat ============================================================================== --- python/branches/py3k-cdecimal/Tools/buildbot/buildmsi.bat (original) +++ python/branches/py3k-cdecimal/Tools/buildbot/buildmsi.bat Fri Mar 4 18:50:17 2011 @@ -1,21 +1,21 @@ - at rem Used by the buildbot "buildmsi" step. - -cmd /c Tools\buildbot\external.bat - at rem build release versions of things -call "%VS90COMNTOOLS%vsvars32.bat" - - at rem build Python -vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32" - - at rem build the documentation -bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp' -"%ProgramFiles%\HTML Help Workshop\hhc.exe" Doc\build\htmlhelp\python26a3.hhp - - at rem build the MSI file -cd PC -nmake /f icons.mak -cd ..\Tools\msi -del *.msi -nmake /f msisupport.mak -%HOST_PYTHON% msi.py - + at rem Used by the buildbot "buildmsi" step. + +cmd /c Tools\buildbot\external.bat + at rem build release versions of things +call "%VS90COMNTOOLS%vsvars32.bat" + + at rem build Python +vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32" + + at rem build the documentation +bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp' +"%ProgramFiles%\HTML Help Workshop\hhc.exe" Doc\build\htmlhelp\python26a3.hhp + + at rem build the MSI file +cd PC +nmake /f icons.mak +cd ..\Tools\msi +del *.msi +nmake /f msisupport.mak +%HOST_PYTHON% msi.py + Modified: python/branches/py3k-cdecimal/Tools/buildbot/clean-amd64.bat ============================================================================== --- python/branches/py3k-cdecimal/Tools/buildbot/clean-amd64.bat (original) +++ python/branches/py3k-cdecimal/Tools/buildbot/clean-amd64.bat Fri Mar 4 18:50:17 2011 @@ -1,7 +1,7 @@ - at rem Used by the buildbot "clean" step. -call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 -cd PCbuild - at echo Deleting .pyc/.pyo files ... -del /s Lib\*.pyc Lib\*.pyo -vcbuild /clean pcbuild.sln "Release|x64" -vcbuild /clean pcbuild.sln "Debug|x64" + at rem Used by the buildbot "clean" step. +call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 +cd PCbuild + at echo Deleting .pyc/.pyo files ... +del /s Lib\*.pyc Lib\*.pyo +vcbuild /clean pcbuild.sln "Release|x64" +vcbuild /clean pcbuild.sln "Debug|x64" Modified: python/branches/py3k-cdecimal/Tools/buildbot/clean.bat ============================================================================== --- python/branches/py3k-cdecimal/Tools/buildbot/clean.bat (original) +++ python/branches/py3k-cdecimal/Tools/buildbot/clean.bat Fri Mar 4 18:50:17 2011 @@ -1,7 +1,7 @@ - at rem Used by the buildbot "clean" step. -call "%VS90COMNTOOLS%vsvars32.bat" - at echo Deleting .pyc/.pyo files ... -del /s Lib\*.pyc Lib\*.pyo -cd PCbuild -vcbuild /clean pcbuild.sln "Release|Win32" -vcbuild /clean pcbuild.sln "Debug|Win32" + at rem Used by the buildbot "clean" step. +call "%VS90COMNTOOLS%vsvars32.bat" + at echo Deleting .pyc/.pyo files ... +del /s Lib\*.pyc Lib\*.pyo +cd PCbuild +vcbuild /clean pcbuild.sln "Release|Win32" +vcbuild /clean pcbuild.sln "Debug|Win32" Modified: python/branches/py3k-cdecimal/Tools/buildbot/external-amd64.bat ============================================================================== --- python/branches/py3k-cdecimal/Tools/buildbot/external-amd64.bat (original) +++ python/branches/py3k-cdecimal/Tools/buildbot/external-amd64.bat Fri Mar 4 18:50:17 2011 @@ -1,21 +1,21 @@ - at rem Fetches (and builds if necessary) external dependencies - - at rem Assume we start inside the Python source directory -call "Tools\buildbot\external-common.bat" -call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 - -if not exist tcltk64\bin\tcl85g.dll ( - cd tcl-8.5.9.0\win - nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 clean all - nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 install - cd ..\.. -) - -if not exist tcltk64\bin\tk85g.dll ( - cd tk-8.5.9.0\win - nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.5.9.0 clean - nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.5.9.0 all - nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.5.9.0 install - cd ..\.. -) - + at rem Fetches (and builds if necessary) external dependencies + + at rem Assume we start inside the Python source directory +call "Tools\buildbot\external-common.bat" +call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 + +if not exist tcltk64\bin\tcl85g.dll ( + cd tcl-8.5.9.0\win + nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 clean all + nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 install + cd ..\.. +) + +if not exist tcltk64\bin\tk85g.dll ( + cd tk-8.5.9.0\win + nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.5.9.0 clean + nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.5.9.0 all + nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.5.9.0 install + cd ..\.. +) + Modified: python/branches/py3k-cdecimal/Tools/buildbot/external-common.bat ============================================================================== --- python/branches/py3k-cdecimal/Tools/buildbot/external-common.bat (original) +++ python/branches/py3k-cdecimal/Tools/buildbot/external-common.bat Fri Mar 4 18:50:17 2011 @@ -1,43 +1,43 @@ - at rem Common file shared between external.bat and external-amd64.bat. Responsible for - at rem fetching external components into the root\.. buildbot directories. - -cd .. - at rem XXX: If you need to force the buildbots to start from a fresh environment, uncomment - at rem the following, check it in, then check it out, comment it out, then check it back in. - at rem if exist bzip2-1.0.5 rd /s/q bzip2-1.0.5 - at rem if exist tcltk rd /s/q tcltk - at rem if exist tcltk64 rd /s/q tcltk64 - at rem if exist tcl8.4.12 rd /s/q tcl8.4.12 - at rem if exist tcl8.4.16 rd /s/q tcl8.4.16 - at rem if exist tcl-8.4.18.1 rd /s/q tcl-8.4.18.1 - at rem if exist tk8.4.12 rd /s/q tk8.4.12 - at rem if exist tk8.4.16 rd /s/q tk8.4.16 - at rem if exist tk-8.4.18.1 rd /s/q tk-8.4.18.1 - at rem if exist db-4.4.20 rd /s/q db-4.4.20 - at rem if exist openssl-1.0.0a rd /s/q openssl-1.0.0a - at rem if exist sqlite-3.7.4 rd /s/q sqlite-3.7.4 - - at rem bzip -if not exist bzip2-1.0.5 ( - rd /s/q bzip2-1.0.3 - svn export http://svn.python.org/projects/external/bzip2-1.0.5 -) - - at rem Sleepycat db -if not exist db-4.4.20 svn export http://svn.python.org/projects/external/db-4.4.20-vs9 db-4.4.20 - - at rem OpenSSL -if not exist openssl-1.0.0a svn export http://svn.python.org/projects/external/openssl-1.0.0a - - at rem tcl/tk -if not exist tcl-8.5.9.0 ( - rd /s/q tcltk tcltk64 - svn export http://svn.python.org/projects/external/tcl-8.5.9.0 -) -if not exist tk-8.5.9.0 svn export http://svn.python.org/projects/external/tk-8.5.9.0 - - at rem sqlite3 -if not exist sqlite-3.7.4 ( - rd /s/q sqlite-source-3.6.21 - svn export http://svn.python.org/projects/external/sqlite-3.7.4 -) + at rem Common file shared between external.bat and external-amd64.bat. Responsible for + at rem fetching external components into the root\.. buildbot directories. + +cd .. + at rem XXX: If you need to force the buildbots to start from a fresh environment, uncomment + at rem the following, check it in, then check it out, comment it out, then check it back in. + at rem if exist bzip2-1.0.5 rd /s/q bzip2-1.0.5 + at rem if exist tcltk rd /s/q tcltk + at rem if exist tcltk64 rd /s/q tcltk64 + at rem if exist tcl8.4.12 rd /s/q tcl8.4.12 + at rem if exist tcl8.4.16 rd /s/q tcl8.4.16 + at rem if exist tcl-8.4.18.1 rd /s/q tcl-8.4.18.1 + at rem if exist tk8.4.12 rd /s/q tk8.4.12 + at rem if exist tk8.4.16 rd /s/q tk8.4.16 + at rem if exist tk-8.4.18.1 rd /s/q tk-8.4.18.1 + at rem if exist db-4.4.20 rd /s/q db-4.4.20 + at rem if exist openssl-1.0.0a rd /s/q openssl-1.0.0a + at rem if exist sqlite-3.7.4 rd /s/q sqlite-3.7.4 + + at rem bzip +if not exist bzip2-1.0.5 ( + rd /s/q bzip2-1.0.3 + svn export http://svn.python.org/projects/external/bzip2-1.0.5 +) + + at rem Sleepycat db +if not exist db-4.4.20 svn export http://svn.python.org/projects/external/db-4.4.20-vs9 db-4.4.20 + + at rem OpenSSL +if not exist openssl-1.0.0a svn export http://svn.python.org/projects/external/openssl-1.0.0a + + at rem tcl/tk +if not exist tcl-8.5.9.0 ( + rd /s/q tcltk tcltk64 + svn export http://svn.python.org/projects/external/tcl-8.5.9.0 +) +if not exist tk-8.5.9.0 svn export http://svn.python.org/projects/external/tk-8.5.9.0 + + at rem sqlite3 +if not exist sqlite-3.7.4 ( + rd /s/q sqlite-source-3.6.21 + svn export http://svn.python.org/projects/external/sqlite-3.7.4 +) Modified: python/branches/py3k-cdecimal/Tools/buildbot/external.bat ============================================================================== --- python/branches/py3k-cdecimal/Tools/buildbot/external.bat (original) +++ python/branches/py3k-cdecimal/Tools/buildbot/external.bat Fri Mar 4 18:50:17 2011 @@ -1,21 +1,21 @@ - at rem Fetches (and builds if necessary) external dependencies - - at rem Assume we start inside the Python source directory -call "Tools\buildbot\external-common.bat" -call "%VS90COMNTOOLS%\vsvars32.bat" - -if not exist tcltk\bin\tcl85g.dll ( - @rem all and install need to be separate invocations, otherwise nmakehlp is not found on install - cd tcl-8.5.9.0\win - nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk clean all - nmake -f makefile.vc DEBUG=1 INSTALLDIR=..\..\tcltk install - cd ..\.. -) - -if not exist tcltk\bin\tk85g.dll ( - cd tk-8.5.9.0\win - nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.9.0 clean - nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.9.0 all - nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.9.0 install - cd ..\.. -) + at rem Fetches (and builds if necessary) external dependencies + + at rem Assume we start inside the Python source directory +call "Tools\buildbot\external-common.bat" +call "%VS90COMNTOOLS%\vsvars32.bat" + +if not exist tcltk\bin\tcl85g.dll ( + @rem all and install need to be separate invocations, otherwise nmakehlp is not found on install + cd tcl-8.5.9.0\win + nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk clean all + nmake -f makefile.vc DEBUG=1 INSTALLDIR=..\..\tcltk install + cd ..\.. +) + +if not exist tcltk\bin\tk85g.dll ( + cd tk-8.5.9.0\win + nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.9.0 clean + nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.9.0 all + nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.9.0 install + cd ..\.. +) Modified: python/branches/py3k-cdecimal/Tools/buildbot/test-amd64.bat ============================================================================== --- python/branches/py3k-cdecimal/Tools/buildbot/test-amd64.bat (original) +++ python/branches/py3k-cdecimal/Tools/buildbot/test-amd64.bat Fri Mar 4 18:50:17 2011 @@ -1,3 +1,3 @@ - at rem Used by the buildbot "test" step. -cd PCbuild -call rt.bat -q -d -x64 -uall -rw + at rem Used by the buildbot "test" step. +cd PCbuild +call rt.bat -q -d -x64 -uall -rw Modified: python/branches/py3k-cdecimal/Tools/buildbot/test.bat ============================================================================== --- python/branches/py3k-cdecimal/Tools/buildbot/test.bat (original) +++ python/branches/py3k-cdecimal/Tools/buildbot/test.bat Fri Mar 4 18:50:17 2011 @@ -1,4 +1,4 @@ - at rem Used by the buildbot "test" step. -cd PCbuild -call rt.bat -d -q -uall -rwW -n - + at rem Used by the buildbot "test" step. +cd PCbuild +call rt.bat -d -q -uall -rwW -n + Modified: python/branches/py3k-cdecimal/Tools/ccbench/ccbench.py ============================================================================== --- python/branches/py3k-cdecimal/Tools/ccbench/ccbench.py (original) +++ python/branches/py3k-cdecimal/Tools/ccbench/ccbench.py Fri Mar 4 18:50:17 2011 @@ -276,19 +276,19 @@ return sock.recv(n).decode('ascii') def latency_client(addr, nb_pings, interval): - sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) - _time = time.time - _sleep = time.sleep - def _ping(): - _sendto(sock, "%r\n" % _time(), addr) - # The first ping signals the parent process that we are ready. - _ping() - # We give the parent a bit of time to notice. - _sleep(1.0) - for i in range(nb_pings): - _sleep(interval) + with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as sock: + _time = time.time + _sleep = time.sleep + def _ping(): + _sendto(sock, "%r\n" % _time(), addr) + # The first ping signals the parent process that we are ready. _ping() - _sendto(sock, LAT_END + "\n", addr) + # We give the parent a bit of time to notice. + _sleep(1.0) + for i in range(nb_pings): + _sleep(interval) + _ping() + _sendto(sock, LAT_END + "\n", addr) def run_latency_client(**kwargs): cmd_line = [sys.executable, '-E', os.path.abspath(__file__)] @@ -363,6 +363,7 @@ for t in threads: t.join() process.wait() + sock.close() for recv_time, chunk in chunks: # NOTE: it is assumed that a line sent by a client wasn't received Modified: python/branches/py3k-cdecimal/Tools/msi/msi.py ============================================================================== --- python/branches/py3k-cdecimal/Tools/msi/msi.py (original) +++ python/branches/py3k-cdecimal/Tools/msi/msi.py Fri Mar 4 18:50:17 2011 @@ -1025,6 +1025,7 @@ lib.glob("*.pem") lib.glob("*.pck") lib.glob("cfgparser.*") + lib.add_file("zip_cp437_header.zip") lib.add_file("zipdir.zip") if dir=='capath': lib.glob("*.0") @@ -1035,8 +1036,6 @@ if dir=='xmltestdata': lib.glob("*.xml") lib.add_file("test.xml.out") - if dir=='subprocessdata': - lib.glob("*.py") if dir=='output': lib.glob("test_*") if dir=='sndhdrdata': Modified: python/branches/py3k-cdecimal/Tools/msi/uuids.py ============================================================================== --- python/branches/py3k-cdecimal/Tools/msi/uuids.py (original) +++ python/branches/py3k-cdecimal/Tools/msi/uuids.py Fri Mar 4 18:50:17 2011 @@ -85,5 +85,6 @@ '3.2.112' :'{0e350c98-8d73-4993-b686-cfe87160046e}', # 3.2b2 '3.2.121' :'{2094968d-7583-47f6-a7fd-22304532e09f}', # 3.2rc1 '3.2.122' :'{4f3edfa6-cf70-469a-825f-e1206aa7f412}', # 3.2rc2 + '3.2.123' :'{90c673d7-8cfd-4969-9816-f7d70bad87f3}', # 3.2rc3 '3.2.150' :'{b2042d5e-986d-44ec-aee3-afe4108ccc93}', # 3.2.0 } Modified: python/branches/py3k-cdecimal/Tools/scripts/abitype.py ============================================================================== --- python/branches/py3k-cdecimal/Tools/scripts/abitype.py (original) +++ python/branches/py3k-cdecimal/Tools/scripts/abitype.py Fri Mar 4 18:50:17 2011 @@ -162,7 +162,7 @@ res = [] res.append('static PyType_Slot %s_slots[] = {' % name) # defaults for spec - spec = { 'tp_doc':'NULL', 'tp_itemsize':'0' } + spec = { 'tp_itemsize':'0' } for i, val in enumerate(fields): if val.endswith('0'): continue @@ -174,7 +174,6 @@ res.append('};') res.append('static PyType_Spec %s_spec = {' % name) res.append(' %s,' % spec['tp_name']) - res.append(' %s,' % spec['tp_doc']) res.append(' %s,' % spec['tp_basicsize']) res.append(' %s,' % spec['tp_itemsize']) res.append(' %s,' % spec['tp_flags']) Modified: python/branches/py3k-cdecimal/Tools/scripts/find_recursionlimit.py ============================================================================== --- python/branches/py3k-cdecimal/Tools/scripts/find_recursionlimit.py (original) +++ python/branches/py3k-cdecimal/Tools/scripts/find_recursionlimit.py Fri Mar 4 18:50:17 2011 @@ -77,14 +77,15 @@ except ImportError: print("cannot import _pickle, skipped!") return - l = None + k, l = None, None for n in itertools.count(): try: l = _cache[n] continue # Already tried and it works, let's save some time except KeyError: for i in range(100): - l = [l] + l = [k, l] + k = {i: l} _pickle.Pickler(io.BytesIO(), protocol=-1).dump(l) _cache[n] = l Modified: python/branches/py3k-cdecimal/Tools/unicode/genwincodecs.bat ============================================================================== --- python/branches/py3k-cdecimal/Tools/unicode/genwincodecs.bat (original) +++ python/branches/py3k-cdecimal/Tools/unicode/genwincodecs.bat Fri Mar 4 18:50:17 2011 @@ -1,7 +1,7 @@ - at rem Recreate some python charmap codecs from the Windows function - at rem MultiByteToWideChar. - - at cd /d %~dp0 - at mkdir build - at rem Arabic DOS code page -c:\python30\python genwincodec.py 720 > build/cp720.py + at rem Recreate some python charmap codecs from the Windows function + at rem MultiByteToWideChar. + + at cd /d %~dp0 + at mkdir build + at rem Arabic DOS code page +c:\python30\python genwincodec.py 720 > build/cp720.py Modified: python/branches/py3k-cdecimal/configure ============================================================================== --- python/branches/py3k-cdecimal/configure (original) +++ python/branches/py3k-cdecimal/configure Fri Mar 4 18:50:17 2011 @@ -1,7 +1,7 @@ #! /bin/sh -# From configure.in Revision: 87646 . +# From configure.in Revision: 88625 . # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.65 for python 3.2. +# Generated by GNU Autoconf 2.65 for python 3.3. # # Report bugs to . # @@ -553,8 +553,8 @@ # Identity of this package. PACKAGE_NAME='python' PACKAGE_TARNAME='python' -PACKAGE_VERSION='3.2' -PACKAGE_STRING='python 3.2' +PACKAGE_VERSION='3.3' +PACKAGE_STRING='python 3.3' PACKAGE_BUGREPORT='http://bugs.python.org/' PACKAGE_URL='' @@ -1308,7 +1308,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures python 3.2 to adapt to many kinds of systems. +\`configure' configures python 3.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1369,7 +1369,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of python 3.2:";; + short | recursive ) echo "Configuration of python 3.3:";; esac cat <<\_ACEOF @@ -1507,7 +1507,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -python configure 3.2 +python configure 3.3 generated by GNU Autoconf 2.65 Copyright (C) 2009 Free Software Foundation, Inc. @@ -2335,7 +2335,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by python $as_me 3.2, which was +It was created by python $as_me 3.3, which was generated by GNU Autoconf 2.65. Invocation command line was $ $0 $@ @@ -2709,7 +2709,7 @@ mv confdefs.h.new confdefs.h -VERSION=3.2 +VERSION=3.3 # Version number of Python's own shared library file. @@ -4942,7 +4942,7 @@ BLDLIBRARY='-Wl,-R,$(LIBDIR) -L. -lpython$(LDVERSION)' RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH} INSTSONAME="$LDLIBRARY".$SOVERSION - if test $with_pydebug == no + if test "$with_pydebug" != yes then PY3LIBRARY=libpython3.so fi @@ -4957,8 +4957,7 @@ ;; esac INSTSONAME="$LDLIBRARY".$SOVERSION - PY3LIBRARY=libpython3.so - if test $with_pydebug == no + if test "$with_pydebug" != yes then PY3LIBRARY=libpython3.so fi @@ -6036,10 +6035,10 @@ unistd.h utime.h \ sys/audioio.h sys/bsdtty.h sys/epoll.h sys/event.h sys/file.h sys/loadavg.h \ sys/lock.h sys/mkdev.h sys/modem.h \ -sys/param.h sys/poll.h sys/select.h sys/socket.h sys/statvfs.h sys/stat.h \ -sys/termio.h sys/time.h \ -sys/times.h sys/types.h sys/un.h sys/utsname.h sys/wait.h pty.h libutil.h \ -sys/resource.h netpacket/packet.h sysexits.h bluetooth.h \ +sys/param.h sys/poll.h sys/select.h sys/sendfile.h sys/socket.h sys/statvfs.h \ +sys/stat.h sys/termio.h sys/time.h \ +sys/times.h sys/types.h sys/uio.h sys/un.h sys/utsname.h sys/wait.h pty.h \ +libutil.h sys/resource.h netpacket/packet.h sysexits.h bluetooth.h \ bluetooth/bluetooth.h linux/tipc.h spawn.h util.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` @@ -6437,6 +6436,13 @@ if test "$use_lfs" = "yes"; then # Two defines needed to enable largefile support on various platforms # These may affect some typedefs +case $ac_sys_system/$ac_sys_release in +AIX*) + +$as_echo "#define _LARGE_FILES 1" >>confdefs.h + + ;; +esac $as_echo "#define _LARGEFILE_SOURCE 1" >>confdefs.h @@ -7552,7 +7558,7 @@ then case $ac_sys_system/$ac_sys_release in AIX*) - BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:Modules/python.exp -L\$(srcdir)" + BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/Modules/python.exp" LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp" ;; IRIX/5*) LDSHARED="ld -shared";; @@ -7811,6 +7817,51 @@ # checks for libraries +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sendfile in -lsendfile" >&5 +$as_echo_n "checking for sendfile in -lsendfile... " >&6; } +if test "${ac_cv_lib_sendfile_sendfile+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lsendfile $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char sendfile (); +int +main () +{ +return sendfile (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_sendfile_sendfile=yes +else + ac_cv_lib_sendfile_sendfile=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sendfile_sendfile" >&5 +$as_echo "$ac_cv_lib_sendfile_sendfile" >&6; } +if test "x$ac_cv_lib_sendfile_sendfile" = x""yes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_LIBSENDFILE 1 +_ACEOF + + LIBS="-lsendfile $LIBS" + +fi + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if test "${ac_cv_lib_dl_dlopen+set}" = set; then : @@ -8016,7 +8067,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ - #include "/usr/lpp/xlC/include/load.h" + #include int main () { @@ -9384,18 +9435,19 @@ # checks for library functions for ac_func in alarm accept4 setitimer getitimer bind_textdomain_codeset chown \ - clock confstr ctermid execv fchmod fchown fork fpathconf ftime ftruncate \ + clock confstr ctermid execv faccessat fchmod fchmodat fchown fchownat \ + fdopendir fork fpathconf fstatat ftime ftruncate futimesat \ gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \ getpriority getresuid getresgid getpwent getspnam getspent getsid getwd \ - initgroups kill killpg lchmod lchown lstat mbrtowc mkfifo mknod mktime \ - mremap nice pathconf pause plock poll pthread_init \ - putenv readlink realpath \ - select sem_open sem_timedwait sem_getvalue sem_unlink setegid seteuid \ - setgid \ - setlocale setregid setreuid setresuid setresgid setsid setpgid setpgrp setuid setvbuf \ - sigaction siginterrupt sigrelse snprintf strftime strlcpy \ + initgroups kill killpg lchmod lchown linkat lstat mbrtowc mkdirat mkfifo \ + mkfifoat mknod mknodat mktime mremap nice openat pathconf pause plock poll \ + pthread_init putenv readlink readlinkat realpath renameat \ + select sem_open sem_timedwait sem_getvalue sem_unlink sendfile setegid seteuid \ + setgid sethostname \ + setlocale setregid setreuid setresuid setresgid setsid setpgid setpgrp setpriority setuid setvbuf \ + sigaction siginterrupt sigrelse snprintf strftime strlcpy symlinkat \ sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \ - truncate uname unsetenv utimes waitpid wait3 wait4 \ + truncate uname unlinkat unsetenv utimensat utimes waitpid wait3 wait4 \ wcscoll wcsftime wcsxfrm _getpty do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` @@ -14455,7 +14507,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by python $as_me 3.2, which was +This file was extended by python $as_me 3.3, which was generated by GNU Autoconf 2.65. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -14517,7 +14569,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -python config.status 3.2 +python config.status 3.3 configured by $0, generated by GNU Autoconf 2.65, with options \\"\$ac_cs_config\\" Modified: python/branches/py3k-cdecimal/configure.in ============================================================================== --- python/branches/py3k-cdecimal/configure.in (original) +++ python/branches/py3k-cdecimal/configure.in Fri Mar 4 18:50:17 2011 @@ -3,15 +3,8 @@ dnl *********************************************** # Set VERSION so we only need to edit in one place (i.e., here) -m4_define(PYTHON_VERSION, 3.2) +m4_define(PYTHON_VERSION, 3.3) -dnl Some m4 magic to ensure that the configure script is generated -dnl by the correct autoconf version. -m4_define([version_required], -[m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]), [$1]), 0, - [], - [m4_fatal([Autoconf version $1 is required for Python], 63)]) -]) AC_PREREQ(2.65) AC_REVISION($Revision$) @@ -738,7 +731,7 @@ BLDLIBRARY='-Wl,-R,$(LIBDIR) -L. -lpython$(LDVERSION)' RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH} INSTSONAME="$LDLIBRARY".$SOVERSION - if test $with_pydebug == no + if test "$with_pydebug" != yes then PY3LIBRARY=libpython3.so fi @@ -753,8 +746,7 @@ ;; esac INSTSONAME="$LDLIBRARY".$SOVERSION - PY3LIBRARY=libpython3.so - if test $with_pydebug == no + if test "$with_pydebug" != yes then PY3LIBRARY=libpython3.so fi @@ -1291,10 +1283,10 @@ unistd.h utime.h \ sys/audioio.h sys/bsdtty.h sys/epoll.h sys/event.h sys/file.h sys/loadavg.h \ sys/lock.h sys/mkdev.h sys/modem.h \ -sys/param.h sys/poll.h sys/select.h sys/socket.h sys/statvfs.h sys/stat.h \ -sys/termio.h sys/time.h \ -sys/times.h sys/types.h sys/un.h sys/utsname.h sys/wait.h pty.h libutil.h \ -sys/resource.h netpacket/packet.h sysexits.h bluetooth.h \ +sys/param.h sys/poll.h sys/select.h sys/sendfile.h sys/socket.h sys/statvfs.h \ +sys/stat.h sys/termio.h sys/time.h \ +sys/times.h sys/types.h sys/uio.h sys/un.h sys/utsname.h sys/wait.h pty.h \ +libutil.h sys/resource.h netpacket/packet.h sysexits.h bluetooth.h \ bluetooth/bluetooth.h linux/tipc.h spawn.h util.h) AC_HEADER_DIRENT AC_HEADER_MAJOR @@ -1377,6 +1369,12 @@ if test "$use_lfs" = "yes"; then # Two defines needed to enable largefile support on various platforms # These may affect some typedefs +case $ac_sys_system/$ac_sys_release in +AIX*) + AC_DEFINE(_LARGE_FILES, 1, + [This must be defined on AIX systems to enable large file support.]) + ;; +esac AC_DEFINE(_LARGEFILE_SOURCE, 1, [This must be defined on some systems to enable large file support.]) AC_DEFINE(_FILE_OFFSET_BITS, 64, @@ -1645,7 +1643,7 @@ then case $ac_sys_system/$ac_sys_release in AIX*) - BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:Modules/python.exp -L\$(srcdir)" + BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/Modules/python.exp" LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp" ;; IRIX/5*) LDSHARED="ld -shared";; @@ -1895,6 +1893,7 @@ # checks for libraries +AC_CHECK_LIB(sendfile, sendfile) AC_CHECK_LIB(dl, dlopen) # Dynamic linking for SunOS/Solaris and SYSV AC_CHECK_LIB(dld, shl_load) # Dynamic linking for HP-UX @@ -1915,7 +1914,7 @@ case "$ac_sys_system" in AIX*) AC_MSG_CHECKING(for genuine AIX C++ extensions support) AC_LINK_IFELSE([ - AC_LANG_PROGRAM([[#include "/usr/lpp/xlC/include/load.h"]], + AC_LANG_PROGRAM([[#include ]], [[loadAndInit("", 0, "")]]) ],[ AC_DEFINE(AIX_GENUINE_CPLUSPLUS, 1, @@ -2537,18 +2536,19 @@ # checks for library functions AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \ - clock confstr ctermid execv fchmod fchown fork fpathconf ftime ftruncate \ + clock confstr ctermid execv faccessat fchmod fchmodat fchown fchownat \ + fdopendir fork fpathconf fstatat ftime ftruncate futimesat \ gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \ getpriority getresuid getresgid getpwent getspnam getspent getsid getwd \ - initgroups kill killpg lchmod lchown lstat mbrtowc mkfifo mknod mktime \ - mremap nice pathconf pause plock poll pthread_init \ - putenv readlink realpath \ - select sem_open sem_timedwait sem_getvalue sem_unlink setegid seteuid \ - setgid \ - setlocale setregid setreuid setresuid setresgid setsid setpgid setpgrp setuid setvbuf \ - sigaction siginterrupt sigrelse snprintf strftime strlcpy \ + initgroups kill killpg lchmod lchown linkat lstat mbrtowc mkdirat mkfifo \ + mkfifoat mknod mknodat mktime mremap nice openat pathconf pause plock poll \ + pthread_init putenv readlink readlinkat realpath renameat \ + select sem_open sem_timedwait sem_getvalue sem_unlink sendfile setegid seteuid \ + setgid sethostname \ + setlocale setregid setreuid setresuid setresgid setsid setpgid setpgrp setpriority setuid setvbuf \ + sigaction siginterrupt sigrelse snprintf strftime strlcpy symlinkat \ sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \ - truncate uname unsetenv utimes waitpid wait3 wait4 \ + truncate uname unlinkat unsetenv utimensat utimes waitpid wait3 wait4 \ wcscoll wcsftime wcsxfrm _getpty) # For some functions, having a definition is not sufficient, since Modified: python/branches/py3k-cdecimal/pyconfig.h.in ============================================================================== --- python/branches/py3k-cdecimal/pyconfig.h.in (original) +++ python/branches/py3k-cdecimal/pyconfig.h.in Fri Mar 4 18:50:17 2011 @@ -205,21 +205,33 @@ /* Define to 1 if you have the `expm1' function. */ #undef HAVE_EXPM1 +/* Define to 1 if you have the `faccessat' function. */ +#undef HAVE_FACCESSAT + /* Define if you have the 'fchdir' function. */ #undef HAVE_FCHDIR /* Define to 1 if you have the `fchmod' function. */ #undef HAVE_FCHMOD +/* Define to 1 if you have the `fchmodat' function. */ +#undef HAVE_FCHMODAT + /* Define to 1 if you have the `fchown' function. */ #undef HAVE_FCHOWN +/* Define to 1 if you have the `fchownat' function. */ +#undef HAVE_FCHOWNAT + /* Define to 1 if you have the header file. */ #undef HAVE_FCNTL_H /* Define if you have the 'fdatasync' function. */ #undef HAVE_FDATASYNC +/* Define to 1 if you have the `fdopendir' function. */ +#undef HAVE_FDOPENDIR + /* Define to 1 if you have the `finite' function. */ #undef HAVE_FINITE @@ -241,6 +253,9 @@ /* Define to 1 if you have the `fseeko' function. */ #undef HAVE_FSEEKO +/* Define to 1 if you have the `fstatat' function. */ +#undef HAVE_FSTATAT + /* Define to 1 if you have the `fstatvfs' function. */ #undef HAVE_FSTATVFS @@ -259,6 +274,9 @@ /* Define to 1 if you have the `ftruncate' function. */ #undef HAVE_FTRUNCATE +/* Define to 1 if you have the `futimesat' function. */ +#undef HAVE_FUTIMESAT + /* Define to 1 if you have the `gai_strerror' function. */ #undef HAVE_GAI_STRERROR @@ -431,12 +449,18 @@ /* Define to 1 if you have the `resolv' library (-lresolv). */ #undef HAVE_LIBRESOLV +/* Define to 1 if you have the `sendfile' library (-lsendfile). */ +#undef HAVE_LIBSENDFILE + /* Define to 1 if you have the header file. */ #undef HAVE_LIBUTIL_H /* Define if you have the 'link' function. */ #undef HAVE_LINK +/* Define to 1 if you have the `linkat' function. */ +#undef HAVE_LINKAT + /* Define to 1 if you have the header file. */ #undef HAVE_LINUX_NETLINK_H @@ -467,12 +491,21 @@ /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H +/* Define to 1 if you have the `mkdirat' function. */ +#undef HAVE_MKDIRAT + /* Define to 1 if you have the `mkfifo' function. */ #undef HAVE_MKFIFO +/* Define to 1 if you have the `mkfifoat' function. */ +#undef HAVE_MKFIFOAT + /* Define to 1 if you have the `mknod' function. */ #undef HAVE_MKNOD +/* Define to 1 if you have the `mknodat' function. */ +#undef HAVE_MKNODAT + /* Define to 1 if you have the `mktime' function. */ #undef HAVE_MKTIME @@ -491,6 +524,9 @@ /* Define to 1 if you have the `nice' function. */ #undef HAVE_NICE +/* Define to 1 if you have the `openat' function. */ +#undef HAVE_OPENAT + /* Define to 1 if you have the `openpty' function. */ #undef HAVE_OPENPTY @@ -542,9 +578,15 @@ /* Define to 1 if you have the `readlink' function. */ #undef HAVE_READLINK +/* Define to 1 if you have the `readlinkat' function. */ +#undef HAVE_READLINKAT + /* Define to 1 if you have the `realpath' function. */ #undef HAVE_REALPATH +/* Define to 1 if you have the `renameat' function. */ +#undef HAVE_RENAMEAT + /* Define if you have readline 2.1 */ #undef HAVE_RL_CALLBACK @@ -584,6 +626,9 @@ /* Define to 1 if you have the `sem_unlink' function. */ #undef HAVE_SEM_UNLINK +/* Define to 1 if you have the `sendfile' function. */ +#undef HAVE_SENDFILE + /* Define to 1 if you have the `setegid' function. */ #undef HAVE_SETEGID @@ -596,6 +641,9 @@ /* Define if you have the 'setgroups' function. */ #undef HAVE_SETGROUPS +/* Define to 1 if you have the `sethostname' function. */ +#undef HAVE_SETHOSTNAME + /* Define to 1 if you have the `setitimer' function. */ #undef HAVE_SETITIMER @@ -608,6 +656,9 @@ /* Define to 1 if you have the `setpgrp' function. */ #undef HAVE_SETPGRP +/* Define to 1 if you have the `setpriority' function. */ +#undef HAVE_SETPRIORITY + /* Define to 1 if you have the `setregid' function. */ #undef HAVE_SETREGID @@ -727,6 +778,9 @@ /* Define if you have the 'symlink' function. */ #undef HAVE_SYMLINK +/* Define to 1 if you have the `symlinkat' function. */ +#undef HAVE_SYMLINKAT + /* Define to 1 if you have the `sysconf' function. */ #undef HAVE_SYSCONF @@ -780,6 +834,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_SYS_SELECT_H +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_SENDFILE_H + /* Define to 1 if you have the header file. */ #undef HAVE_SYS_SOCKET_H @@ -801,6 +858,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_UIO_H + /* Define to 1 if you have the header file. */ #undef HAVE_SYS_UN_H @@ -869,6 +929,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H +/* Define to 1 if you have the `unlinkat' function. */ +#undef HAVE_UNLINKAT + /* Define to 1 if you have the `unsetenv' function. */ #undef HAVE_UNSETENV @@ -880,6 +943,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_UTIL_H +/* Define to 1 if you have the `utimensat' function. */ +#undef HAVE_UTIMENSAT + /* Define to 1 if you have the `utimes' function. */ #undef HAVE_UTIMES @@ -1158,6 +1224,9 @@ /* This must be defined on some systems to enable large file support. */ #undef _LARGEFILE_SOURCE +/* This must be defined on AIX systems to enable large file support. */ +#undef _LARGE_FILES + /* Define to 1 if on MINIX. */ #undef _MINIX Modified: python/branches/py3k-cdecimal/setup.py ============================================================================== --- python/branches/py3k-cdecimal/setup.py (original) +++ python/branches/py3k-cdecimal/setup.py Fri Mar 4 18:50:17 2011 @@ -636,7 +636,7 @@ libs = ['crypt'] else: libs = [] - exts.append( Extension('crypt', ['cryptmodule.c'], libraries=libs) ) + exts.append( Extension('_crypt', ['_cryptmodule.c'], libraries=libs) ) # CSV files exts.append( Extension('_csv', ['_csv.c']) ) From python-checkins at python.org Fri Mar 4 20:11:45 2011 From: python-checkins at python.org (antoine.pitrou) Date: Fri, 04 Mar 2011 20:11:45 +0100 Subject: [Python-checkins] pymigr: Ouch Message-ID: http://hg.python.org/pymigr/rev/00228128b6f5 changeset: 123:00228128b6f5 user: Antoine Pitrou date: Fri Mar 04 20:11:42 2011 +0100 summary: Ouch files: branchmap.txt diff --git a/branchmap.txt b/branchmap.txt --- a/branchmap.txt +++ b/branchmap.txt @@ -20,7 +20,7 @@ multiprocessing-autoconf = legacy-trunk tlee-ast-optimize = legacy-trunk empty = legacy-trunk -tnelson-legacy-trunk-bsddb-47-upgrade = legacy-trunk +tnelson-trunk-bsddb-47-upgrade = legacy-trunk ctypes-branch = legacy-trunk decimal-branch = legacy-trunk bcannon-objcap = legacy-trunk -- Repository URL: http://hg.python.org/pymigr From python-checkins at python.org Fri Mar 4 22:11:16 2011 From: python-checkins at python.org (antoine.pitrou) Date: Fri, 04 Mar 2011 22:11:16 +0100 Subject: [Python-checkins] pymigr: Another instance of "trunk" Message-ID: http://hg.python.org/pymigr/rev/0a8f520359e4 changeset: 124:0a8f520359e4 user: Antoine Pitrou date: Fri Mar 04 22:11:13 2011 +0100 summary: Another instance of "trunk" files: README.txt diff --git a/README.txt b/README.txt --- a/README.txt +++ b/README.txt @@ -37,7 +37,7 @@ $ hg bundle --base null \ -r default -r 3.2 -r 3.1 -r 3.0 \ - -r trunk -r 2.7 -r 2.6 -r 2.5 -r 2.4 \ + -r legacy-trunk -r 2.7 -r 2.6 -r 2.5 -r 2.4 \ -r 2.3 -r 2.2 -r 2.1 -r 2.0 \ ../work.bundle -- Repository URL: http://hg.python.org/pymigr From python-checkins at python.org Sat Mar 5 00:46:21 2011 From: python-checkins at python.org (daniel.stutzbach) Date: Sat, 05 Mar 2011 00:46:21 +0100 Subject: [Python-checkins] cpython (3.2): Test commit Message-ID: http://hg.python.org/cpython/rev/443d96f45aa4 changeset: 68081:443d96f45aa4 branch: 3.2 parent: 68075:412f83bb9f51 user: Daniel Stutzbach date: Fri Mar 04 12:45:18 2011 -0800 summary: Test commit files: README diff --git a/README b/README --- a/README +++ b/README @@ -4,10 +4,10 @@ Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Python Software Foundation. All rights reserved. -Python 3.x is a new version of the language, which is incompatible with the 2.x -line of releases. The language is mostly the same, but many details, especially -how built-in objects like dictionaries and strings work, have changed -considerably, and a lot of deprecated features have finally been removed. +Python 3.x is a new version of the language, which is incompatible +with the 2.x line of releases. The language is mostly the same, but +many features have been deprecated and built-in objects like +dictionaries and strings work have finally been removed. Build Instructions -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 5 00:46:21 2011 From: python-checkins at python.org (daniel.stutzbach) Date: Sat, 05 Mar 2011 00:46:21 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge branch '3.2' into default Message-ID: http://hg.python.org/cpython/rev/29672ac2d765 changeset: 68082:29672ac2d765 parent: 68080:86700f7b0f59 parent: 68081:443d96f45aa4 user: Daniel Stutzbach date: Fri Mar 04 15:37:01 2011 -0800 summary: Merge branch '3.2' into default Conflicts: README files: README diff --git a/README b/README --- a/README +++ b/README @@ -4,12 +4,10 @@ Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Python Software Foundation. All rights reserved. -Python 3.x is a new version of the language that all of the cool kids are -using. Its incompatible with the 2.x line of releases, but porting isn't -that hard, although it's harder than ripping it on internet message boards. -The language is mostly the same, but many details, especially how built-in -objects like dictionaries and strings work, have changed considerably for the -better, and a lot of deprecated features have finally been removed. +Python 3.x is a new version of the language, which is incompatible +with the 2.x line of releases. The language is mostly the same, but +many features have been deprecated and built-in objects like +dictionaries and strings work have finally been removed. Build Instructions -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 5 02:01:01 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 05 Mar 2011 02:01:01 +0100 Subject: [Python-checkins] pymigr: Add some items Message-ID: http://hg.python.org/pymigr/rev/a6bb4e487e5c changeset: 125:a6bb4e487e5c user: Antoine Pitrou date: Sat Mar 05 02:00:59 2011 +0100 summary: Add some items files: todo.txt diff --git a/todo.txt b/todo.txt --- a/todo.txt +++ b/todo.txt @@ -54,6 +54,8 @@ * adapt build identification for Windows build process (see build-identification directory) * adapt Python-ast.c version generation process +* tackle other parts of the SVN repository when we see fit: peps, etc. +* remove old hg mirrors at http://code.python.org/hg Buildbot -- Repository URL: http://hg.python.org/pymigr From python-checkins at python.org Sat Mar 5 02:08:20 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 05 Mar 2011 02:08:20 +0100 Subject: [Python-checkins] pymigr: The peps repo is the only other one that seems relevant Message-ID: http://hg.python.org/pymigr/rev/82522e6d54d4 changeset: 126:82522e6d54d4 user: Antoine Pitrou date: Sat Mar 05 02:08:04 2011 +0100 summary: The peps repo is the only other one that seems relevant files: todo.txt diff --git a/todo.txt b/todo.txt --- a/todo.txt +++ b/todo.txt @@ -54,7 +54,7 @@ * adapt build identification for Windows build process (see build-identification directory) * adapt Python-ast.c version generation process -* tackle other parts of the SVN repository when we see fit: peps, etc. +* discuss conversion of the peps repo * remove old hg mirrors at http://code.python.org/hg -- Repository URL: http://hg.python.org/pymigr From solipsis at pitrou.net Sat Mar 5 05:13:36 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Sat, 05 Mar 2011 05:13:36 +0100 Subject: [Python-checkins] Daily py3k reference leaks (r88747): sum=0 Message-ID: py3k results for svn r88747 (hg cset 6d5540c094f2) -------------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/py3k/refleaks/reflogHIHwKT', '-x'] From python-checkins at python.org Sat Mar 5 07:51:06 2011 From: python-checkins at python.org (nick.coghlan) Date: Sat, 5 Mar 2011 07:51:06 +0100 (CET) Subject: [Python-checkins] r88753 - peps/trunk/pep-0394.txt Message-ID: <20110305065106.0C861EE9B2@mail.python.org> Author: nick.coghlan Date: Sat Mar 5 07:51:05 2011 New Revision: 88753 Log: Update symlink naming PEP based on python-dev thread responses Modified: peps/trunk/pep-0394.txt Modified: peps/trunk/pep-0394.txt ============================================================================== --- peps/trunk/pep-0394.txt (original) +++ peps/trunk/pep-0394.txt Sat Mar 5 07:51:05 2011 @@ -20,28 +20,42 @@ * ``python2`` will refer to some version of Python 2.x * ``python3`` will refer to some version of Python 3.x -* ``python`` may refer to either, depending on distribution and system +* ``python`` will refer to the same target as either ``python2`` or + ``python3``, depending on the specific distribution and system Recommendation ============== -* ``*nix`` software distributions should install the ``python2`` command into - the default path whenever a version of the Python 2 interpreter is - installed, and the same for ``python3`` and the Python 3 interpreter. When - invoked, ``python2`` should run some version of the Python 2 interpreter, - and ``python3`` should run some version of the Python 3 interpreter. The - same applies for the more general ``python`` command, which should be - installed whenever any version of Python is installed and should invoke - some Python interpreter. -* All new code that needs to invoke the Python interpreter should not specify - ``python``, but rather should specify either ``python2`` or ``python3`` (or - the more specific ``python2.x`` and ``python3.x`` versions; see the Notes). +* Unix-like software distributions (including systems like Mac OS X and + Cygwin) should install the ``python2`` command into the default path + whenever a version of the Python 2 interpreter is installed, and the same + for ``python3`` and the Python 3 interpreter. +* When invoked, ``python2`` should run some version of the Python 2 + interpreter, and ``python3`` should run some version of the Python 3 + interpreter. +* Similarly, the more general ``python`` command should be installed whenever + any version of Python is installed and should invoke the same version of + Python as either ``python2`` or ``python3``. +* For the time being, it is recommended that ``python`` should refer to + ``python2``, except on distributions which include only ``python3`` in their + base install, or those that wish to push strongly for migration of user + scripts to Python 3. +* In order to tolerate differences across platforms, all new code that needs + to invoke the Python interpreter should not specify ``python``, but rather + should specify either ``python2`` or ``python3`` (or the more specific + ``python2.x`` and ``python3.x`` versions; see the Notes). This distinction should be made in shebangs, when invoking from a shell script, when invoking via the system() call, or when invoking in any other - context. Note that, when reinvoking the interpreter from a Python script, - querying ``sys.executable`` remains the preferred approach. - + context. +* When reinvoking the interpreter from a Python script, querying + ``sys.executable`` to avoid hardcoded assumptions regarding the + interpreter location remains the preferred approach. + +These recommendations are the outcome of the relevant python-dev discussion in +March 2011 [1] (NOTE: More accurately, they will be such once that "Draft" +status disappears from the PEP header, it has been moved into the "Other +Informational PEP" section in PEP 0 and the note has been deleted) Rationale ========= @@ -50,11 +64,12 @@ ``python`` command to Python 2, some now alias it to Python 3. Some of the former also do not provide a ``python2`` command; hence, there is currently no way for Python 2 code (or any code that invokes the Python 2 -interpreter) to reliably run on all systems without modification, because both -the ``python`` and the ``python2`` commands will fail on some systems. The -recommendations in this PEP provide a very simple mechanism to restore -cross-platform support, with minimal additional work required on the part -of distribution maintainers. +interpreter directly rather than via ``sys.executable``) to reliably run on +all systems without modification, as the ``python`` command will invoke the +wrong interpreter version on some systems, and the ``python2`` command will +fail completely on others. The recommendations in this PEP provide a very +simple mechanism to restore cross-platform support, with minimal additional +work required on the part of distribution maintainers. Notes @@ -62,8 +77,10 @@ * Distributions can alias the ``python`` command to whichever version of the Python interpreter they choose (noting that, in the near term, most 3rd - party scripts will still expect this command to refer to Python 2.x). -* The ``pythonX.X`` (e.g. ``python2.6``) utilities exist on some systems, on + party scripts will still expect this command to refer to Python 2.x). The + version chosen should also be available via either the ``python2`` or + ``python3`` command as appropriate. +* The ``pythonX.X`` (e.g. ``python2.6``) commands exist on some systems, on which they invoke specific minor versions of the Python interpreter. It would be wise for distribution-specific packages to take advantage of these utilities if they exist, since it will prevent code breakage if the default @@ -73,10 +90,13 @@ the target major version, compensating, if necessary, for the small differences that exist between minor versions. This prevents the need for sysadmins to install many very similar versions of the interpreter. -* It would be wise for distribution-specific packages to always follow the +* When the ``pythonX.X`` binaries are provided by a distribution, the + ``python2`` and ``python3`` commands should refer to one of those files + rather being provided as a separate binary file. +* It is suggested that even distribution-specific packages follow the ``python2``/``python3`` convention, even in code that is not intended to operate on other distributions. This will prevent problems if the - distribution later decides to upgrade the version of the Python interpreter + distribution later decides to change the version of the Python interpreter that the ``python`` command invokes, or if a sysadmin installs a custom ``python`` command with a different major version than the distribution default. Distributions can test whether they are fully following this @@ -88,10 +108,10 @@ versa. That way, if a sysadmin does decide to replace the installed ``python`` file, they can do so without inadvertently deleting the previously installed binary. -* The first recommendation can be ignored for systems on which the ``python`` - command itself has traditionally been left undefined and users have always - had the responsibility of linking the ``python`` command to the Python - interpreter. +* As an alternative to the recommendation presented above, some distributions + may choose to leave the ``python`` command itself undefined, leaving + sysadmins and users with the responsibility to choose their own preferred + version to be made available as the ``python`` command. * If the Python 2 interpreter becomes uncommon, scripts should nevertheless continue to use the ``python3`` convention rather that just ``python``. This will ease transition in the event that yet another major version of Python @@ -108,17 +128,58 @@ these commands. This is mostly a non-issue, since the sysadmin can simply create these symbolic links and avoid further problems. + Application to the CPython Reference Interpreter ================================================ -While technically a new feature, the ``make install`` command of the 2.7 -version of CPython will be adjusted to create the ``python2`` symlink in -addition to the existing ``python`` symlink. This feature will first appear in -CPython 2.7.2. +While technically a new feature, the ``make install`` command and the Mac OS +X installer in the 2.7 version of CPython will be adjusted to create the +new ``python2`` command in addition to the existing ``python`` and +``python2.7`` commands. This feature will first appear in CPython 2.7.2. The ``make install`` command in the CPython 3.x series will continue to install only the ``python3`` symlink for the foreseeable future. + +Impact on PYTHON* Environment Variables +======================================= + +The choice of target for the ``python`` command implicitly affects a +distribution's expected interpretation of the various Python related +environment variables. The use of ``*.pth`` files in the relevant +``site-packages`` folder, the "per-user site packages" feature (see +``python -m site``) or more flexible tools such as ``virtualenv`` are all more +tolerant of the presence of multiple versions of Python on a system than the +direct use of ``PYTHONPATH``. + + +Exclusions of MS Windows +======================== + +This PEP deliberately excludes any proposals relating to Microsoft Windows. +The use of parallel installs on Windows suffers from numerous issues, +including the "last installed wins" behaviour for handling of file +associations, a lack of universal robust symlink support for easy aliasing of +commands, the fact that the Python executable is not available on ``PATH`` by +default, the fact that the ``python.exe`` and ``pythonw.exe`` names are +used for both Python 2 and Python 3 binaries and the lack of distinction +between the different Python versions when the Start menu shortcuts are +divorced from their containing folders (e.g. when they appear in the +"Recently Used" list. + +While these are questions well worth addressing, they do not have easy +answers. The authors of this particular PEP aren't even inclined to try to +begin answering them, but anyone that wants to tackle them should feel free +to start working on their own PEP :) + + +References +========== + +[1] Support the /usr/bin/python2 symlink upstream (with bonus grammar class!) + (http://mail.python.org/pipermail/python-dev/2011-March/108491.html) + + Copyright =========== This document has been placed in the public domain. From python-checkins at python.org Sat Mar 5 08:00:00 2011 From: python-checkins at python.org (nick.coghlan) Date: Sat, 5 Mar 2011 08:00:00 +0100 (CET) Subject: [Python-checkins] r88754 - peps/trunk/pep-0394.txt Message-ID: <20110305070000.21EA1EE9AD@mail.python.org> Author: nick.coghlan Date: Sat Mar 5 07:59:59 2011 New Revision: 88754 Log: Minor nits Modified: peps/trunk/pep-0394.txt Modified: peps/trunk/pep-0394.txt ============================================================================== --- peps/trunk/pep-0394.txt (original) +++ peps/trunk/pep-0394.txt Sat Mar 5 07:59:59 2011 @@ -55,7 +55,8 @@ These recommendations are the outcome of the relevant python-dev discussion in March 2011 [1] (NOTE: More accurately, they will be such once that "Draft" status disappears from the PEP header, it has been moved into the "Other -Informational PEP" section in PEP 0 and the note has been deleted) +Informational PEP" section in PEP 0 and this note has been deleted) + Rationale ========= From python-checkins at python.org Sat Mar 5 08:06:50 2011 From: python-checkins at python.org (nick.coghlan) Date: Sat, 5 Mar 2011 08:06:50 +0100 (CET) Subject: [Python-checkins] r88755 - peps/trunk/pep-0394.txt Message-ID: <20110305070650.7EABCEE9BD@mail.python.org> Author: nick.coghlan Date: Sat Mar 5 08:06:50 2011 New Revision: 88755 Log: Note that source compatible scripts may continue to refer to the version agnostic python command without affecting portability Modified: peps/trunk/pep-0394.txt Modified: peps/trunk/pep-0394.txt ============================================================================== --- peps/trunk/pep-0394.txt (original) +++ peps/trunk/pep-0394.txt Sat Mar 5 08:06:50 2011 @@ -48,6 +48,9 @@ This distinction should be made in shebangs, when invoking from a shell script, when invoking via the system() call, or when invoking in any other context. +* One exception to this is scripts that are deliberately written to be source + compatible with both Python 2.x and 3.x. Such scripts may continue to use + ``python`` on their shebang line without affecting their portability. * When reinvoking the interpreter from a Python script, querying ``sys.executable`` to avoid hardcoded assumptions regarding the interpreter location remains the preferred approach. From python-checkins at python.org Sat Mar 5 17:26:41 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 05 Mar 2011 17:26:41 +0100 Subject: [Python-checkins] devguide (hg_transition): Close branch hg_transition Message-ID: http://hg.python.org/devguide/rev/5e9711fbee48 changeset: 364:5e9711fbee48 branch: hg_transition user: Antoine Pitrou date: Sat Mar 05 17:25:29 2011 +0100 summary: Close branch hg_transition files: -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sat Mar 5 17:26:41 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 05 Mar 2011 17:26:41 +0100 Subject: [Python-checkins] devguide (merge hg_transition -> default): Merge hg_transition into default Message-ID: http://hg.python.org/devguide/rev/f8977b46f50e changeset: 365:f8977b46f50e parent: 358:540276f611ee parent: 364:5e9711fbee48 user: Antoine Pitrou date: Sat Mar 05 17:26:11 2011 +0100 summary: Merge hg_transition into default files: diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -1,7 +1,7 @@ .. _committing: -Committing Patches -================== +Committing and Pushing Changes +============================== Commit Messages --------------- @@ -28,6 +28,74 @@ contributed to the resolution, it is good practice to credit them. +Working with Mercurial_ +----------------------- + +As a core developer, the ability to push changes to the official Python +repositories means you have to be more careful with your workflow: + +* You should not push new named branches to the main repository. You can + still use them in clones that you use for development of patches; you can + also push these branches to a **separate** public repository that will be + dedicated to maintenance of the work before the work gets integrated in the + main repository. + +* You should collapse changesets of a single feature or bugfix before pushing + the result to the main repository. The reason is that we don't want the + history to be full of intermediate commits recording the private history + of the person working on a patch. If you are using the rebase_ extension, + consider adding the ``--collapse`` option to ``hg rebase``. The collapse_ + extension is another choice. + +Because of these constraints, it can be practical to use other approaches +such as mq_ (Mercurial Queues), in order to maintain patches in a single +local repository and to push them seamlessly when they are ready. + + +.. _Mercurial: http://www.hg-scm.org/ +.. _mq: http://mercurial.selenic.com/wiki/MqExtension +.. _rebase: http://mercurial.selenic.com/wiki/RebaseExtension +.. _collapse: http://mercurial.selenic.com/wiki/CollapseExtension + + +Minimal Configuration +--------------------- + +To use Mercurial as a committer (both of your and others' patches), you should +set up some basic options in your `configuration file`_. Under Windows, +TortoiseHg has a graphical settings dialog for most options, meaning you +don't need to edit the file directly (it is still available in +``%USERPROFILE%\Mercurial.ini``). Under other platforms, you must edit +``~/.hgrc``. + +Here are the minimal options you need to activate: + +* your *username*: this setting defines the name that will be used when you + :ref:`commit ` changes. The usual convention is to also include + an e-mail contact address in there:: + + [ui] + username = Your Name + +* *extended diffing*: this setting enables an `extended diff format`_ + which is more useful than the standard unified diff format as it includes + metadata about file copies and permission bits:: + + [diff] + git = on + +Under Windows, you should also enable the `eol extension`_, which will +fix any Windows-specific line endings your text editor might insert when you +create or modify versioned files. The public repository has a hook which +will reject all changesets having the wrong line endings, so enabling this +extension on your local computer is in your best interest. + + +.. _configuration file: http://www.selenic.com/mercurial/hgrc.5.html#files +.. _extended diff format: http://www.selenic.com/mercurial/hg.1.html#diffs +.. _eol extension: http://mercurial.selenic.com/wiki/EolExtension + + Handling Other's Code --------------------- @@ -48,40 +116,206 @@ ask on python-dev. -Backporting ------------ +Forward-Porting +--------------- + If the patch is a bugfix and it does not break -backwards-compatibility *at all*, then backport it to the branch(es) in -maintenance mode. The easiest way to do this is to apply the patch in the -development branch, commit, and then use svnmerge.py_ to backport the patch. +backwards-compatibility *at all*, then it should be applied to the oldest +branch applicable and forward-ported until it reaches the in-development branch +of Python. A forward-port instead of a back-port is preferred as it allows the +:abbr:`DAG (directed acyclic graph)` used by hg to work with the movement of +the patch through the codebase instead of against it. -For example, let us assume you just made commit 42 in the development branch -and you want to backport it to the ``release31-maint`` branch. You would change -your working directory to the maintenance branch and run the command:: +Even when porting an already committed patch, you should **still** check the +test suite runs successfully before committing the patch to another branch. - svnmerge.py merge -r 42 -This will try to apply the patch to the current branch and generate a commit -message. You will need to revert ``Misc/NEWS`` and do a new entry (the file -changes too much between releases to ever have a merge succeed). To do a -reversion, you can either undo the changes:: +Porting Within a Major Version +'''''''''''''''''''''''''''''' - svn revert Misc/NEWS +Assume that Python 3.3 is the current in-development version of Python and that +you have a patch that should also be applied to Python 3.2. To properly port +the patch to both versions of Python, you should first apply the patch to +Python 3.2:: -or you can manually fix the issue and tell svn the problem is resolved:: + hg update 3.2 + hg import --no-commit patch.diff + # Compile; run the test suite + hg commit - svn resolved Misc/NEWS +With the patch now committed, you want to merge the patch up into Python 3.3. +This should be done *before* pushing your changes to hg.python.org, so that +the branches are in sync on the public repository. Assuming you are doing +all of your work in a single clone, do:: -Once your checkout is ready to be committed, do:: + hg update default + hg merge 3.2 + # Fix any conflicts; compile; run the test suite + hg commit - svn ci -F svnmerge-commit-message.txt +.. note:: + *If the patch shouldn't be ported* from Python 3.2 to Python 3.3, you must + also make it explicit: merge the changes but revert them before committing:: -This will commit the backport along with using the commit message created by -``svnmerge.py`` for you. + hg update default + hg merge 3.2 + hg revert -a + hg commit -If it turns out you do not have the time to do a backport, then at least leave -the proper issue open on the tracker with a note specifying that the change -should be backported so someone else can do it. + This is necessary so that the merge gets recorded; otherwise, somebody + else will have to make a decision about your patch when they try to merge. +When you have finished your porting work (you can port several patches one +after another in your local repository), you can push **all** outstanding +changesets to hg.python.org:: -.. _svnmerge.py: http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/svnmerge/svnmerge.py + hg push + +This will push changes in both the Python 3.2 and Python 3.3 branches to +hg.python.org. + + +Porting Between Major Versions +'''''''''''''''''''''''''''''' + +.. warning:: + transplant always commits automatically. This breaks the + "run the test suite before committing" rule. We could advocate using + "hg qimport -r tip -P" afterwards but that would add another level of + complexity. + +To port a patch from, e.g., Python 3.2 to 2.7, you can use the `transplant +extension`_. Assuming you first committed your changes as changeset +``a7df1a869e4a`` in the 3.2 branch and have now :ref:`updated +` your working copy to the 2.7 branch, do:: + + hg transplant a7df1a869e4a + # Compile; run the test suite + hg push + + +Differences with ``svnmerge`` +''''''''''''''''''''''''''''' + +If you are coming from Subversion, you might be surprised by how Mercurial works. +Despite its name, ``svnmerge`` is different from ``hg merge``: while ``svnmerge`` +allows to cherrypick individual revisions, ``hg merge`` can only merge whole +lines of development in the repository's :abbr:`DAG (directed acyclic graph)`. +Therefore, ``hg merge`` might force you to review outstanding changesets that +haven't been merged by someone else yet. + +The way to avoid such situations is for everyone to make sure that they have +merged their commits to the ``default`` branch. Just type:: + + $ hg branches + default 3051:a7df1a869e4a + 3.1 3012:b560997b365d (inactive) + +and check that all branches except ``default`` are marked *inactive*. This +means there is no pending changeset to merge from these branches. + + +.. _transplant extension: http://mercurial.selenic.com/wiki/TransplantExtension + +.. seealso:: + `Merging work + `_, + in `Mercurial: The Definitive Guide `_. + + +Long-term development of features +--------------------------------- + +If you want to work on a feature long-term (perhaps you're implementing a +PEP), you will probably want to publish your work in a dedicated repository. +The following instructions will help you do so on `hg.python.org +`_'s infrastructure without requiring a lot of upload +bandwidth. + +Go to the main repository's Web page (http://hg.python.org/cpython/); there +you find a box labelled "server-side clone". Enter the relative path of the +repository you want to create on the server, for example ``features/mywork``; +and press the button. A new repository gets created on the server with all +the changesets of the original repository (it will seem very fast; this is +normal). + +You can now do a local clone of this repository on your disk:: + + $ hg clone ssh://hg at hg.python.org/features/mywork + $ cd mywork + +.. commented out: old instructions (without server-side cloning) + + First create a public (empty) repository on hg.python.org:: + + $ hg init ssh://hg at hg.python.org/features/mywork + + And do a local clone of that repository on your disk:: + + $ hg clone ssh://hg at hg.python.org/features/mywork + $ cd mywork + + There, pull all the contents from the main repository, either from a local + clone:: + + $ hg pull ../cpython + $ hg update + + or directly from the network (which is of course slower):: + + $ hg pull http://hg.python.org/cpython + $ hg update + +It is recommended that you create a new `named branch`_ for your work, so as +to easily track changes. That named branch will exist in your feature +repository, but not in the main repository:: + + $ hg branch mywork + $ hg commit -m "Creating branch mywork" + +You can now work on your feature, commit changes as you will, and push them +when desired:: + + $ hg push + +When you push them, they will land in the public repository at +``ssh://hg at hg.python.org/features/mywork`` (or +``http://hg.python.org/features/mywork`` for the read-only URL). Other +people can clone the public repository and work on the code too. + +When you want to synchronize with CPython's upstream changes, you can pull +from the main repository, either from its remote URL:: + + $ hg pull http://hg.python.org/cpython + +or from a local clone that you may have on your disk (which is of course +faster):: + + $ hg pull ../cpython + +and merge all new changes from branch ``default`` to branch ``mywork``:: + + $ hg branch + mywork + $ hg merge default + + +.. _named branch: http://mercurial.selenic.com/wiki/NamedBranches + + +Uploading a patch for review +'''''''''''''''''''''''''''' + +In this scheme, your work will probably consist of many commits (some of +them merges). If you want to upload a patch for review somewhere, you need +a single agregate patch. This is where having a dedicated named branch +``mywork`` gets handy. + +First ensure that you have pulled *and merged* all changes from the main +repository, as explained above. Then, assuming your :ref:`currently checked +out branch ` is still ``mywork``, simply do:: + + $ hg diff -r default > mywork.patch + +This will write to ``mywork.patch`` all the changes between ``default`` and +``mywork``. diff --git a/communication.rst b/communication.rst --- a/communication.rst +++ b/communication.rst @@ -31,7 +31,7 @@ it will get redirected here. Python-checkins_ sends out an email for every commit to Python's various -repositories (both svn.python.org and hg.python.org). All core developers +repositories from http://hg.python.org. All core developers subscribe to this list and are known to reply to these emails to make comments about various issues they catch in the commit. Replies get redirected to python-dev. diff --git a/coredev.rst b/coredev.rst --- a/coredev.rst +++ b/coredev.rst @@ -68,14 +68,11 @@ You can verify your commit access by looking at http://www.python.org/dev/committers which lists all core developers by -username. You can also execute the follow command and look for the word -"success" in the output:: +username. If you want to practice, there is a `test repository +`_ where you can freely commit and push any +changes you like:: - ssh pythondev at svn.python.org - -For Windows users using Pageant:: - - c:\path\to\putty\plink.exe pythondev at svn.python.org + hg clone ssh://hg at hg.python.org/test/ hgtest An entry in the :ref:`developers` should also be entered for you. Typically the person who sponsored your application to become a core developer @@ -110,12 +107,15 @@ are different than those for read-only checkouts as SSH is used instead of HTTP. -For the development branch, you can check out the development branch with:: +You can clone the repository (which contains all active branches) with:: - svn co svn+ssh://pythondev at svn.python.org/python/branches/py3k + hg clone ssh://hg at hg.python.org/cpython -Make the appropriate changes to the URL to checkout maintenance branches by -removing ``py3k`` and replacing it with the name of the branch you want. +The default branch in that repository is the current development branch. +You can of course switch your working copy to one of the maintenance branches, +for example:: + + hg update 2.7 Responsibilities diff --git a/devcycle.rst b/devcycle.rst --- a/devcycle.rst +++ b/devcycle.rst @@ -44,12 +44,11 @@ The branch for the next minor version; it is under active development for all kinds of changes: new features, semantic changes, performance improvements, bug fixes. It can be :ref:`checked out ` from -http://svn.python.org/projects/python/branches/py3k. +http://hg.python.org/cpython#py3k. Once a :ref:`final` release is made from the in-development branch (say, 3.2), a -new :ref:`maintenance branch ` (e.g. ``release32-maint``) -is created to host all bug fixing activity for further micro versions -(3.2.1, 3.2.2, etc.). +new :ref:`maintenance branch ` is created to host all bug fixing +activity for further micro versions (3.2.1, 3.2.2, etc.). .. _maintbranch: diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -6,92 +6,307 @@ Version Control ================================== -Where can I learn about the version control system used, Subversion (svn)? +Where can I learn about the version control system used, Mercurial (hg)? ------------------------------------------------------------------------------- -`Subversion`_'s (also known as ``svn``) official web site is at -http://subversion.apache.org/ . A book on Subversion published by -`O'Reilly Media`_, `Version Control with Subversion`_, is available +Mercurial_'s (also known as ``hg``) official web site is at +http://mercurial.selenic.com/. A book on Mercurial published by +`O'Reilly Media`_, `Mercurial: The Definitive Guide`_, is available for free online. -With Subversion installed, you can run the help tool that comes with -Subversion to get help:: +With Mercurial installed, you can run the help tool that comes with +Mercurial to get help:: - svn help + hg help -The man page for ``svn`` is rather scant and not very helpful. +The `man page`_ for ``hg`` provides a quick refresher on the details of +various commands, but doesn't provide any guidance on overall +workflow. -.. _Subversion: http://subversion.apache.org/ +.. _Mercurial: http://mercurial.selenic.com/ .. _O'Reilly Media: http://www.oreilly.com/ -.. _Version Control with Subversion: http://svnbook.red-bean.com/ +.. _Mercurial\: The Definitive Guide: http://hgbook.red-bean.com/ +.. _man page: http://www.selenic.com/mercurial/hg.1.html -What do I need to use Subversion? +What do I need to use Mercurial? ------------------------------------------------------------------------------- -.. _download Subversion: http://subversion.apache.org/packages.html - UNIX ''''''''''''''''''' -First, you need to `download Subversion`_. Most UNIX-based operating systems -have binary packages available. Also, most packaging systems also -have Subversion available. +First, you need to `download Mercurial`_. Most UNIX-based operating systems +have binary packages available. Most package management systems also +have native Mercurial packages available. -If you have checkin rights, you need OpenSSH_. This is needed to verify -your identity when performing commits. +If you have push rights, you need OpenSSH_. This is needed to verify +your identity when performing commits. As with Mercurial, binary packages +are typically available either online or through the platform's package +management system. +.. _download Mercurial: http://mercurial.selenic.com/downloads/ .. _OpenSSH: http://www.openssh.org/ + Windows ''''''''''''''''''' -You have several options on Windows. One is to `download Subversion`_ itself -which will give you a command-line version. Another option is to `download -TortoiseSVN`_ which integrates with Windows Explorer. +The recommended option on Windows is to `download TortoiseHg`_ which +integrates with Windows Explorer and also bundles the command line client +(meaning you can type ``hg`` in a DOS box). Note that most +entries in this FAQ only cover the command line client in detail - refer +to the TortoiseHg documentation for assistance with its graphical interface. -If you have checkin rights, you will also need an SSH client. -`Download PuTTY and friends`_ (PuTTYgen, Pageant, and Plink) for this. All -other questions in this FAQ will assume you are using these tools. +If you have push rights, you need to configure Mercurial to work with +your SSH keys. For that, open your Mercurial configuration file +(you can do so by opening the TortoiseHg configuration dialog and then +clicking *"Edit File"*). In the ``[ui]`` section, add the following line:: -Once you have both Subversion and PuTTY installed you must tell Subversion -where to find an SSH client. Do this by editing -``%APPDATA%\Subversion\config`` to have the following -section:: + ssh = TortoisePlink.exe -ssh -2 -C -i C:\path\to\yourkey.ppk - [tunnels] - ssh="c:/path/to/putty/plink.exe" -T +where ``C:\path\to\yourkey.ppk`` should be replaced with the actual path +to your SSH private key. -Change the path to be the proper one for your system. The ``-T`` -option prevents a pseudo-terminal from being created. +.. note:: + If your private key is in OpenSSH format, you must first convert it to + PuTTY format by loading it into `PuTTYgen`_. -You can use Pageant to prevent from having to type in your password for your -SSH 2 key constantly. If you prefer not to have another program running, -you need to create a profile in PuTTY. +.. _download TortoiseHg: http://tortoisehg.bitbucket.org/download/index.html -Go to Session:Saved Sessions and create a new profile named -``svn.python.org``. In Session:Host Name, enter ``svn.python.org``. In -SSH/Auth:Private key file select your private key. In Connection:Auto-login -username enter ``pythondev``. -With this set up, paths are slightly different than most other settings in that -the username is not required. Do take notice of this when choosing to check -out a project! +What's a working copy? What's a repository? +------------------------------------------- -.. _download TortoiseSVN: http://tortoisesvn.net/downloads -.. _PuTTY: http://www.chiark.greenend.org.uk/~sgtatham/putty/ -.. _download PuTTY and friends: http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html +Mercurial is a "distributed" version control system. This means that each +participant, even casual contributors, download a complete copy (called a +*clone*, since it is obtained by calling ``hg clone``) of the central +repository which can be treated as a stand-alone repository for all purposes. +That copy is called in the FAQ the *local repository*, to differentiate +with any *remote repository* you might also interact with. +But you don't modify files directly in the local repository; Mercurial doesn't +allow for it. You modify files in what's called the *working copy* associated +with your local repository: you also run compilations and tests there. +Once you are satisfied with your changes, you can :ref:`commit them `; +committing records the changes as a new *revision* in the *local repository*. -How do I update my working copy to be in sync with the repository? +Changes in your *local repository* don't get automatically shared with the +rest of the world. Mercurial ensures that you have to do so explicitly +(this allows you to experiment quite freely with multiple branches of +development, all on your private computer). The main commands for doing +so are ``hg pull`` and ``hg push``. + + +Which branches are in my local repository? +------------------------------------------ + +Typing ``hg branches`` displays the open branches in your local repository:: + + $ hg branches + default 68026:f12ef116dd10 + 3.2 68025:cef92ee1a323 + 2.7 68010:8174d00d0797 + 3.1 67955:5be8b695ea86 + 2.6 67287:5e26a860eded + 2.5 65464:e4ecac76e499 + + +Why are some branches marked "inactive"? +---------------------------------------- + +Assuming you get the following output:: + + $ hg branches + default 68042:8ff33af017ef + 3.2 68039:c17d7772c638 (inactive) + +This means all changesets in the "3.2" branch have been merged into the +"default" branch (or any other branch, if such exists). + + +.. _hg-current-branch: + +Which branch is currently checked out in my working copy? +--------------------------------------------------------- + +Use:: + + $ hg branch + default + +Or to get more information:: + + $ hg summary + parent: 68026:f12ef116dd10 tip + In FTP.close() method, make sure to also close the socket object, not only the file. + branch: default + commit: (clean) + update: (current) + + +.. _hg-switch-branches: + +How do I switch between branches inside my working copy? +-------------------------------------------------------- + +Simply use ``hg update`` to checkout another branch in the current directory:: + + $ hg branch + default + $ hg update 3.2 + 86 files updated, 0 files merged, 11 files removed, 0 files unresolved + $ hg branch + 3.2 + +Adding the ``-v`` option to ``hg update`` will list all updated files. + + +I want to keep a separate working copy per development branch, is it possible? +------------------------------------------------------------------------------ + +Just clone your local repository and update each clone to a different branch:: + + $ hg clone cpython py32 + updating to branch default + 3434 files updated, 0 files merged, 0 files removed, 0 files unresolved + $ cd py32 + $ hg update 3.2 + 86 files updated, 0 files merged, 11 files removed, 0 files unresolved + +The current branch in a working copy is "sticky": if you pull in some new +changes, ``hg update`` will update to the head of the *current branch*. + + +How do I link my local repository to a particular remote repository? +------------------------------------------------------------------------------- + +Your local repository is linked by default to the remote repository it +was *cloned* from. If you created it from scratch, however, it is not linked +to any remote repository. In ``.hg/hgrc`` file for the local repository, add +or modify the following section:: + + [paths] + default = ssh://hg at hg.python.org/devguide + +This example is for a local repository that mirrors the ``devguide`` repository +on ``hg.python.org``. The same approach works for other remote repositories. + +Anywhere that ```` is used in the commands in this +FAQ, ``hg`` will use the default remote repository if you omit the parameter. + + +How do I create a shorthand alias for a remote repository? +------------------------------------------------------------------------------- + +In your global ``.hgrc`` file add a section similar to the following:: + + [paths] + dg = ssh://hg at hg.python.org/devguide + +This example creates a ``dg`` alias for the ``devguide`` repository +on ``hg.python.org``. This allows "dg" to be entered instead of the +full URL for commands taking a repository argument (e.g. ``hg pull dg`` or +``hg outgoing dg``). + +Anywhere that ```` is used in the commands in this +FAQ, ``hg`` should accept an alias in place of a complete remote URL. + + +How do I compare my local repository to a remote repository? +------------------------------------------------------------------------------- + +To display the list of changes that are in your local repository, but not +in the remote, use:: + + hg outgoing + +This is the list of changes that will be sent if you call +``hg push ``. It does **not** include any :ref:`uncommitted +changes ` in your working copy! + +Conversely, for the list of changes that are in the remote repository but +not in the local, use:: + + hg incoming + +This is the list of changes that will be retrieved if you call +``hg pull ``. + +.. note:: + In most daily use, you will work against the default remote repository, + and therefore simply type ``hg outgoing`` and ``hg incoming``. + + In this case, you can also get a synthetic summary using + ``hg summary --remote``. + + +How do I update my local repository to be in sync with a remote repository? ------------------------------------------------------------------------------- Run:: - svn update + hg pull -from the directory you wish to update. The directory and all its -subdirectories will be updated. +from the repository you wish to pull the latest changes into. Most of the +time, that repository is a clone of the repository you want to pull from, +so you can simply type:: + + hg pull + +This doesn't update your working copy, though. See below: + + +How do I update my working copy with the latest changes? +-------------------------------------------------------- + +Do:: + + hg update + +This will update your working copy with the latest changes on the +:ref:`current branch `. If you had :ref:`uncommitted +changes ` in your working copy, they will be merged in. + +If you find yourself typing often ``hg pull`` followed by ``hg update``, +be aware that you can combine them in a single command:: + + hg pull -u + + +.. _hg-local-workflow: + +How do I apply a patch? +------------------------------------------------------------------------------- + +If you want to try out or review a patch generated using Mercurial, do:: + + hg import --no-commit somework.patch + +This will apply the changes in your working copy without committing them. +If the patch was not created by Mercurial (for example, a patch created by +Subversion and thus lacking any ``a``/``b`` directory prefixes in the patch), +add ``-p0`` to the above command. + +You can also use the ``patch`` program, but be aware that it does not +understand the `extended diff format`_ used by Mercurial. + +If you want to work on the patch using mq_ (Mercurial Queues), type instead:: + + hg qimport somework.patch + +This will create a patch in your queue with a name that matches the filename. +You can use the ``-n`` argument to specify a different name. To have the +patch applied to the working copy, type:: + + hg qpush + +Finally, to delete the patch, first un-apply it if necessary using ``hg qpop``, +then do:: + + hg qdelete somework.patch + +.. _extended diff format: http://www.selenic.com/mercurial/hg.1.html#diffs +.. _mq: http://mercurial.selenic.com/wiki/MqExtension How do I add a file or directory to the repository? @@ -99,38 +314,54 @@ Simply specify the path to the file or directory to add and run:: - svn add PATH + hg add PATH -Subversion will skip any directories it already knows about. But if -you want new files that exist in any directories specified in ``PATH``, specify -``--force`` and Subversion will check *all* directories for new files. +If ``PATH`` is a directory, Mercurial will recursively add any files in that +directory and its descendents. -You will then need to run ``svn commit`` (as discussed in -`How do I commit a change to a file?`_) to commit the file to the repository. +If you want Mercurial to figure out by itself which files should be added +and/or removed, just run:: + hg addremove + +**Be careful** though, as it might add some files that are not desired in +the repository (such as build products, cache files, or other data). + +You will then need to run ``hg commit`` (as discussed below) to commit +the file(s) to your local repository. + + +.. _hg-commit: How do I commit a change to a file? ------------------------------------------------------------------------------- -To have any changes to a file (which include adding a new file or deleting an -existing one), you use the command:: +To commit any changes to a file (which includes adding a new file or deleting +an existing one), you use the command:: - svn commit [PATH] + hg commit [PATH] -Although ``PATH`` is optional, if PATH is omitted all changes -in your local copy will be committed to the repository. -**DO NOT USE THIS!!!** You should specify the specific files -to be committed unless you are *absolutely* positive that -*all outstanding modifications* are meant to go in this commit. +``PATH`` is optional: if it is omitted, all changes in your working copy +will be committed to the local repository. When you commit, be sure that all +changes are desired by :ref:`reviewing them first `; +also, when making commits that you intend to push to public repositories, +you should **not** commit together unrelated changes. To abort a commit that you are in the middle of, leave the message empty (i.e., close the text editor without adding any text for the -message). Subversion will confirm if you want to abort the commit. +message). Mercurial will then abort the commit operation so that you can +try again later. -If you do not like the default text editor Subversion uses for -entering commmit messages, you may specify a different editor -in your Subversion config file with the -``editor-cmd`` option in the ``[helpers]`` section. +Once a change is committed to your local repository, it is still only visible +by you. This means you are free to experiment with as many local commits +you feel like. + +.. note:: + If you do not like the default text editor Mercurial uses for + entering commmit messages, you may specify a different editor, + either by changing the ``EDITOR`` environment variable or by setting + a Mercurial-specific editor in your global ``.hgrc`` with the ``editor`` + option in the ``[ui]`` section. How do I delete a file or directory in the repository? @@ -138,52 +369,96 @@ Specify the path to be removed with:: - svn delete PATH + hg remove PATH -Any modified files or files that are not checked in will not be deleted -in the working copy on your machine. +This will remove the file or the directory from your working copy; you will +have to :ref:`commit your changes ` for the removal to be recorded +in your local repository. -What files are modified locally in my working copy? +.. _hg-status: + +What files are modified in my working copy? ------------------------------------------------------------------------------- Running:: - svn status [PATH] + hg status -will list any differences between your working copy and the repository. Some +will list any pending changes in the working copy. These changes will get +commited to the local repository if you issue an ``hg commit`` without +specifying any path. + +Some key indicators that can appear in the first column of output are: -= =========================== -A Scheduled to be added -D Scheduled to be deleted -M Modified locally -? Not under version control -= =========================== + = =========================== + A Scheduled to be added + R Scheduled to be removed + M Modified locally + ? Not under version control + = =========================== +If you want a line-by-line listing of the differences, use:: -How do I find out what Subversion properties are set for a file or directory? -------------------------------------------------------------------------------- + hg diff -:: - svn proplist PATH - - -How do I revert a file I have modified back to the version in the respository? +How do I revert a file I have modified back to the version in the repository? ------------------------------------------------------------------------------- Running:: - svn revert PATH + hg revert PATH -will change ``PATH`` to match the version in the repository, throwing away any +will revert ``PATH`` to its version in the repository, throwing away any changes you made locally. If you run:: - svn revert -R . + hg revert -a -from the root of your local repository it will recursively restore everything -to match up with the main server. +from the root of your working copy it will recursively restore everything +to match up with the repository. + + +How do I find out which revisions need merging? +----------------------------------------------- + +In unambiguous cases, Mercurial will find out for you if you simply try:: + + hg merge + +If that fails and Mercurial asks for explicit revisions, running:: + + hg heads + +will give you the list of branch heads in your local repository. If you are +working only in a particular named branch, for example ``default``, do:: + + hg heads default + +to display the heads on that branch. + + +How do I list the files in conflict after a merge? +-------------------------------------------------- + +Use:: + + hg resolve --list + +(abbreviated ``hg resolve -l``) + + +How I mark a file resolved after I have resolved merge conflicts? +----------------------------------------------------------------- + +Type:: + + hg resolve --mark + +(abbreviated ``hg resolve -m ``) + +If you are sure you have resolved all conflicts, use ``hg resolve -am``. How do I find out who edited or what revision changed a line last? @@ -191,80 +466,70 @@ You want:: - svn blame PATH + hg annotate PATH -This will output to stdout every line of the file along with what revision -number last touched that line and who committed that revision. Since it is -printed to stdout, you probably want to pipe the output to a pager:: +This will output to stdout every line of the file along with which revision +last modified that line. When you have the revision number, it is then +easy to :ref:`display it in detail `. - svn blame PATH | less +.. _hg-log: How can I see a list of log messages for a file or specific revision? --------------------------------------------------------------------- -To see the log messages for a specific file, run:: +To see the history of changes for a specific file, run:: - svn log PATH + hg log -v [PATH] -That will list all messages that pertain to the file specified in ``PATH``. +That will list all messages of revisions which modified the file specified +in ``PATH``. If ``PATH`` is omitted, all revisions are listed. -If you want to view the log message for a specific revision, run:: +If you want to display line-by-line differences for each revision as well, +add the ``-p`` option:: - svn log --verbose -r REV + hg log -vp [PATH] -With ``REV`` substituted with the revision number. The ``--verbose`` flag -should be used to get a listing of all files modified in that revision. +.. _hg-log-rev: +If you want to view the differences for a specific revision, run:: -How can I edit the log message of a committed revision? + hg log -vp -r + + +How can I see the changeset graph in my repository? +--------------------------------------------------- + +In Mercurial repositories, changesets don't form a simple list, but rather +a graph: every changeset has one or two parents (it's called a merge changeset +in the latter case), and can have any number of children. + +The graphlog_ extension is very useful for examining the structure of the +changeset graph. It is bundled with Mercurial. + +Graphical tools, such as TortoiseHG, will display the changeset graph +by default. + +.. _graphlog: http://mercurial.selenic.com/wiki/GraphlogExtension + + +How do I undo the changes made in a recent commit? ------------------------------------------------------------------------------- -Use:: +First, this should not happen if you take the habit of :ref:`reviewing changes +` before committing them. - svn propedit -r --revprop svn:log +In any case, run:: -Replace ```` with the revision number of the commit whose log message -you wish to change. + hg backout +This will modify your working copy so that all changes in ```` +(including added or deleted files) are undone. You then need to :ref:`commit +` these changes so that the backout gets permanently recorded. -How do I get a diff between the repository and my working copy for a file? -------------------------------------------------------------------------------- - -The diff between your working copy and what is in the repository can be had -with:: - - svn diff PATH - -This will work off the current revision in the repository. To diff your -working copy with a specific revision, do:: - - svn diff -r REV PATH - -Finally, to generate a diff between two specific revisions, use:: - - svn diff -r REV1:REV2 PATH - -Notice the ``:`` between ``REV1`` and ``REV2``. - - -How do I undo the changes made in a recent committal? -------------------------------------------------------------------------------- - -Assuming your bad revision is ``NEW`` and ``OLD`` is the equivalent of ``NEW -- 1``, then run:: - - svn merge -r NEW:OLD PATH - -This will revert *all* files back to their state in revision ``OLD``. -The reason that ``OLD`` is just ``NEW - 1`` is you do not want files to be -accidentally reverted to a state older than your changes, just to the point -prior. - -Note: PATH here refers to the top of the checked out repository, -not the full pathname to a file. PATH can refer to a different -branch when merging from the head, but it must still be the top -and not an individual file or subdirectory. +.. note:: + These instructions are for Mercurial 1.7 and higher. ``hg backout`` has + a slightly different behaviour in versions before 1.7. How do I update to a specific release tag? @@ -272,105 +537,34 @@ Run:: - svn list svn+ssh://pythondev at svn.python.org/python/tags + hg tags -or visit:: +to get a list of tags. To update your working copy to a specific tag, use:: - http://svn.python.org/view/python/tags/ + hg update -to get a list of tags. To switch your current sandbox to a specific tag, -run:: - svn switch svn+ssh://pythondev at svn.python.org/python/tags/r242 +How come feature XYZ isn't available in Mercurial? +-------------------------------------------------- -To just update to the revision corresponding to that tag without changing -the metadata for the repository, note the revision number corresponding to -the tag of interest and update to it, e.g.:: +Mercurial comes with many bundled extensions which can be explicitly enabled. +You can get a list of them by typing ``hg help extensions``. Some of these +extensions, such as ``color``, can prettify output; others, such as ``fetch`` +or ``transplant``, add new Mercurial commands. - svn update -r 39619 +There are also many `configuration options`_ to tweak various aspects of the +command line and other Mercurial behaviour; typing `man hgrc`_ displays +their documentation inside your terminal. +In the end, please refer to the Mercurial `wiki`_, especially the pages about +`extensions`_ (including third-party ones) and the `tips and tricks`_. -Why should I use ``svn switch``? -------------------------------------------------------------------------------- -If you picture each file/directory in Subversion as uniquely identified -by a 2-space coordinate system [URL, revision] (given a checkout, you can -use "svn info" to get its coordinates), then we can say that "svn up -r N" -(for some revision number N) keeps the url unchanged and changes the -revision to whatever number you specified. In other words, you get the -state of the working copy URL at the time revision N was created. For -instance, if you execute it with revision 39619 within the trunk working -copy, you will get the trunk at the moment 2.4.2 was released. - -On the other hand, "svn switch" moves the URL: it basically "moves" your -checkout from [old_URL, revision] to [new_URL, HEAD], downloading the -minimal set of diffs to do so. If the new_URL is a tag URL -(e.g. .../tags/r242), it means any revision is good, since nobody is going -to commit into that directory (it will stay unchanged forever). So -[/tags/r242, HEAD] is the same as any other [/tags/r242, revision] (assuming -of course that /tags/r242 was already created at the time the revision was -created). - -If you want to create a sandbox corresponding to a particular release tag, -use svn switch to switch to [/tags/some_tag, HEAD] if you don't plan on -doing modifications. On the other hand if you want to make modifications to -a particular release branch, use svn switch to change to -[/branches/some_branch, HEAD]. - -(Written by Giovanni Bajo on python-dev.) - - -How do I create a branch? -------------------------- - -The best way is to do a server-side copy by specifying the URL for the source -of the branch, and the eventual destination URL for the new branch:: - - svn copy SRC_URL DEST_URL - -You can then checkout your branch as normal. You will want to prepare your -branch for future merging from the source branch so as to keep them in sync -using svnmerge.py. - - -How do I include an external svn repository (external definition) in the repository? ------------------------------------------------------------------------------------- - -Before attempting to include an external svn repository into Python's -repository, it is important to realize that you can only include directories, -not individual files. - -To include a directory of an external definition (external svn repository) as a -directory you need to edit the ``svn:externals`` property on the root of the -repository you are working with using the format of:: - - local_directory remote_repositories_http_address - -For instance, to include Python's sandbox repository in the 'sandbox' directory -of your repository, run ``svn propedit svn:externals .`` while in the root of -your repository and enter:: - - sandbox http://svn.python.org/projects/sandbox/trunk/ - -in your text editor. The next time you run ``svn update`` it will pull in the -external definition. - - -How can I create a directory in the sandbox? ------------------------------------------------------------------------------- - -Assuming you have commit privileges and you do not already have a complete -checkout of the sandbox itself, the easiest way is to use svn's ``mkdir`` -command:: - - svn mkdir svn+ssh://pythondev at svn.python.org/sandbox/trunk/ - -That command will create the new directory on the server. To gain access to -the new directory you then checkout it out (substitute ``mkdir`` in the command -above with ``checkout``). - -If you already have a complete checkout of the sandbox then you can just use -``svn mkdir`` on a local directory name and check in the new directory itself. +.. _man hgrc: http://www.selenic.com/mercurial/hgrc.5.html +.. _wiki: http://mercurial.selenic.com/wiki/ +.. _extensions: http://mercurial.selenic.com/wiki/UsingExtensions +.. _tips and tricks: http://mercurial.selenic.com/wiki/TipsAndTricks +.. _configuration options: http://www.selenic.com/mercurial/hgrc.5.html SSH @@ -400,8 +594,8 @@ key to a file. Copy the section with the public key (using Alt-P) to a file; that file now has your public key. +.. _PuTTYgen: http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html -.. _PuTTYgen: http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html Is there a way to prevent from having to enter my password for my SSH 2 public key constantly? ------------------------------------------------------------------------------------------------ @@ -416,22 +610,32 @@ .. _KeyChain: http://www.gentoo.org/proj/en/keychain/ + +.. _pageant: + Windows ''''''''''''''''''' -Running Pageant_ will prevent you from having to type your password constantly. +The Pageant program is bundled with TortoiseHg. You can find it in its +installation directory (usually ``C:\Program Files (x86)\TortoiseHg\``); +you can also `download it separately +`_. + +Running Pageant will prevent you from having to type your password constantly. If you add a shortcut to Pageant to your Autostart group and edit the shortcut so that the command line includes an argument to your private key then Pageant will load the key every time you log in. -.. _Pageant: http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html - -Can I make check-ins from machines other than the one I generated the keys on? +Can I make commits from machines other than the one I generated the keys on? ------------------------------------------------------------------------------ -Yes, all you need is to make sure that the machine you want to check -in code from has both the public and private keys in the standard +You can :ref:`make commits ` from any machine, since they will be +recorded in your *local repository*. + +However, to push these changes to the remote server, you will need proper +credentials. All you need is to make sure that the machine you want to +push changes from has both the public and private keys in the standard place that ssh will look for them (i.e. ~/.ssh on Unix machines). Please note that although the key file ending in .pub contains your user name and machine name in it, that information is not used by the diff --git a/grammar.rst b/grammar.rst --- a/grammar.rst +++ b/grammar.rst @@ -62,6 +62,6 @@ * After everything's been checked in, you're likely to see a new change to Python/Python-ast.c. This is because this - (generated) file contains the svn version of the source from + (generated) file contains the hg version of the source from which it was generated. There's no way to avoid this; you just have to submit this file separately. diff --git a/index.rst b/index.rst --- a/index.rst +++ b/index.rst @@ -33,7 +33,6 @@ faq - Quick Links ----------- @@ -56,6 +55,8 @@ at once, but please do not skip around within the documentation as everything is written assuming preceding documentation has been read. +You can, *however*, read the :doc:`FAQ ` at any point! + * :doc:`setup` * Coding style guides * `PEP 7`_ (Style Guide for C Code) @@ -103,9 +104,9 @@ * `Firefox search engine plug-in`_ * Buildbots_ * Source code - * `Browse online `_ - * `Daily snapshot `_ - * `Daily OS X installer `_ + * `Browse online `_ + * `Snapshot of py3k `_ + * `XXX Daily OS X installer `_ * Tool support * :doc:`emacs` * :doc:`gdb` @@ -121,7 +122,7 @@ .. _buildbots: http://python.org/dev/buildbot/ .. _Firefox search engine plug-in: http://www.python.org/dev/searchplugin/ -.. _Misc directory: http://svn.python.org/view/python/branches/py3k/Misc/ +.. _Misc directory: http://hg.python.org/cpython/file/tip/Misc .. _PEPs: http://www.python.org/dev/peps .. _PEP 7: http://www.python.org/dev/peps/pep-0007 .. _PEP 8: http://www.python.org/dev/peps/pep-0008 diff --git a/patch.rst b/patch.rst --- a/patch.rst +++ b/patch.rst @@ -7,6 +7,61 @@ Creating -------- +Tool Usage +'''''''''' + +.. _mq-workflow: + +Mercurial allows for various workflows according to each person's or +project's preference. We present here a very simple solution based on mq_ +(*Mercurial Queues*). You are welcome to use any approach you like (including +a svn-like approach of simply never saving any changes you make to your working +copy and using ``hg diff`` to create a patch). Usage of mq_ is merely a +suggestion; it's a balance between being able to do everything needed +while allowing for more powerful usage if desired in the future. + +First make sure that the extension has been turned on in your ``.hgrc`` or +``Mercurial.ini`` file:: + + [extensions] + mq = + +You can verify this is working properly by running ``hg help mq``. + +Before you start modifying things in your working copy, type:: + + hg qnew mywork + +where ``mywork`` is a descriptive name for what you are going to work on. +This will create a patch in your patch queue. Whenever you have reached a point +that you want to save what you have done, run:: + + hg qrefresh + +This will update the patch to contain all of the changes you have made up to +this point. If you have added or removed any file, use ``hg add`` or ``hg +remove``, respectively, before running ``hg qrefresh``. + +Later on, we will explain :ref:`how to generate a patch `. + +If you want to delete your changes irrevocably (either because they were +committed, or they ended up uninteresting), use:: + + hg qpop mywork + hg qdelete mywork + +.. seealso:: + For more advanced usage of mq, read the `mq chapter + `_ + of `Mercurial: The Definitive Guide `_. + + Also, regardless of your workflow, refer to the :ref:`FAQ ` for + :ref:`more information on using Mercurial `. + +.. _issue tracker: http://bugs.python.org +.. _mq: http://mercurial.selenic.com/wiki/MqExtension + + Preparation ''''''''''' @@ -54,43 +109,29 @@ .. _Python Software Foundation: http://www.python.org/psf/ +.. _patch-generation: + Generation '''''''''' To perform a quick sanity check on your patch, you can run:: - make patchcheck + make patchcheck This will check and/or fix various common things people forget to do for -patches. +patches, such as adding any new files needed for the patch to work (note +that not all checks apply to non-core developers). -To create your patch, you should generate a unified diff from your checkout's -top-level directory:: +Assume you are using the :ref:`mq approach ` suggested earlier, +first check that all your local changes have been recorded (using +``hg qrefresh``), then type the following:: - svn diff > patch.diff + hg qdiff > mywork.patch -If your work needs some new files to be added to the source tree, remember -to ``svn add`` them before generating the patch:: - - svn add Lib/newfile.py - svn diff > patch.diff - -To apply a patch generated this way, do:: - - patch -p0 < patch.diff - -If the developer is using something other than svn to manage their code (e.g., -Mercurial), you might have to use ``-p1`` instead of ``-p0``. - -To undo a patch, you can revert **all** changes made in your checkout:: - - svn revert -R . - -.. note:: The ``patch`` program is not available by default under Windows. - You can find it `here `_, - courtesy of the `GnuWin32 `_ project. - Also, you may find it necessary to add the "``--binary``" option when trying - to apply Unix-generated patches under Windows. +If you are using another approach, you probably need to find out the right +invocation of ``hg diff`` for your purposes; see ``hg help diff`` and ``hg +help revisions``. Just please make sure that you +generate a **single, condensed** patch rather than a series of several changesets. Submitting diff --git a/setup.rst b/setup.rst --- a/setup.rst +++ b/setup.rst @@ -3,10 +3,10 @@ Getting Set Up ============== -These instructions cover how to get a source checkout and a compiled version of -the CPython interpreter (CPython is the version of Python available from -http://www.python.org/). It also gives an overview of the directory -structure of a CPython checkout. +These instructions cover how to get a working copy of the source code and a +compiled version of the CPython interpreter (CPython is the version of Python +available from http://www.python.org/). It also gives an overview of the +directory structure of the CPython source code. .. contents:: @@ -14,44 +14,43 @@ Version Control Setup --------------------- -CPython is developed using `Subversion `_ -(commonly abbreviated svn, after the program name). +CPython is developed using `Mercurial `_ +(commonly abbreviated hg, after the program name). It is easily available for common Unix systems by way of the standard package -manager; under Windows, you might want to use the `TortoiseSVN -`_ graphical client. +manager; under Windows, you might want to use the `TortoiseHg +`_ graphical client. .. _checkout: -Checking out the code ----------------------- +Getting the Source Code +----------------------- -One should always work from a checkout of the CPython source code. While it may -be tempting to work from the downloaded copy you already have installed on your +One should always work from a working copy of the CPython source code. +While it may +be tempting to work from the copy of Python you already have installed on your machine, it is very likely that you will be working from out-of-date code as the Python core developers are constantly updating and fixing things in their :abbr:`VCS`. It also means you will have better tool support through the VCS as it will provide a diff tool, etc. -To get a read-only checkout of CPython's source, you need to checkout the source -code. To get a read-only checkout of -the :ref:`in-development ` branch of Python, run:: +To get a working copy of the :ref:`in-development ` branch of +CPython (core developers use a different URL as outlined in :ref:`coredev`), +run:: - svn co http://svn.python.org/projects/python/branches/py3k + hg clone http://hg.python.org/cpython -If you want a read-only checkout of an already-released version of Python, -i.e., a version in :ref:`maintenance mode `, run something -like the following which gets you a checkout for Python 3.1:: +If you want a working copy of an already-released version of Python, +i.e., a version in :ref:`maintenance mode `, you can update your +working copy. For instance, to update your working copy to Python 3.1, do:: - svn co http://svn.python.org/projects/python/branches/release31-maint + hg update 3.1 -To check out a version of Python other than 3.1, simply change the number in -the above URL to the major/minor version (e.g., ``release27-maint`` for Python -2.7). +You will need to re-compile CPython when you do such an update. -Do note that CPython will notice that it is being run from a source checkout. -This means that it if you edit Python's source code in your checkout the -changes will be picked up by the interpreter for immediate testing. +Do note that CPython will notice that it is being run from a working copy. +This means that it if you edit CPython's source code in your working copy the +changes will be picked up by the interpreter for immediate use and testing. Compiling (for debugging) @@ -125,9 +124,9 @@ that can be run in-place; ``./python`` on most machines (and what is used in all examples), ``./python.exe`` on OS X (when on a case-insensitive filesystem, which is the default). There is absolutely no need to install your built copy -of Python! The interpreter will realize it is being run directly out of a -checkout and thus use the files found in the checkout. If you are worried you -might accidentally install your checkout build, you can add +of Python! The interpreter will realize where it is being run from +and thus use the files found in the working copy. If you are worried +you might accidentally install your working copy build, you can add ``--prefix=/dev/null`` to the configuration step. .. _issue tracker: http://bugs.python.org diff --git a/triaging.rst b/triaging.rst --- a/triaging.rst +++ b/triaging.rst @@ -190,6 +190,10 @@ * ``r``, ``rev``, ``revision `` links to the Subversion revision ````. +.. TODO update that last item to the format choosed for Mercurial: [CSET] + - check that [CSET] works + - check that rNUMBER links to the hglookup application + Reporting Issues About the Tracker ---------------------------------- -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sat Mar 5 17:33:41 2011 From: python-checkins at python.org (georg.brandl) Date: Sat, 05 Mar 2011 17:33:41 +0100 Subject: [Python-checkins] devguide: Fix trailing whitespace (test commit). Message-ID: http://hg.python.org/devguide/rev/de5c0f9585d2 changeset: 366:de5c0f9585d2 user: Georg Brandl date: Sat Mar 05 17:32:35 2011 +0100 summary: Fix trailing whitespace (test commit). files: gdb.rst diff --git a/gdb.rst b/gdb.rst --- a/gdb.rst +++ b/gdb.rst @@ -118,7 +118,7 @@ 902 options.profile = False 903 profile_me() 904 return - 905 + 905 >906 u = UI() 907 if not u.quit: 908 try: @@ -214,7 +214,7 @@ builtin 'len' = (gdb) py-print scarlet_pimpernel 'scarlet_pimpernel' not found - + ``py-locals`` The ``py-locals`` command looks up all Python locals within the current Python frame in the selected thread, and prints their representations:: -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sat Mar 5 17:38:54 2011 From: python-checkins at python.org (georg.brandl) Date: Sat, 5 Mar 2011 17:38:54 +0100 (CET) Subject: [Python-checkins] r88756 - tracker/instances/python-dev/extensions/local_replace.py Message-ID: <20110305163854.9A527EE989@mail.python.org> Author: georg.brandl Date: Sat Mar 5 17:38:54 2011 New Revision: 88756 Log: Use local_replace update for hg migration. Modified: tracker/instances/python-dev/extensions/local_replace.py Modified: tracker/instances/python-dev/extensions/local_replace.py ============================================================================== --- tracker/instances/python-dev/extensions/local_replace.py (original) +++ tracker/instances/python-dev/extensions/local_replace.py Sat Mar 5 17:38:54 2011 @@ -4,6 +4,8 @@ from roundup.cgi.templating import register_propclass, StringHTMLProperty +# pre-hg migration +''' substitutions = [ # r12345, r 12345, rev12345, rev 12345, revision12345, revision 12345 (re.compile(r'\b(?r(ev(ision)?)?\s*)(?P\d+)'), @@ -17,17 +19,17 @@ r'\g\g'), ] - -# for use after hg migration - ''' + substitutions = [ # r12345, r 12345, rev12345, rev 12345, revision12345, revision 12345 (re.compile(r'\b(?r(ev(ision)?)?\s*)(?P\d+)'), r'\g\g'), - # [deadbeef] (syntax open for discussion) - (re.compile(r'\b(?[a-fA-F0-9]{6,})\]'), + # deadbeeffeed (hashes with exactly twelve or forty chars) + (re.compile(r'\b(?[a-fA-F0-9]{40})\b'), + r'[\g]'), + (re.compile(r'\b(?[a-fA-F0-9]{12})\b'), r'[\g]'), # Lib/somefile.py, Modules/somemodule.c, Doc/somedocfile.rst, ... @@ -36,8 +38,6 @@ 'RISCOS|Tools|Objects)/[-.a-zA-Z0-9_/]+[a-zA-Z0-9]/?)'), r'\g\g'), ] -''' - # if the issue number is too big the db will explode -- limit it to 7 digits issue_re = re.compile(r'(?P(\#|\b(?1?\d{1,6}))\b', re.I) From python-checkins at python.org Sat Mar 5 17:42:38 2011 From: python-checkins at python.org (georg.brandl) Date: Sat, 5 Mar 2011 17:42:38 +0100 (CET) Subject: [Python-checkins] r88757 - tracker/instances/python-dev/extensions/local_replace.py Message-ID: <20110305164238.0B78FEE99B@mail.python.org> Author: georg.brandl Date: Sat Mar 5 17:42:37 2011 New Revision: 88757 Log: Fix branch name. Modified: tracker/instances/python-dev/extensions/local_replace.py Modified: tracker/instances/python-dev/extensions/local_replace.py ============================================================================== --- tracker/instances/python-dev/extensions/local_replace.py (original) +++ tracker/instances/python-dev/extensions/local_replace.py Sat Mar 5 17:42:37 2011 @@ -28,15 +28,15 @@ # deadbeeffeed (hashes with exactly twelve or forty chars) (re.compile(r'\b(?[a-fA-F0-9]{40})\b'), - r'[\g]'), + r'\g'), (re.compile(r'\b(?[a-fA-F0-9]{12})\b'), - r'[\g]'), + r'\g'), # Lib/somefile.py, Modules/somemodule.c, Doc/somedocfile.rst, ... (re.compile(r'(?P(?(?:Demo|Doc|Grammar|' r'Include|Lib|Mac|Misc|Modules|Parser|PC|PCbuild|Python|' 'RISCOS|Tools|Objects)/[-.a-zA-Z0-9_/]+[a-zA-Z0-9]/?)'), - r'\g\g'), + r'\g\g'), ] # if the issue number is too big the db will explode -- limit it to 7 digits From python-checkins at python.org Sat Mar 5 17:47:08 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 05 Mar 2011 17:47:08 +0100 Subject: [Python-checkins] cpython: Add the map of SVN revision numbers to changeset ids. Message-ID: http://hg.python.org/cpython/rev/1a9595f1b1d4 changeset: 68259:1a9595f1b1d4 user: Antoine Pitrou date: Sat Mar 05 17:46:03 2011 +0100 summary: Add the map of SVN revision numbers to changeset ids. This is mostly to help history-digging, especially when focussing on feature branches. Note that not all changesets are in the main repository, but they are all in the full history repository. files: Misc/README Misc/svnmap.txt diff --git a/Misc/README b/Misc/README --- a/Misc/README +++ b/Misc/README @@ -21,6 +21,7 @@ README The file you're reading now README.valgrind Information for Valgrind users, see valgrind-python.supp RPM (Old) tools to build RPMs +svnmap.txt Map of old SVN revs and branches to hg changeset ids SpecialBuilds.txt Describes extra symbols you can set for debug builds TextMate A TextMate bundle for Python development valgrind-python.supp Valgrind suppression file, see README.valgrind diff --git a/Misc/svnmap.txt b/Misc/svnmap.txt new file mode 100644 --- /dev/null +++ b/Misc/svnmap.txt @@ -0,0 +1,72546 @@ +2161 3cd033e6b530f6a78b3b14fedbd2074896dbf6de legacy-trunk +2162 4db9d46b306a9c6ec2d1fe7a7cc36ef7173426a6 legacy-trunk +2163 4a3a648185ef8965c342860bd8457ed6c03c6de0 legacy-trunk +2164 8da9225cc60e2da1665a80af90184db0fdda05ce legacy-trunk +2165 17e490b4dc28b8ac605fa19e482cf722fe80658d legacy-trunk +2166 5570dbb1ce558b55716eab7d080a1afad2e77e2f legacy-trunk +2167 fc6fcd7df4f7f2e1c12f17af2464c497d6f6a3e9 legacy-trunk +2168 34d667dc1a4c4abdcb19cddfd2e9bfda01139ed2 legacy-trunk +2169 6fc146bd4f03c97d14c7c300b1212a11eb9b672a legacy-trunk +2170 33701db4ea559100d37be44d2f0d53e568a0ec33 legacy-trunk +2171 a71e896ed0473421d88fe455269c5a5e54732a22 legacy-trunk +2172 bcea6c822906c84ededabcc03ec481595def0a63 legacy-trunk +2173 36a220d3731a03345785593ec32ebc35a29494de legacy-trunk +2174 06bf2af00e3a9eb51529b618cbdc0bbcf1a4e964 legacy-trunk +2175 874c8fd565fa09461c21399af9ede1234ea10f70 legacy-trunk +2176 e9e05fbba7a40034f8211c9d1d12b28879f51fcf legacy-trunk +2177 0808e5ab743abb8b057a55f7651ac118c83f5b0c legacy-trunk +2178 a5f01a9174092d29eba6377c2369187cdb3fd7d5 legacy-trunk +2179 e9bbe4ac32389e8a7a6c0b4aefaf4ead3088f21a legacy-trunk +2180 71ac0e37236a54e0a6788b384655d8d8209d858a legacy-trunk +2181 118545312f3bfe103bccfb103f4df2eeb0d0eb83 legacy-trunk +2182 961696ef3ab7e43c99f5c760f7c621b6a119dc98 legacy-trunk +2183 2d3eb717a00d103d437594e08193dae600061da9 legacy-trunk +2184 08562de0166800e1c6d5d515f74369b399fd8caa legacy-trunk +2185 64a69d6121e0d2062f26a7eca67e9b6a42dca27b legacy-trunk +2186 32639878d16b604875388e2299611bbfc5189626 legacy-trunk +2187 45aeb2eead79ee7fa36e4166deb75386c13e341d legacy-trunk +2188 82c7bab78bb10a706f5d520b1550e724b94aa38c legacy-trunk +2189 e5c50c688117c6e5bd895460dace6c9cbf581afd legacy-trunk +2190 342a7c61c0c3c0fe4814d1ad24e77142773815b1 legacy-trunk +2191 86e0e2350ba11747c4e0fdce97bc7c9bc648741b legacy-trunk +2192 c487dfc3066339850854fb858c6a833059a9bc78 legacy-trunk +2193 b643eade654459f87d572d6b793896d9b3adf840 legacy-trunk +2194 b807c90c4a6822d1cb8b396991caa8085bb32b4e legacy-trunk +2195 1d22900f77b853bee06dd24a1bf1fdf4515b48bc legacy-trunk +2196 da06a282b8804fa47ff4c3c4bd92ba9fb8eea929 legacy-trunk +2197 a2240ce91e52061b432f97957f92bf79785340ac legacy-trunk +2198 c795fdaced9b8a28d9833277868b1f7461a095f5 legacy-trunk +2199 10e1821c345ca2d137535a6c1cf5eb01286fcd7e legacy-trunk +2200 1905f821397b0f0941011608e5b46dd1c9e389e4 legacy-trunk +2201 f28ac7f621c76079774c30017b29013965d10409 legacy-trunk +2202 e80efeab49b32c15ac97b24d4f6e8fdd5ccf0a95 legacy-trunk +2203 4835c2d38b84e5fb558036d47c5871dd966338b7 legacy-trunk +2204 ea21982a1532425f82ec5a4346cb841917a71d95 legacy-trunk +2205 4d3a28dffc9b95d38b912cb695742de40d957635 legacy-trunk +2206 7fecabb327914504544617e5bacd1c05a12e869f legacy-trunk +2207 ce6f24711504e5956d660099c99eccb951c0c149 legacy-trunk +2208 05057e3660f82ce8e83e8c2d73d0b58494f2bea7 legacy-trunk +2209 b0e76221e7ffdbcfe98a44adfae9c235093c7ceb legacy-trunk +2210 c3fa2d1f30358699ee24e2a5c3c011662f75c376 legacy-trunk +2211 b94822f54991304b58adbbea23869c98b2f6f3fe legacy-trunk +2212 ebcb626cfddfb9f1c7b18678acbec44eb97abbd7 legacy-trunk +2213 1b31077ac64307ab54552651aec67878d80d0bd7 legacy-trunk +2214 a1e50a8f42e23cfab64be3e99d8a5335ea33a9c5 legacy-trunk +2215 402f5708b107b05f811e5f8542842e71798da6c9 legacy-trunk +2216 7a01dbcee9bc0312f5a317fb24299751e78dddc2 legacy-trunk +2217 a7e8fb7bb6a28eb13c056f3c62a96caac5f644d4 legacy-trunk +2218 a1c2b4fad136cfb1b223150a48c3480d63e2decb legacy-trunk +2219 4975f7990b2b35c70d23505ecea5c20eefcd1ed8 legacy-trunk +2220 433f52d1d958776703a73e80e556beeb0e47f543 legacy-trunk +2221 4f593b38d0615579acad4c3c9cb350eb600ddc4e legacy-trunk +2222 5c4dd9348e8113320c4f7b4e9833f3205df18b80 legacy-trunk +2223 fffd1286c88267934d7486e4c4e467d57b08659b legacy-trunk +2224 61311506f2cd09badd8b79456af9789214ecb0f4 legacy-trunk +2225 a22df52d7749a3a8c0770a8213de47b2ca58fecf legacy-trunk +2226 a72c0a7dc993aae05e7085cd38678b9dbbeb1981 legacy-trunk +2227 46cb14aec10a8d6e3665b7188070b67e899ad636 legacy-trunk +2228 f98e41711d177900a96d5745ba90cc88bd82d7d8 legacy-trunk +2229 36503736fdc2393406c0860c81a20222d73cee59 legacy-trunk +2230 cccd534f228074f26748484221d69f2ee752f2b3 legacy-trunk +2231 a36c348a8e1a2915d69b7dd202163fdb7e596c88 legacy-trunk +2232 ac4522e99ca94377a65c66cfdc26684fa0fdfbeb legacy-trunk +2233 5e8a0b40a4bdf1e83c5d0bf38efc7745b06ef8d4 legacy-trunk +2234 3028acaa56b05ed0e11e156e81b5a0671915cb86 legacy-trunk +2235 bc244df202516b5a55513e463b2f637d18f58055 legacy-trunk +2236 85eed060a46ce26649fd6802cfbd5eec61910688 legacy-trunk +2237 ede86799705ba14bc40213571dfe2a1d5f56e907 legacy-trunk +2238 f72e0c62369e24ccc0ecdab792c97a21b2332bad legacy-trunk +2239 b1fb4e1f6e516d280c55501b2344498ca627febc legacy-trunk +2240 6c43e5476de690412699b3bde6b507b1c48804a6 legacy-trunk +2241 f47101dc3c188f24f9b9705db3b64891914bdb82 legacy-trunk +2242 de34f4a4d353b9f5f991aaca98c83faac681c6f5 legacy-trunk +2243 554ac659b2cb9524ef4f96ec2756dc4ca0fa0f9b legacy-trunk +2244 f6bcf3c1d714e7875356ca12c32ee5f975f4ed8a legacy-trunk +2245 a79cbb2655baaf54addc2203350036479bdcb7e3 legacy-trunk +2246 06c92f491f588ed9abe0f2d4f1512069a30c1901 legacy-trunk +2247 a6934380c6e79b87f7762b1d9433d0e0a8937452 legacy-trunk +2248 ef2440f24f102c677a02d407988dd85f5da50cab legacy-trunk +2249 16e8c5d164935f3c6a989eeeadf22b0ab4dc22ea legacy-trunk +2250 5847df13991de6a836484107553f4e9cecca8a14 legacy-trunk +2251 5cb843bc87fc086546fabf6b8ec03eed31e20a8f legacy-trunk +2252 5c357d37b32731c8d02045497020858c79c57139 legacy-trunk +2253 002066a839c51cc184a0c6e669ec9d63420cda67 legacy-trunk +2254 9e051fc7073e77b9e15034a19e547efe2b85c66a legacy-trunk +2255 dac8625c8d9b014179cd583358b4d0e4e2502567 legacy-trunk +2256 a5bf7d5959ce050f2b051c12e8180895e7e6d8a9 legacy-trunk +2257 27a5b08c3e742c62a15b68156fe0d488c094ad42 legacy-trunk +2258 6b75f2a3000d4065146b2dafe6d83d33071e8d35 legacy-trunk +2259 455d65a11b13ed37792e1f4ffbfe3bcdfaa783ee legacy-trunk +2260 e0c8efee76bd815784c813c66a2a1046e5a0bf5a legacy-trunk +2261 ad14aa8a2984432384f7af21d452be5aaba6f18f legacy-trunk +2262 08e55db6f796a276ecd1c1683a502bafd7247872 legacy-trunk +2263 f2cacb90c917c8d2927994cc24312a621db13f83 legacy-trunk +2264 1229ba124e0ba8ece922ce14c0f4aabdbde1d3f0 legacy-trunk +2265 4ec8c263ab48b49d7727011c4a86c7b109b0fa58 legacy-trunk +2266 b4d5fdcbf83c68f913af4c175a143c8abf775fef legacy-trunk +2267 64373c79c099990cb69262d183a45e4dbff42842 legacy-trunk +2268 1e007dccb2709b0811e53bf07c7b879791ac9774 legacy-trunk +2269 ae9b366c575d557e6f806f0d16e5478571754c1b legacy-trunk +2270 f694036b8561eb1b3cb59ef3680d7e96ddfd71a0 legacy-trunk +2271 e4b1d9e6980a438f902eef900368c2e6a2d50a64 legacy-trunk +2272 d08f752b56c06146d5bacfb2ef76c1036a3cdc49 legacy-trunk +2273 d8a1b6456212b28b61264db02d65b2c5f6de72c8 legacy-trunk +2274 d16961167365ffff817bb8e68a2111fe53a6cc58 legacy-trunk +2275 1efb8ed6afd33a006c5299d3a415ace12c986a89 legacy-trunk +2276 4094b46f04c8eaf325b3d599e732a5bf9a8c3a7b legacy-trunk +2277 0a02ca9dcd6e022f10a1cc5537c78aa71324a323 legacy-trunk +2278 78733c1c6e36187af57f4ea25170ad07d0810bb8 legacy-trunk +2279 a809013c2af1ef3fd69ff51b49c2563af7c32705 legacy-trunk +2280 9fee1ca6c8fed15770cf06f41875dffae9aed42a legacy-trunk +2281 c9a5fe1660f51985e269be4929464e5c4ea2e5ad legacy-trunk +2282 0c25faf4a6a445085c4b7a985b7a4300c939cf71 legacy-trunk +2283 b3803fd3cb2c8d9093136f5a1d2ec50f981b4312 legacy-trunk +2284 22727b43781e7c53dbdcf52f38abfd09d6d0814f legacy-trunk +2285 a8d033c6fb54a3eea80de0a2952cf5a980b3f847 legacy-trunk +2286 f71d6a096b0218a26727bda0d4d3d5acbf3523db legacy-trunk +2287 27cc0d8237663b75da3871546b203f5685a47a45 legacy-trunk +2288 d214b5d21df8c5aceceee56be14818445f809833 legacy-trunk +2289 3bed76cdac0c4655cf8025ba61221f3eccd7b69f legacy-trunk +2290 efd900497f4f87d717d137db58af995d6a03b14b legacy-trunk +2291 8f214d617acab80f1667c102b6fe85f680bce0db legacy-trunk +2292 ad4c5a5ef0ffeee9b9aa885a416e09fa449251b0 legacy-trunk +2293 65edde022d71ee383b0a546c7297c93898a6e1b1 legacy-trunk +2294 06889685eb6201d24e913b4c054c1f2274d4d35d legacy-trunk +2295 5d5c9b2da5622182cafcf1777b8aa76c70ab7620 legacy-trunk +2296 26ccbc3e41c461ad79a42e201339cb9f9a2d89c7 legacy-trunk +2297 6523bd2954f0436fb8f6cb4aaafa300507e3ab27 legacy-trunk +2298 82ef94b8b902e3494b38601d1844bb959de31677 legacy-trunk +2299 bb24948957e3ca96876e902edb290ab464ba6b6e legacy-trunk +2300 c294a8caebb9bb3ee9f892a372d6457507046f53 legacy-trunk +2301 3b8023b0bb48b1066d4a33407317304d3729e391 legacy-trunk +2302 bf5a8539d8ba7f74f03422c5b4f669070fb96521 legacy-trunk +2303 c7ea60491e681e9b91f76a012c4dc944b5fff2d8 legacy-trunk +2304 1870d82de0699afba89a19466b2f9c3651b4cc9a legacy-trunk +2305 c70eefe480290a1d80d987a2ff599a0eacbeb990 legacy-trunk +2306 853b736a6a9ee38e3301d430c152ae758e161a40 legacy-trunk +2307 0f598993d9986f4ae4e6dd9a3491d509b3098e83 legacy-trunk +2308 3499ad87839af7a1a4f71c15f89d20ab84c78e71 legacy-trunk +2309 a0c5f2af2e0cad5c4d4de4a893ca5a5fe7ce7d41 legacy-trunk +2310 61c5260c364f260e4c9c9c59d7f9d2a7d4436a1c legacy-trunk +2311 c65eba8194c7b403b9e72eaac450e2dadaf20377 legacy-trunk +2312 9d4c7de0def4fe67ef5ad58244c7699b5188ba1d legacy-trunk +2313 1d4094c7d58b8c730f034b1b31365185629da563 legacy-trunk +2314 e5764a0d2d3299da6614eef1922c7f4177665fce legacy-trunk +2315 f2efceaf73cc9d999b8df53bff7cd218a2e63243 legacy-trunk +2316 896c825f2f71bdd2ac0df12b5c6ff179e06cda25 legacy-trunk +2317 43cabac5023d2ac27f5c9a3c835f1ac668c43683 legacy-trunk +2318 47cc0ce7999c787f6e94bd3a03e19c09022248fe legacy-trunk +2319 c8659f8a5f63784c5afe400dc17b5fc192d00195 legacy-trunk +2320 41f3c66b10fd0a65cabc48bfa1c6aeb320d41355 legacy-trunk +2321 afa48a96a4443cb5857138799e1d09c5dc4bad68 legacy-trunk +2322 25a7fb44e2978449812354cb07a2b862af32cee2 legacy-trunk +2323 761869766e4528e68f1d114606ebc91eec8a4efa legacy-trunk +2324 ef9b4be5a3fea1029b31b51542469de0b268df0b legacy-trunk +2325 7ce91cfb7ac4512d490773d81749375a8bc32982 legacy-trunk +2326 a4547af296711baa743772292c74184c9d2785c9 legacy-trunk +2327 28923e44254ceb767897f45ddede5e229ef54ed3 legacy-trunk +2328 3fa2b14be2709119079f7a6c630e5b135d5de905 legacy-trunk +2329 6585aabe1968ba5618f18ea0c9da1c9788b3489f legacy-trunk +2330 1ed7f6f6598371ebd2350e1681081b267ac301e6 legacy-trunk +2331 ee0a32fd45678495ac0233caaf6eecd0c884e98b legacy-trunk +2332 0cee01b68d9c824d33322e36024a02f4a75e7e10 legacy-trunk +2333 5cf3c36d02ea4cab231c2997eab28fe2c726b11f legacy-trunk +2334 4656452436e19c412e8808834e3185a9650095e4 legacy-trunk +2335 20fee4e2eecdc95ee00b2ea3cd2b2ee95b5e5b4d legacy-trunk +2336 06cc3b00671c3e22157e27e8a7f6e8682a76a849 legacy-trunk +2337 229168a2fe286a8b25d83d80563d75f460a259a0 legacy-trunk +2338 bd49ca6c4add243c88a0942abf5f13cef10fc3d1 legacy-trunk +2339 fb6367d5ff4649054e87797f41223489305913a4 legacy-trunk +2340 0c355e9ee85458a1d1aee8badeadb82f5abadb4f legacy-trunk +2341 a405a31242e7c4b4d2ed0e46be5f4f90a3d738ca legacy-trunk +2342 a823602c22741d5ab9c478c6f5bd1917c20415ec legacy-trunk +2343 59ffb6d4b34c7673ca74afda82aea63fd4bced74 legacy-trunk +2344 c9168afe23ddf69cdf5f016c731ed3c4cabcf014 legacy-trunk +2345 1b08df41587b855f4c625b923bbffd462754b594 legacy-trunk +2346 33466268b6371ea5e93c931d0ce33540d5ae2e8d legacy-trunk +2347 89115e7534d580e0b8d2581c8c24d00791db1a8d legacy-trunk +2348 f47d5e9ea264ef93d35fd9b41948cd142ba70d47 legacy-trunk +2349 d81818e62671a63e5553c998cc61bdfb3591346a legacy-trunk +2350 ff0dae1f4db625bf131beb7b6cf73f13ae57c5fa legacy-trunk +2351 b50fa6d58786ddbd473decd95e605b89e04bc48c legacy-trunk +2352 5ffd371b7841de650c2bfac127f040b9fb782a97 legacy-trunk +2353 32ae4a1aab689aef8ee090c4c18916da78e22fdb legacy-trunk +2354 57f3ffc7b1c405425199eb7fc2d834d385782e3d legacy-trunk +2355 145f9e14595f4bc62b1e74207c6d59636a7e97e1 legacy-trunk +2356 45f43f755e5c53bb4fecc858a755423d82e58f89 legacy-trunk +2357 48fc0b8f33d909b443fd80b833ea5fb4c553ea50 legacy-trunk +2358 423be876dcce622570c57931994966812d114831 legacy-trunk +2359 646316c99507888ce9226fe7e6797fe768fe53f0 legacy-trunk +2360 0a3e33cfd4a9333e9d06d47463aedfba06740e9a legacy-trunk +2361 9d01965f4f48afd58e9f2c98ec355fde6b8569cd legacy-trunk +2362 310f8c9240732e0a7364713346439c6f51c297ef legacy-trunk +2363 bfffc7e0fcc3e190a1355288e8ad71ab13a6c98f legacy-trunk +2364 ceb36ec6198df399c199d7d018ebd164ba6f6787 legacy-trunk +2365 3d7da6174e2e5853fc52ecc8dfb5a890d5547dc2 legacy-trunk +2366 8ffda846d7889fd973ca900524e4c91713135aec legacy-trunk +2367 3cc54972ab52306af59927d5ba07022bb65d04a5 legacy-trunk +2368 9ab329697dda547509888524530e0280c54200ff legacy-trunk +2369 f352ea4dff708b1a72a95c45ed99a8489186fa11 legacy-trunk +2370 e486c849c50c256ebc6f0903a969ea036d4389c4 legacy-trunk +2371 91a2f4745852184405f62e13dc9e92c507dc8e96 legacy-trunk +2372 83f0a724a87c01630a396ba56a3aba9bdbaef46e legacy-trunk +2373 a793c9e880c7f9359f0633807d7d62d5ac07240f legacy-trunk +2374 66b55766ba658a56b1ec41de9c2b162b8a8b1b16 legacy-trunk +2375 ed0311b8e741918079c7f526acf281777616b55e legacy-trunk +2376 f61e7368def2e9e5f558687c9ac15fa34f00d1f2 legacy-trunk +2377 1754b8024b55d0c37ffe6c1af3eb01b371d6aeda legacy-trunk +2378 1958723bfe024d6eb4a4b0c66f29c58d2b26abaf legacy-trunk +2379 3429c945d817dbd1ec415ac9536d2d214aba8258 legacy-trunk +2380 a1097cd03348ee81b61c06048ccba6d9c258cb6c legacy-trunk +2381 1eff6111582e48e0090688f475d16dbdd8f227dd legacy-trunk +2382 edda9aad3e8f17e2d8fbcc327f17fb6c0efc767b legacy-trunk +2383 2898d78fa32de7e06b0dc1b4e2ba8b3388d56d5d legacy-trunk +2384 6693c5d87f3a049d9080ae6c904ed9a2346913b0 legacy-trunk +2385 e71b6fec86e598fd3026f7ed6308fa3730e6a5ee legacy-trunk +2386 7819e1615320b4206232edc37eb862bc6f873b62 legacy-trunk +2387 7e83115edb6ae6d3264ec33c89432b3eda2f0001 legacy-trunk +2388 7ec6058b539b7ed9fa0cf6be37edcd16fc16868b legacy-trunk +2389 634c1d3c7d3923f04ca534aa8ff07439929611c8 legacy-trunk +2390 08597e2b63d3f943cfde6d274344675c727c3e04 legacy-trunk +2391 7ba9612058a469b34939f48807bd6e2c24ee0f62 legacy-trunk +2392 b31abf420e61a7a0a5aab4a7129baa158c9eef04 legacy-trunk +2393 af2e6400769817b38efb7ed505aca6c81c5889dc legacy-trunk +2394 8f62a5457319e267f44b6be51ef3be1d80a8ef3f legacy-trunk +2395 914c83cfa5e105c791247c3a8dfbd0816cf44997 legacy-trunk +2396 9770112e660a903f5eac6578a8d558814f748b22 legacy-trunk +2397 0a92b6a1b9c0abe877b61a4e3b458e1feb7b68ae legacy-trunk +2398 16f467717d7ab7035a115aa9d512eb59c70f9bcc legacy-trunk +2399 fd816ed17e35f1710e8b96b3cc9fb7e091d55e19 legacy-trunk +2400 fda973f2a512b9a5625755ce701f63aeb7ded2b7 legacy-trunk +2401 0aad3a7b97ef3529131711fc81abd37794afbe52 legacy-trunk +2402 41e057870a5354ef5b52956b89892f44a3bf7d75 legacy-trunk +2403 316a0d9c00969ed066b025c054fdb0d1c44d68d4 legacy-trunk +2404 5f7c24b3953be7443ed6f1e379b30b53bbd0ae77 legacy-trunk +2405 47eb81da46dc21677f18bc1f53baef20f44bf587 legacy-trunk +2406 43133d885c4cc963211699ed28c967903e167a3f legacy-trunk +2407 956fd5c3f04078017dbb25fb70b2ad1a8ea1b28b legacy-trunk +2408 359bf109da0f7c6102c0dde90a599e8188eb1f4d legacy-trunk +2409 9eb13c67ae6ff6bea92f826ce7af135ac0aeb9bb legacy-trunk +2410 bab1f5494b8eddcdd1e79d71794c4f3e083c3268 legacy-trunk +2411 b9986009d7dc4b7c289054a89a686cda2fa6ed77 legacy-trunk +2412 48d58b74a3a47abcc616bcb6358b08d4252259a3 legacy-trunk +2413 6811912f672d894339132b6b8fc86dcd590ca373 legacy-trunk +2414 d4e532ee6f3d187c07ed57d44759b4040eccc237 legacy-trunk +2415 71b0bd5ed16205b21d436a6cbfd4812f16c9f9ad legacy-trunk +2416 8604f9029cda3d717bec641266ec704c8f369e20 legacy-trunk +2417 3eab2cf5e4dd51cfcc449df6e4c098df9b0cf7d4 legacy-trunk +2418 a46558ad0beda958ac5c1701156e46918c0c71d4 legacy-trunk +2419 3b93bcea10f6df869183835e84cff5bfc587784a legacy-trunk +2420 6321d3dc57e0c1890a6f622c51d39f40afaca64d legacy-trunk +2421 26b2eed783814880741330d0d6c2d1b8be114e04 legacy-trunk +2422 f4a944e9835fa932f142685a7e244f6d29947114 legacy-trunk +2423 6acd41a45d8da8bb0f3a56fbde0f8c66826d03d9 legacy-trunk +2424 28f0ffd9facfb99ac5958c78e083ce2266380917 legacy-trunk +2425 72d1b89be35ae22bb6aea53a37d384484633cf48 legacy-trunk +2426 187ba1733b1781b4bf5d97a4d4fb33425550d890 legacy-trunk +2427 b5826bf296776ea0f43a952104d11498ff24ad6e legacy-trunk +2428 457661e47c7ba9b6dd92653f7b47d7acfa9423a5 legacy-trunk +2429 0fe2471166f053bf7f6b1b0133d39d8c26efb23f legacy-trunk +2430 745a46611957d6b24547678de3a1ee0f523ece65 legacy-trunk +2431 aded208adf6c6285a83e8e43bc5929ed04e42c3c legacy-trunk +2432 0bf02e1b7f51de6c650d18985652fedbca0e9a10 legacy-trunk +2433 f0857ce7ed4fae40985e2dd0d216376ffff307c6 legacy-trunk +2434 af1c8f5d0b37f931bd1761b893d77cf3a95e0569 legacy-trunk +2435 12a64115a4eebda4b8ccf93f32216b2270784a96 legacy-trunk +2436 80001c023b2b26fac98c2940f31a46cf2f54be98 legacy-trunk +2437 1078cd273b4041b79f12fb419f85749b7df9bfbb legacy-trunk +2438 53c8d762f3a83e203a5ea01213d115c553d3fb40 legacy-trunk +2439 af9a8636e4a8778747141093415231472b7f9c4e legacy-trunk +2440 9c924f9c3b16943287aa56bbd9efcf336a16546d legacy-trunk +2441 702a139fa24b49a84a5301229f30c0e090a211af legacy-trunk +2442 6dfc92630123470a0447cfad7bae79d900264212 legacy-trunk +2443 d5c9ae422b410366d5d301774b62d77596bbb595 legacy-trunk +2444 ed016255892933a9de2e1ccbdd633e7f42ee3112 legacy-trunk +2445 6ac402023cac5ea9f375f4225d51e4d1f3966bd8 legacy-trunk +2446 85bd7dac13f3aec8fcf241a844a647442d685365 legacy-trunk +2447 3905da6c4a8bf1457abb0fddce18d2ea0394c6ef legacy-trunk +2448 07efda2951a87f1f902205b0bd8e3190b39b7d06 legacy-trunk +2449 9b43a983124c12c6628d234333d8177253b69e4e legacy-trunk +2450 c4c278c56e90005313b251c59abae831730286b7 legacy-trunk +2451 6637eee1c4f8422d763dce848b31ac80e2957c15 legacy-trunk +2452 06774a94abb5bd73661f31611118e120be35f613 legacy-trunk +2453 63085f7b3db5ad2bcab650531c27c8ea822ac4c3 legacy-trunk +2454 f900b692b37e47018d55db3d97aef4cc6d3b0cc7 legacy-trunk +2455 8938b3132caa9038a06bf685b8328acf3a22ed5b legacy-trunk +2456 d7a38dece86a8182a4ed32445313bb3e39405c2b legacy-trunk +2457 7a35d985763b21f959e2d16c8aecbebb5ecd555c legacy-trunk +2458 abccb0f9f7359bc29b6bddb29cdcd02b37f1eb70 legacy-trunk +2459 7f8756fd64220e3d10665125d6ef2e29b8a50e58 legacy-trunk +2460 f7090f5814c2276198917fd865be67155354f8c8 legacy-trunk +2461 09fb79e7baf7ae7e10eadd1218a4498a691d0a66 legacy-trunk +2462 c28fabe2116544587987d3c60f14306c7b9972ab legacy-trunk +2463 d19a665904df5794837c51648797e8cabeaebc32 legacy-trunk +2464 149dd121d0a6b4eb40340ca9f004012c7f3a7dfb legacy-trunk +2465 3201b75695ef2883efd4864f47a0f3ac527a86db legacy-trunk +2466 6b93d4ce8dcb98bf58a2d8e90b93713e1699a0de legacy-trunk +2467 c8a979029df41d8ac123b23e51380b71ca425200 legacy-trunk +2468 35a2528f8a73d86fd38e9bba03c17cacb3e07a34 legacy-trunk +2469 abcd9159303577fbefbf464e31650ac0fea42315 legacy-trunk +2470 382323f92fce5fd04ec506183f02f841fa0fde48 legacy-trunk +2471 72a0268420d0674e2a8d0dd657a646ed704a8f41 legacy-trunk +2472 605e172bbb557464287823e4e7d46f387fe20af1 legacy-trunk +2473 ae89411f6fc0e06486a1012039becf59e5c5795e legacy-trunk +2474 b8e4213f65a6e54db4e32e940c519e6cae616734 legacy-trunk +2475 e83852d1a5e23d6d38d86a90d7739e45af2ac2fb legacy-trunk +2476 aef7e0a9119e5d37ee82226a4452b228fc70a20f legacy-trunk +2477 a9d467e8463194cd56c1b6f83780016f70ee10d9 legacy-trunk +2478 325b40d77235562954d71fe1f59f91b78bf66703 legacy-trunk +2479 12fdfa010e41eb955fd5c7ee4a276e6fddda468d legacy-trunk +2480 a1775cc786e6ad9d1254a2b0a1b00cce4a5e7750 legacy-trunk +2481 26426c42a162a449fe0287065657f5a69238e04e legacy-trunk +2482 2a84b16f91b098831ba753b3e313d5f865a29d00 legacy-trunk +2483 1a6cf1f8cceca04bdc2ea70cd23dbdb5d8615581 legacy-trunk +2484 714c2390e5cb45e6c8334fc41cce9e2d6c124486 legacy-trunk +2485 a81020d505bf9e8b6c9e0f7829ec11a1eeb33308 legacy-trunk +2486 baada20762b08185d010e36c668183283d3cec0c legacy-trunk +2487 ff0862e3d63a96778de280c96875aff1462797ee legacy-trunk +2488 4b59e63a27b57c3172edd0e95c963135f989ace8 legacy-trunk +2489 48bbc8ad8016a5b547416ee1bfcfbd05cd2f09f6 legacy-trunk +2490 f21cb7b53f6cf8ac574959f2ee25e28c4f5fafaf legacy-trunk +2491 1807d60e6231f7bab842a8b71850a0629d656601 legacy-trunk +2492 21c266f7eca1d967abf83cc5fc403029e8f9c0ee legacy-trunk +2493 be3052a77b7fd468954a07485317ade3d983b40e legacy-trunk +2494 137a5e06fc84ce55cb430e8975d69b0795e4c75e legacy-trunk +2495 449f5e5d9af62f23ee50952754f3fd91ede7d4f3 legacy-trunk +2496 17a29760d062b013cdcb4be5760732a7c1c1c71b legacy-trunk +2497 64189ba7e23bcac30bb0dbac17e41d4e0708b383 legacy-trunk +2498 4266aef50c2b4cfb1c2f112557b6db042dbca7f0 legacy-trunk +2499 794cfd455dc6f626bcdc5c8411640c9ef251cb2b legacy-trunk +2500 08dc37a4dd323a2255b048685e95962704cbfc66 legacy-trunk +2501 e3941efd73105c1218aa11c39444e058086480f6 legacy-trunk +2502 90418fd437dbd36750835411e6c1a1a2d5f4b3b8 legacy-trunk +2503 f3795ac146cefef0b6a55b13131f77f9c6ca97b5 legacy-trunk +2504 36ace908289ba79d97b7060e85f05dbe9fdbe342 legacy-trunk +2505 75b2fd163fd715a10033a60837667370b65015c8 legacy-trunk +2506 2e0ea6d5c6cefa7acdce51ac53915957d3f67fb7 legacy-trunk +2507 4817ae40a4e21dc08d7d6a54a5375d96eac5ee49 legacy-trunk +2508 daabe232062e04c63edb54ab51772c44cde52c8d legacy-trunk +2509 a295d9a3fe89233c2f553c7b3ddee1b272dd7f60 legacy-trunk +2510 6e5cbd9cd5f95187ccbce50f715b6661d0da1475 legacy-trunk +2511 3dfaa093d96e918c3e0e85ba950cb34db5cf8059 legacy-trunk +2512 a3595ae4dc1e783fa499994ddacc993b63e74933 legacy-trunk +2513 d93259cd379d666efd1234d59a0eb0d1374cc086 legacy-trunk +2514 1c2cf2bdb6c8a0e55c2df051b2216b51de310530 legacy-trunk +2515 60da7ee9100e649b402504c422f7c589800c4b59 legacy-trunk +2516 8a94ccc4c91400b2e46223e9ac17806f1d8e1ad3 legacy-trunk +2517 ab05efed03e90ff61cb62869c4228afd7a381ca7 legacy-trunk +2518 23587bea11bb1a8f676f4987cd0f1390fcbfa16c legacy-trunk +2519 a67ab5d581463c1fdf50951a070d6cca96052322 legacy-trunk +2520 0696f198753f948e8a614d19f301ad648b9682c8 legacy-trunk +2521 3b33ac44e36e3c65ce7269dc89c9efa2fd91a9bd legacy-trunk +2522 c8584a1ba38a94744e611e4a12e1366d0c6948fe legacy-trunk +2523 b29696e5c4d982d959a22feaca0457e5a047fae0 legacy-trunk +2524 d70754a96310d62881a899b6563aab32e58d5508 legacy-trunk +2525 0bf825f55ac15200b6021f8aa3b40d1f4cb2a989 legacy-trunk +2526 4e3073bb0e3e0397bde9753e8832213c09ca0900 legacy-trunk +2527 cfbac6ff73af3ca4349fe390ed5a0e0bd0ea8c26 legacy-trunk +2528 a7d370f93f7526f3433b6b34ab54f2215185cdcb legacy-trunk +2529 0927bdb816a043bcb4a11f14800ed179d86364d2 legacy-trunk +2530 46a656123a6965560bf23223806932d537c3362d legacy-trunk +2531 509bb74ac324129d3235321c9aa5de73998fb1e7 legacy-trunk +2532 3972900e1b61b272d5f46bff202ff4bad5477ce7 legacy-trunk +2533 16b18f586fecc41d15444bd4291463cb9a674f73 legacy-trunk +2534 305e150baa538e5e7ddc0f51ce36d476092bf55c legacy-trunk +2535 70a18a6689d4d9cd0de37ac2c6d47c85b623c7f1 legacy-trunk +2536 86828cc1c6468d3ab0f08224a2726c6dc91395d1 legacy-trunk +2537 5645942b7ae055c56bd1d63f309ae50326adc4b8 legacy-trunk +2538 7aa4cd621f59264f2f9d301714033b77e671ca9f legacy-trunk +2539 730757ccb8a36984f818a11886589c91a937cb3a legacy-trunk +2540 73efe3ea4f1b8af7c2fbbe85e3e89bf8159f7234 legacy-trunk +2541 ddab50285c479eaf84cf7d6b006cb6e70a607a87 legacy-trunk +2542 4a96823f9b6849600c588ff38775f8682f962703 legacy-trunk +2543 4dff23e7cf11417b50d7da7d711d847f3b805063 legacy-trunk +2544 ba3c1f95e665e35567cbb1781df630fc736f4f29 legacy-trunk +2545 a3d4d461d4421faeb34aca28fc6643760a941de5 legacy-trunk +2546 039aee6cbd786abf512ccba2090bf490759811a3 legacy-trunk +2547 0598f4f25d044d62ab3e723cc63206169bb57a36 legacy-trunk +2548 f01aee6155b3a2ff2a3df993ae125760d782a8c2 legacy-trunk +2549 31d509e94271059f12d63c7131c0d58026d8794e legacy-trunk +2550 55bf66445c85c80f227ac49c31a3e88f9f805e97 legacy-trunk +2551 172aa2c3e7340c1e7439f3b7e1ba0f3f0cca6f06 legacy-trunk +2552 caf8466dcc9c3577c1eb6191467fe94f15b24257 legacy-trunk +2553 f33a3f69dfcb59bd198640a624789e6217b16331 legacy-trunk +2554 59609b3af978a397016cd35baea2d15e58c3fafa legacy-trunk +2555 8154385248d81757de911897b27d8b3f1fa0db30 legacy-trunk +2556 659b8dbf695c511a9955e9c77d42c5ffa9989fc7 legacy-trunk +2557 c262f421a44c51c4fa897540d43954e1811a9937 legacy-trunk +2558 4cdcc16bd0800fec0b2814e8c009dfdc0d5f2023 legacy-trunk +2559 0ac1357cd8989e3b3654228e16677bda1662a399 legacy-trunk +2560 1e4e6df0718e03836a5bb693ecf3805c42c07244 legacy-trunk +2561 d189a2f681a6df3759a0a4026bd65ed7413220a0 legacy-trunk +2562 0c5e4e137de6e0f368ab489e64461ef8b042cbf0 legacy-trunk +2563 9bd2680d16bc36170f0f2c903f1fb87654107707 legacy-trunk +2564 d7832af6aba634e5e33adb4815ed907f9b2880ce legacy-trunk +2565 9cd38d1ac3919f36c0a263fcae487f3f0412ae9c legacy-trunk +2566 d3d328680328de7f862c1123b623e8c4c775d367 legacy-trunk +2567 e628d09ce22febddbc5fefaa22326202664ea71c legacy-trunk +2568 9b3d557665a9180255b6f5773e0925f6fa802247 legacy-trunk +2569 952133e89bc725ebfa49f38160963e05a22c74f4 legacy-trunk +2570 b5fe6482072fefa4cb43b72b12cff5e2f6d3e624 legacy-trunk +2571 fd061dae9e570d8fa8038cece70bacef5e1ff67b legacy-trunk +2572 0f353afc2870d68447729da0742d4411c5bbed27 legacy-trunk +2573 4ef31f5d3d927b4b72bf13101f3864eaf6322691 legacy-trunk +2574 2aff37b9e20eca097d8c9ac90fc6cbfd4430c68f legacy-trunk +2575 4c45bcbe3bb3bbf712f2aeb953b45e45d3f398ff legacy-trunk +2576 4f157b324c505b062cf52a296a4af4d2a94356cb legacy-trunk +2577 2b034c90b6d9a678ddc479939c41a118fc60ac5e legacy-trunk +2578 163e29060f0bf32f119b7d12128e174199d4148c legacy-trunk +2579 70323cba3c1369da24c0309fd06c33f993523d79 legacy-trunk +2580 5a9aa2aba08e96d000e8c3ffd81a43f9c0059185 legacy-trunk +2581 394301340693372bb8c0fe3927070b21300142ae legacy-trunk +2582 55ee75f2fea4acdad64ee36e2c4cfeaeb5bbb35d legacy-trunk +2583 ea5cf09bbf36b467cb78f7cb3764722e050b45ac legacy-trunk +2584 c8d0a4a41f0ba7ce82fd7bce759af1183c4c1b82 legacy-trunk +2585 2dceca9a0713933c361e41c6b3d20eacc5c44975 legacy-trunk +2586 d1ee0fb0c0df565a24055137e3ec660f3dc073c2 legacy-trunk +2587 61bbc7230c7166e565ed0abfa35530efe344c2df legacy-trunk +2588 a3a842b399132ec80ede58942ff19b4b71a7aac4 legacy-trunk +2589 3c7b7caa9da566aace610d11effdfe87a4190979 legacy-trunk +2590 bb308e7b00394fbc9c7e4455aece4ca50139838d legacy-trunk +2591 0f9ebc63dcb56389af1b1bfd713eb10b9976dcb0 legacy-trunk +2592 08b1a89c8f063534c793975741437941e73afe52 legacy-trunk +2593 7940bb391a6acb2f9f5e036e1f0e52d7e94df7ad legacy-trunk +2594 8beddc17039668b3480695bb3c8d2b95bf54f735 legacy-trunk +2595 487b7c62ae774a385133db01156d2717b56de055 legacy-trunk +2596 2de34b9602e0ef65e48d14e39ed60f1755284056 legacy-trunk +2597 1e6c8f2aa136daa2754761393e0c9223d0fffae5 legacy-trunk +2598 402a59ad2493f0b97f32c6feb189a55ee1a5a332 legacy-trunk +2599 64bc8a284fb3fcfd36a18bcd2fe6b5270f4df1f3 legacy-trunk +2600 c12d033f6594e6649ffc24b81e07e0ba016997b9 legacy-trunk +2601 e2db3341d6860ee676b5bd826850ce62647bdee3 legacy-trunk +2602 600bfa9fb8b76e5a9a475021bdff3703a524393d legacy-trunk +2603 17f4cdf28959f60a24494ef6f1e4105fb498090a legacy-trunk +2604 9f85beb1f7c849fe016972d880c8a0ba23cbfc1c legacy-trunk +2605 1f64f55a52e865aa7aa967b919fa40ba774e42c8 legacy-trunk +2606 c0683d6676c66bc54ba96efc0197998f8f037ddc legacy-trunk +2607 c307d10b680c6a398ca156f7c0cd406c22e2ea1f legacy-trunk +2608 8f6389dbc1cf7b4fa7182799034acc8c8ff08c88 legacy-trunk +2609 326b89ea67138bac4531c5980622f85e922bf754 legacy-trunk +2610 a4fea69120d8147731b269492110e76fa50f2239 legacy-trunk +2611 23497db6687aa1dace196dc61642d031d87ac9d3 legacy-trunk +2612 b2dce01c366e6ae54561a7a8e86526d71646873a legacy-trunk +2613 ae1a555e65fac64656bc02ea5ddaacbb370e046c legacy-trunk +2614 34abca182f18e1b6169eae082c31a3281e881a45 legacy-trunk +2615 a5f0b8390c879681dbb28494cbdeb8ce1fbd8f88 legacy-trunk +2616 464d9d93f34e91a228ff65daf440d9ea8ccc7284 legacy-trunk +2617 92718e4f5adc1b284c768ede2eac70bd84e2b4e0 legacy-trunk +2618 e8667a7d318ddee085d8e24e8d706e46a8aba331 legacy-trunk +2619 1fd4712cc66f7b6ac598045c8005f05917865441 legacy-trunk +2620 0736aefafc6018c164ff80d8e3c284b8b951655e legacy-trunk +2621 7a60faa3811351ba0b46da90e6e939471866cb2d legacy-trunk +2622 769cfff4ae5e95041ac396466c05d11de63259e6 legacy-trunk +2623 678a734c244dc90cd8315ee3b7423c0bf4bc3468 legacy-trunk +2624 c97f4c6ba6c65ecc63f335bf70acf4126172ad27 legacy-trunk +2625 90300ca21200592066ba78e27e941b2ac6732a3c legacy-trunk +2626 ca0391a812f86358929548c75abac9f207b8e56f legacy-trunk +2627 90cbcb0b97dc7d498443524c522b91193ce950d3 legacy-trunk +2628 1cb78b625b0723cb49552dd6ac7809ce5a4ba4fa legacy-trunk +2629 10e3d260413109a9abd37eb4576e0e52f252dd2c legacy-trunk +2630 42130e7220affb94d0c33f8fe677d782e802cbcc legacy-trunk +2631 a1025cbba30dad17f995741aa8d5b45288d9cdd7 legacy-trunk +2632 1be2087692a24446434731392e340ea62bfc863d legacy-trunk +2633 1d4b0339b83da8e3bca044ee226df52dd41c9f7a legacy-trunk +2634 4a7f0f06cd27c4b29f76663f067387b2b361f7f0 legacy-trunk +2635 19365201dcfa85aeae3d9405964ebbdf829680aa legacy-trunk +2636 e2c3463c4d91843038fa60ab772bf370ff3cb404 legacy-trunk +2637 bec963f99bc9f591ad1c2e09ee62452eea9b9aa0 legacy-trunk +2638 436c81030853386733f6b21a3dc497b9bfd94f2f legacy-trunk +2639 c3bee5a5721f7ecd7dabd96d88df54f8a0c02546 legacy-trunk +2640 32496a0d01f488a65e758eef45c3e5b302edb250 legacy-trunk +2641 c64c6702549d6ba2cdb990895f4fffcc75fff403 legacy-trunk +2642 dc0463453a64371baa0381b53c2fb38a8d661cf9 legacy-trunk +2643 ee899a81570d0504ca80aa1dd82dd3435cded704 legacy-trunk +2644 cfbc4cce1a42776298f6d602f457791d8398f5d9 legacy-trunk +2645 db820da3ce03ed671f6acc2494202458c36f740c legacy-trunk +2646 3b385bda38f89158a7f0e02a1949e5581a949915 legacy-trunk +2647 c7a2f5613d66469196ba807d3b8422112c94e45b legacy-trunk +2648 77b80a91d357c1d95d8e7cd4cbbe799e5deb777e legacy-trunk +2649 90f35fcf8ea01d70829db56ebdacd2ad43f71400 legacy-trunk +2650 a0fbc7b6a485f98c9071d287794f1d24f1e63dd7 legacy-trunk +2651 023c7f69d24002c863937b843e77a43e6b4f02d7 legacy-trunk +2652 b926580c9c2841863182a08c14790829d813dd91 legacy-trunk +2653 92a10a1e1463007c035877891d9aaa260529d337 legacy-trunk +2654 57667ab1e1941d01eebc4c6ebe6d77ae88ce13dd legacy-trunk +2655 4c211e8286b5c6282ea4527d855cb2c62442499b legacy-trunk +2656 0ac9d5db41c8ff1febb510bd343a053b4b34710f legacy-trunk +2657 0ac392b7f76eabead8841717fed1350a503cac46 legacy-trunk +2658 2ce6a2a318863dee3edbaf90639ba32c675dc66b legacy-trunk +2659 56bb1067a8806ed2c913de946d6f5bd1b9a81826 legacy-trunk +2660 80e2e5d67b496665309f1165ea14c8794dadd7b3 legacy-trunk +2661 7f3faafd83ed3727529d71da83c040d956557c7c legacy-trunk +2662 ddbcd532c114df75bf73e3073dea41658552a3c0 legacy-trunk +2663 67f6f71943c16229da75a3676663d6062770686c legacy-trunk +2664 e14d46440ea71399fff16f7c05d1ab794f8ace63 legacy-trunk +2665 eb03977baeeb4cf3287afc7a276a8e92552f04be legacy-trunk +2666 095d9cf4e3e6e24b180b0cc4ffe1c0c8690862fe legacy-trunk +2667 9f7161db5669e91b568374fd6bd0445fa65471b7 legacy-trunk +2668 fbff2e7cc49df887b49fd83e4551f4379e9ddda2 legacy-trunk +2669 79ea13b7df2c162750a427a0b4ec73ae225eb7ce legacy-trunk +2670 5b5f86ee4f79b7e5521d6e62d768b8070a31acb5 legacy-trunk +2671 cbcdfda05bc4e22af56dfdf01eca7d7b8f36f3a4 legacy-trunk +2672 766cc820f511e1019ab7a099a54beff7af9f3207 legacy-trunk +2673 8414e1f9a5fe4ccb373e25d3183adebf92081ca1 legacy-trunk +2674 9896dcf08e16fae09e61b54521cfb2e48457b8fe legacy-trunk +2675 b46d76ebd9a72e5032f41577b2868e4b73d004c2 legacy-trunk +2676 f8d53b6cd442e800e229ed1ff45930d97370019f legacy-trunk +2677 69f89739938f9a608fdae6805454b403cd34ff8a legacy-trunk +2678 43c223159b2827697c8089ade1c68dfe05cafaf6 legacy-trunk +2679 df0343ac8a21ab158fa4b13996537eac060291dc legacy-trunk +2680 048e1371c4506c1e3e2260b96235a595d80f0084 legacy-trunk +2681 02de7a8ae26761cf5c67dcd2921c0ce2f66d4a22 legacy-trunk +2682 2dcdb0023c320ee52ee7337c6992070a59f955bc legacy-trunk +2683 be898cc158006a18478395243c35aeb553b10d54 legacy-trunk +2684 d9b6b0369860c45c4aeeccc76c8906b29b1427b6 legacy-trunk +2685 b3825ce83c87f2429dff845ec7435f4a76e87d0a legacy-trunk +2686 742dc838038bfcacad7b03fc0a065db336202de5 legacy-trunk +2687 2b0ad52ac39686c898499e30f99ea1fa35829673 legacy-trunk +2688 4357ab68c7d5b6e9c0d6a16b78f5bf310da6a8e1 legacy-trunk +2689 3d467108b0083c4c56bd5a4747baea7032125be5 legacy-trunk +2690 1efdb15221ddd1e963570fb71f2818be0c4b6809 legacy-trunk +2691 dc2ec49a2ad29b6d963013de52a1a835e0fc71f3 legacy-trunk +2692 8331076cfe152dfcb9d1669f929d4791d5b93638 legacy-trunk +2693 fee35078ef40a3d5b54fe08b33499725330eef98 legacy-trunk +2694 8b4a274e546dcca8ca80bc1619121846eb609ee8 legacy-trunk +2695 96b2128f00aedc24a244a6eae201aee488782412 legacy-trunk +2696 2696b56ddac4952fcd3802d1e182433def1a635a legacy-trunk +2697 255728a841def1b5e928e0ed61d64cca48617363 legacy-trunk +2698 9019848824a10d6e1e18ea8bb676851082cb5963 legacy-trunk +2699 9d0242b92ca5fb077cedcc00f1610aedef9cc025 legacy-trunk +2700 ea5146866bcf179745427ed3fa9b99bb700df6f4 legacy-trunk +2701 48eaf4fc53cb0d80132621a38615c61aeaf0eee1 legacy-trunk +2702 5f590ab45295776b3c847eb2764be47619fd6945 legacy-trunk +2703 b586189cc1f5e699db377d40a50c4d2d76944514 legacy-trunk +2704 d5e1c499f0137df24917317f1eb6188c03da7318 legacy-trunk +2705 d0baa83000056242ef225d8b104f16a626212ab5 legacy-trunk +2706 9f06c6689f0d10a43725a45b55031c96abaaebc4 legacy-trunk +2707 937cbc0be6ecedb5c0b927ba50384b00c95e5a84 legacy-trunk +2708 e198cc98a4fd0e7e2f339a42e747ed202dc871d6 legacy-trunk +2709 83046664160e99092d33265d81b6b8638bebd4a3 legacy-trunk +2710 4efff6cea90f699d7f6510a2988e0b6b05edd619 legacy-trunk +2711 766cec50d766d3f7b55d526fbd282effe6d4e22b legacy-trunk +2712 5a61f827f47c3a39b4aeac5390163931aa8d4f86 legacy-trunk +2713 c158c834765465b73735c374ea24ea46b31b492f legacy-trunk +2714 264306b61b83fefcf034cd411ea736dbad10e069 legacy-trunk +2715 2e287a1503b252646f4d80cf9b6c73cd5d6e9024 legacy-trunk +2716 0780b95a660ec82098f3a854e262baca8ab591e6 legacy-trunk +2717 adfa082f520a6166f6d35f7301c57018814a7602 legacy-trunk +2718 1ef63adf4fc5ba6856474312e32e0c1c0eae62ba legacy-trunk +2719 cfb53322c9d11432da52e3ff1961965db84bd43b legacy-trunk +2720 683edb0c44634929839f63a5cdc3887b35b5909a legacy-trunk +2721 0614d887d10abd02be14d89159d9a4d3e29796bf legacy-trunk +2722 4434393b4ede65668658b46a6b5e5e234f81f324 legacy-trunk +2723 17068a6a0aa517b6d03aee797564ae8a5550aee1 legacy-trunk +2724 73e266bf7ac6b03b972b3b306c67ccffae40f5f3 legacy-trunk +2725 f9c07ee793022f65c2bcbcb57c7211d32a6208e5 legacy-trunk +2726 5faf93eb9256e336343ca2d2f69b24e4258fd4b2 legacy-trunk +2727 5a1f9ade15124320a034920b3c51107aaca1819d legacy-trunk +2728 8c179d023583cd861d711ff313694f1d1f5769b7 legacy-trunk +2729 92509d304e479c60a7ab4355edf8edea5c7d8adb legacy-trunk +2730 6c36c273d57d4d9e0221bdcdbed22832545e0fd0 legacy-trunk +2731 34a761046dbd69f69dd3751f59d181eb11026a1c legacy-trunk +2732 a5c245923b310d568a0afefa0e4f66c3112953fe legacy-trunk +2733 086bdbb6973bf35b5c4ef983e0aae094d8c44ba6 legacy-trunk +2734 4cb55356706f3bfb3e14ee5ff228295a76dfe562 legacy-trunk +2735 03b9f152adb695325c593111a118336783c7f189 legacy-trunk +2736 deae80e07a81c98e25b2c13f2c2afb68565e814f legacy-trunk +2737 3b8f41f96eb4c9533367410acf32cd40f0269e1a legacy-trunk +2738 2da934ef27c03813abd1afe08291cd87d14daf7a legacy-trunk +2739 12ecea6e955c12b133f94e36f40a2425835a00c4 legacy-trunk +2740 6884346c04a048b30f3c53365bcb7c4d8ac1732f legacy-trunk +2741 3169d38f67742b9816062c9ad94b6959d8c8ceeb legacy-trunk +2742 bae1494f2ec810230cb57452b060348cbef421a7 legacy-trunk +2743 5f71f166079d401dfccf5b4cb513776266b682fc legacy-trunk +2744 c72f26ac491ba8d8228eb8f6f57b816d35f7f19e legacy-trunk +2745 37aa67f0867c10f4637c7e00f44ceb34f2aaa4cc legacy-trunk +2746 37905fe1892a27dd8b7c435f444447f43a02c435 legacy-trunk +2747 dbf40891820161eb5e47d05bde9bff636bd0940f legacy-trunk +2748 d1547d6bb5b5cf611f8f77325e2940c222cdbda0 legacy-trunk +2749 7d24de643fb50caab3d24059952eac2b7636e1f5 legacy-trunk +2750 6077704dab7a3f79b7164e4d1812b654cdda31a8 legacy-trunk +2751 f11fae8ee1e429d836bf2794437bac321c511e0a legacy-trunk +2752 9276b3ee39367c61d21bd142cd97bdd2fdbb73f9 legacy-trunk +2753 9572a7d09dff462ebead49c104231a3a4eec32d2 legacy-trunk +2754 0868176365d7fac18d9e6e44778b3948e70475d1 legacy-trunk +2755 47c42ea67a8bd853144d99d0ba8ce761c563e673 legacy-trunk +2756 f9cdeebfcb670c3068855879f49709829d9d8472 legacy-trunk +2757 e18f1fa398a30b3e25cafe3c6879080e2b1d7f5a legacy-trunk +2758 800cf4086fb33d80cb3b677149bf15b6f0322e59 legacy-trunk +2759 b204f31fbc97e60dd17437b2480d9e68ee2a9517 legacy-trunk +2760 a347933a6d922f605f502e8cd2af28eb3fd95de3 legacy-trunk +2761 d49b6a6725bd87f5219a73d1f07155341c44e7a3 legacy-trunk +2762 8cdd62bb515cbaa0c178f7618a62c96af6deab83 legacy-trunk +2763 5a35195398ef53fbdd57d6d6bc8841d8d2e46009 legacy-trunk +2764 34d67da88e84b84b6d8ed7737221219dfbb2d4b0 legacy-trunk +2765 8a24ef44dfb0a8b42b651458f55ed750790f61dd legacy-trunk +2766 6b3604159ca9b118c67102e65284ad5154664ec9 legacy-trunk +2767 c763fc64fcabbe25cb4f32b04cc57af07bd70ea4 legacy-trunk +2768 0214bbf47bf6dee46ed1530070e4319386232aec legacy-trunk +2769 9276c2625d64cbfd242a3bf45c1beefc230bff16 legacy-trunk +2770 0ad5b35e3ad89f86357604696fbafaa3a735e42a legacy-trunk +2771 dcc6de1c37a4f53526e06254428576a7b98f4e28 legacy-trunk +2772 e25e2656c8537b115f38261416896e44a6fe6275 legacy-trunk +2773 f8258f841046e8d6492025c34bfa5279339f2f63 legacy-trunk +2774 405a2fec74541de7033c4c31db463847f9e0b73d legacy-trunk +2775 11e86270ed0dcfe7b47ca3e9a4b38439a0bf34a5 legacy-trunk +2776 40a0ec994c549ecc893b3b72e8151245b2b03c06 legacy-trunk +2777 8d5725494ede73160b075f2500fd47a317a2c298 legacy-trunk +2778 755bb8efcc2d53349c8e09fac3700e17b7b5f11a legacy-trunk +2779 189ee3beebb5e6f6a51c46aac7941f087af3d379 legacy-trunk +2780 ac7d64453aa9f15ea98888a51b8ce35c1df7efe4 legacy-trunk +2781 d1f6ec788acf7b5fc4715a0076aa3b39b68173f9 legacy-trunk +2782 cdec3e88053b3df55f77512984275d326acb262b legacy-trunk +2783 a0d4c5ef1d5d7895fdc5bdf7464ed433d240ef1d legacy-trunk +2784 9be658d193a989f92313025ccceb7d356c3f9d5e legacy-trunk +2785 0e436200bf12884ce1dd55b484455455b10c1df3 legacy-trunk +2786 7fb5defc8f6faaa595ec1b7b84d6a9351e1b5a67 legacy-trunk +2787 212ad158a8062e2f538da3d0254b811407e70cff legacy-trunk +2788 1d65f28c0aa97cb8539956780673047ee8038054 legacy-trunk +2789 d420af9c1b757a2f826052abf14ed56bb466e73d legacy-trunk +2790 42a6b8e1391a0785bebab64f2f81ccd0c08a1510 legacy-trunk +2791 04ed4765b17ce530df14dd94ec945d6deed03343 legacy-trunk +2792 f5a2bc39e10e2a4d4d887373b1de9748a57a4dde legacy-trunk +2793 0c1938f2e0c02f84b5ad62a1cd5539534b90cd12 legacy-trunk +2794 1f6c593eda687b29d52031d7fe17396125f7410b legacy-trunk +2795 885996a1a631880ef628bacadcde0bb9f83e1904 legacy-trunk +2796 784a09a52375c4e552e8e3f83edc973dc76592ff legacy-trunk +2797 d5bb8fe43df2f3bfb33e798dcbf89588dcb429cf legacy-trunk +2798 3cb686c48cdddf81be4342bbdface714efd68f84 legacy-trunk +2799 9d01e98ed8493e0766b5e5ff1259804f7189bd54 legacy-trunk +2800 2f95a01d6c1f3c6456dfd2ad47873fc604f8a6ac legacy-trunk +2801 0b38000fc823df780f7dd86d3cf6122282997fdb legacy-trunk +2802 b162b27400bc502dd0ecc743daa0fe5386849fe6 legacy-trunk +2803 0efb8ddf6c0ed78bca03f3565ac2b1d428e652cc legacy-trunk +2804 02d3f161b7f55702adfa495a001cd1a73bf56b1d legacy-trunk +2805 59f9325bb8ecc3e5db40b0d6503cc79174638a0b legacy-trunk +2806 c0e7b0b9b7507d432f1e05f5ad1e7a875a2e4d5d legacy-trunk +2807 c832a2b0d4330bd831521ffdfacaa83f8794e34b legacy-trunk +2808 8bba14f7db8a1dcfe97308b2cc50304330ef89cf legacy-trunk +2809 f6cc7aa31de69e9a7c621abaea7ec05ef06ca615 legacy-trunk +2810 da5b1433467c1ca5f594ed279cf92d6125945ce4 legacy-trunk +2811 489fecc1da286aac2f783ab3354a58686ff6662c legacy-trunk +2812 73fe7a1a5dd42e36624b1135f76b82b8e0b079eb legacy-trunk +2813 0457c441b0860779a719e05ea529568a7429fdb8 legacy-trunk +2814 74942ec70430ae8fb54fd4fa1ae729540c830a21 legacy-trunk +2815 2e0d6882013effde6422ddaee02d749e8ee3d8ae legacy-trunk +2816 e7293b5b570d9d6191b10ae480ef9a42754feac5 legacy-trunk +2817 f6f982cb5401322b4c68681cca05cd58a4c98951 legacy-trunk +2818 3e626c413bbf488fc288ffac16f091eea9e74b98 legacy-trunk +2819 5b521fe4d1f6496b0d32f0c1e038937f74bd5d46 legacy-trunk +2820 6d1599be2b54e0e40062aeb08ce31ef73a654a0e legacy-trunk +2821 d3770b1da61152957b4ec266c13d28d6331b36e8 legacy-trunk +2822 7e5f4d9aee77bc6dbafafb9a993ba2c18c2434bf legacy-trunk +2823 aaff650d7e13660ab1fd6bd34b3cc028e7d348b5 legacy-trunk +2824 5ed6adbb95f359032ddad63f518db38d6d622472 legacy-trunk +2825 e3b63a9914f87029c34639cd8d2aabbcc9265359 legacy-trunk +2826 189078136351571afa2d486fd9d28be4d2103f73 legacy-trunk +2827 28390375a2b9ae665017f20f8646aaee6b3eae83 legacy-trunk +2828 164b56fa6558eaaa2f216ee3c424a79ed19e2eaa legacy-trunk +2829 1049867dca1f9483ca758895ef4938aae827b0d4 legacy-trunk +2830 c2ba887d9492b1b3c45a2e386976932c78b28d26 legacy-trunk +2831 2cddbbea9bfb323c57248dda2d5acb197f4a2f72 legacy-trunk +2832 10002e1bc52642d88e30fd1e442450fd02728eac legacy-trunk +2833 ffdde7fc71c1ecb82d4e4be6155176d7dc909759 legacy-trunk +2834 71d496259ad348e6de1c373bf45809fc05e10314 legacy-trunk +2835 4e2d239dc64c8f12aee9f288e1c7f1e3a4be6eed legacy-trunk +2836 5aff9f8fd2995efb2c0e5f1b53752e87daf626c6 legacy-trunk +2837 e34ebcbbdca6ffa4b9b0841c2566244edea40acf legacy-trunk +2838 6441aa6a41264984fa7db144f7049c4fb1743c5b legacy-trunk +2839 205b947b1d3c26c7604756c809137b51150e2262 legacy-trunk +2840 6a60342c31074836a45dccc8241ce7599505042e legacy-trunk +2841 102de319998e17e0d1ea91efe57940f1512cbe43 legacy-trunk +2842 1386a72ae6047d9760521f02db9479725a273c67 legacy-trunk +2843 7544ebac56987816dbe61b6c4e527bb5340c5386 legacy-trunk +2844 3b09b40cef1d09fac165f5555bd5c8dd55da65e9 legacy-trunk +2845 9126f4cb1cca4705c7cde2ef544d2b65ca714bf0 legacy-trunk +2846 ca28a3a82bba8481e24878e71413ba37e0a4547f legacy-trunk +2847 d244ee03c576e724fa5e7d049ac3a253a54c44ab legacy-trunk +2848 e15bea971a5bd5379e8bb533060b1f5865ea3b9a legacy-trunk +2849 5b71863c801d296f52322475c1664e8cac36c422 legacy-trunk +2850 90ea507860950a33dd86bb2632c853335b121110 legacy-trunk +2851 891f98357c04355ad2b2d4e9fdc361249f32ff51 legacy-trunk +2852 d6fa64cec410e60c0a8662736040ca0960c0e67d legacy-trunk +2853 2dbd7e844bd0827a4db2028b1089a2f9dc4abf7d legacy-trunk +2854 b49baad9b6406c77749d4178964edab94055a550 legacy-trunk +2855 5c18d6c5782742f29fb17a4ac7f653668fd0298b legacy-trunk +2856 87ab9c81e927edd66d8b8c92ea1acc8c42c21744 legacy-trunk +2857 f37f8bc9190c56a0f5c4219ba54a4c85710218ed legacy-trunk +2858 7c06bf15fd2abde109411d8ca3183a5ec92c932b legacy-trunk +2859 8a60649e7987e51a7568f1d9f224560d7f0db896 legacy-trunk +2860 82c1259a4ef3302a0731236bb9f152a11917cdca legacy-trunk +2861 14119b1948fb413b5d628733d5cd4b04807cac10 legacy-trunk +2862 09ce04ef723be71de5efb184fb0386d5e8916b90 legacy-trunk +2863 f53dcb9a04d6382517fa0344ecb39634e08a750d legacy-trunk +2864 8ffae0b46fd4927b8f169d6a77f5cd6b01b61ca3 legacy-trunk +2865 a8022b2a77e6096a1b585ae1df4a4263ecaac26d legacy-trunk +2866 1e8e3ab67b4585e485e23fad5e36ba20fae0cab1 legacy-trunk +2867 7582ed13684e49780673b3c0c11423347b7b1223 legacy-trunk +2868 bfdd6e626dd370ae42f2ec97c2af38b91a7f6abc legacy-trunk +2869 8bcb50f436fadee6881a2be5e42a2ee640cc5ff2 legacy-trunk +2870 7236e02c456312674efa7c76ac09f77cb0749c74 legacy-trunk +2871 bc5c77fa800687cfe740ffc914710b6459fdf30b legacy-trunk +2872 3d9c2310afe85bc750ae56ad45b2e5ec1a5cc5da legacy-trunk +2873 00cdb8dedd6f2a546005edeceff8f52fe86c2105 legacy-trunk +2874 862457e0237ca58f5883571db7516d340e09190f legacy-trunk +2875 2403fb6eaec621c358e2a5ce55024fb476763094 legacy-trunk +2876 93e215dc1d6ef1e2c7e216ba2e07db631c896526 legacy-trunk +2877 4d64abbdf70a96912616e3a4b734a86a2e707098 legacy-trunk +2878 9e9145abc42ac454e588e74b0368b8609e167736 legacy-trunk +2879 4d2a199e1202a6b73788e09a5acd1b1ebe065586 legacy-trunk +2880 cce05a476e0412ee0c3228f56aaa64d4059be3a9 legacy-trunk +2881 f7278a067fb430365b0123217e2b56db6bf35ed1 legacy-trunk +2882 d8b17fab3a983f127e767b9016d08c8de4fa2800 legacy-trunk +2883 57e94eba24848cb8057c10ec7b5f7eadc9c23994 legacy-trunk +2884 e7571a18bdef1d021455ed1d2ddc949aca523af5 legacy-trunk +2885 476bb7e5b8547569b18e7d1b008d0988b32fd55f legacy-trunk +2886 76e48701204bf237c991959a76f4e256860b1ecd legacy-trunk +2887 e8c6fa9118ebe9eff6b9866863145959b8aa9da3 legacy-trunk +2888 9a754486ef0b5121b26a25844dff473cf700049c legacy-trunk +2889 76d92ebb4d82a75c5063ddf58c600a521d0fcdf9 legacy-trunk +2890 82dd081f380d54a74948eb18c90c15be2054dd42 legacy-trunk +2891 c81952d97ebe8ad87672cecbb3959ddca7fae6a8 legacy-trunk +2892 c65fc172f16dbba6fdea9cd9b1bb8ddc3c5fe5c3 legacy-trunk +2893 0338c7c9f08c99abee9c8bb274db392f2b8e21ba legacy-trunk +2894 f179d8d5ee8c853dccf96c9d06109472653730bc legacy-trunk +2895 cf5cabfb3f71f6b779b14ca87686fcd0c907abcc legacy-trunk +2896 1e205d0875f62df592a5339d222da011994c928f legacy-trunk +2897 ea0bad9fdf6734e90943c952462157f9a71324ff legacy-trunk +2898 8246576ef3f535969578124822b2795528f558a4 legacy-trunk +2899 55c60e7f31eda273bd6207bf5a2a231039f998de unlabeled-1.5.4 +2900 078f9015f178928c6d2234912b99ec01683b0549 legacy-trunk +2901 ab1b3486b22638f54af6c9b0af266407c7915fd0 legacy-trunk +2902 d77824543bce96a9f006492bd7e88c8f523f40e0 legacy-trunk +2903 dc60953f60529907b80f0fc8d9adc0f336620a7e legacy-trunk +2904 f710110cfd392a56ba3be9afd92acb1961f32b22 legacy-trunk +2905 dbcb49d742a0cff2ac33810b9477ec7c12b35443 legacy-trunk +2906 834dd4a77ee20f9998b56fe21d8a9d8962fc8601 legacy-trunk +2907 c7b23cc8cdedaff4870ddf53f38bba8e47d59b38 legacy-trunk +2908 6c0f16008bd9d40fcac8b5189e1ef8158e199218 legacy-trunk +2909 45c8189394ff0e3e9d9620332a8ca183254260e6 legacy-trunk +2910 70c2f40430c7695ef92d8cc315f333b9cbc1934e legacy-trunk +2911 32085edd77a7d894f283570abe352e10011a2e7e legacy-trunk +2912 ff3db955e628f3416475f76d42ad9be4508efd7b unlabeled-1.5.2 +2913 a5e6881cebf09c816b8059630b78ec55111392e7 legacy-trunk +2914 0d494bc24207f77a56ef745ca84861be917a632f legacy-trunk +2915 8bd2194ad6f9a9b53e882409a0fcab986c562987 legacy-trunk +2916 8f7b31a8a6785c8466709f5d3f33fa8cadb560c5 legacy-trunk +2917 6fbb03dc439ee269b247addfbe3aa0e5483f06af legacy-trunk +2918 2dd5dbf28a2dd55d4ae72ca5c184a2a113d364d2 legacy-trunk +2919 5d2f62ad8deec1223dfabd0c54e55acc6fbf00bd legacy-trunk +2920 9de3d02aa75d19ab9288792490be456dc74fc2c4 legacy-trunk +2921 bfc655074523d0abf4082995c715427fa3a212dc legacy-trunk +2922 41dd393487f591a44caaed3ccd69cfa764ca1e3e legacy-trunk +2923 9b671f397a8f27037098ca366148e4d42ddd0b80 legacy-trunk +2924 1dfb0c9d05767d0cdb8037a6a7c15a38659236ad legacy-trunk +2925 57c3e9cfee40ff8599d01d51ef63bc80118e7cbb legacy-trunk +2926 07d5d62a4a2b201660e300bd3c6c6d55594848c9 legacy-trunk +2927 7d84e0ddf3be2dc864444a861d657e8609f8ce80 legacy-trunk +2928 3890f46d6e3b71149a607e6e379b93d465343507 legacy-trunk +2929 05376c926f580d99b1d89d7771ceae713d0804d3 legacy-trunk +2930 7a0d03e8bd29bae6d984c361cc15d04e67d0c3f6 legacy-trunk +2931 676031bf44ee1ad539a5d1ecd063be2dee1b8bba legacy-trunk +2932 f8421da4efa76b7d5d59d87b2b490146b7238117 legacy-trunk +2933 744696ba8927ae7bcaf85e65ce7b925b4035b11d legacy-trunk +2934 2e82dd0f8a9e37dac70ac0660b0be45a8b986436 legacy-trunk +2935 d945cf33a64f468aa7bebd2fdc95f59bec545a4e legacy-trunk +2936 c721afab0efa61e5a8e22336dd74e0b87bf17388 legacy-trunk +2937 7c8abce197984a9a6225a9728629c8d5601094f6 legacy-trunk +2938 45b3a78f256bae6b498f7c1d62974da21225bf71 legacy-trunk +2939 7259e96a04a9d45140f0d66c62ce76c09d225a07 legacy-trunk +2940 c0d4caa71bdab12fb0a333af140c15df9e5f870e legacy-trunk +2941 6163020a967dbc3f7b95a2d98ee2655f15856ed9 legacy-trunk +2942 b37ac91e2a0da4b808bf2b5418c2740734abd21d legacy-trunk +2943 30a652101599ff1e786a90b1b10165fa54d93a8a legacy-trunk +2944 68584314a1547fde8a670b60dadab0c0c1adbc12 legacy-trunk +2945 012e37f050190f191165f5a989ba61262700a31a legacy-trunk +2946 3e1fbe84cf9fc6a2630aa2a07d193def41204a3b legacy-trunk +2947 fbd68e69214c27e05953813fa018454f8ffcf813 legacy-trunk +2948 cd81e56804b0942b1a9d45060c3f7c11e1b11aee legacy-trunk +2949 63d34e877a69708f3debde1e464526893d98ab09 legacy-trunk +2950 44319df6a91c2967723fee50600212415f7a85af legacy-trunk +2951 ba4ec13c0f9f982ef9b5e542d35a63a5551695d5 legacy-trunk +2952 f565cf7f9aba83c1a80c71e1847f7359721e3199 legacy-trunk +2953 164849f56105fe2c30619a64afe23dc55c6ef944 legacy-trunk +2954 77ee9b222fdb4a48885785f9aa61425bf15f8b75 legacy-trunk +2955 dc3b455f76327735b065bbe06e028071c54e1900 legacy-trunk +2956 cbf0ef998a4a1e57cfdae6487d7474a15cb59baf legacy-trunk +2957 c7bc5614eead5b4f69fbd3fbfcfe967d5f96009b legacy-trunk +2958 0cd197947d814e9cf22b9d44a9f669a17d07065e legacy-trunk +2959 1360618406243415399ac663323f9d94137dd430 legacy-trunk +2960 3c8b442e5e1f2e6ce33aa4f55fe7b80d91f42647 legacy-trunk +2961 dfb3b0ec1ff929a6822cd5bc90c0203e6328c91c legacy-trunk +2962 784c51cb1b7970b7a1c7e0d0b14ad96056773362 legacy-trunk +2963 44ecff6884b7d71cf4c980fe9a2ad8003059d0dc legacy-trunk +2964 9652fc830a12d9aba9ad86c0c4c6c87ebe96d5b9 legacy-trunk +2965 3d6541a2eca5a0625e5f424490041552d2ac92a7 legacy-trunk +2966 d05704a000ebde5d91a23ce162eacc7348f11de9 legacy-trunk +2967 3adece2c8567045dc197ff98cdf8b3b43e5af6e7 legacy-trunk +2968 bab2bebd35e73581ae4d889c1e5b04bffd6c1e08 legacy-trunk +2969 259923e4d7b17fbcd00d6817f79f1a7bc0743d8e legacy-trunk +2970 43c86d1eb22c2946660318328f8d559c057d1e63 legacy-trunk +2971 0cff36b110fe5527469d06c3611840a2d7bdda81 legacy-trunk +2972 857ed3fbdc0ea39d2b08f05cf68879fa64a3de73 legacy-trunk +2973 3773b6f6dd53bceb6c47d1c67c4e7e82dfb0973c legacy-trunk +2974 d6e25792323fb6bfce419726baabe78fcc11e8e4 legacy-trunk +2975 94ea6ea7f7d556af7e5965c0af1d5a29325a80ff legacy-trunk +2976 01a6bf57452e55aed715733ff0d1f8ce8bfcef64 legacy-trunk +2977 f08d34499269de0e48fecb4ebac47e94588cb329 legacy-trunk +2978 6508c93f94729aadee8c4b13c61f9c2adb220196 legacy-trunk +2979 e4a27d84ea36780f0864b3d54c3a8d76ecba1adb legacy-trunk +2980 aa633f0defa61ea955e04eeedb34486b454e6060 legacy-trunk +2981 e157c12cd6e7f7491ce30fc3c53aacec5abfc367 legacy-trunk +2982 a1e84b48447ae644bbadfbe5c3962e07782dbbe9 legacy-trunk +2983 09c69a1ec7b0928b1fb917cddcc1c1ea5a795fcf legacy-trunk +2984 01fc59003339f7703f0f9ca3cbc02053db862fd1 legacy-trunk +2985 1eecffd969689e080922249ada2d69aa7ce5706c legacy-trunk +2986 d1b89e85ce756d3a2d6d6c73f18241a2c4681262 legacy-trunk +2987 b84a6d4de90e8fcf434a31aef0de981d5dd71629 legacy-trunk +2988 1d19669f5687696433a5f2c048b93daccab949a7 legacy-trunk +2989 3cb9a2b7b40cf42de39a4a9004fa5363ab70c43c legacy-trunk +2990 faf11adccfc65bd0a7481349ca13bea5ea18e037 legacy-trunk +2991 2fcd401a62323a4694dea0af2ca86c95346d94c8 legacy-trunk +2992 21b3ea6bd32d316e1d9b67fffe0304582b691f56 legacy-trunk +2993 ea5072de74273a529fa00642339ffb4d492fa0de legacy-trunk +2994 3eb05d2dc7b11f41b5631ec893de79be3b6d246c legacy-trunk +2995 b41792307008deb438a973ab79a2771e68a77ec3 legacy-trunk +2996 a7882fc6ea2705b8e150dbbc1e1fe92642c93ae1 legacy-trunk +2997 6bf69f54a903d89e6d5c197a453d74f27dc29736 legacy-trunk +2998 f2773a6dc51eecb28bde5bf76b024d4919742568 legacy-trunk +2999 7b4ade536af88f4530ef6e7510c9a4f277b1666c legacy-trunk +3000 b98aef213daea54c230c83cd6440e33f2b8d8175 legacy-trunk +3001 07a8c443b8310483cc4e52676cdb5bb12761e93a legacy-trunk +3002 1780eb8fde2b645f33a0ea732a1ad9f10463eb05 legacy-trunk +3003 4101ded73c52da8df7ec03e0bf1e4399ba44fd9c legacy-trunk +3004 3f81b5ac2bb202408592557d02ce0e77fc49e7ad legacy-trunk +3005 146635def01eab2db371de9a37e1029320a48556 legacy-trunk +3006 398c00f11a2f45c27e43fcb198337e2f4341b1f3 legacy-trunk +3007 c55cb76bc837081e0d51af97f48b250fdab9044a legacy-trunk +3008 851ac4a8be7d885b371cce3eac5217de98ae752b legacy-trunk +3009 1640cc3f1a53f80752fb2c80bd571c40deebee09 legacy-trunk +3010 d31ec15f5f710644ae27362983f7d6b0a69f41aa legacy-trunk +3011 b2a41f6aeac990cacba24d0a92794b2303022e35 legacy-trunk +3012 fe6a5f2640a276d9017f5edf0074461d3bd9b96b legacy-trunk +3013 872a3caeff07242035389d6fe65f0282a2036b97 legacy-trunk +3014 4defabb8296b5b4706d037d58aa0dc6956b0db39 legacy-trunk +3015 1ac5c6727e8c58dc89940b6f70077cb0cbbbb12e legacy-trunk +3016 4d58e2c50887a5acae8e892584d57a65ba94ce7e legacy-trunk +3017 39e5b7e3158885f31eba340deff025a071d5c030 legacy-trunk +3018 6f499d5daddf7abcf7e49144296dde8a2817005f legacy-trunk +3019 2541b3d0f20f71e616b97a9f0de262a7032eda77 legacy-trunk +3020 8bc170e5efee72146a8ce2cc098075d917a38e3d legacy-trunk +3021 6ca1c44fd5278a329cc7f149590ce3a2f7d65b85 legacy-trunk +3022 6f3fed250adb0fa22277e1d8aa25ee9fefa16ef6 legacy-trunk +3023 39134c99c92383a571666870f7aa72067fbff110 legacy-trunk +3024 76095a8b96caebf0ddcd2b9efa314a7bc37708fd legacy-trunk +3025 bcf02052e909e81a7c4c00796bd3a6b4db22eae2 legacy-trunk +3026 b68b10a21520093e8a16fb2737e5b9da40cf77b0 legacy-trunk +3027 e58f40c2f285cf5e36c61db091452777f4a34dc0 legacy-trunk +3028 58e8770db44acdfed1d767cc6d01089fd49e2f97 legacy-trunk +3029 06c078750e808a33b8b731c20536efee3915dd14 legacy-trunk +3030 cb146aa987c945f96047f78465e762318c380500 legacy-trunk +3031 b2db4bf34ff8ce49995da7e840483bfe72987942 legacy-trunk +3032 8e351fb2577a02b262a7ef50976735dd2a5db28f legacy-trunk +3033 9715fdc1e462dfd4f50fd8c0d7b3da7020a93fbb legacy-trunk +3034 22169fcc11826da657818f182c26dc3739a25975 legacy-trunk +3035 7a013d6445a487755c4961ca8721f9db36fdb2b9 legacy-trunk +3036 aaddf821f5d432cf116b3aba4486115c38e02ed1 legacy-trunk +3037 4c9bc52b8080d39cf8df6fce8bfd8081adacec8d legacy-trunk +3038 cd0e7f24faca1b11ab56b5a1b62d8af003c041a7 legacy-trunk +3039 ec31748837dc2789f487946f3259173197142f92 legacy-trunk +3040 9fb2a868eeeec65ae7dc619804ed55918d791b5a legacy-trunk +3041 36323140f7518545e2bad835fae94ad7a2f55695 legacy-trunk +3042 f9481aa5e776b65f7bd1e26b57963e185b41d3a4 legacy-trunk +3043 36b934326fed5f455a7c0ffad8d3350509e12829 legacy-trunk +3044 aff819caf21af54cb661c6990e01409b7d3d511c legacy-trunk +3045 00ebe5fb0ac67120b604e51a2768c3ed80b0a845 legacy-trunk +3046 a54e4a717c9bbe291d92e4d630552b4d9d98e8ee legacy-trunk +3047 c02c3cbb8ad1047741bc6f9b4622cd71fcf3fd58 legacy-trunk +3048 266de59de8a9d87287cb483deec286d28d0a08fa legacy-trunk +3049 9a05e2bfa74c36bba6beb7de3f506e6edf0ff19a legacy-trunk +3050 16a195354b2bee06b7fc3b5d9adb265044c821d2 legacy-trunk +3051 dd7dfad404cd832da638f175294a6efe9fcb7ad4 legacy-trunk +3052 181409141a1806d7b85c318fdb9643be247ee09c legacy-trunk +3053 b3d639ad666d5b20b0db7c553c037e49dae5d66d legacy-trunk +3054 a8ca720fd9219eea6bce32df6a99d5f95a016fa7 legacy-trunk +3055 11ea669c231e13d24d49db38c75311028f35c44d legacy-trunk +3056 226582822cfaf122f0ed3ca95bb12fa9c3d1154e legacy-trunk +3057 46cb6bce4c475f4fefc52284919666d4fac44ff6 legacy-trunk +3058 bebdc1acf47459b86e5cf97502dfb062017177cc legacy-trunk +3059 6459e2f21bf680773788fc2afd6619b72d7c8eaa legacy-trunk +3060 0c5b2d9e45e82d3f2e5e8aed44af5fac2cb95561 legacy-trunk +3061 ef86502508e2f1086c1a186bfb13a65a0f0d2f0f legacy-trunk +3062 99bff1db75f4a0ff1d6729de1ec97a6f3ab1e674 legacy-trunk +3063 58a7438c2e7ef922b363179e046f0829bbaaad0a legacy-trunk +3064 fea3f594df7746b776a13cb90f3efa49b3cb7f54 legacy-trunk +3065 a4793ae266826c0134c4967d0a0bbc3a6384ac14 legacy-trunk +3066 fd62c28096b5877e66d4bed7c1fa459010657479 legacy-trunk +3067 7f7ba65a2825c0e46b584f9b1225993bc0356b5c legacy-trunk +3068 a1f5b216e392cd9b52a5759ac6cabca3eabf85a7 legacy-trunk +3069 63798cde582cf535645a242eca3dae79fc0e360f legacy-trunk +3070 32010d355fb6122e5258ea92366346583db5f5bd legacy-trunk +3071 424f55e67d5d324b986576a5fde98c147cf2b425 legacy-trunk +3072 4da0b7dae796ff8f258ad6b7a470e6fb9cc3db1d legacy-trunk +3073 a4f2b2210b02115030c59a157539615733938d6f legacy-trunk +3074 4fd22602e282c1ee8bf5187fd14fd2b3a84ba567 legacy-trunk +3075 60e3118d30737bb6f29c3876a4c813c6304d4599 legacy-trunk +3076 e98a8f802903a629c624661414cc89cae2ac766d legacy-trunk +3077 74b716e9ac4986e4003789381cd0dd044e2a2a38 legacy-trunk +3078 39ee7de747502e962bdb5c6e872b367f42b0a55a legacy-trunk +3079 fec18e244d16882b29f0fd57be7d511fd2ff29f6 legacy-trunk +3080 cfdd575efff2b41570b37bfbff80b2c3751063a5 legacy-trunk +3081 e43a220c287aa3ea27b7c1e13f5fc030919f5df4 legacy-trunk +3082 d3b27fff00b2f12575ec1d213b8e6d7d3779ee3b legacy-trunk +3083 8c73c5f3b6ca73ddb6694a6c5528709506aff6d6 legacy-trunk +3084 8078834996ecc582ca4479683140f08f7f30b034 legacy-trunk +3085 c12b445cdacea1d9f9a088af622a6a5b1c04caae legacy-trunk +3086 72aceed365d435b7c2953db840bcd05476998373 legacy-trunk +3087 2505fd20d277a479e0d487662b8dc234d6bae260 legacy-trunk +3088 61143bf03b4476e05e272cce9daa956613ace747 legacy-trunk +3089 c156d4960c2b40859b1f058c24fd1b0605043e70 legacy-trunk +3090 aacbd4b558c7efcfbbf77ccbbe27068346c00b48 legacy-trunk +3091 8725fa8d7ff91d81a436aa61d34d70f6cee29129 legacy-trunk +3092 ff02b948c9a80b7b955c15841b931f5412bd81a2 legacy-trunk +3093 e506197332c0c1a11ea4bf9cda728062e885f04e legacy-trunk +3094 d8608ed1cc3b13b9823012e0baf6d9a466c5e3e7 legacy-trunk +3095 615983f1a3ff3fd592e2673b4a7e44bbe33f4ebd legacy-trunk +3096 c432738cf69aeae15f588cfa6f4f109de794ab32 legacy-trunk +3097 d383d27331765f8d6ecc06e31d450b4af39bcc23 legacy-trunk +3098 487996796edc6c731b750cf9586d95213798ee15 legacy-trunk +3099 dce6dc62f108ee44b047edb02bf44d99ce205ac9 legacy-trunk +3100 58a4cb18f025af86d9db3d091c91c4f44684478f legacy-trunk +3101 18369bb9c24d07879f605efa7ec51a50f292d7a8 legacy-trunk +3102 7243a906937cf78483ceeda35034a4d016c432ea legacy-trunk +3103 844482b6467aae3d58c81a505705e523ba6ef2b1 legacy-trunk +3104 cd40e3eebb49390f4e034af311dcbe261bc7a014 legacy-trunk +3105 3aa65892b75c4706967357335a9876179e539a99 legacy-trunk +3106 b46f21c83369096f003d97b8fb54d5ab9d758f11 legacy-trunk +3107 222f04f5508335726ab6e61e1d5df344773d8b1c legacy-trunk +3108 465b9841770e34565e4d96cf0df70bca4b07d8e6 legacy-trunk +3109 36e2b7a00d72f36afbabc801e2d035df7005314b legacy-trunk +3110 260d96db112f87d204bc8e5e2dc4873fb81fc225 legacy-trunk +3111 e5ae42ffd9a0757f6a771f9671efe6066be23736 legacy-trunk +3112 bc0ab01754ba5dcb480041e53d9d87a67d55307f legacy-trunk +3113 b9f24d0c7d9616a7d02f160ec78a4030d9567c23 legacy-trunk +3114 0284f1079a7bae56423c9ce73ae2383ba71cda5a legacy-trunk +3115 7d8e51e580d1a23ca33d2028976f52d2b2bd669e legacy-trunk +3116 2b60832723c1431f795f848d3173b6379a85de9f legacy-trunk +3117 266a8ba20784fcf41bc4ef28ecfce9a9924ec8c7 legacy-trunk +3118 03de67080c9562428dc737e71f4ee4ed2252d9a7 legacy-trunk +3119 a60cb53212110e5400b43b5b88ebd6ce77dc7e19 legacy-trunk +3120 5c6cdb58a801cb819464e0e8cd1e1dd310f88205 legacy-trunk +3121 a736ef1840a51fe2b75ea89f5191558ed9413b56 legacy-trunk +3122 68b302ad84a191b43d9955c58c82939cd6295990 legacy-trunk +3123 7d3a053c6765ae56eb16c10dc589d5c0ff130995 legacy-trunk +3124 a31e0784706387469cf0e9f3ecc8b89117fd4efb legacy-trunk +3125 b41e95731e422421785f15d8957133f44fd3d9fd legacy-trunk +3126 b5fcb662465e73cf8f67e95ae9d05433e93209f7 legacy-trunk +3127 4bdb27943e22421370069090dae400e53bfc7f5e legacy-trunk +3128 14cc4b07cebbd611e770bf7a1b50928d8dc7c079 legacy-trunk +3129 27aaf94475ddbd759b0502d7bc7fc639f98afe40 legacy-trunk +3130 1a520290c39c0525a7fe021a21123a8242ae2159 legacy-trunk +3131 06a9c828b60891b58cbd6a6c323b3e90411d41ac legacy-trunk +3132 9bfe73c77334cab6130236b7f54734f98fe4e8ef legacy-trunk +3133 4657f7c980e859f5921499d6586fa3ec784b4267 legacy-trunk +3134 f671938dfde2e5328aa808e748a01dadb151cdac legacy-trunk +3135 7b37b5e71493a36718f550354ecd9a635e0dce94 legacy-trunk +3136 30a290257c31d0b08d1728652d14d6de53152d65 legacy-trunk +3137 c9c0328368a9e2b643916043ff5b65c22f45b0bf legacy-trunk +3138 adbac5893f9c60dfb173a2f650176456decbfbd2 legacy-trunk +3139 31b018bda7e2d3f500d9fc748e4a9be159b1e9f1 legacy-trunk +3140 576dc14a24009712ecb1063c93864ab7f3afc351 legacy-trunk +3141 13c99eaf32a8c45fc939819ba018c4b1943b5660 legacy-trunk +3142 3c55e612a6fcc1d7ec4191ee040e9366a72e1bc7 legacy-trunk +3143 ffe2fbc583decd791985e263fe979be8f538d9ae legacy-trunk +3144 9f1db556ffbc28ea3dadd2d6a31973982ae108c6 legacy-trunk +3145 fbcb8d0bd45e0321ec9d54d5afaddd7873ca80af legacy-trunk +3146 b045e68bbcdd54d4b45e3c073d0282726a3fe289 legacy-trunk +3147 87aed516016176b4a400257902a5979265c869fe legacy-trunk +3148 5cc7a3cd557b6493776a22ab5333b8d0200b1713 legacy-trunk +3149 2a0746d52478a72ead3d1dcb60757b0160035616 legacy-trunk +3150 24c98b60dd7465be40b037a66c5c5af58218f99e legacy-trunk +3151 197a2cf3a662c6b1c702b731001702d2edbd06ac legacy-trunk +3152 77aca6966b9d01b5a134f0fc99386775e65ee6f6 legacy-trunk +3153 a9eb7a0d4002141fe7254d5ece2c533ca65e55e2 legacy-trunk +3154 7f80f336be7f82abecd45d788b8b2bd1b6d52c0c legacy-trunk +3155 48c637fb150f3289816f1fd37c7aaa8e38e40070 legacy-trunk +3156 7ce1975f11a90f1241ccb31ebc52325b1063b08f legacy-trunk +3157 f4db4063ec886ed39aeeb164e46601a6db429018 legacy-trunk +3158 f025eef93130d325927574f097d5681c22b690ec legacy-trunk +3159 ffb03cebf3f455e426e425afe3266482cb7a8d28 legacy-trunk +3160 0be1a5db778474a0e5cff7fad1291bd6dbaadb16 legacy-trunk +3161 09b48604855f4dd3f3773d2ef241aada0e0c5109 legacy-trunk +3162 debfcb9a7e08a6474389d2f9a6ec90b1d165b76b legacy-trunk +3163 6774107c647dc59c604daa70c4b1abe7bc9d55f1 legacy-trunk +3164 5067f2d38e143fb2325851652454486629bcf657 legacy-trunk +3165 0ce404e4139c5b651190c84a2e81d45c6ddb2a9f legacy-trunk +3166 17db059b29bacab31dd901c96065ae45a6ce07fe legacy-trunk +3167 5d7142ea01b7db0f1780664e69c88adc53a2140b legacy-trunk +3168 b33228e3c2c27ed92315e354fb805b56ee4578fb legacy-trunk +3169 903071377d292e599240d93ebbb15619a0f7d5d5 legacy-trunk +3170 04a8a89c92eb70e12138602ad5474e617d39767f legacy-trunk +3171 fdbeae2d6e671e215a851e6fe7ddc3c384baf02a legacy-trunk +3172 09d271ef3b824042790289a95ab7aef8213d3ea2 legacy-trunk +3173 6c1fd0510d61bcd1708e192e5a8c3ac3894cee5d legacy-trunk +3174 92678b5057c6556ce54456e50540b15b75a7aa0c legacy-trunk +3175 806689b93558f956f71e609f232c1e02fdc54834 legacy-trunk +3176 a1ce5a949828d5c2bf1554f800d3ad7b12fc8723 legacy-trunk +3177 96acb35bb92bb891d9ac0e18221e19850106c0a2 legacy-trunk +3178 f3d5e2c3b9a3a531f7ce72ebf4c3910b9b1ba1b7 legacy-trunk +3179 a41e3ba5b47d96fbb7d921d54adbf1dd973500e0 legacy-trunk +3180 cb7ef9bd9edec379a538640d9d3b3e7367749e1c legacy-trunk +3181 3945f3712354901bd7689aa93d5cbac1e0e2d162 legacy-trunk +3182 a3e768ea802ab907f011017ae1beff5e17a66b4e legacy-trunk +3183 7442b20c43fdfccc1a3997705373b9a1d51384b5 legacy-trunk +3184 0d7c82366704500527c45737d3c32c3d1cae1360 legacy-trunk +3185 9b566ac38c2b84341c8453025037c7f129a1b5bc legacy-trunk +3186 94ab6761afe2c4ef2d705c7ce9a1d311cfe8fac2 legacy-trunk +3187 7b4f2833fd902bc558a21ba1ca184b61b83ae517 legacy-trunk +3188 f993197c3a476e49c37e3d9b44656344807b9179 legacy-trunk +3189 56d63cabdba7ec0855fe240d1a54ca2d6cca18a1 legacy-trunk +3190 513940eb4d7b6991b1556fd97bfcbabbbf9dd5e4 legacy-trunk +3191 ed456e91d95ae854674599e9b63339bb96c1a6b9 legacy-trunk +3192 2f9805c963e85364807b8ea17ebb3cf341d2aed4 legacy-trunk +3193 9f0fb114c1e54ce563e54330fd7d18c05df4cef7 legacy-trunk +3194 7a11a70f7f44dccd42edd1d9b296f87523cba182 legacy-trunk +3195 432fe7f0837c4b25a74c42fa4be35b52f9552c86 legacy-trunk +3196 fbb840f64bf89567ca6c93bc0e50d5eae5df1df5 legacy-trunk +3197 bbd0198eae5bf18faac274c67e2534cdd7e83a4e legacy-trunk +3198 5fb3f73a627fce59ed0e18c30e1eea6a7ad8fcd8 legacy-trunk +3199 bffefbfceb60543c348a6fb99841b8ee3c9a7d25 legacy-trunk +3200 516b5a16ac7718d6e17da21a06ef343d3b569f79 legacy-trunk +3201 b00438f265ed8f9622daae3a6e0a32aad6634904 legacy-trunk +3202 6aa0ee14ac2ed606a0e8bc8a646046980bb449a3 legacy-trunk +3203 0ee59a14e5421fc9b4322420e0756a13ab35e708 legacy-trunk +3204 3dac204b74faff937f105c8247cc1e3285de1e05 legacy-trunk +3205 58f748f58df584bb2696e598fbc92c81f77ea48c legacy-trunk +3206 8f3a2540995a15e0e17de89b773c797167049792 legacy-trunk +3207 c72ee29cccd018fd7372f6be4124869263c3719e legacy-trunk +3208 10f10d4542faed8542e6b56dfa9181aea52b6cd1 legacy-trunk +3209 d6808ec6edc736e63454c3a5b7c79f61ddee58a0 legacy-trunk +3210 6b5a34db21fe1733682ae47f824bf73cb8e814c6 legacy-trunk +3211 c1ebfde341a3ecc9a9950efd3e62937455c6539f legacy-trunk +3212 2ed51117180983827b1911cb86448894733f88e1 legacy-trunk +3213 f49d2311776bb93dc9d85ece9989249fc616b28f legacy-trunk +3214 f54e64c8b9b70bb9b03d30cf28a1d8345293af63 legacy-trunk +3215 6508ea32c6b09999fb4b1f35cdf87ff92525428d legacy-trunk +3216 c9546a2118f04b6b36507bb35531b46576218768 legacy-trunk +3218 316ce677c6b20a4c90a286d79003cb2297fdf4ab legacy-trunk +3219 6ab207a55fca3477f4610bdcaa982270a0bbaf92 legacy-trunk +3220 9bf75e4d9aec3eab3dba05356289dd460a6857a5 legacy-trunk +3221 e6642a535db5fc16c0afe9b14659606c168f9076 legacy-trunk +3222 fe1926b9dffa73125488ded1c4fded98ce9bdbc8 legacy-trunk +3223 592bac6adffc256662b49daec481e1b8b5db9f71 legacy-trunk +3224 4f6641dea6458978d021018dd2a2b88987e16ff8 legacy-trunk +3225 a3fa229775c16d3a32b9fb55a4f13d40ddfd5087 legacy-trunk +3226 0da16e81482cf33d0ca9b8a48d236c67406e1c9a legacy-trunk +3227 aaa3bccb143aaf1b77155c7a19b62ba2b1567dc8 legacy-trunk +3228 6be97039cc11f624a0ba2ca663a3ebba1fda5af3 legacy-trunk +3229 b5d95acfd3ee3235839c7136b27bfcf7b1aec59d legacy-trunk +3230 696b91327ea238e51314d403a1b021a31bc0f608 legacy-trunk +3231 393d54ecd43b5b96d41ea4846f8056ea258a22f3 legacy-trunk +3232 7162f5ac899aa92a64bc49b445afd7c12d6c5881 legacy-trunk +3233 0016457bd97a85a5a6c5c11384f8f3fafbe5350f legacy-trunk +3234 1a54d320f2964aa785c20d7e3de02f927aaca67d legacy-trunk +3235 2291da05f1784bfb8514de56bd9391083d120c0c legacy-trunk +3236 767ef7370d33c4d90938c550d33cad55eb528439 legacy-trunk +3237 2c0432fcc27079d00eef2076c0563296db793109 legacy-trunk +3238 4dc382ff6fc74d350d60c6114d5e6683ba8c1a1e legacy-trunk +3239 98cb6a1252cb65b33fcf8208f040b22bbf61312e legacy-trunk +3240 6ac916f8f86268d080ce5ec0091d52d8c9aa73fa legacy-trunk +3241 feb5b234b0b5ffb24368b7426b4792b9f2714b01 legacy-trunk +3242 245003c006a637f4f1d08cf3977ec17d82621e6f legacy-trunk +3243 e4c6a0dd5c2b27a7a5fe7853265ebcd05b30ac56 legacy-trunk +3244 7657a75094f1c2082a12ed56593a837b36d05e18 legacy-trunk +3245 31df58fa98cc5591bc1e62111c320fac11196ce0 legacy-trunk +3246 08d3c370193df7f68dbf46b3542fdf8e48c9edd7 legacy-trunk +3247 f086d7b493b4dfcfa1c5a7d03dc3d837e62159b0 legacy-trunk +3248 b755a46201f6e75c78d4df8cac6306622a88789f legacy-trunk +3249 965aa3b53a9d86a5a3cc6c6d2e6d9cdf084e7a68 legacy-trunk +3250 db817f3a1c65448a555f6273baf8044b443f768c legacy-trunk +3251 b9e4f7321e28dcfb382ca336801cbf24443043ac legacy-trunk +3252 35824899aacf820ae90c9a1a786e79209dde1956 legacy-trunk +3253 8d62c9056fe154443076abc6c5d5a8078cc0a7da legacy-trunk +3254 ab926534a15274908ee2a509321fa092c0cfffd0 legacy-trunk +3255 6d57dcb4faadcbe9337c910932af69f8d9dee9fb legacy-trunk +3256 82c55ea9069e5b548b7c13603cf911ee7a8e62db legacy-trunk +3257 a4376a997fb18b9b96e2b57a781b843a7fa000cd legacy-trunk +3258 d2af6bdcb6d0a24437672bfa6370e2c716edfbb3 legacy-trunk +3259 ac0828ef68f29bbd11425e3ca0724a3626d28df6 legacy-trunk +3260 ce718457b1726577117a008e8f0c256dc22280fc legacy-trunk +3261 c644bc626098ad7bf33a5821e7455e74daf60a7c legacy-trunk +3262 c9d2f6bdaa69bd4f3232fe8ff5e75020548b9ed1 legacy-trunk +3263 3dd7b8255619aa8244db36bcd9facc6057cf1fce legacy-trunk +3264 ff1899dcda059ddcb30feccb7035b2eeef9b95a8 legacy-trunk +3265 b757e58bc525c3984e7797608a29815641a493de legacy-trunk +3266 30c26cf548049673528e4cd63878909aeab0b318 legacy-trunk +3267 fcaafd5ec69563c0b7d080fd67e17ffb78d9bbdb legacy-trunk +3268 4154e98d1478b92dfc40d8776cf21aef864aedaa legacy-trunk +3269 6f2a6efd019e45f80751ce2bd0d70d8b4529a7db legacy-trunk +3270 8ea546047f0116303a855f8e76d0805364a36ff6 legacy-trunk +3271 91c186a216e7098c833e1141e2622344366b2ca6 legacy-trunk +3272 7f8ddce884961d4b9352701520bdd7ef5f56cf57 legacy-trunk +3273 e2f8077a926eec2b22de74a8c0213329c60c2a26 legacy-trunk +3274 1d06b1499eb932f37a2d4f8700c2de83b5b96f30 legacy-trunk +3275 de70d77b3eed74e0c10eba2845ab5598bf30317e legacy-trunk +3276 8399e9aa03e7fe2e5674aa37bfbc9bd551d6bfa6 legacy-trunk +3277 46d31a649ce66731acf71a9f3301331eb06a2244 legacy-trunk +3278 c0aed5ee110bc7d3b1e1699f20deb94087ad2a76 legacy-trunk +3279 c1ee60bd5de45aa7af046fa1f9621c113d255cd2 legacy-trunk +3280 c26f5bec3438ad9ac965ead3c1c73f32738e77cc legacy-trunk +3281 1a0be6e36818b8912a3ffa4284cfddb6118891a7 legacy-trunk +3282 56636395724d49449cd13df955498cdf31b2db6f legacy-trunk +3283 ff6e2173099ae3c85cf81f22afd1e1c22b355839 legacy-trunk +3284 5e65b10dd24d39cd2acfcf76a79d4f1b1eb2a334 legacy-trunk +3285 75b472ac5b7be32fd3670ae603e3b09a8b6a2558 legacy-trunk +3286 94d12116756ac75a9287e56cea59fb2254edb11f legacy-trunk +3287 091474c0831a7a272a2a7730b95fa0629ab34e36 legacy-trunk +3288 dd70a3aad2665eabb52c8a536b0cd69c535b2fbd legacy-trunk +3289 0ccb356e88b126f53dc3c0b38b0daac06d0bfef9 legacy-trunk +3290 41fbd92bf1ad801a109b729c09fe70ec971c807e legacy-trunk +3291 a7ba19120f54749f4f90b251915bb2dd87cb698a legacy-trunk +3292 aa9ed3b9eda1ca34ae716b52050b0a8c7170f1ed legacy-trunk +3293 b6cddfd348ba1a585ae8737d93440ef14e56eeb4 legacy-trunk +3294 3e9ec85ac49b6ff55af60d18844799a5b4b75a3f legacy-trunk +3295 e53baf9b4b9551e5588c2faf4891b543dafdb667 legacy-trunk +3296 6461dac9a9f29777b0d7f48da9e885ad89e50f2a legacy-trunk +3297 9add0e3e804a05987d4b8a667129289b8d21479a legacy-trunk +3298 5112d432126b17570476f3cee53ebcbc566ea0de legacy-trunk +3299 6231e1b5b22b7bead2001dc273388fd1d52da5cf legacy-trunk +3300 e39309b9a0aa6d166bc09dd92476e8ade1bda3b9 legacy-trunk +3301 b338262cd0807c4644f8f09056b8014c927839e4 legacy-trunk +3302 950f01131403e158e35432bd895120be38bc4c56 legacy-trunk +3303 f49e862feec4d9178d4242be52c026a8c5bfdc29 legacy-trunk +3304 be89125643f25cf90160a29f14aff6f5beeabcfc legacy-trunk +3305 54eb2cf2697e6e534e52826d35ba594a83901e36 legacy-trunk +3306 e0877226d6138e0ed49130b4732e436d3846bc9d legacy-trunk +3307 e5ce9d0408d0e56f7f41687d4850aee6f368ee6d legacy-trunk +3308 f20de13226920d938a791110a6f47cc34e671c69 legacy-trunk +3309 bb7665c448226fb98212ec56daad880ed8910f3b legacy-trunk +3310 a416493d3a4c2f3b2471fb0b90d88d6c63c97302 legacy-trunk +3311 3c6a52d2543dc2d052b05ccd1b3d02796571c2c5 legacy-trunk +3312 fa62fb0e55b2d89bffff4680728aad3c29d56045 legacy-trunk +3313 c72ecdb33af75791bc496beb8fc973add70aafcd legacy-trunk +3314 8467b119350bebc6784d76954ff7287d6d8feaa4 legacy-trunk +3315 194af04d344b0806b94e01322bb6d06a60145d26 legacy-trunk +3316 65e4199a7982fb19ae1ef32b57aa17df311ae6a2 legacy-trunk +3317 d4480c08444dc5b63646ef04d1843d6fc3bcf1d4 legacy-trunk +3318 e82ac452d551dd7cf9523b7e0cd0a0a30c8762e8 legacy-trunk +3319 29d2ef0c94b9504da8f8092564c7ab6a98182864 legacy-trunk +3320 23eb27731d9cb32ad9a94b12ea688e424d74fe95 legacy-trunk +3321 f0eb77abf24436bbcd746c903370694d721acf9c legacy-trunk +3322 120518ef36e33a47c294aa9e19b6f5ff0b7d63b7 legacy-trunk +3323 dedd44eb735b3f16512b4ecdf693eaa80f6d79af legacy-trunk +3324 5244827dd423817a80ba56240b6e31ee119d8b3d legacy-trunk +3325 9b7f90f9f3c152996eba6ce940b23aa781cfb93e legacy-trunk +3326 fac62bcd3bb8de1cce3d69f31ce7f78a3e3a0673 legacy-trunk +3327 eddc54b1d9ab8b675973c05fc84356190f534c4f legacy-trunk +3328 f0784ae1ff5cacaf865dd6f3b14e05c552be07e7 legacy-trunk +3329 d990c2b8a1e6d09b0406d7cb3b391d89af61c9db legacy-trunk +3330 a7cf20c845a3a46e6c36553b17f55cc1515ec2fc legacy-trunk +3331 a47e0c9baad008249cb8d5b76ae3c103232975e2 legacy-trunk +3332 c01c95ef1fbda884b4002f8a3cbe1c1d3ca64998 legacy-trunk +3333 5745e55f2e280f10984be892f31210b719a1e99d legacy-trunk +3334 bb54ff41348f879be183f0a585ce7da8862959e1 legacy-trunk +3335 9c1ae607d1353806eaabb7cb017c869575f22e74 legacy-trunk +3336 e71b647fa3356f50cf4d2854d26a3d5ceda3afc2 legacy-trunk +3337 955212ed52d37c747f976de15716c1098abb4d4d legacy-trunk +3338 8604c3949809d5131f2ed310d7e0715b44838f41 legacy-trunk +3339 717ea1767430bada821910f008f2f0a72c68d271 legacy-trunk +3340 27154a2b9244027030ce8345ea83554cfdda6f5f legacy-trunk +3341 533e36de1e4df6195c5fa57ce5f486b9beae193c legacy-trunk +3342 f9bbb01388d5bf3cb8e71af413d3baeec3bceadc legacy-trunk +3343 9ae65ee09735d0722a63db3882282aed1972a394 legacy-trunk +3344 1d6cbeb27096272a9ced3815af1a0cb6116d22df legacy-trunk +3345 950cd37fcddc5477dbcb08cf228c7f8001991a1e legacy-trunk +3346 64cf191d21d08c9312f94a0e8af50d1e3c27f014 legacy-trunk +3346 64cc5439e10a6fdf984effaf0141e94fa4cc1004 legacy-trunk +3348 cf8ddb29e26edafaea0b50fb2f8b4ab8522e1239 legacy-trunk +3349 0efef9785a25d7d9aae25ea12a00aa8416dac191 legacy-trunk +3350 947f8a347c4f1789e8c8937e1d55f4a937789655 legacy-trunk +3351 6a077c293986c0ad7971cbf4ce6c184607b86f6f legacy-trunk +3352 584c4142c5379f3a537b27a9953c9062ef2caf5e legacy-trunk +3353 847c4835628fa8f11b38fd289a712922e4603b37 legacy-trunk +3354 ea8d4cce782bbfadf0e2c915c82db262f497ca1f legacy-trunk +3355 38f0054f44a71c6f7901d5bf1045e5349ce73416 legacy-trunk +3356 78428243feaa75209da7f996d80688a5a88da2fc legacy-trunk +3357 b7aee799dc715ad1b84fafac35ea7755f9077b00 legacy-trunk +3358 310532015a7d359bfe7760a55ac438b4ef1083b4 legacy-trunk +3359 e120936a0c87f9515c14018abbe6ed1a1d7361f1 legacy-trunk +3360 ce67d91adf5e7e065db35aa0dfdbd3459124ff73 legacy-trunk +3361 675a02820d66e140e2a5583df629e82abe754f64 legacy-trunk +3362 2937897a7d8b0387936084f424c69ab5a313a28f legacy-trunk +3363 718f1d9bcb504f255cf7368197135a8adfd49495 legacy-trunk +3364 e8223d0b72ac51960bf0931e96c02ac571c1d7b5 legacy-trunk +3365 0d799d3c4036e7f8b1695037a3e72827165bb5cf legacy-trunk +3366 d02221ebac2ad7c8b0918d79658aaddf65ded21b legacy-trunk +3367 831d82aa4dd08189a18f02013795e8c3d25b1941 legacy-trunk +3368 3573ef421bf41107bf7199e5eaf1b1b49c3c188e legacy-trunk +3369 ecfbc246eeaa10c483435c7bd22f6801b63516a2 legacy-trunk +3370 3d1f70879f030414badd989d2055d255ce3a09c0 legacy-trunk +3371 b564bd4e57e13534497019556159d5f47cbb6989 legacy-trunk +3372 9b14a4d892073c6089d82eb9dcbf438c90eb8bcc legacy-trunk +3373 9fe783ca976e2f91afe760621c99f42c88ed3a5c legacy-trunk +3374 bbef2473e568d292871810ec56bf4357cfd07af4 legacy-trunk +3375 406860dfaac78b60814a8e76221caaeb06fcffb1 legacy-trunk +3376 5a4109441eae00951258bc8ac601692eabfb081d legacy-trunk +3377 fa6ce7f53aa5018a90e906fab26ddbf4470a8a6f legacy-trunk +3378 416a8a886a82aa2d3f56ea9ce5c23984d79c038d legacy-trunk +3379 9d6cf529bb71a7f4fe99759dd67770ffc0555bbd legacy-trunk +3380 492f5e3e6495558d58c8b96fd5d80c367ca9813b legacy-trunk +3381 1d7a4ed0c985f5ef82234bf5ffc984598c40b7fc legacy-trunk +3382 51223ce95a6198661c9a2833208384c969c12ea4 legacy-trunk +3383 64ec7bd2e83737a73fc88b8b303119e0dbc810c2 legacy-trunk +3384 82f4a6a1964def61ed02416759b1227f4471ebf2 legacy-trunk +3385 ad6d5c1ef5e61a29006eb58ffc288820ef14b32b legacy-trunk +3386 ce7ae8f81b06182441338fb9065ed5c32da717b6 legacy-trunk +3387 5ae4a8cf79ef33eb5c299733e3690803786c04d4 legacy-trunk +3388 7e27659eb2d966981b9b92fe7ea7693276290548 legacy-trunk +3389 2753e2c9aa21c9b6aa84e905692b906e9dd1bd1f legacy-trunk +3390 0659b63d60447d6336eed2ca6994137722d0fdde legacy-trunk +3391 2026ec00efdcf40c75cc0359c3cabfb3b2a3df2b legacy-trunk +3392 f018d1d0e91a5df77b419923e9e77e2d002b137f legacy-trunk +3393 dce7a4cbac112fee589a28837c322622b76b8cfc legacy-trunk +3394 e0f7ff85fa065383771445cd3b10d4eaffd771ad legacy-trunk +3395 2688f9bebd9a5a5caa6b54755c9c7e4d9b6b563a legacy-trunk +3396 afcba88c6acb77defd8d9b87c4afd02ea893889e legacy-trunk +3397 b3e6a435c48fe27bdcfe8c956ba70ceff402680c legacy-trunk +3398 586c928c65d34de8b97e930370a25b16c0cf7578 legacy-trunk +3399 87ed00a62d31013853c5f3d30804d639b9f6e972 legacy-trunk +3400 680406c4153916ebb4d2bb1f43be98738e688e0e legacy-trunk +3401 05580e00f41e2c75d79cfe6704e96b6d0815e70d legacy-trunk +3402 d426c5d59254a50164d79782f535d41e53459eaf legacy-trunk +3403 0c657db27dbf64f9f8884e70fb837f2336a3c309 legacy-trunk +3404 e6034edc47ae5c2ed75a27e3c58f5690d1d6b321 unlabeled-1.9.2 +3405 5b8ec8f711cef107081ccfbc442f4565c0b0dd86 legacy-trunk +3406 a7593ba99dcbabde24160e5a2f5e70b86be7fd7d legacy-trunk +3407 e55724fbc2af7b0e116715393d56332c88ed338a legacy-trunk +3408 8f246c89ddceb97ee77fe6efb90c9b77642f78f7 legacy-trunk +3409 91a77087e83f21c4e52cca68734955187f50855c legacy-trunk +3410 1a6ba23ae447acae0a5da94390ce7cab9498380c legacy-trunk +3411 911b8017da46b6328f27c56dff1b3a361a561532 legacy-trunk +3412 6b3b75f07cbb7b826e0b6173cdc4fe9ce9092703 legacy-trunk +3413 78cb0accfb0cef29ffa007fc9438eba9479c686d legacy-trunk +3414 91c1f94b17bc117a81bff6b1263e4c17bc51ef78 legacy-trunk +3415 49a7a3c3d85089cf089428e596e56e5a3bed4bf0 legacy-trunk +3416 ca1728c4bd78846f62df78072a670783693bff4e legacy-trunk +3417 c4cd0d9d8281db53096500072ba047a1d7e8b44a legacy-trunk +3418 685b31fe89c60d024a8da03cfae4f5da8100b719 legacy-trunk +3419 bbcec24b243776d9ba42390b74d11414c17bf33f legacy-trunk +3420 49630123a3f34037e8bbfa31cf5d7dd9bfbb2583 legacy-trunk +3421 7aa9613ffd36313620e9d01d2b9df205669e0fef legacy-trunk +3422 1cabc2b6c9701aea29bb506b593946e67bf7593a legacy-trunk +3423 6b8688e6a7ed6ec5f6372369cbb76473fc1b7533 unlabeled-2.3.2 +3424 6d80e1f8f70a580b78907affa454fe51760ba023 legacy-trunk +3425 45d7085211881959caa56cf2653001b23e1bf320 legacy-trunk +3426 b120cdd30fbca591a4473bd11dc0e29bee1317ac legacy-trunk +3427 2c515f07367ad4147e1aa39bbe37ed13c1e216cf legacy-trunk +3428 f820e6917f07e5012bdd103ef97389318d5a10f8 legacy-trunk +3429 65a1e4e9cd546c4e578730a88ddaf234be4d4042 legacy-trunk +3430 6c58dc1d2f9d208a9106d4448c29a9a6b6c33814 legacy-trunk +3431 1811e96080d4422deeb19f919deebc7b6d3f4be0 legacy-trunk +3432 89e4b16661789cb368e48e3de911869e394fe102 legacy-trunk +3433 d02ce30d7ddbc87bde633209fdafcb12bfae28b7 legacy-trunk +3434 f5f73c9463a86d2679a6692472a7abd7e27a60cf legacy-trunk +3435 28948181fb2f795f8effa561448636ab701445ec legacy-trunk +3436 14369a5e61679364deeae9a9a0deedbd593a72e0 legacy-trunk +3437 2919b448e3858a108e74b962b74809e1762af5bc legacy-trunk +3438 7b7411f9b116f00c234a3286e26f3cfa66a0df71 legacy-trunk +3439 69a066b6b1ff4af5116265d69a413d1bfc3adc88 legacy-trunk +3440 2c74960d6afef136f9a8b4117f5e0ac5bce4c7ce legacy-trunk +3441 bca71f2e2cb4ee664618d050c17ffd7f28016a39 legacy-trunk +3442 f76b7ba99d3efb515237ed747bccb8de74442e59 legacy-trunk +3443 87146dc1f79c5b7ce980af8af72bac1dccfcb9f0 legacy-trunk +3444 3ca456f44bf3ef36a974dd75e8addb9c7b5b74e5 legacy-trunk +3445 9e4206f64d1b5147fd07e327126b6c2bbe689e1f legacy-trunk +3446 af27a8300d24094aafa6ee746de5567ba9bcc447 legacy-trunk +3447 c60cb059c481e4a94d5946469d429a29aaff8b5d legacy-trunk +3448 e0464e7115ca2bf9c80c95f446a6d64dff283f02 legacy-trunk +3449 9181da406978c81ded1902b94a0cd962ad3190b9 legacy-trunk +3450 dbce72afe261516d3563cd1720fac236968dca73 legacy-trunk +3451 6d7fdec9d49e2843b47ae63450d609f343574659 legacy-trunk +3452 33f3d7ebfcc1b01e7169b7630aedd576a8c67ad6 legacy-trunk +3453 673dd9bbdbf1511ae90092701adf920a763a2630 legacy-trunk +3454 9fed5726a36d7ce1355c30592838d93321d580ee legacy-trunk +3455 4d292c7857d474fae5ec909edd434bced08b8364 legacy-trunk +3456 7971fecbf28e7e1e098a797964a6dc003f9ec486 legacy-trunk +3457 517d29ebc840de45b3c9456093d842a1b31c13bb legacy-trunk +3458 57b80b98b8e50752ca4577043d847acdcea9095f legacy-trunk +3459 ac3c80abbf4300349c5e6e338530b29ae0fa3604 legacy-trunk +3460 67261c792f4c14fbcb13ffb0b51a836c2ad5130a legacy-trunk +3461 4773d5c3b5a46de0f6cfdbc6c03c14d27e94885b legacy-trunk +3462 c3d09f76d6bf438f9c7b13fc6b116f0bd5ef8391 legacy-trunk +3463 9234c961ec43ca2857e381032670de9452a5c984 legacy-trunk +3464 dea7442c5f87c6e1d0a09aef5b1b3eaa87288474 legacy-trunk +3465 04a7f9bf1e672c4f7de527e889045e633d0d07ab legacy-trunk +3466 c64af5671cc695e62b364d4320221f9a8d8f6e54 legacy-trunk +3467 39c766a6ed5f9dab22964e91d125078d80f4594a legacy-trunk +3468 cef514f9974c983bdfaf1e6ff62655bc699d411f legacy-trunk +3469 bca7855d8e093f09f55cb0a0f2b910ab67fe32e4 legacy-trunk +3470 209055e5e46a40d226cff5c46236c805c91267f4 legacy-trunk +3471 6e37af3f261c39b92fe721dab4420b9c9741f51c legacy-trunk +3472 99d9e7e9f3767e891400bd38b04be155da8b252c legacy-trunk +3473 cff7c48fa9e15cec68059a75907abb442eeb3f5b legacy-trunk +3474 1e8bd354b676112d8b3a84b872d727d9aa63e04e legacy-trunk +3475 02c03afc513e95f3178e977ee20f365810838c79 legacy-trunk +3476 747ce7e360844a33ec1b2aebbe88ba6540e0f2ad legacy-trunk +3477 0830cf2be1d2c5927cc33ae42df8dc6d976e9768 legacy-trunk +3478 2f691dc54bfa6a8855a642944eed748c629ea8d3 legacy-trunk +3479 6ee380349c8490232977d51be2984fc56743d110 legacy-trunk +3480 918bee90f73e1522e176641984915a82ffda1fb8 legacy-trunk +3481 acdc0b9a6c7848a6937ab79cff4d90a558dd89c5 legacy-trunk +3482 2f3f293ef5f15597690070cde9511e9488b7de51 legacy-trunk +3483 ec312b647fcbfa898fdda97494b763cc8cd6bc30 legacy-trunk +3484 92e6a8cf14bee65565ef8ad6e9bb19fd878d9351 legacy-trunk +3485 cd397266dc1c8e1e18d02f8d9fe934257eb3609d legacy-trunk +3486 78742b3fdd44ba90e27c3e9e1ac9e4fbc296153d unlabeled-2.16.2 +3487 907c3996b15c2c8554b0421c3c19e69befe2548d legacy-trunk +3488 a80677798f84204b1f83560cf108e614bab985a8 legacy-trunk +3489 f3c907efe5d710202be68f6dd45a58a2b8326a86 legacy-trunk +3490 fe76585c748e8ea3d82da866ce6b6e2a061963c6 legacy-trunk +3491 716be765a79b2bc6d32d613ee39097150a7bc6bd legacy-trunk +3492 25d1c993255822a07376a4b6722b6be8656208bf legacy-trunk +3493 e5d363540179f9e6c97f1a8eef1c1d28ae778956 legacy-trunk +3494 8a3574a07b185d5bc2cd0d399398ceace74cba4e legacy-trunk +3495 e2deca9830082b7039cd84b57c801c14c9da3dc8 legacy-trunk +3496 519c25039c6a4588a7ddecf2aaa0ae38e4e830d8 legacy-trunk +3497 409ea74feb217c24c944c73c419fd363a25ca276 legacy-trunk +3498 07900834cc97d1b8df1c37a781fc4c1c9b82525c legacy-trunk +3499 e5fb9cdbe0507bb31f463be2c4a1064246a37ebf legacy-trunk +3499 78a7ed6953025e7ecdde9585099b01a6ae40b76a legacy-trunk +3501 f3848f74b282799f34a038d1a28dca88c7ce688e legacy-trunk +3502 4192e24ec562d1e09b388cee72b81b207cdf839d legacy-trunk +3503 c44545e595a15cc0b218613bcd1ea2ddb0f3d43f legacy-trunk +3504 f8f64cbd9fb5a19bb00651b9f547483aab929c63 legacy-trunk +3505 aab30b74cf6a8df276111d7794e43744592d5197 legacy-trunk +3506 d207beedc86d68bbf3d9ed9ac2e6d426b3492ec3 legacy-trunk +3507 668853d7b64bcba44099649832bc1b081aa7eb88 legacy-trunk +3508 13d0fde4883263bc6d525ac63689a558bf206303 legacy-trunk +3509 f3791c4fb7247b08ed6161bdb58a968ddc06d11c legacy-trunk +3510 d0a5c300eaaf5ec3c101e89ff312714a4c13bd06 legacy-trunk +3511 2798d8603bf02873de8050eac5c8d27340e9ef05 legacy-trunk +3512 f41433c98c5eb02e88cae9998d93c2b87c9394c7 legacy-trunk +3513 5d0b2781e23b40af57ac812c5e5b2f4c4ad94f20 legacy-trunk +3514 a22a350d3a5dd3cd024d68cacd25f3b916c85bba legacy-trunk +3515 5efa76ca17f2ed128c6823327058c8a37b9c4435 legacy-trunk +3516 a3a027c49eb13c0680e33f117b1e5d8324dc4235 legacy-trunk +3517 d9cb55ef34e2e504b10fea0d84179205d78902e8 legacy-trunk +3518 e149c77d173caadc02dfb7b5f547b24b724f92e6 legacy-trunk +3519 4d1a15fc4748d6d90d4cebe56210af4c48cba90b legacy-trunk +3520 a6355c83578d8d3e8ef98e49e08e61fa956b944f legacy-trunk +3521 fccd415e2eb8cd0aa5c1aa3fc186e1cfa378895a legacy-trunk +3522 2b54ccc852e404a4172bc7eecc88ee10095a9b9a legacy-trunk +3523 043da19302ef244bf5721f2186ca279bcbcd9a05 legacy-trunk +3524 2fac209e1c3f552212d296e157251528e44d3048 legacy-trunk +3525 3e33ca54fbdc1c3261dd8d680df1d5fa3f06ad7e legacy-trunk +3526 5d74a987358967450d192be08d259cdae9dc2003 legacy-trunk +3527 1808ca5d8883097c72c6a8a89143041c20ea13c1 legacy-trunk +3528 7cd533cf194a9dbeae90b8768ff5dd2ee33bf3a8 legacy-trunk +3529 560407ec632b9f6fcebf89755f383d1eb472e4aa legacy-trunk +3530 e1c473f929c472647f0210fa68bfc68a9050230d legacy-trunk +3531 132602d854d8c40f4e493e9faa46f627ec641106 legacy-trunk +3532 a5fc104849aa21f6321f5d997e3a37fb65a7d9d3 legacy-trunk +3533 287fc32c1d9c3fb2f221dcb056a253929be307ca legacy-trunk +3534 ee4a2f893254dd40e01c27dcb61a538d393470e3 legacy-trunk +3535 4c8e5fcb330159df378f37b583289fafaa5d9da9 legacy-trunk +3536 89e1e5d9ccbf03d94850f216c419d4c158c56585 legacy-trunk +3537 f9e5a28236777e50a32f10db193890b19af42cb8 legacy-trunk +3538 faaf3843b8bd5d1a6fb7c3357a0e488030a064ed legacy-trunk +3539 f7c606103dd5ed1eea3e5733eef17556131008e4 legacy-trunk +3540 7be7a7e0c465e76e8d97e5459d5fe638ecf5cfe5 legacy-trunk +3541 89d7d5e136addce7b58e7875ee28c4f26ddd3ff9 legacy-trunk +3542 f3a325662d39c62b08cb041b4d307793589b5a78 legacy-trunk +3543 105d332c277c6519a12836e29ef3519f9b86caaa legacy-trunk +3544 3543ce88a31ed85f2b1da52e29823024dc562a35 legacy-trunk +3545 b03d00e24c3c1a057f83c457e7f7a625dcb3c2f5 legacy-trunk +3546 710c6b13e875083a642ed4e42efe68f938a6d414 legacy-trunk +3547 a4aa83012af3b23faaec2c09aa0a6e9516768b2c legacy-trunk +3548 c02b3fe0b33c259efcdf1f82369af64118150ca5 legacy-trunk +3549 a0a0c76f6ef6a8cb57e8cd7407b001e389efae1e legacy-trunk +3550 ae4e90fa8bca521894b708a9e04d00e455422b03 legacy-trunk +3551 b2c7aabfa913b9bb2f9f31785b1ef649a2f52943 legacy-trunk +3552 158f0d9cdd40f535da8f587121ae7134ed608b50 legacy-trunk +3553 5a30a4e056e7cc37d72f10ade12340c84a882964 legacy-trunk +3554 f992ac2a38d5c7f3fc5a47307b60edb338d733f4 legacy-trunk +3555 dce3c30cd72787a743db7a87e461697b299fbd64 legacy-trunk +3556 e99c22490bfbd4e175ab0946e0d7c997f8f3edd7 legacy-trunk +3557 cffe8d6b2f09b7eed1867bd739305a76f4091ccd legacy-trunk +3558 7c3245c186774b8444540bef6d5393a360196ed3 legacy-trunk +3559 0ffff40d13ff470e391e8719cd25abc53e3554b0 legacy-trunk +3560 7d6a2d950f13c740785c4faf20331b56aa61bfff legacy-trunk +3561 98f51f61cb4b76aff77d5d0bc2eab5a9d369be4e legacy-trunk +3562 4229275dec326103a8db4867c873735b260c64ae unlabeled-2.10.2 +3563 be61e072a505b9ecb0f97f7e1b0d08a9fee1cd2c legacy-trunk +3564 4a286b300b5efcaf281fdbe8b5326b19ad98fcc8 legacy-trunk +3565 1ce2c0f565ef3e6baf444c828ff729209bc9d13b legacy-trunk +3566 1d841587aedeb071a9a58a29c870ac8e118aff77 legacy-trunk +3567 cc172ce05561af16aa05b215a07d51f2cbbcc7d3 legacy-trunk +3568 aac8231a715c7ce4877eae6fbc981edb7bc327e6 legacy-trunk +3569 cd5989a58bcfe0320ddd2b14c469f7c2b5a4c491 legacy-trunk +3570 af4e271d07b1dd2ee5a706cdbea6ebebf94d82ed legacy-trunk +3571 6278933d02e38bb8abddbc754673f79617d1bf88 legacy-trunk +3572 c814937880cc3cc00676082cc8a9b4a4e5e9d78c legacy-trunk +3573 90c5e2bb4da55bede6e7d8de44e6a2b0bcde11cd legacy-trunk +3574 474823e5f7dc13b96d5fd8eb9c809cce8aa90467 legacy-trunk +3575 a58c061b4f55525177d67a152e7e0f8f93f4fea7 unlabeled-2.1.2 +3576 2e0a8a3eef4a8f975b0c12671352d12577d636bb unlabeled-2.1.4 +3577 b9fcfb99a3e54b6f7663508d10e0d808781b9f7c legacy-trunk +3578 18df674539da55305f6d26c2dd460306a0ff2c33 legacy-trunk +3579 f5b1ddfddba833b31b6aaf61d8113049f0423485 legacy-trunk +3580 315272ec4d5b63d5ed2e5f5f03c8fa11ffcd630b legacy-trunk +3581 1691ea5d9d4b5b344197a336c7321c5ea3be9265 legacy-trunk +3582 00f1e8864dccdfe614d24b3ec3445f3e4acbc91d legacy-trunk +3583 c914b10bf2ed775c032d74f5ae45e0476600ba24 legacy-trunk +3584 2491774e36a90cbb5cfe263432b1a76d2d3aa119 unlabeled-2.25.2 +3585 f55031d549b79a6beb07c30be1df53fe473449ec unlabeled-2.25.4 +3586 ed522c948d428c37ae0e9d58e4c9e98506dc7619 unlabeled-2.9.2 +3587 cadeb79c132f5502ceff923120207660d9b2572b unlabeled-2.9.4 +3588 2852edb4fffe0ec37895f0314123e0845f8ec0cd legacy-trunk +3589 06570429f062d314d0b86822d1a3ccda5346e20e legacy-trunk +3590 d6f6a1cb7d79e9b198fc1583b2869c9e9f400815 legacy-trunk +3591 f7edfa6d0dcba4872bf4084f6b574d3ea118dd34 legacy-trunk +3592 b1bb74a2b5930e9b4fc78e9b55f669159212abd0 legacy-trunk +3593 204001dddcc32e38e13698d8d2dd594cc6d2588b legacy-trunk +3594 d2f98beec85cf224c88298a0db6de95d7c29e407 legacy-trunk +3595 fe7298813f1714b47fa2b9306706ff35f83aa4d7 legacy-trunk +3596 8a90c9bbbdf0c9d71a834c2f3919ac040512de75 legacy-trunk +3597 0b32ec8a3e20821e648ee1e5ca9139187d006bc7 legacy-trunk +3598 a2f2a8bd56f9bff1a521a6cc6ed9d05f2047c750 legacy-trunk +3599 72bddfad351a9a220db24504daba0a68bad828f1 legacy-trunk +3600 c887a1f305255d1abfa6fe6aefea68f3e6d6d1ec legacy-trunk +3601 8701b93383ab1dde918eb7c6cd6f02e53b95b905 legacy-trunk +3602 f7a752fb7b737d1f0e9cb45a8b021276b896622b legacy-trunk +3603 ada56b0765c1672d9ded807f63165c7785b54505 legacy-trunk +3604 9c707d8cf0c8d16e6d869efb63a6e83881def77c legacy-trunk +3605 d7168cc2be07833d0a15a06fa94746c5933f1902 legacy-trunk +3606 640c36b64dea1cf72fee41f5119c06d534848311 legacy-trunk +3607 5cae7653171b44a19d65ab6138f7181541cf67c4 legacy-trunk +3608 46c217337bde4f549989014e2fafa78646d13a12 legacy-trunk +3609 560ec70308177b4391afa171d604df31e7e3440c legacy-trunk +3610 89a5ce19d13af208ea12f5e6e001df0c24a7a5dc legacy-trunk +3611 e499116d45e4919dc46d752b3849682de87dd25b legacy-trunk +3612 d7e3842b2e7b10fffb04f41ebceac7015012916f legacy-trunk +3613 e46322a31f622ba1c9d0449bfd0f7da3a1dd608c legacy-trunk +3614 d82c2ba4f8187b500be6dd604dc7ee3fc08e6b0f legacy-trunk +3615 cd382456c572bbaa20553e9b11124a3ed16e70c5 legacy-trunk +3616 28cceabf8ccec682ac67318c23cd8873d1f78b3f unlabeled-2.36.2 +3617 cbf28d65469f506248b32ac4c22b83416d613a78 unlabeled-2.36.4 +3618 4749c957466b77f1080199ec6d970f3867caca17 legacy-trunk +3619 2ec08a9d032552106cbbbea6cd0a018bdaf79020 legacy-trunk +3620 f2d04054c9346a3645f6d153ffcc85d3fa52c66d legacy-trunk +3621 91338067f7501e3e1d9d638845bafba9f796ace8 legacy-trunk +3622 9fb0f1afb34cd3a87fc3404b003b4b6e399e2e53 legacy-trunk +3623 4ff608c4cacae0c1474b49f48b45b39d73f39c25 legacy-trunk +3624 328f446d20167606f8d262c0434a108b55acc249 legacy-trunk +3625 ae93ec4dd556369bafab39c4e0a8653dc77414f2 legacy-trunk +3626 d8ca0e913c4442a6b4cd6322326895d7644a9dc8 legacy-trunk +3627 a8932a4b9624d9bbd25549d2a526c105999a3cb6 legacy-trunk +3628 a5a4654c33be5b39776194036196e332e499ae88 legacy-trunk +3629 d773a5f89426879db2febd2598912331cd8bf33e legacy-trunk +3630 3a5f2f110f7062b9e26512cfed49ac02ae624b86 legacy-trunk +3632 50101eb6311b077c9d96733694242a41f87f886e alpha100 +3633 b18eb2f4af0cf3c592ec23c6ff37c68e965081ce alpha100 +3634 1cea9d80a2bc1ce4b1e1f608fd26d3005dcbf4f4 alpha100 +3635 d9d21382c73b92c181a02ca3a042094af233a393 alpha100 +3636 5b970047a722c16e126f72e05f51ca4dd29555a8 legacy-trunk +3636 ef73d40a827951c9da7a32cc8dbe38600ffec7db alpha100 +3637 292c5e79264df2668256c69e4e84be9d05f961fc alpha100 +3637 d8cdac8fdc7450be1be1622865497d4aa0b2dca0 unlabeled-2.25.2 +3637 8b08a36676d4eda47e1da7696e4b228123193f3b unlabeled-2.36.2 +3637 19fa01c9faf3976378f654bb4fa7cd3db2882a4d legacy-trunk +3637 8eef211555c6d35f4d29c9dc774a249bd1c74cd0 unlabeled-1.5.2 +3637 0ca653d677d349743c29c1ae2212a8dcb57293cd unlabeled-2.9.2 +3638 607b19ae1e13a3220506e85c2887ff749c64f550 unlabeled-1.2.2 +3639 31f1b987cdf82cbcb38f50108a0af08379d831f3 alpha100 +3640 d96199be74e6a448cc9540bd96b9f1e4c9f415d6 alpha100 +3641 f8d3ff6639b59670dc1132d9e8dce5d8cc95fec9 alpha100 +3642 a79b024397f87c718a2a31bdf23dd96de028eb79 alpha100 +3643 5ce40462ae99aed94eb50f818c2c4ecb2772920a alpha100 +3643 b8580e32046c1b6939ceab8e9392eee880f2e4ae unlabeled-2.1.2 +3644 08d4da48dcd5887420812712420fe17f3017572d legacy-trunk +3645 d8ba3cf9dabca978ff565f361900718a5bc87448 legacy-trunk +3646 1f8c64849203480015755db5389dd245bdebb2b7 unlabeled-1.3.2 +3647 6c06769a8869b0ddfac74a980e8695525894b46b legacy-trunk +3648 25c112b3c957ee191525ac547d807d9d0079b588 legacy-trunk +3649 109d39dec12886be3c0ccdd7eb63e49edaafc3cb legacy-trunk +3650 5f3d6e4b5503d51ea1cb2242ad717ef57170e916 legacy-trunk +3651 305748ebab43724525ba4df9e7f0ad3fb96195a9 legacy-trunk +3652 4dc7b15b6b970daade1e378e733e7f8c2ebd60d0 legacy-trunk +3653 c8a95c170e1ed873407345b91a5a6c84333894f0 legacy-trunk +3654 ed36b3e9cd7865ac6b511e0d48ee50a05e2edd59 legacy-trunk +3655 63eb6c75092757d2004007972a1e42091a06ed41 alpha100 +3656 19c98f20a9b83a31cb489bcacb12287a2f189a73 legacy-trunk +3656 08cd8b96b6bfc278b66ed411d3b9d7b634b8991f alpha100 +3657 6bce33d7f0d112f4ddb396ee9511af6769231217 legacy-trunk +3657 f5336d86f58b8d9a4e034fd4bce1d0a3ffcd4dad alpha100 +3658 3059218f630bd8ec0f26b122ee38be756ec791a6 legacy-trunk +3659 7738ce95ba4dca9cd8eb5ecd3a2bcde0aef05e54 unlabeled-1.9.2 +3659 838aa1406eeaef83216e04490bdbfba31a61211c alpha100 +3659 2430a8602a65d13695366accecf9649d754a2b8e unlabeled-2.16.2 +3659 b4f815f3cf3e108fc97cf0f28b87fabc3850e612 unlabeled-2.25.4 +3659 d0187658cf0b3bb6f449cdc2d8b0e1d9d9186a50 unlabeled-2.1.4 +3659 612c76aac3aa89e86f5e4eccf983b34ced0a2971 unlabeled-2.36.4 +3659 313d9b9309409eddd62b9784e706cd474fcca304 unlabeled-2.10.2 +3659 8dc2cf3145b3bbba53a7bdc5d1fe3c6eb9839683 unlabeled-2.9.4 +3659 51eefc054aff8ba3be18edeccd927b12102d196b unlabeled-1.5.4 +3659 af667c6d2072211194dcc49cecceaf1ebbd1de76 unlabeled-2.3.2 +3660 d4705d7066329248900cf9c62571a22022a7d6d7 legacy-trunk +3660 1dca33eb2d7a537df14ab383569883f55de9975d unlabeled-1.2.2 +3660 8f44e4310414b6d95785a9fe379563142abaf7b1 unlabeled-1.3.2 +3661 dccef1cbda5a06dc8f179af7c9dd7772227ae69f alpha100 +3662 2ec96140a36b488345a3c1a1ce8fbe40c3b3b265 legacy-trunk +3662 4aa91fd697154796ca1ed1a85a56cc59cb3d3f86 alpha100 +3663 c751cbeee6882fb3046cba1669906a95f36a5728 legacy-trunk +3664 23561dc7b15f5e83200aa5fc045ac4d11cad8e9a alpha100 +3665 e560b3342405b3277b4dfdc6b003802277d1ee0f alpha100 +3666 0eb0efc51d9b37c48fa6c39433b7ae28e2468e7b alpha100 +3667 c32e1020468dff84291579ca9dc59c1ab6781eff alpha100 +3668 e263a72a76fe9d6a1ac01e233b485242776789ee alpha100 +3669 93d1297178cbe785f0b255121aab2cecf7ea2148 legacy-trunk +3670 98c559fd6e2a92a4e5c09ea6b317e29b02de9632 alpha100 +3671 cba1096da55311dd62b69c0bbb80270a0c1899fc alpha100 +3672 2064b16709f2ce5f90f6f84b84ee051bb1ec50b6 legacy-trunk +3672 345d57bec269d7bfd6f26e7251569ca2cd3cfb53 alpha100 +3673 f86f651c707f410b02901f98e5e47be5775b199d alpha100 +3674 2cb076ae89272179101e6a1eb3f32e70ca867fe5 legacy-trunk +3674 ebf72880355f18263d1f871d5d04332cd17116de alpha100 +3675 3fe7582b9636df2d43c4794cef1c6aeb6dbade25 alpha100 +3676 48141e68b3698322fc037d1443d81854a107f405 legacy-trunk +3677 d8366458d1066d1c04a302a871b4889521053305 alpha100 +3678 2be804966147698b4147a94fedeabba098fb7803 unlabeled-1.1.2 +3679 f2f163c09959b3e752267163cad278322a94c995 legacy-trunk +3679 b66c6e2a6e06fa342e048ad02362d4fa8e18da32 unlabeled-1.1.2 +3679 fec2cf8d6e7799949b06d33102fe26d9e6d77746 alpha100 +3680 870751fb09ebfd5930928592f58b59a2a9923583 alpha100 +3681 0def94f80b38497486833d9aaf7099fb2f5ccb49 alpha100 +3682 24d65653e2ac9d4462cc384022000a619cadbe17 legacy-trunk +3682 1c4e2d620b1638261297b5fbc3b86142d8065979 alpha100 +3683 d03cea6c0795d4d986c7737f644c3269a3e550db legacy-trunk +3683 438533b341a6d5699c035e655dba029aad97b4e6 alpha100 +3684 e337624c3ea370535401e3b8a32a917f5e3cd39a alpha100 +3685 3d5d4c9ed19dd8695e9f547dcd6c0bd41c1edb6e alpha100 +3686 b80f1dc96c1a56b3c43b4079f7873003f3dc73e9 legacy-trunk +3687 eab0196a8d838e72c9cc04f8965bb15274b931f3 legacy-trunk +3688 b5b1f38befa48da0a8661d4bad18a8c973fcbe37 legacy-trunk +3689 550e2605958b16e641565777c109f35daabdca36 legacy-trunk +3690 2ddea8e6dd20b0fb7bef30222ea3a06aec742799 legacy-trunk +3690 3559b090670eec9fd1b697a9f90f1179094f5650 alpha100 +3691 61a723fa2538c755e4f57a5043d156a2a73133a0 alpha100 +3692 9f3e2e931b4b93fd5b6ed4ec8383a5c8e223e712 alpha100 +3693 5781aaf9ccd35f71d0090c5d824a35f68ab98b7a alpha100 +3694 5019d03d71920b916d26654967c6d671e2ba2509 alpha100 +3695 224c6bd92ceb4540d74fe23094f2348891d16220 alpha100 +3696 8d6d85359fa3b9cdd10c8aabda469572bff31596 legacy-trunk +3697 e5fa8979b9e66824120e9769276f4edfc4d0255f alpha100 +3698 0a6bee4b6b17518beff90e1b40317e31f79b3e4e alpha100 +3699 2ae02f0d9e6b0a6d4087dcdabba97d49073c0c97 alpha100 +3700 2d4bd8cc404200fa7255cbe5a0c75066b22c68c9 alpha100 +3701 4f8960c78141dbc374027c5e88b7fab44f85a0e0 alpha100 +3702 758717f850f2aa37e5936360d3d43ee6ce41230c alpha100 +3703 05014e0d33ec581645dad04ec4b19380bef8f4d7 alpha100 +3704 76bc6d748890d87a99046fa56e01630356a5321d legacy-trunk +3705 e53ed67459f56d7346a1e2b3fd9973ea8bd80367 alpha100 +3706 0c8b1812f0b69d91e38b07ec3805a966fd5e384b alpha100 +3707 10ad8bef9f43db75e98aada414dff8de7bec578f alpha100 +3708 a9091c498b101e5823524c8ffd3653542b1b0224 alpha100 +3709 627bc422a9028681f0eebf319efa16ba64166d4c legacy-trunk +3709 8b3a727dc71b3ac3e99d03b7b4cdf5ab3101ace0 alpha100 +3710 272e2c64b74dbbb89853cb1542ca5d4934430643 alpha100 +3711 6dfb84adfe43119a9a7e121c08cb0bc766d6f081 alpha100 +3712 6b6300cc464e5a4bc1670b7a7259eaaa0d85bd8d alpha100 +3713 50fab233f40421302a4e2c20c03966f4e83cfbf2 alpha100 +3714 3d19ca40eb82dfd2e8f5ad2d6a95b9690fe7f3fb legacy-trunk +3714 925c952830ce26ebba68b24b3292dcf81c3d357a unlabeled-1.1.2 +3714 627d644bc6c177f9a6ef49553c42375dc9c06306 alpha100 +3715 9637c049617d3376d4ee5177d891f60e236bc175 legacy-trunk +3716 ed75992177e831719b068dc6ef98c09e5aeeadee legacy-trunk +3717 29927f0386a69e83e9ac22f0f5afc893b54bd960 alpha100 +3718 c62a6da7feac3d7a5179dd139040b9ae21993400 legacy-trunk +3719 a5256061f3a00f76ae24c5181e260801ed553e3a alpha100 +3720 5fd55a6ac76e837c3009856a33666a5732604f9d legacy-trunk +3720 32865c89cf12e63d84445d870c7d2264004866e0 alpha100 +3721 e183502fb5bc6f5c3a6346aec08a590f9fe729c1 legacy-trunk +3721 fdbd3954fef00b446a41178a5f7620cc0561c756 alpha100 +3722 5e92b132e70fa32b7ba1d4164ea5ed777202321f alpha100 +3723 d0bb07d4c6feb8d2b30ad408fe958a03a0e4c21c alpha100 +3724 7453e2ba5362a443216ea98eb6f00817b8adeb46 legacy-trunk +3724 aa472e917f6c2339f440148184a9f42df54be371 alpha100 +3725 877073b9f8c3254a83250b2564efc65c9f1abaab legacy-trunk +3726 e4ef1b17da3dbc5b9bc21f1a0c6a027d6ba4531a alpha100 +3727 cc3119164d5c2f365ec7206c99435655329f5ba5 legacy-trunk +3727 abc2f9814cc96855eaecf085fe6f108a3eace1f5 alpha100 +3728 944cc7c64e7cdd96105730d0c1da599cfb50a79a alpha100 +3729 9f288cb56ab51f7aa48f4d37f6784b51f87e77d7 alpha100 +3730 a6ebb68db34eb5161fd31f9568d1cecdf3da0e71 legacy-trunk +3730 77e0ea60796ae484bcda6ef96032d02e1121c5ed alpha100 +3731 a75f70ca1be0a64c3e719159d93d5dba03ffa362 legacy-trunk +3732 f520b9c7ae6f65db107a80c8cec13684ee66c1e4 legacy-trunk +3733 568c606a0e311b65479d6c1ab8a7b08b8005fa41 alpha100 +3734 1f7dad576a851d1b1f6cad22ba267dd62e7b566b legacy-trunk +3734 204b7e793c15b4bd1d40ade5656a5edfedadcae7 alpha100 +3735 783ef361f39515a8aef55695833e3ac4109e37aa legacy-trunk +3736 8965ef4eb399ac476dcbfeba7ba431aa5d9a6eea legacy-trunk +3737 3664cb88a03008edbcc7f97484e8558d1843b6b7 legacy-trunk +3738 523d421188b93a537ab3b247110229b8b26f694c legacy-trunk +3739 aee55d969a12241a78dd17dee06ac72812bcc9ac legacy-trunk +3740 ef082c1072a7115dbfc3036ec63fcdf1b89a5c79 legacy-trunk +3741 5b255a3588330b588c0cd85b1762de65dc37de27 legacy-trunk +3742 939a95f3dcdea431b838bbdb3b32abcbbc01f6ca legacy-trunk +3743 be6800a6019b4d421470cc5982cf529f6319f190 alpha100 +3744 3642c64472c078a69b3d8eff3fce96315bb2daa6 alpha100 +3745 3648edd343eb44c6410dddd8824d0479b0305f17 alpha100 +3746 6d24b99dc881b8f3761dc0f7ecb4e9fe2db8cf5f alpha100 +3747 c8b714b9bc5ab2b5cf6017c22015c8d5b307f2f5 alpha100 +3748 5994949a7ee9db401b9e6cb51d04e7d33054fca8 alpha100 +3749 1e2694a0693988be409697390eff6a05c76215d7 legacy-trunk +3749 91bad376b4bce5eb46c2385d212e34ec654ea01c unlabeled-1.1.2 +3749 2ea813aa2602fc956481e4fde8796f35cbd21b13 alpha100 +3750 f9adb89f20016a9fa645800567e4202c0c52a4d0 alpha100 +3751 fa9e4db7911da9ffc063ae83be559b8ec09f2d9f alpha100 +3752 c5ce358400130a9cc9364c9bd216f195d9f667e7 alpha100 +3753 07267ed13713592c03297b04025e096635600e89 alpha100 +3754 1f841780efc23eede0774b603e61b888c0197bf4 alpha100 +3755 27f395afe60f6966de735d73fe37e1abd63e3bbd alpha100 +3756 fdbd898bc1fe62d8479baa1998b46b882071b0f5 alpha100 +3757 44863c49a436bfa308d092534ff6474a490a7772 legacy-trunk +3757 a1aee7699bea654e4dfdf95f1f13d559b2e2bbf2 alpha100 +3758 4a722962fb697094653e220c6dc4f87923bc476d alpha100 +3759 7539ccb77d288aa8e6aec2ec6845a4d80457cf1d alpha100 +3760 3336cdcd4a5ff6c76b10178d60cda44d9d8cb5b3 alpha100 +3761 472a347bafccc49813a70dee3c92811201544282 alpha100 +3762 130b04fc54dcc6998e20bb2a149cdece1976158f legacy-trunk +3763 ed4c116b58934e8283651906da5c640fa91f3c48 legacy-trunk +3763 811ef6ed4ca1bb4c321c67e2ddfd4397e548d771 alpha100 +3764 3bb788a1dda046dce5a55230a984e19742a1c1fb alpha100 +3765 2bba188c6adade36b75db41c1a2c6fe5aef28d45 legacy-trunk +3766 061062f8a9bfd7db1b4d6314c472b33c288c7093 alpha100 +3767 090d0cd961af1750ef8de68e559f0b99d381f91d legacy-trunk +3767 c23c1ac92208243e434811f9dd19cc7ffb152e66 alpha100 +3768 35db6fca4df4d72ec2bff78e92b0b34c98f25e63 alpha100 +3769 081732c6c11298d0a05fc1a7d0a24a270881138f legacy-trunk +3769 c579875b298078e57cc5b167b3bdde22766212e8 unlabeled-1.1.2 +3769 74819040e72657916fb40ba4ba6acf0e96a00222 alpha100 +3770 09a2a661e8c05121bdab9acb2487b2e2485c87aa legacy-trunk +3770 5f0f8bf7b35ced5e3395407f8e58ae3456d0fe8a unlabeled-1.1.2 +3770 9b4f9e821fd46eb71112d931c4429eac464149ad alpha100 +3771 7c3fbc97f946770eac40d52f5ba48e6cce77b723 alpha100 +3772 bc5c92508f56030120eef0d18112340d51d63b8f legacy-trunk +3773 dcc95a137a6f91ce95611efd9ad38a406b82aeb6 alpha100 +3774 3b6f950530436080b7833a42bd831e2dc69f3689 alpha100 +3775 e210a4a3d9f0c86aabb8c56114ae5c61785bbd33 legacy-trunk +3775 1ff37ff6aff4e4d6b5b12e187a34cdc597fa7464 alpha100 +3776 a27d6ec3fd4a5999f6200ed791f4ac832904d069 alpha100 +3777 d68f6cc2611ece323d72016d152471871817e8c7 alpha100 +3778 f5c1979bea7cd5c2ca2badf3b84de9eb3f4c1c72 alpha100 +3779 56cbfdf37254c9e0857ad1cdde1d65fe3cc2daca alpha100 +3780 c2868ef28bee2b2f1d2bec9f3024270a0c2eaf18 alpha100 +3781 1a8e90a37357bae7b4aba922f1f0ab33bfdcef6f legacy-trunk +3782 8e97a68b2b17d01dac74586344fb068cec8f8e69 legacy-trunk +3783 bdbe6d8a7a8f86fbca2b7e0abeb9ac7f502895cc legacy-trunk +3783 a4f6ba2e47ffd633a256d27857a989dc0505a2ff alpha100 +3784 978195658e9a37e20b9c2096af36174849b4103c alpha100 +3785 09420e2e938845a0d5aeffe93ad4944bff9b4131 legacy-trunk +3786 e45948e2b66ce485ade4932a9da54fe9655f8553 alpha100 +3787 dd6ea167f2bd1b741c70fe886b92a508d3f2330f legacy-trunk +3788 0f88f965bff27c88675819720ab0c7e52e0511d8 alpha100 +3789 338fe58b2c6773858ea022f45ae329b087b17449 alpha100 +3790 147e99198838cc67fb810d811de81b0b2b6e0ac2 legacy-trunk +3790 20fbd0434fb634dfc00b77aaa3db33c4f63c6c47 alpha100 +3791 76891d0cd5fdac1e45104e3289cf8b7ab024b9a5 alpha100 +3792 dc8aed8b204d18ffd792415ef64d62999052b23a legacy-trunk +3793 8b908e9939757dc35129101358cc24af33a1c832 alpha100 +3794 88ba5d17f30a0f53abfc3671c17b3e41c4bde4e7 alpha100 +3795 5d5eb76bb278aa6c15a29244e776d2ee6e5d95f0 legacy-trunk +3795 07e4c5726f785678a4f88381bf5865c95432763b alpha100 +3796 bba80088a044a33879063944d9bd4a7f1cfabea5 alpha100 +3797 c23ccaec9249325d3c3f09dab9495ec9698b24ef alpha100 +3798 0368ef49ff4c61740c163aaa67298c6786e91a40 alpha100 +3799 53ecced2f2b2a184f2361f0c9b91ac02f3c1b92e legacy-trunk +3799 7ce412295ca3cab5a42facdeabf220fb8f1052d3 alpha100 +3800 97c5e607b79773267d288af805c335aeb491c738 legacy-trunk +3800 8d8b7dc99982e361d685bb03f51304a2c7fa58d8 alpha100 +3801 c9b3f77e18baefae5a92d9585d4fbda80a299ccb legacy-trunk +3802 c3d7f814b2d06401c7b0cbbbdb9c6883c6856517 legacy-trunk +3803 2603b420c5decac5178c4466f7c9e3e6a6ecb7a6 alpha100 +3804 e9b0cce3b98093e0f74da427cca9c2a10d4c2cf1 alpha100 +3805 17e5c94f862f7678f0a48befb999de17226da136 legacy-trunk +3806 15e1b86104a6e618f92c217fd63d78523d4fdbaa legacy-trunk +3807 995a8ef4a5c04f3e68118168be07a3eb89249ee5 legacy-trunk +3808 ed211c7610858bd6d594a20707e35fa242bd5019 legacy-trunk +3809 87cbf9e227298e6a9b6532be92a772bea55100d7 alpha100 +3810 5c6c99066b2c7109628ff403c8df5f6f8b59a78d alpha100 +3811 48aec9d3852a952919c0dc82fa81d7050862ed8e alpha100 +3812 869fba809c689e3d64a6348f95f431e42b869a97 legacy-trunk +3813 5c01931da59bd1d18e367ec3a9b1782ce3e7948b legacy-trunk +3813 7c357c6a28bdc89ded8a49e6eb7486320b3f0ad2 alpha100 +3814 7ecd6380566cb318b2ce2d6d6eee63125ee02df3 legacy-trunk +3815 e053a87828f44262b3ad26392be43e414c996e9e alpha100 +3815 978bf134f44ab7c3c84c476a291e7f4ed97836a6 alpha100 +3817 9fbf34e1c1f76bf1404f8ebe6c2b26372443e422 legacy-trunk +3818 5a17c43dcff03cd9210d5ccc5a835189a178448b legacy-trunk +3819 4047f224efdb0ec7882ddabea280220767dd59f9 legacy-trunk +3820 630e03109c638dd16cde9378afa411f8c29d1f6d legacy-trunk +3821 df0aee64114bcf1f92397bc8fc8447ab614cbbbe legacy-trunk +3822 1ff6cedd22412ded75741d9a4d7fc7ada50b9bc6 legacy-trunk +3823 1c3644bab86ab53f2f29264111d3d82ad11856b7 legacy-trunk +3824 b68fb73985d836a4320aec0c6d2d31a63427ad10 legacy-trunk +3825 443471ff31470a2eb323290b62ad8e21a6903a6b alpha100 +3826 ba24fc8d3f8c55df5b1c43beefd12344171f68f7 legacy-trunk +3827 0efa240b1dbc057dc44fa1d44d4c4d8fedac5638 legacy-trunk +3828 5055308152a4e2877b9e5f972de27ae873db3386 alpha100 +3829 5cef4f5a28cedfca5fade825edfc60b07ff6e888 legacy-trunk +3829 9ec7d6f77500ca090c2191e0b3b40c66a3e0fe77 alpha100 +3830 81f26bf1178f9e3710c08adf6b8cc942b16ffd16 legacy-trunk +3830 ee3d5ea13a37b92c6ec059ee9d829873b1619642 alpha100 +3831 48aa3d3314ac171db5ce17f656e4b4c71000e1a0 alpha100 +3832 980626ecad61d8d056f39fec4e2ba89434fbadc6 legacy-trunk +3832 5c350631c839605a1d3adc5bf43caf14805d1f1f alpha100 +3833 3e65bfd1576ed98a08a196c716ad5c82a30411fc alpha100 +3834 9930087ea8f5e6e8d7cc54326a6fb84ea28b9c75 alpha100 +3835 8c89f6ef9f9f8f547d57c8586e30eeb83def3434 alpha100 +3836 cb5fd80068cef25689db7dcbbdf9e3719b79e8ca alpha100 +3837 bafc533e0eb6ac5aa5f082eccfbd318278f6c547 legacy-trunk +3837 7032a8a2c42c5224e3cf52f3c886ec36cb53d130 unlabeled-1.1.2 +3837 c96fc497b932f5dd28603b1dbdc51e1c9eb7d041 alpha100 +3837 b15b8cc9b8d10e0352a0b8b7e8d51fa309db6df3 legacy-trunk +3839 268e57630016202808609e1a86d0db08838d6925 alpha100 +3840 b70f0890754617bf3f858124cfbb7c051706b49a legacy-trunk +3841 6f52b5389b88817d44b7148871d7c07049aa9778 alpha100 +3842 e380b4d54fd39eaf3ab89a1c94e3ad1895d6968f alpha100 +3843 5dfd1d51d66deaa565e5a770e46cf00d80eaa5ea alpha100 +3844 6966d957b5b1e750f60fde537b39a50d0b8ca5ec alpha100 +3845 2b5f8b2021bfd73094c9f8228ee48f6624dc5817 alpha100 +3846 8df72e58fa98032c7e4261a152c4348406a2a881 alpha100 +3847 ad216876c47fbff704b3ad2105d99a2a5ab89c24 alpha100 +3848 8c6814f34cdd936f07390c3d07b981588c4fdb0f legacy-trunk +3848 22b7d3735bd25fec3fcce416f34c08f8988e2769 alpha100 +3849 6d35308261f4f74d85c103b975c8434e407785b9 legacy-trunk +3849 7723e000398da774449d7efd65058bc19248e50f alpha100 +3850 5973354fb49954f72465f71322caecab46ad0c75 alpha100 +3851 cd279e0f77d853f263ca763580fec1353596d477 legacy-trunk +3852 c3415b319b4e8692f9c64e277a47fbc16b8e18fd legacy-trunk +3853 172aa0eeeb6f7cbf0b7541ffdd83788aadb11f94 alpha100 +3854 274066bde24123cac05635cb59238b006cfe49aa legacy-trunk +3855 df0fb788c0c1f5065331388bb391c64e44850e7c legacy-trunk +3856 9e34448a005ed75fb0a5b5957714f4c7a2ccfde2 alpha100 +3857 16d1dab3f2c1b9b332a76502aeb06e73ce93b8ab alpha100 +3858 8cc908b0d83bde25ef119c65279407652af09ddf alpha100 +3859 3286bff443c6a0660bcd581b1c7421f8cf8b4d61 alpha100 +3860 274b93b12113f589a55d8fa684c808ca48cb719f legacy-trunk +3860 e5d665231c5894c6361b33c8a2a07bbce927d0ed alpha100 +3861 8eab2ee40f32dbded8ac64e2dcbd8eb8a6cc75d4 alpha100 +3862 249fe5e24e20eb8d9e3a772b7bec1677fd2e5f82 alpha100 +3863 8aabe9aae0fa07a6aa542d1ff8c282aee6c76c54 legacy-trunk +3864 cf60a2b2497985889f8bf41b0176551360ba29aa alpha100 +3865 f4db92eef2af717b4ecfd7551b4b0f54745b3513 alpha100 +3866 020d8c2d9d3cfb3d2685a04b36d36bf3d5d343b9 legacy-trunk +3867 bd1a4d717e9d1ee44ea8ea3a8fece742eec2fce2 legacy-trunk +3868 780f335bf524b7059ae64255f909e00e6bb5a94d alpha100 +3869 59fd4686f88ca64b4b7b03e8a62db34ab43c3f05 legacy-trunk +3870 b3bff5ed5d3d08941cbd4d25cf84492e732eec82 legacy-trunk +3871 9600553900d47ea14050283cd8ee9abada4417f6 legacy-trunk +3872 b33720d0ad97b153796149ed5a688319c158a349 alpha100 +3873 cdafc951e8e8b30fd13206f4b80df145e3e3dd8e alpha100 +3874 dddcba2038bcb5b2f19fdf0d5fcbd53f2080e83c legacy-trunk +3875 7d21c923b54aebf3cdd731dff59239896354140e alpha100 +3876 903794df5ea9eed55a300acf2f761c578f264a91 alpha100 +3877 e44499a44cb8e374e35bbf54b3aa6bfa0f617709 legacy-trunk +3878 370050cd0b6c501e60348b09d4bfbaee243bf8ad alpha100 +3879 8d26ee24ad182ea0e8ab671a47f98d759172c1a9 alpha100 +3880 3acf818f354831f462367551b1bec20a529bba03 alpha100 +3881 cdb14041cc87bb640ad04b04b202fcfbce7bfdec alpha100 +3882 acba4427e89c7000748f984bda6eb23a5fc372ed alpha100 +3883 3d016999264ac2c73ec8d6b440f1d86f7d5821c5 legacy-trunk +3884 af3f2a03bb18fe0eef97d96ed4ea19a122a92afe alpha100 +3885 3cddc67be3f575662cf734b512471efb500f8626 alpha100 +3886 ae4b9cb5ba1561128acbccc397b006f181390724 legacy-trunk +3887 06aa608c589e86c586bc1ccd260ff5b5f4f903d6 legacy-trunk +3888 91f846f6d6a61d043d0e724f85c784d14a715a52 legacy-trunk +3889 eacaa4f07826d9a00b23f216049d3e38a87ca469 alpha100 +3890 2a0d499740b624b88072439833f1ebe06a765499 alpha100 +3891 83622b7a00b5238f8305906cf8e34c87cbc049da alpha100 +3892 eaaba2cafeeb9c340789ea2ba434221c39531189 legacy-trunk +3893 2d0ece5604069a162f794340beb1a8c80448a696 alpha100 +3894 72f8e1e614f06303577593c71d21fd69155a9a57 legacy-trunk +3895 45728bfecb768f021285877c6151fa9e601a328e legacy-trunk +3896 695fb494a3a22fc936b44f530d859cecd17ba0b0 legacy-trunk +3897 7bf6b128e98c48868e53d7bf7bbac259288c9025 alpha100 +3898 f3263759678ef38472fd1c386716a1ae02cb2289 alpha100 +3899 444e349f962f0ae30068252e59dbe57791fcc680 legacy-trunk +3900 b21f048c23e9e028450f1f2ec4d04aeb57129bc4 legacy-trunk +3901 288a4606d2fde10068dc79cea6acd9f807455856 alpha100 +3902 021daabe69d8795661f79f67eaeb282ff396a500 legacy-trunk +3903 c17360a16587038c5bebbf3fde9b1dee7d3a3f00 legacy-trunk +3904 32da57818e97b5ffd208eb96beacb4a0d9830db8 legacy-trunk +3905 b9634bd5ca55a98e2efd6b279c0d929a0ddf6c61 legacy-trunk +3906 2384faa5350f3b6d1e0f2b13f2f9f0d056b45459 legacy-trunk +3907 b3fcdbd2d9bba53b57859e8301242fe21c4ba312 legacy-trunk +3908 8d7ab2c7e99330910275f01db91d8eee5516d457 alpha100 +3909 e96a8cfbbef1b6a3ddf63ef90fd08ef7d6fe4779 alpha100 +3910 c964364a8f7f8e7c04fe77e2962dc2f284236087 alpha100 +3911 b2d18fa529f48760cbdb4a571d4235072588b8a6 alpha100 +3912 0556617aa3386e70ff470ecce1f6a60371ec4612 alpha100 +3913 d590ffd54f898ca117f0027920347c1bc2e9196e alpha100 +3914 79bb68270c7b12cdb036a0afd62e27ced85a176b alpha100 +3915 41bcd1853fea57db9b9ed7f829b777f8e0f8aa88 alpha100 +3916 131323f1715922fdec0a745ba0c9aa2d98c9f15d alpha100 +3917 81018650dc3245a96ebc0430cfb38f9a2b90af8c alpha100 +3918 c13bbdfeebffe6c1e0f4e0aad5a7bce1d0bbcbda alpha100 +3919 ca5ed52aca27a6a8d760ef0cb917928be2915a06 alpha100 +3920 fc45e577ff9b20cea85379b7d2704ad7ea747f62 alpha100 +3921 a7041d6f7de3e358977da92878dc24554d20ca12 alpha100 +3922 5effaad71ba52e5e6b440c8d853b64f49b296b5d alpha100 +3923 ad2270e71ec3f0b653c27c26fa15ba3cedee9294 alpha100 +3924 3469d04e3e36d5fca899bf4cb0c9f155b5a47510 alpha100 +3925 f0714bb4ea96a1e1008322ed5b71e439f8733278 alpha100 +3926 337abdc1584a425e5443a8927fda31bebba1659b alpha100 +3927 7c75f60468f802d0f733294f1cffb6afbc518a7e legacy-trunk +3928 2236d709ff2daea608fa04bdec5391d21596d4b6 alpha100 +3929 90a20993747d1f38a5a0c4bb5f252460a56d31bd alpha100 +3930 c1cdeed8c5144f5ee72332e73e5e0406bdc0b5cf alpha100 +3931 3d8ba41848ff0f82254445e269eb1c8e3307cb8a legacy-trunk +3932 b454dc9247b076b7ca57ca96e8c124e0da0928a8 legacy-trunk +3933 998c6422cd8aae03d28b8a5d32cbb6ccb668a314 alpha100 +3934 bcf0b8dfdae9f446d6131e49e28624d831b38bb4 legacy-trunk +3935 7fdeadfa83e0cc68788c37049cbb2870b07e01be legacy-trunk +3936 ac2e5cc29949d9ed6c3ec059415493af601b32a1 legacy-trunk +3937 594a8c12d688276f2d2270f8b46c0edf04cb0ee9 alpha100 +3938 fca2fedea71cc67aa220befc25a8fb61a95ab4c0 alpha100 +3939 2c6f1337801cc0102ef73096bf0de6a6c1ae0183 alpha100 +3940 1287fb0595888c0147c455eb66247f778d4eeda4 alpha100 +3941 f6579488934370a4448e6e3c3ff7542d3e75ad41 alpha100 +3942 ac9e12b4ea8c657bca34e18a7117b0b44e3dfe17 legacy-trunk +3943 20df653376b417b98e2aaaed3adeb475ac915f32 legacy-trunk +3944 672011871a1b64059b8800fae1e787b402551517 alpha100 +3945 a5bdff9705951fa6ce7a64b94215e9650789d8c4 alpha100 +3946 88de21ef4a8a30f6a9169b896fc26a8c7ac9371f legacy-trunk +3947 ba6ac82fcb686de15cc36a7e3fd34758c5a4ad8f legacy-trunk +3948 b3443546d6ee4b0098f92b0c544eb25471e9083d legacy-trunk +3949 45790356e024f76206bc1a40e8ca7ab51b6a0852 alpha100 +3950 2197dd241d8dc86215cbb2d9abef814a3866fb76 legacy-trunk +3951 dea67c2a4c07f3bdfec9412b61b8d140f693b348 legacy-trunk +3951 79ab4df9d0f5ff2f2c9c3a306f1feb1ad2c52814 alpha100 +3952 9e0ece6ed81d7a0ad45934d62180cb5c10d0a933 alpha100 +3953 ca3ccaa8506026fde1f2b968e3c52ae472184983 alpha100 +3954 ecbadb818847503b68bffe1adf1e74cf4e57a47d legacy-trunk +3955 b2c922cfb4d97bcfcd8950cf9865454258660d6f alpha100 +3956 4bcf584c1572b4f2718000605dfa78e888357466 alpha100 +3957 83b41bf19392ed3ff4ab74a3617bbd399a834487 alpha100 +3958 d741041cb076ebcbe1f4bb397a99efec948deece alpha100 +3959 09d77bb71d75b53deb5a48bc23baf97c45706fde alpha100 +3960 ce32847164e1e6d0772c49136c913c4c802a008d alpha100 +3961 e76c687ac781d42a7435968a27443e735a432fd5 alpha100 +3962 6ec152221792e65f7a11e2ab5eef5d148bf1f2c1 alpha100 +3963 33d33443ec459fd228cd545e14d5e9d5db9bb4b4 legacy-trunk +3964 301f8ca98e0b5f440c9d01450772d3c8e0ea8a13 legacy-trunk +3965 57b9b77da21b39d5a9a5c917a811df82f39f9210 legacy-trunk +3966 5e5a61bdde0b7819cd239eede985b0b6bed68b5f alpha100 +3967 907c5dd89c6cefba8a48d47db39a4097f95b721a legacy-trunk +3968 4e7eb5a3fbdaf1215ed700368bd9fe8d2089011f legacy-trunk +3969 c2ff2163f0b70c1ecd0d8aac03d5339a447896e3 legacy-trunk +3970 e8bf10771781397b8d374529f112f94b49ac8503 legacy-trunk +3971 60a7214f33a88165c704b7319ee628d53bcc8e8a alpha100 +3972 5488911ebc26ec72965ac3091b27e0310bb172e7 alpha100 +3973 1431abb28353f4850ea5dbc21b20624f0ef0cdcf alpha100 +3974 129d98b517c256fe85b43926376aa0664d7af49e alpha100 +3975 a754bc74e584daea7f10f48bef8c73199cbac94c legacy-trunk +3975 75939dcc938a71ada1ed89c359126c0dc1601c17 alpha100 +3976 077080d758dda682ed618a3a5c9afcdd77a2ee28 alpha100 +3977 c6afb96a45230f551df14ac2119cc80a365c1eaa alpha100 +3978 5c29f4b1b285152534a0e2576f37276950bfbdb3 alpha100 +3979 e291105b1beeab269c7a34cdb89217f1b178f54a alpha100 +3980 69d5dc24cb3b559f8cd19eae52903d017f305946 alpha100 +3981 241c355fd9ead573ff080891f51312773f4fe9a2 legacy-trunk +3981 8ded8c65511da43bd0b903470875bb4deb95ed60 alpha100 +3982 2e8eaee9ef45cea6ec1a8b256981e4ebc98279ec alpha100 +3983 be2db31423574d6184bb5a14bb9678ef67e00734 alpha100 +3984 221d47b2974e73ab791a40cb9d8ac5cf44a99773 alpha100 +3985 78acadea3918fc967e558f0ff48b7868de19f5da legacy-trunk +3985 f9dbbbb17929025d06d629a4bed3e51a1131a724 alpha100 +3986 acea1103129bac11af61dda7f812c518da5b86ce legacy-trunk +3987 83ee7649823d256cf27913bb448f9c4afc8cff8e alpha100 +3988 4048ccf85b3d24566754ba3033eb74ccf8646034 alpha100 +3989 d7a8557e780cd526a85538aea6a1d0f44d549bd9 legacy-trunk +3990 c949dcb0348be4eabdfe51ed94c859bd32ce77c6 alpha100 +3991 7b9828bc71dd649259ab4ed7c15d8a22deab8bd1 legacy-trunk +3992 e20d0694e74014ebf6dab64d9b26d30bfa5e3d32 legacy-trunk +3993 1036f205cc2d7a5f107cdc1fbee3207498192c05 alpha100 +3994 70492d659e3c7c124d3fcb1409a209b3fd725ccb legacy-trunk +3995 a8275562784cd2f26919611b087e5699d61438f8 legacy-trunk +3996 f50fe4b952baa172d6dffa3a28cad6295ed5d731 legacy-trunk +3996 0326b5d61445ee3a8d3de28119f9652cb72d2e3f legacy-trunk +3998 6a01f099f0ad8d4547dd7c6a8a1d8eac6e5ebfdf alpha100 +3999 366f8dee96fbf4e774608e0ede9bc0ab4d7ba2a1 alpha100 +4000 2e050a50aa0a01f3535da02791a6a0fe19333ef2 alpha100 +4001 2b27553028aac23e687081798639c419d34cc08f legacy-trunk +4001 74920c3a367d2d1c7f29388b244401fd2ee43987 unlabeled-1.1.2 +4001 22548229d6fddce33cf57a3931fbb7272c4be766 alpha100 +4002 0477bc39c93592ad923391f783141dda81839431 alpha100 +4003 7f891f32864ca52a1d0c796beb7b302d902cc3f9 legacy-trunk +4003 8896e4ec09fc4a46848f438b041d208b25534e20 alpha100 +4004 b14c6b955161ca04ae093a86723d4403ca130cbf legacy-trunk +4006 8454579ab52f371dcf5546cb530e2dd6fd60ff5e legacy-trunk +4007 9cc858bd573de34f309fe16ea5c48e946b753725 legacy-trunk +4008 812d0811fcf3e062e45159b438cabaaf00308cd2 legacy-trunk +4009 a75dc8656cb0a2393dba4c252f31d312be4d132c legacy-trunk +4010 b6b50d94125fd42f102bc0d8fc0443c47596284d legacy-trunk +4011 87a2b04c4680bd121fc3e686ffa878f6b4fa316b alpha100 +4012 96d0dc4739eca24820753b14bdbeb081707abd2e legacy-trunk +4012 1cf6085697cd5a0a4e02b3f0924fa2568ded0128 alpha100 +4013 552b21e7c230a79d26bc315f9ef56098d04d7475 alpha100 +4014 c1fb2b6c474cea93ee54cc81f14e69a0bcc42712 alpha100 +4015 e41a653067062005a2c5ec506cade097d1b84446 alpha100 +4016 151321a18db4a78b887a7b6076a40e60d2e064bf legacy-trunk +4016 42486bf23647db430265a4e33281846ca72f608e alpha100 +4017 8fbe860a26e1995f1da1fa71d9895d1440d8050b legacy-trunk +4017 e46e0ee76dbc44818a667ec1243afe9553ad7ad3 alpha100 +4018 a9dd2e1ea5c9ea2ca47b4d0c80aceb6a1456ff0f legacy-trunk +4018 a19fa055ec48b24467a7a230dbcaa27bcc316a33 alpha100 +4019 4121afd76d734afec224fb2ba9eb8d166c3d1092 legacy-trunk +4020 5a6c2a238f03876e2a79e2ab329f25e27ba28935 alpha100 +4021 29c4255cd45cd5f2ebc6c11d6cf4f0c557af8854 alpha100 +4022 0202a72d994e3d38255f3a553a90ce1b1536eeff legacy-trunk +4022 4e1a2dbf93c532a2bffce3c5dfe57a78f6d6f22e alpha100 +4023 3e6b67ca9dbe4269f9590042372b7eafd8c36b77 legacy-trunk +4024 007adf01543c51769fc32d8a19de49461fcee199 legacy-trunk +4025 6ce82c1581b92f771db90c4f5285dac56edb9ccb alpha100 +4026 f2602288381a4257f8f62f98a036fde769f0edc7 legacy-trunk +4027 59039c0856c9396e3f1f3a47449d3169d73f75f4 legacy-trunk +4028 a3eb2525932942166e340e7c6d848734a8af5602 legacy-trunk +4029 1f4929a48e64a0047c38ed7891d12eab5921bb14 legacy-trunk +4030 9af8b3991cedf72ebbb96da7cb611448da1b8c7c legacy-trunk +4031 fcaf8a2baf3896e900378b860849daa014620bc0 alpha100 +4032 bca8290c1b31cd7d72705e3932756e2d28ee0551 alpha100 +4033 7a29bb3bddb465ae440a35d6f539269e3c804d44 legacy-trunk +4034 37cf87f561eca985aeaf2a0514dddd97e9a18810 legacy-trunk +4035 055962f96de7b5f0fa08d3c3ef1556ba0fe826ec alpha100 +4036 14b087fe53470c4e37e14000758ede5559907e82 legacy-trunk +4037 708654a5ddde0311d75817566cab17c6bdac3e47 legacy-trunk +4038 0d029dee91290f9a2f6e45a2adf7d5cb08fd3d85 legacy-trunk +4039 7a47fabb187c6c267cee77b452795632b61c729c legacy-trunk +4040 fa50d4bd553785a1c1abe72979368b40689258a8 legacy-trunk +4040 60b0158d948acc3a1905e0b1d7aee25659d8f738 alpha100 +4041 f8498b088aa1a0c50366dca5236cc55c1048cd11 legacy-trunk +4041 8a7e530dd44a5e640008a936eac3536ae472cb31 alpha100 +4042 623dd72491866441148d80bd051b918f4cd32ae2 legacy-trunk +4042 19f20751f8defbef146c77815459ecb3cb027757 alpha100 +4043 03e097ddeca2becb8229086f6f250ae6f4f1cd45 legacy-trunk +4044 6cf6b6691aaeb2817f0926fa2de13f8c4d72b2a4 alpha100 +4045 7ac4e49791f47e1bdad8ef4e468b392bc7624643 legacy-trunk +4046 9e2b1942a7420aa4067c195ca91d9a9b6667ac7b alpha100 +4047 1c71a27fd6933dc6de55871327a43ab2b048caa2 legacy-trunk +4048 51a06fdfff789d33e2a006fc168b961854e61404 legacy-trunk +4048 11ea161a01c2fd92b44a98b22026f2956fa6d109 alpha100 +4049 cf328a9ec5d44876cf024f11d7ac5659f9d39540 alpha100 +4050 19b00ef4cdd997da328e39e3d52d93491109613d alpha100 +4051 7e5f97bab1e6f8dec76d4f07417447eb579200d0 legacy-trunk +4051 cf24f3e7be6d7e65ea5a5c57fbf1fba8f8ad2fe0 alpha100 +4052 32c28adccd12b0690c195d3a8c238ba12470863f legacy-trunk +4053 3aac825a53b523df5f02ad0f38771d1a75c6d15b legacy-trunk +4054 cbee5e1e9be832590426998098310fe69ba137a9 legacy-trunk +4055 7603a3b2cbee99345d2f9e3e7cfabef93188d1ac alpha100 +4056 90ee71a3a13ebb44836caf16f698db92d218bd5d legacy-trunk +4057 a4c7eff259a59c8b4f5198a267847dada75b8a19 alpha100 +4058 4def934ff75b8062abfa8a0701dba6795f9756e4 legacy-trunk +4059 f02a46754f505c3ed30dafd7c4c15548fdb90da6 legacy-trunk +4060 a862d8f4507b8b4bd3c4dfa13d3f8b9176384fde legacy-trunk +4061 1b9ec37db2b9abf95ca1e8b8d418b5d0de64e02f alpha100 +4062 5096bb48ccfe130bfe1fe8c1ca004dcf865af94a legacy-trunk +4063 b5a660caa8e1bc457b541443bb1b1dda2eeecd72 alpha100 +4064 d90aaa09123bf588a79d09ffeff37072a9dd3d8b alpha100 +4065 e2823110c05157045444e1f38c32ed8ec5f2d912 alpha100 +4066 e6a213b7d0d2b9803cf4023f0e64fc0cd7251677 alpha100 +4067 72c9a4dc4847d79489776d56a2423d3ea0e53abb alpha100 +4068 4f449ab60567fbb643e2ad4535ccbdc9c980fba4 alpha100 +4069 ffd495bacbd436f00e8cbeb2bb0c1083ab83f043 legacy-trunk +4069 8e7d8d0d4e90a945158da56dac988df729bb5a87 alpha100 +4070 f7e1e2389375f232620aef8e4ad48e71c4c58b23 alpha100 +4071 01d26486b0ee6647c3f2d10a0dbbf412a36f82fc legacy-trunk +4072 14b03418c90fb38af20fed7f472689ee953c4ccb legacy-trunk +4073 a6e6fad1a01b32fdf44833e4f0f98b73d3724f1c legacy-trunk +4074 a09efb135de55246350ee4245ac181984b57e57c legacy-trunk +4075 d074b2fb60914dd7d5cb901b91f95fb92ef682d5 legacy-trunk +4076 73dd2a979857f17b36e91532b1672fe65dcb962e legacy-trunk +4077 b5d5bbceb00f6048634b98f07d869bddb4a93b50 legacy-trunk +4078 a9616f5654655378295e4a9b313e3ed94e84a856 legacy-trunk +4079 273451892327ce1f1b07f0dd4909d0d56ea68ddf legacy-trunk +4080 382b4f8a737a4cff1ab7b05fe93b8dd670546938 legacy-trunk +4081 953e74eac006298169c52ee72a29e7f4f45d56cf legacy-trunk +4082 ced3d1122f7cbab13e077132d68d4d011928853b legacy-trunk +4083 344dd28da9c56620f536ea1a38e872823c50db3f legacy-trunk +4084 a948b44ad4a1550b572bb758102fe5c0830fd046 legacy-trunk +4085 2fe54f62cdb54972c1a592cc63deae4e97598bfc legacy-trunk +4086 4c3062c7135fcd3d71d04e4861de82b227eff9b0 legacy-trunk +4087 6a0e5cd499c45eddd75ccb3bf8243c456d8cf0be alpha100 +4088 496c7e9f11d24820db3453814f6234add5f229c9 alpha100 +4089 ca023399e5c94bb5e7f92f9a5f04a442b03b2238 alpha100 +4090 52fa4dcd1b0e0a162b0fdc7b48b13e43bb5b264d alpha100 +4091 b6c35e1fadae6ff1271f5b5d875b0bb64bfe16bf alpha100 +4092 8f96802733077538f895e3975741dd9b180e6fc2 alpha100 +4093 9ae7f2fd89f1097dc78a66189aeb4bf0b413fb47 alpha100 +4094 4b50f1042e8dc090386d05471791882c3be1f660 alpha100 +4095 76371805d9f374f1973288129a243314cc428860 legacy-trunk +4095 03b05717b95224ad2a707a76205644d93370995b alpha100 +4096 1e3a553e479af08de3e7d9a8ea58d0738b592df3 alpha100 +4097 3b90a9fc1e039892853b65bccd84b8fea1924069 alpha100 +4098 1f06f71904c241f0a35ba7583477f8ce9e4c921a legacy-trunk +4099 508b73e0a7e4f1f15bf6ce44c7e76a769fbfd824 alpha100 +4100 3afafac3d7a16bebc29e74a14fcdb4be0a3b6dff alpha100 +4101 02d8c15882ff9ad50968a3be17c803fab18f1127 alpha100 +4102 5290428bad3715b73fa0d1200a394d72190b0763 legacy-trunk +4103 75bcb1fc65be59c1325769e2a2d27bf5146ffc58 alpha100 +4104 8cf640ef344007689e9d36441ae435eb7aa53e2c alpha100 +4105 1009ea49366cc98cf6faf955d6cd9ad03d89db6b alpha100 +4106 c2e6c9a7a95f8b46af96861a45fa244ca1c213ff alpha100 +4107 0a60460e99f02b4196e4a7bdc3b2988ca7804820 legacy-trunk +4108 dc8e1d72d78dcce5ef501b43f5d52f27c6965229 legacy-trunk +4108 caeaee390e43fe573a93d35c2bce8342733a0cd3 alpha100 +4109 1b17aaf251054976bb2c3aec7c4d5941401bb4bd alpha100 +4110 2bcddc905da0b9f8cb527e6fcfb5fe8dc43c7244 legacy-trunk +4111 080811b1d023320fab3a895ff6cac94d6b13bac8 legacy-trunk +4112 1cd4fd16623de234e6c21f887d393734c539229c alpha100 +4113 4cbf536a6f1803858e4b57019f6bad76867fca66 legacy-trunk +4114 c54c07abcfcf31ffbd28e35080dbc50422239c90 alpha100 +4115 6be91c44caffd5e2c3f42913f8ddb23af985b532 legacy-trunk +4115 6e4a89ee11634b5efc0db0fe10753bd839e13146 alpha100 +4116 23fd50d77b5a05036dabddf4bd847a756c823e59 legacy-trunk +4117 b5a57af40508c8e4da5eaaa6e588a50ed37591d4 legacy-trunk +4118 bb61816e1dab0e4681213a721ec4dae39c3990fe legacy-trunk +4119 94621a468b60d41593c12aa803019f6f36d83c3f legacy-trunk +4120 93e036786b17a78d0d0ef58150196b5a8d94ebe5 legacy-trunk +4121 d88af58e95cd0844eb9951a7c6bb42d9057368af legacy-trunk +4122 e2665d9d4e46d2549d59be08755e0d715dd17c75 legacy-trunk +4123 cf29c09f07b61f79ea238b17d12b062456d65360 legacy-trunk +4124 03d351b6f738e4c5b8a2dfb18dbaf837e8908aea legacy-trunk +4125 c50127809179dded7c7a013892dd4aa3daf0e02d legacy-trunk +4126 b949224a4bd561a8d850b13eb48f4e9b89f15164 legacy-trunk +4127 902fff55db381f0934d9ac35e5f22b6b7b1fd2c9 alpha100 +4128 517baae1b663c261b6a07dff59f1b06108e58693 alpha100 +4129 468b8784da48b74a07ea80bb6015c89cc65ef4c9 alpha100 +4130 bfcff8af9751687fe91c1f52baa99317de87bd86 alpha100 +4131 f8540a8cf5d794645b4b58be5b405878d421cc35 alpha100 +4132 a2403fe2c8858055f651a791900828048a1f7940 alpha100 +4133 2b07d925c09d41eedd1bf7f284cbd8afa83fcfaa alpha100 +4134 df2204e47b65f75a05ee21d2e582e1acab2363b5 alpha100 +4135 77c949301db374904bf65b75e1558e8bbf10beb2 alpha100 +4136 787475610b02e31dc5570a132d0a77a3cc6137b7 legacy-trunk +4136 b7072ec7d65237ace471ad3fb3821114c5c47aec alpha100 +4137 7b1c49a7d375ea095f5b6870aca214d2b1620937 alpha100 +4138 da2afc0298a70fce7d3c1968aa406229c2e645b5 alpha100 +4139 9da494238773c916e25a6e315fd6fbd9ef1f4a22 alpha100 +4140 fb5bb9e7cd7a819c1d4e2aa8534dd8a2d6853469 legacy-trunk +4140 ebe8681cf5feaf1a4dd980074e0b40206c089190 alpha100 +4141 879e8d04e589677fc64095d00732d6ee178478dc alpha100 +4142 eb11a098b7ff2ccde839ea76010a1c7356e5d737 alpha100 +4143 9e7d206a4922166a219ab59d4239b52d63199e34 alpha100 +4144 93df83022be878c11076a86088b8c20e017534ee legacy-trunk +4145 77bbe58afeab52532baa170ef59c4368936f9fa6 alpha100 +4146 015af1c47726427fefba6ac04cd6e4b578e5d642 legacy-trunk +4147 1901e08086f9fd64e70f1e12b927640cb766debd alpha100 +4148 f1b040bca3e12ead4be59cec48058e9cb754d5e5 legacy-trunk +4149 0fb3aa5ca4c02ece101c3bd0ced584de4bbe99bf legacy-trunk +4150 ba957aa42241a9ce90b587757799047b716e56d1 legacy-trunk +4151 222802f0d97829545f410d7501fae6e43bff4ce5 legacy-trunk +4152 4bba3c907ffae475ca0b2351db35de31d90f93c5 legacy-trunk +4153 192d869beb9736a18176907436a054b90f498f9b legacy-trunk +4154 6f81b13fd6ac08d42e6188efbb9b364fafd54ffa legacy-trunk +4155 de2dc1bc4bae1cc3c8c9e938370df7c477334e61 legacy-trunk +4156 375b8b863126faedfe8c609b09cb1e74c1aa4e11 legacy-trunk +4157 5656f887fff37efd939e87f6a3ab5d98873e6115 legacy-trunk +4158 366a0292b6142e6450dc35eba6ce7c5b2a703911 legacy-trunk +4159 2ef9d50ab654ba5003be488b9e8295b0831c30a3 legacy-trunk +4160 bb566d28caa0d3afe91be668e159f1cb3d968bac legacy-trunk +4161 5840e553eb8d89fc759de3260bd1bb9d51ff9f4d alpha100 +4162 db0eaef42cb94e9219ae896a78743ab8956b1a9d legacy-trunk +4163 9928d333821de0bbb8b8a54c11a11dd56f347ff6 legacy-trunk +4164 504bfa59b954ef97ec1f46cb821bcc4ba1529db7 legacy-trunk +4165 ba9b755e17fe0b2dd20627a070bacad29a90761d legacy-trunk +4166 0d6133abb6e5fcbf883f8a0bac169184d72a8678 legacy-trunk +4167 a1601fc2b3e4414ba328a0be333757dd5c2a26aa legacy-trunk +4168 2f9ba2ebcb1073bfe17cb7e740e4ea6a027e8330 legacy-trunk +4169 4210b0def3d7815053a71ba21cca7767bad96669 legacy-trunk +4170 1dd31153709dd5c6278f6ebbabcf42f10f06435e legacy-trunk +4171 470a51545d6c4dcecc8a125f7efafe30db94c7ab legacy-trunk +4172 e5a8f647921691d9e2871140634fb00601f143b5 legacy-trunk +4173 e16769cd7a901ed743fd32f8277950bfe1d603d4 legacy-trunk +4174 cdf44c14c270890cb0d7540df9629a54dce65782 legacy-trunk +4175 e80c7139f533e4e39ab14efa380d5cfa74fdbc17 legacy-trunk +4176 6b0f0ef2c132c7597196f565ec444d3f88c61b42 legacy-trunk +4177 bd1d0ba40f90ce426b5156bb7ad3d8a696e4e212 legacy-trunk +4178 7f20f4b9335fa07865343c1bc2c827bbbdf928a0 legacy-trunk +4179 e8651d0e4a3c718635e440110cd123e6c8dbd505 legacy-trunk +4180 581fe6bfc9024a2ea054774cd1a09b657bca6d94 legacy-trunk +4181 afc574064e62cae829486d778f61b36cfaab7729 legacy-trunk +4182 17500cf9538f1a9feaf6872ed620e496ad8ea4e3 legacy-trunk +4183 254326f2415f46bd02a2579a1ea7d50848471fd6 legacy-trunk +4184 86ed53844b07cf647b2d74e4f233adfcf1beb1b0 legacy-trunk +4184 907d9e7bf4b589fc2f02a9b900c58f41ce554d85 alpha100 +4185 9600d3d5cce7bdd9430927747de6d93b8dcc76c5 alpha100 +4186 ee2f88a4f9e2bce639fbdc25bd8dc8ad9d89f5f0 legacy-trunk +4186 285fe8979979957655e76dc02bdb00408b8ba64e alpha100 +4187 458d8f3ef3075827e1ffe4be4285b43aa9209e07 legacy-trunk +4188 29c78516ee3333c095be8fbde2b2b99ed57aeb6f alpha100 +4189 7831ffdb787b83f2d06fe17a9b3c6c59132393d1 legacy-trunk +4189 21d7f932819b4da8ee7dac9becbddbedcc400d67 alpha100 +4190 e95b0701c8b54f24df8c90b830743575efd7bf62 legacy-trunk +4191 96009dae9d62626aa4d237fe5dd45fe81ed7b134 legacy-trunk +4192 bede38c4a9f5ecd4210738e9dd95679c28fa3714 legacy-trunk +4193 bc11c1ff6cac031f927986b34b0a4b8d92f59b33 legacy-trunk +4194 595264c2f06d4a60966162af5f41141c93f72b8e alpha100 +4195 6c0e11b94009a25239938f523a72ecde7636ad02 legacy-trunk +4196 d5b67d2ec7ee03100a6683740fdd0f7ff712261e legacy-trunk +4197 372903b63711a9bdd8afc37734eec458329d358e alpha100 +4198 1940892d2fe3a8cf3b74cc12d670398c3e480363 legacy-trunk +4199 e3a9d81df1853c8b3757626b17a85aa83acb4cf6 alpha100 +4200 3f7ddb8bb2f63b73ab071fcb7e1f8a622c652063 legacy-trunk +4200 e7b5fe76e5eacae4c6628a8e3e29fe8cd4c814eb alpha100 +4201 8286a662502bb6b5b0ae2b1b2a65ba1c8de7badc legacy-trunk +4202 bceb720ee362b0947e0a8c125a3a71f8c46d76bc legacy-trunk +4203 0b645726957e2329b9c83af08da714bedbad6ac0 legacy-trunk +4203 4639c3ad834b7cc081d80d8ffdffef0ee53f7baf alpha100 +4204 ec25aad43724f055a3f826e39df7255da914cdfa legacy-trunk +4205 cbb62ee8854a643ec9669fe3c657eadc61e6a069 legacy-trunk +4206 b5468d886cb54a2034bd065646e4bd8de507d4e5 legacy-trunk +4207 bbe9ea558261ee6debda3f80219443efc303cdfa legacy-trunk +4208 78a365406c4cebf85ddc7b001c6ca344b797aae1 legacy-trunk +4209 f533791acc7797ef33a6fafffd3c0eb28e359df8 legacy-trunk +4210 697ee89addfe1e655c72daaa610eebe4313c1a06 legacy-trunk +4211 b99578b878ce6c4c6fbe110ae404ad411f51c391 legacy-trunk +4212 4d421f9e8373cc0a3104e1beb7d66b9f2d198503 legacy-trunk +4213 48e6b319f3e480d99bf4035eba876efe07f9f42d legacy-trunk +4214 7a2e76ecb9ef91df73b0b3d213937ef617660ffb legacy-trunk +4215 9bc3dbf0871d26e051af256a64e45f3ea9752038 legacy-trunk +4216 d3535d0626b46802b7485bde8fe6331aeab09b5f legacy-trunk +4217 942c4d094a0c419c55a43f49bf3ba52dce51da8f legacy-trunk +4218 a04689f9983e7ad7b16fe62fedebd585127765f8 legacy-trunk +4219 6e913046028867a0eeb49d62774abcc873dc98a8 legacy-trunk +4220 907605320a5fd7a4a52b9758e97ff708978497d9 legacy-trunk +4221 68812b763e0e2bad2b794c7336f176d273db418d legacy-trunk +4222 6cb759c6d1790d06e2c1da83c890416cedd9b38c legacy-trunk +4223 b0dca2972b2b18d93e6ad8df0ce5763c1fa85715 legacy-trunk +4224 51c2e5a9f39cd191f2c4db0feec2648b0ee72635 legacy-trunk +4225 7b3a767924a1a9e32b55071f15976b2d05698df3 legacy-trunk +4226 df7aa54adcd29bc01b4591eb423e41ab9cbc70b1 legacy-trunk +4227 9d362e5e4e78990faad8b59174f6bd78c0518c8c legacy-trunk +4228 17c80a9529143936e93c3398311486e2936513ab legacy-trunk +4229 5257af80e161087c69570ec2357c0bbd6348e566 legacy-trunk +4230 7e001c4810bbc762b0f05a779b967714dadd0cf9 legacy-trunk +4231 ffdfaf1b24d540ccd2969f35965c45638d345122 legacy-trunk +4232 98a20a40f613b13dfa7a54ae40c309f5d23f3de6 legacy-trunk +4233 76cc858e3391580d155a5917da3930e2c3136ce3 legacy-trunk +4234 92df30df5d779e822c00cdac2b45674e907533a5 legacy-trunk +4235 20897816a4b6c8dd6418a64eb9ea54a0ab0d862d legacy-trunk +4236 1c28f1934a11eea4b6828d5d3e8ea96752e1664a legacy-trunk +4237 a3f199e8bac6f003214b00d60cdcbb0d21ea81a7 legacy-trunk +4238 dd167bfd7a086a9ee661afab0805a43f42ec87c2 legacy-trunk +4239 7707b9708f6cc7c3f9ebd7d4692ba06a30364b19 legacy-trunk +4240 cb84dd51c2aa310e5bae71d9db4e741ca0ee5bff legacy-trunk +4241 56a986e49f567cd6848784bc5b6450f00eee2c22 legacy-trunk +4242 43ae7fcd78352a2f7ce295aada74deed18517538 legacy-trunk +4243 36214c861144dd62a20ad4d3b27b9c8293f6040f legacy-trunk +4244 535aca6ff7e9134718a02b4f4afb22bbe9763b15 legacy-trunk +4245 a584b4bbbc5934c1ae41ed528ae792c104df52a5 legacy-trunk +4246 668504843d0f4189c845382d0bd4bcdc57832b4b legacy-trunk +4247 9b530bb54642ba186bb574b5896012b2009374de legacy-trunk +4248 fa8bbd09f2e6b6c6e9747197a2838ce877c446a1 legacy-trunk +4249 b711c901023293269b1de16781fbbe05e789a00d legacy-trunk +4250 b167e335049120ec7b0fc5e68744c5e76f60a84a legacy-trunk +4251 f07c4ff0f794686720f0e19be7355f4fb43e891e legacy-trunk +4252 60660341ee1071b40fef935a3c16610e56e82ed9 legacy-trunk +4253 ad3f1d362c1406cfc022a40a70ea9807eb3a60ca legacy-trunk +4254 148ee2aa63e6dec591ac74520faec1d1b12ce7d9 legacy-trunk +4255 b840296b9e058d274a890044d8cad53cdee07255 legacy-trunk +4256 fafa5dc8100f849bfe71e4f06820f8b354992f04 legacy-trunk +4257 b408d6a638195239e627e7a05818edb486d7f7da legacy-trunk +4258 5b92a083934dbfb39477f74c064c560cc517e014 legacy-trunk +4259 f2ce3191fc9de38b461bf5bb44e93c8f2a2a6ae5 legacy-trunk +4260 782509813d572b86f90cc4cd27cba5c0793ec4eb legacy-trunk +4261 6cfd43d5c0746b0ec80e34e4da59f28e770c71ac legacy-trunk +4262 d8d941faf5110b2316d237f9381a24acffc3d8c8 legacy-trunk +4263 d892ac4b4fb99e1491a270522410f0c56be9b775 legacy-trunk +4264 ea5b13d11a1305bb404ed0ca8a28c1df82ccecc0 legacy-trunk +4265 2d5b36a438ab9cf3858b7d70bd5962249efca381 legacy-trunk +4266 c47d526a94d92e38e666e8cf3e21326715c04180 legacy-trunk +4267 0406a208ca5d3c137b95d6dbba6ec3eccf42af48 legacy-trunk +4268 6353fe25cdce4be53c9578efc06cdaf5a52cf87e legacy-trunk +4269 3b4703173caf8664fe14f006da2e9e52e944da98 legacy-trunk +4270 20e1d296fdcc86bceb82d6387f164094430813b6 legacy-trunk +4271 a710fb001a3fb4513c21fb134c8804b764612495 legacy-trunk +4272 a26b31e159bec41d78b96ff3f5ba7f024f390207 legacy-trunk +4273 ce5447db8f537e2a04bba350ef49e3e454450f5a legacy-trunk +4274 40594f80ab3c2f289e209f6954f90e4b1bee7ee1 legacy-trunk +4275 76d0f2b3b9ee71179e0acd521490411fbae2e961 legacy-trunk +4276 a6ef2c97c7761ed21270ba7ac5dee3aef63e1139 legacy-trunk +4277 b11a0668b181ccbb456db784822b98bd834c9271 legacy-trunk +4278 7931de01e6937de5a4d331d43555b0f2b3e627a0 legacy-trunk +4279 ce897e752ca4ac551531a2022d29f714038d49d9 legacy-trunk +4280 f5f3ddfec3c7b15cc9dccbaf11a1c517e976eb13 legacy-trunk +4281 b464e1d0b2fb434c8f6b88b24258c236ffaa7562 legacy-trunk +4282 c1b0d7eed9fdfac6c0b4d09757d2582d71b1b8f4 legacy-trunk +4283 c4536d8af7b5d4e805f9f5dfad0690861ed208c1 legacy-trunk +4284 216b755515e65d01ed2417cea9e70ac4a68c9ddb legacy-trunk +4285 79e420805c67227b38940db59401c42185e0a5c8 legacy-trunk +4286 39a4c15acb32dbe210ce8ba1f03fcb58a51fb971 legacy-trunk +4287 f8baab5c016528505d817a6a97dfb7af9484e6e8 legacy-trunk +4288 d799889c01e35b93e884d972c6ea7261bf741466 legacy-trunk +4289 1203f0629527531c80b5974196686dfaa80eb8f2 legacy-trunk +4290 87364d9e3444e95f47a407a825406562719d38d6 legacy-trunk +4291 5f6acd1ab5c503fd3fe908b107545cc8c2c8b912 legacy-trunk +4292 1f4a86dbcd7906417e9a803413980e8f4812ef15 legacy-trunk +4293 bfd11620a2d81e8304f48f65522bb7294890104e legacy-trunk +4294 23f03ef00361bc7717795b31ddc93150a5442b55 legacy-trunk +4295 65cc727f1436c079727ffdd70916cb457b5da8a8 legacy-trunk +4296 8294bbd945350d41d4eae36e5125863db3436fb6 legacy-trunk +4297 d1e6c9a64a563841f60177ac907739f953f15630 legacy-trunk +4298 095c1cc7f2bbb22ff116b0337ac3bd2d2fe37cd6 legacy-trunk +4299 5243fb187d36c60b012133a1a5c660d7a35a1264 legacy-trunk +4300 0d318475f9e37198b5a320c8e10e69a75223b14c legacy-trunk +4301 b724599401ff73fbb8d595b9b3d63093634b4994 legacy-trunk +4302 6e23af645b40bdd8e31ea0cc4c72d30ef778f315 legacy-trunk +4303 1fc4db79146ae5ef577c06fba5cdf7c58d2ee47e legacy-trunk +4304 145391df26579e1c6fc4410808ea6fb914945e57 legacy-trunk +4305 09de723b259682665c466022c02202c1fc1fe1af legacy-trunk +4306 9d4add42ee22ff42893eaf37702808a275157f71 legacy-trunk +4307 2786acba6cec1cfb9a59711f4ce613d02536cca9 legacy-trunk +4308 9dbdb83d4178f392758ec8af8d43bc13c244f341 legacy-trunk +4309 1822465a35b80cfce428382e757abb4b27742463 legacy-trunk +4310 e15f9761cb035bcb61d624fceaa5319da50ef83f legacy-trunk +4311 0b08196e9ff616ec37463df33622137778d03b22 legacy-trunk +4312 54fdc9a95f489093ff5ee30889b96ef6736e6872 legacy-trunk +4313 78898b04a65bef1e621fff951753f573049574d7 legacy-trunk +4314 d405e3e8ffd349ae763eb7b8cfdcf4fb4ad25d0f legacy-trunk +4315 ef0946560620acb5879892ffa61d4b5133d28d88 legacy-trunk +4316 855cefbb271863129ad1ed99a044fc8f42a38f72 legacy-trunk +4317 aaf1e05e6842d8ed835598e5c7b59c82942d69a7 legacy-trunk +4318 20e60714788c5da7a77992f7d259e3b8e3398955 legacy-trunk +4319 9c5d333d3300e93240e15fe23a502686da67c048 legacy-trunk +4320 758c1374f303482fcfc6f3fdb3b341007ea27de0 legacy-trunk +4321 63ad28939781aa8d7579e086acc2d576566ac849 legacy-trunk +4322 2cede61e9b1ba4eb8ba489fb5401d32c30256592 legacy-trunk +4323 61738ed6cc10c42952ba92fe12174c3a63d4bdfb legacy-trunk +4324 10a12473ee931cad24c73d5ff727f144e1df5690 legacy-trunk +4325 32e6c3a671d00f7f0b16ad9e113d41713df036f0 legacy-trunk +4326 9081bb7acd528ae934c582c2980163c71ecb1709 legacy-trunk +4327 074aa263826b4669d0e244ea205d423e12bae7e9 legacy-trunk +4328 8c9cc054c5edce6deae8c41f7d732bd96121f7dd legacy-trunk +4329 cc5bf6be81a5d26f83d2968abd96a440b28fa00b legacy-trunk +4330 32d005faf5fcd0be740a35943a2935f26004652e legacy-trunk +4331 27d4f1f9346c574776747282686f23f811e36c15 legacy-trunk +4332 91bfb2771554e817ae093e7d1c85e29f93b17e6d legacy-trunk +4333 05fb9dec2c9cf1c4f8e6f45e01e2bd5bce678d51 legacy-trunk +4334 3a70e9c0d9f511a57ae44ef04e7b484c5594b68f legacy-trunk +4335 f84b64df09c3e62955ae9e6da17c17f84123fa4c legacy-trunk +4336 4214a7583f2ba88b80e4ceb202b12f2a3cbb4415 legacy-trunk +4337 afbf1186c8974a0debf6bf7b04cce2dc5591174f legacy-trunk +4338 d3de2cad2c684c16035a49870d380dc82fd9089c legacy-trunk +4339 ac6a9f90f6fd48d7c25408da0660add630583865 legacy-trunk +4340 e7c6a18381d9e7a305c84880c1fc4712aca72289 legacy-trunk +4341 be956b1efb97ccaa75e1aa97bc5d79c1e1eddb4b legacy-trunk +4342 4e1ceaee296327defce4ab45092832ce70bb7e9d legacy-trunk +4343 b7de6785c8ac7d9724202246a469c7763c2373ad legacy-trunk +4344 24ae7af40a0960decde16783f63418d2cdfc7aa2 legacy-trunk +4345 eec0dc5aba6011baba508fcb56313d7860225086 legacy-trunk +4346 aba51621244e7b012398aaa3766d7bc16caa7774 legacy-trunk +4347 2c8b4df22bc2f045c11d569e9fd29a364397e0b6 legacy-trunk +4348 c2350c87be3fcc79e9751bd71915d5d190d97b69 legacy-trunk +4349 654aa964dc263f9dbbe0584653d29ee3e38e564a legacy-trunk +4350 3fbda87688552862cbb69a2b5cfe186a38be48f2 legacy-trunk +4351 20f17b5accbf8200b872a90cc023505615eb3a9f legacy-trunk +4352 a6776a788f749ae1d99ba52421f55c5b6e085445 legacy-trunk +4353 5baf1135a13d3f5a632b7c702c03f3c05be44c65 legacy-trunk +4354 259e69aa0f1598873001b0a90d5240b5e81ded98 legacy-trunk +4355 53d17c04b42fb0f3449b4b8562cdbf855674ca30 legacy-trunk +4357 e450bd43631a984286eb5403de691ebedd42a7af legacy-trunk +4358 6109069d5612f0388e40208dd882ed5457cf8d3b legacy-trunk +4359 61c3c1a2fdb443f2ae1e0e67762f1aef7b185293 legacy-trunk +4360 9d9812f2798b73a650fa1cc121142f51dafcd46d legacy-trunk +4361 bd94068f0fd037540ac504fe8174232ca8f23c4d legacy-trunk +4362 0437738279a8d680793fddf9d5abad1ad72223cf legacy-trunk +4363 0c232194a64f10c71c617a72c69a4c8dedac1192 legacy-trunk +4364 35947f60528ed0157e21514f554038be26dd0e20 legacy-trunk +4365 a7f269610ec2d79f7fd49d548f46238872d96baf legacy-trunk +4366 ada19aaaf8c0c8e5071b57a4ba695df4308b6fc8 legacy-trunk +4367 8623aa3915db702b102cc772cb3366eac2970340 legacy-trunk +4368 8934121012969f03d0e8c7e2b0432eddd85a91ee legacy-trunk +4369 80818c106e3e6f4877a84e426c061c7a7fbb51b3 legacy-trunk +4370 e125f5021e673d145e3ecd8c6dec98d3f6c87af8 legacy-trunk +4371 014a1fb9c6463429ac58aa47a638d162cff6bb6a legacy-trunk +4372 f39d437287724e562796ab651150ff81d230f4c6 legacy-trunk +4373 e0ae6f95bcfb419ce27389f9ff293ea2f248aa3b legacy-trunk +4374 5f33ca5214521259e35feb03af956ae0fea7d90a legacy-trunk +4375 275951b08608c9cc4d7beda47459306cefeb6400 legacy-trunk +4376 3850713f6aeae6908d64fcb3815629660d1b1ad1 legacy-trunk +4377 c1088d0bb5623066ce511e0870a20e17f7554821 legacy-trunk +4378 58b0467950d822368d0ebb05ac4053cb22ca064d legacy-trunk +4379 a1aba4d45893b0ada9625331663754a8c0b280d0 legacy-trunk +4380 ea9e8533d6c32a93f0e4a318191edc432847943c legacy-trunk +4381 e56afd03ca7fc94606d2daeb404e181c4b6a993d legacy-trunk +4382 a8b7ee0e572da7de000e34e38c7ed4d48f30cfba legacy-trunk +4383 f07d66c162cbffb603acc2f838999c913ff3036f legacy-trunk +4384 faca7e328ba749c13ef56c0736141633f560c5d9 legacy-trunk +4385 e3ff9e2a3eb7af5f16f0fe8d396a7a3c6790befd legacy-trunk +4386 5bcaaed902f550daf2eb98ab60557f284176a8fc legacy-trunk +4387 234817652db06c2d4f159aa175f6a5eb5675bb1a legacy-trunk +4388 f3ae7c17ac087d9a00fb01c087c9e8ff928a1b6d legacy-trunk +4389 d9a3e30b2e473c8ccab6005b6b3332777a880743 legacy-trunk +4390 45c73018dd01d71cf383a3a24d5d844eae596628 legacy-trunk +4391 320baeab787ac9d7054cf09d0d1e0f283b3c7f67 legacy-trunk +4392 2b581ce43f4a37339829ef6eba54acfca3577220 legacy-trunk +4393 93de5775966e559ef6c2cbb7766c304079ca7271 legacy-trunk +4394 8b897b7f3ade8fc4d96543cbfc597030fbd21b27 legacy-trunk +4395 0a9152f871116023822af0d6e7eefe678bd9ff14 legacy-trunk +4396 85f1d2bec632ca389ad08c41411b90e0cb3e1f30 legacy-trunk +4397 31873bd6f4a87168e468b9a5e5e459cbb0a48df0 legacy-trunk +4398 8e8fddcbdfd2b25e4e13761a58a64b8390e1dd40 legacy-trunk +4399 4be6ef1c2c1df5e1d834f5adfe16b869281a9a77 legacy-trunk +4400 bbf82eb4a6d9d33f010800e1c734bb5d4139edd6 legacy-trunk +4401 ba09d90f42bb263174a6d0a53e3104d46fef3e3e legacy-trunk +4402 9bcac8da0262445c5ac08595a8c43ac41b03eab0 legacy-trunk +4403 315d9c8281774d1314e09f9d1b32fa5f3ae8af42 legacy-trunk +4404 f6b4e7acc7a374fa30c599851b3384a96cc64549 legacy-trunk +4405 e157c81d03589d694976e14f678f366210798def legacy-trunk +4406 b2c56e04cb82905e46e583e5678ae77e97208dd9 legacy-trunk +4407 4c571d8c3ce13bff7fe501860caaf28f9f20d681 legacy-trunk +4408 44e9415245fb09cef5f2a1fbdfa1a5c52f35021a legacy-trunk +4409 883a22817472aed05836a05b4b09b64c4cff983f legacy-trunk +4410 761051aa434db1f09db854ce7f20bb2d1a5eaf79 legacy-trunk +4411 38dcb090f48b063857f8930eb8f174f2f6e9572f legacy-trunk +4412 545e235831b7bb49fbcd79ad6abf6c5cc18f87b7 legacy-trunk +4413 7100acb0d363d7eb78807cf792bd9bd8adaa4207 legacy-trunk +4414 427c619ca5d07319b681a7102ccc7f71bbf986ee legacy-trunk +4415 058a46d8faf7658ea1a29e567a9122ec35c88a80 legacy-trunk +4416 641f6bbf807b9cc9792e73b4e09fa50cf8722dac legacy-trunk +4417 a10d31ff3527da7d32f88b1b06f268673f3be254 legacy-trunk +4418 78bf675df5e5dffa964dec008d6530362d91aea0 legacy-trunk +4419 3ba17305f047f19024d3f999d4d34fbc1f77c843 legacy-trunk +4420 dd7be8128410714b1946e3996113b659c13d0775 legacy-trunk +4421 dc1dbf6b5211005bdbcab98f71cc56cbf9332559 legacy-trunk +4422 4fb0a0807b0567402a26b158abcbf4559078a5d9 legacy-trunk +4423 3de5a75494dfca2a58485d161e4b7b8bb4bffe0b legacy-trunk +4424 84637cfdbc0742a97595e44d669247dc4f903b15 legacy-trunk +4425 87a620d8476633db8b35b19d9e4d34d8bf3f81d4 legacy-trunk +4426 4454421784d84ac94d39d9effc6254dff052ba81 legacy-trunk +4427 f22cb5fee9c8b7d8265b379b8f351f301d6f208c legacy-trunk +4428 f95c193bfe6534fa1f3cf8208656c01cc1a5d53d legacy-trunk +4429 dcfe7fd1acbc5644fdde7217f5202441a9217724 legacy-trunk +4430 e23639879cd05b96a5f273ae0787d163dd2fbcf4 legacy-trunk +4431 ad25c52376b45b809fbd2a6c048d3db60120e2e3 legacy-trunk +4432 42f95ea75867347e8240169ed9d9026bf6270134 legacy-trunk +4432 832615ec07646e310c85316b8ba6bc9b17ad3547 legacy-trunk +4434 2347b1fe812dd5ce653c101a07b1207cba7ead14 legacy-trunk +4435 4e631032eacf2b9c6f976b658c841b0396f0f33e legacy-trunk +4436 33515485ead0d6de33f282323a8b1233d63feaa0 legacy-trunk +4437 80bd7af73201907d25711f1f6828a0ec6d1bd36b legacy-trunk +4438 40611cacd5bd7a26ac1f01480b4c900985c2a0c2 legacy-trunk +4439 15a1eb113a4308356860c19edf882a96632914c0 legacy-trunk +4440 58eef51e30849c6a7834ed9f68d235c4395dcad0 legacy-trunk +4441 558d9f95a6020ad633f6fa8edc7193f2a61efb4f legacy-trunk +4442 dc6eaa1a8fddfed5e736b0197e757de4402518db legacy-trunk +4443 77d1cabf971cccca208267a51b384d849351108f legacy-trunk +4444 4e6056d980e1a1c073309721bd1911cbcd85f953 legacy-trunk +4445 744265374450801f0f1fae029d809a886c106b31 legacy-trunk +4446 f49527ecdb3ad5cd6a97b79efe035c86400c9043 legacy-trunk +4447 af26d4d5c1d43a2bf364c492e55e634386268e35 legacy-trunk +4448 fb198e1316b9bdc2c8978f63ee65bebbb9ff2491 legacy-trunk +4449 1dab99b86fa8c3f6a7c44004d264ef1e36137ad5 legacy-trunk +4450 f900c09995dfc42f256686c2ebf810c3f930134a legacy-trunk +4451 63f875849bd8319144129a108c9d764bda7017b3 legacy-trunk +4452 cf4d8862f19bf45740f9dfc01d5dff3fddf70cc9 legacy-trunk +4453 c5a514f8f3e3dac5ac7c1accb5f1ed9171db1a22 legacy-trunk +4454 d5f4d013dcc1443e3ccb4409e78fd95b36d91adf legacy-trunk +4455 f05b5cd79fbedb73a492ecb96c9b1a04b682cc47 legacy-trunk +4456 e8952b8dfeffcdacf445183f9ead09eac773fc47 legacy-trunk +4457 a70883803338a0057184e948cf9f521d54faddef legacy-trunk +4458 7f8719a3666203b7437db6dd74bb15879360b453 legacy-trunk +4459 ed5d0ad5ea2f1fde836d44430413fa9511aa6839 legacy-trunk +4460 3aa9184cff8b6c9bea07a9a60803a1329e35598f legacy-trunk +4461 7c53e61bc4ba578e04a681881b51b832d0080f48 legacy-trunk +4462 811c4e4622aabf56bca287c2417f6553f983ea55 legacy-trunk +4463 392db18811908c7ac72185a18a6911a145121e21 legacy-trunk +4464 f65ec3dcc5631fd55ba8bdca31e8cf5bf0cffb6a legacy-trunk +4465 f27800965ff7cedb07d6dba92a9ead4d625b2df4 legacy-trunk +4466 0bae6ab9c9e0e765e8890248426e29c6eef41de5 legacy-trunk +4467 dc9b6316b9b354f21f0a33c28884ceecaa4ed776 legacy-trunk +4468 69d48cbdc2d9a3937427666b1467b62d7927acac legacy-trunk +4469 ec05d9021bccd82301538c00f62524481aafc0d1 legacy-trunk +4469 9895475d18c7b5f32adaf78f71886ae041e4d10c legacy-trunk +4471 a4a85450ebafe324cd34fef275bdd8640a96b6f0 legacy-trunk +4472 5a0775ce7b311eb96a760de2a8f7be9c0bc018d0 legacy-trunk +4473 9e3469c0ed75cc24a15df3b6dcd7a58e6ece52a8 legacy-trunk +4474 7bda0f2c170cdea2966e57dd9ddec30179d4ff58 legacy-trunk +4475 ee12edfc209599ba1c36cb4ffd9a5fee15b41d09 legacy-trunk +4476 eee3d715f0cfbf1ea2f4c4297f72bbd3737ccb0c legacy-trunk +4477 3d431a521132f23a08bd6dc3542215eb021f973e legacy-trunk +4478 72b2ab56e40352e3edb672ed41c5ad6003047dfb legacy-trunk +4479 fa7bc528314bc461daa42955cdd6a38591c9a3d3 legacy-trunk +4480 97d614b24c08cb546361ce1fc75251e8f828b1e7 legacy-trunk +4481 5c74c3aeda74af6ac72320280bb9ebf3a93fb3e5 legacy-trunk +4482 d4a06e8056b87f9a3163b6122dc45351569490a5 legacy-trunk +4483 2a3c8bebf1568af289592750a69fbb67e924e6ab legacy-trunk +4484 671cf1f8b0c33bb718390ef383ec6756cd210af5 legacy-trunk +4485 1739f00ffc8631e30a67f8a653691c8ba33eec05 legacy-trunk +4486 609bfb8ae7f54aee757031816914373a233a5bcc legacy-trunk +4487 e43a1942e58806a124f7041e78be01cbb1b72b3f legacy-trunk +4488 f236adc28e7770922e0c671d0bffac22ce970578 legacy-trunk +4489 ce69742f2e77795d1742edaba7582a052e958260 legacy-trunk +4490 83fcb9db4ca8ec4e9f74b48e2740e33bdda71856 legacy-trunk +4491 370f8cbd7c323e885a33024ea7f662553a1cc886 legacy-trunk +4492 5983d2db590457ab06db6abd6f74485eefbd838f legacy-trunk +4493 0701769090f49bf1a314b3d5c50eba9033383da5 legacy-trunk +4494 3d822e32c32970440e577974ad325d60c6c69d81 legacy-trunk +4495 e28e10e5deb2c3132510f2e6d63eebf27fe223bc legacy-trunk +4496 ea696f2487fc86285b8c3e111e11e66d68807bda legacy-trunk +4497 4ebee904924e6aa778e9e410a8bc2497208f996a legacy-trunk +4498 281e40652e234538455007280d47c26997de68a2 legacy-trunk +4499 62bbbfe6bbf68286886843a76e373ce2b6fc2828 legacy-trunk +4500 1ce3dbeeb8909380e3b1b78c8e29198334fb8332 legacy-trunk +4501 f18c1915c722d175198a36b479c96c3d39db4a26 legacy-trunk +4502 c85abcc752b1846430690fcf7ca1ecc994928b2c legacy-trunk +4503 07cf3b3baf16fc3370ac958eb6cc99272551cdfb legacy-trunk +4504 19363f8570a2fcffd2da260a45d4a207584082be legacy-trunk +4505 23dfca8aa73b04056de750df84bd3d37cdffc999 legacy-trunk +4506 d7e91437f0a27e2747ce02ab1ba508f4e5d8ec3c legacy-trunk +4507 de49d49044d753df113043b4b79362503f78dc49 legacy-trunk +4508 0319b12321d7ddbf20a0dfd6fe5a2903396d6ada legacy-trunk +4509 cf31eab6ab5ae2e01f4c66bcc9d5fe2cae0c0a14 legacy-trunk +4510 aff5d7d06735c8fa0af95ddaa8a2671acd8de50b legacy-trunk +4511 79c171f581fcdee30993fa3d2cce2491025b51be legacy-trunk +4512 508036dbba3b4f2f6f12834dc0600a04891d6722 legacy-trunk +4513 866c81068dbda271ee22b8c085c30c24a718cb05 legacy-trunk +4514 146890653a57ea13b28ff46d46e92fd4c638eab2 legacy-trunk +4515 172ba04a51916cb750413540e03f6f4281af41d5 legacy-trunk +4516 d0d0a69b5ca34b75ec77dbfc89a5affff620431a legacy-trunk +4517 5ed06594352621547f536816c749058072ff8656 legacy-trunk +4518 280f31e6c653be40fc3d55defaf1cdd8cc9feee1 legacy-trunk +4519 26cd4d6c2d12be3eb6ec7ad3352df82fb1e57a2f legacy-trunk +4520 000ae642f9b889a1adf982494f07228de94746cd legacy-trunk +4521 1b99451fa1436cad7842fec5c59aa2c04d62ab08 legacy-trunk +4522 5227324d64e42987cb86cf8b97fa496d44ad21f3 legacy-trunk +4523 3aa7a77844559ac474b5f629e759f16a8edfc749 legacy-trunk +4524 be5ab8e89c4986e82298aca4bc653be83892bd49 legacy-trunk +4525 048e91a59c75e8ce60a35321fad0cac6072ab3f0 legacy-trunk +4526 cf65a124fa4b769c6921b6a9f65c2934b0fa7ac2 legacy-trunk +4527 68a38cffcf583c2918a5388905c19bdeba191282 legacy-trunk +4528 a36cac79c5af7c1c1925a41c52ec2917eb91bd26 legacy-trunk +4529 4c347e4d13f1f1165c80dd9ba418effdaf1d8050 legacy-trunk +4530 adc028b977bdf6bb7f5ac1cde602e786fa8ebf57 legacy-trunk +4531 3848094f259ca7bac69446be7f287919d7ea3419 legacy-trunk +4532 df6fe8296bc31d53c3494265e75aae3fdba700ce legacy-trunk +4533 5bbf0a9c9a428ac7864d30009963c614e0be27f6 legacy-trunk +4534 c21cc7b3ce283373cf7d2e71365895703db3c71c legacy-trunk +4535 afecdec996ff50033625b5f5cc6b7fc72f95a494 legacy-trunk +4536 4afa7eb4734bcfaf652fdbfdc877b284fbf73dbc legacy-trunk +4537 f2d267edbfd68767093915fa137dde70de12ea83 legacy-trunk +4538 abbf2a4b488b371a2e645995aa3ce161e475747c legacy-trunk +4539 8921a2881fc7f26468cd8626250ba4af0434edd6 legacy-trunk +4540 2604d11c8b40459c0acb205fe75ab2bd6099c731 legacy-trunk +4541 65146b52f16b934ddd0d495aca2d7b71c2c09c2f legacy-trunk +4542 1940e1e0cedf5d55e73c0fde0f536adc28c78033 legacy-trunk +4543 53aa51433f7fd5d53c270bbcd0134b4471270b87 legacy-trunk +4544 f78b387b54e0a3995a0d275d9be46a82df91270f legacy-trunk +4545 b4d982c648bb3e7602a959f4153058715a48a182 legacy-trunk +4546 b03b43bee1ab3ecff6a523caa50166c0918cd78e legacy-trunk +4547 e8cafb2b743a7e4c03d869a342a0cf6cee129188 legacy-trunk +4548 d356c473db993fe74fbffbbd7385b6bf9303a7c7 legacy-trunk +4549 0d7e4aa595f7aa5b4d9b80e5daa00b750754c0de legacy-trunk +4550 d5c935b9a7b50ce54a8fd2a5a3562c04fb2dc340 legacy-trunk +4551 e4588404fdff25400c0582a55306b90163439e49 legacy-trunk +4552 b7be0382f9ee69d16a1b8cff72d9fd8ed855935f legacy-trunk +4553 ba2e21a54ae3991a4bea3b8ebacc8f34684ddcfd legacy-trunk +4554 4574ed657cc9f9a55cae445415e6a78d9874a89a legacy-trunk +4555 fdccc3222d0ae7941cc45aa6d93308909fbc3487 legacy-trunk +4556 30821bc2dcb744fb0af175d7bd28d295dab625ea legacy-trunk +4557 bbfac3e2570d9ab220dff7f61d91222bb95a7aea legacy-trunk +4558 7493c6805dc6e5cb9347beb668eb111e2ac111ce legacy-trunk +4559 ea7b2bf0b52161f96a5a97c2ca8be6d300dc51fd legacy-trunk +4560 2ebb21284f3451a769bf578f6bfe44cde8e496bd legacy-trunk +4561 01830dc8d6e5d36bfd01f22f56712ef2239ef1d0 legacy-trunk +4562 af41f4a21682ea8213627add453212e60c3e7cf2 legacy-trunk +4563 07080a2960707bbb9f01ef6630a9fec0495bc233 legacy-trunk +4564 6c4905ffff01e9b8920e4829a928b65ffcd79190 legacy-trunk +4565 30cbe024df409ec0d7e32a43746d78364d5423fa legacy-trunk +4566 2669ef14c20541990d6dbcee99e1bc2f43676fdb legacy-trunk +4567 76c860a18d82343fb4e076dadce4fbbc5080e738 legacy-trunk +4568 7947c0d16ca041e6914ec8921850c38b4125259d legacy-trunk +4569 7ea369d05c2ee195e122d4d7cfd0d85123088400 legacy-trunk +4570 d73eed3530010c4fd4c802a09093ae0ef4d3f616 legacy-trunk +4571 5df69f294ccc6f6d4661e84e39e06132b070a754 legacy-trunk +4572 aeda864c11c4463925edd20a186ad1d48e7ebdb3 legacy-trunk +4573 1dae0d3062d263bb6cc6851e7289a05c766a2e75 legacy-trunk +4574 84b61fe44573048400cdb1e711f06dacdf4b32aa legacy-trunk +4575 86d9e91405c8553897c8870c40ecef2b8caf65d0 legacy-trunk +4576 ba3fd96f055ef919b4d80326b1675bc352838667 legacy-trunk +4577 fd5ab7e828fccc0141596824f8a75caaa26a7aa5 legacy-trunk +4578 36847b8b575df651f58aed5813696eb76df6524f legacy-trunk +4579 bd061dc30842e7504ede4d7c37f3e8e1797905d5 legacy-trunk +4580 af36bae343fcf8daef48a98541e37c396f2408e9 legacy-trunk +4581 695401692c46fb62c4e8c8dbd7cf911c0dcf55df legacy-trunk +4582 92da8901517e3f15c98c918b2df240a091a4cea4 legacy-trunk +4583 05360cd616ae38867510545e694ddab249e6c74b legacy-trunk +4584 ca27c2fe0b8d4c6b56e4f06b631a5a6d8c47263b legacy-trunk +4585 fe922fed6b31d8c84ff60ae8eb645325301ec529 legacy-trunk +4586 4ddf554457ad5d1b201cc9c6af32311d61bf942c legacy-trunk +4587 c16d693bfe73f52f43f80780a8f5a1f5126e590a legacy-trunk +4588 9d61c5749bf82781a7a06039469dc813ae284973 legacy-trunk +4589 4f90b474beec340f059f05968ad0aa997eb66cc3 legacy-trunk +4590 c57b5c50a2d2954f6a0c1cd8a1b51f8cb0023bef legacy-trunk +4591 c9085f1e977f3380340bbfbc191c1b2f156319ee legacy-trunk +4592 23f0403178280ae07cfb3084fafd8cc57ceac652 legacy-trunk +4593 94e2ca86590a56d3874dc24be5deb73f953b781f legacy-trunk +4594 173dd00879ab6000c82dc6498fc8f72fdf7a8d4a legacy-trunk +4595 84923d92b53e7ac1a6322a3280e341ae7d3612bc legacy-trunk +4595 16eb4c51ee97169046340998e850a63c65225b0a legacy-trunk +4597 7ae847b1b269228b9cc384e0bafd04a36793be1b legacy-trunk +4598 0e60cd207adbb24bd5b3c2b844b7c08673e044a5 legacy-trunk +4599 e9e93e07354b8bc0b39401462a70a6b9b9dba0f9 legacy-trunk +4600 9afdbf944c2a03a649a57fe0a323cd12251c560d legacy-trunk +4601 838ef976882103016785b97d40eb92cd9d301f9c legacy-trunk +4602 f99a23998770bab7e2f25656f7d004a65b938b52 legacy-trunk +4603 6060d7fb07e34245e9730bffd862107e884f4a34 legacy-trunk +4604 448435bfeadc0d46cf55c68c92f503f6d9cf6811 legacy-trunk +4605 5fd8524dd03a210a9378b6b32ace173b8f001c87 legacy-trunk +4606 1a52351a00b26cd059a6bc9e2d9518e769a1f1da legacy-trunk +4607 e54b8654f9384f1227ba2197feb5fe1611addec8 legacy-trunk +4608 0728feb1d031b48842b7198370af2c78688af542 legacy-trunk +4609 84971d015965e8e8f2f41f44593f232f68d6a547 legacy-trunk +4610 cfbab79a799f4653552271da5020be2220516387 legacy-trunk +4611 1e0838bb8f2208e292b300341623ef832bc209f8 legacy-trunk +4612 29720c5d9e7ec4221fc87f1b222f805319bfd704 legacy-trunk +4613 a619a61aad1ebb8c880241fc2ced0f1e062c022d legacy-trunk +4614 899b4e3dfd4cff99ca40ed72c075384502416e1f legacy-trunk +4615 f06222e07ca7553795836f7e94447185a691587a legacy-trunk +4616 c9aea34ae4b699714ae813e475f4874e2c1dbbc2 legacy-trunk +4617 ee0b3cb37af88cc4c93670a16d19a8e3c38b982a legacy-trunk +4618 459bf7d04e05beb829e2d4d025b7daf83c96b03c legacy-trunk +4619 f49b6372492f28bb73b415376d7e3b4d21b8400d legacy-trunk +4620 7a6b57febac46c10621cdcdd7339218d4c9bbbfe legacy-trunk +4621 d90c914c577d20b421f10e72a907395e58b396de legacy-trunk +4622 9a9f3f5d6f86032212f0073a52990d9f1e18040c legacy-trunk +4623 92cd85470a769df577d80ca624e6a0758ded1059 legacy-trunk +4623 b45c688756d04fb84d4a0d518fc3d7e3cb25fa8d legacy-trunk +4625 7ff6d999f059a08c8c82b83c052d514f6cbe6518 legacy-trunk +4626 8adcb808d8ddd842955481fdc27ff6221eef2d61 legacy-trunk +4627 6f35a1ad1acc833590f982577c50ebd60bae9db6 legacy-trunk +4628 5eed83216e6c55b8568a99f5647cac90e1d91210 legacy-trunk +4629 0445725fe5de4caeabf4938d54ffc06f010d678c legacy-trunk +4630 1e9e74944bb51f48f862919ba6890c1271bcd660 legacy-trunk +4631 9f500a34c35541811c564a892ed26f786ddf47cf legacy-trunk +4632 65d87f06f08fc30b83ac0a37104d66b0c4046948 legacy-trunk +4633 8da03decef593dde0e44ab127a6c3a4ccdc0b948 legacy-trunk +4634 9b451c84a7bf93011012628594f2a7b44a6f2079 legacy-trunk +4635 0048024b7ef84cd9c00e578d97620c15159ec25d legacy-trunk +4636 dfabb13bce70fc181b26c02b419cfa0550991882 legacy-trunk +4637 62bdded5f00a23151c48396f2071d5215b7ac4c5 legacy-trunk +4638 87f4d6d2e9c89a84e990216ca6575b8815f9273e legacy-trunk +4639 9c8b4323808bc0f99133d9b27e2b145e979cd123 legacy-trunk +4640 95cb52b85f7867fb47c687994245bc7c5d5b9a52 legacy-trunk +4641 968e2484d94da382d49c733c03c4e2993d117445 legacy-trunk +4642 6461ff0c4bee6f30562a15483387c5de176c5f19 legacy-trunk +4643 d59568381447d0e32995f75a73d20a28588d834b legacy-trunk +4644 b40e10bda23191d2d76b788346d4d122a486b062 legacy-trunk +4645 f48951daba4ffc3e75625f34a4df3e63aafeebea legacy-trunk +4646 f78fbccaf58cc66d1b806635192b51eb26072ee1 legacy-trunk +4647 1c012d82a9758c22b3745797b74efda96e8b1324 legacy-trunk +4648 8e476ca3a7a3f2faf6f1f6517d6bbb8874069647 legacy-trunk +4649 ccc279ff935d0f54a6bc9815fe1512d505252be7 legacy-trunk +4650 5e568bacfbe99ba62a82a38ac527425bcf782dfc legacy-trunk +4651 91a43ea11ba3594c902c1ebe6564b102610ae98c legacy-trunk +4652 27557e70a8f029bcd793b72c6aa097d32e082321 legacy-trunk +4653 f4671b681ab98e7620fd9729c436180e709c4608 legacy-trunk +4654 5ae922cfe4049347bb07403d00e56dbeabdfd18e legacy-trunk +4655 8f1daffe799bcf34e07afbc98d1377088346f4cb legacy-trunk +4656 9894e55468ec60f75a2af00633df83400349458d legacy-trunk +4657 cdb373f65bf380dbd29472d78814b2e00e00cb4e legacy-trunk +4658 02dd63d3fe9b31370ee573664be2a21195a4445f legacy-trunk +4659 527889ae8450390977d3e89521b4c2dceb913415 legacy-trunk +4660 0e302771ee5a2bfc7bee19c287fcf9b3f83625bf legacy-trunk +4661 33ea9cc7d7bae723c87a27226d823403c484a891 legacy-trunk +4662 c68a0113b75a27fea33bd3640cfc520f1a52ad7f legacy-trunk +4663 4053d4cb50e0d701746a75749a67ca08b7cf0288 legacy-trunk +4664 e734c7235727e74b54ad79b30cfcef2d35c2410c legacy-trunk +4665 eb3e61db0dda9c5af45589ca221e381e6b15f3c7 legacy-trunk +4666 64eb487ca465d6b6a28605e998c8751caa1771df legacy-trunk +4667 939791f219a63ed8561ec6bb756c4e77f4e9af59 legacy-trunk +4668 272229348fe2b77a15c4e3175a7569141eed815a legacy-trunk +4669 a3bd61632f145ed988a1c2ab7d59a0c504c7975d legacy-trunk +4670 abed368d68ef1890c6725cd91eb9f1f2d2eeff19 legacy-trunk +4671 76d43c03384810b52712abedc6b59ea71f9cd197 legacy-trunk +4672 cfeaa5082ba831b621a034b77293b84eb7c3228f legacy-trunk +4673 0612132e001857ee4a8c4ea0f91f356c4c316ec5 legacy-trunk +4674 9bc3a5baa680e38d405ccc7198e8d482e6d05936 legacy-trunk +4675 74a0a6121af71b6ac734965adcbda705c8f8a18e legacy-trunk +4676 bbb56dc3b526b552b53f69e72cb2dc03c70ffbd8 legacy-trunk +4677 aa3365815c20d75b201323ee64e210734ff5d7b4 legacy-trunk +4678 32435d33f34a6f44c8ecfb5408d4a238d6867e9b legacy-trunk +4679 497197f3573c10b94e3e108c6e9ccdfe251873de legacy-trunk +4680 c2d18b58232edef165b3150e62034099590262a3 legacy-trunk +4681 e53d019e7d47612d2e646ff783f5898bd4fb64ce legacy-trunk +4682 9588c238e6609c1312412b5b213dafa63fca0ba0 legacy-trunk +4683 4bcf1b96efec4f116b330940f3713a2fc9762882 legacy-trunk +4684 92e6f5d8be82ab91448bc673fd4e8ff4d756c58d legacy-trunk +4685 1e8b347a056cf3666efe53146ae37283dc8724af legacy-trunk +4686 8d5e36b37a413229fa91e117d78a1f5e478a9725 legacy-trunk +4687 01037532c0860a1bc9941137a24d9d7cfe3bb2b8 legacy-trunk +4688 7b6540496f554bb6e574f1a32e6500fb6edc0b33 legacy-trunk +4689 01ed4cd21576cbb450c8b816ef710cea7d44fcb6 legacy-trunk +4690 1b662497426b53a10e2e88f00838869cdd653cf3 legacy-trunk +4691 0b0b18d655d2e9c05e4e57fe2cff8d6a81e21c56 legacy-trunk +4692 b5dcba7b732d03b0dbdc00051cb801e77f13e705 legacy-trunk +4693 442bae8fcfdc6514f19d1acff8ba61115df2fb08 legacy-trunk +4694 94b84535c34e11d8ea25babdbc0bcbbe1461c587 legacy-trunk +4695 fefae37c053cfd3bcef3d939a8f3fd756b78a8b8 legacy-trunk +4696 d3b5be0c872f33b1ee91086344ad2c70c62021ab legacy-trunk +4697 283a8eb2e317cb7d7b115ac8b04a2ffe9f634bef legacy-trunk +4698 72e05c61c2fe593377ea73cb8eb4b5c87b206256 legacy-trunk +4699 7fa48ab4be0f4bc3f513a5084c19b6ff3a02f600 legacy-trunk +4700 1ab35b6f638a266b7176775f4408cd3e9db6abc5 legacy-trunk +4701 8ad1363287aa8bc9835d2b451299566f452b13c3 legacy-trunk +4702 438f53e7cfd14e95ea72d89d0c7bc49f5a59c208 legacy-trunk +4703 a76a79f896cf5fe2113bb9f66ac4dd6022d53d71 legacy-trunk +4704 3bef1aff871bc349207085974515a356d1d57c05 legacy-trunk +4705 e0a3242d5ae79d1620a226242a8b3caa1394eb93 legacy-trunk +4706 e9d11f9b82e2b581a96b7325e23cfd077a389493 legacy-trunk +4707 c23d092215d2c3e5f803222225df71a6c3a76674 legacy-trunk +4708 67e8ef698a42ff2720af78150ecd97d0c3348d20 legacy-trunk +4709 382edef2d6d70d37c34289e8b74113827f26b8e8 legacy-trunk +4710 d091b246a3a7a5bb2c1415dfa213cf19fe64f65b legacy-trunk +4711 ee4c954cd5df52e9c407397d4dbcd1ca10424435 legacy-trunk +4712 b1a6a81af1cff47d39a5048a18ca981558f57274 legacy-trunk +4713 83d06404f6e11442cd310e69cabafe7a7f260aba legacy-trunk +4714 a81b6db6d33c94e8d094869a2111b870898b7200 legacy-trunk +4715 645e96343f89fef8db98f53d6a88f374ff0d5c7c legacy-trunk +4716 03bd79432f069c632ae5ae8421f724c13ef71da0 legacy-trunk +4717 7895a97313e5f4cfad24c5a6ba56e8464539e20e legacy-trunk +4718 85aa2e4d0123c53c5e68e834a46fc70b85195aca legacy-trunk +4719 4bcc92916fabb2f6c51e4e11518f667edaf7ecf9 legacy-trunk +4720 3a83c3cef4b2b5c84a9367fe2fb00d36b9431ea5 legacy-trunk +4721 7411b6a06920cd6d4be2106daf14fc2385d3bc80 legacy-trunk +4722 ac6f69b1e9930716203a7a54a126fb8e786205eb legacy-trunk +4723 a8c6da3bd3056dd56f9fe038ccc14b38d5ab19b4 legacy-trunk +4724 3a658eec1f02e1485e6833d6f0ebd1c8b7daa6e1 legacy-trunk +4725 8a1244e7cb3bd2a483cf3f69a50f0ec3b8473323 legacy-trunk +4726 58aa7f3b1692bf5798cea166de32019daf8c3bac legacy-trunk +4727 0765d0bd88d6da5aff04186724240f3364884452 legacy-trunk +4728 90880bd09221decd3abc8ff53e7cfff639872f88 legacy-trunk +4729 e5b9f644053e9e0c4cd1bdd91039ee9699719419 legacy-trunk +4730 66d6d13df4f8a98204ec4ba43bdb4b33732ee757 legacy-trunk +4731 df7e26b5c9189ba43a0a0df42d823b4a90ed9bf9 legacy-trunk +4732 65644766158ae8e4ca9732a5732696f53b5b6f2a legacy-trunk +4733 618701cdf600010602d9dba694267a3d25ba56f2 legacy-trunk +4734 650cb67d7659842dee8dca99bc555ffa95725eba legacy-trunk +4735 eeaaf875f7b6813973ee7dc0f1df75363f2d86b2 legacy-trunk +4736 b034b4ea2b399026ebceb54db992bb1df08aa0cc legacy-trunk +4737 7859d3aab1b40519d8913ab222752f1d54e6c2dd legacy-trunk +4738 71c11a6e4bc00f2b79c219a106b2148054718048 legacy-trunk +4739 5e6c0cdaa7c1bbccdc2d6d6102e90f2891c0f2bf legacy-trunk +4740 5546f4a6e3c34fd2e3197f57bcf22e26028124a1 legacy-trunk +4741 540f8444ef8a8730093417cdeaf3c2af87956d48 legacy-trunk +4742 b4caac1428d0da7ef0999020a700eede29e5cfef legacy-trunk +4743 3195db6689fd613eeab16b68b6ed081d18468d1a legacy-trunk +4744 f5a6e6ee529c07ba75c5684d055c36f5cfddbd98 legacy-trunk +4745 ac8a225b051b75772217b4f0e4931e03586f7b2a legacy-trunk +4746 01a95412457724fbd21aa70168698f0163612185 legacy-trunk +4747 a241462419913b7851a07ea578b13a9f85da3bb2 legacy-trunk +4748 6263e2fd93988813988154f3bb14fe7bf8f2aa31 legacy-trunk +4749 3d6c9a47ea445a53fb2371b6db00f95d2f9315f6 legacy-trunk +4750 f17d6e6b40dab14c5acb15293f69825474aa8f5a legacy-trunk +4751 9717f6a8f5fafe9ebcf2f68de74278ff2e086e19 legacy-trunk +4752 fe8db78f311c96ced68cd87953f86ce34e550bb9 legacy-trunk +4753 990099ed781051d55e4c02f1331af4a02c765e47 legacy-trunk +4754 d2049a1d3cc5cf1cd2ae658c1de4392a2e337dac legacy-trunk +4755 adab66fac30e97ec7866ffe03e3703358efeaf6a legacy-trunk +4756 6a04256ea0877c074d2a9388c463ff3c92ef28da legacy-trunk +4757 505fc478ff08514e523da618d4f553e197681db1 legacy-trunk +4758 170b99862d095d96385931a1bb3dfc1459b84fed legacy-trunk +4759 65a68c51e9f2a70ff36ffcd096e3d903aecafd37 legacy-trunk +4760 08b457d6b516edf456ff763607a20485a0a7e4cd legacy-trunk +4761 5aee2c5d8dffcaea3e86a778d07bfaa4a6bc69ac legacy-trunk +4762 14b126d0b5be34bc97b12d6229809edefadf0374 legacy-trunk +4763 56ca67ddec858b56d0f0017ff2bc1f6a481987d7 legacy-trunk +4764 07913fb8f92f0499390b7ab12937d205d5359c84 legacy-trunk +4765 fc6e96221088b082357ad08b8782c4677c06b9e2 legacy-trunk +4766 40aec48cd1e2147d8f9af06b1cb0dd00face43b3 legacy-trunk +4767 ff72a5f9a4ee124aa0d88a9130bdb865496e81fc legacy-trunk +4768 515e1d03394ad8669ec4d998384df07926094773 legacy-trunk +4769 1425617514accf8aa30c15c5530506fe8821fe0d legacy-trunk +4770 ed821a99ba39239507c00ca5d7de73588c0c5130 legacy-trunk +4771 1ce07f64862e9f5f80c656e68f0157c63e86ed95 legacy-trunk +4772 99e7ac22bd2e2d5188c0ddc22820d617aac6f082 legacy-trunk +4773 1e720712816788c6ced8e958f977764e45a8a3ba legacy-trunk +4774 5f7058d816cf91f253340d4dcd0bf6b9df6c7f3d legacy-trunk +4775 3161e7cf2054f736f8c28c16cd3b9ac1dfd7d9b8 legacy-trunk +4776 d3e2f988f1af0e14805c5615fb38c4401579ed0b legacy-trunk +4777 3dfef67e0ded90e7d1128a3fc2a02420a5aa2f30 legacy-trunk +4778 faaece7ccd6e71b15d480372025238db60a4acc1 legacy-trunk +4779 7bde4b1df494097f7aa1996574b63eff887ebed0 legacy-trunk +4780 e8d207658a0452b1d592773d3ee84b5c08adb6f9 legacy-trunk +4781 43f9e7549c70e6e837d0e0a666ad2406f4e36b3b legacy-trunk +4782 3edec8211a36ad57193e9d8819f759000f2e29ff legacy-trunk +4783 1b262d190a4a4810983cc3d665b5594493399c19 legacy-trunk +4784 84560f4b29ef09a209cdcc788d4f965f3eae3721 legacy-trunk +4785 242dd5ed3b085eee2f42672ba6504952226a299e legacy-trunk +4786 32e7d2696d791c69ec99ab1125617e8f4c78ae26 legacy-trunk +4787 6468fd0251d2968e631186fa946a504a60afd36a legacy-trunk +4788 d8b4c7db77ae6bff8b25ea27983aa2504695522d legacy-trunk +4789 e11e6b3585313aa919d7a4e2f81345797fff6335 legacy-trunk +4790 b2241177bccc6277332e8a5e957f8cb876bf3403 jar +4789 9e82daf7605bad7976a9abc997cb5e0abe434078 legacy-trunk +4792 71e60871c681ce9141974efac3e0b33c9fe3288a legacy-trunk +4793 4c2f1452125d59d075c6fe7daf9014cbdf178f36 legacy-trunk +4794 4127893a87ad05a022ee70b58ad81c637fbf9e65 legacy-trunk +4795 21f0d5f18cdae6108f5fc5fd25451982d6019f9f legacy-trunk +4796 63fa387c02febcb08b054a0ee2033eb03a877065 legacy-trunk +4797 670e50ae389d54cc32101cfb4d5ad68f608f0556 legacy-trunk +4798 4b617fee427d3638c87c0d62d8c9f533b38b9b77 legacy-trunk +4799 ed0aa4a5d106b9c2b7b2ed3d850e484bd7068463 jar +4800 279d51a18ae4b4e8dcf007760a9778d8bfef88b3 legacy-trunk +4801 9552edb4eabfac341a6d3e4f1013fa948c01770f legacy-trunk +4802 f09d3252a38b213eeed2c776a18bf27a226383f8 legacy-trunk +4803 d05685993476d4cb70f5b34addf1118010f39f06 legacy-trunk +4804 ed486461def676f06199acafbadbfcc1dea1ae73 legacy-trunk +4805 d65c485e0ad82360037f8ab56c438991e5ddad86 legacy-trunk +4806 a2054933775b0014d605fde3f7f14a85ee3813fe legacy-trunk +4807 85fa02b85d7d130a14a91d6bc2e5f5c4e5601e00 legacy-trunk +4808 26b1b15fc8ec3756a563e4e71e7bbc7a81ea4fbc legacy-trunk +4809 8a8765343cc0d455a061882e57ca8a142d9fb22c legacy-trunk +4810 fbaf5416971173b36606de4e5c59a75bf56902ee legacy-trunk +4811 df5b728b8eb62ee798607ba38650a613d8cea581 legacy-trunk +4812 6a94119844eb3820e44fc3369409fcc9bac73997 legacy-trunk +4813 1740fd76fc332fbc4795e1fc83fddd073d54916e legacy-trunk +4814 4c43cbdcd5243d99cc2511e294fb9dfcbc255d03 legacy-trunk +4815 916a8ff36a85470bfa6a0c7a01563c060f9e6472 legacy-trunk +4816 7fd7412e718848e0f3333c2b46d618249b97e06e legacy-trunk +4817 e80acfa13ac0004497d6b31e4a5da5820d2d86c1 legacy-trunk +4818 747f0b7cb7be434cb965ecd14f52c4f975f36134 legacy-trunk +4819 21a23cfc48431ae91ca013e00ea11c01233503be legacy-trunk +4820 96747c787a833c3190d3d3c20194ab32ba8eeb1b legacy-trunk +4821 8cf63c30ffc877ec0ad94600cc1421925663a861 legacy-trunk +4822 94bf2f05da319e6ce35e33f7aa97a37cf284b3b2 legacy-trunk +4823 915fabec64a30ad733b129023a2f0727d63cf29f legacy-trunk +4824 663aa059e29fec66f0338198fc326d9bb10320e8 legacy-trunk +4825 ba1b76c090414a3ec8068b5715d946ea132e6cc3 legacy-trunk +4826 e386035f897dfd91ac635962654cdf3cb8616546 legacy-trunk +4827 04f61a5a765409c4d50af7420b93574ab0c72bcf legacy-trunk +4828 0c835c8043224cf590553274717ee4f281700c3b legacy-trunk +4829 582b00fbab1614523f8d4f432327060bef435299 legacy-trunk +4830 397478bca0c4dac1dc03e02d4d3b469e20e7c8e9 legacy-trunk +4831 51c8824985f8a50850ad0eeb6eade1a73bd9675d legacy-trunk +4832 c31eaed7798bba41f314d38e693a74f9e68a35f4 legacy-trunk +4833 dab34cbf8d7fa3f42a9979f87e9202b7e8bc5bfe legacy-trunk +4834 4e87f3a3f33a87abfb08d8d73ae97f80257a641d legacy-trunk +4835 1a20d505874448bc701abea161592cd5428d8b3f legacy-trunk +4836 c8a83218ba61870a6c717801fb7ea5b64bfefec0 legacy-trunk +4837 ff3fc30ed76069a1b3ddeef0f1f4d3b31f07e576 legacy-trunk +4838 6450d8828d2b988d4140202716d7e9154dbdc4e4 legacy-trunk +4839 4cc8137ccb56cfff392f69c6bd583623cae736cb legacy-trunk +4840 f8ab925efda88ae0da0a0e3e5e71780ac9d403a3 legacy-trunk +4841 c6533b89628887a311e9cf38b9b1d8ed8d96d0de legacy-trunk +4842 c09dabf70996fb9a9f7866f27b13853568992227 legacy-trunk +4843 5313ac6f34fdcb03e673c176140f8077c1dd80b5 legacy-trunk +4844 f979e5bd6a2230e78c523bf0f9e98ea0d091ea0a legacy-trunk +4845 49bfef17b12b65fa76bfb09cf34ada5a5a68b8cb legacy-trunk +4846 ddb13862fbb2bea747a6817b9a8ddeca3dd1a5d0 legacy-trunk +4847 ecbbaa584f3c167398e06b47125f23d31c363089 legacy-trunk +4848 9dc875ad050c89940e3a593acd68287e4c7090b4 legacy-trunk +4849 b156bf4be62f1b6a9c571352a2d619ed76ce42fa legacy-trunk +4850 fa8cdd3cc54540551943c03209d5bf4fdeaa54dd legacy-trunk +4851 42b5689a74095dd8090265caeb60e0236e8d7a18 legacy-trunk +4852 29ca45eb3ab7523ba75579997743a9708e7b260b legacy-trunk +4853 0736a7ec2f289e5dee91d0ce8a2f7f95bb39269e legacy-trunk +4854 cabb7c5732ef1a38d9f4146ac582618240c73dd6 legacy-trunk +4855 438a8c265eb9f54c867ceff7acd2b92bc94b13c7 legacy-trunk +4856 d31f694c11a89b7111706297632168dfaf318066 legacy-trunk +4857 1325b3e8e3d3ce1f65f076802a384eaeca49bd17 legacy-trunk +4858 cab699453775c1909bbac860a1928263e082e889 legacy-trunk +4859 72c715c004c89861d504be7ef4cb50b466c47293 legacy-trunk +4860 7246b99d2966a2c2b256ee6c1f0345dafeaa3090 legacy-trunk +4861 0b62b53d43f8786b6541a3a83a7432f3e795a74d legacy-trunk +4862 e14975c910f0ca1a7d6482dba0a23069fce770da legacy-trunk +4863 9a94292aa4c15bbdd059ce2642684d92edd26682 legacy-trunk +4864 77eb63716b4f98d3a5460c0ba8fc51b2c6d870df legacy-trunk +4865 4fc033cb55445ba6e1abb246a86b677c795e925f legacy-trunk +4866 403a5631214b0245102c530bdddd85cd4b2c8936 legacy-trunk +4867 dd1ab20f8223b3986434db5c58b61a0776afbe7e legacy-trunk +4868 75ae104f7e6c51ea2f0456c72fea2491f4973ca8 legacy-trunk +4869 810bc15e18f983bef235be16a3b35f6f12057a61 legacy-trunk +4870 614251836ceb2273096265995b82b5fa33ff2603 legacy-trunk +4871 ee8e91a17745abb7cfa1423c75f2866c7c91299e legacy-trunk +4872 75aa5246b2f6f3d1d2fb075dd12399ae84326738 legacy-trunk +4873 97e57050e2760cfa272f52dc0b2d086eb588dd98 legacy-trunk +4874 22b1ab0e64735db7f88834a1ed4b994adced06ce legacy-trunk +4875 4a462aacc1e99145b803cbf8b30a8556571f72b2 legacy-trunk +4876 6beef17871f982d3cfb54c0bb39d7a1e37b15eae legacy-trunk +4877 6eda642f19d03780bf029072fa7e918b8522944c legacy-trunk +4878 f4f71ebea53f145423e10a35ffb4a4396a0183a0 legacy-trunk +4879 73eeff4d43f84ad76d2bb2f0e0c4fb94070cbb19 legacy-trunk +4880 00f4e400575a97340e6091216768d1dba54e5fd2 legacy-trunk +4881 eccf4937f1dc9ad35aefee50d47f3a4ba2fdf6e9 legacy-trunk +4882 9bf18996eed8c9df6b3f4ead00d5b42ded499a19 legacy-trunk +4883 bd3ad6634e76482061f9fd4fce59114518f9b72b legacy-trunk +4884 7924b7819d8f96c72a18ae8f9917a57ec65bcd14 legacy-trunk +4885 efb0685a6c91cbe6589a9364c0c9af156e262ce2 legacy-trunk +4886 d39aab6c130d45db8948885f3d6f29c60d1e703e legacy-trunk +4887 cbb4072d538be7f042aef85afe006beb92abf669 legacy-trunk +4888 445bea8ceab1d07083d3e4a68d8b3cd15f3a6c8d legacy-trunk +4889 6cbd2830b5a238cf5828408576664621abfbdb4e legacy-trunk +4890 5bc341c4071cd093976da8047eb28c14330cf7b5 legacy-trunk +4891 1e8aebab874ae125e7fd45b86d0d6537a70a0e00 legacy-trunk +4892 fa98dda07877f088fb1ed7564bfac260ebe90a73 legacy-trunk +4893 62ebbcfea8272b84d63598d76f765cdf78b7be1d legacy-trunk +4894 1f59f2a1331296edf012105970142619ec3362ff legacy-trunk +4895 c1d27043c22f45b6418f647dacb5a6402578312f legacy-trunk +4896 d577d749918d183dd632d173709e6030c2299385 legacy-trunk +4897 2f89ec1a9c38c7d72192c74f050089c85a208a33 legacy-trunk +4898 a5e95f9de9000e57882cbb3ab87c86cd7e7d0219 legacy-trunk +4899 2dcf7538347a9d68f2e8c9598adca7243159abdc legacy-trunk +4900 98c1d84101a50813b45a1f01d1005e36b6a47c57 legacy-trunk +4901 f61716ad0b7f51f31c023f34e5ae42a83d973128 legacy-trunk +4902 6f1211b2e0779b11062b9b2cce690f24450753fe legacy-trunk +4903 73499a667e784eda748136861fd4b0f77a813f16 legacy-trunk +4904 2c6565f1b7f864458dd53a29fb188bed25c0feaf legacy-trunk +4905 8eeecd233d569bba9f8c23097ddc25697f328eec legacy-trunk +4906 94a6436655e03fb97538143ea86fe7ec7044067b legacy-trunk +4907 480b251a046835b1cb458931e51b4aa2d0d657bb legacy-trunk +4908 9efd408fc9f6bb72936bda6b6ccc6410e6cdac05 legacy-trunk +4909 cdd3a721b40e3e8e9577539d6488e8cbe365525c legacy-trunk +4910 899d20874566b986d216d14fe360921104c4bf23 legacy-trunk +4911 b42ab77f2226031663c31290a5aad35ababe9374 legacy-trunk +4912 bc03225a4493f5dba6b3f6e6a4fa91b0dccd6af7 legacy-trunk +4913 e1a7bdfafec932388527889dbf11cccf9effa61b legacy-trunk +4914 65bcb4182c1a3207979eeba29f40f4e41e1d9c70 legacy-trunk +4915 bac96d5c463f452ffa7a44f7ad5bdf013b0dec2c legacy-trunk +4916 1c29f6bdd898f6e24e7bf5533c6bf34549ebb88b legacy-trunk +4917 d94045bd4a0412b9a6900a40d7966d972c52a488 legacy-trunk +4918 e9e86ae5f5a4a87f1a4ddb062581604137d021dd legacy-trunk +4919 e764b78a704f518f1a8342fda1b8f2c435bfcb22 legacy-trunk +4920 e726f90d2a9ff24959da119f225859255557d6af legacy-trunk +4921 1f4141aafe3619769a7be4eaf253fc4dc6a26c6d legacy-trunk +4923 322fc596f1c43791300e80cafdaa9a1455616ac9 legacy-trunk +4924 4f7c673da918b56ad1ba55e6f4fcd843f3ea257b legacy-trunk +4925 3d6734ab6cd402dd021e6d4a3d879ec1f37e83b8 legacy-trunk +4926 8e38cd0a3a315fe1bd7a8e3c9c16f5020e272864 legacy-trunk +4927 0e1f9a14fbd495a93ab5f312e21be60036392e3f legacy-trunk +4928 5bb39a42c72912274efa911a8f2bab0bcfccc2aa legacy-trunk +4929 dd2845d06eb37ae29408fe8bfe07805d0b2e66b5 legacy-trunk +4930 53f92a473c6f10a6f1c0607c61d642810cd2b695 legacy-trunk +4931 de4dc165bfb6a115299c9aa1c9b9b1e24d19f29e legacy-trunk +4932 30205d634a15b528126aebdacacf56a36ef162eb legacy-trunk +4933 7089d48434072ecdf479b06e93c27c057c721a47 legacy-trunk +4934 11b937ea00264a5b1f93d517b5a5d78bd231517c legacy-trunk +4935 64842e206b76cb15a9a003269071800ff6565684 legacy-trunk +4936 a17da1322c56d510b42d607ac3737d115da99890 legacy-trunk +4937 bd476555be42a7ad799fa6e252569dfe655d6744 legacy-trunk +4938 22cd22bf4384e4d46bb057e374cd4d6c7ee10eeb legacy-trunk +4939 0510b948178e0ba706b5a4e595c14d59354bef84 legacy-trunk +4940 517bcd4823ab786c74b2fb13710afdf5ff850c6b legacy-trunk +4941 2a574d4b0d58c2f0e382ada46a40344b6555a26c legacy-trunk +4942 d630c6d36839ad88426ae67b0fac5bd3311e5fe1 legacy-trunk +4943 fe37ed2cf7a5c573bffb8214f030d486436cb17f legacy-trunk +4944 eb14f32a97cdc5c549e72eb1d9a34988c0209c6d legacy-trunk +4945 80729aff9057c0ff17faa5ac70dc3ae67919e1ad legacy-trunk +4946 cd64a32ab8032cf76bcb6fe1bcc486e980c89a89 legacy-trunk +4947 4418e8547efcf150f701bac949880cf01e7d60a1 legacy-trunk +4948 fb8e08ec88dd56062c1a9356021ae815abd156b6 legacy-trunk +4949 4b574db5db13f17574b65c4690b0bc0a3b2c29cb legacy-trunk +4950 d9481354fdc36199be1ba3be832fe836910540dd legacy-trunk +4951 5fc62562e6ece1709df3c7946154f77e1ed72d57 legacy-trunk +4952 718c65d0e12db48661af77b576ccd1c36922c6f3 legacy-trunk +4953 60e5aaceb3eb36ca04d24b1303d92360a18f503e legacy-trunk +4954 15a86687f8380711457b32b60b6c924b3b31812a legacy-trunk +4955 ddf60bc7ed3015f737892ad944c0693746bba8c6 legacy-trunk +4956 c221957a626d7ec5fe263ef878ac597e56f181a6 legacy-trunk +4957 f217c1b27f8676a5d4b653a7ccbc274b99315e36 legacy-trunk +4958 b5ce8011441615875c49438e79d0d6d0084ca2d2 legacy-trunk +4959 d5978238e3ba6f7cc773202f213a7395bb63d400 legacy-trunk +4960 4dd1af0ddef08db26e26284c31695c4e473f7c15 legacy-trunk +4961 425835b88099e822b98f092aabe51ba45c9ecceb legacy-trunk +4962 e920e6c2720821c1c26eaf860286de7f710d40f2 legacy-trunk +4963 9d6e97d666708d437abe285c91f482659697a1e7 legacy-trunk +4964 8ac4c0e1ce17ad29bf7ac9a291d6d667da31bcb5 legacy-trunk +4965 47cc53a1fd47b3d4eec48e392a892766a502874a legacy-trunk +4966 c6e482870ec30ad0c43c3983e10f3996dbcd24ac legacy-trunk +4967 c29adb338964cb7fac094ee6096d995a30c494ce legacy-trunk +4968 c6a6e2b20bd83dd38a8e22e71654f5e7b8506f56 legacy-trunk +4969 c6f2d51251d075d78dea379b54be2e1a3c6fb29c legacy-trunk +4970 56e25114d43844359ae064c933e78683b811edf1 legacy-trunk +4971 f4dc51f78a56dc3fbb141d6dbdeb5ccb043617cd legacy-trunk +4972 1ce9e67c6856e8fc78ba1755651eb499e5a3c0b9 legacy-trunk +4973 d0b9812cd9cf40513ac8f739fb7fb2fb0df99c5a legacy-trunk +4974 2f455627c1f0ed5afb28776d49b5b7b7bffdde72 legacy-trunk +4975 556219709e9985bcfe120eaa606743323b5fd949 legacy-trunk +4976 495afc8ad7b969f14e6c0c25b24f5bfee8178f81 legacy-trunk +4977 847d24841c85699d15182c5339db55d3d6db1322 legacy-trunk +4978 e7d480cf16ba6df810ae6910697600b7f66cc277 legacy-trunk +4979 9e4012b1757eb4b6a6cbd93a32b1f77575e44515 legacy-trunk +4980 8b8a37b7cba4399b989c0529ac0d424161a0d1de legacy-trunk +4981 6001448fab890350bea83c62aa238651d5d1eefc legacy-trunk +4982 16ea151aeec3a4b086b93e947d6305b11d0a57da legacy-trunk +4983 d1123b10cf2372cc4e3e5a56fe9c0cf628c7fde4 legacy-trunk +4984 815dfaa6a778777206334a7d7ca7b18641cb1c25 legacy-trunk +4985 ae2b032445f99c33b1f77b2b22368d35b2b43064 legacy-trunk +4986 16ea57c38c4f741f31696a3c93d356ab6a9e0c8d legacy-trunk +4987 1a5e7da404c3da3b3cc5f5faa5677683140a596b legacy-trunk +4988 e39bb240b1b3a7a8445d001ebbbd4616e1c0ef9a legacy-trunk +4989 9e5a09841781958c2883dbfcca65ee68fcc99368 legacy-trunk +4990 e506ec4fb2b10d400ee7f638f69f79b52c6fa3bf legacy-trunk +4991 73d193eaa900ea438e845298fd77684b6a474524 legacy-trunk +4992 875173f3f31cbd2346cb477913aee75e925889ef legacy-trunk +4993 a14fc2d04c0625a865ffb43bd8c544945c9509e1 legacy-trunk +4994 6fcd0b022fa77bbe62df7f7951477bfed2a2bf2c legacy-trunk +4995 4df00b29477b7f7b26979b9ed3a1bf77fb812b7d legacy-trunk +4996 534a97c400cc7d60c535cfd24e548401f31ae6c8 legacy-trunk +4997 d7ae5fb1d255098149781c01f48fe95975064cb6 legacy-trunk +4998 b72ccf5b7dbc47fc8d1169da3dda2ca7311f79ba legacy-trunk +4999 49df1576fb54e92ff1cba10a52ce518d3f56d96f legacy-trunk +5000 1a448dd84edc2e9f3d2148ca39de6ca825eb86a7 legacy-trunk +5002 aabbfb61e38884b6a0c4c319efa627d4eabaf6dc legacy-trunk +5004 9cc775fd6e84c5f3385bea90a247e7981bab90fa legacy-trunk +5005 5536fcbae80ad7b017d338a8fe20a15400b225d3 legacy-trunk +5006 3281a931a1d9dc977ba13c501af40d92ae4a5ae7 legacy-trunk +5008 2cac6c5066da509598ab06ee29e90df69bffa739 legacy-trunk +5009 4196000789bc5e2426e038a74e52120b56f590bd legacy-trunk +5010 0f6ff45bd8167876b7c3e453b6e2561e76863e1a legacy-trunk +5011 c55dddbfcf7ce8eb6afbf97cf4fd5988951f49f3 legacy-trunk +5012 7d70209f355d20ec01dbc73a02fb29ce923f2198 legacy-trunk +5013 f30bc48c417a21d1cc3b6e66f9739c95f380283c legacy-trunk +5014 f4d26a0e2975151a6feed00dbaed3c2350f04525 legacy-trunk +5015 b181dff21b0b8e99cf2c94579890d6813a51be5b legacy-trunk +5016 f9b07915a0617da0ae4fb0e9ba59361c2cc42dac legacy-trunk +5018 2aa6b5ad45204e071db1d4f7c1e282ababe59e3a legacy-trunk +5019 38f3225eff31bdd35bc627088fe72ba0fcf50d0b legacy-trunk +5021 3f8c8b90158dfd32fbc48cab4291f63b36dfde24 legacy-trunk +5022 787b4dd6f5f3e6c20e12d1794c1069ebb44da679 legacy-trunk +5023 b092d936c875e66f174dd1aca76101e2d699ba6d legacy-trunk +5024 3828206c2dc0c609e64ab6c2983d79d997451eca legacy-trunk +5025 85c0819662b7b49bddce445971c6820af28a3b48 legacy-trunk +5026 7fbff52db08774df94d1496a4eefd0f300b62b95 legacy-trunk +5027 912813d573b42ffa223a95766c8f371d449ada74 legacy-trunk +5028 919c53a35efaead3e9df8e093cb5d1276c73a36d legacy-trunk +5029 b5963c4b639ad149717136b6f377ad30e7241e2e legacy-trunk +5030 2c61786327cff054d37d8b9887e0e8a40f671ff7 legacy-trunk +5031 7a3733732901c119e5f5a69098ff161263c64edd legacy-trunk +5032 8be4002b50867c187f3bd0e7fce29de5225eec0b legacy-trunk +5033 1807864a75f47143cb30c48758ddb650deb13de4 legacy-trunk +5034 ac13caa79e3ca6342855e103bd7e49e4af0ff3c8 legacy-trunk +5035 0baeb746a8540329c741251e3704c012c056304e legacy-trunk +5036 f0b7872da6891c05d67ba8fbd44cac4e90ee7cc3 legacy-trunk +5037 9677eb105fae824db6c087ce60470e234ee3221c legacy-trunk +5038 f47bc55544185a5c09b6337434519c1703036406 legacy-trunk +5039 498dad8045d34c86bd65edb63b7ea56cb394715b legacy-trunk +5040 0ac27ffd05799c3f1dd867becd5181b89a61c79a legacy-trunk +5042 bc4b3fda6a8078dc6377faac9fd0b02e8a3b4558 legacy-trunk +5043 91bc907b1e63cf082f434710efd28d7e78321330 legacy-trunk +5044 4d28b655b728715e42b3a0ba81dcf85e9154d3cb legacy-trunk +5045 3770e434780385ef9268546d8d867c6d14dea758 legacy-trunk +5046 7914915729e3d521b713f820afae6045e66eaa74 legacy-trunk +5047 4b6c0762d659b4d61e7c29dc5bc31338156986b9 legacy-trunk +5048 7042aee6409efc7820fd3d18fa606bb0de479345 legacy-trunk +5049 ae131b8b4e319dbfc13d8739b93f52ece2901dd1 legacy-trunk +5050 d69954e1f5d418f4fdf0ed23f512b5fb598adb4e legacy-trunk +5053 bbbf17640c6fa15cbc5963c75819025af3ef3d16 legacy-trunk +5054 d5d27dad7feaf5d6f539abe303a0950946e94de9 legacy-trunk +5055 5d0938350ae8e8d87cc8761fe8abd37f64b31477 legacy-trunk +5056 2a3e489722612f9305c19e59bb758279f857c77b legacy-trunk +5057 763eb47975dd397e936e472f7b09f53cc9e17a78 legacy-trunk +5058 8df574a655ad6c3cd5b83e348d89a339e860f22e legacy-trunk +5059 ce9a7507e1efeb710356ca8e55f8ecbc1c64482f legacy-trunk +5059 065e31cf5862e27521cf5725b003aed211f091b2 legacy-trunk +5061 31777622ae93157a20108129149aefcefe2c8edb legacy-trunk +5062 cd5a96f6239bde452a20f7710bf7a4bacd962c1d legacy-trunk +5063 b281c3c863ccae4edbd1c6958f9d33aa703df730 legacy-trunk +5064 bdb63a79755554784192402affcbce437a7114ba legacy-trunk +5065 588cd4343eed1fc273609f70411a03c84c655fb8 legacy-trunk +5066 35233640479b2ebc8bb2d83dd7c543492f776e54 legacy-trunk +5067 bee2aed416d624427ad0af8ca3c36f21da1cf51a legacy-trunk +5068 4084ecf276cf0f5e46c8822f06ae4036b62c1552 legacy-trunk +5069 c52b5c9be7e217f424221f8e259c90c9f57a1938 legacy-trunk +5070 29b90a86ac96d8c88c33f2cde25507acbc2dc189 legacy-trunk +5071 17c925f0060b8c719659eb60bd0e8760cf8e1bd3 legacy-trunk +5072 1c814783efc18500a3022ff57a37ef7e5a644b84 legacy-trunk +5073 eeac170f5f2ff8258c69d88237a5a7fc8c6e981e legacy-trunk +5074 7ef72873e4d68747f526c78898a89eed398cbfcd legacy-trunk +5075 b02573eeb1828c6822db28a351ceac57e6cb1cbb legacy-trunk +5077 01687ce437082a55b7ecf006432800fef5574cec legacy-trunk +5078 ca6b60d4ea90637c676b10300080a7ce94acd3cd legacy-trunk +5079 b368be7b062a5302a2d06b93e467f72f0ba8c97a legacy-trunk +5080 f7049d4653657698d98d120effb1ae5af62d0374 legacy-trunk +5081 bc326074f8614e81b5bdf39f09f44a29c9ca8332 legacy-trunk +5082 a92dded4a7c4dcc624a680c008deb68c97abd4f3 legacy-trunk +5083 ed30bca184bb81e23a8faa9d9bd80bcddda046c1 legacy-trunk +5084 6cc637c60ce662afeca22823f96a6a2fe0faad7b legacy-trunk +5085 da47b4146a7c87ced4ca484d6f536cfc2f969928 legacy-trunk +5086 bd05dcea7b09cd747497cec3bee60723240952df legacy-trunk +5087 2f9102f57143f1d6fd462bd958e5c5f14c092754 legacy-trunk +5088 61e3b60aec4419daed1e81f3f267b6bf62da9658 legacy-trunk +5089 83018aa9b17c956c54868b3364a7c14ac4634d89 legacy-trunk +5090 6341a4c0082b349375171d5bf099cda6eb00d206 legacy-trunk +5091 5a337132097545eaf2ed2f5fb49479b34fd88aeb legacy-trunk +5092 dbb41712165be4fa42f0de787112dcb021202bfa legacy-trunk +5093 e9ea05702676e7bc81da6599c13f320b8e56c0f8 legacy-trunk +5094 7c92d44fa6fca510ee1a994e98665e44260210e5 legacy-trunk +5095 175671cc21d8c644ced17db7ca725481a4ecb9a4 legacy-trunk +5096 6c89df576d91afadc7371cc93d3969fc733c71e9 legacy-trunk +5097 912317a37e2b385617ebafddf69cf3a2a13272ea legacy-trunk +5098 75e9e56b5f9b1a0de3e024efb46d093ef2deebde legacy-trunk +5099 22912f3a889f12ff607860437d8a402fd1e214da legacy-trunk +5100 f4ef3b2126ebcbdd65b6c965144fb30f2a4611c5 legacy-trunk +5101 6f396ce5255d08f1a6e390dbf8c3ddb46a4456ab legacy-trunk +5102 67ff9f47ab36fe9b9801f76c9f401d02e7929ab9 legacy-trunk +5103 44087819148e2776788ce8b66b95029e3ed065e8 legacy-trunk +5104 68c7a0a61fd581c076cf8ff8d1ed8f8e237173d9 legacy-trunk +5105 f11ba9cc342f280caa87fc1c198aa3ceb159a0e0 legacy-trunk +5106 f5c40869da10658ec103170c7c39624180034501 legacy-trunk +5107 f98a2233b337b4953458b7dcdcd564a5d23e45f7 legacy-trunk +5108 5134c009e1a4fe583dd9e0ee7a71868d87014b6c legacy-trunk +5109 d9e4cbba958c06918fe16fa6acbfddd168c34a01 legacy-trunk +5110 7c69c4aecb38cb455e739bf1906e2b277167f0f6 legacy-trunk +5111 f876cd5c4417d750095d8009f7c2dc8f15e25eb0 legacy-trunk +5112 de297cdea34ee650e21e2bed2e0acbb4cf6fcc3a legacy-trunk +5113 9b7e6d9a528da7c88f3f888a64b0b858a04f4bdb legacy-trunk +5114 b7e8bc002a2430cbcf456f6e761828faa3eb93e9 legacy-trunk +5115 063a96b49b3e62a94821bf36744de71b991e6e10 legacy-trunk +5116 606a097dfd002c4a086b151e8b22701b7406ac73 legacy-trunk +5117 84e2260db1799b350bb28966834f9b764b17e1fa legacy-trunk +5118 d6350a318997882c69fc76b8c8598a653f696f1d legacy-trunk +5119 e3ecc4018989ae3811b72ad1b3cd1f50e4cc5e45 legacy-trunk +5120 f4b3d68c712442cc74b85582e55b31355ac4cda3 legacy-trunk +5121 db3dace278ac0188deeac00a19c466a5c7b1aa86 legacy-trunk +5122 9cf604a3411e945b9f4e5d623fbbbb6b41e37404 legacy-trunk +5123 841f72dc54424b3def3660b5d1e8f234236065a2 legacy-trunk +5124 3a3df231327c1d0671440835601c8a4de10cf255 legacy-trunk +5125 266ad13287a4e0ca598cf22815eb13dfcfc869be legacy-trunk +5126 4eb6ddb9e961c9ab5ba26a11d3d13a9e46dda581 legacy-trunk +5127 b4fd48e3a3b89b2ad94fe7955bf6cc91a62499b3 legacy-trunk +5128 df3e1e521fe65de3f0d7cb306dde70c25f2e3ba5 legacy-trunk +5128 e72257e655454d569468da8b1189e0ec336f3536 legacy-trunk +5130 513f1cb70ce6a9ecf428a7e9a53243c29c3eaae0 legacy-trunk +5131 2f8e8b6129f73ac7a2633fd2843add7b52101ed3 legacy-trunk +5132 49183938d07e97b4c3ce2d6554915fbc67fb8d7c legacy-trunk +5133 0b7e14bb54ae0eef107b9832c9e488902569f060 legacy-trunk +5134 e2dd78197596bfd18bf3cdb89f41bdd0d4c762dd legacy-trunk +5135 34eefa226709aa8edaac6df4bd4d3f6fcf978e58 legacy-trunk +5136 c945735a4ad70f4202185c02bdc7058a0ee54328 legacy-trunk +5137 d24190c65b51f0341d7925eec9edd73efffe287f legacy-trunk +5138 0fb65520fcd012a75051e5c1dca0d930ec5b65c1 legacy-trunk +5139 4c80cf02d1540c7895041de66800e9a7cebbd1f3 legacy-trunk +5140 493b871f377547c6ce3ebc7775b69c9ddebf63ae legacy-trunk +5141 318172ff2f14c6979c0966b9fe39df1ae05c016d legacy-trunk +5142 107c1800937e3f471e3932e3f2464bcc0cdcec85 legacy-trunk +5143 0b6c8a7e933a66eeafb65a7edcb66fe2eec06fe1 legacy-trunk +5144 0e9cae0b5072d68820dd09f497ac21bed32bec49 legacy-trunk +5145 9e9f22dbed1af04e097610da639c3c26902ab6fc legacy-trunk +5146 d4644d392a8fe68c43b3c41b4c408f9b3854bd94 legacy-trunk +5147 2d9b16527247dcb3a357b0c0e18d026db5faba34 legacy-trunk +5148 690e46f0bf59855fcc8992669efc1065c45fe572 legacy-trunk +5149 1a481a75af45f12928633a2007f2385afc76f208 legacy-trunk +5150 89292f6a258dccfe7c2694ae68ca12d09f522fb3 legacy-trunk +5151 210821fd5650947ad008c64fba90ed0a56bdec6d legacy-trunk +5152 4b57af1ba297106cd7ec58b4018d0dc4fd8f19c9 legacy-trunk +5153 9bdc27d151baa6b5d4bb0b9656176e9933d98bdf legacy-trunk +5154 347cf0e492d811d50c5c280c7f6501339d6b8a5d legacy-trunk +5155 7335c5b3b43bd244b291a5ab8bb9f541307679d4 legacy-trunk +5156 c1f48858f1860fac30e655855cb09e62e04325a2 legacy-trunk +5157 925d1bfcd92593d0aaa4609e621398237f7990ed legacy-trunk +5158 e1d23a6b930b807a47ed0bf391d9a0a43b5b885f legacy-trunk +5159 1af9220c6d19d946f17cb9b99b28e04a4f5bb90e legacy-trunk +5160 1157e14270d68769d78959b712f5b5133bca53bb legacy-trunk +5161 e0393657ffa4771dd3aef4d780fd52141e5b1943 legacy-trunk +5162 06235fdc1aaf3bdc756670efefb69a14e0f20009 legacy-trunk +5163 3ffb31cc8a9b3a0fac3ae488d344133605c247fd legacy-trunk +5164 538ab82f91a72754164804cb3e839d549f077a40 legacy-trunk +5165 6d93b4a0f4ce7c7e8c46780b2a953889a79c410a legacy-trunk +5166 2f42e27382e9d2368a3f5f3d800d926e18321550 legacy-trunk +5167 12d8c8385735fcab3fb59b6833ee404dad733772 legacy-trunk +5168 1986b869e3a13122b07a9d550642a1e05a0b83a4 legacy-trunk +5169 f12ff130e0b5f425459f0e70b6615c0de44924da legacy-trunk +5170 7973f538726caacfe67674e99c7a40a1dfd67723 legacy-trunk +5171 9ed45dbf27658a0af89bc5c2b4f604bfeee272e3 legacy-trunk +5172 4e076944488aab84eb3b8b02a79f8b1360b3c800 legacy-trunk +5173 1306e761a62383740a59f639f18779dbb8b6804b legacy-trunk +5174 373c1637d30104e7cafee1d21f5620ed34204b27 legacy-trunk +5175 500323439eb39b3f700a489371d201b1544a8311 legacy-trunk +5176 b689e6f92f17a11100112e33c1049e8d67d5cb82 legacy-trunk +5177 9feb0b0b50b60c40fe752524337c46bd45cb272c legacy-trunk +5178 74747bffb6a4d27c86490a0da9628ef54882b0ae legacy-trunk +5179 cd9d86ecc175294c6c19d893d14b0e4ecb4fc006 legacy-trunk +5180 75afaac8556707cf03d57f99c55671b4ad446f4f legacy-trunk +5181 2a31876f710299056f02b13c87085ae6b80913ba legacy-trunk +5182 19b1195a3af847e1a96d64529f38e3e58532b879 legacy-trunk +5183 6c864ad519a3684afa3bc7197db5a442e2b2134a legacy-trunk +5184 889c6da7b4ca5119df7daf302436f6b442b24d0f legacy-trunk +5185 6267a5f222bfded5e393e9a8bd1faddd93eb3525 legacy-trunk +5186 abf116db523fe4db9b8faf023640950b147929ab legacy-trunk +5187 364d4a524cec821dbce73e691c49ea2ecc7c82ae legacy-trunk +5188 a5ceb3e93fa12735ef1a10cf285fc378e6565875 legacy-trunk +5189 a0fc94b3bb2127042a1d0c6c5a38ad8ffdb81580 legacy-trunk +5190 6a9ecb05c679ed8c4bc570d7bfa9de5872bfac62 legacy-trunk +5191 8222041f5a91d54384898a52d47c083d27dae2de legacy-trunk +5192 d03ccae170eaf2829cf83bd49e67b3354c1c5b23 legacy-trunk +5193 e880c0164aece226b64d66732a3c814478c7f946 legacy-trunk +5194 c267e33120308a2ae219c577cc56efca20923a57 legacy-trunk +5195 5af6db1f6c0cdc42adcb5051f2ed08f572f6f73a legacy-trunk +5196 10e105e4cf9c3b8f0450adb78a4780f0ef3888de legacy-trunk +5197 9f82a6bb0010db62cb88508e9e7728a5810a4582 legacy-trunk +5198 daa150b3a6e43e12b3e159b4e50c95f95ad4dac6 legacy-trunk +5199 dc64df7f1ad6900f561d42f2e3091e99d85c2220 legacy-trunk +5200 686f4bfb4da62289c07de2d0a114b75cb389fe6c legacy-trunk +5201 90240e819becb991c268e33a8737359b42fcec0a legacy-trunk +5202 37c48fde61b8ed8562e63508a5ad80243bd0bdaa legacy-trunk +5203 3cf896d24e50dbb4f7402a135e05f8cfb57466bd legacy-trunk +5204 7df6fcb426f51479b9e0574e6e5ddf8bcdec340c legacy-trunk +5205 80b5c82272a25c1ef851314e1bf92d2859446aea legacy-trunk +5206 3e370a4b103be2079c7e2b8bdb5550f8aea79735 legacy-trunk +5207 982a5bd6d46d07670f208b8c3f35d080e7fe2ed1 legacy-trunk +5208 a827801ed963384eab16fdfe0ee3a3c19c1fbe98 legacy-trunk +5209 f1879b1a2c2ae8db7f39508cbd0095b94a809ddd legacy-trunk +5210 4f1b0cc73507d67295995c590e6054a0184beafd legacy-trunk +5211 3d5ec1c22055022156e8fee930635dde6308b144 legacy-trunk +5212 853c486893b82ce95cec10be4f8fea7d4e41490a legacy-trunk +5213 e41669a1dea024d9bde022c7f3b59b3c250e3375 legacy-trunk +5214 39cd25678b41acd416436e190aefd0a5e47723bd legacy-trunk +5215 9516bad979613129ed60f071b369702862613618 legacy-trunk +5216 0af01f3e06cc9e4a3355f955531ec2df92df6db1 legacy-trunk +5217 ae64003b2a75651c4de7aba0f0ea567b02c92549 legacy-trunk +5218 354ebddd362b04c76ce37521898ffde0bfe68243 legacy-trunk +5219 4b74b3b43269b71f4b660f85bbec2d336addf5fd legacy-trunk +5220 a1087aa641cd95f0f0803f01416eb02e7c09c619 legacy-trunk +5221 4389a60fedce661fdab770071f8a8e44f9cb268b legacy-trunk +5222 52156352fdd6d35cdf9f324a8dc85c9d853920e8 legacy-trunk +5223 6cfd69585636f02efec39ace35fc14bd8b8122d2 legacy-trunk +5224 69aba6d9d3783526e34acf74d020d28e6ef86ae5 legacy-trunk +5225 aaf902cdfdc4a2a2d7ba5b31edcca9935e04490b legacy-trunk +5226 1b9e90353529119216133bf12fc04b73584759c6 legacy-trunk +5227 b40cabfdc91de25bcefecf26d8a7982fa46b1627 legacy-trunk +5228 be21c3e0cc03f48eb6aa4a20ad4c5c410162ea13 legacy-trunk +5229 b9548960f9450c9ad09bd7bd3cab9ceb9f391b37 legacy-trunk +5230 ac6c8b1219e671cd455f9785a554460ae2d6e41d legacy-trunk +5231 6d8d981ef6c4151c366865d61b45d4c60419e9ee legacy-trunk +5232 fecc939f4d5957cfb7b1e60b5d541c5c99781f28 legacy-trunk +5233 8ece9227fde104d9fed2aa27c308eb2d29f09762 legacy-trunk +5234 a0a4afa39d7a01cd4f365a4b8bebd15e988ce68a legacy-trunk +5235 6a1656db7ddeecb59f9fff2ced6a6262b9543410 legacy-trunk +5236 dc2adf79e523e102ec572fe8c47479455f6414b7 legacy-trunk +5237 0e5dafb85fbd2bb63b72d29feb97e9a65989ace0 legacy-trunk +5238 35432c9a874e2c0d1c6fee96ce4b5e7def12615f legacy-trunk +5239 1a3ff0148decd8ff646793e4a655a16438756909 legacy-trunk +5240 b735d3386651a057d7b0b8c9dd56b230249e8eba legacy-trunk +5241 fd777af67c2310d3cca91832e49eecaf002355ef legacy-trunk +5242 5bc0edd5b3f932b47d48f602daffb2667f8b36ef legacy-trunk +5243 bf1ded75962d620615575df1164e7975aa9f8560 legacy-trunk +5244 17fdec2fb309a91eb1aeecf159580238b8147dad legacy-trunk +5245 af7d0fea3fb2a2c2ae1e204875eedcfa6dee396e legacy-trunk +5246 4113f4fbaae537202d09a16e294db9d7fad3cb8b legacy-trunk +5247 1203e5842255ce64ef2f3ba9fa276141e29438b7 legacy-trunk +5248 a5d361e2b2e20c6d0bcd50593fc814b88a462c4c legacy-trunk +5249 9ec44e37f6b133c36ac867be30445a2a2c3b1594 legacy-trunk +5250 3b7fa56a3b9bcbfb63201739d08746cf85d04e59 legacy-trunk +5251 50b2f82e6f0ea47adb972133186e008c6309c715 legacy-trunk +5252 06f228d6236e4cf9adf68be8264f5486bbf07f9a legacy-trunk +5253 7c3e4f3ee152f88c491653e9d7025f1420158a3c legacy-trunk +5254 9aab4eb2b3f9837b8dd488c68dbe901b7d8289ed legacy-trunk +5255 41565456bc221ccc59adb4abab80da55a09726a8 legacy-trunk +5256 24fc0616a696c829949f0fe2967da05aa9c9ea66 legacy-trunk +5257 baf0b9b7c2a5aa6938cd6a958b5a80233887ed23 legacy-trunk +5258 af3aab6b07c43a954e72bb514813c542c05441a2 legacy-trunk +5259 b8937e74fdf551c0321232fb34a30a65990d4efe legacy-trunk +5260 823f3a8ecfe41934701bcf38b47c12cf8cc89a67 legacy-trunk +5261 ea38c363de58b75b49e036dc027f11ece5a76eb5 legacy-trunk +5262 ebc1714dc738bddc2444314857282509a544a94a legacy-trunk +5263 7f2c0e7ef84262c5958646342f868f3338cab0bf legacy-trunk +5264 59c2acb3e7025463f99dfe3aa7e35ec396b0e584 legacy-trunk +5265 4a998b1a331f0ae9f0f30c7b1e3875a055ca487f legacy-trunk +5267 ab3dca97ffbeb635a16ec5ed38ff45f62f88808f legacy-trunk +5268 e911f2fb179c2c32caf9236bbe22cdc23ad5a1a0 legacy-trunk +5269 750a2dd8a437bfc8bd3199c8d7003c2b4549cd11 legacy-trunk +5270 a2363b6e9c86e9abc53693b6b5987079dea2d562 legacy-trunk +5271 60c57777366f755a97148fb50c3abb0d9d8db8e9 legacy-trunk +5272 b7a06db85cafce413d0c55dcd925af1d6cf2781b legacy-trunk +5273 d76a714d1ceaaade00780814c3c72bb930d546a7 legacy-trunk +5274 5ca5d77afd28bac737eb0aab9785e431eddbcb4d legacy-trunk +5275 9318ac51691e6d86384ffd4430d2164a2610d344 legacy-trunk +5276 6ffcbe0fe9d3cd00f2fe32983687639119c2f9b8 legacy-trunk +5277 fc2190ec1bead287bc06e18113246b06f9d69f16 legacy-trunk +5278 07fc4fefb68375951ee760c8a5153c2346714dec legacy-trunk +5279 fb3daf9b2456dc1a3d99f56f78c5e6270eeaf1e8 legacy-trunk +5280 999b5bdc18ce996b02a076aa7c0bf0a953ab1451 legacy-trunk +5281 c6fe80ce7c2093a1aca55df0aa2cce05dd9399b2 legacy-trunk +5282 1e82dd6dfe2ef416f4b8a28af84ff9843bcba02f legacy-trunk +5283 c4c39d171ec3b063d6dbda268c2b1f55f957e282 legacy-trunk +5284 8b8fb24d483794f2e93031392e93208311d9337d legacy-trunk +5285 c9b7297a0758720b7ca4325e0e4217ab129c0799 legacy-trunk +5286 8225c6581b3d36e25ea106d24549f98b29944b86 legacy-trunk +5287 68d7eae6cbd6c56751049879618baba524952b3e legacy-trunk +5288 43ccfcd98e806edad3faaa6b4f95c4a7bb327b93 legacy-trunk +5289 407c7846b886b858bf880384a2f2b386ea6d22a4 legacy-trunk +5290 282b0b4c1eea590b90a5ff109f36c1d61ece5375 legacy-trunk +5291 65c7105868f889964e8e47e3812e672b321e293e legacy-trunk +5292 bebb0ea7de200cec3bfa2dfea3c58360bf857fa8 legacy-trunk +5293 cd9e6135244a57090a6729f1b523883645d0951e legacy-trunk +5294 ff1faa4cc1dfbc89b7aff89390ea364baf02076a legacy-trunk +5295 59a9689c11a8b014518cc430ac25e6a7f21b157e legacy-trunk +5296 943e1c4804d800635ac97653e1fbc3ba9052030e legacy-trunk +5297 bd79cd768ff880e71de8616079f320c9a6f84534 legacy-trunk +5298 eedd6c1f3ae7e4cbd36c96f8d199a10b2c59ebf6 legacy-trunk +5299 1fd8f316cbe90f89400c8853b9187232c00f770f legacy-trunk +5300 1643997f1718aa64f5320e4cc77ef25239f96123 legacy-trunk +5301 4dea3f5545cf3d9352fe419909d734405c6fed3b legacy-trunk +5302 7c7b3704a68fa2110c0713a28535c117ebe8c9b8 legacy-trunk +5303 d92ef94afefbecee66b8111391848eb260f17065 legacy-trunk +5304 b988a4aca6f960a28b295cc8ba19e562d8909050 legacy-trunk +5305 9b1a326727dfd770aaea07d04b9f4c1e6f8f38eb legacy-trunk +5306 2c73c8ab8b82ae82d45f81e830438a580b86ec81 legacy-trunk +5307 d5398acafa2ccc93eeb1563a5d4a0ae1e8b13281 legacy-trunk +5308 64928f6a8e80e06ce24019b7dd7a61be8040abef legacy-trunk +5309 420874f7d8bd1ff0489b46a2e194fea380af6221 legacy-trunk +5310 8d92a3bb9c1ffadcb7c21a1e5a3dee249c98b77c legacy-trunk +5311 0261bf5b3819b03d83f254562947244634604026 legacy-trunk +5312 051bacab59afe25e306983fe40b61dc152f8fba5 legacy-trunk +5313 eae4b2ba722eb4c84c3dee9e314d1589ada583a1 legacy-trunk +5314 560acc25f89660332a2db066931a7f04ea0869bf legacy-trunk +5315 4f6d5fe198122f3d62dd66ac96a796e16f4d231d legacy-trunk +5316 97cfc46e3302c166d57bd35a9b93ccab2d419ecd legacy-trunk +5317 e3795db4adf898fc23e85e2a5f2ca6f144fba08c legacy-trunk +5318 beeefff1c44265336421f0dafc7d4b98fe8a73b4 legacy-trunk +5319 1eeeba09a3064971aa6d3e1ccb54b933882dfec3 legacy-trunk +5320 d42941d3a95f45f662b477b763c583ab9dc2e732 legacy-trunk +5321 dd8a30e5f74434c289e6511ca6831f04582260d5 legacy-trunk +5322 e6bec149a8d72397ef5e3b9deb51c90c4c0ef203 legacy-trunk +5323 a7af970a94a4272bcc1f480d5444c8f1c14eb825 legacy-trunk +5324 eebbdbee54f90207d6f39f2d4f7334dc831a2570 legacy-trunk +5325 eb1ed4d846290d529ca187ace9c8c4abd91b3c6d legacy-trunk +5326 ba2b30972ffea735e4795b9cd6ca262d4e75d98f legacy-trunk +5327 6ae9b377e522a4ed020a18b56889e5312f0b130e legacy-trunk +5328 dc6b3e76cce6642777e0581d49639cc1d00ab0e3 legacy-trunk +5329 df8ceda84545e7503c08cfaeda5f3eac755e570a legacy-trunk +5330 10e007aef1cff130a7fae4c061fc65ffa84739ea legacy-trunk +5331 5f951912e99590cb4f1f09ce22ef4ef5851ddf14 legacy-trunk +5332 d40290e4245556e95743a06d4a541a79ceeb0786 legacy-trunk +5333 14111d66577dd5464af7e8992314646390da1b72 legacy-trunk +5334 a169e68734ff10eb14f764e9d6d7dde77bb8df41 legacy-trunk +5335 f657d67812afae8d0258da41607dd3fcff59c4c8 legacy-trunk +5336 b9a62501e76dc89e99ebfb2d686021c4152711a8 legacy-trunk +5337 520e1855a24d90b21d5cdc2c660839a9affb316e legacy-trunk +5338 0534025cefe556fac7ec34d479039ecbbbf52c76 legacy-trunk +5339 d3b07ba3e12df3b82761451b30c387a6c96dbd40 legacy-trunk +5340 315760ba0041d04cbbb75e321d286d4a37ffe925 legacy-trunk +5341 927f4839fbfa148c57578003969c73dbc873bb92 legacy-trunk +5342 71584fe7749c35fd8eaf577ee56abcb3575c1ae7 legacy-trunk +5343 85140b3548901f87793598d9f2094bdbdfbaed7a legacy-trunk +5344 beeea9757879897899bf2478db1e2d4ab182026a legacy-trunk +5345 5a5219c8c2e674fc40fbfcbc071b076ec1ba3249 legacy-trunk +5346 3637da4c98cb310147f058eae360de98832fd309 legacy-trunk +5347 6f1ddf113982ada18a6b38b9e7ffe7621684f3b0 legacy-trunk +5348 a0e8246d52378d51891e60a069fcebc6aa2719df legacy-trunk +5349 f88bccb548ef4c1554a4b841170127a068e6167b legacy-trunk +5350 51c9cfff31f3e17ea34721b000bf6ac83157da2c legacy-trunk +5351 e006ed88b4aa467ded7baa06019d5982d32d82f1 legacy-trunk +5352 363af7e3ed2d23cb79b5972be77ba2fcd582fd41 legacy-trunk +5353 21e105460a4999e8bf17ab121f6f0effb745e540 legacy-trunk +5354 ec0b42889243a7f9e6bc75682023bc38791ec1c7 legacy-trunk +5355 6abd14485884f61b8d118b6f31405f3d1f116882 legacy-trunk +5356 e513f0d65368c1e581ad616afd4e90c953032bf2 legacy-trunk +5357 04e1690fb4d1174962b37a61dc83348fa43f3ded legacy-trunk +5358 964d76f49a5eca95e8ed235597e77e4ebad39193 legacy-trunk +5359 33b154b6c61bb9fe9e48b305754151d682c081e4 legacy-trunk +5360 450ad5496407701defc808515debab0310bcc249 legacy-trunk +5361 4095782c940eac40e8ca58140b06d4999ccaab03 legacy-trunk +5362 81b41324d26eb8e46c16493d1071a443fb0707d0 legacy-trunk +5363 f0d9f800a4aac7ada1eb4be1f7a95bd08d4810b7 legacy-trunk +5364 4d69fdee9f5d429a840a1c161272030a219697e2 legacy-trunk +5365 56e628a77c8d58a300933df4bc4d4f3c37447956 legacy-trunk +5366 65f06fc399600b05da4f1bfa196d965cccb148bf legacy-trunk +5367 0acbd85bcdba3653881a4b009aa646ea5b0d43aa legacy-trunk +5368 57ec24e0f35a80f0265fe97834e2e6c0ecbf037a legacy-trunk +5369 13581b417837b845bcb9090609db9a733a9a6df8 legacy-trunk +5370 738c74615ac4898acdcf03df7ebcf92b0b301aa6 legacy-trunk +5371 024fdd9ccdf240bd54febeae12f454512ce07750 legacy-trunk +5372 0afd42960a1fd360b0f9681a136d66e8869ab3c1 legacy-trunk +5373 21435a0b9b116a4983f8f35ee3ba6a0f3b2bae76 legacy-trunk +5374 8957bcebf12c4fb296afe2435e102eeaf90faa43 legacy-trunk +5375 619f31658b3ba7b1aa0f301c49a3587bcd8c6429 legacy-trunk +5376 f9b1069a3e265d90defbc803763df81eb87ea400 legacy-trunk +5377 5a2612fb6c0e31b07e623b5d46b5a03d227d0af8 legacy-trunk +5378 429d7e1b1f2b8c3682cb48fdbb1d7e0e00bf322c legacy-trunk +5379 df7b15c1e8b796ff4bc271ce9d3552da31572888 legacy-trunk +5380 51dd065a97a614ec20b0819a8603fe44031b3d3f legacy-trunk +5381 e16e18b9626c8f2eee1aa6b78f78c0982d8ee7e7 legacy-trunk +5382 4509dfe19b6860df1a5280d489f4a41663dad177 legacy-trunk +5383 764b0fc867a475c7b7488172e01a833e801ee1b6 legacy-trunk +5384 9fad029f838fd1b92f336e9ab436c6b0b9502fce legacy-trunk +5385 cfa9b3a84872eaf9d9b2671c0144e2cfd12f67a4 legacy-trunk +5386 811d9a98e18ab41627e38c1e93bc5e32f5121a29 legacy-trunk +5387 177f575708bb090b18d1961451164c45c09d63c3 legacy-trunk +5388 0c50ec8e8358e8d4a0769f22b74a4e570d857c61 legacy-trunk +5389 4f082be5902ae15386e1678548b39e137df1e4f9 legacy-trunk +5390 17635604bdce15a4cb2cc6159d0661fd38fb600b legacy-trunk +5391 44145eeb6100c9c25eae168793923a64162803e6 legacy-trunk +5392 5eb8bde300b7ede143ba2964f3aaa68fae0139b6 legacy-trunk +5393 4a53483939c1eb99291896b97a28c3d1e8322360 legacy-trunk +5394 0ad9d123ff55df349524bc24232c5a967529b21d legacy-trunk +5395 792e39dfe21616a642c5414d59b2bc5f4c9c141e legacy-trunk +5396 7d1ecec25c06edfa4987971219527d9975f8c64b legacy-trunk +5397 7392790328bbf3fd7fb30062c37e727beee45138 legacy-trunk +5398 dce9155b0401ed87fa44985c7a033729a2d023c4 legacy-trunk +5399 efbdc50e7f54c53b7274ed33e35ba4ea5f951da6 legacy-trunk +5400 7e1265312dd42753c86ee063ae4a6ba73f657606 legacy-trunk +5401 cb5ccbba18568eb3882304e2a13e89172b6922f1 legacy-trunk +5402 8aab83cc60a041c07667c6336d08bb8c0c3f35f3 legacy-trunk +5403 0970ebd31536744e389f3712b48272d8ac5d0904 legacy-trunk +5404 1d8626bc99c710291b5005524735342b759bb80f legacy-trunk +5405 f017f5cdb4bdb28549e8924f6248473716e34648 legacy-trunk +5406 4dfdf234cda8f5033239a6c2dec8d4bb4e74ae37 legacy-trunk +5407 7082c1a1f9ab986fc124c8fd66ac1cc650e37f9e legacy-trunk +5408 97f7cfabe07e7a940dca5f91cd82bd96707e026f legacy-trunk +5409 3715206397fe9060bd48272d2eb43fdad6ef0be2 legacy-trunk +5410 8edbeaa2bbf7a702eeb3847ec0e209e8bef2ec63 legacy-trunk +5411 c0997b462344b4066290e1089e210c1e3d7acf4c legacy-trunk +5412 f17b7d0a748244e974f7c1068ce0a23160647a37 legacy-trunk +5413 10c1030b70ade8f013f513909a012c105053ddb9 legacy-trunk +5414 a980d076052dabdc1972e1868e6c085ba330ce5b legacy-trunk +5415 3029e81edbc775b967110245972ea7c9f1af899b legacy-trunk +5416 bc0803084e60a95bd7ea37a01058ef7e0fb71387 legacy-trunk +5417 a1a9b7364bc34866cfbb94679fcf72bf26443d2c legacy-trunk +5418 11d89914c7b9b1f3f5f9cb30e52969e7acff4907 legacy-trunk +5419 21df421f03fe0d968e5207f588e6c0847c0be642 legacy-trunk +5420 45ad1a93986a0ebd2c99064349b32c4e5caac063 legacy-trunk +5421 c5cb3a53933c351a3c43f1023143e5315d161136 legacy-trunk +5422 527d1b2925250628ebcdab58da99b1bf43d83e5d legacy-trunk +5423 4d7fd9ff798d551995dfd42ae4f6758038c3c3b5 legacy-trunk +5424 cc9222b947ee0a1475e4faa4d636ff1c1e6cf105 legacy-trunk +5425 4f9d4e73057c7632390d6de819852bbf950ccabf legacy-trunk +5426 eb6eb61b606ffd3256996ecac6df12d2c779e190 legacy-trunk +5427 f3f7c01bc966cd2781ff2662fc476606b6bd2e21 legacy-trunk +5428 1c919d02a645975484bc782cac361defd25a1a70 legacy-trunk +5429 f72abd62d5083f57d5faa0662ad88470d0990622 legacy-trunk +5430 0235273425996a362d59a0baee3cab4a4ff56992 legacy-trunk +5431 122d149fa801646075684720546092e2d7ec3e52 legacy-trunk +5432 d0072d1df82c2b7f9de019efec094b281ed93e34 legacy-trunk +5433 f9fbfd90315302de3f91cbe67be44c7c473f1a45 legacy-trunk +5434 74953a41607c1a63e0a59319583c05a370c68980 legacy-trunk +5435 521306679e349efc2fbe10bfbb2060d01a3da84f legacy-trunk +5436 c00fae380dc78d2a9f60f53cf5e76713e1001b36 legacy-trunk +5437 cfc66b8ca2027001ffecb4387bed2810770ccee6 legacy-trunk +5438 d23d73b4e58a9ffb0c703a2d2f438976e2715286 legacy-trunk +5439 99945fda719db2221b4613408c102b9f9d9eb46f legacy-trunk +5440 9864fe059e0dc4c505a8c12026d7dae180d393fb legacy-trunk +5441 d1c458c87f4a6b0edfac6b46fb461b6054f3747a legacy-trunk +5442 82356bddf712cebbe6e317f5c731ef383120d072 legacy-trunk +5443 4de779232aa4c0a49d6128b67f3fa8fbfcc00043 legacy-trunk +5444 441866be2ec9916a20ad787919c4a3dd0af8c494 legacy-trunk +5445 7a67dbcb6d83cf2b0abf123d8df48aa9fbb57991 legacy-trunk +5446 7eea9b4268024b50d99d432bb4f1bb49f51bb605 legacy-trunk +5447 b6cfa063b89bb0bb13e7af28f9cd213afff27b5d legacy-trunk +5448 56ad247cbfcbed03c3c33f7a428902f173b0d422 legacy-trunk +5449 8d2907856b378470139c1fd652c3d3aad29e1bd1 legacy-trunk +5450 7b391196056415f526d4e1a13ebf7c4ae977b4f0 legacy-trunk +5451 4c1d809539509b8e6be724cd0309b6be4a1c08ba legacy-trunk +5452 0d7100ffb61a7e738afb10f919c5cc551448cf3d legacy-trunk +5453 7d268342dc3a3ac9a47a034c2d6908b9db45c679 legacy-trunk +5454 f933a530c38f17072659dc03a4da6dcdbf3c88d2 legacy-trunk +5455 2fe9d0371ecd0671bb95a31b32ea14638f2d8479 legacy-trunk +5456 04bada8d65de435d5386d8e5fdd0d7bf6a87ccf1 legacy-trunk +5457 9477a4457e5643315c22fde5a8d1b7964b2e3fc3 legacy-trunk +5458 448edc923cad40d7072ac6c9f7386eeabba18adf legacy-trunk +5459 d297c7220613584277d74c3407d4bb2474242919 legacy-trunk +5460 5d4749a470b4d0200b9cea87b8601ea4d5c08436 legacy-trunk +5461 ac0152f63bddfb798b1165e7e45def1c8df37dae legacy-trunk +5462 1a8d6c7dd560f1950e4cb6a7551ad364a4412c70 legacy-trunk +5463 513a96a5750fba75174ce3ae02d9079507e0e93a legacy-trunk +5464 d4ff47df5920dfd21468349ed4e3514cad203505 legacy-trunk +5465 9bca94a36a0810af204d68c069678899f2ffa1d3 legacy-trunk +5466 ba2fe5f836a83de2d78e5aad65e5f34d2abe0e4c legacy-trunk +5467 55895b5a3007b4bc91f30baadf97be8f2b30cc6d legacy-trunk +5468 d46d831bc5f30123d857c80765967bff90f68243 legacy-trunk +5469 5911f24bcc2de0370ea909addd9d9fa857ac5591 legacy-trunk +5470 8987cfa758bbd5b7d49800cd1877155878151748 legacy-trunk +5471 becd581609110bebbefdda91cf7fcf4184e0fc20 legacy-trunk +5472 ad6f039a5c4922f890fcc0401aa00f8506acd847 legacy-trunk +5473 20ca58edc85548c80b511a008c3d7a20003a4609 legacy-trunk +5474 02f2c518aa46b94366ecb301d8fb8afbd584028b legacy-trunk +5475 a51022f1980fd5a15d68a0e9b30ec1860400e09e legacy-trunk +5476 7fb6f20e2ba29444e2942a97a3bbbd58cc70d44d legacy-trunk +5477 6aa4e9209fbd8edb705b727f1db0843bfa81c383 legacy-trunk +5478 72a61a149e4e6c7019b31032c58de030f55465f0 legacy-trunk +5479 6b9cb66348975d24323be4cc32c9ceaa74273cb7 legacy-trunk +5480 210738866166122850ddd5dc3fe8e1201c7cc62b legacy-trunk +5481 5d3d297046d2c70319c2b30c66f680e45e84c4b6 legacy-trunk +5482 2671842c72cfc4dc4f4a1edba8cecf6d84062b94 legacy-trunk +5483 7ae332472629c4af915c2ba85fe98a1281d7a1c0 legacy-trunk +5484 7774400358133982e776a59d59044b210a35e2cf legacy-trunk +5485 27390b536640c51b4540afaa945aab5d0cb43498 legacy-trunk +5486 d295f4c98c8a6460e3daf602e81ba1b4d965b7fe legacy-trunk +5487 c7671c36c725e685b10ba3e739725c7773a69414 legacy-trunk +5487 e63d83f8275853aaaa3d1972cb86564505e65583 legacy-trunk +5489 c5d852735e7f7b490ecbccbc60fb63a97a14b7c3 legacy-trunk +5490 87847228b158d9971fa9ab3a25fe3c2267231dd8 legacy-trunk +5491 54aa87b1ccee459dd1e129edd499b33bdd9efc4d legacy-trunk +5492 3911d4a89ab0cad36892d36b7425ce3bdbefe58a legacy-trunk +5493 74c8fcdc97daa61aab34b4b7c94073830b18ba5b legacy-trunk +5494 dc4bec036783e6702fd902692de2c6a1ef4fa0a9 legacy-trunk +5495 7cd1da4064d784169322fe48f1ccfae70e03777a legacy-trunk +5496 14753c32e8b42a132eb173f759932d3170281c13 legacy-trunk +5497 405b473aa4a135c50f2efe81965b8779aba84a52 legacy-trunk +5498 9c49ace6b1e78f191065314fad8168224ce6d4e6 legacy-trunk +5499 3b3e680758332b8097a822def175d5068c652675 legacy-trunk +5500 47d8bcabd176f423ea2d2a7d6e498eb4fd29f278 legacy-trunk +5501 b838d2b952012ff1cfb6f65481c8c602b41dbc69 legacy-trunk +5502 ce5f0b83f7e9f4e0e6670f388ad50a62f90b2697 legacy-trunk +5503 bc8eeffd4d06876d2b728fe031c8977a3e5de168 legacy-trunk +5504 f8abc037b94f8cde491fb59e4acb7407a9e6db07 legacy-trunk +5505 43ea2c8b3286e8878248270e10f32e5a42c44d0b legacy-trunk +5506 016f3662ef9838bbc80bbb65ebd4c08c335c1427 legacy-trunk +5507 da6dbdfd51db1bcce71e420c06a1198c89f7c04b legacy-trunk +5508 6b9c575c0cba03824d3416d25cd65d62c89de8c8 legacy-trunk +5509 6af0fbc8553ab6b056480dc70b5f6e0cdc4164f0 legacy-trunk +5510 4581a0f0353eaf30f885d59896081f2df8a0fb60 legacy-trunk +5511 7e7bb00a0a2e25d95aff20d3151dab42b3341d57 legacy-trunk +5512 bda54ea23a80cc2e80c190bb5cd988be56319cfc legacy-trunk +5513 94835b3edf3e059d17ed67d75a79e9a1e03b4c8b legacy-trunk +5514 65ea78875bc812905f9b92d7c9d04671c083143a legacy-trunk +5515 01bc06c2e47d3bfca8ab108e56a71f9d29fe10ba legacy-trunk +5516 6c694ead1668753983e24ef214c20c6a899fe450 legacy-trunk +5517 2cd4cc065c1f6366de3100c10ebcc498857c487b legacy-trunk +5518 a946e4cc6d5b0170c0f53fecbe92f04bb23574de legacy-trunk +5519 fd50986f35e5ccda3862d5f7f4805e0df00059c7 legacy-trunk +5520 5b928b695fa4f7759dcd9d6e09940e3d37df77ab legacy-trunk +5521 2cb1416010b3361631b38e7fa50ea6a5984b2d30 legacy-trunk +5522 ed0874398433da8f94b4aa6fb340192796d1d90e legacy-trunk +5523 7e2c04e6f7e7170ba7e12b64ba4fc6432f36079a legacy-trunk +5524 24af8eab7b763bb49d274038faecff33e000c573 legacy-trunk +5525 d94b500cb98630683176e3b27ee74e70f518b02f legacy-trunk +5526 c12030fbb5b60fb5b97568d90dfbfa4614d6e454 legacy-trunk +5527 660e6f35991cba47ed973cff9924416a95ce32dc legacy-trunk +5528 dd54eefdc2c97f05d49eb743d467d80a3ac49371 legacy-trunk +5529 8d5179277858be9907a0432e6b040e636c0b7fb2 legacy-trunk +5530 b333f16fb4196e93deef4f9a8c056f08c2a05a93 legacy-trunk +5531 df7dfac30c3e3a918ce72b2bcdf26b573237bfa0 legacy-trunk +5532 a5768e4ee0453240cdfb1b0432252f56a45d0cc6 legacy-trunk +5533 134c6c2d1abf9c95d90aaf5ee8c16533cebd384a legacy-trunk +5534 6ec820db2ffaf66aac156befc3e166995d2ea1f0 legacy-trunk +5535 31c52a0a372c0eec75cc4b7224a544d1f97812de legacy-trunk +5536 328ac74f6ca69834e9e6597989b2ae83aeec6fa8 legacy-trunk +5537 246d5422124f999cd18ce19b91b6e8cfbf05e3e5 legacy-trunk +5538 fbb8eddc9309fb1e88206e928b53eaef5f027519 legacy-trunk +5539 d14cef14fbf27e70b82af18b2b44643295a5bbd1 legacy-trunk +5540 d6b130fa91b65d39f03ee21aa0d7158cb74ee3b7 legacy-trunk +5541 971e5ca18bd1d84ae36e96be938510e6c4475f60 legacy-trunk +5542 e429a7e71e0ccd22d111f6b9b7395a2a814cd2ea legacy-trunk +5543 699cf8b94f802e87fe83f70fc61c3550ef2904c7 legacy-trunk +5544 7226dd31755c703b00d0b008cf8b52a07e65f89f legacy-trunk +5545 e3fbced1bc09b318e562c9364f3fd21438a9167a legacy-trunk +5546 bfa427da580ecdf34b44bfb1e6012bb94f5eab60 legacy-trunk +5547 db89aab415a1b7bbe6c3455574947ec8428733ef legacy-trunk +5548 eada248676def63b807f606c820e2344523dc3b8 legacy-trunk +5549 87fea261a263e7cf1f9eb45c8b46f15b6743d512 legacy-trunk +5550 07cb50141d07072aa57aae4ecc5db009fef35365 legacy-trunk +5551 91c1bb75e945cf8cc96b2709817b1b9815327604 legacy-trunk +5552 a7c97c437191d44ccd130f7b879b2469d4c749f5 legacy-trunk +5553 d7eea9013e736288b3dfa7c47909318f3465d42d legacy-trunk +5554 31684c5bb1727ccb48663268bd3a31c51d6d0086 legacy-trunk +5555 75936990a330c0a44ecc8d5f473353caa23129fb legacy-trunk +5556 ef9ac6def71d3b6ec9389e2516f7e048078efdc1 legacy-trunk +5557 fbfa3d3ca4e09566d34f6beba100b8d4f20bfb4b legacy-trunk +5558 7ddfb629ac3fe90385a45ec0aaa08b4ac06cc43e legacy-trunk +5559 1ff12619a14c7dcfdd23e13708533fa49b5e28e4 legacy-trunk +5560 b3a8013cb4fa3675532e655185394c9b0e41a7ab legacy-trunk +5561 5a1fbd21fc2a5a5f8461d21d11fc5b17db5cf49c legacy-trunk +5562 c1d77d74fe35068fdbc36f4c7f8cef7be42ad3f9 legacy-trunk +5563 84104d6b4ae7edf0054bc6416ba9b791c0e6db80 legacy-trunk +5564 8aa6918a88c6b1541c7d0cd6f4960c44788fe294 legacy-trunk +5565 4c83f569b434593b38553240f51764be629af6d2 legacy-trunk +5566 d249111d4cccff6841fe880bfaf43bb43995b6d9 legacy-trunk +5567 171eef69a2cd087f63125b28b33b6b95f59c77f3 legacy-trunk +5568 237c3b2a61871b0757b58e82da84dd34cdcb5fa4 legacy-trunk +5569 692715abbd0bbeef6f1c3a472c76c90a57092b98 legacy-trunk +5570 e51e17b2d88b15d9a95986eb13af8a62d6d1798a legacy-trunk +5571 56dba037b8d6c65645c1f89bc78e21b1cd0dd141 legacy-trunk +5572 438f88b55154ad4c42c605167498243193f545cd legacy-trunk +5573 c41a8e50197343c97718f636a70516a6a7fcda2b legacy-trunk +5574 3dc9ff3abf361632decda19a61764ed1b8f5b198 legacy-trunk +5575 a8fcc511a89a8f37a9332c77d9278e5a1b11d1c4 legacy-trunk +5576 14123e08e887e4283ad6488a78464a05d70fa2d5 legacy-trunk +5577 5c0a7f7836fb1dbd405bd11a07484fad1ff98511 legacy-trunk +5578 9f76185c96937cf55cda8feb7e655f822543a53c legacy-trunk +5579 36f4d546991533c94a4026a0355782271be06bfe legacy-trunk +5580 af82291135bd06c0f835b57f40c45d7cf1015a67 legacy-trunk +5581 3aab925ebfb034e05cb79c01f574555f7f6af8b7 legacy-trunk +5582 9497cdcdb6aa51b4f1afe5bea88683e6301d0a20 legacy-trunk +5583 db139a4112f32f538c350d9dacc65f9434040657 legacy-trunk +5584 077399cc82e8ceb288b00557258b7a230df4f787 legacy-trunk +5585 e477094a8ca108820f8f43902b6c370dc47f46bd legacy-trunk +5586 1071d16c930c1d869ce18dd0ebaa4136f42b48a3 legacy-trunk +5587 4a12a543175d0ba9a93060cab3805103584c37f5 legacy-trunk +5588 c10f55b46a1151b1b9bf60aa51809fd6362f0d33 legacy-trunk +5589 2caa3e283568d075a4cd2066974e6044129f3a13 legacy-trunk +5590 93562dde224ab7d094e5c765846ae8bee570a2d7 legacy-trunk +5591 17f311ea0c9a07c55bd20e0b30d9f19b662e17ae legacy-trunk +5592 90566c9c189f32d1b7947c983ea586bffab2509a legacy-trunk +5593 e90643f33c64c12a6281cfcdd9a5ea31289e7f55 legacy-trunk +5594 8710d7149c6f1bbee15b27941eea3214e3cc017f legacy-trunk +5595 27a0769db92193340e677aecf90bbeab6d9202f9 legacy-trunk +5596 e835a22b0bdde94febc01ac06735e61e2089b8a8 legacy-trunk +5597 dcf2a37e73d9d36f181a74aa7cba08acf5a3d558 legacy-trunk +5598 71bb71e306fe2dcb66e965e0dd8e74593800753c legacy-trunk +5599 70ee4e3cb3d838264ce14a700a9d082163da05b6 legacy-trunk +5600 591287a22ee596dec1b1d6be0bbf8e76ef63a40e legacy-trunk +5601 2677fbb117d62b451afcc497666f28de105404b5 legacy-trunk +5602 999fcce496f849548982c4a545c05f6db64bedd9 legacy-trunk +5603 1b4b8a4fb46334017108773ccb50d2784c949192 legacy-trunk +5604 adcc916b7616d80746c1c12f0e9ac2bab351feba legacy-trunk +5605 f1f18c55d1364245426962b90f79ea9018c2c3e4 legacy-trunk +5606 df07f28711fdf32899fbafd73528aa96e3a5424e legacy-trunk +5607 cd388cc9ba98dcb89fa802e3a1e99d4c0769abf6 legacy-trunk +5608 3f8a73380c4bccd189084ae403c1b07aa966bf0a legacy-trunk +5609 393b6d81b126b274d67dd9d61efb5099a09930b1 legacy-trunk +5610 7c5f94f56f7935869ecdbff654eae2fed9512833 legacy-trunk +5611 fbf58d278d645d0a527be98e656e4c4a4d8d2ee1 legacy-trunk +5612 43f8db23ef15e20cb5659da0f02363b5f3f3ca6f legacy-trunk +5613 a95ff867571810e6e254acf66dfbdd2fb4ab1d20 legacy-trunk +5614 70a9327f6c4c6b2b3598b5ad5fc1267fc2df5ba3 legacy-trunk +5615 48db5d9a27941c2e1879410c7afc590ede2937f3 legacy-trunk +5616 bad97b4051666a2df2f61ade31ea2053601f615a legacy-trunk +5617 490be865aa0d579eed44a6ae869a3e581e819e9d legacy-trunk +5618 acff79dd14b7507f6dcba4307593b575672aee26 legacy-trunk +5619 a36e30240d06f4df267a9a3524f0b326cc5fc72c legacy-trunk +5620 9a896086d3c3704140dcc5b00701b2f90337c2a4 legacy-trunk +5621 cd7eaa62cc31b7f663643cc33ea537a050fd8e5f legacy-trunk +5622 d6dd50fe1ecab75472c34d1504eee2b63ecdc568 legacy-trunk +5623 93153d5c333d07d11b514529926ac5e69da47b0c legacy-trunk +5624 469369ad2f2fba4c8e06cb39dc3b2aa2224a36f6 legacy-trunk +5625 5961b76d78996e35f5d4cb1ff379377f4a6f30a1 legacy-trunk +5626 4cb12604da9d9ea8a4e6c9a059f096e5099807d1 legacy-trunk +5627 fd4f008d7743b51ef97d506c7fa07667bef499f4 legacy-trunk +5628 2205dc498adfbeb0ef5a9a8c4306b28c17a7167e legacy-trunk +5629 40c68ebd5891d9b4f72be31468cb4aa3dc464fc9 legacy-trunk +5630 3172c39cdad8087d5a7118a79bc9bbf08c8a6426 legacy-trunk +5631 95e80b6b8f2e44cfba1ddc7267a6329b246946e1 legacy-trunk +5632 92e145f8414e96165129c35581e32ca73b39def8 legacy-trunk +5633 938c433c876a3d695b1d07d783d6811bf7e840da legacy-trunk +5634 fe9f95b042fc8cf06195310dc44eba712fbab9b7 legacy-trunk +5635 9489a372c6862a1920542e22912544027607540d legacy-trunk +5636 fff8a750e7f63dc0a01bb393f25b04d0aa30960c legacy-trunk +5637 b9b9e6628b3535301c5c4820fb9cad6453afaaa4 legacy-trunk +5638 13146cb6f67c61de252cb6a223865d6d74cc6f1b legacy-trunk +5639 6bccfc0ed69594394850d1fd0881524059158db1 legacy-trunk +5640 6d34ade2e9d45271b0fc65fb60f3f4e12af0f378 legacy-trunk +5641 f7789945b8dee6cd77e41e18c705527e9c9e1fe4 legacy-trunk +5642 49b787b9bfae26cda56e643add4dd2cfaefe4b9c legacy-trunk +5643 06e340f85961d1df205e5f45d88ccb74a7035dc7 legacy-trunk +5644 cf6c0c5dc73f7863f077c0dc048339351a40fb18 legacy-trunk +5645 3e1e5f68fd1cca21a15ce10cb501bcd4a166c10c legacy-trunk +5646 2a4d130373db219886edc98376c22543da753e41 legacy-trunk +5647 a42012c188fd3879b66bb94c4924d9f3a9ac7bf5 legacy-trunk +5648 24b53cb3168094510dcfcc3075b4f1a5231816bf legacy-trunk +5649 8f3f25a837b3817dba9d3a27ba1a931f7e455f26 legacy-trunk +5650 61ca19a3000fec1288afb596fb3f2cb49db632a7 legacy-trunk +5651 7b2f695405bafbfbfd8ace9e0375f5e40d436b60 legacy-trunk +5652 c056f685c0813c8e453a5c97454477cc469488dd legacy-trunk +5653 8301d55eb64be268dc57e91480c5b8cdb315add4 legacy-trunk +5654 cc39d62b27fd115902c5640b62d11e346e679dd2 legacy-trunk +5655 f472b7ec25c583c62b8891de26e923bd856be7dc legacy-trunk +5656 02c8f74d08dcd84d3620f3be20150bf5ba523a9f legacy-trunk +5657 28dfc467185fc425838f8db5975b959e7ddc0cd0 legacy-trunk +5658 f9fd5122680f333d3c9739ea8efed3309174f7c3 legacy-trunk +5659 2aa79837aee56eea768f15cb55974254a8039f0a legacy-trunk +5660 8224f0bc5cda4942eacaba041092d7e80785bda9 legacy-trunk +5661 05aeb91e3b90d0d361f385a383484f324cdee0f3 legacy-trunk +5662 61193c632f51e1911a872eb54132dea7aec92537 legacy-trunk +5663 195ad9fb45832c79a32c09d35789540d567b3ca2 legacy-trunk +5664 5d16ecae8ee711181da68a1630c84dceb0c5baa0 legacy-trunk +5665 21cd50a4a3f767a93f08d9a4b789a93ab59a5287 legacy-trunk +5666 8841a4d5cd4beb8fca3d86a75246fcde15f5bff4 legacy-trunk +5667 8f5ab1a6c9142eba49d08363c9f8e4ca2c70bf25 legacy-trunk +5668 19b58ce794c902677687b7e69050f2bfc1c707d9 legacy-trunk +5669 6491bd2bbdeff6859e25481fd13743946bd6d00d legacy-trunk +5670 46df672c7c270da360b57f00720e4cb55d0b1f2e legacy-trunk +5671 d5e76a95b5665c9091b55cabe0df2a55da56b755 legacy-trunk +5672 3d122f02e649872696bf84912893ed906110ccd5 legacy-trunk +5673 df2f252dcd29dde7ff24aecabd337b1e05318f6c legacy-trunk +5674 0ed5cd8df51f98161914da09fe9abc053af2a2b2 legacy-trunk +5675 a227dce484517da6150a0a94a7704703a69f9ac4 legacy-trunk +5676 2b5c8738130cf9522f1fbf4adba8250aff09c6fe legacy-trunk +5677 cdebee4a3e3e871a7e6f5fe6c1194ed8ddcca035 legacy-trunk +5678 98e2cad4857f1d2bd5399da37b8d2f8ad209e974 legacy-trunk +5679 c7cdd22a4853ad8ba009a1fdf75fc52f21779d2a legacy-trunk +5680 21d4a07b1875b1adbc70ba6d0cdf5557a4c0d561 legacy-trunk +5681 ffe0328369373735069b446fbc88cc3872cf8308 legacy-trunk +5682 3b2be811a66aaa6bfdf85dc37fc62e80b6f089e9 legacy-trunk +5683 d00a79ebb027348cddf5e2549b4edc6c73c7d317 legacy-trunk +5684 801265b8616402444ad779fbeb5663c91dc2e17e legacy-trunk +5684 7d743c865a9aa6bde8b603e32e0542031bba3c33 legacy-trunk +5686 e45f3d262ae4a923ed8c40f0df99df96ce0f43f8 legacy-trunk +5687 f1cc247fff137d94db812e9eccc6bbc8ae68694d legacy-trunk +5688 78e1953fc9b2f33453602bb2de87b05ccc46576c legacy-trunk +5689 0f38cec565391e530ea4f89203d8e9e0796f9f8d legacy-trunk +5690 e7417a568586ab392d1a649733fa36f5ec104903 legacy-trunk +5691 2fb398ab3e6ab0283d9e0d73fb3ad5f70913296b legacy-trunk +5692 e554a61a84694fb17708810d7cd5869dea155440 legacy-trunk +5693 8c0a5180fa36eaf24ecec543e091d97cb0d6be2c legacy-trunk +5694 efb97142992e48978968fbabe0c1ca718fec9ad4 legacy-trunk +5695 f4a59ffe1a5f5c1c823528ccbb8c01d6e328ec12 legacy-trunk +5696 e337bf3cb43aea386e6259724c5fa84363f42131 legacy-trunk +5697 118c063df453c2c2f3d67601735380605df377cc legacy-trunk +5698 1acc04478dc310e8c4051f3237e6e6fa94631414 legacy-trunk +5699 ea7ec4a4c8d2f530a6710f87f27a3473060ec802 legacy-trunk +5700 fd573ac7594740355f05c41c9129b78b6694c1e1 legacy-trunk +5701 aafe7d63498527edf7d9614b71fab8494e917906 legacy-trunk +5702 3df9ab03badffb2ec2cf4f869ef2ab7a3d27209a legacy-trunk +5703 463b26fa4d7b7567850c1b4506aca86a4d7133ea legacy-trunk +5704 62bbfde41b1443ba6769fb85610e1d6140ba5200 legacy-trunk +5705 d3510f1118b6b772a94e1fb0403a19497c8309e4 legacy-trunk +5706 285dba4e0e516c5077c0c14eb9fcde3215540d65 legacy-trunk +5707 f7fd85b32a7d85e496ce789ac44572e297f6bb60 legacy-trunk +5708 e92789a960a0272b2d140c256ff2c92fde4f39e1 legacy-trunk +5709 313637c77daa03a295cb31773e40ef680ee78bca legacy-trunk +5710 405da556661d66aa479eae68ee2356fadb5bd1fe legacy-trunk +5711 2842ffa521260dd75543506fb6e69bcc04ee5b71 legacy-trunk +5712 18b60d8d9e35a264b46ea8ea73452cb715da15d5 legacy-trunk +5713 7b1a6bba25805b39a3adb4a805784a0901f55027 legacy-trunk +5714 20d74fa3b50b1bf072ad18bf7a2eb170b08f9da1 legacy-trunk +5715 5e101ead1e69909524fb50d745a943977ce3ba15 legacy-trunk +5716 1cf6e10522e0915601e06048da85b828051a2dcd legacy-trunk +5717 ed0d148fc05c879786ac4d6b7ddc29741650d4c9 legacy-trunk +5718 1a39d407b4d39029d310ef798240359343479b61 legacy-trunk +5719 467e0f2d678a11f431b3e6c73ffe7918c4ca4dc4 legacy-trunk +5720 f89cdda7405ac4c71df22ad6e731540c8a3473e8 legacy-trunk +5721 cc5474221c8cb1a6021c2bdb13d9b17f144d53e0 legacy-trunk +5722 33310cb6a5d768342098a1f56143898dcd50f380 legacy-trunk +5723 a6b0704106c8cfd6518d2de917dbcad44396333e legacy-trunk +5724 bad7f56c83b2b62a18eed116b85f8662c8f96d8e legacy-trunk +5725 6e48fab6990f314fb761455b3ff25261c06d6885 legacy-trunk +5726 db11a2bfea66da43b0636a20e61f86bafbea744b legacy-trunk +5727 b1ca65971e36faa6685ed613ad213fa15aac88bf legacy-trunk +5728 4f4083a26bf223390155717fd938104746096a5c legacy-trunk +5729 bfb63b45ff0f677ac17a06396ddaab784c606db1 legacy-trunk +5730 8c58ab7aa71ef101f333f5d382988f32745297f0 legacy-trunk +5731 2c1e3e87510996fb03bf63e762e1ee0dac5ae433 legacy-trunk +5732 2f837d824120d892cdf88b812e8893c1936731fb legacy-trunk +5733 159774af2ede66c0c09228b35766a9ae1bb0a6f4 legacy-trunk +5734 8e733f92edc0934f837ef4ced3ef9328510c9770 legacy-trunk +5735 7eac02a6176edf281c5f45075c067e6273afffa7 legacy-trunk +5736 117618dd0e7f533040f8893fad32ec5e182d7660 legacy-trunk +5737 b16fcd126b1c24e6e99708816210dbcb61058bfa legacy-trunk +5738 0317ac522605817c6fe17536ac2539de71185bb5 legacy-trunk +5739 6122730b7988516f46ae53887d9d2b0c530d3c7c legacy-trunk +5740 f94783b9bfbab7e16096a801274271b91c8a8336 legacy-trunk +5741 975ccfa721f6beaf45397518df49295c109d7697 legacy-trunk +5742 3a83c017df1eca955ea31b49205021c3863ee56c legacy-trunk +5743 f1fb326c7e2fe1a08ec934506db47cbfb62ad87e legacy-trunk +5744 36a184895eb980a6d8ec3c1ab8ea16967a2ec21b legacy-trunk +5745 43c5e7a3fc1fb62ae367e96f5c3ac5175b91139c legacy-trunk +5746 a8065762a38ea01c556ff4b3a92126711913c80c legacy-trunk +5747 f8a0717024fe4bf7c37b989bc7c5618fb71883f8 legacy-trunk +5748 871c768d0da22077232dbee1257fc8211d477a28 legacy-trunk +5749 6a18c4cb68d844c6ea7b6fcc9cf3e68c6a0cc4e1 legacy-trunk +5750 9fa2e218e2a84c68abf6cba3e952f0687811026e legacy-trunk +5751 3a0f84c69050a3ab2f8d3752ea0067179d72c8de legacy-trunk +5752 212eae5b9660b58e31cfdb3551df16d2f1b6a8d8 legacy-trunk +5753 6d4f71430722b5edad76bd161912b6e56b4a95f0 legacy-trunk +5754 e38c09d008068cff8ffc0a1a3174422ec9b6f166 legacy-trunk +5755 288e337f73e7e4368c708ec573ec1e66a7ed0ac5 legacy-trunk +5756 66f4bf94627fee0889508758d4c25c33aa9728eb legacy-trunk +5757 3f455777ff2841ad5f3a221f6fd43cb3b79d3e26 legacy-trunk +5758 45e444547e5a35e8ff0033a11f2355eebbbfabd2 legacy-trunk +5759 72357978ffd22a185639563daeb07a598e907d62 legacy-trunk +5760 bafc105bc7cd99a52ad9a52cdd18dfca62d353dc legacy-trunk +5761 2bddfb3cfcf1aa8d811fdf41c5635827305ea9c7 legacy-trunk +5762 3ca111e0b1a76877e4de687778bfed25267e0bfe legacy-trunk +5763 0d6b60b748384caf213c85db8bd1305810e3f357 legacy-trunk +5764 58ef4c495de762c946b842141c7243636c01132a legacy-trunk +5765 9a4081440783018fef2f56f6f6c245a02fbb67bc legacy-trunk +5766 47763ac44c486b725b4dc31dfdc44d91d062183a legacy-trunk +5767 97cd5771c23e257d2e5739a9a4520526febc6b66 legacy-trunk +5768 7f5b432b87c48c635f294d160ea70d90250f589c legacy-trunk +5769 54f0678757b00f6e32c78790aa62e79c6c3200d7 legacy-trunk +5770 d4d5c9fa78592a16b35610f60999693abc2db2e0 legacy-trunk +5771 8a5097e9d7ee2f36c677ea0d30795e93f51f1940 legacy-trunk +5772 83daa54c181dd0bcc018217f65685d7a532845d3 legacy-trunk +5773 140d8239a446e8f31c4dc0ab976ffb661d587c04 legacy-trunk +5774 13b24d1034bd3bcc70cf507fedf3d9393a4a59a5 legacy-trunk +5775 e5246571f0fdcac7d8416ea7c803b7330b894b18 legacy-trunk +5776 b828bccda189835cf78d0b82c412a35ddc0912aa legacy-trunk +5777 604b1fc26d633a88e027d0aeb9258006d8397fb7 legacy-trunk +5778 df0d009162b6751871bf058b31fb65ba1bc731f2 legacy-trunk +5779 c0664be7f6624b6ca0f85e658e494f808650753f legacy-trunk +5780 68fdc40add2cb3f55d1afb259b09e14034f71565 legacy-trunk +5781 58a67322c8960cd3395a55d21949d23cc805f1c7 legacy-trunk +5782 44f48aaca8bff459bc22f34b84836588cb573e01 legacy-trunk +5783 e5d1f242daf9c16051df43750b87c24ab3a6d68f legacy-trunk +5784 e4f57dd3d2465395834b4fb9ca477db2d827ea1e legacy-trunk +5785 8b8d60fbe3bf95be32483acf4037e1f6e8c5613d legacy-trunk +5786 32b4e8adebeb84f76cff441481c992d4c9ce4322 legacy-trunk +5787 4e6d0b26efaf32eb777b85a80741a2f20e36d27a legacy-trunk +5788 8ddda66dbf2c8926f9e41893ea7067e04a33b626 legacy-trunk +5789 596347db6a68f79766b3604887660b50c5e4f631 legacy-trunk +5790 6098aaa8ae7fbcd92628a598b9845646d38169b1 legacy-trunk +5791 36920bbd81a83441943f9e09facf2f4fe340b570 legacy-trunk +5792 89514426b9b8e4a2085397b9202a16244d19d441 legacy-trunk +5793 1eab8495462fb402b91402148e7894e5ee632e36 legacy-trunk +5794 49f7a4a1f0f6ce77c5afbe809777cecf39e2a8c3 legacy-trunk +5795 4c655115dfce7dfe41a8bdaf28a0fa4d8d7d46d6 legacy-trunk +5796 67d347c32fffb8c963615f79d5149193ec68814e legacy-trunk +5797 9f1b6e2db8e012c37823a455b9cfe2d0a2d582be legacy-trunk +5798 0da24f1c3dde6da4fdc7cd337197dd70cf6bec58 legacy-trunk +5799 95643c0b0c0eb082b16e9cea5634bf6fbeb8908b legacy-trunk +5800 4b5bff95804e72b779caa4eaa4f5701d3be2ddad legacy-trunk +5801 969bd911e114fcf32ea4d39e3c57e982b3414f6e legacy-trunk +5802 9bd1e41d6b116a55ad73d58fe963ea80c1ae9a69 legacy-trunk +5803 2497c43f4983dbcc56f72b1753921dbac67ac335 legacy-trunk +5804 201de8455c2bc9d1a2726d4e2feb14d15d38b3f4 legacy-trunk +5805 2db585ea218bfdacc82270074b64ba3c9f4be0e5 legacy-trunk +5806 16cb0473224cd517a3b6c9ff55fe37a71fcb922b legacy-trunk +5807 91c3e9821d0a0d941d47953e45a03f7fef7f4276 legacy-trunk +5808 36416140105a2943bd40a52eaace5764767f5801 legacy-trunk +5809 00453613cd4c77492c4a92ac9fc8106302e7be4e legacy-trunk +5810 012376d3aa147b02d263e05828648a6f14f2d2a3 legacy-trunk +5811 3b484812acf6e2e197ffd80e23f6635cbf794c02 legacy-trunk +5812 1709d5fed528e6aeb1ed52004da2343ff977019d legacy-trunk +5813 56897760e95872574e612ab842cf5cd6d39b67e4 legacy-trunk +5814 faa21ce1ff01dc793ad7a729525a0683a232ee55 legacy-trunk +5815 efdde1d7424b9046ae8f883a14de8bc8e034e179 legacy-trunk +5816 8209998d669e16a08fca49cbe7aa289f146d804a legacy-trunk +5817 2be0bde3a0718e037480898986953492f8180cdb legacy-trunk +5818 ae004a45050fda44727dbd738be603530c4926d8 legacy-trunk +5819 81f45f69388e2de7be4f255ecb6d8718bd53ad0a legacy-trunk +5820 f6a840e83d2a52b8f48fc60e8e51889b75229e86 legacy-trunk +5821 0b021cf41ddac0bb0c2aa0b754e8ccbbc19e55da legacy-trunk +5822 ddb4510eeb468351fb8d0f686ddaf1933ff68562 legacy-trunk +5823 6d762a2f9b69d680335463d6814061b12af2d20d legacy-trunk +5824 1a17ba50bd681917726543da88383af71e8053fe legacy-trunk +5825 21d89698329c6b2b2fe7ed8694506351f15b5f1a legacy-trunk +5826 08985431500b716ed3009929b8b987a7a480c135 legacy-trunk +5827 e0ef009b270223f2272560de10833f1a80124abd legacy-trunk +5828 e28124bb7fab318b1fff8df583e4047250850891 legacy-trunk +5829 6ca9787cd3aaa0f56a3e5aefd9aa75f657e610a5 legacy-trunk +5830 369b30f78d63fce5a70f022655f0cfde539a5b9a legacy-trunk +5831 bc17e8313ea06bb4b14e4b76567a3cf22b578435 legacy-trunk +5832 f8ff2832997162d5fc2e966b65ab118e8aa56c32 legacy-trunk +5833 c2586588464958d484e6f403a203763624ab842c legacy-trunk +5834 4e1ad24410a7116fcf4b794161e93b8094ed83e4 legacy-trunk +5835 af1c2f36dc34869e50ca19d4dcf465273a8c19eb legacy-trunk +5836 3cf2d8a2d74b13d775d5c0d6173b1e7b25d0997c legacy-trunk +5837 05084ee54e548e2cb84477c7f2f14dbfdf1b9b94 legacy-trunk +5838 6b0af78a90e5f1118723a98cf77a35d36fd520b2 legacy-trunk +5839 35908e375d1a6f99fa221985cb16d389f5f90987 legacy-trunk +5840 fe198dee06408627e73c66f72b1399295fe7d409 legacy-trunk +5841 0c8821bf6db566abd73149d80ae92c234e5cb050 legacy-trunk +5842 28f41ec7c5cc423559f5af5b478a52da255303dc legacy-trunk +5843 e0862f05e185077eaf0314454a27143f2dfb0a02 legacy-trunk +5844 82733869909444d49ea67d09f25e83a6f86c3aba legacy-trunk +5845 6a3ffc1dbb95d897170231ac3ae4565d15d800ea legacy-trunk +5846 046888da1f44a6f5113cdf2a5e985b4b89f88468 legacy-trunk +5847 2ee1f923cb193216cc2ed10264be39dc93d2b1f9 legacy-trunk +5848 b7b2c13b5e332860cfba1bc6ddfebbb139ea5fe4 legacy-trunk +5849 a44235e994f37f497c7b6b22d153993db1392185 legacy-trunk +5850 92f11aefb5ca35f441dcb38a9550e0c9d162a85e legacy-trunk +5851 c71a7a4f5f8ea5825a078acb3df5f070bdafd8d6 legacy-trunk +5852 d5532a71b454b6c3249e81ea20023f1095712758 legacy-trunk +5853 6f5feb3b4829f98c07d4a5722795e3996d0304e9 legacy-trunk +5854 9fa2228bb09620ebd3dd8206d8b4baf8af18af7a legacy-trunk +5855 1696fbf302b63fd1d61b724c95503bb0d54545ff legacy-trunk +5856 d15d29bbc1ce11fcdc8f556ba035ba53af097ac1 legacy-trunk +5857 832f26d0e069f6d59eccf305c9ebaf1283fe6953 legacy-trunk +5858 1c00d2846e849f69625cc6b72279ac053ae394b4 legacy-trunk +5859 ada222585366e6f5934a99c23a76d4dcbb14cb81 legacy-trunk +5860 d9a79977b38d439ea3f139495b5d27a8bf8b38a9 legacy-trunk +5861 4fea6cd94dfa4d59223deb5f8dfe01254891ea4b legacy-trunk +5862 f598623050a398ca3b2282cda0b2923a223e178b legacy-trunk +5863 5464fb2d129e5081921998b1893f51c317ca188e legacy-trunk +5864 5d7a15df7155525696effc303baa94d755567dc8 legacy-trunk +5865 409a89c5f66d52b22b4e7f71a909f9df82dc0f9c legacy-trunk +5866 02435fd95277c62d2bf4d729a3b5576d9df61e4c legacy-trunk +5868 116db7347d01c4c6e5ee21e4c29a53dc9fcbc4fb legacy-trunk +5869 1df8f5a8b216d111557edf80bde86ea18bd88847 legacy-trunk +5870 52dce4cdc930e01a8e2897eac968fbc459c7272f legacy-trunk +5871 ba83dd458533118551a9f3f2c448454c36d47651 legacy-trunk +5872 e994e67bcb95001dfd9e4859b78a268f12401e02 legacy-trunk +5873 c283447b985f52ea47eb0041e94739990e412f52 legacy-trunk +5874 810e690aa602b0324671d5b1ec2f92e9585741bb legacy-trunk +5875 f2614ac735d0c26c61a8d788ff3f78d906ccbcf1 legacy-trunk +5876 397e6d53a7ade58bb8c90fab3b6cfaf2abd38bc1 legacy-trunk +5877 27406c36e8bd449e788db751301145478ca7e82b legacy-trunk +5878 022474ac2451e49006ffe055bd3e45bdc4b30b2e legacy-trunk +5879 14991c4331df084db144bfedc59422c51a9a3b37 legacy-trunk +5880 f6bdda370cb74b0fd23e675d762a6c7dd379f03b legacy-trunk +5881 2fe7d489654e8ad5c5731c00c5c0fda194ee6096 legacy-trunk +5882 098cbd6d196e4f7fdc9fa881bfb567a413795c72 legacy-trunk +5883 f6a6a69927ffef2153f20ef62defcaab5e48a79d legacy-trunk +5884 b6c0a41e4a46580c2d033f69432eac91521f0611 legacy-trunk +5885 e1df90205a333936d96691eb744446b043bb8861 legacy-trunk +5886 0ac5fbaf8aef8baacf4916e363e2453841b9d425 legacy-trunk +5887 e045f9132b07bcbdae9036c9afe4a90c49594d70 legacy-trunk +5888 013bbe4ef9437ac58090e011331d5f1db19c5858 legacy-trunk +5889 90b54312661a35034e764d183654fbf512dcd5d2 legacy-trunk +5890 67f5d29d405b2a90f7017f2fa5dd4c628de4da8a legacy-trunk +5891 02c9da20b41e69366ee2cbb646a6605ccf4b8d53 legacy-trunk +5892 24bee3783b35f3f4c90fe06334b61d241e33024c legacy-trunk +5893 23254daa247b875322c82c106dd2c39b80adebf4 legacy-trunk +5895 6402be2689c579d2dcbbeac24acde479d5cb35b5 legacy-trunk +5896 af5ff5231d4a1d4abf70b4fa510f6e605eaa6ac4 legacy-trunk +5897 ba983140718aa47ce80a84b416b111fa2c25db37 legacy-trunk +5898 da86b3b54363ccd43d90ea8fdb940f4865c492b0 legacy-trunk +5899 5784668d0576bf12ca937303bce22995d662b849 legacy-trunk +5900 26bec9e22e5d0f56541fd69192c23732d0708df1 legacy-trunk +5901 6abc75ec6d298250c6071d1eac6f743bed2814b7 legacy-trunk +5902 578ca302a598c366f80043efbcc2fc245fbd1f3d legacy-trunk +5903 529f4d9cbe3d8e7213edd3add48af47cf1e24c2f legacy-trunk +5904 f72050dd61a9c3f7cdd9b51e0ff4a4df36bb906d legacy-trunk +5905 db9f6ede58a766c09bfd1875584b1dcbdc2975e1 legacy-trunk +5906 d70149202c93dc632e4194edc78caa664f6e7133 legacy-trunk +5907 d0d1a21d48b0ad3cf7cfb8159050c6ec00bfb714 legacy-trunk +5908 1af1adca8242748a7cab58134d39804c7efbd4b3 legacy-trunk +5909 3bde4b59a5d2e0cbbf362ef77d87e498eef59080 legacy-trunk +5910 55808f6009cdd02375e3b139f0bdc4d658b00511 legacy-trunk +5911 066a8ae4d4063ab9998a7f271b6200c520ff0d8f legacy-trunk +5912 1ff12804ff2a745ea9bf1d9ace51f36ce3d92383 legacy-trunk +5913 e76ca34d48f3eef31552906b1282c711eae73211 legacy-trunk +5914 07977bf0d9970b7c1b9d26bb2e1ea0ee84897759 legacy-trunk +5915 623ba9bdeb22151c90d456bd13f9bb62434c391b legacy-trunk +5916 db76fd390f749a1fd05582db098bb34372afa168 legacy-trunk +5917 f91f6198b2768f6a50da6e7a20c347866cf67d6b legacy-trunk +5918 c3e51eb1c14fdfbcf93b1baa10fc0480ebd2be86 legacy-trunk +5919 713bd83773820fbea3d7ab613f0db637cbd87f31 legacy-trunk +5920 5abbc9b5fdf0b27aa2f21b47e2168d1dace1f91e legacy-trunk +5921 ec84949f81eedf93a1247331a3f8fe73f772eb10 legacy-trunk +5922 a7c2737687c212e55fae61d67bce80c63e8f9c6b legacy-trunk +5923 e646afc50ac73a9a3cfc8744d356a276a5714199 legacy-trunk +5924 1444a3524ede09b0407a09abbb2c0b50a6992a9a legacy-trunk +5925 dcc59493499ae70bd2da0c60dd157402f79de102 legacy-trunk +5926 a71d2fd90fa87b84f9b14ca53c3061a01d318251 legacy-trunk +5927 408dfc7189518f1d4fa96003870d8d7584d487c6 legacy-trunk +5928 70522db11019a8cb7c21b8161cae4a7e6de60e1d legacy-trunk +5929 97b0e9625eb1d5f80ebb6f704fb56518a266cbcd legacy-trunk +5930 803fbcdcfc9f87f747cd40ff138931dd47eff3dd legacy-trunk +5931 8b3f2a8620f54fb8b454ca5e8da5af47b9bf7118 legacy-trunk +5932 d1968a7cc620c16101cf6cad163fe1eb01053838 legacy-trunk +5933 8dd0188e52a7c8c59b8cfe0325c1b21f88e82516 legacy-trunk +5934 f0baadbfcabdb52dcb6f20cabb1097784d0dfba4 legacy-trunk +5935 1425fc6491ebbfcd9b2fbc47259dc7407f703522 legacy-trunk +5936 450f4d46d9dbf0136e98c73e28ebae2478ae3ea9 legacy-trunk +5937 620ab3db07934c4181be2e7db9b55974dd5bbebb legacy-trunk +5938 e9043223935ad34cccf914d4a0b0c91fe3f595f0 legacy-trunk +5939 b38fdb008f1dc31a958dbc0417009897a69666bf legacy-trunk +5940 aa8adfdd3aa1e1e9ae5b2ce2c2528bdd7126e0d4 legacy-trunk +5941 50aa16f809d760032c041fd5d46417be63683a3c legacy-trunk +5942 a292b7583c015a282a1ef9662c7af7d0c843aa51 legacy-trunk +5943 11299e95cae840d7013b0360ac192fcc967efa12 legacy-trunk +5944 073550e312730747f56342141532b90c790fc8ea legacy-trunk +5945 35c4a48d9da1694c50e6f883a50937e6c1612363 legacy-trunk +5946 a4f01d43dad699015d1606a4ba5b738ed30308da legacy-trunk +5947 89caffd2c06148835c28d4646e9c633cb687373a legacy-trunk +5948 aec8bbcf8b0e5f02af827dc493dedb40c3ef61f4 legacy-trunk +5949 827f11ad65df63dd87d9da9fba244b513d97c16e legacy-trunk +5950 e290faeb92c85f783b4323d07caacd8fd9691fd5 legacy-trunk +5951 00ca900c7742c5e073427640bb335fdee066ed5d legacy-trunk +5952 fed93d2d88fc46f9cb7e605e5432fa8cc2b889f4 legacy-trunk +5953 ce27e0328462ed96f390c286f22245b1973c129c legacy-trunk +5954 61f19a7b1ff106c67e9532962105e85f49dc3ea6 legacy-trunk +5955 02a23e6e414affe9479a8defc58178f2d946653d legacy-trunk +5956 83557153f5447401333ec5d1bcbf02b37aaa41ad legacy-trunk +5957 2c178bf70f7ef39c1744af4ba84318c6e98da6d8 legacy-trunk +5958 3b6ebf8d2a59e6690c926add464ca99bab896f72 legacy-trunk +5959 1dfc519ea3cbe45fd7f004c3cd1b63858a1d4f6b legacy-trunk +5960 16a5f6048461f839cce3698498f92d86b0251e72 legacy-trunk +5961 08130f00c18db503f4e395ca2e55d1c779119a99 legacy-trunk +5962 03c6c18325eaca962c3185756421c67ee9372f48 legacy-trunk +5963 142cbabdd94556a33b54fe0ea24748a07a2e3b34 legacy-trunk +5964 f70dbe608f031f7bad8a1eec201f158f82a4e1ec legacy-trunk +5965 8d43b830341bb56aef1afb3f06bb5ff5a133fa96 legacy-trunk +5966 d6246aeb4a3f2742e2cb5c25647073cfc02d8f1c legacy-trunk +5967 cdea3f27cf7c70b82094e6652c6c1b52ecef9209 legacy-trunk +5968 5f25040fd63e6f40d1e67c6b6d747152a204b7de legacy-trunk +5969 eae70d7f2ec7c8e0a5e11ec577cdbfb92a439720 legacy-trunk +5970 eb5b8d3d8acf427b3bc3efe166518aff25d17db3 legacy-trunk +5971 61894ba571f5a83f53ac25b1099c93953e589195 legacy-trunk +5972 899aefea801c99ae34b7756b005df6e8e88f6dd2 legacy-trunk +5973 e8d501c88a3e3e9bdcd6fef84f1d04d69810cfb3 legacy-trunk +5974 f6bd57dbd524deeb7599b78b36ab8b2e1666ae3d legacy-trunk +5975 d24f8d79eca074c02035cf182ecba2d2a109abf3 legacy-trunk +5976 431e8d010547a23ac8f7846c2bbfec6eb767df32 legacy-trunk +5977 6f363a417661172fb248bbde004e7f7ff725111a legacy-trunk +5978 558dce6553d905bb06501622996401b396198bd7 legacy-trunk +5979 a1c0c2a38883fabf79f469a783c9707bcc5e4088 legacy-trunk +5980 c5d30a5643beaeedf586e7e95ac3b015a2bc929d legacy-trunk +5981 2a099fb76823b32ec3d9f6679dd18537be5aff5c legacy-trunk +5982 4361a5ffb6382602de3a1ca06bb4ac6fbe6defcd legacy-trunk +5983 05af29e8df0e756f6e9abd654e79b9bbec02519d legacy-trunk +5984 566f46b9d7126c993996d559dbea44f6dc67c906 legacy-trunk +5985 7879f3b39606ecfbc3c57f35442f348efb602f2e legacy-trunk +5986 542c80e621114ff2c9f9f2ac799d9e9a0b345a3e legacy-trunk +5987 7f230d4f3655d66e35348d92aea690b96138de4d legacy-trunk +5988 05e85055582cb4a32ee3e18499d2688f3e7b6849 legacy-trunk +5989 2b2fc9a0b4ec169686065a27a283be02f94dfd1c legacy-trunk +5990 d7801a77fcd57bf049de7b453321593230c71d0b legacy-trunk +5991 0145b8ae2d5fb9fd08f2a23619d0b522ac22ab7d legacy-trunk +5992 93994519200038ee7223e67275cf1cce707ed7d5 legacy-trunk +5993 43af523a00cafd7068661bdb7025b8bb72de3bf8 legacy-trunk +5994 73bc41be7074de33ae41f5a136946b1e16980509 legacy-trunk +5995 8552e17ada68a18e88c74398ef804e2730748e03 legacy-trunk +5996 510dbfa8c59987cffcb4d0e4826c6ef39e270f12 legacy-trunk +5997 eb83e4b0c7337804d10041f7c62fb12d6a49578d legacy-trunk +5998 50e5b4c5895fc52f57ae343035a5d3902a3b1b54 legacy-trunk +5999 24fb9f4f8984b47d1fd4455821240b2acadd8ef6 legacy-trunk +6000 38e1480e7f89dbd68e677630509306e2ac635998 legacy-trunk +6001 728d5745ae7b862cd922a832561a32b9ea3893c4 legacy-trunk +6002 e67adc8b2f1667225b1de7e1721d0d8f86c0ef67 legacy-trunk +6003 20a13fcdae54f9300af94638c4a5d2cd67909c47 legacy-trunk +6004 ac8d24f1df08298a907cbd232cdf56aa02d3ef29 legacy-trunk +6005 82307071c665e7c4e1cf723b19c7cd9d1c527815 legacy-trunk +6006 35bec88d97342af2717ceb5119d29d1e2ed53d0d legacy-trunk +6007 6c541c63c43a112f49acf1b4427908304acec7e6 legacy-trunk +6008 5aec491117726a7fbc4d2292cf043e0d001babd4 legacy-trunk +6009 2b166b220c113da798c689cca10ae5215b4691f2 legacy-trunk +6010 6c258043cfaa5a8354f08dc501aab0333ea43075 legacy-trunk +6011 5df2acba0fc501962aa27c9e7ff82f929a06ee39 legacy-trunk +6012 22d7f54c57927e33bf862c527cfa9ff4fa27636b legacy-trunk +6013 2c900dae879935bcbf087ae3f6675f1dbda447a6 legacy-trunk +6014 6f523bd0a3abff29a99da4a34266310d3c672f40 legacy-trunk +6015 3f7cdf1663f7aff34176366ae07d0c61c38654f6 legacy-trunk +6016 9ca8ae71bbb08d03cb51ed4bba4058eb1406f781 legacy-trunk +6017 04edfcbb712130a73b5958d2f66ad40989eea19a legacy-trunk +6018 f66306bc0663e4d27c1574ae8bfdccd7ce812df4 legacy-trunk +6019 a95b350a44dae7ac76c1d4ef0d6be628464a217d legacy-trunk +6020 e8a2a5e4c7b0460b857cdf098f136a3c20a89d6e legacy-trunk +6021 c7e808596d141c0225a73d34372aff3f2f9e0302 legacy-trunk +6022 1d035e2112096918ad1c0102bd1bac762658c3f0 legacy-trunk +6023 24279bafa828429272ba8296010a3c8f7d19cb4d legacy-trunk +6024 29c18fb13d8f412d1c9e0e186615436ce999f694 legacy-trunk +6025 53c66d19d127a330fa2116bd68a3f1e35bca1bfb legacy-trunk +6026 cee4a6d8415ec1baf2a2f9cb8b812c508a081545 legacy-trunk +6027 098b88d260d12fb066677d015798d5ff927848dd legacy-trunk +6028 18a9c6280543b5229b771f667594aa35112c1767 legacy-trunk +6029 b8b1b6b9743387c47e48b332d01aacb5742df313 legacy-trunk +6030 91893871ba0742346632537f497ce6c67148542c legacy-trunk +6031 5227841cfa1fb704e9c1df80dd95351aaaf85e1b legacy-trunk +6032 35b3536fb763b9cf59aee877f2f164cb113c843c legacy-trunk +6033 91c1082069d81322d4b8fd1482f05e9255f35793 legacy-trunk +6034 4c0a5ca30f94a674df97acda5c591ca8301f6bcb legacy-trunk +6035 aa1112d566683afda74cc84192c9a8fe62f2f94a legacy-trunk +6036 6f715bff17e48229987962817cf3f1e4ebd7ebaa legacy-trunk +6037 6de44d966292659ae94ca01bbab3f93d8acbf129 legacy-trunk +6038 922c00165f7612fad771064f14b057e69ebb4451 legacy-trunk +6039 977ff1ace0701e993125782d93ee517eece7c627 legacy-trunk +6040 f6b218cec6bef649cfecc6d67477cb28e7871f98 legacy-trunk +6041 6be365a673b14c03f4d58ea1e80e86ca1efec0a2 legacy-trunk +6042 4c7bab4cdca6e8cc2e097dda3facc3b0b382d5a4 legacy-trunk +6043 1ec15424174757f0b57e9801c6ca7f6b17b01eca legacy-trunk +6044 e2b3a696d69c757c5e37b071677b99fbdf3f4a6d legacy-trunk +6045 4ec1cac342ddc7fe245a223ecce7a32ab132aa5d legacy-trunk +6046 6ec7df20697d0865e8e440e9ceabf1fd77550e4f legacy-trunk +6047 264d196bc4c6de8ff89962ea673b2a8d48a454d2 legacy-trunk +6048 fd1669f8d8743ba6616284e5be826594f06917da legacy-trunk +6049 8e663945e17445c592497dcb5c775c21c59c858f legacy-trunk +6050 ec8f5b75df64dacaf3016ae94de8541192cd1100 legacy-trunk +6051 6f45beed3873f71cdc0b3e89660cc13e2a6b4398 legacy-trunk +6052 6ab4cbcedec203b8278a02240f48f5624a2d5053 legacy-trunk +6053 72ad2f1e9919afec1cc7beab8d89841aaf55ab16 legacy-trunk +6054 4ed09a3c32018e219da9b7621153bd5f8cf8fd12 legacy-trunk +6055 36cc3ee54f28b8800ef3fc10f205535c05e4b88c legacy-trunk +6056 b5cccf1c8f3866beadc39464bb27d6d131568e43 legacy-trunk +6057 dafc8a10b18680460df7e19d0f234a163424ace4 legacy-trunk +6058 bd20c04274ffa6e69e1c94a2c8238b7257d618d9 legacy-trunk +6059 73664ea2030e0bfffbdf0a0661a6ecf3c03b98d3 legacy-trunk +6060 1c18f90636fbbe0816126a1e68e014eb2738a1d2 legacy-trunk +6061 2403620ca931aefcee07892dd272640da9d3f4d6 legacy-trunk +6062 de987fd67c943502d5bcaebf2183c7b6dc9fa089 legacy-trunk +6063 564912267290f449e1f24eec97b1b40f28ab3bc4 legacy-trunk +6064 6293723205a6a8294ee90ae14299851b64933507 legacy-trunk +6065 8800df366b131d2a2652e00b18e562b4da77fe0f legacy-trunk +6066 e07597389d64bbfb58b68c34561871d25376fd82 legacy-trunk +6067 6c9260ae0d1636a95d010c36c0b76b1d8702aaef legacy-trunk +6068 8738b0dd77fd87009cbe8ca1ef1d1207a05b5b47 legacy-trunk +6069 7c5711a6a47597d931be4ee83254a32c165677db legacy-trunk +6070 5a7a76166e7e3998194e101221c398e53b42d3ff legacy-trunk +6071 40496db8cf1fcc98d628e798b026e0d22f687776 legacy-trunk +6072 d9067c5f50add49e39a42e4b83fb171dae39febd legacy-trunk +6073 eb6ef7eca207d2989b98b0a7007b1f9c55d70e0a legacy-trunk +6074 aa5f3ecbf56f32d8fccb4c72d6a5299f4d89cf96 legacy-trunk +6075 1d4f2f20a27ccb61096a251ddf0d8915cde969be legacy-trunk +6076 dd74a06006e040217263b80577e84682dd31d4d3 legacy-trunk +6077 8573e65fa9484f26bb3dafb7f4f44f65a7ac49f2 legacy-trunk +6078 0b0c4ed1936ac2d2852c39587b9ce6837860458b legacy-trunk +6079 d0a97ac25dab473658a40d867dc73d8ad61443bf legacy-trunk +6080 453a9f6e96189de69b633ff735bb848a209c5e10 legacy-trunk +6081 4866a0fc2bbd4e655366fe5898abd56f80f18cf9 legacy-trunk +6082 2f314ca0cd338d6ec4618e648c918ee0dc1d080a legacy-trunk +6083 323165cb1fa5d74aeff8aa7fc3354e478d34f0e7 legacy-trunk +6084 fda3c098c89958f5293663f95930a257b0c681bc legacy-trunk +6085 0e5a7b22016cdee03ab22413ee60f3a155066069 legacy-trunk +6086 6e73584cf575eeda7567f96a24e08e6c1a24b09d legacy-trunk +6087 a3c97e2058479342a8d9557cdebf6fdb9459d884 legacy-trunk +6088 ef759669aa0426290324ebb83d65d164db66da10 legacy-trunk +6089 28c0df1ce284498234482388f7152d153d68f306 legacy-trunk +6090 f158edccc72ccb63ffe8b1a5959602f9dd3de808 legacy-trunk +6091 b75edc0e6333ee60c562d1ba80d26c2e666f73cd legacy-trunk +6092 d41d89eb43e50cd9bf8b9f95fc79f00a22e92f9d legacy-trunk +6093 5a98a4fd58b842101212eb83851fb2269e0d600a legacy-trunk +6094 9e46657bb9e8479c8ac986c9dcb97d0c5ae4235a legacy-trunk +6095 bd6eaa2b41ac36070e4aebe25e595566379c12fb legacy-trunk +6096 d195b871e7044e19d59bf19a65026f74a729f228 legacy-trunk +6097 3440777f0e656ace3ed3804bc368413bd04345d1 legacy-trunk +6098 e54d3910724956f2a06890ce5ad2ee5c08aded9e legacy-trunk +6099 2eb7e9e236bf57cf09d3d9902e282c4c0e9565de legacy-trunk +6100 98513437567236d82d4a87ac9a8fbeea54c9ae24 legacy-trunk +6101 44161fb04b7e834bfc7709bddd69791d013026e6 legacy-trunk +6102 a7e3bc2a7cac479d40893349cd4c2f0ba03fae2a legacy-trunk +6103 3abcf725c5f4097762673b02d927ad1fa43fa834 legacy-trunk +6104 89417895d963cedc2501da22d22e5055f718c04e legacy-trunk +6105 6768bbd18e09980a707b985b5e62dd0b2b89045a legacy-trunk +6106 6c0086f9270cf9513cc42b9b858579ddd494e7c3 legacy-trunk +6107 c283b7bbda0952b272d7b7a859a0d95ee5a6799f legacy-trunk +6108 70183592370e74ea63fed6314d50743a435ca2ea legacy-trunk +6109 8d50a96f8680ea811e50200ba540a6669714f198 legacy-trunk +6110 e4faadb4abe2edb4e181dc39756aec7b9675892b legacy-trunk +6111 d04975db52dcf3b47028ed822a378ffcd7be1b3b legacy-trunk +6112 0d1463a45b6f55c6857700e662deed38bb8e5d84 legacy-trunk +6113 017d3356a5ed0430fd13595a1b07b6e94d07146a legacy-trunk +6114 49ee89e017abe526c60f3b2ec9b79375e46720b7 legacy-trunk +6115 564fa6f185a7d7cd6fe67c362e1b53d1e7402533 legacy-trunk +6116 16ca8f0f3f112401a0fc65f366f27028bf38b4b5 legacy-trunk +6117 a9fb5a895fa1c32e6fbaaabc5f6d40bf0682653d legacy-trunk +6118 63cdfbb4a2bb99c4136b294384ad8d7b8bef029b legacy-trunk +6119 5d6fe145f773a214aac238f1efbe17421d3f389b legacy-trunk +6120 0602db1d1dff7a5f7e5c7aedef51568ae7023ec2 legacy-trunk +6121 728a39a3e0d55084e5abbcc3f3f87e7e231735e8 legacy-trunk +6122 5309cef8c1692cc25f5e610489d1f30baaaf0a45 legacy-trunk +6124 66eeab5a758c6732f224670d125f186cfb67b38e legacy-trunk +6125 f89fa7e95b84095f42a182854d34a1f1c6c438ae legacy-trunk +6126 ade9f996590a5e78f5a8bb0792f0703599504b5a legacy-trunk +6127 9ac1e0d5667413cfd7e689980a58bfbb090c6a6e legacy-trunk +6129 35be5df6ef7722b8f50a235eb1f2cf61911c7755 legacy-trunk +6130 825bd8c11b1c1ac5c496bc7acfc2d9f8c46ada69 legacy-trunk +6131 058d81d1d56d9326e377de5300f50960670de266 legacy-trunk +6132 bd6d028d98fcef424525b32437260d532dd993df legacy-trunk +6133 399470a958c22d97ccb863e6794c3f897e85d78c legacy-trunk +6134 07164d30429dc6dd07362ec20bc2a91f25ddcb53 legacy-trunk +6135 ad03e21fda54bca5c12ee778f8d7b8180258ad92 legacy-trunk +6136 5188374377ae99625fd25beae45cd6784536ae2e legacy-trunk +6137 556ec82f4d939e15f2c6bd5295774bdd8279da2e legacy-trunk +6138 eabbb3c1818fe42962b1c15a98a69cd086a83a87 legacy-trunk +6139 ab92480fa4ecb3c9b30d34355518f7778bbb29bb legacy-trunk +6140 1d134ecda094ee177c80bfc7d1014ac3874c1445 legacy-trunk +6141 16413ee58967745684751497a3cfeba0ad0c537d legacy-trunk +6142 9a8a40f2218c9cb2626588e1fc15850ad9f64548 legacy-trunk +6143 cec27c93b5cb834c101737dd513e60814aacfce8 legacy-trunk +6144 f6ace61c3dfe64ea37ef980aee001eb34940d2c7 legacy-trunk +6145 3eaf2c673a11a788fb6244af2223b3cbe2bd1082 legacy-trunk +6146 d617de15774b2e7b75a2b7647aea7c9060aac213 legacy-trunk +6147 74764b3ec1bdb74a5e6592756246f9af7dfaadf3 legacy-trunk +6148 b05315816579830452c04e29d9a2d37f2384f6e1 legacy-trunk +6149 bddbaa51aa5a93318afeb92dab2e4e63ae5ed7f4 legacy-trunk +6150 b8980735d03b3e140938a642463fa9443d73d8fe legacy-trunk +6151 8721fafdb67aa9b5a922d23cf87c8f232efc05d8 legacy-trunk +6152 a527f449ca26661f5d290d367d103276aad392ae legacy-trunk +6153 9466eabb669a6cf266fec655c1c726d73e0268a7 legacy-trunk +6154 ec39264311ff2414fae01aed747926c910b90b7f legacy-trunk +6155 606c38535f30451347d1946690faebfe6e17fb8a legacy-trunk +6156 a1362a063122522fccc18801d7653686e0214373 legacy-trunk +6157 bdbda939b9998f8ae8b6d51e553bcb136ba7b5b6 legacy-trunk +6158 d8f9dfc76bbfc8df96ff1ad8ab6cd74c8aef9fce legacy-trunk +6159 a79b8d81997feaad9ced2c14b4b093b90d2bb667 legacy-trunk +6160 6dfd79944872fc03c5497493ba9b10926d9ebc03 legacy-trunk +6161 4a07fe1e0b503cb5bcac48d66768f4263a4ad30a legacy-trunk +6162 b5d1741ded4a5a48eaf08a05bcaa6d5aca33168e legacy-trunk +6163 8dc1e74c16956eb200ec683aaf5d88914aa5c7fe legacy-trunk +6164 818ee115054a3b9ce960122c117a81a15a07517b legacy-trunk +6165 581f073f071d7d770f472f719cbb502c34fa3022 legacy-trunk +6166 1454138c6f2d40c5a0b56068da8bfd706ef04061 legacy-trunk +6167 67390c1daebeddceecf41cdf11b45cc093180ca6 legacy-trunk +6168 81f535ca1d98cd46a69589a65fe0d2fd7ac2db3f legacy-trunk +6169 97b1c2a70eae11fb7cd4399c0e9d2ecbeb874ee8 legacy-trunk +6170 e23afbf77efdf954b3f9cbaf9b1ad65ff9ac9980 legacy-trunk +6171 931086cb852950337a886795fee18f56c024c7be legacy-trunk +6172 f04beb80f81677af0fdf618d4a67a3b53e24e431 legacy-trunk +6173 3408756ec60189017d146d0eddb6f2474ae9f34d legacy-trunk +6174 ff7fa59f62e8934ab7b84574cb7d1e434c64cd2e legacy-trunk +6175 17030515f6232754d35112a59d8cf230fdcb1512 legacy-trunk +6176 c867c294b16c083aa9667ed1819e62287f04b493 legacy-trunk +6177 db577094f6853e15753be9cbd4b0166a36b90a24 legacy-trunk +6178 0e9795004cd2676fcd18ed36755f14a84f143e0a legacy-trunk +6179 0f6f0e98e3b64b4e5381ffe0b6960e1d49c7cf71 legacy-trunk +6180 dad4d43363d8fe1fbb888005616700f90a9d8a28 legacy-trunk +6181 7877def94063d47149cff5b9a30e9fc14ea4e8ba legacy-trunk +6182 c04531fc27096939c31448eeab4fcb5c86967d2a legacy-trunk +6183 8e4798d21915efcab3cac87ae4bd594d8d48e819 legacy-trunk +6184 adc86707fa963899b59e29297e2f4c3ec7718a51 legacy-trunk +6185 c120a483d59098d6691fca53545c2f81f7946201 legacy-trunk +6186 5c258effe81c4d95bc6044f66a60e13a01f77173 legacy-trunk +6187 de5279402b9438cdf6433c373381617ada7d4502 legacy-trunk +6188 5012191ec2dab14bbeb478887818058cacf1f352 legacy-trunk +6189 9e544a2c19a2da70890974b6b1213d488a68d56d legacy-trunk +6190 76e5f3598e69b4a2991918535f1480c5b3a6ffda legacy-trunk +6191 b341def4eef8cbc62a073564278956944804cd13 legacy-trunk +6192 322f61e4c3875aa481567160c3b8835326a90e14 legacy-trunk +6193 b2b063aa275510d6bcc484971b500f3f68f4c98c legacy-trunk +6194 43a37e6b6469a4d21ab0fc3c265c0573d235e996 legacy-trunk +6195 26442b5f9cfd847b63be2781d4fb3ccb409bbcca legacy-trunk +6196 0ff5bd8ebb01a60b719a7663a09c7188e4c2efb5 legacy-trunk +6197 657790db06e3c5945d9e7ad9cfc1cbec1f65d287 legacy-trunk +6198 a10a0f6014c49a5fbd1a4c34395e2882f855ff5d legacy-trunk +6199 6f3c7b2f2b8de828b26682d3995f3fba2780f9d5 legacy-trunk +6200 068556380cb0861c5f8c024430da1617dc80feea legacy-trunk +6201 ba84d7e8554b5ecd4fcd69d5769764b6ead33f0b legacy-trunk +6202 de1cb33219e3118a3f9ea20921ea181a69e77e57 legacy-trunk +6203 523f49a1e42a570988825faaf6d6965db941bf00 legacy-trunk +6204 b250b270dbd4d0eb040135de668c8efa366fbb17 legacy-trunk +6205 04c07538cac4db772cd1612795c237646b9a89a7 legacy-trunk +6206 4692cb46008ee0c9e933f6d6878aa405c3be8f75 legacy-trunk +6207 6c9c2ac15e4b017f7486bbbd8c117b4d0c231374 legacy-trunk +6208 6b1b664863f4094025e7e0b5dae0c54cd5b37afa legacy-trunk +6209 ce74bba8a6a6d18bce77ce6bc7241c7992747bcd legacy-trunk +6210 79524829a730666dcb1b4844212514ba523f924a legacy-trunk +6211 e4807a0c1092de2ecd40685597a4289c6a263688 legacy-trunk +6212 ef59b4d00134907ad39286d9e486536ac9b042b9 legacy-trunk +6212 4fc85c82cc222554ae6b9c0b87776ed5f2b70c6e legacy-trunk +6214 b207876df29acac07221aa2604e0ec0178ac42ce legacy-trunk +6215 ffdf1f06cf8b5c363f9c5476379ff5f95f7e4bf9 legacy-trunk +6216 6080b2ebc1f14a5c45c2107660a75dacad912859 legacy-trunk +6217 7504884e8a74fc607a886a21ef526fa2d5447552 legacy-trunk +6219 ac7018b577456cebb116a750fe22ce64b9de730b legacy-trunk +6220 56d3350ca1f172d62edf931b532b30b1115c9671 legacy-trunk +6221 11e03d7a729805dfeef744a55c50e93357bb4089 legacy-trunk +6222 a22438e94fe974b51913483a52529a3152c15e7f legacy-trunk +6223 2db6363459caf1d69de2a8baac16fd035c141940 legacy-trunk +6224 3537c08c1effbab447236b8c12ac3f328698d71a legacy-trunk +6225 97d2278a331b945d4131be33d59280ec6ad0fbf0 legacy-trunk +6226 d23fea248a1ec25b1cc177eb5df4856c14eeb1a8 legacy-trunk +6227 6598a518668f77af258aba5af27d9cd7301fa9f6 legacy-trunk +6228 82bb7d2a6b31e6f50ef4449ef70f17ab39895750 legacy-trunk +6229 15b1b03ade93d72cde501750b4e3c1b6e1797fc3 legacy-trunk +6230 b916d614e3634685ae655d5b862bccad60748a86 legacy-trunk +6231 56746eedfe0378974b8c3403b5e3a81c2984464d legacy-trunk +6232 bf8c230df5e8dd320e2c14ff44552b0de2940f5c legacy-trunk +6233 e603601c68cf4468e53f0665332b3f851af4acbc legacy-trunk +6234 c57b38e40b2da50c75eceaa252d78d7d560e0865 legacy-trunk +6235 bb4cc3fa6000b09bdaf7c38dce69f5f5e00d68c1 legacy-trunk +6236 29fe6a0de3663b8d45c2c7493eb5b4840acf84ff legacy-trunk +6237 db5488fe495b2a00593bb913095f894139a5ef3b legacy-trunk +6238 516490c8192cdfb016fa185b927c208b70fdd688 legacy-trunk +6239 4b5def40773ceafa575fce5b208aee33b0c78db0 legacy-trunk +6240 d1ae0ea9a585f912d7aa3d004ff817d0dea112f8 legacy-trunk +6241 2b810a3c7e414ca42e6c89b4a137b4cbd0e46ec2 legacy-trunk +6242 7cdc0c7146d50ac21973f5060d8cec671db8918f legacy-trunk +6243 d0988318b7568c6a53ebdbe2fcd79b871edc436e legacy-trunk +6244 c8d0f78221cc36e81786d64750989e87af0c470b legacy-trunk +6245 6e40a2a3e6ef0c4a398633609a2413ea06f8e345 legacy-trunk +6246 4c78d73c56675723cb773f23d0a2acf426b5cc20 legacy-trunk +6247 ab110b1e92ffa182eac4d693e027e434cb3b68db legacy-trunk +6248 eccfada47f285ab4a9bfaa545ee4b21ecd77adde legacy-trunk +6249 f35dde7f4143e5f610baced96ca20f399c300213 legacy-trunk +6250 f9907f57327ec57638d7a9201ea47a3cdcc7b689 legacy-trunk +6251 10b5061f6cbcf854c7e81a52dc49094d09a23e37 legacy-trunk +6252 ac114a5fc8ff846e798218383cf4bb41af7c66da legacy-trunk +6253 27c377575f4ac4dd9f4fb2b08aa99806b41c54b7 legacy-trunk +6254 3eb1694edce6b0429dc5ce85f98aa0a68d637741 legacy-trunk +6255 a6203d17158ba52e0fd33d8c28b1c459faff5c34 legacy-trunk +6256 b41019557b6e7cff88f2ae088816d81ce8c3198e legacy-trunk +6257 0d74011310cd1b5beacdcaea82849dda41d2cd75 legacy-trunk +6258 718c8af7be2a9fce9217b5ebf2462ec4923078fe legacy-trunk +6259 7766360b85b891ea9db785edfeb85b3dc87afba3 legacy-trunk +6260 b65368ed86be89d17fb9b1a9589adcbbe6573c45 legacy-trunk +6261 468837ad45f3823ac8920848984a51e956af8188 legacy-trunk +6262 7e6536730d0eeed2bb89de2914cf5161816065c7 legacy-trunk +6263 2f57392b2fde129bc6e309946716432729c3830b legacy-trunk +6264 e9ee4c905abd28f72e872edfcb59a18b911d6ece legacy-trunk +6265 ca02d927818011b7f0968e281764f945a589ba98 legacy-trunk +6266 d1c47f4f15415023f9690faf37b4ec29d9673a97 legacy-trunk +6267 1f20f51b700e45b8c3652ab26fff58ca9265dda2 legacy-trunk +6268 ec6963c3741c167407266fcf5548cc46702de5e8 legacy-trunk +6269 51a7c8fe7c7b2926d8ac04f1878c0eac6b699870 legacy-trunk +6270 a816abe86f9044d7ac65aad3c0f707adc0754f82 legacy-trunk +6271 2f27501db3c3e427e1136b95a962a727c0e1c65a legacy-trunk +6272 acf35ed0f0264751ead01375d345e8814528748f legacy-trunk +6273 843121a226ca9461b86def6b5c2a14b7108e37b0 legacy-trunk +6274 48e859f328cbc011f6c76ea4eab529fb575d82aa legacy-trunk +6275 2eaa00860edc460b2c992579eeea796d57e9c8f5 legacy-trunk +6276 48776bf4bd493c6c31173b5025f7d5a9648938b2 legacy-trunk +6277 4f73962aaba6bac864785b2e206976aba7ce8560 legacy-trunk +6278 93868c7a15c90beeb89441986233abe6fdb684a3 legacy-trunk +6279 426e796f61152179ea4db9e8a16dc07b16d2f50f legacy-trunk +6280 17a2891e627fb89e523f712fe651df100c2c99df legacy-trunk +6281 bf3f80941ec11c8a371c583fc349ba0ee6c93d65 legacy-trunk +6282 2dbd5081c71e7bfba0560e8daff41f968dc5d66b legacy-trunk +6283 b9a0434d2cb6f1202d64f4648932cca47ecf02bf legacy-trunk +6284 6d324fbafadc2f9a365932a92733206c17d6396c legacy-trunk +6285 ca36e308e33d9de273f1a697796d49a22ee7d60b legacy-trunk +6286 31e100d9d929c8b0d8baa761614cded15aaa704a legacy-trunk +6287 cc92fa2cd86bd8ee6df766d84a24c26f93915f2e legacy-trunk +6288 89d4f5ded670377609997eee1b3f3b3336457cbe legacy-trunk +6289 f32676ab3f3a0611d171f84990faf4d96e597d37 legacy-trunk +6290 3c5ca77279883a4312e6705922468d92721d7680 legacy-trunk +6291 5b6a791ac6e7de4eada249c880cb904992e38f07 legacy-trunk +6292 f7f3e4b5693c14bed39def63e6bbdbf9c151c5cd legacy-trunk +6293 240f834aee8bbb484583394346a95587224fa230 legacy-trunk +6294 db4ea3abf8912c47209503e9c720563c2815cf35 legacy-trunk +6295 9aac37892e888fed848ba1dad4b67aa4b69f3244 legacy-trunk +6296 820aba1046c39afdf39169f20f73003499a7f8b2 legacy-trunk +6297 c3ec69b1fe360933ddc65ff213c5cdf78e4224a1 legacy-trunk +6298 9831e0fc01de04728e9b81fea2cdd5386c03a346 legacy-trunk +6299 bc22eb5d4a0a11ba65cd420a605c23372c4154c2 legacy-trunk +6300 c35d9e2a68608327e52824d04c2409fca0e1b9de legacy-trunk +6301 09beba9409ddd4af53287401c29642812d0a2e19 legacy-trunk +6302 3e3e95ddce22fb3489f446aab5d5d327fcf026b1 legacy-trunk +6303 96851f51ad6bf9fedae5f6a4ef6bc1d8d8368e96 legacy-trunk +6304 039bc3e4e64ea1208fcc390022212f6e6980b94a legacy-trunk +6305 f0efff28a24dd1d055c36ac593c0b6d4fab61093 legacy-trunk +6306 77d912f2abcb4f33040f0cb93d9f875e7b48045d legacy-trunk +6307 343232c1dc9a074939970e6d151c40a8b3e9abbc legacy-trunk +6308 fa1480e60ed6b4888cfecf6418b2c2c976c9de3e legacy-trunk +6309 2b2efa48f28d26b973cccdda03d0d5cb3af76bfb legacy-trunk +6310 5aab3f668e84696d25d165aea7362740af7286be legacy-trunk +6311 22e29b1747e139d9598eaa5126c59313af39949d legacy-trunk +6312 26c2002666119806e007ad367cb85385f7221da5 legacy-trunk +6313 f66679aa8de0ace36f36dbb3d7b95b329796e188 legacy-trunk +6314 210816d348ba45ee891469078bcba62da0583dab legacy-trunk +6315 de0ad7527de7fce8471e86094f28b77e1cb0f5fb legacy-trunk +6316 0d54a14ef0b8c74bfb62d5332f233e57ec786829 legacy-trunk +6317 d19338fd38eb69e85405cee1a09a07364f1ee6f4 legacy-trunk +6318 fcd82a01507d26229555b7b0914bcaecd7755da3 legacy-trunk +6319 8dab3ad964006bedfef8f594340f30d7362cca23 legacy-trunk +6320 97d24af348cfe829b41c7d2f2da9d89ff0a18c70 legacy-trunk +6321 69dcc02e3135fabc734e50eb1128133d9e3721c5 legacy-trunk +6322 d1cff49e3cc8d280a46d3ca255787d14c1cda157 legacy-trunk +6323 0ffc0b362fcbb93fabbbb5c578a61dc62b7ed39b legacy-trunk +6324 97519dfc63aeb79dfe8a01fe922f085a09a85a16 legacy-trunk +6325 3b114f0315c14561492162ad785bddb8d9e48085 legacy-trunk +6326 23126e8040a0c1262ea18d0fae72ad4d664f55d9 legacy-trunk +6327 0457ea94ef79faf9bc79bef1f24a8afa2f546e0c legacy-trunk +6328 5830ede4086c74404d417de3251dcce316e19d92 legacy-trunk +6329 83a95bf70867dbf374d7de8599744fa08b5e1fb4 legacy-trunk +6330 8b71ea5dacc831550239d73794faaba6ed013527 legacy-trunk +6331 0853166f0d69660d6c432eb38d2570afd4b7b7fa legacy-trunk +6332 b61939524c3cefcb4ae0e215048c0064d16e0650 legacy-trunk +6333 8b5901399addb4ea2168beb7c92f54354b1a0c94 legacy-trunk +6334 d55cdf43c24019c64089efa2c6f872707fffa460 legacy-trunk +6335 4566a19c3438d14e016aa370f20c38e7f118dd02 legacy-trunk +6336 7819568323c3753f32d23b57021804c6772736db legacy-trunk +6337 4591035228a773a516aa40e8573f4a59dfbcde51 legacy-trunk +6338 a3b09a71162bc22bc4c4ba376376f2606f638d71 legacy-trunk +6339 e9b35cc88b50e940d27bcdcb045772a9ec7f7a6c legacy-trunk +6340 2ac2a601205b335bc86b09173e6d59d14f509701 legacy-trunk +6341 4dde8c040f9ec5165be037fbecc03a5ca5d9566b legacy-trunk +6342 5b1471095a3a26721fb641f425566a63b4242687 legacy-trunk +6343 9b195285fe177b15f4de55a3e4a659585fb713c5 legacy-trunk +6344 4e979161671f439ae85e20bbdd502957fe9f30c8 legacy-trunk +6345 bc0edc589ad49d9b5d490cab5253ad24a4ebc799 legacy-trunk +6346 dc5c1117733980e8d87541e627037b4a7e50afe8 legacy-trunk +6347 2838db83d0ed38604ef628a47d10c4320a3950b3 legacy-trunk +6348 0638fdc23eec4ba6e6b3e248188f9e617bd0c801 legacy-trunk +6349 408e374934e5a424d3043bfd64b895aa2175978c legacy-trunk +6350 4286910080a9feaafde3f813079b8bdbd3748d0a legacy-trunk +6351 fee928f1661e7752f5726ff3882addf03b9829c9 legacy-trunk +6352 d0b4566e2107a537418137ee10789eabe825dca5 legacy-trunk +6353 2da12c9d714f4732bbd409e58566186bb2fe3114 legacy-trunk +6354 357d7395c998cdf66ebf646be543f83465cfc483 legacy-trunk +6355 c883d5e24ad8f335c92eaf6d02ac9a8454a44ec1 legacy-trunk +6356 6dc7ed8a434b1ff3690fb9a59811a2249c1334e1 legacy-trunk +6357 fc9b165a8a09d31286be0860a9843750b3946960 legacy-trunk +6358 81f60f52b8732585af4e8c37a9cf47719cdae04e legacy-trunk +6359 957f42ea0f8444486a237cb792b3057ed7c323a0 legacy-trunk +6360 3c75306a65ced41663378c690ca5a3454e9dc7a9 legacy-trunk +6361 5716825f6e9b137ff867e3d9babb43f8e3135a59 legacy-trunk +6362 f90301544fa9be89a6b8f2a89c85b7aa4d16eb12 legacy-trunk +6363 d9e7f1088c3b363ba4852cd8ea71c82741e76e80 legacy-trunk +6364 ab0889e421ed47a2b2a54042b96446b6448057a4 legacy-trunk +6365 958d4c67526b09cddd2e26225423143e0b2de464 legacy-trunk +6366 a50ae8393d3780cc743bf9b83704c1b990502ef8 legacy-trunk +6367 33e5d1d42cc262f98204abd9353c192ea7cd7533 legacy-trunk +6368 f4a3b16e95f07faaf4ef1d0a1c2dbaae9926c41c legacy-trunk +6369 318e689c220f92197d9ec765be69ecaf32475d46 legacy-trunk +6370 94c6bf6fd7f4fa095024c7daf88ab4b4921dc53a legacy-trunk +6371 584936890f866915d2154bd525e50f3f45f2d177 legacy-trunk +6372 cba4ce15a0d5c99aa65a9c859684dde5cdd7c6bf legacy-trunk +6373 ce2d9239ba81145d8c60c2c61f905deb7b86d838 legacy-trunk +6374 0864a63a10a92c17c51cd30413e2bd03ffcb1cb3 legacy-trunk +6375 a3f67bb96adc8c326dffd852b0e71fc9be733aa6 legacy-trunk +6376 fe41163c00c3ff29de5f56e63c3228d4487f0105 legacy-trunk +6377 97e7011fb1b191a304f65bf43a156c3fc370320a legacy-trunk +6378 a0fd81688be52f5d572958c9c24cc0491b6eb318 legacy-trunk +6379 ac1d5abfd78ee4910d7e5832a78c54525d2a321e legacy-trunk +6380 8671642e14a378f998b91e8206a57855b8a4086d legacy-trunk +6381 6d5096b7038d8a169a741b09e1aefb15393dd4c2 legacy-trunk +6382 9cf11af3628c89859c531d535fc4c7893c21c830 legacy-trunk +6383 a9a92dc2b374946c2864161223ec17fa769d17fe legacy-trunk +6384 5bbe0dce2e2671cafb8a042746d4e5cc3871c60c legacy-trunk +6385 f28d3d8982a25a7375a1a51ffd36e12241a1ff4b legacy-trunk +6386 524cf501c851fd85a39e72e569cae806787e3ca3 legacy-trunk +6387 341146100f38ca98fa67e70fa8ea009f9bdcc42d legacy-trunk +6388 84e16cf9219925b5ce38a49890d02599aefc2267 legacy-trunk +6389 44412e46f26877e94730f59257f78b38ea39ae49 legacy-trunk +6390 7de5e1153b392cb6d56fae5c3d6a371594ea48df legacy-trunk +6391 f487793d601846d0f9662137597bed89b31f3473 legacy-trunk +6392 9366164f5c4a93d7297ca8d7498125aca017613f legacy-trunk +6393 c2ae0440c424a72284a57ec8421e9753595969cb legacy-trunk +6394 e8bd430cd357e86cf998d7d898f950542cf25f91 legacy-trunk +6395 a39d0649752035b7d9a56b2c46ea51dad118a617 legacy-trunk +6396 063d86741410e2ed87d1c296f9ae17e23c4ff4cd legacy-trunk +6397 4bcee63d5bb17db0383766fa73400d3a4c33aef9 legacy-trunk +6398 1da168185e4e05b89a5086a18ddc6e93187ccfba legacy-trunk +6399 53e757bb67d5d631e6ba981b5f84c7c812d477b9 legacy-trunk +6400 1640e3559b866799d9c3ea09b225999bb8dc115a legacy-trunk +6401 ff68a2ec1ff12cb615ccbc872a56c52704f49799 legacy-trunk +6402 52c19ee83a6b0f71c89007a5d22a8ddbefa1924f legacy-trunk +6403 882a31b7f87311f8e08f0082da3acb44b92be817 legacy-trunk +6404 fe11969953446d70aa921134f8d3871070c145dc legacy-trunk +6405 60bb743b8a5c2000d3b055f722478e594bbde384 legacy-trunk +6406 f9ad98b58472b08e7e59502e63303e28f583e829 legacy-trunk +6407 d7d8705ba6444dd0d7a1d5a21848b25714b6c9c8 legacy-trunk +6408 6e0bba93a0eb3386094dc3a9849783287fead818 legacy-trunk +6409 decd13f6629d5a43240f5e5e5d8cdee32b78712b legacy-trunk +6410 61b4cae77f7e8735ab0666de8285ac54b86a4ccd legacy-trunk +6411 675328b08122b9cc944ed122fd2fcc7fb437f2fa legacy-trunk +6413 46b33cf8b913e5d0722da1a55e86c55c923e7e2a legacy-trunk +6414 0d4437d1c2b57ebbbafae200e2b5921cab0fbf6a legacy-trunk +6415 38684852376f5422613953c2d0d2b0d67d2e146b legacy-trunk +6416 6e609e266be9d10a9b1a2362dd564f69f4e3e7c8 legacy-trunk +6417 fbafb0cd0a2a55ff313ad4e7090d1374f804f815 legacy-trunk +6418 73cf7082b9e8d741472c4cfbe8c66dd271534932 legacy-trunk +6419 6f78d3164376ae2421f500417ff2cd7902053493 legacy-trunk +6420 10753e4d76e71dc6a085e52622df914a74c07cad legacy-trunk +6421 deadea43bb5364535e5dd170f28aef0d17cff955 legacy-trunk +6422 3acaf7af49cc10136630f3457a0025ea06ad2f39 legacy-trunk +6423 75d016c97d1c2ceef478fe875c32bd085d1c030c legacy-trunk +6424 9081819abbf556742a9f9f420b35659eaf40adf0 legacy-trunk +6425 7ee1b100ed29a4ff1f23157be8c0cfb492a43d0c legacy-trunk +6426 f0f8b50b5b6cd686ec0e6bb49ccf01dfedab3c90 legacy-trunk +6427 9d8a965de7ec8ac9f536dc556541496e4a816529 legacy-trunk +6428 29015b58e92202345298efb9810f9438779978a6 legacy-trunk +6429 8e309be89ee454f17dd060e1e59aed27b792d0e9 legacy-trunk +6430 f01e7af1dd60683b1f302e93257ac4738586ed13 legacy-trunk +6431 b86c80448d355e7e89cbc76c224354bcab312cb3 legacy-trunk +6432 6af7a703adaeda1c6f5e5d5d2b5c2948422a264a legacy-trunk +6433 90f5055550d9a04e52a6cf6d5002151c7ec812cc legacy-trunk +6434 bfd9baf3a9c29fe5ed63e2a6a81a210c4f5aa889 legacy-trunk +6435 f08d7f368ebfa18e99d03a6a8d4df07d504e4fe9 legacy-trunk +6436 00722990b80c31f2ed9ddf25f5da483f186664b1 legacy-trunk +6437 fcfec6a810ba543e67b20f92b1949788d6fb5a97 legacy-trunk +6438 9c05ff6fb0a4e4bb75e5bd063fe97a21b7126147 legacy-trunk +6439 2897dafed95a7284ecf9aa4ca27bf0d2e9116703 legacy-trunk +6440 53019e3a6d5a34059282e5f778f37af2f1d3e273 legacy-trunk +6440 129f1299d4e97e884bbbbdd00baf101d178973e6 legacy-trunk +6442 ad88a000521f7b3f3edb554ebadd8770e8f008d3 legacy-trunk +6443 dc144259498fce9aa689b28fbc97602ca3af30d1 legacy-trunk +6444 14815252c7a3a5ae41d3f891b5f8b12bb8381904 legacy-trunk +6445 bb0ce653c2ba027bb412997d0b18b4a716dbf6b3 legacy-trunk +6446 3d1e4b76f745a92c915a86db3bfd18f377e6d89d legacy-trunk +6447 fc505f02ad8a280759eb074e52b9b0802005469d legacy-trunk +6448 b76fe67eed44ea7093020d7956170b6a71f5be24 legacy-trunk +6449 a34997b6edf42bd7de152030f20ae22547c2cc27 legacy-trunk +6450 eaec4f6a8be8cff7fe13bb09702304abfed09535 legacy-trunk +6451 b93c4cfc2cfea4b4c3f463a4cae535888003ee73 legacy-trunk +6452 87e53c62cac82160c7cd9268f09c7f13e1805871 legacy-trunk +6453 4b5098b1fcef28060ab890ce9a02fce9236aba22 legacy-trunk +6454 fb5fc0320e6e5d52daac97545368cc8ba9c6b1aa legacy-trunk +6455 caf110724cc177e4503bf6078db72296a51297a2 legacy-trunk +6456 44902516614a901fc9ed9fcc68da91d00f4ab158 legacy-trunk +6457 0613f17dcfd8653a304744713d02f7b16a67a563 legacy-trunk +6458 011cfe7490eb5f96f4835b4c65e86cdc69fde2c1 legacy-trunk +6459 9c2cbf306864d2fb9b053c3d8b2bc41e448a92b0 legacy-trunk +6460 6fbc5c6658121e5a4085020ddcc06f7fb166ae34 legacy-trunk +6461 efb3a5a2cdeacbfb1f30e3934e7fab3a3de7888c legacy-trunk +6462 a815765b46952c1f3a8816182405e108e17f5032 legacy-trunk +6463 ae8d1b469813a71fa753cb40d103afdd7cd92db4 legacy-trunk +6464 cfb8b7bc0233a5f12ce17f5ad1091ed6dde5dd23 legacy-trunk +6465 a4aac766cbf005828ea9d2ba54bc97561e7a7adc legacy-trunk +6466 6414ffb7f285d362e323c56897550965002e735f legacy-trunk +6467 3f57ab32b7412b335c0e8a381a412423caaabde5 legacy-trunk +6468 ca0e05ec85b9aad30d18da90a4dc3a811e5a61c1 legacy-trunk +6469 0ec2ce97b8e3cbd0aadee0318135a1e2f88c0326 legacy-trunk +6470 8069790b397400919ee990cd39244f4d40c2467b legacy-trunk +6471 f630a067ae8cb2210b68cc782f85e15ee89b1939 legacy-trunk +6472 b0976cdbd59803b303e6ca01369056c7b0aa557c legacy-trunk +6473 bfffd38d600b5d965a5cfbe61a468eda582d2356 legacy-trunk +6474 1ed773e159369345c39e2867449f19e3e1bda1fd legacy-trunk +6475 4241582636adb38ecc14382dcd0a3fa5c868d1d2 legacy-trunk +6476 138fa15a1032ec1b18c691e681ce8397bf8c8ec4 legacy-trunk +6477 d3a1f6088c28f13199f0c24600ff1b9b87ecd877 legacy-trunk +6478 7495322427c76ac6e3f79536763d95d711f2c27f legacy-trunk +6479 c2a611ae0fecf4969003c2e9f51bb9f142a4d84b legacy-trunk +6480 1a0aa986f6fa6455b7b13f7eb42a5a2e5d7c1174 legacy-trunk +6481 18c32714f8ba55d155ea6a8962ce092901c53617 legacy-trunk +6482 61106986a1a4c9bd535c6111c4ac9df409a0ceef legacy-trunk +6483 cccf9f2732cf3ed4fe97f7e51f2528870a47dd3f legacy-trunk +6484 929411db20a8587f61549720d80b87635806a87e legacy-trunk +6485 22a033bbe655f15b403f461db40b4dfe6a56f522 legacy-trunk +6486 aa9548885b3f80a323a8712744aa5fc7c576cfc9 legacy-trunk +6487 4909ef39eaf1db824146845021c8ef3451907365 legacy-trunk +6488 211215c1c50d4b24a3d7484b3219636ea5f16745 legacy-trunk +6489 938918ff3537950e69248e4eb2fbf6ae357c6667 legacy-trunk +6490 5dc8c042905b5c1eb226d587aa65db3aa6704a41 legacy-trunk +6491 40c929335d7f2444226c4f7b7715e667a8d5230e legacy-trunk +6492 1dee3e4f67df02224e85d33f84b6b0230e360875 legacy-trunk +6493 f49e4057eb68302f299b37afcf761229389e2514 legacy-trunk +6494 cf2630a41f8752e6ff53758c16ece5acab913633 legacy-trunk +6495 4fccd9eee679c20cc71ea15802d8eb000c5857db legacy-trunk +6496 892f4561648a0950e1c5a7bb151b569847619822 legacy-trunk +6497 53d511c0029f54131857f2cd7dde4e0b281f941d legacy-trunk +6498 854f25fde8f42c0a27f815cb865767bf4891ed66 legacy-trunk +6499 6bbc13b7dca88b839608155485c6a8fe9e07bd4f legacy-trunk +6500 2cdb8f5ac365f8dcfd784771bcda14ab396374f4 legacy-trunk +6501 da2b9ae91d953ec60b916bf48730a90756e9b210 legacy-trunk +6502 82c9dee053bc6d441ee4a9967a8b375086f92855 legacy-trunk +6503 e77faf55697b8f3dc52ea04e706c8da3dda49408 legacy-trunk +6504 3a200002d80a880ea35081fa66ab0d8f8662b550 legacy-trunk +6505 893949d1d28eaa7e2f7d5287ede14225c706d994 legacy-trunk +6506 5592de9656de4a920049e05d1eb34b5b8f65ac1e legacy-trunk +6507 b43338c5231e10531614d20372541a5ce19eeecd legacy-trunk +6508 d1baec5718524c333498569bf8adf48d4db01156 legacy-trunk +6509 f7c243d0184469dccfa2015e6784356fa575d399 legacy-trunk +6510 ca39355be55a2baec990395f0ea8ec413bc2113b legacy-trunk +6511 261472fa972a7580f3430db8073deedba8c0b5e1 legacy-trunk +6512 23f280ab5409b79e6173d4e1f851dbb675594d33 legacy-trunk +6513 f41f0caf1cfce2f54240b61305943894e64682b1 legacy-trunk +6514 8a010dd4736eb83e0e6356f77f4958a56c578c1a legacy-trunk +6515 6b4d0f1a0ae9c9bb55c18d0dc0c2aeaa0a8ac226 legacy-trunk +6516 d6c7e40cbfdf0a393f6b422343550483a894499e legacy-trunk +6517 ef7e3c499a4da01cd2e12d356510735bd9d9f807 legacy-trunk +6518 96e0a7204e31d80ff7a184f0a235709ba4ef1bc9 legacy-trunk +6519 eb9fc404c066313e4e9ae76bd3e07c5d79331d1a legacy-trunk +6520 3e6863cea383263c5982c73a84525d1a77168b0e legacy-trunk +6521 f7b13d4182b3dae8b373e22da792bc448df620d5 legacy-trunk +6522 a2dc7ce4dfbe7bd6fc3cc3275db9d60ce88ad3ba legacy-trunk +6523 bc065df03ee4ef88c2c486dafaa503c497918665 legacy-trunk +6524 d6ca6e2079947722905b028908c216225b35765a legacy-trunk +6525 ef6c89fe21edea1adc18fb55e0115126d504b58b legacy-trunk +6526 ac925b9a1d6772137e5c6bf93a0d6a0be4366a85 legacy-trunk +6527 669ccd9e717e8ec9e2ceeb88a6f9f3af3e4bd994 legacy-trunk +6528 f0110c5c622792b465b3b57bb1c1de1f93a9a416 legacy-trunk +6529 6deee3b206b9947e44e82690bcfe0fb9142d2f28 legacy-trunk +6530 818599e39123ccb81b39376b0859622483342c7d legacy-trunk +6531 21b28dcfa86543d75d742f07bb381282479b4506 legacy-trunk +6532 d6897385c3185fcbddd9b128023a387dde57cb64 legacy-trunk +6533 64a58b0fb16710dcb737947ca65594c50c4795cb legacy-trunk +6534 4bf01c66cb686ca98503d615aad506b8c8e0bed2 legacy-trunk +6535 d6de2c148819ac7c3cfb822f6743d59b4027d21b legacy-trunk +6536 a589cedcbef54654514ad15b2411e85ecd18e4a2 legacy-trunk +6537 78843472fb6fa23d9680dfe85a4f137e65c981f7 legacy-trunk +6538 bde19acf1045d47e5982926ee9d5525ef5cf7d36 legacy-trunk +6539 2c89bf04f834eaaeacf1553dd380e9185af9ed25 legacy-trunk +6541 231a420918302e97dc899e81079fbd79490fb709 legacy-trunk +6542 4c54ecfadce5e486b068fb2e808316b4a90f9b16 legacy-trunk +6543 efe86891f411b857b9aeeecf931ad485bf3668c7 legacy-trunk +6544 19412305d335a69cb1cfc191c8e223d6ebffcad1 legacy-trunk +6545 c575a920e4a1f35a4f93a161eb6beb1f817eed4e legacy-trunk +6546 f66562536f11b3d5c72bbcbdcd4e0b71dd90001a legacy-trunk +6547 58504c9a37dc4a83e3fdc2458ad27de258ee052e legacy-trunk +6548 7b6eefac6e49376097368802aa6a656d12f7ac31 legacy-trunk +6549 4a7038e7a3139c09f49f548603f92258c05b1660 legacy-trunk +6550 eda29bef880c9a5dec27d1a2567f51a656ce7e45 legacy-trunk +6551 10c084942cf12dd0feef3ba2b229511a0b0c760c legacy-trunk +6552 18451dca9469a04e2b3087d5e74581222693f9e6 legacy-trunk +6553 a6e62c21b0e3b01cedf3d7e2bdf5aa371221de5e legacy-trunk +6554 752b86ba16fc6e938496b76b888afff49dc5525a legacy-trunk +6555 5f6869a38d851f0696580541ca5a8bd8c0bd8a26 legacy-trunk +6556 390683818f73417db914fa1b010860ed6d6c174f legacy-trunk +6557 46617d29c5d0639a7d65317aa6d78364ce31fa93 legacy-trunk +6558 7f83e24d1d869b67471031e401af9b1c59ee9e63 legacy-trunk +6559 e0f642ee45bbda01a2f1d1081dd6259230c2a66e legacy-trunk +6560 831b420e411e421d337c2c4e6e56699e9aa85447 legacy-trunk +6561 740def697d8b8e3bcda4de6c9cf2a7965c8748fe legacy-trunk +6562 f81d78547f289291afb2353c3f5c7c4b54796b09 legacy-trunk +6563 9f70d995d0279299cd92f36e837c884bdca10b7a legacy-trunk +6564 0b40c8d5b21d225955970ccdac35eac9a1d60da3 legacy-trunk +6565 dc946cab7b9bbbaf39fae6909d733fd67e5f2527 legacy-trunk +6566 8592fa4a119b08a88a1ca47623b38d0b1537ac5c legacy-trunk +6567 f29fe71f11e64f1381efb7f86e28190c8711dc2a legacy-trunk +6568 8438184e448e037829ba70750f9432409e7c1308 legacy-trunk +6569 0a59c98dc00535fa73b95fe53f29b0bc10f4a45e legacy-trunk +6570 8465d8fbc7ac17be97dc813cceea0a09abdd1b4e legacy-trunk +6571 e538638edc713372253e78b5a52274509b192877 legacy-trunk +6572 6f6ba7c00823ead8d5e5aa9ad66f812fb99de596 legacy-trunk +6573 3a3b36716689c5f8713d80cb37daa2dbdc091528 legacy-trunk +6574 5336c03a131fb5bf02a84360c54d0497b6ef3927 legacy-trunk +6575 2fcea5dd1d18a25ad61e4526d68741d3462a8cbc legacy-trunk +6576 9569664ac34753f9d5d1a4c37d6318e4097b3eeb legacy-trunk +6577 a5a82666977b5e29c788d23d920dc7ad7e369728 legacy-trunk +6578 869a948085c10fce839da6d5e74b184673f725e5 legacy-trunk +6579 9c1f9b09c44275762b834842aec7bf5084e8d434 legacy-trunk +6580 f395163ca9d255ca4f6c08cc1a751c2ea5e4ed6d legacy-trunk +6581 3ac030cc33f06887bb87a11c0962de3ac512e113 legacy-trunk +6582 6d9d5e7e588c49fcd2dbda18b3de16a527c5f361 legacy-trunk +6583 8c7b7e94f4dd39ebbdd09533f7d3185b17f05725 legacy-trunk +6584 07a35fd2e0a13ee94570abb899d867e73ed59c85 legacy-trunk +6585 90216e907345eb20b359ddd849e388f8e8cc373e legacy-trunk +6586 5726be8ee59f30bb3082175489a3ebfb53891c80 legacy-trunk +6587 b3af325d712de3e97ae089411b01a6f3a90a6597 legacy-trunk +6588 5d52395f40b0c9a2b5f5b93dc3203b8361e6304e legacy-trunk +6589 23589c016cb9b8c514406e4ceff273108d881c81 legacy-trunk +6590 3190398ae533c26a1226fcbb714bae322dfdfc4b legacy-trunk +6591 3d117587005a1de17ab19197165888311e764328 legacy-trunk +6592 a86407b3c3ac5397de06ea070d9dbaeba2f0dd6f legacy-trunk +6593 4f84cee65b8c9e4e2b05a4f050582318d470cd6a legacy-trunk +6594 650031e1e4190bf6fdaf4724d4717c32b6b55015 legacy-trunk +6595 083a7cd83545526f477824be496694d433f14e6a legacy-trunk +6596 d30f5f0fd0e2d29d5ea2144a12dd515a1564ef97 legacy-trunk +6597 71b43d4b7cd0d3679ea6aeeec4f8c3ecc8f375ad legacy-trunk +6598 9e6504494ac739198e83c9e2dcaa7515ad721134 legacy-trunk +6599 0b73c31bab9097ec2b3e0f0dff2a0c59b233f738 legacy-trunk +6600 c80c515999b9830ddf4d28518eea591b2d2097bf legacy-trunk +6601 a7a9d83505c47dfc0b10d8777f203955dec226d6 legacy-trunk +6602 5ade4096fb6b89e32916e5f87dde6856f1f66430 legacy-trunk +6603 eedaa59341b95d313b2263c8eb9a79f3148fadee legacy-trunk +6604 7b84dae97ee8a9888bb34ec8f6c5e2943d5a0ab1 legacy-trunk +6605 6b589334e0e9e6a8399df234296ef27b9e83e51a legacy-trunk +6606 c18d52e06238703c52462bf30c86428014f79f50 legacy-trunk +6607 a2bc941564a19fba6b3c145b2cbc04e5e5766d7b legacy-trunk +6608 69edc67e5a68f20ead1d9d94bd2906a5d6ae9a22 legacy-trunk +6609 1899b91553d1ef327770e60ffaea6dec335070d5 legacy-trunk +6610 262fd582e44b34e8353b01491ef25abe7f31b130 legacy-trunk +6611 8b75d5ea207bd79e3bc60c95d65877ba9e6a5b3a legacy-trunk +6612 7d3d2ee54a2cb25bc4e8b02869ee4b19a6a9a921 legacy-trunk +6613 010344b4a616253ead0ddf21c5503a9d3ba2e483 legacy-trunk +6614 5baa003bf39e0b4e276679398d55d2b5718e0f20 legacy-trunk +6615 6fb131501bb46d6380f126b4f0375bd503db1213 legacy-trunk +6616 44872f255f934747b441cee8c38651acf003799c legacy-trunk +6617 33bf382c2b1d9b5b40c149d3d48aa21fb1d3ded5 legacy-trunk +6618 efebf1c4eda296540480f687fef9ac69201b9211 legacy-trunk +6619 951ed9a83f57a50dda5f616f25ba0e0d52fd8e48 legacy-trunk +6620 c4d66c410c83cd02ae7cb23d9f188428e1e2a9c5 legacy-trunk +6621 30f1c01f38650b68cc5ecc723ef2f940238dc4b1 legacy-trunk +6622 ab43715ef4ee24f96e0953f4a2643bcba26ca19c legacy-trunk +6623 4298ff222d763db7f493a03bb4b821f47d42331c legacy-trunk +6624 8a0d43b131251d2f6b5b6fdec18a1b8c7f54bc70 legacy-trunk +6625 69a33fa3dbb8811505cd03132ddad77a58444781 legacy-trunk +6626 9881a5214fd2c50199202032238cc6ba7970fcd8 legacy-trunk +6627 cc06e70127fc0bc8c4e7d65f4a852ef7454d7929 legacy-trunk +6628 02621b877ee5df011ce5b83c8ce072b945ca906b legacy-trunk +6629 86a62ca3a37b7abf559414eb0da8d54621d7a885 legacy-trunk +6630 140508c9c6031825ef87200070626fbbe3698dfc legacy-trunk +6630 44a82ac654a4175569deed8e8a94b0cc8edee08d legacy-trunk +6632 f3a0d50246d2713fd9bdbe62504d0546ac821afe legacy-trunk +6633 df63985c1ca960f0e30f3cd9da5024eb37bae2bb legacy-trunk +6634 811a7ff783b77296ae0b38da3b2200ee14380081 legacy-trunk +6635 a81c3de3aad95c957d8894cdcf9e68b9fd44b205 legacy-trunk +6636 99250182c48affd578a5cf36abe8aa2073397fbb legacy-trunk +6637 582d4937d49971e5c8d084affc8482197cc9c6ad legacy-trunk +6638 1c079e23fd3b89940fd95eab029fb67d917da7ab legacy-trunk +6639 b3fde529440fd64de7df2bf64c7443218d1f4307 legacy-trunk +6640 a71a43d247b09c207c02b3752f29c57ee4748e41 legacy-trunk +6641 a9400eee040b18eb1074bb489d4d9cd28fad5b69 legacy-trunk +6642 74b8aa7f1114fbf3f2e24d479fe1e6ed290a7dc3 legacy-trunk +6643 687899c563e3de387c43d1f2e4b412d1e5938a35 legacy-trunk +6644 3dc2e675f178170784bf943d0771e9f34eeb0507 legacy-trunk +6645 1855e7c791e23dcd223573201ef5788d54f0f836 legacy-trunk +6646 88997802fb9bb0a189cd425f8f31ce9d406cc32f legacy-trunk +6647 236adea9760b00f274c80dd8ecb3d65c3f807907 legacy-trunk +6648 d241bfda7b746af42e3d8d1ba95567159fb6b0c8 legacy-trunk +6649 bb5b9ff72de19518c600fe6464015c7f0560e8cb legacy-trunk +6650 37d009b1bf45da967c9996c9e2e3e48f8aee2067 legacy-trunk +6651 315a50cb15e38d8978a16e7b75ab241baec070a7 legacy-trunk +6652 28174aa38c76277a008d54b356a583bef4eba8d7 legacy-trunk +6653 33f4a91f871bdbb9d63548c693671b87448f6dcf legacy-trunk +6654 7ede012a35c5ef346bf7559c0c1cb74c58143c2c legacy-trunk +6655 3d53cfab882188c389d84b9d6af9cd0498c08c54 legacy-trunk +6656 a3926484a6583c307c3d5495868f96a4e51afdeb legacy-trunk +6657 c363645b7edd27b49bd163112e71da87381b1e58 legacy-trunk +6658 2ccb99c9285446bbabccfe94630fe260725b37b8 legacy-trunk +6659 a23f4f46727b9bfa546db709a00e35c125c2dcd1 legacy-trunk +6660 5e12e9b28eaff1121dac801740c7d4d938cfbef6 legacy-trunk +6661 8bbecf683a5040f6add3d389236553ee0da3d571 legacy-trunk +6662 c796ae1157832d2ccb5cf248bd2bb7c1e3eed219 legacy-trunk +6663 03f2c21aecaf26a0379bd3fee41e162114a4dcc0 legacy-trunk +6664 94da58214d6c75fd80983401c9633dd9c89e7e3f legacy-trunk +6665 e61318c3ad1e87e164229406f08d2c11762e83c1 legacy-trunk +6666 d23f78730e00d13dff1caf70b1b7d1653585c3c3 legacy-trunk +6667 f025d8a377b570018d819de4715365dea5676726 legacy-trunk +6668 dfbd6e00dd383d2f3b0ec5f84d2ed6c7d97b50e6 legacy-trunk +6669 e3f6ada28ed095e7d00d9cbdc5102582c8e5c628 legacy-trunk +6670 67206bbd5bb548bd60db69a2b494a1a937351d57 legacy-trunk +6671 b70baba1c78932c279693488946a887cf831de36 legacy-trunk +6672 38383b63f4158f944e768a32db8e1dd510904a72 legacy-trunk +6673 6fb6e01e2ba14436de0d86d1a8a5c3cd80f1db8e legacy-trunk +6674 22aac81c7560c1a8960333f1b1148092ff0e4950 legacy-trunk +6675 c6259cf2c58143db6102305d5217de4acd751ef6 legacy-trunk +6676 350d0de07739c37471fe929f96989391dab80b50 legacy-trunk +6677 d1b4743a9a6053e98b405709bcaf98645e48f706 legacy-trunk +6678 3126f8a146a66f4a76cb04d388de5f79b0bbaacc legacy-trunk +6679 c7994008378d9de5a0bf04a376d349dea3ee1a52 legacy-trunk +6680 42ec23c500186d5abe2dbcc261cb573d4558b22e legacy-trunk +6681 63af2574f71f6c4172b67bd589bacb89cf46abf1 legacy-trunk +6682 1c00640069f8a541456f31e9cb3fbb85d9362201 legacy-trunk +6683 3fde9d2a39b0c9a211cbca84bf3846606692a3e1 legacy-trunk +6684 60fc01d6f7270cc3368dbf1a61220feb5847a852 legacy-trunk +6685 4a93cc7e7fb6f3e5b70ff088cd21fb483b1ee9bf legacy-trunk +6686 d7018bc5584e0a9c887be109b0a4245591c6d572 legacy-trunk +6687 e31b4defad5b45cdf4c600493d7067a02261a1e1 legacy-trunk +6688 688d566cb15b079da9d9a67b6e0cbce567eec335 legacy-trunk +6689 0410ed3808eeb8c2541aa955413387d60a714a9f legacy-trunk +6690 0a5f01d4701c0993b292cd5a21c91b291843d620 legacy-trunk +6691 c6679b1c6cfc1b4f5c46c5241a8362b44911b39b legacy-trunk +6692 9e0e8417a98aeadab9c2feb8686e42e3ec5ccf77 legacy-trunk +6693 9bcfb034b963d2c7cb5213741f949ff3e4a44529 legacy-trunk +6694 48b2d7a4531df8b82780f30c7856db263bef1399 legacy-trunk +6695 66913ca7ec470aec9533ff2d169bd8b8f65a4228 legacy-trunk +6696 1d1f0c647e77b120f4ff8cb2124ec99414b6e572 legacy-trunk +6697 180c1d3dac41111f7339c9f0e2111893cf0bf5d7 legacy-trunk +6698 3feecad296f40f4ed8d90044e86e40a9a13a5cbe legacy-trunk +6699 b3ae0cf2a06d71324fa8998278740a18ebddec0c legacy-trunk +6700 4facae00bdd61240642ee0edfbf1a8e8a86c23dc legacy-trunk +6701 573ed5e3879b699998aed881142f4c34483b8fb9 legacy-trunk +6702 84444ea3f5f69d60f6d847aaa964cfc62b24ccb7 legacy-trunk +6703 1f692c3f1d32d439f292d20aa3efed665cf1a310 legacy-trunk +6704 41a52ab263daa2507fe33151922ce9500108f5be legacy-trunk +6705 5c387aa037087337fb229a7e54ab5c45b952bde5 legacy-trunk +6706 886c0f775c976e2ccdb9ff46d74b66a59056cf91 legacy-trunk +6707 1099159ec8219e0f96d568d202d1168d21bd58d0 legacy-trunk +6708 7bf71a839661bc26006ac83038ed11d3620d0ee9 legacy-trunk +6709 8f291dc8fa9b469e60f25617920be34246f1e68b legacy-trunk +6710 780fc2b1674d772b889815f6cb72d3dbcb4f638c legacy-trunk +6711 cb4900fab76428af8ae55e3199e9469525dec1c4 legacy-trunk +6712 6c86d9136c090d4fd3453fe92260a3e12fe70f27 legacy-trunk +6713 6700558a32fb133c9391d4079eaf19b7476e47d4 legacy-trunk +6714 21e5b94b99b80bdf8e6ccecb22997fa3cc913c25 legacy-trunk +6715 c62d32c5ff3decee3feaa54c62480e79510094e3 legacy-trunk +6716 3545ab43a72a219f0fbce325e2df187767a3e2a8 legacy-trunk +6717 1ce00cdc003d255e8b08b598bc7092b523cd0790 legacy-trunk +6718 0fae353b04ca2d1a5341678a6edb19be2e2907c6 legacy-trunk +6719 43e2e592a001985120da5089ede14a06fff208c3 legacy-trunk +6720 c6ef8b7b26ebc120523f88105ce29335adf2256b legacy-trunk +6721 da38cd6164127ccdba796094461a954e96b409b2 legacy-trunk +6722 5f672a512dc41fdb807917612a1a8af039978e2a legacy-trunk +6723 0cf671452fc543d426d53d6c83c437d3b49928fe legacy-trunk +6724 4470f7ff0c239c894cb9b518812982f47bd0fd86 legacy-trunk +6725 ac3fbb6771f5c2db39bb63a2b6a202961d7a1a72 legacy-trunk +6726 6b6c5d12130cd990eda806560df6d4b4895ba635 legacy-trunk +6727 02a0321f9468beac7addea966c5b0fee028cfc2a legacy-trunk +6728 05ae572c1ac566c3e83509631e4cb07ced099f35 legacy-trunk +6729 64704d36b1981e823fcf0fa5e88572fb06034099 legacy-trunk +6730 e225e70fd6571fa647d43b0bc423cdacfe8de806 legacy-trunk +6731 239b100811763d34198d10195dd9b134af0afebd legacy-trunk +6732 b7e7eb5ef820aa87797a148905ad5c0e91fa331d legacy-trunk +6733 dbb76095adee095990337bee6bd8dcbbaa77a934 legacy-trunk +6734 516ddf50194d36806ee9fc9edfbb5ffaf15d5d35 legacy-trunk +6735 544217d548a5f1d59496edd0294f55352730f1ac legacy-trunk +6736 67d258edd3d99bcb6fa13ec886b4ee7c2386e970 legacy-trunk +6737 7b54a3cedbe0c644c705cacb666f6f808eb7ba74 legacy-trunk +6738 25301b9ea0ccde9d6f27a27bd7c902b4ecd854c4 legacy-trunk +6739 8892da9554a5bd11fe8bc7d604e4fb267f7c847c legacy-trunk +6740 f0e82129bd3ea3617a2f1f5a7616c92e474d83a8 legacy-trunk +6741 6082501ecb2e586c20050bb393c4e65b0f1581e3 legacy-trunk +6742 2e87b81176f9d325a569383304e3471e54ed9924 legacy-trunk +6743 38c8a1ccc16c60e037ae8d0eab7c5de4fa7459d7 legacy-trunk +6744 ef51e4a2e799449f3f5d9cdfbfa374659d5a9d48 legacy-trunk +6745 65120e91b061ea7df1a6f681c367a484e0fdf8a4 legacy-trunk +6746 e7890336f10704f3340b88a609d50cebc1b18c6a legacy-trunk +6747 c48764bf62d1ed06a73c10f30dd64142ff718bfd legacy-trunk +6748 3799b711631b25ec646ee87783c0b35da4c6255f legacy-trunk +6749 cb841f1b022ea224cc7c6f5ccd966607afb655f1 legacy-trunk +6750 ae178f15040300c690a56d2393a77a6650af8545 legacy-trunk +6751 befdf0dc096b08eec52f3e8bf60bbbaf4dac52aa legacy-trunk +6752 f6e824b2703235d8c359b32160092fd23d78b1f4 legacy-trunk +6753 94b761fac4d7bb3c8acc3c9be9e10ee1cb80fc80 legacy-trunk +6754 56909781a741b1050526b5226e2f64d9ddee493e legacy-trunk +6755 4bdafa703a04b5c7b6be649d7e5ffe5ed4ae0551 legacy-trunk +6756 daf12f64d5aa3d51852004e3b45901adeaa74794 legacy-trunk +6757 839f72610ae1f8be1ba2e31723b367e877d3fb3f legacy-trunk +6758 e21d3e7aea87196c431965ff33c12028e7238655 legacy-trunk +6759 b69f4b83892e6885b6089dca0ce760ccf4b51686 legacy-trunk +6760 db35d2b93eba0f9969f0b32a85f12ad18377beb4 legacy-trunk +6761 f2f5cd7cb5b56b3a6eba33a23d508de145818f87 legacy-trunk +6762 43ae045aa10e107c49b5ad50cb2a7c8d6d9ad99a legacy-trunk +6763 0036dcf284023a9bd8632326fccc842a010ca181 legacy-trunk +6764 9c6eab0cf542de1b1405c105ee3bbeaeb794d729 legacy-trunk +6765 1427d61f1307299f8243a41c129a5bc659f6cce7 legacy-trunk +6766 abd0b9ff67592d1047736a7eef5cd9ebc92ba6c7 legacy-trunk +6767 69bbc21f55cf2e34e4738aa5324d2363700ec4df legacy-trunk +6768 520ddcb3d5d68e27b0674128afa8651a88054447 legacy-trunk +6769 008b9fc565bfdc27284aa6335530be0e2357fc53 legacy-trunk +6770 75d75732a9e4be8d5b5b12c1928af8a3b1bc544c legacy-trunk +6771 cf9a97bfc02339e03e4b4060b98e6f4d37e489e1 legacy-trunk +6772 6f7090a826459d1b53dfbfdea1a7927248227eb0 legacy-trunk +6773 eb1ed743972c426a8cdd3d803bf6cba70a628455 legacy-trunk +6774 e05da8043b500b41534debc725e2fcdbc2b95ff6 legacy-trunk +6775 8680631616658e5ed5ea43b72b952207a3a97ecf legacy-trunk +6776 fc4f1289fe6cf6fd9456d146700fc24b2bd2e550 legacy-trunk +6777 388f9c2220ce4f62c2a3a7c6c417738153903f68 legacy-trunk +6778 95c31931b76af70837a3a414f18db40b00a1fcf5 legacy-trunk +6779 7809b6b4ffd93538666b13f7f4349e048dbd88d2 legacy-trunk +6780 e9f48d7e73b1cac9a3e15cd1cff0ace1b862d954 legacy-trunk +6781 2eec35e2afff73f29e5d4efe948a83f71576a99c legacy-trunk +6782 1a0f34c18163cc0495cbea13414474af6afec53e legacy-trunk +6783 ecbeb445f62e506f8f754f13c364030f25e3f78a legacy-trunk +6784 3f6d261654ca2e9db93915628ac4a143fbd2bf6b legacy-trunk +6785 c97ffd2ebd5396410de9a73fa677a935ae361f6b legacy-trunk +6786 937f69fd43fea5e78b16212b7942a98cbe70da23 legacy-trunk +6787 9847de940790299fcecf2d1b901c6991590062dd legacy-trunk +6788 3b3870b9acf2439767af855e299f9f904a00ccf8 legacy-trunk +6789 46d736fb9da32282d528aaeca59b0e5d0e4d1213 legacy-trunk +6790 772828c1b1f687419a5217acd155af1cf10fd4fd legacy-trunk +6791 0f51f1d70d4526fcaa99eee63b63bce5047260c4 legacy-trunk +6792 97d3652e57d35c23a1df2d5034d631436ffe7727 legacy-trunk +6793 97133996e22f0f2a205a15c9da39a22cc4195acb legacy-trunk +6794 d587196f9befa5ea6eeeea21a4c7f8c7c302aa13 legacy-trunk +6795 9d4450350451f1ebde7d6b6c018cfb33805fe1de legacy-trunk +6796 77397d51f89204deaae4d78a0e5ed1d4e7e86b53 legacy-trunk +6797 314c13445a02df0014cf1d38b59a211c9399ece0 legacy-trunk +6798 1afcd1cd333b57c3ff1047b9d57f1710c96cdf7f legacy-trunk +6799 12c3865aeaa0363506994e4998b7658ff6c82c9c legacy-trunk +6800 027ff1554e662bff2cb3db9a2d8d325bb080267e legacy-trunk +6801 fb730fb13fab5cae67495f67c4c0023c99bf9402 legacy-trunk +6802 b03ab35d52df977c9bd73aea2b54f20aff7a7439 legacy-trunk +6803 a240be5be6b4c463a47215b894026becdc50b7e5 legacy-trunk +6804 905f7b4b13238707fe7bb9559d0da1d16d25e704 legacy-trunk +6805 c2eb38b674f30989248c654dad878f63509ed424 legacy-trunk +6806 d04469d0256ce8ef1bb041aee64ccae0fc917962 legacy-trunk +6807 ee20262173499c4e5c4f1255c18ecc91d16a2f4a legacy-trunk +6808 f37cbfaa7328129a0d8df292482090d752d58db2 legacy-trunk +6809 366d72f12794c56957bc75e438c9f725ac3d1545 legacy-trunk +6810 4dbfd4dfe281c912552cb3ae73df040998ec8d5d legacy-trunk +6811 376822c65810843ef8612ddd23bc0624c5223268 legacy-trunk +6812 af1684fc9c6324d8d241e22b781be66faa943c2f legacy-trunk +6813 e7ba092c3cf3c7153b5d9b42d7a237b1e4faefac legacy-trunk +6814 2df62db366b768302ab34487d2b463d8f16f065b legacy-trunk +6815 5a75512360635ae3367190fe0eddeea434bfc438 legacy-trunk +6816 897297abe5b405c162b1d18e3afa6e2c23c591ad legacy-trunk +6817 4bbde804b69784b4b0f0c58c705053fd8613d603 legacy-trunk +6818 5cbdba4d2e1525d9420aea979a134cf0ac08725d legacy-trunk +6819 4fb884bf147cc1c1b63c550d50ba9edc2827a4c9 legacy-trunk +6820 7b600e73fd2a8a0ffd1828093f6b4ca9a04133ac legacy-trunk +6821 a5c29accc438e80be201481025adfc0c09a470a1 legacy-trunk +6822 852ca23c80cce00f512a797378f1bd5bfdf5a06f legacy-trunk +6823 983df436459570fd8561baef76a0aa2586455bc4 legacy-trunk +6824 a2099194628503abe76d70c47ba230958bc066e5 legacy-trunk +6825 02a24e48b376e56b49bce8ff198d732071ce07da legacy-trunk +6826 6ec0caeaf8230d8efb6107b4c4bd805251dcd807 legacy-trunk +6827 aac8a99a1f9c4fa305d0b2ce6340c116f24828da legacy-trunk +6828 69250703953a2a71072f096bc862f965e9edf927 legacy-trunk +6829 eb455d99ba98226fb8ac4dad0ab3fbd9cffa29fa legacy-trunk +6830 95ff89d83d6397a84ed81c102500be3e9d4a56eb legacy-trunk +6831 2913597443b900e00b5e15910df47625801d3331 legacy-trunk +6832 0212b480944bc20397d689d981885c215010e210 legacy-trunk +6833 4e00e5daa6128d28b0752fca128e393eda31eb4b legacy-trunk +6834 dbf2737d2c81ca3e3cf39db348ad386478a8d0ae legacy-trunk +6835 af754961acc524c9100503d9b73e70a426ab45d4 legacy-trunk +6836 383611bda9e6dee89abda55418b6352f0a933e12 legacy-trunk +6837 7b1f6e5e9294630c4b0c4bd2683a551171327eb9 legacy-trunk +6838 34182a6408e04f95b01d2b2b9f8b2f0aacf95a5b legacy-trunk +6839 913fc9ff43ac121a97209a8c6420de0c28ebb970 legacy-trunk +6840 3eb74df672a3997301eafb0162314d81c253acab legacy-trunk +6841 315a79199fc8ed7cfd9ac4ae91f1acac9fa389ec legacy-trunk +6842 a05f8d8c6768f81cf225b30e2d2aa034c5287e3d legacy-trunk +6843 3e77d6637a2b90d32a69740ed092172823f2f26f legacy-trunk +6844 a70692a6d8ccf5880f2e846c91a9361f1dcc920a legacy-trunk +6845 c277ee8c669cdb820a9d3bbe23d6035d526dfaeb legacy-trunk +6846 cbd434b46c1a63f3224f8a8132a0cabfa907d6c5 legacy-trunk +6847 98ea80051dbc91d09702b5dc24b23700485c7023 legacy-trunk +6848 46140f5856d90a0ea846ce98e1a7bfe200a1a7b0 legacy-trunk +6849 31c7d8f45aeb08557883bfe7cf671905d0d2a504 legacy-trunk +6850 d4f64fc42d8449054f3317ed7492069a34463f5a legacy-trunk +6851 5f8a653b1779a50de7ecccec048d919b6a481791 legacy-trunk +6852 96699af481ba9e982d41afdaeb41bafcacc2f5d1 legacy-trunk +6853 3061676a659ae3e8e796a08970ad9bdebd261359 legacy-trunk +6854 af1bf0f6e2db1100f4fa2e29a10f61e7988a2448 legacy-trunk +6855 798732e69b3ba1a624d8cb997d8b6e222c61ee47 legacy-trunk +6856 ad41decc5fa93f9c88b5a8e69bce284328b805a4 legacy-trunk +6857 e033c786f2971c764749f9f395240c0e5c38cb1f legacy-trunk +6858 0de9c554ba00c0d6ef5da358104d11cc6fbf1745 legacy-trunk +6859 70cc238d563e622792de7ff8281c362fe431f100 legacy-trunk +6860 3c7efeb607a070cb44592ac99cf2ff7acb3c7c41 legacy-trunk +6861 2e272bf5a43e8447be08b5e6bb70aedf12b8bbaa legacy-trunk +6862 a77f4c22697ff9aef7f57b7cb54cb00ffa2d9464 legacy-trunk +6863 adbe63317ccb3dcc67a4f5b452f6b57c46efbf78 legacy-trunk +6864 77954fe4376cb491e27b5a4843a5f5006a82229b legacy-trunk +6865 62b65be2b77f1b1a9d7176a2b5ee6b32450ad7fb legacy-trunk +6866 72a0cfda20044745908cd8d519a6513d85479081 legacy-trunk +6867 7980863234645c858b753feaf05231e896a15722 legacy-trunk +6868 5c86f60539f7427e0ad13cf041ca0614e87bbf29 legacy-trunk +6869 48d1f5beb16ba649ad42d6ea12c47ab88e578604 legacy-trunk +6870 d58a84915fade19ae2d82f0d8a59161b4493b127 legacy-trunk +6871 890434d5bec2f9c39aa6ea6d1116e441820df0b4 legacy-trunk +6872 ec4c42bea69d6cfb139c4c44dce118be8b9da50d legacy-trunk +6873 fdd129f0574edcc617b9ea006ec6597ffb1aa4b3 legacy-trunk +6874 091775a5e19b35e94451b0471761be634e7b197a legacy-trunk +6875 d16b8621a3f0eada3904b06c5d637a99e0be5a97 legacy-trunk +6876 1d275cd42c9b187c6329ac8ad225b6f712b8f781 legacy-trunk +6877 3b3f7c3f6da2f8f0d5e84eb6f61745bd673ee8db legacy-trunk +6878 1e2d280606d1eff8d233d738fa98f75bc0586a89 legacy-trunk +6879 e528c0ace4e5da9d21cc3e287a534b285d150ca7 legacy-trunk +6880 6f032ea26642f6dce00cefae6178d502fbca271e legacy-trunk +6881 7ddd8b3f6802f0e2e9339e786f8984541a2bed18 legacy-trunk +6882 6c771ea38eee8729a131ecc496277f6f0a5d83a8 legacy-trunk +6883 a98011f0f9ca5b4ab1b3ce8d1b815d6d21669d79 legacy-trunk +6884 4cef23e1dcca87ff18708d7bd57f690f98337b65 legacy-trunk +6885 d738490c8da193c2fcec0c185a84ce4b5351abf9 legacy-trunk +6886 ac3324e638e96c2438e155a2869c4fa6cfe10fde legacy-trunk +6887 77d3d3013692fdc3b44410b1a3960d194007b139 legacy-trunk +6888 02a68d623805c01215e151927e32c464b515825a legacy-trunk +6889 3dbed0ff9cf2334d7627fb497de5c3fa7d4ef56f legacy-trunk +6890 fce4f87e5974947b813e505205fddf2e87e765bc legacy-trunk +6891 c1435c5da2817b306458eed20b278d99cc4dc02b legacy-trunk +6892 f41ab713f7eabe9381b7af1076e93e4765202e65 legacy-trunk +6893 2eacd2c8eabff43554670ea78e3839f79d6b9cee legacy-trunk +6894 7ffff695f21da77194bc5f47f00168a2ed0c1dd1 legacy-trunk +6895 93d05e1782164df7b0e7c2fbe64309adea26fefb legacy-trunk +6896 dd5e9e85718659d65c41a185287d3acb133577cb legacy-trunk +6897 ef7604c0787781b913e70e6fe0169b917680de0a legacy-trunk +6898 4f6c56292d34f6bde58ced166c8947d13758c8ae legacy-trunk +6899 5e038856fa56886fb6bf820ea0d26159860dd98c legacy-trunk +6900 75abe737e70b61719d111f7097d3f4a5730c3d93 legacy-trunk +6901 9c7ef030bec8011a3b24f61300e04af0e5673e80 legacy-trunk +6902 938be7a3106f285bd72b50449f77d767f89a708e legacy-trunk +6903 34eeb61f1028386d8a52403035beaabbd7874d17 legacy-trunk +6904 92753207149044131ee2a76e177c5bd12527e876 legacy-trunk +6905 f2f946bd7f47c5c9a635a968af465dc7908f1b28 legacy-trunk +6906 1ccce5e4f806d549c1aa3fab9c48a708a4c49860 legacy-trunk +6907 340adfaa98543f019eb0fee867ad9f2fff0d7fbb legacy-trunk +6908 ac2a627ce3a7ef78037e93a3dd3897a9b2731681 legacy-trunk +6909 25c53286763d0359eb32382f0dc40275b5fa19ed legacy-trunk +6910 a362356312737b77c99b248079c850f6cef7c628 legacy-trunk +6911 7de457bdc946679386614fe23bf22e885aaa60a0 legacy-trunk +6912 e88b3215e94a59018b84f1a96577bfd31c971b57 legacy-trunk +6913 fb1237bf7022bb7773978db3210a2aee98077a7c legacy-trunk +6914 fce296dbb03e16998103b7a03ebf5229185240e5 legacy-trunk +6915 78010ccb8a461881ebcb55436c83304fffa33c63 legacy-trunk +6916 0549e3428d57835dd5acad7a90e7dc9af0f3ad12 legacy-trunk +6917 1c27449130ba445c211019311b22938bc8152d10 legacy-trunk +6918 fa9abf9a8624e6f6e745ae15ecf4377ec322b993 legacy-trunk +6919 02b1f08e30a03cae94fbf72599cd627f725cc194 legacy-trunk +6920 94521880871d162bdcf9fc35b89a04fd3edee74c legacy-trunk +6921 1ba22f749489a4354a7bc36129d040432ffa13e3 legacy-trunk +6922 85d38456adf09485b4042b00ab3f9a8ee7647cc0 legacy-trunk +6923 1fb9a54e4a9c157bda4af35295782b0c341fb0bf legacy-trunk +6924 91c696457fd4ed2cd314b0b6a0ef05038f28bc79 legacy-trunk +6925 c6ffb4fc4da4066247321370577ffa1fcc32bd7f legacy-trunk +6926 edab097882d80e41bd6b99468384a97cb6653f2a legacy-trunk +6927 dcc4cf9fa62a86cb694d123552950d3c6f7bb5b6 legacy-trunk +6928 4c16154fffb97b46f25dc520dcc47172aa824713 legacy-trunk +6929 7eeefd3267d450a728970e1987f938c7b497d9a7 legacy-trunk +6930 acb1988b8852fb8976a079f99f4eee1602490484 legacy-trunk +6931 ab60c5585d1b005cdc54badfd6eb343f6d8f5886 legacy-trunk +6932 d8759d0b5a67cbbd0a3c0ec6bba5e57bf9a64104 legacy-trunk +6933 c91aacbf8ed46528940bb06e86cccd2ce9c014a1 legacy-trunk +6934 5197e0f3f0ffced0c9ebb8664a23140998e7bdaa legacy-trunk +6935 a8264d70f281c6098bf02b5c3d7315f9d15ab0ef legacy-trunk +6936 6f89a44a861c7bd9a2a68262417548d5e18c2fda legacy-trunk +6937 c6a4786e7f8ea8301bac14a7595bae8dfd4f7813 legacy-trunk +6938 baabfb5d62a88ce41a4891feaadacafccea6c8e4 legacy-trunk +6939 b51dc2fb48e1804add5799178f5b62c5dbd9753d legacy-trunk +6940 8d056f53a7f6325a907ec35bcd6cfa5b43db3390 legacy-trunk +6941 0d61f6c38b37e2578a49fa9767a43b544c0d9981 legacy-trunk +6942 600f5b8a16cb1c475bdc29c538e8eefe53dfb7b1 legacy-trunk +6943 5d7fa3f2cec3d56116b6a68a922c3b4244a54c71 legacy-trunk +6944 d9c5155bda5002f2ce88c549e887397fcee89172 legacy-trunk +6945 122c8fdfe4ef91aa75bdd0029d3a0b95cab5831b legacy-trunk +6946 f634609f4028a5e2c791e0d23e7a97b444d1e2fa legacy-trunk +6947 55fe64c21145cd89327391cea7e1ddec4756e968 legacy-trunk +6948 4d6babf2e4e1913ad96ab8ddda2fb3ad525b5e67 legacy-trunk +6949 fb2d1d5e141aa46cdbaca4580df95895320269d4 legacy-trunk +6950 7e5f0395311059bd44f6e2e3cca0c23bd820fc4d legacy-trunk +6951 2fdba12676139ef5fd1af64f78b1e60904a495a0 legacy-trunk +6952 267ae58232d9a86a9eac5514332f09c9cfcb91d6 legacy-trunk +6953 2343803318e4f6f563214a0c081f4862a69283b0 legacy-trunk +6955 9e853a5f04ff9ec1922eaca700a4416c218492a6 legacy-trunk +6956 dd709ed8226270defe01db9cfe973462ce23c3e0 legacy-trunk +6957 324e1e36e652bc21a3584165e01a1fcfd99dbcf8 legacy-trunk +6958 1fec88b22e87f824c441ec04adee2b5b0e9ebc0c legacy-trunk +6959 a60d85237fdb81ea570d0873b18f1345c2cb176d legacy-trunk +6960 d904f539ffd9ce8efee10b0127844baeeb3d3bc7 legacy-trunk +6961 3d43510b5e19da5a6459c0d73aa635a0f5dfa343 legacy-trunk +6962 e0c1bd0a74a912744ccfb625beb6312cdcde9e78 legacy-trunk +6963 8ce18538e3bbfb1e42996136870c5232af951695 legacy-trunk +6964 0e623e82301f1fb146f0533acbe7fe4e39643520 legacy-trunk +6965 974dc36fecd62c16f6e2cec9e4c7109bc6ea1ceb legacy-trunk +6966 6a75b3cf023cfc7ac3b1807e7131ff9da8470cbe legacy-trunk +6967 ae75d4a1f5ddb35775c69fcbc00de7af53069a04 legacy-trunk +6968 99e70c472a202da512664bf6c1990c8302721c55 legacy-trunk +6969 a95549269de2b0302498f56eabc60eebacd157bd legacy-trunk +6970 569e3af521875deff6746c3cc8bf152273e6bcba legacy-trunk +6971 eae8ab3d24e030092e274e41dbbd817deb3dec18 legacy-trunk +6972 93353e1d1c7604f075752457be31e262c23aa809 legacy-trunk +6973 d80125d7dc734a1f9e1459eff8647ce80be5408c legacy-trunk +6974 20fd966485108dc2e08a7c4e1e22c6773bb9181a legacy-trunk +6975 4ba20f44654bbe7e0cc493869a21fe26913faec6 legacy-trunk +6976 559aa47b2e2cfcfee64b18f9fc2c7959afe41e01 legacy-trunk +6977 941b051af675e2b7ee76583838bb6c9430744b62 legacy-trunk +6978 65d2d8e67da323b74b72e4d805536faa6fd24c1e legacy-trunk +6979 858fb2e9bc1723c88b9ee7815b11856423bf8a4a legacy-trunk +6979 db49494c93dc73de06d5721c74eab533a947a92c legacy-trunk +6981 2b21ea2f39b44326cb20c15f908f03f7d0cfe811 legacy-trunk +6982 18927abdc26281948bcb954642a6f8a745344ff0 legacy-trunk +6983 7187c709ebfdea4147af9d2597077127e282c8dc legacy-trunk +6984 9ca59424020e00f6bc6d11519776ec969107c730 legacy-trunk +6985 11e0c22089997986d387f01a5e2e72d066875e95 legacy-trunk +6986 df2c212e4ea3ebcabeef60eb8b4361aae7dbf16c legacy-trunk +6987 23a104d3bcedc75cc777c4631e2ef4e27379ac8a legacy-trunk +6988 847445aeab2d190a6c6b57266dfbcfda54147d07 legacy-trunk +6989 f6976b9a85a43ef9b4785ae552231a1058b2e831 legacy-trunk +6990 a75858fef5507ee7affb97c309e4cc91066e8bfb legacy-trunk +6991 4a7c7dd7b1f056339361736bdb1050a5b08c80c2 legacy-trunk +6992 a4d2aae757a8d5174a9f22f2d61a6b401068e52f legacy-trunk +6993 691e392cad340bdbf899989c1108c3d8b5014a6a legacy-trunk +6994 fd524a001ce9fee29f817cae57cb2692b5f2b1ce legacy-trunk +6995 b4063c101c2cce324939f72ba329779811f563d0 legacy-trunk +6996 97a61795a169aff7e1ea7acdfd8f08d3b1403886 legacy-trunk +6997 d25a0ccbfd6b8a8a089a55a9d19927293aaea47a legacy-trunk +6998 4d0681f7cf6b6b4b5e4f1199015b76dc2ade5015 legacy-trunk +6999 d0c03c32e8d9430dfca470d23fdd7f765980f3da legacy-trunk +7000 ffef2c30dc48fd07da82cca288ed657314f0f2b3 legacy-trunk +7001 db55b80aaf10394a6e5898a8b4597a9a5b9dbf1c legacy-trunk +7002 7894a0cd8c754b85c5d78fd188566c27a5772559 legacy-trunk +7003 2824cbdbe12c5bd67a43afe8fe16be694c395c38 legacy-trunk +7004 337562330fd0fd5903fd412eade098c372e1a6ff legacy-trunk +7005 80bcb02ebf4ef0af548619c91812113a9fdf8929 legacy-trunk +7006 9603a60c869be2922ee9840a48cdbef8bdf0c062 legacy-trunk +7007 30ceca3f105b0da810543218d6aa7040342f90f6 legacy-trunk +7008 62cef7e896b6ecab2704f329027d098d73c0d932 legacy-trunk +7009 d90d7b541adab2f6da17dd680d258b7049c404dd legacy-trunk +7010 9421d2f63077a952f666a0b00333c892681186e9 legacy-trunk +7011 05750838f8403f88635ff77dcab844d923861e38 legacy-trunk +7012 bf3768bd31f2c96d574a6575977da57469a85f57 legacy-trunk +7013 65170da1d2ca5bc4b30cf69cfb1041c5b5232794 legacy-trunk +7014 47e7c42b9dc6353fdfd883de6495eda74c0ee8ed legacy-trunk +7015 1f4f1be8a339b8ce7ee517e08d0913182489b659 legacy-trunk +7016 5748d5ee19ed3cc09945741c1e17c70ce9c0b7f7 legacy-trunk +7017 652303ef926b1f62d2b5e80cebe40cb97ea0210d legacy-trunk +7018 e52054440efc5b02fa9fd3460321430cbb5ae99a legacy-trunk +7019 8d0b00ed8c2b56e67b3b8c81fe2a63e79acd6f88 legacy-trunk +7020 820bf1ae7e2582dd5f254102572b1d0098ef8fcb legacy-trunk +7021 cc6521a2ce21ee85ff61ff88581226927cf7df82 legacy-trunk +7022 54c8008de87bbb53840f2a87c9eccd0c5764cffe legacy-trunk +7023 bd551fbb9596587b97f16963553af332072b4d81 legacy-trunk +7024 dbc98834eff2ea56894bc408b50ebe7c70f71640 legacy-trunk +7025 f1244036ebab6e3711892c9c0e7b4e1633fd0f64 legacy-trunk +7026 cea318bb9d2f4d8e47254eee9a43ad58d227e93a legacy-trunk +7027 efb2938ce6763fcf156499d5a19d123860d4b16e legacy-trunk +7028 8900213764ba19d23739de74a8d42ce31c8bef4d legacy-trunk +7029 f031466530af67283084aec7007db0df569c538f legacy-trunk +7030 0450742f36f4ffd10f9afd441b543feb43c93b19 legacy-trunk +7031 b213d258ff327ded636dd90e1e4de449e7922fdc legacy-trunk +7032 2c0c680407b2ec4c42b088c3cb489ea233fbb6f3 legacy-trunk +7033 df9d1ebcf7f30ba181cebadf916dd016e6f94594 legacy-trunk +7034 adbcc0ab9eb6af401a52bfd19208f77ddb29511a legacy-trunk +7035 b217da3f9b54c636420e911514d095020bd52dcc legacy-trunk +7036 c713de72e76ec4329a905dab425ab4f896093ae5 legacy-trunk +7037 d030ea533e63afae870db428a7ea1545ff7cf877 legacy-trunk +7038 ea458933fc2af6b39dd1df78447e1d9e75c4aa8a legacy-trunk +7039 745c7c70be3108b1774f43d0b1a84a05a6c6bbc6 legacy-trunk +7040 7f47e2b6c4a499f2b0d7987bd179fd0613ef029f legacy-trunk +7041 6403c94de50dc3c1fe848999190033eb72117d6f legacy-trunk +7042 a360dc1fa558297e7b26f26476234368129a3df0 legacy-trunk +7043 4341574e163b3f4915265917e73d450cf7b747c5 legacy-trunk +7044 e708f568b8b73d30f49cc615a35b0dd0fea5e407 legacy-trunk +7045 7bb84a22054351e8323677fc6a61ddff26876ac8 legacy-trunk +7046 a0ec8a9db96054c9eef6adac0d62b411340c6995 legacy-trunk +7047 2626d06b3b01f7e16ec6b527cf189143715ae4f9 legacy-trunk +7048 73758db2f464689475072079e55f5298d449aa4f legacy-trunk +7049 8186039055eda3d3d9b3a375b3b033ac949d4672 legacy-trunk +7050 aa96508a658790fb3a052d5a1ca6f036de99026d legacy-trunk +7051 c3b0895c90fbf087d8693370cf07456bd4d05bec legacy-trunk +7052 fae78cf8541d4bb7eca8dffd977fcc38f162c0a2 legacy-trunk +7053 6f1a120ae9c061614a9edb29458ad33282c2a31c legacy-trunk +7054 e3f71ce8e6bbb5f38e185697c6cf40418a4a5948 legacy-trunk +7055 11bd4f497742d827b737c269b88b8ae4e335dfd9 legacy-trunk +7056 c837f25c7e47747241c3da065b07139f8246b1a2 legacy-trunk +7057 2f8d9c22de62e1718c08c18710b61c29e07b6adc legacy-trunk +7058 4f644ecc5bac4aaa289233122d868017c11e2a41 legacy-trunk +7059 3871ebd1963c7ad81b7e5e578b62ca2abae857a7 legacy-trunk +7060 4a8165b3b6603d9b318a8ee16f7333d531589319 legacy-trunk +7061 b3d2990d8a4afb68b029fcc6f9e2ec022484bee0 legacy-trunk +7062 09d94e9eb1010019d1b3d27d5262c9c5f5680ec5 legacy-trunk +7063 4dc67fdd9e0b5e0edc1352e5723e8c02d4ecf333 legacy-trunk +7064 961bf9a200dd18448a1f9be228e550d023317a97 legacy-trunk +7065 2124f4b97bdd2bb97ad5bf4984aafa50e73b27ab legacy-trunk +7066 8cdd94a3d02d996cebee38c4d22e68eb66ac6b8d legacy-trunk +7067 3bf9e2beaf8c019738f55c9aba60b35d7f8432b4 legacy-trunk +7068 72d0dfb919fe28a22ee8a2d640c5caee9a108409 legacy-trunk +7069 41857075d45bac8007c82a042a698865b3f68c06 legacy-trunk +7070 f8f3da3fdaed582685bbd0860b217002e312b750 legacy-trunk +7071 4fa19659591efa3ed8ce823867d89cead4bc0f85 legacy-trunk +7072 e74b607a5996fa992213bb953dacb537749e186e legacy-trunk +7073 8fdb0539cfb150a10747cd011b589d47f320110e legacy-trunk +7074 b2a1c99ca642b993a8d3c51356c99928f364e81a legacy-trunk +7075 d36250aefb8252674c2bfb20e367d80e80a68d61 legacy-trunk +7076 7d56b496c7dc21cdd1d1796403d20dcabb303659 legacy-trunk +7077 7c6802d8620f42e7a5261dbf0843830b53425953 legacy-trunk +7078 5c741d2d97f5b1454947f8f949069f3efd064e02 legacy-trunk +7079 2368353d9887530197e3aa2a32aae734a2a1cbd2 legacy-trunk +7080 b98b46dd4367e279601978a1959b777e764c19c6 legacy-trunk +7081 739b8480f1ac2706a6b2e25da80dfada08e37586 legacy-trunk +7082 33a8e65eef2309000105457916427d85574b0da5 legacy-trunk +7083 3ee87d082147c1643bbef043ae9c3c94e693c333 legacy-trunk +7084 53ef5b51a48b4e0e702f6d2c4b8bb974fe4865ff legacy-trunk +7085 bb4094ff7bdfed4ccc3c51d47f583bb52cd0a3c9 legacy-trunk +7086 cbc669fe370ab05b5e46fa42ba1c2e9ea37bf0a7 legacy-trunk +7087 4de05cbf5ad1987f7a3a422dd5128f518d1990c6 legacy-trunk +7088 1321112e9e3a4ce83c41e356a68305a3f572adf2 legacy-trunk +7089 683076432b7f9dae6da845cd35bea5d1054f6310 legacy-trunk +7090 87617701d721e72d771bc2ee890bff0369b77ebd legacy-trunk +7091 9cef969c45e45061b3b82350fd538998490ece85 legacy-trunk +7092 87999dc4d7980019c2305a89a03a9ccb19ebd304 legacy-trunk +7093 06c7c7de6976897b3d1a4cfbc137653caa34426a legacy-trunk +7094 c3ca006554d444ac664921fc834681a6c7f029a8 legacy-trunk +7095 98c08f0c4a2ed6bc9e253703d3dc5a7040a55dd4 legacy-trunk +7096 a2f171ce25f8105feb06b4a48ffa6d18d41b5f89 legacy-trunk +7097 68b28b8ca0770e4a56b2eab1626c8607510612a8 legacy-trunk +7098 1fab981465c8bed4f434a29949135a3471735cc9 legacy-trunk +7099 b11d96c8075c5742dcbf76d4647e4d395830449f legacy-trunk +7100 202602faefc7832eebcd129212920c02270f0a98 legacy-trunk +7101 94ce3e01c30cc300db87aba714adba4f1be8d3a5 legacy-trunk +7102 6b765453b0410e11b2a75174f17fe50a37d5ee70 legacy-trunk +7103 7df5d4cf82778a42768066d97c4330b747e44fcc legacy-trunk +7104 ff26873268a842cdb6033262c28a18b64ffbc7c7 legacy-trunk +7105 045ed830c035a0d53aedd97b5cbdb9d30214f486 legacy-trunk +7106 2642ffcac2b4dcc0b114b4d8cfa736b3866eed0e legacy-trunk +7107 c8d247ff8d2f83b4284bfc06eb834089d5c2e2fe legacy-trunk +7108 3f10f998a5871dcc85e43d9d75cd169e87ebd9c8 legacy-trunk +7109 9facbab152cdab0ecabb8182a4f15612439b14ed legacy-trunk +7110 49745ddb4f698b5bf9e3b88402e255c8dc20d133 legacy-trunk +7111 bd28945f752bb640c1630066de2cb449bd7951c1 legacy-trunk +7112 f52c2aa061f8c613d5b79464f6bd2aef4cc6d59c legacy-trunk +7113 5f7d246bbeb7b6eb0b29fe59778206d40c09981a legacy-trunk +7114 97ec9dfbb2b6e4ae80e556447fd89110504f761b legacy-trunk +7115 34db9a21bfb1d482caf196befea9467e877593c7 legacy-trunk +7116 5f8f605af3384d53706b720ca26c048c77b46ff5 legacy-trunk +7117 4359e8d389e6fd86c43ef7b1cc4f18bd778c2961 legacy-trunk +7118 8d909ae1f09964ecb4bd871fae057568c6f416d4 legacy-trunk +7119 f4ba9e07d9bf2f405e6e3f3b6e52fe8d956d0ca5 legacy-trunk +7120 68c4b06cfff70956b44ba78529a55256692a642f legacy-trunk +7121 f4a60f261fbb66e4537784819047aa4fbf25cddb legacy-trunk +7122 ab6374268caa9246fd4c86e78809ab20bdbad234 legacy-trunk +7123 6dd851445c7dc0b1c8bf9d0bbbcad1faec18f5fb legacy-trunk +7124 dab01b84afe664d0d43b1ac14330f5d64a5d0fa3 legacy-trunk +7125 2743759e39797fa7ab035b73b897f0c3c5b2fd11 legacy-trunk +7126 6effd10e7233a6859c85d38e1e808b8be6bf7180 legacy-trunk +7127 3d87cb1b3d17ad718a3f6ec938ed1652d0feec74 legacy-trunk +7128 3b7cd83b602d6fd8380a145d5b117719baa7d08a legacy-trunk +7129 df81856db58c5437d2769747dd94b51edf9ae7f7 legacy-trunk +7130 c75a2f2dc220a577688e61b10d776145834e7d4d legacy-trunk +7131 186c2ad4abf33c90f6e66f8c70b693e9dc759217 legacy-trunk +7132 ddbcc038916b2cf53aaef36d2a3e6a9264b8ca11 legacy-trunk +7133 0dddf49ea416f3bebc0608e493fa5b421c2e8869 legacy-trunk +7134 e97528482bc6742990815295335883d4560f007a legacy-trunk +7135 8fb572e1b1ba171e1743b15ce6bc094a7fe3b2eb legacy-trunk +7136 d5023d0c5502373648ba5e84ee34eb5155f5cae5 legacy-trunk +7137 22785108f1ea13d74f75693333b782fa09df5c20 legacy-trunk +7138 4ee4b8bb67c744270ced44b5ba4f3af571c58b2f legacy-trunk +7139 dcb2f5d34ae80263fe34188c2e3f9a661173e3e6 legacy-trunk +7140 ed35067e3793e0fc3a805a317e26fd9b2425c030 legacy-trunk +7141 29bc28eca3e9ed5553d49a57cd3c753eec496cea legacy-trunk +7142 c42379e4653ba8cee921a3c479d4a5de6185c7f2 legacy-trunk +7143 95204aa2f4522a5cc8cd78568171d9707957cb8d legacy-trunk +7144 d501daf0a2f655ffdb29959954287403a6400702 legacy-trunk +7145 7901fe79f6aa8a2492a061bf7cf5f243c60e5ef4 legacy-trunk +7146 82df1040df0f8a6cc08147abb9f30f6078725844 legacy-trunk +7147 5b53268f547a39db17769109a85035169435f9e4 legacy-trunk +7148 a3cdc8164990e34e343b8ffa92016550dbc824f9 legacy-trunk +7149 b43ff89fc50d95c227b56adc8983f4838c37d8cc legacy-trunk +7150 0c01a23c7dcdbab8129723f87888cc7c7ba9ecf0 legacy-trunk +7151 193950bc9d8f7f4a5f65f075afe081fd2c49bbfa legacy-trunk +7152 b828eb50dbd50638e6fc2999ef6729e313d932f9 legacy-trunk +7153 1592970c789b092c59da8ea082c4b7b9b883ea21 legacy-trunk +7154 89b16126d4e22d1f126288fac434672310dda397 legacy-trunk +7155 10c1b8f3902fcb28acef7bd8116bee670ffad822 legacy-trunk +7156 f9c5a313afd932502fcd0cfde330a91c2d423f03 legacy-trunk +7157 19c8e61cad2d835ae9e2fffb82aba35bd3d3531b legacy-trunk +7158 31bd0ad0272d5a095458456fad533b5c96103805 legacy-trunk +7159 d800841b57a8c7ef8908c51724e9d031fd42c524 legacy-trunk +7160 d7d05e2344d736d896c999bce1893ae7645e0054 legacy-trunk +7161 c046efaf1bd2c46e631886c5d0b3cf743fd1014b legacy-trunk +7162 d122753e5b9f603c8626c363e6721f8c1cfa0016 legacy-trunk +7163 01f4ea05a7663ec12b038218a640e0ef019ec076 legacy-trunk +7164 8f50bec5068e6effc805c93ebcbda02888df7651 legacy-trunk +7165 c2b831f923c2f03fd8d5b44e340a7d891e3be287 legacy-trunk +7166 8015c554930984eab9f4d3ca132cd0bf93296007 legacy-trunk +7167 cb405b9696d4836572f33c9bb87682c908642b53 legacy-trunk +7168 faddf6d55af0a4d4020ff47b2fa65e2888c9d0c6 legacy-trunk +7169 2c10395921e1d0bbb1b886fe95a332309645cd87 legacy-trunk +7170 f12b1d4d6a9bb882f46e864297ec8cbd680a51ea legacy-trunk +7171 de27da5f22f17535f7d68ce805ef4f85bb0ef649 legacy-trunk +7172 1f368fb3e1f786b446d5f7c13f70f26fd51a81e5 legacy-trunk +7173 ee98e44d4f8551d5e2c7a0ae813cfd4345d90260 legacy-trunk +7174 a1694e95bcba7920e79f03977c8daf9817719cf2 legacy-trunk +7175 825038d98ab622bd076952ac993e749f73545e9e legacy-trunk +7176 8a75b8bf15218754fbca83c3079b7c02e17ad057 legacy-trunk +7177 e5e58794040f45434019723ebbec5507489518d7 legacy-trunk +7178 e0bb1dac2dbf55629754d87eafc559fa0b0aa1a7 legacy-trunk +7179 6c0e35cf0f85bd623ae05f76e4e0d0777e94abf2 legacy-trunk +7180 cc525182bbb1f36eec1c2091bdaa3cfc92112f5e legacy-trunk +7181 9785114326ab75252d54ae2ce86a9083d457dcc2 legacy-trunk +7182 2dd285794d674330836a59379e4deeb7b39e14da legacy-trunk +7183 775a7d0c29609fafd851649865d7d715a3c742a6 legacy-trunk +7184 438949bb450805063c2358d733f9c6a68a6de004 legacy-trunk +7185 7b9a6166281a12c3ad3a27a9527e2a21dc00fcfc legacy-trunk +7186 d9ff6f83a16ad0a1531b6310e3c68bb184de2717 legacy-trunk +7187 0253ef267b68c6ca7888f5413c8b2a9bc5aca31f legacy-trunk +7188 6ccf5dba8b0bb6b7727cd719ce906f4c99a77408 legacy-trunk +7189 0c6c69b0d3e9c69fa4982d1fcafbaf2048f9a2d2 legacy-trunk +7190 67759dfe6ee8c7da6f21fe60cdcc0d825b3adf25 legacy-trunk +7191 a8a547490a127cded3f7d4124cd4d9358a2a0522 legacy-trunk +7192 12154d09131674fe9deac79576f4993dce70ad26 legacy-trunk +7193 1834654bebe3212e5684e9ae74b38ade5d057f87 legacy-trunk +7194 76bb2099d61829f6870d4a257a245bfd5ec2f634 legacy-trunk +7195 90857fb5739706e0c00a560b674d04de3297c1dd legacy-trunk +7196 b2009ed152fa5b3bff754f54b8c1639e5fa677e2 legacy-trunk +7197 c07e5c455576daad19a9db1a3fc8da21f179bcc8 legacy-trunk +7198 43744be2433f58f03b7a3719a2a8f951dcfe37d3 legacy-trunk +7199 de01c66f5fa58bf285d3e93f82043e754868a797 legacy-trunk +7200 8669edb1d9c56587b5423b5f402f4fd80bae8ec2 legacy-trunk +7201 f7a99161df92aa1aa49c39139828feb1e1f9be42 legacy-trunk +7202 9ac9ea848d7da778cb21a7465c430d59ecd6f286 legacy-trunk +7203 b218f294b726abc03239289ede04ba7dd51c9254 legacy-trunk +7204 e27fa2a3f5265019209a0e3b9b3ce3748d73f4cc legacy-trunk +7205 62cf7d589300ef9fc55a2cc2f3be72eb229f6cd4 legacy-trunk +7206 07f0f21363e648219f8e26deb8cafc6774ea52cc legacy-trunk +7207 d367014200bb5b80117abcf5b98e1e0c8c30ed3a legacy-trunk +7208 3c7812bfa1a4aaab86760dbcdb0b7e2d806129a2 legacy-trunk +7209 3db423515626c2fba7132a7045cc280efdc82128 legacy-trunk +7210 4a3f45b3471ac54e5d5305c89681aa0bbf364723 legacy-trunk +7211 94ad56ef5073359847e3662f68d8fb2e3d4634c2 legacy-trunk +7212 426f87c465a0266f314544d24ab5e7d08de8cf79 legacy-trunk +7213 8edb57c33487baed93b9057ed7ac8805321627fa legacy-trunk +7214 b01682851a633677af7a8413cc8be4dae790e742 legacy-trunk +7215 062e88608b5559e601cdcd1c4552833be26d9035 legacy-trunk +7216 a4402008c569dd8ef788a56d9a8178ee316eba77 legacy-trunk +7217 ed01ec43eb30ff43f8be67f87a68efa4bc1965d6 legacy-trunk +7218 357d4544085a2a6d1d338bbf62ad8c05e8e7934c legacy-trunk +7219 e0523f2d41639c904aa129a4eb8eab45263eecdf legacy-trunk +7220 7acdf59f31c5ec1cffb7d8ce6cc6a1fb800f4d71 legacy-trunk +7221 2cbde5fc4b19be1900911fd047dea466039a1632 legacy-trunk +7222 5b05bcbd4542c6417db81db00a385d548770a5c9 legacy-trunk +7223 ea1265f26b33274095dd2cc37f5d2964982aa794 legacy-trunk +7224 ddea69f9071ba82d9b9894e9247571cafe6f6531 legacy-trunk +7225 fffcc52cdc1e86fe3a9a3ff718b69f6bd1dacba7 legacy-trunk +7226 7ab835f87f86d21cdbc7b740bf4fc62b70de6806 legacy-trunk +7227 7367fb1071083ee336b0522f9ccb231ac8f659c4 legacy-trunk +7228 7b1e784e20a0ecd50ef550d0d9e6187eb4786ebf legacy-trunk +7229 30703a656d1345cdfff48cdac614890f2d81b8ef legacy-trunk +7230 1de96c572b02bc4abe82d4a18d2d14ff1cc48735 legacy-trunk +7231 301d7f6acf0a6d01ed865721de4f5c2f7404a9d2 legacy-trunk +7232 e1f1725cae6da83001a3ba0a43309ca8d928f393 legacy-trunk +7233 605fba02e19507762437a146f78916202ee28a44 legacy-trunk +7234 3fc6042a2acb874a2ddd225557bd032607337b8d legacy-trunk +7235 5b22e32eaa1764e3f691635ef532d437e1b80740 legacy-trunk +7236 d7eea694cd3a04e6e650f0115c8c2bfdff45ac6d legacy-trunk +7237 f926263fb654c29b878f9a82da8b8086412d914c legacy-trunk +7238 38689aceae7b60c5b8ac6bfd40f47e3d3cff824a legacy-trunk +7239 88714fbf9a0626aa60cd342da835d0bce77f1d9f legacy-trunk +7240 f8b36c0ec114aeddb33d37b94cdd22e4e20265a8 legacy-trunk +7241 9604d6784675c2dd8e502e4e1e4a001de8a234f3 legacy-trunk +7242 63dae273b07d85931544d8f46dd1f5d18edaa2fa legacy-trunk +7243 f7a61c6a65c3797471e6946cb1e2c65d29327424 legacy-trunk +7244 eecbcc48b0e976c2bf6123c12fb6817eb88b4140 legacy-trunk +7245 72108faa56bf14870d7a7e658d53f31a41652094 legacy-trunk +7246 4710701690c1c6bdb434338476e142ddb045d1ed legacy-trunk +7247 b85f10ae4857f1151cefcea53795cba041527533 legacy-trunk +7248 d55f31338fdcf853cc825e51d8f9ef2676aec482 legacy-trunk +7249 9e48abbee6c5c054191fb2032fa7d94a2f71e37f legacy-trunk +7250 0d0c413b6f2539756886c05ee9ff56ae1021b866 legacy-trunk +7251 4de8b86ba25591a40598addfe5d4361386703332 legacy-trunk +7252 50d6dc458aa2fbbff6f2842dccc377821a4b8ffe legacy-trunk +7253 1ccaa441d083f0042c181c0ff353a9f304225cac legacy-trunk +7254 a571c7f089916dcbc75ca3a4d6539a819cd4907f legacy-trunk +7255 abef5006f84bdc706b73326cc12d5baf3537efc6 legacy-trunk +7256 7562a6df91fb4bebc645ada571e767ddfcb1b05e legacy-trunk +7257 2426a220664b18b3de461318e1cd41021c5c8e78 legacy-trunk +7258 feba6d58d20489f01638c1a5cde8768eed9998ec legacy-trunk +7259 e43362910a5e3e3c7d559afb1962096a2eb73040 legacy-trunk +7260 9fc380b1a445aa14a12f65db574274c0587b9ca2 legacy-trunk +7261 0948f39ee960e47eb972d3fdd33ea8291d00a1f6 legacy-trunk +7262 d7e6653d084f6fbc0e759142a7e22635102bb049 legacy-trunk +7263 f2321e4230717e5c5977e89a2bdc7073cb474970 legacy-trunk +7264 d45ba64b82fd6bef29434824c89eef91d0852dc4 legacy-trunk +7265 f37582314123185a05d4e0a2b4f99dd3a73db7f0 legacy-trunk +7266 a2fd80eed27fa172b61ff85f0ff212375463a546 legacy-trunk +7267 0b6b1b882866b60a18acbcdee44529b4c5412696 legacy-trunk +7268 aabf4a03a4b0bbf1bbaf4eda826cc3181e6a0338 legacy-trunk +7269 80c0ca424510e79cc4626b28804edec7560b4572 legacy-trunk +7270 b6520c45eb054e77053c4759eb9451aa3d98151f legacy-trunk +7271 bf72a94ee96b9b3cccad05cacc37e0c52d5f5d1c legacy-trunk +7272 52258b023aa31781bfe9bb231cb68eaf2aa39172 legacy-trunk +7273 5db9ad60326dc8c1d9875c0c5a39b54f2eeaecc6 legacy-trunk +7274 e72b2ed383a98b4fbc0fa0c62345df0f585a61d8 legacy-trunk +7275 e2a7ff6f4188718f303cf6ee7f657bf934628e5e legacy-trunk +7276 2d5ee374a73b85d733c2053b31f0cf38547966c0 legacy-trunk +7277 867feda008407f0d717a473c5d97d15a297f15d7 legacy-trunk +7278 9965df782afcf42ba7fcbe20075e5937ba10ddba legacy-trunk +7279 a2c427f9db02b9bf1b9ad8094cfdc2becee626a9 legacy-trunk +7280 c71ca15c8b555cd8f4c4f1db578d16c930960b06 legacy-trunk +7281 a3c47725950544308bdf82c3bc34ad3af07942f7 legacy-trunk +7282 8d2c8b0804017d4131657cf4f0bc8b0df280df4c legacy-trunk +7283 09d6c5708999e63278512e48d20240bee1b78092 legacy-trunk +7284 6f8b5c3cd6cb2e5f2a6fefaa19cac2e9858df8c4 legacy-trunk +7285 2cb469a421a97837fd25fe87f45421e35b185d9b legacy-trunk +7286 9ae3cccfa7cde129bda5930363362dc7172d23b2 legacy-trunk +7287 db230fefa702398b6068b13892bd889996e41b4a legacy-trunk +7288 b6fadf0231af9b2639f925e0042f5cf000778154 legacy-trunk +7289 98213604f9414fd45cfae28d878be52d6fb370ab legacy-trunk +7290 fb18ce8c0cf6abb063e4af43f270842659fa51a3 legacy-trunk +7291 c44540d52d136991076aed08c802eaa697f9fe3b legacy-trunk +7292 0f7515ebe3bf4ead2df09b3986a8b4fe1c97c08f legacy-trunk +7293 67a5221a2f60f939cc3b4fcdaac3416df9255524 legacy-trunk +7294 9bda38c67f4ec25c0ff5f218a77338fbd7817eb9 legacy-trunk +7295 e72ac1dc614f2a0860428446115d392e6f87eea3 legacy-trunk +7296 391f08a9746b96d2bf4055efc95e3bee5a2f9fbf legacy-trunk +7297 44e86dadec944bc1498b3aaf89cc45c538ccc1c9 legacy-trunk +7298 f42bca3d7be21d30c177bb91533751ae7b1b2193 legacy-trunk +7299 8783cfdc7c6f993cba48116af85c32d83c03246a legacy-trunk +7300 b8a97ad5f7ced3a5450743b110c9b48aebe08833 legacy-trunk +7301 f3b92c95e85b3626a0eeb8c349fb024a06f36d1b legacy-trunk +7302 be481f3ada0bdaa308c85582309ac5849cfaf3fe legacy-trunk +7303 97ae8466d1c42074e219d5e3adc182f90e2771cc legacy-trunk +7304 5a2e7252c8902d4d6d18664d640aa61ec6c187d8 legacy-trunk +7305 4341ff5c697cfee2a5d03ae171f12b88e6ff23bf legacy-trunk +7306 d87e87853958f3e9e93ef76758488b32b2badf59 legacy-trunk +7307 50f4983b6b79d1922219389acbdf21e067d39c40 legacy-trunk +7308 339d0c49f0b5738af4229366764b9cbd088728e1 legacy-trunk +7309 c7e99ab627f3b7402969bb814c3302b53371f107 legacy-trunk +7310 e05480db71ab1138de35b34cd2f8ed5d50b4df9f legacy-trunk +7311 acb0501d93ef9d30bf053fd1a82be7f78f8f7aef legacy-trunk +7312 9e1ac9ebe79f51dcd243b533fcd0cea6d90bf5c6 legacy-trunk +7313 5c1951d573b1d9bf31ff3786001bcf7dfa7e6476 legacy-trunk +7314 4567e158d20c51292b2cf87671af535d96b01fb5 legacy-trunk +7315 35c643e9023e72dcddbef56a483ae1415364a951 legacy-trunk +7316 a7b9c7c813376321a824211277159950253d4ca8 legacy-trunk +7317 84679f7bbe6d5848a605c140bd8a00d0ab5aa5cc legacy-trunk +7318 38ae2a0fc4f33c6e6ad0c7f06ffee8c09f2cf989 legacy-trunk +7319 555f6e76d207dccd3dbbca495deefdc37afe6630 legacy-trunk +7320 0bdd31538d8fd66670b1b87c270770e77216afdd legacy-trunk +7321 972026d47274aea5ad6f3abe77d5324cb3dc24de legacy-trunk +7322 d53812d68408c624fc882b7c96cb693005645aee legacy-trunk +7323 52695efdf22c2a85e8b89a5804ec98accdb7858d legacy-trunk +7324 0a49d192506dcba62f74213aa69e8e951bb61d68 legacy-trunk +7325 0e1897a1f0d52cb09f9abe52985314d2920ed36c legacy-trunk +7326 f808001a3e0137acbff12d8b54139112465ec397 legacy-trunk +7327 29ced485aca098356a2bd37ae8da534138414c81 legacy-trunk +7328 cf90745381bffd0a66335ec505612c5ac6aa0497 legacy-trunk +7329 167ad394488ccab1a53eb8928248d84aa03fccc0 legacy-trunk +7330 43ab0fefe4a156af7f44e2814616aedb475a38ff legacy-trunk +7331 88dbfa2bb9dceffc0e38b4952415fa56f066c5be legacy-trunk +7332 e0aaee7fd1fd454e6e460b26f25ee9eac389e679 legacy-trunk +7333 198989ee36d56a5d3e55e581b8a337d27ba0bead legacy-trunk +7334 ab461c762559a431bc4089f451dd4b507da74c65 legacy-trunk +7335 5c6fbdc50e1d64398df90698f6314036bd782dec legacy-trunk +7336 69ca5e3ccc6da825162c5ae9c370872c7e952a3a legacy-trunk +7337 7d7319811ff0ae1371e1c0e7c692949ae0fb916e legacy-trunk +7338 b1707bcdc26526cc759d5f067b0276eaf7a8dab7 legacy-trunk +7339 a53908d09a04c0103021e3986e780146a53f3638 legacy-trunk +7340 f5073e24147c078815f501f88ff41eb86dcb2e3f legacy-trunk +7341 3960340a325208c4e5d790f12fc3d455dac83468 legacy-trunk +7342 e3f2ab0b0aa16d200322f670b0e7777497da8e06 legacy-trunk +7343 bf4db2a4bb54079ed07b0aa6f178eb874e501e57 legacy-trunk +7344 0ea0fac68c1c9d8f76d5f7d7aec3f2f27e632ca8 legacy-trunk +7345 68f4134869db03b77cad2fbccd063b0248689eb2 legacy-trunk +7346 a7159ba0e45d1d74944661f8a3b889fab2d1ba63 legacy-trunk +7347 da53e48efea860a2db33de3c5bacec2ae964622a legacy-trunk +7348 32f6b0d3a66fbf088bcc6f3dae2846dc8a349c7f legacy-trunk +7349 03bcdd22f6a4c2a27e7d7c84d1102063ddebe9d4 legacy-trunk +7350 911040e1bb119184bb59342478f540284dd87cd0 legacy-trunk +7351 0f10fa752ca9256f3c7bcf893770407e811a5d09 legacy-trunk +7352 e57a8de5aeb39b301dccdd698d1bc5f56b4ad1ab legacy-trunk +7353 a9e7e0ccaa4ac0c105f63d732786fe16ffc13488 legacy-trunk +7354 4514023160b45d1e2cc0d5fd40a9f46b2b3eee01 legacy-trunk +7355 9a7e9f10aed6208ebfd839899bf288d7df5864e9 legacy-trunk +7356 2241d312658ae773d2466b992521a46338043642 legacy-trunk +7357 8d17d552d0ec05dac6ad81ed6314332cd173fba3 legacy-trunk +7358 e742b593c09263cdedbbca55ec786beb786a57f1 legacy-trunk +7359 65cb261f7736c9a43df81dfc5f762f9d533e611d legacy-trunk +7360 383c6486346f6633a8e29c855c1f39940c3f3723 legacy-trunk +7361 21c41d3c26b6511a7239e6e8e47571657068b6f6 legacy-trunk +7362 342d2eed573a578b2e6569a3edf1e25986dceb81 legacy-trunk +7363 f1261186722cd209d4e5fb3bfcc806c92d2bcba8 legacy-trunk +7364 9c6b5a65ce6300d8d0c6e9bf7a61902b731bbca9 legacy-trunk +7365 8a68f81baad6b16911316adf390606b86eb44f6b legacy-trunk +7366 d399a4537f6de0f204c9ca6ed3dfd4a7c3e8be66 legacy-trunk +7367 1c089c5b66e990954ed57c9d7bc83a8448c0fd2d legacy-trunk +7368 c2eac126e8ffc0878c6499f8f41ea3ba4f55273a legacy-trunk +7369 f31f47ff1fdd3f49b271b8bd555bc1a314063d51 legacy-trunk +7370 5568320da9b59aebfef29175e51ea987f30f8a1e legacy-trunk +7371 50abb0850740469ed8bf2d103329f4caccde3938 legacy-trunk +7372 90c21dde42843fb04c54d88f3295e97844c66678 legacy-trunk +7373 4f87fd2d0562eab184a576848ebe40d502b31962 legacy-trunk +7374 9eff7880e6844805b93b6088c25c3ce1c0d1207d legacy-trunk +7375 37e97a3102411d20d172565b9c9b9fefad2136f1 legacy-trunk +7376 770104c8f84a0afa30349924eb3a4740fe9b35c7 legacy-trunk +7377 d46e478b5767c389f3e77433d66fac109b7b8732 legacy-trunk +7378 6a629d278a18b922f2b38c6c315599a3fa58faa6 legacy-trunk +7379 5dc20a9e05067ba170367e9803e39674b1c31ce4 legacy-trunk +7380 32220c5728f51486e0d31996d6703402e7442e83 legacy-trunk +7381 fce781b127b92f39d3f73e51ba38ba130a5974a6 legacy-trunk +7382 fd3626511dadfccb4e53e674a0f38c5132f51426 legacy-trunk +7383 cfa1282902dacda2eaaae8b3cdc04bfd975d56b7 legacy-trunk +7384 0834aaddbf1fe44e213bb41626eda1f26f91a22c legacy-trunk +7385 fcaf9d119abfdc090ef810648d8296093299981e legacy-trunk +7386 21878c849626ae1b742f8aaf1aba32fa279a349a legacy-trunk +7387 4b590f58c6a7a393f3a1d6ea19226eb8b5f9a93d legacy-trunk +7388 9e2c3c6d4fa15c8fb84360b852ef3db7c23888fb legacy-trunk +7389 250bddb2eccf2dbcd0451946815d8ee54d14f5b5 legacy-trunk +7390 14ed909a9c809f7eabafb78f87ec7ed20152d02e legacy-trunk +7391 079eb69471e58339c1ebacd0bc7a38fc636944c7 legacy-trunk +7392 1bcd4972da7e86e44bd9a2e701b05afd3dce9f5e legacy-trunk +7393 2a4d3d99b8a45a8c2c6f99bf52c152bb0669eab5 legacy-trunk +7394 f8e5bc5351a973ae848530d5ac58a7039a9eaee8 legacy-trunk +7395 e77585af2a2165582864ee8607bb720944a92975 legacy-trunk +7396 558abac7598d290ee9d2debc012e8da8edf8076f legacy-trunk +7397 2dec363456658322aa38f6ec18e6586f6406c95c legacy-trunk +7398 ae573922fdcdaccb61bbe2a33426493a9ad4b36a legacy-trunk +7399 f07e18db366c491c4ebde06ed0315830b43fb8bc legacy-trunk +7400 507c460205264d58e3408ab1625787b929a63d02 legacy-trunk +7401 7069a2bf5baf6a9a56a9a2e7e92cae0f9808026c legacy-trunk +7402 040493de848d8dd7275d5858039740b3b19ea348 legacy-trunk +7403 9be65e6c35c826d4f709ad7f6519b463133340c7 legacy-trunk +7404 5126d4b819e9e19c5ab2543675b01d989d1acf81 legacy-trunk +7405 536935c2940173d1bc442aead4a13a51b1b0b349 legacy-trunk +7406 18023e7c3862fcc8c98dba632e85eb541da58b6b legacy-trunk +7407 b378753825a091fecb94e4c87bfad00415b5393e legacy-trunk +7408 b56bc25aec852ad29fdbf5176c78c9123a0c2814 legacy-trunk +7409 6b61912d5f359b084179d5948312aa7a5f81dcf2 legacy-trunk +7410 095c9ee23b576c0139185b5e1fc81553306044e6 legacy-trunk +7411 7d0bfb4682f9af52050510ed800d1775cb4624b8 legacy-trunk +7412 789de7c667129662f0ba4855fb4b0b0e07c8bed4 legacy-trunk +7413 70db4be1dd4b25c125eb2e98ea578b72004d2dbb legacy-trunk +7414 217cfb6199be119610c224ccb2a83c8aecf3632e legacy-trunk +7415 5eed51750284163043be29779eaccb5901dffe79 legacy-trunk +7416 33e33ba7f421ae7f96ac01034816101e0a855229 legacy-trunk +7417 a520c684ce8dc00cb9311e301734921bf920854f legacy-trunk +7418 57aed16e2165c8b2cf87516ecc1d6b5f0f6b130c legacy-trunk +7419 528c319c6e7ff0df1b9173abc8889bbe603fdc87 legacy-trunk +7420 6118ca51404d8602ff908bfe9dd3d2a162c86779 legacy-trunk +7421 ba11b58b2b0a38c0c7e9d202478492976667defa legacy-trunk +7422 78d880043129e0745f252e3455d9fb0b93f0349b legacy-trunk +7423 5693434ea538c89fd535cb18de9965382bef43d5 legacy-trunk +7424 ca9aa47411de4ba2909876161ab01728fd8697c1 legacy-trunk +7425 19d819b16b8252a021293b3c4a3300ee6aa6167f legacy-trunk +7426 da2abbf9387c61ebca15c9c8de58b02b32121cdb legacy-trunk +7427 05fd432d9e2b68d8e92e3421347f06810573ba27 legacy-trunk +7428 da4a497bea3a94839f885f33704ee784bfac0774 legacy-trunk +7429 b1ecdb2da24005519e19699a4e23458a86a1c09f legacy-trunk +7430 e6b797aaa69f7d205b50e84916c793a5a236fb1d legacy-trunk +7431 73325019ad39ff5bf1de51c13cf3a1155b226945 legacy-trunk +7432 9d58d0e9877e6e7af2a2b97b05eaf2132372d27e legacy-trunk +7433 ce438d36d4fbf11d4d7f457aadcadadc47a465df legacy-trunk +7434 89d07795fd694fe42527f2f6c4af0d72f2440fe1 legacy-trunk +7435 38f9e46d2317b51073b65b76ebc8c5a713ddbf80 legacy-trunk +7436 5e63322f4c0613b82d318409f8474a55742b2d28 legacy-trunk +7437 765d962f444982566fae2c5a9e81907ef0119c27 legacy-trunk +7438 5ded2bc1908b36571b128a4a99a946eb08dca82f legacy-trunk +7439 6ce61f212c3e7f001f13f597adc6818cd998201f legacy-trunk +7440 d84ca197868b35471c3a57bb12e63087783c202f legacy-trunk +7441 9bbd57d3609fbb4133ca0b422051e7a8f3063ae1 legacy-trunk +7442 3705f75a8355e236544dce70b6f34c42460ed968 legacy-trunk +7443 3d32da37d627d8ba022160ab4b3841c731a1e5ad legacy-trunk +7444 0f1ae62dd3b87e0a17180fdd3be04c00491ce359 legacy-trunk +7445 805487d50620b4f546e1b8d1309757229f07ee19 legacy-trunk +7446 8d8c76a1d2504062e1ff7219546e8e907d88053d legacy-trunk +7447 6ece5cfb49ffdb3fdb43d377b7e4df9bcb9c033c legacy-trunk +7448 7d73cdc011982a5e71ccdbc2e0dddfc22ae477d1 legacy-trunk +7449 39745574bf07afc6f18b1e488f98ec8245b8609d legacy-trunk +7450 b4a400b3595e24ce948c841bae28fdf1767fba03 legacy-trunk +7451 2e2945d8163c67172838875f19237d013c3d0061 legacy-trunk +7452 9b1694390820dd0442adcfe5dcbdfb068c738e59 legacy-trunk +7453 47ee3b4e2d8033cacd99d63528b4d643c26a612d legacy-trunk +7454 b864b414c457cd9e445605e5a08276f42f789b9c legacy-trunk +7455 a8d7bfec7c92b7c18ac9ec86c8d2480d8a9bcdbd legacy-trunk +7456 994376af9064d30f1e82fa99b114456c03e50977 legacy-trunk +7457 b5e7fc8bf9196368dc30f27f2ce8487ba82eddd1 legacy-trunk +7458 66cbb37b4c0bd6005319481940f769a634038c1f legacy-trunk +7459 77f9700768314027603a32cf090dedc14eceba62 legacy-trunk +7460 4309bc97ecc6a8769e8a6ddc0aac639a17529de6 legacy-trunk +7461 d8d563baf8747867c07049cea1d073b3d40a5a41 legacy-trunk +7462 1ded9438fa515d7738a002cc0a02f73d73098971 legacy-trunk +7463 df385cc0d2e3870efd862d7d7f49f573a27b72f4 legacy-trunk +7464 65148ded51084dafd6cbd43bb50360004ef516e9 legacy-trunk +7465 6e17ef5a26c8944a84b3e36ac04888fcb8d2ba78 legacy-trunk +7466 8276916e1ea8dcde5587c388a5c83c35bb76cfbb legacy-trunk +7467 11bacb8d731ad6caddcd0d89c5e01d0b59e36da1 legacy-trunk +7468 b82d847b3dcbccd63de075e3879a9369dfb34e0d legacy-trunk +7469 9bc652e9f2b46d2928b03003f08c75b881479057 legacy-trunk +7470 267ed480ec1b84c1de07fa867f0db26b4c7152da legacy-trunk +7471 8de1f6b07df9cd7dc0fc0b46e72d7dc0d06c3f06 legacy-trunk +7472 58bbaf284ad66ef0ce7f4818d0405b30ab6ce8a8 legacy-trunk +7473 cc4ba7214b18f997e99d0703100c8d14bc9e587e legacy-trunk +7474 468124a1560a2d2eba3f44a605214ec3ae3deb4c legacy-trunk +7475 7c7a186b6d86b2b2030507315dfe0994ee665b19 legacy-trunk +7476 17c7a133ccf71125fd2458d4a4e567570c72b7ea legacy-trunk +7477 ae3b46a737657b3f440ab756dcc165b70dbee8ee legacy-trunk +7478 65aace2012e52c3f19491e89c1842290ddd1b1f1 legacy-trunk +7479 4c8e4e9311e4e0e52e5092ecbad1ba264fa49ff5 legacy-trunk +7480 f17bace48dd68a2c80f44c0115d3aba7d28ca097 legacy-trunk +7481 5f4b23e3d97cb38d0a93dae418c88295435c5e6a legacy-trunk +7482 e4f7c331bb1a2fff3e358fbe96fbb984e7e3fd4a legacy-trunk +7483 f55e82e1e5658c0fe461f4837550c832174b2b0b legacy-trunk +7484 402e36c83d202900a023e1605ebdadbda36b7e22 legacy-trunk +7485 f0cf8d275fbc1751428d0a33ef1e36374891ba00 legacy-trunk +7486 6840ff89d24a1f19fc328e51a01657cfe2cd9755 legacy-trunk +7487 77f9c25e1f1fcacc93f2e63b0cbbc2b70a4765ff legacy-trunk +7488 4ca4e54c9cd8376df1417ee29c63bfb79da25cf9 legacy-trunk +7489 0bfac89afc83fd6b0a929b82b772b818522e244c legacy-trunk +7490 b1e2eea66cb6cfdc2a5e6469e553147cd1ee4784 legacy-trunk +7491 f1af097a5e5d790c2a6b06cad00064c4d2613e02 legacy-trunk +7492 13d38eb7e225d18354ca4a67a84a880826a51168 legacy-trunk +7493 001a5042b181a7dab54b6cd10ed1272bb62d6b70 legacy-trunk +7494 28935609dfaea64aa06b96c5e604567902d744e0 legacy-trunk +7495 0eca9d5f7b2d4b1a07cb6434525a8b9bc73dd5f8 legacy-trunk +7496 c22add3643518f6c480a6f46716fda0d7e2b5c05 legacy-trunk +7497 62645787fbc8d92cc29c2a77178c897aa3305c09 legacy-trunk +7498 75c1ee882a4ad48ad6f45eb9682f47d021a060e6 legacy-trunk +7499 7e51909996332dab07629e6280eeb01ed57dc828 legacy-trunk +7500 bff8f5afc67fec641e8fe30f2f5e11775c88c95c legacy-trunk +7501 b5a1bb2d17fad4361336f9594a7dc120ecd51e2d legacy-trunk +7502 0ea4ea5b2eb73fea8eea28d105b6d82cd3eb6362 legacy-trunk +7503 0677c77aa70df19eb496c31cc3deccb54d58370e legacy-trunk +7504 3f037ee7731be323856ec467992ec15d897d1ba7 legacy-trunk +7505 00c3cb107e5f278806c4d2c269ed887f310931b9 legacy-trunk +7506 017d72544df2bec53fd99c240bafb5ebac6bb4ac legacy-trunk +7507 be31e7e19241b1d5e5ecfd1a4f6411177a1be2ac legacy-trunk +7508 5b7b703dabfa0783b91f014eb031c192ccdb9603 legacy-trunk +7509 de2a75c7ea9ff467777b60f9d978b612407ef153 legacy-trunk +7510 a0e62d85de77a150e2797b1dd8d82696863ff242 legacy-trunk +7511 69765d6431e1c4a938abc13918314ced323a61fe legacy-trunk +7512 9ad7b8c36c79405231d0abbf71cdf18221b77652 legacy-trunk +7513 a820dead06e6762fc78b6b12b607a6381a1ee1b4 legacy-trunk +7514 38032267968c0172ba6f94afa09e6c4a7422c00d legacy-trunk +7515 876e57364c623995cfa5f45552060e492cf4476b legacy-trunk +7516 c497929b237115a2c1d73e0625a367e337c14fc6 legacy-trunk +7517 9b7e0cf519905ac49199811f12fe72ede1d4c0db legacy-trunk +7518 104a646fc7a67f27df25d4e941b20035e5876f9f legacy-trunk +7519 ee3ac9e0a03229862d19056a6743b1934a250b69 legacy-trunk +7520 b1d82697c0b236674d0e61c0efcb0a911e9c72dd legacy-trunk +7521 658815230546a4892c2ae519468edb48270878fe legacy-trunk +7522 7a9cac7cb9109f473acddd1a9d23e268ad95e0cc legacy-trunk +7523 fde73467b5847bf5d5224e6d8542323d9a68d765 legacy-trunk +7524 946b2b2a7622fa17ad424828376a5e88a7a013af legacy-trunk +7525 8579e3441d9bc9995d98e8bf24853fee55b75452 legacy-trunk +7526 7f6d19fc5acacfc854a73bccdf2a289da6c1387d legacy-trunk +7527 7841c48cdb5b4967dda63c00afaadf853c3a356e legacy-trunk +7528 219bdd8afb38ef05ac417e728b59228c7445895a legacy-trunk +7529 e9c442d0936fb5c3b922c7a5944c5e9ff6d9269a legacy-trunk +7530 f57e181ff638fdb1c9a36967a30b4c8dcb197d48 legacy-trunk +7531 e629c88f3dd80773bfec132d3176250fb8a168a2 legacy-trunk +7532 6c7a76fd5dc1e9320e2176fd071795a419b0a939 legacy-trunk +7533 371464f6666b66d7f1dd5f46dfa161913e47398e legacy-trunk +7534 192d571cc4615ce684af41823afc1807c1579a89 legacy-trunk +7535 5a232870cceab5f3c4f5c9b1e78ce15e1fb2ad81 legacy-trunk +7536 346ff9ba9d363704cac0cca0c3c103b8671415cc legacy-trunk +7537 d681631d992f201b441518af22c005454d6b60e5 legacy-trunk +7538 f0731fa4447f5262f551783c6a8cdcad0489b03e legacy-trunk +7539 7dded7851fca8c4b4667784aa97294a2975a0a6a legacy-trunk +7540 b6fce7243ba0ba896f07822728c550206d72e9db legacy-trunk +7541 77616b3001ef8f7e09c4639c36c284dd971dee3a legacy-trunk +7542 4aaca42a2a16c95174b2fff7a5c3d6caef85b879 legacy-trunk +7543 8ecf2d7c9fb1adb4385cf7d0fdaf44312bd1241b legacy-trunk +7544 fa31476a2786ee8f54d0e5c09e5ed017feb116e7 legacy-trunk +7545 eb12f4046d0be0f0df64f6f80c6be51021629310 legacy-trunk +7546 44bdf0b56c0bd8341434ccf8b9a23708a22a0e1e legacy-trunk +7547 d2483c27742c154cc4620df53e6899e9a17e7672 legacy-trunk +7548 e21f1d2595de8b99b80adda6872edfdfce0844ca legacy-trunk +7549 3273acbe476fdaa5fab89f6a223a92d1319fccfe legacy-trunk +7550 5b9d41f4c08c115f83835ba18a17985d789a7cc4 legacy-trunk +7551 4edab474974ce0776706472a23e79c3e94f4e43a legacy-trunk +7552 23c4c7838ac2ab3a6675c1cacb71c00f12701a30 legacy-trunk +7553 7f4b32e8654557252b67afe2dc9ebf31e14438b7 legacy-trunk +7554 d6b292a33cfef53c75ea49fc27cbbd8c9953c045 legacy-trunk +7555 9a8adaf58ce86076b689355cd0db50b72d6d1967 legacy-trunk +7556 1b619b811c1035a81523b60b348d707587a477fa legacy-trunk +7557 2c8812eea637941554a4b656d4a9e15acc02200b legacy-trunk +7558 7ab1aa08d348db0cfa7a352dd9ea4359b38d1f11 legacy-trunk +7559 afc3e4e08740b638acc54033a16a33bc156afa04 legacy-trunk +7560 d3706579468e50d6a1a111257181f614512347c2 legacy-trunk +7561 aa73da661cdffae09af933e2ec214734192c9042 legacy-trunk +7562 6ed8eb4b664b31be18883ce35e132e316ced73fa legacy-trunk +7563 e428d2cfed40b3a9cf699a61d0098980eea64d6c legacy-trunk +7564 91f86306b07b85fabdf8f546ab8a825a9ea0e837 legacy-trunk +7565 b67c02bd5e2360e4889936748de617b313b70201 legacy-trunk +7566 3feec85bba9b6399f445ed523b3b57c404e1d2b8 legacy-trunk +7567 cb7aadd9d9f292484aee4e064edf0ae179dadd81 legacy-trunk +7568 d996dc42fe6415ad8209672a8c67346fc484b746 legacy-trunk +7569 38adbb39f15cf57795908498f02ac4457ead0c78 legacy-trunk +7570 11922a2ecacde4d818c4621a6e26831e38af38b8 legacy-trunk +7571 30c10b22295318ea9e687bab5beb47f62ce41800 legacy-trunk +7572 57b7a03a3252c0e53ba7df28b9f2426fb9206ffb legacy-trunk +7573 a44586bd9fab3f7095a48370d916e7efbcbc2ab1 legacy-trunk +7574 b4231d592281f25b0a591b6330b899379417ef46 legacy-trunk +7575 32310251d7674086498e0b65cf8dc03da29961a0 legacy-trunk +7576 2497c8b041017c96686ad1320bdb1e7942f9a050 legacy-trunk +7577 ee70b4c718993b60fdab43d19e3815f75a58c90a legacy-trunk +7578 492c0cae1f05229b116ba7bd10c92c6eb24f98d0 legacy-trunk +7579 4109a171c901a41f8b391def3b01e42919891f1a legacy-trunk +7580 00fd6857f76b939c5b9ea000d1cf83d6a3e61f50 legacy-trunk +7581 940813115f775b86288cfcdb0807306d1e3a818c legacy-trunk +7582 f9b46b5037519f44333742a17be74fe38624a131 legacy-trunk +7583 a9a6d416b945b7989217bc8490d580ddb4349823 legacy-trunk +7584 0bbf97861cd9a1604065001e1d22b62e6142b866 legacy-trunk +7585 073f1b3ad9d2baf40b4cbf02b6d02581282adc97 legacy-trunk +7586 21b871325c8534d1b287ba9077fc7664ec9fdec1 legacy-trunk +7587 ca6388bcc05a5d928a6263772043ceae0ddadede legacy-trunk +7588 fb8cefcefd81ea3690a013639ed1189f9406dd12 legacy-trunk +7589 b9ce3cc5007671a8741ce65a346252291d133163 legacy-trunk +7590 e3ab48988c779853c11b5dbeba9a887edc716ee4 legacy-trunk +7591 506664767736efb4020e7cecdf6b2c976f2d18a9 legacy-trunk +7592 2bb0bda1585c7fa549735a09e502d08de5aede32 legacy-trunk +7593 002865af55e5b58c8c311f906a6fe40351045b53 legacy-trunk +7594 bda01a37476225baf801cf08114753d580a814ef legacy-trunk +7595 a48f3678f9e1a8de9394fdb30f426da2784016ee legacy-trunk +7596 2e6eb1c715ce5ac1e794350f33bf7a125aabe725 legacy-trunk +7597 57b0f1619e2824042a7c1a5f36768298e4b28f8c legacy-trunk +7598 05fffd55b014c0150b02c9e105a118222b326eab legacy-trunk +7599 171591b39f632ed0b45bbac16dcc89e10770727b legacy-trunk +7600 54a9adca215c6e0b1a745bbca75d75bd3b102cac legacy-trunk +7601 7b940f29621b85fb9bde5a7a5503ad3d6bbcfe25 legacy-trunk +7602 f22213192531610c7a46b4763eac787d484d9069 legacy-trunk +7603 bf1bd64f85e01f29eaa4ec27b547fafab57cc4c2 legacy-trunk +7604 102e2912d0d1776a762f2fd3d8dd28ac49f8b203 legacy-trunk +7605 0bf7394dba2205b015423217c65c0573c97def22 legacy-trunk +7606 ec45276a6dadb9be13dbca5a520c3064dd9cb8aa legacy-trunk +7607 0fc1dacdafd738bde37522f89ad8eefe9bb90646 legacy-trunk +7608 666152b77027109f33c7028d385c7fa49b8c0f4c legacy-trunk +7609 def03d3b8ddbf8bd21f92b1d8eb8239c73708f98 legacy-trunk +7610 7fa9a644483e82e9b31deb57afb689c91b397926 legacy-trunk +7611 a513d83c06cb001f0d3aff4fd5d967ac9f805fd6 legacy-trunk +7612 40eb8b0ee19261b5c2c9224c550c1b212127e1e3 legacy-trunk +7613 f93ec1ac17aa7190f6080b504098f00fa81fa24c legacy-trunk +7614 9216f5c25e4ef78e6770bbecf861ccce6258d695 legacy-trunk +7615 8fbed78e81e71212887b9ab779cbc0af41dd5f95 legacy-trunk +7616 a4c8b88713761fd664b0cae67f865bed92e3794d legacy-trunk +7617 8a9f157932382efff2ef73394537b6f44d208822 legacy-trunk +7618 6952eb9c3a6f7f1599462beca735d5d01d5c303e legacy-trunk +7619 6b337ec92bd0d0a56142e800979ddb0fc3bc6e72 legacy-trunk +7620 1e95fac84ab32f6464bbc32cb5ed51ec2cfc673c legacy-trunk +7621 9cefd04ee53a52b8f617ad7639b5c3077cc7b545 legacy-trunk +7622 b227b9af5f53dba042fd435f747098d1d2f875e1 legacy-trunk +7623 89edaa8ed50fe7c7c0e0a0f4bcfdb3a2565198cc legacy-trunk +7624 78063bae3fd74bb4f63aca5ed2c6afe78da8a58d legacy-trunk +7625 4665e2849a4ac7becdc994ce3cec83c24effd2f9 legacy-trunk +7626 2826925a842e2986c8b1706b3dfbb63bea9f3807 legacy-trunk +7627 bd708fe1934b3b8cb6a89a900c255f0f2cdd4d05 legacy-trunk +7628 1ae7e2ebc2f331b289f97ed98da284b2635762c4 legacy-trunk +7629 f6219d775481ba175016e7f3d1d353b4a6dc506a legacy-trunk +7630 b566e77281cc14d5901de8f56bd0b58b34e64a59 legacy-trunk +7631 417462ab8b0027fb0d44d123c452947744fc4c77 legacy-trunk +7632 829c4289318104f0b8024c0eabb8a1c8c8a74d04 legacy-trunk +7633 351e95c51ddb1acdf5115b9db73d0d60109e1e8c legacy-trunk +7634 ef8351ea72c1c6323f231c0d08456e5dd428b606 legacy-trunk +7635 dc33e11a1c28df5d6a33e282986036e06fd2804e legacy-trunk +7636 5bb70d2e9adadd18eba1aaaae9fbff4573fd1a69 legacy-trunk +7637 7124e4ee499557645b071b66760cd8503961bdd0 legacy-trunk +7638 9063f60ea28d4192f99d7163da5c080db719eafd legacy-trunk +7639 8c277f29b535e0b212529fd7109b9e4bb13bc744 legacy-trunk +7640 4d15bdf1db9c0072735e568dd80ea173630a2776 legacy-trunk +7641 7151bb7277767ed1e87d84b54bb8c87b66e17975 legacy-trunk +7642 61f89beba1aa3c4bf0fdbf122914779ee8808048 legacy-trunk +7643 dff3e506c9e8d41f6fe1decf4454d9b72e18e992 legacy-trunk +7644 2ea9c425a7677f2296ac9f4662839a26e33d0104 legacy-trunk +7645 f5d707ce4223c173edf8e78d3361f784fb95ad54 legacy-trunk +7646 b1fc4eb2ac5a948fb19a889fc0d6e84669e9ea0b legacy-trunk +7647 31b0e5f0badf196628724d6a0fb0d1f0853be1c5 legacy-trunk +7648 ff4f8fa8a273a0290f2f8b1f94c09b4640851e21 legacy-trunk +7649 c4e5ef9bc361246185630d2216ed25df26bcc1f6 legacy-trunk +7650 197e3206e3f30747e5ac65d002d89b245ad1f8e6 legacy-trunk +7651 2bd920e7e5c788585e239b47b208f4ef1720e94a legacy-trunk +7652 b18e03ba48177f1fa436645c6cea0a4ad6f69461 legacy-trunk +7653 f974364f3a87a17ea218c878d9c9b8c0a97bfe4d legacy-trunk +7654 863ffc2ab76a99536f87c7ac5d1ffc02b982c935 legacy-trunk +7655 6bc56259cc4cc27f79bf8ad7ca8d5a6525d5af0c legacy-trunk +7656 8a0b80dc6e7114869372d1552bf7ac27b36d113f legacy-trunk +7657 e0361d5421ff0b4514dd5577bcb0b488df8a3baf legacy-trunk +7658 636757e812a4c4bfa4bdacad0a706adc6f3e3ba6 legacy-trunk +7659 5cf83ad3251e5f5b1dff06b7b9789778ba0913e1 legacy-trunk +7660 c1729e148916b3355b57440b61ae31d6cdd10e75 legacy-trunk +7661 a16decbb9716585a58748b8d2a117bb2d77c5561 legacy-trunk +7662 c1a1c306a429b5fcfb861dc6307edb8eb345599b legacy-trunk +7663 3ec3d8807f9e889662d2150f7fae7e895390968e legacy-trunk +7664 bab9196a8f30c62415769631a6322160ac4b6c28 legacy-trunk +7665 a79ecd5af7e5b419b515b9e0407617acd5ad054a legacy-trunk +7666 fa0fc288b2c90b9610eef6b46547f3344a90f70c legacy-trunk +7667 b7ac7b46b10c0105b45b584b32ef7d2c4509a8cc legacy-trunk +7668 f0fd12d76e078ff5bb3bf4a8a6f1794a069080d8 legacy-trunk +7669 52f3dc41f6c4fcebbdf97eb5751b0fe801bad46e legacy-trunk +7670 a874f5d3038edbd4f192a40c36fb43b6fff7a8af legacy-trunk +7671 8ee81ef4e982f4dd68f081b56554198917013f8d legacy-trunk +7672 74c12704a0bd0c49e871af04f8ea1b3c3643fe99 legacy-trunk +7673 e0a605e66bedaad8f95af15ddb8dddf915a152f7 legacy-trunk +7674 7e380df00d00fa1c38c0e62b92ca9c483ddb463e legacy-trunk +7675 024e738674a5cda78f7bdd7b28ac75fd4a429f51 legacy-trunk +7676 5878a5af3148d5bfafa0c2aafe68ad3f7cacdf49 legacy-trunk +7677 af92d779152ac24ffbe7644aa123b900f12c1c15 legacy-trunk +7678 05c7d8b4ffd6e4dd9b3d00c2637173186b7b8247 legacy-trunk +7679 c248a07e534164b26080abb9e1069c66d06a8f81 legacy-trunk +7680 b39203983de66111df93aacb29dcf6c4337445a0 legacy-trunk +7681 bd5e2c2c1e0872b11a6c03e857f83b79d22f8ea1 legacy-trunk +7682 00ebfa33cc07630eeda73a0d75d7f55750ba0fba legacy-trunk +7683 93e87cac483e5bffd6738427c9b995bd0144374f legacy-trunk +7684 2ec9c933afb8746a402439c3416b868c245e2d5c legacy-trunk +7685 d4c6b4b0548c1b604380643eb778889c08e3c55e legacy-trunk +7686 314d0d603f06ee4e27396f8bb4d89f44d9c42ba7 legacy-trunk +7687 1f38d5fb3d23881c998e9f8ca180d9620be14a9f legacy-trunk +7688 5b407e0cbc715ea6673101ace5e3e1543d769486 legacy-trunk +7689 9c16bdf160ff68fbb6cd741f555b903ec08b3023 legacy-trunk +7690 f70042c19c57a3b76ee8496cb491181df0838ea3 legacy-trunk +7691 9bf650f23da57130b5b28cc167d021dbb61ecc72 legacy-trunk +7692 3ab7d58c29631a6a95a0f1c63a9f6612bca2c0da legacy-trunk +7693 f5bfb9c4c36413af42ba7dbf4088ff809139f842 legacy-trunk +7694 334d52d6df5dab4d2e9b6de7496185e62589143d legacy-trunk +7695 e1f613322b23c27f6960e01c4d008601472e6fc6 legacy-trunk +7696 d9733b4f811f475a64b6083c7891f8741af0d6e4 legacy-trunk +7697 4d8b7dd5de2a280af5244ef9a6f5f87e254cec1a legacy-trunk +7698 bc8832b52b50b8cb196d28abbc96965b08156ed6 legacy-trunk +7699 05774ec39ad205bdbdf475890955c2991f5de673 legacy-trunk +7700 1b14c5c1be2a528572a26ef181162bbbb0fae700 legacy-trunk +7701 84c93f6017194ea8500b72aa87dff1c83b3dfa5d legacy-trunk +7702 97852f4ebde6b0441ead97fbd5dbe0c50b14a606 legacy-trunk +7703 59e8a02a4774d86a55e3c40032dc40f581fd6090 legacy-trunk +7704 74caddf4b28a4e284075df9f3a7c47b81f6e9443 legacy-trunk +7705 0e60de2a42af750c5dcf80ca9550c575c70082d5 legacy-trunk +7706 93344cbdf5422a368ade2bb18bd590d8496a191d legacy-trunk +7707 0a5cea427a9fbbae03761cb89e2673000c30fec4 legacy-trunk +7708 b749d2dd7582881e01acdca4f4f136e8e46bb9ef legacy-trunk +7709 07ed52e200db69699562fff33581c0173a40eaac legacy-trunk +7710 4f1fa7b69ba779336e99665daaa914f692e36b93 legacy-trunk +7711 b4e671bc13311aa08d0eb1e389df87023554919a legacy-trunk +7712 12373ba24e5d372c6a55cb8c5df8dda77aa7965f legacy-trunk +7713 15288c8343a5a60886cec14e11c0b01d440a99e0 legacy-trunk +7714 27635437fa7a2d7d04dce9993f7cefd55b1d92e3 legacy-trunk +7715 a3233864ca385feee07cb7e4ccb9d39d596b4e80 legacy-trunk +7716 b89f52821c52e88a569b605ea8cd9c0a25573a05 legacy-trunk +7717 a50df7f3a10a33d2a79386d82e1d8a41dc2f746a legacy-trunk +7718 4f251b8e328f5b5f9a77cc79177702a45d690333 legacy-trunk +7719 247139d200e8c78cc1167dcd4fca15cba87f16af legacy-trunk +7720 c5fd327057c6c354a7a26fadc3aaaf19bedda3af legacy-trunk +7721 23330a1b9594d928f5e9e6c52c2cb678b247b72e legacy-trunk +7722 6db8ade8d8a980d568c201f0b6903c12faf81bba legacy-trunk +7723 a54720f8dd36cffbf9ed436882e95370adb4ccbd legacy-trunk +7724 13005872d05346fb01c78d8f6051364e5881b48c legacy-trunk +7725 52e3b63f2dca00ed637f38b49444e4384aac6d04 legacy-trunk +7726 1bddba2f100e48da05cd52ab8272bb6a25cb5515 legacy-trunk +7727 2fd9246b0ee821328da339d58ba156282e76a7e0 legacy-trunk +7728 6fcf207498d8abe171f3806a502305adb266e063 legacy-trunk +7729 fe1ccb4e4c1c732002762c2f46c0328b992ed3f7 legacy-trunk +7730 d087cd060badda76e7ec5194a72d0cc943c61d3a legacy-trunk +7731 71694a171324ff5e82b3cfd53e3bce2fc17b03d0 legacy-trunk +7732 81283795f16a8a38e2861daa07e97f6524bd8024 legacy-trunk +7733 40d2fd472284a4e4cf0ef60310f8f1dcc9b3197e legacy-trunk +7734 71df21c0a34ed4bc44d7f394dc90697f1625832a legacy-trunk +7735 1e5d6293c524e3e5b94247a428920095e9829253 legacy-trunk +7736 72986b71682462a7f344ec1c89ac01a98633b267 legacy-trunk +7737 5abc1a36beddc73962cc951b017d4bc192875d61 legacy-trunk +7738 86d60c34ebde778578f1e35d1e947122a4524804 legacy-trunk +7739 38878f1cd4f1fec9997b43b19f58873a3d3ca357 legacy-trunk +7740 3c1788ab976106f3016077084c22321d9be704b7 legacy-trunk +7741 1efc4273fdb7e3490f98d747a84b6e22f7f7df92 legacy-trunk +7742 d41eee6d2ff7693baf4dc00f5d492afd861e4651 legacy-trunk +7743 4f331f5bb5f2a4b9219949d7a6934cae5dbecbd6 legacy-trunk +7744 4e53746e51af90a172be4716a30081ade8c94387 legacy-trunk +7745 de9d0c5249b0e2a7d461ecfdf1fb35089dbed1e6 legacy-trunk +7746 aff7063378a8a639c94d350644868c897e66946d legacy-trunk +7747 b159f98cbfefbd6518441072c46292ad2794066d legacy-trunk +7748 1148e7ebca354b23ef380cc9a22457fe5962a061 legacy-trunk +7749 0d6e70a5ab4bd1d72affc30e6c11c84bebfb1a9d legacy-trunk +7750 099dbc684c7be40cf69f96d28342b4b70d62714b legacy-trunk +7751 b7cb6976893d85f8921cd2ec0e44067539c3af46 legacy-trunk +7752 7df5a0d1f5230bdf1a34c0edc6045700ddf74edc legacy-trunk +7753 01c3e64bc824aab0abd196e4fa41e611d38c799a legacy-trunk +7754 16372a4c4c145c69cd51a870f8cb1ccfaf96dc3c legacy-trunk +7755 e8f8cf358054ed6b6d89c48b36fc285e193f5e0c legacy-trunk +7756 607fa32fc04a1da3cb9a0d2d075e53269f508dfb legacy-trunk +7757 5250f409d5587231e2d86e697637b5deb4c9386b legacy-trunk +7758 82a3fbda336350b3a4c35a617db895172842bac1 legacy-trunk +7759 02b2edf55baf39df9465ad8c64bde710603bbf5d legacy-trunk +7760 d2c995ec42901008dc1ef9d34c90ba06c744d636 legacy-trunk +7761 fbeda6f46ebb38ab7ba5264cd4ad39886cd22c29 legacy-trunk +7762 5af766a1b531250fb648878160858f89793de312 legacy-trunk +7763 0f1711b7d367dffbb9c51428f44168aaa95944e9 legacy-trunk +7764 47d3d396d4ef8a21a61d9c9d4eeedc83b1d0e42e legacy-trunk +7765 d32b8f4d9d30920ce81c0ace1e127a40377cec45 legacy-trunk +7766 a76a3a39f6bcfb77eec28ac0ae9f340bd371d40c legacy-trunk +7767 ca568e5ebd19a38055fcce72c54ab8901f8d1fa1 legacy-trunk +7768 b0d9de3786ec329c0d69c04d14b2656616bf1b43 legacy-trunk +7769 57a2ed0630cd859e8a588ccabb57ada729489888 legacy-trunk +7770 2f2760c3dd905d43fdd52c3638a04bc0c4feeb26 legacy-trunk +7771 7aa4566014c6ac0492b98e9e2efdbed5392b363e legacy-trunk +7772 7ec733f9c30574bed2bed84d81c95192a693a52e legacy-trunk +7773 9a32bd8f4ac8a1ce50b068b51b197f40cb89e8bb legacy-trunk +7774 b523e6e7ac612ade1e2210455b134d652d117399 legacy-trunk +7775 e77942562dd38e535e66b8c9c5494d1654978534 legacy-trunk +7776 fb8165304939345da3ee75ecdc9bdadef8849154 legacy-trunk +7777 5e3bcf4ebf29f48cccca5c866c6582d4cbf56a3b legacy-trunk +7778 964562bd75cc376fa9a32944b10de2010a73f9d3 legacy-trunk +7779 4459172f40bb14489d3ae66fc891529cd3245d9b legacy-trunk +7780 332fe02bf02dc47af903828c422b6325da9496d3 legacy-trunk +7781 e614bcd34e34fc4f575ebe00a3e831c0a6733dcb legacy-trunk +7782 c3ed299d593e6cf44fec3a0ec9611cfe3078ad10 legacy-trunk +7783 df87d5d1bbdf17f973dc7dc84dbd30cd5666b4c8 legacy-trunk +7784 e756b8e54c7c1c62ca6651af5e41074f58f317be legacy-trunk +7785 192e2e0cbce50648d3269ec317a4967dbdd338c1 legacy-trunk +7786 782597cf6151d9dea1f8b59492ce5ae3fb935be2 legacy-trunk +7787 d0eb183092b0cdc68b5d015e5835e9820c891bd5 legacy-trunk +7788 e8996884e8e17e6b7b40039287b36f0cd5fb9a0e legacy-trunk +7789 8fc217d3326754597b16681d5d726eebed77e6a3 legacy-trunk +7790 65c9e90d8142692df2b8892612d86ac3c536edbd legacy-trunk +7791 c8e24c4b8bfbcca8399f61417d27aa3575576c64 legacy-trunk +7792 c72c7e1930b3f2cb07fc4bac8bdcecaeda8863af legacy-trunk +7793 2c4b802a3b5d8b55ee05d4b6ee1c5113cc541d2d legacy-trunk +7794 74a1bc0998276e727f11bd41216c673ea5a0a570 legacy-trunk +7795 c3ddb84a7761fde3c5541893a53389b3b0556c4c legacy-trunk +7796 e2ac0982cc32f0cf116bc9d9b4b427582014b2e7 legacy-trunk +7797 38818538b89c0ae870acce87005ce670c94472ac legacy-trunk +7798 91f99181271855793a322bee71b67f4ba47b6047 legacy-trunk +7799 489dca3b54ccb60fab614c94b6b0cccd711e56f3 legacy-trunk +7800 3a07799deba1f6dcbcc3aa97d2decdd529dad012 legacy-trunk +7801 b6893133940feeb13141542b1397be6b684c13f0 legacy-trunk +7802 152b2827a1a0873a35b2bc42c3123a3347323c77 legacy-trunk +7803 359e8f815a3acb492771579702e96ac5eaeb17fc legacy-trunk +7804 43752e209473c38e1a84854a9d9b1a2f1fed585a legacy-trunk +7805 5a22f9b38aac2268ab0868483a7f5d27794a9563 legacy-trunk +7806 6232acba7eb20a0c757ffcb8243b37c5f621a926 legacy-trunk +7807 8dfc252963c7199e3bba5896fa950fef243dacd7 legacy-trunk +7808 627316c001fbd451773cc1b2b347b8f6b3fc533d legacy-trunk +7809 d1ac51b870e218c0476623a1ec919fe8eeede9ef legacy-trunk +7810 ee9275b0f5c80af9fecd7cd038321d92deb50fce legacy-trunk +7811 746f687acfc1af5231d95f40f549b91f275b022b legacy-trunk +7812 166c2232921abfce8baccd53bf7366861d901429 legacy-trunk +7813 67995bc17f625bc0bcb632a387169158fc2e6e39 legacy-trunk +7814 b0a3140cc9b1adb07bf23ababdc99155bd32df8b legacy-trunk +7815 db673e98f28daeeb2f71213cacfec521487ae672 legacy-trunk +7817 67e5237ce1418b387da223ee324516315d5215c8 legacy-trunk +7819 67a0b5aaae433ba980efabbb75111b428241df31 legacy-trunk +7820 4a541bb0c53433c7aa09b8cbb3b6555eb1623378 legacy-trunk +7821 9ca27188da232322f67011b35c222a4f00e3e548 legacy-trunk +7822 5b2ed6081eb94ae19f636d852c021732b7ae5635 legacy-trunk +7823 339dcb9a282570c931fa65ec1ede15860f40e5a5 legacy-trunk +7824 0061f4ea97be8ec3521dc9cd1463a6c501280961 legacy-trunk +7825 ae02ed2aac3f6c6a511b523e18b50cf9f8f6bd11 legacy-trunk +7826 6ab392d7a52fcd607374efcf2cfc6fd92fd99d34 legacy-trunk +7827 688c3fd42ca62d56211106d15301e89b96cd1205 legacy-trunk +7828 999c197da57cc16bf596f1ef702e0c2539b2580e legacy-trunk +7829 d5757aad1a4fea778e24c1ba5675daefedc38729 legacy-trunk +7830 d40cd910d684f0eb77be3e0756d4c4f4543ef57c legacy-trunk +7831 2c0b10165f7eca4196ae144b1d683bd26c04f15e legacy-trunk +7832 179168e17bfe25c57724d9e2dbe2032172809462 legacy-trunk +7833 47362fd9071bc7909b701e9757841a3845efc13f legacy-trunk +7834 bc2e3334048e13a1ac356f8808baf70aeff6e994 legacy-trunk +7835 db40dba3f79a7d5303144806cc32a6b8a3cca815 legacy-trunk +7836 edea4f1d63fd015543c1bc6cc4c551b598d3ef04 legacy-trunk +7837 f858038b64c2606539c2fb8cb407249c73f9987a legacy-trunk +7838 b1c2b79aa51f85c490d1125405feeb134008e450 legacy-trunk +7839 61e41b2b1b69d488b0b8db42300a730afc1555c1 legacy-trunk +7840 cc586bda6275525d6758e3318aca26c5ebf78c14 legacy-trunk +7841 e4af414f5f893b5d8c6ae08ea011defbd95d1480 legacy-trunk +7842 b7ca98c6dbbd68a7ba37c384f55176b77688ec19 legacy-trunk +7843 87313333ae3fc373be4ec88160db3417d4ee0f1e legacy-trunk +7844 8981533e6cc1a127aab803520e51409ab7021208 legacy-trunk +7845 f2132d1f66a628f59c5efced8150e6a1a93995f2 legacy-trunk +7846 3ca14503170cc9f9b92fc08758602bb27161fae9 legacy-trunk +7847 1ea1f019268d9f27074579d715fcb2966166f80e legacy-trunk +7848 493a34dca53edd725462998568a7525522d30db7 legacy-trunk +7849 424922afc1bb40e9f520209f5b943d46a89310c8 legacy-trunk +7850 5880384d7c7148b8c455101f74d8057a630a112b legacy-trunk +7851 118beef918736d5f862da3092b1081f10bb875ab legacy-trunk +7852 7f90a671cc1db8a8118faf6ba3c4bb946fd21278 legacy-trunk +7853 9980faeeb7a513dd825322dc1cecdad8b4bc934f legacy-trunk +7854 09597a423227ce3066ed273a6ffd61fae5bcf678 legacy-trunk +7855 319e3eaecdf4fb7904c15a503298679807d25a0b legacy-trunk +7856 1c9a84e0981d358ba9f0380c82e710677eb15643 legacy-trunk +7857 2d4c6cba01bf005e4bfdc0be2a1caa3ec33be11e legacy-trunk +7858 339d4129d3f7f15a489e16985eb010ef44304bfa legacy-trunk +7859 3f558a32c49800035240ea9c390a7fd49cbcee4f legacy-trunk +7860 3c5fcf8bf518961bc4ba85fb2e00e0cc8f9f0eea legacy-trunk +7861 3714b325826d897cd16e7934f249a91950a312be legacy-trunk +7862 10e7dba01d05121fda1ada54dafbf30f77dc6eb7 legacy-trunk +7863 43c5e1f9154e6d7a9b32ebb6b34d978e360cd49b legacy-trunk +7864 09c58b1749899102709fd1691e455d25ceb25a6f legacy-trunk +7865 13a30cea8dbf7d285fc7ce1f3400fe48f705b0bb legacy-trunk +7866 5a9706965a4ec3fc1390cbb6ebfb3f260a848091 legacy-trunk +7867 b24e84a0f30b32acc341be5b3020ce83efa9a911 legacy-trunk +7868 e92f182d77268c86b79492616708a73d371c9568 legacy-trunk +7869 194d26df6c500cffd2fc19fb04507d41f18dab4e legacy-trunk +7870 31e399636675fd41410c47520d975a375b0fa1e8 legacy-trunk +7871 c2fb976beceb39dad20142c5ccedbe9a79cbc200 legacy-trunk +7872 2c81d7d68ed3aad3c67e7759fd14a11d3943ae10 legacy-trunk +7873 d1447950fa045652ff55be3a2ac275da070676c6 legacy-trunk +7874 fd7eb058ce5db30418c51dfb46c4306ca3e21e09 legacy-trunk +7875 72b231edfb2523955299a89824259403ff4531f5 legacy-trunk +7876 0a599773a9cca4fedde7d043d7730965e1c42e96 legacy-trunk +7877 7918e8739148a4c60ab65794b76ceaa88f6db9e9 legacy-trunk +7878 487ad0327ae1828b27dfbfb3bbec75b7e414f0ce legacy-trunk +7879 8f0a793bb0e269571c8bc0ea2ef3a6be177a5760 legacy-trunk +7880 50a9c140946c489ff23a2db3e133c4419c4f6d8d legacy-trunk +7881 3780cce14f7d02cddc1fcd1b9529768de17a63b5 legacy-trunk +7882 b7871ca930ad5bc51a909ee75ec2e5da13e07f4d legacy-trunk +7883 c2254754192c2eaf15dd2ae4025ef8e3373b7bb0 legacy-trunk +7884 b7a23dbe0065ecf7f810b9740a738a5392bde18c legacy-trunk +7885 648124a5880a33297a45ecb8841c47e087a36ad8 legacy-trunk +7886 18d6a5abd3f8322736c5fc85114e0c02884a79f2 legacy-trunk +7887 3b2fda31bf1ba8edc505770eafd9726d444b6ca4 legacy-trunk +7888 6717073de5865a7061de0d03ed36bfdcd3d108fb legacy-trunk +7889 78d398005bab02a54286f90bc9ff05bc324af7dc legacy-trunk +7890 10267fdc753116c1d3e2598820335f0b78170f64 legacy-trunk +7891 013ff6951909f0eb55b4e7719e395b0017d930c0 legacy-trunk +7892 596380a567d22394ca01eff0905934c34b52cfed legacy-trunk +7893 172254d41a51dafb746d2159698abd26f26bc225 legacy-trunk +7894 abf33b882cfdce83874ca164303d3342bbfc90ae legacy-trunk +7895 a1b63c73ad1dc514cb36c400caa26766459155c0 legacy-trunk +7896 d9941a895c0209411564f2d4f04172feaeadb05e legacy-trunk +7897 014ea9d72d03cfe4f978971b71e3d1542ed0034c legacy-trunk +7898 dacbfaa07c407c26aab9842ce4f0ee1324b38ff6 legacy-trunk +7899 37332b6f6280bed472bd29d939cfe5a5ca4a1b5a legacy-trunk +7900 bccb8d7429647b941e5e7e6f87b5043698f5d3df legacy-trunk +7901 638a99bc8f2ccf7b9ba40a249d062472e2af6b83 legacy-trunk +7902 a7e309b174b2725ebd53298de9519a242818830d legacy-trunk +7903 dab863b79debac3389eb4ec7e3329bcbc9e4d64f legacy-trunk +7904 b0023335588cef7f97a92a729e09a4dad53dd793 legacy-trunk +7905 5e2c17b374fb0eaa2701dff8a5197d23790eed13 legacy-trunk +7906 ac235c9e6881f338ca609feca4804fe2d2d59cf2 legacy-trunk +7907 2329ccf0e58111cf16891d56bad1be32331ab579 legacy-trunk +7908 a56b44b3550572fd35299900748561e91fcc8530 legacy-trunk +7909 cee4c45c568f760faba1969deffafb6dfc623874 legacy-trunk +7910 ad4741d5431cc1bd0bced1cb31a0180a23646666 legacy-trunk +7911 3d7890236a4e591b38c1338ef376824060d24bc1 legacy-trunk +7912 591c6420f11d025dcd2c931b0be174e2592a378e legacy-trunk +7913 cf818b70da3e65d641fbf9b249c205869ccea188 legacy-trunk +7914 c2dae2b1a1235d1d22d5721dba215ca6748cbe3d legacy-trunk +7915 e926c331ebbf1d317d7e71952cf0357110d5c122 legacy-trunk +7916 1dae5b1c8dba12a538f6a80df0ebac1431971e1c legacy-trunk +7917 9eaa2caed1c3b845a0f898f05e4d614228a6076a legacy-trunk +7918 3c6db7165bc3d604dca4f869ffaf94deb96663f5 legacy-trunk +7919 4579a7701949dabdc45ff9d04026f71435da88ea legacy-trunk +7920 8868e9f13657d30c9c23710f2ea4a5dd0fd780e1 legacy-trunk +7921 87c4f05a17e51fc60724a6e967c789964504dbcb legacy-trunk +7922 8f3e1612360049e146b718407d784dce71b09d41 legacy-trunk +7923 515ed73da5b14b7b5aee88a11969e5719492fa8d legacy-trunk +7924 0b1e6950890736d24941301bcaea6a274bfabc00 legacy-trunk +7925 e9f6158846b16b7c380833e45e9b834817a06f85 legacy-trunk +7926 01f02bf2b44167b6846aa3433851a26abc0704cf legacy-trunk +7927 4a80e6ca7cd35ef47e302e7a3c3268312f14fe96 legacy-trunk +7928 5abdde99c9eadaa9d806bfae89e1bc39f68787a0 legacy-trunk +7929 2a875199a71e86022a3ebc088a3fa8e3c1690b0b legacy-trunk +7930 9c6c07d449df5403622949b7988c2a66db3cf4fd legacy-trunk +7931 0f6c96f48e1ba476e56792683b79ee9a8258db7b legacy-trunk +7932 663579a3c7feb540e7fac2044bc1109b4803014b legacy-trunk +7933 7316eecb1e6b32e618cb3043f91ebab9ec35475b legacy-trunk +7934 53440097111fef8e39e0e9e5c5f872107ea7d743 legacy-trunk +7935 13052dc2d5f6e6e4b9246c12d0a3f3f371c38507 legacy-trunk +7936 c5d7b6fcee03d225ecd37d4315f1ada2d7faabbd legacy-trunk +7937 ad6c427dcbd9e4d574d9b080904e8964fe011bac legacy-trunk +7938 0ded63bcf5de29edd969edf136c6afa05b7aa216 legacy-trunk +7939 60f6649fd2310deba3c236dcc6ff3ebc87bfedd6 legacy-trunk +7940 952851d9cce20f8dc1e3849ae0c94c34610dc932 legacy-trunk +7941 b0584bf7b4f529962d493820613d28a524235e1c legacy-trunk +7942 09e6b4e34523bae20e5826608a1338be03cfb802 legacy-trunk +7943 43c86c8181d457661d580e9298a962ec3b89d71a legacy-trunk +7944 64b693151956d21ad5a83f85a2d8fa2590132313 legacy-trunk +7945 08e86d439281df056874e6badba0453ac7a0d73c legacy-trunk +7946 47e81b2169e954ec25af4c517ab5d6e1b1df3827 legacy-trunk +7947 d9029a4e0f2ac77c6fc8129191c60c5f30459a7b legacy-trunk +7948 8e5d6d3103aef83e972fc2249b8238817b4fca97 legacy-trunk +7949 84db154d5b93e8d0be05625580bebe81a2a6f599 legacy-trunk +7950 c3d4bfb8ccdf01d6a35bd329cb4b47643b919e73 legacy-trunk +7951 2666e904e40b0ccd48e92c2132667cc0a49e7ae7 legacy-trunk +7952 a86ea2cceaecdd5b2e7568c751d6ecad185c329b legacy-trunk +7952 062aed8a4ce2c91c81b80e29f02faff1cf5a761b legacy-trunk +7954 f44a56e697fb17ce56b86cf419b6076c268cc346 legacy-trunk +7955 266c9aa8c127761491be8881a031ed16d493ddee legacy-trunk +7956 6d53ebaec021591b3350960b188a53b6d3fc4dc2 legacy-trunk +7957 b96176c9a853b69d201f0b5020fa6839a4e50574 legacy-trunk +7958 f1afc5690b2ab5f201e304f513df9994bb476825 legacy-trunk +7959 6fa29756ec6a2942747ad8a538ad0dfd9ed25ea5 legacy-trunk +7960 73509efa724bccecf98587846673b73c75012135 legacy-trunk +7961 595a5fe140d40c276310ae5dea9035610db68bf3 legacy-trunk +7962 478c68ea982751a252c26b8aa9ff17bda6a89420 legacy-trunk +7963 195d5aa1951e03c239d8f4058e5e997fcdf977aa legacy-trunk +7964 ed0394484082b62c904f6c6013a1ba31974ece25 legacy-trunk +7965 2e89c55d9a295a2efbc478b30802f59d28ad0405 legacy-trunk +7966 2d133280129f72c975e8332dd0871e652eff70c7 legacy-trunk +7967 c1b40b0577d194f1e1aed330774c58601df4ad5e legacy-trunk +7968 506ba7df42f04631b514b965d66f656a14e88b7b legacy-trunk +7969 af1aea6b968fd6dacc1303a55fdb02da5e257e54 legacy-trunk +7970 ef93d51dab362dd59bb535807c48760a688f3e26 legacy-trunk +7971 bfd03154088b6ac110f0e0c6598fba8b3f28442d legacy-trunk +7972 e652a793f4e712f457bf55618acbf6cfea525964 legacy-trunk +7973 0b1946600bdded8f1d0c851aa09e4cab4c897b9c legacy-trunk +7974 377f8695a9fbb201d067f337a0cd934aee8be067 legacy-trunk +7975 9a12259239181f8a3428acaeea2dc6f2c466915f legacy-trunk +7976 b905372edd4fb47a7e08727b6d96c0c4da0041a6 legacy-trunk +7977 821912fd965a1d0a4a6ed095af4a05887b614516 legacy-trunk +7978 4660ffb9e483c75879e345c1955ba74f8fc73c76 legacy-trunk +7979 50581666c854fb1090681f1f49643976c45af7f9 legacy-trunk +7980 ba005e4db4c53436f23706a82b698b1a485c41ab legacy-trunk +7981 c88b9b868995314738a114b60ca504a930fc3716 legacy-trunk +7982 47fa008779242a278ac2d4758e49744397d892ce legacy-trunk +7983 59438d19d603675ff7508cecfdda8367844ddbb0 legacy-trunk +7984 56b43a40a5285571752235c87bbd7f105e7c2e2c legacy-trunk +7985 3643f19d5ca1a40069f338c83bac94acc661aa88 legacy-trunk +7986 ddedfa55684a60a11c359fcb2282d387edcbf58c legacy-trunk +7987 7290a930b4c957c5b5641999f7d7e10e5180770e legacy-trunk +7988 fb39d288664b539eb4fa0d114f8f152730d2454c legacy-trunk +7989 149d742b0971ce1c5c1848549d779afe802b6a9f legacy-trunk +7990 4dd5095c3b67e9f77d89cca602e1c3a999238dac legacy-trunk +7991 64e2fd8f1d68490dfb54ca1a976aece8c573b1de legacy-trunk +7992 064c86719ca7bdfc617bccf7320ca062b907ae3e legacy-trunk +7993 2456d8ff9fa823e26468e0bb352fb172704f4782 legacy-trunk +7994 ca123f240ba9c3680ba489f671fd83cdb9d38aee legacy-trunk +7995 576b7d927afb909c8d4b32cfa900b98564d579ec legacy-trunk +7996 13815273e171bba1354f3363d8551c82d61e3220 legacy-trunk +7997 31d66194a77c9ffcb8466809ea6f9ac82d7709e4 legacy-trunk +7998 8803bf404b694665560c157ceba1c52ca55f9584 legacy-trunk +7999 986c308765ae967aad75f8502107cf523a1583ff legacy-trunk +8000 0ba9f914a708876ee02e113104df0fd870a81ae0 legacy-trunk +8001 9a237a4cf3a1f6f876d6509fa7a44eec6c688dfb legacy-trunk +8002 8582f74a1d235d3d3376a02bdaebe45ed0b37aa6 legacy-trunk +8003 bc9d54523862802b7e9915b8fb3c063616499ebd legacy-trunk +8004 26eff69ed5523cba47f782b8a71fd2198c79cdce legacy-trunk +8005 3258463f1ca275e266b9d674b1494162e156aa6e legacy-trunk +8006 f5decc5d7073ef9f2598d2869e23452dfbf80a36 legacy-trunk +8006 c9498ac988372575cf7028b86395b900c9b0a840 legacy-trunk +8008 5454fe4925d36565b2b68bf42dcaf90aeb3529ed legacy-trunk +8009 30d55982704796e1ac616391d73df1e479ced54a legacy-trunk +8010 826f28985beadf59105a4256c73fd7b383250832 legacy-trunk +8011 84d3cca814fbd0d65349211396826a1fddedb4c4 legacy-trunk +8012 20c2b715188ea975bec482c20e1fa3c3f0e44f43 legacy-trunk +8013 c6f04e9655081817775db4c1047b0b08645c8e98 legacy-trunk +8014 b1df938655e15d5390b565fe2c32b3edc0010b84 legacy-trunk +8015 472c8e4cc9741fbebffab275c63aeb0771bb49fe legacy-trunk +8016 8f871a030b8d14029859023b966ea3579f1a7b2b legacy-trunk +8017 a0cc005eccd787b4b19566b80716f4092fbbe026 legacy-trunk +8018 b579c5918f2cb35b0a19f453e0f0217ab22fdab7 legacy-trunk +8019 cfc13f3f387699dfa4bf75934904607ac245f843 legacy-trunk +8020 37c939f70fac01d0262e48764fc7958a5b90e0a8 legacy-trunk +8021 0bba914bf7b2aca51aa37b31a961f73d702774ba legacy-trunk +8022 7e4228780ff8c1a34c7a8d1cc8c7f254b0b4c906 legacy-trunk +8023 6c07d44a708108cc5db440d4ded754670176b09d legacy-trunk +8024 98d4e97daac0546d7fe60dab0dd7f040cb8f8711 legacy-trunk +8025 a22caf12934538e4470ca879bff41b5c9de5c458 legacy-trunk +8026 52610ecee367a7938a0b418399b7a373adf7b90b legacy-trunk +8027 43822e4fc27d47641a4adc3d5ef68fb4776e913b legacy-trunk +8028 34509c05266f2298418ef38d0ed04a7c8cefdb77 legacy-trunk +8029 2dfc707d6e685195be866e88cb7d98d66083da3f legacy-trunk +8030 18fd07869b13c48b8b527fb91558b3d30ffed0fb legacy-trunk +8031 b5e648fde099c96fec3cc59f6b16d012038140c3 legacy-trunk +8032 989f4ff7342915aa0f8eac6fdb3651be592ca146 legacy-trunk +8033 fa9fada916b453039f99270be1b68d7673c0aa33 legacy-trunk +8034 4329e4077cf39151cf2bc62bed0c3b227ad62387 legacy-trunk +8035 ef3ba8b99da2efffba3cffb6099222bcd9e3eb9f legacy-trunk +8036 1eced1aaad5a8a65e6330d0b5baec25278c59ae6 legacy-trunk +8037 8ec298b255a20b670a3fad82d7833e8a5a297165 legacy-trunk +8038 4dcf26fe4da5951b099f5f0dbebf28e0aeb2be9c legacy-trunk +8039 3f3d2d474aca0f5ca13a44f71a260cbe484670e5 legacy-trunk +8040 f1b038758bda93b33e5c8cfa83913bac51e9e330 legacy-trunk +8041 6e944279a314f300406df0bd2eff3ce270666fd5 legacy-trunk +8042 5ffab65f8d050988b9068746535f2e4f5f685928 legacy-trunk +8043 19d4a28746454c3411c0f65b3dd25b38bfa85710 legacy-trunk +8044 932cfc5fc104b24d11888b9ea946c397dda68d82 legacy-trunk +8045 139ab21d2629be498f188ccf8530393b73ccae02 legacy-trunk +8046 818cfff3aa5d8bcc1b50602acd6ca3e753e31c87 legacy-trunk +8047 11e2e3ff9fc7b19ebc40b9408599ed552238d5d8 legacy-trunk +8048 3e679530afc9ec64acecbe0e726c66f09c96a611 legacy-trunk +8049 b231855a94744dbde23842db4777f65b65e08c8e legacy-trunk +8050 bf9f104abe78a55a9de6df15975392b36168e089 legacy-trunk +8051 84d7cc5e63cdb765cde0a19a8f732fd5185f4eaf legacy-trunk +8052 6a9f263e2b48cacc8b87e936779f1a828b70651f legacy-trunk +8053 c7d812e4af0d3d93e38420c304de5f1bef6d48ec legacy-trunk +8054 6c72b91c8b83d1ac3b451f55e15790281115e207 legacy-trunk +8055 937d9ec2b560517a2da2f42c2e0aa9185c3b1c84 legacy-trunk +8056 486d5e98938bba4d4bfe14463898147073f7e5be legacy-trunk +8057 ce59973accde7e07d29acf4f74563c3c6e08ce54 legacy-trunk +8058 7e2ad9e32e0d5dd53b8df723c0d5d69c5722f6ad legacy-trunk +8059 87d5d7fa8d07e6b996645ff92b666da06ec1cd1d legacy-trunk +8060 edbcfed7fc7bfc89e5e9ca1aeae1047e2f4714f3 legacy-trunk +8061 85c5043c931677ecabe586e84f0c564152fd75ac legacy-trunk +8062 57dbdc2b30226f103a01af7a3e589d28541536bf legacy-trunk +8063 784bafb47e1f6dbf74be0b68fa88ac112fec5c26 legacy-trunk +8064 6a48a7e711d86ca22aaeb5061271abe029bb17d0 legacy-trunk +8065 53cdf94b652b83e5652f5c710e9eb34fdd39828d legacy-trunk +8066 795ca975d96f88e283cbdf66bc59c310211a8bf4 legacy-trunk +8067 f3f65687e4260dadf7ddc09d1e681107637aab8d legacy-trunk +8068 da475e107a68f768dc4da31a0be81750a93f5882 legacy-trunk +8069 e3d52582d3607810d5e3d92afc4049ddd778d832 legacy-trunk +8070 451c7ccf36b67f2d1af8f44c00663ec6153a3064 legacy-trunk +8071 4c4621aa9e7677e610963c3cd30201b236d86a14 legacy-trunk +8072 c5a567af13ee7cf3ca908dddaf8cb73a70115bf5 legacy-trunk +8073 2e2bbe98562022354dbd59d510bce661d115b18c legacy-trunk +8074 5516915ffee7d782771b2f337768d30237e218d8 legacy-trunk +8075 1f206c91daee1800f93c9eac359352e3b9b852e8 legacy-trunk +8076 b5e51ae9f832e5a39860e842d8418a9a07c20b76 legacy-trunk +8077 d954dc243eb07aac53f9651c71b08830cb3050bc legacy-trunk +8078 a61023bca0a974379da7154a330a14587936d05e legacy-trunk +8079 0294a67bfbdb437facac4238fde52289e1cfffea legacy-trunk +8080 f43559d23b3d68e95eb61ba37a171ebd0fecdc0b legacy-trunk +8081 85980ea5e805cf990d283de8df528ce25ffe4484 legacy-trunk +8082 89af5bf8f8732047cd6b9f261a797e9a2605aa5b legacy-trunk +8083 495fbde64a73b5db6b9d2c4bc3b90925d0bef9ca legacy-trunk +8084 cbb4e3cf086e221ad3dfb544c221912023639aa5 legacy-trunk +8085 79e49cbce2efd2f0c6b9c38709f0ce0b320273ed legacy-trunk +8086 f28eea02cf94462bb995fab2493189648082d81a legacy-trunk +8087 10e9cfa010f089761fe79c95cd7cc13f670e6554 legacy-trunk +8088 5ed3a21cc1229c1798852453c1e7fd4d91b531a3 legacy-trunk +8089 8d405f71282f96e0168d860df127a50125bb0e85 legacy-trunk +8090 190e35bbc15ae232787de7b209531fd200c6b247 legacy-trunk +8091 7254ee2a8abda7089ad140ceef2ce6848fc1fa14 legacy-trunk +8092 3ba08d6e9b7f2841b28354e0368c0862ebb370c2 legacy-trunk +8093 bae2c0189f8594a8a366623736670d07f5574898 legacy-trunk +8094 70855574516b86b98c5158dea1d11426c2ad0ad3 legacy-trunk +8095 fdd1e1a530af8c07d5c2722eeaf2b26190763c49 legacy-trunk +8096 7fda7841db9182f8e7847ad20421524e71a54ab7 legacy-trunk +8097 0556ea687a97d818105940acde86feaa7c1d1f3e legacy-trunk +8098 e1413fa64b831b745dfa45c979723c26c3c164b8 legacy-trunk +8099 f8e452a1f64483bcf6ed0b3cd34b05ca52f1bb5e legacy-trunk +8100 fa6c91a5f41b7838755e3378f656469ed26d9df2 legacy-trunk +8101 32bafc9e9c4fc36c809af630f270ab480bd2744d legacy-trunk +8102 acfce015dfdd36dee0aaa1b5a1c0cb9ef760480c legacy-trunk +8103 696e754064c37f0b6931bb1a50b395d850fc1db2 legacy-trunk +8104 4d12e6e9c27d1e5368a7450b9319db35675fb30d legacy-trunk +8105 9924825da4b3a68502e01072e792031b6bab2ed3 legacy-trunk +8106 e6a233fc8b9b414ad2683846f1265a52cfbd7c5c legacy-trunk +8107 8af8ee797c0952cf712f8368649dbb4021d5624b legacy-trunk +8108 8c54c777674490e83bc3bc07db821dadbfb53cff legacy-trunk +8109 00fc413a3b8bc76eb28e547192449b32f3b7ba85 legacy-trunk +8110 c69c759f4366c56055d04ab8db2dae8015aa7c32 legacy-trunk +8111 ec97f41c7a04eb43d894e75d410b184cda48c2cd legacy-trunk +8112 acc55d70467478e0eee84ac5942488d94559600d legacy-trunk +8113 75ba64c55f2e12c9504cdeab561dedd38844b400 legacy-trunk +8114 17ca7e4e8fd6e81fd9f48ec05c787ee68b0fd78a legacy-trunk +8115 f91439d8f66e4726ff1f21019878a80d867ac66e legacy-trunk +8116 43705647feb9297d5ee2fa52aac637d964ffd564 legacy-trunk +8117 57a261fa596c6f264bc7dd7902a4539e76295df4 legacy-trunk +8118 65ea41f2d34d80f775e91fcfe072a9f52146f57d legacy-trunk +8119 0ef702b8046ba6fa3991857d474cef5b52b0b807 legacy-trunk +8120 96949b9f42cb9024d5389b298d55ae7862dcd52a legacy-trunk +8121 7c209dabd8c80002cf6eefed0461f144808293bf legacy-trunk +8122 e59374e23fdf6e4656bc75d1a9131b20265f776e legacy-trunk +8123 c63e283bb2e466148f7c1af54d06c0c49d0befd7 legacy-trunk +8124 b49d8037a5cbae3f404c47f46f4309926bc04dab legacy-trunk +8125 0cc97e75a3613929f4c6095605d81d5920374124 legacy-trunk +8126 07e1aab231153423eefd5503565b6bb8e3d18b3d legacy-trunk +8127 d45dc7fe42af9e3e986178f7d0fac97ebe4a3ae6 legacy-trunk +8128 95d6e17955efc8bbd924a464552e9fc53ea0ba6e legacy-trunk +8129 6009d53905848cef9391d5d2e0f784039f6b3004 legacy-trunk +8130 309602c8792924169cf079c919341b120754e4a7 legacy-trunk +8131 8e14d54a6419d29c9f3a3ff02b2f27e31831a533 legacy-trunk +8132 0b5742d3189a240ee4e39739aeecb707daa34aaa legacy-trunk +8133 d175cac550b98a618e435572aef5539b86ec9137 legacy-trunk +8134 dded439b7b8ab161219b77c71e708ea78e669201 legacy-trunk +8135 1265ca44f04b9bcc9ff99ddb9ce286d092db75b5 legacy-trunk +8136 6f9a2c874018ed8bfdae042dbfbb5e4982f04075 legacy-trunk +8137 efdee7d432704d07a37545de0c05d4beef5f4a02 legacy-trunk +8138 3db754abff362f093ed8b81f3384fce7c912dca0 legacy-trunk +8139 6bd3a2cec3530fe7a11d12be655740788f7bcc7f legacy-trunk +8140 18149980ece98369e7374be62ae58a50b1e7e206 legacy-trunk +8141 1dfa4f17d8fff631de0d790260d47c1050858453 legacy-trunk +8142 b5bbe5220f6baa96131c90664ff80cbf753e5bdb legacy-trunk +8143 3470689a97d72a0aeac017390d84381379c0e336 legacy-trunk +8144 4a58497c14a8167b31cd9d580f17a23ad1b2294e legacy-trunk +8145 67679f2ed21763b146f8412999617800e459a060 legacy-trunk +8146 85134b97ae4d540706c36e7dfdd209920abac87c legacy-trunk +8147 c3501a9d3c2059f1ea8f9a145c145c2364267b05 legacy-trunk +8148 d66304963ca7fe91680ced67fea75f58c9ed506c legacy-trunk +8149 1926e6492d3f78d550b5cbf81235848f21b6a4b9 legacy-trunk +8150 a9ffdff0557f95ef659d3695f1fe37fdb3280555 legacy-trunk +8151 e5de707300e17f075473e97937619d1c0fcaf0ef legacy-trunk +8152 fd6acad7cc7a97a4dd41b56d797b4afc462eca75 legacy-trunk +8153 ef8a15902a487ac18c31c9c997214816a4acfb04 legacy-trunk +8154 6fda1e6e2616cb57b2a0a01c53186a173e04fa2a legacy-trunk +8155 64e61165589a79319ad896acf44c7a2932b44e46 legacy-trunk +8156 d5911ca8d4eb3af4cfc34f6d7c949035f462b122 legacy-trunk +8157 12d64cdbaaa23e2c3742a5509e32709360bc0a05 legacy-trunk +8158 d88cb4d26f13ed38259c9fd6b670ed9bf468b326 legacy-trunk +8159 ea72bfe395ba2161ee9a5d57033f6d64317da872 legacy-trunk +8160 cd1ae62ed2cffc3b8abe0affc482c53b34f2fde8 legacy-trunk +8161 a0831de2358c30e22824250dd4b03b052958bc77 legacy-trunk +8162 09d87ad75278987a9f55cb9e6b3a6ad05ea116cd legacy-trunk +8163 2077a32d858ef6525cf2d6033815b936e04fd243 legacy-trunk +8164 8b7face9b1a782a69991a40e9122df2e11b0ddb0 legacy-trunk +8165 e78d1e0ecc5987c23c475f3e6274c33059e46e11 legacy-trunk +8166 52c13f1389efad4899b1990ce0de4e26c0e743da legacy-trunk +8167 4e817b2ad9910bc96036f2955b626771a7a42c9c legacy-trunk +8168 38383ada388e9a02491f9f7e5a22eeeb4d869ace legacy-trunk +8169 4428f1084b6c67038eaf943e8c0a6da7869eee26 legacy-trunk +8170 a97fde2818fbe40f31d770b0cfb6b922c1a02800 legacy-trunk +8171 010909dfc33e2e06c2f6cd0b861643b50368a33d legacy-trunk +8172 02ea9d0214274761fedb298e343cc733c3e0bb15 legacy-trunk +8173 9b621ac092121c256cff345417a187e18c0e90fe legacy-trunk +8174 88b0b2a3aab56a5a9972ea025ffdba9ee7367f1f legacy-trunk +8175 ba860dc0a58514f169c80e12e74e2524deaae359 legacy-trunk +8176 76fd5281f98a7b8f838d389f89602a0546bd0f7f legacy-trunk +8177 60fca478379356f8d93dc4f2a1ce2251ebcde787 legacy-trunk +8178 3a1bb1c98c140e8b4824291f1c172de1f26d5326 legacy-trunk +8179 5766570381f24ae9793280ce514fe845115db5aa legacy-trunk +8180 03dd1ded5cb3e864e4fe300c5d707a9afbcbcc63 legacy-trunk +8181 c66236b7cc6ca4b4c2c4bab18aae1cd267e0fba1 legacy-trunk +8182 ba09b407a0bb93f64a55650d1acc987683ac9993 legacy-trunk +8183 f8bbd71fb819a5439bd721b9803b704f59272a12 legacy-trunk +8184 404ba017ad427b80022225e9059aca784f434031 legacy-trunk +8185 99cd39f6a52db130df282c1b72f92a9eab7fd0a4 legacy-trunk +8186 671832470aa113476ed540f2af1ae4e3858b5936 legacy-trunk +8187 f1da294772cf2b5fd9fe316ec8ecb7ef8bce74b5 legacy-trunk +8188 fb170ce8295129374d43c289b5c6eb71edba4a4c legacy-trunk +8189 433c9e7edb608907fbd93976d571e0ca8ecffba8 legacy-trunk +8190 ecee55baace30896f1b2eb1d3d37abac49f3c0d1 legacy-trunk +8191 dee0a58a9132226808a34da85ddeb41f136e0380 legacy-trunk +8192 37635eea3bcc8397de418a42af387acf8d83e1b1 legacy-trunk +8193 ce64a813921666055a930b52494b1111b4d53eaa legacy-trunk +8194 3c67436a28e61b00c5bd50643f358e48e72684f3 legacy-trunk +8195 55dff8169cf54c031a8d84611898ca338c29cd84 legacy-trunk +8196 3b38e8db5f21fdfecd64740e5872f6ed3dfd3999 legacy-trunk +8197 613bd237cd55c52114c9c605a4abf83df2a78e0b legacy-trunk +8198 138b176ec40f43c4c0a5cc447d6552268a76e908 legacy-trunk +8199 6c97368656089055d8bbf55a365d2d5efd2aaa1f legacy-trunk +8200 beee351f1f72aeff561edff866a9281fb9da617b legacy-trunk +8201 f9aea738d4351ed14018504f0618ee9c1a1756cf legacy-trunk +8202 9a3b115aa49190effdc0b7e9c9ebe3755db0bf68 legacy-trunk +8203 57a7ba1412e265ebb302174c40916e673f9902d2 legacy-trunk +8204 e0da3d89d4b65fbab5d7cb33ead0910811af0acd legacy-trunk +8205 04c28274c281812098040874fb3db29959f96c1a legacy-trunk +8206 617f203394e73f85eb305848b59c489b61a75556 legacy-trunk +8207 9960797445665d62bc89d5c264841730f632e134 legacy-trunk +8208 75762c67200caf771416ec4229c85bcd81d72c89 legacy-trunk +8209 f027dd0a85e4e5edcb0a1dd049d237e6b391a5df legacy-trunk +8210 8f6cc717d817c07bfa7c7364f6b60cf99adb7eb7 legacy-trunk +8211 a94b0a122c9869386d3bf5f888af66720b1af512 legacy-trunk +8212 634728d8bc98cebb57e50c91bbe017c2e3f9a0ed legacy-trunk +8213 4dca5329e8fc6dd356e7fa5815d2052b2f94ca3e legacy-trunk +8214 d0c6b49d71018e3745b0606ed1c4234fa850b799 legacy-trunk +8215 c29fc17d8e4fd49783b99e7b6efc13f1349dc3bd legacy-trunk +8216 71e11082d73235473f1582a5f12c694bb1e08ff8 legacy-trunk +8217 6a218fa8ba9b9874d0edce4bdccf87882aba8acb legacy-trunk +8218 13846379347da50e81d79a57e3b30f872b4d3ccd legacy-trunk +8219 827a2f3e64832aa007f2fbf0ff8e26f96a790e5b legacy-trunk +8220 c606dd61544ae07b19775c51d9e22f296da8bd49 legacy-trunk +8221 ea8a0b090908bd4d68af914aecbde2111783e084 legacy-trunk +8222 e22eea5d126d9b40888b643037f3ff3f44b20c68 legacy-trunk +8223 abe8634466b236c15f38b3346908b4e6948bc591 legacy-trunk +8224 49e0e072d9cab597c9ffaa8e7825b60c5d16605e legacy-trunk +8225 1c34a0ce7858573b2e30708bccf76a29d8b62e9e legacy-trunk +8226 20e639986fb9bb2d3adbfa71c180cb0d4fe81807 legacy-trunk +8227 5a7429ac90c83b1bb143e9c5b361138e7890c741 legacy-trunk +8228 87d658a128f91b5c682c16e2a650a7e904bb3d72 legacy-trunk +8229 fa6d013c942b0775a7bae2401f82fb9c3465cf83 legacy-trunk +8230 64bc782a42ec73159aeaf07b43d08c5c85a00555 legacy-trunk +8231 9ed26afeeaa52fcb1658ad0236e9406e592cc25b legacy-trunk +8232 18a639db048c7990ad75a4562250d74f5c57ce95 legacy-trunk +8233 4b42eea10a029e633fb8e367819c3d67a12c8cb9 legacy-trunk +8234 8c0f747f11419acfdadffb2416cfb636b410fe47 legacy-trunk +8235 bfe9ba74c19ed76ed78a3027ef2bf3cfcc669c68 legacy-trunk +8236 919386fb3e5043322757bab9035272651ef7742e legacy-trunk +8237 201c8d06e3b7867519fb37fd8176bbeed6092028 legacy-trunk +8238 a8e31d905d2c0fe976f02d35e3473293a5e409ba legacy-trunk +8239 79bb9997ce5faa0b786d463e83a1ed9e4fa90003 legacy-trunk +8240 fd4e9f293c77a8a84e4fb8432bf35636d6bfb4b3 legacy-trunk +8241 62fe800d171a780c0e05199d6d2cd9d95c313b81 legacy-trunk +8242 d6421b3ed1da65b48901a3601abb025976a3d776 legacy-trunk +8243 309aab4c0b98e57445ad977ebba7f2ffbeb40197 legacy-trunk +8244 03a57af722189cbfa7dfc9097ba6fd4fff393d2a legacy-trunk +8245 7de59f47e85b9cadf17799dedd141b08044f1525 legacy-trunk +8246 b7649491ae9246a4decf39561d3635d6f4020bd8 legacy-trunk +8247 38ef091964f022fa3eb95ee458f198311cc48de6 legacy-trunk +8248 fb8f079e4eff86f6595c8ddf73a8244cb1ab4402 legacy-trunk +8249 5f7ddb7ca347cf8f05e0b945e5ce6c5dc8c70011 legacy-trunk +8250 78319221edb2f28cdadd1bcd2f18d8e6f64bdb51 legacy-trunk +8251 3ef2563e83ee39090acd612b17b7f86227d816eb legacy-trunk +8252 c60beb5625e70165f978dad3c1b30098b2884acb legacy-trunk +8253 f6de0500557695aa718fdf0e73239d385e6c83e8 legacy-trunk +8254 b449cd85d51971993f0f0d0f7c366a740e119ccf legacy-trunk +8255 049d94ffc06a01267be2157fe3e294fc4bd11012 legacy-trunk +8256 3428487b29a385c962610a12a1fd8e07c43f01c0 legacy-trunk +8257 bb0acfd4b720afd7a051f0f484058b62e95ea55f legacy-trunk +8258 3b8d00403db85dc37733eaa73e0285730e3cb678 legacy-trunk +8259 b83ecf6f87300c1b477213c2bc93641624b365c7 legacy-trunk +8260 9cfbc9bb6423b08bb8af45bbf1dc8ee6cb816501 legacy-trunk +8261 c043901fa1febcbfa24cc7d03d56bee99ddcfa8f legacy-trunk +8262 b247297be9a025ec64b55026c81123e10a359ae7 legacy-trunk +8263 c569873eeb15d82f1beb4877fd8c77286396cfa3 legacy-trunk +8264 b420b64a40967bf755f7304d085e8e269bdd374b legacy-trunk +8265 31cae374f786567731cfbadff7079e9e35dd5ea5 legacy-trunk +8266 88e6ae105ab5810ef8c291788c6f0c9f270b47a4 legacy-trunk +8267 1d417e9c72cfac7b63c6e9bdad12a03a19dbf6a2 legacy-trunk +8268 2b7372ecd5072b0a4bb1af5bcccb2b050c0c08fc legacy-trunk +8269 dffabc620e4e46d018db5d36b70827b1d6a5589f legacy-trunk +8270 4ce7827a36217b648f714423a9f04b85740a16b6 legacy-trunk +8271 d79c4fbb1982a1e3362d9358fbce738ab05b14a5 legacy-trunk +8272 3d1d8055087fb783d3b8b86350d95fc0b6908008 legacy-trunk +8273 73cf58261b8234813332fd0f941a34d3995846fc legacy-trunk +8274 d689d2c4f8420b019595cf5c3291c3d3a5482d12 legacy-trunk +8275 24a8c56de21444ebf2aed94cf78f1406d80b2b98 legacy-trunk +8276 e862d9b00246abd7c6c449084b1ad1fc3346a474 legacy-trunk +8277 7e8ed9650fcc118c73780ce24877868ed43b240a legacy-trunk +8278 fe3e7a05583436901ab105468fbcff9449ba3261 legacy-trunk +8279 e42391d676d12d06eb924bee712b84b00de62903 legacy-trunk +8280 b56d527a433f5a505792855c09cda6d7f88e4a23 legacy-trunk +8281 b7c600ecc27d4200e31ad8bb9dfac30af4bcde5e legacy-trunk +8282 518d4f0c8fcc49802760182a903a4a873ccef9cc legacy-trunk +8283 5a9f3c20733669f5c0b4ae9e47fc208b90ee23ed legacy-trunk +8284 50803ca58b1f91e25c9c72a68c2760a4f2c7e577 legacy-trunk +8285 dffd22146aab8cccf8a36c149d6b307d8b686317 legacy-trunk +8286 5120ea86b25d6d11aeec854c648816c6655ec2f1 legacy-trunk +8287 6d40ebd9222793022099b92f01407f4358dfcf2b legacy-trunk +8288 58aeb872d9150d0021853e94cc2b8186585033d2 legacy-trunk +8289 f53d363ef67a9ea28b399d5c62292b29ee1f1324 legacy-trunk +8290 d320ca843512224027b733c2718d05225a25abd1 legacy-trunk +8291 55ea56ee20f6bd56643712d7a80402f8cc4a22a1 legacy-trunk +8292 d8a4f0d9221f075b1601f5313a31f4fadd256834 legacy-trunk +8293 6a0d7cf19d38fac57b9b94b6797821c197688a10 legacy-trunk +8294 48b94de85bf35f2442ea548a7b4e3545fd686ac7 legacy-trunk +8295 3468ea8645ca4238c2b45024351e5e0fae5d1bc4 legacy-trunk +8296 0ae8c7d33464ee0c7a3c30b18914779d05123538 legacy-trunk +8297 91dd9d74f3b3cb06ae0b1760c713f1ec08fa8292 legacy-trunk +8298 78321a84d73e5cd37d175f995df26aa7c68d148e legacy-trunk +8299 d3f2df8c2286c05eb851dac30d9dc36d10aa7478 legacy-trunk +8300 ad04d387aceeee81ceec26c29e0098defe69871f legacy-trunk +8301 3c15ae0fb6ad7855b04064bebc7ef7b89fb5aaca legacy-trunk +8302 0c33612f11d6b16278f39b5ab28aaae0521ba79a legacy-trunk +8303 0965d9fd1862dd2337ef84fcaae95a652589698d legacy-trunk +8304 a79d0cef10a19fdd04ddc96736fb4c8929bb9fc8 legacy-trunk +8305 9fa2bd8a2b78a526d8029b5504c221c544bbfdea legacy-trunk +8306 f1127d6fcd7424542053110eb24b31a112210a2c legacy-trunk +8307 226bca85846f418f9599312e64b3e7b4b6a22e53 legacy-trunk +8308 985b7bf4755b6cfe91a41292fa1f3ca05f380ef2 legacy-trunk +8309 285fb6a99e5f85f577bd11af6520862365158dc7 legacy-trunk +8310 86c279a848eb2d50161394d137e17a635aade265 legacy-trunk +8311 91aea1af654ff158f11089ef1ab246710223a51a legacy-trunk +8312 b9063f6f811cbfb98e484f90d55d34333a92bb5d legacy-trunk +8313 3a798677506cf067586fb91ecedc00c7bb8ed55d legacy-trunk +8314 2e917f9372e03a54d70887a71f71437a92759268 legacy-trunk +8315 ed5db0c2a3f34417196c128e0a233eafbbc61be4 legacy-trunk +8316 1786cc419886ea66a16c3c40f3e6f762303cec16 legacy-trunk +8317 9f8ff02ede6deeb5d6770641f88e86fcb92a89a1 legacy-trunk +8318 e16994f3d102ac6afd970cd280f474c4594c6f5c legacy-trunk +8319 35b14d78c61d9432d75530d12dd49304c7060a4c legacy-trunk +8320 5a8a5a1a04757f60db6b0bb60b56969a75c31bd9 legacy-trunk +8321 5961f12ae426586a00a6874e5fe7da5b018019ce legacy-trunk +8322 6e99686b76da0ce2f5d8f0debc72f5aceaf3e639 legacy-trunk +8323 852a1fa62a7c4f6e1fd5158d0336c13767532f3b legacy-trunk +8324 ff9c0110079b7e4621040e14567d67c4e4c4d6ba legacy-trunk +8325 f64a5f7506966039811575a10e96a3554fb6504d legacy-trunk +8326 0d7851b37ad2d130b971160fd22798d2389cb72c legacy-trunk +8327 6f67a1bda15a218b1eb50627c2be463abc9b804f legacy-trunk +8328 edaf1cb63dc0c89f32f5ef108b30f3c14344242a legacy-trunk +8329 4a4778e61c14eb19b479b73ae2d9845a424ec7a0 legacy-trunk +8330 92bcf4cc942119ae9c7a72ec99c9a9d87dfbcd05 legacy-trunk +8331 358d70882af629a707ced413da4dfe3156d563ad legacy-trunk +8332 fdd8cea181c0994cf867eead46c085afdc490fb6 legacy-trunk +8333 c4dd3329fd7d044ad60a5eb94fb16a729687b74f legacy-trunk +8334 a667d48e68b85697222fc8559c4a78b6d6cc4f2c legacy-trunk +8335 f5f7c739568760eba51ddfb30840e6da2156139a legacy-trunk +8336 64f9ce999437bd9282c389733dfdebf9f1b018de legacy-trunk +8337 728a083242a2a6e708ea2bd64f95854719577d02 legacy-trunk +8338 323f6a16a7642cf162b049ef1bba55f2d62ddb06 legacy-trunk +8339 4dbb4ec44d150e6229ac8cf7ed3e34d111c9d872 legacy-trunk +8340 0ac2c747053fdb74f88b4a4816401e540a763279 legacy-trunk +8341 87517e8ea5191b5bd27001f9ad9e1585270402cd legacy-trunk +8342 9841bce37c4d639b95749d7d7a69866d1f4fc92b legacy-trunk +8343 f1c03276873a60b45212d755c94957eb58f3a4df legacy-trunk +8344 97837e64c58c52c297df2e9eb347bfbd6d64ff36 legacy-trunk +8345 e742e41a4b11befc67d089c088758ffaa4b6f763 legacy-trunk +8346 f2bf7bcf8b8b67ecd18689b2847b7078c936e1d3 legacy-trunk +8347 fe4f1eb14d53f0b4f069ffa64d22383dde397835 legacy-trunk +8348 ed91cb7d38761928bbc6dcedc22abafd0491dd85 legacy-trunk +8349 dd0e9b64661685528a9c27eddd58a60a27080ace legacy-trunk +8350 c8a8cf95811c38cf27643cc75352f6769bccd9fb legacy-trunk +8351 c67ad5bcd4b2023e3f081e201720998ee22b14cb legacy-trunk +8352 d240851cc8c5775fb528f29008c89706e3c72274 legacy-trunk +8353 a2d3c2a62a30a318b147148b54bc0e7bfc3664a4 legacy-trunk +8354 0534e54e81062c805693e5cadd7308ef44ed8e70 legacy-trunk +8355 68f7312a31f629ad9907737a7030bc8877be390a legacy-trunk +8356 a775a44124d8b0c2a58a0d2a0f616d2ba39b8bfa legacy-trunk +8357 530ddb707695e7fc173d074f05202fd8376ed3f3 legacy-trunk +8358 a101a17b8b7b8c7cb6188a362729e49f8b2e0bd4 legacy-trunk +8359 d6513da9249d397d04c772a86a3c70324f39e8a2 legacy-trunk +8360 79d1931f17229eecf7d83933664af459d74e01ca legacy-trunk +8361 b571b6ee7f17e378d162b2b3dbeb4a4ef11288c3 legacy-trunk +8362 76b1da21f3a8981d02b2f5ed1cf06a30bb5628b6 legacy-trunk +8363 4c52a1b6a54d62a633e580bbf5b0101052c89f54 legacy-trunk +8364 2a172b4950b6a6c022917b18736550f3d658a262 legacy-trunk +8365 0cd74f9189c6a7c9fd1407f75edb20e398a9fc0b legacy-trunk +8366 cdd125de75bf6f62021bb8b6a1247f1b12bfa5cd legacy-trunk +8367 f3342b381935a46499b60e771b544f65958d4290 legacy-trunk +8368 c4d547c01e934ed85d52f057ffe61c5cd4983848 legacy-trunk +8369 b96ccc7812f2f083ba8c3b263933736e6a8c23db legacy-trunk +8370 c579b9f98a5a715605268911bc10bc0568de5c31 legacy-trunk +8371 e2df95b7be789a24efcc0f87e23026404cbaebeb legacy-trunk +8372 46cd352c76389fd2292c4cf0b9e26f4a342e7805 legacy-trunk +8373 67022d28a65d2dfe8a9fa22c73e2c046848415a1 legacy-trunk +8374 7d35a0580356ebdcd60eb43fe5b0548ac721efbf legacy-trunk +8375 253377a406448475599ce0270a8dc500927c0bdb legacy-trunk +8376 f82b608afb568df6b0486b74424a0991292d7312 legacy-trunk +8377 466664ad38e4cef191f84a1c2c738c1ef485019f legacy-trunk +8378 ba49a6ef7214f7f04a1435c57274bc2da176bfa0 legacy-trunk +8379 4102f44720329b06d23aefafb537800c4e430c11 legacy-trunk +8380 b6e48a4cdd1e68b2982e6a1a2216b90c547af7b8 legacy-trunk +8381 c50cc28af7c79f904f4cfa1e2df0c719610a7b92 legacy-trunk +8382 c2423843a26f715ec24b7fc40786d43ae4baf680 legacy-trunk +8383 f344609a48e4ea96d340cc7a75b9c78cf1267bce legacy-trunk +8384 af92cffd063f53c09940abd441ee5b425d3c1e2a legacy-trunk +8385 4dd9ea1e94a8801c95ecd84e677c5158cabd2c38 legacy-trunk +8386 f8259ca9eed37c99e3a6a1e26ddd5025839ad0a7 legacy-trunk +8387 89771a46ca354d517b6bb2639db73da2479cb40c legacy-trunk +8388 6986781a07ef0dc14380f1ad06dbad03a67e545d legacy-trunk +8389 f527c12f2e5528e5af4cb350dd64dd0698e8fe96 legacy-trunk +8390 6b39f8633ca547a1d87247477af4eb62333eb0eb legacy-trunk +8391 5155b2c35e159f59dd175134bd042382a81c2e35 legacy-trunk +8392 db9cfb108623c25ade51887141cecc3a6a8f4b60 legacy-trunk +8393 d2c80380ad0de7423dc6fe5d41dbc79d6f5a3d31 legacy-trunk +8394 04a1b82c832b1a7e17f93e31a9ab5566bea84de7 legacy-trunk +8395 780b68df4560774f5b8ff566bdad2525bb82442d legacy-trunk +8396 5da18e002b1a8fe85ba5a9558c1c18f84a8cb74f legacy-trunk +8397 5fb30413b93b219f8015930dc2dec6929615b009 legacy-trunk +8398 800a5217e67e7869bdae5d5e1156dbe8d9c60108 legacy-trunk +8399 44ddc711ee2dc8c12d4a75a8d2dca5f44dcc0a11 legacy-trunk +8400 3e158e69ac5d91c1ca34ad00d00c3aef42a7f1cb legacy-trunk +8401 08b1e9d847e6b59959a2dfc9ceb6c1cbeab21273 legacy-trunk +8402 93304b2e14cb36879cf6314badfe474e1af0fff2 legacy-trunk +8403 8d2194e22e6739cd966254a4fe82a0ba649a6621 legacy-trunk +8404 63bc9289ab28293985d04ad62396d91feb8daabe legacy-trunk +8405 ca245c36c6f6f848286329148be9f4b00aa40f54 legacy-trunk +8406 b3c913746900e161caa3746b1a8de4bb71811a25 legacy-trunk +8407 e2cce4adf2a7029ebe80d7d972ef407dba0dad3f legacy-trunk +8408 12fe5cc1516d082d0d27a6c81bc037ddc2d5710b legacy-trunk +8409 40cfc905c77696ac8b1e12c6eec83aa3a3698008 legacy-trunk +8410 b210d205981216dedd45d3a8a31f21913ce815b3 legacy-trunk +8411 0369d63b100b1f4bb8076db91df190d896275d97 legacy-trunk +8412 d77d3b8e86b25a89207a7d24ed33a0e5f674257a legacy-trunk +8413 80d24364b9325eb626a1c4e368b50a0d07e7747f legacy-trunk +8414 5a4d181ffffdf5730cbb2a28317c3813a94e309a legacy-trunk +8415 222faeb43d020c946ac78cd9d759ea6aaec373b9 legacy-trunk +8416 2c65bb6ab87cd9bb69f3e3e49c623b4e236225c7 legacy-trunk +8417 eef76b3cd9aef3c22722d7fb30d8305c44820363 legacy-trunk +8418 f7fc88fcffa246b3b246316cd426d34b036f1ce9 legacy-trunk +8419 c11928d2597bddc6d2312ff1565c6d504737b72d legacy-trunk +8420 ac877c4768e1cabf9a241400965553ab0afbc9cd legacy-trunk +8421 1bd68e4464ce2fc541e92c7e5ce3bd00016a9913 legacy-trunk +8422 75b3aabcb7c100919768c49c82438b28b25afed5 legacy-trunk +8423 9a56452c7e8e92313f79d845791e609fb4f8c890 legacy-trunk +8424 7ca6a912d455b9bb2f26577309acf4ffb72a3f02 legacy-trunk +8425 6c060bc3bf3d9b580a3bd897acf4fd10e999997b legacy-trunk +8426 0b4a9dd09e0db0cdd9f6e2ad03e0f2c658abd642 legacy-trunk +8427 3fbcda7416965a4420709eac689442a8be4070b5 legacy-trunk +8428 8d7dc66968cbc6ec4ea3db3c349c458e3ff04f0f legacy-trunk +8429 b2e018fb2ba915c207d87dbb2a0b7e5f4fe78bec legacy-trunk +8430 1a99695a41ccf6914684cbcb079d4436b68f8c60 legacy-trunk +8431 d3835a6a18c95785c8d1b100263f9fc89b4dfb70 legacy-trunk +8432 1f2dfca522072d139c88626f688c245d21d55ac9 legacy-trunk +8433 3d6f3f0ae0050656142b19719a8defe5a863257c legacy-trunk +8434 24ec4624ea9e30992b9daf79d480e7a1fe7e1b38 legacy-trunk +8435 834461a8ca76714608dda33fbc4c2985d699f7cf legacy-trunk +8436 1a4fb6f12ffd54b123d23de9802a0527484dcaad legacy-trunk +8437 76bb40a1eb045323898d6b00a1220e8cebfeea4c legacy-trunk +8438 35e5acc6532c7e54a69d70be2555dcb43a74699a legacy-trunk +8439 23e014839ab057d159777723fc90f25e802e1d66 legacy-trunk +8440 83de5539f8e43220ad9df706dd8380569cba2197 legacy-trunk +8441 43054021bb57510617a88dfdf138ceea27b515f9 legacy-trunk +8442 8ae83b9c34a0245087cf2d716199d732d5688bea legacy-trunk +8443 96a97b2b723e9f53e04f0b3f9f8c4326a88b6a03 legacy-trunk +8444 9e4ddb459b10d3b0cf94b245a67e3475380fbfdb legacy-trunk +8445 b7048f5be9a18d39aac4af9a571e340389a71668 legacy-trunk +8446 5f6a2eadab97835f26e6b95316508495799692fe legacy-trunk +8447 701d854d1930bb6a1a24f273fe9ddf1eab73dd95 legacy-trunk +8448 3f2bfc15989dcae75617179cdbbf55d69240e276 legacy-trunk +8449 8abb4d8c313449da992a345c6a5aea65d0b0d6c0 legacy-trunk +8450 e77847e1158e213884d4fc35843616e2627aa485 legacy-trunk +8451 7a0880f8b8ec08ea125213168dc692fa664f38f7 legacy-trunk +8452 8bba9bb864ae238c4af93a775e4798feebc72db0 legacy-trunk +8453 5b2c595428fa91f991936acb71932b87baecb3c7 legacy-trunk +8454 b770796519f603fea5e78d3f69e590f7250ab6fe legacy-trunk +8455 781eb49d2d66fd0a0642d82f4a7bd1a81d3e9a54 legacy-trunk +8456 422960523286521529cb68a7340f6f98f5d72ca1 legacy-trunk +8457 2894bb49e2eee68994d17dc6f40bd10cd52273e5 legacy-trunk +8458 170c46a650220e62b6f9632a88ac56de8cda085c legacy-trunk +8459 6aebd970b7a99e84cfa5f47d907a7a26b85f7d10 legacy-trunk +8460 33385f94ca8ac42a127476e1dad0c48584f1cded legacy-trunk +8461 b4bbba3af4e8c8a2e765d5930a58a105ca067efd legacy-trunk +8462 03a8833b4b73d9995d51cbc65e8ba646fd52cd04 legacy-trunk +8463 32127593c134d1a1e3d236a5ee5721ee744a6417 legacy-trunk +8464 0a2c331200f5ff0827bf08993ba1aa5941311c6d legacy-trunk +8465 5993a099d9b036630edf0a7bb4ed0c76d28648bd legacy-trunk +8466 5b90da8a9dcc176846af16aa0167d1a9fb18fb72 legacy-trunk +8467 503500652bac48ff402de2bb0ca7ca75a664017b legacy-trunk +8468 a5737dd96979009ebf991b9cc964a5edc706d2c3 legacy-trunk +8469 6e5d4ec03791c96cc79d95bfd081f64f363fe35b legacy-trunk +8470 2db3b7361853c5561fea33af155194b27d8a9a84 legacy-trunk +8471 3bac52352c0bc7a6dc1eae6352712dcbc0ca484a legacy-trunk +8472 b8b6a88f7f442df40b4706c0648d6ab5f8f7a127 legacy-trunk +8473 9e7d5982ab3de96e9a45dcc859651bd2d8878343 legacy-trunk +8474 fcea57c346a59b61e3f37364e9d535dc5ca239cd legacy-trunk +8475 c24b54c1957142d1d3af60ddcdc044dd6e2c78b2 legacy-trunk +8476 f2d134bf6973ba26549dc4291d39587ee6c804b8 legacy-trunk +8477 d520d5d01115b702bcfcca1a0eb7a556501d06af legacy-trunk +8478 8056169ec448e233d0b453bc2fee9728a3db5f55 legacy-trunk +8479 d439c32ce9637ffca62b639c7278989379b8edf6 legacy-trunk +8480 508921950f2c40b2c0c6f9d306be1b0b8dc9b3de legacy-trunk +8481 3f59b34eb90f96a31168ac1e802bf48881c8750b legacy-trunk +8482 0cda9f247d7acb9b2f24e2dcf2850872bcd74e8e legacy-trunk +8483 7361f2f186ada005db3914670ea0d095ea444b07 legacy-trunk +8484 9ba72fc4f50364c72340760952aaecf2b74cc605 legacy-trunk +8485 5dc267cf48952cc1bea2ba1dd35720955cafdfc8 legacy-trunk +8486 887408eeae9939b51951afe1c5cfb5dad2d7635b legacy-trunk +8487 871f135dd6129b372a0f1223d24c9f01888d9425 legacy-trunk +8488 cc577001f7eceed3f3bc70b23728038ff8c3be8a legacy-trunk +8489 d02ac61cd50f1fae5765188108ce34299425037c legacy-trunk +8490 0b5a23ea75156f273e4afb2f382d40f8a968989d legacy-trunk +8491 2f36e0bb37c378a9cfc40ef262e9644f99bfcd5d legacy-trunk +8492 18ad1106f651ab8fcffd5e48d648952f79dc3320 legacy-trunk +8493 dff2024ab021fe2886f1aa044e32fc5de4e08e46 legacy-trunk +8494 50a41863c34a60127992377c853480a55e8ff14b legacy-trunk +8495 f0554674340610465c7d9c8b4930e0f005d42209 legacy-trunk +8496 a2f98d7caded1dd22d58ed314c61031e16cd24fc legacy-trunk +8497 59c349a14a3ade37d57ee9c55dc493c8811095ff legacy-trunk +8498 601c4eca3de341e77c2b2377d7d562017f31536b legacy-trunk +8499 802470c7a50f0484f912572edd13a262c19eb522 legacy-trunk +8500 6a25d8110b009452a6b00069ac49b94b29e88d0f legacy-trunk +8501 d5f8741a812cf555073216c7c465add643e91097 legacy-trunk +8502 0ad15f30c8d4108cb6118cf9b861a820d8ab157f legacy-trunk +8503 b5804154af4df12d2ce62c6508a7e686db62ab44 legacy-trunk +8504 494e550cb18d15c2ce10d0dee94d424d4f4041d0 legacy-trunk +8505 292193170da159fcffaa1389b774ecacd3a62ec0 legacy-trunk +8506 68f2d7704180a72b4d12788e00ca05d74d4c45fd legacy-trunk +8507 bf803dfd4428f2761560eeb06c80de8e01f55638 legacy-trunk +8508 6c449dff2fb89cf054fd8af68ebf120d03cd0681 legacy-trunk +8509 9a57ca229681b682cf3ac58b7220dd88e8c8ba33 legacy-trunk +8510 ac7554f2931369e35bf995a93bb28507fefb8aa3 legacy-trunk +8511 1cf79ea8ffa2a58a90d8d106295176282cddeec7 legacy-trunk +8512 614118a1348c9421b7b3ff2f1ce4d04886619ea9 legacy-trunk +8513 be1b78e707287283d35f22c703de221172d358b9 legacy-trunk +8514 4c2292e709b2d27d537f7ccaf6b6031585ccf6ba legacy-trunk +8515 47adf18d01add7863e06bd332b35c127d39ef98e legacy-trunk +8516 619232236ddb8a586f330450c04f75ab9fe3a8da legacy-trunk +8517 1a43699108a63756560b4b327668d2d2c873c9e2 legacy-trunk +8518 a9e1ea80ea3f4aa59f53f32572527eddf8ef9422 legacy-trunk +8519 6db3d52d4a78af07efa232c75b3a3221ebdeca45 legacy-trunk +8520 c079e924c92718961b3b9fe25d5aa0f815c4ef72 legacy-trunk +8521 0b9ec1b34a7a40880cd29c2b47ecc13aa2b41cb0 legacy-trunk +8522 6eb1e3549e2dbba626ed3e5f258cc5a90214dd24 legacy-trunk +8523 8ba46b0778dad28872c9300780e34fe52f168a99 legacy-trunk +8524 96fecc80a28f7c9f1502494dc31904906cbcff6c legacy-trunk +8525 e936631176b61d6d1997294960504f2fa5525829 legacy-trunk +8526 4f12c21f8747968bc407d221cc652e8edfb564f4 legacy-trunk +8527 60731b19fe34d57e93f23490de320a7c14f570f1 legacy-trunk +8528 6b0afbbfe0b7819dd3872a65eb21856158f4cd2e legacy-trunk +8529 1da122718598e7501336cebd50ed09d92b02123e legacy-trunk +8530 da3c7d47f210a6e5d5a010bc2f2465d2d91434e7 legacy-trunk +8531 cab9ea5e4eed37d7111f25677dfe053b90325be1 legacy-trunk +8532 72d004971b26797e00759d02df44509cbc666753 legacy-trunk +8533 8ec02127c44bb4359e71112c0bb48663aab3eb94 legacy-trunk +8534 566d0cae91915ab122bdd15ed70fb9b656648562 legacy-trunk +8535 877dbba3b5a80402c5659c1efbab12de927316ee legacy-trunk +8536 38784b853d231d2afeee6876fd6fd3237e35076a legacy-trunk +8537 11429968e29d22ee4a4a48015b8bf7c0dbee6dc4 legacy-trunk +8538 36df4434b3b303a14f586a350850708316707967 legacy-trunk +8539 74a78666ddc8afbd30f302c7cec413f592e1b03c legacy-trunk +8540 a5d503eca7478dd48e5f4f3ae5de7b82e98ab10b legacy-trunk +8541 e88d2e322c5ebe82cbcec0fd27bf9ccb980f7e45 legacy-trunk +8542 0f4193bd08d0bcbaed625274b18b6404b0942af2 legacy-trunk +8543 e4cd092f43d66aaa865fedb207296bcc844aa8c9 legacy-trunk +8544 3d3fa877387aed3164dc22e938f2da379316dc33 legacy-trunk +8545 925f90b48d73724537d0775dd021950ac0c0e74b legacy-trunk +8546 e0f249993a4f7f59c926181998a8136aa03aef00 legacy-trunk +8547 643fa54f2124581d5a63f38e39b4e271688c5ba6 legacy-trunk +8548 d91cc0a57daa3a432d76d9ddf1d3f8f9f3d0d2b4 legacy-trunk +8549 c7b5a722d926494e66e1ca24b7c9f31d46b01d47 legacy-trunk +8550 ecc9490ec71927838b297811f08a75b22928bc84 legacy-trunk +8551 5e5e54a6dba6fab92a8eda145b0e7fe96eb6ad82 legacy-trunk +8552 bf3f487fcd8b57f9909eaa27eaea20e378afb50f legacy-trunk +8553 6540eb17e5b6457b5ca5f98de13972ba69cb1937 legacy-trunk +8554 8814ccf2d1cdb658285464aab5b2355c0a10d2bb legacy-trunk +8554 dc5c968ec992aab3d40a7189df0c443d1c7a1a68 legacy-trunk +8556 2f1a5cad27b7a2301bc0884add23655458625250 legacy-trunk +8557 d3c6035ac3cbcab75fbff3e93abecf653b1cec6f legacy-trunk +8558 0eb14a6484f3f8f7d2f3a84e75ab4fd312c461c1 legacy-trunk +8559 d7ca0554795eef3fb41fbf197d1c0d08e8cca0ed legacy-trunk +8560 f159044530b1827046726fb36026ed710bc1f9ff legacy-trunk +8561 0aa62cbed9f82e91729d399389b58b1e71b9bcd0 legacy-trunk +8562 f9f0262c4c576e7b7d50bbe44e38c1fddcbb69b8 legacy-trunk +8563 d89a219b49a7213c1b2c850d5eaf1d7e92526547 legacy-trunk +8564 622c8d981a6955fa61cb052fb5db2425c20a2292 legacy-trunk +8565 b044c479cbc8305183e53fa3d2b61e769024ba27 legacy-trunk +8566 edaee537802133b6be0209ed4d0ce05579121cf9 legacy-trunk +8567 f13049ed31fdb934317aed5c221d66e99af72771 legacy-trunk +8568 dc916d8bbb55d882405fd8bf32aaecd8946658f1 legacy-trunk +8569 2949c0a40b7bd08cadc8aad6145ce7bc2e863e90 legacy-trunk +8570 d1093f3421b6f5280beb22c7df8dabc9c7cc4a26 legacy-trunk +8571 a22fca7a5c5a7d12707ff8ae1def70c54301f262 legacy-trunk +8572 2742264efddedd5d9592ffc807943307e0827557 legacy-trunk +8573 44b8cfbda4412403226fbdb38e2341177a9abb1b legacy-trunk +8574 d137e624ce42b2391afb9a4c3053f3c2caf12e69 legacy-trunk +8575 179bfd0fee24a27388d5e5999509a757c500c60c legacy-trunk +8576 8f7f477007b388652c567c285186e4c4c3859267 legacy-trunk +8577 8bb128215dc58c1e89f8fcd0d650a74290918981 legacy-trunk +8578 a64d14c4914f215e5018216ae831cbfbc193ea09 legacy-trunk +8579 4d8ebf7affab4bdadb70abed5e66eb85ac1bf41e legacy-trunk +8580 3bb8970fb91830a59013c704b5a67237571f91b8 legacy-trunk +8581 f3c0c17b9708bf82c9da0adb8838a9662eae2f94 legacy-trunk +8582 77fb880eca491fe13594e6da4ef64ad809292bb1 legacy-trunk +8583 36b3b337c56638421cfa3bdc955dea7f0f37c05a legacy-trunk +8584 7bd565e4fbb5aa045570c7a5c67ed975a0fda82c legacy-trunk +8585 1676f5795180bcb76f4aea1f44818de1df2d653b legacy-trunk +8586 8cb2afd10119500eb0e0b3386e9a3b11ff3a45af legacy-trunk +8587 260b21769061aa906a1cc2a52ff34fa931e2e3b1 legacy-trunk +8588 973ef35ef482568f39562c3115f69a6acd71f9e8 legacy-trunk +8589 5d1f337cee269f911ac6fe26a7b9f67a6bc29d55 legacy-trunk +8590 d91fd7cd8be7b2f6bd426e1504866b963260d3b1 legacy-trunk +8591 737ed6652898e9416c80899c32930c7ea0b9b8c5 legacy-trunk +8592 65c9ba8000302c2f46a5ab80a59d1ff72d38e243 legacy-trunk +8593 07b7d4320b14adaa52ba849fe79206300d0652bf legacy-trunk +8594 98a282cfb013e782287ac3421b19ea0e19de693f legacy-trunk +8595 d13d3c2c9860a9342f120e38336f4bd804bdf395 legacy-trunk +8596 c20b6980a870fcd61c8fe705ebece80e9c401d02 legacy-trunk +8597 df29e83c304faa4ed2b483a215bc591229534e85 legacy-trunk +8598 df028bc54e6f32a5f0f8c0a17ab5be40c2cf2433 legacy-trunk +8599 db8ac6e109b4dc0b928d06a9cced7bd75387e6bc legacy-trunk +8600 748fb5a009a7c0c3016a85cb3d1935faf1bf33b8 legacy-trunk +8601 cc2c84769636a4259f7fe905ea09ce79df62e8bc legacy-trunk +8602 d4e87aa7bff056791526f3efb4f4d604bc1a1540 legacy-trunk +8603 b44934c20125efd8a3222c70a3a8c364e0364c37 legacy-trunk +8604 4254095a5029801c0f926347f052294bdf56cc44 legacy-trunk +8605 060f83932e91a6f5823e82016c8dfa2b8ef36fa5 legacy-trunk +8606 5dc078b213e582d71ea81cd0c006c4dfc33af2c3 legacy-trunk +8607 2d9582eee112e6e8cadfd64f1c24e493d13e860d legacy-trunk +8608 8542b890398995f9c0329ac278b7182709144a4c legacy-trunk +8609 94605b0026e7f6bf3772a7c051e8a626669b3365 legacy-trunk +8610 b4a0be5c42bf759b5c2f0f289b2181b943f78e3b legacy-trunk +8611 55283f681a1c2101d19e7f370e1cf3969612cfba legacy-trunk +8612 32f65741743bd7ac6bd188366862a3faf0d4b01b legacy-trunk +8613 57045f51dd12b04d2586557f928a22f12c0db462 legacy-trunk +8614 40abf23e168bfc3bacd1d593bf6f61aadb35329c legacy-trunk +8615 f80e763c1717de7911082e25081b52493133e10e legacy-trunk +8616 a287c5014e66a8188bae29101e26ca1f6be801fd legacy-trunk +8617 3c9512401f6d6b76f9b109b3e6ccafa2ac7ad432 legacy-trunk +8618 9f616a49219661910079f5cf33d2482c56f45df8 legacy-trunk +8619 144db635b49d33e99b6fd1e5b737745cd1757ae2 legacy-trunk +8620 c2334d97ce14ca41695e7a9936b6670f0457e80f legacy-trunk +8621 14182024011109dce5e357b4889af51361698cb5 legacy-trunk +8622 341fcb7bad903ba290e8b2ba09ef47a16c45af8c legacy-trunk +8623 a2a1df0ca808f6233492322a377153b8e7aac35c legacy-trunk +8624 b76a44163e0f603b6dc4c8aeee2a6acec39818c1 legacy-trunk +8625 4584f08930ac91b403797498c3fe5ca98d4fa19a legacy-trunk +8626 bb01113087ebc50a37158c07ce6a99b385dae4fe legacy-trunk +8627 9a78ce1db8f68ef1989a4c0e4b74a07ad978e4be legacy-trunk +8628 9fd60e640ae5d097710ae341f5c4b395f6da173a legacy-trunk +8629 d7cbd2651e559bbdfb72f984f8a606ac5bdd0b8f legacy-trunk +8630 17a26f986007884231775b819ad4e33b17318d18 legacy-trunk +8631 2ee9811c92fd4b2ecea6620c9eaf727b377bb8c6 legacy-trunk +8632 47867006f076ae85576ad2d8329cb06809f67bca legacy-trunk +8633 1a2bfa9a03f742f86498d9ec207aaca2a0c6456f legacy-trunk +8634 647e60fb3bac3f7c04b310f6430ab3703670fa21 legacy-trunk +8635 2e0aa8d813964bb6badd9a80d313ac9540ef41ca legacy-trunk +8636 2b03a1dfdbd3fe6c84531f0e1f498a97524cb145 legacy-trunk +8637 79592761b331a063f3a58ac25da5aff56367eb81 legacy-trunk +8638 d3d5a25f3b705ca2563e1aa8e1c78c4bb21349dc legacy-trunk +8639 9183a3c6b85fca362bcd85ba4fce53ab54fc6064 legacy-trunk +8640 119d184bb5ed890e8177247fc4ef6a6996b869b9 legacy-trunk +8641 3ec5ca8af91d1c6358e5aee356fdb38f50fef667 legacy-trunk +8642 29ddf104984274aff2b59c32c8e4d42059ad55f7 legacy-trunk +8643 a18e1cebd29fc8cff483d0057ffed08858905b37 legacy-trunk +8644 9e432468f75605d6b0445fbaa92fe0e7acac6790 legacy-trunk +8645 2514e9fe29f6d739a3f14f58b847bbccb82dd7b2 legacy-trunk +8646 433d3e1c02f7d069facf334037bcb395c8d792d7 legacy-trunk +8647 3e6d688b0d2a272bf251a2ca23a2c63fe55ee023 legacy-trunk +8648 9a3e6f0d6b5a9775240f3c2cab50ec218ba09259 legacy-trunk +8649 2f60834eeaf5d63a96ca9c840d77cb7199dae0d0 legacy-trunk +8650 253e11b61106d8ededd3fb159ad844c06651a747 legacy-trunk +8651 77135da9f36cdceaa0c8bd9cbd25a3ee19a6cd9f legacy-trunk +8652 19fe880ca919fa75553d6c777253731a6ec9abbd legacy-trunk +8653 18f824e5b9eae9bb5169aae5a45b7901682f117b legacy-trunk +8654 aace502b8e8b13449bfac09bb48564076645488a legacy-trunk +8655 b55b217f2e0d79c3f38426d6b341c6de4d6c878d legacy-trunk +8656 6cb66f0ca8d5408f4aa88fcc2fb654988e0b5e5a legacy-trunk +8657 2ff76e9bc85d7fd248888175e11b6f1b58af9e2c legacy-trunk +8658 ef9a2953f933439eea44d1331a107c07f5476397 legacy-trunk +8659 43b8c4a696d114cd0d1c3e5b1997089bb7325084 legacy-trunk +8660 64e194c5f854d07524b03c64ac0721662dd47eda legacy-trunk +8661 11249d43984049c062122e407408f6e0e16796c8 legacy-trunk +8662 32aacd753f343aa38bd88eaaf639c708387057eb legacy-trunk +8663 2e755d1ff661f150a881de2c825e210fc03fbfa9 legacy-trunk +8664 3eaba251a32998a852adab0f49f4e50e248dac85 legacy-trunk +8665 b7c2ff3070399a2a0924c6bb1afe9ca9a413990d legacy-trunk +8666 e4710119b41cd6124904cd1edd97714ba12247cd legacy-trunk +8667 b5757e87eb32ea288b03425fd9216427b140b2d3 legacy-trunk +8668 3a6b7a377dc3a963f39b43e4c45333d611fb95b1 legacy-trunk +8669 12b8a43599d3373481cdfcb3a4c61ee0e43df375 legacy-trunk +8670 bf7d7705dce5dcac26e3c0065c4721ce8f25de3d legacy-trunk +8671 cff105a3a384a7e72f497d6372bcdc99c5f7ef42 legacy-trunk +8672 d97980e7c05f305d4e8de3042b487daa16485975 legacy-trunk +8673 ab045ed11bc9678980d9822fcdfe42da27637590 legacy-trunk +8674 7da7ba5c652584f7f147180069ac134e70a37610 legacy-trunk +8675 c43ca8dd00818769c798b1c69bbceb11917198f2 legacy-trunk +8676 fe89709c2eac0bf77e01e07fe058029f104bbe5a legacy-trunk +8677 c57cede3c7c0022ff1b0ede6d71639eadc74bcf0 legacy-trunk +8678 dc974b3a6cf4f722f6c8e70196338e5f2e60dc6b legacy-trunk +8679 ba2f11a82f277c5fd5db9f60baa96a792c3bbb19 legacy-trunk +8680 f57ae68aa3ae526ed678dfc40f9d1940bab1238a legacy-trunk +8681 24d668454cb0002319ca01cd5920b60494debe11 legacy-trunk +8682 e554b9f4a3aa929e2bd71c96d92281bf6b1e9718 legacy-trunk +8683 77f5b6cbea6624088b75dae1067a469949e6bbdc legacy-trunk +8684 9c2ee6bbdbb3237f616e227db9f593ea195eb314 legacy-trunk +8685 7b45d92e3861e3760d888eb2697b0f37f695ea0b legacy-trunk +8686 fe3fac1a3e517846bbb7a9e3e4cf8870b810a0eb legacy-trunk +8687 6a0bf6b263964faba711455f97821723d241ea76 legacy-trunk +8688 a12ee27cad9322b2133c1cb3abd20b90f22063f4 legacy-trunk +8689 5088ec5a12a6b2e3050340578d4b157759233180 legacy-trunk +8690 36dfc8cc1d013a3318724b76b6c8a838b7405634 legacy-trunk +8691 4e1f89a12f992933714670c001e1d7093ae4fcab legacy-trunk +8692 eb7a01b86f9316b77e9e62a7c10c3dad3fc2c1a5 legacy-trunk +8693 33cef01961a7110b0272dcfd01f910698ef2693c legacy-trunk +8694 b701df85c0474765c6560856632fbdeb0e86340c legacy-trunk +8695 8b59c004a499c1261e0d974ae17e21db54058be8 legacy-trunk +8696 418d385a9e424c4fc6b7533320a7e15542ef3cc0 legacy-trunk +8697 ed4924f3b2a561c0c7547a2c6246da09f8ca7d2b legacy-trunk +8698 ee5bd08517e862a473656773daba0befa02d8f64 legacy-trunk +8699 78a4a5632a91c559a7943b60a26a114d8c723c2d legacy-trunk +8700 80bdbc49b4c40b592872c51cd649848e0e92b9cb legacy-trunk +8701 856d87d282ac6ba3a28ae03ba24384c37b89db53 legacy-trunk +8702 a85cdf0befc5cbfd42c6a780aed77a4cf04a9333 legacy-trunk +8703 99855219b37f680702d615cbe67d88f5b567b3e3 legacy-trunk +8704 613f976a57b492d86ee6f4ace76ade1ec4f166c7 legacy-trunk +8705 b53347c8260ef1526dc0395004d7dfafb0377cf8 legacy-trunk +8706 4da4808709c9597757e5e53e45b5f11534858630 legacy-trunk +8707 0ef0e051b1f8d22c13e2d45abcdf52230836e217 legacy-trunk +8708 c89390e56b9142ec849ccd78a3eee8d960ef2be4 legacy-trunk +8709 fc5e1e0049940ae7408d33fad963e3cd451397ac legacy-trunk +8710 efced8326e3f250a6a6539cf7255b03c993f81e8 legacy-trunk +8711 4e5fb8d9acb1c63c9570206391925b32f1a734ab legacy-trunk +8712 24845968323f9102d402b362acaa6e61b4af62b2 legacy-trunk +8713 6dfec320f9109e14a23678d7a75660ea25673f34 legacy-trunk +8714 03b8793f76c2cbced5863035309a2854001726ad legacy-trunk +8715 4462d3c600bf972ac6af621b3716154ce1060e68 legacy-trunk +8716 f60876835a759c21ee447aa0f4bea1c0682e9769 legacy-trunk +8717 3b5bbcaf917f87c7ec1b75cff8061fce858a9779 legacy-trunk +8718 ab64344e87dbdb5b276946e4482b9b68b7eeb112 legacy-trunk +8719 21a28490bd961ce8c1df8cd7de103c497f2d1afa legacy-trunk +8720 4279f4eb210a214f0ff0f497272d7744f4dc7357 legacy-trunk +8721 5ab21d1b61d86bf33b02e3393dab633e4ef022ca legacy-trunk +8722 15bcec3d32599e6498d1a13e76d8389d71bb6893 legacy-trunk +8723 4cf20fa883a92e1e74a91785faf083776cb2ca53 legacy-trunk +8724 1496444e8c8b83047d24aaefe2eacb5603395db4 legacy-trunk +8725 af114ed9e61ded60a7be97d94e93208f51ea652c legacy-trunk +8726 f10aad73e0293110257a4f30c6494295f0b2656a legacy-trunk +8727 3fa4b7ae0e6bc1f0aaae401f05cc9bc80f6fca0a legacy-trunk +8728 3e0aa7162c881f63d7fbefb857f1c6dcb6eff570 legacy-trunk +8729 6429db5d0af72d0091eb091e44509fa67c203134 legacy-trunk +8730 5224ed877bae7d56b4de8456b239757f4b3fbac1 legacy-trunk +8731 4c76ee01df08db3c4ca41d00253d26677d926797 legacy-trunk +8732 f446e08ac3027b86f27b3ad66a774bc985dc79ff legacy-trunk +8733 ce2092714484369e88cae262b26544852e02a9a1 legacy-trunk +8734 ddd25510f3fb6f31bfff1af481e95753675621e4 legacy-trunk +8735 7c1ea85e26842abd42dbeae2632c09eb0d59f830 legacy-trunk +8736 4fbcc42890126c2b6c99ca649e397c36ad236c71 legacy-trunk +8737 c0cd23e708b586ed288d2ed31f2e60c0fc962c4d legacy-trunk +8738 d97941ec5eed01154aa7a6b31694f6406d9dff4d legacy-trunk +8739 5074fab2925d8ac0a853aa5c8186dbb7a9a412fb legacy-trunk +8740 aa6e0504e0f2ab687350bc0a6798b1f1c4915080 legacy-trunk +8741 3df22edcecad869712d95ca6c7268b33dcf77a03 legacy-trunk +8742 8a50249aa72f33d2a92a66de98b00e0fd3f64c9e legacy-trunk +8743 8c1e020893798e0f3f93a1e272707f3932da005f legacy-trunk +8744 eb8d1a098b9decb146cf1f260a87981995caf31e legacy-trunk +8745 020a3c8ab070ba36645e009c878ce2ac07fc1504 legacy-trunk +8746 13c5329d2c2e912faa1cfb3fe09f69381c58a9c0 legacy-trunk +8747 dea8dc4b8e225dfbad51d80241b1c924dc8b19b1 legacy-trunk +8748 e9926241faa4032fbf2d10e214a4ead5c09bf358 legacy-trunk +8749 775899583da69d104a3618a9cfc5e8aebd72c685 legacy-trunk +8750 4333775b55fddef6ae5b4c6b44e03f79836e9f0f legacy-trunk +8751 7a3808edc5390435107a11eb9e49c5bd5dbffb92 legacy-trunk +8752 f9fbde75c5365a5f580896704814b1b44dd9248f legacy-trunk +8753 ed74cc59c8a2c504d2939ed4f69fbc0a64c7d3fe legacy-trunk +8754 bb5472fb4885b9502ca2c73bdd7cf9a71d2f0cc0 legacy-trunk +8755 2984416a1b2b238c6fc5fcbba80c4c46cc20ea0b legacy-trunk +8756 07860049f1c4515ff925cca5c9141fa93188d441 legacy-trunk +8757 a266e94ca5e1cd94283ead672f11e133c4fec56c legacy-trunk +8758 33ef7ba6e74ba5136bd8bc08d0eaea634fa65a46 legacy-trunk +8759 f6839e532be2b4ea51252128140db8386ac7255e legacy-trunk +8760 ebdc48d06cf85ed0295da62c7e7302eadcfeaf0e legacy-trunk +8761 daa62c2264b5259956971ece81505c4f0626da16 legacy-trunk +8762 337054e9d4fa437565c4f81725234f25edd5c4df legacy-trunk +8763 82cd2baa413646f6cc80d5ba5b9e80e87a29b528 legacy-trunk +8764 489db362cd48d0833a8ba89029a74a83c9c14035 legacy-trunk +8765 5fa4b1033b06fc1951eb58cf08a536f52bbcbb64 legacy-trunk +8766 65446044fb8f7129bd6eb40faa82f65f6f5d7d5f legacy-trunk +8767 47fa3ddfb090c95befcb27603c62f82240d19622 legacy-trunk +8768 3d61474a1550d865457319c9807fb1d53f06db54 legacy-trunk +8769 8e31f1c07dc5b2ef01104ea9abb0366329d8c84f legacy-trunk +8770 6c0a2658a156108a04e9e0b32bb5c9f97d181378 legacy-trunk +8771 a84ef0a711ba092b70827f013a1067506c502592 legacy-trunk +8772 eabde86d97f0697f258c9b7bc8cf24ce9eb3b93b legacy-trunk +8773 c0d43d6f5240de7e99066e81d96527beb9f0bb2b legacy-trunk +8774 509474b88b01c417c338c388da148b76bf943c8c legacy-trunk +8775 ebd099889721c4809af0fe58ed88e08fc358e31d legacy-trunk +8776 0054a3840a752a53703d2c1da142323aa6d2f312 legacy-trunk +8777 49105b9e99474478830b57987302d56eb9acac32 legacy-trunk +8778 a43352f0e1ee6baaafba877b2690fd238664addc legacy-trunk +8779 a62d6d063c0f08983a26e711746d3f3f41b01e0d legacy-trunk +8780 cf0effc3f585c788c8ca0734567ba0211b9771d6 legacy-trunk +8781 b378a0886620151edc38897f7e7bc4d23148f933 legacy-trunk +8782 6e1fa76e79407d243abfd079b37ca768392fb2ec legacy-trunk +8783 59a9fbf5912863faa0d17849071df2788fe6af94 legacy-trunk +8784 e1ea4ad461f923b9999e0e8289e3908ebe2def07 legacy-trunk +8785 ea6e587136b6e3bbd0081a884ce192b68de0667d legacy-trunk +8786 904a4d783a3372b3f21fd50c4eb52a9651881d1d legacy-trunk +8787 eb5128e8a8e8e3d7296e87616bbf5d2de6964bda legacy-trunk +8788 13fbd98d81cc061c7395b1b71e8b36d4cef2f87f legacy-trunk +8789 7ba79c949b3a7278fafbe0be8ee218bb9e71867b legacy-trunk +8790 b9458dc99d50a0f1394086f839a8a06f2719be9b legacy-trunk +8791 4b785e59e8312200551eb7c83548dbeae92f2e81 legacy-trunk +8792 d25489c5a22f4ffafdb07acf8de4c17daa9d4743 legacy-trunk +8793 c2359665be80730ce12a7ef6d32873e379f419f7 legacy-trunk +8794 71b40cc4cc0372f3cdebe2994fb0bde150f8887d legacy-trunk +8795 cdc5a40fcf974e942ee6f79941f246205ab54030 legacy-trunk +8796 b7f0b98f532517f75384a772ac657ef79ca0a9d8 legacy-trunk +8797 a75ca74deecacc88ab93e3d00af99aa3b23b7925 legacy-trunk +8798 913cd1f373be47b6e9305fecbe2d633dccd5837d legacy-trunk +8799 05d943c4597c2dc3eef88d8eed451583585245cd legacy-trunk +8800 3f8d7f74f1bc549a346bc2d0ddbab565ba987b30 legacy-trunk +8801 20b5647a067ebfefff588bb58b72739d086db615 legacy-trunk +8802 5cdc3ca053d6e810a565550fc12402d7a4fbf70b legacy-trunk +8803 b0183994021b372fcf513a2883107381a4e8763c legacy-trunk +8804 4b4775b49bfac44b617a64cf92fa40e61ab68af3 legacy-trunk +8805 dfeaf965f48ad32f0bb0e9e6c520aa9f25c82175 legacy-trunk +8806 fbdca17283c23bf004ceff279972321c175d82df legacy-trunk +8807 172c7febd7557a500e369772afae2c0513e0003c legacy-trunk +8808 979c71238e5bb2c3c248a9ff09ac28a525f413fa legacy-trunk +8809 2f4a925e8b4b24143d328c2063bbe341f8dff4d8 legacy-trunk +8810 dd102766ea5121bcb303203d80ec6eec83180229 legacy-trunk +8811 fc1c0a27bb9638a6e0d160599c07a1aae5df94cd legacy-trunk +8812 575f6b910f88b416a76e3c3230263b50cc159259 legacy-trunk +8813 a42b31fe976f55441a29cd459cd50beea52fbf2c legacy-trunk +8814 9e429518cb2017450dd2ddac520fa2c49ed911a1 legacy-trunk +8815 4b076fc5ba403eaad5d00f48981168573d1ce6d8 legacy-trunk +8816 6f8eb4a1fa07eb799181d2f0c0142e37b26aecd3 legacy-trunk +8817 593f541296616a39c8d390adc4247786c5a86fa1 legacy-trunk +8818 1ed914f8bf0a0fec8c99f2efba3f892dd57a315d legacy-trunk +8819 e9ed064f39f505cf7b509df76253b15d1ff2ad3e legacy-trunk +8820 689de613ea1cca271779b3df0a22e78dc8cffa26 legacy-trunk +8821 e4087cd40c85d800dbed36dbcf1fd688d613d82e legacy-trunk +8822 98dacc8973a1202f6428aec2f469ab54592e821c legacy-trunk +8823 a5f29a560c09a338841a7a7d318e568edb671529 legacy-trunk +8824 2656d1eea7922db9f2d50de8eafa64b28d623036 legacy-trunk +8825 6a3b9e7d43c1377d233f398d702eb35b02cf53f7 legacy-trunk +8826 b7331bd0ccf577cb9a9a61a8309134b062ce6db2 legacy-trunk +8827 9a121b3fbebbbaf1a5a5151d45c041b16104b5c4 legacy-trunk +8828 3864df294979a06961f3cb97dacec5e0ae77fecc legacy-trunk +8829 b62a7a59414e7f3e0f785597edc594f964d58f89 legacy-trunk +8830 666accd66878b768103bc801f0a8bee79384eec2 legacy-trunk +8831 f4dcbc027cd22ee7ea41b76263adf7d55a0cace4 legacy-trunk +8832 2e40e27f8b260fc4760b4713d1974bfe4496b8fa legacy-trunk +8833 a857d2f873364c0f3e8cdc2a9900b5f425552420 legacy-trunk +8834 174c1bcc8e2d0d828ef96c828673e77ec29bd271 legacy-trunk +8835 9e82dd76288e8f1930a49bfc3f8fb2df73d466da legacy-trunk +8836 7df78f9d6d347777aa13a6bb689e33cd13e0ef6e legacy-trunk +8837 d64e85ed7b441dad7df2068c560c2f275f70d63f legacy-trunk +8838 0e7e2004963728a3652eeeff0d47cfe4ab743578 legacy-trunk +8839 32663267eb4061960c0589e0cbf821a4b38ccf59 legacy-trunk +8840 0c74688bc1ffa49360b9f83a58bdeed0421e0d3c legacy-trunk +8841 f39bee3ff22bdac2f1e22ad9b02d2981a87c3877 legacy-trunk +8842 21b93d98926b815ac9ece284d4b7c6482eca76de legacy-trunk +8843 71c3beb294999daaaa82f847567b09c500eeddf5 legacy-trunk +8845 2c29b898264337d02a00f6dd5d94ee58a50dca68 legacy-trunk +8846 94e0b31fdf5f28331588871ff1daa254c681d97d legacy-trunk +8847 f8224046ccf8cb3362514a86ce39f9d7a7b5eb19 legacy-trunk +8848 36405309397fc2649067b928e02e6bd11f032732 legacy-trunk +8849 678a3f1d0c809c700bd2f4f6493d9378b995bee3 legacy-trunk +8850 c7139b6f73406e1bb28f10f41bcc81350e77e132 legacy-trunk +8851 47a9a6de23ffc23af28c23c38674554aac74062d legacy-trunk +8852 f6ef9af4c8b954a55a7b4f8ebaecd164c658dc8e legacy-trunk +8853 b68185d94777c0d1ae2a49bb4950db4949dd09da legacy-trunk +8854 1afcac7658e5746e413d4b20c31e634196ce63c7 legacy-trunk +8855 4cb223f293376fa7ff06d60e39636bd772e118ad legacy-trunk +8856 8922c7f3a28551189721302c822bf62f1d0538f4 legacy-trunk +8857 b83ea2fef332b1aae8ad1b3ab0f221cb21316de2 legacy-trunk +8858 37ff71cd941eb04e743bae5e65b4bbddec915446 legacy-trunk +8859 44904764dafa8c74d32cf96d59455c0d9db8afc0 legacy-trunk +8860 16cd39805fd5187ab6f82ffabd1f931b9ece4068 legacy-trunk +8861 3f1952534367b99154524568f770e95f39171453 legacy-trunk +8862 238a8b6096e1bb1f27c5425939a1d2ff273c6b7f legacy-trunk +8863 14d58b5a21c40868bc1b90ac88955d47e5568eff legacy-trunk +8864 505f52010f2af9df496f5af6c5a76633e5881dd3 legacy-trunk +8865 833fb01409f349a4b95c7bbb9611438dd42deee3 legacy-trunk +8866 37e68b4a5397336320c6eb1312037fa2ee52e6e7 legacy-trunk +8867 bdf4e27f5b9e3d133ecc2d6971f0a4499d89e298 legacy-trunk +8868 a2df3c9e5f43acfbf4266abcf1e1f4329e4f9da8 legacy-trunk +8869 7cbef0d74ea341ab18023431d47d7b77c984d023 legacy-trunk +8870 24f29586de9690367fb0d928d1d622ab577e907e legacy-trunk +8871 f6f2511bb6baa2f80c4a8c5f42338babe476c5a0 legacy-trunk +8872 784a16f56643474888867efd81a6fbd4842f38e9 legacy-trunk +8873 22dae2637e082ed06879e4acaf8a35a66d23244f legacy-trunk +8874 6ea926b46f8aebbff0e9d0c8a383bc94cae31898 legacy-trunk +8875 4d55bfe1febbec636216612cdd1a9aefc04268d3 legacy-trunk +8876 9ed9eb4a7f23a4ff81529761521dc2df7453ccef legacy-trunk +8877 c7fe3890f103e664f08d93067775ecc50bdd2fd0 legacy-trunk +8878 0490f6a84d34751698e39cfc3b89f0c8c93a3d40 legacy-trunk +8879 3224878bd8b3a8e0190de875c87aa11bef40d1f3 legacy-trunk +8880 9f8134e95565b4a6e41e8a089d2bf88b4a8336a9 legacy-trunk +8881 9452b77d67ec9fa0e6f3302c3092da5808aef0f6 legacy-trunk +8882 ed6f6f03221719b2f660e80f19a902b57eed62c7 legacy-trunk +8883 65177ab6a696c5199a0cfbbdce0f40d6d7bc8e1b legacy-trunk +8884 81154a51c16ed2a6defe192ba1e2c5fdd2714333 legacy-trunk +8885 57484e21e3271db2d9c4be312e9f7e9afbb20d15 legacy-trunk +8886 184093d96d2a2bb8dcfaa0fceb84490a8ed2fb92 legacy-trunk +8887 4adc7e96aba2528d671c4f4984f9bce0d61857e1 legacy-trunk +8888 4393800f9261598122b6d8f1e9bcf0e243f6645c legacy-trunk +8889 38655e3ad19257e35f184bb3a703e8c3931fe51a legacy-trunk +8890 04f3d259f9e99ac7e867ab3a4a22b37e6aea77b4 legacy-trunk +8891 c378e7a0234a2a1037b9aeeac1f47d0c94b83cfa legacy-trunk +8892 ecc53ea8d4eb65c0624c47f15acfa8b99e8689e7 legacy-trunk +8893 23083bd8c26189879cfc41b7a24d69b08c0918f2 legacy-trunk +8894 7f77710a22d0a671eedff1e3999d905adcc57056 legacy-trunk +8895 4491f84ac223a16e912fc704c1606a8dbf3b9c20 legacy-trunk +8896 48df01eaa09a245e82540505a3f3880df3ee4e89 legacy-trunk +8897 6f06410e307af45375d9cd7bf3034b83ccdc15c1 legacy-trunk +8898 abed754c7b7f5b1309cb70b1d048d7f63759fa10 legacy-trunk +8899 c62e34ea464b2d40e7ed66490cf266c287c926b4 legacy-trunk +8900 fb9b0d246ef34ebf618f6200eb75fb13b8c421c3 legacy-trunk +8901 644484e1a37b7ee2bd435da9c0b6efa6664175fc legacy-trunk +8902 aaca47ef55a8d483e9295bdc85e1b86eabcc1fca legacy-trunk +8903 5f0216302cd8f4c8375c76d41432ebd632441db9 legacy-trunk +8904 068254fe5617e4bafb323690a95e9d76db6f29fc legacy-trunk +8905 aee56e9d10fc93592a1b38b5a0d5e1123b77eb8f legacy-trunk +8906 e356a344819d7a2260db691ce4f88d57125aa6e4 legacy-trunk +8907 14a711268c51bb6937b1708923eb09f0a261d9d2 legacy-trunk +8908 e78b6174bec923e0a3eb8a7929f855db936b2e9b legacy-trunk +8909 0df0159051008eb51bbd98b538c3d018a3660466 legacy-trunk +8910 ce56a7cfe96cfd101c6db31e6696f6674212b450 legacy-trunk +8911 435606b215c52baecfe1a44d097b2d2abafe47f5 legacy-trunk +8912 c83a1b21c42d2a0860e229fc0fbcad9f0c3915cb legacy-trunk +8913 053bbab0ec53e2112283e18936781073ee958438 legacy-trunk +8914 e57c72a2b0656d1fa0b11e2017c73e7b28186393 legacy-trunk +8915 f384cc11b75bf061325d8ee30d1436fe14f606ad legacy-trunk +8916 9e46ecf03c3e8330e93a1e275e4cb63e205f51d3 legacy-trunk +8917 d7760a1ba4ca769e6247a5c1fc3cd8ecd1e7fea9 legacy-trunk +8918 42bc792ac69fae55ff2304f42ee547c79278fe31 legacy-trunk +8919 d9e51451ebdf9302c4c62fd0e3b89fc25335e641 legacy-trunk +8920 ddfcefc0d826807e1e9a58ff63a3c0fe74a2d9de legacy-trunk +8921 108fff25462d5622dd6a75e6447983f863f0b6a5 legacy-trunk +8922 93c015ec2d57caaf860d394fd72f04177b114548 legacy-trunk +8923 bde5aaf3e589744b34cab2bc60191f9df39a189a legacy-trunk +8924 5803782e73ffb72dfdd8f93a5fbabc14d9d6a053 legacy-trunk +8925 31a50468366bae37ccc116fa8048b2ae13854543 legacy-trunk +8926 b854ca4605e12298140bb270e35ec7b6c7cd50cf legacy-trunk +8927 3350c73550ee83d230926f7b71990966b7c8da1f legacy-trunk +8928 77a22d49dd8585deec21fd54def59b2dfbaec6ae legacy-trunk +8929 10413179a72a58903e45c85caf0a71059babb4e0 legacy-trunk +8930 7ea465830ef45dbdd309d7b5fcd894395c12a1a1 legacy-trunk +8931 c9b139b9c5fff503c7f5c0d3c0a32f60c9d7d524 legacy-trunk +8932 b5b35a0cf1aa9282626ca909edba429efce9837a legacy-trunk +8933 2138cf3bdc5ab858fb25b40abf4f624b9592f7ef legacy-trunk +8934 2c5c399b6ea463392e236313a85fb7e0294c4e83 legacy-trunk +8935 90eed9a5d07a8358d12104abbc2ab08c3bd48bbb legacy-trunk +8936 39348974b22e89007fcdba941fc28dc780e99da1 legacy-trunk +8937 b65eb44422ba9322f791a8e43af63e4053285f80 legacy-trunk +8938 777ae5260a12f5c83c7eb7141d8bda7e0c86199d legacy-trunk +8939 9986272ce24a15c4efabd6f0d36ef8905be2d5d6 legacy-trunk +8940 22bed5794514c6279107513471924724432ebb88 legacy-trunk +8941 0b2bcf0424a053a56ee0ca68f7ec3db2c57618df legacy-trunk +8942 4d545cc6fa99c4b0acd7cac1a4d3fd905872d2c7 legacy-trunk +8943 c142eb533fb90f9b321341c71758bf1f24b048ab legacy-trunk +8944 94163759cb021bda779c62d104c3873f37a146cf legacy-trunk +8945 6a91a0f642fe7b0ac36b74432c602b5b9dc8f67e legacy-trunk +8946 103c63983cdfa4dbca308d5bb2f8602ab89aab8c legacy-trunk +8947 dca9bdf5ea08a80c1f3a6c1bb3cb63356746b43e legacy-trunk +8948 ee4f2b1ceeda4aac26d4443763053f0de7cead95 legacy-trunk +8949 df659e239e906d9b6167cf71725e62b03af09fbd legacy-trunk +8949 746654a0af680c7d9b814b210a026eb91bec9533 legacy-trunk +8951 2ede7c2ac92cf1ee89e8e52419c8901b034b7586 legacy-trunk +8952 d153242aa6bb2dc3b1fbec8c9ae2ae78594f681b legacy-trunk +8953 f5f744ed8137c7cc34bfd118d65c623e6e414163 legacy-trunk +8954 7ab0b05293aa42720d151ca83c7e3bdeb9a5511e legacy-trunk +8955 c67d8421fa21666808a24c623877e332d7e4c53c legacy-trunk +8956 297a541eb86574c2327b2c0218d69134a1f0a971 legacy-trunk +8957 58b4d9ea8e513842f347e3d5a432f3ebfc167242 legacy-trunk +8958 727b52031212577d9ed5195f947bf0af014714d1 legacy-trunk +8959 cb05ea2b63d9d000067b5c2e1572fe163c508737 legacy-trunk +8960 d311b68754c186e8cd3de702bb6340ace9a9b2c7 legacy-trunk +8961 563ae21b205783639d8618f9c7a9fc0d0df89eb6 legacy-trunk +8962 b8e26078d8b1ad38f4a2ad12b0b8f4a76f5dfed4 legacy-trunk +8963 2f258162aae2acdfed76c56ebbb2bde369195dbd legacy-trunk +8964 1618060716e7819523bf1c5021512c8e1344fa56 legacy-trunk +8965 630725805c6622ffc724e8840e27ffd0176c4cb5 legacy-trunk +8966 37c8d7f967c71c0de414baca92b71e9abe68f883 legacy-trunk +8967 4e1a0fe0ace24f562846102580652e44a191662a legacy-trunk +8968 2f9d59da72fb86f404b7a0e415c274c009eb485e legacy-trunk +8969 ae74b6ccef57d437cf7796803ad5cf0fc0d23d4b legacy-trunk +8970 222dd4d06581294f229565c447f9c491a283e96d legacy-trunk +8971 bb8c3004d758ec1be9ed731689b50f0ba50324a4 legacy-trunk +8972 17e3d9b6b42e82858134c2c43c07b66dd4d405ba legacy-trunk +8973 39d2a4db7c3b80b8036b36febe6b92240b55ff02 legacy-trunk +8974 ce45ef4c65e91be7b29b5a135b9714af1161c7c7 legacy-trunk +8975 b38a755b8db1c87aee30cb229db384162d5535b6 legacy-trunk +8976 4981fd2b3211406aba5d16e4c4ec4ebcb9ce7716 legacy-trunk +8977 6a08b60de82c7230b12ffed065d8c6aa619b58db legacy-trunk +8978 879130f1ff5fcb122c7285072a4786a04081bf96 legacy-trunk +8979 9ef9cadd978c54a812a965c5b59370001acebcba legacy-trunk +8980 2a2e5b731d1c77633999a12c9862021cf6522249 legacy-trunk +8981 98b2a0a093c9d49c97dd7ea5ddf3f5927efc380d legacy-trunk +8982 071a0d3a49b9f90f5c0bf0fbaf0eff99685bf249 legacy-trunk +8983 b0494bb5201994f91496674f5e4c9b4442e2d79e legacy-trunk +8984 df6dfaac2d0b51a2efd12dfcdc1d5015346b740e legacy-trunk +8985 a00073f2e087ab4ce1729c1b20b8a46db2afa476 legacy-trunk +8986 80735fcc35affb728144f766ec1c54e4ba96a76c legacy-trunk +8987 f022bbd123386801d1d465a18b709428a89393c4 legacy-trunk +8988 74518d882ed31ae9435a2be117e74b95aeb7a3ca legacy-trunk +8989 fdb77636c074302f06a583441351d79e22473531 legacy-trunk +8990 a3dd591081196a2bcacc3f64be208b98638c90e7 legacy-trunk +8991 6c5f7e74fa8801fe8ce8122640c544b7651ca530 legacy-trunk +8992 6d9cfb53c7ed2c2cdf4290d81c393f8338b3d339 legacy-trunk +8993 eccdfd172740611eb15b5f05414dd6a8d9505487 legacy-trunk +8994 7e51727d3b7ef3e4230451db3a9a4d907ebed07b legacy-trunk +8995 1d30e52dc34d9b43571ce2b27021ca88e4634949 legacy-trunk +8996 1aff19783d746f1b73e967ec1b5ec9c8e5a089ee legacy-trunk +8997 24da035ceb6ebd1c85c82ab114339e154e875ba6 legacy-trunk +8998 f1b1728452c130b2b545cf078bee5a5beadc3795 legacy-trunk +8999 3f84558a24dd84ff2f34812eb7be35145dd6188b legacy-trunk +9000 9614fdd813936ecb88b14538dd678704551f345c legacy-trunk +9001 ee496ef1ca8399b72f3ef4e0f55542b65b093e60 legacy-trunk +9002 e9c67c192cdb66742d1390f259a40e9385ba7ebd legacy-trunk +9003 5ccb12affb54c0c7169198b14ec391319701c155 legacy-trunk +9004 46fa4717cf24acb7fcc57b98ebbe854dda364a39 legacy-trunk +9005 bc1900243e339a0fd2f0e02d53b7968557ab034f legacy-trunk +9006 723c898831881d075d0829ee916584db507ca603 legacy-trunk +9007 89e2eaacfd9000add71b8f1ac7777d97f98f361f legacy-trunk +9008 0cd1f2f1d82d1c958375dccd6d659d4f8ee68f27 legacy-trunk +9009 e497a7fc0aa856c85845fb0170608288d693b0ce legacy-trunk +9010 d369629e8c27c0a3dd0b8fe03fd9a129bf5c08fe legacy-trunk +9011 ba65372408ddc6bbde1a2df3583ab8010fb57bc0 legacy-trunk +9012 0864a5566d89abddd5aeae1f6109b83cc7a0a86c legacy-trunk +9013 64c5efa9d2c4e4c00fee924689eccc699cb73b09 legacy-trunk +9014 18703538af48181718194723e457e02f7cba363e legacy-trunk +9015 25505e563b37b72fe97bac231475763a09333410 legacy-trunk +9016 a1a2b711598cd7aae1b2557e7fbc853c8f0286ee legacy-trunk +9017 d1f46a08d78a86d2c5911f68068a187aee5f6be3 legacy-trunk +9018 80fc0a9068852eaef8ef2b02aa8a27e0ca98d88c legacy-trunk +9019 b2dfff06789c6df772672df38efbda818aa153a0 legacy-trunk +9020 62bdb1cbe0f55f975b67780d419700b3cd46575e legacy-trunk +9021 fc327ec15c7ede2df7fb6de328bce01a797e11c3 legacy-trunk +9022 d28932d676c8b9e4c585dfcab991fc4c5d6a390d legacy-trunk +9023 b4503228583c4b467b3c505a4fbd3f95cb496275 legacy-trunk +9024 c915c94ebb6bf3a8a023fd045c2b5fa7bb9968aa legacy-trunk +9025 724382af5339b8e3d0a06514bd7f1f869606b448 legacy-trunk +9026 dd1e83323c45fde1708169756b7d754997576a2f legacy-trunk +9027 a8e3b2e9f5d2280c214cd2a5f8a5acd5915d5d4f legacy-trunk +9028 f406ec35bfca6977ca52efafaaf0515e66d7e878 legacy-trunk +9029 bdd4cb2a83b575017e543b83d4d644b9bb2dd951 legacy-trunk +9030 5dbffc7844f55a9ec01970a0dbfe43f463c89e0c legacy-trunk +9031 2c6f2d92b31508882a17c401031cc826b66dad9b legacy-trunk +9032 7c9c4f8224c8b2074bd2ad8a049b9ff705fbc384 legacy-trunk +9033 a5f7eb869f21c332929352f3436f48f659dc5ce9 legacy-trunk +9034 4280b2729ccecb099b1c9c45fbe16e97f87e44ea legacy-trunk +9035 b331cd47e0bc711700eed8ea89f146a41dfb6835 legacy-trunk +9036 ee307f9845a326cb53502612e67584a9bf1804d3 legacy-trunk +9037 1a233be5fc17a686806546af4d67af32a77adff9 legacy-trunk +9038 6e9aa92fab69278fa213866b194e0a0901ee0669 legacy-trunk +9039 fd2d4c0ae64672b97784c3866e7e35a5dc002311 legacy-trunk +9040 53835043528c8b6f1070374a80a84a0459ddb0be legacy-trunk +9041 2aa13c0c8f2f6609e7d5a06cc7e96f4f5f16a66b legacy-trunk +9042 812aad8c05c291416f7e0ecc3cb7c95774fdad8b legacy-trunk +9043 e1c8d7182d667d2c5aa62a95ae993870910a0e5f legacy-trunk +9044 be2a0235ae84a4e49c7f681805dc507d7f25a4eb legacy-trunk +9045 3fdd715e6ef9061eb400c5db6ba27e497d10bbd4 legacy-trunk +9046 a0b839667d2e3fc74337d24c835608ff8b8bb989 legacy-trunk +9047 c1bac536045fcdb94fae3ab89914d7ffea4c63a0 legacy-trunk +9048 b1174045bc4ab676a7824f3e6ae3a352ac57f973 legacy-trunk +9049 8b14312a0290359ddd972ad404d3eb7dc6df529a legacy-trunk +9050 3b72878672cd2e2c3235d7311628174d09b37200 legacy-trunk +9051 67a2afcdd21c102d503b8182bc1d51e79817e01e legacy-trunk +9052 6ffa9cb654e2b4fcc2cfe55042d75513025157eb legacy-trunk +9053 00dab75b9ef12e180b773ef3818bac44001a9306 legacy-trunk +9054 d29c4b2f49ae2722b064b5cfd3c8d6c07724418d legacy-trunk +9055 85596990db43f99a39e6c6fedf0144db821698a8 legacy-trunk +9056 01ee5607bb35f458246b3c5c1057e714f2790ea3 legacy-trunk +9057 921d17cc2692b293ff1cbac54ac43ecab12412b1 legacy-trunk +9058 a1d85c0cae5a6edb55f4b1bef1dc4dcaf8830065 legacy-trunk +9059 9e07d5b69ebae6a8829df3a96c602cec59ee7534 legacy-trunk +9060 f96e57e69846f078ed64952f77a5c9cd4889979e legacy-trunk +9061 08dde5e5cc274abf4cde38d1b0661f2913d632d0 legacy-trunk +9062 c2672e5aba8b79f470e4648da805c295d7b90f14 legacy-trunk +9063 c565272ed2c7407f80aa2281b8cc7694b526da56 legacy-trunk +9064 753077f9eb2c8a260516269a1ad58ffc701433f9 legacy-trunk +9065 e0e667bbc971a4ff453b20f70cc771abdd7e7ba6 legacy-trunk +9066 da00bb4971d8f6f3133f918a372460bc99f062d6 legacy-trunk +9067 2192b93d5337e58b1b227f92d9a4b6312eddee95 legacy-trunk +9068 516240ef0e151dc1379eb508f14f904a41a5053d legacy-trunk +9069 86b67709c2b402cf2d59ec872d950687c13c3eb0 legacy-trunk +9070 14025a4f793ec5ed143e6799000aba66c6c4a993 legacy-trunk +9071 fcd8e38b9b2af9f139dbba047cc5b449177f04a2 legacy-trunk +9072 45e84be6d6405bdc18c648160bd79a9af73efae7 legacy-trunk +9073 5e0b152bf1e65b1a94917e085dd97576f68d1c4b legacy-trunk +9074 f15f0fc38cb19d77c2db33e13233cdec4cba38f3 legacy-trunk +9075 b88fd3894d5a4d39b54d33ee592ccffa4d27049b legacy-trunk +9076 ceeec8cb0a1e7f5c69544a73e312c7cde5f87433 legacy-trunk +9077 6d6fec2eeef6a803a26bc91006cfaf6d230fdc05 legacy-trunk +9078 83ccf44bf1953f944a50ddfc3a0c091494d80628 legacy-trunk +9079 1e428f51ed4e13c941da2bf189f333412c9a4669 legacy-trunk +9080 4514a5ea3ec4644256eefb65589be36327542a18 legacy-trunk +9081 7a0a48d73076a81459a723539f54cdf837bc069f legacy-trunk +9082 f67a6339ede76ed8e7f711c5c42db3e8191773bb legacy-trunk +9083 dbb461e273adaa597daa38bde6010fd4d18cbb0f legacy-trunk +9084 f5b55311e79dae8594e5536fac3ed42b94d12c2a legacy-trunk +9085 2f459eb23a0ef19ff6aa5aae169f5f2326c5e320 legacy-trunk +9086 f1e3a3f8a46cdf2e1da0b7b7832e50d59dd6e844 legacy-trunk +9087 023e5ab0f87d8b98fead7db75527c554e3dbd567 legacy-trunk +9088 235bc6f9e237a6805fb5fe2a720df286ddfaa375 legacy-trunk +9089 e6b9d21c8e0c068cfd58ce8e2841f7f77ab965d9 legacy-trunk +9090 4b2d8dc92db4cac0c17c246055b5e8ea3b6baea6 legacy-trunk +9091 2e874a5a912f2e1ae971970585f7ae5e80c775a4 legacy-trunk +9092 e2bcaa96c940841cdcbc28d3e51f7d9c4b330ccf legacy-trunk +9093 e54d5171902e6a01b8a1e9d742a961b3109b5cad legacy-trunk +9094 6fe5a51fea303dd608d3091b9d5228f473790f37 legacy-trunk +9095 2f0b7bac201c5a2ad49557d5eb075e427a1f5bac legacy-trunk +9096 04313d4f93ff7330bababc36b03fef6358cb7a89 legacy-trunk +9097 3c4d6275465e8f390a7bc2fc2fa721019cfd16cd legacy-trunk +9098 00b1b77c4177ca0eb26bb23a5deaebccbb1399af legacy-trunk +9099 b96aad12a150bb6c3004b485d9ccf028fd2be8b5 legacy-trunk +9100 f14348f757c7699898120dda26ea8a1a146b18ae legacy-trunk +9101 82d6774da0c6971eea64cfaa37606635f0d89fee legacy-trunk +9102 be07921d97131e706bb1b25d2409175f8c54d0be legacy-trunk +9103 f88b0c2608d82ec1bb79c4dc2e9e96b539a2463f legacy-trunk +9104 5e31d381fa47d25c0b375a9032688084d39d8d98 legacy-trunk +9105 a839d3efabce6d637902e196e8584af7c0f1ec7f legacy-trunk +9106 e96a81647f9c7f34cc137d49953aed22177415f2 legacy-trunk +9107 cdfe3b7d7187d83bb437caa02f437b7c97051528 legacy-trunk +9108 8f4d89f0f336c833d575bd166e44fa1f0b7d74f5 legacy-trunk +9109 d5151b7b9dbcfe9e4bf13c7173c238acfb79f771 legacy-trunk +9110 52d40cc5fa08cc5b9de210ae86679009d3a5c073 legacy-trunk +9111 df2a2e43be18ceb3f01c7ae730dd49c1be91488e legacy-trunk +9112 ecfbad906231420a4a9c5b9bacee1d1e67f97b72 legacy-trunk +9113 02f59cb286faa3add4ace44efaf9f7289c6fa354 legacy-trunk +9114 f40827baab8112a8e1524e61281283ed0758551b legacy-trunk +9115 03392c27bf968bfdedc38c1c5557e4411e44a320 legacy-trunk +9116 e6d786958fb307ff5a7520606f97604335d84330 legacy-trunk +9117 da662b345c87602f66af63ee72ad3b4e8fd7a18d legacy-trunk +9118 f90351b1581b2df1842bb5b7ff91f1673495d2dc legacy-trunk +9119 ac4b4447386943f4630da4bb0f7a844678371586 legacy-trunk +9120 2518ac9251f0fc2e265026b49c41d2a32e8219b2 legacy-trunk +9121 4121704510630e035dc975f630aeebb43047c463 legacy-trunk +9122 e1d3565d2b7a49251e6e12077f6143b05d7397d9 legacy-trunk +9123 e8681eda085495d4181fd46b7157dd7cdadfa4d2 legacy-trunk +9124 1da9f60279c93302101e321488b0d85d1a5939be legacy-trunk +9125 a7ea74a27993693815b8d720127edbc4cd48f327 legacy-trunk +9126 0f2498b847bfcc496a7ef04bc2010671051c1e22 legacy-trunk +9127 20589ed3e8bde5ff5c82a14d03f342ca2c52a92d legacy-trunk +9128 f6be9b5adbdb7d667729ea1d240db220c28162c7 legacy-trunk +9129 ce5288ec36d0255e5c2514b03b510d7577e37346 legacy-trunk +9130 5eac1c8db04f64187e11e453c5e99b46c323dc8a legacy-trunk +9131 c6c1d133677a78555d97076b28527f9f6cc37fbf legacy-trunk +9132 6d98b969e1f670972dd84a73c313b9b1a5e39922 legacy-trunk +9133 466e87b147671f9c30260012ff3760dacc30fadd legacy-trunk +9134 52329a113e0fa3ef0f976363366e2c6ca9453c19 legacy-trunk +9135 e499c7dbfdf359a4e82c5ee050b03bb3a61842ba legacy-trunk +9136 dead6e77f46428eea4e1e23291b53ae03f5eba68 legacy-trunk +9137 334cbfd51db3aece0df1463552d182f82eeefc8b legacy-trunk +9138 bb86bb76d61da3c0f0630cea421ab5dff62c57ad legacy-trunk +9139 99955b65408daa27cb575870edbfbbcf708a119a legacy-trunk +9140 fbfcf38d2b395fbfb7776caf56cfde00c82e755f legacy-trunk +9141 9f02eb36b5739a47fd6520715eb74b1a161268b3 legacy-trunk +9142 7314be6450aa08cb49f640e84b0565f3d291f11a legacy-trunk +9143 d6d3e7cf897e0b188da599adf40de2015e80972a legacy-trunk +9144 b2f1fec6a7023e35c6fac90d93129fbf06217d4f legacy-trunk +9145 089c04d89151eb0cfe7a7cec8be49ec2fdc5fc35 legacy-trunk +9146 98552704b88f27a476b0349748514a7ac11f953b legacy-trunk +9147 2f5c8374825c85371198f5a7bb2b9380488b2b2d legacy-trunk +9148 8e3ee3577d4e9516dbc1625679b6b019ad7f7c4a legacy-trunk +9149 14105df33c12a21f230f2b7dd953ee5b4ab7c13a legacy-trunk +9150 98d55793b67fbae3aaee179ccd76a3a332f8a0c6 legacy-trunk +9151 973187f1bd1d3dc20aca09b79d01104957e9afd7 legacy-trunk +9152 432d1be0163c75c30e83be34b56cbb0f626ad492 legacy-trunk +9153 cdb3279b06e79d28b85942c892bec4713f8e3785 legacy-trunk +9154 1bb8b7fe45ec3ed0a278a0cc785a3cdc4ab748ad legacy-trunk +9155 e45b83708d9e9bbdd384354e791abd7d1cfd8293 legacy-trunk +9156 de2f8f494ae3737ef92b8a4ed0706ce37680fe59 legacy-trunk +9157 f95c9ae2aaefee95a70caa171e6fb6b26c89416b legacy-trunk +9158 b8a3ba6e7bc9def6a99c42959c72c943fc485e31 legacy-trunk +9158 8ff58b5730f06be08fbbdc2bf592226f7a736201 legacy-trunk +9160 effa62b0062b7d2ca5abc16b49f5e462a831bf4a legacy-trunk +9161 cb889b678053b0135aeb957fb9b317da66fa2795 legacy-trunk +9162 017467de7933e8c73b57472d1423b564bdbfd082 legacy-trunk +9163 83147e02e80d8e323d490baade762c99d2200e26 legacy-trunk +9164 2b7fbd76cef87054cb4b3b10f3626a65d0146f52 legacy-trunk +9165 a593c220edcc6593d50f6b844b8d2f60bad2b45a legacy-trunk +9166 53a07ada499af78868e5c6f3ee637249fab6dad0 legacy-trunk +9167 84b43ff42fa80e1aeb3779f0bac1041e36d6bbc6 legacy-trunk +9168 c0798487b728b87a1162bcabb28477313d2723c7 legacy-trunk +9169 d790fe25e148ef92ebd83cba6a3258b70d81cf54 legacy-trunk +9170 4bcbbeb63b898e5432342efa69da247a3806418b legacy-trunk +9171 40a8420b4ab36e4ee32764fdcd2a72b1c62e3452 legacy-trunk +9172 a72bf43a8870b1e0d33437d367664322cb78bf17 legacy-trunk +9173 b9fcb9a34332822f68c669f87b5ed9b361000a8f legacy-trunk +9174 e92154022b48ee6cfa71955d075f35c139df7fe9 legacy-trunk +9175 2e75b31d94c84f31a919f4a94d2ec01081b9a516 legacy-trunk +9176 b73eb4e6facecfef9f923ae85ee8f6348c741c57 legacy-trunk +9177 9001c0a7be986339697a11b330116d2c9510798f legacy-trunk +9178 c69034a8b3f434f7a4f190d1c58fb31056ab711f legacy-trunk +9179 4d63a001c25ea9c12ba856facb7d46d0155241d3 legacy-trunk +9180 1516019c90be88f5038db4713fecf683427a48cf legacy-trunk +9181 b936ccf42ea2d51c13ad66f38c85e930530be33a legacy-trunk +9182 9d8e48f3b4985f06c56e187c914b55fc2264a2e0 legacy-trunk +9183 061579395046501d71169b993dfbb4bb1fe5313f legacy-trunk +9184 cbc5e7d6ad235fba90f9b66771bf8abd2b8c8ff2 legacy-trunk +9185 39d96d9d3ccb56a61fce5213b3c3cd79cd763c87 legacy-trunk +9186 47a3f3b6050263aac9aecd0692a2d8229dfea2c3 legacy-trunk +9187 12a1c98450744076d8eac66d32bccd34fb1c5488 legacy-trunk +9188 90c6390b494173edde842a4267a5f39eca8874ab legacy-trunk +9189 98aa927f907cc03d545905b3216699466f74fe4a legacy-trunk +9190 ff16448e8f2417080cbe3e67b6150b48868190c8 legacy-trunk +9191 8a5a012307bdd10f969bc7ea6f5a9f715811b023 legacy-trunk +9192 a5bb0b8dc32042bfc55a481236478b1e706c3e20 legacy-trunk +9193 39b413ac2cc91c1b59d2c6b9e54643c4a6b9d286 legacy-trunk +9194 d854a1c7e74d331a75293ebf5dd1a7beb457ef13 legacy-trunk +9195 64a75211cf729cf4ac06ed7254dee9c283649da2 legacy-trunk +9196 32f2eda2946cad701b43e6c8a7ec62d4be932176 legacy-trunk +9197 faebc19404328b12bc2bc3123402a56c5d295158 legacy-trunk +9198 960853902ebe4192e14cb3f84ba4dbd5299db31f legacy-trunk +9199 bbf9e4b31d84c4c212d3f5f2d594150c0190f97e legacy-trunk +9200 21dce332532196221bc0b1aade1eabb031272289 legacy-trunk +9201 c3f85bcb045ad73f6375218ca318346ecc8b8e8a legacy-trunk +9202 2e3acb2140bf3a5ff80c8cfc33d6a1189572ae29 legacy-trunk +9203 283d1ca585d94f2663f11cb53aff30bdcbfe1261 legacy-trunk +9204 4f3642a201372e68243cd79a8585e4e0b2e4e4e6 legacy-trunk +9205 2662c9fe1b3e03caa27fdf5616489235b412b41d legacy-trunk +9206 7cce469160c6eb853b3a8bf44aa410ce1d28d0ef legacy-trunk +9207 11a7517054a58ea8016a6453a5aac37e42a62fe6 legacy-trunk +9208 9c9a87b5bb17ec01ea3b3e2503fb04f01e23f936 legacy-trunk +9209 21656204dd4fbd9a671c6487e8e27267f6747a80 legacy-trunk +9210 09f6a49aca12ef706d248654f2de7fccfff9d2e5 legacy-trunk +9211 65ae711db00cb5d558bb54c837d54c19b8741bf7 legacy-trunk +9212 4c9b256a3bee0c9128a1ec8a27ddea1f96c4e7d9 legacy-trunk +9213 fab8ab5dc5f84e8f6e96ad98d2cc0bb7a5b253c4 legacy-trunk +9214 53fd42aa3bbfcaca0e1546b0d64e51c321280fbb legacy-trunk +9215 ab3d7a28e07d2582adf05d9ed4188b4d192e1ddf legacy-trunk +9216 3bef55cb744b6e6de9cdeb08d06b2c7aa187b8ff legacy-trunk +9217 1d4175ed6a9ceee315580f082a55c5efed42dac7 legacy-trunk +9218 1853b5bc0548ba062c354033e80e39e2b8415883 legacy-trunk +9219 4cf0da071e2bea3e9b4b075c0cb2b6530012700d legacy-trunk +9220 4887d754692aefb100bcab4542b3c404e4055c53 legacy-trunk +9221 4f68c7ac51154dcdce0f458042ce42073644335a legacy-trunk +9222 80848e918bcc184143a9e6b4d44b5f70fa6aedb8 legacy-trunk +9223 1db41ca45c7fc88544879728d4644566a35ab426 legacy-trunk +9224 abe3aad9e0385e7e65f7542dd2b2c65ddb9735b4 legacy-trunk +9225 fcff531634e14f413d761536e222a71d5b01880f legacy-trunk +9226 74ea208d46ce81aa3d9d7482bd574c54d72488ea legacy-trunk +9227 793caf5176479e4e4a8e47a1e36b32b3a6fc1348 legacy-trunk +9228 5e7c91358ed2cdea91c87c600ae5583e71e33c5a legacy-trunk +9229 4daf090ff1622651954343f7fb4665b8f319b53c legacy-trunk +9230 eba6adf3f844ef647fab896a23767877245adbf5 legacy-trunk +9231 e2e5bbfad1c81f73ab32413fc5e0f50985caef03 legacy-trunk +9232 07e95ef55f658e7e6795fb0f33630a0fae916b14 legacy-trunk +9233 fd29cebe88dc8b4562c44acb52fa848b66f67d6d legacy-trunk +9234 e4070dc6ac35d5d2f3f21e19d813e4d830753ab4 legacy-trunk +9235 aff6ff52d5e7ed312bd8534b8fe3f6d31015c49d legacy-trunk +9236 0b5eb32b551d282a2a669ee4a8e54b30cd349010 legacy-trunk +9237 cae8aa441fbd4d7b65e7e3d9b2bc11b6d730e196 legacy-trunk +9238 0204d461d2196788ec340b9033073e5a271fd5e0 legacy-trunk +9239 748abc7f8808f4843914f2553de4a63518d1ea83 legacy-trunk +9240 0a3c7402d3953d07f000bc2dae39cf1552a8ce58 legacy-trunk +9241 12824fe04a088521dc54fa62eb35c4678658b188 legacy-trunk +9242 0752bbf77d813a1f57df7e3b7b3f46a83c254abd legacy-trunk +9243 e6c033e9b76927b9eb51f27c6c1a54f368c17bbc legacy-trunk +9244 89092ad1e66070d1865f8120e9beeff2ec842286 legacy-trunk +9245 e97b8237591c5815155d609d3787288877c74d48 legacy-trunk +9246 a29a6bf03af3323aef8a3982d10eadff128e2d51 legacy-trunk +9247 22fdfd283c9ced6d5584ce5c97a2209eed280f2b legacy-trunk +9248 b5cd768812cb3241082110774c7dd4cbba6ad96a legacy-trunk +9249 33e2145250afee82ce5cb9c8763f4c0820eb2f59 legacy-trunk +9250 832a807d00988ead8c62bb40ea4ede7d635b6663 legacy-trunk +9251 14d6b7a4291942154e0a69ee2a4a39c10bc8fd04 legacy-trunk +9252 0ef23f513a65959773a15a98b592c438d003490c legacy-trunk +9253 3117af9dbfce79346eee1ed0fbceca45fe510d17 legacy-trunk +9254 3dfe0511bc3b32631503ce518bc2ea8cea7217f5 legacy-trunk +9255 daa77d9af34c90339f9c3f9b8b039a60e1c7fc5b legacy-trunk +9256 bf6de82aab0d881ab78739e12d47a2761302a3d2 legacy-trunk +9257 4dbfffc3c23be3945da44f744aada1d0fc4bbb3e legacy-trunk +9258 9cf8d14f35652cd93ebf36fc00c9a37a1fbcd222 legacy-trunk +9259 b96d9fbb24e5614fbefce86dea3f1199103b494d legacy-trunk +9260 89802087f80669cf79befec1442ae2719d7b8028 legacy-trunk +9261 c18501770895453e7396378c0edefb0e7cc7187b legacy-trunk +9262 084800502a42084236f8bd47583cd767f2e7a4c0 legacy-trunk +9263 f4e3a7aeb949ff3ed65e1de130b11e112c21812b legacy-trunk +9264 bc007cf1d6ba3a197ec0d96199e3b294b11e0023 legacy-trunk +9265 f6954274e1ca48f884523be0b0b7243a1a67e632 legacy-trunk +9266 ceabd50317e30ed211e063dd752b8c6b08967a05 legacy-trunk +9267 bb440a2975ab9915cd8962a0bfc8aa20b8931cb3 legacy-trunk +9268 b1e6c3fe5de8545d4f1dd5f74a812ef9c260810a legacy-trunk +9269 9e75d94256e0e6a52b6ace30a075ddf8297d661c legacy-trunk +9270 f533c3079780bfe9a56714ecf9f8e725329b8b17 legacy-trunk +9271 857f9065041d520b523a3db55985109df5deec2d legacy-trunk +9272 b092ee19ae4fec0ba5b322f88391577a844fd260 legacy-trunk +9273 5b24cbb1f99ba25af5221736ced0cab491bc6223 legacy-trunk +9274 d100d0252cb1c5dcfdf1f6eb740cad5037c3db2b legacy-trunk +9275 954417191fbfc781ece8f6faa88a537526cdac4f legacy-trunk +9276 0ba50c7429e51034b0fa298a26876433a707f91c legacy-trunk +9277 341a6e47a8ff645feacc6e3dbaf76bf803dcc97b legacy-trunk +9278 5edfeb7aa6eae3d70488622ce5ac392b9f6c4566 legacy-trunk +9279 bca948194deaf48294f0db621f3acd4c031f9a34 legacy-trunk +9280 985be6dc894f35fab05bb48488eb1e707518d2e8 legacy-trunk +9281 afbc11dd2c65e5fb83c6f77e3a3b6bb962bed87b legacy-trunk +9282 e224c41bdac6508f074febdc287023dbe2f6887d legacy-trunk +9283 93e480dedcf094071f8487e9d53f15e5b4e2353a legacy-trunk +9284 ac1b261f16904a6659fcd627888d280df70bf7ad legacy-trunk +9285 7f919d4701293fc5dd60b6e6ebc09e09822ea51f legacy-trunk +9286 a87bc53fc1ad6ee75baeae2b09239a0513c846b7 legacy-trunk +9287 140e65f839533fa9fbe971970197e252996e616a legacy-trunk +9288 ca755fb1efb8af43b50109298b965610889ab646 legacy-trunk +9289 9b406c925140825829ef142f31b14353da865d9b legacy-trunk +9290 d85147dce185d262f2c078dad52056c174c22f9f legacy-trunk +9291 667a85ebfc3ed0abaf6003c83fca6f616996f1f5 legacy-trunk +9292 0fe3dc28b92c0c96c295e59c538381d6511ebf5c legacy-trunk +9293 6131d3f9af2d60929d0023a55a12640587a1edbc legacy-trunk +9294 2e3f244f105f357398f9277595ee40bf65fcd3a2 legacy-trunk +9295 7dba2f3b6c8135c3e77a0016dcc7ec0203b408a0 legacy-trunk +9296 773fbc8efbd77e072d8dc1f6b7bc102ad462d944 legacy-trunk +9297 95929b01a2624aa26f3c1e3cadd04544549eb541 legacy-trunk +9298 8ef481c7c3afc643007f3f9ed72b72edc738d0d9 legacy-trunk +9299 b19cd431312663ef455d8b461b5057b4ed1e7965 legacy-trunk +9300 fc11ff2c75b0495dd5acdf0e984190007f821b60 legacy-trunk +9301 663a49e4bed3268278c738e6c451c81c54c4f48c legacy-trunk +9302 e39c3b77704172c85af034419177ab0e1b34daf5 legacy-trunk +9303 ecaa431c5969d9b3a342544e10535d7b37ef0ea2 legacy-trunk +9304 a1545cbf0adf7f46c4900c71e889530cbc086deb legacy-trunk +9305 9fe97b763068b669cb9589d69e95a567fa804ab2 legacy-trunk +9306 ee88c5abc341ece938bb1e145c32dc289e1181ac legacy-trunk +9307 351c70b8e7313fdb4a8c9eabd5ffdd17945ea763 legacy-trunk +9308 99209dcf29468ce7308c284d97311fd0b875aaf0 legacy-trunk +9309 acf247465febfde1bd41dce425aa6b4a171ecb6d legacy-trunk +9310 9a57b410748d515e84c7eb03440fb1bed981dca1 legacy-trunk +9311 cbfc5f332d9d4f19f3a46963aab5a111cef519b0 legacy-trunk +9312 aab082bfe654e53ee97c16d3a752b6bc7af0e973 legacy-trunk +9313 db191acf8e068e6aac53f876d5654aadf09a6038 legacy-trunk +9314 0255b5ecde10654299f031681bc38cee942f98f7 legacy-trunk +9315 96181a4a548249bd6aa8ae91d6f126a57e438860 legacy-trunk +9316 b75500eeed9b12d2791ec0214a6953b51c7b98a2 legacy-trunk +9317 6233383512ba99a182ebdf5e2a38cef4f19fec86 legacy-trunk +9318 58bfece01968cc09c16f11d739245a48d963d447 legacy-trunk +9319 d7139bac9b99785ebd6ccb129be596af6ba68747 legacy-trunk +9320 416c79572f11871b6ead17788804df88eb7c3930 legacy-trunk +9321 ac65db2054c9c678cc4c2be9ecb4b1bb7a61a1ee legacy-trunk +9321 eb78658d819fb0af09a8e6f9bedcb670805ed5f6 legacy-trunk +9323 3fff34ea91ab6418d92c75052d61bf131c323a8e legacy-trunk +9324 599eea930843c14cf2bbd9348871484483704f3e legacy-trunk +9325 9ded4f9e019ed0a1e5c6eaf1742c1a30615db325 legacy-trunk +9326 8adb35329af024d9537b31ed07b23ce60f8609f1 legacy-trunk +9327 51f8d4da81e4b07798618eecd6465e8dcbfc505a legacy-trunk +9328 52fd8281656145b5e7348c95144c47518c07aad7 legacy-trunk +9329 d3e516ef9cd1122fd3271dfec8e854d95939d662 legacy-trunk +9330 a423e3e0da4010cbd25665b1b2ca499d6113e968 legacy-trunk +9331 672a657abba87c90c55f0e7ac4363814d13bd3dc legacy-trunk +9332 fd07d503a33c5e56e1cbfc19073aade4d90acb4a legacy-trunk +9333 1ab307951f4ed088156250ad1bf73afba048b4f9 legacy-trunk +9334 9274fab2c5f20f5b7205e3fca93430bc19972519 legacy-trunk +9335 67c10d98908d2beb7714ef41b8da059c2a7015ae legacy-trunk +9336 61d973eb4102cbfd197a05c70226daef76033d00 legacy-trunk +9337 51c930079514750044967e14529910a211d19a41 legacy-trunk +9338 9f1d3eeb784b932592d9da03341e47ba4bb0111f legacy-trunk +9339 744b8994148ae32c0eb770a2aa89b9dc12b69482 legacy-trunk +9340 c5bfb1de61a5b70419dcd34f7dfc20a4b2fb857e legacy-trunk +9341 3202005a720b497570aa80e2dffc189adfb561ea legacy-trunk +9342 2de398f370e86e16dd51448e5e14462d7d51a3a0 legacy-trunk +9343 c8cde15dd8ce4c6527c2f03c6f85c1da54749595 legacy-trunk +9344 0c3efdf281330bea3dbcf7d3b84b5a5109592b92 legacy-trunk +9345 81dfdf6589f8ce7932cbcab562a0701937150659 legacy-trunk +9346 2f753f540f45f49901e4e1c822723c133b84d279 legacy-trunk +9347 278aacf0170713048df0efd9e6b74475342c7c13 legacy-trunk +9348 1902938e42c6206450824bf3aa39358953ec18b6 legacy-trunk +9349 79375f71d6c838226c02e4bec1876403a35651e1 legacy-trunk +9350 2d97fb1d06ca144c78afcfed0e774c2ab9b95c4b legacy-trunk +9351 9be7f1e37535945972e393c0dd3e9d93f0eceae3 legacy-trunk +9352 6ae3c91f2d938341f81259e84ee91188c50e3a92 legacy-trunk +9353 d03f2e2fbf3666dac26bee63a35444b4e3f86d8e legacy-trunk +9354 4e2cc5044fa513f1a18fecd4e05bc9b5247781e0 legacy-trunk +9355 5809ef157cddb4e8fbf1c7b4535e506563218698 legacy-trunk +9356 e285a15f3a92ea0a7fae55971e46d913a1a9cc7e legacy-trunk +9357 ea218dcf727dd151e9556cc68be4ed5b0fde02a2 legacy-trunk +9358 c46d87923317c39c4c11509e4a452b6c12244019 legacy-trunk +9359 38f8a828ac58d3e30a2abbad1d9962df30c7170c legacy-trunk +9360 3c12c0d69e12302e4eebab93eda44103930a236b legacy-trunk +9361 baf686bf8ca0b6414c412f1893e836a2f6e950e5 legacy-trunk +9362 598d2ffbfd8b56222a0cc09c050dc46087243e40 legacy-trunk +9363 e8d32209217a9d25949f8870b53c991a427a1bbd legacy-trunk +9364 b7d8ccb457463325c9c09579c2e25c3e8500fb6a legacy-trunk +9365 913345d54f306c5c3bc6c418a767cb41cba8b633 legacy-trunk +9366 e8f997887c2d5e321bf1369a03e177490d081c3c legacy-trunk +9367 c7bab73e63c6e74189765ff30bfd45a417f11c5c legacy-trunk +9368 1ff9a30f826a45ad810c1495e0b337c3ba421871 legacy-trunk +9369 047abcbf3f432557c5a379562ccd2922db509e62 legacy-trunk +9370 5d205f22ab61863aa78a8d89df0d07f85f141b88 legacy-trunk +9371 d2ef794d9c116ddf08d6116b3f5854f37137d157 legacy-trunk +9372 05e267aed86ebb51077588567a8961a317f65bce legacy-trunk +9373 d949a35cae20c83a2f3f0ed617c0dc83c8d25cc7 legacy-trunk +9374 e70c4af157d54354d288b2800275b981ca26987d legacy-trunk +9375 6fe6a9c144992f113f33f38e47245687232d4496 legacy-trunk +9376 37ee18711c3c3818411899a19a0f1ed6c0cbc3a9 legacy-trunk +9377 214f3c4f54892ec7c8d5ca56c976522fa0132102 legacy-trunk +9378 24437d8d0ddc3b45b30d4376222b16469426e634 legacy-trunk +9379 adb300cbd56680d012242fa993976ce12fb44a63 legacy-trunk +9380 2522c8f8615bd5329cc6f9847ef78bf9ccc1cc6c legacy-trunk +9381 e207beb5a3629bd0cd953c81ac49bbf52d3fbfc8 legacy-trunk +9382 9cb2f10b04298efa0e14f2bb0d0d7a764161e3ac legacy-trunk +9383 7b54f96af3befa03c2a99242a9be65f0edc791fe legacy-trunk +9384 80ab6030b904dc929ea68a5c8852827f196dd33c legacy-trunk +9385 9ec6e0a8f353fd2be6ac5a6ea0b868a6d84f5e9e legacy-trunk +9386 e4cd30e45371ce0a9c6a1b7e4c6b826d20ba52df legacy-trunk +9387 3547fdeab4dfac8af927199092860217b45f7485 legacy-trunk +9388 f595e7fc2bd9ea52cec33b440da3766bfc85de82 legacy-trunk +9389 2c49c02cf7474ab39a8e31e86fbcabb5071ac653 legacy-trunk +9390 f266ab91a990d00a32e0be1333c568adcc987d78 legacy-trunk +9391 3cff445bd10ffa97115b61dcfcb77a52379dbbba legacy-trunk +9392 035e796b890ed6263950301e026ab3a6c496fcad legacy-trunk +9393 0d51b3b660d1293edbe833669b69b2b1ef5fc430 legacy-trunk +9394 b9a3950112aea5920ae66791638113d334003445 legacy-trunk +9395 8dfbeecc2422b7991753bc93026309697611918a legacy-trunk +9396 950d0519b5fe9e99a13f095adf1c6e0a27a01ae9 legacy-trunk +9397 10029c8c40e0dc55c25e440c6286fc7d9696b424 legacy-trunk +9398 afb1e8af7e4f8abc2fd64a88c5dea08c65da1eb5 legacy-trunk +9399 236ea93c56ff78b75b88d85d7d02b898332e40bc legacy-trunk +9400 7629c4d985bc3ede3e1fd80e5fb2072ee438dbfc legacy-trunk +9401 74ad268250608a93dadcf4ca5d2e8f81ac40486d legacy-trunk +9402 cf317a9c499bbff6155255b1b424f38decd39c33 legacy-trunk +9403 3db24b4d9c42275bd9d30d97eb38d73ec88b66d5 legacy-trunk +9404 8c92ec8f6038a75070e2ea297c1ca0548c5dd6c1 legacy-trunk +9405 52125ce376a42e4212812dc9f39e2f35c61ce44a legacy-trunk +9406 b9d9c53f1e1df51230bb86c4ef7fb4040efe1c58 legacy-trunk +9407 74024e907c60d60546a66b91db13ee827fd432a2 legacy-trunk +9408 7744bf1e485b65f1c5c65a5237f39d3b5aa70b50 legacy-trunk +9409 4091b04f93adf0187563e4f8644db303af42ca03 legacy-trunk +9410 c5b939b5a9e02d6d833e3d295304925d9e19a2b2 legacy-trunk +9411 a72dc52b97add461c39e7b38e3b473f261cf1868 legacy-trunk +9412 683bc35ab753af78b7bb090e803fe57c3c80cd3b legacy-trunk +9413 6b6ef909238e05cd0d7078c9cf9b9af44d92c71f legacy-trunk +9414 455cbab4a9be7d65463d7f102cffb2532132c504 legacy-trunk +9415 e3c8c340a990c8cdfae002f3803c937ebbd003e8 legacy-trunk +9416 b3b0ad4712ad0f84a32fefee2192a5bab030bce1 legacy-trunk +9417 dc3c9c04ef07b933a403a1fd3ca3dd496cfa1691 legacy-trunk +9418 1dafad3070066b991a76e3757df512c7a08e49ee legacy-trunk +9419 9104784af15908acd7205a292190929421a216dc legacy-trunk +9420 06291f04ba9c38ca9e2024fb3b62f9cba7850a9d legacy-trunk +9421 0c1cc2d6c4f01dc4e140dd6fd3040c16a0e7a0bb legacy-trunk +9422 feba3d9a30c7200a8a20cc161b21ad30ad95d64f legacy-trunk +9423 f14e4459fb94dbc7d9d3f51fa6d6e81e1b450a1c legacy-trunk +9424 5ef4700719de9a226b1d6112227ea1d80e01964e legacy-trunk +9425 e7bf5453a6ff4ff76482f241e8e244ce5401e7be legacy-trunk +9426 800cb234f676f1ab03e68672d7509595f05876f1 legacy-trunk +9427 6e0eddfa404a717091fcf9d5d31d6e4f273eeec4 legacy-trunk +9428 3912efa5bfca2663e658fbc2626c0ce15ba1e2e6 legacy-trunk +9429 c8ad9dc8ae1ebf69c21308f6ccf4dd8218d6a3fe legacy-trunk +9430 1144a9ed98d6ab382d9c4c8b9d28270067548230 legacy-trunk +9431 dc0739379714988115e9c99475278a0b5bfcb5d9 legacy-trunk +9432 9642a28df2b14b77878ddede126c416cd5b4200b legacy-trunk +9433 38493b9376eae181b3a062946d064ea52525f883 legacy-trunk +9434 9754b223358091cc67be45a550ac101d21967713 legacy-trunk +9435 df5b56a5afcfd6324fed2c45a8d3fa6fe8d3c1e3 legacy-trunk +9436 139ad31ff8fd5b986b8c083f9a6b35f7f641069f legacy-trunk +9437 fedbf9325190b8a6a60306b92184e14fd4414c1c legacy-trunk +9438 319a51c381cee4f8a4fd9dc14a55c6cac66f8359 legacy-trunk +9439 c5874f6f5431f294b9fc5afa3b93d8e74a279f75 legacy-trunk +9440 484a1c68c558956aeaf1ac97aa5f8d497b0bcd31 legacy-trunk +9441 10f2921a091e714ac77fcf2b1fb1eb3cc19d93b1 legacy-trunk +9442 33be7d5d498b6072b72ab0a701214b0621fb2ee0 legacy-trunk +9443 dce838cd42c1809d71352786ae2dbc5110ed3d94 legacy-trunk +9444 eed63049df95955a9957cb65ed4dcf5a9ca7b03a legacy-trunk +9445 744e2b68f3b6d940bbf2511185c1974cf99a2da0 legacy-trunk +9446 31eca648f7ffeaf1d2c64134ff37ef019fbf3eea legacy-trunk +9447 492c6db160ac99e3e8ff2572eba92b8970819e77 legacy-trunk +9448 e5aff41036f3d659060e2ffbf1fd9a64f1d7a672 legacy-trunk +9449 bc125f0d2c5d0f1414d048835967e0de1d65e8f7 legacy-trunk +9450 a6929e7417dd62c774158815b58b0feef6afe46f legacy-trunk +9451 bbad2c684ad72bce5f1344dfc4b2d67a867dbccb legacy-trunk +9452 23b27b0b235b31552d57ef8e33bcae487696aec9 legacy-trunk +9453 80b1e27f20d49ce11958853523f5be6b9bf12e42 legacy-trunk +9454 cda720b1919dfe522acb90bacab3fc5ec8777359 legacy-trunk +9455 a5686e75685f2d3deb56d55712ec38beb1c62022 legacy-trunk +9456 2f2efb8fa54ff3c63a2ce1a167a3f91bc58e3b5d legacy-trunk +9457 7688f3106ae441c2cb78732d2d6d5a0333adf949 legacy-trunk +9458 cfad4b029645e9a7cb3dadeb8ed30492f20daf4d legacy-trunk +9459 b70ba4db767e09740f5d1ca7c07eb892f1a8e149 legacy-trunk +9460 f3364708c09e079010b6a17e6d02086242cd7827 legacy-trunk +9461 ffcaf7afd5d9e3e901fd8dbd5bcef4e1493c3a44 legacy-trunk +9462 f5fd239b178ad008a681b41dbf506d37461c7b68 legacy-trunk +9463 d4e9ac757e5c07ff59c6b387cd2c425d1a636c37 legacy-trunk +9464 638d877ea995835336c0888b13a3226032649fc0 legacy-trunk +9465 1a414158eb665b110cd4a6872ed3bab5a0430ed1 legacy-trunk +9466 2e91fc71cbb50198347291bb734d7983f45cc83b legacy-trunk +9467 fe108a4bb8d58daacf87c7db3f1cb92c52705146 legacy-trunk +9468 b2445c93f03b89c0a068788284bec9acbc660a06 legacy-trunk +9469 f349bf0e932276fb64c174737aacac2b28dad216 legacy-trunk +9470 d00515f92b534d14e5d0467314b8124aedcb8252 legacy-trunk +9471 987a831aaf236adf5611c7969e7f881bcd38264b legacy-trunk +9472 60ccfa9656acf0b52354a1c15d7c3f4b869ebb30 legacy-trunk +9473 ebcf604ccee051129fbaae6f2620dbc4aa0dee05 legacy-trunk +9474 69112990d8e248b9f3bb80f5def0027e9f8f2e53 legacy-trunk +9475 fa19430fec4e49fa31e500fbc297c11af1ddd17f legacy-trunk +9476 8ad17e4ccd9ba8993fb7eb511735cf0dc7dc63fd legacy-trunk +9477 7ce9da029619f55bc5315f7bd7b6f1a8c990bc4f legacy-trunk +9478 f2af3c64571024cf79011c056cdff2b90399aeaf legacy-trunk +9479 feb80ea5488887cee85528b1978080cfe6e5786f legacy-trunk +9480 f0f9b2e4f4cc0c509f884d8b3fd367ef09c2aa51 legacy-trunk +9481 2244439fafcf06c1df66f4fa34666c6f06971969 legacy-trunk +9482 a10c4539127a1cf0c1220f9f03c6ddd4e485e5ba legacy-trunk +9483 cdeeff4d6cb4cf729a883bb07b501c1f8f2b1791 legacy-trunk +9484 9773d3941c96e2d3be263b8e0d4a75d4ad854ae3 legacy-trunk +9485 6f2ab4afa8f94787c06fcf0bd0ad8f37b64d8ad9 legacy-trunk +9486 4b88711985a2589c3218fe560539f4c5f2321824 legacy-trunk +9487 444a6b07da465168aa28db71a82c98e831a1bed5 legacy-trunk +9488 0aba649bd9bb3acd2cf6ba3b3f24384a0831d974 legacy-trunk +9489 7a8c308196d14655c42f31b7e52475a2832090b6 legacy-trunk +9490 2db16d1dbd87cba068323680a2e8c25cb3564de7 legacy-trunk +9491 a5df02b6c7a83082b472b8ff0b48731a0f8993ea legacy-trunk +9492 c75d899e666f168d7e47b005c145d6fc26d363f2 legacy-trunk +9492 84461011a1a0ab402e352f06748f29fb5b5559e5 legacy-trunk +9494 dc85ad1ba0e1563a3febf0a914e2cdafdac2f806 legacy-trunk +9495 59aa3e1c13dc5821b182979661b37310c231c355 legacy-trunk +9496 0a951470b1bf30ffb9cf1f95e1ac477a3c69532e legacy-trunk +9497 ada1311da286ed64007f8c81d2877b0fa3c23716 legacy-trunk +9498 261b11b0ccd64df04f7de081607cf8908e11d610 legacy-trunk +9499 3844de2a709f50cd71244b1d8f27211d627e93c1 legacy-trunk +9500 a66df555f025f2b8a621c4db92e026542eb22f8f legacy-trunk +9501 ccd471c7b863cde22e4d325a3aa31d9ac9efd007 legacy-trunk +9502 e17fe79305c7406b8c7b9cc29efe40f92820e22b legacy-trunk +9503 c5a18fc4f96614bb12df34a3b746b3c164e791af legacy-trunk +9504 4d645909b83455d21badf3ee14b3afddd571aa29 legacy-trunk +9505 8da35f1c739010bb8bf4d3cc17ba2d050ca00850 legacy-trunk +9506 379d1fd42dbf1f91f9121eed91f580c051a6670c legacy-trunk +9507 a367aaa6503cbde2cae0d3af7318a7c55e5aaa77 legacy-trunk +9508 05e0e499014f294ed623cdef3533ee384392c4ef legacy-trunk +9509 8d11ecc177b2b8c5034e4334b1bdff4d7f93fc34 legacy-trunk +9510 fa85a7fd740bc61bb3991aedf642e4ff26fecaae legacy-trunk +9511 6147459bfcfb9a0e67cfa72a1c8db8f96ebd5208 legacy-trunk +9512 ddf52f01bc0a76d6d7c9826ef6687018516d2a26 legacy-trunk +9513 3161674990059968259c183d9f264974efb61149 legacy-trunk +9514 d0a97014ed42f01f626133ee3a87122e4080043c legacy-trunk +9515 2612f9ac31eda177627834b313cf48f4b7b1b8cd legacy-trunk +9516 49ce18a1699f4c62088876d16c2b5baf6b5a2d03 legacy-trunk +9517 ab4d604822d0acf257f6af1a5c3347d2d292b873 legacy-trunk +9518 1c927ecfcbb3b1880d93c90135eeb07e0e44aa19 legacy-trunk +9519 a52a3e26edc4ce9414ee125fbf3470d525e09830 legacy-trunk +9520 84e871e20087aecf84622cdf643834757dfafcaa legacy-trunk +9521 76eaf36040be55cae2bb1db3004ebe2689addec9 legacy-trunk +9522 297ea67926eb94aa49567dda9008684b37d57f42 legacy-trunk +9523 ae63fa3cb1c6f91f63627def04a36993ef927fa8 legacy-trunk +9524 c4a78b924dd9ac88683a8df704a97d9d1d7d17a1 legacy-trunk +9525 9fe335d455956ccb89814faa6c6a662a8b9e3685 legacy-trunk +9526 3eca5f37501a79c101333f5991d39af408e17fef legacy-trunk +9527 aece51362adac5c1aa0e2c768762663a096f68e6 legacy-trunk +9528 90edcb38fb003f243d576efbb1694b58cd181126 legacy-trunk +9529 1f2f5597739ba1eb71d0f6f191e4e1160db1974a legacy-trunk +9530 502880af4654e379d9f7e517002aa5619a3c2721 legacy-trunk +9531 db0dd117541d46e82a3cc0c6838ab7a5dda1ccd2 legacy-trunk +9532 42534409750a04ea119bf6e2b1d84b94a48ac731 legacy-trunk +9533 df05b9c4be7f3770516814db420a9fdf9306c2c8 legacy-trunk +9534 53e54a14f432339d816b499e0d0cacb6b2242784 legacy-trunk +9535 0896d32b60a4b1cc802cf267a5ad12b161d210ca legacy-trunk +9536 f2b2a7ea2a1e355c9f419fc6d860ac71a211cb64 legacy-trunk +9537 6e3b4695ffae1cae007fc47feb88028f7f9e032d legacy-trunk +9538 c95e60ead5e06a1e5e3e996f2d40dacb67d42e39 legacy-trunk +9539 1d0b9028523c6ebb31b8caaf43d350168b8199f2 legacy-trunk +9540 6b4f8a96e1d444f4fd6a76472a67d1963074eabf legacy-trunk +9541 e68eeb35d04d1db7e7cbb1be72d0a88879b3a71c legacy-trunk +9542 0c70264573db3d35213610becc554cd4a08e985e legacy-trunk +9543 8866c69b0afc8dc7931b4a519f410565d4c808fe legacy-trunk +9544 fa42306857572ff853aa02996ba70d8dbf4a3ea4 legacy-trunk +9545 90650bbd9dbb6ac59f307b620ad247a5719de772 legacy-trunk +9546 2cdf11b2ed9b4410fabde16047d2ad62d7d1bac6 legacy-trunk +9547 00e612560492c6aa35ae405bdd2de7007c786788 legacy-trunk +9548 75a1aec6d9b2cd2438d697d4ddd8a2875c8361bf legacy-trunk +9549 0314ecbc5f5d4e25be6eac792442125562f11b42 legacy-trunk +9550 5c353c522a48278148b5efd4bc7c82cb778cc0a1 legacy-trunk +9551 3b519a6d27bb5be2fe80de36698aa8c256430100 legacy-trunk +9552 8cd573b72d4b613cab0e0e3ddc7badf1668a25d7 legacy-trunk +9553 3d8c1b8f60990e84c215d1192cd1531bdf53a16a legacy-trunk +9554 2ae4417ac3309ee682587d0ffaf2cc87991a139a legacy-trunk +9555 c1ad34b3c069950d474da8930a4756ff542fc965 legacy-trunk +9556 0314553482a29e74438a251bc36bc623bfa6671c legacy-trunk +9557 322dca5ee145bdcb47dbd424a0b501098ad9f513 legacy-trunk +9558 924f8a0117d5fb011d5f3e5ad31719e343f96329 legacy-trunk +9559 0baa2ab42ee90cddac66f33102f6bb827aad569f legacy-trunk +9560 419b86b04ae4d98b3e6e68f9da358fe95899955f legacy-trunk +9561 913e48aaac761eac454142dda06e88c0d979e49c legacy-trunk +9562 0c6887765939524e4381cdd2472a4ff181cc4e60 legacy-trunk +9563 9b05c20c5776a4f25c3291714c748effb2236232 legacy-trunk +9564 fcb2e3ee8995956b80576b55e90a339570957415 legacy-trunk +9565 ab51da347316d4bfab74b05e11304502db74eb6c legacy-trunk +9566 a2e054032899c62586c0436aa9d2a1c241e1203a legacy-trunk +9567 29b1686875daa51513c41db6285a223698bc06ef legacy-trunk +9568 96460ef33fded7ed12fd75a8a7b556f4e2fe61e3 legacy-trunk +9569 2e8bcde4c248ffbe69967d7723747eb1cd846a53 legacy-trunk +9570 8a55643e667fa172ddd05d27613f3992a9003b2e legacy-trunk +9571 af826b23f006430835e0a72c9b6109a28f5362d2 legacy-trunk +9572 e5548096b42a5fb9126e8eb6065f5e9b8ef57897 legacy-trunk +9573 bc1976ff6ffd30fb3534749e897859a27987caa4 legacy-trunk +9574 5bb884527446f965d1e219aad62bcb4101c3ad40 legacy-trunk +9575 00a85ab0337f7f87cdf626d3bded5085c8445bf0 legacy-trunk +9576 1676fad7b63e7529d2f18b5199ef5ab0932b1d8c legacy-trunk +9577 f7f55bb6a3b3080f2e08bb25013aba99f3dced31 legacy-trunk +9578 808479f85a29a3b119eaf5b5dce7ad8dad9e3211 legacy-trunk +9579 0dc2fcb076aca5b7b4a2fd15dd03c4c04478e594 legacy-trunk +9580 efaa01deffd2db0420e3c9ab78ff6e63d36494b2 legacy-trunk +9581 2e5a116e54ecd5cce1e4704c97e31fe58f404a16 legacy-trunk +9582 e7061ab2485215e44bb47abe928e627a2956f7cc legacy-trunk +9583 28c7d5fcd3ac9da31f6a91f8a8d2e71c16811a63 legacy-trunk +9584 3176deacb6d1f0eaa6501069e2936d79eaa7b889 legacy-trunk +9585 6c900adb1ec3b15a103c3c8a2b6a6918cc95db44 legacy-trunk +9586 ed62548045635e59beaf27ee765e8debe0aeb08c legacy-trunk +9587 f43667866d5e5e621fad5a50797e841f884b1269 legacy-trunk +9588 2822368c266a3f0996d06ebe0df9004f57a48f1c legacy-trunk +9589 f063f1eb2964bc431a70c2206d84dab609d88028 legacy-trunk +9590 ece4123e36ea2cc99b5de32c921be7c75311bc41 legacy-trunk +9591 f5f305d7a6175744e2c3dc71a4faddf907266505 legacy-trunk +9592 fa09372f7872dbac411bd75b2577c368b8af2ac6 legacy-trunk +9593 ea7dc510e2df569e85b070cbb117e062c76fc000 legacy-trunk +9594 41514d1ed664e2afac1bdf5d315a0effcdd3bf89 legacy-trunk +9595 419dca2b3a61790b43ec59dc1fa31a1a3d9cda51 legacy-trunk +9596 e9108e97a5a017e027df33cdbfa5543e9148238d legacy-trunk +9597 516189984b0ca394ce2f4bfb5aebcbec583dced6 legacy-trunk +9598 0efed4d3323b1302acca039bd716e5ccf8d2e363 legacy-trunk +9599 c8745d205122716c9e10db799fb6f12f9e686484 legacy-trunk +9600 41d6db8e26dc03393df87b49272c5b249bb32569 legacy-trunk +9601 5d517ddcbd2ef51933e8f1fe4cc1c5d3233e5037 legacy-trunk +9602 c037d00b1e2cba8985cb639c1067b3f64557f170 legacy-trunk +9603 de4c81c0699429bee497fd8b1ad744f8c693d5f9 legacy-trunk +9604 d2c110acc60c16626295570f7f6a59303f2c3990 legacy-trunk +9605 1c4baada559e230d3421616a2a1f6a99c9e7b6ba legacy-trunk +9606 de4dca9e4778cfef97a9a8cf1779d7690ae34bb8 legacy-trunk +9607 97315bf08fad623d6204d05e07b76d376699001d legacy-trunk +9608 e4c31dc30623c6d8a8160750810856e3cff14a20 legacy-trunk +9609 dfdeac5e18c625aad998a0ac7e604bf5d5f074e2 legacy-trunk +9610 96fa6753e956279b5b69e53c86f1634fa528643d legacy-trunk +9611 ba849e48f9cae238c933abab2c94a9396f0e5b70 legacy-trunk +9612 3939f9ff665f8fbea35dca5771e99643185d0049 legacy-trunk +9613 efa22433e855da4f455b1e5c0c553687245f67d5 legacy-trunk +9614 93ffe641a51276ff4da17c2f54ac9d1d8d092c8e legacy-trunk +9615 16a3cdd2f1d13b820098f30f3f514d144172c618 legacy-trunk +9616 bf91c0e165aadcf5efb10601b03efb7a6d525d3f legacy-trunk +9617 dc8687b53dd0f1768a01b968ed9253843a744ad7 legacy-trunk +9618 e7bfea41f617e88e8756fc15a4870fee3a602c53 legacy-trunk +9619 b81fb67d908d7a973ce1022d6ff034e800947b1c legacy-trunk +9620 aff1e7b1f523d7305bc3e11d32ca70254188500d legacy-trunk +9621 3f0be7de7ca5ca54acfca3e1934c3d31897a1843 legacy-trunk +9622 4ef6a83b2e625e16359cefa15897f8eaa10acfa7 legacy-trunk +9623 6074847fad1de497028ea92d4fd0ecf3a8b2c642 legacy-trunk +9624 49e4e3f30e58802ba6dab0ed253e8fcc07aac83e legacy-trunk +9625 5128c6072aa51ba716bc7fb3bdd002a589cdd860 legacy-trunk +9626 d48b99d8561742d5d77c85df558127e8d6bed9b8 legacy-trunk +9627 7edc30df73f6a2cb20e5acb2e6e3a0c6c858e7ff legacy-trunk +9628 b864029a5bc5c5d03a013593f8c25030b156732d legacy-trunk +9629 d339954ea57d8987931c4678cb9c154554be890b legacy-trunk +9630 d39a805852c20ae9c7ef8df7bbb8defebc927177 legacy-trunk +9631 a7690ef5e15937e10280e9534c4ef1a29c314c24 legacy-trunk +9632 74916c96ddb96514f452bf44ffa9a038222e9fea legacy-trunk +9633 30ab39c2b1862e4f0dec3b8d4ee6eaaaddb70772 legacy-trunk +9634 ce6ad170c0ce72e906fe97b2fcfedc69a91c9311 legacy-trunk +9635 a6fa9f3cad137caa5f7c5e2c79a9b64b7ad1faed legacy-trunk +9636 fb71b92d143aa1e16b5b024ca0a1c18cd921c90d legacy-trunk +9637 49a20d00e34ce5f5c6df759c0fb61651a629944e legacy-trunk +9638 a64a423d6b540aa64471176fc6cdc61f07194a1b legacy-trunk +9639 5ab708181fa62232f06546fadff2e028a11f2fd2 legacy-trunk +9640 8fb5fd075b2ab1320384bcfab03f50de772688e9 legacy-trunk +9641 e5646eeceae8879fc0a3dc53ddc7709535803bb4 legacy-trunk +9642 c3b5b1c25c51c7f16cc7a8ba03ec6bf75f772ed3 legacy-trunk +9643 0d5a9a0e7d64a12e02be7073572582d3dd2b663b legacy-trunk +9644 66cb00317acebb6f580319a0f3ff580b3df61d7e legacy-trunk +9645 e58c7b50e9b9c6b96d8933c5f3d276b569258ed0 legacy-trunk +9646 212597af829bbcabc17977dc583e8d2b8451e532 legacy-trunk +9647 373d78118113b8cf4f8908662e303db577f2dc06 legacy-trunk +9648 c5e767e22bd1c3e65d36b623fa89e491cd588aee legacy-trunk +9649 ce4766fb3f563d17638c91a1c424b2556bb66592 legacy-trunk +9650 b5b0c324ce59878fcaeeaa153efa1d08b7c37b00 legacy-trunk +9651 0a4e29a28655e40430ecf24a839a718dd2f7a72f legacy-trunk +9652 dc9bb47b35528d7df267cca3d601f613043cf451 legacy-trunk +9653 a28bf62ac335b5f306a3ee57ec92da217f8a61b2 legacy-trunk +9654 0bd185c2e58103e1e80d093fc388e22d734ad7a3 legacy-trunk +9655 7c004fc1098737acf015942e87bc6663affd814e legacy-trunk +9656 40987b86a1c74fb85c96fd7972e346a07ace5590 legacy-trunk +9657 7d61fa9b57a8c542a956afab2a1b30c3b39cd2c2 legacy-trunk +9658 3a960b2e26677c1bc5be4b4a5189b0dd16ed9ed2 legacy-trunk +9659 4f10d233f1dc6d3d0b416bf9abc67a1467316d76 legacy-trunk +9660 59362ea7e0f8b41064d195009fbeb9fd26707569 legacy-trunk +9661 de5cb789e9f0f2f87b991a7bd8ae9757c9869cb5 legacy-trunk +9662 6f78195bf8f687f70ec5868a9df6211da9d3a621 legacy-trunk +9663 a596bbe72579d8b5e34cf413179f36f9ff5d7849 legacy-trunk +9664 6e5eb845246c09bd9b4543df0d615764eacda75c legacy-trunk +9665 2a9ba59abc382b79f1828d84353265a0f0554aca legacy-trunk +9666 ee4a1a30d7ce927a796a4631fab5bb3747e4e3ca legacy-trunk +9667 f3cc8d53ac803df2aa30d1b1d3767b0857fdc8c4 legacy-trunk +9668 1f9d942f156cc932fdef9133455b2f804d0d1fc0 legacy-trunk +9669 7054be5ad7f6741af9bb06547f399fdc69f4da41 legacy-trunk +9670 af98b421424cc39b8c6a8b74ac6f6e94de46d9d1 legacy-trunk +9671 e279572e2da2551667182eda26a7fe5073f856b2 legacy-trunk +9672 b009a4c24188d5283fbeb02c33536ad5f8c3adc5 legacy-trunk +9673 c123a5a59cde21d0c128aa3da2ede9a4066fa27f legacy-trunk +9674 309fffe768a624218552900507d6d7e456cf7163 legacy-trunk +9675 26d07735ba4a5b267abfc870e63df6899fc51aaa legacy-trunk +9676 5cd2f699bf69166ad7a5d59f1ea65fb519bc7d68 legacy-trunk +9677 db007a2ca7b636773521b5bee3dd7292e54a9ed4 legacy-trunk +9678 98a9da520f1d8c19ab5bd4e203327f4e8ccc5213 legacy-trunk +9679 720e9183961ee8add7401323b9c5c0153ddf5449 legacy-trunk +9680 fed3d200fb565d2ace801bc61136a8b37fcbc81e legacy-trunk +9681 8c129a5678677952a3028c9a0cd0b8a4b9d9be7e legacy-trunk +9682 48ab66874b1191cdd443a0e3130f0399ad09e922 legacy-trunk +9683 09ffab273eeb565a7619594d90596852ff4d8e1e legacy-trunk +9684 3f255aedf621e95e26729f3fbd09024db74a24a1 legacy-trunk +9685 06db10c76dc952e3fa0194d83b40c473976bcdb9 legacy-trunk +9686 ce271e5f9bc5ac897c0b9a4d82c3da70e58616b5 legacy-trunk +9687 c9fe35a8298ad8596a6311a70da29ddeb67bb33a legacy-trunk +9688 bccdeca81669ce3bd3014a30310cf71f52fa520e legacy-trunk +9689 c764217ae6eb92d31d9005cf7eb29c8ac5c31714 legacy-trunk +9690 b9bbfa169920e455b12713d832a887d9f921b300 legacy-trunk +9691 ff524b69b664a3fc651f9fe937e8874990b5cab4 legacy-trunk +9692 6222d3371fb80eb840ee52d81236c1f3b896979a legacy-trunk +9693 5a7f268a0781a94adc5c9d7535d8b19ee8c46ce9 legacy-trunk +9694 16ecf1554a83579380e7376eeebf11fd3195f12d legacy-trunk +9695 bc0086404a9a552921bc32aa1182bee35bf0cb89 legacy-trunk +9696 90a35f1b90085fa19f340844e10526a6fac23904 legacy-trunk +9697 640b97d105df71152f9732ad533dfbd353ed335f legacy-trunk +9698 d0ca815c807254813e23c88c9dcd02fc1ab1c987 legacy-trunk +9699 95c101964414985730a891fd306996bcb0b4a619 legacy-trunk +9700 10fdf16f4de9c1f94f6b85238bc640b0c3541595 legacy-trunk +9701 9dde07a593d83fc232c70db0129133302c27a6b5 legacy-trunk +9702 d33d45622e6711d8b1c979cd500faa37270508dd legacy-trunk +9703 11f34be0be11ff4277d50a2a479f69d479a04a3c legacy-trunk +9704 47802e2f5bedb4f22bbc54d316f8118cf0381bd0 legacy-trunk +9705 045ffa4c56f7856a234a9594dddd76e5026b1cfc legacy-trunk +9706 bc6482f7e78fa3466b8b941ec91b97ad9dd0ae40 legacy-trunk +9707 bc28a0ea6640f77b4bdb4084f26060f49eba488a legacy-trunk +9708 375723a7559c715e094bebc253f15bf01e88512f legacy-trunk +9709 177ad73bf1a925f009335d7d7fde1a8d92250bb4 legacy-trunk +9710 74c57288a02b9967ba648f4cb5fbe33b33d4c299 legacy-trunk +9711 08c5bbfae52c0dfe063efe80231e736b00666692 legacy-trunk +9712 23c509aa3f0d9473ce52a15a760024706c776776 legacy-trunk +9713 debe8e08126085f400b3da63b0d23d76424dce6d legacy-trunk +9714 fd7a5993d06daa2848fc10c17b2da71581b48b17 legacy-trunk +9715 cdb4a81379ad7e5973f15bee59b16f56e42640ba legacy-trunk +9716 aa54d7c3daf90167a95fa6bdb43ff73d873ba47d legacy-trunk +9717 306f737bab576a838932b5984a466dcf765d56fc legacy-trunk +9718 2b82231a97cc6abf765d83a4a2096dab113f4117 legacy-trunk +9719 b5985542bae1e69f653a477701fb67da0f1bee86 legacy-trunk +9720 e75006069367fc6f11530d6ecb5dde9da5fedd80 legacy-trunk +9721 5f5b9e871886cd8b9ec41519e6e25304ce159549 legacy-trunk +9722 0b53c0393c88263d7e41b8f19a3bb1db2fd4b979 legacy-trunk +9723 a71168649dc51ef83b355f26d9927eb87d4c3df8 legacy-trunk +9724 193d704cbcc851ae738c1fb8a15a44cc2c0cece5 legacy-trunk +9725 1272b58e84aeb6c2df7a39c0f27bd00bafaf9464 legacy-trunk +9726 287623cce289453e26cc89bdc9ea9acb43697503 legacy-trunk +9727 f0bb3bcf397b25496c0d7be4c9f180a4dc4a31c8 legacy-trunk +9728 c698690a27b2591340051c0cc3c0b8876265940f legacy-trunk +9729 8a08025ef93d8f9543669ff7e360cca1989281dc legacy-trunk +9730 d3fd2182cfb8ed02d424016b4e6b8c99d1b36170 legacy-trunk +9731 4e7402c8e460bfbf8a3b38b11f747e2ed29f10b8 legacy-trunk +9732 812615e54550e69adad70c1f3869b2dbd9888b3c legacy-trunk +9733 ca78b095ecf01463e3e69575cab91d8ac12f8acf legacy-trunk +9734 8c749dfc49bfa38ed6df02b64cb87e4daf2ab6ce legacy-trunk +9735 8b0d6b64a0ea39ce33e96ed95cb26bc0a5aa9f74 legacy-trunk +9736 614d8a9084ead475800d1f3d9d9bf44773e70bbc legacy-trunk +9737 7cdaa4495530793baece70e3e7b36f7937b34dd4 legacy-trunk +9738 a7e9524a2a52c64aa2863e0651e3e8db765ebf60 legacy-trunk +9739 bbf3507ef3fef2840a1d524e0a96b423f9021413 legacy-trunk +9740 c09907104092a59250f7a7f5c72aabb90c4d20f5 legacy-trunk +9741 41a928cbcc5eeb8e0a6b887837173026d03d06bf legacy-trunk +9742 b8d484125c92dd6250e48fa7398e9c3fb01148b1 legacy-trunk +9743 c002ffd1fbbfe7ba4caefc055d4fa0274aac04cb legacy-trunk +9744 83c0e9dd4221f86ae73b46d2287ac3ab2beb74da legacy-trunk +9745 ca14fdb955ef827bb47c68f50fe9419af5d971a5 legacy-trunk +9746 a2f4c944cb8721bfc66eb2f9d67c5bb38799eecc legacy-trunk +9747 682d3e5b267f470b3c1014b3025352c4d8b3ded1 legacy-trunk +9748 f55969c1c3d54196982d9ca2ffebc471f357e9d2 legacy-trunk +9749 0061d3916ae4b15e9e0619af7348155ee2edf876 legacy-trunk +9750 c817f86ce7db67193a7474c42a48c5dbd4b74dad legacy-trunk +9751 15ba68c33ed1ceda30324203fae69f5e1c7b5999 legacy-trunk +9752 f5ea1b30cb3f749e5b98d3000d33d4b94acf9c15 legacy-trunk +9753 00cd9fe4f6f2b089db5b45da14fd913f3f1bb8c2 legacy-trunk +9754 39de49434df42611c47b69af6892431266f483dd legacy-trunk +9755 bf4e790bd61a4b9b139558185147093c511aa177 legacy-trunk +9756 59d2761ba1cfcaa0c2f048a401ae311a713b8d78 legacy-trunk +9757 52fbb731210345b01354e640b44705ca2a71e783 legacy-trunk +9758 f214ee8838de6826f360c41d70b8903f6af01c61 legacy-trunk +9759 1fd7873879af82c9b938b55daf3bc1d7ec0b10de legacy-trunk +9760 6d0c485ba5e4193c26b344335b2f6299ae1c3284 legacy-trunk +9761 3a3ee075dfb6981dc6945f10e99255d636e526c0 legacy-trunk +9762 2f0ce4fb810ba301bde2d1f5e6a8bf2c3afbc5c5 legacy-trunk +9763 ef269ab770bcc5be6eb2a6c477614f58085cbf94 legacy-trunk +9764 1d51179cf7c7fe4549624e896bbb8196c0dd8c87 legacy-trunk +9765 af2bc5f45918a7012088be557da1c92d0b409db7 legacy-trunk +9766 4148e4bc8b285f9b10d9c54459cb1ecbe6008e3c legacy-trunk +9767 6fef030a95d49c65942e18cce7905e8296dd7519 legacy-trunk +9768 72d531d545729b0036890259ff60715a1bf0ff2a legacy-trunk +9769 b7f84d179e51a03d5f5b1d6229f4f178e2a2f5b5 legacy-trunk +9770 6ad234ad8de5c6d59f6f70534d8cb0ca4764a289 legacy-trunk +9771 0dbec98acfc9674649a7a5cf16ad1fee8ea23597 legacy-trunk +9772 8e64c5d5548a2a40b455caa17549b26a1c2cd9de legacy-trunk +9773 285449268c37f08fb0b8c19ea04df4602efb87db legacy-trunk +9774 b024990d61ec8e23d6da865c59365f36157def1a legacy-trunk +9775 fb0c5b307476deab21f85928464369b0dfc8d2ae legacy-trunk +9776 3703495315e9a643329194e1bb5341fa0219c21a legacy-trunk +9777 08f9b901669ba1ca2cffd46110eaecf8542afb43 legacy-trunk +9778 441ae4f4cfcf915f3ca7708f293daf24d810ea1f legacy-trunk +9779 4f84202c377acd1e858a4b2b4832f9ba733cf872 legacy-trunk +9780 640f2ef4da2124e53bccbdcb972afaa678610586 legacy-trunk +9781 658b742e435035cc689e1fb86080687392e89c82 legacy-trunk +9782 26a8e9e8cb8411d68a137a8a439d6c56830a75e0 legacy-trunk +9783 067e4813c6d67a080cda17af791a55268ec1fe27 legacy-trunk +9784 f89e9cddc096130557e6d9e7f42c0f51f79d731a legacy-trunk +9785 c98fef922d51468cf20495080da0cd853aa2f2bb legacy-trunk +9786 8096fec722ba796af37a297cef146396ff3784c0 legacy-trunk +9787 d7266372dd371c9d1a7238d613c2b94f6f3eb8da legacy-trunk +9788 6095a472f5745c3aca7419595b7196535b633194 legacy-trunk +9789 df764e42b258f577ed53aeb1cfa633b15abfee24 legacy-trunk +9790 48df2080d7d4829c1298a8c1ada3160ce2009edc legacy-trunk +9791 5ae87a7f9a323fd652b29bdb914111a3d6812a4b legacy-trunk +9792 d23bb969e63a0373c6fd2cbd43ea0fc3ca9764ed legacy-trunk +9793 3a55fbb99f20477d40b4e7bbd35061eb91d0249a legacy-trunk +9794 f6c6d4d97dc651a5310f74331557b20d1e8e0f15 legacy-trunk +9795 92784824800c3dd373d14e5965e4527a7c5d51f8 legacy-trunk +9796 830009b573ea094b74fb44d032d2f17622d02676 legacy-trunk +9797 09892bf6a50dff15772440ced983983584c85879 legacy-trunk +9798 1928f05ba400ca2eb633e63c34f86c3e5771b783 legacy-trunk +9799 98efd5d91fca4ffdd6a5e8073f7086b31e2ee9eb legacy-trunk +9800 724f807260550de82aea604e5accd57f2d82bada legacy-trunk +9801 47ecf02aaf97b14e1c1c861b37462feaa77ff1b6 legacy-trunk +9802 55125b1144fa3a6a5e1691a283d5b81ad934ebc9 legacy-trunk +9803 6e00fb723f69dbdd63e2e867453d1592a1eff467 legacy-trunk +9804 fec8e084b074f57027ae3e363f75384ce74c157a legacy-trunk +9805 45b66e9ab5efa0081be395db1912e55a4bcc8d4d legacy-trunk +9806 c2a0869852eb845b98a9fd67501a282465f425b3 legacy-trunk +9807 e4c74f7f3e46594a4db8e184836482dc568cd6ab legacy-trunk +9808 9ae215ca20db4b877478144ed888f27331e6f8e0 legacy-trunk +9809 83a30a3583d3f36a394b7dbbb6f2ba4acf246ec6 legacy-trunk +9810 252539871873c21aa059571f210baac9096110a4 legacy-trunk +9811 6e9688ce7c57610279fc9d0ed82fb7f3c96d4ae4 legacy-trunk +9812 3965b69d5116e5990fc463fb06cc0fe382f6ceb9 legacy-trunk +9813 c37a28a3bb85b267a84543b0da04bc7e6a856a2d legacy-trunk +9814 e148ce18c3ce4b3c9dce415c71345775ea91b9e9 legacy-trunk +9815 12939c8b4e30a544dd9ef5c7799656aafc313a6e legacy-trunk +9816 f9048600905e8cd4348c53e1abe3c994bdd43c44 legacy-trunk +9817 e8b8ba169b6dd0e6a5391f413c5f3cb54779b0b1 legacy-trunk +9818 6dccae75b26f6b2a0c635c1f69a284f6ac5147a6 legacy-trunk +9819 0069f3eba9a2502c9fc16cae4a40adfcf74c2409 legacy-trunk +9820 9f74f9223b435578075442b03c5998d1e4a6acc6 legacy-trunk +9821 4ffcbcc5e8fe3933369a236d7c0b2509ec5b8539 legacy-trunk +9822 bba2b205f8edd49ff4ade6d73b6d034c984cbf78 legacy-trunk +9823 080969dbfc7c518905f070c0d2cbe697b83d971b legacy-trunk +9824 5a9256b8c3382a3eb883be9a284de355e261084d legacy-trunk +9825 d76a4efa1f51df945064387b9fe861a5ecacf319 legacy-trunk +9826 7ba9cf4e0c40404dca3223180af29a12d41219f0 legacy-trunk +9827 2bd5fbd6087099a854cc49ba993bdbb7ac7a685b legacy-trunk +9828 4ff5c1498dc8db9c6f8fd810d6a1bfc9905adb5e legacy-trunk +9829 1baca5d2ba57a4e5b0cb2c6a79a8a8d8266aa190 legacy-trunk +9830 0d31c7d9697d7c5ec79b7a63e040eea682670d20 legacy-trunk +9831 a4d7bbff95a4b5f5645e1d58d8213b3c5975b6f2 legacy-trunk +9832 e4367d206a55f76302b3fb04a3a2d91e85814353 legacy-trunk +9833 b285fbc2646a4986a5c5ea93e1f9d15d803cea01 legacy-trunk +9834 c6325029f7dc88c6dfebe2bca40c593125343633 legacy-trunk +9835 3e27f9fc75a290f51fa2275cc1ff40fe9a08ffb1 legacy-trunk +9836 1421aceae3465045a5787de7511178f7ab78d5d4 legacy-trunk +9837 d70086b08a0faf01a689c98c1162b901e1f0b700 legacy-trunk +9838 2a07258b1f4e086cf7b319b611455d04fdf0d79b legacy-trunk +9839 621440bb98b9c26088c98c1313539d7eb835e133 legacy-trunk +9840 85ff2046e37f81cd84e0010aea091859a2cc3492 legacy-trunk +9841 f4a4723b95532ab904af660384bc704818ef2822 legacy-trunk +9842 f1c88d2d125bfd4306dd0658cffb899d4503496b legacy-trunk +9843 187b89675ddae40c40506b8673549eb71949a3a7 legacy-trunk +9844 717c3daca08e953937889982d92c15ab5df61fb7 legacy-trunk +9845 0c79cafec4bc5508c6e6e30721d7b2294b566064 legacy-trunk +9846 21657bb0be35b4c71dcc83449f2f36d23a2ebc0b legacy-trunk +9847 fed3cf72683dc1747ec3c2c4b9615762054657bc legacy-trunk +9848 1f4625fe66e2ca8ce0ba8bf2394d2670517c6119 legacy-trunk +9849 f5a189afbcf994dd9a145db8f24058ccd1b2170d legacy-trunk +9850 1e66c4e31d150afd8b0b9e5bf22e56e9dbf1a7c1 legacy-trunk +9851 89559ee85e540d2ee4f085e6a9abbfc09da2bf27 legacy-trunk +9852 8d11b3671e5d6187d937e68838b85bc5d127fffb legacy-trunk +9853 00338a813dcb8bbe1c27f5944eae469942b7d0b3 legacy-trunk +9854 fc6be7ae012f44cd8d240752d682e9fab18229f2 legacy-trunk +9855 f78af5bc78edde66b8375ed6760232e1452e56db legacy-trunk +9856 0e0e88f8e1ad51fafd361b0d49cdb8e640def92a legacy-trunk +9857 e63f2adfa7cc845e991902d9c514b29d43e12063 legacy-trunk +9858 62ac57de7adbe46cde8ef085966cef2aceb0e9d0 legacy-trunk +9859 10840c3737a7dd1093d2ab860043fe2895871068 legacy-trunk +9860 69add4d7736f106569014ece99872f4e446b0617 legacy-trunk +9861 f8a77224ebcaf5134bfcc1f938c957684213f9bc legacy-trunk +9862 b58b2ee65f75f5192a3d90f4085af74bb157c0b8 legacy-trunk +9863 6dd651caf9e066e3ec91e88edfd6c737807e9892 legacy-trunk +9864 f4040f3bdcc737b665f9c29ba0a6d523fec76475 legacy-trunk +9865 46119d1e9413f7a0cce78fefdd2552b8de90b213 legacy-trunk +9866 edc0d021e4276dfb5f7eff29cf58259acd41f507 legacy-trunk +9867 543b2b4af53259117641d4c41e16c5f1771cb1fc legacy-trunk +9868 223433038a47e784858f44acd81e2960e07edb90 legacy-trunk +9869 b64a8cec8d75c5aa9325a871da257becfd8b9da9 legacy-trunk +9870 0333e4a952f93dbdc8c31ec5b12b9ec073089581 legacy-trunk +9871 028f70d508c0b615f62f83408650b56a4a048100 legacy-trunk +9872 767bf8004cffdfed2235c04f73f22411a89cbc3e legacy-trunk +9873 786875c4c62c50d7c1e0410780d305dde89e1791 legacy-trunk +9874 fbc75535ea93cb3f2b5486b10b33d465b8c56fca legacy-trunk +9875 45d65bc8a550f3379aedb93155fa723fe832c3bc legacy-trunk +9876 7afc15f08d82cac37239c501ed12fa895cd53289 legacy-trunk +9877 b8d78650f8df1d5bc5a71c7a2f4726f2ff237654 legacy-trunk +9878 685c510e14ceeb5d4e2fc67e424e41ac1e766e28 legacy-trunk +9879 8c01cfee14ba19267b1a2b0c327de69a33994925 legacy-trunk +9880 c7454ca7d3acc143e02a0b6f9bee0520060b9af2 legacy-trunk +9881 185c1d47ce7a08749ac73a988cf6711e338f0229 legacy-trunk +9882 3a77bca226b9377ff2a8da233745bac9400be897 legacy-trunk +9883 c51f7b6d2556e4695098de2f7ce7aec8198dee0c legacy-trunk +9884 3a49f5886acaeb09e63bb84dfbd91c8d32a1fd7c legacy-trunk +9885 2c54901471f5d904d0bcaf6b3845d2ad300b97e4 legacy-trunk +9886 d88bf767145825ab4c4a6db9d0c8fdeb7abf5931 legacy-trunk +9887 dfa247764323702458ab0999f16f6cb66324cc18 legacy-trunk +9888 d758841a7661bc7f3c808cbe73140c473fb95b91 legacy-trunk +9889 ad891f6a19eeba4d32518720d79c584227ee64fc legacy-trunk +9890 297bea233e032fbdf7937ab6d84934167edb0876 legacy-trunk +9891 dedce9b6874240518840270f78d92400a1abed93 legacy-trunk +9892 65848a7c77b982531a6e7dc970f11bf69b9e5958 legacy-trunk +9893 a1435c7d339b7fc213763b3bce10f4618c25d04d legacy-trunk +9894 13f29b62a209538fd5628ac36640ea42679333cb legacy-trunk +9895 6255dc861fcf1353fe2ad262568c1a8ad2cb0646 legacy-trunk +9896 b1f195c97ef99a4fc6f249eed1a6cd7845c4aa30 legacy-trunk +9897 7ca2c3d8766206ae25f5478b4039c2fc561d5063 legacy-trunk +9898 3d9f51050abca45b72e9674d7627494ac69c0bd4 legacy-trunk +9899 4393897852b24486b23921d0d4c195423d249e2f legacy-trunk +9900 2d508822e7f6885a83e393e8f1adaa5c659b6986 legacy-trunk +9901 6e73f4168b062eca5f77a07b558f23a173130991 legacy-trunk +9902 11e9337cda3d147ee6d4e02a7dd2d6583e2c6b38 legacy-trunk +9903 29bdbe039e05ec85ad7945b02f6cd421255852ac legacy-trunk +9904 b3e3dae9b6122442d146221b04b3329aef5e9169 legacy-trunk +9905 5af7d3da87cf6acb7922602c8072fa29a2df2e72 legacy-trunk +9906 3f2284344a41ba24f75d056fd03cc886f861a522 legacy-trunk +9907 83e7759e7297869ddda1cd17742d1e5645cf6eb4 legacy-trunk +9908 7df6f0453469177cd08fca58a7eb28a9030002d1 legacy-trunk +9909 a9fbf21ab7ce9ce7936e8a3cc59945cde084fb8f legacy-trunk +9910 365526c4cf8bb3238466594d07323dce20582eaf legacy-trunk +9911 4f45dccda96b28747e33d41e154d5bd1ca4b43b5 legacy-trunk +9912 3de0cb82e61ae651be0808e620189095edecd769 legacy-trunk +9913 cbacd1be7275c00f3c63b95eb5a384cf2eb000b2 legacy-trunk +9914 d1465b5c0a0894e15511dc17babc3b4172f420ee legacy-trunk +9915 3740ff2ee053ca93d8905bec550aa466b9a289e3 legacy-trunk +9916 cd11690cb14b072e70f25e8c3fda748a11b9d181 legacy-trunk +9917 a64c89dae18d60e54a82eeade3286a74f6b30418 legacy-trunk +9918 590f6254f9a9aeaa42023edb568be8eb0725da7a legacy-trunk +9919 a8059b96bc355aa8b62fe16537cfc20e934cd316 legacy-trunk +9920 05189f7cdbeb184118d6168ad331f950c1a9f068 legacy-trunk +9921 9815b18b23e3b685a9af23542b53cb98d1b36791 legacy-trunk +9922 3720e996e5512739140dba298c9d1cb255039273 legacy-trunk +9923 1668499206dcfbb582e7e52a6348a54d40f5439a legacy-trunk +9924 2933fb34f333fd52c173920fa94f0540e1890b62 legacy-trunk +9925 826c71801911cb0c6397d8964ad66148ff8e4638 legacy-trunk +9926 c9b6850c4336a4cdafa2a3f5002edebac4b4f179 legacy-trunk +9927 5edceb8f1fab7ac680b19a9cd49bd55bc302f2f2 legacy-trunk +9928 0d767614c941eb10f5ec2932c43ac71ba9adba19 legacy-trunk +9929 0a9541a86689094de413f4ec6c00cde2d8eb59f3 legacy-trunk +9930 23cc342ee150ba8401fbc3c39bafe340a35a00ca legacy-trunk +9931 3c38c8ad5623fb40d4afda2613325c377be9b004 legacy-trunk +9932 1b4a2e38ab5ec67ae3e5190e7f8ed0b253768630 legacy-trunk +9933 483286e219e1f644463b4d2bd7b2f126a5f11ae4 legacy-trunk +9934 bd05ab4731f76b3ce44d430c53e770d4b6946888 legacy-trunk +9935 1a9b09b3caf8ae5e285b704d2d9ab7b4a4daaeb4 legacy-trunk +9936 ec95e8dae5041425ae57ca57c196f0e4e4480e79 legacy-trunk +9937 4aa4710d894c8268f42e6a40816956b6d5b6cd59 legacy-trunk +9938 bd81538d4ddfd47617fdb45ba39858a9fda64cf2 legacy-trunk +9939 031de8540a7ea05db54d01facf52f8f423fce0ce legacy-trunk +9940 9541b9b0937ddf14c0b648b1cbec230472ba5f5f legacy-trunk +9941 82947a1926f782defbe0cd75397c576099e56c13 legacy-trunk +9942 021237ba5007425e020e7ce968d8903955860a2c legacy-trunk +9943 7b2fd486efee1cd8fde20afcc16b88375bd68023 legacy-trunk +9944 cb1a577c0239cbb0d96879bc04fe29e356f30be1 legacy-trunk +9945 0360e3e30a2e40c4922f78d5d718182fa55997f1 legacy-trunk +9946 149a547988961b7ace628aeec16ee3abdcc616f5 legacy-trunk +9947 ad3e4eb35da772390c50c0293786b86fc9a06e19 legacy-trunk +9948 6f869e5d33ccbf7634b7a0be5eaa412af82efe26 legacy-trunk +9949 881a5e6714dcb70a5ce079f521fdbe071d30f0e8 legacy-trunk +9950 6bb506ad96848ac2a28cf5170b7f57c9bfdfa2ff legacy-trunk +9951 2cf1cae9b46ef37f02d5c7864dc18850d0accbbb legacy-trunk +9952 076b82e040a5c9354e4b85dccb21e23956cdffad legacy-trunk +9953 784fef837b52dc8d60181dcaf50c8c002ff3477a legacy-trunk +9954 ca66a2536cd549a597d96b18254e03f47f494983 legacy-trunk +9955 b9421e17ddf7631d07fd23f0afd61ac5b6c4cf7a legacy-trunk +9956 80739b0bc3026c92a8d23d6a4ba83ef8f6d89571 legacy-trunk +9957 bfe57efad751fadfbe9b265cf56e3876b0db9650 legacy-trunk +9958 55c3fd1853cebb2f4ce7b9fba3a068346c7f468e legacy-trunk +9959 cca39d719aba6e5c04596d3954607528d0d32615 legacy-trunk +9960 f01ff26facaeb87382a0145da9fd7ec6ea39aca9 legacy-trunk +9961 ba4a02c0e90c792afa7e1a7c91d3345e4c10b813 legacy-trunk +9962 580f6c92270bb870169a0aef877ee6f4a3a55b22 legacy-trunk +9963 1dfc15e3113043d6008efee8c29fadef1d70c45b legacy-trunk +9964 4cae2de30b57fc5e0bb3d5ccd6fc378317d30ee3 legacy-trunk +9965 05d0b6fbea9b5dc67ceead3652fdc48267292c4b legacy-trunk +9966 98345aa1d5fed31633fc82eed19d927921460b77 legacy-trunk +9967 427b81c2452fe1d72fa100a4b7250bd40b4b1bae legacy-trunk +9968 3dfc376e6f1a8be4ce9a0131fc950e6a8a714b12 legacy-trunk +9969 7f28997b2c106fce23bee2bc1edf26fa237894e3 legacy-trunk +9970 54456f08ebad75512d431aea1a18adca71a6eaa9 legacy-trunk +9971 6857acbe2e74b00af860af2ba871f512975b39ae legacy-trunk +9972 c4d56fc63d8f038b4ab416c14799be3b6e58a6a8 legacy-trunk +9973 6b0266679f9695258d7fa4139c709a9f86457e24 legacy-trunk +9974 ec7976d2d5e9e413e218892e96d7e79c2ac86816 legacy-trunk +9975 5e390078460ae8e42b3f95d36687c1364f9b871d legacy-trunk +9976 1906a7fc75094d6826a3fca5b2cb2a5a89d613ad legacy-trunk +9977 d9591c9b2c5fa4d15a5be926a604926bbb277f97 legacy-trunk +9978 9de3cad509050c2ac6c46bebb913da3e12494203 legacy-trunk +9979 d17db3ebfbc205dc185764c329583fa22c5524d4 legacy-trunk +9980 f23db3b65c8381fbed7ed7444f606bfd89a9598a legacy-trunk +9981 754586039c11b1f9cfa410fd27f24192f1e6466d legacy-trunk +9982 894cffeb89ba53517d6ace6fa6c062773af20245 legacy-trunk +9983 ef980e17b5939cabaf621804a8034798d2361a56 legacy-trunk +9984 67a2b96f0189734946adc3e025c3704e86368154 legacy-trunk +9985 510e524467ce6273dec2bf443803c69814741351 legacy-trunk +9986 eda0ca138b3d84ba91196338d0e5ea9e0ac2a448 legacy-trunk +9987 b5d52c415b15e9e4cf0ddf8c5c7824727e24d3ba legacy-trunk +9988 ec4735ce1360843dcc6e77a30f7f301d78ba5032 legacy-trunk +9989 35a3cc24ef04327a6ba6db60e041ac49eea01de8 legacy-trunk +9990 e3f37a2602d504905bb925881b637639683696cd legacy-trunk +9991 4888f448450f23da02e2d68255d67929acdb4bb8 legacy-trunk +9992 970e9e058b761c4c847c1b447cd22dfca0298f7d legacy-trunk +9993 ec0f99f1a2fdb0ab9f69d30f90b84d444ec098ef legacy-trunk +9994 b60424a56f744e5ee42bfd4fe19ac2ca41273a02 legacy-trunk +9995 83c2a5a45a41b2fadb939a3c3b6a0fdb25358cfa legacy-trunk +9996 312ca9fdacff275be920704496a95c25b662c6d0 legacy-trunk +9997 cce8994d52cf0e8a8300431fe7696e7db882f272 legacy-trunk +9998 f9da34f7268b51c871f2f143da8006422d4c3795 legacy-trunk +9999 fbc892243477f6ccb6ea23ae3bcde54a064f9797 legacy-trunk +10000 dc374711c848cd66137e9b6a6e6eb4c17c04fae1 legacy-trunk +10001 5e4c2897e62575e9e469a0af0059f7f7cfdb56e6 legacy-trunk +10002 eeac36bfe01aa3f1fc8d1d1fd5fe0ea873845d04 legacy-trunk +10003 88992696b9e8d17d55a84de332b59b9c7d7d5768 legacy-trunk +10004 60e7b000f27384623dc147d52aacc3399bc5d39a legacy-trunk +10005 26a8771a4cfd009b96d73a58eb55e0072e8c9eb4 legacy-trunk +10006 3caf2397c5081553b33cfb7e9bfb5a9e2e8e909e legacy-trunk +10007 034398736e64c418cbd33778755dfdbde11e459e legacy-trunk +10008 891105dac9b418714488179be2819ed1ca35c4e2 legacy-trunk +10009 b4660ad7dc41ea174f895963ee5284ac032dcf1f legacy-trunk +10010 bf236fbf11daae3a22c11467e0cb4b73a21643b9 legacy-trunk +10011 ea8184bff12da5c0d1ea54bc816236b63713b0f0 legacy-trunk +10012 f91d5a0339bf3aa38ea904f728564795418aad8b legacy-trunk +10013 13b60abdb70d19ea066f2203c1163cee4b736851 legacy-trunk +10014 eedac50d77443b0bbdccf9c6d528720fcfe11fbd legacy-trunk +10015 3ff6b3d3c4d5e2f3f5db7bcfa9f41b1dc5703625 legacy-trunk +10016 01a9f84a269c9da0a9be01f0abc278aa6e49fd4e legacy-trunk +10017 7830e1de9817457eb1fc42db753bf3bd90e946e7 legacy-trunk +10018 9dae0ab383a498e1b5726684018698a7b7e9a577 legacy-trunk +10019 c9f4aa2c45edd67fd0c4c45b440e3aa48441852d legacy-trunk +10020 ca170d761f086e305c8b5db6c707571f121fb304 legacy-trunk +10021 48f7ac452d99c94b933031d7b7e9d96c4a697d41 legacy-trunk +10022 d202c82d3c571626d36f1c440f9c5f51fc1c9f0a legacy-trunk +10023 c0131fae06e9e07211c844a90dea4d72ec8617ea legacy-trunk +10024 6421ea1de28287b24dd64cc7b2647bffac9531bc legacy-trunk +10025 d4d84b54c44d8189e203a1403d38d7899d09ba48 legacy-trunk +10026 7eb19b1ce84d74f2e2c955a630c69a597acc48d5 legacy-trunk +10027 4b11cb961046a0c4d872d5f62cca53099b4314f7 legacy-trunk +10028 69860821ca1d5da6651dd466f9b24f367ddcae55 legacy-trunk +10029 d34fe30b95e8568213893cdf07cf3c039e8d387b legacy-trunk +10030 c8e5f704623d89011f86fffc294b09e054055231 legacy-trunk +10031 82eb8b3df6f826543bbf961f70e5254c1e8c1eb0 legacy-trunk +10032 5df656cd10ade1d35b576c363ad2c12812ca9088 legacy-trunk +10033 5aecc2509e46d9f4bbc84eab0a7ec12c248c1930 legacy-trunk +10034 733950804a0b42affa0bfb7fb3b70e8ad616a267 legacy-trunk +10035 6598384d5f4cbed9c6fda02e4242767ad5c86023 legacy-trunk +10036 22de5116832fd65e19b9572c3b174e8fca8b2f20 legacy-trunk +10037 c02af1e713edc8a456473beae144721be5c79503 legacy-trunk +10038 a447b268c7732bd908682c11527fd06051901af2 legacy-trunk +10039 cc7e126f009d389d83b254e4d93a0917f0c2d8fb legacy-trunk +10040 43f47b8e398da53da99a864fb31ed92f7049520b legacy-trunk +10041 59b1ab01c286ef317a58e67efb29ac5368a1bdfd legacy-trunk +10042 1a9f9a5df04b16f0bc57ee1e4b4e25051346edb6 legacy-trunk +10043 ba10c42999b8bca269cb20aae6dfb16f120a9276 legacy-trunk +10044 2ff2e457ab87ac7aae2bb9b07333b3bf201a2770 legacy-trunk +10045 00aee4743d7ba69eaa9e8520980240464a8dff89 legacy-trunk +10046 e15e85d987af89e6660a9bf9e20a53e8b689fd73 legacy-trunk +10047 b9cbf174c7238920867cfcfa582e4cd6d9b411b1 legacy-trunk +10048 8aee50a9a1b1fa4c74c95f17f48b8fef11675171 legacy-trunk +10049 968aaba281c53f02b3f45c191495fe9dffaabfb8 legacy-trunk +10050 c9f417124e0f76654b88a6f24b8dec3657fc867e legacy-trunk +10051 aa0e8199cc3183b3d8817786a7ef97dd87a42fec legacy-trunk +10052 7e7d6b1b8a4b2bdd6a64705b03a6afe9c0af1962 legacy-trunk +10053 e671145ab507e1d681752a663839847920834a31 legacy-trunk +10054 2a056d193dd37a7bd49150223732e45901d181b7 legacy-trunk +10055 827aea5f562190d0501358e2fb428d3435034629 legacy-trunk +10056 2043c69ff1d455d8392bc64f5bb681eef231e534 legacy-trunk +10057 42a21806b3d2fee5ac5f46ac9568a79cff4b24b6 legacy-trunk +10058 d5f89567b5a9f67d0b32305a31752c7be361d2a5 legacy-trunk +10059 0f565c7fe4bbfe9b47ce9a5d5921571b2f683760 legacy-trunk +10060 0a4b45338ac285256ddbbe23235f9a4e022c56ef legacy-trunk +10061 9de0d5049ca1b65f798a46218e8bd4f6b71aa319 legacy-trunk +10062 d2b5d9326f0915470f6fbad98dbd298c26fcc1e0 legacy-trunk +10063 2ef0aca96f2d33a55ff4ae75cbb3372974f7c88f legacy-trunk +10064 0765b958cc67a19be2aa8f746e8d6ba0bde5faba legacy-trunk +10065 fc760c626950de97786b527634da18637eda4389 legacy-trunk +10066 4b634f0243f97d032c10bbe46cad23e6382b270c legacy-trunk +10067 bd0886e78f3b7e2b4e15b7c8cce33fc862f34888 legacy-trunk +10068 b6d6a834db49af15e476272da6fc4b9e7511c8be legacy-trunk +10069 2f32323811c5357ca9cc6e8b67f5014d9cd75e18 legacy-trunk +10070 09440606aac588f49c69c03babe8d67f44bf0915 legacy-trunk +10071 a19029cd76c5159ef500aacec745f048db7a9a3f legacy-trunk +10072 99cefaa9c50972c5b3b25a6852b7073a8c57d1b0 legacy-trunk +10073 c456ebe353374de1e557fb50aa31b744d87b921b legacy-trunk +10074 aab76220505efdc692df4a3929ed5bea4c08022c legacy-trunk +10075 39b84a3dceaa50340b100ecdd7ad733dae35b48f legacy-trunk +10076 72cab95d35e5709ee9906c1485f7c432fa64e854 legacy-trunk +10077 09415680bd4f6c48142b9d01ac29c51258eb4c19 legacy-trunk +10078 6a453595e619e980765e7f7c78434a696b588753 legacy-trunk +10079 ecad234c87e44d8eac0c04278a73ae69fb91d475 legacy-trunk +10080 7f4a503ce58b26f8ac2b9f3259a8a1ddc85164c6 legacy-trunk +10081 c0bf9b60c2980b238b4ea8b71e9202fbe21a90c6 legacy-trunk +10082 a63d553eb658292b9d048cb91dba93d7bb629e40 legacy-trunk +10083 59407d448b6acd920e3d1a370428feaf0fb508d8 legacy-trunk +10084 c0c02e9269f3cc956934d0276e08bcf7daeb0bed legacy-trunk +10085 00ad309bd50810d8bdf9f90d182d814029afcccf legacy-trunk +10086 893a32095222541fdf6918ced9b5f3e2dd30c9dd legacy-trunk +10087 afbbfe8f5496704a7ba196d5eb7086a918c47fd8 legacy-trunk +10088 70bcbcdda74f61a6f3515e82a40ec32776571b09 legacy-trunk +10089 cdf80f7458ca1a73d60e2ebbddccfd31c6ee2004 legacy-trunk +10090 46f2c4fc9e381aba2699b2a888aac6b31b2e47b9 legacy-trunk +10091 192ea9884eb67dfca654b0870e07e82798ad0482 legacy-trunk +10092 f35b29eb52d197e9b6e69751abe5af05c80b75af legacy-trunk +10093 dec65fcea21eb91e640f862c6f163f59dd74ba83 legacy-trunk +10094 0e1e4b4a0821029f5935437b7e71d6d61eba7545 legacy-trunk +10095 068a6942fe1a12ea54c9f6d49842f45cefab9ad8 legacy-trunk +10096 a3a6ec259986053a65c8fbf6c8e9887c41483a3e legacy-trunk +10097 293b0cb3470404c29a27e400c5bb82ffb675be69 legacy-trunk +10098 ece604ed6228183a8c91cc941d32061668301b90 legacy-trunk +10099 9cf6f94095965090a75750a6cb32dfc606c5b5ef legacy-trunk +10100 0a20cce17371498d473b44c0f033fa0eca44e319 legacy-trunk +10101 c54f1ccde6a9deb6298873bb6f480d3a3c87ac7d legacy-trunk +10102 a787429e840aeb0ba6cacc9a5a807cd4fe4d8e70 legacy-trunk +10103 0ce659047bbf3227cb2a1aa480ec36fabf923f96 legacy-trunk +10104 5aa7037a1e3fb50d93224d6be021c3bdbacf27d6 legacy-trunk +10105 a0c7aa0522de10d9d7bc023cf3ad8d95442558cd legacy-trunk +10106 1654562824120dcf99b8f826b14fff0f77b4024c legacy-trunk +10107 7960da0549c4743e2964b996d8c6c682b2b06865 legacy-trunk +10108 db1e514f16297302d458c9da84d5f242491cf85c legacy-trunk +10109 422bbe885cbf71a612fcfece0a5dbf837b0eb4c2 legacy-trunk +10110 d22cf666fa2c88c5087a2dc82cab024bc7f4bc5e legacy-trunk +10111 55345d6d2c141c02e20e2a23fc5f61937dddc64e legacy-trunk +10112 3d1590b5e3ddfdee2b27827f6b4df93b2bddbba5 legacy-trunk +10113 bbdd28d36f42977fb6f4972b2451469023da8e3d legacy-trunk +10114 5472ab610fe9e4996f5b1669efe0d29219f658e8 legacy-trunk +10115 c112443cabe116e2251e00f39848a9ce4d7ef44c legacy-trunk +10116 1c0f58b76081a8702709f9401ddca323d5d6b44b legacy-trunk +10117 c6387e242b780afc688c06cf7cd936034392c549 legacy-trunk +10118 0950127185eab64d69b80e08a0f34db2feb3e64a legacy-trunk +10119 2bbefec1654204ba5acc7a998bb885a9cf420d60 legacy-trunk +10120 f7791617c2b25d96d7ebd544e33af48c182d0efe legacy-trunk +10121 b95e523dce6cce10b18672095a37bcbf97546e08 legacy-trunk +10122 d8d88447f3c1314c7226a64f8ac234f3c6347bc7 legacy-trunk +10123 7ad522a4c753a104a1dc4f7159d51b5a5f6575a6 legacy-trunk +10124 d92f10c451a138da43451af3e555c07a48aa84f5 legacy-trunk +10125 dee56025d390b41f3d0fb50cd88291b801c2624a legacy-trunk +10126 02c66428f04841df7237675ad52dd16c08e54568 legacy-trunk +10127 932dd6b90e13a79230fb58af505a84a95278f82c legacy-trunk +10128 ea68619fb56d4d541d3a6a478e0dd2508b4f8646 legacy-trunk +10129 9552d4b3d9b781425e38b2d80dc2d44d27969e54 legacy-trunk +10130 d64dbd1cd32eb437918160572406de05a3559b67 legacy-trunk +10131 b86771b0d7f9187cb121aa95559df8de21bf6c26 legacy-trunk +10133 75d0048c8643db5e4b6e25261fa054c4ae9884ed legacy-trunk +10134 73eebdacfb77623f8305cd5804cdfa15bdb6fac5 legacy-trunk +10135 6b3d3a28581f4c0fdd4eeca1adc785e79088c404 legacy-trunk +10136 f017c4858ba8c36abf819e7b714f4c8ea008f7d4 legacy-trunk +10137 f75ff8d4434d87b5353b6eeb4c6f0b0ab448364f legacy-trunk +10138 869373fa0bf8b864d4cb79df7d2a3719256a50f5 legacy-trunk +10139 f03e665d9f72889dbdcfa62c4082f074e255d47c legacy-trunk +10140 47ddeb07957546b32073206dfc276635e045f429 legacy-trunk +10141 ea2d3217d0c721381e091b60340698c36df9f400 legacy-trunk +10142 acd393a93ed044a52558e11a25673b6a78d20e8d legacy-trunk +10143 f2855d2acbd39944f3924bf26239c848355536bb legacy-trunk +10144 abae68af334f652a324a4f9f944b8fda4887b1a4 legacy-trunk +10145 c9394aeaac6adc27cfd2b3657aa1b8239388a68b legacy-trunk +10146 35f29b7dacf518c52ab4b67586f3c7c026f96cb3 legacy-trunk +10147 ad34671cd4c9629e46fdf02461a2ac6a34f125e3 legacy-trunk +10148 1f8c8e0bb5ef600d57be367ba625933699c069b3 legacy-trunk +10149 8e6a580198873e60a0b030deec10b42106e882c6 legacy-trunk +10150 0cf2ffaf4bd7c50edbb454e24883290091693f4e legacy-trunk +10151 1fb868f25459fe36e230480648bb9bb778db5ab1 legacy-trunk +10152 528e2b94e8b9873a763d237db87967c4d6ee95dc legacy-trunk +10153 357b77e345f36560f2eb685e84f19c517b4ec806 legacy-trunk +10155 7122ff4c4abe69ca2fa32e30a451a799ba59a79f legacy-trunk +10156 bdcf708ae4dae8cc987ab50632fe217902922655 legacy-trunk +10157 72f2abacf151e41848ee918a25359ab242c62e15 legacy-trunk +10158 4030059cf97c13410a30a5fc75e6388bc33b0bd5 legacy-trunk +10159 a61018a2a502a42fd94a3943673040c79792e706 legacy-trunk +10160 2c9c248581a2023dec2a145cba880b2275ef3dda legacy-trunk +10161 e1e76766d8cae156020802360eed5615f8d8a532 legacy-trunk +10162 5334eef1974c055ce91fd5090ad02365b3c368c7 legacy-trunk +10163 6bf74264b9c0c31545f717755e277a53a2076b94 legacy-trunk +10164 f0d33fdb392193f7ebae7a8318f199e5d74252a6 legacy-trunk +10165 afdcbef17ec0fd0694352914657185f42d679f5c legacy-trunk +10166 483970062915115aac048fe73dd43f1779addc54 legacy-trunk +10167 c2e1db1e1bb8fbd1cabe14835f6696e96890284c legacy-trunk +10168 04d7397970c2067a7fe4e5b5378607d35d7a777d legacy-trunk +10169 554f2b879fbb11cb20f2f097cad3c3c8130e6d05 legacy-trunk +10170 f924727cd00b6ad99a6af5e59f082d617159fc01 legacy-trunk +10171 9bf81d93b995b4c15a56ed92d6d279e8cf2ad221 legacy-trunk +10172 57a42183897dca8525227e80a23e8fc191ae9dd5 legacy-trunk +10173 ffcdcf9ff0ebc66aa7821134d5af6e006e10e098 legacy-trunk +10174 5e3c9d530bc1d3bb402d4f62e7201ee7e090a41f legacy-trunk +10175 1ced036715749ed8807cc47d35a85488930ec3d4 legacy-trunk +10176 d23bfe06175eee7a9d63cb663c63a847d7b62c3a legacy-trunk +10177 e40f2a6e526dd2dc0d375c496b0e99a843b6ac76 legacy-trunk +10178 abe7f1f4768b01c0feeb4909a52cb4dc9ddfa5ca legacy-trunk +10179 96b7c1323d30aec9c5934bbc7ff9d8f2e6fe8f8f legacy-trunk +10180 ac877968562ccdd1cb7c699184ad575c53a57c36 legacy-trunk +10181 2cc4bc0cd036758ed005f2ddd7397c4bd347db52 legacy-trunk +10182 4b829e6c0dc555a500ac6930ea2d036e39671297 legacy-trunk +10183 2cd146e2a3a0db206635b1199525db1d7ba2309f legacy-trunk +10184 c9d546809e4f8e370a52bcfe068516d251507823 legacy-trunk +10185 a003e14fed87723932549f1c2c3b4aec0e1d1e97 legacy-trunk +10186 55e3f891dbb5d7df2cf92c29abcb7fd65b0aa564 legacy-trunk +10187 23614650e29b1deeecc2f7e189b6e8e484285f6e legacy-trunk +10188 4991aaab17bdef5512ebe3f14bedc0462bf9d4dd legacy-trunk +10189 abb802c216ad2436651ac6a2ca31235416e87b34 legacy-trunk +10190 706e4b95486248a7f9515e7abd1bc074b6a3711c legacy-trunk +10191 56dcfc27710ab6ef3b3e6299e55fd999688e1ae6 legacy-trunk +10192 0cbc9df882b6bddf4da4515e9a4e79fa28c94d41 legacy-trunk +10193 24ff69ad4da2239fe2df6fb49fbf85fbe979c357 legacy-trunk +10194 8da71c515716adcd63ca748db1484d9558083718 legacy-trunk +10195 388b097bddb9551ac768c1b976b0ed907a5244bb legacy-trunk +10196 9271340c7e0cc989409b8e79431ef620003401a3 legacy-trunk +10197 995aea09291733a6582d387c9aad277743822eb5 legacy-trunk +10198 f83425cc7e9675e184081553ad3bd0b5c260e0ac legacy-trunk +10199 d21dc59c86d74d0b01b40abd97673e507f8302c9 legacy-trunk +10200 5c7bce053d03886efd92fe55e765edbada147d5f legacy-trunk +10201 f093fcfd5625e1db948c425e6cb276bc58101e65 legacy-trunk +10202 67318d3fa6dcd64a39e30de09febd51e49e0311d legacy-trunk +10203 d103c0180b2de06e55e44d107597cc41576dca7d legacy-trunk +10204 1bb943cd2c23dc7d33fa76065424fa20696e1c1f legacy-trunk +10205 663367ca13f816401fcff8a2bb2f4025c9fb9a8e legacy-trunk +10206 095636b8fab7e811e7727c2def90071fbfed2371 legacy-trunk +10207 cb256798347eb95c6192c6cda8161b170740f02b legacy-trunk +10208 52daa70bb084934520537b5f9ae22d1a4b1353c3 legacy-trunk +10209 89582fa1824fba99557b02e9c7df0160a194402b legacy-trunk +10210 c109d5cad100756f505959611c0b4f44e83c512a legacy-trunk +10211 9c37ed8868b9efbbc968f9ea54f8d2e232f20474 legacy-trunk +10212 b8e1e1055649d6377856fd62364a9a0cb5a9150c legacy-trunk +10213 30e331496930b5baa953bcfa2a1016254ff58d4b legacy-trunk +10214 725b370e853f0e1f0cfaf35510707a1a9634442a legacy-trunk +10215 7a9afaba88d842cc39e6b90a7c06688385f01625 legacy-trunk +10216 ed320001c29a8771e705f24209a06de583699e10 legacy-trunk +10217 5d7e4d20c89edd998b80b050c7d311d350729cfb legacy-trunk +10218 bbfd946b0b38c8f16e5e87c3e069a954095274de legacy-trunk +10219 1091ba2baea4a29ca797b3312664b78e2d34cee4 legacy-trunk +10220 423be7cd0479522b0c3c5cb5fedf3cd1d3679893 legacy-trunk +10221 e29029029414b2a9c5e680c55c665b2785f65d12 legacy-trunk +10222 5bf66ab4dfb6f69c5213b153c7b6296b6ff60212 legacy-trunk +10223 269a327d6305f27d50ff471d28033eaf5b827386 legacy-trunk +10225 c498451c5f564163c24183e7e79968ed0b1a8f6c legacy-trunk +10226 45a3dabf0fa83c902ef13c604996cae1a24feb1e legacy-trunk +10227 792bfd473f51688dd24fb9342df02030bdcd383e legacy-trunk +10228 aedd2d0dcb31543bc53e82c6cc06fcf602ce9694 legacy-trunk +10229 a73ef720fb56636f7360c87eb4ccf6448b47ac8e legacy-trunk +10230 3c08fb9e134f82cc8888ebf3ae9d44ebe9b76fb0 legacy-trunk +10231 6972e50f3483e5135286c03d3c690482c366d039 legacy-trunk +10232 0c837dab5b9eac5de485817207d1e06aa731bdf5 legacy-trunk +10233 b4b0e4e759c581f0815deed5c60f49c74b38e79b legacy-trunk +10234 8ef067559d5a382f6b700ec50a7064a6fa0b7797 legacy-trunk +10235 033dbe9092181541da5a1a587cadd3b4bf4b9793 legacy-trunk +10236 fb4b4d069cc7cdb4b66532eb49d77ad06d27bdff legacy-trunk +10237 a419334f3b397b64ea0bbf848283610d410fcc66 legacy-trunk +10238 78c27e31ac7c9806ec30cc4848b3ff7d421f1a94 legacy-trunk +10239 c31257b92447ece5d74768da8ba22e3ac86ddf50 legacy-trunk +10240 a5e2bebe179ae76fb6a2b71273de9927678d2637 legacy-trunk +10241 6bfa650f311df46e6722951ff56baca3b3b82692 legacy-trunk +10242 458a33abb39c1aea3ad49600120d948241ed57c6 legacy-trunk +10243 acf3b950cb437d1b7eedd11618fe3b4368207fe1 legacy-trunk +10244 9c02e0a26511a4ff2c853b0724f0f8b95c1205e7 legacy-trunk +10245 9d0dc11775a4e47ae54b9746f5722e49e797e06e legacy-trunk +10246 8b78653baf1fd122b9e79bd98ba8e374b19628a6 legacy-trunk +10247 587d0178f8d366f009c3cf2e4e6f4d46c937f772 legacy-trunk +10248 7fd79ddfbb8b884ef964ca5a0670c06dbd6ccdeb legacy-trunk +10249 8f177933c41fab3c319f57b8fa47302e550c7f48 legacy-trunk +10250 469f66918dd6cbbe52ff6de45d2886192a58d73f legacy-trunk +10251 9f46e70ebfbb2d365a666ccd78b538cc4aeb18f3 legacy-trunk +10252 707d062cae7bff1ed7858519c2b6bc655cd30e1c legacy-trunk +10253 9172931fd80a48ac8710adb18c0273f60f734a7c legacy-trunk +10254 8a567412b21bbaef73abfe635441f5d46a098ed7 legacy-trunk +10255 5fb69ff24cddc13cb74e2e7fbaba5bd6a82d2414 legacy-trunk +10256 57f11ab4e2921b14202203c4977c4be01e6e3ee1 legacy-trunk +10257 db94b15bd6400be530f6c3f9672009bce7bd154f legacy-trunk +10258 5e215894c555a27289a0adc092f7910354eac881 legacy-trunk +10259 b17d200edf627bdf51d53a85e6a9ed5b97f68231 legacy-trunk +10260 1c420699d58a3ba2e22c6657d43d1f499ded97c1 legacy-trunk +10261 3e1198d20f9ce133757c4431ef58b27dfe8ca788 legacy-trunk +10262 36b3b6876a580eb0dfcf42c98d341398f1a85c25 legacy-trunk +10263 7fc32a66255a77acf50d1ea4ed35862cd1530532 legacy-trunk +10264 cfe6f58dd0d8ef920e1ad18e8cab9b41b6ed9ac0 legacy-trunk +10265 80b267483828e58203d213a2fb8e0be7599f8012 legacy-trunk +10266 05692c661434a15d95c819442e92f98705b84f5e legacy-trunk +10267 6adf917ee7730d739d06160ff6edbebea641c00a legacy-trunk +10268 44fc7ffdfc77fbea7c33e78ad48b26898fadc187 legacy-trunk +10269 b1c0915014110fbfc6ad9ff8c6236ab809980bae legacy-trunk +10270 88c53921bf8809e66c5807dc218a2dcc17cded21 legacy-trunk +10271 b9e31120a0c4eae9e5c6e655164102e339f6f60b legacy-trunk +10272 23d0490025689517ab16d968b29c78b6e47862b8 legacy-trunk +10273 8d4148213cc02a6dc1935f9c8ee8b58f124d0ec0 legacy-trunk +10274 07453140a09550088d1ddb7a757f1dce884d0dfa legacy-trunk +10275 375a901065c1b877a58797af2a5d368d3005e041 legacy-trunk +10276 433c381c3700e3b016598706f52c9c56be4d73bb legacy-trunk +10277 68e2b0dbbec8eb620a2b9b0dfed441c43d2007ef legacy-trunk +10278 068a7762e2861316cbed65956e36dfe9d20b7d68 legacy-trunk +10279 49f11eb4eb9a332233aaf79c037f4a75197e5850 legacy-trunk +10280 cf723991d75fad16ab2f3e8d109ec352014f3cc4 legacy-trunk +10281 cf4201ef73aa2c6ab4f49ebaa72999ac514e11b7 legacy-trunk +10282 047996666c81898b034188a2c30c1b4fb5ccfa4a legacy-trunk +10283 dffe1e470e6cf3cf117248b71ee34acfc5770c24 legacy-trunk +10284 0660f17ade603ca2a4ffd18b3666e15cdcf2df48 legacy-trunk +10285 6d04e8c817fbefa60a5de9d1c1e511016d35a07f legacy-trunk +10286 4c6dc07f1b6a60ccbfc0c11e80cd15cdc4218326 legacy-trunk +10287 81f98188012e419d081968492ccab5374ebde63c legacy-trunk +10288 5d15f4fd6d69feee63146c74114b0dcc8a3898af legacy-trunk +10289 70ccbbcc10ccad418917815ddc2c8b14dce2cd96 legacy-trunk +10290 e580afa1c83380b2442de6fe085f126ce0cfdbb4 legacy-trunk +10291 9967be1f402b1a061349fe3388a318aa2cb291c0 legacy-trunk +10292 412e6ab03c6ffad99083171eaf6e3000d412c50b legacy-trunk +10293 c0470844c7bc7c6e5b7080e983f4c2394ee160d2 legacy-trunk +10294 6432cbad828dc9c8bf3a4554b555a0cb2e33f54d legacy-trunk +10295 a727ae6bfe50c588054d0961cb1a36d07d90b814 legacy-trunk +10296 cc4942f0ec4c94cbc97a9e0a4a940992e4ffa423 legacy-trunk +10297 5132258da78e8af7be8933587922a2c515026fec legacy-trunk +10298 461738aaa533d2ccc8be9ad85fb5a85458e32ca6 legacy-trunk +10299 a35b5414fdd9bb6b9751334d9f06bbf01c4581b7 legacy-trunk +10300 d7abad70f68114d421c65144f4337b2d7f99eece legacy-trunk +10301 2090f8f9d5d2d49635c60d7f0696f23af5f4624e legacy-trunk +10302 ed856fccf6397ffe947cac00f675b839cea1a36b legacy-trunk +10303 d1b23504bd99c3b14396c5d8d9d308d9f0df2d4d legacy-trunk +10304 0575d5a1721856d201ab6a24a59909d7ddcd957a legacy-trunk +10305 b85a675b6503e5859799a87b0870505d94fa2844 legacy-trunk +10306 29dc5d1928bfe1a214c04f4bcfa8aa41256395a3 legacy-trunk +10307 b71d1bdd187dee6c973aecf4fd7fdbf5266a812c legacy-trunk +10308 986a74c3a22ca0fa7e4324c073e54359996fd934 legacy-trunk +10309 8f0e29ce59ef4178e7ca1508bdb2119becfee7c0 legacy-trunk +10310 e2fb2578453049e094772ad6613adf18f5769e5a legacy-trunk +10311 34299e096e35390a342dc78d86b9f436a648f6a7 legacy-trunk +10312 1f8f2002bfb9f05a50a57aef79e462fb9b8fa56c legacy-trunk +10313 d14b7120c5518d1edbe334c72ecd3f64e5d2d76e legacy-trunk +10314 643e9728aa492e846e5a91692568d3406c97fe94 legacy-trunk +10315 147c1067ca33d14ea9b595a9cb737376b6d9dc50 legacy-trunk +10316 ca735b84a939a5a34d1e0329440da5c90bf8be15 legacy-trunk +10317 98f6ed131b75cef43f867185db3d45a3961f1426 legacy-trunk +10318 54d8e85d3c287dc254077e1db72ad07a4862d402 legacy-trunk +10319 fc950433d158e56fd145a547729aab35dec11cb5 legacy-trunk +10320 d4f5321b9d9e856fc2c6f0097a72239a021e4c2e legacy-trunk +10321 aaa204a05f842327151d293c5140829e9ff47dd0 legacy-trunk +10322 ca1850481e02a41a32b388369b389ead54ad3446 legacy-trunk +10323 491e3005f54b54686cbf22ff749091fe81172bd8 legacy-trunk +10324 aac585fe9452fbdefc86f4b07090c2bfc94f7aae legacy-trunk +10325 6709a02f6718038df132d1e1c751171dacb02962 legacy-trunk +10326 949b59820185af911b874d92b93698747075c3e6 legacy-trunk +10327 6c6a48bc58173e704f56cf8deae8584bed875fef legacy-trunk +10328 3c4f736d5e010ccd627c52c5dc3bf5344edb3232 legacy-trunk +10329 4fbe6c9c5d811fd4f3eccc45685c27ac89d4a578 legacy-trunk +10330 9d3b401bac6de2c7093db876dc62ff7575c79a81 legacy-trunk +10331 db1e49d51fe12c2758f7912a0b7880a98a7295a8 legacy-trunk +10332 6e4ea0eda22ecc9bd2f803ed079ec51ecd15b241 legacy-trunk +10333 f34a658e7c1565b616e4f916cd323932231ab6c4 legacy-trunk +10334 261c639b984732548752560dcb56c0ef032577a5 legacy-trunk +10335 1f1f949505af04a118eee8c77baad72e6d1752ba legacy-trunk +10336 b75b2f9d3ce13e96a68d3068c5aa4dc9c2dd7456 legacy-trunk +10337 956719ea5f5a6dbca4fff932fba3670ee04f202e legacy-trunk +10338 b8478504b779bb277fcd38e2f2cc00c7682c8300 legacy-trunk +10339 842ed6bbd0660a7aa9525254debc0aba4c5aca16 legacy-trunk +10340 b0b33a357c79ed640162fb79db5d7be48a540ad3 legacy-trunk +10341 9e10c862abfc1a280b8baac6efaa9ce134189c56 legacy-trunk +10342 e85d6db7bf97750a40b44a89229aada6999a6c7a legacy-trunk +10343 a3adb16f0895f0b299cb71126271a6970e844ae5 legacy-trunk +10344 d773db06355c0698d1afd75c70c083f00db6ae8f legacy-trunk +10345 21a7e3c324df7face9fa003ca97c04cd3bed48d6 legacy-trunk +10346 176b99e6965be93268631eaf5e8c3fd463dd40c6 legacy-trunk +10347 b69fa9d142ca5a78c3d6feff24008885795de4e1 legacy-trunk +10348 c76adaf512d6553aebf1f407517498b48190d053 legacy-trunk +10349 a61fdb8a449ee1f0363bbec0e828f032c0de5c00 legacy-trunk +10350 31fa8a0fd17872e42fdad77094d2190655b21126 legacy-trunk +10351 6bc4f80725d6e28db4f6d32f875491d87b18a690 legacy-trunk +10352 d15181a0cfbab8625a12892df41da45a9bac3660 legacy-trunk +10353 b5ede133d9216aefd428c8513a3abd7e104de123 legacy-trunk +10354 d07b97d29a9e32a12cd15839a308d4c5a5df7cc4 legacy-trunk +10355 392388c52e21717ef23e3e980acb0c068cef5eea legacy-trunk +10356 8f425f8f4be2df5de0cb77b4775c6af1fca5bb2a legacy-trunk +10357 0a873f2b64f4182a3b8207c597ab8fa243b8f365 legacy-trunk +10358 8e5223680a9da4c689fbdb2cbc4052a8eeae0cb5 legacy-trunk +10359 ac2d1c1f1971f2a93ded217fcc754a6df20f8daa legacy-trunk +10360 427a9b1c9abd8e120e2bf0bc9e7ed6f7a6f401cd legacy-trunk +10361 bde69dfc224f0e737b8668063dcd56c6fd1c8db1 legacy-trunk +10362 6370f1593c720b92a13df727b9f31cd5e2cbb5f3 legacy-trunk +10363 b0fbe6b6dcbf11b1a10212c3973a37842d692224 legacy-trunk +10364 e833bee5d05fb24e740082dcdd63aad8db2c1eb6 legacy-trunk +10365 dfc8de8f1ec3e69b2823cffdfdc6099e8bae8749 legacy-trunk +10366 42d3f1f71c56cfb99b9bea01acbdbdc0ac01c3a0 legacy-trunk +10367 ae9778c4ffcaf6368e6e0ea8eafe28952f64cf2b legacy-trunk +10368 efbb7e57e6f86fc0f6100e448422d8454284c194 legacy-trunk +10369 f8f663b432b4356a8bae2070a667bb0e89eff735 legacy-trunk +10370 41c7d5243be931f83fed61b6cf239ed1e9953285 legacy-trunk +10371 8a389c8fe6efd2a35ba32796de9d7f4230e6eba9 legacy-trunk +10372 37234e1bb75ffddeb8531b54e68fcc4fdef95d80 legacy-trunk +10373 dbd2de26c8d225ffec0fabfd9e78ea9df09ae0e1 legacy-trunk +10374 8c93544b95e4b3c1c15674986f0b9d9a270d68a2 legacy-trunk +10375 2673848437c34d4ed3a1104b68f26ccdef4aaf93 legacy-trunk +10376 e6066b813a714d15e96e42175332f49f3b0f3f99 legacy-trunk +10377 29ab3f602d0023b5c1937326a478b8db51a178ae legacy-trunk +10378 df636ded2e702bddfdf8822aa8b8c72964ab86d6 legacy-trunk +10379 6a0299ebccef90d03d4c800fe3ae174b54c6a89a legacy-trunk +10380 8f3bb0b18a82bce40719c944d1330fa8b42cc172 legacy-trunk +10381 1efee503259e51a48dd0166103af3c955265096f legacy-trunk +10382 9a246d74fcb752a146d34b9f8a1191c8a9cb70a6 legacy-trunk +10383 a110421d86b7314000fc189fc0e7ceafe74bef5f legacy-trunk +10384 17368c92c769a53bc439c03411015e952c6640bb legacy-trunk +10385 3bd668df6efdc2d63513f8ef6ed0279d70bc95b6 legacy-trunk +10386 80b2ac61fe038a8bb69cb0d39440449a49917694 legacy-trunk +10387 4b5666dff5e6724967a7539b9251c65116f885f9 legacy-trunk +10388 3f8b5564f0c7c29e107a544145738db38703b15a legacy-trunk +10389 1a1d3147b027c4b4fe57877261976925def5ca5d legacy-trunk +10390 5eafd3eda0af4caee0b62252513fbbd7e05a7061 legacy-trunk +10391 b71a1257764b032592e637025ecd65702683e906 legacy-trunk +10392 31f9e2675199e19562dd8f1713bcb32efdc5ea0a legacy-trunk +10393 5418c0730f0096162a5bde5e021d3de92f11467c legacy-trunk +10394 64f3e9ebf21acf326841250e5bc13234f532f360 legacy-trunk +10395 1daecd65a7c5efc9e0cd125c4c48b6f8e8ad8ef8 legacy-trunk +10396 ba9b1b4aeab9ee8aae5e7ea784bfdd6a02be1443 legacy-trunk +10397 1318a474baa06dd67fa612ed1a3b37ef06221f76 legacy-trunk +10398 0905f8666807f338743a76f538218c20c9fec3ba legacy-trunk +10399 5fab59eb4fa5a1cf4719f85bba704d24c5ca8387 legacy-trunk +10400 6bc0535dbf527792f8ddafadf3377d43444da092 legacy-trunk +10401 dde0dffb1a08aae4189bb360e0d495db2764eeda legacy-trunk +10402 0bdcedcd1549b75951ec3ebec0f12f9047c9e0c5 legacy-trunk +10403 6be7ab246a05b4c81b1263a8aa6d203d518972dc legacy-trunk +10404 23cc6ac5eba6c07631c7c76c4e58a80aa84e83cf legacy-trunk +10405 de90bbe850137fe1efb74b5b708cb9de018e0bd7 legacy-trunk +10406 33407c0ef14ffe57c13c55e5f0040a26f492b684 legacy-trunk +10407 e29d435ab142f1e85decc31c9e93f8677f7e9a48 legacy-trunk +10408 1126e72e5ee9c9a49a1b2d7c87fc35b3051ce9e5 legacy-trunk +10409 ef300e6b0c71da0bd5a81ecd208bcb6d73c99b69 legacy-trunk +10410 9d8c0666b0cbbc14f4bc869a705219202dda9703 legacy-trunk +10411 868dc84bb5b29abe2f7a0d61768c6900952d0364 legacy-trunk +10412 7c7ff1a365217b453ae1453d40945f0af9b80fc3 legacy-trunk +10413 0522ab210fcbb08a7651fbc0a50f27c68da6abe0 legacy-trunk +10414 b2adcd73c150b82c5399774f88041cc5dd9f6590 legacy-trunk +10415 708de4cb96eb21bdac8bf65da40958e200d3d75a legacy-trunk +10416 aa7d69d67c81d7da3933ae0850c4fe2c1c1fca48 legacy-trunk +10417 1f38a2b548bf9d06a6a251e84b05be607fb745d4 legacy-trunk +10418 f223bf61b4ee03b8ef4edf39e99b5e652111f4c0 legacy-trunk +10419 ca4e25ef61f8069bd69a6243cdcd45e3dcbb8416 legacy-trunk +10420 d3ec2e51f67a21b8e5431e14c3fe73659cda0aa8 legacy-trunk +10421 057e422d2c6109008e209527db0d468db559ea13 legacy-trunk +10422 91ecda9d52451df73ef6d05100cca9a363e85c51 legacy-trunk +10423 ee2aaa2f722a847cc6dff91226feca9f90276c08 legacy-trunk +10424 b31abc131c3df943f02f5643b5545be363fccafb legacy-trunk +10425 162db3d0c9167e09d6d769b07b133bb2102066b8 legacy-trunk +10426 dc132cc39573a0ea6df2d26c99909eafb58c5f2e legacy-trunk +10427 ad114620f8c2782d577db2d043c14752d19e48f7 legacy-trunk +10428 a2c1b3e179526dd24d02bda774b52d43bd514474 legacy-trunk +10429 f06913808fe1dace75e12209b765caff1c179685 legacy-trunk +10430 58d6815af002e678feb873a95be78665079acb40 legacy-trunk +10431 9cbcb5931d803d6896001eee589cffc66338d70c legacy-trunk +10432 f42b757755eb32abeb6d8247872bc742b562d43a legacy-trunk +10433 72d9961540d85b20036949f14b4a41c28462f65e legacy-trunk +10434 92e36116af421bcfeec9f906bfbdbc76d998edac legacy-trunk +10435 ebdd40e2816025c9f9432ba9a39b093e08b276d6 legacy-trunk +10436 cd9e664a1a9fa84bcc61d2ad81e1e2d27fd4bfa8 legacy-trunk +10437 fc08da2c9a0fa7d9682e11d10e5cd39ab5970a03 legacy-trunk +10438 8f368df173e688c464c9063647dbc50b191be3d6 legacy-trunk +10439 9e113aa3758da1048c7ace3307ed277caaa784cf legacy-trunk +10440 fec8eb2a380dd5171c6550967655707e54710a97 legacy-trunk +10441 8ca01083140cb992d12b6ced523b16bf136b1451 legacy-trunk +10442 ccd1c963e5095dde744ec4da0c49e2092c24ec25 legacy-trunk +10443 d6fcbd371855e3647f185971a227104b7cda37ab legacy-trunk +10444 afd54f895dc3030dd30d8097ffbb5ee5a609b5e4 legacy-trunk +10445 d1ea13cf46f7bc5acfe4e3bd2b025cdbd7cb6cdb legacy-trunk +10446 e8d0b87c8d6b1fb0a22f578263abd98f8a11ea80 legacy-trunk +10447 8c268d0e8822054ccb53a8ce29ad70264926bad8 legacy-trunk +10448 bbd2b5d8d0b6c22bca4f7e02b04e1dfaad985d6c legacy-trunk +10449 2ef6e0424179caff9a36e7758d0a71722ac9e5f4 legacy-trunk +10450 338f1def43709bf4f32d5b8d01f7f6f646b83bce legacy-trunk +10451 4ceee1ef99b032810fbb6237deb018779de0b731 legacy-trunk +10452 469288499c9bde9d53bf2dd4b41334ff1b4e4b37 legacy-trunk +10453 ff10b0328ff3750bb3033135d063264f93a79f91 legacy-trunk +10454 091481dbe13d7c51279807b2ffdbca921c1e245a legacy-trunk +10455 c12c661fd14ef4b57f5317a94a23c2bc685f6bcc legacy-trunk +10456 3dc5d0fcb167ac1c835b4a349d111da37891a6f7 legacy-trunk +10457 752235846180414ddd86c157e3704f254721827d legacy-trunk +10458 51d31fcaeef3a210248083df79dbc659db8ebdde legacy-trunk +10459 143c556deb2f8559f564de147e0bd2bb6451b11d legacy-trunk +10460 cc47733b4dd22c55d258987af1a0b61c5065e575 legacy-trunk +10461 85e886db19b0598b92cd1b5d77da3cdd435bc04c legacy-trunk +10462 09963a2a24db0898e43bf331b315aac4d785d817 legacy-trunk +10463 a909a2869ac59a0becc0f673a4261d512f620c2d legacy-trunk +10464 068303f925ea872bd11cbe92f827a69d340602c2 legacy-trunk +10465 1d0eb2e96d7679e9f7f46e20c7948b60eb1bfc77 legacy-trunk +10466 ab4f64561fba3288134a775c34d6df991c96d257 legacy-trunk +10467 971b5bbd92ec020eabc0c738f1bc77d4c5ace39c legacy-trunk +10468 697df93e5ddb4764cb415f671c1e1591cbbe3b6c legacy-trunk +10469 0263d3324f0b2e98ef1f65f274c7c2aabf9e7871 legacy-trunk +10470 b9eb805579ba8631b91286e31cb73c59ace16428 legacy-trunk +10471 de10566dec5cd1c286e5bd75ed28bc8df5e9b762 legacy-trunk +10472 6e5079e8fa6e0533d9298be675112f6f4ec3685b legacy-trunk +10473 cf0cf21b45454771c7ef5ce687d0c9f891b458d5 legacy-trunk +10474 6b3fd24cc0776f32a18f4af1a2156b19c24a1308 legacy-trunk +10475 e8c4b3d386e4f2d3372d95c21cdf90987d49ff26 legacy-trunk +10476 daffde7a689177f1b11a2089b610a9a4b984adbb legacy-trunk +10477 89359d072e727e72a6d645f1f9dc78e7ba85509e legacy-trunk +10478 1d526507cd9ec73e009bc6942a93f28a334fd0b6 legacy-trunk +10479 3d1d9e25eb22c63257f79a9aa65b9e27ca629f58 legacy-trunk +10480 0835b8df54f80d235451e2e6a4b46b466c885846 legacy-trunk +10481 bdf57c84df6ab51cc34c8fcc4cb73c0d1d297348 legacy-trunk +10482 c8a3111447267a14c33018a1b3174f290e0b7792 legacy-trunk +10483 b420ae85213c79f05cdc36959c71a1b04770f8f9 legacy-trunk +10484 5db346e9c8f560dceb16baabe4dab0ec64271f84 legacy-trunk +10485 900320491b936c9fca3f7238464d00fcd6ac63b9 legacy-trunk +10486 e98668683bed6358f9c5a7339e9440b7b4f01077 legacy-trunk +10487 a842c9e63280a96f7394c31b721092f38ad6f60d legacy-trunk +10488 dbc11dd02f09592350b9fafd305159db8a14bb5c legacy-trunk +10489 4f4e2aad1e0ab5ba0abc2ce826e04976a29d4fd5 legacy-trunk +10490 bf6e920c0e799d1612947b8aa1ed0474237cd321 legacy-trunk +10491 ca0c72591211cd929f3f87147a4ab644edf51840 legacy-trunk +10492 83ba5309ff226e1c4bb22d25d31f5bcdba149d09 legacy-trunk +10493 2b09a5d263688d0777f6b6b8ecd92f3314a2fce3 legacy-trunk +10494 53dde42325f8a9941306947561bef98d4813e37d legacy-trunk +10495 6e8be6096e56302fa578c6d8459c5c53fa505013 legacy-trunk +10496 bbbd0b105e2735fee77c98f4a86ac1e46fafd226 legacy-trunk +10497 46999dfcfae3f05067f6cb1cd353f57c0c0b0866 legacy-trunk +10498 5264cac8f9035f2c74b5451b57f9e6437b474f96 legacy-trunk +10499 011ae71fea9649a17a487f76b807ceac41d8ab2c legacy-trunk +10500 9b8902338e14b709f2385ace1507007a25d25e7e legacy-trunk +10501 92ba7a9e3b9d97198219edd46c806832633bc9cc legacy-trunk +10502 3b91affa333e984a606177dcf122e3d7e93a9f0d legacy-trunk +10503 5d2bd6738eb62e5525a5e527ef3607000521371f legacy-trunk +10504 d157ee821775c0993452c720cdf4b02f8b8b9e32 legacy-trunk +10505 49f1cf4b174cc63f3c1d2db320d31a889fed9423 legacy-trunk +10506 d1c1b20754a817fff5149a91c10a7a990fa650d3 legacy-trunk +10507 d99a90526ae0b192eecfc21e818f1ec1a17bd40a legacy-trunk +10508 f5326d358662bb210b8f14bbd5562ff6a9ba7ae6 legacy-trunk +10509 5dcf9b5d33e6e6f0a0d0476ac5049c70cbd0ac31 legacy-trunk +10510 95142c8a09c86a907942f016318e3ee0954d474c legacy-trunk +10511 3f0360376ca00151676d9dfc19deadc58ec5cd75 legacy-trunk +10512 710f3b7835153bb76e7097307febeb4b0fc7edc9 legacy-trunk +10513 5cce81e2334996c998d0f6f2a261150a41cd58b4 legacy-trunk +10514 3ffd45f05e3958f58e5bcfe5ca078966481a430d legacy-trunk +10515 cd3092069f5a393912bc1a208cd5620c168208f3 legacy-trunk +10516 6c594988572a7de271367e46a55c13450ec4a758 legacy-trunk +10517 e091e9d495d5a9d067c7c43d6bff04875546602d legacy-trunk +10518 5f35e2781032e230ce051dd87c0b4d271241f850 legacy-trunk +10519 43be0b90271708874c0df62a669dbbb691c195a5 legacy-trunk +10520 a38550613af3d9d8e9edbc4f9bb49af1406cd67d legacy-trunk +10521 df0fa5dc599ae0654d79cc290b9e07ed5dca3a96 legacy-trunk +10522 e2333969a2caca3f7898d8b14a9422019e2aecb0 legacy-trunk +10523 4919dee18781c13771e5ad3b07bbd6e0082af7ae legacy-trunk +10524 b8e8ace79cf02ccda7257e1d574a0fbcf9588af3 legacy-trunk +10525 bd30ac831217234188193bccbaf4ce1f05ce248a legacy-trunk +10526 254fc91b6b0e7380958074feb44b7ec167b3868b legacy-trunk +10527 668ce0edb4f1c5429d3d002b6298aae5cd82b4f6 legacy-trunk +10528 07730b82a143f28f52fca45ec8d65b41087e385d legacy-trunk +10529 a93052ae0deb5a4d160d0968a700ad420fbe5070 legacy-trunk +10530 5dcc5c4a18bda6485d98b7096da2790398c67d62 legacy-trunk +10531 7099de83b191b9246fc909914733b55be7e2810e legacy-trunk +10532 9b8b574ef0071e1f909fe7538f2c359f2912598f legacy-trunk +10533 cb8d7338248cef77c875fb36eaa846a09efd9c93 legacy-trunk +10534 a3d912afc909abcdd2a53162e4ffa7402c6cbb30 legacy-trunk +10534 44aba4d26b01fbae0403efe654f9fd0347606732 legacy-trunk +10536 bcaf48b94bb3383c4ca17a919ef82feab3e2d4f4 legacy-trunk +10537 43e802c16a5b1afbb8600e58d322db61cd2a7e2f legacy-trunk +10538 5aacdd097941393d6da6ed32a25241f43874918e legacy-trunk +10539 d9ac924618329cc40997211c36126f9423781eaa legacy-trunk +10540 77d4e6f662c1bee076b620f6e09eb79bce13a5e6 legacy-trunk +10541 4285f8b7ba0b2fb179947be29e65dcb812ea10c1 legacy-trunk +10542 0766df503ea53df416d8a5e5eb1afaa29caa9f52 legacy-trunk +10543 d97048f891bf06add9aa8791873bbd54436b8c40 legacy-trunk +10544 98ec423ca6fa9912a820eaa056f6dcfd74c7ccd7 legacy-trunk +10545 224b5c36afef856b8996f0b3051c88c483121583 legacy-trunk +10546 f0bd9ee78a521763111ee49a6a57299e0ebb3a6d legacy-trunk +10547 a7dd0f52f2b60946ac452d3b6c88d7176402b8ab legacy-trunk +10548 48e2349d11c609372be8ebf0e90dba3f6ddeb97d legacy-trunk +10549 9f16fa70d090eaebee00403b4875958d7aabda6d legacy-trunk +10550 86a6193049a96f404f997a769be22702906bbc98 legacy-trunk +10551 4a2f1c69fde81e96a51a4df24423b5cbad192bd1 legacy-trunk +10552 052e77664032e18060c2a191b4234377db8e9e4d legacy-trunk +10553 b8162d0868500e91fe99abb99cc2c3e64fe860f1 legacy-trunk +10554 5a67d90510262a17ae5f67cccd6485724913922c legacy-trunk +10555 d0ff41746a2600e4bafcff8cd6728c7de78939df legacy-trunk +10556 e39145a13096802d4e481c11d6924b0bcf494645 legacy-trunk +10557 de029e6f983891c7e0fbd0afaf408f217e12c1a4 legacy-trunk +10558 5bff0417179858e32d8c664cf337eaed28bb11f5 legacy-trunk +10559 3317f72723bb6096b89b716046c52e00ef35ddbd legacy-trunk +10560 c15330eeb192ad66d1c4e1414bd3843555125d35 legacy-trunk +10561 658d184e92041b9c68d8706b16d08e1172e18936 legacy-trunk +10562 0b0b69a88b7b95b6132f30af5ea193a7d0e0ef71 legacy-trunk +10563 6b58b79a958d77a58f4e5476a89e70d35661e85c legacy-trunk +10564 7ace172c2521b02eaa1fd6dce8e3810283af7297 legacy-trunk +10565 bb3ec812ec90f2487883e8b9a70e704f3e3ee980 legacy-trunk +10566 5e3bb415600425fd9ff8f13c354410a9d4e63d90 legacy-trunk +10567 692be123f547f1d34751b4e1ad79f3a49344156c legacy-trunk +10568 e3dce3b8c28259c61997f1a83955bbb2d3933278 legacy-trunk +10569 0493137a841461aa5828a58d41542bb9faaf8276 legacy-trunk +10570 c5f92ee8498f5c8b2c46a50bcda0547cb0985c31 legacy-trunk +10571 df37ca4038f6c26181e51a9e3c1a68ec879d6cf3 legacy-trunk +10572 96aa58725c0e4058b3588bce62a8decbdac2492d legacy-trunk +10573 08e1bb8407e65204420d88e238141b4654a4c7d3 legacy-trunk +10574 ad9aad813a61b1cbf538f6a94dd57633664f7566 legacy-trunk +10575 573bc064264cb7e4aaa9df247d022ac7991143bb legacy-trunk +10576 47bdf45afb6860705143332b50ccd1dfffc4af14 legacy-trunk +10577 8c1f161c6c8c01ed80b3350318e71c3ebf3921e5 legacy-trunk +10578 a6ce2dff2735b7725b4d83d21fd30c9e4128c982 legacy-trunk +10579 b576846c94b38f5446eb933c7f0749ad64f711aa legacy-trunk +10580 a55cba96376163e0cf6c1afefaf7190e8bfe4e2e legacy-trunk +10581 f2f912823ee78571fffdc8e2aca7309b3c1253f4 legacy-trunk +10582 265c2797781a068fa52405938c06e02338443343 legacy-trunk +10583 427f3489e52b6ac0db6dc5ff22aa34f9a5978a6c legacy-trunk +10584 11a1bad6df6733e2c6193c9ba8f6fe47823ba7e5 legacy-trunk +10585 93348e5a85a240d1963a42f6554c10790b167343 legacy-trunk +10586 791eda52b3d9cbaeaeeb839aca5f595acda73ecc legacy-trunk +10587 9b3b0132c021c7c6c88abcc7a4512af9ba8d5c0c legacy-trunk +10588 2810fc609aed0720757827b1977f111a0545d5bd legacy-trunk +10589 a9973f9b54177724af5be9d36de09e2bd143030b legacy-trunk +10590 2e49bc89fafa0dd3f6e56ca03ba114e0c607b3e1 legacy-trunk +10591 f0707ae00433849ad7cb05d77084f3e5b1d879d6 legacy-trunk +10592 5c9be98f5347394e1df9e90b31926079d015cbb6 legacy-trunk +10593 b6ce1719323ac7de9f21b7ff6319aa466af25320 legacy-trunk +10594 e2d33c0732bfb19178cfa187ec927a404e6fe99e legacy-trunk +10595 530ff3b99722b6c0dc57fe446e3ab64cb2001e77 legacy-trunk +10596 d96223b77e2f370942fa80df7aab52147bdd17e4 legacy-trunk +10597 59997fdc81df7f1830adfe2c67218aa036b87f64 legacy-trunk +10598 95efea68f18d7878579d10d01887b847265749a0 legacy-trunk +10599 7cf51657b08caab4473a706bedffe7a14ba42ea6 legacy-trunk +10600 5aecc277e6caa00ca7f5849f2fa3c2744c0941cf legacy-trunk +10601 068fea15cbcd864f39292717e1ef109a6a7f5226 legacy-trunk +10602 e904e6dfd70b2525fd2ecb2c7f702153ff52ef8e legacy-trunk +10603 8c552eedb1afaf1d0e094fb76893e976add3824b legacy-trunk +10604 0db6f6932b735c71c03ade0c7eb0585f216c6594 legacy-trunk +10605 bd744af6845f8b1a5c5cb19315df5a52e041a6f2 legacy-trunk +10606 36404d9cb5e15cbf2e71d9b8c3536bb0caa902c0 legacy-trunk +10607 daa54131453b77e39d5980c67c88d9904b618d14 legacy-trunk +10608 047533789359f7997b4f51e227cc8fbcbb00c822 legacy-trunk +10609 fdba6397b729e473ac3ff63d498d98c052948e15 legacy-trunk +10610 1094ebbd3a4574d282cc8d3059042e0ede802e08 legacy-trunk +10611 1bc65687626b879464f68aced6f0eccbcc514768 legacy-trunk +10612 8b49c918a25f36810a5e0101bcba91d468b59737 legacy-trunk +10613 4323b2433581d8c8c89311dd6060e00f5ea36971 legacy-trunk +10614 6088d652b932841abdac5c3ee7d2f66d97e86c8e legacy-trunk +10615 c7d99f6d2e2f8c179e7d0607d522c81cf517e2b7 legacy-trunk +10616 ac288db5bc91c442540e2b37a872b953eab8a2e7 legacy-trunk +10617 cd6b9fc114a415fa4eb5435068bd46b414938d30 legacy-trunk +10618 44356ee7e579063404da1b235d620ec10ae8a58e legacy-trunk +10619 9d03101436008ce08d2c645f3daabbc6ecabeb2d legacy-trunk +10620 ac3ca566cb4161c409fae1b4a7f383c713369f04 legacy-trunk +10621 23a8377262264b5763c3f9bee38b2996cbd83c21 legacy-trunk +10622 b148fa1525db998eec31b09af8c85d6c3f2bee87 legacy-trunk +10623 d601af806a5733bf3756e29b7ce1a3f035ff0559 legacy-trunk +10624 aa3b48002f887e36af2b2087709ddf61c98a6a3e legacy-trunk +10625 e033ed50cb376cf6a5c85f0033f271e37292b889 legacy-trunk +10626 ccd8375db2736de9da650f7599d0b35780fa0fb1 legacy-trunk +10627 c0e3944b6a64fe2e73f8cdc5a03bf9f5a4600d4d legacy-trunk +10628 bdbe082ee383da8a02c62ea3b0ca918caedaf82b legacy-trunk +10629 9279ef6868eba3a55099392e5a50708d9f585449 legacy-trunk +10630 91aaeef75a7362f87b50c61f4e093b69941106bb legacy-trunk +10631 3a52028fe9363da2f61cedfe34c98df96f43a7ba legacy-trunk +10632 46686d40bdfd6c31177b92bf4a415f9806d8e7ae legacy-trunk +10633 05febf931e91b4bf962e99031b875f87e4cfb740 legacy-trunk +10634 995fb55b3e6abd21dda0c2cf7fc6eb89ea416ddd legacy-trunk +10635 255233e42918f349f1e33468a0bc2ad1111532a3 legacy-trunk +10636 ada40e69fd0936e3516a0d2b71a1fabe5718ec33 legacy-trunk +10637 e49b30c6a80ac0b7f8c76b8a0aa42fae417763e6 legacy-trunk +10638 bbfe99c2785c937232b7e3f7b3eb65f5148feca4 legacy-trunk +10639 b1b26e0e0a0adad3c71dac8d9bb8c0cbab54ba7c legacy-trunk +10640 056572e0781a6a2313b2d3497d5671b164e8d08d legacy-trunk +10641 ce9fc64528a79dd910e5466c6e56be94d6961d45 legacy-trunk +10642 125bfd89696716333cae4e8c347ef7c5feeb8ad6 legacy-trunk +10643 1bbdd84c7a409965638fc2facd4b3a43372b87a7 legacy-trunk +10644 a3134c6970ebbe8c4b5ec7a6966860b21631abf3 legacy-trunk +10645 ea59bb92138051510517919d12b883bc0f4dcfa8 legacy-trunk +10646 f3c8fbc793fea5e7ca846eb8d80d13b0189ece7b legacy-trunk +10647 6f5c936ae2d22281d1fa23d5af294ea388e0d32f legacy-trunk +10648 1546fc76d00ecd5efb0227ebedeed747db25d498 legacy-trunk +10649 b9d9c0eeb47c2608373bc948a3ef80d506f74e7e legacy-trunk +10650 c9d0d631abaae0e0272e02a52f7b458511749207 legacy-trunk +10651 284add74fe3705ec1d5d71d6ad90e149b523feac legacy-trunk +10652 536e439a65f9d0b523df933d62f56734ebfefabe legacy-trunk +10653 5732ec2487c50c6d39e7df27752f21b7170eed91 legacy-trunk +10654 5bc8ca13cfe01c1815552d99b2a792a421d4b4e7 legacy-trunk +10655 26c622d3717d22c71c7a08b579bb851d48333df7 legacy-trunk +10656 a8df090a12baf68f5524441e22fbfa93e7281c58 legacy-trunk +10657 a0a0c14338c074fd96f1e72ca25c24046a6bd9ac legacy-trunk +10658 ee27f3a9166f801333bf3801133b16974afa48a9 legacy-trunk +10659 30fbe302c518ff84ea59588a918ee91cd941f7ee legacy-trunk +10660 4a7ffcde40dc8f7011ea210d5d7a2d11536c3737 legacy-trunk +10661 68ee8abd97828b053d078daa27c909297a79dfd7 legacy-trunk +10662 c69ad566aeb1e531db82b276cd04cb97fd3ef0b4 legacy-trunk +10663 de7fc66c0b4fdfad15aaec400af71e25f3a04aeb legacy-trunk +10664 6f1db534dfae4adfd4b03fc1973a9212eaebea51 legacy-trunk +10665 142165ed84d80bc057066d0f453f8cd7e1ecabe1 legacy-trunk +10666 929b7e6e7520c5dbc02522955c92b8043d85a3dd legacy-trunk +10667 775808a09e46b77341c1ab467218af0f5f8f520f legacy-trunk +10668 6735ef662f39d8cca3eb82d6d5779c5172c6cd21 legacy-trunk +10669 997d5a2000e04526cf59f1346c66fd73c87a4693 legacy-trunk +10670 ce2d120c3903f254a583f6cc60194b07dbbf470b legacy-trunk +10671 25c2aea645017cfb141c1aa43cf5e51970111744 legacy-trunk +10672 35aa67fc4e60f6f6927f37338c55cbde50e84e17 legacy-trunk +10673 b81bf9ca179d3eb6dcd773e04f4dae80bebc98b4 legacy-trunk +10674 4894ddd452eecc1269717c657204a222a771899a legacy-trunk +10675 b6686f753798f82f157b60eaaec02ca9fd2ef615 legacy-trunk +10676 820d510d1dd60c016e5fa7fdbbadd5705ac8c594 legacy-trunk +10677 885de49b445c53c57870b23a12bd3128ea9aaabf legacy-trunk +10678 3a55b4c5e3c71995db2f3949ff06b67c8c72c9d1 legacy-trunk +10679 83a69305cb06e138a097b68ec7c62e7e05007757 legacy-trunk +10680 c31c59f192af220415ebc458fef16a6f3685e764 legacy-trunk +10681 482e4ba33c08f6a6812eb8da5f3239d3e8d5a218 legacy-trunk +10682 05096052d8257a0378082dad532df9926985f727 legacy-trunk +10683 9f0bb87dde600ac9bcd93a83bcbb9106fc9294a6 legacy-trunk +10684 c28b0538a446547fe79186f78bb35e91f35f4eef legacy-trunk +10685 d6f4c2a5312c4e1dd3e2a90c230bc29fc95b1e00 legacy-trunk +10686 c4289b813924b2753c3b9e98439733147e7df661 legacy-trunk +10687 7ed107af9ff495220fdcd4df04ca3f1fa40d00b9 legacy-trunk +10688 b54949690077974433dc47902b1ff31ae6de3220 legacy-trunk +10689 e265693f0790207724122b087d7bf31eadac4cdb legacy-trunk +10690 34cca832a4afe3891260d8c05c7c369c8f8a5090 legacy-trunk +10691 0b7f3a932085c34220e9933d41d03105da3379aa legacy-trunk +10692 203e2ab63936a25fe2b0a1f69f05e67bc19f2969 legacy-trunk +10693 15ea15e0ca2ab858ef4947594403e67a0aca521d legacy-trunk +10694 a444cd835c0e046571ea03e7776f695c7de439e5 legacy-trunk +10695 30c2385ca3893a0b92baad5230270b465063155b legacy-trunk +10696 bc2e9b4eb8dd584723654b99ebb018db5993dd87 legacy-trunk +10697 f320800f0fa55afe789e04021ae8c8b582327cea legacy-trunk +10698 a19661076529a8af1fc3ffad3fb43e399fc792e1 legacy-trunk +10699 f1c9609314131933815dac45d929ed67e4497388 legacy-trunk +10700 328d46c473f4ec0e2c0fd0b32bd9f5038589bb4a legacy-trunk +10701 9d54aaf0163db0eb505b22aadca6e8ad492d231d legacy-trunk +10702 6a087ae180ba358a31ebd79170a3dc831eea5746 legacy-trunk +10704 e834ae73deddf2bc0f76f90c2a058fc23c165d0a legacy-trunk +10705 1362c91efcd27e2652affe8efa43d5f2ba93b883 legacy-trunk +10706 5e394a07a3a4f101e9f409fc21b9d4cdd486d271 legacy-trunk +10707 9fc2af9e5859a0ba070783fb07aa9f35c397acc9 legacy-trunk +10708 69f2e05cc378ed35b1c4e06917a73d8988a96dc0 legacy-trunk +10709 4a13a4d2588b30db051f1c498a4e48f4fa0c1007 legacy-trunk +10710 9d642a735a1327d1ffad362ce907e7d2bf9ed0ef legacy-trunk +10711 df752c08b46220442fbb7fdafcda4cd6d485524a legacy-trunk +10712 85a8ae6de27858417344ba4eb707fdcb8c8984c8 legacy-trunk +10713 a103cf6d3845b558ac7eec37ef270d9d5a481fe7 legacy-trunk +10714 ecde8a45d4251318db74376a9d2692938ca38929 legacy-trunk +10715 0ec9dc9d201f2f1445529922d82eaf1cf1f0eda7 legacy-trunk +10716 406dd2b367939597cd1b1e41d57b041820027e5b legacy-trunk +10717 9306f58cdba5a1da24c305b5167207ca2ccde83c legacy-trunk +10718 14118b57671ec4aa9b944f0d907cb5fa92cff43a legacy-trunk +10719 2403e92a4a6c08b95317464de0bf89779f740849 legacy-trunk +10720 07c0a331c26922bef2819d3076165ae85ae3e0bf legacy-trunk +10721 3be1ad9a8587f36fa3cce59922619f869e6f3902 legacy-trunk +10722 de2ff89d6d4bef2b5f9ee8adec04c1d6d1ecc41e legacy-trunk +10723 4033feb26da899a5e2270f23a4cd3d76dc4bc3a5 legacy-trunk +10724 0792dcde8e311d96f18c1169f5c06734061fdbc9 legacy-trunk +10725 74edd5cda9fd9c5491e4d8ac83cb12d5d2a61d8e legacy-trunk +10726 1052b0b2c6ea0f50690cd44a09557b1696411734 legacy-trunk +10727 2faeb72bb64a19c916bff489aa5f6942c37d31ed legacy-trunk +10728 8523ecaf59c569a9238dc3315eeed072e2127dc0 legacy-trunk +10729 7356d4888a8bca93440e29a79fb595afcea2dc2c legacy-trunk +10730 246acad9c893dbd6e79ce109730c82347b56f621 legacy-trunk +10731 ab0d5f265d54e98f05d8c79c0fe2aea29eabab32 legacy-trunk +10732 50d35bdf2042de20c6e7aa21f1b88f42c87fa957 legacy-trunk +10733 37c3ec4f3d3f9a73d768eec0443c76de985c5d2a legacy-trunk +10734 fc3350ae5f2a95671f48555b486d788c290d945a legacy-trunk +10735 bc50f5c20bc96159d8d258baa0938fa417883231 legacy-trunk +10736 1026d033c0dd9a2a8dc712e5a34868efe7d8d58b legacy-trunk +10737 10c609fe7debc8b784ed971abd4abee12b261d0e legacy-trunk +10738 a8c21accbecdb925d1e2332332166ebaaa07bbff legacy-trunk +10739 107a8525bf5eb5f60d52f43d1adf4c124d92fab6 legacy-trunk +10740 eb835ed1f6fe837a80c1b5a557b4bad9d5dccc31 legacy-trunk +10741 9b07d27a31bd79a5d4dc5670219fdc2600fa353d legacy-trunk +10742 d83f1bcbb1505c6c8b7cab6df0b0e29a9e1404bf legacy-trunk +10743 b8ba8887d59f7f6bcb0f15630bfbd50f124678fa legacy-trunk +10744 8b822083726b1c6b36d690073a97871bf1163b73 legacy-trunk +10745 b4d3d1a08e4dae619384adec8c5c27aaf882a0e2 legacy-trunk +10746 ce1ed7eb77507796e182b0046d7b09b07683e0be legacy-trunk +10747 0d3b73d995888e9b9c6c258e0e10f9d2f7ee5d29 legacy-trunk +10748 ea4b7a54fd92fc4da449c5a1fa932c25c2e5363a legacy-trunk +10749 c3457fb18a5107f6d07dd519b8cfde2220e8370d legacy-trunk +10750 e184f83bbb797d4c07d53bf982c39451e635ce93 legacy-trunk +10751 3d65f616f93e5e452c06e1682a2d8ff43ddeda5a legacy-trunk +10752 aaa1c8b529f525801658b0beef20e9624a3da12b legacy-trunk +10753 66a2ea63b4d8578a84d916cdbb0d43a7cc374822 legacy-trunk +10754 e469a8af04b21d4fe14fad0408a817a29981d5f2 legacy-trunk +10755 2dd890af187e10446972e0dd826544540d10f873 legacy-trunk +10756 1db4099a72ce8b079c2104d7f7ac69c8327f4667 legacy-trunk +10757 7b25006579f4cfc25c6d10999171c3705f803658 legacy-trunk +10758 7076531efb8fdb33ce6cef450f336975cedb66b9 legacy-trunk +10759 d81f3161567b5ff175ca689f029e925348f295b4 legacy-trunk +10760 c7d0b971e0e3925a345edd98184ba4dbbd0ec75b legacy-trunk +10761 35d1ceed69b9eaefa4e4f9e300c7fd10c8969f65 legacy-trunk +10762 631a159cf040b1a9b3350d993ea0538cfb26513d legacy-trunk +10763 2b2d21efc4d715e19b080f28d6acf379ca900628 legacy-trunk +10764 6588ade0efb774e8bb8dd2ddd97b39ba71a55a07 legacy-trunk +10765 3818a19f747f0a884c4ef390497a2a60708c90ae legacy-trunk +10766 f834e197bd146da728e967dea5c9241b0427c91e legacy-trunk +10767 32bc17f7c77bce7a35556af9450e12ca5d74070a legacy-trunk +10768 4c88cc62e9e90a8434f0750e379e6ed4a4965cb5 legacy-trunk +10769 d3bf3c2ad75a9fe6e59567bc0a8ee8c8b9c5ebf0 legacy-trunk +10770 6ed8a7ffc5953704ab8f46bde8da2def4aca4185 legacy-trunk +10771 9281b5d35641a0c05cd80fe014bd29304067477a legacy-trunk +10772 74a910b86b443d352595ef03ff77fa05fe863a49 legacy-trunk +10773 f8a389b104f091b2f63a16b3c86680de930ed951 legacy-trunk +10774 ff63107c9fa5d78ffc84ca42f210216fd25f5831 legacy-trunk +10775 f2bb8d5195b66874a52372b6f2c78ccc2928cf56 legacy-trunk +10776 35ea0c073ea3d3115487f6b73b08119177e655ee legacy-trunk +10777 b438986b3c08d83c133d6ae8461f73868807fa74 legacy-trunk +10778 5dd6f1ff66bc0509952061d317cacd0f24ba63f1 legacy-trunk +10779 bf8e86b95c9226a57096111b27137938690a06aa legacy-trunk +10780 9dd79d0104d96f4a588e6f8b1558fffd1e8d8d21 legacy-trunk +10781 4c3c12e956a75585b734d066731b2785b3e3a323 legacy-trunk +10782 e3d21c4ca362fd309076fa33ee6bab4c89280e96 legacy-trunk +10783 8b50751f272c84ee84694697cb5db4b61b68b523 legacy-trunk +10784 d3f3a0568bd6a08d083d7c4371f66de44b9bac05 legacy-trunk +10785 b59b9942bac961eca5db37be5eafb29abf0e2dad legacy-trunk +10786 623c459f8fbedeb76df0d4357ee6e9d102151571 legacy-trunk +10787 0d2d61f52b9c52d61e95e8259cf00264847b5f23 legacy-trunk +10788 4674cd2f6f072bce8dd7ad3f5ab2e654f9240727 legacy-trunk +10789 08df9cb573adac81569022944f60bbf1b8844392 legacy-trunk +10790 fe1fd56cada702002eca50e68236741f4c587a6a legacy-trunk +10791 4070859fe62eea40841e574659b5d880b205c276 legacy-trunk +10792 414247d4fed73a3bdb32cdbdd275f4d5fbc885eb legacy-trunk +10793 f4fc9d18a53d47338148b914492671eca7db8bcc legacy-trunk +10794 d67be13da3cc18e4944dfa8757b22b0cd337e993 legacy-trunk +10795 c62360aa5ea40aab8b9aee87fa4d8ad30158aa72 legacy-trunk +10796 f94d5ae642a9b1cde8feb1072f9df5c2daa2fed0 legacy-trunk +10797 e42b94275652b9d581ba46607d5eb8c3581f7114 legacy-trunk +10798 63cce9d77797622e594573a8c8d1c22a66b561df legacy-trunk +10799 81057996ff21d1c4af2b129931b855564e2c97c5 legacy-trunk +10800 ec87b62466d3aad4a513f3e2a4c3fea1bb0d36fc legacy-trunk +10801 df403ed35bdde00a0e27c7e56be9d75145efeaa9 legacy-trunk +10802 c14e68f591ce305bd8ddcf384c45fe2a0ab0e3b9 legacy-trunk +10803 9ddd679319a9d81014c539bfca0e83cc4399def3 legacy-trunk +10804 e6ef0e39e35ced8d6962d39c10957d8bf9ad946a legacy-trunk +10805 e1392105032783c5872b147dbec929b1f929b7d6 legacy-trunk +10806 c49c8f7fdff186ce143b224cf764c49e8f329728 legacy-trunk +10807 af11dbf35ee5e9fa9af4180a7e77b2e2c3273631 legacy-trunk +10808 a23b75138bb0fb23ffa34244b0c41152c0fe7347 legacy-trunk +10809 1897747738f598fa31ae718d527b172bcf1f722e legacy-trunk +10810 48240f525ec3be583c595ba9dd6e341922a65da5 legacy-trunk +10811 cd828462acbb82ec09b008debb4d0a41943560b6 legacy-trunk +10812 7a1e7da922f870572b98432b580b0a5dd0ecb5ce legacy-trunk +10813 c59b5736f307f350e1a07b3c95e75b6de4d0efd4 legacy-trunk +10814 9679e77d42e3d58eadb8191c872b5f32f80cc43d legacy-trunk +10815 a4ae792b9b6802ad20efb034df7f8bb1dbf25a58 legacy-trunk +10816 5bfb5edc313cb662130253b7ded696eee46e88e3 legacy-trunk +10817 bf11262026bdf75244c4cc586c731667b0308240 legacy-trunk +10818 6b7095b98e54ca5b11b76e4460b16ec1bdadd369 legacy-trunk +10819 8d90e781ada8bc0a9b0df902bafd36e2714ff212 legacy-trunk +10820 7658c8a149d185b34ba0aa08bf3e6c2159f62fb4 legacy-trunk +10821 28dae91c5d0ccdffd3432dc005e00706d2006deb legacy-trunk +10822 a84f658d4ba4cecb22c52e843bf09d21bb75db95 legacy-trunk +10823 ebfde06fdb8d8cd9df5e53bf03036d0fc68c73c9 legacy-trunk +10824 22815a0b126756e41d81403f554fecbe065953d6 legacy-trunk +10825 1b4a37f373450ade9b21e20fedbf0cffc95ac027 legacy-trunk +10826 d2d82f7b419a6011dfb3f722fe66dddb982a6ee8 legacy-trunk +10827 05196a4e5448bf8cc5bc55ddfb0fa25b91601d5f legacy-trunk +10828 1b393db00b1ab8cb3ecf0bdc844137aa9fa524d4 legacy-trunk +10829 e7dd991faa4af190c097f460ce80a2c1f0093030 legacy-trunk +10830 8d9373bd8384dfcc67db7bb6a5abe91f89c4b6f3 legacy-trunk +10831 4172da91441aa0f5642ae8f1dc656374f32d861a legacy-trunk +10832 52c33952460a8f447a2d9a4a1096010bb82d1537 legacy-trunk +10833 253bfcb65b77343aa1a8606db527ff3adbd3100a legacy-trunk +10834 c571554134d150517268b1807e0584324d87ef9c legacy-trunk +10835 c89191c2e63f0208f901fce2bbcab921f346e9bf legacy-trunk +10836 f308961b03d7d51def9f88fe03479b9dfd0203f1 legacy-trunk +10837 1bc0df96b4ddc3e906f1d7bc1a824a0f147d30be legacy-trunk +10838 a7423e68cee94741f6a5989bd57f3b3775179114 legacy-trunk +10839 820f06bb41c7f56f5f544a5e69ca264ff3f8eb30 legacy-trunk +10840 da4bdceeaad7a769d36ca67a85f17ee49477b48c legacy-trunk +10841 739d5fdafc32eb2a6097e6a5e3c35536f259fb92 legacy-trunk +10842 e0746a0da7362b032de965fa7c50db1f4ef90878 legacy-trunk +10843 e80d4c3dbb787c8e5c949f9f953b095ec05a3b14 legacy-trunk +10844 e41211a7aef3fa511e4a8826713a46e5cfccd5ef legacy-trunk +10845 52d7a9e7122152a9f77a3b074a2cec9b53bd2b6e legacy-trunk +10846 455b22945482ff0f4661ce5f9dd8c854bffd6abd legacy-trunk +10847 5f83f97aaeb8e192390c16517eb06ce840f5d67d legacy-trunk +10848 e17a019f9390f7f50dfeabbeb81e2652ed1903f3 legacy-trunk +10849 a464e9c985f8e5bf9dc51bedee2be3362252fd65 legacy-trunk +10850 1c7a82d469e067167aefd6aa28a542e88aaf68a5 legacy-trunk +10851 650bd13bec92d113ff49c923ac29545a77b06483 legacy-trunk +10852 f2b0859fece3bbe7f597002b668f53dee049e513 legacy-trunk +10853 a65930f5cddbcdb5f72eb114fbb41ef0227fcf29 legacy-trunk +10854 6ad7c1656d18b693419fc09f151be9d417b3a6ae legacy-trunk +10855 6c826ee3e5538e41158c8fbfba75386dc12066b7 legacy-trunk +10856 a1bfe5bc6d8ea81a4438c0750f2aa1d976bb3520 legacy-trunk +10857 242b3c9c5bec273ba8ad8e337a4fb26a9d68e11d legacy-trunk +10858 77c1f11d0a8afcaf708901d86afaeb42b23c9ef1 legacy-trunk +10859 95f7c52b6399477c2347f81e749118e02bbe0beb legacy-trunk +10860 7ac15f1e5302108f483165b979889674c068f9ec legacy-trunk +10861 f5ebcc7a5ab26e1f71055929f175967cbea723b3 legacy-trunk +10862 cd2dfed0c44b53a48c0fa521cb11ad4327fdbb66 legacy-trunk +10863 822e0812f20c3572d0e56492d66a67ac8aa7dc02 legacy-trunk +10864 058190c9a4f126e88f5a49a80c124f97f17fab9a legacy-trunk +10865 91bb5a809481a2b1c96ff5c0732dd60a53cde086 legacy-trunk +10866 752b9f555788c0277c181077233c2e44baca7619 legacy-trunk +10867 3a31001849498e374c02437f0682396f528a75b5 legacy-trunk +10868 d6b863d1beb9244acfb75c2ff52d4341ec181721 legacy-trunk +10869 8e9d5e5103f5dc175b1a86bf9fa72c2b0d812e3a legacy-trunk +10870 73a25779e8372e11e00003ff75b4781553ba1b5c legacy-trunk +10871 de68f83c169ca688e538922f7f417499050816c9 legacy-trunk +10872 76cd03979fca423a871f04965cae5f79abefa2d2 legacy-trunk +10873 a582d70e312feed90a90734990af7afe710558fb legacy-trunk +10874 ef9b93b2a0faa330b4f3b77be024ad42bef65a64 legacy-trunk +10875 7669ddf0e7d4950a7ca8f3e83f656dec0d6ab3be legacy-trunk +10876 93aa08c77e60eb2bdfedeae39b7c2d7773992d64 legacy-trunk +10877 d7c568e7707bf1798d45d26105336a053f283e08 legacy-trunk +10878 79071a4e0ecab63143e983fbbeea4c7d99395d77 legacy-trunk +10879 c9b7e926fd86995f18106352822d0bbbb4be9c61 legacy-trunk +10880 ff31f25017425352c31fd827cbb0d28836c74523 legacy-trunk +10881 4ef7d260feac931ec18b79d1d351fabf6e5aa433 legacy-trunk +10882 6270c6bad8116fe17a7ed4c81d529f1d0ab4970b legacy-trunk +10883 70f93e0c580eecafba292975a90675b625d73d4b legacy-trunk +10884 0cb0394c2edcfe183cd777c87be8699b58a59e23 legacy-trunk +10885 c4df8b6637b6945b2f9e82363bf6d15c70760a9a legacy-trunk +10886 64b88a178328691cd4c25e78de7a5dffb15c98f8 legacy-trunk +10887 3c40af2d1de9e134b5e7dbd5e3b1072ffba962ec legacy-trunk +10888 4a33bb7adf7d61bb846d249a3a037e10a481f9e1 legacy-trunk +10889 096857b0e4b85dbdce07c76902e1f998763b9854 legacy-trunk +10890 8a4fe199b45def728cc2d32c1d81301eed895ed3 legacy-trunk +10891 f21867f8035bd38995c2f1aae1c37f805f738bd6 legacy-trunk +10892 c9e3ce8e74b5d7f51b4f093a2a267cbecbd6c9ca legacy-trunk +10893 db8b10b7ccf2249754718806f50413b01a6e7ae4 legacy-trunk +10894 4505160a7e5c6ce136df11202e99a666e99d31ab legacy-trunk +10895 55fc8d93308766f189c9cf69100e8064616cb96c legacy-trunk +10896 4064b6729537f031c08779978ee6ba6332332ef8 legacy-trunk +10897 ecdd4b4686268592c853e74b6209a70a0d3291fe legacy-trunk +10898 9ea50031149c2204e7b5886d9c2bf630040a7569 legacy-trunk +10899 f398419d50f974c555eb6f2923df93851492d7bc legacy-trunk +10900 b5ff663ee76d9ec30631436a6e00b834663fdc4c legacy-trunk +10901 c85e14293c2ee1cc45163f85decfe2114946cd09 legacy-trunk +10902 304d4e4887f4ca60a7c47f337b2bc22fa8c2c1be legacy-trunk +10903 d96cbdacbe7224c9f98b62030e9d298ecfbf8e98 legacy-trunk +10904 472e425414d8247fd93757c9b55352114c6748f6 legacy-trunk +10905 0a00dd5711e621319f9aaae8ab6eae16cc974ce8 legacy-trunk +10906 756e2ef51b19c63fd04e87948f56abe86644f143 legacy-trunk +10907 e2d41bf1a0f04ced75d3303d6ee1530ad27bd127 legacy-trunk +10908 0b3e577a8df47bffef9fa5057c32cad781258c01 legacy-trunk +10909 e96e3d387611f03a27cbbb6bbf3965bb13220023 legacy-trunk +10910 3e653e204ad7bbfe9a46b7017bf623009cd4e544 legacy-trunk +10911 f7c58ed2981d1eb1bf5353e68db424c999393d05 legacy-trunk +10912 12ddb9bd0d3391d56314c09bd260170928bd4944 legacy-trunk +10913 82f021eece2c787eba0233f126e689f998ba0c5b legacy-trunk +10914 92c0c98b42c536778b523c8899056aba9152e444 legacy-trunk +10915 7cdff8aa83183f7f51d31b617cbf8e756dde497d legacy-trunk +10916 ae746eab2a960554a85e9e887559151071db4f55 legacy-trunk +10917 78eb40f032843cb1eaa14420b0806f43109c88ac legacy-trunk +10918 a9a788c74d6e7c2515e03c1e9f6aff4e76b63b74 legacy-trunk +10919 c7b043136fdbd811b3085c4484200f956eba3d56 legacy-trunk +10920 c059bbd14b232d3efe24f125e463b412b20b4f6b legacy-trunk +10921 534602746079d13c929bf916b670d3ee4f7c853e legacy-trunk +10922 7749c3e0324af066a7e8b85cf5ec46190d618e63 legacy-trunk +10923 9e4aea5a652d21ad0b51ca23d60e3d883f9d980a legacy-trunk +10924 fd5cefdd1f61dcf4be4bb804daaec62bf34ae812 legacy-trunk +10925 c550ee4935b0c786efed7740d8d37cb42fdaed15 legacy-trunk +10926 6f70ca7c84e66cd32d63b9f75aba89f02edb006b legacy-trunk +10927 024714558620ebd332e6750d7a4e7e59faa34a90 legacy-trunk +10928 59dfa9eb7c070ff65eb4b1d3e241e7556018cf1c legacy-trunk +10929 4e668f1a9dddef5a2a4ca3f634c7cdc7ee0a8c61 legacy-trunk +10930 a3416091c2a25a36131ae38106625b28352f3113 legacy-trunk +10931 36ea13ba3136443f72be528346b2b04fdc5a2063 legacy-trunk +10932 61912d4ad52f6783e9f9b05ec0c566572672b9f6 legacy-trunk +10933 754de621e8b30ce8ce2d5b191dd8e7ca90782304 legacy-trunk +10934 84d1b7cf815a79e923dde04308267b9b885535cc legacy-trunk +10935 4e59d890a4bdad98bee2133217514c2518ad7cbb legacy-trunk +10936 2bd8d520ffac01a57e18b95448537195ec6672c4 legacy-trunk +10937 af9273b1073aaaf89721b421f4b2784ff66d069b legacy-trunk +10938 92c88ca62da7b813696feb57defa6b1f5d9ddb4e legacy-trunk +10939 af48887c97176b6e855300194e9bd4af04c73e5f legacy-trunk +10940 57dae1c7ea847bb951092d512bb1d842ba64d5c9 legacy-trunk +10941 f750b1ffe35292e2db745fbc0daf525a20571cfb legacy-trunk +10942 2095ae690aaca04d742bfba7b94fa5856f47d3c3 legacy-trunk +10943 10267c7555ae65101668c646e68302fe26443243 legacy-trunk +10944 da07663f9fff46fd0816d9a064168787be850bc2 legacy-trunk +10945 133f4554a26d57ce5934d89efd6a5f7923ecab7a legacy-trunk +10946 7160e529e9a1eb2ae6bcab91a97ffd5d3ec552ea legacy-trunk +10947 0e6fbbe3b63c140f78c695f2b7198f16475896d6 legacy-trunk +10948 41209d5d1d6490c807be6f98e30b4f41f7936174 legacy-trunk +10949 7638e459420675b6b0805678168df04b50904a66 legacy-trunk +10950 c27cd5fc46b532fadd4411ae7d2ec18db154e796 legacy-trunk +10951 9c32cac562505d3cde20ed9d4e9461bb3935370a legacy-trunk +10952 933882c0e9fba0a2dfedd058d94056ea3dabc8fd legacy-trunk +10953 c89189b0236ec1f139390d49c8122761889147b1 legacy-trunk +10954 c555c72f090dd087050c74ae0e695b5930157cab legacy-trunk +10955 a9d88bfa24af37238503aabe9cf5918e1c7df77f legacy-trunk +10956 049aa3a8a1720d14ed39844e8ed183d0443d53a5 legacy-trunk +10957 f8c6cf5cfa7d016c29ce0474ea7bba16f1f4df81 legacy-trunk +10958 7f95bb2f170489437b74214bef1ef31c745320dd legacy-trunk +10959 3a85ad5e4116cd506e5c765d2a4ca2cbc7ee492b legacy-trunk +10960 4ba587aa8a98c9c8b84d99f1b7e31e9ff4ed52f8 legacy-trunk +10961 e281d5036725297f515c4509a8ffd6e44020e6c8 legacy-trunk +10962 d93ae374fb998abdba65c6647146416a869459e4 legacy-trunk +10963 614a7ffee1133e711c8c2bcc43d2fff3e7532462 legacy-trunk +10964 7e3b72d8ae946202078c16032494e5cf25c19c60 legacy-trunk +10965 f6e900da37db458274fd19fcf63cb012af0ab55a legacy-trunk +10966 2e4f178d7e175938c62772bf5665176a1df9923d legacy-trunk +10967 7f94b495805629ee6eb8c4a2e3685c8e76fadcf6 legacy-trunk +10968 53afcd28325ef917375e4f86296b89f23b89e4ec legacy-trunk +10969 51457740f5cae9d57d265a46628f73de5a4af2c5 legacy-trunk +10970 3604131f942d68f3a6f358ea22f4f8c13735d79b legacy-trunk +10971 bbb7e1da46862351d0e51fc390c5f6d23a16cb8c legacy-trunk +10972 7d1dfe66f64bc551c03b9b95e8e988220049b94d legacy-trunk +10973 038a5c4335861fed7562b2f1ce6a1c5822683ffd legacy-trunk +10974 eb6f65966fb22b8f370b24c38c997cd0fda96758 legacy-trunk +10975 28f6b03bb64f058d9a5d7d80a31c098f6d996c25 legacy-trunk +10976 fc29625df532592c548e05cad5d05fd47db525b8 legacy-trunk +10977 0363f19887d15b2e60af3f9feaa6d34679c74c89 legacy-trunk +10978 1d8dab5aa7d10e2939c584d59b22320e42ca7e53 legacy-trunk +10979 0f91c0bbacc57c442bb40927cf6a20d8fc33c6b5 legacy-trunk +10980 69c9bbb69aab267fef598ffbc1ba1c0ad3f0757d legacy-trunk +10981 0447ef8483c8c754e73d1040754da9fce91bec92 legacy-trunk +10982 92cf7f4277230e9093fb5773da22ef8857dceff9 legacy-trunk +10983 ba312e790b2a2cb639daf6a2d7a6f0887ab580e8 legacy-trunk +10984 b8bbcc009a6ab35dfba772112162f1533f38eaea legacy-trunk +10985 85e6820482ff835cb19cb11824ff814056f493dc legacy-trunk +10986 de11a88ac498eb4f126d5d96eb28b141f74b989e legacy-trunk +10987 e82d0277e653c0985f50ff19311193eeabbdd620 legacy-trunk +10988 6bf5b87af02f9a60c84e221c55bc5a20984523b2 legacy-trunk +10989 f4809ff1f4da4e6a52bcf79ae8cd08dd49cc733f legacy-trunk +10990 ded69d12cc6835eb047231c29451375a3d152733 legacy-trunk +10991 8e820716cf123e2c25fe66d26993113fa2c14dfe legacy-trunk +10992 de0f0c3ed424e6a6535208f5bac467954a10bfec legacy-trunk +10993 69662f16a8389643650a56b926b9050f0798b677 legacy-trunk +10994 4ded4018b0eb3cff32c34a55afb7d381e0b5e6bb legacy-trunk +10995 da9bf9eed1fc7222af57d4b076b3558a02616420 legacy-trunk +10996 1ef40d5acce22b766e40b3dfff5146e5aabcb2e4 legacy-trunk +10997 16b3a121ff772e24dfdf2b296e6f06541aea164d legacy-trunk +10998 81e29477d2a4c0c762a332e4e8384c32c00591e8 legacy-trunk +10999 50e87c09c2366c3338ba3bd23e478fae6e625111 legacy-trunk +11000 b56981c0d61ebb2b81ff389350ba26ccd4f1e56b legacy-trunk +11001 61a9c529455a9082bd9e2dbdb2f16f4cdc9bf787 legacy-trunk +11002 b94015c0c837afe6d0e755d59251e0760a37b254 legacy-trunk +11003 064f85ee9be5b0795a19f9313aaf1436ff8b53c3 legacy-trunk +11004 4e4fd954dda0fbccc490237db287d895a9503da5 legacy-trunk +11005 d99920c0bfb015e71ccdb4ea39b9f0691c4305b2 legacy-trunk +11006 47bf3bb9556e21f8c06a8bda43be22ca965e3a7d legacy-trunk +11007 ec26d5142eb44021348cd3c7307868b1ee24ae90 legacy-trunk +11008 d7e39eea76f4ce386d464f88bb6e57e1e0c4442d legacy-trunk +11009 5f1e431a0a8268f73aab81a63bb4ae9b8fe8ca24 legacy-trunk +11010 3c8b149b42ff3a656e68b3920ba3d5c92eb9cb15 legacy-trunk +11011 0366daefa23c26970d247a5b1c39c95fcfbe22e3 legacy-trunk +11012 4829b8faf2b42b4c8e84e3fa357bff33f53a4d97 legacy-trunk +11013 18a9289df99a1f5d38c49227910f7dbf29aaa147 legacy-trunk +11014 2166866af92bb16c854a3487eaf69c6b17560723 legacy-trunk +11015 e5d06a602469cd9dfbd06e7ba6bdc34286012f0d legacy-trunk +11016 5f5b492d18043ba614bdc72cd7d0fb8dfc4c157e legacy-trunk +11017 f31ce46201c9560178fd00104f8d3549465cb733 legacy-trunk +11018 18a4e031d7ca0a689faa2240bb477d1508ba241f legacy-trunk +11019 3c4063f0a78faf276653972f7617f978b76cc9c0 legacy-trunk +11020 213587b3b9d0af70e5ea2860ec1c05c3c04bb9a2 legacy-trunk +11021 5099f44baf255c19739732cf2be188e7ef7f321e legacy-trunk +11022 f4b636d15abcd95cd7b8ccd8e42fc5c3b9554cac legacy-trunk +11023 cf0faaf3c04b6debd0639b01116c309069014541 legacy-trunk +11024 5c2f19d19643a289bc76db828938910be5d4bf24 legacy-trunk +11025 e951bf2d7d93b23b032dddaaa48053c3a0815515 legacy-trunk +11026 35a2151fb1c3f62475a25a53b700ef06285ac6be legacy-trunk +11027 e63393f536702348392367985a9410d48a109f91 legacy-trunk +11028 dc8daa748c4093451ac8a52b6d0dae68007b361a legacy-trunk +11029 d84f1209cba529984693677efa2d487b3926075c legacy-trunk +11030 fac33716a21834f9e6f495854451a0e1148d3910 legacy-trunk +11031 1ea195b142459984cf950a173852dca3f3f7311c legacy-trunk +11032 1e9d65f9ca53cf379c4033095f3d630f25b6d09a legacy-trunk +11033 589b64135ee65127f9d535e3e3a8ff7e95f0a93b legacy-trunk +11034 22a0724c6bac51a1ab3dc0b00c24adc738482e87 legacy-trunk +11035 4357b4eb5c19a6610344efe995cc117ca5939e52 legacy-trunk +11036 d7ce9ae362a904181fe345b4833e81d186f32371 legacy-trunk +11037 f6d82334ceb156c603e4bd2fb434eafe135fadf4 legacy-trunk +11038 d0eec96b4c5623d7ae0cf7f81869f14d744b88d6 legacy-trunk +11039 b02c43a201ae5dec031a918c790a77174ddf6e2c legacy-trunk +11040 8e60ff0646099346d3acd17c10ea242e17e79e12 legacy-trunk +11041 92267838feb9cae72fbee691bc38d3620d53dcf9 legacy-trunk +11042 46fd630dce6331cb581e3e60352ab186ee3e8528 legacy-trunk +11043 8973e7085cf49cd3c868893b8bfff5022f4b11bf legacy-trunk +11044 ff9adb57b8b51b29938ff296ebf655e45ed3735b legacy-trunk +11045 419ee95df2d88f5d92067ab6d2e4d4de41d3bbb1 legacy-trunk +11046 e87d22c7de3c3c9838b2c65ebd8b9084327edeb0 legacy-trunk +11047 19e8016cd38cfe6cabeefdd367428d76f1d224c7 legacy-trunk +11048 6e8b0e754a7f3709b2d44dd1204cb25c3272e381 legacy-trunk +11049 bc8619af0923be16f525dd8a286220ce78784179 legacy-trunk +11050 8716816e08594f408961bda47556807c8a7ead53 legacy-trunk +11051 450076068b22aee4d4e43cca37f6475ca1adff68 legacy-trunk +11052 bd695de18ecf23adcbb5b2e97fc147b997809d59 legacy-trunk +11053 67aa997fbb0e14b213723245151b255ed26a1abf legacy-trunk +11054 ea8f0f5ab0157e9cae9b878c4c6c0c1fd427c13e legacy-trunk +11055 6051f2e43517698f4542feac94e4e86fd12ca723 legacy-trunk +11056 110e97339740eb45f6f9c9ab618a13b7762c8bc9 legacy-trunk +11057 94ce75f43452f9db56f3668e1d85d1686cfd2fd2 legacy-trunk +11058 a3392545d8652c8acc1ef61ed96db966d1c5727e legacy-trunk +11059 f0faad8d5937ce3d9a8533adfdc16e15573c256d legacy-trunk +11060 2b041105963023afe35af5d58b34e3f7c8aeacac legacy-trunk +11061 b1b35f50f3fa6a40dd714a63a4e1ebcff6159d86 legacy-trunk +11062 1ca6895024d9feeb8ccef7cb56192d0f620c3d05 legacy-trunk +11063 221667f8906486c095db9532f83c77ae1f7c33ac legacy-trunk +11064 c3497026520d7a087ce5e48c9edb02ed206a555f legacy-trunk +11065 e8adeb5cd2fb7b7970bef042289dd92a2bce68ad legacy-trunk +11066 cb7fcfb562754c7a36a9a0c648836fed5f120de1 legacy-trunk +11067 1e5e9dc6f9939484c6ec121b424b7d1266fd0a87 legacy-trunk +11068 bdfef8e7345723099d4410e1724c007d8efe1c61 legacy-trunk +11069 1581c931cb35a6548b575a7e21c61262f4606485 legacy-trunk +11070 74a100cb7a643b51c92b7872e200ab13357b1c18 legacy-trunk +11071 97dc6aa532e7214d4e029ffc0e9a3076877b9a5b legacy-trunk +11072 e1fe30f325b9915d20a68775dd1d2f10a485170b legacy-trunk +11073 2f43b61a98df5ae19f2ea7a36f69503de054e0d0 legacy-trunk +11074 ecf0d51529ac59d534c1e250e740054e6949fb89 legacy-trunk +11075 fd1f4ee1b32a613d5f37b5806c1bf83d41fa007e legacy-trunk +11076 5d777bea543517cddcecf2bd0b2fc72f58015909 legacy-trunk +11077 635c3d94a94821594459202899c1b88d8180ad9d legacy-trunk +11078 125f21fde8c40655e17c82ba0711a0a343fe631c legacy-trunk +11079 7bc714144b98d84ff8bf231c74fe0413f838adc9 legacy-trunk +11080 eabb8381bfc74aed8e097220c3455194fb9fa999 legacy-trunk +11081 d4a688ccb93701c31b22bf2aa82f59baa8851517 legacy-trunk +11082 283602f30043241d1c4f51610b5c280977de7028 legacy-trunk +11083 0198b2f6b1c83bb5625d1f1769704452c1e96859 legacy-trunk +11084 ce362b9ba8361fe75f5fd06d97fbd0810f199f49 legacy-trunk +11085 c044977148e904dca41c184d9f91995bb5496bab legacy-trunk +11086 d1f392cdfcea6d7fc35e1c47d93e7d2c70611f56 legacy-trunk +11087 3c96fc846b88ba3a19445fda2ccb6ce3f9678222 legacy-trunk +11088 e017371b7ed1b32dc657454c0800eb82cf319208 legacy-trunk +11089 cc0fde4ddf44eae5ea2ad6ac8f8a70e6779ebae9 legacy-trunk +11090 45f9dffdba3dc0933ce2a1ffb2f7f1a79c695f47 legacy-trunk +11091 ce295bfacef37ca63da382b37ea4511a389415d1 legacy-trunk +11092 66f0540656a0e4a61f15f1e3e8cd03c7de3c6031 legacy-trunk +11093 04d5987370de2eeec0897018efa402745c24f32a legacy-trunk +11094 1bbfb91f8e886f27b7d03e8698106d5aa1bf7877 legacy-trunk +11095 e3d3bbbd93f34c3c18e35fa6f708f7f7faad858f legacy-trunk +11096 64f0c3188e707ae15caad73a60328d0493902712 legacy-trunk +11097 e7822b64a33d3d3ecbf33296b3818dde572a8327 legacy-trunk +11098 2417f17fa3e5fd2c80d5bb7acc18acc07b5bf428 legacy-trunk +11099 46b472ecb0f90a518a0ecfdd0c5737a6e053e9a9 legacy-trunk +11100 a8075531e20d60ba12d33769c1eac33ce24c2bae legacy-trunk +11101 6ed503d9c3d52ca6bdd097b2f147b471db5804a5 legacy-trunk +11102 0a3c8c23e1da2a490ec4da87fd1f338de13f95a6 legacy-trunk +11103 9f84b919952e5dc4ff40a9f81dd6d1fc477ec19e legacy-trunk +11104 f057751cef619c7395be7f0fad4952716f463380 legacy-trunk +11105 bda5ac9f64e94ebbe34b0c5fd775513c813f943b legacy-trunk +11106 371c312767cc96083bf31f7e89ada243920fb6f1 legacy-trunk +11107 51dcbf8a0b92ab60de05b8caed229ada9eb86269 legacy-trunk +11108 26f482d16140bfd46b825661b56c70124865543a legacy-trunk +11109 6ed2cc279346fd7104f9123621fddd20c96037ed legacy-trunk +11110 aea6841ab898d0ba2e519350a86dccbfe7babf88 legacy-trunk +11111 239492b34f682d5ccaddad9bfcee1b8862198c4b legacy-trunk +11112 a939d4e14a8d32450de67dac5b64b8a9f63d997a legacy-trunk +11113 d8673367681581523c4a2e14d95c397d59379322 legacy-trunk +11114 6d75a44347a202152bee32ebc36b93d93c66ce1f legacy-trunk +11115 ccdebb5ed33a39b2b240e43d238d6314f32f5f6b legacy-trunk +11116 1171381fa01c8a750c3235bdde993ba93777f556 legacy-trunk +11117 5798ce3bff354a2e3ebc5186560154740c7ccc96 legacy-trunk +11118 dcec983576d514fc3fc2b218f5ff712a687462af legacy-trunk +11119 9f1e95cdfa173145ef9cada857e7b7ff84007fe2 legacy-trunk +11120 1e120a5d2e934545edbb6360ba6719a16d878ef4 legacy-trunk +11121 027a1dad13532fb690bf2c821d84be681cb70296 legacy-trunk +11122 8e86a797e596c8c9b10acb99c596eaceed5a52b7 legacy-trunk +11123 b480e6edbc07bdf69384e7ba74c9c3865624cf1d legacy-trunk +11124 2bfb12355b102a9b62469de5a9b7e4ae2181df9a legacy-trunk +11125 d49cbec59395c28dce2a38d53bd3101213ddf489 legacy-trunk +11126 9ae91e9307e0aecc568c597df9a5a0cad9d4e311 legacy-trunk +11127 ae0b6c1c9e8d6a3dfb22343a1c2174665bdb09b8 legacy-trunk +11128 e83b353d0a1cdaae84779f4a9964d85c1b7a277d legacy-trunk +11129 a2beaedf0aeef0b694525ede9480393533a622c1 legacy-trunk +11130 775188140fe1fabdc5f1615351c30feb6b015684 legacy-trunk +11131 9af95d7270dfef55cc6af78b17a6e7d4bac28446 legacy-trunk +11132 3be90646774095a3f1b63214ea97b42f6c647eaf legacy-trunk +11133 4ba9b70ca56e24f63a49d76a5c12cc1b5f5d358d legacy-trunk +11134 97a1108b0eb2815911144462475a9c9a30d5b25d legacy-trunk +11135 2eb9c21c22f7e95155ee7df2521f0ffd5a96dc12 legacy-trunk +11136 7d4a386bed3fc5392dfae82e04a5eced4b0c338a legacy-trunk +11137 ed0a38cbc3e63d728f80eb3c8a88206afb767cd4 legacy-trunk +11138 9e536dd3dc97f39957a419ecf50e2912165bd013 legacy-trunk +11139 ac43e2246695bec7eeb563d5a12773a49f7d3859 legacy-trunk +11140 1e93fa0214054b95cd32344e9e07b673d3abe80e legacy-trunk +11141 ce54b5448c85d75aa611c5238100e32f1a9d223a legacy-trunk +11142 de759aca10b25289bffd0c535fbef978ef9506f8 legacy-trunk +11143 30fbf18af29e8ac95cd75193062103a71bda4f1e legacy-trunk +11144 74f385ee44cbbef8318dda6319f0193af54ea125 legacy-trunk +11145 2fdde784d849ae1113bce3927daf493632ae7c52 legacy-trunk +11146 8568aa4944a01f1a9a99059d41cafc85c43f3dac legacy-trunk +11147 f594778a56af9545f2d3abd94ca46d992c786db7 legacy-trunk +11148 6245b819bdd85c215bc7468eb6e571db116bf84a legacy-trunk +11149 3ad1bffbdaeb42059160044b9b70cf03a8250d66 legacy-trunk +11150 82811c6cb58f5bb298bee7f7fb51c1263b91a697 legacy-trunk +11151 2b2ff5a81391a2640218c8cd32e30c17df564504 legacy-trunk +11152 07e47370fcb8b9bd92142d7be35ea0b345a33fc3 legacy-trunk +11153 7444fe38eadbd4d965c0288c73042eb859324adc legacy-trunk +11154 b1f1ba429b73f02c22089514016022eb5b1b7229 legacy-trunk +11155 5a8d9ce90632b8d4b076f2fbf55f543479922a07 legacy-trunk +11156 d6f4e41b2c6ae877b097075ccfdbefe126eb61cb legacy-trunk +11157 469e8f453365a39fcea23feb7e8c06652859e484 legacy-trunk +11158 7d96842383bba9d11a509673db8c0550a62df080 legacy-trunk +11159 6170683e98e3b27fc968f39bc64cfdc99984a347 legacy-trunk +11160 48bc470358815a18ffbd9960b4974490517b3f04 legacy-trunk +11161 ba744462e95831d2819aa0f3d782e104f860be14 legacy-trunk +11162 468db2b710fd8232006775eb8ad8bf1b9f077103 legacy-trunk +11163 ce1e591b31263840ba5b5cbc9a8d2c75f3815737 legacy-trunk +11164 6ed7158ff27cce47781f139eb4d0c84e68ba60cf legacy-trunk +11165 a0324a3068e9539b5b146997f90048ed8821f14d legacy-trunk +11166 100445ae45e36bd91ae1aa91cd85ec7a1dc43024 legacy-trunk +11167 7817318ecd3a2f69970ae0eb0181fb6f7dc52add legacy-trunk +11168 552e42e4170ee7184fae3fccf3ab2d5891c9c343 legacy-trunk +11169 fd49ed65cd20b202eaa76ac8efdc673756642c60 legacy-trunk +11170 a3726fe34d58ec047666e29aec11d1e0242fd185 legacy-trunk +11171 de540166d7328cf54310a825ca7239cc85932ac5 legacy-trunk +11172 a0477bc820b272df17212e3ce8262ea340920f29 legacy-trunk +11173 35e1a140fe4e2006c603530fe76aba8c548db917 legacy-trunk +11174 c9514eb1fc0627ac2963cef717f20bb6d4a9bce3 legacy-trunk +11175 8aa9d126e47330700696d478e334be0034cd4023 legacy-trunk +11176 f41580b4eea15427fe26b78129d95f837376fa6f legacy-trunk +11177 6d2168a9641fe75377a525652407218e0a0e431a legacy-trunk +11178 f7b4db0c5b08d57e4d378669b139cb187a80fe0e legacy-trunk +11179 dc85804c2c645689ebb056f0adea395efd438809 legacy-trunk +11180 7d1477cda83d37eaf760dc57b15ac624ea07bcbc legacy-trunk +11181 f10b469c981054ea5c31744cc5c8b52a69d1dcea legacy-trunk +11182 95f324272f5496c139e781ec80377d9805c154f2 legacy-trunk +11183 78214e8c9eb4908a5a07e2f51c3e09ec18ba5ad0 legacy-trunk +11184 2f290560263fb0dcfc674c7ec75d1617bbd84dcf legacy-trunk +11185 50757465fa70decdea3a74c4128e76d4b1edbba5 legacy-trunk +11186 83c8adaa084f6818fbba3c6427031cf9d2cfcf04 legacy-trunk +11187 8571c1246f093d39596e5711e534b25173d72bdf legacy-trunk +11188 ca1c669bb04169ca6f4830d17a9b9a4856d43a98 legacy-trunk +11189 4edf3495c69276b18a191055fddde7d51b91b857 legacy-trunk +11190 acf49c9def7ddb54251dcb0b44ca8f482d8ab923 legacy-trunk +11191 0e2563c0eb0d4a6b8ff671af4d8667f0b047ef23 legacy-trunk +11192 208427ab75645b1355afb5db851eea0b4e097cc5 legacy-trunk +11193 ae6b41dc652016aba984b9c8aa13a8408db72074 legacy-trunk +11194 7983d86b48af732615efb92dd5000303fc955a52 legacy-trunk +11195 ed8f4e2eb11a1aa78a8b2c94df9d715e1039767d legacy-trunk +11196 9731d8a6b4f3df49ff47dc3e6d7b29bc8d3c6575 legacy-trunk +11197 c750c7a21e037884cef5543030729c65f6068d67 legacy-trunk +11198 760dcf1970481268b331ca6470a8ea3acc11eb6e legacy-trunk +11199 946d63977fa411d5f0803921dc27f84b26354147 legacy-trunk +11200 028eafbce8ac721d4a32069953ac2e3d8752f4c1 legacy-trunk +11201 8175c6e1e6131a9545d5b410e3a1fbea06f4324e legacy-trunk +11202 e0d0474849800979f08b68596873637f3115ccd3 legacy-trunk +11203 d7ca429ef1ab5fba92394e158e681332d35beb37 legacy-trunk +11204 8a29476a59c543883c316671b204dd9f01cc1b3d legacy-trunk +11205 6794294eb0149e96e67d1460eec43318e92613f3 legacy-trunk +11206 5d6bf60cb736d1e35c462654a543eba5ebaa4fd2 legacy-trunk +11207 f7976e02b87343273e42b402d3cb686baf376e92 legacy-trunk +11208 74ea4dfda82d241f6d098ff651a143cdb582b40a legacy-trunk +11209 53b52a33d4ba640dc59719960eab726bed24b66a legacy-trunk +11210 d5f4851e76113be259aa4f26f646659d083ef464 legacy-trunk +11211 1907d10a2328ee09f5f9aa8d3139afcd47753c43 legacy-trunk +11212 8a306dfd9f333e052985aaad034dae646877e7fd legacy-trunk +11213 75137cfed954f79644be9be9042564f4a6d52932 legacy-trunk +11214 a8040b9418649d9f3ecb1a933a1bb1b07c1d0d4d legacy-trunk +11215 aeafaf382a4bec4dd71d037cf58ad057626a801b legacy-trunk +11216 ddaac06ec3266f5398a3eb7af7b27493341c5dbc legacy-trunk +11217 80776eabd005fbb815d6423cf15828abc0892ec3 legacy-trunk +11218 6c20ca7231804787afe6864877a110f26276ad98 legacy-trunk +11219 8d054954708a2f050b94b2f1e8e95f1d874926e6 legacy-trunk +11220 781ad32e7b1ff3c5d6f394ea36ecf1a2976e2aa4 legacy-trunk +11221 1f020f79967d9958d08c1f6f682153fa91de0659 legacy-trunk +11222 74e0313cd810e345f05e23fbee200837efd140b6 legacy-trunk +11223 43464b1c880ea96f2e7808beeab052481db6d55c legacy-trunk +11224 73afe77a3947bf2ea22022d7fc0f491c77221fad legacy-trunk +11225 2a30a81894ae0cc49ab32c37e502f778582f67b5 legacy-trunk +11226 1d581a6dfeee11691585e328eda0bca4062b2cb6 legacy-trunk +11227 e1bcf0bd34d593398f6f52ae6683d4c35b725bda legacy-trunk +11228 ca1b906149e6209c8535993d476afe49e6ae7517 legacy-trunk +11229 cd99520320a31fd0ba45bb9d7c75d42c61813bc3 legacy-trunk +11230 eabe574dc921a910b907ffc8e05429e1cea917d2 legacy-trunk +11231 d84c113efedbf5a44548e292e90cbeda468ec354 legacy-trunk +11232 5ec8979bf1768547e38c665dd40c570b2d3e05c2 legacy-trunk +11233 99793302d10d3e1ae2f91114d8afc03e06682ec3 legacy-trunk +11234 4e05e38445ceb37b846df9d93e888379d5e066e7 legacy-trunk +11235 9e089070d4c5d0e824bad85f57da79217852647d legacy-trunk +11236 e88d4e6e4622b4381f72c0f7ff4ed3438d2aca89 legacy-trunk +11237 701a85b044b345f50efc667806d38accb676ab44 legacy-trunk +11238 fba8455dcb54c40e0ca222d563483a3427f58445 legacy-trunk +11239 b8a719c8a0a6017a0e40c3f7fd37fc88102ef5bd legacy-trunk +11240 68fe63750f84f50feed9c53b13e58d48b42c88e5 legacy-trunk +11241 4ac2d435ce3bb5bf5bec9bd349b1c76a25a4ab74 legacy-trunk +11242 2b2ef82edb5eb734e116462114696368ea58b802 legacy-trunk +11243 861cd2278348a8329a48a604f07ee5fc380340ba legacy-trunk +11244 4192a73ca430ebdf2e2a04e83528193331f14de8 legacy-trunk +11245 55f790a5f64bfb4562b3b87172c2cfce968873a9 legacy-trunk +11246 07663dd0fe865486dbac14973f8fcaf2ad902845 legacy-trunk +11247 62fabe2477c4df7b44c7d1fd0a0a10dff6c19cb9 legacy-trunk +11248 058417071b0e526bc23c22ddfbb492a2e277f9ed legacy-trunk +11249 8434e9d00b5a5e44e756730f33dc2781a8bbd237 legacy-trunk +11250 fc2a700b1007a52f5217cd9e9a8d31ee3aeea9a2 legacy-trunk +11251 06f80bcc956911f3796197279148617dd101c254 legacy-trunk +11252 256a80f39a88fd79622bf27e3a64e5c8a3b09e83 legacy-trunk +11253 2f46f87aa80aaf5cd3cbf2095d635847ff7bb621 legacy-trunk +11254 70b633ff2fb75c5614b94351f13b1e8e4434fad6 legacy-trunk +11255 45be40efcb950492ee3c73363fc93eb5862e264d legacy-trunk +11256 edbf631fb7e9e412699a42b896bf5b38d91ae422 legacy-trunk +11257 d39678d22b4a33d03a59f07afad9c6c26b0f7812 legacy-trunk +11258 04841eed98ef9164b15d6c9faa547af875a87a55 legacy-trunk +11259 00524555ef174283763b17109a6783cd5f5d4093 legacy-trunk +11260 3a1dd01375e09416cae5d5edfe8c7edfe1995246 legacy-trunk +11261 9138272c1fe6ec3b1d71f7d00b2d893582f80cdc legacy-trunk +11262 6d61d489d72889143c9801259b0b9b413a633732 legacy-trunk +11263 9e31415436f62cd9477cb1f9d91594d9dc441aa4 legacy-trunk +11264 ae3e2eaef9b9525f65ba633206584540a82ce253 legacy-trunk +11265 8e94ce9394bf246e2cb883ee269c4e9c572c6cc9 legacy-trunk +11266 c990904624766ee87c1c563a10e4f6f5b214b204 legacy-trunk +11267 c85b38d58acd8cf08a5ed383d3544a4e51e4757b legacy-trunk +11268 7d232c0e4dd6c90bf339bec7e673d4c78795717a legacy-trunk +11269 d2bfc8654280a79c17da26c5acc004c72048d2ec legacy-trunk +11270 d642e6748d12c3abf377d8550af9c42e88270c0b legacy-trunk +11271 d32dbc202613e29bab38ccef6df997e51af88907 legacy-trunk +11272 1076a028365a2ed5bdfc519c2f957feb1b21fd5f legacy-trunk +11273 33d59336e7e6fbc56774dbd349d205dffd5a2d97 legacy-trunk +11274 0f5e0b405bc2f2ab745f83640ce64d927e538c09 legacy-trunk +11275 1f804facf6354fa2f2eb87a158fe819ad5c7ad1f legacy-trunk +11276 0e30b35b8a3ffe3560a05de52118633773f0da1f legacy-trunk +11277 b8d2ba59711c227004368c9f91bf9e473008f880 legacy-trunk +11278 6fbb5607cdd604c414227c23d260f064159e31e6 legacy-trunk +11279 d51d1a61b1cef47783ea87d6515e557376806788 legacy-trunk +11280 ca1e5bc5209d8471273e93f52e448a3dbde4ced7 legacy-trunk +11281 44726b058700ad93ff2083e91d721cc53ec112d1 legacy-trunk +11282 e8b56b387045ae74dd9c3f98d8d4e91ccaa5fb6e legacy-trunk +11283 61464037da53c2d05521f97fafc2cee3f843bcb8 legacy-trunk +11284 81cb9401a21b7c8629e8249b2e309833de06da07 legacy-trunk +11285 4d18ebd4cf423ef87bbba7964dc32a4ed1e8fe7a legacy-trunk +11286 5d5a5bc8de5cb628945da99c6f1286b4352fc465 legacy-trunk +11287 c9e45705ec9e1294003bb192ea7b67e330b43980 legacy-trunk +11288 8e9d2146ae930215c11661395f3466767e99819b legacy-trunk +11289 645a328e7fd4949cf6e234387743b243fe4a20df legacy-trunk +11290 78785985a2ab581b4e555f8c5deee371ed51d3bd legacy-trunk +11291 c5d72bcda932a8d36ca36005b45abab8fb79d791 legacy-trunk +11292 4aa76480d8125892c515ae1bc314f90d3e044f7a legacy-trunk +11293 e58a614fb8e40eaa672121296321b99d08ba6e1b legacy-trunk +11294 140693744a3c853f7b44694f6a3758b41acc6ff4 legacy-trunk +11295 dd649837ebd4898425571eab2461d61fd31f8cac legacy-trunk +11296 6738e53839774fae286d7e9110b8633f2df5ad64 legacy-trunk +11297 8460bdc3dbf7b7e6d33d739043da8ca1f8fd1075 legacy-trunk +11298 d8b461989238d82f83daebff599335ff870dfe8d legacy-trunk +11299 0edd38db22884595aaca3114c745197c21a7eadd legacy-trunk +11300 71fcc4ca0e8aedc91618b2b013203b5e052ebaa9 legacy-trunk +11301 c28011000ed3693d63c214d330a4f7b1254225f6 legacy-trunk +11302 9b0dda9a558bd5eec96e934636eb5e3451901474 legacy-trunk +11304 a1c16a3fa7db40a375587a22357d0d01debcbd86 legacy-trunk +11305 bd47ee068b83fb9f2a8b6a989ab40f3f88c4f968 legacy-trunk +11306 f2a4a2b608607b0afc87c6bdbeb0db1601ba9cbe legacy-trunk +11307 b04098a256d0046d9cea4cc46c88a9dda09621b3 legacy-trunk +11308 129870e2179a91d278adef7ac7a59699780bef0a legacy-trunk +11309 4bfa53bd97bc06762e7c3b131083c4fbaa2c3c51 legacy-trunk +11310 df1602b6a2a862166186dab40760ad5864d5738c legacy-trunk +11311 8532141cff4c1f5df6dd5e663feeb5f21502e6ae legacy-trunk +11312 3cc2fad4e020e17d83ea0b0a75c366fba284b01e legacy-trunk +11313 eec4dceb4436aae60580e7a69ab400065d8047fb legacy-trunk +11314 00a6bb65ff293c0e0a8d623c5e2543c9b5d19d2b legacy-trunk +11315 741d50618ec2caa7c6578ef09f599805f78b9008 legacy-trunk +11316 045e900a4198e02aca2d1818897c1bbaf5fc8809 legacy-trunk +11317 336cb509879a49c27c2552d77616b10c5334d181 legacy-trunk +11318 b04f95fedd50ca1ad5b392daebbf47c1f81d76d4 legacy-trunk +11319 f1ca41995e62e51729fa6b7c787b14927fc2ded0 legacy-trunk +11320 929db8385ba4a53e0ba3b1ed684f436f1deb6037 legacy-trunk +11321 e5a8311684e4bda372bcff77065064f8de4958b7 legacy-trunk +11322 c2f9e505f75a1da91ca217b07c03b0397459f915 legacy-trunk +11323 44baef8ab5c89d34b14f9083ecde01972bf0fd28 legacy-trunk +11324 bd6d97d6b2ae0b770bc829529f43504cf7ae5d02 legacy-trunk +11325 8a370526de06ad3db0d1c314058f086c4648ad3b legacy-trunk +11326 1c7d860871d9d10eedeb9accb36163f961395b1d legacy-trunk +11327 b65ea81277525a9e4dd2767044543f9d312f7d56 legacy-trunk +11328 b933f584a26d0312641e6c38b0e85185739dfed8 legacy-trunk +11329 7453345458981be880d960439b13206560363489 legacy-trunk +11330 0867022501534a1f24d013a8d8e2df59b6ffb711 legacy-trunk +11331 37c6918efd3bca12fd357263a651518ba92a5876 legacy-trunk +11332 61ef8818695bd436df0c8daf82480a457d3070b9 legacy-trunk +11333 c351523ebc05eebdc9c449741086af0f56b3c5a9 legacy-trunk +11334 534a1a437af3a9b8eaf735323861e272890ed06f legacy-trunk +11335 cef20ec6f249cc462d9c4f2ff79db4dddee18d81 legacy-trunk +11336 bbe9d72bccda27a9daa33e05882903fd9f3bebee legacy-trunk +11337 5f9dff681797ff9407948403b28c06748052b9d4 legacy-trunk +11338 354cd24e5dfe42a0f82f0301f79aa00876906040 legacy-trunk +11339 d2804608becd08a1a4b5e29eda0b39050d4fef2a legacy-trunk +11340 f7d4a585da0186c0b5b88b8014e7ca94f30f7631 legacy-trunk +11341 567607076d8f4c76a292767bb4438c3c2a94806a legacy-trunk +11342 8653e1f219f1bd2261e137c96f70ffe13ba50a02 legacy-trunk +11343 d808eba4b3c65304880f0e2e6d5b123662bdbca8 legacy-trunk +11344 e14458f136ccae3d7a6b49c1816381ae62ec1198 legacy-trunk +11345 e024c69625e12f8ed966656a5ff53d05fc1f351c legacy-trunk +11346 8011f14669a817d4be9cf152d3530d544c32abd7 legacy-trunk +11347 5cdecaaa9beb0d37dd1e449a819bdea4124e1ede legacy-trunk +11348 f456f5aa57185a2d31c920a9c362ce0bce30476b legacy-trunk +11349 a1ec3ec2602eca5826eb80df621490875893b605 legacy-trunk +11350 bb78cc27469ab4be8738a0ec06fa11882632a967 legacy-trunk +11351 f8e2ad4cd45bc3b1bd1164508e212a0d6afae073 legacy-trunk +11352 57089ad4d73c6e20baf8596a295a669cccd9660f legacy-trunk +11353 3bc3f94d6061e4f2af3578d5de00c6e6c044a380 legacy-trunk +11354 05c1104e084b3146374c92879b6db24254604798 legacy-trunk +11355 868a25cf653bf05eb39759e8a7a0afe781dbdbff legacy-trunk +11356 aacbfdf4943e52987cc35aaa9419c72f9dafd24c legacy-trunk +11357 10790f14d13abd26aa228f0c18f3bdcd5496a3d0 legacy-trunk +11358 72b698c3324b9905a43703b128ee7ec39f3f1b91 legacy-trunk +11359 d342eb44d7bdd54f752980067833e7a49925aef1 legacy-trunk +11360 eb059a33f7ff31c9928658775f8c4968b998f096 legacy-trunk +11361 813f527f3bec01cd7c2dd99c2b4ceb0d343ae8cc legacy-trunk +11362 27ee3231dfa9bec80a82b4e553d62c87f12342d3 legacy-trunk +11363 a9eb265d2f570debfd4d96d545f0d227c6153162 legacy-trunk +11364 febca6b1827dddda3a3d29bf96825cd634211982 legacy-trunk +11365 b28b84e6a429405a31de72e9a51fb3305706c8f5 legacy-trunk +11366 f88f402417f29f3c43aa6b3764e2d326eab32629 legacy-trunk +11367 85dce32acf9d79788a9cfb9b6c4fc0207f13176d legacy-trunk +11368 c0a9ed21dfa05602cf74a99480b56a912069d2f5 legacy-trunk +11369 04a492f110dbdc706cb6f8d03cfc6fda9883853c legacy-trunk +11370 8c0524a71244fd0eca8eb6ea0fc2d28cfd97bb9c legacy-trunk +11371 9a075a2edb1f542f8891b9614d296e730236fb4e legacy-trunk +11372 3401212e54fc3805cb67c9970142b53c09e3b1fd legacy-trunk +11373 31c063517c22ec34c7e20d0334a5c819bd04ed4a legacy-trunk +11374 60b4a610dcfccaa73b7066a1e70208acc2ca5454 legacy-trunk +11375 a7083295eb38eac00bd1fe499fc13dc43e1df12e legacy-trunk +11376 09063eeda2b703da89c22b76c607f3b8d325f17d legacy-trunk +11377 764de731c8063fa43c5626997acd91e325a2d135 legacy-trunk +11378 9b4bc3b8b9d4cd05e801cff8e138e34109516dea legacy-trunk +11379 d295a51874a6afa2af217fab9b0f227a35472d67 legacy-trunk +11380 9db8b5ea6b2122069d7c66bb1069039cb668e4ae legacy-trunk +11381 492363d6bc9451184c2ef453340f1e1ce7fed09e legacy-trunk +11382 38544f828d7408e27f9e3d88e024ca4c0fa654c3 legacy-trunk +11383 6dc0a9dc5bbb91a54c39122bd457cb95158bd7f9 legacy-trunk +11384 ddf710b7e6eb6ffb5208813b416ee4c683d40feb legacy-trunk +11385 6f73ae1cf9346a71696bdd5fa593c1e20362c65b legacy-trunk +11386 6d8b92caf8cdb52e068cccc7aeb55452e0017c6b legacy-trunk +11387 d41ff5b191d1d116b87bdd307dc59b102f3fd5ae legacy-trunk +11388 29d847c428f9da71990c492abee7caf48e36bc47 legacy-trunk +11389 9803556c1ae7c3feeeda1c0ee4eb888ef4ecec89 legacy-trunk +11390 a5b71a8a1ab586962c4660ebabe83d7cb285897b legacy-trunk +11391 7d6813521f61359ec76b290ba7351ebd7fceb697 legacy-trunk +11392 89e65a96a7d3fa805535534f0b7d9e544ae5fc80 legacy-trunk +11393 b1d1d8c0071ba7cd734b7b1d5fc1403f95e2db67 legacy-trunk +11394 9a984276cc565ca2fd6f65b6b34f35231964b6be legacy-trunk +11395 459bda940daa27814f7997bfa546123f04b40167 legacy-trunk +11396 d6b73962529bb6614f63c25ecef3ca7612bec7b9 legacy-trunk +11397 9a4054b8485ff4eaf66c4f0b7007d897c446842b legacy-trunk +11398 552c6b3aba3de5054bbf469ee46f44f56b1b91db legacy-trunk +11399 6b633df41e5951aacc4f0bf875695cba07c22342 legacy-trunk +11400 e55a79ff8228f922a8ccc6e8ab96b69136c4d078 legacy-trunk +11401 acfffe14628e448bfeb08b5a8d3921149f486a4c legacy-trunk +11402 610680e3b9293fb6cd1d31d1da60503e39acb0fc legacy-trunk +11403 027f3eef6e5a79eec4428615001138d96e713a2b legacy-trunk +11404 d0f93eba9baad0c4bab59f37ab2ccf492da52b34 legacy-trunk +11405 8e41906863be7bb47d113fe7ea0ab49fb2d164c2 legacy-trunk +11406 28bc5d8e8dca36b33f014f32532d0de2e7c72a3d legacy-trunk +11407 0954ad4acdfde5c8cf5d563b0d09c50162673349 legacy-trunk +11408 be935851dc50c3ddafffcc80906b4c990a039219 legacy-trunk +11409 af9bf84fbc5ea42b9a61387aad91a7521391e604 legacy-trunk +11410 73f9a1e8ae52c05a5487a6115bee6d1950dcc124 legacy-trunk +11411 a8249a6b1b58e47dde833239138315b793ad8753 legacy-trunk +11412 ba8d1bc98b2d8159d9fd0f7a07b4658e4168586a legacy-trunk +11413 c45a2d911f31566f33e3e167eab8cd24d3cebd34 legacy-trunk +11414 dae2f2ef9015aa3e38b710ced50484edf65880c2 legacy-trunk +11415 0ba81b9988eefed1d610107e2edee7618a7aa0b7 legacy-trunk +11416 dc6edfd4bae5bfb33e5da270963687e5bc4e2d5c legacy-trunk +11417 20b83ca06ce8a187363e4ceff1053851a891dad6 legacy-trunk +11418 2f936b7a09f94f1804caca7b714e483cdd445dda legacy-trunk +11419 5b73d5babc78e91ab5505eb8666c118122595e72 legacy-trunk +11420 197ac5ad30cdf360938751930a1517abbc072e2a legacy-trunk +11421 b4e2b2cb65b1bd105f7fcb295a2ace9928f36d06 legacy-trunk +11422 347884ec5318137ce2b7a4f8bbba411555d407d5 legacy-trunk +11423 2d775308538592dea8ddb929689a2210d8aeb637 legacy-trunk +11424 40089e5583090caebc309e436a7d0a8cd3ab1b7c legacy-trunk +11425 fda463c3b1767897e85071a41664da9449683b10 legacy-trunk +11426 0f331883cc15f053ee97ed9c46b521af1616e8ad legacy-trunk +11427 3b0291655e316312abceeb7ebaccd55d948f02a1 legacy-trunk +11428 7601a7e9583de5db9093a8bb38f950098bc69ef7 legacy-trunk +11429 50afa28aa4b919c9e6c2d6a75fdd66f4d2b07e85 legacy-trunk +11430 c91809cd67e541be64a80da22e45032b3e17f028 legacy-trunk +11431 7cd42c878f1619b2de486d6b7daa3917bc37c36a legacy-trunk +11432 0a6892b1a4ac2829cf9bac2f17be758a4a127009 legacy-trunk +11433 cf3ceba7efdded6257a9767cebc65d7b8f7d856b legacy-trunk +11434 8acc72a8131998f805678f3b1b5e885cbf5e3bd1 legacy-trunk +11435 cb7a1506919af4f77b7073d8f16bc088f34b34bc legacy-trunk +11436 990153853e3bb1e79797afc39c4ea87a07557e95 legacy-trunk +11437 384ffed252e91fd84888ebe5eded48ed96fe5125 legacy-trunk +11438 c26590b1c396b570ef296af382e602decb3bede7 legacy-trunk +11439 ac1881c4ba6d9d06a96b71c116397b2146090afa legacy-trunk +11440 c79defb5a39c1bd73c3d62aa7a0b2a11f892a3b7 legacy-trunk +11441 249cd4433cf08ebf2b869528320147c5b42e7cfe legacy-trunk +11442 a1deaf04277bbb8a0da6e3ce75ea643583528e10 legacy-trunk +11443 9618a86879caefaaa7cc0376d108f550bad3ee0e legacy-trunk +11444 e7958e8c777a784b9c0c66e619c9527ec646eeab legacy-trunk +11445 ecdd96ddb0035f7baa713fcb42666649da593567 legacy-trunk +11446 4b64f131aa4d853423f431276992a71ce04495b4 legacy-trunk +11447 99ffe0a38a1cad38abf5955b7d5084ac9e0028be legacy-trunk +11448 be21aadf4908f7d9ef0df5084b2c389b2379f91a legacy-trunk +11449 c4c328aabd825aae9dd47edd0c9e607f4c6bf9cf legacy-trunk +11450 de16e19ff1dd8b0f8a88556ce456102150804f26 legacy-trunk +11451 157e4f20cd716094a7fd95d69d1e3cd447de8f81 legacy-trunk +11452 45614cf9e911b0d64043327cfeae5cd6f921f91d legacy-trunk +11453 58d690d4e3128375b4c6517895a2a41654295d54 legacy-trunk +11454 7885f15da0801c9a3579b6aa8618828e179f9e76 legacy-trunk +11455 468ca84fbc14a255ca30f99df9d91e1dd9bbb27c legacy-trunk +11455 fed63ccbe6dc3ac663bfe97a2f7006b1b28568f9 legacy-trunk +11457 d69cfc23aa766430c1d53187dca20c9af269be5c legacy-trunk +11458 3bcd6278e658107edbb467a1c4b3e13bb70c26d5 legacy-trunk +11459 82a43e1bfa4fda060237b01f3974b5d8ebff89a2 legacy-trunk +11460 07d97d1546d4b3c44795bccf4c3d9af6a851195d legacy-trunk +11461 0afc3827977e12b0f73bbb9a037cbcdc952bd89f legacy-trunk +11462 26c041b145c195b4dfb82df8b2c3e9ca596fe019 legacy-trunk +11463 f1e41fc2783c19dd9657e5c078a90ee639501e76 legacy-trunk +11464 0398051f8ffae175137cca666a9b3a3f6c3ff698 legacy-trunk +11465 7c2bc7db49336cc164e28b3a88c1141c2f03431e legacy-trunk +11466 4ef640acf2365aa715279f179f6941e58c0e1401 legacy-trunk +11467 6d4ea37d70c22afa50ab7e0e065834a6cf474465 legacy-trunk +11468 d7878b386dafa811a189ce9d0cebc2ac3a71b2e3 legacy-trunk +11470 ff67f93c4a9bc0ff3e35d8c5d85737858a43e210 legacy-trunk +11471 3e127bca84e72fbd94a24aa3e1f3758d0e53ce87 legacy-trunk +11472 070de4d39ddd86ac96dba56de9dc398d142144b1 legacy-trunk +11473 5fb3c683e8626235666c6194d4062de524579750 legacy-trunk +11474 d178227124210eca49499e8921bd43e28c8b4214 legacy-trunk +11475 db16ca4de4c487819e612e488b369cb5f8836ee3 legacy-trunk +11476 ee3af911ad56b6ed9b11582a1474e040ba657e25 legacy-trunk +11477 09183943182eb32a86e9339d8258af30abeff052 legacy-trunk +11478 9c9c4c3edec2ed00797eed5c65b10c83e79b24bf legacy-trunk +11479 f14739261a34c180cbe7373913c101de43494573 legacy-trunk +11480 3bdd0e790bc9869c126088c6e6f0f70d3b3cf692 legacy-trunk +11481 29e3b1eb46b190e7d38be317a7d8662a9a7c9541 legacy-trunk +11482 f864c9f6560952b5199786c74a6c7eedbd5c8863 legacy-trunk +11483 dfb7f468b78d37758997fbf6c7ffafa2a0280089 legacy-trunk +11484 c2dd4f086a42bfa411faf7dfa69c1baa92701855 legacy-trunk +11485 445050755586b59122c5fa4acd8cedb38a5ea858 legacy-trunk +11486 7116cb9712bcc70998df94dea75f55b236309b07 legacy-trunk +11487 f16a6e64859bb8cf6c986b5548a3ad138be92577 legacy-trunk +11488 93bec6a8db21b1f135320db2cddcd686eae66042 legacy-trunk +11489 ec01fe9c28417abee830ccf0a8de2485f37910bb legacy-trunk +11490 a9f6fb14abd7ca2018b009a10efdaf59b4b7ae52 legacy-trunk +11491 ff1a8a38f8c11afb5b9a7c347e43299cd3daf305 legacy-trunk +11492 eabbe0ed3468ccec8b80b2125c76cbcdb9d0bf22 legacy-trunk +11493 5991672885cb1ac4dfcd8941b6f4a8a19743c63f legacy-trunk +11494 9e01b74daf77c71c77581ff3e44e19ad001088e9 legacy-trunk +11495 a110b60699b1b4125517a15fa87dde7505fdeccc legacy-trunk +11496 36bfafdda8d14f3b9fcf29646198c69d9e7059d7 BBPY +11497 bfd8472f696b9c8fc69a2c731902ec141d9a4041 OSAM +11498 d85e8070b164f376f7e6c52d4bfbae4e3cd13496 PYTHONSCRIPT +11500 a8d47a3718ce9fd8c4ff783769f1aa5953d9d9d0 BBPY +11502 b4d3f98bf22972d4a1211e5bc3d92dce3753d7a1 PYTHONSCRIPT +11504 e1f323ae9c4b5237dddf0e18509ccc6e32e52097 OSAM +11505 11abae284c071edbee4e518475fa0dc7cf6b12cd legacy-trunk +11506 17cd6e5d294bb3a04bd998cd7a5e635ddaaa0287 PYIDE +11508 e921cdbcc5dd63afb6334ad93c74e4455eb174a6 PYIDE +11509 dff6881246572ec791a4b15936220a00d70c2764 legacy-trunk +11510 2ce3da419e1d39e74e007a08849a3fd58dbeec05 legacy-trunk +11511 dd5fa1757556db73fc6304d4c45bb7cac09db2c3 legacy-trunk +11512 b9a070736eacb311c7c721808c6cab4c7a21083a legacy-trunk +11513 897ce0976696520a4b1e3fb7b202ffad28da8abb legacy-trunk +11514 b150ebf7b2b72c48a900f2215913bced812d38fb legacy-trunk +11515 674f451c4815ff4a04062ead7758b7776989aaa6 legacy-trunk +11516 928fe8bc9eb6d6756fe714a7e0fe44b31ace814a legacy-trunk +11517 a9724c8e6e6fd2b030c26a1b4ef41f235aba3371 legacy-trunk +11518 b7e7747c196968f7ea597d5335598a6ba5ddbc9f legacy-trunk +11519 6a2e926215411de21d8d9aaa5cfe33ad40977aca legacy-trunk +11520 a87b23d428814e3905c281b6a2e0bda4fcc9a9a6 legacy-trunk +11521 3df5b9d8335b775a964dee4a61baaf24a1526d3a legacy-trunk +11522 fb5a5ec2ea1ab01bf749108fdde52f97a2b69b71 legacy-trunk +11523 d53237bcf15f774215418f73f8bfc2b60b78582f legacy-trunk +11524 65139719b656059e52c769b2a5fc880886ddf702 legacy-trunk +11526 b3eecde3679edc133034003d8fe454374f13b80d legacy-trunk +11527 d3c067934c63cbf76ef7962ca6883bb66f9ce309 legacy-trunk +11528 d2722a4cbd9c6128b52168668f8f5b8edacd2651 legacy-trunk +11529 baf9a5a71d2d6ddf68815c4d5ad7f934b04bd4ff legacy-trunk +11530 9962833d49fddb93262197a15c0ed8d3ec65b3de legacy-trunk +11531 182c9cbdf053de3a832d080514b459a28e56c116 legacy-trunk +11532 11b6f0c9eac998ca8f6c83ced3d40e7b5cd55da0 legacy-trunk +11533 18697f59fd48b77bd546ea91f96dfb430e79ef9f legacy-trunk +11534 62b94cc98de459e7a803971d14742da5d61851ba legacy-trunk +11535 24d0a57ae234dc8357683e1e1c431e54b895dd08 legacy-trunk +11536 f0c8b8a33f08eae08d3ff29d15e0e2087d8e97e8 legacy-trunk +11537 ebc0c12dbd78d60d8fe08d89296b09b2c13955bb legacy-trunk +11538 8d18d496af8709fc3aab0cee962fd6c017e2bbe3 legacy-trunk +11539 9fd915d23cfa03c00d3e8082d22c15f343b63a96 legacy-trunk +11540 d8ede020dfeb294b75ae7dc695aba92370c2ab30 legacy-trunk +11541 d437b6683e24176eab75b3da07db8599d2b434f4 legacy-trunk +11542 ad6bc2c5d353eedcb0236edb67ecac97d4ebc321 legacy-trunk +11543 91d0860746fc2733bd20a1486c901306f466dc33 legacy-trunk +11544 6d2eb58f041868086d9871cd1c4af7d8873f3603 legacy-trunk +11545 118f9f73abe919e92eb9b3de62ff8547c2249db2 legacy-trunk +11546 cbf72b2210aea9ee7832628799bd7d437a82f9c4 legacy-trunk +11547 f3ebdb2274e4a829f7f7cd2fb017da35f80100b6 legacy-trunk +11548 839c6622d15a07210c76d597c53c2ad24316fe10 legacy-trunk +11549 905bfac0fa32e056957dfb7d20daf9a5253ccbf4 legacy-trunk +11550 16f8397d8f048de64a1b8d0e20aa91db48086505 legacy-trunk +11551 dabb2b6a3a81eb0fe8c44e45617df2617f26405b legacy-trunk +11552 5bc64efc65e029841c335f72678d556f6a614739 legacy-trunk +11553 05181e104420ac03f5061792ee482fc1dcdfe60c legacy-trunk +11554 026e1236243e6cbae1cb7bcfb054a25689aa2cf5 legacy-trunk +11555 19ec534694addeb84dfee214dbb5dd6fbd79db8b legacy-trunk +11556 86952bdabb21e11fec91c31c15c945c61822aea7 legacy-trunk +11557 5c1e1fb372de06ee281a6cf10fe24e3b4d203027 legacy-trunk +11558 0876b6c24007d8666dea2776db267b0e36a68378 legacy-trunk +11559 0088ad9d96c386ac42bc5460fe2cba008b7eb0e3 legacy-trunk +11560 5401c71428eefb0e62a681737cc7a3da97421509 legacy-trunk +11561 0781a49990515c162986fdbc28f79658bd37dab7 legacy-trunk +11562 257063aae000f3f5987c626aec4bac8c4cb57cb6 legacy-trunk +11563 3433a9ebdf439e6d18c9f22fba2fee7959de9e97 legacy-trunk +11564 a5e3c695d2fbe377fef4a28adfa4350e5108a6ca legacy-trunk +11565 b25d5a62e35763d5883e90d1cb9e3b181249003e legacy-trunk +11566 ebc8cb07703f89d4652d69467b5844e7e4d78fd1 legacy-trunk +11567 c2cbe9acfc8e58830cd9af7b239334c79dde572b legacy-trunk +11568 0188d625969ab313fd6c2b43da822f3c630c935b legacy-trunk +11569 9cea6b617838e5412f53aa7065c2abc133915f7e legacy-trunk +11570 618fb830be658cfb443799d8d11dae480209e959 legacy-trunk +11571 a982b17e938f529dfa04c34d8165f3464d182c2a legacy-trunk +11572 850acf299ea23dbb1cad1efb106913a3540fbd7e legacy-trunk +11573 c06272384f118afe0dc6291ead03cfc66a83d3b6 legacy-trunk +11574 c447d1ad78517d358fff7bd740b914293b159bc7 legacy-trunk +11575 18f81faf4bd97b41f17ab8ff051a8678f34a6bbc legacy-trunk +11576 4d2cb212c8d1585493775b871f8a3bc72a96083f legacy-trunk +11577 e49b5fed744c4ff771c98b5eb72d4978de5abab3 legacy-trunk +11578 edac860ad710b5aa29210ee4c9d7240f0480a5cd legacy-trunk +11579 6b85493052e8a36f82e58245c382cbfcf6490441 legacy-trunk +11580 bc41e86c938cf4b9e70ae5a42c042de578241acc legacy-trunk +11581 3f4be7e28d5ce785114cdf2b7d59990cfb741f01 legacy-trunk +11582 e943f9c09901ad818be23cabec8c5d7716b08376 legacy-trunk +11583 d4eb35c6e6efbe70aff54f261594144525ceedfd legacy-trunk +11584 acfb3a648dcaabfa6322baa0a76efb963db0c188 legacy-trunk +11585 7e6c4f57af69920a58d4accfef3b9e84fae2fab2 legacy-trunk +11586 e71f8392239204a45d538cd57267a8432856b867 legacy-trunk +11587 26f5bfd715a4656e89ace7fbe7e24d101afd276f legacy-trunk +11588 556927d868d8d8882b6523cd69efec5283fb4707 legacy-trunk +11589 2e07f1b298e16db81f359d15f3cd07775cd718fd legacy-trunk +11590 471c6c2218799ee2700ad6d21db06fea37001e13 legacy-trunk +11591 0310ee16497a87d7193cc17108912d6cb5f4ccbd legacy-trunk +11592 637fec8a7dd3daff17a7f6b476002ac7d8eaca26 legacy-trunk +11593 2088f80253db04f214b5f2b0583afa5a74b405fa legacy-trunk +11594 4278561bd5e87f59a138777ff46495de7a65d5b5 legacy-trunk +11595 b826e50e9573f4e0940c82cbf64a11bbb69d3237 legacy-trunk +11596 728bbeb9e4f965472f892b30e3ffa6016586661d legacy-trunk +11597 687b66e653d615a08fc0a0e922c65b04037a80db legacy-trunk +11598 3135316cd670b08fa8caa14493e7bce381d4cb18 legacy-trunk +11599 f2396d43056b6c6d1cd9765a35c96ec07c6f6a5a legacy-trunk +11600 77a9b85f762a7648a78c273efffebe8f92196026 legacy-trunk +11601 2bb7b660f007bef7439c60a12970486a3c685062 legacy-trunk +11602 9eb2d6f6fd3f4c71ca67daae1770db9849ed0324 legacy-trunk +11603 ce52e922fbb26ebab539b96f352094e91a650429 legacy-trunk +11604 24cad4e0db8dd39c325490c55e3722e7215cc0a6 legacy-trunk +11605 b52864c5e9c9423a53d0b2ecd1e92fe4b7e746eb legacy-trunk +11606 9e1745679e715003b2ccbbc09ab4732e9fe8e598 legacy-trunk +11607 0420f5434f44932aa667dfbac9fbe4973318ec2e legacy-trunk +11608 b0845d09fedf6f816520844475244d4f77edf9b2 legacy-trunk +11609 83660cda3e3f397005f856971afa2e6b594581d0 legacy-trunk +11610 dba711626b43241c5e81ec0b34b93ff5c45e76ee legacy-trunk +11611 d237c808a01e11318d2516dd092280a564d30aaa legacy-trunk +11612 29380a4fa2308903163ab5fd1cda85696d669330 legacy-trunk +11613 db1547fd40e4675b728e5b6ca19adfeffc6cfeff legacy-trunk +11614 4cc10908e6f45f00fe8287388a7015ded9da326f legacy-trunk +11615 12136542e15549b1e3fda23ba44aa3da8ce2d7aa legacy-trunk +11616 4486862d5cbdd0fc05def7b1f452199f467e8d84 legacy-trunk +11617 55c1811bb8efba29b53223d72d08d6c5952a8c12 legacy-trunk +11618 fdeef177f536ad96ca2b80ae579b551fb417332c legacy-trunk +11619 86b7129d8d08bd977f020366bf2a2a9bee2218d5 legacy-trunk +11620 17d0c51e08870192612a7a4284c91c97437fb3b5 legacy-trunk +11621 b16633b22e6ae170b8b76cbc764bb518b27a0ce9 legacy-trunk +11622 6cd93322b810b6f53fa1468fe0be1036860e5b02 legacy-trunk +11623 3d30dd54445621d074ed1c62326bcf4d9fa78ee1 legacy-trunk +11624 f4129d52dfc5adf3f95c68c3f7baaa52e071e44d legacy-trunk +11625 ba40065e399f0404139deaf0c3ed5f7713f73bf2 legacy-trunk +11626 9f1023c88f570653b089455af6206db9dfeca5b0 legacy-trunk +11627 b0fa2fc12dfb28cd85282c1cb94d6f2b00ff050e legacy-trunk +11628 6cbf05696120d09b1516dfd5ec7bc33dfa8bc55b legacy-trunk +11629 ebb010858771aac7d2944fd24e926276b8f87760 legacy-trunk +11630 0660be6e67914b9cf1a6e3a8f4e774d60a1c6aed legacy-trunk +11631 88b22109007c1cb918d5ecb2e3582d5e31bbf1aa legacy-trunk +11632 5af4b102144ae5d904a4995fd92e4d76947db9fa legacy-trunk +11633 e1b710e30acf73c5b59a8db10de9342b801f37ec legacy-trunk +11634 0329d419e506182e9a808ece1c307eef717de520 legacy-trunk +11635 deeb3ce20acf1a85b10c86070acb11b629cc1f7c legacy-trunk +11636 f5d265d5e9dc02adbfca15f76c064071427cf939 legacy-trunk +11637 8e3b6d6afe4cc1b551c38bfde9839cf293d15576 legacy-trunk +11638 881b86398c2043f5a2336e6da7c3acb075a55f7e legacy-trunk +11639 98dc675d0913b6b33bb880fb1859378791eaa680 legacy-trunk +11640 7fabbbb7ad9a7a1d47877ade6909c1da2e3427b2 legacy-trunk +11641 520583bdf0b0290ce98a2529f08ab0cd9552b5aa legacy-trunk +11642 e578439b981f856144b43234a2c0e59e4aba3841 legacy-trunk +11643 c4602236409e8b9e0498610100ec32c3afb750fc legacy-trunk +11644 6ecb248e67ff2c0a547d10dd82d86fed9611d17f legacy-trunk +11645 e60055216b8f9fc903d95985f4b809a714b0b6d7 legacy-trunk +11646 1c22cbfb4a1e206a7cb01199a5bacada29a69ef8 legacy-trunk +11647 4af87ced9f3aab6d9fdc38add643414cf3f289c4 legacy-trunk +11648 4fb4b00755b5e06d77e8b0263efc340d2ca2eee7 legacy-trunk +11649 a307656c7788976c444fd1b50c75da42af4bb900 legacy-trunk +11650 46830e5a0351fad0d4137dea3e455c6289c167dd legacy-trunk +11651 1e8f310745475102717a35ee39c6223f6f0ba20e legacy-trunk +11652 3529bb4caefd6e0a5e5db1cf7c1b6b3c4d6777c4 legacy-trunk +11653 daf1d61b9611d7a2731297024dcbbe2784265c86 legacy-trunk +11654 9f7291f55026d4d55c425b93d11db23b0eff3800 legacy-trunk +11655 b2630a29fefdb8b7f45d8c9e904553d4ca576720 legacy-trunk +11656 f2b98cbc5030188aa2e45dad8e8fa9d7ee9b86da legacy-trunk +11657 f0a92c0a115ecfcdd555f0f19bc396738eae1907 legacy-trunk +11658 1e43df7d8be3ffe57e0738b30d1381828a00c82e legacy-trunk +11659 e2daa783bd4728ea0e8338620965f330cfdb0a23 legacy-trunk +11660 0a085d731c1c79a8f32856940cc52ffecb14c28c legacy-trunk +11661 d086414ade6ec49e936a39c29f503f1f0cd801ac legacy-trunk +11662 d3ef4d10fb954c8e851334250fac4cb35b9cb42d legacy-trunk +11663 6a559dc78c913f8d6693e7545b096e2603aa623d legacy-trunk +11664 b0ba319677195823d850fd704096bc76c231d6b0 legacy-trunk +11665 75a8047dfc1103afb01d7accee532d08e820c550 legacy-trunk +11666 6be343da29144a3920827b0796b92f7eae6aa968 legacy-trunk +11667 c00b273085bed70abba0725cbbbf3fc6212f5454 legacy-trunk +11668 3ce511ba424226132107420b7f072efa7d9e6201 legacy-trunk +11669 9fd2bbd4454e3678b1cd6f110580d9a8c82ac2f2 legacy-trunk +11670 32b19491e70b5a79d55899f9160a6f687f9d171b legacy-trunk +11671 9a88fe204d95cd8567acc99282384b1030cdfa0b legacy-trunk +11672 68aad8ecfd70ecaaa9415f4c16d90c2b9b4b43d5 legacy-trunk +11673 6fc920c906408cc2e67591991cc0de304a483a78 legacy-trunk +11674 958e1faa38a9104fd8b8865317984f5356591104 legacy-trunk +11675 0625b9958b23bf62af288185320ee0f33d564a28 legacy-trunk +11676 53ed6bcd0641df37eb2f8ee8e6f35270758a324a legacy-trunk +11677 253c993ef936ad5a1f93c78542e131a46716d4b0 legacy-trunk +11678 fa893d55794ecd986638488100239e8d31c86975 legacy-trunk +11679 e75e228f8395e7ec50f6d056c15ffab8101ac9e7 legacy-trunk +11680 8e952bdd0fa3704748b08662d1b28daf0b5eec44 legacy-trunk +11681 f264e57d657dd380603561d3d1dd80010f2c9e22 legacy-trunk +11682 a86a71bebd6407a2cb8b7c93927a2a034735e0e5 legacy-trunk +11683 aa73dee23093075776e4eb3ddc8a6349528b7ee9 legacy-trunk +11684 e21d0798c02aaade23e21d544c309b65d8890d52 legacy-trunk +11685 a1672e775f331ecc34656b85cd9daa3df64ba0a7 legacy-trunk +11686 5fe4d594a0f219246baf28859ba32c9be4706f0b legacy-trunk +11687 3e0c87bdb5889694865b47dad8b1e1e130b6f0de legacy-trunk +11688 4fe8a7670c0d2a30878220b46c891bad6ce755ad legacy-trunk +11689 ac6c29d1f10c9c2f903e064a6c50f1c2bd3a7959 legacy-trunk +11690 02d8f721409abf4fab841153ac38c4f8beae5087 legacy-trunk +11691 4c20456159ebdbb281267f44fccbfde82d47db32 legacy-trunk +11692 195e748cf696a696f9fdad6e7d8b26a26c208ffc legacy-trunk +11693 33984841211d5ac1602472ca717c0d533d012884 legacy-trunk +11694 47ccdb7fb623ae9adfbd28174d5d3443ff8686d0 legacy-trunk +11695 58eced5309a06b77dea5c0266fd52f1185b8f5fb legacy-trunk +11696 b24046720d56045e491323c9467401e837179b0e legacy-trunk +11697 d578cd64796d126585fa0f9559f96a586a1dbd3e legacy-trunk +11698 eb803e191887e6ed20d4740bbda904a5996857b7 legacy-trunk +11699 14ad02d06e32d8842621a01010d18e620666dce8 legacy-trunk +11700 07dae6fdae79413df92bf3230f93ec177690f431 legacy-trunk +11701 88505269b4037deea283d7b6cc3ff73659beafa0 legacy-trunk +11702 0858f11c88d7258c16339f15bcb9a5bb0d4b6dae legacy-trunk +11703 c1dc19f9ad608e6b4b1a8da631718f4a219e65b4 legacy-trunk +11704 670967be6db3ceb30df271ac84127fb161afdc6b legacy-trunk +11705 8148d44f9903de2fd8d22ae9ac2b7cdc0acb762e legacy-trunk +11706 d3af310f230cb156c962b818df284b5c643c61fd legacy-trunk +11707 70e49f7159572f13796a9cd35b0969e826f6ac77 legacy-trunk +11708 f172d474c5a904a8d531b8ad031562be4072ce2f legacy-trunk +11709 be3d84ff29f9a953ad08f97a1d3a0b7620a3869c legacy-trunk +11710 89d916df479b15b11ac623ac74c395bd6154c39d legacy-trunk +11711 c259c3c4d0ccf9bc39e6099facb6db699bc66725 legacy-trunk +11712 1995cdbe33846e477024e6967997caa363466b3f legacy-trunk +11713 93699179a50f2f4ac92effa4d7e532cbb67ac34c legacy-trunk +11714 44ff1ac5295b37d6d5dd62bc1aa73034d5c8eb27 legacy-trunk +11715 a4e82331569902183c6adf4fc82139c7cf010f5d legacy-trunk +11716 2999f1d9042996289a60e25a45c90c64a8000332 legacy-trunk +11717 5621cf9b09d6320b36f0520ec4394ffc458e7cea legacy-trunk +11718 3c9fec57b858a64f079ee5862ccc756a7a25661e legacy-trunk +11719 9848f42343c998f4a93f15ba9f59f464b6ac40bf legacy-trunk +11720 dc1d445f237184d5c6d122b5ec67636d8d96367c legacy-trunk +11721 73df24f6bccf33adf74847c053fe5fedc2a5dc68 legacy-trunk +11722 ce8f3cef6aed2bff5c441ff4592882997d232fe2 legacy-trunk +11723 25da09b427b475f446546f1d101ed93e9745b7af legacy-trunk +11724 79400d078f1b03fc5f90a65b7a36c4de90ca59e4 legacy-trunk +11725 a03c6fd81d4d6d1ab349de31deaea0a8f1745728 legacy-trunk +11726 2e3712e84781fb1246651f55cfdf0599a6eba1e0 legacy-trunk +11727 38c07ba4b8e411f86cc2f4cc6f019f0240d94ab2 legacy-trunk +11728 08b8da6d4ca6a07290ecbabd1be93ce5af5f093e legacy-trunk +11729 4bfd29d53b950c17a7a2a681607e1817621403b4 legacy-trunk +11730 b18d1f91d6648324967f45a4bc4e3725e3ee60ec legacy-trunk +11731 41f83c72e0984c917897d1e6805c3b09a3371526 legacy-trunk +11732 d7252a5b7e1e7ad5fa825fe6a692d1b3d0425aad legacy-trunk +11733 39c41220f7ed46f2369c71c70cef5d85eb8c402c legacy-trunk +11734 dd8443bd44740c7a9f912fcbdd3ad66826250088 legacy-trunk +11735 4c4cec54ba634def41b48c5365661f97fc345001 legacy-trunk +11736 b55db08dff7bf25927a2e78cb559f8dc9dcea308 legacy-trunk +11737 229475d2951f70591e1f017e02f7a652ca6ab64d legacy-trunk +11738 e23ec2403157247b3dd59b8e9d2f21f204c86a7f legacy-trunk +11739 710da10dee9db34a0e4d11187a8f995952fe199a legacy-trunk +11740 048002f27c1d8bca5a93c1dabd92764400d64a15 legacy-trunk +11741 159f9e746754947105e7b79146bd233e723c86b8 legacy-trunk +11742 8a885f3a5f46ace5456c64e708a336d7f4e759c0 legacy-trunk +11743 1c4ba0e2f8e743b616b9fd7502e7e653b176c10b legacy-trunk +11744 b4872bc8d9ef738634f0a269abb92cedd258ab10 legacy-trunk +11745 e19954ba1bc413788b33b756d8a1a1d6b07b6f57 legacy-trunk +11746 0283759407e161df015193865e23d609fd528af0 legacy-trunk +11747 ca8587d215e6fecae38a632d47ee36d358762d44 legacy-trunk +11748 430038e164337a300112996ba79dad99e1ca8674 legacy-trunk +11749 590bd9b45bf60d1879b42b62527f1ed91ad0aa75 legacy-trunk +11750 be1493391c6dd3bc7bad317e7c00bb421f3f066f legacy-trunk +11751 9d393a0f727c7544a4ad1aba3fe221c9a8b8fe38 legacy-trunk +11752 080799d0cf2b2bd9a4760ae53579c708af6b3ba4 legacy-trunk +11753 8d14906292c66cc005f4555e31e9c406aad79744 legacy-trunk +11754 1e33a8a56bca5b7c63087f565e86bb30c516c8d2 legacy-trunk +11755 2577c0cc7482a88854f21a400547177916c2fb48 legacy-trunk +11756 6b6bd14d750b81b844fe274423b46d9f45704cf7 legacy-trunk +11757 a73cd7f99b95bd12d0a07819c18b44ccfd441f79 legacy-trunk +11758 acd81c3227deb896899177e60d065190e7fb7085 legacy-trunk +11759 9d2c12f240e63612ecaa4f87c8dca4bd6e8947b8 legacy-trunk +11760 65f08cc5955364064924f9bcd953ae4d75ec9cd1 legacy-trunk +11761 86de1fa0fbb7672c02c5692f302d64480fdfb54e legacy-trunk +11762 c116bb3e2ad188b3101d4fafc4ad49f2a4192a8a legacy-trunk +11763 a0f3325fedf191e7c4eebbe55f5b66972b8d689c legacy-trunk +11764 550a456d8f615876c80ee2b953b2bde42c9ed144 legacy-trunk +11765 acee3595e603ed2b4b47f99ee42c128cd235830d legacy-trunk +11766 fbb45060be03243cd53c1781bb2be598b3f5f157 legacy-trunk +11767 72441113243a85e0acacde93fd1fa1a9836b1194 legacy-trunk +11768 50d9850cc8c3b14b342d2b0290cd99bc4168daff legacy-trunk +11769 2c6dd0fa4eb987b6fd97742573efa5a8c524e368 legacy-trunk +11770 8fed8c85c61a9a57a0ec27e027788124509a324a legacy-trunk +11771 8791455485e52ccdbd3a0f0ef91df322f3f82ade legacy-trunk +11772 2f88d8aa731093a7edf240c3ecb51267a94dce7c legacy-trunk +11773 f37be0c822dc2ad41add0ad41e1678b6e57e1621 legacy-trunk +11774 284bf95dab80a1f8804d1c21c650336aa99b334b legacy-trunk +11775 c39218a68df1f376d91851a9d3883657ca6ecfa4 legacy-trunk +11776 53ab8d0b0d644e11fd209390df4f6fe790a4b7f4 legacy-trunk +11777 fe7cbd13086c3a490e83ac539c1713650cdb8b37 legacy-trunk +11778 809dcc1bbc21dcd353f882719429edd7fcdabcba legacy-trunk +11779 4b9c4ce5999c92b7b153e408b07c05b2e97d40d2 legacy-trunk +11780 0a6ed384af06a572303b1a1fe27d1372137734f9 legacy-trunk +11781 faa31b1c0b5405729ba3f017c3bae298141dd475 legacy-trunk +11782 5156cf8e42691ae5fb11d2aef8ff2b43544a27d1 legacy-trunk +11783 bc5150652edcad70e6d4d0667131bee3fba42b78 legacy-trunk +11784 ec3d2b3756d76d95a4881fb856a2d44843ae8cf9 legacy-trunk +11785 a6cff9c290e52645c13110c76830e6377487313e legacy-trunk +11786 5d344710fcc3d6a2376db46baada9753096ef543 legacy-trunk +11787 2340f615da8f4397046ff6d27a13f16d1f35e398 legacy-trunk +11788 bc31d9f6e0a14e362315b3d2569c8905e1a351aa legacy-trunk +11789 02f3504b398df4766a5066a6e7a67d9f74b71b66 legacy-trunk +11790 0a67db47e1d0e46ed7b864be9817810ab12f9804 legacy-trunk +11791 0de662cecacfcaae98501113509f471b7fad7791 legacy-trunk +11792 a1ca085168fc81140cc11dd67fe78386ede82f4b legacy-trunk +11793 d64b4cc81ba62d339fb5c56aa8ba40a8c722151b legacy-trunk +11794 d28b491f45556aa0537d0eef03b62ba147b7fbb9 legacy-trunk +11795 a2397255a6d33f5d24d525e46d48bed1fad01329 legacy-trunk +11796 d64200834a6b4af46c92ae800a9d719726ce2ef3 legacy-trunk +11797 6903482438001c5831d79dec4dc5124de93d77cc legacy-trunk +11798 414128a15bbd9f4de6fa6b9deb48accd3f853a36 legacy-trunk +11799 241d012e82dce58818c330183807c3b695c8dc36 legacy-trunk +11800 3b6c7e70cafff6bdfdf6b70aa5468b92a7e821b4 legacy-trunk +11801 cc3e14837379963d5a986e63bf6c20d6140350ad legacy-trunk +11802 083efa07636610f89d83dc48239a98965403967d legacy-trunk +11803 79439e4e9976958a0d4cc83114fcb4ce45949d98 legacy-trunk +11804 928ea5a409e5351d46456ebbd3a9ba7a6c29c051 legacy-trunk +11805 34e4202ede201d7d9c044cd3074acef71f44207a legacy-trunk +11806 bd9d38d643694ec5237b559b4adf27ba8d3c2a41 legacy-trunk +11807 5db647fedba033cecea0440a2872cc3c3650b948 legacy-trunk +11808 48c615d84da66dab84261d417c024755eaebc180 legacy-trunk +11809 5ea8836d96700b92aeeaf16b6706cd2450a8895a legacy-trunk +11810 467df61ffbfa95fee6c39740501d0a83a8025e29 legacy-trunk +11811 416b77b811c5b831b3959f724517a3798912b664 legacy-trunk +11812 78487e701686d941d0bc4ba6669ae0bfcc87846c legacy-trunk +11813 f33b394e5d7fcbc38541eb958ef48daea53abdef legacy-trunk +11814 003b42c9f24d210827fdfb0b198a9003158637d1 legacy-trunk +11815 8a26e55e18b812dbaec5f138aa7a64dfb2e6733d legacy-trunk +11816 8918e4f54eca8d166a40a47972acc216d16d1a8e legacy-trunk +11817 8e9d979ddf550b302259943c70572dfc03ab938d legacy-trunk +11818 40d21a5b9990156b048c79298f7740d73a0d887b legacy-trunk +11819 84e21ac7d3ea358cd8f6fb4212e4929da42c89ff legacy-trunk +11820 150907c2c2c082797302cec4ac3f4792181f9c6a legacy-trunk +11821 958e4889ecab56e383e9d231c36d7b6c42efecf7 legacy-trunk +11822 ca6e2273fbf6275480a04e566db000989b087651 legacy-trunk +11823 3b91432ba1a413156b37f26b01ed4ed38a9d9333 legacy-trunk +11824 c91e4d87f69469715af5e3822f975b4c4d332e19 legacy-trunk +11825 81574e4646b43cadf183c0086d562c824c80f6de legacy-trunk +11826 7f242f29a45fa8a0007b8494ba140f93752977ef legacy-trunk +11827 fd5a4309bfdc2d4af825486aeff5ff10026962e6 legacy-trunk +11828 75237ca56aff37552b6dae803a67e598c9c258da legacy-trunk +11829 462ccd0bbe50ac692fd3d8fbb85470fb0741b213 legacy-trunk +11830 9340cb2ad3a8874f9dfee89dd5acefb178e43e88 legacy-trunk +11831 b605f22a099aa9c696d8c8f1df3511da009e2025 legacy-trunk +11832 f4dcb90ac419f69ea20fd9d7992f407f03a9055c legacy-trunk +11833 fb2e7f38e1bbe68aba8999d2e7d53cbd96227d27 legacy-trunk +11834 041f22a5a39dd9b1e32730a37ab7760f85fcd7e7 legacy-trunk +11835 ba3277cd30685f52cc99d6318b56c9976522c2dc legacy-trunk +11836 d740c9613bba7a1adda264ab6654e3c27d7da8b8 legacy-trunk +11837 70b32f41a7fbfb38ee572946291618440483a4d9 legacy-trunk +11838 5a3d21301a05145af1002923b5aeb636987991d5 legacy-trunk +11839 ef68f0e609e198abe7a88d7cb4127f7efd1e0b1c legacy-trunk +11840 4f78504a5f81dc76bfb858a074d2722a90a29e62 legacy-trunk +11841 50a2d64276e4b126efe085216113449ed45db1e9 legacy-trunk +11842 23363bb8bd90cf19fe7e44e9fc8ec773a9fc5033 legacy-trunk +11843 e16e363e391b433a387107a2dcb963398bf80931 legacy-trunk +11844 bc9aea718e4e32e3d71b9b33fb4570e9cd231c0f legacy-trunk +11845 6690838ba8da60e4f5c4f0186ee2fa2416e47b35 legacy-trunk +11846 bf89f1435b728cd0ee3bde38e8d0086b62e00f2b legacy-trunk +11847 4422ba389e41570b7280e963865209b315a9220a legacy-trunk +11848 fdc3c459ed00afc2814f079dd5b86e1d594ea05c legacy-trunk +11849 cd19a7db87356cfdccd7062eed6bbec9a24904db legacy-trunk +11850 65b0882a44abcd9ad6c5a2b1f8859352980c2dae legacy-trunk +11851 61f45dd7c43a5304688c346feec182a55894ada3 legacy-trunk +11852 6b5f7e9a31cb9e6e037537f4d16a1aa0e401c705 legacy-trunk +11853 f0a3c1fc7b9024effc3d919a79d50ffcb814777a legacy-trunk +11854 6b889e4c0754e020914dbb77d7072fd3efb07c78 legacy-trunk +11855 2fe7bbe71dd8c0a02b1edd1870bf5449d0156c47 legacy-trunk +11856 d1eada9bbc3c7a27d83cb8f60afd25519158f210 legacy-trunk +11857 4c23ae6c6e82c61cec7aa9d58f13db99a6497260 legacy-trunk +11858 b1004b47bac0e7296f5d15b2afe1651d1280a720 legacy-trunk +11859 50e0631cf117298dd0a138ad3d54ac1a2ecd93e7 legacy-trunk +11860 f351c64c82edb86486552af9b297e3eaaf453aba legacy-trunk +11861 9f135b3d9a78315d9b31e6ed38bd37379eaf3781 legacy-trunk +11862 c80321c328b5d0d9b401d345b7dfc17db3dd5731 legacy-trunk +11863 981dd20bc71162bf03c89605bd82a9d3430dfbb0 legacy-trunk +11864 f6819b926fb2c66131be6f2af891fb6b90d10616 legacy-trunk +11865 f04288ccf77b7b32bcc53df29a087724dea488d1 legacy-trunk +11866 a6808bcf8ac29b4cb5b19fb611d35035bbdf8034 legacy-trunk +11867 7c3bea0118958ea36347121a14462e8a971fc829 legacy-trunk +11868 106faf366e3f07efa11c8a78c9e4b59bdfa5e3e5 legacy-trunk +11869 6ff0948ff951c7abc8544a8cc8fb4c5eeec64992 legacy-trunk +11870 229f73f2c878fe3d2149f03a3f75fccab0efcb55 legacy-trunk +11871 480567310194ca07656981a251bf30f34d54b99a legacy-trunk +11872 9bf40ef227c92b6b44c96dbf52b35c80537be9a2 legacy-trunk +11873 42a07bef60e02c73a93005e3683406ff86591cad legacy-trunk +11874 a4b4ba5c4aa211b67f63c7d6444131c67a518443 legacy-trunk +11875 e18027130bbe20d34e62fe6e7ee3ebd44d6ec052 legacy-trunk +11876 bfa7ed0b1a6bd20e4420e534d0feacb40ee3df6e legacy-trunk +11877 09b5cb47592d44abe784fa2975a66facdf106dde legacy-trunk +11878 afe50b661548c8d2773d75fe8537974f6c8fb3d0 legacy-trunk +11879 8a349309fdf433190dd60c36188bc63cf75a3a43 legacy-trunk +11880 2b34461ba4a3acea668bdb5c1c727a433d372e0e legacy-trunk +11881 64ca1156edf19067694336ff9d03ce06a3bcf8d4 legacy-trunk +11882 00b06cc5b9da178114c5f43cebb4afdf562847e7 legacy-trunk +11883 f5d3974d209f33b92f133ef65d2e40d024dff6d0 legacy-trunk +11884 f10c6a7438f5ce139c1b136bd1509857e76db50b legacy-trunk +11885 9dd6f4296479fbf7ca74519a8b57c389052a5c9a legacy-trunk +11886 6ce0ce4ea3c1847d5ecac0fdaf96e42794785bdc legacy-trunk +11887 a9ae99f921540187639d6a9dcb1ed7db5e0d9cad legacy-trunk +11888 211c9e283466f6e5b2bc48eb21f9261cc4699691 legacy-trunk +11889 3d9a0a3e596b28abc93f9e839a97709876e74cba legacy-trunk +11889 21d71f2e27248a0f4e393d0fc321ecf9b89321d2 legacy-trunk +11891 094c385b56243136b5932e51324d0eb54d3b2633 legacy-trunk +11892 97a543bf9f9a64401e589e3e4a189f9219be515e legacy-trunk +11893 87c825ef7878da6e36d5c36552ff0f9c5732909e legacy-trunk +11894 8cb388e71dd905075e5d5df484429fca17afbbfb legacy-trunk +11895 b0465aeb0efce3030a61e60198a6b88325a7ba50 legacy-trunk +11896 c19e9ac2b0c8c9978b334321b8d8bc2f66cfdda3 legacy-trunk +11897 3bff67369b110859fe97e4d46c820d3167d4a4c4 legacy-trunk +11898 f3670925b098c966674d39eca3e22ccbf14764dc legacy-trunk +11899 9ccaecd3dea32be664872fd497fcd40e390573e9 legacy-trunk +11900 58a35e5d13cc62716245fa10a6529a1d4515db6f legacy-trunk +11901 f50b9cc76c1e6d917359917fb7431644f1ab2c74 legacy-trunk +11902 3886165dba42678c52ddec025176f7f9ec986c63 legacy-trunk +11903 63ecf7a4c070ec9b330cead1d3724f74d5dd4258 legacy-trunk +11904 ee992b3120d3aece5fa39610a42fe25d2745ebaf legacy-trunk +11905 9f9da0189b7b4dee1341ef1eee44278af3e1e45a legacy-trunk +11906 44c5468f8d364535617c3b5b820a601d11814f00 legacy-trunk +11907 620e02250c80bc60933625bf329405484c696461 legacy-trunk +11908 fbca486327ce1c14b098ae1557e0197d93ebe2e4 legacy-trunk +11909 0379eb7be323e8e79b11415ce42d605fd0077233 legacy-trunk +11910 e7254e2f2dc1cd11f275a163b3c83224842428fc legacy-trunk +11911 c03ffff387f8bdd42453b1f99d4022a050bcc234 legacy-trunk +11912 7ba7fbeb88ec3adef25deac6b36d1c2a317a61f7 legacy-trunk +11913 012997b9f1ebd126576bbe11dd297cd546d1cabd legacy-trunk +11914 e6ea2bc974e26fbbf374150556192cf5494d6b5d legacy-trunk +11915 f6f86b37f1fc3b9a4e0c15589bb2cb9ab988869d legacy-trunk +11916 3b8b31d2c9ca311fe72f36db1e6cb1856620e2da legacy-trunk +11917 8e4fdb0b0bb8e598e4a9aec5c4c69176af25f3e4 legacy-trunk +11918 02b0b84dd545e7ba5eb67be908ba5fbf76507149 legacy-trunk +11919 1a59f3654bc113a39960176c56cb5acbd0e59de0 legacy-trunk +11920 e1806b280f5393cddaf3c51a4567df94768ff47c legacy-trunk +11921 7f8f608acdbcd370a7c142330d373df6acb2bcae legacy-trunk +11922 792cd7c5fd88ad67d414448d56703caeb94655df legacy-trunk +11923 90fbec4343dec62febbff77c766e5b65cc779833 legacy-trunk +11924 7567ef40de77cb7be95a964d10f350d15c81406c legacy-trunk +11925 1c94f34b49e3f74c35a085764c4a987ebb36c2aa legacy-trunk +11926 337ae12d805007ad1c6dfac6ad7dac2b4551844e legacy-trunk +11927 22c32dd63ff5d77cd741dd17d920ed077159d3ae legacy-trunk +11928 87b9554c51d4ba6ea5780923094dba35bd2dd814 legacy-trunk +11929 edf7553fb20efedef9b9019d043974fe71bd59c1 legacy-trunk +11930 9ea5c42dcbedb5c3e16564f6021930f284034f65 legacy-trunk +11931 4f6f730d2556dbe931e0eab870b6720826a1adbd legacy-trunk +11932 63fe85735bdcd954d1a0f445bd7a44ca2123f4b3 legacy-trunk +11933 49623da3c63f3f52e2d5779aa2d43ed2acee4b45 legacy-trunk +11934 c6366893cee1d9760b53616e38ab7720f75ea77b legacy-trunk +11935 ceb878796108169139d4d371b28f6baf98cd6836 legacy-trunk +11936 e1c330943221e5d99df23a42a095d2cbd506e205 legacy-trunk +11937 f8ddd234039889d9cfff95c7d0a21a0caae2f15f legacy-trunk +11938 913eb31b03172212651e7caa84d08c5f4bbde80b legacy-trunk +11939 0fea5d5c4fd9da8d7831476915234e24b84af415 legacy-trunk +11940 56217eabc07ab4d5c59832a320a7c97e4e528652 legacy-trunk +11941 4bd5128e5ed4344ed1b17860a76fc60b47ea529a legacy-trunk +11942 1880ead3200cd45fe2a91edd9ecbb62776f81103 legacy-trunk +11943 41c884dfad5ef4b997f6c65ab74f410cbfd33975 legacy-trunk +11944 25b6929ffb13de005a88618f0a753b535ad3ab18 legacy-trunk +11945 f242cd10e16a248eecff167540889480e329ad9c legacy-trunk +11946 d3939ad381766aa3019d6f06533364b58a888318 legacy-trunk +11947 da71aa1be191c01c3e85d79489b5b298ae41c47e legacy-trunk +11948 b34f9e7e26914654d4863c67bf487e6006c986c1 legacy-trunk +11949 4d3e2f1d0ae47edb75ec13172bd1076ba50e5306 legacy-trunk +11950 8bc0a32ddab5a22bb96e277088f2d2ca66b65226 legacy-trunk +11951 e5996279f58c7b331ca083336e1e15465eef4474 legacy-trunk +11952 17bca4b3da9357cf9dd9db954058989e8dab1e53 legacy-trunk +11953 1afdc55801578cf1ca5672d03c5e0b6b8849a203 legacy-trunk +11954 54422b46f6d1802cc93c479f2278367ff4eb8894 legacy-trunk +11955 e7d984f266cc61f6e6aff96c84eb4e2c22d1239a legacy-trunk +11956 62e1bcc66a93e4255959a7c182d60ca5de098c75 legacy-trunk +11957 4fa8810e85cacf5cf0e2dea04bfbfca3d31cede0 legacy-trunk +11958 9ffd604807c21673da30b14094828da43911d4a1 legacy-trunk +11959 8dc0e97a45ec75208c52a1dc066574b92fea7574 legacy-trunk +11960 798b1041d2606f0946e9c54fb0c431fd8c47c892 legacy-trunk +11961 a115c3d492db083474ccb999a001326ba92fc681 legacy-trunk +11962 4de09ea10ee08e020b0e364ed769915b8fe0af25 legacy-trunk +11963 6a244e64b3e6b2ec07694bfe9acab44854561d43 legacy-trunk +11964 feb6c386ab7726583e4f0833ac27c756282ef5aa legacy-trunk +11965 d07bc8bf2d84593ef79103e822ee1e3cf7aa58b7 legacy-trunk +11966 1abd91f9703325c7434154e9b72f516ef029a384 legacy-trunk +11967 c21815fa0778866506167624298c6446b165a30c legacy-trunk +11968 de0093169649bb30f6f8aefe308e2438b875d04d legacy-trunk +11969 abf2cd251b24a9c491f388bb9d91fbd846fba678 legacy-trunk +11970 3f717342f0a36de91d6dcf32d1957d2026326f5a legacy-trunk +11971 c1fd8146f2e9a79c77e5877abacb162052916355 legacy-trunk +11972 f89ea9bf9a525d9832d8d21d2770816ed27469ea legacy-trunk +11973 1ea6d2356e52da40f947bd2296bf71ac09df8972 legacy-trunk +11974 afa0cd217f4eba72db41c165a32abe2cd69cf236 legacy-trunk +11975 f6a84a1c7e02cfb2aefc22308bcc4a892fec3c15 legacy-trunk +11976 39ffc5967b6bacb2447b0643425731334a69a8a3 legacy-trunk +11977 4abcb32f7ef54a332dc4deb3b48030d13be902da legacy-trunk +11978 e1e9c9df4f12c8f501d6c107bbd9198c53b277c3 legacy-trunk +11979 63876cd9984c92681dfa834ba8ef367d58468694 legacy-trunk +11980 25be00f31da615d436ee593f0b8c3e0f627c6181 legacy-trunk +11982 d84715523095ac27f7b3992968b1c1f26e9fea18 legacy-trunk +11983 6e6be896ec466e944b39d3693c88d39ba61c6899 legacy-trunk +11984 d3928b98e2e13e9238c31534e651f3b73b5b034e legacy-trunk +11985 8f3e7fe1d4f763c0af5114f3ae5c9626a7e37cd1 legacy-trunk +11986 b0ca2ca586b158b1d4c1082869c5129ab3dc7620 legacy-trunk +11987 db7cca09beafe7b7c221e813db2de8d44caafb84 legacy-trunk +11988 b75d93ec8e5a6f7f1b3e113cf9f2b07d31818641 legacy-trunk +11989 a3bcf1b365517b54a99ff7fd2810c700c66dd7b8 legacy-trunk +11990 9647c6ad6a5098ce895ae2d727b9aa8e2463de1d legacy-trunk +11991 181507cc1a72595a5f00556aa8277882bdcefc28 legacy-trunk +11992 549831723ef8578a1aa2f11cfde3a19576ffe9af legacy-trunk +11993 eabebc1615186b1e2e4f6db3317e65022ecf2103 legacy-trunk +11994 5d81e42c6ba2e8e0598828104322ec77dd6b5f9d legacy-trunk +11995 96c734acf84f55cf903d5ea796b2fd8cb9564a76 legacy-trunk +11996 76e935924fae0b48c7851b29a71cfc6cbca52ea1 legacy-trunk +11997 63a1a8513c1dce70fefe7377416524f4bfefa34f legacy-trunk +11998 4431e7a319775bb6edb46b12ad57073b5f920e19 legacy-trunk +11999 37777e0f80e37554ed2b07dcea5c940f250ab5eb legacy-trunk +12000 60dfa211dde8bad6484d8ae14454713b4025d196 legacy-trunk +12001 fec862301d6e33ceaa2dd4b11c442cb552307cce legacy-trunk +12002 f596518d0691e025bcae6ce747c817161dbcdcf5 legacy-trunk +12003 24497643dcc91d14df652aec86188fcf3599889a legacy-trunk +12004 04426224302aadae4a23744c51cd39a8c518b810 legacy-trunk +12005 cd790310bc4f06f2a3105412064fc12fd66d71a8 legacy-trunk +12006 60d990f7d7ab56afc59c5528d4c87df373cd5660 legacy-trunk +12007 4a7344d55ae1879528d0a863c3518ef60c7a4206 legacy-trunk +12008 85444af2be95d055b1233605cf2adcc3b524fffb legacy-trunk +12009 bbe92932a005e57e228cec142da61bb9de5fbf53 legacy-trunk +12010 a2e83bdc1feaef73ba596ae1e4c461cad671c7c6 legacy-trunk +12011 350f24180dcb422a14d7f6eba08b0d4efa0a4fd8 legacy-trunk +12012 a126107c433a6f9a07c7d36ad899cf955d4f024e legacy-trunk +12013 983f53f2b6f683cb4faf9a0b7cdb6aa61fbb5c42 legacy-trunk +12014 58f6da7c8bb894214af39f4ee12c65ea0af8dbb0 legacy-trunk +12015 fe783984f92ea3a24889af54f2c4e0fe05aaae7f legacy-trunk +12016 230925fe5b2de9dd6b36b21ec00ba705878f3b3f legacy-trunk +12017 5ae1a20bbe71eb569e6211c4d4accd9d62d62bc1 legacy-trunk +12018 315cc06a8161547dd49de9f2b12c32c859298e0c legacy-trunk +12019 0f27257fb6cf4f415bd6b3a640671b2ed908d880 legacy-trunk +12020 a1a8df73bfff523fe7c7d8d398ccbc92ceb19b56 legacy-trunk +12021 ed6cacddc6c68e87b9061acff453693f291d146c legacy-trunk +12022 c6a1103efa8af31e6e79a69c0e5e1a4859150f49 legacy-trunk +12023 48c7004109363bb15149543ee6c6f2005f589317 legacy-trunk +12024 7504f23c9247d9106e89a56fc7d1d843fe66921d legacy-trunk +12025 f902ecc867d08d34c9a0a39f0902f484494c1ad6 legacy-trunk +12026 e059049b1a7620c8e153b4149f3c256f67fe143a legacy-trunk +12027 d7d39260fe82d5ffe1d57b6ca66646a96b4fd573 legacy-trunk +12028 83f83f002d2eae51ffb823689cdb139411647997 legacy-trunk +12029 68863f51276c0851105bc925c1adc74812d0fa65 legacy-trunk +12030 df0777ab7c63854f86330ae9a368964803b276ed legacy-trunk +12031 79a8a1a7467b122f40e182daafb8e1a7a0b8d3fd legacy-trunk +12032 53325b8f8ce9b1cd3eb25f8a782d9d3251dfface legacy-trunk +12033 93ecc51f59d12af383b534c2f3174d117341f96e legacy-trunk +12034 3e50c1ddab3a3bcb11a2c90e00f8fb0816735fc7 legacy-trunk +12035 f17ceda6e66692573d3ef1e3a05b5470f5240559 legacy-trunk +12036 ff392dd7b9709744bc4c483a1cf06c9b0e91303f legacy-trunk +12037 87bbc721ba2b99df571f78c2b407ad0f0b8e4062 legacy-trunk +12038 aa2c1a8fa8ce11249494b9984098083ec3b41220 legacy-trunk +12039 b8ec974afd6956d672592581f6273089f1076e42 legacy-trunk +12040 1437c2335b3b46a5e8c6c045344e6905a1cdd2e6 legacy-trunk +12041 6bad69d3821625f82938116a0f521939e92ecfbb legacy-trunk +12042 16af2582c964ccc7c5a5e055b1c6b3758e166673 legacy-trunk +12043 d6415c27b3b1b4bf0bed00fe90ff5ede3a592457 legacy-trunk +12044 aa961a46ae9e09763b313a75dd4ddd5daed14e4c legacy-trunk +12045 6e249b135ed3b21d69f14cc063f815a4a2bff6a2 legacy-trunk +12046 8819def1b39c6aca0401db6f846cb1e558078caa legacy-trunk +12047 485c0bdfe8a0e39efce509b9b5097dcfabda1ef8 legacy-trunk +12048 d594e832a56cbc19233c6d2a3681c17309b8675e legacy-trunk +12049 df3985eb5873bc8f763a494e8ab65b0e64474e86 legacy-trunk +12050 9a4f5baa824e7abbd8b04477fe3b9295f9c1d766 legacy-trunk +12051 16878a4c260d20a5dfe48f4d4b99a38e973cf8e9 legacy-trunk +12052 9177c409dc4512a09b2cc080622fce6d632727ae legacy-trunk +12053 2200904abddc5136544b0dd08dd6a7b1242ce8ee legacy-trunk +12054 83bb606a32e6f448f9808cab67ad439a2cb43edb legacy-trunk +12055 f02c6549ed1b5417b462237fc55c429c796bfbee legacy-trunk +12056 fa867d8ee7ebc0390ed479fcb01d0d034d6ddb92 legacy-trunk +12057 feb8f8769ef62dc5fac109c8d11d8ef1d9d3b89a legacy-trunk +12058 06717e52068ffe308573eb5302b09a8dea70f330 legacy-trunk +12059 ae8e149444147caf2db55e70d41eeea3cc4bd5be legacy-trunk +12060 bc9e7721c916203f531b0ca5cf65149b6b76c3b7 legacy-trunk +12061 d85d2d994f1f789f6fc3bcfbd23114583171de5d legacy-trunk +12062 d13a60b44b4587c65b9094a0e77a77d66489ff05 legacy-trunk +12063 a091185ccfb6b458e0bc5483abd82053e61fdeef legacy-trunk +12064 ac742862ca36277884004cbda27ba6269aa8f6c3 legacy-trunk +12065 b7158db347d9b9feedf89e792a2db900db303351 legacy-trunk +12066 559911768dcbadb2853bed7671717c6ca51571c7 legacy-trunk +12067 ab20f5cdd79f6e54a5dab4ac3faee7111b972baa legacy-trunk +12068 5cdbd8c04016cc644fc6e3da8028867e4c7b19a0 legacy-trunk +12069 b09a9c412ba2994a979ffda5aa1b141a03973d73 legacy-trunk +12070 b677436753a872b344d838dbb946d5291b4d25d5 legacy-trunk +12071 8e6ea5f03e7340cb7ffcce0f59eefd30a0d0b386 legacy-trunk +12072 aa1e48285d7bce007a8e50c5c593c81b6e138449 legacy-trunk +12073 cdf5617c2022d2b77180058adc2bc788f14b7296 legacy-trunk +12074 98ad57c39d20dc1f105a5a648272a49ab12a0546 legacy-trunk +12075 81dd7c73f7b21f49b388724cac71e62a10d438e3 legacy-trunk +12076 299284ee669dfffb7a4fc8bc7446c09abf31bf7f legacy-trunk +12077 f4da9449f01101e2d5746664cda9e5ed45a401ac legacy-trunk +12078 9a8ecd759e13411c2ae2f051b98cbc9a85f73148 legacy-trunk +12079 4595ef5a968ac536eb620f1274f8c3bcd34c64a2 legacy-trunk +12080 88d590cc1116e4f4fa0a9a400e95540463b4f12b legacy-trunk +12082 6483dbe09f06188ce3fbe16e8c31b4282d0497d6 legacy-trunk +12083 e66e88f5260643d3837ee810a8679434874e40d3 legacy-trunk +12084 3c297a6ad4e8bf99a9c1c74c64fca6b04f4829d0 legacy-trunk +12085 60fdb1db1175665b9d759f02b1dcab10d004f52a legacy-trunk +12086 5a9ca2e937b5bd734dfcd2e8a505c375b60e85af legacy-trunk +12087 38023a425e48380bed7b62b3b753b045f33456cb legacy-trunk +12088 01c8fe44064b32dd2f6e7304f352978046979423 legacy-trunk +12089 45bd6c40c05ae052fa00536d071a20101c43a4ec legacy-trunk +12090 7f90736701a350e339553003c0ec5a260274e055 legacy-trunk +12091 2aafcee220bc0b7689f82f46e09c4f9e00ebf7e4 legacy-trunk +12092 f22f769bf3d9421c9a9aa14e60654de74c8eb07e legacy-trunk +12093 86bf70a55efde4de7422a168ac8456126e15139e legacy-trunk +12094 616b174eeb54830de84e0dd236069e6f13faf7ed legacy-trunk +12095 3609cddc79df6103ee48459606d545693d1e97be legacy-trunk +12096 5831bb3ca42a49f88ad662195e0f0a17eb2dcb7f legacy-trunk +12097 54aafe42c0c3f201ecf685e772bf64c4fd16b8dc legacy-trunk +12098 3076fff30535f2d0b5ab9f4f606558ec618114bd legacy-trunk +12099 fcbf222e68981aa6f46decf3944b41063ad505cc legacy-trunk +12100 0f3f9e366356c7b811885b233b8d37c811335bfa legacy-trunk +12101 d7986b4b91009c0a22c142339cb0c1ca259c3e96 legacy-trunk +12102 c4e2da47794929ce05e0afa38c418622c823dfb1 legacy-trunk +12103 1dc0ef24b15d3202e22991b415b960168ba9d30a legacy-trunk +12104 6b59f9ab5db1a51384192b60b4eb0f9cc5482492 legacy-trunk +12105 cb9e3f00d6b65474dfe803a72075e6a87489c7a8 legacy-trunk +12106 8483953a92483d7eb950431e5d4145501664718b legacy-trunk +12107 5a36bad1d2489b87abd77a1cbc22199ecdc59ff6 legacy-trunk +12108 c1f98857cc5bb7f607902d83572ef5c399827060 legacy-trunk +12109 2678dbf4ad69a330d6e4eae3a1ed40e2b63112b8 legacy-trunk +12110 570fed4ab8daf6fc97b64514a3d9e4716e9044c4 legacy-trunk +12111 aa88cffc35ab94a32a81e9a1947e27013f3e98cb legacy-trunk +12112 5426bef89ec338d04d8ffdd346182b2470ff1c3d legacy-trunk +12113 ce79c0e74f6fe1f290be48f6ffe928feea14ccc5 legacy-trunk +12114 c03787ec9811c986b586a0ff6ef9f2e4cfc198de legacy-trunk +12115 9abee63c6bab3c46d7f6b6be4086c2e48eb28aa2 legacy-trunk +12116 c12fee4ce363d8f31b0df3f0bb77fad8e37d7da1 legacy-trunk +12117 991bd353cfebfbd7ab649e2f93b3550734b71824 legacy-trunk +12118 90fdb37764a22b106b4f52737c3e8468fe6addb3 legacy-trunk +12119 179fb63b15547473bb3daa08bc2c72181a0c9eb8 legacy-trunk +12120 07ed38c296ee8f85b89df7ab8500b090f21304ff legacy-trunk +12121 5672f5f1db4684d1a769b82ef279de8b0cc644e7 legacy-trunk +12122 fa8f9fe0a33d98515aca4488ef73e5182121783d legacy-trunk +12123 b2fdd71ca006cb463e37f28dfb039c5f3097cc26 legacy-trunk +12124 1fe48009d8ea8ca5b7651c89be78cd3a2eb1ca8f legacy-trunk +12125 98a6fc6877aee2c21973ac0158ba4bcd31f2fb6f legacy-trunk +12126 4f50c70454a9b2d120cad6c4d63ab4feef983d95 legacy-trunk +12127 82030ca0fa2ea00c54f5c4de795e6647fca963a5 legacy-trunk +12128 ca21284e875dcf57e07f793a4828e16fa9bc9233 legacy-trunk +12129 d66710939a325487f4b252513e1d6cb037e28a9d legacy-trunk +12130 2b00bb5088036a40588e22f34aaf743324c4319a legacy-trunk +12131 ac5345814ba0933c3d5a92f2e3bd8258286a2331 legacy-trunk +12132 e2dc3cb08c60a7f9605ad069b3b92abbbbe62982 legacy-trunk +12133 8586d911fb390238b23e7edae7d293c7928fad4d legacy-trunk +12134 44267b88fb59410ef68e4716679c53b84348c9dc legacy-trunk +12135 e58957f06a15384e2d7dc265d0e58d17d2569401 legacy-trunk +12136 f5e586b5f7900045aa43e734a2f67d6a45322435 legacy-trunk +12137 f9cc52374c52c3ecee2c892e7c92cdf0030bf92f legacy-trunk +12138 da1dd3e54b7ae24a2623d0cd5fdf019f9cbafeda legacy-trunk +12139 72a2fbb0e1f90038dc08fc51bc84e28134ee1e8e legacy-trunk +12140 d152adf3f094cb22b92825a90463166b06d242cf legacy-trunk +12141 08379c7f5fa9b301f21ef0ab2fa383666148f719 legacy-trunk +12142 c2ec21c65d05005d6076a5c5756a69f7409a9352 legacy-trunk +12143 2cd58a61b0516073c48c930567bfbc9f8ac4b340 legacy-trunk +12144 4e15d175eed0c9bb491f35b6957e827f85fb792d legacy-trunk +12145 4742c529d9c8e1c9d6617ce29ce3721cedae4c1e legacy-trunk +12146 c4eaef89a4a75d980acd525f878affcca368a444 legacy-trunk +12147 c66b0d39a736be60e7eebf5e6a69fd7089b353fa legacy-trunk +12148 47012c13efe47b4debb97081298aec57eccc96ec legacy-trunk +12149 b4cda3940ac3fc97f4f6aeba81351de75c0d8d55 legacy-trunk +12150 b77d373993437a99cde89d0d7c7becb0d6f8ddf2 legacy-trunk +12151 e7ee1884fd5491cfe8ede59cbe2dce01a20d57d7 legacy-trunk +12152 6941f43d3bb809c7061024a9f3f0d644bcbb2170 legacy-trunk +12153 917357c1255226c9f88bdedb55e2d6dce43a51c6 legacy-trunk +12154 bfce73d3576c3208cdc12c0865b801139ce8ae6c legacy-trunk +12155 ad497cb5d2dc2f989a74c131ff12b98980ee8e67 legacy-trunk +12156 7dde4501f53ada34d11e62021ded257aea891b9b legacy-trunk +12157 23237bcb774bf2ef63f9e2c7c3ca7ef269d92cf6 legacy-trunk +12158 04b0a0f29f65f30aa55dc4c0555273af0677b03a legacy-trunk +12159 a206c61a89509e5d41c1d71a5f701c1c08fc4f1a legacy-trunk +12160 4808a8b57af3abbe7774a05bbbc0f145c918975d legacy-trunk +12161 9ba7f50b825ad0851c3738600babeb0351e3a2fd legacy-trunk +12162 4449702a096a4fd747c6928a59696814de74810d legacy-trunk +12163 4eee061dac44cbcb45f533a511b9b8f64bc87f88 legacy-trunk +12164 e11d75005a5a9662cf2e477b35513790ae597c02 legacy-trunk +12165 9da01e58a0b55ba98f364b2181f28bdb3f4ce00e legacy-trunk +12166 914f83e7fa0a02899a37f24860b62ab17ad118d0 legacy-trunk +12167 40858ab235682139da479c1e37547281f8da44a7 legacy-trunk +12168 272eccc573e2406afeb9eefcbbdbe6a00d12fe5c legacy-trunk +12169 214f3044d18c10cf71e9c00e3cf1b6f31f1edaf7 legacy-trunk +12170 1d40bc25703a57c9d4aebc7e81e0e9bf9824c817 legacy-trunk +12171 b4843a07d5791c13036b2ef0c2f0292bdb660fca legacy-trunk +12172 9916fc85b28a59fb24f78a829842dbc0e5a54746 legacy-trunk +12173 53766fed9f8cb8aea022437a3379151473df0f9b legacy-trunk +12174 b78049fefceb297c66720b196f3b783a6e7003ad legacy-trunk +12175 5d4f1347150edea4652fa73d5021f0d0067a33a2 legacy-trunk +12176 00fed76980bc7f727eca24b97d382e65b088929e legacy-trunk +12177 f39a19a1229af6e1e5e66f51e330c95cfe69d6c9 legacy-trunk +12178 877d23bd5bdc2d304fa21c345c99bdce1fbf311e legacy-trunk +12179 8b61e1273b4bda34a7fb88b2a79271bb8b85359e legacy-trunk +12180 6154d2e6860328669b4f647650c61a135238a9dc legacy-trunk +12181 5345fd13de3d9d7a4ff599667860a8950f6d49d2 legacy-trunk +12182 5a6bd43e2d5a755440a8ccf07867468d93f11b06 legacy-trunk +12183 10955c39c0e7b6be68d64ce8b1ef911465470dea legacy-trunk +12184 93cb1aa24f7d1069738bff93ee858d6cb4382d42 legacy-trunk +12185 b0b815eeed2c491a8e58ea09bdfc2b2112e3967d legacy-trunk +12186 b883ef3b2d196b2d9c8e0b78704c9513209d231c legacy-trunk +12187 ecd11542eabe51939039d78c24b2037a1a032719 legacy-trunk +12188 0a0434efebcfebca90f0560562bb864758369925 legacy-trunk +12189 31489799c8c60a30925558ba49a16c6783237eae legacy-trunk +12190 8d3c2a80834cc10bf12187f501c5df3abb11ed78 legacy-trunk +12191 5389c6e30e54b130750f0f81f69330394c3b5ac1 legacy-trunk +12192 263655c6b6567180d7b8e3aa184ce0dcf1609791 legacy-trunk +12193 63732529f6df7e975f7147d8afb5d4ba71bb1f40 legacy-trunk +12194 7a4eeed54b24514e0b1106eed60fd1fe57b51a0b legacy-trunk +12195 22f3a8d803a517ec2d961e51231897cc588f7629 legacy-trunk +12196 93c66ac6af1896d26ad4a9c6dd9022c02da087fb legacy-trunk +12197 f7e86684cd4c2d3642fa4b79e4071167acda1b39 legacy-trunk +12198 973c21df2d601b9df17f19b1220f5fd1f5901912 legacy-trunk +12199 9701c50c69460738a478306a0c86ac1bd572ec74 legacy-trunk +12200 55590251cf5273b65b13cbde59cfd66f7a990641 legacy-trunk +12201 6ba7bd563e3bf7fa6aefbc7afcff69a637a105e5 legacy-trunk +12202 b5d1a1625cd5db4ffdc0d2facacf8286310c7375 legacy-trunk +12203 439421cda89ea76d673c00cffbccf4f493e8c034 legacy-trunk +12204 c22dc301b36a81e2adda7344a54ca04cd5a2c8fc legacy-trunk +12205 1277946054e8c6e162aecf1ea31464dadefcb4ee legacy-trunk +12206 e0a4fb0abb769dde182523a311dc396adfc711cc legacy-trunk +12207 f3f6023feb788d91a81957614958d13c67d1c773 legacy-trunk +12208 d7dd71d0d1831a68f13ab2ac9cd0170bbff8f893 legacy-trunk +12209 e78bdccd224ffc91ede85f87f8dfcb4494d73780 legacy-trunk +12210 2bcde34746d1cf0bd41c4966f71b133c9b4014ab legacy-trunk +12211 a3c9ce2985dee951c8b20eb884e696cabce5f432 legacy-trunk +12211 f08c7a2a56f80741f5f192fd0ebe0b0967a203cf legacy-trunk +12213 cf654ed58ff16a08dadab8b486676f8ab27b3f83 legacy-trunk +12214 d1db7f6ab753c9f34529d8497d60e40238df646d legacy-trunk +12215 8b25ba24944652a60bf22727f0bbfc5ea3b8628f legacy-trunk +12216 2a89543dd3cab0e84c8df6d8e6071dc01e815e74 legacy-trunk +12217 482e63d79c9dfee4a9ed3913394ed7a1685525cc legacy-trunk +12218 3519de440f892c2c7e15965a3cd5e779a295f53a legacy-trunk +12219 24ca64134594ad7f336cef1c71f4ea1a8fadb06e legacy-trunk +12220 72b761b948e7e9ab791cc03e89c2ee778def1c82 legacy-trunk +12221 3955f787e9a11c14bc44ae6e53429a0e98c3550b legacy-trunk +12222 04e44c6076e8f2f2f350922945f86df17cf696ae legacy-trunk +12223 56f38bf3af9f2d63382409b6b162e9d601b4c232 legacy-trunk +12224 4b1b9432b26bfd8f679edb7413e82a9e3bb307f6 legacy-trunk +12225 4336a190505b66e2632cda5a1eb47f339ddecad4 legacy-trunk +12226 eaab8feb7fc0764d89cc2c45f031e0c5c8ed4e77 legacy-trunk +12227 2ccf045f5a211f1014016c2083d9c616aa7bdb92 legacy-trunk +12228 2646893cb499375aad00cf9ea568f7b1af0a0e99 legacy-trunk +12229 6f1ca9dc95dab1751d45b6ed7dc566448064a907 legacy-trunk +12230 72f50636dfea1e4583dcce37b5dffd6947c54818 legacy-trunk +12231 10ab2c5fbd8ee7c0d7f9ae0195c9f60e8a6a67ed legacy-trunk +12232 85d5b5eced9ea99863390e5a53f182e3d01860c9 legacy-trunk +12233 47d2e4f711478dd5f0e0757fc445b7d4fea5e06e legacy-trunk +12234 2e9931f44ef4f7862cb086435bec226ab3d7d40f legacy-trunk +12235 47bbd0ba8e8a059f09a6a116b3d1ab3f1bca7daa legacy-trunk +12236 3415d13f8bc8c03d09ad73579d8b3e8c3be1c958 legacy-trunk +12237 9fcc902d740faaea94f92503d3c7899ae00e9014 legacy-trunk +12238 e6b662a9b70961189b74c67e496723137915cf63 legacy-trunk +12239 e06ef87b34cc4a885864ed76060fc18c3a4ac69a legacy-trunk +12240 05fb4d966c73ffab0daab60897196972bcea0336 legacy-trunk +12241 2507e15eca6b90c6bef2a2ed95b1d9ee1c46e97a legacy-trunk +12242 0995a7a63782bbd0a4ff06759012b8bbf1ec44f1 legacy-trunk +12243 85ab286442014141136b65024316c9038d088b3e legacy-trunk +12244 6fc58d79dac5dc5d16e2e08d8b631218f47e9d18 legacy-trunk +12245 9342c60eaac075ad238037db83618369e748d852 legacy-trunk +12246 d6328d74b580efd9045276ed6064d38f104c4157 legacy-trunk +12247 fce6c11c80fa1de9ab41d2d49e149810c2d4070e legacy-trunk +12248 967ac5e8907aca94c46206d557f16043203d3604 legacy-trunk +12249 7ceb92ba86f7649ec155bd2178c8691271b16539 legacy-trunk +12250 08a9373860e836b1fe6c9b4e34cd7120aec222f9 legacy-trunk +12251 e45df6f45604b9530cc746d2ecc9094135d772fb legacy-trunk +12252 88af8a42857d31f2b6c20b053f964d8ce4bde6a1 legacy-trunk +12253 7663cf95bd0ea86268025dea6d4e66efe6b5639e legacy-trunk +12254 30f3630b77ca9945cf3435fd95924f3365421582 legacy-trunk +12255 586d1b08614e2617dc30f8fc58aab592f1787e5b legacy-trunk +12256 c708d70b139e215e6cfb0de6aaefbdb255e49b81 legacy-trunk +12257 cd2e05dae4c295fa4fac7ba15c057b6ee4e04906 legacy-trunk +12258 9e6f5bac15ac24a3a170da54edb06357c91ca325 legacy-trunk +12259 3e7c43453e5e999c71115bfc2dd411ac5387fa1c legacy-trunk +12260 cfb90db39958b24a3dd68a4b5a5993308659e5f5 legacy-trunk +12261 ed523ea073dba049f8afcfc101444a6c19c738b9 legacy-trunk +12262 16c9a714880fc00f08b6257fe714ddfd1e0927cc legacy-trunk +12263 f7552dd236b0ad627bffb1861313cc27e5cdfb3d legacy-trunk +12264 631d96d3cf660fef300b7d10914c2b27d0ac457b legacy-trunk +12265 0d88733408462256ea652240ec4fd329e6a1fd51 legacy-trunk +12266 61dde7ebfa951688a84b05900a05623bf96c3bfd legacy-trunk +12267 4a07d69864f57512221f275fbb1a61dc169ed159 legacy-trunk +12268 e1508f72c610bad2105bdfb83389d6a0a6abc9c8 legacy-trunk +12269 8547d277a22f960c5dbc98bb6629ca4cf3191b4c legacy-trunk +12270 eaf93d5bb46cf65b99ce8642e6c5243f2a911b34 legacy-trunk +12271 8813627aac466a01fd196c5a59a63d1acf9ce40a legacy-trunk +12272 e208b274eb808c6bd3e1425e5284f5768f3d6363 legacy-trunk +12273 770b40fed5f7ab106c651a7bae0ba939ccb931fe legacy-trunk +12274 b116afb817328ec2fdd0d0838adbe64fc3e08151 legacy-trunk +12275 770d894e20bd8d23c9e73f5f04efd3e49d57fcf7 legacy-trunk +12276 8b086349a488cb1a1bead64ff7c90e4b0328d397 legacy-trunk +12277 da944678b00e0b8f331bc9ccc35112ca35492e61 legacy-trunk +12278 c4692046b48201bff8cec32329aca332d8dbdb03 legacy-trunk +12279 4b18f8eaa16b2bf8bb384770114af41ccf0cc23a legacy-trunk +12280 c91ce49b4075089ad1dc7de2be1dc283ec9b3e9f legacy-trunk +12281 6680facb4d5b5e27b9de9996bc7d8da9cb9a5320 legacy-trunk +12282 be24b5b90decd63da5c05ab8c53dbdec3e4f8ebf legacy-trunk +12283 8dba08223deba164f04a98ff5fba85e08b4b125e legacy-trunk +12284 facb457b4d32ed6e224f777836a4351081736419 legacy-trunk +12285 40f723ac26e82807374733b4cb3125f920d2b8c7 legacy-trunk +12286 1beaf9179125b24af99b1243a927eca0f7837cf7 legacy-trunk +12287 ecb912be4318a63c523e409f79c9ebbfd219535b legacy-trunk +12288 08dfbee0a32a1397fb1b1ea6d5ed31295b4b1c27 legacy-trunk +12289 7cdcdf8686b3c91b7d03f9e861375d6056fe34c0 legacy-trunk +12290 9e61166ecdd81d5b0809705700cb1bff37c86535 legacy-trunk +12291 fe701969bc2cf6b7915d59aca754d2244a4946ba legacy-trunk +12292 737d05a9bb5e8a9af94cd8569ecd02b6971be04d legacy-trunk +12293 209eed6a2ef658ed38cbe2c21af6af0f51c6280e legacy-trunk +12294 836f9408c9565aa59c8018d529df5cc2893d3cb5 legacy-trunk +12295 7ef5a1520ae53d0115efc7c8cda242c21fd662b1 legacy-trunk +12296 db2982fb63c04d5d943393f4ebdbf876f2bb4e6b legacy-trunk +12297 9cfc53e5996e0aa0c8c5a469fb89f1a0c605936e legacy-trunk +12298 9d02afa022c52fd74e944a573a749b2ffeebbb7a legacy-trunk +12299 c1eab1dc75363a341191bd5648410062f479639d legacy-trunk +12300 928c93d2c1071db9d0c6ddebb3075d5e11edc628 legacy-trunk +12301 5668f8a3a4304fbc10a48e3d112681821c5fce4d legacy-trunk +12302 81b3e6ca4a29afbb138b624c719a3f1839bdc18a legacy-trunk +12303 10270115cd4b805cff37e13652359c5ba0960978 legacy-trunk +12304 8d6f84c5948c2851a000df530f673d75ae1da9e9 legacy-trunk +12305 a9aac002e8435ba2b66a9add6bb037b2f80aecbe legacy-trunk +12306 415b98411707f1222ff2ac32602c49880527abe9 legacy-trunk +12307 0bfaff11c5739976bfaa471295202c536483b3e1 legacy-trunk +12308 93d70308be171bb58a48a9d9fd3facf533c0035f legacy-trunk +12309 f981c9d36c8af8565356549fe0afb3cd75926b08 legacy-trunk +12310 1eaebaeaa22b9a2a16094b7fb5b84d50ead105d1 legacy-trunk +12311 30ee86172168a31c13b44d3dc8893fe944448db6 legacy-trunk +12312 870109a44e0ebe18a0bb6b7ea6f5008df2765c0c legacy-trunk +12313 4d044005611e40fec368a39ca39b00413dea95d2 legacy-trunk +12314 4010e5d243d66b8b21eab51473033acdb76f7ab2 legacy-trunk +12315 1420f84009249b86d11368de4e4cbbd253d878ce legacy-trunk +12316 66373727fac85b280be5bed5dceee933269b9bca legacy-trunk +12317 a3b2525c9370404299139681bd53fed05738c560 legacy-trunk +12318 bd1ce4120e6f9546dedf85ca97e8ecf1a5ac2388 legacy-trunk +12319 457cb868c25e45a41b7ad2f3ec433f00854d40e6 legacy-trunk +12321 28d3a9fcb577dfc8562f1849b4ddc4e4b6189ca5 legacy-trunk +12322 17e4d81949b9f1ec0394c6106a7f92749eb1c422 legacy-trunk +12323 ba63c6f6025b4f235b10a021a7486bf92df9aeda legacy-trunk +12324 4e95065a72a1a6f2d73c98e960f042f52e836085 legacy-trunk +12325 5bdf9165137726eb77beb6e43b3919d2d091d82b legacy-trunk +12326 ce0c17cc77ce50fe83716be7c1e584b26b48b8ad legacy-trunk +12327 ef97b4f6d1875fc6eb500c35138c5213f9f21284 legacy-trunk +12328 80150f9c8c41fce9da2fc13b3f07199090ff3bf7 legacy-trunk +12329 1399bef7af61355d6eebee36a6148740ccb3d930 legacy-trunk +12330 ab55698bff1ca9a8a0b1180ba63992d8c9a92cdb legacy-trunk +12331 1dabc73b7b0bcc82bdcdc6a97a11561a602a5364 legacy-trunk +12332 61cafa97eb77af0669b72b7f7eff2ea2e90da3de legacy-trunk +12333 e5cb157ff0931ff05e36bf3e9bc4ebc4af3c3925 legacy-trunk +12334 82439d9987b2cf67a901c71febc7be5ff6a47f19 legacy-trunk +12335 dd3c7fc0a34d4b9cff48fcc59e641d0a18bbf1a0 legacy-trunk +12336 b0821b0bccf0fd5e44d36ef280e1c0b089565285 legacy-trunk +12337 f74de77f0510ef3aa9e361d0b975b9d6182bba60 legacy-trunk +12338 13d0f628c572290f2c4d8811420546aa687aa16e legacy-trunk +12339 b8fedb226f09c1084bab6ebafcc023602df84e5b legacy-trunk +12340 aab0f3463af06bc05c7b615cf15603a36a73b502 legacy-trunk +12341 ddf3d55220b90d82155cb5249ad7032cbec46194 legacy-trunk +12342 86cb77fb19e88adf8d306d70e92a9eb2b7ee4a96 legacy-trunk +12343 f34bb47aafacacad4317b648ab931d37af76778a legacy-trunk +12344 496700374fc438cb3470f940f738762499ca16e1 legacy-trunk +12345 9a293e77c5546cd7a19f1db0d251aff365ba998b legacy-trunk +12346 d64ce29801cb1709ad06ba8ffd3e0e5c3fc43cdc legacy-trunk +12347 5bac56ffcca8f8014b15c933243be5de555aa2c7 legacy-trunk +12348 e19cd8ec20a2e8fe73c6a60502844fcf82b83e6b legacy-trunk +12349 5e9ef9d8575bbcb57549c7fca05324e7d7650ce8 legacy-trunk +12350 ec80ad25ca861328af506839e9858f1b611ad453 legacy-trunk +12351 6c6ee3bb3fcc22dcdeb047836136622163f6b3f7 legacy-trunk +12352 01477b1a74f9c1c5674198db9ddd5488293e8801 legacy-trunk +12353 b530bc62e3b991b813d40fcb7dfa3119b209d4c3 legacy-trunk +12354 e6cd683a22f8189817b074019e363c3fa14d7cd4 legacy-trunk +12355 30c1c40cd80fd369fc53ff830b742c22637e8db5 legacy-trunk +12356 1e8ff8a8792ef7c98cc2717b46f3f99f5eba83cc legacy-trunk +12357 cdb772aabba25d503bfe98574047a85c8aa0cba9 legacy-trunk +12359 605eaf8cc6d0eceda2176826cf08444c370fc62c legacy-trunk +12360 a1585f69255da00d0e1e459b6dafa7018f483553 legacy-trunk +12361 51e868ef3b31e5a198dbf2f4bc0f5f95422398d2 legacy-trunk +12362 b93c390fd25d5f14dfeb754639f98133fe77f7fe legacy-trunk +12363 a7d1cf95dadc59e64947918ba29a44cea8efd7b5 legacy-trunk +12364 8a6536c1a0a46268061235a1f440367caec7cb9a legacy-trunk +12365 60f42586866eaf2535f5b24c10290c85a852b54e legacy-trunk +12366 0aaea48902e43b276073482118d5919f81a41a79 legacy-trunk +12367 f77b941a0f936de3bd01ff737133365a7c7dfcd2 legacy-trunk +12369 c95fff8f180a8d7cc86e1cfdee9ce3e08933db82 legacy-trunk +12370 a58f36352c4f3fedcc314c72f0bb3b7209d462aa legacy-trunk +12371 33c4ba777a3a7d1ca2224335250849e2ef701404 legacy-trunk +12372 ee36e1f130ccbb79f7eb93ef7ea52e493356a164 legacy-trunk +12373 e3a79f93d1d3e58d91429e9b18ad907f9edf7a54 legacy-trunk +12374 f352eea683734935c6a7d46712556fb152d4f0ac legacy-trunk +12375 9da424935f78673868718eb2674c2f7dd1da48ff legacy-trunk +12376 2ab189585d238658c93d633d4dc7d6ee2f7c3bb1 legacy-trunk +12377 7786297847aca0a60c3a88b62c7a423ab5a1a03d legacy-trunk +12378 f78fd9b67284adc4caef4e0548d31f787a8091a5 legacy-trunk +12379 1ac3485f9e3e3676b2fe8cd876531fded88398fe legacy-trunk +12380 e14feee4c456bc86e3e29ba48f6110d0180dcdd1 legacy-trunk +12381 b0edc892fc782e90b37c89376b53f0d3f303a47b legacy-trunk +12382 65937ff718defc5dae29c762d7a2296fccd39286 legacy-trunk +12383 de41e8d8211dd35db6bfa239104c7c9ad75dd887 legacy-trunk +12384 3589c0e56ef251661d325027ce6088e7a8ba6b89 legacy-trunk +12385 7195ec296b3d9440342fb8a788814dbe10be21d0 legacy-trunk +12386 14dcbb34b9dd3ae31f3740b515dfcea3dfec3bc9 legacy-trunk +12387 030ee50bd8d1b48580886432c5aa2558d370ece3 legacy-trunk +12388 fae6d24b897bce64abd9679866ceb440b323d626 legacy-trunk +12389 ae908ef91cf0cc5698f1a8aa173de83e06f3f409 legacy-trunk +12390 ddb83b25226eb703bf0000cc2b3294c0ead4a002 legacy-trunk +12391 9f13d7380bf898332194bef222ea7c4293bb32a1 legacy-trunk +12392 291c2d0a9683c4c8e4b897a193eb7cedd7225710 legacy-trunk +12393 5bd6dcf16d41abfab0297b1cd13e05c82bade3a4 legacy-trunk +12394 b3fb8410f6ae9925b9b72f3c06becd3e00e0ce4c legacy-trunk +12395 7e2e53e748c8585bbea9adf3557c134ca284b84e legacy-trunk +12396 4d86b5a5bf9e24a89213b30cfd93c93207228f09 legacy-trunk +12397 a2d337b2e21ba4bf4de413756119638baee47f2e legacy-trunk +12398 f88d14aded77040afdeebceefd29edfcd53eb534 legacy-trunk +12399 7bdef4bedd5ce62881215aacac6302ba90095b9f legacy-trunk +12400 92ae115573af29bef046f66910cede54f1852b25 legacy-trunk +12401 5ad1a35f540c6590be22e9008a911065113813a9 legacy-trunk +12402 bac965552f7e6c4df94e3621481dda2b49d3a6e5 legacy-trunk +12403 695113c650bb5962ba247ee3b1fa34023793b246 legacy-trunk +12404 7aa51532006a9e338cd1699ed6fbda9895d5ba25 legacy-trunk +12405 1c4697080d0719ad0ed4d4f847df5b6be527cf18 legacy-trunk +12406 d95afe87db4dcab4240c23de4c2876f3301ec393 legacy-trunk +12407 6cf01eab05a32aabc09ed23cf119f982b2d56af5 legacy-trunk +12408 78059cf067defba0eee0a5bbe1092c62046aa45b legacy-trunk +12409 11414f023ad0a1333124b6c595bbb1aa9b320371 legacy-trunk +12410 a8a071996a73d97fb308aa47b81c0d945922c9f3 legacy-trunk +12411 37c3affb05ba23ef689007dd9e69990e0b90c89a legacy-trunk +12412 18c06d39ce2c2a87c15cd9520997dc6e44f82c2c legacy-trunk +12413 20d98ca3d32fabac0fcf3b3b4f8a677a125ff029 legacy-trunk +12414 90344c261f2450f57fb0f0ae02fb020e0d8dc271 legacy-trunk +12415 b74f55e7d208f707540f42365bfb5fda8f22cb3b legacy-trunk +12416 9e2555edc94f4887e0365ac0c1272580acfb6319 legacy-trunk +12417 248616d3ed12cdc9e1c5bfecf38e2f72d96f85c4 legacy-trunk +12418 9a7e78e8bdfa2922371645119a8b302688729d80 legacy-trunk +12419 286854771b11911f8a852713bd08387c1347c0c6 legacy-trunk +12420 37aa84d278c559984f3bf65210ba69f2cc95f68c legacy-trunk +12421 a78100370515cd13fabe4c356e4f0f89a17ffdc2 legacy-trunk +12422 631248c9c62e1621ff95d436289cb46c87de5ed9 legacy-trunk +12423 1a799d1d4b5a6e19c38ed15ddfd38813fee61290 legacy-trunk +12424 6c1077284001d611d90554601d2663638f2a2cd9 legacy-trunk +12425 76bdad23fcdb8a75eeb26fd22ca867c5e294591b legacy-trunk +12426 5b177d51ba275813a91232cfbf2bf8a1b2199db0 legacy-trunk +12427 a58d8e44ce32fd46740505db7bb28b4c99d0aa0e legacy-trunk +12428 0455402677a8adf1c7843116fa979fda71448500 legacy-trunk +12429 35f568480764affb396da5065a699ac9f0207271 legacy-trunk +12430 4bdfe5d80a6f5b923b5dbfae8572897d198adf5b legacy-trunk +12431 5f4d32b1a6583ffbf3cdf19829f37bd09fbf2caa legacy-trunk +12432 f867e13da574ce7bdea0424aadf64a7238d87cc1 legacy-trunk +12433 00fc18ac6aeb8e7f3247614ad6beab21ca9da892 legacy-trunk +12434 1de3dbb26c2fa2eaae2f371dfe1197126ccceb56 legacy-trunk +12435 189f1ec5c68f3dd67e2da48b268e36f6fceaa7be legacy-trunk +12436 15e9761e54de1d57ac48659553925dbaba93cd35 legacy-trunk +12437 ad749fb0bd4bd45ba948971a254a0367a4c5cd23 legacy-trunk +12438 a64a615bb756330f7b9d5a3bf0b045f771899e11 legacy-trunk +12439 c592c1771dfb5e63fe7e9f4a9da250b574b10d06 legacy-trunk +12440 337843c6a18369d5750beb509060c4e3701359d8 legacy-trunk +12441 faf351e31571d88ae769009f9f70a1a9f65e3d7d legacy-trunk +12442 93b9eafe1f1de82a1a2071f8890dd5a82269f5b5 legacy-trunk +12443 06c7fff5274a7bfd3c9c66c89120123316628241 legacy-trunk +12444 626327a78a8ee36a9a4eb358fd480647e5707f68 legacy-trunk +12445 4da1faf297ab8fa3746461ae555306294efbe8c5 legacy-trunk +12446 396a38ea9b84faceb26ad537d60676b6d71d1f19 legacy-trunk +12447 c39c4bc45d391e2df1db8a1cf519dd39dfecc3e5 legacy-trunk +12448 c87662ef3f1db58a2343ca43965c9d08ae0bae17 legacy-trunk +12449 7c996f3404720a2370c2383c5ab4e7e3f35813ef legacy-trunk +12450 7539859e985a14a4ac7a44b0cc717fee27cb59d8 legacy-trunk +12451 98e37347378b006ce6fcc49208e224acc8c3c311 legacy-trunk +12452 ae83f61d3cd7e7199fd51a344b5da198eae1f0e0 legacy-trunk +12453 40463d514f3ea4ba48a2c268455301e1a0eeebd4 legacy-trunk +12454 e5d0df824bf382748c1e0dbc4fc36a058665d19d legacy-trunk +12455 ca27452711116401c0215280ae4cd9c09797717b legacy-trunk +12456 c404a6b0cdb1e27a57a00c0e34e6f51d1c15da04 legacy-trunk +12457 9a842b81d9c3e94de71a41fdeda151e05cafe3bb legacy-trunk +12458 716dc1d1dbff8901c259101a88af0bb92eaacb4d legacy-trunk +12459 57bcc6ec638f6eb9ced912228b59142eb99ff656 legacy-trunk +12460 2750e1de6829ad179be247f1cb09ac1783ceb141 legacy-trunk +12461 572e131ae3690fb5d20479041b8dce84c6882889 legacy-trunk +12462 92a25d51ff26ce2515d40e1f8edef9bdf7c92c10 legacy-trunk +12463 879e3491b661b8e5a5beba8623a7e56919de426a legacy-trunk +12464 894960fa90bc7559b7a5e7932eaf358aef4fe483 legacy-trunk +12465 0d2791c7206dafbac9ae8ad9c5687ec1fa3987ce legacy-trunk +12466 d44cb87e500dbbc7a1895b1308ca2dba6cefcdbb legacy-trunk +12467 c1091e82e5aab06dd4d25472a19b558727faf3c4 legacy-trunk +12468 07d333485a5e08b24f70749d323c5acaca454671 legacy-trunk +12469 44146c06e7ed3c787eb011ce47827abc012885ed legacy-trunk +12470 485502c42d89a5d68e4ffa90b0bc5788ea3ef2cc legacy-trunk +12471 ee84f445e6d7a1cf8f8e69c588edab9e0165cfc3 legacy-trunk +12472 8efa37a770c647b6585e6fda33590154c2f7cff3 legacy-trunk +12473 0390af6acf7fa9895cdbfd84641aab6caf0680fa legacy-trunk +12474 19fdaf367d45b6dd241f11d9eda111ce96a67cc1 legacy-trunk +12475 4ec3b3cb07c8a1ea0252d71556e1bfbe7c2ee361 legacy-trunk +12476 62fa03a333aafedce72c8ee9e37b9c0f6a233e51 legacy-trunk +12477 f1a520d2631a8ecdbd2c249ec307f1d16caef106 legacy-trunk +12478 4e2eff968cf5c671d12a5cfe45dc9cc81436ccad legacy-trunk +12479 f8fc91b017a14315afbde5cf1464369340fc0e38 legacy-trunk +12480 f6b2f20da58167dc866616e6b72302813d13ae79 legacy-trunk +12481 489ef7f640410b2ce7f3e98f8c9ec6500ad293e8 legacy-trunk +12482 dcbe72a0b3926b942e6aca8a2a5cd2aa27d28884 legacy-trunk +12483 759121e3d9b6d67295d88c17daa09c1de7528deb legacy-trunk +12484 adfacbcbd9361c929e2dfe446359265cba913d73 legacy-trunk +12485 c866f166331bb6655f7f74a76b3bfdd41a9981b3 legacy-trunk +12486 4af38a45d29c8c920a86bde9bd61f031e35f8d6c legacy-trunk +12487 a6cb88b5816523f39361521b2fffc9a46e9a8ce8 legacy-trunk +12488 d4b8ddd9a4fd0fd7f20422a67ec3d1cb8e3ad427 legacy-trunk +12489 b7bcc2cda1b3b26182f28aed9005b113783f7764 legacy-trunk +12490 cfbcab8150da91743047ba2aea6a7a5713be252d legacy-trunk +12491 78ff203ead2454d4f0f66dcb4c6fead2577d46c4 legacy-trunk +12492 124ef694c28443e4206f14889c4ad21ff6395f77 legacy-trunk +12493 ddbbed8cb830ee49dac87c52ea9f716a09af1243 legacy-trunk +12494 009c9ba9f658b259c7dccde40d86d6ab1286d982 legacy-trunk +12495 16bd0fde09aecb72367f55ce7e68d52106428ae7 legacy-trunk +12496 a78d3056ab6104b3502f2d359d4cc23944d50acc legacy-trunk +12497 bdde8fbaea58c7dce2f6eb6a57df73adb5aa78bb legacy-trunk +12498 eed0cacf4c64d8ff1eca37f15f35ee7f3c2442f2 legacy-trunk +12499 8c6e705b6b971d42126ba3006182062813f5ef77 legacy-trunk +12500 a1bcf3f29f66df5d4633286841bc594fa75c6a28 legacy-trunk +12501 c0daffe40034689fcd222f8e2c7a5442a91725bf legacy-trunk +12502 441500019d50acc25c5feb4d1516fdef47830ded legacy-trunk +12503 2b238d19ae88a7cbb373c6505754c0fd1a20e731 legacy-trunk +12504 4ab5e9f839d9746d9f2ff9530851fc7aee91b6df legacy-trunk +12505 0a56e5082680b9f25410c169c3ba707a5efa5691 legacy-trunk +12506 3a420717bc8a42e957501f05000b3b1929f7ffa3 legacy-trunk +12507 77a94531529ec212a74e8ba87452e6795f55eb7b legacy-trunk +12508 fe0b522e46cb3c86133493b42d365dc92860e92c legacy-trunk +12509 ef5cf1a4e52a9c48540c9fd39c392ed77536d0b2 legacy-trunk +12510 55f8c701c9dad11a541c70b00361071d4d94b5aa legacy-trunk +12511 ab6dd70f25076f68924a899cd0ff748b9239c0a1 legacy-trunk +12512 4671ae1035b38959909837abc6d8e369459f472d legacy-trunk +12513 42b228d78bead12d33e7d030c4b3686379e8c212 legacy-trunk +12514 4a25dd85df622a5c860db9873d786546765c30ab legacy-trunk +12515 98fa535b9af1ef60af1fe8e79a0dc88ca304f0ce legacy-trunk +12516 637eb961c11bf526b8c3402ee79735b91c52e138 legacy-trunk +12517 2a0cf967719398334cfdee2ee667803c64c4b656 legacy-trunk +12518 c6913c7326f096c023042f155035033d803b666d legacy-trunk +12519 f2457d697a2a28e13e939b965efd204799e4756f legacy-trunk +12520 d7979f4ed2b6163565eeb2847734bf2473ee2e6d legacy-trunk +12521 8327668cfd1714d12ddfd8996115d92081053c35 legacy-trunk +12522 94125a1343d818dddba0286d8cf7876506b413f4 legacy-trunk +12523 2183f506a08e1c8be66b5ef6c0993f6d423219e9 legacy-trunk +12524 28194f51f7fe54c41cf7bd077529fc5203d5f021 legacy-trunk +12525 89dcea63c46bea02b5c3580247d33f4a95c5faae legacy-trunk +12526 caf2c65a6bcf25f9650c35301ce8e060294be138 legacy-trunk +12527 f572ae36d5bac9b456a39d7ada7ebcdb056e6897 legacy-trunk +12528 620685e4c477e207a9e187947f562e33147cbc07 legacy-trunk +12529 080bd46f3848799cdf5010e97d824b246b2c019e legacy-trunk +12530 167adf31786d73462a7cc6fae7b46c65f0e6780e legacy-trunk +12531 034b42ba68a6993a8a1f3ae4f157675f00adb9a3 legacy-trunk +12532 74d0d2f3cb1dba8fc1a8160ca7805e29c6b393b9 legacy-trunk +12533 de568ea0d040eb630dedc592e65687a685a5306b legacy-trunk +12534 20e8a3344a0ff60cd8c4c6d1355fe9ca7978562a legacy-trunk +12535 1051ef99431e5fedcae1c04e79e915ea97303983 legacy-trunk +12536 c9b070074c85d3bcf2b3110d2ec459bb3172c805 legacy-trunk +12537 b72a8c48f2d0043f3ff05805837ba2065870ec3f legacy-trunk +12538 f5df22fdada8859b801d60af5ade98e021675efc legacy-trunk +12539 f132ecfdb2855777f6042cd51a5ad47ad755fe3f legacy-trunk +12540 ba03e68df0fd4f090dd706e1d863844b28ad5db0 legacy-trunk +12541 6dff7696e358112e2a508def15e52a37b4ca5e62 legacy-trunk +12542 3ad2b2e31f5308ea3fb223d4b5e363e6a343b126 legacy-trunk +12543 32652f6996e3743e18c6db64f84abd9b7d9ebb2e legacy-trunk +12544 f2c072b0546654d6214a03b48548d508b026fc72 legacy-trunk +12545 0dc50d43fb84634dd978ed3b9e8710e7d2f10592 legacy-trunk +12546 8cf66b1d4155ecd1e90c39191f3be9b4954eacf1 legacy-trunk +12547 ee9a8fe0cfca5f110d78b89ff483686510ed3a6e legacy-trunk +12548 c0739f641bd1d581a229222025e4e9befc7afb7b legacy-trunk +12549 a0b06891d2860066cec97f446b856385d216480b legacy-trunk +12550 7b88c12b8701cde66315344d5266fe800d197ee5 legacy-trunk +12551 dce104e1a73bbdccae64aaee815cb015169611ee legacy-trunk +12552 66858fdf467eba1c52d60323f712da498e88775b legacy-trunk +12553 f07203cc2740a9197127898f50cbcd7f5662ec02 legacy-trunk +12554 794a21a5ad35e191ac96a121ffb44d2298754b41 legacy-trunk +12555 f33ed9e2a607fa4c9cd582a59630f7a8dbe5a0a5 legacy-trunk +12556 27cc7a314502660a7723a50b9170985ce29d8e36 legacy-trunk +12557 80e0aab1705ebd54202ac1340348989d84df6029 legacy-trunk +12558 b82a61a884cf287607a7e72ce46ccddf8ec0ebd1 legacy-trunk +12559 075f871d80b55eeaa549397dfd9fe18e1b3f8718 legacy-trunk +12560 ee6256081366d2815c8ae1b363348a1353c52b22 legacy-trunk +12561 c88aa9593a08ed11030d6f627e28e799850da031 legacy-trunk +12562 015cb6231f3f8e66eca1df0946fd8a65af5fd76e legacy-trunk +12563 ddda5854e3ead5220d6fa0b8f5678d2a08234fc4 legacy-trunk +12564 d5e64a61632003c6c6a7df6ce82fe377c67fd82d legacy-trunk +12565 8ffe450428b1b3390105c0cc978bc08bb9ae4935 legacy-trunk +12566 d9b7a2080971ba309eb0de7fdc549ec3da556a2a legacy-trunk +12567 6abd84aab08a8e5291a02b28b02398b14ecfac19 legacy-trunk +12568 d7f434d784bf9e6892cdfe5c6bce9bafd353c2b0 legacy-trunk +12569 7102289042d5e8e4490c4a26635fce63982e8a35 legacy-trunk +12570 6d6f427ab6ecb18363bf62cda845b1ad014a2369 legacy-trunk +12571 5e01645ee41b8c20cd6f001359adf62c46f6f43b legacy-trunk +12572 137179186927a040c0ea82aa73fb3e3196a840a7 legacy-trunk +12573 67ed05cf171d08f535a0aaa3bc0e930874318baf legacy-trunk +12574 ecebcd84df37b2aef0e225075ef9079a1b23a922 legacy-trunk +12575 1e21e22453dc3c4c858d2588d59837701d189cfd legacy-trunk +12576 d4e9632503dfda3304becafb2535a5ec480912d9 legacy-trunk +12577 d6ba8e5e55ad4c89a48764e7facb42a16148a84f legacy-trunk +12578 cbf5503b32d559b63b3c119ca95149476fdd0420 legacy-trunk +12579 80b215249b17d51b2650f9ba0e88f75934bb1ff9 legacy-trunk +12580 c3d506794967df841cc21b989f3cc6a923b697f5 legacy-trunk +12581 bc3602a83ad3295b2d63f8a8b7cb3a2e1fd5f8a7 legacy-trunk +12582 6f42c8fe875b7de2258475f2465bdcf1b68070ab legacy-trunk +12583 48af2c6b741e9c80cd30caa64b7951610738b426 legacy-trunk +12584 b5454dc22dcb811f3f2127ccc07ea5a2b32fc95a legacy-trunk +12585 4894dcea126b4079dc60e2079ad5d6526284c562 legacy-trunk +12586 5823b615c301e3bb69ff9917f4080b60409aa313 legacy-trunk +12587 d3e44e610ea14b227d00f2551ef7f88b679225c6 legacy-trunk +12588 c7144e7e849420504f423f71d29d9af1109acfa5 legacy-trunk +12589 9efa42445ec9afeee32b9b01cccbf3a12ca2b2c3 legacy-trunk +12590 f5a55d3276083ebc501a4c97b90454b2595ce69a legacy-trunk +12591 2a9ef1e0f541d9de18153df82148f81eca9b4315 legacy-trunk +12592 aa0336527c4e9563394db04a20a8fd42d461e7bf legacy-trunk +12593 96586db379fba9d984c636864b40f7b44a98987f legacy-trunk +12594 574075e9a25f4db7b5461957f5a3d7c6fa609fbe legacy-trunk +12595 d8c4378eb87dabe94833752055bb0167bb1aef1a legacy-trunk +12596 1d28c7e1663657315d8ba1e12b3dd81f23fea174 legacy-trunk +12597 7ead4a04427e88402c7556e3bf4e9e261a5e523a legacy-trunk +12598 3ae03b9b65edc2a09d8fb4ddcbdd8046558a9163 legacy-trunk +12599 f5f1b5e9814a48ea2eccb1c141975cbd04bbba3f legacy-trunk +12600 3f7dc3de06170d498c16cb001b50756aeb612a45 legacy-trunk +12601 9a3a46928dbfeb8fb2c39efcab2c2992bfe38983 legacy-trunk +12602 9184862bd8d1e92dc23f7a6f0af6739bde20f734 legacy-trunk +12603 6b28b5f197cfb0482d04e30815aca441f5b065ce legacy-trunk +12604 c7dfd619350bc7f4a9c3789bc64a707f0b8aefd4 legacy-trunk +12605 eff08bd8165d82aff2d733976544105ba4988a31 legacy-trunk +12606 58e7cc5a3841300ca5ab126a0f4d4fff48483311 legacy-trunk +12607 e6bba02ff624684bb076cf71d6f8a54e8918d6aa legacy-trunk +12608 16aa73588d93b68f50203d21a8ad96875b07fd41 legacy-trunk +12609 697e0c9d0940ec953c0348e8bd9ae8a099339cba legacy-trunk +12610 52d57cc03f429e82e47ea25b77c08f8ea21e765f legacy-trunk +12611 3d587e653f2d658d98e11617848c09091e7caf9a legacy-trunk +12612 31c112594ab637ae8b4c2f9abbfad0fc6c9b8675 legacy-trunk +12613 3f938587f2a3f02a09ee70cde03a6da5757d5335 legacy-trunk +12614 abf4930647e2822b780f7d4c0658294f7c14e869 legacy-trunk +12615 e9f5985b6ea464f81cad3b2493a15decf4306a55 legacy-trunk +12616 508a639d8feb35af623d5353b33eaf640755d558 legacy-trunk +12617 a99885af39f88c4ee8e511332e92c087f3773b2c legacy-trunk +12618 49e7e21849b3cc51fdb65c5a41e8162b5793a365 legacy-trunk +12619 3145def583e2ca14e399a9c724f406bb1ed9d099 legacy-trunk +12620 a9fc7398ce7bbf7f667fdff2f03214ed8a2e195e legacy-trunk +12621 a63c9c3e9ecc01d4f7536be22c3659ad9eb97874 legacy-trunk +12622 5b15642e7bdf4a28d77778e84991bfc1fe9fdf68 legacy-trunk +12623 b7d8125c2417d87dc3cb04cbd8bc73c5ca702aa8 legacy-trunk +12624 cbb3b2c555d7a70a1696412c87910ba165d6c85c legacy-trunk +12625 bc287c6cfa230f0566e04f673d4bb10c27bec550 legacy-trunk +12626 fb966562db0e61e611eca266813e07a6cb7ca460 legacy-trunk +12627 64728a51cb551e86b43ce614018bf30383f7d89c legacy-trunk +12628 89f6556f059eb683c0f34d227a67df014ff80537 legacy-trunk +12629 bafcd7b623275c753e2d5f955126956caa2b241e legacy-trunk +12630 0dd4fafefd6c48a4c386c828d6edb66944c57e97 legacy-trunk +12631 8b55c515683d927cac30b0bfc94a01593f0e6423 legacy-trunk +12632 e569f9b0d969a11b6ec7d19e2f1e6f6534cae15f legacy-trunk +12633 1ac2a8bb7dc10864c09a970a5330b13d3ecd4276 legacy-trunk +12634 64e64ef08d1c91156ab07635f36627018dd4adab legacy-trunk +12635 5718e83020ae95e53bbbd511b3a76dceaaf9ba93 legacy-trunk +12636 139d5f1a6f899d7cb3f09d7a5fd75a68d479b5d1 legacy-trunk +12637 0c07c0dbe3282c04b9d075e551dc4ad7eaf15e7a legacy-trunk +12638 65731698c6edf4a76af6e146eb294c83ed782554 legacy-trunk +12639 49cf1412445f320960c03f1a40457fcdb17a9ae0 legacy-trunk +12640 b21915e6589e04f98fc137aba1cd5126c3694991 legacy-trunk +12641 bc0347643ecfc6cab95b83515460711490060ace legacy-trunk +12642 9232361294bb69245fe1c5cf883633144f618765 legacy-trunk +12643 09902e130537344e3ceb21c1624612723632c349 legacy-trunk +12644 5bdb72b1957e16e7ab8873dc0204824fe3bb5815 legacy-trunk +12645 3c698b53be592116fb30d28766407046b8085ab2 legacy-trunk +12646 abd3f066c87ac539f54bc2f90421d6ba62da98ff legacy-trunk +12647 8284927025be6fd2b4ad79c532a56995dd59bd2e legacy-trunk +12648 bd49f91d59b2d31a428945c8437e16f59d46cf67 legacy-trunk +12649 3ac7f0066375fc861f349b1d0111e2df04264d81 legacy-trunk +12650 e40bcf6bc1c8ba3606f418d03e267842d3713933 legacy-trunk +12651 959e81b39b81122f6730a868fb25ea256ce45c2d legacy-trunk +12652 9a6c3dc1dcd3f0e14ecea684347f8271bf4a8078 legacy-trunk +12653 1d3fe7c88cc8c433d8e52aa58c2d432b05f266d5 legacy-trunk +12654 62dc9ff9cd4c392ccded1759fb09b4a891292b20 legacy-trunk +12655 9aa4390be38b7c0ac28ae1e43cba3263d31d349c legacy-trunk +12656 d37f03124c54f823f4b2caf94ec5ea6324653951 legacy-trunk +12657 8464e31376ed9bf1a30b87300d2b8aae72ff49d2 legacy-trunk +12658 0f7d694bc334eff0f1cc00103115d4a2c59342b6 legacy-trunk +12659 13239b48c469c1a8291c05f91c73b227cf5b67c3 legacy-trunk +12660 625b7cebfde2b2d9d03f893229cb49041e907d73 legacy-trunk +12661 3b7b6d5f193167dc984dab0bc3a27ddf3592cf14 legacy-trunk +12662 3ba025ba7f09504b718e9a0d90abb1e4d07abac4 legacy-trunk +12663 5c1ebf23f1d77b43de4173a5b39ec107ffb0a29c legacy-trunk +12664 564f0363291625dccc4b356d7db5ab268b7352fb legacy-trunk +12665 ddf861d84bbb92284b344e39dddc8cbc203a6a49 legacy-trunk +12666 154c6408c3c2ddcd6cc4f414813b68dd2f1e8003 legacy-trunk +12667 9c9cf4572a977ef6f7bdf59a798c4c186e0e5aca legacy-trunk +12668 3f13ee592a40f83e2912e01dea7eed18f1b3f41d legacy-trunk +12669 bd8c43daef85e2041ad99a1c2914b7b7def6a77d legacy-trunk +12670 762cfe96faf9d71edb7aac7ba0d3f9cf7ab11b7a legacy-trunk +12671 ba25b2d3d784d7d7e563c57c07d1e40f4f89d19e legacy-trunk +12672 7cf97658cae7e36f396354306758a9604e721294 legacy-trunk +12673 73e5e3f51b874fc9739b02ac2637a03b7556103e legacy-trunk +12674 96550b5d09e14c2d68f5bb70157753a512204734 legacy-trunk +12675 6a1cb6f37a52c5b70c43ecbe5bc303acef778e3b legacy-trunk +12676 744db86e0311afdf66364d01389466b613c690cf legacy-trunk +12677 49d776f3878d8dd50457ac657155dd3156f07423 legacy-trunk +12678 a79dcd27bdc3a6b5f9fa908336410d94d1f52a6e legacy-trunk +12679 35f91caeaa8da375473f84667aac39853140b062 legacy-trunk +12680 f0a57ccf233cb356d97e35122928860251abcc56 legacy-trunk +12681 04b88042a92b8fc2dc85b0aeedbdda8634a14116 legacy-trunk +12682 005ba412a8ecb52a4069502c6ab9dce32c6b59b5 legacy-trunk +12683 b8932ab41add4f201cf93b0be7f7d90670bdf59e legacy-trunk +12684 5539aebf8938a86459d1ce65d18113d55c02c64b legacy-trunk +12685 6dbcd5a6e5e618b751b1bad35d3df6a368b527d1 legacy-trunk +12686 d86400500aa03731535ae37af8eb9517cfad9f4c legacy-trunk +12687 b26e25158922ef7d232e7c0c1ad35fc4a29e232e legacy-trunk +12688 62e61058480a39932fd24ba7c3db08f8aa677c07 legacy-trunk +12689 ee1d32f7a055f0b8d1b5787863ce4022397b9af1 legacy-trunk +12690 6633c3fca6263f36ea610bda7415a57f37925629 legacy-trunk +12691 bd30d39797a409ebd3bdaa60ab0e2e58de3c45fe legacy-trunk +12692 8f4ad14c34073cc8ec1475cd305f1fb81b184b18 legacy-trunk +12693 b0f04b7c94071e72d8a961cd325168c04155d19a legacy-trunk +12694 4af84cdcfdb53d209b46ac3437c33415ba733cfc legacy-trunk +12695 67f1d6bd58cfba10933ed5485df69cb310bf9319 legacy-trunk +12696 1d94248fe2b99a299e402c464ba625a2835945f2 legacy-trunk +12697 a36986569af18d6841d961665fd7bc829414557c legacy-trunk +12698 1e0dd2ef3971c2acb0d0757e14ae8e45acd5ce47 legacy-trunk +12699 de7c0003578f8aa6e29fad70a78afafa22931830 legacy-trunk +12700 b5f07a4a654bf071c15ccb83694f51f4c3fd62ad legacy-trunk +12701 27902555f6721dd3a0211be2f46ca3bd85a60836 legacy-trunk +12702 049c91343f9588af50419def5376fe5968a88b98 legacy-trunk +12703 c0f69cbe805d17e6a943eda41dd3bc2e53a70b8e legacy-trunk +12704 e1da290acc5f10edd039a7c9be583d03fade5a7d legacy-trunk +12705 dfdff87248875df56a41a3dc2fdfc46b22001f61 legacy-trunk +12706 bf41840c8150722aa0b8b8ab69ccf2bb3c6c1950 legacy-trunk +12707 1c59a99e9970f069534495924ab4fe387f168a3e legacy-trunk +12708 02b172a5d893d7a711ca8630a502ccdf89adac27 legacy-trunk +12709 29d1d3b08ca7d4f596e314ab819d5d68aae67960 legacy-trunk +12710 a86fe1f3cf4e65b37526c9a8aef9bd94e8881eee legacy-trunk +12711 d282274fbb722fd855c791f71214f723619debbc legacy-trunk +12712 b1d40fb10af6cbd9de585af68152740c5a908a1d legacy-trunk +12713 32b43e5d88d3581da6021199685ac35d0de49a7f legacy-trunk +12714 e3397ae8812921e856342469caa21f52a0e282f8 legacy-trunk +12715 02e133eabac696df6a7bba0188c24dc46326af9c legacy-trunk +12716 1fbc4bae28cf0587174b1d77d6d90bd61978026e legacy-trunk +12717 d1686cf08d116c717e5f3683be6bc2fb98bd42e8 legacy-trunk +12718 61edd3b85d6369d2cac747ddb29f14737db703c4 legacy-trunk +12719 cd476442ef715b624e6991d14c93d5ed53009fbc legacy-trunk +12720 477e98109c7d66151880fb2cc335b8719c435dd2 legacy-trunk +12721 a29192f2d47afcf6433085779a39698aec6bfe46 legacy-trunk +12722 0ef1071cb7feed9173577bef9596c09cb9b23002 legacy-trunk +12723 feb415008765e43ee69124259ed8d93a6304dc04 legacy-trunk +12724 b30077c57348542bd61e6d81f61dee4fc24b9772 legacy-trunk +12725 553ed6ae9e7a85fa4f886e2cecdd9f5a7999163b legacy-trunk +12726 df4a967a81462ebd2fc1fdb8a650194c40d5a98d legacy-trunk +12727 7bbe71631c3f02883be36e61a885cd012ebe8d51 legacy-trunk +12728 cd130c9558db38b6ee609c084dbf8d837b0ed447 legacy-trunk +12729 ae61352975742fb90639023caacf9b2dd1880635 legacy-trunk +12729 8fe7ec4b4fc1518fcac89e6bf674fbbce16150a9 legacy-trunk +12731 ce57eb30968a5b892c8d177ca08e51f8a7ffebc5 legacy-trunk +12732 0e147a5174a15219e15db6ec3750f6b018986db2 legacy-trunk +12733 a65f87584354ae66a224f06e705e32cc2db31957 legacy-trunk +12734 8cccfc6d62723674ab3fc48f363fda8fafe6421c legacy-trunk +12735 249d9a2b5bc968df4929a1ff85fd5f336aeb66e4 legacy-trunk +12736 92fce414f382308d4c6d412f50eafa276212114f legacy-trunk +12737 5744a6db2d4f84195506250565fb7ed7c75d54e6 legacy-trunk +12738 c5e8347eb809c28c552123c54e54633911421a7e legacy-trunk +12739 f1ccbd6a94ce333d2c4f13f476841cb8e166cce8 legacy-trunk +12740 86642b7a7a60f5848805c564812bc1e99575570e legacy-trunk +12741 c1befdbd64e57229e50c565595685e96970e25af legacy-trunk +12742 359244fa6b52ab0ebbaf9cf03176650e8b0bea60 legacy-trunk +12743 f138ba72bf2d9f2e3e8e180e395c2f7fca72ef7a legacy-trunk +12744 b6b93006d07684006733303fb4f0813ac2876d09 legacy-trunk +12745 575c4ea2542bc0e2f44b63aac0ad12f8b2950fe7 legacy-trunk +12747 32c4204742bafd6d3c6229aca1cc36edb24918cc legacy-trunk +12748 bdbfe0ec970f892d6bb820a530c5c5c9271bc92c legacy-trunk +12749 c5f11c5bf5b220061481ac2aee490f4372c302d9 legacy-trunk +12750 1a2a0a3e9ddb2e122fcfb19f147887c598312036 legacy-trunk +12751 895d861a08701fcdc8bbe2a9b544c71c8f4c0caf legacy-trunk +12752 e59ca5d346f4df2c8446c3c2a0215c3b87150abb legacy-trunk +12753 47c11e8276999f0078c071de2b98383c7702f956 legacy-trunk +12754 d83935d14084567f8ea49d648d83567b0e6dc3f1 legacy-trunk +12755 c27c10c6b9f2827401d8d03aec8141b4f787bbea legacy-trunk +12756 13b45c74e97b530662261b2da37e9ab5d32b59e2 legacy-trunk +12757 8feb2950da7b263238fa2b40fb464d9c4e07cc86 legacy-trunk +12758 0614e7f16741f2a1588e24d4e290c40a0e67b3e9 legacy-trunk +12759 a4913bae9f93e7f4100009825658e627d233bbcd legacy-trunk +12760 0cb8e5ea84a8daac0e95d444697ca96a902a6fe6 legacy-trunk +12761 163fd3d95c17e4048224a1c89211ef871a410d5c legacy-trunk +12762 0a5cdd7e5fc3f850a6bdc19ed2d5c4346e6c88d8 legacy-trunk +12763 26a02060bab17416cf824c75f5dd5aaf9f335541 legacy-trunk +12764 b64f33594a3110698f0ebdc7cc54bc5ccf1c77d0 legacy-trunk +12765 e83f676d15c289ceb6d7c903b55cf0ab421da0f8 legacy-trunk +12766 29701e2904ac5497099fd043d031605fd3f13d12 legacy-trunk +12767 b9bb75ded804aca57be963af2dcdd4856ac92f53 legacy-trunk +12768 48700f99c6a6d31d522d1c74d3a10f3522e33fdf legacy-trunk +12769 2f425a57d9afe71ef44edef9e9103083a8b0a983 legacy-trunk +12770 abac7f62757c83118f5f3fdcb5e8079bd0ec6a89 legacy-trunk +12771 35df4dc2d30d54362d5a29178aac8815fde5bb13 legacy-trunk +12772 0e355dfd6f7d15cc32df2728064f1aa66c423aa3 legacy-trunk +12773 64bca3bcaa374f17650a14222d68d127929427af legacy-trunk +12774 65a253971ecce86653e5030080cbfde55778af9a legacy-trunk +12775 a2a7681b25f1f59bececa585e0fbe1a393e287d8 legacy-trunk +12776 08eadc650ef095c7a5ed6fbae3fe85db9b0394c6 legacy-trunk +12777 19d6121fe4f343c463bd4cc38ad1c4f67205a9ab legacy-trunk +12778 632bd3a5ddef5bdd05c193af55938bb718ac23bb legacy-trunk +12779 ba5c629081225a2a93eec6b799bdcd263782eae8 legacy-trunk +12780 86035ae5306c117af7dfdd295366e53d8b203972 legacy-trunk +12781 46ac11b78e9278056aa96e796dae7fd82eb8c307 legacy-trunk +12782 886ea255f381ff0c6db70e2791222b2eb72188c2 legacy-trunk +12783 cc9fd50630a699cb03c2af0b324f0b74832191ff legacy-trunk +12784 cef2a1345695d18f82130d61d562636cc81d3d6e legacy-trunk +12785 01dafc571a3032851868c1505d7ffbb81c811287 legacy-trunk +12786 d3bece46486e29d7a2c5a62f9fbc1c511f39dd3b legacy-trunk +12787 06da3ba3aade2e47ef72bc8e652a8ba04c2b3e3c legacy-trunk +12788 cd4c4510adbd47e985319df1c070cf1c548c4690 legacy-trunk +12789 3b81a7d418cbee884763026875ce99ebb38784cd legacy-trunk +12790 3e3c09e145031d4039b88c9aefdb77b0c872b610 legacy-trunk +12791 5c0c061de2aeba6f8ed4eced61357ff407dfc1bb legacy-trunk +12792 1e766de714debb0d37182e581681883af601a372 legacy-trunk +12793 5cc7122671aeafa8e31037674d23d2961998e269 legacy-trunk +12794 9be2726c9b254cd8ada6a1e7ea1c165fac0e9e59 legacy-trunk +12795 1c6b10dea9f05f85647e0acadb93016d31305841 legacy-trunk +12796 26db1e96caf39469fe98a78e6c6569f7aabe591b legacy-trunk +12797 b78135b10a8e1e6bf30c954770c885b497adc4d9 legacy-trunk +12798 24def6c25b0a050aee1fbed0e337f7725803db33 legacy-trunk +12799 50036d06e94aa840dff546bb49d5d19a8fb2cb96 legacy-trunk +12800 32411af8c012976036b31a09a06869a40951cc3a legacy-trunk +12801 cc0c906c2415668d3152c3de63654126f26efe22 legacy-trunk +12802 a95c7d2a83f7d0151a041d8581711cb7bd794def legacy-trunk +12803 fd09b3fd1edc4da4f98d377176e1b7744d8052d7 legacy-trunk +12804 5e8989c2f85dfdfaef99725dcceffb6cb72bc699 legacy-trunk +12805 88a7d859900e3a1377e832e043fe992a1621b1c6 legacy-trunk +12806 f1f6364addbdedc1994def01cb591d5afd51f208 legacy-trunk +12807 b648f9e8b3eda29fa125c5a7bbf2f5689375586c legacy-trunk +12808 5dbcddbded00b2d8e800a784b6d1f238bdd43179 legacy-trunk +12809 42c9a8d108344f175827a571c53ff032f6d35f02 legacy-trunk +12810 e7c09a62bf1f1a6226af4c84efb0da23cc54f2a8 legacy-trunk +12811 e3089396139827f723372974d6716a4a2250bfe3 legacy-trunk +12812 db32deb13c9f06e09fc71aece86ea7f7e7fb2941 legacy-trunk +12813 a4d99607344f078b86b46c1fb9b759898d2ae0b5 legacy-trunk +12814 cdae6c1145f4c3b8e720f0cda8fd16dbe5407c0c legacy-trunk +12815 1e57aee505654eeec5a79512c25e75f5968033eb legacy-trunk +12816 fa18b0fc0c181e43e99af6b7e2e071a08a1ae2f8 legacy-trunk +12817 90c752ae44a6b91f94883051be5224ca81c898dd legacy-trunk +12818 44a375e31ae2fe7d80cdcd83338eb9b2d9edd6ba legacy-trunk +12819 446b0967f7d969cf0600f133c99323b8e1e47b05 legacy-trunk +12820 39bd7b8478db35cde82db1a667a5e9df4c1c45a1 legacy-trunk +12821 4dd768ae895e64cc810ee5165dfcd93d6b525147 legacy-trunk +12822 9002f4b47000a3fc7c3184e66a42c2c3f2ae44ea legacy-trunk +12823 e935d8947e3396e8d07a0733596aa7af4952a6e0 legacy-trunk +12824 bd07674c3c8b074ef848a90ede3d9983ce364a4a legacy-trunk +12825 a87cfea30b04d80a3764bdcede3f875252b74237 legacy-trunk +12826 fed66bddce6381eb348db379c249ca6555e22545 legacy-trunk +12827 0d0e2239dfd8c06858b48e3fc1d44cae77941293 legacy-trunk +12828 4a3e639384694111e91d5e25bc2919f7bda88bf0 legacy-trunk +12829 4c4f362fa0a6ad852047e508324302e78694cc94 legacy-trunk +12830 66a7d61cfd84a3dda9d251cb01f2c0ad2ab62ada legacy-trunk +12831 f438c6e2b6c18e57cd924d6644fb929a9933b860 legacy-trunk +12832 207b40ec9a7e3914bfacc2d1a6dfb3fb018a737c legacy-trunk +12833 be05609478bef043955b4334d2e9ec2b9c87c558 legacy-trunk +12834 abd42029fa0101d543fe6115bd706f3f0b2ad9b2 legacy-trunk +12835 fff82d2fb369efd2ec09a6be0f69dd9dc6d8fdca legacy-trunk +12836 b6edec1efe6427851ba190894c0ff882623745cc legacy-trunk +12837 61224459bb09361b11f340b49f3b289e10153f3c legacy-trunk +12838 093fc298afd6b0e02e411a645d1c1eca87bb976c legacy-trunk +12839 ddbf1acb71702dd51934edfbf552b6d358d2cbb5 legacy-trunk +12840 a8dc59b66f4966cac83fca05b9a1199a373c59e7 legacy-trunk +12841 5c70ecdedefc33649a7c55b3e2eff0951e73afd8 legacy-trunk +12842 6ee0eceb775f2d22e901c0caa8f547cf0e8827ad legacy-trunk +12843 65aed529ad8adaf346d16d3d9a77cdee120e6419 legacy-trunk +12844 08d3194a3c3fc8d652832107edd6e643bfe45edd legacy-trunk +12845 8d092a672d09bb18d85f501299017851fa6c7fcb legacy-trunk +12846 b9a80bbbe4a5a685b385c2e1ee013ee9ef77fd14 legacy-trunk +12847 6db35ee90bfac03e5c0fce360a1d0cf8a6a6f953 legacy-trunk +12848 d739e1eb61751c1995a267cd2d766cb0a9d2d7a0 legacy-trunk +12849 4e2d18973b94a0377f25b2a8de6dd4f017e17730 legacy-trunk +12850 1d857b59758237876262235b1687dbfbca9daa45 legacy-trunk +12851 892dba7f40deefeeebe8ba75ec4781d296a57645 legacy-trunk +12852 7a39c873dc8180c974f1e04a3c76ffcc95bbfc3c legacy-trunk +12853 67ff9e7dc8aff4a00e5dae3b5d2a4dc991d95da8 legacy-trunk +12854 a797f0c6c2e1dd139c1495736cc23a3bd9ad9fb1 legacy-trunk +12855 e6d34cc0c79c962c39fe63adefd83766c2f6bf47 legacy-trunk +12856 6b5790ce2536dc6e46127e1e2107ea9580566812 legacy-trunk +12857 50d3099d50c21d3c786e0f9681f52fbc3f31c3d4 legacy-trunk +12858 407022cf1931c158740e9ea3de57ca79d75e22fe legacy-trunk +12859 8923ad7e13f2b0159ede1ab036cca937fadf69b3 legacy-trunk +12860 e98e1ea51f1626d5e6f4d5896e16c3db1322566a legacy-trunk +12861 da0c1330e66ef2cd0fc05930ec95c5b211cf015f legacy-trunk +12862 70a3fb1ce23b41cb8260e092921a932d816d8735 legacy-trunk +12863 ea0bbc3bf1dfa618b4caa19e3007a669f4f04f7b legacy-trunk +12864 50e4dddb828b20712e5949298849599db95ac2cb legacy-trunk +12865 1409e7687a9a03b278dfa4b975b5810d9f2a7f0f legacy-trunk +12866 4daab7a9f566ad42155246926f9587dd4cb44aeb legacy-trunk +12867 d5164c66acc963bbbff202062eafedce90dc5a8a legacy-trunk +12868 25d7d4d7399f10caaaff90831eacef279b110597 legacy-trunk +12869 65e7212df1bcf1cc17a4c96d9a284a8732862ddc legacy-trunk +12870 c5f49d4e29c503983e1258c16bea4ec2dac5b8de legacy-trunk +12871 795d51ad228a240dd466473eb6a28dd13a3eadc2 legacy-trunk +12872 132f94642c74d28724353df3b0ee692ca0cbc838 legacy-trunk +12873 95b9225a52e45bb256dbae15f51141f68228a888 legacy-trunk +12874 96913907ae68d9469c512d3f84906cd8004734da legacy-trunk +12875 fb7fa476211f35d159c2114c14a4b79b629aa9e9 legacy-trunk +12876 07ee795774d89b41beb3bd57fff7d894ec2dea53 legacy-trunk +12877 48141da518dfa7cac29d7a6ea714015425b8b8eb legacy-trunk +12878 417aa425013ad73ea3802f5f036eb3cf99aab332 legacy-trunk +12879 337733ce9593fb1ea05d6976a79a49e026900649 legacy-trunk +12880 4cbb2122c7358f48522a41123f9b1e635e3af2e6 legacy-trunk +12881 d98085de97d1fe88a5ca8d21849868d66008f95b legacy-trunk +12882 9e9695e314c9607036226f9562b6e362e38e5382 legacy-trunk +12883 69898acb23f281bd69ca2ef74df95c48deb43869 legacy-trunk +12884 fb51aa824df2d47217d467f1c4b4a3291e4ab5b1 legacy-trunk +12885 e2a08a81e56f4ee285695e21a9883348706aabe5 legacy-trunk +12886 70dd91c215134fae4edfce1856e747e7d1bd9229 legacy-trunk +12887 d3dc62004776df02f43070d9e5fe11c882e68ada legacy-trunk +12888 e93352286aac6d19e83d5607df50f1d8611922a5 legacy-trunk +12889 c589021c47c9337eef4725021666777e2f5fa90f legacy-trunk +12890 9c5d9bdf7e423419bdfbbdc98497305b04d5823e legacy-trunk +12891 f4e605bd8f1b76b662f76e0039e13df7fa98a47f legacy-trunk +12892 0173a5f47206dbe41fa293fb86aac45dc32a2ff5 legacy-trunk +12893 fb81659489a166564a1ebac8a8d4bbf1c18d80a6 legacy-trunk +12894 7b810aa35b5ce86db18002ad8509a1e17b820e44 legacy-trunk +12895 f54bac5af98ca0147d85dafc417c7861084280b2 legacy-trunk +12896 749e1b3d8173a3093c370b9212ee100d5cc153ca legacy-trunk +12897 52206532d3891a0933a2ac9f9d33460d8687256c legacy-trunk +12898 f343329500be79b127d63682d967667e26baa297 legacy-trunk +12899 c066fd8433ba84ec053d3eba4b7c07b85fdbd2f7 legacy-trunk +12900 dc9b0d418c009bb8d68a4ca63abd11b55056294b legacy-trunk +12901 7f147c4e4219b16d6e34da3342866a82348b831e legacy-trunk +12902 2a4c176de6cdd3c8891766d31098c18169a63df5 legacy-trunk +12903 94ad90fd27126fe5bf6888995e26913626bee9a6 legacy-trunk +12904 f81db738abd92c26b0d4130fa71a43b4d11998ea legacy-trunk +12905 9d4efce11f09b15986a11084ab2a29e309b5bbd5 legacy-trunk +12906 9c6da30ae675dca5c69ded705686daf88f1abc29 legacy-trunk +12907 80d2b9afd19cc5540f162ac19d0a837892c747b7 legacy-trunk +12908 2c039c0104377e945fee23c806cc2aebc0d9c36e legacy-trunk +12909 159f1c3afe284e9ec9ae504de734abe60ce161f8 legacy-trunk +12910 ccef5c0e8ddc68ce51971acd96e3ae26b6e81393 legacy-trunk +12911 a1544fc49a763455a3e07cef5c9378b6e0a88bdc legacy-trunk +12912 050832d838ca5ef86f7a71a66ae1f4b72aec5284 legacy-trunk +12913 97823184266a0190200eb39cca90d186b0d69fb5 legacy-trunk +12914 9952f16bbe8ce3e972f005e212a4cace146a567f legacy-trunk +12915 e9e69b02d0f0d10ff3aef863fd70fc5f9bbc56b0 legacy-trunk +12916 4363fb2d434503f751a8568c548184581659bf77 legacy-trunk +12917 a630e54e97f293bbb681f8943b8e1d83d32e89ab legacy-trunk +12918 48fbc55c055341880f9513f29ad2b83cf5ae9ca3 legacy-trunk +12919 52438c87fedcc226a67aa528769cfd453ab0a0e6 legacy-trunk +12920 dc502ce7575a207210169406fac150298e523a20 legacy-trunk +12921 b8e4de1c35cdad9096da056e60c43e1136526b83 legacy-trunk +12922 cabab1f5596e28528b2b2e9d8ba64abb72e7d72d legacy-trunk +12923 6d58270dbcd43d448b1a8d831742aebd090804d9 legacy-trunk +12924 0d6bd391acd8370975e7491fb4d582719d79fb5f legacy-trunk +12925 b3646939826269e3eea89f717eed8b7159dc37b4 legacy-trunk +12926 9a4baf0c57ea19419edd799fab00338cb4afd852 legacy-trunk +12927 5ccd3b86b1a637fd302cb7ce0b394521eb05cde0 legacy-trunk +12928 4e8defec09f8504075c9f0600314ead73a7f3436 legacy-trunk +12929 c176968bc91c109328c4d931810ec6ec1ff4c6bf legacy-trunk +12930 e6799a855af78c547d4e8c2d8e9391d1b2471d97 legacy-trunk +12931 3571b4c1bc0e3d37cddf7915ef5cbc3c8c7ed097 legacy-trunk +12932 f9ad148c980cce0bf72fd9e5490d55f54f892160 legacy-trunk +12933 d592fe5e09d574d0df357d565a7ea4d97a2a97e5 legacy-trunk +12934 0789e0b55587bb2181f3ecd6fe0cbe65bf083b60 legacy-trunk +12935 1cc5d20d2ed8429681d5b96447b1095aa5ddcd9c legacy-trunk +12936 2ab0ec847184767c3830c7f2314ec95e95d36a0b legacy-trunk +12937 a4768315948dc3107cd0fa8c1dfa104b4a470361 legacy-trunk +12938 324450ea54502b8936222079116a0b97beaecdb0 legacy-trunk +12939 7d3a60f4e0b47346eea01aae066567260131b4c9 legacy-trunk +12940 3bc8f53041c015bdaf4815862cdc6c563d4a8863 legacy-trunk +12941 ee6fa9b868854ac13074b1b160a6beef71fe2fe7 legacy-trunk +12942 9ce1474abddd7c369d84d26b10dd432e06ca1c6b legacy-trunk +12943 b94144de2f32b53e2fd51825bda92001389da6d2 legacy-trunk +12944 9ba5dffccb1bdb436362718e2bbc28ef21b0a348 legacy-trunk +12945 9184c9e108f97bb66ce1233f9738f92dc2b1fa2b legacy-trunk +12946 f3a4c4f40446785e85668477ed384f4aa1b9109a legacy-trunk +12947 2a149e94ef4ac145d5d21e6521acd7717f04a063 legacy-trunk +12948 00c37cb75c28549d0497eb6f4be8db35e5d0c726 legacy-trunk +12949 bf26b7c1e6dec19ca7ca99102dbed60973fb06c2 legacy-trunk +12950 d3762933bff889a90836dd55306d6cbfe2040535 legacy-trunk +12951 97a06ec7c6f49b723ba5421f434b4df5da00a7da legacy-trunk +12952 7fef60f8bc4555e63b57296f0d1e08cb06bd7f50 legacy-trunk +12953 5cfbd489a5d34d09d9e1f97cc574f56a07195979 legacy-trunk +12954 2b1dfc13951dfb630aa66f6fd3c2a2567b11354a legacy-trunk +12955 c9e10ed26d9ab10005eb06dc9cfc05d558c5198c legacy-trunk +12956 5b54fa775e550ecd8eb22f2bbf8dd39561bc811b legacy-trunk +12957 dad14ffe1c22a06b05f596f0131b00ff54e7d99a legacy-trunk +12958 11178c8d6be2a6c293a9bc4560ede41b275b76a9 legacy-trunk +12959 3f213a8fc04e06fdfeaa1b8725bfb8e20e89cbf4 legacy-trunk +12960 82adc54dd377c4644f34b0df9598f0f8f872357b legacy-trunk +12961 70910e3125a2763142fb08a89681ded7b2e84efd legacy-trunk +12962 4c1bbedad14be63cd0f4853d454e1935d9506a84 legacy-trunk +12963 62781914fadb893cd6ae3fca1bf7b63ee355e72d legacy-trunk +12964 4abc5abaec9ab880f5124a19ef27e83d802ade59 legacy-trunk +12965 a6464eb987e8ceaf39fc1c8e35000c7106678ce6 legacy-trunk +12966 53c1faec1d4666a50643520b91617c457969c73e legacy-trunk +12967 f74ef1971bd1268084e5627d23d0ef87cbe08bcf legacy-trunk +12968 5868846201ede20139f0267617b0d1bbf25a09ba legacy-trunk +12969 36ba4dbff686e853ab0c4d062e6900d1f6a351c8 legacy-trunk +12970 255abab3c57430508be31f3f52b39562358f3109 legacy-trunk +12971 9cd4fd926df64499b3a04a772bc80803ded35ebc legacy-trunk +12972 601b4f2d5fc85243a0bb06b728ff9482c1b8ef5d legacy-trunk +12973 022b178fd0ed577805e4f1df4104ef26efa4a539 legacy-trunk +12974 ac3a465e50a67be91a7e33ca61030dd197f85b55 legacy-trunk +12975 4ee900005ed88e67ad8baa5270b70516439bc2a3 legacy-trunk +12976 63c463a852936ef400aab2132ad35f4dadfaeab8 legacy-trunk +12977 f850ef3da43af44dde447739ea07ee0176fd9540 legacy-trunk +12978 c82a85ba1ddef8e8285be0a4cde1811cdeef89da legacy-trunk +12979 57704f0ad9b05c0740147262446fde6dd4f06808 legacy-trunk +12980 4b19461780b99a0c596478ee914f6e158f7b0b9a legacy-trunk +12981 01250b832374ab2c56ffab88b66dfdf297ea91d3 legacy-trunk +12982 ee610949f902264eac1030f213bc32a44ecb4ddf legacy-trunk +12983 c2554bf617c3256596bf5192f2e6d1e63a39ccd1 legacy-trunk +12985 bae650f57c4150bb0c4816ea872934221c539aa2 legacy-trunk +12986 75683fd39e91ea4cdfe3bcf48685f745a4409fb8 legacy-trunk +12987 7474ad7e0a449ab91502295bcae8d5ad4a697916 legacy-trunk +12988 500f8ec9ded18d6dd4985cdccd84c468d99dc873 legacy-trunk +12989 8d115e111a1740e93e2568c94e67e243cffe1f0b legacy-trunk +12990 30c94cd49a688a6608bce28cb211606acda1cf61 legacy-trunk +12991 05e97f6a3638b350ec395e01eb1a49951044fc29 legacy-trunk +12992 ecdfcea1243856c627d6500efc027ff0e80109d8 legacy-trunk +12993 8749e88ab40660cc118f792c249a45a579c85089 legacy-trunk +12994 390e4c103be2688e0a0ca7aed5ee631d4cc76b65 legacy-trunk +12995 b2357924a9a926cdcf39b53d932047fc0238bfc1 legacy-trunk +12996 43052d5b9808349261a7896315530455ed31aab9 legacy-trunk +12997 f5d7c4945d5f5b4dc92b10a9e811822b0528e93e legacy-trunk +12998 e64c8b84e24b795fb00e97fd30a41d7faa24518a legacy-trunk +12999 246b13410a317e4d0acb42544c0b28b685bc20e7 legacy-trunk +13000 ba1a27d73cdb0a33fabc3768dff9cb3919ce12cb legacy-trunk +13001 8d40e6ba4c9e21416a28be38d799e2d2814098d8 legacy-trunk +13002 fe8645e4931480c5b7e77f82c5582cc5c3879d26 legacy-trunk +13003 993908286ac7165cada1dda10a12d7717941db56 legacy-trunk +13004 c0f147f4f100db99b999d4537d7ed8f8e7ddbbd6 legacy-trunk +13005 e08da34c4582feda1ed3e7a77e7a3434bbd766bf legacy-trunk +13006 fe881f446c5d28fea97efa18625c2631268d5de1 legacy-trunk +13007 5393ce5207c7065160cddcd0dd14998eaa8d22f8 legacy-trunk +13008 48cddd0cc733078220a2064bdecf1fb0f3a0d9b0 legacy-trunk +13009 20feba96743717b5d4555eb63cf47af5eb7cd9bb legacy-trunk +13010 45e9975cb0939485760290d2e2cd5b9c52a38bc0 legacy-trunk +13011 753f3f95c50f15c8d2ac594b323f043765448c07 legacy-trunk +13012 d79989a435d92e31b722ba706eed08e3ff45ea4d legacy-trunk +13013 65b3cfe6e66692797105cb7a666c80e5d71f795c legacy-trunk +13014 c3edc14c3880a394de311ac971476bd549f89493 legacy-trunk +13015 2199f70b0eda72c89c0c086427d4b771839626b0 legacy-trunk +13016 ca44ff7482c775d16b776d2c920c6f1565c7ca55 legacy-trunk +13017 81f4a77e7337301b366520d8c97cf6cbd3451b12 legacy-trunk +13018 96beaead874f76a0792db3ea4a5c0433cd96d8f7 legacy-trunk +13019 56105449771a68433b9fa6fd73f91a2e8bb060a6 legacy-trunk +13020 d384868ad4622ebb90c8681a2f125f39374c8c2a legacy-trunk +13021 e3f59a06472e3a56433997cc659360c74d99ac6f legacy-trunk +13022 9aa65d48dd051775da126b36468589b15ff98dac legacy-trunk +13023 b19f2a9820305f9254473beb75d503b93c2dc284 legacy-trunk +13024 7ee1e31341473f51c24de01e83eb1b5af6b1e8b5 legacy-trunk +13025 f005ac735863413adaefa5ab01b5958b43e3c6b7 legacy-trunk +13026 b5dea4c79d24e0a0b560bf64a87a23e607200867 legacy-trunk +13027 474c5b82d7de99f7ee042a0c6dfbf1a03f2e7eab legacy-trunk +13028 878a54a06117b39b994b9e83daf318734e19ac49 legacy-trunk +13029 61bec1e5fa593a97567934251b6ac3be4774e200 legacy-trunk +13030 4157f3862a09df171746b1bdb7ae703bb4e383c2 legacy-trunk +13031 3eefe6b08662f4529a32f1bef20d464ae7a64cdf legacy-trunk +13032 d4ce9f1f62666e4d88d8b2acc5dc47d8c7bdfd45 legacy-trunk +13033 540c8173e4fdbfecba246547c7b81af95390610d legacy-trunk +13034 d834ecdf8c26e0df923187f20ba47aca6ef2e220 legacy-trunk +13035 9ec9abfec794ec141d7cd69c0e5d06d2135e554a legacy-trunk +13036 c04f03e82a7543820807733a6ff7edfd50d2037d legacy-trunk +13037 32ba09c86917bb70f5a4868b64bd65eba5ede364 legacy-trunk +13038 a4a268b725b2a46236f80e7fcc1b3fb661b9ce6b legacy-trunk +13039 b62724b09302e749cc593f38518e2880cff6f9aa legacy-trunk +13040 934719c25af82edef158eb7e2fcbd1f7dfd7e2b9 legacy-trunk +13041 3fe95c2b37134ea696e0fe2e6227834a07067d11 legacy-trunk +13042 ccee3c28b7eff1bf5e1d1071ced74f74b90b2a98 legacy-trunk +13043 5f454b706156ea31c88c9fae70fc6e018c5e54ec legacy-trunk +13044 0beb7d36c1a9769472611208f3644a8707123dfe legacy-trunk +13045 f28e6a3b9134e183ef1f18cf3c0e4f0ea01b4bef legacy-trunk +13046 edc7b28d90521136b53dd474379a53289f5671aa legacy-trunk +13047 5e9ea3eab77c81025307715d51532ebefef3a2dd legacy-trunk +13048 3400aa1b0073fc78c36286d6e23e45703e7292bc legacy-trunk +13049 c0a69ecf9646f61a60ed1f68b3f352c3a050458d legacy-trunk +13050 e68d537eb50feab7705fa21a4475e8c6bcf2da5e legacy-trunk +13051 5980bb001f864ec0066e4f3ff087f59d00b0d401 legacy-trunk +13052 8c1cfe965d9b2dc31f1053f408ad8312f4bcc832 legacy-trunk +13053 ae61b70efdb3a948bfa81c9597d02f1261bedcc6 legacy-trunk +13054 c69bfe0ecbd8706a35c77ddeaab7c936b4a35f6f legacy-trunk +13055 aff07e049aeefa2be43208ad0d26d73c48b33ad0 legacy-trunk +13055 39fb0dcc83dc375c1565ba65dbce0ed59b1359c9 legacy-trunk +13057 a837a6aed83e6de2f34770eb44b25d0ff8f2d0e3 legacy-trunk +13058 05cfa28e65f62453722249cb84d98b4ba4748aff legacy-trunk +13059 243cc6d9c5b8fbe0eda17f15679c3a724df15cac legacy-trunk +13060 e3e5d7636958679c4136a97e889657102fc5e98d legacy-trunk +13061 286b2ce6524886493d503eeed5132dfe2d8e7987 legacy-trunk +13062 8d2a8a49d983921218ba4a04154a832a5c1057d6 legacy-trunk +13063 afaa3aa835f983379a77893591b9b3cab1f42c14 legacy-trunk +13064 970d61bb6acf9383b356be4f1f5f0ac349caeb60 legacy-trunk +13065 3be0525bf47f1ac4368e9642dd85bb75b75ffd25 legacy-trunk +13066 a42824cf0b181e286b253d5c0772ce5befd391e0 legacy-trunk +13067 f6fc67d705dead2bd41e087533625d275600c7e8 legacy-trunk +13068 04afc1ac1a0fd9fc8b3e98d9bb9a4d14e97172d0 legacy-trunk +13069 104a441b2bc8cd91d5290027287e949af8040102 legacy-trunk +13070 7bf3f412e137861bfc691927b2a87d2dace5f942 legacy-trunk +13071 da15ed314e242814763fa49a3294db6378f088d2 legacy-trunk +13072 bff3382c6d2f51ef88b1675b999a3ba3a5d3935d legacy-trunk +13073 f58046339cbf35d9b5f088c26dbf69687bc0ae2e legacy-trunk +13074 4e0cc6e02a0de9cc566f1f1d62bce52e7758a506 legacy-trunk +13075 4aff391751371da5f954854a9e7d22eb3e8e1bbf legacy-trunk +13076 10bd2fb2a0d67d9d3fedcbd10ca38d007b94c229 legacy-trunk +13077 af1e819c044569bfaadd1b210ead38248bacd8be legacy-trunk +13078 f96b272981bca64ad2ccdb70d51f599b921648f0 legacy-trunk +13079 56172e0efb752ec653748f26b114dd053e299d30 legacy-trunk +13080 6e7f14af89b71fe24ad581ddb2a6a29b9efdd856 legacy-trunk +13081 885be60104d4235508300bb4cb830c4f2c3a3e47 legacy-trunk +13082 6342ce4ff94654f03984fbdafa5a9f664a20a32c legacy-trunk +13083 1ed1eb5bc6ec0ae8042c34f655dc4c6d14fe81c7 legacy-trunk +13084 439fc85324cdd2237406e99586414f33cd6e1dcb legacy-trunk +13085 bbb5af78a25928908b8ff70f7dfbb0cf6d12b662 legacy-trunk +13086 f7b8f886b51a78c40ae32b90632b0aeaa7f6bc4a legacy-trunk +13088 44da03651bd02ad64b2ff1d02c8655809775e8d8 legacy-trunk +13089 e41110ff8c2fa07b136f40ec5dba4171487f1eec legacy-trunk +13090 700daa75847a5d4b428600a033459a8912360dc4 legacy-trunk +13091 8da46d6b8af3b2418652a4b824cb325452a5df6f legacy-trunk +13092 040b52868fe8ce226815946afc0a941277d0eed0 legacy-trunk +13093 251baa032af0c3cb2a9005d33a2c942bf33c4149 legacy-trunk +13094 ce861b43ef5356f094afb73a3f1c78bd674fbc65 legacy-trunk +13095 0965aa2df5cad8c8c80f249900cab4d1296bdcae legacy-trunk +13096 83d38c4ad1defb08e15f61ceffb0d9c7e3d347a3 legacy-trunk +13096 61c91c7f101bab3149adfcd5646ae40e048de712 legacy-trunk +13098 c31b880ae84f9d22b03546eb9eb491e8e70745f6 legacy-trunk +13099 29abb7d96c259518c12db793e5ee141e305c470c legacy-trunk +13100 4e269414eee530a67d14386585b868939dd6ec29 legacy-trunk +13101 63c7a8ac4e4cf9cd308fce2ba415af256ae159d7 legacy-trunk +13102 566bd87e0032e692bdf7f883fde256f6dbb003e9 legacy-trunk +13103 c8759ba83552a56b9f61c3001e6889f71938e5ba legacy-trunk +13104 876d7e792252c5e05222d344efafcfcd44ab2909 legacy-trunk +13105 dcdbb100060f2a9f8b0fafe9ba6bb590904f8af5 legacy-trunk +13106 90bdf8fa78a9b8eb7a80ebd28e03006b8e76cfd4 legacy-trunk +13107 2ab967f84895b0dd82fcf262a32bc6899ed0dd67 legacy-trunk +13108 28c44372de3841e2a1c13f372610d14fc59dc4a2 legacy-trunk +13109 3de044e650a1b63bef33356843af514577b1df1f legacy-trunk +13110 02701b99f9babb968adc58fe3fd8717388b1fe12 legacy-trunk +13111 fe5fcb7e73f79bd55102310773ffe3ee687e6738 legacy-trunk +13112 fcaac41f6f3a033fb4bbe9e68684e1b4c13d52cf legacy-trunk +13113 b4889f106c3b1806dcf77d3e7836a3ba29fd4b3a legacy-trunk +13114 2419a6c9f6281063f8fbd7af8d1201bafb1af2be legacy-trunk +13115 3f1e72c71b3a5cbd6f61ed3e6b7a081fb76e96c2 legacy-trunk +13116 6f8cdc7e225c9177f69453b8f04806e63ae9160c legacy-trunk +13117 f425e60ac71a46d82c29810c7c273ddc9bbd372f legacy-trunk +13118 f614f5cf2dec9e3dc84f7ed761fa642ba31420c8 legacy-trunk +13119 a077e5da5fa5730a0a86a53d2958a8f7edacdfe3 legacy-trunk +13120 568e94727a0cc8d9fbbe8cf3ac77873c9705a028 legacy-trunk +13121 a6b9d45003175289080c30c414bd77255f9192eb legacy-trunk +13122 012d361fdf23a8a347c3018f28f3b537add5580e legacy-trunk +13123 f7e9bc8da13d21633eaa42f214a78ccdcce3e184 legacy-trunk +13124 fa4685fd5adff13448bce4daa5d1539ff96bf3b7 legacy-trunk +13125 891d089aba412ba6095dae9a0ec8e506daea1fc9 legacy-trunk +13126 5b170f0da9febd9922c3d45eee39bc0be9571ac5 legacy-trunk +13127 ddceddef58a1c71a7ceca18ee4f51f295e8bb8dd legacy-trunk +13128 84d4f172669a6fd37d31ecbfe2e660c3f0906899 legacy-trunk +13129 34fd252427319f23113ea33fa861c612623e2483 legacy-trunk +13130 ad55bdba5dffed8ca20b462081a488d1c71d743e legacy-trunk +13131 37dd8b8b1d84039a28eb4bc7a3eeb1f3f026abbe legacy-trunk +13132 75f12871eeea7b5c92d1a534cb4c757aa9e096dc legacy-trunk +13133 18c74d6bcae8807414415faa9e2381369b87673e legacy-trunk +13134 1bdea17bc471f25f7a97714799cad0c5d89eca23 legacy-trunk +13135 d7197b32fbfea1ecc19d68b4f3410a10fcfada4c legacy-trunk +13136 6472728df2d0cf2d64236062871f52e3f184e857 legacy-trunk +13137 46a708b0ca38f01069c2853284fa2dafc93244f8 legacy-trunk +13138 aa4ecb716e6e1c8a6c69f24af049cdef2a0e2c2f legacy-trunk +13139 e264392e15361f956972bc43b03e5d24c3140fcc legacy-trunk +13140 3c259370ac57ab1ea540dac5ff44d20865c1db23 legacy-trunk +13141 9fd29021d147eac9d26ccf2d783d2d3382915c14 legacy-trunk +13142 bed15a015c1c394ec9b86f41197ba61117872931 legacy-trunk +13143 df8a1c281ad7d74d4898ccaec60f2e34d7f26673 legacy-trunk +13144 360494c25e0e5a9d802df853cf4107bdf9ae167b legacy-trunk +13145 eaca3775b425d7bd3846ff64b4e3e2c929d31c2e legacy-trunk +13146 f6ec4a9cb0b393fd237ba674dee905cc2f5fc8b1 legacy-trunk +13147 6372c2a4d47bd814db2bea2153cfdbd9d0e14b4a legacy-trunk +13148 e3a08983cd251f8efe7231f50b131b554affe617 legacy-trunk +13149 cf62aff104687a4b3c41439da3c8f355d5fc11de legacy-trunk +13150 46788f16650b07b8042910a6445fd33f70e1a36d legacy-trunk +13151 e09f19441136ca39d676056f696a031ed3742689 legacy-trunk +13152 c7470b14dec7c3df081c16134f43fe3b0b11d349 legacy-trunk +13153 48c33d05367f2a5e825105d60462e422ff82848b legacy-trunk +13154 43694d35344219bc952be1822adb3e7feaec5c3e legacy-trunk +13155 c99e687d1ac4ac651a343a5a4f20830da1c763c3 legacy-trunk +13156 8b38ce42283ecbcfd5e3cf61ca53015c5532921e legacy-trunk +13157 6c265113e7e8c6fa71a710e29d438bf5d6c0cc51 legacy-trunk +13158 42dbfd4983876732dd6a323eb0b6578ee08ba8d2 legacy-trunk +13159 9883e30acac59288630c48766c3b882dd2d2dbf9 legacy-trunk +13160 299bf53e68616efbfa84e91cc339f025accea10f legacy-trunk +13161 8e72fc57f55fd431f4b3f0938796b62e6f0fb043 legacy-trunk +13162 d203cb9ece37277df15a160354624b7e46a412be legacy-trunk +13163 99681ee866982d064d8d926c37e7fbd960101985 legacy-trunk +13164 69fb81facb03784c50501a1613d93a1efce81b11 legacy-trunk +13165 95ac1c8c085e54ce2c79f6573c29d89e94e5bdcd legacy-trunk +13166 a71c636b85d14a3730fb2b160ddbf86c44bf1e2b legacy-trunk +13167 ab02334453f96d4702efed4ab432b46dd74292db legacy-trunk +13168 37a2236d472f2f4f15977fa66364130b93003fa3 legacy-trunk +13169 933732026e9cd49d87c0d848f0deab3fd0618e12 legacy-trunk +13170 7d05bb3e135f6277671e276b316a99d16813da1c legacy-trunk +13171 bebe9830b33cda196b65361bfa2a5c68cfe5e3b5 legacy-trunk +13172 02eb74749262e55b5f32c1280aab7dd841cbbe42 legacy-trunk +13173 8c6ffe670963b01ec94e2e42d4b1c3aa5ab0908d legacy-trunk +13174 e05f6bdc8b52045c35ae99d03da470feb20ef681 legacy-trunk +13175 8c0a60fb6acf69cd5659a0289d337c501c3d193c legacy-trunk +13176 798655556456550dbed24e4ed818accd1e9966f3 legacy-trunk +13177 f6062e59238f3e35ea00d5c2a7cc93cd0ec9784a legacy-trunk +13178 e2a1c8d233df719207272498c9b0324b4aee8cfa legacy-trunk +13179 b2606a8fcaaba967db3343c7278ee5728d0378a9 legacy-trunk +13180 ee861d7bc0e930cfc78a33fb69621e859717ba2d legacy-trunk +13181 58ddee1256e95405e77332f68f2c8e413d64c38b legacy-trunk +13182 9e4c573ea49ba6b32ca611d6bbf7207e0c24dd36 legacy-trunk +13183 19b48700acdbbf74da30ed7bf1c9c736ba0f07ce legacy-trunk +13184 4cb8494aba620ef27eeaa614d529d32aee955509 legacy-trunk +13185 ae18e8eebe04da8d4f4ad903001c5e1f022e5024 legacy-trunk +13186 633d2f7a1e48805c0a8a48a1eca6e531180851fe legacy-trunk +13187 7137400037e01590154ca6d6506f7efaa5d18795 legacy-trunk +13188 3bb029c6dd37822a09dc3ee982dbb71d97b57b24 legacy-trunk +13189 f671195af020ed8db483b9fce93dbab77dd9d07a legacy-trunk +13190 85cf476657c5de61984e5d5ff0bd4765e1a78084 legacy-trunk +13191 ae0306aaa688e11be5d8d22d347db0a040b5a2e1 legacy-trunk +13192 3b8762b8c140d016ce4525887ebd1a22c14ee178 legacy-trunk +13193 921ff385f256a18ac271802c0fdc7dec0ef1fe43 legacy-trunk +13194 9b7d8ec9b910c3224b9c48879c6296c252e5d0aa legacy-trunk +13195 a9d613ab5a765e33519e051486dd47aa3696dca1 legacy-trunk +13196 ab12c631d735d48ff7c0c62e0add6fea0cc3d52a legacy-trunk +13197 d30ccb00bd7b80b58374b01b2f7b2b9cdf1b1277 legacy-trunk +13198 9e0402ee3812068977196ac62976b7f833542322 legacy-trunk +13199 25cc7f0d45f38dadc89c2ecafa1419796c2cad78 legacy-trunk +13200 0b8ba9351a06351684b35d0353d8adca53bf3d99 legacy-trunk +13201 e703979ff5e746928b864a540673bda152c56c1c legacy-trunk +13202 67a4aced0d88e53a83c0b9d7077a3c38b82a765b legacy-trunk +13203 4822617b39f14a73779c59159b6edb28adb9d29d legacy-trunk +13204 aba1cd0d13eafbd4569f6e00b2fd2219d52ac475 legacy-trunk +13205 81f51105f4288d23bece573b269050fd8880f5b0 legacy-trunk +13206 346e9a0f0f8c7ce6a690ebee4696fa53aafdd5b7 legacy-trunk +13207 c903ececba669bb30f0f71605a8b98f0b28d8cab legacy-trunk +13208 e4e800a78d8dd279949a5c3aac246a1e55ae39b2 legacy-trunk +13209 58b191badb9a8b5e03b50dbcc6c82ef7395a6d32 legacy-trunk +13210 4788fd070a30b3e1d14f45e8a382099884167c53 legacy-trunk +13211 8511efec7309c7e3546cffb935e2a0fb16f9d519 legacy-trunk +13212 cad7b55a363ff5463c805e77dd8cd0f0643a82a4 legacy-trunk +13213 b2aae719872386795f3b123efe634ca4f664ccd5 legacy-trunk +13214 14f6e0dc96229fce1d2d09bae9708efb3e31f644 legacy-trunk +13215 d8b2f82f33ed2dde415083aa8ba113ec3f40a4ab legacy-trunk +13216 cd01ba10a962c09fc452c8ab0d72adf9341c1db0 legacy-trunk +13217 490ec0c40cc600cc7f0b055011335950eed6b550 legacy-trunk +13218 cfd0932a53e491f83af2479236410f5288839a8d legacy-trunk +13219 7668bcde9c0ad640872128cb70c5eb885a366a27 legacy-trunk +13220 67121a2c62bf9314cd1d9a4dd94bcc8dd9996d0e legacy-trunk +13221 baf66d6e1bc16d21ff012722f9e3eed57c0b8492 legacy-trunk +13222 80d4885edd66408ae2abf9c8fc33c1cb90a7689f legacy-trunk +13223 fe1e98190af6ee83a3d452454dcbcfc52921a367 legacy-trunk +13224 f095077d20b02e2f57c86d50dc64df51d8dfb89e legacy-trunk +13225 e995bcc4cc8224c8e87913c8d76c0094e17d08f0 legacy-trunk +13226 9f695a54986548c974d92577c89d7c6958d6a87d legacy-trunk +13227 f335fa1d6e715ea8c33f9ac3fb457e6490d3a2aa legacy-trunk +13228 48037f4814b110c0c145818989caa0712a64b3bf legacy-trunk +13229 f3c7ff7a6e81ab564258b21ec005f7a60652d788 legacy-trunk +13230 b6d1a32aed7638beb7833e6fa4018b93458e2092 legacy-trunk +13231 8de7d90b0b34fe4edd36b96f3e8841885c152d3b legacy-trunk +13232 9e5df4c49a56754dfca9cc417f88b4ae4af5ad6c legacy-trunk +13233 eea1ab028f431ecc6def8828d310907057a7b5c8 legacy-trunk +13234 f3876930843862e1c87d9cbbaa662b992e39304f legacy-trunk +13235 c5f449aa43459214159d554c11a0311fa5141952 legacy-trunk +13236 2475c3cfe8390326e882c2d3969bc9c420f7dc3b legacy-trunk +13237 e075272f43f265688f9eeca510a11de5be726cff legacy-trunk +13238 61051fd65aab08105a95779b21cf4c8288ecbe49 legacy-trunk +13239 26664d07959799592bbfaad095265dbec902799d legacy-trunk +13240 7442ccedd5fd3c02b91c327a3a016d31c296a61f legacy-trunk +13241 ec664254ef5aaa9e1c3774fefe3a2fd9339406c4 legacy-trunk +13242 27371b6d70c111d6a6c15b7265a5cf792e9fa066 legacy-trunk +13243 df154da18f0ea0dfc1edf7db207337fe64adf13e legacy-trunk +13244 e4ee8ea4e8368d2f3da418a2362784df36f1acf7 legacy-trunk +13245 03e74c4b189c9da549f2c5090e109d538f94914a legacy-trunk +13246 09c6b2cebee9c61e865a27cc022b49624776085b legacy-trunk +13247 676de8a7a3cbd25a0fd9ffedfa3e1d2c18e93daf legacy-trunk +13248 855887a2cc6017c6d8a796f83200ca106b431f27 legacy-trunk +13249 4c9de6fd267b93facbcc12cb845a58e6e35ea963 legacy-trunk +13250 3e5b05035eb98429e6afdd3e350bbd035ecb7fd9 legacy-trunk +13251 4db3691b9c8715fcbf8d8457b4130966ca76ca8f legacy-trunk +13252 e7ebcfde3b5e4271ac61dcd77e37e18f179f4ea1 legacy-trunk +13253 f0a619eebe9a2a27331e5d712e12abdc0f8b3294 legacy-trunk +13254 a0d4a957fd91c11f07aa5e6750ee1fac0287a22c legacy-trunk +13255 8f3665bb9e3e0c812daf173480518d8a93f18c0f legacy-trunk +13256 8edbd5ab6217570beadb01bef2f11be61c770db1 legacy-trunk +13257 8eef6f675677c57c0d4989c32b56e7383a6b7b9c legacy-trunk +13258 81f54c00e224fe5b1dfc49a815c7dfcbb3d78e96 legacy-trunk +13259 cde9b2e64c0097e19094c7e857ebf9220c5e7835 legacy-trunk +13260 bfa0c743347a9dcc922f1a8e7c7aedf12ada8897 legacy-trunk +13261 f1b2bb535eb363c409128cfc1b88dd471791a01b legacy-trunk +13262 3c4db6c6e9793cff61a3e434468a0db483be8840 legacy-trunk +13263 ece098f3e1dc8ed0b4ea49a100adc99ced82d10a legacy-trunk +13264 aaa5f98cb2d6d9c5ee5ba861f3bfee234cafe61d legacy-trunk +13265 6a38e667d349808ca3d1dd821a5ee79253b9da9c legacy-trunk +13266 05d703015de154f9bed95b93a81b768b5cd437cf legacy-trunk +13267 393a6daf289de3894c65f9b058ceaf56436f9530 legacy-trunk +13268 150ac0d7092922494af268b664cd913ba14d0212 legacy-trunk +13269 92a92de959b9e24bdf9b2e33695a38b6d38ef15c legacy-trunk +13270 3f0a6b1569e7e6ea8e71b3f84899930aed9f6360 legacy-trunk +13271 dbca470af8f248719349c690e3014ba554d4a4bf legacy-trunk +13272 e37074b6e78cf4ab71a1c8f5eda450c2704717aa legacy-trunk +13273 c6a4e46f1b09dde32507537b22c65216735ef3a8 legacy-trunk +13274 1af7a146708838ae0f084a4eef77584680fa69ce legacy-trunk +13275 fb1733b6bef5eac0eb3c95074326abb51631c631 legacy-trunk +13276 2f6b1276e5dc6429fa44245793e78bf1ac6330a9 legacy-trunk +13277 442483f45345585a72bb23964612ea411321bcdd legacy-trunk +13278 2b0166d225513e4d435fb5824204f0753f0a627f legacy-trunk +13279 1d7ebbf1f0f275508954f5d4041c887474cc1178 legacy-trunk +13280 e0e93e4166ce2d50828be36583380778bd3bd84c legacy-trunk +13281 c1c70b743df2e78b987f68bbd711849c64e72f93 legacy-trunk +13282 966594c6b1e256ada51c1fe5744f2a50360c7d54 legacy-trunk +13283 b70896eb89440e907d1050aab6648e6346c1ab0d legacy-trunk +13284 9f0f1d8e6ebaf7e73f91b659010c5ac097fa48f3 legacy-trunk +13285 b39fe51299be9dae94d85d465fb3ce456b9a8caf legacy-trunk +13286 479b4d1c0b47285df66acb62704fa6d770bf01da legacy-trunk +13287 54a30d6b01f108a805408e3522100e66708565d7 legacy-trunk +13288 c39c140b04bcc9cf3a0332cd7af9d23205be24bf legacy-trunk +13289 32e78c9fb496c388dd03a1bd4cb97bfa64faa23e legacy-trunk +13290 5db2c0427cad34a499c29e8650152f78b7feae5d legacy-trunk +13291 a34d6656f8e2ddfa92f7c4271ac86c3c447feb7a legacy-trunk +13292 1bfaa5374df99758b14a911fa6e3a2d8b27b7025 legacy-trunk +13293 335b4c02f10df0d900ba44363390ae7c7122c99f legacy-trunk +13294 767351f4944abade41c1e5f0de2b47b6d51d50b0 legacy-trunk +13295 105beed068f8e62d273b3dd5f1eb068dd2d33d5e legacy-trunk +13296 2d36f0689b8a3e0559b7eba345315fbc26d344df legacy-trunk +13297 b015d5f1da1b571791f440f4bd95a2bf0865c3fc legacy-trunk +13298 7c40d7c1eef94f77035aab87890adfad08a3fc6f legacy-trunk +13299 885abe08ea2deac933507d21796770a279ce967c legacy-trunk +13300 9efe067940eaa87f8b1192ce86abfd721f37a6a2 legacy-trunk +13301 94c7a3f1c005e6594721c9a85fbf175e31efb289 legacy-trunk +13302 8f31103c88a8e07e55d923267830a49099f99dde legacy-trunk +13303 d20e4d0afb4362d89259937e47b2447c2ec166c3 legacy-trunk +13304 312eb4801a1c816bbe9469cdaaf7c6d0d970bcd1 legacy-trunk +13305 3d2ea55bc4e68a480f59486b60274093f04776d0 legacy-trunk +13306 879d1ae5c7a5bced2e049fe9cb1f1cbf69c66f12 legacy-trunk +13307 781238361f531e3c501994581ac2462ebcad9959 legacy-trunk +13308 aeb13cb7b78ca5e8084b3a630ff381d27d341ae3 legacy-trunk +13309 b88a6052426909d62b76e53ed0a10880c7d28d55 legacy-trunk +13311 7ea38597e70fabbdb45f23bc36976b63f66c110e legacy-trunk +13312 ffb2a47b645ec7bf1a5bbdafde30a4710d96ce89 legacy-trunk +13314 f164d9193341c9b4f08e436841dbc346be0eb2d6 legacy-trunk +13315 0fe8cf7ac6d5a356439415176f2eede429b8cd3b legacy-trunk +13316 dfbe258e28c1817da22291071a25fe8ca7b4b02a legacy-trunk +13317 68799a202766a1441a7f19c46963549f0d6a8081 legacy-trunk +13318 d73a3293c47b2cdf1e85f7d038b6ce92f8356c8e legacy-trunk +13319 5ad27aee7e58861f625fe7ed867006332041a497 legacy-trunk +13320 2fe0bb8b9eef79bbdaa1b775301fa03119371cff legacy-trunk +13321 8de13cea96411226889da0e8b1d5cbf112499f46 legacy-trunk +13322 331c85aca19572c2f593cb0541828ac3463cf530 legacy-trunk +13323 c12f7cf192fb3386098b861c599c3e3e304fdfb7 legacy-trunk +13324 d26a9f9254f14dc31796604691855c5d4fea2408 legacy-trunk +13325 eb7a62acdd1dc5b4f83de4d8d34ee138543a0b3e legacy-trunk +13326 5e03ea6927f206f56009234bd12bc15ae18c8e45 legacy-trunk +13327 dfb5fda3b273ad74cacffdde2c08fb482b92681a legacy-trunk +13328 d3c6e9a126b29fac6d78f27b7c73dd24be3b7019 legacy-trunk +13329 49a0b8dcb36a4e26928a26d160b2f09cc91bcffc legacy-trunk +13330 0bc7c502eb4d2ecc3a9686f4ce99f284b08ac1f3 legacy-trunk +13331 96389f0b5ef086b4f38f3ca76fb0be24769eed57 legacy-trunk +13332 fe5b7dea5a10ffadc273deaea843122d301b1cef legacy-trunk +13333 ea832c3c6e6da263a48cb438009a698f9e0b3e90 legacy-trunk +13334 2a30ed9112c61d59c9a0dac1e9164b092a8966f9 legacy-trunk +13335 69d89f7f530c5c79e957f3f4f581ef6e2c8a2ef2 legacy-trunk +13336 391a9cb2b0729f72a0157bca889fbb26fd5cec1d legacy-trunk +13337 00344dbf2a6052949ef5888c7b47a4500931346b legacy-trunk +13338 65db5e26298f266d8ab49ae034ec72cbcb7821b7 legacy-trunk +13339 aae14c6181b9d88d5dc39dd5a939e60d5b2f6a37 legacy-trunk +13340 135c1ec9636c686a20d03ed277a353824c97424a legacy-trunk +13341 5581307db2f737e6a38e2d5c713414be2106e91b legacy-trunk +13342 e6524346d66cc1859b9d596e400935077819feae legacy-trunk +13343 efd1573a4b03b22da2a107edf7f012536493ec45 legacy-trunk +13344 0bf301941efd8c53357fac14a49e71a4e2c913ad legacy-trunk +13345 8fdac40250325f89be7e96d23d20cea1c6bc6c21 legacy-trunk +13346 84a4ecd2cb95382486dde3eba0456ae884b8eeed legacy-trunk +13347 aee74e977add0ff7a0aba7229d054aeba4ce5726 legacy-trunk +13348 fa6be1d0b8645a33fe5b5b31fc969e019636cc61 legacy-trunk +13349 352e5824eda6660a41148fcedf30462b9c4642d0 legacy-trunk +13350 e1b86ef4557c57592faba9e905f7537e6d2d4f41 legacy-trunk +13351 cdf7ae5b3367eee6e4da244e3d670582eb97979d legacy-trunk +13352 5ef4b3ca55645712f563dfc32a4b25a6930aca67 legacy-trunk +13353 b7378df3db56d70431627c17d9babcacbd917f2b legacy-trunk +13354 c7aa99658383f27fb242e565a27987c1e3c07352 legacy-trunk +13355 d78cc2676c551b6718740432ef3c37713c9e95ca legacy-trunk +13356 4da76f838a5e4ed5c3e3b3316a3b36c690d27023 legacy-trunk +13357 a1415ecea23d4a321d71dadc6562409541bcb727 legacy-trunk +13358 fcb25335d6aedf2c1e5ed9a9e16c9bfd600b3775 legacy-trunk +13359 b27ad509b44b350256639c529800c678fb3417ff legacy-trunk +13360 e2fe65e87761b880c40bfc6e76d995ec58b50f5d legacy-trunk +13361 f2e123af2ada44713a7c4a64801dd22cbfcdba3b legacy-trunk +13362 28887f40e3442e0b51d4490a71251674731670d3 legacy-trunk +13363 be0ac5abe83b7b6ab781ee2cebd1cae664f263be legacy-trunk +13364 1aa80f5bf9ac91d3c012bd6aab74c91c3cb90296 legacy-trunk +13365 8202f5ace24849af751f3b1e9a9409935d7c770f legacy-trunk +13366 e75250e55424f41d948b66130b534860284417a9 legacy-trunk +13367 cfe472912b7f8b0282e74da8e4cb07a49d2385d0 legacy-trunk +13368 9a3a0468f51c7f97fb3422e9dc07d78f7ebd940e legacy-trunk +13369 4f5d4945605c67d34c759c7a9e8257be3513c6f8 legacy-trunk +13370 f7b41b27055482183dc2fdbfb86f4fa1cf3f9aaf legacy-trunk +13371 cd2a25b7b43858e5853fab9de4d7bcede7c1b7ce legacy-trunk +13372 3edb3298234cd0b18e2c447e59ddf6dd97246c74 legacy-trunk +13373 25138db35ce1ede7d7f1dfeda8ea039dee2ef3e1 legacy-trunk +13374 bbc2a87894d082931f07a20176207e8ddfaefe2d legacy-trunk +13375 7d1182d0c4193ea118eefb11f0636f61da6fe478 legacy-trunk +13376 ffff665f8a7bf29eff556165a236b8558a7e8d0a legacy-trunk +13377 5c5ae161f28ac0406b9b3ced1338127aa20a1584 legacy-trunk +13378 7550a35d80f9baffcbaaa28b9a29951dbafc0235 legacy-trunk +13379 a563792000770e1609b3cd77fadc5e9e454e92c0 legacy-trunk +13380 9868c807732d58708d6503363946328d28390e2c legacy-trunk +13381 8634ea2ec4e2fdc2a70d54df16ff74835be464dd legacy-trunk +13382 1821e64e08fceda8fc28e10d12d8d0af8b45dc43 legacy-trunk +13383 17ae178a30388c4cd1f03e6f0740133664462536 legacy-trunk +13384 2669ac7cd76a96f871320ebf927ef9b03612a40a legacy-trunk +13385 b9ef424165d6253d2bd5fd4608364af729a27433 legacy-trunk +13386 5020bfa742eaa7511c60851586d61800cdd4fd33 legacy-trunk +13387 f88d3a763723d5ba0be7599cda3ffbce60b66eaa legacy-trunk +13388 838cb34abb7919c342f243a960328b3660d0afdd legacy-trunk +13389 06def8042d8e16fa010655a07bec016a53341a5b legacy-trunk +13390 c209dd98b869525a1ddf988b67f303e196168eaf legacy-trunk +13391 f0318a1c9892cb5727f86d127e3992ff2a6c972a legacy-trunk +13392 62ed32e79b5d29624633407d0dca339424ecdada legacy-trunk +13393 822c5282c145697897557e754bdf90b25fd519a8 legacy-trunk +13394 af07389c85175fba594815702fd6bf2b2ddbb834 legacy-trunk +13395 ba6d3ae3a02147a216fae8071377d9c307bdd881 legacy-trunk +13396 a628c3705897aceba6f84b1202737c4e5352cc19 legacy-trunk +13397 632b6705bd9fadd603d1490facb4048ae3c7da0b legacy-trunk +13398 b8136566caf5c00e0795d8b3d5d59e7a436b557f legacy-trunk +13399 6783842c104245c036d3d9bf110817a21c4cb721 legacy-trunk +13400 d38d3b8ea463bfcf1eb094dc65a8e5a39b4b63f4 legacy-trunk +13401 e183bc0049dcddc00365e59a0813c8b4697033fd legacy-trunk +13402 7486796fae5b9445fdbccb7959c6e1b5b5fed554 legacy-trunk +13403 817d0538350d336447100c3b1cc7977a0016c43b legacy-trunk +13404 3e419abc5baadcfb1093fb882ba560506b01685b legacy-trunk +13405 95837e27325759d234278ad2fedc9728f7d40579 legacy-trunk +13406 85cf49a9b00bcee73fa174775b4624b96719fc1f legacy-trunk +13407 a59e95d2f1810b436697427ebc7bd553fa21e9d8 legacy-trunk +13408 17ca2f64b6d6717b788cedcbb24485e084bbc4e1 legacy-trunk +13409 7e56d39d074114326c69ca82fc101ab3a3cd81fa legacy-trunk +13410 f0a2213444a04945d5d38f8b5d1b78a2afb7e959 legacy-trunk +13411 957c33504cc124daf71afbafdf2efdbe999d5990 legacy-trunk +13412 d3174320e3cec9bead59923ab330db2958005979 legacy-trunk +13413 f4c6ce5593b9d60d8bdf62a6c48c1529b18cca61 legacy-trunk +13414 c2451614685ac4d8eb6486d85ea54fa35ad6ba18 legacy-trunk +13415 29e96275a42dcb795d55ee83c958032027db52e0 legacy-trunk +13416 8a3109740c6aff0e45a5c03867cfaa5b05d8a5f3 legacy-trunk +13417 d83a4aa70eb428d22d93dcab816e884921f340cf legacy-trunk +13418 cfac83f5c0efa472c136778a8583af398f3f9585 legacy-trunk +13419 b1a1eb3349f37ad1b638be34e0e92c514e74ea94 legacy-trunk +13420 d1b4fd057b4a634ec4aaa8e855665c24e8df8aeb legacy-trunk +13421 3fdf1c7d9f988f9e91b04719746fdbcb325ccc2b legacy-trunk +13422 ba797179e2ba6390a5fb21c4efdd544a87e8c3e3 legacy-trunk +13423 b75d0119ed51a07b8cbb603d23fbd11bf76b2aa2 legacy-trunk +13424 6b1cb8582a1f92bcc6743c6ae4bf9a4d04fc00b9 legacy-trunk +13425 a8a1eb99341c21b8e612295b5d9389b6059fc20f legacy-trunk +13426 bdd6b09a371c40dadda86ea98fb5bba970a4dbdb legacy-trunk +13427 3faa634309246f6435e76f8f3c4f6ffd2422fcb2 legacy-trunk +13428 9c403488755729137a167331afde2ee14cabd5e0 legacy-trunk +13429 1c552dcd43f975cd88c91abbdb94fd09ca28d334 legacy-trunk +13430 8234bb36fb8c35f9039884f13ebec6d0896656dc legacy-trunk +13431 5259703f4b5c02022554e46c55672eb1ea522b58 legacy-trunk +13432 b35bab457350b50aa5f1969111434d71aede5682 legacy-trunk +13433 f9c03b3d0f146e918162c85a43aeabfd68e23bfd legacy-trunk +13434 e41049ac828b49c06da83f5fecc7d7abc0dba948 legacy-trunk +13435 5ed9a2dd18d9e6f8a05ec3aea5793fe9bb47a490 legacy-trunk +13436 84f1cbe0094335ae6e5ad0508543359bc200641c legacy-trunk +13437 451b0849c97725dbec10748e8d04f3572b61fcba legacy-trunk +13438 18a29219f5e06f4dce5a1a621b0c9e85f7d04154 legacy-trunk +13439 50c3b3c217a39e46a7af54744b4d86b2faedc010 legacy-trunk +13440 cc6abc99d2ddf1414184c8800919c1409cb4add7 legacy-trunk +13441 c089020a7a1e5765ff98b58df8e4150b92057aeb legacy-trunk +13442 dccbf5e8294dd91f6fe3a23b4d51b00c9a804714 legacy-trunk +13443 8416553c33df17ff2bb7951754bc52f7a84cf776 legacy-trunk +13444 e8ff4b1298c233d2f55d3e29e3bf471c57cb9a5f legacy-trunk +13445 af76538dd079d24f0d6781b4140a81f7a0672e20 legacy-trunk +13446 7128c0fd2bcf524e743f45c1b72702508e930722 legacy-trunk +13447 8cc0c898f6a74783d1831e4802ce3a4b9b070226 legacy-trunk +13448 e7eae63e8b90779049e5f8e13af788800c68dfde legacy-trunk +13449 d976451b465f212b824de70c0d497e613570a686 legacy-trunk +13450 6ee66fe179ad72e0b052bb394bd5cb8bde75628c legacy-trunk +13451 35d5b07362422621be864958ad21f9531e7c48db legacy-trunk +13452 bf6a0983951dddd9a1a9369c94424a98e22ab662 legacy-trunk +13453 1abc2785b3446c0bf88c6757954fa71ca324d470 legacy-trunk +13454 3842518cf803012ce50d3f98afce3c3f96f23155 legacy-trunk +13455 b928f7b9dfa23d3fed46c3c22863068b30104805 legacy-trunk +13456 03530ea2148c8584650a48bba7f02c57fbf7c2b5 legacy-trunk +13457 0fc2e857e82285038702d394fb899ab08f1321cf legacy-trunk +13458 b6d3d17195dcba865556a1295e1f1af6f4b6d9ad legacy-trunk +13459 31711a0587382368f1dd84baefc28fca141be09c legacy-trunk +13460 e050d4c01327cd9c6f5b1294338e5c7f16eda165 legacy-trunk +13461 4d76cabbf99e65580b12cd8504e5f564090b892c legacy-trunk +13462 42940ed22cebd78b075e12eadeaa708283910b35 legacy-trunk +13463 66689b2dc8954b5c73aab238504051b47f06f3a8 legacy-trunk +13464 bdc1703ff92ce7f524bed0e2cfabb8247050e606 legacy-trunk +13465 c77902541b13a57dc10884166e091477600feb98 legacy-trunk +13466 bbb03868f21b627127ef7c11b9a27fe2973f5b04 legacy-trunk +13467 aa3276e5dccf5b2211363eab10b7d3a6357c1859 legacy-trunk +13468 36fa8352d0388167803418a3da7992b63646e004 legacy-trunk +13469 4dc9eee2615714567cb1a1e870de664b23c540fa legacy-trunk +13470 2b9af9d7da2d8a7eb45af815c337e4df43755625 legacy-trunk +13471 da236044cf6c8a982fc283e804a8e5e5dcbe1287 legacy-trunk +13472 309d8cf83a117982a1713c20dee39acd0ca1e383 legacy-trunk +13474 50e7eb20bb1d51ba569265361d46d5973de7e2a8 string_methods +13475 259237b25b935f9d78435c2091f4666b0a4062bf legacy-trunk +13476 70cf13609aed68a3ea9f96ed9c84380c603d43cf legacy-trunk +13477 fbb4edb7202cc5e1fe653ab5ac1d0eaa3e0c54c8 string_methods +13478 5ba2e4ce58cb4baad352b2958b9411dfd1990f0d legacy-trunk +13479 5480921ae7f3fee69d66e5842089b6c599215305 string_methods +13480 9d71c2c3a6756f26e34f46cfc32d1883cf564fab string_methods +13481 e1407d6320cbb7c102f37f2f98347eb06632c09a legacy-trunk +13482 6ffc9d8dc5b986a88291194bd6b708bd1b6c8768 legacy-trunk +13483 17c4dbd36e677644845a5118a3e3ef7725989efd string_methods +13484 78cef5676ccf612efa7da07747a4f387a977b9d6 string_methods +13485 ae850813cb7b48cc943dc614841e1e2f9cddcde3 string_methods +13486 ff0e576e758a7b4e85f459ffa53caa4afd194c96 string_methods +13487 1dcc956fce649f4f4aeffb7a2fa4874015530e73 string_methods +13488 eed5eb5b9d4f59cf0386f7f4adebcb9f306ab0e6 string_methods +13489 ddd216003bd1871d3645f259a3c694cbbd9c6e69 legacy-trunk +13490 cbbf297aea7a93797b8fd9ac1b4f95b0c2b37031 legacy-trunk +13491 b2d69f7513839a453299d5d1384191cce3e3a05f legacy-trunk +13492 ec6c8ad98341079463af9f6384038154da9009cb string_methods +13493 51969fd73c4a7e7ccb661a5ca52787a1cc96645e legacy-trunk +13494 2ec04ff2b9b732f9529db81e594367adc3fafc80 legacy-trunk +13495 cfed29493ed6561cbeab1796593e5c6a1a066238 string_methods +13496 0f0a66c1deaca2688ae4f44ee6822296f6999764 legacy-trunk +13497 0f2292f57a83174366920ba9c575780b0e99240d legacy-trunk +13498 95d782815901d8bae565822fff70ff1c5c50d5cf legacy-trunk +13499 b2fbd9a5a1b55c132d726d70ed20f16a9bede768 legacy-trunk +13500 ae96b1a128f8c1698a129516c2bc3d79bc9862e1 legacy-trunk +13501 f90ed966316e8c6942397afd9f6303606108bb1e string_methods +13502 4b969265b9d21bcca862d486f5f7f0e2c75d55ed string_methods +13503 711380372bc918a2ff0d69559ac03ae2d6fbb489 string_methods +13504 17ec0902eafa06cd740cc3620c7bd5b91560773f legacy-trunk +13505 bef46ea5ef75c04c4dc65d3562ca88c842b30ed1 legacy-trunk +13506 39f242bf4622836876a26e3edecb6f1bc44a95b9 legacy-trunk +13507 1dccbeeaf76acef436c10406e998b97e189ea9a5 legacy-trunk +13508 63b530c030c54b01e77fc51d09867cf2bbd02994 legacy-trunk +13509 c73f53762f9b0f2f11250e73f7c1dc66b8de4375 legacy-trunk +13510 e39a9f12916326d52e3f61d2fe2dddb88606eea9 legacy-trunk +13511 7a127f1992d1975ddeb904cd75e1607f83319222 legacy-trunk +13512 6cafa3d4e229e8b0ff50b498646cbb30f62dd99f legacy-trunk +13513 13462ca6d94755eabeb8eab16d1cbdec1c7593d7 legacy-trunk +13514 4050995a6639bb882ce674a4bea227b3ba517bde string_methods +13515 3c351255f173aa9732134477255dd80a259460a6 string_methods +13516 46a56177322eb06aa49b191b1be61438f7523737 legacy-trunk +13517 87d3f91e44d4d7c4ce51263eeaa9bcb88205551b legacy-trunk +13518 3e05fcaaaed219218eba86127a9dda206d387d57 legacy-trunk +13519 708628b6c04bf22e4e7018c2c6367c96bbb01fb6 legacy-trunk +13520 0d186c10a70e24bd9cb47955eb28b2dd30e69c4b legacy-trunk +13521 84ab14d85763430c3dc51c3723cbeb81443e6e00 legacy-trunk +13522 e68e606c130f51ae90ab85759d5f7403f4b4e7e4 legacy-trunk +13523 69615d50f58c005d2df59f34ce74cb1f4a6968e4 legacy-trunk +13524 8a4fc4da768d8ecced6a38215cd246df97ed6dcc legacy-trunk +13525 fcac6432a7dfb3f51978b5e1df7cf424da7ef167 legacy-trunk +13526 926cb5a5ee30933597e098aa82a09d11c6b5a7b2 legacy-trunk +13527 e52723af3cd5e6f10ed95def8b4d984bd793fa1e legacy-trunk +13528 086b2bc7578f9ef2c5c5c036043ec9b464c4ab14 legacy-trunk +13529 8c114ede056861dd5e25ba3119bf4b6c3f97b404 legacy-trunk +13530 c8ed5a14488de6d324d167a15cb1dccfc502b8d5 legacy-trunk +13531 0872da3f3f5612109fc0631f7e20e68751297b12 legacy-trunk +13532 b9f55cc10ab3f10aa4b4534e9d7209065ce47692 legacy-trunk +13533 4818cb8e11101df400d7b7e77d32c260b15a9d66 legacy-trunk +13534 492a694890286a2adc4a286b1f376905b9f20180 legacy-trunk +13535 e9442734bc4973d92d9ec422323cd8720b492890 legacy-trunk +13536 3b3c7b8ade7ffc8976f3b6ae50a8447bc7afa0f4 legacy-trunk +13537 4077ca3b265632898bcdcf475a9f7c454e9035a1 legacy-trunk +13538 2a2e99af382914e6296bebb709611635de0fc795 legacy-trunk +13539 6c92db3a77cf37a03b83dd633d55f926020702b9 legacy-trunk +13540 41385d50a10c74652437d8cef4ba5f89ac52703e legacy-trunk +13541 749711f885cd3e560eaea8f05fc130ff062ac4c3 legacy-trunk +13542 f4c63185ce110874194b40c294bc74247b7b623a legacy-trunk +13543 308ce21839d63fa0199931dd82c81ccde8fdf039 legacy-trunk +13544 6127b73858bc91f3531983ee4f7688173fbb8d42 legacy-trunk +13545 3adc0342d08bd25f683db04a428b36d7781def8e legacy-trunk +13546 119e119fcf5ac0b37063a6a887f9513eb7cea36d legacy-trunk +13547 126a9cdf05729e15f40c5ad51d33c38183725746 legacy-trunk +13548 e6abedbc79c69ee9e8d4891a825bfe4d7d0f349b legacy-trunk +13549 271af297aa3ea798534b8fb6fe87b6e0fbdfebd7 legacy-trunk +13550 31fd4ed73d29e51ee41bb9cd846ae51310b58885 legacy-trunk +13551 649daad6cf5167fd3dbb7b5aa792b76d3d559ea7 legacy-trunk +13552 771a9a100d75bc8d7096e0378f9937300d46c396 legacy-trunk +13553 3819eb7c834b358e41ae00fd01b6d4c7c73e0969 legacy-trunk +13554 f9ba8023976d6620a92a59713051cd6cf9bc7537 legacy-trunk +13555 3be935be3781fcd3d6f033f128f4aef8b68a2a8b legacy-trunk +13556 8b7f65b0db18a36c984d59613a0597b3ea642a80 legacy-trunk +13557 36684ce0d40d63690ce91adf07e7b87083e433f9 legacy-trunk +13558 cb366321152cb2e6971ebe46f2710cbc4c5be2d2 legacy-trunk +13559 b6a438cc195b997bac2448a00ca5a62c210b20cd legacy-trunk +13560 ad15a0394f7828fd1e7b459e726844c25bd06440 legacy-trunk +13561 5adbb3f04cbc2f92788d30866a8443884ba4c182 legacy-trunk +13562 12cf909668223036281b3fead0dc6b8df75e0369 legacy-trunk +13563 5fa96d050319d84bbcc0a2ab4d3a46623844fc15 legacy-trunk +13564 97896c09ef1b331e0914bc37941225bb95ca80f8 legacy-trunk +13565 626caeca535a243b0c81ed744631edce3f184f4c legacy-trunk +13566 27c48df1ceb79591fb2eadc8fb4b97693401454e legacy-trunk +13567 f78f16fea4557f4d4ba8047689c9f73dcc570636 legacy-trunk +13568 cc2eb01a16f423bfb04722d080bbba7dae0f479f legacy-trunk +13569 81498c4e569d3498e41db4ddc23ee5ea05d7a920 legacy-trunk +13570 5bb4f50da474a5b457214e2a2de4fbc88d53642e legacy-trunk +13571 fd546cbdfb5f865a91eea478373f44bf1d4314ef legacy-trunk +13572 aeb10cc2300d6e6a5c84017bdd2ea320c8fab22a legacy-trunk +13573 222aee96dc42510a8a77d07b9dd2ebe95a78c207 legacy-trunk +13574 4f51e97a6edf5d78a09f2fcf37dfcd856220c732 legacy-trunk +13575 5a82fb4f78e594cdf8b8f03be0713c5197c882ab legacy-trunk +13576 27fbb08f8c38dcae741fe91d6a26ae939dfd2549 legacy-trunk +13577 253970a2c05d66455c91f7ac4eb796364ab744fb legacy-trunk +13578 256b878689f3b1e4a089993d4d9804b8a13379c6 legacy-trunk +13579 b3acd56520cd9faf72321e3732e37ee0ee60182e legacy-trunk +13580 bcc0be7cb40801db1a0ac8e0f8e53e4077ad9a5f legacy-trunk +13581 12098a8a95ecb8b5737c08b44a52a9d051383b3b legacy-trunk +13582 79ee6dc93d0e9e3cbd9f85db2997d91d1ef41018 legacy-trunk +13583 9631f9726a705b49078f6297d17530353884b477 legacy-trunk +13584 07b07376ca7288c49314eb5dc23cbe9dc51b1702 legacy-trunk +13585 902316c72b43f953e0d3c49fef9795d18e95a07b legacy-trunk +13586 e3ddb87616371cbb57b7c7497e97d97604742235 legacy-trunk +13587 49e8de0b5ea74a855bb5454b07f4ef781e4de856 legacy-trunk +13588 7ed6fba8265cb79f6117ef7f95ca9981b201fb95 legacy-trunk +13589 f11148c5fbedccf2b4aa3227a0a744923fc9cd78 legacy-trunk +13590 d6ca91063cec93cbebc7f82f59613e33e0a6d247 legacy-trunk +13591 f526db9a6cf836df01bf837fed2e1442ad62bf47 legacy-trunk +13592 dfb5add684c3e81215d35f6946cc15cf82677a53 legacy-trunk +13593 6282ace2795e06cbc5a30624d4656e81bad5bfc1 legacy-trunk +13594 bae3fbe2b591af9dea3b614c80cedf99bea8657e legacy-trunk +13595 0b65835e2b2909d65be2be9a4062ad335363e804 string_methods +13596 8e4dd6a161ffb7cc4780e17f7c78be603026ad79 string_methods +13597 0dd50a70c47e22d62f810c66faec2d9df955a9f2 legacy-trunk +13598 2fd65d0f3d415083cc1f730eb82d8b32935b6105 legacy-trunk +13599 9dd819d993263926c2a4f4eaaf7fe72bcc6aa501 legacy-trunk +13600 a84f9d3999ae846594a1343dfe8bb72a001affa6 legacy-trunk +13601 6613dfd7391718cdc5f4143af613a04a1e12a070 legacy-trunk +13602 36e258b577506693c412118866c784732cf7111c legacy-trunk +13603 4a1d6c7b09501f93c78e52b9bea4b9d6bfa5ad97 legacy-trunk +13604 6193cc145b8c7ad8e1cc97de8d19591d0c9d781b legacy-trunk +13605 d1b48ee14601f8a54469b516556a89bd4759049d legacy-trunk +13606 87a3935e66aacdcb1d48f357d846da77303d7d1d legacy-trunk +13607 3e5f6964cd3317b02d4e466eda1efab079f11e3c legacy-trunk +13608 76008f8a0e5f6cde1715fed1ed4642586dbe9539 legacy-trunk +13609 d04609a37dc11663b16243abbb5fca0488383a3c legacy-trunk +13610 5be9406bbb05ca110375cc85acf4306410afb8fa legacy-trunk +13611 d451a211c16a3d67d8ffcb1d9472648ca0910fc7 legacy-trunk +13612 25673884a3d0f3cd27387f92155cbb1bd1d34dd7 legacy-trunk +13613 84612a5688fc93c24e1d5f0d46663fad0a647320 legacy-trunk +13614 dc6be0ed398cfd37688c67ab4d5ff7fcb0ec2253 legacy-trunk +13615 4463dd7bb3e895f3e059c7addd9ecc3a99f0d8f3 legacy-trunk +13616 4a7b2b4d1669aef5f0de9c77154ea83f7d69df3d legacy-trunk +13617 47e003bd35ed053a89f59f3b4cd7437f88e628b7 legacy-trunk +13618 4b53f4a0a98acd1bfcdfc63033df5b75e03e1745 legacy-trunk +13619 7029e18b4f11e77c49578afabfc4d3e7a6c257ce legacy-trunk +13620 2e00b889035f2f467f8a40f848741f19524633dd legacy-trunk +13621 728a2500ea42fb5fa831bfc90c55e98fbd47c4cb legacy-trunk +13622 1d4f5f49de4ecf38f19609c8ce3d8fc82aef162b legacy-trunk +13623 769c6b4c5b887c34e753ff566e89474b390e3045 legacy-trunk +13624 4c75596e92f4f8adefbe03caec5377d9d83f7a68 legacy-trunk +13625 9c292ad8a6d463c034f542fae307ce998f8db51a legacy-trunk +13626 71ed0a2c279a605f1bdd98f677be5673ce5cda0a legacy-trunk +13627 fa2e3d06c7902e16bd7a20e73b8538c043454001 legacy-trunk +13628 872a82fd0ec41d4874b250f402420f5077b28ad9 legacy-trunk +13629 aa6c5f86df87a4e5eb3cd6d16b699eecac195902 legacy-trunk +13630 fbf40d7fd4dac265c12143783a7edd55ecda2d3b legacy-trunk +13631 67bd2aae2732eaa5a1a9d66173d79bd744f34897 legacy-trunk +13633 068fbf4f558a233c546c6a37a316b83a1ed5e43a legacy-trunk +13634 5e848c3e9c5c71c44e432d2c4556968ab6952022 legacy-trunk +13635 14374ba341a67a8f65585eac29bca7e46acccfe3 legacy-trunk +13636 1cde5230c50819e3d2473cc10d26714ba1b8c7f7 legacy-trunk +13637 6bf620375976349a96deb146656f837131d47b23 legacy-trunk +13638 99286daa900dd48e540fb792ca469c41acc87479 legacy-trunk +13639 12f208db42b0e92fac6a8f9376f324b520d6bbe2 legacy-trunk +13640 78f5bf1797504a9e669525fb0b53eb2f5aec05fa legacy-trunk +13641 be8ec828c0723728c27198bf417c322031938cbe legacy-trunk +13642 010e7b69d86bf0e0f1b73894a3e8a2f211e316d4 legacy-trunk +13643 dcc09228a3d24223c791a1ed48f05d5b7fcc9764 legacy-trunk +13644 939d914af5816ffc46cff772556919b6420f6b32 legacy-trunk +13645 da9c83b5fb0745ecaac4bb52344b8b2bcddc4976 legacy-trunk +13646 3b1980db4ae99046ced2a80c313154ecfb790cdf legacy-trunk +13647 164b4bc4dddd0f8295865dcc6721a2b06990f088 legacy-trunk +13648 3a39ebe276c8f4f8c89778f333000ce08a5a5965 legacy-trunk +13649 d423f57844b26b72b81d2eaf26857f4211d3f53f legacy-trunk +13650 306b49d682337cb956d05ec2df0096bd8cff1c1a legacy-trunk +13651 2eb2879d567f4b3169f2ada9a3c8ff03a622137e legacy-trunk +13652 7c239711221a24745f3b1e60f931f4b6060d841f legacy-trunk +13653 442ffe9a58c13c9701c47ea7366cd09b4705e560 legacy-trunk +13654 5e76c9965fe83901e0b17725fe8b80fb6d7b628b legacy-trunk +13655 9a20038f0b997ef0dc200cff1510afd686d1ea54 legacy-trunk +13656 a4b7242a4b74cbf47c9b6ca60472ec051af6ee89 legacy-trunk +13657 1c6fdc8adab0a4c6fdc5dd16ec63b70c090aa16d legacy-trunk +13658 f729bbc4a9f310f9f7ea5dff989d5bbd3a8b4adc legacy-trunk +13659 0d88e0d2184f8939abd0d7d0f0401cb5f93f5939 legacy-trunk +13660 41a46978a444a729d772f187717d262be3f11cc7 legacy-trunk +13661 2c585526447e95eb8f43ef9c3bbac0fa34a69a07 legacy-trunk +13662 8049d2de1e794aac4663fffcb248bb8824ae5c69 legacy-trunk +13663 84e34d8138ac904351ff8d567a2e3f1a9cb9e0f5 legacy-trunk +13664 c2ac896926cc4a7984e8528d93757a18f2e96a02 legacy-trunk +13665 0a5a8f513d1363a7a7931c4960a4e0b683177d8c legacy-trunk +13666 b56bda1900fc0ed00c79bd6abb3a4aa94d0d48cf legacy-trunk +13667 2c3af90f3faeb4556a5317fd21c33fbe7a5c8a01 legacy-trunk +13668 cdfa9cd4e72bb26a7d5c425471884749b346fd38 legacy-trunk +13669 c09541128c5a41de356f940d601f6b88631f646d legacy-trunk +13670 c95e1fd87af0f0696fb2797cd0cc5a288df13b4e legacy-trunk +13671 2b7c43d4b469b0f2220c95a66a0f11a4be68a42d legacy-trunk +13672 1dbc5e6978f9dd2f588942b421bf840f0415c0d1 string_methods +13673 41fcb40e841fd6a6313cedf2ecaabd7561be699a legacy-trunk +13674 d997e27e3312bc0dc66f270995d58731f89f3c31 legacy-trunk +13675 f62e465c4d014b8e36b85248fa8129de06918ae7 legacy-trunk +13676 bbd035e5a972cfa1eaa4efac7f443c1e0c368d5d legacy-trunk +13677 b8a29de9ed54b243abd34470995b9e466be0f701 legacy-trunk +13678 878ac0cd0e76818e2563deee3e2a9163e29b88ed legacy-trunk +13679 f4efba32320ec43a8194c21b58a2cd8935d5b139 legacy-trunk +13680 83f39fc85763bef429b9ff25a08e1c59fca73bb0 legacy-trunk +13681 36a65462c269d0ccd25c412eebf7d6ae0c85840c legacy-trunk +13682 1a68c972d0841e35d4e3e1303915421879046783 legacy-trunk +13683 6852ff03030884bdfe759f2f34c41a24c5c9771c legacy-trunk +13684 2c4d48e31bd5e78ab7093c2faa38e952d1d3e86e legacy-trunk +13685 43ccbcf4384f123113202d9aa6a89dce6f36cbdb legacy-trunk +13686 7ce5bae7f765a46ece155d0e41653b9212baf4e6 legacy-trunk +13687 2f1026db82280befe7f68bd3ea5959199ef0ccfb legacy-trunk +13688 aed19af60ea3252c8df0caee656e4fc2dce9b63c legacy-trunk +13689 0baff135c4b4e1b08ba0ae78bd0641bd3d4bf9a0 legacy-trunk +13690 d154ae7ca014f79130e4602946baf733a29af648 legacy-trunk +13691 3c8c5576109c357f1f6b54999b3dc8451fa741dc legacy-trunk +13692 6e6bdae8808a5319454b7e6ddbc6e3bf1c622577 legacy-trunk +13693 98e59c84ec31a3ebdbf86282796e1872606f7a9d legacy-trunk +13694 a4aba205038eb5a2ab99263e02f2301f87438fbd legacy-trunk +13695 3e0c7e6939bd02a67550ca1052d802da34b4d4ee legacy-trunk +13696 1a27dd06cce169dadc281d6adc441701803312fa legacy-trunk +13697 617e10fc5d8d328fa008fd137c7c949c1a8ae09c legacy-trunk +13698 5da57ea5fc641813b5f2506057fd0117d4b689fe legacy-trunk +13699 320652242e6ba06c515a3b68e50692ff724e97c2 legacy-trunk +13700 04929abcad86bcb5275478ed0cdd5ac969a55086 legacy-trunk +13701 8e74ed154f6087fec72f5e6384c7c760f7044725 legacy-trunk +13702 f766fb6f85265a49b838b7e3d65a6a1c68a81824 legacy-trunk +13703 3485a7e4600b9fedf18e655fbf8ae9de5464613d legacy-trunk +13704 fab81df566d0cfce464bfa84c8b504eb1c530450 legacy-trunk +13705 64b15e9091a92bb635897cff998757c35504b226 legacy-trunk +13706 5f5fc1031957aa5a42fe1b627a43c8e273561dd2 legacy-trunk +13707 245d2b605036d14f149467c809b8ca35a1d2d3cf legacy-trunk +13708 d6ab72cb16258e9c1111a558bfa4d6e751d5ead6 legacy-trunk +13709 8175bfdfbea9e40f819f0f6cde6a9d732f6aeaca legacy-trunk +13710 6c1309d82cb1141ffe31b6cf4213eef85ba5baab legacy-trunk +13711 35e0d03f2b02f9f8c5ddfb310abb9abcfc5fc208 legacy-trunk +13712 1e0b1967be7f3e5d94b28c4cd4f580516a034234 legacy-trunk +13713 938b46fa6394e888e3dbd78c0938725664794a42 legacy-trunk +13714 dbb8083f0ce71c39cc226db29617d0caca6941b1 legacy-trunk +13716 24c5bc6bfcaafe8ee5b5f6694d647c1d3dc550e8 legacy-trunk +13717 f6e6cdbadbb504e0c32be0a6f465a65c938cfe31 legacy-trunk +13718 123c38da6f4383f83fdc69c3d5d3e66f90895aaa legacy-trunk +13719 ecee9de79b1ef5734f8f1dcfcd60e1ca3aabe5d5 legacy-trunk +13720 3d66a1971936980a5c0c9416083e3bd9d597d63b legacy-trunk +13721 01c51b268c04961ff2ca5e6bdfe45aaa97256d7d legacy-trunk +13722 c720318e3c49207817dfdb0c369c13999552e146 legacy-trunk +13723 89961b6813ac3919b47ab92eaa588b0299420f04 legacy-trunk +13724 c627734eaf929a79c62a335a9da7f6a4150f168f legacy-trunk +13725 a8195fa329ac39bfc2a391fb2d1bca55531b4c1e legacy-trunk +13726 1c8e4227d98791baa9d80999cd4c5835d66549dd legacy-trunk +13727 4fdd33914edab48202965a28b9ce1140afb9275b legacy-trunk +13728 e8b24cd17df23d872e26e756bfa36a3ec67d5710 legacy-trunk +13729 c52fbc6bd38a917015b392d9c9e03a94de600216 legacy-trunk +13730 bca2d14f3e3650f6b17d4233f8c1fce57894c4e3 legacy-trunk +13731 bf565b18cfdc4fbad10f07eda8f9a382a1a20ea0 legacy-trunk +13732 7eeeb0d2b0a401b1872827b05a5660fb66737e15 legacy-trunk +13733 71e0b45d558c2f69e4b237175fcbb2c29245e6c7 legacy-trunk +13734 9157c6da76193a153a46afddf7deb41017954e99 legacy-trunk +13735 de8ffd2e71b5faead67022f380af9ae67bc16dd6 legacy-trunk +13736 98d457383a2d3f4b05fc77a6a1724ec37d77fc86 legacy-trunk +13737 c388f00affe7dcb3caa1fbcf36c37b5e23b39631 legacy-trunk +13738 5fe263fb674ab1a0067e6cac090c440665aa17da legacy-trunk +13739 a8b5a5b392fbc52c09681e0ca2c5a35784a3436e legacy-trunk +13740 cf7cd7b04fa659a5c213a2818e0d773fb2fcd340 legacy-trunk +13741 d5f46f599585bb6845f782ec7e9741ef7e172ca3 legacy-trunk +13742 d5b373440f99a3825ecb87a4805603e738564560 legacy-trunk +13743 eaf9eeab3bcff91dcdde1989ff5161a3a6ca1769 legacy-trunk +13744 96501cc3a663b478532547c00b6cef5ad87f6fe3 legacy-trunk +13745 b5bd3f979dc98c31cab65e5d07d7bfa1956528a7 legacy-trunk +13746 4aae5afe1f144442f56eccbd240770c85722025c legacy-trunk +13747 f406e78ec10bcdf6cefd9ca25fd99db2464d04a4 legacy-trunk +13748 445cbe8db8f6f47e61762ebcc679c1dd6b617587 legacy-trunk +13749 2d7331f4dfe351bc9fb8fae84b81b1bc1912d53d legacy-trunk +13750 8bb27f4ebe16e5a974c09536eb932b3f98616cec legacy-trunk +13751 3089461963c4b95763e5305c307a19b5e306353d legacy-trunk +13752 ecfe3d8cb0c34710d6bdecee1a406fbb0434b5c6 legacy-trunk +13753 2856ad5c679ae739c663112975ba5be306460649 legacy-trunk +13754 9a66e7807c773419e15866b8f766e2186ef84f13 release152p1-patches +13755 aa4c8e2ef5b429e9086ce81f67a8d161a93df5e1 release152p1-patches +13756 905226471b4c7f9fb1909c28ff8c338933c02faa legacy-trunk +13757 e01f23539b6ca8b32c50cb80a71a81e0d6d3b262 legacy-trunk +13758 a0c520c1d12d46b5e94839a802c9c8dfec18b325 legacy-trunk +13759 e773d2f0741dc5872492ee8e659948e96f128dc5 legacy-trunk +13760 e0e67cf2fc64451980b541f2d257134b66d3830e legacy-trunk +13761 10ebb25b242d7a0094a59a7029a77cf9d2fc6227 legacy-trunk +13762 b69859b697639cedf569e57352dfc5be1dbed552 legacy-trunk +13763 6dc4cc318a5c8a1033b9981838632cfeaaf82e69 legacy-trunk +13764 e746944e9a4a676f9c83723b2f3f7d58c53c67b1 legacy-trunk +13765 833fd2338c698db46343f76f0d78b10c67a159c8 legacy-trunk +13766 0287f5b3224cc7817b3d4eff3051844afda631a5 legacy-trunk +13767 05e0cb36914627a6922bb0350079c04bdc3bb325 legacy-trunk +13768 7fb2f4562f7657da349b4fa1e3495775d20580cd legacy-trunk +13769 779ce46e3430a8ad65ad916ce2a346df7dfe0f45 legacy-trunk +13770 56ef4c2e0d7efbbd91ca58c0d6d3bfb46e38d68b legacy-trunk +13771 577ea261bdf259aa32416710b01726a09886b5a5 legacy-trunk +13772 4cc4baa24a4006e3df21b43f6571de3637dfa811 legacy-trunk +13773 5f032686a3712d6cd83c68926341cb73bb94f654 legacy-trunk +13774 0061ca4865d734c8e88b1cada6ce2309c65a28fd legacy-trunk +13775 6aac31cd21025d8241d662540e76318867f948bc legacy-trunk +13776 4385b1bcbc3b3eab91f439a0670a2614ef5c52a1 legacy-trunk +13777 854b801253f0ffc6b7d72c01fe9d39fd5e4f5971 legacy-trunk +13778 d13da19418eca8def277ac1816735a8992542c80 legacy-trunk +13779 c9c188426e76c2e93c33cc301a414a5e5f6e8f54 legacy-trunk +13780 e61c486b358a5045425550936d433b88b9d18fc9 legacy-trunk +13781 aede7b2dd42fe0fe2d35846cc15de49ab9dc8b47 legacy-trunk +13782 b3f1abd3027fdb9fc10c2cc5f29abdfe2174b12f legacy-trunk +13783 2f07bc56e97e7ac75b4aa0021ffe91dae43f7f6b legacy-trunk +13784 ecc8018a418c34757ae07257a55e5e177afb190b legacy-trunk +13785 c6bdf032b7056e2a8dba82e1f0872efd86c2e775 legacy-trunk +13786 0d73ce6d62267cae7433fed674136c3442b220d8 legacy-trunk +13787 427c3b50058eab0c90a467801d83b6650d9d4718 legacy-trunk +13788 26fbc80fadf25adc0e291eb782d01e819390e626 legacy-trunk +13789 0d44b0dbdd951b1900df6dee158b7ea50d6bbb47 release152p1-patches +13790 7ad4e398f3ea3dc242382feca1255b56ef41fa94 release152p1-patches +13791 9286d3e1474c546359651341be9b8157bfada6ca legacy-trunk +13792 2341be74b7582f7638a741dfd2854bb70a32d37b legacy-trunk +13793 0a70a2c5d9e69978cea492e6303a90609c5dc241 legacy-trunk +13794 eaeea9e423698a3277383392335cf30a2cf2a94d legacy-trunk +13795 6968fdbb1a3fec93d38715b66b37df8314f0a333 legacy-trunk +13796 810c25d5041c4a534b2f55cd17ce82dde0bed408 legacy-trunk +13797 47171f2d7d585d008b282e86a777ac2caf226b1c legacy-trunk +13798 31becc4325239e0df49420419c661c6df063d9f1 legacy-trunk +13799 8336188a3c100520645398bde1ee5efe05cd9547 legacy-trunk +13800 c0b86a44a1203a454f08f1c8b6b6ffa5e9cf4911 legacy-trunk +13801 2b26e48a85a6a24e053ebeba8e6b7deb1fe80d2a legacy-trunk +13802 3fe8d13328c8132934725515da85e4fe7298ada2 legacy-trunk +13803 2e087539da604dcb595f3b34478742a077bc3bf4 legacy-trunk +13804 2cc6a12cd4118e2dfb774ca6032e484a4d5ab8c1 legacy-trunk +13805 92f7af42ed91c5aa75ae034861725782a00aaea4 legacy-trunk +13806 201ac069b0d0b8a883fdb4785abfe64696812d9e legacy-trunk +13807 ffcdb071169584ff97f1198e4da51f033e419205 legacy-trunk +13808 efa75c69857d2b282fc8f8a46847157469c35bd7 legacy-trunk +13809 672dbbc39ba0834b96c91c3a2b76662022bbe945 legacy-trunk +13810 428865d00eeef552e12c0e3e103b6db50a9c54c1 legacy-trunk +13811 2e20a0fc2c5f3b2b989948e2b99c75b7e9f4fd85 legacy-trunk +13812 3b981eacad7b43934e9676a9a92afe28e363f1fa legacy-trunk +13813 70cccca6bdf061e39fc345c45bad5689619fb967 legacy-trunk +13814 a499d20a35ca2cead876d2a09eb1ffd1caab3937 legacy-trunk +13815 cae4b09273b30c786d5bd31408875a3f0792300a legacy-trunk +13816 adf6d21ccd7f1aa44d8c6c999e93d6d01ab426a2 legacy-trunk +13817 cdd928d2293c282ef0b9fcfb2055d5fd044631e9 legacy-trunk +13818 d4112d4c5bb183e64ab77dfe10c979bcd2ce31b2 legacy-trunk +13819 98e303939b39e22eae27b6f216bf5d8cc5b67929 legacy-trunk +13820 20350ecca6e4b1328168625dab922c5383df2e44 legacy-trunk +13821 f67ce152719aafe9ca1cfb28e751e8b8ce5eca27 legacy-trunk +13822 837fe75d6dc19e036021c80a2618702a380f4216 release152p1-patches +13823 5189ea6e4bf6ee4231371bcd26d7574bd2eba11c release152p1-patches +13824 adf87d13a0c1aaf113e9453fc0b8e225ff2940e9 legacy-trunk +13825 f2c920d03f44ce31d397d807b0aea7c7acd1a0be legacy-trunk +13826 ccdf5dc2acf652647b8844456c3b8231909dd369 legacy-trunk +13827 964186745ea6a4d185698b7391e42318c3bfe02b release152p1-patches +13828 d970af0cece9620d24711b6fc246d3b5dd0832f8 legacy-trunk +13829 331ee4afe9bed86bde93101ed5ed55ae79397054 release152p1-patches +13830 b7ad1809be049f0238c1f7b8e2b24f69bcd40ff5 legacy-trunk +13831 78fdb6c0c0a151232827437363089ceddc0ff04e release152p1-patches +13832 a9d28a07a3276f89939f3b6b41fdf206a6df6c50 legacy-trunk +13833 d3696bf08eeea861d805993f7d5c2d1aeae555be legacy-trunk +13834 c6aa32fb3cf8faf161d3754fa47d752069380524 legacy-trunk +13835 0094bf18e68885b01ce5b223a820b25c790ff0c6 legacy-trunk +13836 2560236ecedbadabb793a3c52c33ded414f6efb9 legacy-trunk +13837 48f2b18bad5d1ffa13d6c84c79bd32abd98b898d legacy-trunk +13838 6d646f7e1a1c7ef4b156e1ea20d11b61885bbda6 legacy-trunk +13839 8ec6d2c6c5981ef265a4fd6d0b0e836932238cd9 legacy-trunk +13840 7f175c323b8e46a8c5dde9170bd40f668d273789 legacy-trunk +13841 8028908a98899123692c666d7fd6aa9f6e79b0b4 legacy-trunk +13842 adb5b6ddc1e5ef5c7f04d0ead8ab7ee480e55326 legacy-trunk +13843 424b31af6d510e155d815176f9fd8986d4ec0269 legacy-trunk +13844 44c822a4d950186569389c75f3fccfb7259c43c7 legacy-trunk +13845 15849feac3fa01dc61d0452d7f598171deee96be legacy-trunk +13846 d3c4c13e0138c24cef4d0c711f20926ae8d6747b legacy-trunk +13847 77b332dc2063644ef14a5423a4d04e855bc2de13 legacy-trunk +13848 e344c1ffcdaf536e33285dcb1946a37bc14b219b release152p1-patches +13849 423203aabefb48ccd66d68a7ccd5f1564be0a84a legacy-trunk +13850 58b8d216d7214ce3c2b3e68d228db50d5eefcebe legacy-trunk +13851 e6e45a60e1e0273af880b7380dc1fc7551470213 legacy-trunk +13852 b44240b273cfb533dcd34723e6e411c127a4f213 legacy-trunk +13853 b1bb6d7a335f4f5244ccaacea5865ad46bb8f18e legacy-trunk +13854 15813076cbef6af571871208cde5204d7fb5d138 legacy-trunk +13855 fdcb89d006954b8e939601932eb889107945e4c8 legacy-trunk +13856 00d577e44d341e86b230ac2707c37d12f8cd5d4d legacy-trunk +13857 a594d1e8cd1aa5a8206ecc10fa7e78c280d48ea3 legacy-trunk +13858 83a986180f41d687e07a594fa85b1aee274f9fbc legacy-trunk +13859 556664c639fc264ea3ea443cadee43921dc1f727 legacy-trunk +13860 3c44028b919d4bef67ed49cf65bdcfa44915de78 legacy-trunk +13861 898c33e216bb3607b17ef6111c156842eea9c578 legacy-trunk +13862 b4d2f5465b3f898fd685e4c4ede652ea7bdb8341 legacy-trunk +13863 05f68d7f91ac420c44127ed1685aa98c66c7f0d7 legacy-trunk +13864 55a1ef9ebd4cdec69e5aa1ffc4c6d48961291af6 release152p1-patches +13865 0ae24420c8a9f26fb00cd7ce717235fbd92144bc release152p1-patches +13866 c1b725b1a14462cb31310141deda5115c0b03d13 legacy-trunk +13867 c702a12d318d686c35d362778ff10c7ccf3f7654 legacy-trunk +13868 ed1b49822f7055e382f9933f5c3a6216fa0e5efb legacy-trunk +13869 082f42d5eae30ecd25e3ffa5d4a1b455614a11ed legacy-trunk +13870 a2b963f7ac99070513c662fcf55e6c8dcb7e3208 legacy-trunk +13871 595cb29a8867ee2ae669be1c84559511c51f1241 legacy-trunk +13872 ad757aff8d3795c11e04d72b54efedf26fec50b6 legacy-trunk +13873 4fdc9c1ecaf6b7ccffaa67b8b08f70df7d231a74 legacy-trunk +13874 fad55eec5dfcda13f2b89368525ab96b6e55f581 legacy-trunk +13875 f9ef368b8c2d3fade7cde58b9217035419551471 legacy-trunk +13876 487622288f9c29945042a6ebe3be7dcb56482b5d legacy-trunk +13877 3d154be871629ec6b6caa7f12c424eb67f0e62cb legacy-trunk +13878 70adccd4523a491f2eef28b03f3256df3e283e4b legacy-trunk +13879 334100218a4b1dd20167e5b8cae3b42f1310297c legacy-trunk +13880 42941e2eb9d86a48f23dc2aa3d773279971e229e legacy-trunk +13881 6f7507ef2b115a53bb9cf46b8f1a439ee828683a legacy-trunk +13882 7ae5c4051041e5a03e87205fd6b7616dcd2c47c2 legacy-trunk +13883 8b815805f10cb72bd8e0dd995cd25e311d32cb30 legacy-trunk +13884 d83fa1dd7b798199483ab7b461c058c086c3605b legacy-trunk +13885 cbc46284a5acb84cb53fb22206a936a3a269e003 legacy-trunk +13887 4c6c8effcb42a12be25c8fb7705d2852155fb7f9 legacy-trunk +13888 53b2974ed3d36f7242574f7df67850aff243880e legacy-trunk +13889 10668e8a09756c14de78bd89ecf5e769dcc1689c legacy-trunk +13890 826ef8f28782ce8d27219569672cedeed740ef36 legacy-trunk +13891 cfc6515937a6954bdb812c5aa3342eea225fdc6f legacy-trunk +13892 c5edd86e26980d4f99f4598cc1189015d8c334f6 legacy-trunk +13893 678a9a79c7e85b72622e4dcaa8543cdfb51e2ecc legacy-trunk +13894 03d1b98d178dcfe5550dd5cad70fead964e928b4 legacy-trunk +13895 915fadf22941139acb3c81a4666b15b40884828e legacy-trunk +13896 371b9762d63de455143d959228ab42377f82927d legacy-trunk +13897 5d57c68b2b321274b7c09eb92ea6112c45aaa992 legacy-trunk +13898 04f024d8541c8d59c749e8ef229adfafc984fc95 legacy-trunk +13899 e555ba04b92276dc8851a0ee1ef66b956575afd6 legacy-trunk +13900 5f46c778497150e0af701ed9de170c9a5ab4abdf legacy-trunk +13901 be603fcba001aafe74283b238afd5c87d2f090f3 legacy-trunk +13902 ca9bf6935c52a63e56940cbae5bbcbff9f1d3e66 legacy-trunk +13903 4c7d6043b43a2894443364849aca9715bd57ea63 legacy-trunk +13904 dfd2c7d34d443c6994c6055407be884310813b3f legacy-trunk +13905 d345996fcb6521fbc934d418b043bb4c238268da legacy-trunk +13906 25c0202e01a626381f1a1104e7a167b6507b15ae legacy-trunk +13907 8fdac16544e1c7c678d9b5bdef69ba7dc3ff3d66 legacy-trunk +13908 09e8aae16e99803297112dd1f8746091c05d4faa legacy-trunk +13909 23f278660ca9a9253d4392c81ef48d81612269d3 legacy-trunk +13910 8b63a6f7a523c4e15e5fa3178615bd6423a8bab5 legacy-trunk +13911 b9bbe88d955477a3f40b4a8cf77f545f1ee8c9a5 legacy-trunk +13912 29ce956fa7b75e7ae1362114ea4d07586171b935 legacy-trunk +13913 41990bce023a810386c6e9679d08b1020d2052e2 legacy-trunk +13914 8618415e7a66c71bad29f42f81e217948b900a8f legacy-trunk +13915 d919cf9fdd89e72b11c4ef934a0b0e14e7e9fb05 legacy-trunk +13916 7e05a7d0b511d5df058c52032fbec490c83e7c29 legacy-trunk +13917 66216f32403d1a91b4626077c3656c07933e1bb7 legacy-trunk +13918 040b05816b17f98110908eaf2707ec5b6d871a78 legacy-trunk +13919 a10db5b6843f290d2bdca8c70695a05825c31dcf legacy-trunk +13920 3229b138121e2a4cabf4337f64ff5553c9b053ab legacy-trunk +13921 dc9f1f964690ba4058c1635120a6c9cc3e0daa62 legacy-trunk +13922 3faa1218950eece33ea2dec8b266d401a767eaad legacy-trunk +13923 3e3c71f4d2ded1e4f1febaeb906438c0399ca461 legacy-trunk +13924 4ad14e4dc7e51600c09e945cf653860b4b75e5d3 legacy-trunk +13925 1ef1807377bfa9ec8ad3d67b1cee51c85a4ea5e2 legacy-trunk +13926 32c053c79ccb3c2ce0074806eaab51c48c60e96e release152p1-patches +13927 aca7b5eaf5e82f8a0f00b4c9f9f42c398002ab09 legacy-trunk +13928 c24c241853516ff2bf39d8f330ef460092808a22 release152p1-patches +13929 daf88e8edbc0e53dabd42bab427daaef9761d4ca legacy-trunk +13930 c208c4e9e2aacf8fd282546c8a89b271c6e09513 legacy-trunk +13931 1466280e6bb0a3b41d340dd5d1c5fb074d5b3a69 legacy-trunk +13932 c7e723cd63497cb9383942baa4025d0af26651b5 release152p1-patches +13933 019cd21c8c9fcb65843c7a367279f5ec5d7e9c51 legacy-trunk +13934 61a0f0215a976bceddc45108fde5263642526c3d legacy-trunk +13935 895102eea4851a778c05aaeecfec4562e7748133 legacy-trunk +13936 6ebf6938c887201762188b53f28744ff826d3cc8 legacy-trunk +13937 5486dcf13d774cacd34631bd27a826bc364505a8 legacy-trunk +13938 a14d9614da007e1a9306b4095286245922ed4008 legacy-trunk +13939 0b2e994ef175a5977039f2c4477901df5d36502f legacy-trunk +13940 4ca7b7b8a84916f5420a7655a9be0fd3dc8dd337 legacy-trunk +13941 8c5ee3c3d38901bdf4c53631ed86bebb9d595e97 legacy-trunk +13942 e0ecf1aefe04e2debe1f0d4c9268828c3a2eba7a legacy-trunk +13943 650e89d1557f1460ff097174f1093dda9c0617bc legacy-trunk +13944 87c5d0b3de59ebe01930959b5d9636491b06fb7d legacy-trunk +13945 791cf717c0be4bf1bba61bd5f3a8757c2796a727 legacy-trunk +13946 6c45171c1a1fe7bc8223f8b9b58aa07e2f3cbb17 legacy-trunk +13947 4882b2e52cb249a895068f9ed16ba7aaddc831ad legacy-trunk +13948 95e9698fc908c2d3ed44b9fa609e03b955f273e5 release152p1-patches +13949 c161d2b85207fa78e00f9eb3af6c2ea2828637cb release152p1-patches +13950 a5a513fee5b1db3a62143f5efe09e0c4d0fe6c58 legacy-trunk +13951 53f69b8676f3c1e58f1ee9c88baafa400d786e55 legacy-trunk +13952 bf368f2f7c006d5e773fe3434093632f4a1c614c legacy-trunk +13953 525b5a9acfd5dde51c9ab95b7d8b8024a570decb legacy-trunk +13954 f46c87b66154204a267d0876d822a4a4d21af3a9 legacy-trunk +13956 507546a87dcfd3bb50ff883e33de9891611d86c3 legacy-trunk +13957 b5511c017131fe629a24f0486e008f7b17a5467f legacy-trunk +13958 061156451d36af821f89649c850912c89b259b4a legacy-trunk +13959 0606682c7ebc35c42f2e11e758f81833b853f1ae legacy-trunk +13960 24138ec3f396211e464c00892663c0419ae3a36c legacy-trunk +13961 3fab3711c7dc687330946102e93bf2b2006fef45 legacy-trunk +13962 fbc2c4858cce8a5017a0e12eaf32f5594e570e2d legacy-trunk +13963 c8155d05d9ca6faf8e112c25f2e214dedd99f9f5 legacy-trunk +13964 288740765088d35d6a94c1f19753df1dd384d9ec release152p1-patches +13965 53b2f21ad67f0816dcb66b9b2a16b5fd78e1cd64 release152p1-patches +13966 2f9b65b38af2df0751511f2181d1d016b1e5e03b release152p1-patches +13967 c5821c3befcacbca94c1fd5405b0383dfce06dfa release152p1-patches +13968 c6d099b4eb42a4419561a13bb61dec72a41c45c3 release152p1-patches +13969 1e0fbe337518573ccef395a4bd06a0bc9dc2058f release152p1-patches +13970 a60fa74aaeafd9a5a48d2ba106c6a8000720634e legacy-trunk +13971 ca769d986514bb2902fb36a91187a47c82ec20d9 legacy-trunk +13972 1ce41989a03d0aeeb4284e4e021bc4f4295fb227 legacy-trunk +13973 41e0071db53a800843526ffe511883e1b59ebeee legacy-trunk +13974 10ad370bc5bd1aa6ccc372da06aa4af6ae911f00 legacy-trunk +13975 7a188aabef115c740c5e42c642fdaa3891efd7d0 legacy-trunk +13976 a989ee872961c0687136d5b8ebb5de18cf3a30cb legacy-trunk +13977 7fb8b0f13da0a09473a9c0f33900d0150ec73f4a legacy-trunk +13978 3330eb8da22274ce0dd11e7e621eb1876a05398f legacy-trunk +13979 bc085660dbc13383ba7b44442e9d4fa09fe899a3 legacy-trunk +13980 f3086548446ec5b0742a73a3c3b8e07ba6b2afb9 legacy-trunk +13981 9404a5b416b5f769d71d843bd6d2969d8802ade0 legacy-trunk +13982 98997aa49164236422bc3e624f01cb3e7e54e3c4 legacy-trunk +13983 84dff5cc721621c13e95d96fb192bfaf55b304c9 legacy-trunk +13984 4fb893448a6b95a140cbdf3566fce231fc14c1de legacy-trunk +13985 e3dc584e96230c4c34578847ee13a7f607b7f8a7 legacy-trunk +13986 a316cf9f81a768f9d372dbde2bdd892f0dec7dc8 legacy-trunk +13987 8edb81fa0a5f26d8650c3fc52831704583f47cbb legacy-trunk +13988 09c63d913ae05af41b89bb5273e6d5b397c3df62 legacy-trunk +13989 3d6b97a58e9ca40c4f8f3a89eef63f85a444b9d4 legacy-trunk +13990 06670241a7b1da227ee6f25a8bc8162ab826c1be legacy-trunk +13991 eb846b4d03856488e4a1c01cb34aa3a451f409e9 legacy-trunk +13992 32a480d0823cfa1c43ea0927be29189aab062733 legacy-trunk +13993 cc922a9a48c020b05f1ee57d47f8b365e3cfd7fa release152p1-patches +13994 be25aaca11f456f4c110d38702db90ffb00c84d9 legacy-trunk +13995 316be08c9ecda1d9fd2f7e293b216eb5880e9a63 legacy-trunk +13996 5f18e7853d9243e2c2f355262ec1337367e4e2fc legacy-trunk +13997 1dc3936e84db28161a60738fdc4ca5d8b1ef41e3 legacy-trunk +13998 013dd38a5031d0b983704710d5adf5230f9167d8 legacy-trunk +13999 0bc2ba1752305891846f0fdfc6ae6646c7948b6c legacy-trunk +14000 90f4830e2122f2daa0c1f817256a1816550d4f2f legacy-trunk +14001 f029d47dd2964a6c496982dfbe36a0d48fedfd3a release152p1-patches +14002 5b802438d8fc8d23601f52da12e532713de5c426 release152p1-patches +14003 3a506ab1c1389d0be7f9d7868bbf4fb753cf036a legacy-trunk +14004 aabfa0d7213c3ea8c817a17c834d6f2272f0993e legacy-trunk +14005 239ca4788bec0bfacbc07b74bfcee5891a263fa1 legacy-trunk +14006 8a6871e95d80b0ea5184cf711fb0d2e6fdd52732 release152p1-patches +14007 cc18b24dee3db79f977ab22ec58f3918d5fa20dc release152p1-patches +14008 2d79b491a529c549a644852ee5aadc3085583035 legacy-trunk +14009 e0fe4c7a9eff33debf0114cd7b3e6704e657e3bb legacy-trunk +14010 0a3bb403a4305a1d09532714938b8a6942ceb990 legacy-trunk +14011 38c7444f633ab802fa50472d81c19a32223df161 legacy-trunk +14012 e12be8f5188fd762535446c73980c2bde4a74394 legacy-trunk +14013 a05a056029028a80583d6afecf2483eb3bb21521 legacy-trunk +14014 e74ef2b505556ed3dee8ae01190499e3b2fbbc45 legacy-trunk +14015 7e429e46968a2461a1d3e9d0b4db416878f94617 legacy-trunk +14016 42698f345bd3040c42569f224984a8cf5a70e2af legacy-trunk +14017 ef03f16ae5eb2753483c06e24ae778f5527946db legacy-trunk +14018 6c5e12c5a6164d2d1a8b45146fca67e116a68666 legacy-trunk +14019 12f462fd24f753ee252ae6a27fa061c75a7f51d8 legacy-trunk +14020 d0f4a79b985d4dfdbbea5c60161277752679f474 legacy-trunk +14021 2459f11761f0957d88e8cc0e0c7ae569e400f1ec legacy-trunk +14022 95a9833b000e97dfe2adc121ffa280f347c30886 legacy-trunk +14023 17e12305973eab0a7b65ec1790c5489e0ce27040 legacy-trunk +14024 aaaee7b23380215c86b950c11e4a5a0441c5cb9a legacy-trunk +14025 6980d06e36075283f85044888915262c9da50bd1 release152p1-patches +14026 6757e80c74783269a22a058721ac9f6f90cfbda4 legacy-trunk +14027 077ff6efca35e84612951a7154f624a4a5d4b599 release152p1-patches +14028 a170b7f04c647a1c4d15fec0513980d50213e3b0 release152p1-patches +14029 ab2a6f910f653120962fea2a111eea1e81fda795 legacy-trunk +14030 a2673a8bdca282425a9f4799ddcdd0e4157c8b41 release152p1-patches +14031 148fd475b393dc72bb828761dc651fedddef87be release152p1-patches +14032 b4d07beac09beed573ae3b359c100c79dcb283ad legacy-trunk +14033 1855131a4dcd47a040fbac725172f8dd28de6b24 legacy-trunk +14034 c05363cf1b73b0f25fc716426260d999a26e5cd7 legacy-trunk +14035 96f3ebaca6ae580f112e2a701bae46c6875f73b5 legacy-trunk +14036 4f2768933313ad4114c606643f6f2ac43e3d597a legacy-trunk +14037 09d351882c510f96f96abded041ac609a541926d legacy-trunk +14038 af11adc3cbd717c6efea8f3d7570dbc6d3303af9 legacy-trunk +14039 8b46ee325dc03e628caf7712bf30506bda382fbc legacy-trunk +14040 c9cd4bbed8e283e265711d98e61cb74232d69ea0 legacy-trunk +14041 f21f19886ee38f5f8ccabaa8a2507835b6643361 legacy-trunk +14042 5c5a3a5cc79fcde62d1c48fd0aef3c45ce70184a legacy-trunk +14043 e2408744dc7f39e769fb692616bc37738aef60ad legacy-trunk +14044 bab46aca2bece66034b81e4dddc4ed22667af166 legacy-trunk +14045 a97e625ed5d04d05d1e0f6d8c9634695db278fa1 legacy-trunk +14046 7dc927204d6582e12e39769d2dd508e42a7813a0 legacy-trunk +14047 0680e67a0d495737d2132c07ddf94db87f688ebd legacy-trunk +14048 6b8f746bbd5aa02a23b0cdc3bc5a056709be6c38 legacy-trunk +14049 34b6a92fa08842fdc770ab20c0fcf183b870e54e legacy-trunk +14050 9cdf3fadda9276c62a514bd5a55873335d4473fd legacy-trunk +14051 58513eba566430065430108bb342bdb0fc42ae1b legacy-trunk +14052 bde06d9d4cb4f162fa81f6e11732a05812dc6604 legacy-trunk +14053 bdae61aeba55e8738ce3f339657fd816772a61ad legacy-trunk +14054 7034b75aad03b7146ff515e66875a239feff6419 legacy-trunk +14055 3b20e50f2d83a3173d3a2fedf5dbee087cd357e8 legacy-trunk +14056 d023d1c9ac49146f11875ba955defb19f6da6ae1 legacy-trunk +14057 ceb06de23faa92e1e5a1d81f22926eb8758fabdf legacy-trunk +14058 612b8230c6e7fc69701f41c89625640f20c36b97 release152p1-patches +14059 02ae2e555ef9d26efffd476670780c2c11c68f37 release152p1-patches +14060 59114be21a75f897cd4bd87a9a8a71407fbaadd9 legacy-trunk +14061 dfe3719d78e9dc6eeacbe364c40de6baf7444db1 legacy-trunk +14062 33f7b12c776cfb6d94f3dfc5a192c8f01944c6e9 legacy-trunk +14063 cde8837c8259ad09d26ffc46a1e595557f56cf43 legacy-trunk +14064 923b43db381462b2f743bbe88b04a0fd5a7fd16f legacy-trunk +14065 16b11acd3e8c3d58d3f8cd8c1e3f812cab465b1e release152p1-patches +14066 756351707cacc5bcd0b9e01dd0c970ff64f6367a legacy-trunk +14067 d7199b9f90912aa3754208e407e58b9f2601b87a release152p1-patches +14068 4c5030d42c6ffecd327e93ba6be4e5197b21ada5 legacy-trunk +14069 b04bf2774d05edc74e519b35b75089063599782e legacy-trunk +14070 7efecc5a394c69a7fd30064d4276fa5ae54c2ea9 legacy-trunk +14071 7e5f51dc1b4b9a149570346349351d1697821283 legacy-trunk +14072 9636a502f7917d1d0d22c7d305ec9b74c683df55 legacy-trunk +14073 33e8e7409b1202031aa49958d0350ee5031dc25d legacy-trunk +14074 ca88e59a6ebca3b8d31b1717e42b5eb61f28a82b legacy-trunk +14075 3b71cdfa02c742c262d8ac1962d841161a98a7ba legacy-trunk +14076 c7f0aa4510e2638e04999e18e3e4e031587204cb legacy-trunk +14077 da6f1693cd6513c03207783aacbdf46f32a2803f legacy-trunk +14078 9eacd29e606618042de5284bc083ffce335e9e2a legacy-trunk +14079 3f274478c4daa989d0767481879d1a59be58acef legacy-trunk +14080 53d9c1560fe14f3fb9404a579cc01ebeb1233a2e legacy-trunk +14081 664386d6967caefccd7ac9c2a247936742a322c2 legacy-trunk +14082 9ca30453dd4e4e4761bfedb25330b13129ad397e legacy-trunk +14083 f9f75b212da4189cfaf2750c9655fa75cb09a26f legacy-trunk +14084 01f7a136c677f11983c25e2e37879c3cac1f41f8 legacy-trunk +14085 175d7f6804d7a3b6c93ada467d2b16e07ab65dc0 legacy-trunk +14086 71281ff8c6a2ba560916440acc28bf191ef95c52 legacy-trunk +14087 cc412dfd79f77c7db088a2bbc14b5956e5ec21db legacy-trunk +14088 16fc717bea3c9aeb3806307f39ee651b6c6f44a5 legacy-trunk +14089 c0eb63c8f1febb8ca98f30b91ac61ab91ea7de9c legacy-trunk +14090 ba07fff72511b2c9481c20e7f67be670916556ad legacy-trunk +14091 4dbb7c609ac1f5b5d013737eac9a826d57ee8239 release152p1-patches +14092 cbf58cd0bb5742929292664b1c9276ea30adc98f legacy-trunk +14093 82fb02de542113937c43ed7bdc3b060c49f8d723 release152p1-patches +14094 5a2f13a7bd45f0793185130212cdd9aac1be70a1 release152p1-patches +14095 80ac07681abeb123be18ada1363aa4919ff94cde release152p1-patches +14096 9066f627d362f1193540e4504416cf412630bec6 release152p1-patches +14097 b5bbccb75f2dd935d6ed5bbe04c2294cc69d896f legacy-trunk +14098 a46c9cb42123e9e9c750d1f5ce5c7e59363ce342 legacy-trunk +14099 b12a11ae123cf85b09d9f2433bb2d29f0983e327 legacy-trunk +14100 5c135ceab20c544dd00a58f17e8fdb9f51d8b658 legacy-trunk +14101 761d25cfc259412d58fbe09755c482db3ece7352 release152p1-patches +14102 f886fde765a05700449099bf79137c61b2fb0943 release152p1-patches +14103 28b8585354de5808943e8e393221fc8461279df5 legacy-trunk +14104 535f40f9f87dc6798897723470dab3dc94a6f5db legacy-trunk +14105 f83b74273da23a008c2475573745b26b9bedf2a0 legacy-trunk +14106 80569d7253291a00e12a5305060bb00ca2517246 legacy-trunk +14107 8cfcd273fa5ca2b644eff7b7de10955d8d315db8 legacy-trunk +14108 2951e2d278522ed4037cb8520fd54eacdf8a61f9 legacy-trunk +14109 a83d2a1ce197a39a722ee82cfbc34a251a9c535b legacy-trunk +14110 68364bf002f13890b2a8d54594b1ad165a826c7b legacy-trunk +14111 bbd3a8ad7cb766729a6c164bd74d6b34b94d94c8 legacy-trunk +14112 b3e55ce0ebd75f4b38a489c4b9db467e60cf20a7 legacy-trunk +14113 afb987a844dba2178341f46114c89e6b1394fbd8 legacy-trunk +14114 260d40f200778fef8c2b0d93c4cddfb1798ffbc4 legacy-trunk +14115 4c693eb323c6f31732ef5ed8c36bedd0746143e2 legacy-trunk +14116 50f7d345f157a6e075d17d5e4084e09f8d9f5b2a legacy-trunk +14117 b605c466d1c0e8fc1663cfb066f25d240ce9eed7 legacy-trunk +14118 18fc08fc9fd478e2dc62178873e24ede1d8346de legacy-trunk +14119 8d4ca7be73798c9700197607a84f27a0156381e7 legacy-trunk +14120 90ffc07f5d10f01d6f24a15374aef94e840bffea legacy-trunk +14121 7555990e8db9a413a2462edd928c87a278cd1a68 legacy-trunk +14122 f701e9163c76d135299e834bcac93af2bc0ccd4b legacy-trunk +14123 236d8428c4c50dbd1b28ae0e0ea8da176165f728 legacy-trunk +14124 c042e4140f1ee3c89ca4f61ccb3f1763eec38633 legacy-trunk +14125 73ec66add9478deccdfc65b7e08f551452bd25cf legacy-trunk +14126 8198c531bbc47d58191b4bc930782f0834575b21 legacy-trunk +14127 eeac54cbb1dced0ec9761dcbd0538724ac169373 legacy-trunk +14128 8943b77f219af172601691567be3ea7a982fe270 legacy-trunk +14129 39d66a067d0bf3862313ccb98ea3aa3e9f01eb7d legacy-trunk +14130 bef86686b752b7aa18221638ae5ea996074eb510 legacy-trunk +14131 7a4f6249c9787dc6ba291672b09ea05251fb41d3 legacy-trunk +14132 b17ef54c91c41fe2b403cd271c570c657c079425 legacy-trunk +14133 156b1bfec3b89d7c0610ea7af72a036d6916fcb0 legacy-trunk +14134 4520f693b765f683293faefe2dcb70e79dc37c11 legacy-trunk +14135 22f4cf16b5a31618b332d8528e677271e7602b54 legacy-trunk +14136 2cb56e98cf523ac5e8e335442a8c9bcff59812cd legacy-trunk +14137 1e7efc18a89db451502aec1f4ebd472c66f140a7 legacy-trunk +14138 c71155ce12159faf2c0ad1832d8f130333b87153 legacy-trunk +14139 ca15ccc26f0c2db592ebf7f24b5a026ebdfdd939 legacy-trunk +14140 8efeb871215b48f1a3cfaf215ac18f1f61a9551b legacy-trunk +14141 04afb87d1103d12fc647b0ebb067f93ddd946724 legacy-trunk +14142 e2660afdc381b8c65f18ec2cca4a6db89dd4f0b8 legacy-trunk +14143 5255d05040c2522275dd335482107f2eafe0d397 legacy-trunk +14144 d4731e43fa6053a42c43a09b00153f0746c74be3 legacy-trunk +14145 6abc50bb47074d38bc8aecba38401271cd85d598 legacy-trunk +14146 885820fa7e318778ab76bffaaee6a661d484d5fb legacy-trunk +14147 07d2ea71acdc660062ddf94cbc0dfd87a3d1a2bc legacy-trunk +14148 22c03ab4fb16525d5332afcb321fa800cc73c583 release152p1-patches +14149 6adc3c5fa185a11a9ec436fa8511f1bb70ceed68 legacy-trunk +14150 c5abc81dd1eed902448d5f0358abbbbedbc3a464 legacy-trunk +14151 fd0d31c346b2bb4983abd038646b1a6b5a1ad638 legacy-trunk +14152 55df3703c953b67e06d50ce5b3d4208d670b3fcb legacy-trunk +14153 f57ff4289fc64b6b8d26de61431f7e0d67f79f48 legacy-trunk +14154 57c1685acb1673eefe402cabff0721517ab37f1f legacy-trunk +14155 4c3e55c828d3be3a2fc7aceaa0026be0f3a6b239 legacy-trunk +14156 49d6d30277da77c9bdf49da42abdab0821bc3c04 legacy-trunk +14157 66aa21f50ea3510cfe0ac29a5f937059e781413d legacy-trunk +14159 3fe27bb2f119340a0314debed0225fc2edd969e3 release152p1-patches +14160 273a5e9aa633e303e2c6b7e9f570141213954f8e legacy-trunk +14161 86a163a53b1cab7e89484f42ed3b0aa3be6cb8ad legacy-trunk +14162 f3611cb3a261737421f19e927aea8e6ef76304e6 legacy-trunk +14163 1775900db108754f6f50bee39b39967564b7429c legacy-trunk +14164 57aa277d7a00de7e31dea8be0831c7a78559fdd1 legacy-trunk +14165 c6205bc710ee8b2b1d2dd2f3ed855586482253b5 legacy-trunk +14166 3ffdf05f5635df3bc48fb0b203f883e9ab217348 legacy-trunk +14167 af5ad5edb7a5da1f018de79caaee9bc5d53e0e3d legacy-trunk +14168 4bd4bd3b597abe65f966b7bc98ba78e9ea87f42f legacy-trunk +14169 648d97bd3ac6c3775c8d41de80b45ab6916d3b9f legacy-trunk +14170 1131bfa1ad99323689df7a23c2c7dcdc1616a66d legacy-trunk +14171 1b2e3e2a243793f60da02dcf95c8d6039f8d38e5 legacy-trunk +14172 cab3ff551f4bc62654e28e1aa7658847a6e60a3d legacy-trunk +14173 f24965e77b8556bad5def0a04e817a60e93de3b1 legacy-trunk +14174 e0e011e4073c5a5a2db134f3b5edf0a0e904b188 legacy-trunk +14175 15e5bd89395a7d5207d2381f72be318c2e73caf9 legacy-trunk +14176 238b439882e523b8d5906e9ba160097cd72d6e12 legacy-trunk +14177 01171be4769d13e4379f5b747efde87d3ca8fffb release152p1-patches +14178 770618d9a7fcfa0d78e2ab375fbff5893124d037 legacy-trunk +14179 78fe87ce0ded1062370360994d37744d5e3ad5be legacy-trunk +14180 14561e8395bb9defe853e0693f23811c22078db8 legacy-trunk +14181 0bad9d8b945f722394ef0f17227960230111d19b legacy-trunk +14182 5738ad7371144739a2ef3c3a4f42d82d0ba5c4d3 legacy-trunk +14183 2aab4748401222e70b6d7e15b5032ee90c4475ce legacy-trunk +14184 1cfd81768e7035d39d314780b27a384f85137bd2 legacy-trunk +14185 ecd66798cf0bdbcd99f39bcdd65520dac7c6eb57 legacy-trunk +14186 13daad8a6eee108c84193c730d1b74a486a9b4ec legacy-trunk +14187 69216c11a1bd7c66f224d934427870f582c1c88e legacy-trunk +14188 9ec7d978800d266883ffe8fc457a212d5078d226 legacy-trunk +14189 b360410d63c6771b818c7cc6bde7fc99b44aaf91 legacy-trunk +14190 6d8cb66cd2385645c0567a068dd67bf276614243 legacy-trunk +14191 08313ac17cf3dac662527d123abb201c04d339ba legacy-trunk +14192 675284497443e229691089a0264ca0bc09197d66 legacy-trunk +14193 20af02a57a5f1e35814897a54459e366e9626bfe release152p1-patches +14194 68c259b6e6cdf8cd3a5feb7e2f33fbbd1234f5a3 legacy-trunk +14195 590272abe69c85bc3ffc05d2db88067e07241b3a legacy-trunk +14196 bb1f43f25ce09a53b9baff3d054a9e40b35fb199 legacy-trunk +14197 a70dc73a28de0932450b44b92ff68e64dc4c9a1c legacy-trunk +14198 107ce29b04a45d848381500576562a694957d944 legacy-trunk +14199 528559a0b2f2520e9871d9046cd83df4aebb9667 legacy-trunk +14200 91245dc940ebaf021f4378e6ebecd338c19fff80 legacy-trunk +14201 8cf7b23fb95516e03cb1902c26305ace73310c24 release152p1-patches +14202 c87b861c6ec60611b7309bce012178db0cc6709a legacy-trunk +14203 0ec803cbd87225ae5f03f4e7fb8d7d46046c978d legacy-trunk +14204 65dc082f7004a1d3fa588da6803df2136588ba8f legacy-trunk +14205 6f2119cd99d256ac67e7823835f56719d166529c legacy-trunk +14206 3c213e372b2289f787a3e6b2944da71478e0818a legacy-trunk +14207 92c53b0b2ee5a0d690c5508c9d7d92842425775b legacy-trunk +14208 c6e143dfc5a332b0590b0b5cc4f88f1af53be85c legacy-trunk +14209 d4ea1361731b63560a810c605690c55b862dda2c legacy-trunk +14210 47f93a969366aba6e40399c84ea0b510489d97b2 legacy-trunk +14211 d7e96cde6b47bdd3fb56653b7b63acce1c246bc6 legacy-trunk +14212 c35eef8a2171a525dfc73ff3fa06012748583304 release152p1-patches +14213 4e3095c4aea0e77bcdbaa61226cc580c5473aaee release152p1-patches +14214 dfe2bfc8050cb92938ed64f37ddeba4f90b44e7d legacy-trunk +14215 b8273e5de374bfb077133f7dfbbead497c769001 release152p1-patches +14216 cf7a0f1b7b48b6c8ef80a864be7f95915b193fd3 legacy-trunk +14217 4cf925fcb5619e6b6767f4cd16df5042e7bed60b legacy-trunk +14218 f4cc603dd7991b31c41bdd31ff6f756bc121a9ed legacy-trunk +14219 817589156f21617f87dfa2c1e413b3a74b1a38a8 legacy-trunk +14220 778546dcba052ba0fbd5dba451d1d0f86c5b5418 legacy-trunk +14221 3322988010b5e172d483145e42cceb00955f5fa2 legacy-trunk +14222 a7f27f303995db54e214f8ba78756e0b69f638b9 legacy-trunk +14223 a94c296a6fcccc81156d7eb02e206b0b9c6208e2 legacy-trunk +14224 cf7fcb0c5bde2b1f539865dd54f512e68bec5c50 legacy-trunk +14225 1fc8e6673b48ed2623c3ecc21500a4507aab7eed release152p1-patches +14226 84fd31dd4b121b9a721eacece67a0ea24ed21fec legacy-trunk +14227 a7df7d523d2935ba76258a75fb4deb9c4273c9cf legacy-trunk +14228 bcb0d639acf21bd24d1d4eb3a74d5226f0870135 legacy-trunk +14229 069a1fd40abbd75d67f92ae9239813f9552ba1d1 release152p1-patches +14230 86890c073c3bfbcaeba23dc1bf8095710f82b421 legacy-trunk +14231 1dcf9b759374f213aa79c2802df20f6cad5a5e54 legacy-trunk +14232 4a3247eddc43869cf02f144a4a0415bebc7f85e5 legacy-trunk +14233 472a17f2ca9fce31702afd5045e6adf7cda136e3 legacy-trunk +14234 c0d4ee9391b6822616df0d7c4be44c3428e53927 legacy-trunk +14235 d0934a8038f6a967bad89d4e541bf52a48402fe1 legacy-trunk +14236 8705ea390dba052b094ae4a127bc2acbece43deb release152p1-patches +14237 ded96367e8ca72beb2d485add9e1abb39da4109f release152p1-patches +14238 d33520820fafac4daa9d12e1d574ac39d6300ff5 release152p1-patches +14239 e8276733da8fbe8c8d0f615c1873cfa7e3a95a9c release152p1-patches +14240 0b0194d4352f3124c8de25ba6684bf49e221df43 release152p1-patches +14241 38560a3a324912c5691348e8597727c0e807c0af legacy-trunk +14242 99a01cb3ddb5ef5d15bc41c073aeba0f3715d69b legacy-trunk +14243 d88996e46cb2ce011f0efbd0197576a3f810088d legacy-trunk +14244 99c9b126690dfb0502358476b0a1d6dc827c6165 legacy-trunk +14245 4c3ca6c05bcb321f8d7fa9b4082f3e536c76f0df legacy-trunk +14246 0ad23324016e4ed312fb97d4603e560d31f37993 legacy-trunk +14247 fd5cead733b68288d093100d158c1cd3e823a720 legacy-trunk +14248 db756d31e727a3bbcd6e7c5fa24249bfa3918e0d legacy-trunk +14249 023ed266307463cd205ff1d82dee9f2b112acc5c legacy-trunk +14250 0d27e8d8f04c1a2029644ffa1ec3d7ef556b478e release152p1-patches +14251 676469f75ae6723d71b65c6ca11208b6864310d3 legacy-trunk +14252 ea61044f98aed862f2e9870d60d3f260d6ce2e4d legacy-trunk +14253 ad85940840cbb5b588b7c282aa3c830e24c8abe0 legacy-trunk +14254 b896c12c2eea5ca349705d8f7b16d634de25c905 legacy-trunk +14255 c434f9427c9b03c519c47aac87f05079d971488d release152p1-patches +14256 24f814d9e3ff54545be27f7d94832d7305811ecc release152p1-patches +14257 00017225f077955513c7682a5701afee32a0ad99 legacy-trunk +14258 2ab74b193286d9c8dba61da6f7fa836011cb4c26 release152p1-patches +14259 528ef38b3d3a767a2a845ed74b809e2bf9db6b06 legacy-trunk +14260 7fdfaaa6582709643152f7f32822b260cb664543 legacy-trunk +14261 e998b350a4bb1da12bb8ecec1689cdedefe78a63 legacy-trunk +14262 8283554f1319a4d3ad0cbd24c143c6bcd6a3a3f0 legacy-trunk +14263 7709c98353828c2bb23babdead2708d31fe7686f legacy-trunk +14264 b7f262873be04bbe4afc984f6626b351dd88de02 release152p1-patches +14265 a2386b9f474d8ab1a547fdcd6370b96dda9ac6fc legacy-trunk +14266 95511f39319a4a1f79a4009d1acd55dd15886b3b release152p1-patches +14267 b800e36aed4ebdabeccddd285e20fce11d2c23b7 legacy-trunk +14268 442d4cb440c882288781061114ea5cab9437bb2c legacy-trunk +14269 dff7a03e7d24eda0917a8fe223a25e67b1b21b55 legacy-trunk +14270 8afd6fb588ee7b9c653fe82251f60b4baaa36253 legacy-trunk +14271 5e6e9e893acdcefd43aeb5396feb31fb0d9ee554 legacy-trunk +14272 a126fb5c62dc747884f8268a8f1f9dfb02336482 legacy-trunk +14273 48370c67dd9e6c7fb192da3280dc62d5265c922e legacy-trunk +14274 489483b65b3a3eb1bb9533843743bd409a4f6169 legacy-trunk +14275 69c99516227064741ef5e70f36bc20635197c23a legacy-trunk +14276 0756dfeec4eecbd8377ed5143c8d0be434e1ca12 legacy-trunk +14277 216efdad9a4b6ff6545eb37aa50f8e17cf3baf5c legacy-trunk +14278 ff91985362c7cc0d25bceb02a417ea3eacdde3ac release152p1-patches +14279 f94d66016921e9d0e06e7a3f9675bb2de03922e3 release152p1-patches +14280 919b37c52a842a265d66fea6807c3adf8e84bef6 release152p1-patches +14281 cbf44102d42afc5db82b861d4d2d3aef8882313e legacy-trunk +14282 6d1d5f3cca5fb62b978a69b5bbc011f794f78d73 legacy-trunk +14283 67c6239c7bc7afbfab515d1ab1adc854f6ad88cd legacy-trunk +14284 47f75a17b10374b2cd4cac60dcbca400b61f5d7b legacy-trunk +14285 a94713d6d9f6a8300844c22a4ebaacbed58d84ae legacy-trunk +14286 5efb62acf26ef3d93f7e62eb77b7b4deb7651fd9 legacy-trunk +14288 b5aec33790c8e5525de4281820dcf33b21d3478a Distutils_0_1_3-branch +14289 93bed60355e4e9e584876bbf224e0d8caa7dc4a1 legacy-trunk +14290 8b348187e303326c40403381ec8d118c8576762a release152p1-patches +14291 ef1e63f77445990abd47bbd8305a236e83dbda51 release152p1-patches +14292 f680ab106e861e07e26b515152f460a3820df53c release152p1-patches +14293 47d70f4f635f310e91af4f3d3314396650bcb906 legacy-trunk +14294 1c4354bba42b9a19beddf207ab8965cc69d380af legacy-trunk +14295 09dbb47034e0f52bf90df19f947976db79e32f56 legacy-trunk +14296 4c16f425c712c42370ffe3b8713ae048a9f0c165 legacy-trunk +14297 e3499102257175112a01caec313bfdb43c3a2f43 legacy-trunk +14298 f4f9b6b44e9e47c73881623c5038724e3ed9e705 release152p1-patches +14299 0dd520f4dce8dc1ddd46b50c28e37af48ffc888e legacy-trunk +14300 8f88b31843abc52449f0f4ca7d833b004a885431 legacy-trunk +14301 890b11aa2ebc72f8684e0b8329cb1bb63c2cd549 legacy-trunk +14302 de44f511768ac6670da54cf1d6ff703352dcc327 legacy-trunk +14303 b0eb421f8ae9beb7d8a178ae3fc315d6c7b60b84 legacy-trunk +14304 5883713e2da3a61f139a4cbe8e8562e231e492de legacy-trunk +14305 dacaa34dfca46f943c0b997fffca8b77bc47117c legacy-trunk +14306 d36d312cf90bee860dae77ab12e6d73e0e498fa7 legacy-trunk +14307 ff79ee43b8a1fa758e0d994ba23d14897db8cb4c legacy-trunk +14308 86e7e5ecaf7960b16313889dd8d6502bfcbb270b release152p1-patches +14309 497e011ef1a325c075fe2fff27835490570ee329 legacy-trunk +14310 7f29339ec3a50a3a53423a233b6a8d1a42956201 legacy-trunk +14311 34f53c36ba9a1b1d0c517e5282c8c6c4141c9257 legacy-trunk +14312 716fb59548be49fc3969a4fbdc4810b557e03c1c legacy-trunk +14313 d10c108d3fd7621252f95ddb13364ee6ccea6c29 legacy-trunk +14314 b6f52c1ef6da8a8acb0f7266dd1cf4f68a1cee26 legacy-trunk +14315 6f4146846337878c0bbf14982b2c0b401d53d87e legacy-trunk +14316 4a23cc49e2b064d9d26f3a40c4497a53e09dc8b2 legacy-trunk +14317 d9000ee959e537e8d928634c1f20719da7de6287 release152p1-patches +14318 5d625a365e7657a292803f2cda29c9e855adc2d6 legacy-trunk +14319 38c4d61db7ea1f91084b351440655449a0134f59 legacy-trunk +14320 6546ea06e15709925571a49302f1af70845a7b89 legacy-trunk +14321 9250e5d3aa31fdd4f9f6fca191e1ceb607209be0 legacy-trunk +14322 abfa1cb1ed052a542d2a86a9f9141e2100c5e339 legacy-trunk +14323 b3223f03c9ea88df95f665eb8da0afcb8e17ca03 legacy-trunk +14324 627b4dba1192e25b098b03c1f94b4bc1c65ecc8d legacy-trunk +14325 e425556e698ebfa336a9f68d45c10a151d8d1d1f legacy-trunk +14326 e9169b19e9e5c447c65ad9eeb520f47315c63f7e legacy-trunk +14327 1163a7a1cc679b820a021ba8966bf5fb87a627d6 legacy-trunk +14328 839f8f86ccaa3aa1ee31d9419bd9170fb419a8dd legacy-trunk +14329 fdc9eeb89e0b30e6681a4a24e60e35418d122f7a legacy-trunk +14330 eb381ff17a3198c2324c644f3164260a6eeba7e1 legacy-trunk +14331 422337c3229adea1f7761a03abfe35eb6c4cd7ca legacy-trunk +14332 676e647b1be6b943c985ef562b9a186074217562 legacy-trunk +14333 71d038db0dd23c2f1204542e3b0f01a4d5004055 legacy-trunk +14334 b7aebc84cbc164a5e00c9dec57f8aefe73b99b8d legacy-trunk +14335 a532932ac408387d194ba57ba27cf2e1d95d28c1 legacy-trunk +14336 1e952d933abbef5d3d9be2623e9d4b0259d106f7 legacy-trunk +14337 985723498b1ba642cc2695e60971e8b9bf8e6d29 legacy-trunk +14338 6025b07c5c2966e56c370c9028b0594aed3d9b83 legacy-trunk +14339 0b46d250e199cfa6e8a71b3082cbc92cddbf06fc legacy-trunk +14340 72ebf91daa05d5a730fa37391b5aff0c537b6d9a legacy-trunk +14341 c976d693ddeb36405cd9718034aff9e6efa61c15 legacy-trunk +14342 78f0098812b74b257b25c541b02e0405539d9702 legacy-trunk +14343 6a99ff069457d718d4189100ae5eac37d11c6c3a legacy-trunk +14344 89d308fcf6f458363b4dff032c6945fc6e9c9316 legacy-trunk +14345 e19a350994b75afc1bd4791c2c1b7a05ffea2bd2 legacy-trunk +14346 653a9350a81733969b3e702763fda5e04d07ab1b legacy-trunk +14347 83d351f948ab75cedc8a6e6fbe32db8e4b1975c7 legacy-trunk +14348 a86bdfe4572584d6c6c66a2b29c8b9dcd0b7bc12 legacy-trunk +14349 23e7d9781013115693cde029403790930464e068 legacy-trunk +14350 da7f5f6a849d0ee8a82ae7689cf34cb80812a4de legacy-trunk +14351 840e18eec07f4f55c8739022a3b5f56c34cf920c legacy-trunk +14352 c978a23a4dab107591e8d0769f07abdc17f4516c legacy-trunk +14353 3c77d6c5c8e9180f2fbb9fbc09362d8b7468af08 legacy-trunk +14354 45c35b5376e4bdbb5bb3a61db70ab88e4bd5fa9e legacy-trunk +14355 77465d8b9f5e290dbc3427e7cf22b0fde7cd449c legacy-trunk +14356 7ef39e07120a7dab5f34f6be3a94e02d9ecc17ac legacy-trunk +14357 76a609a947302238f5148a534b8f8251fd2411f5 legacy-trunk +14358 5c2770124904edb3c23b3118841481700a249465 legacy-trunk +14359 77fa3316bf582547070fe40c0761b5cabbcb3c03 legacy-trunk +14361 4d91221208ffb0b49411240e4002d2e81b90c7e4 release152p1-patches +14362 3f1da05ced5536a21aca217db80e6afc43feb8d5 legacy-trunk +14363 3dcddb479a7e64739e0c8ad78d220f12a76f8d49 legacy-trunk +14364 6056cd50297e4c9919178cfdf680371b5d9157b1 legacy-trunk +14365 dffbd921eeed45cb3084d7c7ae954659ebfa98cc legacy-trunk +14366 57fb3501ab22b2f6489849c60e75b0c5af2050a9 legacy-trunk +14367 6367d829f36bc20c96a6597888a779a969fa6cb3 legacy-trunk +14368 e3606d30886f03837ac72f21fd2974102fb23148 legacy-trunk +14369 945ce60d987917368b0986cae858b806cc5e6ff3 legacy-trunk +14370 020526e72eacf28354cd551a6f72187c510d7b07 legacy-trunk +14371 9092d30c2bb7d586f7906b1f2fb4ff71aeb639fc legacy-trunk +14372 62fa8ec8595f02ea2f78aa5c9ae3ccd622cac079 legacy-trunk +14373 a4eef0813d4cbe0bef87ada4d3852f92622bfb0c legacy-trunk +14374 9876a64c181aaa61827da76b5a9caf123886217f legacy-trunk +14375 3579975509d93579629ea2c1476886606b126178 release152p1-patches +14376 4cf84ddf5129043d2691a2745f9a398bbdb08822 legacy-trunk +14377 3cde12bb3da5d74c7b61cd5ec3982ee59e1e1ea1 release152p1-patches +14378 03bd58f8c9d03e12b9bba5b4df1ae2ae7c72011b legacy-trunk +14379 b0369e8daa0bff396541cdb0b6df59e89efc4695 legacy-trunk +14380 1a25bc2d3272adc6a1e10f488c1a75aa4b187592 legacy-trunk +14381 1033a24c4a5298f0d0969136bff3d7cdebb56c56 legacy-trunk +14382 36c6750cf2275863f3eca16ae18f7ca714db50b9 legacy-trunk +14383 8d5b90ebb919bb17b8971927179d49fa41656528 legacy-trunk +14384 707d16f0d345aa8343e28a93965b6b4b0bd28108 legacy-trunk +14385 7f50f71ae7bf256156f7af471dc9de3ded12de37 legacy-trunk +14386 2839d84cfd9666d9688882c667b8dfa5e847f1f6 legacy-trunk +14387 8b6e2b236bab523448fc8c173ea930c3ea23e44f legacy-trunk +14388 6b8daf337d6babccf3493e8d4bbd2c60ae03ee12 legacy-trunk +14389 cae8e8edd3e2ab29ca208df685335b930c47693b legacy-trunk +14390 dc19b5900daebbdf1873c91cbe679492cd569be3 legacy-trunk +14391 a742147396eee04dbd4e3dd55bdd592992669364 legacy-trunk +14392 e2bbc3e40cdb964d578cc2c171a0710568ff8758 legacy-trunk +14393 ec46faa8359567da3246ba028c4e93f35d12689b legacy-trunk +14394 b7cfc2dba586bbad11bd889db4751d58b963e740 legacy-trunk +14395 049ab8f34df164fa53a050ab789e8cab36530447 legacy-trunk +14396 41dc24b20a175a424830000ba94c0680d86a21c1 legacy-trunk +14397 b6f1287e1970731e5edc883ec7d067bd72d704f1 legacy-trunk +14398 5af015718285e35614f52125565cb7d00f1d5b9d legacy-trunk +14399 486721ec9dd746fc540ea56fde63022bfd83425f legacy-trunk +14400 ae8df07d4b6a1b6ed6d80650c919b16ba358fc47 legacy-trunk +14401 f83cdcbca1b08f13695b39ab5349c0f0b09da426 legacy-trunk +14402 860524182b9c8cacd1bf5f5411b2c1b5508ef13b legacy-trunk +14403 72848c6b611ced404a00e4273e28e955f09a4298 legacy-trunk +14404 fd4814b59b73a680dc166857ad5ca004afc28f64 legacy-trunk +14405 7eb127ade0694eb203fc3729635a8689bb273bcb legacy-trunk +14406 d2ab9553f8712e3f62741618db75d114621cfdf0 legacy-trunk +14407 09a3a68ce96404ea8d8b35a3017dbd4daa48cbed legacy-trunk +14409 e93a5a906d73a28f84e8d01dfd462140a0cbe804 release152p1-patches +14410 733ec6e869dd3173b74f8d684d1e4f20920114d8 release152p1-patches +14411 8bc871081724778b04eea48c657f1ce8d6634854 release152p1-patches +14412 f45d8b26bb24534d96c1810be84db9ce490fc68a release152p1-patches +14413 71ec31f97ffc7e04e219baff4f02056a3afe74cd release152p1-patches +14414 a4bb3843a582231659e85421592535eeab35ccba release152p1-patches +14415 454196114fd245359a130a2163f377b2817a5f63 release152p1-patches +14416 ced8dd6227dd2d2c3b5594652972d58a46b1e07d release152p1-patches +14417 5af3c5b74c545893018e7595d9daf8306ed3a3d5 release152p1-patches +14418 295ff3b17522a2ec6e9831039ab80ae573795a73 release152p1-patches +14419 63ce09df607de19f5813396d55eb65177ead9c29 legacy-trunk +14420 f53fec0c742bf5b44b4bce03af476aeaeac4a7a3 legacy-trunk +14421 29e74c70de18afd53d8e028d21f0fc4c190355fe legacy-trunk +14422 50a6ab3fa036a2dd6386914636daa49125d430be legacy-trunk +14423 3678dd68586705d9b797a0bfe3f63ba019690962 legacy-trunk +14424 449b074c3051b171bd15694a403dabc96b67a351 legacy-trunk +14425 fe960ad3db65bc24096bd21c50bc7f48e80fb8bb legacy-trunk +14426 e77a286d0eb1030dd3d31a9f53219aeafe65c378 legacy-trunk +14427 c2286a1c2f29585b4a62f55b794bacaf3cee2a22 legacy-trunk +14428 57788da164889694f27c9467fc240a3b36277826 legacy-trunk +14429 ffbe0a23a0f1758ff9306560c5424eaddf96974a release152p1-patches +14430 bd161a908b3bda5a0c43ab0ec432c69bafe08e17 legacy-trunk +14431 57167731d1242e38724287712ab0bbde0af50381 legacy-trunk +14432 302286b160a7a268e2fcc58774f7234a92fcd6e7 release152p1-patches +14433 8d0b2fed7d55981c2d0d59e0f5535c03f21c8528 legacy-trunk +14434 cf8fa92ebf3d94e4da10d7749adaf5dc94aecfeb legacy-trunk +14435 e2b633991e013546796e6432fc1995e6b24230e3 legacy-trunk +14436 fbc13fb8038ca595f4d5cc7285dfce86439959b2 legacy-trunk +14437 20ca7230ae3f8a955f8f937f5708f605e9fd0748 legacy-trunk +14438 6e5ea7dcf1f55b637d32e0e33ff7346a3638d17d legacy-trunk +14439 eaeda4621f7dcd554e6c99d5b34e0ed6e5a453c4 legacy-trunk +14440 84f77c19d143b4b142d5e223e4f09861f524ab5b legacy-trunk +14441 03902bc0214a151d58c48fc6b621b52452664b6c legacy-trunk +14442 50f12883cdd79cbf4375f39e7707cd21ed9694ca legacy-trunk +14443 476eaa38e2d6aa77e8f5297b52a676870b4c9297 legacy-trunk +14444 b7bca050d7debcfe60d3aa004871d6961d97db96 legacy-trunk +14445 bf1501cf5f082d9b5bdc5b6e5c73502f08b28380 legacy-trunk +14446 be9500e6477fd31608655b79fb584a729a11e8f6 legacy-trunk +14447 19de6d194ace9837cc6a5539b224a45bee2b2588 release152p1-patches +14448 aa07c47f6ee8828104373cbeb5653bc68a1f1cc7 legacy-trunk +14449 c5fb6506eec40e28a34ec6fe636ac1def0704e80 legacy-trunk +14450 fc0fcea14ba0723e6df22bb633694924325c5ea9 release152p1-patches +14451 8878c096fa19e739af605ae75e66a000a9d6dc45 legacy-trunk +14452 7c255e7a21c2c5748913ad8fce51bb670a982553 legacy-trunk +14453 3684d5c7903c3edde75854eb2fde2c874e56f917 release152p1-patches +14454 7bed1f0ec61ac568a1fb8a0a22b1be9121b47a82 release152p1-patches +14455 c6f84cd1ff705a0e54258bd3b388adf2f0246d03 release152p1-patches +14456 3b6d8ad2468e35a27cc0b7d113d9cedf3ee34c1c release152p1-patches +14457 4d5d5cfa8a53931b13a0e3b2f87d360ff7c48197 release152p1-patches +14458 eb483d9a0f62cf02895d9433f0386543fd3bb4c9 release152p1-patches +14459 4080c7a0f1ed6c9f9d1711afc651ad63bd4d1ca8 legacy-trunk +14460 0c0bfadff77aca3451add42dcbe94267720cc18c release152p1-patches +14461 b2d4b2e03c9953fb708a10f097957a7cfd1a15e3 release152p1-patches +14462 94b642079398ca6765684cd5cc7fda8b15438d98 legacy-trunk +14463 718d22da0017f5e26d85e8666d85aecb75d8289a release152p1-patches +14464 e2512d4fd470831fe74356741716e36a33a828a4 release152p1-patches +14465 683443d8da3b9d439e54d9ac4712d4ff8a43c494 release152p1-patches +14466 fe7632fbd4f5369b7c8a4b7d22d45163e7e5bb8a release152p1-patches +14467 594a76bb9ff031579f856c167fb70c6c01092c33 legacy-trunk +14468 a0313003cb2d52067d0c60dc0fcaf2fba01f85a4 release152p1-patches +14469 dd0ae10b72060f574829837f2bed3a41893f9755 release152p1-patches +14470 9c59cba04d858aa6a67e869fd12f8700e0a4a3e1 release152p1-patches +14471 51c217454953f8234ac5f33f5cae19541383271c legacy-trunk +14472 3e52f3dbe3dcd9f36f878b8554639b5909e36344 release152p1-patches +14473 ecdc78148811897332c1ae0fdb2846bcee342acc legacy-trunk +14474 189dee70d32a0cb07d58dbb111d015cc1a142471 legacy-trunk +14475 a046983cb57612d938a70e94ab1989f20daf805c release152p1-patches +14476 ba2111748038e0285fb96c5df01fec4108ce40ab release152p1-patches +14477 3287ccd0dd0133ee74ed3a9312d095927168155f legacy-trunk +14478 d229bb79265900103a9a2e8fcd08341c29b52915 legacy-trunk +14479 1b731ecd9ed32bdc258e57edcb0a3eaacd71c909 legacy-trunk +14480 2c7256e3989cf9b06f2872910cf9164d54e54727 legacy-trunk +14481 797d996f7c6da0094bf7d4b91b21337eef395501 legacy-trunk +14482 b0c4f261e47032637573c2acb95ad6c30e151ba6 legacy-trunk +14483 ca5353867be233220cb0ec7d430d373759012d62 legacy-trunk +14484 7269216746d02fadd9630964e064a38468e7c3a3 legacy-trunk +14485 91cfb6e68ca4719ea3d09b3f584c5846f1fcc503 legacy-trunk +14486 32f975cb9f5ff220656a421630dbd7648db75c1b legacy-trunk +14487 bf6f1746b10ba0ffa1a9a0c7e4c27676d098b4fb legacy-trunk +14488 e119c0250b20915d32635e5854af06312923dd46 legacy-trunk +14489 c04e1c70f0f126a12e5a1adcb426bee09d8a82eb legacy-trunk +14490 e123e65ef255b8469b2b28c0f501a7c5e00bc3ee Distutils_0_1_3-branch +14491 2517569aa1dd41b8ea2e23af825b3107f4cc0224 Distutils_0_1_3-branch +14492 1047313ceb5bc9833499ae41801c2b38b2f90276 Distutils_0_1_3-branch +14493 253ec95f391e1c5a99f2634e28714191a8d223bf legacy-trunk +14494 e56780b7436a6a57425960dea9bd00c7a3c4ac50 legacy-trunk +14495 8b70eaaadf4b40d863470c311813b409c40318d1 legacy-trunk +14496 d15d8f5141a888fb164a4d3360b508a30042a590 legacy-trunk +14497 6f9799a145e582e465e88794569f7ee19b1462d4 legacy-trunk +14498 ec062c7c38a59836713a34cf10ac9b4299c140a5 legacy-trunk +14499 b70dee71534a6ca821b7abbbf5109b7175fc3535 legacy-trunk +14500 0cde72f6eaceb0bd690b5794e36fad251ee18430 legacy-trunk +14501 89b52895310c7e247b7c530bbc62c19488a6ee72 legacy-trunk +14502 91971eb21527fa941e0898b988cdf00bdea1e8b0 legacy-trunk +14503 e695b52295a86a81b0d2c6798eb2f6156d24fce4 legacy-trunk +14504 79ea19085fb6ab8c83b79ef6cf0dfef78d2ddb7b legacy-trunk +14505 1451539a27ecf4adee45d872b32dea6ecbd4575b legacy-trunk +14506 781f48291a29693fe503fc42ba32b82a2cc9339d legacy-trunk +14507 bbb751f55d048eb00fa84383e96541111d0b4c23 legacy-trunk +14508 2d8740647e998c3e03fbaab930e4ac52b0976607 legacy-trunk +14509 986a87363a66912a3ff8324437a225c70a74cbb7 legacy-trunk +14510 e00594366ec4f74463e8718f9323c02c9ec1ab3d legacy-trunk +14511 5e1f4f7d79a754001a3494ee63ddaa99fd19bb7f legacy-trunk +14512 41b85a26ceedaa4efc7ef2d5e1e9d5a103f7d914 legacy-trunk +14513 ca350a71988733ed757eaf178d7de94851641ded legacy-trunk +14514 2fa89e657a4eddef310794576412d3f0c35932d0 legacy-trunk +14515 069ea5736ff607a81f38234b96cb509e3b2dd424 legacy-trunk +14516 06104bcf06a64fb08190662d77069b45bd68a207 legacy-trunk +14517 d7e66ef345d07b9ccba9cc434d5674cd7fad0cb8 legacy-trunk +14518 32c59e2889c4cc4aa0186c026c3667150adbda11 legacy-trunk +14519 d7eca5b0960abb021b481ee12a5ca398798e7702 legacy-trunk +14520 2fe9568bdef2b91b1b607816c9912d2f72190947 legacy-trunk +14521 c90ac698214db730b547c5fdbe55b5b15a8580d3 legacy-trunk +14522 444b77ceebe69310e2ce7c26edac23b99d6ac9b8 release152p1-patches +14523 b91d848c9a1ad4eb43da6e5dce67d822f4bfc4cf release152p1-patches +14524 71423209d7fc2c51f7e810af3f3a07757450abfe release152p1-patches +14525 7ed104c40db336599e25f05861dd54883a3c35a5 legacy-trunk +14526 cab071e92f321f52ac6b32c9971679bcc4a7a5bb release152p1-patches +14527 52a3b464578f2e87234f07dd4a466178e6ce0ab8 legacy-trunk +14528 286303f00546bcef507767b996dab844c0be1cfd legacy-trunk +14529 c27d3e8c45c46667ccad98d52bcd135ca88c3cca legacy-trunk +14530 5d0879e1ff37c57ea022c3feac4d3e538b73f856 legacy-trunk +14531 3d73ffc105d0a48c98dcdba9fe50fa2c4ed3ecc7 legacy-trunk +14532 a7d609ea90cc6826640ebc5714ff2cec53fdfc45 legacy-trunk +14533 d27684ab215a6a5acb40747499ea49d2d0f2801b legacy-trunk +14534 efd6315ae678d62e5597453af2beafb27512db1a legacy-trunk +14535 dc65c5f6ad7c14ca4469f6ed28ff134cb09ec087 legacy-trunk +14536 d24ad5503831a7d98195079a0266540de6b88c95 Distutils_0_1_3-branch +14537 9bed33599c339c15a26f10b39e0383f92c22cc56 Distutils_0_1_3-branch +14538 9c93f10dcd6968cd904cc64ddb9c359bc9bf9999 Distutils_0_1_3-branch +14539 8ee759d799646ed11422fee1fd20737b2eef365f release152p1-patches +14540 0c4729e38c3db8f48d0dde8252d5c9b29f2f9a00 legacy-trunk +14541 54cf3bb3b8b7cf4c7101c17236914e9844cfddf8 release152p1-patches +14542 10fbfd07f38941b3db3c06e5d32edc0835256ae5 release152p1-patches +14543 a38fbcb7d335680f6a591aad14eb1329c5bee90d release152p1-patches +14544 e399abcc5de630ea855cdb630785311aa0b6c378 release152p1-patches +14545 758a87f4cb2c9e8d8b679483e8389ba4657dabeb legacy-trunk +14546 39bb0175507909723c24308ab67d36f19bb71107 legacy-trunk +14547 270a11488c6c5c3d2ec98e5155e61c343cddd6eb legacy-trunk +14548 81f1069e155869939c73d12396c35c11ad3dbf00 legacy-trunk +14549 a4570f4098710f4fd7ec311bdcea88ec40f09955 legacy-trunk +14550 1a49b6144f0de325b5978d12c6483e2e03cd00c6 legacy-trunk +14551 9432d8b15c9714fd2784c70c71ca86b24f9396d1 legacy-trunk +14552 e82a9633078bc9255f8c3d55254efa476d295f28 legacy-trunk +14553 0016633fbd320a1c5867d3592ad646aa154500e1 release152p1-patches +14554 23108cce169b45dfbb3edac9265c7be02698d3b4 legacy-trunk +14555 ef8b062b5798044ff3334fadd10a7550883cd5ea release152p1-patches +14556 610d7d642917e5fcbd13b64679ce0247c77551b2 legacy-trunk +14557 7842ecf5b42489f2b2338e2ff386b9e1c75000c8 release152p1-patches +14558 cfcfaa3950d642c9a20b328a43d63f683806a3e2 release152p1-patches +14559 58d1e77919805b87e7e01a640fb063d8bd216dc6 legacy-trunk +14560 cd57f776c1df8515f778a01517bb74b993c30da9 legacy-trunk +14561 2802fb52e99bc79a65bd034f1e673108ba9a0f96 legacy-trunk +14562 017e592c0fd2c3e853c74390817e3167635965bd legacy-trunk +14563 4679bcef7a4f645ab39ef8b5b18213ade150e070 legacy-trunk +14564 723efcdcce1bda5d06b2bafc923b95a0569343b7 legacy-trunk +14565 62ebe8c715659b1fd2599a9d6c2d307dc727bfcf legacy-trunk +14566 01d5b7d11fc128e2ce15b0235821b431ec87a8f9 legacy-trunk +14567 6932e18aff98ad7f16f09d93db470cffaabc8953 legacy-trunk +14568 f8518f060bedf8f8f5cfeeebfc6a8c096dae035d legacy-trunk +14569 a40c2fecd5269f3ae82613883edab628aab30842 legacy-trunk +14570 0a4baccbe9fe934d01aa3be085b44371a4c7dbc0 release152p1-patches +14571 49b109b450da7d76a9132011b20071cd55498c94 release152p1-patches +14572 ab1ef1aa402ea5236be25af405b791164abc7c50 legacy-trunk +14573 b3ca3caa374c518bb58dc5b88dc4e6a8711edde5 legacy-trunk +14574 11ae1efec871a37a0cf7e59c5693de070b3628d3 release152p1-patches +14575 d74e12d46580d37b1755925e5cf42f59460c64da release152p1-patches +14576 00a9ef7447baa5393259f8f73d7a752323abb7d2 release152p1-patches +14577 855c78f5b5ddd4fc53af6b28a85b5cace9e7fae3 legacy-trunk +14578 9948fd532d3b4cb2a842dfa76eb9ef9df87f9680 release152p1-patches +14579 b975a056deb6665c7d9b8315c4fbe672148eb5ad legacy-trunk +14580 0eca567e532c284b6f5d3afce111cde696905120 release152p1-patches +14581 fe485a5d043fc7bb7f5b5479147b1d4bb81544f2 legacy-trunk +14582 c0f18e11f4ef32920d85bdaee78af7370668eb24 legacy-trunk +14583 c16711fdd9724433c7c99013bf4e32240ac3dd20 legacy-trunk +14584 1c8a9faa3501ec47291ffb5fc8e266531c912b4b legacy-trunk +14585 c9d87a7a70b0a2932493345bb3a33a5ab1011370 legacy-trunk +14586 a6e5f0274e5172c5d08e32a232e65ee7ac85a1d0 legacy-trunk +14587 7922d08426caae7a3b7d1855c0135570e96733df legacy-trunk +14588 d1359831e5f264c9ab38889a3256bfb3dd26899e legacy-trunk +14589 5b03c5278317d649a40b4ad4980d7fdfd652c90e legacy-trunk +14590 15cbb57ca747257de0fb5c04d06991a49d0518d0 legacy-trunk +14591 a851ef326d932f71478d8da6c2d2cdcd12b64d92 legacy-trunk +14592 7cb491e399e619f4e7f5595ac40df377a7776faa release152p1-patches +14593 29c5c5415da71decbebcd825b308a3a9306dc534 legacy-trunk +14594 f82b923a7a96c2af5d40df39bad4b10505e8d5de release152p1-patches +14595 ce2698d8dfebf6d8852a460d52b5a463454f962e release152p1-patches +14596 06fb2dd38d7d29990acb72cf26783a3cf18b4e0b release152p1-patches +14597 cfec11b4a8a72cbe8a72f707a300fd830a6f9191 release152p1-patches +14598 aa0d0b1f1be3e11b62a1902dcd741cb5b2ca3057 legacy-trunk +14599 8cc4428c7bad91e64fd9a24e8d502fabbe551f3b legacy-trunk +14600 d097bc5aa7f34444e5f4e4996e2dbb9a202068bc legacy-trunk +14601 4b8bc9ab8175556f9e87938e8cdbb79c6ee37c42 legacy-trunk +14602 2a628067969b93ca5604a3b7ff2f42932af9dfcf legacy-trunk +14603 a469aa8b332a5846355771ed1e889a99a0616bfc legacy-trunk +14604 79b6a6a882d9e8d57137091daaad706ffaa3ea78 legacy-trunk +14605 bdb5f6a524b5e3f641791979883c25dbe9017548 legacy-trunk +14606 9d8f47f8447f97620138d14facf6da2d47dbe031 legacy-trunk +14607 1b54b21346d24fa24690a762cef1b7cba28db30f legacy-trunk +14608 aef5a7c62291eb69ee438e87c1baa32c24bdf257 legacy-trunk +14609 25adc5c8dd68004e3ff1780d6003c0a1a91921ce legacy-trunk +14610 68e0ef052815058f0225478b4939d2e969ed2809 legacy-trunk +14611 7bd97c3dd432fd94598d8ccdc5dd324f6160f9a8 legacy-trunk +14612 c94572a509952318ea138831406a8d58dc4bfdb4 legacy-trunk +14613 c0d36f916afd8ca701dd56588d641f92cacdae41 legacy-trunk +14614 ef98ee6aeb42ae01e4cc0f68f9653be11aa372f0 legacy-trunk +14615 0456a8c2ebf7c2a970f16736162bb314bd19020a legacy-trunk +14616 73dfbee150271f3a7a0bdf81923f769cba608517 legacy-trunk +14617 de8404573fe512c7cda69cc604cc8c93c1511124 legacy-trunk +14618 f6d1d0fdc1c7c7201b490ac7596078407737ac67 legacy-trunk +14619 421b1620f582f9a7b83fc3b90caa8ef949fb3254 legacy-trunk +14620 802370a60ef7e3d71f4aa7dbbcb4fe6b96758a4f legacy-trunk +14621 734f3c07a6bb9f3d5cc27922ed072c6920e6901b legacy-trunk +14622 1a58e6fc3a954df79f85f38d1303380124855955 legacy-trunk +14623 826690ba1ae69b8b584e4f6947d6fedc55e33e22 legacy-trunk +14624 2a40e9cae859dca0488fdcde8168c8f50985c22d legacy-trunk +14625 d0404780f03bf4e2f2a3208ceea6aaadb34d62b2 legacy-trunk +14626 5e48d83c0fce1720419baee637a3d047733590d6 legacy-trunk +14627 a3992a789e2e7bb157e7b298a57e878a71ec4579 legacy-trunk +14628 5b33fca02b785bb6db7015c11591702d58d6054e release152p1-patches +14629 addea1157aa7f907298bab9e99705224b265dce1 legacy-trunk +14630 e10515e7d356ccba7d474164c17a4f5385186343 legacy-trunk +14631 f9db3654a1fd08766a056e360370ea5f9c7e00ad legacy-trunk +14632 398a4599eee33ce9b734c3ce9a849341fc63bcdb legacy-trunk +14634 6e3c81bd8291edea7f7f4d760454ede526542ebc legacy-trunk +14635 23fd7d10064eb1621fcecbfa02f2b015da9c76de legacy-trunk +14636 d4662d381748ac6ca6b550ae31269f51dd735ca3 legacy-trunk +14637 f9141bebed48f4e59a11db12ce60ca545ba0e25a legacy-trunk +14638 3e5fbef9b1f51ca614aec73e3342cfdc7ab5ab98 legacy-trunk +14639 24c187b927738486af0ab44e06dd023fd1c79711 release152p1-patches +14640 7410690928319bd812d6c20b246b473b84958e98 legacy-trunk +14641 9d53fc8043ba79f54a29601b442d6fd12e652077 legacy-trunk +14642 be98e055e39d991457dd67c888fbaea4519a4960 legacy-trunk +14643 24199c1b9182a36cc793c26445ea0bee63be9c07 legacy-trunk +14644 4412c7a32497f90c2971b2d1d0a1a0c75ee10aae legacy-trunk +14645 9f261e94b2b25b041dbffa3eb2e5352f74415581 legacy-trunk +14646 5305f9b01fc75457802b171627f4f98dbe6f9174 legacy-trunk +14647 507833b18213b70b7c223eb968637d52aa555975 legacy-trunk +14648 13bc68faeb655b66db653d461de80fc70a17f611 legacy-trunk +14649 74b7213fb60920a01e421c9450ce6e4696ef40fb legacy-trunk +14650 f76bf61cb19c4a783afa3f789870aa5e91567154 legacy-trunk +14651 574283db2b3dddef369dfd0369ce8a88e2b02d24 legacy-trunk +14652 d0e06efb31651f0e4cdcb43f60787755819a0aa3 legacy-trunk +14653 8bdc25d22925c21a136c53310178e913dbe06694 legacy-trunk +14654 28003afa1a2f091f32fff33abb175a2f2b290853 legacy-trunk +14655 876f35828e870a2f2a72886f31259f2a9dd8d24f legacy-trunk +14656 513354d87a85e77e311397ee8f9046b3599cf0fd legacy-trunk +14657 8b88e1bc0e1b4b0c82ec423afac4e31dceecb0d6 legacy-trunk +14658 3c620f65eaa5b5eb65b4e6fc61e1291f3d7d6bc1 legacy-trunk +14659 30d9248e11bbb231f738743f3c2d1e55b2044911 legacy-trunk +14660 a9b5a31ff8cb19137075f93aa7fa9b56bff2b5a5 legacy-trunk +14661 d7a4a5ae2daec47d675f266c36626db3890094f0 legacy-trunk +14662 a13294aef02ea4feb34b56e8f8f8855ee01045c7 legacy-trunk +14663 4c7bc885f420afa58a666f9416ba2402717bb591 legacy-trunk +14664 efb3a45c66f31ac89a84d7bc479334ad8edc924f legacy-trunk +14665 88225df35efbac46bb5bc1765fdc28f7419477cf legacy-trunk +14666 3303a5bac6ddd420133801e695c4ccba801f3c00 legacy-trunk +14667 0fdac1f54ec81035115ef6fd77c004a7c5d06eff legacy-trunk +14668 93dac4053189c0f550bf569a6f82f96d72615013 legacy-trunk +14669 ee6492a5fdee66a834215b16abc886295515dbdb legacy-trunk +14670 f104251b6f8f37ef5fb001148bee617713d3f092 legacy-trunk +14671 81702a7354ecb50ce046334dd09d8bbe9ded5f8c legacy-trunk +14672 1789fae5f0741a03c9d456b4e3c36d4673f6c674 legacy-trunk +14673 b5e81271c4c8bbcc5af56c5f5295f6e992c318ef legacy-trunk +14674 4b8b2e28be3492598fc91f1d9aabdeff545bdc79 legacy-trunk +14675 96fa46d34898acdd7bc6afaa3c199113e633ef0b legacy-trunk +14676 32627dcafabff72f53c5764bf944d607442bba80 release152p1-patches +14677 23dc89ad0996e89561b40e385a03c593f1bd54f9 legacy-trunk +14678 38310eb0659e3a4c41735c8fd93374d999f22526 legacy-trunk +14679 f94d10b6d0f4d13366d6c7efc20c6b3e7811b719 legacy-trunk +14680 c94247b5c355578f4626d3f67b95d9e901932e71 legacy-trunk +14681 8651f2da7c4c8701e5d9293f4b65b9c5fb75f9d9 legacy-trunk +14682 e362f326048ca2d1d92f1113438be961b9f3f2ed legacy-trunk +14683 d50fa3670b66a17f563159f20cd5959b94dcfed3 legacy-trunk +14684 148db6322161fe28496a4066a9f71c6dad3f7cfd release152p1-patches +14685 01fa5ca98813b455c80c058f0a89f9316acb6f59 release152p1-patches +14686 75d6c7c3ec5500e46a31ae5391d156cfdf6833db release152p1-patches +14687 7610eed3e033283ffca9ac515d3387eb89b899c9 release152p1-patches +14688 f78f4772568ec61caf1ce1946f31f18d36abccbc legacy-trunk +14689 74d97d795c4ee73cd877394164335d4530bfeebb release152p1-patches +14690 3f56cda3d2fc417138aa0e34fb057ebd53ce4dfc legacy-trunk +14691 c7458923f6a2d330345d1109eac2ad9883efe541 legacy-trunk +14693 f27cc173517e342c3127f2007df39f8c97098d10 release152p1-patches +14694 0f6eab03f28801b6314f49a9b1beb8f19af52aaf release152p1-patches +14695 366c1e98f7078bf80c41c65a5e0511ad46bde801 release152p1-patches +14696 0a706072d50af0f6cf79918221a46a1cbbf6f526 release152p1-patches +14697 1c935ca3785c8d805802468f3e30289fbb7d7bac release152p1-patches +14698 438a440bb085e5e952c9f513ac101af3da2496ae release152p1-patches +14699 3f85c4b99d332205b55dc377829b85484567fc9e release152p1-patches +14700 faf0c9e9b92feb393eae15c2a63da4ce61952aa1 release152p1-patches +14701 f23864e4ad2cc55124c1cda0cc852b7a381c947f release152p1-patches +14702 e57ce4df5707a72fa5221110516914660e02718f release152p1-patches +14703 4fbf6962087d58f3b10d98cfa2ccb5e7f78eedb5 release152p1-patches +14704 bdab9c55f168297ecd08d2f6d6a5f35e025c0b39 release152p1-patches +14705 a33f2a3db8927eb25422ea26e2e9d3ef2c67dd2c release152p1-patches +14706 2eaaed7589ae5e0d9699bfc2305f0a8a7a6d5639 release152p1-patches +14707 3af3b1eb67fe14c1a9000ff4dcaa48a283954d27 release152p1-patches +14708 2612b96b99ac44fbf7043e2166309c8a28fa065a release152p1-patches +14709 28c8ce665b0320de97ba33ad5b3735c764215a5b release152p1-patches +14710 b58f2f0cd55b3e42819b6c0d4d2926f60c492046 release152p1-patches +14711 96348beb9384389fbe7f2d905d5b3bba26332bff release152p1-patches +14712 169add6a4dc1b0a22963194da36a91840cd75691 release152p1-patches +14713 5000eaf058db78cd78426bc22a6609af6f0d48f7 release152p1-patches +14714 703da7e94b2165d25897863ac484c621dce8f84b release152p1-patches +14715 d7b87f0ff0d2a7f71fca6645b022d046aad8245e release152p1-patches +14716 9d735639429d13afcb9adcc04010d4f1bdd725f4 legacy-trunk +14717 e0fb04d1bd934b90b38a60b5ffa0ee480f3b9ca9 legacy-trunk +14718 74fb602b76c2ffb1de9375bce4a32b8db922af06 legacy-trunk +14719 127f70f59b026643a232b89e0545c20429c3c6fd legacy-trunk +14720 663129f3abe001ebd7570e21ace4109303b9769e release152p1-patches +14721 b47248ce7b6c945049c6dfe5e7ac89be27c7c311 release152p1-patches +14722 3952318957cfa3364faeaa8fbe6da9f89bc4f9f5 release152p1-patches +14723 bd1014215f62254a6d04a5b83fe56829ceac25c3 legacy-trunk +14724 4fa25a292273b754dbab0dde06479106e0a310d7 legacy-trunk +14725 c2efd17cecbf1d6f25efd78ebc2bd296d9f1ef3a legacy-trunk +14726 e6c46819db9272976a2d8ff8ceb0b881f401559e legacy-trunk +14727 ba80c90644918067e6f758ca6c6498d93725da3e legacy-trunk +14728 a41183670386e62ff3898e1968e7b8fe342c1621 release152p1-patches +14729 c603cdedae1774e0efc59baa55d8f90dc84168b2 legacy-trunk +14730 13fd0dfec560a7dd556ae06869a5a4fcef75ae4f legacy-trunk +14731 e7820352cb80d0f3d7b0eaacc51b1b3f877c6b06 legacy-trunk +14732 0569725171912e5b7d7d1a5984b3e97927507da5 legacy-trunk +14733 69b0fcef4c0f21d768b74755e4dbe42d15e2dbc3 legacy-trunk +14734 76516204b620beb84fc1dde9faedb84344e22e52 legacy-trunk +14735 1e1aebb3e4f69e58f0b4d8d2053704337d44796f legacy-trunk +14736 86d9ce1580898ef4786977d3f6a6a414d3c8b1b4 legacy-trunk +14737 914ed528896e0ed5a50c2d56ad009d1733938924 legacy-trunk +14738 a0a9c69af9f78794653b6f09c079d19e33117cb8 release152p1-patches +14739 6fd0bb0c0331efbe7b1f1545dabb1e73519f4962 release152p1-patches +14740 f07c330557cff863f5e315fb8d5f1d6120523af4 release152p1-patches +14741 d74eaa92f0b45834492f45e2464c4adc62794111 release152p1-patches +14742 43d224786a581e45d326ce35373cd6da5ac375a7 release152p1-patches +14743 628ca1e90591e50e9589898b7f5c1dd001ad38ff release152p1-patches +14744 f220fba57749fb80305cffe91ba07d56aab76aef release152p1-patches +14745 0b9633a45d68eb83bbbac9e8b2794b3ca745049c release152p1-patches +14746 ca017de4f2fd94c67bc2ee20bca1b57023c1aa14 release152p1-patches +14747 25d3dd0b1ca29380329f44adad668486b2841815 legacy-trunk +14748 7994d9db7f4d5dfe51ebad300471d01ebbc0029b legacy-trunk +14749 009d8fae81eae6edbb7fd73f0b0f907efd6ce2a5 release152p1-patches +14750 0c447c2891466fd13a12d23de54d942b87686062 release152p1-patches +14751 d2a0061092f8050155d4cb9b44d269cbaadd9fcf release152p1-patches +14752 daf4efc3aba91bc1e9a925d2983f9d1f595cb1e4 release152p1-patches +14753 8dc0918ae2c2ffce7caa4ea0d23ac6f42ea016ae legacy-trunk +14754 f955fbd513ee4f6d4a6c98668e348a27ae01a829 legacy-trunk +14755 556c27b3ab6ebf56d3378244c83704a4622e2e86 release152p1-patches +14756 c8e0010c12ef31edcbe3292df66e63d23adfc70a release152p1-patches +14757 87aee4ef29f5286ac6ac83004a24a4b7af9bb30f release152p1-patches +14758 325938300a78415c61b7b843cb15e48c3bb302c8 release152p1-patches +14759 6e7ec9a00cce5cb09d8d657a9168d0b9cc79fee1 legacy-trunk +14760 3690c87a9bc664c6534c336905940882f8a00229 legacy-trunk +14761 afab7bd72c4795d4855eab3e398482364e5131dd legacy-trunk +14762 a05d8338fac573741ea0bd39e8a7bcbaaf3293a7 legacy-trunk +14763 9cacd116698623cfdad9030901662396cc69840c legacy-trunk +14764 856dadf56cd97b28f03a8f32c4b72bb3b0668dc4 legacy-trunk +14765 23fce9b9f3bc9317cc282da564df9af9ce76b068 legacy-trunk +14766 6f0d1e3346f95a701c880c7eb55b6aa3cdc28997 legacy-trunk +14767 9404195ff3feffacbe26091c0e10e0a92593d173 legacy-trunk +14768 d3e4a456928be1da414b6d4e041b26a8f5e2f24e legacy-trunk +14769 1956ec07678e86f05ea1dc42c8331a87b8f3111b legacy-trunk +14770 740ec08e6ec1c5927f63e51cdaf4db13b997c334 legacy-trunk +14771 41a725c12551f61b4b28cf341e5017e33b341bdf legacy-trunk +14772 d6bc3bd52424e6a1bca61a99fd0c86d4eacda7dc release152p1-patches +14773 e12041732304093589e3de7ff40238444da1bb08 release152p1-patches +14774 a4a785a01360aeae19ac4183974ded65ac2ff671 release152p1-patches +14775 01a60b93c2f500f357306b39fa9f0ee95687eb66 release152p1-patches +14776 019c34280fc21f3b729fe939ab5587af4fd32d50 legacy-trunk +14777 a9a1e591eb3a1b1ea05801485b61cda39bd4f4e1 release152p1-patches +14778 81c23b387bb0848b0f5eaedbad9b4986da1f8d96 release152p1-patches +14779 2e21ad1c60ff86630138640f5a4b70034aee4794 release152p1-patches +14780 af4778a130556917dbaade3fa4216315bc397bf9 release152p1-patches +14781 6374c66691478e672ae9d5f5ba268471fcd7c222 release152p1-patches +14782 42cbea6777b7ee9faca6bcf776b5fbad071e585b release152p1-patches +14783 cae56f7e80ffee73a84b6177d2a70b45bcf6ac06 release152p1-patches +14784 d8b22a781905c19114e101c38e38600d02303d7d release152p1-patches +14786 5caccace1dcf8842d4c4586ef9ec0e950f672a36 legacy-trunk +14787 178c6efaed8bae31b3d53eeaafd3707c815fee53 legacy-trunk +14788 14092abb8bb4be547c84ae914cea551448ad0436 legacy-trunk +14789 b2d44bb761d4b5a14dcedf47fb9696d85df2e857 legacy-trunk +14790 a384b0f69512f6ddee6235cdcdcf4fab2e62964f legacy-trunk +14791 fa12a563368d52f2a727d8872bf9d9f1b8e3ae60 legacy-trunk +14792 f87b56eebacc72c3eaaa491f71d2e3e49c1418e4 legacy-trunk +14793 dda3794c9cd9049bae574ecea982c2662bdb3503 legacy-trunk +14794 b90880c0e5eb225c18f007231204d694ad0903ba legacy-trunk +14795 d89556c04ef99dbc9fa6b38b786b1f8084222bc4 legacy-trunk +14796 5d3165e30bce6313c4583b1f44d5108fc0321be4 legacy-trunk +14797 88b0b32108cfa2d4e34834f9eb3202c68d1369c7 legacy-trunk +14798 23a1c526c6f02c5bdb056ec6edf97a960794a6d6 legacy-trunk +14799 5d45cfa1bc91389a86e3d4c8f9d06706c5c373e3 legacy-trunk +14800 1e5cd70cee10756b888a7564d201ef6c2d8b7796 legacy-trunk +14801 42d8d76dae6d2c5d5bc108b322b1165d671298b9 legacy-trunk +14802 c6cb0d266839302b8c9c75e8a91c0c6315cfe38b legacy-trunk +14803 de296a78abfdc4e502da3657fbff2bd5a2dc5c2c legacy-trunk +14804 7795573ec3581c5181957377e8dc39a077d9d89d legacy-trunk +14805 049f00bfb9cef3402886e5690a17047ca145873a legacy-trunk +14806 c43b38079228f39915589875b18a34b501c73928 legacy-trunk +14807 ca8880cf3674ca0f826350dac4ccf7eae3559a52 legacy-trunk +14808 db03a29cf16b5c22cbce4d155c3813788fd69c8c legacy-trunk +14809 b981a7a9b738e9c1935b03a9152556bfd0c207d0 legacy-trunk +14810 86cffe50fb172c0253d0b140988e704ceb49bbf9 legacy-trunk +14811 bcab189ddf86bdecc6562f5f1d30150c0cbbd751 legacy-trunk +14812 e24351926e13ea60753d01a8627da68f0ff6198c legacy-trunk +14813 332310fe3d3af37274e869f50eeaf290660491f0 legacy-trunk +14814 a1bfc8d4fc006c8180859f96282feb1ae78c8524 legacy-trunk +14815 9750af5e71b0139aecc0d4acfd14d6663126cb6e legacy-trunk +14816 67d4128da2543a1b40a4495254abaa409297478e legacy-trunk +14817 e4943ebb5f7d22511007f9e80d527ed0f29c2cbb legacy-trunk +14818 65f35b73e35054d95afeaabd28970dd386985426 legacy-trunk +14819 9edede651fb1a48e70cb0880ca2825edf5f93d86 legacy-trunk +14820 4a61cc81f36735d1635616d85ec3313aed19158f legacy-trunk +14821 fd2b06c6ff53b72377301c03a4d5872942a80bfc legacy-trunk +14822 897cf0e5a434a60d17a2baf41ce7f53592ddd019 legacy-trunk +14823 838dc380e4677ee88570a05c0a6c77344782bee3 legacy-trunk +14824 44b942f7feb766eb3e5bdd48390b2f4b79a6fd3f legacy-trunk +14825 dc8aa951def8045c138bf059961db5d4a42290fd legacy-trunk +14826 603db0d0aed14345c900044bad9e65f1b6c332e4 legacy-trunk +14827 7e006342e7907c69958a0ec45fb07abf243ad6de legacy-trunk +14828 a6e522cb59184a5c0af3251fa111b6a03bb0f395 legacy-trunk +14829 25b63367385eb0653ab2bc284f29f006315ad28a legacy-trunk +14830 96ea1a800b2393c967bb5f3c82b7c9e388aed3af legacy-trunk +14831 e2db89a98cb2f49b42c9f157018e705de513b25f legacy-trunk +14832 3789b643fe8981290c352064631e2a6441ebca86 legacy-trunk +14833 bb9004492030538bd611fbd4ef2b4617ce24d9a2 legacy-trunk +14834 9877e978170ea75b2660714d1ce5ab2f8918e6bf legacy-trunk +14835 ae065ddba0f1467ca2373c41ba474446025ec902 legacy-trunk +14836 2a60d6f834ffb41202070870a1a4a7cd22e770db legacy-trunk +14837 e09d7414d3ecf81657f6be32c218749ba3b31da4 legacy-trunk +14838 8d1c69bdc4f2c2c95c14b2d2c8ee038d0481d44d legacy-trunk +14839 4387606a1281b5a0f9f377f9a0c8aee4ff9c3dfb legacy-trunk +14840 c0e4a90dc4ff9f7688bbf4aec5da7a0b5af41e1c legacy-trunk +14841 7a515fc10c1d77c392628121d9248335397832fc legacy-trunk +14842 881257d1e8544bf8ad515ae32ee98b25ce837511 legacy-trunk +14843 40a2689daf37766c21d7f5ff2e64d553e6f29937 legacy-trunk +14844 41cbd298ffc6c1d2b662b8e579ecb94030f68c82 legacy-trunk +14845 f0e02adb91eba19b37f5359fef467e9f0944dd28 legacy-trunk +14846 e81b139ab8a4959feadb3a6923916b727ec6f504 legacy-trunk +14847 d731cef812b35e614d26385337b488e49ee40e3d legacy-trunk +14848 e98770de31472d367a882820e31e47bba0c931e6 legacy-trunk +14849 66f14ffe8eb716f96e8a485d96b1aff264727bbe legacy-trunk +14850 2a910a77579a4d832f6d9ab89b1cc21d54411d28 legacy-trunk +14851 32407c08caf4d3589eaeffd205c92b2110342890 legacy-trunk +14852 6fd43867aa4fb07f9ffeb1377a9f3b422016e54f legacy-trunk +14853 f7a0d29fb8b81e1445029c13b26dc2fcd2f16193 legacy-trunk +14854 92ec78e217d29af89904d3f734ac12ccac60c863 legacy-trunk +14855 e2b02d40a1425c3c8582f6618df09766ace9e36b legacy-trunk +14856 dfe3baf0aecdce480495ab9c7a5657de00d4caa2 legacy-trunk +14857 2f2f2b1ce568d61e1d6872a74f084ed6926428d2 legacy-trunk +14858 2721c7cc0b2715f3d1c51eb95874489309ba2b70 legacy-trunk +14859 63336f207d5128d55d38eef8fd67b9003d0e5269 legacy-trunk +14860 e6ab3c603ff913ba617eab621956669ea439fd97 legacy-trunk +14861 5f2239406dd20d374499cb0ee24cebe6198051b7 legacy-trunk +14862 30a49d15da975c2637ee9c2d3e5d9d3f7e072742 legacy-trunk +14863 0699a7dfd737c2351394edd3ffff138f6b681a43 legacy-trunk +14864 ec58b503b6700c5fd6b5058d51dd02f654879a18 legacy-trunk +14865 0727ff39e64fb92647e2fddbd5c5f8cfb2099e15 legacy-trunk +14866 3d785c2cda8815dba67321d876341554580163ae legacy-trunk +14867 a0ef8fa4b2488b438daea15dd3525797c4671c8c legacy-trunk +14868 ec360b4e8f66fe7ebad16007fa303c4bcc64b327 legacy-trunk +14869 e2b3283c5db0a4d682019b294f9f8ad4390e87e8 legacy-trunk +14870 e6214ad2a60cb07b1dd94988c682127c0d90223e legacy-trunk +14871 b3a4e451c06c86a0b02f6d950807d22c775d9f60 legacy-trunk +14872 b5fcb539699947ceb47539b776db4d075e4c7255 legacy-trunk +14873 2cd9c436bd42b379af17ad4d5e2294a5fc1ea69d legacy-trunk +14874 1038e58610798e4c8067420ddc35bb5bfa667fa6 legacy-trunk +14875 b40f679b107ce55829c6b6af6a949b07106993af legacy-trunk +14876 1b68d0ad78356c0fa20dd7433a290b324ea58f3d legacy-trunk +14877 711340d447776391496080149ceb2e9bce017f09 legacy-trunk +14878 c160749acff8571b5ac2c415eb1e62adc3ad7f2e legacy-trunk +14879 6678787769336a35fb18909b82b6787a34514391 legacy-trunk +14880 9b9abde032b32455118ecd14c4e81c31d7a986e1 legacy-trunk +14881 5b5581af951c5d4da80c8fa119229366ceb186f7 legacy-trunk +14882 5720d1c18f4d1315e1b5e9046d2fc5480b7f162c legacy-trunk +14883 338e055b7cc09c8039392b9b8156dc5fe568f554 legacy-trunk +14884 dade82b9ee19ce0f0889eb9bebf90098aa48aa20 legacy-trunk +14885 4a3fd2c1372f2281e1835f741ccad7e24f015709 legacy-trunk +14886 43c36f63f867c939201532b272a7f393ece17fbd legacy-trunk +14887 999fc3eeda99a99b8b954b6ba841dd85106c50b1 legacy-trunk +14888 4cac37648a7f986024b502ca59315a0d7156bbfa legacy-trunk +14889 49e027b48627f051bfd275e51558d4c5303486e0 legacy-trunk +14890 e8c30e69666b0e42a8b2741e86dc60829485e24c legacy-trunk +14891 14e93d89d34ebd1a5c7902db986ba501334efa76 legacy-trunk +14892 804433f0112c9b80b2fffb994b49dcec377d7f95 legacy-trunk +14893 0ac577eb8282f07abc429640efbae8b94beaf2b3 legacy-trunk +14894 81e5f80000944fc754e4524539324f13b4ab7622 legacy-trunk +14895 ca938f38d087dfb1f3739ae5784384318a7f3d65 legacy-trunk +14896 21a9bbb572d737b9a0f8390d313daef21a319f90 legacy-trunk +14897 830dd581e934f6c7b5130bd5bffe5b7e091cac3c legacy-trunk +14898 78e36e06e5369d20e29067ba87bd4cffc13ef1c1 legacy-trunk +14899 fed89b57637a6e42f0217bea51b5730aade576aa legacy-trunk +14900 db5c03fa8c73f55d9674381ef8c7f274ce7b81c7 legacy-trunk +14901 be2f003d47cc6f1e13d43594fce6065388c25a0d legacy-trunk +14902 9e7abb28e92a1712943e57d1c8b3c4ecf5b00e4e legacy-trunk +14903 75add9644ff34a29f2c099414bd69c79180e632d legacy-trunk +14904 522eeae6c06632e2a931d33f09ea6f901a3840c0 legacy-trunk +14905 236ac1eb188e3d269fbfab7b3efcf90b267afabb legacy-trunk +14906 98b09c40d97cc9d8ca9afa54f1cfe739eba17bef legacy-trunk +14907 feb9af7527a57f5ade255e0a4ddb5242a0f062d4 legacy-trunk +14908 42387ade6afbe52e398acacf58946739274853b3 legacy-trunk +14909 356b8e89f8e30645a300e7d38047af28b0d9b8ee legacy-trunk +14910 c88c8a85274405b402ff6103e135160a4a0a7806 legacy-trunk +14911 6e68c7ddcdb57f6fa82c0bb51ae38d4b2db15b24 legacy-trunk +14912 a2fbc0ff7c2e072e3dc3797e63defb6cda0a74f2 legacy-trunk +14913 ff6c1a82c322acc45f0513c6468a8eae57e638da legacy-trunk +14914 f407fab273589a33de222dc6fa3514fd7e98c7d4 legacy-trunk +14915 2653fd516d4e2ee2017fb7c5f75c1aa4f3a56e05 legacy-trunk +14916 b7303f2ff613a3a41a6bf0c0c72038f83a6ab37c legacy-trunk +14917 0d3de4c13cb724cbf0efb8db3f3d3d6e7783df6b legacy-trunk +14918 2745dae8705f1942d444823287a611f68ebb13cd legacy-trunk +14919 0155a3b13bf0e0c9b86965971ebfb002b1bea010 legacy-trunk +14920 db83e63b384b6dc72f0fd50f7f2e37c3f560e683 legacy-trunk +14921 f03e2a8188aa07cf5c07ccc1e01183195875655f legacy-trunk +14922 77193e8e0137192eab539845cff0733166427fc4 legacy-trunk +14923 e789e2bf05b3eee1bfc37ca8b9938dd1bedd4d68 legacy-trunk +14924 c29cdde8ebd8030888f89a84819ab2099a5fb3d6 legacy-trunk +14925 b58aed71cd63f377bf7c494236053c694942da4b legacy-trunk +14926 c888792de6a770880a67c52b99d5a44aaa7957fe legacy-trunk +14927 242458503b1311b5d68c78166ff4e92335bc9f75 legacy-trunk +14928 f5a1e9544c5de6ee7435249926b7232b997c488f legacy-trunk +14929 83257f3394ae310c9cafaad00a110fe6e5e684bc legacy-trunk +14930 1719e41e233031ed7a1f31b7d704a25702aefd06 legacy-trunk +14931 39b91cb80b41c1aba48442fb20430d9992fbd7e4 legacy-trunk +14932 cdf68ce586c439ec5537211cb8eee96d29292434 legacy-trunk +14933 151b913e74a1376267954211a30f23d8a8abb6f4 legacy-trunk +14934 94b601faebaceaf2c4eb80b575965efe19af786e legacy-trunk +14935 e75ac292ef4c1faa85f18b3875e94cfe37f6b0e0 legacy-trunk +14936 f09e9d656a1154ebde9ac8cef59c9f567a216e01 legacy-trunk +14937 c3fc2b4617fcd96e2799ad81dccdfa5880fdcdec legacy-trunk +14938 4dd8b6a3b9c5dda8b4a3598c5c463aa16e3f0924 legacy-trunk +14939 bc861add5d712a1835bbf6cdd8bd01793cd34279 legacy-trunk +14940 6d108d509346a89204df3b98831b6af6ba0ae2bc legacy-trunk +14941 7f18f979a93afa3ccdf7ad47013cce98e27233dc legacy-trunk +14942 4763a3d59ab9a2558203743e8548620358dfd198 legacy-trunk +14943 f28e92dbb9e8e14d8b64080f46830ec564b9294a legacy-trunk +14944 42f21e47b48607072e9fc777d6b485b5a0e094d2 legacy-trunk +14945 41dfc7d4a36b226fbf523b2372defb583a64839b legacy-trunk +14946 6ff7f76a6f2e582e10f9b9dda1b8d36648fb3b35 legacy-trunk +14947 fe3cb7341b70842b4af512ca1352347ff860d49b legacy-trunk +14948 f83e408aeb05df1291e7d46076d81c6325d08878 legacy-trunk +14949 253cdeeaf42ef6e87dd175a67959f3df55e3969b legacy-trunk +14949 605eb9326ffe1fd1e43f40e2338d6652ab449fdf legacy-trunk +14951 3e3d152a85547040f3fa853b6395384bcd90cd72 legacy-trunk +14952 b73c9f8c537c1aed153aac3f6a72908de3546a68 legacy-trunk +14953 0909f5623d4fa2c2c05ec1a63283b8af6eb4f9c2 legacy-trunk +14954 37d82272f0f445bef0342a7c11f7bcf866721fd8 legacy-trunk +14955 4bf98cc38db71ac615a12fae5d08377cf3702384 legacy-trunk +14956 263bee4ef13c59a4e028aa194bbad22cf5365d8a legacy-trunk +14957 1dc0b637eb1b3a59315919b9b7416aab63cc0d22 legacy-trunk +14958 a216fe79ae00b417bdd4adf47f1ad6561984988b legacy-trunk +14959 774817285b8ca2035550d4581b6f151c908a08ab legacy-trunk +14960 33bfc51dec05cf39476fca554a828d1c5d4a7f58 legacy-trunk +14961 5ea77341353198e07b25712be4e8a709f928a159 legacy-trunk +14962 f97bb42d434485c1d69d139367b37147a4957508 legacy-trunk +14963 530cd9afa80d543babde3aa08aa080f583317897 legacy-trunk +14964 5a6200ff77aac4547c5c2833bffd9f9f98480870 legacy-trunk +14965 17ce663967d8408c535ee1c0f525b805375533b8 legacy-trunk +14966 3e9a1c1a9f56761e92ecc5072445a7889312a73c legacy-trunk +14967 e82e82b3b9ad565ac8df8135a67fa611356dbe67 legacy-trunk +14968 2dc1bdb4088ed6f18d56d25d73b46f6196b95a95 legacy-trunk +14969 c405dbdd26c9ec5dcbe0c70887bf2fd12514b1f7 legacy-trunk +14970 ffd242fed0e2dc9dc9872780c193cd06d3191551 legacy-trunk +14971 23660b66bca30c0e5eed8400b68fe4b983bd34b7 legacy-trunk +14972 77b02e53f6662f4c426c6c880f0d7c493ba7d1f4 legacy-trunk +14973 7859c0a4ad95430bab52a80fea1d1b7da42f6867 legacy-trunk +14974 7bf8b10ce2ab5c0d3b380788c18e61365ac19747 legacy-trunk +14975 074c30ff3206fd9ffdb74fc339d2f164118aed8c legacy-trunk +14976 63135e9def241e6f0a0a59732a271753b1793c9d legacy-trunk +14977 d4923775202976e3d149715f8a68e5febcd7ee54 legacy-trunk +14978 145c0073d78581b4a48d5aca45b287a7a36bb72b legacy-trunk +14979 ce26d5f3d3ce7fa5c9d9247b97e379aa112adfd4 legacy-trunk +14980 9235ac76176d452285434a00b3550b046143314d legacy-trunk +14981 0cd22c84a4f14d6fbcbf9a7f4547241a2caa4138 legacy-trunk +14982 de0f93d90ee4d19553bbff8334a25a5a85980031 legacy-trunk +14983 0839838272241ed75a6497f3f5207589bc0820c3 legacy-trunk +14984 729f3152765cb8f56bdc0a9bab5976ca9b79325b Distutils_0_1_3-branch +14985 1b7c4945c61c189a46a9546d1cb1e8fbe93280b0 legacy-trunk +14986 7fa3174849bdba7bd2884cbd5e5bc8b1233479bb Distutils_0_1_3-branch +14987 190a9242f83a8b00d301cd209839a040996e19ca Distutils_0_1_3-branch +14988 a0a24d3cfd9611b6dee2c9f7113e183951c3454f Distutils_0_1_3-branch +14989 17605241663c19c050d13753a2ccc7c25e1454d7 Distutils_0_1_3-branch +14990 fbffa7eb2a4f74f56e9503f8e25cd0aaa888a4a9 Distutils_0_1_3-branch +14993 7e9a5cf55c7676a59696168653926e83a07ea6f5 legacy-trunk +14994 1c3f91951f737a03732ede73627d106e1112c0a8 legacy-trunk +14995 be3e0d1975223ee6810060df475b20cb505ed6d0 legacy-trunk +14996 3dac854e611850ede790e1245943ceb8e1ba0bcc legacy-trunk +14997 612be1bb65ffe1c1bd7f26b650456cfc36cf8320 legacy-trunk +14998 bdfca54a141cbc3bbf1937b3ed9d46143b562a99 legacy-trunk +14999 69d11df843c1544b2f2048396587a93fc598e1f9 legacy-trunk +15000 70154e2e9c890e93f1e9b25707e09a565c7d220f legacy-trunk +15001 9eb769e15f81bc24067f5b43a4038aedad9a071e legacy-trunk +15002 0a3cb082c5dbdb4f9e7898cdcab4a473a59d6572 legacy-trunk +15004 9dde315cde3969a60d1ac48f13a0dd4bc876299e legacy-trunk +15005 4da06fdd3e6381bbfeb91654a940b425a5f642c7 legacy-trunk +15006 41585e851f55b614945c20a1f4d7b80af63803d0 legacy-trunk +15007 66903c3f14db4286d46f93a1262125d3ec580a52 legacy-trunk +15008 c341e68f1988e393d06b4b1766d86c95c758b042 legacy-trunk +15009 0ba85709a6712951a770a1b5d597338adac70a00 legacy-trunk +15010 23266352f138c00ce7a9fb0b158bf7478d51ac33 legacy-trunk +15011 65bc5eaf47ce96e12eb06d8af7c7dcda7464994f legacy-trunk +15012 d1d016acce74eb289a4122f7e712c6d6d2d9834e legacy-trunk +15013 8c0f863ba50c67e38bf747e4b7ed71bb8c026d04 legacy-trunk +15014 fb20f6fdd16d6d048bc71b1c42fc593fb39aa1d9 legacy-trunk +15015 aac112cca79b516d9ae213ebe6781a38f90e0a22 legacy-trunk +15016 ff75e4734dd9fefdca7b0f7386e618e80f02dd1d legacy-trunk +15017 64fcae78d47af635647b96e5b258c0dffb81e48e legacy-trunk +15018 66e9c97f9f677c0bc678b08f76b5039c96e0516e legacy-trunk +15019 76ed139fce59735fc50ed8e150a2b7548cae97f4 legacy-trunk +15020 3fdaecffc4dddbc52545acc182275aecbd3c00e2 legacy-trunk +15021 9e1f60976209f27fc3f8daf243fe5004ecf04d53 legacy-trunk +15022 261e895440854f90d21343d9a0240f6f9eacf242 legacy-trunk +15023 f6b58b021e5689297b06efe6245b0a9c0a7ecaf0 legacy-trunk +15024 8a1ec8fc00fea66a603307186d903e7e68d03a6e legacy-trunk +15025 0ac40e47bdb5e1f22609fd1803da741bd64e144f legacy-trunk +15026 fd756112420764b0dfaf6afaec9146d2a71d7f95 legacy-trunk +15027 559b25a79032acbc6fdd9ce4a73aec4fecade12b legacy-trunk +15028 cf1338bc21c000bf5ed206abd34ee5c481c155e2 Distutils_0_1_3-branch +15029 ca31e679024b5c88a31c6891be8c98c25be5e346 Distutils_0_1_3-branch +15031 cbfa95a6a03ee69ae78ebcbfa2def83416458f18 legacy-trunk +15032 8ef3672342649ea539d37d8139963a3b78d4ddb7 legacy-trunk +15033 57fdfa00da9337a88f2ff5a1cce906ab3086dec8 legacy-trunk +15034 647bf71912f02c14638e34974898f4f30abc9693 legacy-trunk +15035 af8d2113bc1d024bc34e5763525fb2b8154750c4 legacy-trunk +15036 d06b50ba81a62cc1bf31f7d410b7399828cf779b legacy-trunk +15037 51c0c3b6d919effc561baae2130e8d44e295b37e legacy-trunk +15038 3a94c7f85551e899ee5fc707fe478e14e908bceb legacy-trunk +15039 960192518829b1eee9624ac89dd0f6a60863685e legacy-trunk +15040 9c96e5d437a821b74994e2d898fcd3cfa0d4e8b4 legacy-trunk +15041 8186145c4a07d6e286ee85bba7131a59861959ac legacy-trunk +15042 4c6c2481693ed40691b6eca4246539fd64dec4f9 legacy-trunk +15043 d1d22a36268f9534599cad3dc5227bbdd78b9bb3 legacy-trunk +15044 5f3624bfa594c37cdea7c8bc7ca5ae02c0a51e7d legacy-trunk +15045 fb75e8acfb05799e671362de64396c7584deff06 legacy-trunk +15046 15d41149bf2429429cad4a1d394145d5d3574d5f legacy-trunk +15047 b7f2b225d0c0205691ad88139729d237e315cd34 legacy-trunk +15048 0d64ce7354b999e46f14b7058360e4210d6b448a legacy-trunk +15049 9af9970657faeb8534d7599c5937c62aac9b5864 legacy-trunk +15050 35a119aa19b4bee31b949faf5186a46ba9d84ea0 legacy-trunk +15051 2346ac0780ce911b331955a41dcb65f030c0eb4c legacy-trunk +15052 b157256dba7697c9bdb8eadf9be74a1d5855df57 legacy-trunk +15053 1631986db13a664ff8c0fa5fd4d2cbbe78895bc0 legacy-trunk +15054 d640e7d4aec48c5d61c40db6d997f21b8feb26a4 legacy-trunk +15055 9172edaaeff586910dc4b50e4c8b44c28b2f69d0 legacy-trunk +15056 17fc9f95990b48e17827ced93d7b6660e227f3fe legacy-trunk +15057 40e58c5b6f84fadc28a67bd118d400d93bb5e002 legacy-trunk +15058 fd905bb2f6b631032f02e439152883d68c893f1d legacy-trunk +15059 0c62d1c76c06497dc0d38124bd68cbe3520fa672 legacy-trunk +15060 bbaada41a20b69dd40f42a886c002fbfd6c3274e legacy-trunk +15061 1f7c32801dc11e85027bcb87912a94d8a1ea5265 legacy-trunk +15062 0a45b953f4c03e8df29f4e1e8f6fdf99b8110091 legacy-trunk +15063 e540930642955a87f08bab8f9bcd3d9de92689ee legacy-trunk +15064 ddc4e62b216b2fcbc56ccafa01be705094535c2e legacy-trunk +15065 d3239b7c05fe98da51999f81b77852f8149f00e7 legacy-trunk +15066 3e70c45f8d6bb8eb29cce69f823cf7559f78cf0e legacy-trunk +15067 a3b046234c093121a4ef84e3b0d1006eba77ec20 legacy-trunk +15068 f782446395db2d3e59b9dab9e6dec994f8aa8f22 legacy-trunk +15069 90b2a3cd365fe30a1740de11ac91a50def061101 legacy-trunk +15070 20a5cbf9fcc02c51c58b04a4db48f585ddc463a9 legacy-trunk +15071 f1f665e075ca30599c56d71c508c33721d2e6dca legacy-trunk +15072 540f10881a59729fe410d2c9c01f20533eafc175 legacy-trunk +15073 29e753493d8e5d7899b6ad795498f45fa97e51b0 legacy-trunk +15074 20a370f1af8dfa9a66f8005c8b0c44ce51cf1e12 legacy-trunk +15075 57f34e162e676258d82aecaf3f29ff462090220e legacy-trunk +15076 5de0b939fe61ccbdf7422455b3c8763d7a6e0c9d legacy-trunk +15077 b321627382bc14597ebf3a917852b8bba269c154 legacy-trunk +15078 d7629fa3b29f5817ef70582a2d1ad24bb289b3da legacy-trunk +15079 1a207c68e8b4d5f8cef53adee9ccb455abefbd1a legacy-trunk +15080 7296cdde8a5e3be918a992d8038b7c0dd0c21565 legacy-trunk +15081 b5f6b4bcef90ecf637374c95ffd5b7f106028bc1 legacy-trunk +15082 9488e4fdafe46b2558ac245b789153efa8119148 legacy-trunk +15083 66b4906d0fc6be9ea7cff1b4361916294a73863f legacy-trunk +15084 4f5671a313473c6ad2b54286ab5813714c961a38 legacy-trunk +15085 3cc77848a62af7b70616b096c1d4257d6f281e91 legacy-trunk +15086 77e4f21e3ee64a95dbef86f694ef65bd72cf736c legacy-trunk +15087 d195f17f292731e61c9179bc5243a67b14b6fe8d legacy-trunk +15088 6b4667fa49381dbed00e0166865f9f6ad20d592f legacy-trunk +15089 525b2358721e9e90f75552a2bb66dc807f0f7745 legacy-trunk +15090 37fd2e6c81c7d70e884b1289cb5c434832e8ced7 legacy-trunk +15091 e69eef692612553376201c27ba0cf76e619768fc legacy-trunk +15092 d33743102f8ad3f221e9336c8f97c411ee10dd9e legacy-trunk +15093 8510b4ab3c3debc33a1d737e5becb755ac505f63 legacy-trunk +15094 185de4e7cef10e2bd40361f08608d3b7c4d5fdfa legacy-trunk +15095 9e9666f679f72c25680a8c67bdb9d14b90da6f12 legacy-trunk +15096 e2620aab9f2d6cb1ce85dcc0abbb8b3734c69a24 legacy-trunk +15097 fc557f431e87e0ddb631865aa51e99a73c94ea54 legacy-trunk +15098 aa3b02a038a37aaa7da256b75eb287315e42ae15 legacy-trunk +15099 be5100afa1b7ed1a9cdefbf1792c24cd742b665f legacy-trunk +15100 fcf588d86b1409efef27fde7c78d029a60ad2ea6 legacy-trunk +15101 e952a4b920adf07b50340481916fa3960d56613e legacy-trunk +15102 24d4116897dd447b81c26fb89ac81905474ab07a legacy-trunk +15103 facc105b641b01b9bde68de95a86875bc3220f28 legacy-trunk +15104 16804b37d7525ce910bf62ee6f99faac00b764ea legacy-trunk +15105 e4349b62fd9b419c3148328c6f7f42fc1bc620d2 legacy-trunk +15106 c59bdc7fd8a61dcacde12059d62c362187b0940f legacy-trunk +15107 6785619c33e1cb1c95e81c722762be82136c1014 legacy-trunk +15108 179a6e2850aca5d0c75176d3c88af29e452a34ec legacy-trunk +15109 54e80db4942375eb9c1dc59d0a99fbac5e8d0978 legacy-trunk +15110 996eb3b3b33ec5323f506c41f4eb5ca7c90562c5 legacy-trunk +15111 04802b7e8a1f0846e70a40116707a7837f646a99 legacy-trunk +15112 1e791d2e88752e2ee76d966517e6b1b7af52ecef legacy-trunk +15113 5b59ea41db4e8690b1676e4e50c5d0dd66b2b1b2 legacy-trunk +15114 fbc8dafa4484c7e0b4ca4cc631cc5dcd784faeda legacy-trunk +15115 11ecb6670f4f9e48016561e1830ed51add4cda29 legacy-trunk +15116 f73bf492438682f38cfd88db5fa6d896b68f37b3 legacy-trunk +15117 791a112be3bcf8baca81c269d97e0ba0c36a8a3d legacy-trunk +15118 877969ec096fd4f610586cb5ba9b6b9912f098d2 legacy-trunk +15119 7f650df271c9e3ee9f3c9b50089dc8f73dcddeeb legacy-trunk +15120 e64faa6e27022d33b51c315debd21dda37db7599 legacy-trunk +15121 7fa76ccdf2de73f3682446907e97e64edc33600f legacy-trunk +15122 0481096a0f45bc970817d6fb9cf11404d49a3743 legacy-trunk +15123 677e2147829a9d2ca0b9ff4dcda77f185a3f786d legacy-trunk +15124 c2d0d6744b3bb7e5144b7b3980a901ea81fbf21a legacy-trunk +15125 68e48bb940711fb18a6c67b076e333e8c7733595 legacy-trunk +15126 af87fcae880fd9c8e475fdcfcf88cf3db6f265fd legacy-trunk +15127 429a37ff9db5cc27be9160d83772567b6528908b legacy-trunk +15128 214303d32f7664d43f84bdd0a658caad3d234c49 legacy-trunk +15129 d63b57ac617d4db23bba6a4d634bf2c9874366b7 legacy-trunk +15130 f57af360b7e5ef37e63a886fcc84a971b9bea2ce legacy-trunk +15130 011bee8fd9f7f4da457ec71596484fb0882c0614 legacy-trunk +15132 6ce6c23acd1421c8614adb4aa76d2739b13fce2d legacy-trunk +15133 052fbd9314921ff7c7e82de1882b325629ae1ddb legacy-trunk +15134 63ad754aa30ee2e66e6e5005aa5ed6f2632eba01 legacy-trunk +15135 3be2f754c0239b81be1236426680124f078de006 legacy-trunk +15136 37d9ded5ab914509f4432e430a6f67acb851ac64 legacy-trunk +15137 116c3aa3ccf72d15de8c56dd244f7b7939728613 legacy-trunk +15138 5f29d7c02433871858dcc472158a0df0ba5c6f52 legacy-trunk +15140 be82573e444482d5093e045d6503a70e2243b18c legacy-trunk +15141 aa013f2cf80be8bd015aa87bbda49894573f2686 legacy-trunk +15142 627226df9f0181d9a7510db44e1aefb5fcef6dc0 legacy-trunk +15143 32e9d0e789353343649a25a9e6a785ee3860d0e6 legacy-trunk +15144 eef6a25f09c5316db8a2193531c526e0fb3f2543 legacy-trunk +15145 c48172af13dc1528caee65a06e171ee0f502f311 legacy-trunk +15146 e5b0bea03cfa50556ecea1005aa854780f1fd43b legacy-trunk +15147 6edbae6dbcf55a8b7b2c687928945073fb9d23cb legacy-trunk +15148 a6f0b399f6656959198098b17a8cd6ef21096487 legacy-trunk +15149 8d7e07737b4c6a14c2efef1a8aa447a34c31b4d4 legacy-trunk +15150 a0498b15244cd10c8dbaa20063d951cf84f032b9 legacy-trunk +15151 60dd95c7599993629c496de2c4631403e6e5b846 legacy-trunk +15152 3bb398996291f93f21f7481b2d3f4b07d136667e legacy-trunk +15153 f82b2577fa0cf06726f7a48ae1268713cb4e971e legacy-trunk +15154 f0705bcf673b2c753a14ba073367412c08d6cb0d legacy-trunk +15155 2392d10e21f1694f67a947240c38872098604a3a legacy-trunk +15156 8bf913020604ecded47982d46485308cc6ead597 legacy-trunk +15157 9f2c7f7272fa71edb0c1da9778f5730415be6b56 legacy-trunk +15158 a5743e147860c16aa65b3c85cb69dfda642b5f9c legacy-trunk +15159 4c51a966d2a390eb36144ee733de50cdd8749258 legacy-trunk +15160 81c966b35c1262201bf6cce5fb4533ad1980a516 legacy-trunk +15161 67e961577d0eb8fa38ed9ca964de54703b728c19 legacy-trunk +15162 15554d3a68c715c8395ed145c2316efb130ac1d7 legacy-trunk +15163 ec6b6ca5d111623af75bc6fd052dbbaf2956f02b legacy-trunk +15164 01cff9fe2d452129558b47dd7df7c1af26642481 legacy-trunk +15165 2fb6c739d32471c11dde1de5741dbe4e6ee42f22 legacy-trunk +15166 cb4f0d81880d5b4b5835922eb572bafee224c51e legacy-trunk +15167 5b870c0ea7b61a0f8db40bbee61612a464279ec5 legacy-trunk +15168 4c5d62e8675b389124b62c91d88a1174e3dd9ceb legacy-trunk +15169 ae525ab23eefc61ec52dbe9771e26e45b28f68f5 legacy-trunk +15170 7de902c1f439e56d1e908ff8103b6f4430d00e74 legacy-trunk +15171 2fc53dda20eb63e4570ccb434a857eb647a7fa00 legacy-trunk +15172 0b68990089d2149e0342f02c6fc1e54e5a4b8320 legacy-trunk +15173 95e296e67a12c01dd629d88c3e684778a4f8f9cc legacy-trunk +15174 259c4b9c4c88976fb23171ffc9b9dbceef66e240 legacy-trunk +15175 ae106379e756c2776ca69c043e1fcaf0d974b41d legacy-trunk +15176 1c85ae676ba7e5dbb821066f84405393b1fca31a legacy-trunk +15177 3626261189b48d9b17a36c7e531f0f735831ad0b legacy-trunk +15178 6979966ee94da167a0ec16ad52c9ea8b0be3576c legacy-trunk +15179 6fb40a85a5197589954f622336e0487bed890a78 legacy-trunk +15180 0d13ce2e155b938267f3f4199a09bd6844a45e9c legacy-trunk +15181 0ae63523d504bdfa388c1669b833778f4edb30e6 legacy-trunk +15182 c0bf3ed9383580ffe072e9f5bad643289e4129da legacy-trunk +15183 e87e6bdfcbdc677891d236503f6d0c667565853e legacy-trunk +15184 978c9687beef4fd64deb55484cc2d1d798666d57 legacy-trunk +15185 6b2b9a23a41f1f8ca5648685c4ec643c0b515bea legacy-trunk +15186 d9400c476b9dc2e5e311647dcaba43c90e1cf465 legacy-trunk +15187 c6059e70bab23bebd4867f902ec64ae6734ed95b legacy-trunk +15188 ca98942fe103b9cc220212818ee4d71a5b2eec36 legacy-trunk +15189 3fd13222a876f3a187789996c82e679803170625 legacy-trunk +15190 8161334942d4ff5b31a60198a96d80e2c1970ebd legacy-trunk +15191 6a8cd06820961eab900b273eaf33a177f0d8626b legacy-trunk +15192 ca7b99d27a4071a1e1a9c5599d817b7208f44a22 legacy-trunk +15193 dff7b26116debd3bf4dd14c5dfa225bf18da7b1e legacy-trunk +15194 8289c0e551cd31284ffb8bfbcb92852f9da7b3ce legacy-trunk +15195 f0b71913c0aa7b08cc307374ffea037b9a6529c7 legacy-trunk +15196 456869eaa7d591a5ddb87b5d5aad278d832e81bf legacy-trunk +15197 d47460b1a67997277043fc2535f2627e4f1df5c3 legacy-trunk +15198 d763341d3310be0eb46f55ca80b4c9801d42af51 legacy-trunk +15199 c99bba9e9212cb10de345365fdd5f3599e2c6dab legacy-trunk +15200 f876164fa1514989d1f431723e543e1395a1493a legacy-trunk +15201 03b81912835ebe9b5c1aef18c79182f139697f04 legacy-trunk +15202 9c4a4e6bd555aed0a7613af4de1855f2e6909c1c legacy-trunk +15203 e367ad3ea59a861d31b10c8e1e8c0f188c2dde53 legacy-trunk +15204 951d84e1d54beb0076493ef15e0c192565ddec26 legacy-trunk +15205 e3bb239b2dbf5e05db7e4d822a1a73be48944a8b legacy-trunk +15206 19f53d8bd298106c2867649cb9e02dae5366dc92 legacy-trunk +15207 16dc80731c23a20c19034f07ab69e412f65e872d legacy-trunk +15208 33ba0626ef72a9e103a85e353899b695ae9a5755 legacy-trunk +15209 3469b2f17624f8627214c16b99ae5df0d16aead5 legacy-trunk +15211 d0f290b3c0b23bc0584ad94c1c09707720c36d6c legacy-trunk +15212 486161894507f4058e7e4e7b5746865d5c75b803 legacy-trunk +15213 4cb333482160c8f82309ccda1e9c4641d84b4e1b legacy-trunk +15214 de365b65c17bc8d9f32f0ce69a4a8c4de4bc03b6 legacy-trunk +15215 d5fdc9b1e474c721ceed5fc62591ee692bf9e771 legacy-trunk +15216 c28fa01e7329c3c416c1fd5eabfe5fda7c72897a legacy-trunk +15217 e7623d01927c8c9fb5bd9293e511d89b2cff6acf legacy-trunk +15218 e5b31acb10ceb6bf138d29eff8f0d9e61202221b legacy-trunk +15219 fd0e5daef86ae6da2e6f7e0b88d2af9629871a6a legacy-trunk +15220 144a89570a39cf05c5147eea3c2c7a2fa8ffb70c legacy-trunk +15221 74d4e453a7f7da3965e1538b0ced39601c468d1e legacy-trunk +15222 18951a024d11df2a758906bb627e599f466a8d4b legacy-trunk +15223 6f5096a8d03a20b8c575ac6c997961c84d4b5781 legacy-trunk +15224 49b0b846f683472d343061ed011ef3f0ed31039b legacy-trunk +15225 0bf8abd02bd8d7cd1e64e74ab18fca6d70025a48 legacy-trunk +15226 181c6f95f6f6a5ebbe3c7c3de9a78843d5dc382e legacy-trunk +15227 7613f8b3c1ce4cd5098dee26791e23d1c7422c2b legacy-trunk +15228 e39eb90b250a02a6241dfc4967076226488c7115 legacy-trunk +15229 2a2d5ff933080771865b9ba0ee0c3cd39692ceef legacy-trunk +15230 e567e33de645bf70d25e6a4a628ab079e2fe3684 legacy-trunk +15231 fcb92b96f1afb56039312c022305dcf787f7115d legacy-trunk +15232 699dfb1254cbf7238bf292f49eb7c157b0119cb4 legacy-trunk +15233 c27f484aefffa7fe4306ff1465ea6640143f0675 legacy-trunk +15234 3500c4350f626e110c08925542e7e8368e1c566a legacy-trunk +15235 f1bff1ec796b6410932115c1648df7930e4248cd legacy-trunk +15236 866af1d8797084c672afc8a65357a13877e57bcb legacy-trunk +15237 a3e1fecb43c6e519ddadd15070e07710fe0ff59d legacy-trunk +15238 be1d75e16cb81629e4c198e4fddfc4ae9fd1b9c0 legacy-trunk +15239 a8898a172fe2f07697257575f3465934a69dcd73 legacy-trunk +15240 a3c0b6cdd168a694313fbad89cb8b795933035d9 legacy-trunk +15241 19e3e8f8c574d22a686ba391d2491f600d37e872 legacy-trunk +15242 fc2768775f821983902eba509161d28b237cf6b1 legacy-trunk +15243 0db5a36025261ff8e671f047a6e748df238b0bf5 legacy-trunk +15245 10adbf8183e68e027d559995f107f128bd6fb4b7 legacy-trunk +15246 f1e867ad7d85ac3a30402cc4923c9a9426d0c38b legacy-trunk +15247 8b330d1638007718056580707175cfa8c5842f42 legacy-trunk +15248 1958571d25c16bce4dfcc59688285ebf325a94d5 legacy-trunk +15249 4cee2da3dacfd75dc7d11738b294ac3e35bc4532 legacy-trunk +15250 720d3556b14385217ff35616b2be56b3679f2015 legacy-trunk +15251 1725e802e3ebd52e7da5bd9a842760b7a659c7ed legacy-trunk +15252 04cfa1341a509c17969d91a4f27e79ab50556b52 legacy-trunk +15253 1cba6589ce667cef7c45699549ffdee08360716d legacy-trunk +15254 bef24d48afc8c5b4d36ad18c604220667cbe191c legacy-trunk +15255 2a53a3a47962a8ff2f084ec36cfded78cbebed82 legacy-trunk +15256 e50bbb8e98dad2ae8bc2c87c52177c4e45b8d270 legacy-trunk +15257 0d75555ed6eb6d970906ead0aca65923eec42bdf legacy-trunk +15258 0780aba978989318af20fe4ed62356f1609d0368 legacy-trunk +15259 eb433efa24deea8462df050859049db48b29cf5a legacy-trunk +15260 bd92c53b166993344a14b5284541403b89705be9 legacy-trunk +15261 2ce2a83253e80317c427bffa656bf68cec588b7b legacy-trunk +15262 211483bd0a5182dcb6360c3e680253b7c86985fa legacy-trunk +15263 44e521a93648a5127ea4d70a8f5f8894fcd5313d legacy-trunk +15264 5c3e5999daa16b8119693f7997423568bec5d308 legacy-trunk +15265 f4dd7c8848fca45d8b3eb0a3ede2b04107c33ec0 legacy-trunk +15266 5661f4f9a47f798488b49fa597cd72117c87a27c legacy-trunk +15267 b76bacccd346310d62a979be7da9b1f44187166b legacy-trunk +15268 e63eccba873b764741ae5424da4631de136479dc legacy-trunk +15269 13a16793bb1cf08098cbdaac74d0f00b8ca15c8d legacy-trunk +15270 8747f1c8b5fbeb1f78df3a39f67f3ba79fea09fb legacy-trunk +15271 a61157328b121e15db61113bbd5d8a453262e8b8 legacy-trunk +15272 ca0e9d97d554c485add6bb8a8559e2191d8558b7 legacy-trunk +15273 ba54862c8785c20ef887df49650a7b3be4f8f2b1 legacy-trunk +15274 fb4775111ed9d512f51c8044dd1e370af518ff03 legacy-trunk +15275 e6e914d5b2072fe46edd586dd43d768345892407 legacy-trunk +15276 6ebe0acb77764912ca3e08aa32dac886e2fcca25 legacy-trunk +15277 9e53a7112395fb409d8056d3833bb2b681e351e0 legacy-trunk +15278 af9d623babb077177510b8cf008e886614f91e9a legacy-trunk +15279 b6b7bd20c845b737689b1290c5107a0abbd42192 legacy-trunk +15280 d357ae8fbfe590aaab1cf5e6ca4f4aa871cb4305 legacy-trunk +15281 0c28c9cabbdaeb0fb97ed652dfb9603f7c37f0d6 legacy-trunk +15282 019eaef637ff5f99ce612a1d9f88d4ad93c23e24 legacy-trunk +15283 4ae127312bbfd785edb7fd31798e4d8f40befad1 legacy-trunk +15284 b476e4a8c8911d2c4eeabadcf1d7519b3de446b2 legacy-trunk +15285 6f73848b845219193f0e0d2bae0c5eb0ad19b869 legacy-trunk +15286 5ae85bdc5f61650a54dd81f81a3b380621ac333e legacy-trunk +15287 c0adbc9ca581318d6442986cdc32ab4e46626d20 legacy-trunk +15288 540d9bb16439f07bace07af7a3861442b62e5e4c legacy-trunk +15289 c2bb5e4b04a89d63f702843424b6fc36625d52a1 legacy-trunk +15290 84cd52b560e571eba371d7136abcc9c42c27b002 legacy-trunk +15291 82cbb2dfe8bdb27be12370bda830c92756048d44 legacy-trunk +15292 5235656f9d0f0e22dcd113a508871fb60ca52094 legacy-trunk +15293 189298a1fab4c223286fdd26877933e11e41e890 legacy-trunk +15294 8a503654472778835f1b5fb2fce7130423bbb2db legacy-trunk +15295 cc05edcccf52ba37af52de48069f682352c40ae2 legacy-trunk +15296 7cc3dd7cd31ac6a5cf826fb0bc83d6dffc396c21 legacy-trunk +15297 859e500f07600463d57dbb9f6687e61349a766f5 legacy-trunk +15298 d7484a7433541aa978f043726bc79f5217da2009 legacy-trunk +15299 81a121d2134083fdbbf326e6174f13797b34a04f legacy-trunk +15300 c34ba3e3cfcd3850dcc417e6bba9c7b57289944c legacy-trunk +15301 59ee1712451159c918ad298664e97d81b4ea0e47 legacy-trunk +15302 c8dbd5f70288b849c7e0af9337ec7a084636c752 legacy-trunk +15303 599bfa4ffd49c14594bcb54420c0b431d18a7745 legacy-trunk +15304 6b647e087925ab7738d41d5818fb48bd47c7b387 legacy-trunk +15305 769edb2da8b93ff7a214a82a011ba2405af0af06 legacy-trunk +15306 177e61c55426db416682f9a678cb44ac617ef613 legacy-trunk +15307 3e6e8f76a988383638dc87587ae4c8b31094ae6d legacy-trunk +15308 efd1e5d2284af54ea33f3381e03a604bc98725ce legacy-trunk +15309 dc9d1b71cc380c6f7ee58572e546eb68a0a825db legacy-trunk +15310 bef675dc11cc0bc184472df670f6fd7cace634ad legacy-trunk +15311 66e47e85ec53b5eba87b00a5ee10ce7c1e25bc38 legacy-trunk +15312 12c74b102d027d7db06e3a2a03039d5ceccb3612 legacy-trunk +15313 8f7b24b40de736173a43c49134a05417e632ee9a legacy-trunk +15314 04cf788d862be06aa9fff8d9f1f2e5488d91d708 legacy-trunk +15315 78380dfb2a906dae26dd0cbd4e9e13aa779a093a legacy-trunk +15316 9a841d68453a7c8deef5219cd32a670b904ba3ee legacy-trunk +15317 4df8462a259deb880f2a78f4c5e467d8d114e01b legacy-trunk +15318 3b8d9e63e4e157b715e7968a86fa4bc4c9d87294 legacy-trunk +15319 38d5a11d9cd4b000ef61a4167fa667873eb8e896 legacy-trunk +15320 7b8d0a47daa97b66600d926f2ea75ba64c7f525e legacy-trunk +15321 7b0e0b5867e2d39661033bcb76358339294bf96d legacy-trunk +15322 b87d75798d816c32a14ccefe180be628fbde5c4f legacy-trunk +15323 b0a4350d5c03137883412aae4b427f1cf571b547 legacy-trunk +15324 539a1a99a78b48236f00c2d6283b61de260adace legacy-trunk +15325 19e61b8f4e006cdf2bf648b5515ece6eb9ed39b3 legacy-trunk +15326 1be2331588b238b3d8fd802c2c36143af14878c3 legacy-trunk +15327 66dd298eaf8a5d4aa5f82a668a2c88bcab25ceb2 legacy-trunk +15328 9a97a714a1be0301efc5a49babbadaaa26e85716 legacy-trunk +15329 3dbe4138026660843a6d6bef54dcd399f391619e legacy-trunk +15330 8bcd14313c11cdc91768c16501f7dcbd5a3c09d8 legacy-trunk +15331 0df18f9472678c6c0c324c860773c8bb353c1765 legacy-trunk +15332 5952ef6786c200833fcc3b1faa4c729171a39219 legacy-trunk +15333 aee7c44bb4fe5befbede7a8f8a46760f4fe96f56 legacy-trunk +15334 8ba8b5857e89756c8ab71df738a75c859c5e7f07 legacy-trunk +15335 af86cf882d0ffc0d61ae12cf5ef7eebec5712cfc unlabeled-1.98.2 +15336 1c7c2dd1beb1f8106a7afa61d4b8babcc83e1757 legacy-trunk +15337 dc789b3e2b9b98d8460f00e1f1c915a45d2211a5 unlabeled-2.108.2 +15338 85f00f8cd674bbc637c181fe5ac75a8170e5af41 legacy-trunk +15339 077456c324bc598901490ba0a45177005e5c10f9 legacy-trunk +15340 9782535420760cbee960b86c13f38ad17d99a79d legacy-trunk +15341 e0a12095fac2e108dd7dc346628b70ed0f45ff34 legacy-trunk +15342 6ac3a2c0040fcb1dfb4c88d92eca86b3e6d9c0a9 legacy-trunk +15343 0bab1e36a3a6c23f736a09519809ae913290dea9 legacy-trunk +15344 db9458c2b63107f350561da2fffdc7b3d5e8f19c legacy-trunk +15345 cde4da18c4fa09aad8219d6596f1bfe3997b2073 legacy-trunk +15346 0b91c3b384d8cc36edd34aa43613288e3cfd6d88 legacy-trunk +15347 6ce21e45a96eebb8895a8286fba1132c48e2ae33 legacy-trunk +15348 485d5eaf0f757106f046b42c978ea7520da0909e legacy-trunk +15349 54274beb244d1d9b0c6e34df243c973284d3e178 legacy-trunk +15350 2cc6e6dfe9bb7565e317b5f6b7caf1148574e04c legacy-trunk +15351 cef45f1a7943078cb04da5c972f3656483a02614 legacy-trunk +15352 e442662b28e18900171eb9ec3473c60589c5ba22 legacy-trunk +15353 76b3399b364cdd661498c81fb09af8aec9abd542 legacy-trunk +15354 eaee924efb192cd9940e0196a7bfbb58febaef2c legacy-trunk +15355 528cfe879665207a1e4ce7d025d90a91323837c9 legacy-trunk +15356 05c06715657bcc4e0926a8c52ceda75037be4cde legacy-trunk +15357 56423b9380f4f76b36c06c2d2df3f2ac53cb84a4 legacy-trunk +15358 626c97ab128cfe997686d63e7a13f9178db78342 legacy-trunk +15359 92d1ddc1c57fdb9e06c640a7dd2f2cea1c56ba90 legacy-trunk +15360 6455d8fb78761e6967f97ee0c76679ce405a5b72 legacy-trunk +15361 b570d4cd640ac38dfebf3e36a9e9670acf8b5575 legacy-trunk +15362 82f176b7067b7cf32c66d92d97f1c6ae21a89614 legacy-trunk +15363 dd6078d20f7f82e05b9b1831f76d9aa0236af77f legacy-trunk +15364 35cdb3d03fd352c500ded55cc0179f949e6f2419 legacy-trunk +15365 b5f7ab27223795334c9940300f34dd146b86b42c legacy-trunk +15366 a11129ceeca5df69e47c1bbc7bafd0e7ff898578 legacy-trunk +15367 51253e08f7678810cdd140d8a671e95c4b8c2f64 legacy-trunk +15368 a8ab09ef48b7af55f57546e9755251904941b041 legacy-trunk +15369 32bd4bad108ba8ccc4b46a7209ac9cd087c52c5d legacy-trunk +15370 71e420296ef1127ee551504b1e4d7b142b6f21b7 legacy-trunk +15371 c195fa157541c61cff7d83db61397729691e23d6 legacy-trunk +15372 b320cf3a98b906fdaf7f57f0a756d50001c8fb2f legacy-trunk +15373 5648df74395f9b437bd9fac24c900f54a09699af legacy-trunk +15374 8228c3ae9130aa88083b4c26673670dc2234f30b legacy-trunk +15375 8d7ad3818ea6e738c5e9ce8709acf57db2d2e960 legacy-trunk +15376 67233df130373e77e192a2b673fbecce11d546d7 legacy-trunk +15377 81babba5bd34e99b3103a1c9287b04a39825a582 legacy-trunk +15378 d9cfa2e6f782085078167ed00acc1cde5d3be9f1 legacy-trunk +15379 cc4350b1b91fc9537217a8c42ab5d517b82141b8 legacy-trunk +15380 eb49141d6e10f0754461e37f6dd8ecd8f94465b4 legacy-trunk +15381 9ea6ae8cf05cbecf89b184c780ce9cad256b7aa2 legacy-trunk +15382 8a82ddaeba6aa140ac16fd73f3d2caca0ae4e778 legacy-trunk +15383 f7f9a740ed1cb5d23b2d94a1189208225d902e75 legacy-trunk +15384 9a7725ea78eb0b0a7114360f724570fee54335bb legacy-trunk +15385 6e073ba514142d99007509914aa4da8a90adc75b legacy-trunk +15386 111dc9168e435c2c2e7fa3b411d584757d732266 legacy-trunk +15387 a6c8413b3c4ff5386b5587b2894bcb44b3d77c58 legacy-trunk +15388 87f5946c56f566b5fc3721c97e7f008ae38cdaf0 legacy-trunk +15389 e7c98af0208491d9cc1c38d2d42b0dad464cbe0f legacy-trunk +15390 3efeaa7521e41b2fadd68db181391ea1409f57bc legacy-trunk +15391 57d4fc8308e3f17cf732b0729661d99ee4415305 legacy-trunk +15392 132e27149f9f3d678e1cae13ff4444f06d2a0176 legacy-trunk +15393 34d2b50eff2eb931d513b0cce84a0b9d7c183a10 legacy-trunk +15394 a56707b07b81dd4417a461e415eb4eae3b5bc46b legacy-trunk +15395 ddf986a971b568a422b35f4c5bcbce80a74491a3 legacy-trunk +15396 bea3d770be0ac4eeb0e45ab3a2921a6d60cae5b2 legacy-trunk +15397 75da9d63531d3257904486ec7bde76c4160ec449 legacy-trunk +15398 69481cde511d865df719ac0e66620be1fb191a59 legacy-trunk +15399 def959352422d18d7db3d619bd28ce199e58bbb4 legacy-trunk +15400 917d845e6e5f21e499e5e97a5625993acbb551ca legacy-trunk +15401 3f06f4765ba421b2fe787545ba42b51a69d05acd legacy-trunk +15402 004bb20db11e0867ec54009736cee707abd883f1 legacy-trunk +15403 91b2ec20763349ef40ea31298cfac219cb169239 legacy-trunk +15404 06ff966f69d52f3b037084d43ca5a99f032bc934 legacy-trunk +15405 00aa63d6d26ea0d5002192756836f5bfb35dd79c legacy-trunk +15406 c4eb70d24a873fcc43ce5e1923f0d5204a6cf3c1 legacy-trunk +15407 17d1a3f1f085d7a64e36f50bd30f534a4a492f70 legacy-trunk +15408 035abb930317f3dc80ed483f1b27738448973b34 legacy-trunk +15409 2a53f5dc0590fdd80b06b9ccd2c0c7339588ea90 legacy-trunk +15410 c92668766f5df9b9ae343227f02f7b623f960691 legacy-trunk +15411 1b083fed9a48f3b4e55a884c1d964850e099d07f legacy-trunk +15412 faa98c8f3f4225259f404049ba971b81fe2b8d75 legacy-trunk +15413 866365b44f2374857d791e6c064c8769b4a686f2 legacy-trunk +15414 0a3081de55a185787dbc43658bd629395be6831a legacy-trunk +15415 6b143ca4fd7f234e0472bdf14c45d450b87db073 legacy-trunk +15416 4cc74bf80e0bc7fb2823751bb2b4a532570d6ac2 legacy-trunk +15417 f7a899647cb3fb0f09b9dc14095b03bb46a61326 legacy-trunk +15418 805bb90af14d710f43f18fa1506b5c1f4331495a legacy-trunk +15419 e2e436a6289819122291a2df77da5c33dd7fe358 legacy-trunk +15420 b6563d9df06d072e3229342e7f1e0616d1f6727e legacy-trunk +15421 054933faf77a117ddf3744bfbf50099466a60214 legacy-trunk +15422 b91fdc29c5bd2c0a36d242d32fc4e2fec7d9ba85 legacy-trunk +15423 aa9a635a6f477a87599b9b2d0b35a495e696e745 legacy-trunk +15424 1ea8cf885f7bd931bf8c59df68616d861217d1fb legacy-trunk +15425 b77891fa93b0e43d034cc7c39d9505209ad7c35c legacy-trunk +15426 057097796120b863cd88dd8c651f6b829d3146af legacy-trunk +15427 4df523998e5d949763a32772752695cddd1a5ad6 legacy-trunk +15428 7d0255bee0f98a813da57090f908a0e737fd504c legacy-trunk +15429 06a346eb3cbf03b065fd11a144d76fbd5418a222 legacy-trunk +15430 2a6dc65c060f58dd301ea8d998c3aa9b8ae7dabf legacy-trunk +15431 2feb9790b40456fec7364cbada968359c770da7e legacy-trunk +15432 a02e6a43ca15b0991e17c54bb3cab68d89b497f8 legacy-trunk +15433 47bdb636159c805a357e2eb18d0b01609260580a legacy-trunk +15434 5646773320bea6dad64b55450806a2757781a92c legacy-trunk +15435 116fc4305a39b132ed2eff7cfddaeb455946aba9 legacy-trunk +15436 de435a59a4d53555d151e0410f1504ed4927382d legacy-trunk +15437 07dc3ed17dd5d95b6e4e6af56835c5c8fdca5c3f legacy-trunk +15438 234074545eb4e197a7f8de8b35654b352d466da3 legacy-trunk +15439 875e677236a71898826be9820463c12cceff0d24 legacy-trunk +15440 8e81c6c524b205ad51325f5a46a52ba2c0d9e55c legacy-trunk +15441 b89da202d18d769c3aa83f699a3fa0f2985ad4c3 legacy-trunk +15442 bdae6b90934f46dd468a3c308949bd6c30673721 legacy-trunk +15443 7c89ee40730f40e30547ff037fa5d011cecfda39 legacy-trunk +15444 2e1b0483b101b3076482cd7cd453fc2c074318db legacy-trunk +15445 34f0906fe823484614db9fb5a1629fb32b7b2be1 legacy-trunk +15446 cbf9d67b5fc1f5b0a34e9c4dfaf6f38a70209b1c legacy-trunk +15447 bc96c912dce8cd59ee0cd846d78589fb16b5b139 legacy-trunk +15448 6bad16789f79b452533d2917607af92288f9a71f legacy-trunk +15449 9cb960860528f337ffd4153e7c585348e9694786 legacy-trunk +15450 20b3b9765cec66bdaa7ca4bd5246d827b6272913 legacy-trunk +15451 728c16053368aedc60ad6db83a104c40b3541fda legacy-trunk +15452 7b466a73c961663e8b8c247e83989fabb92d8e80 legacy-trunk +15453 420f9aaf880bde31de4d10c88f2a1b30a59889c4 legacy-trunk +15454 1dee93eb9ee3215a7f5ff6aadd6712859e4548d5 legacy-trunk +15455 a94269bd65859194ad51dae834248c0061ac6e79 legacy-trunk +15456 a48b60b6eb4837dc68e361f87c0374f65053ed76 legacy-trunk +15457 a49e450688e2e0d68053df0d9edeb1dfd230842a legacy-trunk +15458 902800d8e8be115e52e5b24bb191ccd7130b86aa legacy-trunk +15459 eb1718c5a56c0dbea03fed92cbce1cf4bc6677fc legacy-trunk +15460 ee972ca65c1c2314aa1af78d4f071814a3e4992d legacy-trunk +15461 94ede04b9a9eeadfa24c168ee3b0a4aeaae59807 legacy-trunk +15462 90c7906b0999b51a75d8da51f759eb3081b62e88 legacy-trunk +15463 58ad6196d81f2b489954e14f3fac72bf1b59d8b7 legacy-trunk +15464 f555fd8050855ea8c19984fdbb7382a67d2ed9f5 legacy-trunk +15465 6059a9279d9994b05da60c22f5abbf60f9e39d8f legacy-trunk +15466 7ff5ae10a771d7c6d9fd88b2d509df6b2b61cc70 legacy-trunk +15467 29775c2872378f5438da7e4e95d8df29a8cb0930 legacy-trunk +15468 9abefc5b1d89a2fb6312b74b0c6a028bb4bd7564 legacy-trunk +15469 35305991719b517e29dd5f1a9aa123e0886e756f legacy-trunk +15470 1bf714e0c10f5adc6d252aceb18fbf78cdc3f9af legacy-trunk +15471 942ce221128a283015530f69377f58c4329ccf19 legacy-trunk +15472 b817f1639939cfd44f396f6eb6b04dd58ab50090 legacy-trunk +15473 be55f5ddc615bd215c1846cf5212082b88de5c3b legacy-trunk +15474 7efbb4e6afca830db1fe8dafd249382c6e95e8f8 legacy-trunk +15475 8dca55867998a592cf09c3f39469d79bb04a1391 legacy-trunk +15476 6ad8cd34ad8c8f1acb18f2bf57abcd923035319f legacy-trunk +15477 aecf35f0c16ba3c9e939a2123345de3ff5525ac8 legacy-trunk +15478 0a6af59ebffd93ad5b89b2d01665120d994b30c4 legacy-trunk +15479 53e54bd4e5f4acb1baf58e84a0232542f9483163 legacy-trunk +15480 ff81a65e0a9bb22067fc6a5f4c3ccfa085d4bd3b legacy-trunk +15481 2ea98d9dc669449f6917ba97af903cedfdf55524 legacy-trunk +15482 a598ace019439c503395e9578e83046f50c4b9e7 legacy-trunk +15483 052afb74952ecfd32980d1e480c15a9507b3c741 legacy-trunk +15484 d040cebd74ac2f253520794f3f7d6532d0ace22d legacy-trunk +15485 2b498837cd858686771cc26a918c2555c654a64b legacy-trunk +15486 40d6d2fc9cfff47972156bd1bdf2eaf38e824662 legacy-trunk +15487 5dd3b35bfd522f8a30c8f7c7885464b83d71131e legacy-trunk +15488 ce3de294362b8a852bb10717bbc757951f43dc75 legacy-trunk +15489 4fd845922c49ae0e4ce920e855fd7e3fa75df68e legacy-trunk +15490 24ab84dc42abf09840a6c4de2cab1d164ccbcc99 legacy-trunk +15491 147d0b4144ea17df0f803c5419b0ddd3f1d47dd5 legacy-trunk +15492 4118f002e737732ed077f1fbde7b9ff1762f22f6 legacy-trunk +15493 7954ff93ee3bc69f79c98c4fd301ab01a9679b9f legacy-trunk +15494 81383222098a3d9d418fc2bede5395aef0c9264e legacy-trunk +15495 cab22bcbf5b6dc6a3e94e48c9c5bf8d012524d3d legacy-trunk +15496 d2d865d958612643b090cbe65180f54c2a257dc6 legacy-trunk +15497 d2573dbf685254487dc87b887ecde6b70f764e08 legacy-trunk +15498 77a5a14695b32a9e177a25471ecd4d4e4e7ed9d8 legacy-trunk +15499 3d26cb3808a7d220ddf7cf124a75d2f97c396a9b legacy-trunk +15500 18b0356505a5a4ac2677848bfb564e7ff7b49581 legacy-trunk +15501 89f42099c5dd6f42f42e42f4b60b9c6f4c2507e3 legacy-trunk +15502 b50bf7d3961f87e56a28acbe0f59d990a26ec77a legacy-trunk +15503 570facb73e364f777255f62fe94899015df6e311 legacy-trunk +15504 e878a647e06eaf91fc4d83442d5a090747f4b265 legacy-trunk +15505 eeafab8c925be6844ffb53d801a1fda815817cd3 legacy-trunk +15506 dad205d13bb59db6342792dd0a42bb0c00d0c248 legacy-trunk +15507 3c30f7b510d34136fa6ad376fda48b56f45d0804 legacy-trunk +15508 6c6844a2fa304f02030d568129b4d92259116449 legacy-trunk +15509 eb562df0cebe0efefcf0df620bd820c4c8f6e3c6 legacy-trunk +15510 bce49a6fa8b9e5bd26b23e4597dd8c2641dfc58b legacy-trunk +15511 2497e1c9ebceea7188e385bba9a65c43c74e36d7 legacy-trunk +15512 2c2b40eb3a6546319073114076dcc53f250f1ca4 legacy-trunk +15513 7b49334a63696acc4c83dd07db91e6c261ea59c7 legacy-trunk +15514 86ec75dac272bafc7e6add99739accc1ccceb1f8 legacy-trunk +15515 5213abfe5230beb03fc1996010176570488abc4c legacy-trunk +15516 889f2cb3f72aaf8209635912b6ef67cde29e0258 legacy-trunk +15517 ecddb2ed4c756a75cdbdff4a77a5aab850e798f1 legacy-trunk +15518 f0d2253b664f58d3ca499b2a2e573891f47226ae legacy-trunk +15519 406b0e24d62e73f8ab8b4e56f59d13470ae6b31a legacy-trunk +15520 1de0017e12267b1011936f571f306c80b7737909 legacy-trunk +15521 0f1e4e3935d7c40038bf9d20000c9392c4ebed31 legacy-trunk +15522 da02a892d61186459669713699b7bdf13e19c214 legacy-trunk +15523 9e1b8050de63a45ea4d2083c8b127f12c5ea8e8b legacy-trunk +15524 3c149d38abf9fc489f947f995498b634562faeba legacy-trunk +15525 c8a9d1766465ce5afbee9c00991b7908f6ab0a66 legacy-trunk +15526 e0ef622f8c23ce94ec29db590c4ccdba19909769 legacy-trunk +15527 967732dd3f959ba86f16fed8d9cb9e59ed967740 legacy-trunk +15528 9cbcad2e872384591ca96cfa63b9a9cd85cc2237 legacy-trunk +15529 b5ab47365bad658ac20a3a91fa7b8eb11a1f1a1a legacy-trunk +15530 263cdf9c842ee74d41c5049a6f4da9db157f4361 legacy-trunk +15531 fb4039b1cf8d75f12bd5f9f880ee961a79cb4c05 legacy-trunk +15532 52c6ac2d16a8caeeb80786612e8cb2466299ccef legacy-trunk +15533 7a4f6402c67f8875c66df8024959c0c66246bbc3 legacy-trunk +15534 b0694c1c1287d8b6df939a353da7b1badd251b44 legacy-trunk +15535 40db909ce2e32aaf6a74e829baa65402664349c6 legacy-trunk +15536 8e2b35d386aacac76d7954cd6cba3de216bf8486 legacy-trunk +15537 342947f2fb51431d84b743343a260938b8b1c844 legacy-trunk +15538 38da864a0c8066ac5d2849f18ed48a4e254b4ef1 legacy-trunk +15539 0263a99d0eb2888dc9a97ccd8fa3e3b81199d5fb legacy-trunk +15540 0570de9c8202d5be063cefd18ff006095abf7ba2 legacy-trunk +15541 9335daa9ddd3b03862614b21e3df1fc1a0a1aae1 legacy-trunk +15542 936efdc01d524690fe2188b29113afe81e61e3d3 legacy-trunk +15543 771b3e1a771c8f8774340578781a221c16cc5841 legacy-trunk +15544 b91b35c1d4c008ed8b99f9a9c0719eb90e5b6601 legacy-trunk +15545 5398b18f8319d1e44fe5426a6ddb731acbc5ef28 legacy-trunk +15546 f6e730f65bce62ebf95c82a57a992be6db00e27e legacy-trunk +15547 f768d4dad9a62a37edc0fc788784d726891004ce legacy-trunk +15548 6f7df985a80c47d60a3bb53aee8997ba8c19af89 legacy-trunk +15549 8004d29c77b8bd29629e07c78c4c23113e2a047a legacy-trunk +15550 f0d03689c1ae004ff7ec162983a4cf9fa0048163 legacy-trunk +15551 f8c1c5b7dc9f4b9737046cb874693aeeb7aaf213 legacy-trunk +15552 937f9859c9de1b69688c44f6a95f6e67cb95c9c5 legacy-trunk +15553 5ce42e07afd85ae9cf78d8475454418221f40076 legacy-trunk +15554 53974451e31f11668828de96ac8023c3b0be48e9 legacy-trunk +15555 074819afdc95ab1d1632430f7732863015f25126 legacy-trunk +15556 ee119051df77f415daeb5b9111896dd22f82b471 legacy-trunk +15557 5c0edb351c07279188540c488e4d904ae49f6342 legacy-trunk +15558 09f70f91bdae2e8f5ac9ae1b2ad76db40bd1f0f7 legacy-trunk +15559 88d0b3383fe2556439ee30650f376a4c10df818a legacy-trunk +15560 d81c95dd4039dda8f5ad696531fbcab069c37c27 legacy-trunk +15561 3aab0c5190090af69615ad8ce3144414e6f0151a legacy-trunk +15562 eef2b918d07ac86924db0ae502cbb8a1a861ade8 legacy-trunk +15563 33ddc12df267d84d1083122fd7c0b811cde508f7 legacy-trunk +15564 f6d7e32866092611d443a62c9790a3767847d361 legacy-trunk +15565 3be92cef191744996fb00bf76fc983f5f2e2462e legacy-trunk +15566 e36be7fb76ccc7fbaf8402c46462ff1e32f8f804 legacy-trunk +15567 583def8cedf4310dc1d15e6cec7a1be94f526bc3 legacy-trunk +15568 bce53b14721e919bc9521efc37858320205970a7 legacy-trunk +15569 bc1fe956239983f22ed36fa3dba6c6fd07d04c1e legacy-trunk +15570 258eed4570ce890c10f7347d5e06a9cd73b9ad97 legacy-trunk +15571 711b329609347d5d270681f9543bb638226e5b1a legacy-trunk +15572 b12ada2eb312b06d039e140713213973cc5dfec0 legacy-trunk +15573 0c217e5f055b76e490b1823e4613a06c4d37d83f legacy-trunk +15574 f1f9c30a415695748b8d9b5404371592531fd01e legacy-trunk +15575 b1b260a2de987e87853981776a3dddd286af0b3e legacy-trunk +15576 ff0f7281bfb84bc2644448f82b804fc2507c1172 legacy-trunk +15577 4272b368bf69f6ceaa3fe7f9bb18bb5c8556bebb legacy-trunk +15578 5f1f8ddc2a0cde49a87e9378ed2519923291a7b3 legacy-trunk +15579 666782326d42c0db35b01312ae62b906d2e5c828 legacy-trunk +15580 a24d9ad6786d66392661aa256d6c58aa484426bf legacy-trunk +15581 35ea5de1ee83ab5f5679c2172050d58f4f8a4e4e legacy-trunk +15582 f2db60943d6b831b942ff054df7660135b29a010 legacy-trunk +15583 723df0c801d1dc4a5a5f75f4ede2ade16b6d8a5f legacy-trunk +15584 2c7a47c64e306e6caa2fd825c8d4010e52e7dcfc legacy-trunk +15585 b5319f4225913f04016759c1f02ed3a5b7836648 legacy-trunk +15586 c9298ec637c5a612d749d29979f8619182542735 legacy-trunk +15587 7d2a0063e26dffebe2d253a02279eaa00209ad41 legacy-trunk +15588 04774d622ea2de219be9a85c29195492ea453d5e legacy-trunk +15589 62ad35708b8c6f77022c9d4cfd8de6501cc5baf3 legacy-trunk +15590 af38a7a7af10b76c3aa875d302a3d924afe8a8a6 legacy-trunk +15591 2f606867ab4e7b06179de3049e613c59257bd9ba legacy-trunk +15592 1f531208be1173b7de03b0462ee5781389d17a20 legacy-trunk +15593 b90d601d4d593a82f487ac8be5001293244b8c07 legacy-trunk +15594 41c0c60dcaf5f5296a635ccd5a38090666423bb9 legacy-trunk +15595 c2a0f2a81fa8a9b5a9ce235de97513a0633bda17 legacy-trunk +15596 bc35647fe4729c1b3565fa50868d3d8e9dcb31bd legacy-trunk +15597 3fe304050434e3a0066d799d25ca0c948a676fbc legacy-trunk +15598 4e9eb866aac6a5835d71debaccf25574b8776830 legacy-trunk +15599 16155989fa932a62181da50b91ddb8d0ee9085bd legacy-trunk +15600 b4ba32bb758bec3c88d0888dd44ddbb3728c721d legacy-trunk +15601 3912fb6c63f6133dbfb46ace56bac6f5c5b89a78 legacy-trunk +15602 645d57ef16395673cf67e1b58ad268d8052ef65c legacy-trunk +15603 4e9f7724ac559502c540701083b209edb3650bc7 legacy-trunk +15604 040c1097cd35244e99fe688c4f42893bd9f589d1 legacy-trunk +15605 afd7cbe1c492f6356f9a7d25a5f05a5f158ddd34 legacy-trunk +15606 229fd3a5afa081d4a24f7aa587b778e02770f8ad legacy-trunk +15607 b58b9033c65a42ec027264747a05d205e3f3686c legacy-trunk +15608 4916d40d96776a9c844c803f9a1b3eedcab7709a legacy-trunk +15609 057ad88aae9a635973c882fa5b81c81fe954494f legacy-trunk +15610 594c27c870adedfedfe63c620c263473d9801a24 legacy-trunk +15611 a92adb780f43d92e453c4c31d544cb3db28a0c83 legacy-trunk +15612 e787f6641afb8c90b980f7a557af693b6e4cb891 legacy-trunk +15613 28909e80f36cf58d6c746af5b44d7cd95a87577f legacy-trunk +15614 21553bd2e875f2cd6c3c71beada9a6330cbe7866 legacy-trunk +15615 63d39358db09342e07bf1347af920e63877e1866 legacy-trunk +15616 0fe0216f6c4e4a13eb04e46284711496b26824f1 legacy-trunk +15617 0c884c8d1e75cda047f75a6b7a098cfa5ad877b2 legacy-trunk +15618 6ae046d4cd04203ea2d5b008b0a1b1f800e77078 legacy-trunk +15619 14b1b5db6cb2debbe0dbae13b1f2cb60650ac4d4 legacy-trunk +15620 379797f3eeb206044550774eb4deef0af2a9809b legacy-trunk +15621 4323d4855047b8c724b54d927d2028f34f6f84f8 legacy-trunk +15622 3971e6b14a097497d51b0bdd39def60d6e0a942a legacy-trunk +15623 af0def063658036ceaa81ccf50688e9f2576aa03 legacy-trunk +15624 c0fd88f2a65a9164ac829e6b9c4f1a64a4e08e82 legacy-trunk +15625 31d0988da8a97314f626f0ee19fc0d263bc539fc legacy-trunk +15626 e545a0c44fe15cb2f2e30f51dcb03acef1794dcf legacy-trunk +15627 548cc10df9ebac808e5b64058b01ca7ad123e147 legacy-trunk +15628 e04649c3ced03db2139068f8c1b2012968b15419 legacy-trunk +15629 f4b487e352140ce41bcc81d2862417caa81c4ad4 legacy-trunk +15630 88872791998a0da196080317c3ddecb0b1eb618d legacy-trunk +15631 527f7e3bb76d7ea84eefb3c6cec819da2cd71879 legacy-trunk +15632 dda1ca53ea8a2618e96cf2c1e747db0b316a512c legacy-trunk +15633 e024ed2db625b8e3e8d6f5699b77b2d5c312fbfd legacy-trunk +15634 efc6d7789d9e6f7339cc22ad47e0355d36a9dd04 legacy-trunk +15635 d98a7557326a4d80ec905b646afcdde5ac935435 legacy-trunk +15636 a8ce19c32db9a7cf7aac2379fc453ce7c057fb80 legacy-trunk +15637 243593f11fcf68e675fba3a93fa135f892662108 legacy-trunk +15638 78231bbe605dc2ea7cfa83ab5555ebf56b9ba081 legacy-trunk +15639 6d7914885d63f1c39af796102f182c645088d096 legacy-trunk +15640 301ff14b2a0ea61fbc0ecb921e8f543ef31e5453 legacy-trunk +15641 26e20a28d051c6ced4b74ca07bae861ccfa28387 legacy-trunk +15642 6889de29c5584b28ea9f3060f10b0f9a60a2bed2 legacy-trunk +15643 11e5bf8eb47369af0d5ebc33084999c0d61b636e legacy-trunk +15644 7babf91b6d75c66502a57e30d7e8c2ec926c07ab legacy-trunk +15645 092baf69d6af87d60cbb35e7add0003bed5bfa6e legacy-trunk +15646 5a0d156c420ac713b0125e11c4a896fc26cd943a legacy-trunk +15647 1ae035a31cb4835d01e932564a638432490ce4ec legacy-trunk +15648 11d10e9b508d80b0a484cf09dac53cac801e9a1f legacy-trunk +15649 b5752de0cfa467354d11f5243460a7037fc5f72e legacy-trunk +15650 f54c3677bae7d861acb87d03ccb13e54b338ceaa legacy-trunk +15651 17f35f66ecd8bc954f71097dd156525c24d30d32 legacy-trunk +15652 0c8b9f96b26ac730ba7cc103bf374050830f5efb legacy-trunk +15653 0c2cdd7cf7dc6c6272eb09e43e869fc3bcdf2773 legacy-trunk +15654 fd5881e17427b3f6bc254c162316c5ede041f167 legacy-trunk +15655 61f6acc4aa748dd40e8c3818c72c711d14010822 legacy-trunk +15656 f0a8f12734564bc2b6b19499d8804c9c3c0a652d legacy-trunk +15657 adef97f3fea0f5407de2521ae7a38672f58c78e8 legacy-trunk +15658 e47b1a0d64847977111d8ce0ccda75d49c13954b legacy-trunk +15659 f31dcd1ad8c411879b679b21d5b1ed14b2b3aa6e legacy-trunk +15660 9df91f91e5cc9a442400bb749710ed53b944439e legacy-trunk +15661 f82b157f45e29c106b656e1dfc20aa911649db75 legacy-trunk +15662 eff2410685cc460f75189b4d683f04209ea233d3 legacy-trunk +15663 98eb3059ae760bcdf19de6d8335cacbb094406ab legacy-trunk +15664 9ee1e594571d7155d8e5e3696c5e71854a101729 legacy-trunk +15665 752aa8dff520b94edc5169f64a8ffd770b3b562f legacy-trunk +15666 25431972294b4f37cd67c680459d26c067b024ca legacy-trunk +15667 f69102c1f413f1c66a4e37d9000207fcff5ababd legacy-trunk +15668 dde7e91f2f2e5c316d8d40bbb9791a3b7ccf4897 legacy-trunk +15669 1e784b8790390e33660cbe9b2af480dc2e7ba997 legacy-trunk +15670 be36f103a9539c3dddddbf559f790ae3760dc31c legacy-trunk +15671 51398f71d3012278436442fd4eee185912500539 legacy-trunk +15672 3cee0d75191e231c036fbde929fb0f22e85fb8b4 legacy-trunk +15673 34452b883a71d5f70b8d816186560de1aac3c42a legacy-trunk +15674 e5aac9dfacf8715bd92d2b4fdd72bf22ad3a5921 legacy-trunk +15675 c8e13535fdc319ab20717a75bd34b7f538f02dc5 legacy-trunk +15676 57e2945435c90049e64f608112e7af119d3273f1 legacy-trunk +15677 00f5d0df70ad80e1d8e7bbddd482e08692237f74 legacy-trunk +15678 2a2caaee67973a8dbe119f2bf91fcdcda96c34ad legacy-trunk +15679 8a23ab057af6176ce2be37d4852b1d478eeff635 legacy-trunk +15680 31c725d70e65212d3b187535381dc4979c79ab9e legacy-trunk +15681 deaf25df15fe27e64cb651dcf0d0d5231a0c525d legacy-trunk +15682 12d0c465b103cfe94089dfc0cccf1a5be9d82f6a legacy-trunk +15683 a8afefc4fced9947b6e796045002dfb70c54d5ea legacy-trunk +15684 1caadfb8ca710bd91d8146ece29a4638a68e53cd legacy-trunk +15685 2d0b99778edf1ba6cabe84ce05594d7e6db774ee legacy-trunk +15686 128e7b9945059c600b5a6cae1e4b051fe4f954ba legacy-trunk +15687 df6869bebe03c57c3149505f06c2d9c95f273af1 legacy-trunk +15688 15df3fa0fd4d7da8e228fc0a1037d0064484cd11 legacy-trunk +15689 59e494c0802fc9256a65ae6d465f69224800cbdc legacy-trunk +15690 2eef636ba1b62f6e100c62c183224abb052d8aae legacy-trunk +15691 6618325574cb953ef27e4ff1534d365454e28dde legacy-trunk +15692 0aa3f80dbb23ae56d402777fea483bcbe8fab365 legacy-trunk +15693 1fa7c119b7a56f20a988d5bacb8ebb85a3ddd241 legacy-trunk +15694 b660ecbeaeb8e32ad8438ef60c28c8f689785f09 legacy-trunk +15695 753f9163df0bb3f3793195b2a9ca5bfd866a53ba legacy-trunk +15696 a98009a4391e787916f06a8ff00f9be0bb273547 legacy-trunk +15697 3427b0f85a7ce71bab9cd2a1663c5a9704145a72 legacy-trunk +15698 abbceb6a25324b5b44c51bfd61a755ee71b6fda1 legacy-trunk +15699 7ab5b1eeebde9283934fa9ba65f4c823f2b9b97d legacy-trunk +15700 88004f25dc25abbdb3507ce0f40df1d6566836b2 legacy-trunk +15701 3f7a35798acea109b4e5e843707dbfe125c4c4a7 legacy-trunk +15702 8c9554edbebbb48f46de691593a2420b4c6701d9 legacy-trunk +15703 a8530d36021c6c81e5996672d71ce541d6ecbc73 legacy-trunk +15704 429dd02272d6807926b1a23d2f71ff6757bdaf8e legacy-trunk +15705 b1ec49b2c5c2a903b3b93df172c3393a82b4237d legacy-trunk +15706 5d2fb67408a7cc6324b89d21169ad055e9f07287 legacy-trunk +15707 755c9ac9e6aebb5f146813176b5b8fb87198883b legacy-trunk +15708 6b2ecd172203b4a11772ce5ac9862269ea923bb9 legacy-trunk +15709 acb0261b6942f3be7b0ba374edb1f038bb923059 legacy-trunk +15710 2a64f225a10531c24b758299d9cbf2ce8d000b55 legacy-trunk +15711 894efea71acfee25d70bd4be61ef28bec90dfcd1 legacy-trunk +15712 7f022e260a4d93377090af34a2421fb07a78d5cc legacy-trunk +15713 51949de76365b1b540c9748aab3f34bb4b9f57b3 legacy-trunk +15714 a3e12881cc3c23e373d0a8e73ccef6c1c498e518 legacy-trunk +15715 430985d57da316f5d34c91b6202d139b1e9d8b6d legacy-trunk +15716 caae7501dba55685154b9f82e19bd422833224a4 legacy-trunk +15717 dc0a212fb35390fdbdb909b275683fb811790643 legacy-trunk +15718 97dd6dc3350367f4e61d43ed951a7e16446f7f8e legacy-trunk +15719 3c6641c810dba2b57564c9cd0d8ca8e69f5bdce4 legacy-trunk +15720 2513cd74147c738941bb576d9013418b240802a1 legacy-trunk +15721 45aaa75f08a37802fcd028764aa284a4ef166856 legacy-trunk +15722 eb911eca9ee9e819c00029535c31904264313627 legacy-trunk +15723 bac045b85263f359f4de614104b555e354af17d8 legacy-trunk +15724 ace13701f334d87bd9924690bebbf3c55f830013 legacy-trunk +15725 93661d0eb5cc51dca565567aa4a1f94b375218a5 legacy-trunk +15726 04c89d77dfdbf7d55fdd56f020430036959b4e5f legacy-trunk +15727 447efb64c72ddcb3ad5108f5d7950735252369a6 legacy-trunk +15728 d115a91ca5fa7f3cfc9e44e041bd87467a4e7bc5 legacy-trunk +15729 f31ffb37d72cf733648bf0c30314dbac16535eca legacy-trunk +15730 e6b407ba47153ecb6f49e7c7e7173a73145a3fa3 legacy-trunk +15731 63436719d12e02bd93d0da18f2ca9d668e0193c8 legacy-trunk +15732 bc0d49680aa3df6aac8b4d0401901e2dcc16992e legacy-trunk +15733 fc77e34ef2743f82957bdb022722c1efbf3606de legacy-trunk +15734 0b42264ac021544baf6e489770d5ea01606cc6ab legacy-trunk +15735 e7992d0d680828cc26d6a0007ef1ae458c7eddab legacy-trunk +15736 df627e61916e20a104e1c990f5f7922249b31e4d legacy-trunk +15737 f793c47c510e1367334b67e04ce0ab50c9139ca4 legacy-trunk +15738 dbb103e9a56f513d80df9afac3bfa9022016066d legacy-trunk +15739 77c651131984b2eeb3772721f2c0e0758dc73663 legacy-trunk +15740 40038219036497c44659ac9eb18e3527938e38df legacy-trunk +15741 dfa8d9f1c12318e98c2cd4220308fefbe1697273 legacy-trunk +15742 9569c56257657e061efff8d615e5e38ead04fb1b legacy-trunk +15743 89602f332447b4ef32c1b88a7d689304f3cf66a5 legacy-trunk +15744 b544299e68c5fa74fa457cdaba153d09e9d545e3 legacy-trunk +15745 536c631299329b2bc22855c0e8b902cc62f6fe8b legacy-trunk +15746 55e2fc4d340e482997e40f0c3eae07b032d656f4 legacy-trunk +15747 5279a6e00d367b00f54af4e079ef9cde554e2ffe legacy-trunk +15748 658c55c08139ccf6b39389212dda77f02530adbc legacy-trunk +15749 0eb531ce08d18bca7e8ffc0e944fbef42b357d1d legacy-trunk +15750 272db4605be47afa46ea2c89583797739481ede6 legacy-trunk +15751 e615596c5c47c001842072cefe622e996db9c4d7 legacy-trunk +15752 1a40f00a48bf649a0bfc63b5dcf2c9e3965bcf31 legacy-trunk +15753 3f990ef666679d7eeba36ec6e78429b42fa64c8a legacy-trunk +15754 8f79c5b69e0ada3c7c05364aa81b232a28a883f2 legacy-trunk +15755 01ce89fc745fe1aede7d692af1104626bb53918d legacy-trunk +15756 c910b9d9a0c0e85e0c21fd3698ad49c4fdaf4f95 legacy-trunk +15757 c75718fbd8626e8beeec64c87ab2474458108429 legacy-trunk +15758 27f3a18fd29657b65e2036251ec77c6e1f2b5aa0 legacy-trunk +15759 86d498946868cf5a67206b2f2e92fc3901f46fed legacy-trunk +15760 7160b52ca74a06b1b003e52a6b504624590be85a legacy-trunk +15761 bc147e189b7f9b47903ebabbeb6cdab965fc43a4 legacy-trunk +15762 7cd152e1539c5cbc69a8809076f526a96bd0c20c legacy-trunk +15763 5f3626fe58ca8ed2a109cce06442096ec435bf28 legacy-trunk +15764 57707dbcc245c8116ba25c0dc87d47a1599cd8d4 legacy-trunk +15765 37ba7056d4abfb6df0f65277027cb88433d34700 legacy-trunk +15766 82181e820de3c888ccbd87cecab14882a4c2660f legacy-trunk +15767 87003842faeca6efc29bab23602927a9c8181596 legacy-trunk +15768 5d8ef22adca5146833710c1c4f347922ee4d6bb9 legacy-trunk +15769 6e1861e0ed6876bbf7027eeb9dd90f9fc2c4d59e legacy-trunk +15770 7b38678b365265e2bb8e8568c1e0be30a4b24a76 legacy-trunk +15771 fbacf6d55dc693833606218d1a29f804853abf63 legacy-trunk +15772 37401ec2e910b0cbbed7c86d4478048f27dac0ae legacy-trunk +15773 9076efac8420b76080615da860b48999ebcb89ee legacy-trunk +15774 dadb0cc5c2d285eded982bc98d519cbd24521e0d legacy-trunk +15775 4f13c2b8320bc3aa29095a69f001f07e19b5b5ef legacy-trunk +15776 affe10c3b92ece230cbbc10c0dbe603d74a992e2 legacy-trunk +15777 7a29258c55ddadffe3f63f8a149a97a8d151dab6 legacy-trunk +15778 383f404b76d7fb162b2709f8b4feeaecc29b3d10 legacy-trunk +15779 2e2ee117d40fd6b14411cd50d6a2004d7c8cd343 legacy-trunk +15780 4a3e9871b41bba0b55d8e29a66bc2289bd1cc27f legacy-trunk +15781 1dac89bbbcd21733d6f132f2fc5f1ab35b08706c legacy-trunk +15782 30a4e1395211035bbfff0ec1c4ee7d6653a99e7f legacy-trunk +15783 87ece127cba2d69eba91fb81ff256bdf7fa21a10 legacy-trunk +15784 4102f7ede8e999ce101aea7940853eded0573592 legacy-trunk +15785 23e8aa485a70d56e2e158c1cd7a11ec201602175 legacy-trunk +15786 58661a557dc6934dd4ebd451436bf4fd944e8a35 legacy-trunk +15787 ca96d8ce12f3dde27f29217cd95c76a013274881 legacy-trunk +15788 bf2ee8567201548f9493d86e4709caa33b9d5d26 legacy-trunk +15789 97481d7ac548ad4ca8cfaaaccc0a92f4241ecc01 legacy-trunk +15790 70b16dc6137f24900da4551fa5f7a26cb52badcb legacy-trunk +15791 5df0348267352add33e3a7ee98eb27ac3ce89fe2 legacy-trunk +15792 00a981194ca69ff0f4fa99b778228d424ba5ff8a legacy-trunk +15793 1240bc997c8fb869438095e26618cd724ae0d401 legacy-trunk +15794 f7ad7e7915e99f573b4909ffaa4bdc92452cb6f6 legacy-trunk +15795 f1e40abbedb3e31b569009fcb63440c147b8ddb3 legacy-trunk +15796 1f61ef6453d54f10487c7214c45892a94e361edc legacy-trunk +15797 c09a570eb6eb5ff740ac0d125bb23011971f75d5 legacy-trunk +15798 360320d2fe944d64880da81ac824d3c3efdf2b8d legacy-trunk +15799 eaa4c6faf3c4b23be9aa2678ba3242a643b8aaa7 legacy-trunk +15800 1c8c101f2be1e30dda5a7512e594dd9aa6c38dda legacy-trunk +15801 12ac2c267b932e5c368d2ab24c10a6c4820cc999 legacy-trunk +15802 84c2a4d2df9f4ff07eca38ee91413bdeb6f5a9c4 legacy-trunk +15803 1f2441978ab1400636e0ff40cae739814eda0681 legacy-trunk +15804 7df7452d13cd4339243521c383bb2ebea3ab61eb legacy-trunk +15805 0d309f7f023fc4aec8bab3914d1a38db4c71a444 legacy-trunk +15806 72058dc7d545b77e1d17f6765b4b106156f787b3 legacy-trunk +15807 01d1e10184950f2a4381e756e0ffb12a53ed6d8e legacy-trunk +15808 f73458c5c35d01dd91c77945bcb948c3776f65e3 legacy-trunk +15809 700984109cb99febe8baac28dd6e805715625826 legacy-trunk +15810 0be4b7b650e33dda08289d7f6eabd2c544747ada legacy-trunk +15811 a195962e389cb2a3ca126d5df0c7f3493cd75e17 legacy-trunk +15812 f133841055289c7bc6fcbf55e4f8d047623e130c legacy-trunk +15813 4dbe13027cb319ce1c895383cd790199e1ae61ea legacy-trunk +15814 b007442378770dfef78c7d0c6c748fcecd87e9b0 legacy-trunk +15815 277ba826cfc97ffed2fa25decc00797c7f1e7212 legacy-trunk +15816 cb8109e728771cf75e172d16eb22b479fc33a58e legacy-trunk +15817 8a07402e23deafc4eeca085549d6c5aea9695528 legacy-trunk +15818 2b21cc1bb564912ab964b752d19aba0aa763b700 legacy-trunk +15819 53f4022c0cd587c97ad47a15803a731b66532e17 legacy-trunk +15820 f402057561b3a1c6c4570fc2769a42b6926ded94 legacy-trunk +15821 4b4821bf53dcf31b0e7bd7c34c5bb8436bee1693 legacy-trunk +15822 9b2e70b55c7f15f34e700b4f367c181718371233 legacy-trunk +15823 cbdb055e79d92502472d6c02182e97c619cd3894 legacy-trunk +15824 eb243443b8840e82fab7d32380c47371af2b0ccc legacy-trunk +15825 bd8db71422f6089f6bf0610c2d22139d28181431 legacy-trunk +15826 7b24c818e2cf2d3197c9d3f98ae80bd7de36464c legacy-trunk +15827 5babc0add64f279bff2f036ac742a51c381b4db4 legacy-trunk +15828 a679bdb43fadc91ed4e2d75919812c15dab82d10 legacy-trunk +15829 705132667f7ba2cd7bc72387223bc6841468c58b legacy-trunk +15830 b76df68099a5f79631bf6d8defa1c5b0f4f16a9d legacy-trunk +15831 7392e71f6cce0272ba713931bd901365f499b085 legacy-trunk +15832 c878dc63d7aefabcafa66e5a840582a49c7188f3 legacy-trunk +15833 6ab8e1bb167cd3372f8d5eecbe9e6ac50a7d2b22 legacy-trunk +15834 ef3d498aa33c2ee47226f0d9733710c6ac527610 legacy-trunk +15835 4ff3ce3f3cc621e4c592b36b5fb96f73da51432d legacy-trunk +15836 2cf9874b62114ffe8447635c2569761c5f44a9bf legacy-trunk +15837 5a7083690884b7cc1514008474b2b76d48014fe0 legacy-trunk +15838 03b1cc47a86d0142273363e1409284ffa4b4f74e legacy-trunk +15839 1d0407960953a6d80324ae36b99e2310c99c9188 legacy-trunk +15840 185003d09e766c83b2bf612bbd15977c30fa8efa legacy-trunk +15841 87b466b702d6083dbfb479824bc99745f8d8856b legacy-trunk +15842 0acec211a2090fc88431a300ca578e79a1807e9b legacy-trunk +15843 6b2c6963c40b68f11e8b32dc05784cd53d7b789c legacy-trunk +15844 e0c903112e4ed4f4ca087031b15ace201109a21a legacy-trunk +15845 08174bf23702fc08748ce11b9f149aed9934b9ff legacy-trunk +15846 92468d43a23f034864e2b337587d862033b62a2d legacy-trunk +15847 de4e30962faba0065989fe54744169e640eb68a7 legacy-trunk +15848 0f216a54d34b4903e3ee4bca4304988afa6004fd legacy-trunk +15849 a883488b9dcbf28ace2750a8f120a6a3a1a7a0d3 legacy-trunk +15850 bf1ebe8698781cf658023affcb5ce23292dd8678 legacy-trunk +15851 d06012967eaa22ec82f93dc312ba556fd6cdfd3f legacy-trunk +15852 b9ab3b2acc8ce40f706fed1a8c16805823f528d5 legacy-trunk +15853 552fb43ae8237764dbc292eaec34862758d16afb legacy-trunk +15854 cbe02b8aee07890ff8749b85120ce8ec7d5a95d7 legacy-trunk +15855 07a4d1637e06df93b00864951e77b8550bf8edb8 legacy-trunk +15856 22309e957fa73ee2d759142a5d0d9454738c57f2 legacy-trunk +15857 8c8de5b736dc21f0e4d42602f47e2e4a1f19cd5a legacy-trunk +15858 d849a0d22927ad36253cc106f206b91e6feb215a legacy-trunk +15859 7be5482426d1efc621beb31265acd62a8718ad63 legacy-trunk +15860 99cee0c87f6a04f091c4c038c1f174551972044b legacy-trunk +15861 365844e7558669399ed081fb6ff3ac310d2fa7a8 legacy-trunk +15862 3cea73a2bbd8c12667042e286248096289312d37 legacy-trunk +15863 459d197adb08fc67d920283396e486eb6ca3f92f legacy-trunk +15864 e839e8e8d3e9c0a106d0ff3f0c806e798b1945e4 legacy-trunk +15865 797acf3ffd2665731c18c1893650c1d71ff2975a legacy-trunk +15866 fd8467d1375d204a598dfd496c4a9236dfebaaa4 legacy-trunk +15867 a6725acdf33b1b98f40a9326065e30afe777d78e legacy-trunk +15868 f61b4a98b97292cd6d973750ce6e719fcabccbcf legacy-trunk +15869 68e57c5d1bec072877be32b0ec51259d5d397395 legacy-trunk +15870 c3a01b642c97189ada432f0e3e6fc0f4b5a77cce legacy-trunk +15871 346f2a1c02a0a34a370dacde50cf470f3ae5c746 legacy-trunk +15872 52d5fb471e1720f05f1ec170f559515c211afd7d legacy-trunk +15873 f8bc7f62dc23afdce609d77d4c34b7ea4ed6cfa2 legacy-trunk +15874 5bd12733a64ac48b23ba0ffd440b07f6906f60a2 legacy-trunk +15875 90eb58224e4317237f2ecc09bf24e14c5e800bce legacy-trunk +15876 8193e045787bff0816e2446da3da256c5a1a2170 legacy-trunk +15877 894613b4eb075a850fe253507db63e02aea27735 legacy-trunk +15878 26ec1b30efa93fdf5d4b33e8b063f45b1c968fef legacy-trunk +15879 7ff40da08c2a64650ee32728ce2e00ce4acd7fba legacy-trunk +15880 fd12cd996154444fbc118040a38afdbe3bae59e5 legacy-trunk +15881 896b359d1c7d6d2421e39fe44a53b77bf1943b43 legacy-trunk +15882 faefff43e58a99b2e5339a5634338c67b3a0d893 legacy-trunk +15883 53d00e7c58484367b0bc31cf014702ca973aa2d7 legacy-trunk +15884 462175827a74eebf908076317c6c0fab93e9d6e6 legacy-trunk +15885 5021db67401931f6ce49c380fe055ce4ff90f801 legacy-trunk +15886 42558f1bbfc4dc71935a5a82cfb8ec9f7b276ad1 legacy-trunk +15887 78ad4f64adc5f41825eedb1ac64afcf937ccaabe legacy-trunk +15888 07040d561f0912438f907573c2d4a858b2199807 legacy-trunk +15889 cb928d926f273db914b78d494aaedc6c6b15c4fd legacy-trunk +15890 e042c4c386056a8435a82b5791a2d616e17e4a4b legacy-trunk +15891 7a78715357271e7f7f82595cfd158ba11e091834 legacy-trunk +15892 05cc45d57a7fa160b3bbea078016a46e7b5e8dc2 legacy-trunk +15893 eaca9e25a0489607dd51a1b25a17d8daff2b7c82 legacy-trunk +15894 15651490af342f0625448b23b37cfad7857a4310 legacy-trunk +15895 f8265254d8a9fcc5718792141bbc86abac8a7138 legacy-trunk +15896 b31fff59622a3df37cbc6d8d12a32e8c799813a2 legacy-trunk +15897 b6ed8fa2675c77d41b2ce161224c6f867dabe7ea legacy-trunk +15898 72e3cdb32a6c61447a61df563e3c5f37f6fa33cb legacy-trunk +15899 404156092f781b897f4af659cc9b10e44ef5d4c3 legacy-trunk +15900 c2207d6c03a818ef53f55bd91c61ca00412ccd46 legacy-trunk +15901 7c6b12cecef26e338e9be16926af5a2f265392ad legacy-trunk +15902 cca84745da3e00cbf83a4f6ce4debb5c3b48b1a4 legacy-trunk +15903 f86ea5a69c5eadb8040fc18f67f529840882c378 legacy-trunk +15904 f5f0f00f922a36aaac8fa0692bff78f2c7eb266a legacy-trunk +15905 ffa4b4b437031d34f0100aefb63e3dfbda1adc6e legacy-trunk +15906 0a1463ba293487d6ea56c08b1b9b69b69e73cf17 legacy-trunk +15907 795b327a95febdabbfc9bddac0201a913adabaf8 legacy-trunk +15908 2f3e41865d3d3bfbbc3f9ab2f901e26610ad93fc legacy-trunk +15909 607e52841df278fce2a4107941ef21b564ed44f5 legacy-trunk +15910 67e7746619da7ed7cb75cab602c94aa73d25a832 legacy-trunk +15911 f1f4d822e761e7acea9fcd245256509b791ccb20 legacy-trunk +15912 3f8073c63033c163a7940e63b7975f722d623db1 legacy-trunk +15913 2b72aaba7895111564ea73ab1a0d8de61af236de legacy-trunk +15914 32816ce60a49b09ade97591729e2803316ffc372 legacy-trunk +15915 357b71c6933b8513d25bf91ef94a753046fc38f7 legacy-trunk +15916 9919d65edc76caffbd6fc28000b68bf27fe10eca legacy-trunk +15917 c339ac7b6d4f1e112b8bffe61f7c52fb4f981e65 legacy-trunk +15918 fa3dc21d0e0880e5c42d0d962841848621962cfc legacy-trunk +15919 1a42a9d10357e146afadde7b4210a670c807e110 legacy-trunk +15920 53355ed61288928187c85cb7e61c74f2c2cc0c55 legacy-trunk +15921 139eaf2f96ab6721e32a18bc24debd761f504a05 legacy-trunk +15922 cce2c7a38bd56de12663497811c9f5641da6ecd4 legacy-trunk +15923 c360806c06c763261ac5ddd82416b4e88b435898 legacy-trunk +15924 a09e8635534de12b42e1792682a129f4a5d3659d legacy-trunk +15925 6faa411c61fb4aedf3102a223505bf9febc7d0c8 legacy-trunk +15926 c9b1f1986c402948d7227d8b3c82e4ac31a0472e legacy-trunk +15927 023a2018b96deba84f977772021ed1503cb29701 legacy-trunk +15928 f7294246d04f8d4c56d66a1031ca9648e3405cb0 legacy-trunk +15929 5f6f0886905cd3318500eeeb161504211b020841 legacy-trunk +15930 b78b996e8ebc2b06321cfabf1973c6a5e9f49100 legacy-trunk +15931 208346e924cb0290ad4071795b26417056aea510 legacy-trunk +15932 c17fd2ca6659c0148a8b68b5eeb4dae542320232 legacy-trunk +15933 05e45c5f2de5b7cefd680d8f16b7d0474627a6fb legacy-trunk +15934 0021f3c0b23803238ecc54227a9c99e50be9c916 legacy-trunk +15935 9d9e5a7c12dabd39198d774b4c830f33d1dd5d72 legacy-trunk +15937 d37c027e3fae97bd8c50b696e8907f5fa1b5064c legacy-trunk +15938 28a8bb794f19d58c8222abb95720f5304a493fbe legacy-trunk +15939 7a96ec010333dc8261219787d289be442ac7aa42 legacy-trunk +15940 d37374552a15f9b6dc2f8c4d075c7e1b4adf642a legacy-trunk +15941 915d985918e21d3a9cdbd7d73ccfd97f61403426 legacy-trunk +15942 ef13242de433e74d0c277de2984ea596ae376644 legacy-trunk +15943 6f4669814884a31068eb0853d12f95449ab833e4 legacy-trunk +15944 1e302d996d58d8cb4a9901b3999d32b0c9c5f2e5 legacy-trunk +15945 54bffdddc0ef08315d650e9af2ec98430454eade legacy-trunk +15946 efecbbf727653d77a62ac8076c92a67cadaab46d legacy-trunk +15947 e9c34cca0c9686243552e6d7c0af6f4479838883 legacy-trunk +15948 c45bc258f833c1290a6e0965ebb3acfe2ef84482 legacy-trunk +15949 59294dd4bfddf1e142837168bdb67606fa8e2ef7 legacy-trunk +15950 92ba928c09b8b8cc1a762113544b7dd2111e9216 legacy-trunk +15951 7e245bc598b7bc37183a55a69e3351db2c050199 legacy-trunk +15952 c7be847826b172410f2d0e6a91fbc4964dac20b6 legacy-trunk +15953 7e71975ea5f090fffc143e9177cf494df54b9426 legacy-trunk +15954 3128c3cd18e86cea45f2205ff1742cc23b31bfdc legacy-trunk +15955 541db5f6259e96ac34c73cd9b0b79795d4293780 legacy-trunk +15956 753af62ab8a19bf9aeb3368e244abb25175a112e legacy-trunk +15957 96167af90fa03114f198e32dcb76eb0141a2eff4 legacy-trunk +15958 18920eaa12264a7afa8d74abb9340b5bddff1f01 legacy-trunk +15959 ede18fd5ed15ae8d6fefaf52a3f4a630172171f1 legacy-trunk +15960 4deeed58bf764cd567b485dccdac9e6c0dee286d legacy-trunk +15961 c5279c0f716f05b27ec0fc02d6fab8f382731975 legacy-trunk +15962 ee1a34e5edb1275ccb3f5758758afff67371ef60 legacy-trunk +15963 a093fad92ccf8950488dcd6d8807189cfe669810 legacy-trunk +15964 79c4a0542572442f4f4dfd83f284a88845cdb25e legacy-trunk +15965 a625ce2fbfbd8552aaa34e79ca95befae8410b9e legacy-trunk +15966 5a4df9d9c7bf56e3b47f6dba2ef50bc2952ac1a4 legacy-trunk +15967 b9a56e5e3d227fd9d01d796cd5cde76f0ceb0e71 legacy-trunk +15968 d66435337e1c2b553b4ccb83aaca09794c71dbca legacy-trunk +15969 ea4bbabc7497309bfe50c2bada915e2923b7875f legacy-trunk +15970 9d206873c5bd4b1fa8e89dff75da4b1b9567353f legacy-trunk +15971 b11e0a898de0955bd4cefade86ac853ff250629f legacy-trunk +15972 ff243b0f16eeb8855927c126095b585f9b5c8a60 legacy-trunk +15973 827b576e265b9608d925f333c0c4a8f108180973 legacy-trunk +15974 f29fba5c98bdf7b08332630e055bd3835912d6da legacy-trunk +15975 c2909ec7d4cdca025385ea2bc6eec89b082ce738 legacy-trunk +15976 555b2e22ee8982da2da6f0db9faba47ed1634a9b legacy-trunk +15977 097684b93ca9c1049a826f2767f5b76d57fe1a79 legacy-trunk +15978 63ebb690687749d8204eaa1be198b292f4433363 legacy-trunk +15979 e2aee6190b1985003e02b8b6fb32abaa952a778d legacy-trunk +15980 79dc1ef5c22d19691892476cc7196065e2aa8995 legacy-trunk +15981 a92f43d20ecb15f8378b52af9f1c4a6d52e6ea44 legacy-trunk +15982 042b96cdf7d794500820c70df4077f851e3afbf2 legacy-trunk +15983 d7b48c849189534b53f4a343d470998a64b6b109 legacy-trunk +15984 5dd381aeb23b27a88a244cb4cfd4e44795522743 legacy-trunk +15985 05d5d3f9a18cbfafdb80754772842c21e789dfd0 legacy-trunk +15986 1cf544ba239e561658de4b53640e3a31290bf036 legacy-trunk +15987 2ebfff13936c24c0d1bff1dc5e16e0b81314fbb1 legacy-trunk +15988 12437deb0680abafc11747dae16a900893cc1a70 legacy-trunk +15989 c2df5d28034da577b89b5bed0c82d20a2892bc6e legacy-trunk +15990 f195c9981fa1a9a650ebd3b5061bc51acef2eb02 legacy-trunk +15991 344ab348f1e9c9d8b007332f8608c0de7a358f84 legacy-trunk +15992 7066be2edc3b69d5f6931e51f4197d18cc1f3e48 legacy-trunk +15993 209eb44cdbf7e114662258a254c88c5813d362b4 legacy-trunk +15994 68dd403071726e1f99ac49a569e6915777c26419 legacy-trunk +15995 86c9f691f3790a390bb72390d0243c98784a5fe4 legacy-trunk +15996 79f8f6b963c269a249f4680904b5ea2c1b045fe6 legacy-trunk +15997 78bfc740b61cd1d9ce1db6ef4a3c006854fe6550 legacy-trunk +15998 31f9fa42df600aacf5ee08375bab4c6d9fe110e2 legacy-trunk +15999 af72805e9942ad2fdf5afb925c9d253b53ac2911 legacy-trunk +16000 049395b02602a34d10b45a6288901d1f9d4151d3 legacy-trunk +16001 650154292ee1173a6304e2b66f11a48c87117dda legacy-trunk +16002 53be285cfd2cac6bb9b686da44372b9a00403b94 legacy-trunk +16003 6104b61215e67ca63d6b8536220e47d5ec6f5a7b legacy-trunk +16004 5466270dbc9268a0ca1a97ddfb9257e39d90c1d7 legacy-trunk +16005 1e46c23b1dadb74e6ec337e2689b0f22c902c187 legacy-trunk +16006 a792b74cc9e8c35267b99abd8e99973576bd4a58 legacy-trunk +16007 09d9172fb1d34cd7200d065a7a6961a705b576b3 legacy-trunk +16008 57d6a31ee40e0149d19879936968753da61f5fc6 legacy-trunk +16009 589202c6488791d0e7c7327c8ac49ab0923d0002 legacy-trunk +16010 8ede4b0803fb79ffc37cb2d076db1775866ab1c2 legacy-trunk +16011 ac4d3cfbc1c9d184194cb9c2e59c3afd12773ddb legacy-trunk +16012 88640ecf55061f325cef8b1222ba4f8a9710dbd6 legacy-trunk +16013 86177fb0edd835ccc4b88d76d12cc8476a109ebf legacy-trunk +16014 310d7cbba329239c9bc67a2b7379751d0c092958 legacy-trunk +16015 a6a64e9ab238d0fe41c2684f6ea05ab9f95ede53 legacy-trunk +16016 ff0974e8821beec32d761e01c9931ff53c6f6e10 legacy-trunk +16017 916fb024ce942d097b08ce5779474ca6d6ba6b64 legacy-trunk +16018 87ee82e5c56d31b771f76ed5ce30acb6334f9ff4 legacy-trunk +16019 34a6e5feca18e3e4b32af52d162944dbe271dc54 legacy-trunk +16020 babe7b9cc617456f42d355f1c299e05385bae098 legacy-trunk +16021 3da4934219e5f477e75c4887b8d6de8b445b262f legacy-trunk +16022 5fc18bca7f55ac33a5290c52409807114bb33d97 legacy-trunk +16023 1c5a5ade04e2762c9b11e29db9129a2f265aa2df legacy-trunk +16024 c6fd6ffbcb15c781ca4d4eb8525b6ed6feae2683 legacy-trunk +16025 84879ab71b9f3fd8daf96bfb77bdf11a12678781 legacy-trunk +16026 b9adb79cdeb63409f9f51d4b418b1f238360f85e legacy-trunk +16027 e8bb0d536633ae79523098a257f18c4d52374d34 legacy-trunk +16028 4c4e95147258111258274f544d5dee756fdd6da2 legacy-trunk +16029 4ce255495da34030440a58b7c70f4a55abb9bac7 legacy-trunk +16030 83377fc298d83c8af4ed7efd3d8fcde6e592921c legacy-trunk +16031 e72cb42176bc7193d9522324d7d35c45acf4c570 legacy-trunk +16032 6155f532f1fcc4887bfe89a50919badc450d5fea legacy-trunk +16033 89f0a664e2830b1cebed3e8db3fb9a1e5027cfbe legacy-trunk +16034 fdb78cfd9e767d92a821163008569d2eb092931a legacy-trunk +16035 efb4b0c66688e43632dc1355b9c9eb700795b5c2 legacy-trunk +16036 b53290b7b5468a19b7e8d08f480bd1a79405ad58 legacy-trunk +16037 1c27b37ed1a1ae77f25e65e66b823e461b6583b3 legacy-trunk +16038 bc714a7a004284bedc7478b455a754aece52c07e legacy-trunk +16039 e2b3621e6521392aeb6bb7ccc75f59b35bf526ee legacy-trunk +16040 3370edad08ced5df888eacba796f9aaeea605796 legacy-trunk +16041 e2ee38ea7f35e4d4a03e073ce11430023b4ddc31 legacy-trunk +16042 503a73998222c5312469c81b6b09d62b6c4ce6a7 legacy-trunk +16043 3f598b98d7f922406fc4d1837bbb03b249909d71 legacy-trunk +16044 91de3f03ae8927af2f779011722d455b1076b122 legacy-trunk +16045 3e07a7315af52ff6845f98c4906a4deffd4a565f legacy-trunk +16046 5102effb0c4b4c5eb5e6c2de85c99c6f9808b6a5 legacy-trunk +16047 e0eb431e4393acd7f626b1c2ba7396b2cdfc59c3 legacy-trunk +16048 7295f360264e47cc51e6ae1a6107f107f1190050 legacy-trunk +16049 4011acfe1433fa9615bb2d65dd4ab3d69117150e legacy-trunk +16050 f119c2d8d5603f7ff4c1998dbbf9bf4c53f488db legacy-trunk +16051 cb186402599a727faa10243297290778d403a4b2 legacy-trunk +16052 7edc480bb9f398e9d241ef58a43f53e47993649c legacy-trunk +16053 cfc64faf12ce599039ae19fdd4b9ed452ee92344 legacy-trunk +16054 18c81f1a0da234890394b716f2cae6c2f9de75fd legacy-trunk +16055 e38be8717ec031b612b8ef5561bae32636d3cbfe legacy-trunk +16056 800a75d0787f0a01a8895cc6d86ecb999b3ea4a7 legacy-trunk +16057 6e4df3414a5fcf500c578ba3c12b60f9fead53b7 legacy-trunk +16058 b91b5762b1cd114ab7c037fd364e8985ddeafaf2 legacy-trunk +16059 a5e20d07470c5e7b8319d9054fd13e4c99038a6f legacy-trunk +16060 46ee2715d29839bd63eabab2469bb359fce3fba4 legacy-trunk +16061 2fb3fb646cc59596304a358d5634cccb839e2edb legacy-trunk +16062 3db62c75e65b15729fe660e7b02de20430bb5a04 legacy-trunk +16063 1cf6738249aff5e3339be791f3b49ead03d6a20a legacy-trunk +16064 90540cdf9c8d9647a6f4e6c88f6fa9c29df88a59 legacy-trunk +16065 36074222161c0b1b4e7f98a5d45c6fffb437c156 legacy-trunk +16066 50f977e1e2ab70d2be7893ffd29b5dd9d42cb031 legacy-trunk +16067 33ce63b0635908fa3fc02377160ad150bd7949c1 legacy-trunk +16068 384fa9b9e253ca0f74407acc3fd0f44ca0ce1df3 legacy-trunk +16069 085b015a9291d9d5a13698ec3807c0d442b7617f legacy-trunk +16070 fc2ad6fa08ece912b38d5176e5a1677e47529e90 legacy-trunk +16071 c7ef1585983c46654cc4c7a21102a2995c08f924 legacy-trunk +16072 3c35bf7b580b022e8b7be76034d80fdb4790b478 legacy-trunk +16073 0694ce3bd48f67b115db5e78954804c6abddfdf3 legacy-trunk +16074 420ab443021e965d3bccb2c381c2426200874d0d legacy-trunk +16075 a2bc8dff55dff54744a4c13df1643cfbd470e798 legacy-trunk +16076 03aa26819ac27651d9cd92e0b94a23047ca81621 legacy-trunk +16077 58183679c90a22098b609e1f2b40ee501e29e707 legacy-trunk +16078 fd78bc5f2b2ccb1bf4d38441117774c8445a33b5 legacy-trunk +16079 66d42c51df16aef92eabe4208ed2c9361a647b93 legacy-trunk +16080 cd8a41bf4ac20b9a72b4f0f71824be7ef7c861d9 legacy-trunk +16081 390e5d51ff7332b6512b8f7e41d8978e7d5712d8 legacy-trunk +16082 67a04816ea5011a300ee37a0636ea473bf344e09 legacy-trunk +16083 ac24d82d8e33baa63a9e7ec180e6686820e08ec8 legacy-trunk +16084 af10d9b74143d2c3ab18d88cb8a3fe23943ddaaf legacy-trunk +16085 ced860f2d8d2ca5e0ec2fa0c94dac29684e728cc legacy-trunk +16086 3418d5c0f96022ca8ec3ce5e077ce6ad29450a6d legacy-trunk +16087 7bac10a9bb61cf6ea0bda1f06c3de952c392cc3b legacy-trunk +16088 24717405dd8990f9b1a96258f1f9230b2063f209 legacy-trunk +16089 c155bccb7a22fb2468a1e40df4b926518b7ffd08 legacy-trunk +16090 d8a407777a6f4b7a4a81314c54372f3ed9789379 legacy-trunk +16091 45494046c2fb61c57bf3a7954ce1ed152295ccd5 legacy-trunk +16092 63d2887baf118426d32fc4934c36bcc1d532d86a legacy-trunk +16093 7e3d60455958fc73863b65e44c29d10a42740701 legacy-trunk +16094 5626d4255fced5cc9361608398743c9decbe7cfd legacy-trunk +16095 89e47eba277189bc88f4d91a83cc3f5689b694ce legacy-trunk +16096 87df1ae4f110c5d097d232415a45095b06681c3d legacy-trunk +16097 8d324d9d518fdbd50e0c893144abff1890c819a8 legacy-trunk +16098 f0d402d48180be9488db9dde6c22920ae4dcb10a legacy-trunk +16099 e101600adee44a6312e9f120216be1fca5c5436d legacy-trunk +16100 a7f72022b93ac897238c26dcfcab379fdbdf2123 legacy-trunk +16101 f98d6d63ad71b6bc144a0df47e1c47abd1c060a6 legacy-trunk +16102 dff277d5feb25b0ee9dca25ad83023207e113e63 legacy-trunk +16103 3f1bd4782628b6a2d5f4746346516409836de0e3 legacy-trunk +16104 2a5a3cad5174a5fba75772ac3fdca4ecfcb80ebe legacy-trunk +16105 abed80b50a2ccaba4332daedcc49968607a4fb46 legacy-trunk +16106 c3029f2760472cd854b0f962e2cfec511d43c7b5 legacy-trunk +16107 4c40ef5dcd827af9fad81fc28aea39dad6d93d97 legacy-trunk +16108 fb30996101bc834d29e8a316bea4c0b0c873b281 legacy-trunk +16109 384835ea0a5a16b385e208cbcad44f78966bd3c7 legacy-trunk +16110 7628882dcccde87e068ed431c93a4c559835273c legacy-trunk +16111 b3530dae03bfb97fd8a307723c22d2fddc90c6f4 legacy-trunk +16112 e0d676e9cb66c140a77eb5d0985788813105e8fc legacy-trunk +16113 5619c3f7a44bdc5ad1643076146e9cd20ce5c8bc legacy-trunk +16114 d88535ccaee5c269c6842f975e7d44dc151f63a1 legacy-trunk +16115 0b289e00d52a27455213aedce0b0d0b21cecd4d0 legacy-trunk +16116 99f341a97fdeb6f07924ae5d80cfec469495108d legacy-trunk +16117 b4aedd90c8642e9da0ea4c1612c26d7a6a9e1938 legacy-trunk +16118 9a1b961e0c3af5041b09a53dfd292cf8f5d569e2 legacy-trunk +16119 d80381336612d61d7e28f41590398b95d262e8f4 legacy-trunk +16120 c8706e5a882fa212df33c0e58daaf95417829d78 legacy-trunk +16121 60a9726d85f8e30346c8fca0bcec1ea15e5ff4bb legacy-trunk +16122 484bfde70dccbf4cb6bc83c60869d496b548681c legacy-trunk +16123 bef7b629ac959be135c7cdd05d1e959cb5457b68 legacy-trunk +16124 02f8705bda05e5206fd86111e9e8b089546d1e1e legacy-trunk +16125 f36936d43d02bbc63be0309f41aa68bae4ffea52 legacy-trunk +16126 3be2944959da73c5797175bf90a4fb800d682bf6 legacy-trunk +16127 b597067e056f791b3459902822febca67e86d8a1 legacy-trunk +16128 a1110da657e50dde53e0fa930ea4685222251ba4 legacy-trunk +16129 cbf66e4ff08f0ee9ca0b12a9eb1ce860fb3979d4 legacy-trunk +16130 94790b0c55d04acccf396cd61638432f23372754 legacy-trunk +16131 f0c80b8364e20b3b48d28eadb6371bc889f7a281 legacy-trunk +16132 3a00031f9d60c7c2df2e1fc1d82adbaa90c3c961 legacy-trunk +16133 cd8b8bafbb33973b194108f67a75322ebfcab99d legacy-trunk +16134 745177be1a717cf1532a151f27a5c9cd96108199 legacy-trunk +16135 d679745d986fdb490a7276a3144c4fe104eeffbd legacy-trunk +16136 8fb7311d1381088e58d670b19bf0ef35a13915b8 legacy-trunk +16137 cbbe512d24e05ced347a0d6f8219aa1f96aa3a98 legacy-trunk +16138 bfe22cf6e7708ba642a40add26f1f0b3b1448a1c legacy-trunk +16139 2017f54b0325c7a69b27ce2dc67c0429da1e93a7 legacy-trunk +16140 113d833eea7e07a918bb516ab54549d944041839 legacy-trunk +16141 62e140ba782dc040094d18df85cf7e4357fa746d legacy-trunk +16142 d166a1e60760fd26f611a2c333e95b2b481381dd legacy-trunk +16143 89ff5917bc8bc7f09cdae5c373ea917b0821493a legacy-trunk +16144 b2d10407ab9dbcaca6dc0e7a4e8be248e68868b6 legacy-trunk +16145 3ff022e1b95d1aaf05b1822fae356ed78c21a188 legacy-trunk +16146 eacb2e51e1696520bdc85f0273ff7cc4b518a348 legacy-trunk +16147 aff1c4146c1c2f3a874f96b5342d53cac145dcde legacy-trunk +16148 3f08bedc1c261516c5223cbe7e9e22d763ba5c04 legacy-trunk +16149 1be4665190f06951b3822b38cdde828ba84b321b legacy-trunk +16150 88044f9df833d564d83fcc5c973388c2463c99cd legacy-trunk +16151 1c0d35ba16b1c62b21c0638d4255e3a621392d81 legacy-trunk +16152 62754b9ec7dfc05f5620ec67d4c50ef9a86b09f9 legacy-trunk +16153 1b4359a2976dac3316475bb1be2430ad5da6a973 legacy-trunk +16154 b05df687215ef44c97f5fe10d0821a8ac7b3a254 legacy-trunk +16155 bcb14627b8f41ca1116d507fef4c579c5c3ec79b legacy-trunk +16156 8107de28bc82139d0478312da0ac9edb3c6f471e legacy-trunk +16157 317e8e09ce8771c62cbc6d7ca244b603dc24e80a legacy-trunk +16158 759f698740ccf3d6ce96bf73399f89068c5d0ea7 legacy-trunk +16159 8eb5c36ede9e713d65e0fb8cb2b856989a198f55 legacy-trunk +16160 e8ce1bb056aec21cdd6facb99edcb80b7442efed legacy-trunk +16161 21119189ee182cbe80912fdd0a8a5b6eee05b6de legacy-trunk +16162 98db0c3c1fb9dc004973a01af02a84937209811b legacy-trunk +16163 8f1a2deeb9b000d483e0a4ac8a4808ade2548034 legacy-trunk +16164 7fbdb581838f631bdd74c2cdb2e14887516fabe5 legacy-trunk +16165 e95ff211b9d3c7b8a00f8e0dc9eb61bd83d1e846 legacy-trunk +16166 4cf21852fd521600917602e627253f3b498d41ec legacy-trunk +16167 5371478f6f5b86de3e6d251f5ca4b1ad43647b55 legacy-trunk +16168 a503af7e7fb7ba67a4e30f5178f65175f3ad4dc4 legacy-trunk +16169 f2633c93e2e57e7a98f8707419415e53782e3638 legacy-trunk +16170 f5212af9e6413f3174fcb01711af42f3afe69df5 legacy-trunk +16171 c38bacd8efad2fe2280064e9612f2a16d10650e8 legacy-trunk +16172 5157eb7be20d78032e9ade262c65883bc47f5064 legacy-trunk +16173 9a83910548409274d2a03a64cd6bf7e4bb207736 legacy-trunk +16174 e7106c2fc26cc4743ab8cb02dd0b5348b764c8b7 legacy-trunk +16175 7fea4a1af0909feaa69cf01124c4dccfca31ff23 legacy-trunk +16176 6a78ead1398704368b5cf84afefc04e269bbc813 legacy-trunk +16177 2ba76e315016b236bd53d9dad8452c9186aeb22a legacy-trunk +16178 da610930638b4785996619c9cc2af08efa79659a legacy-trunk +16179 70e4cbfc3b2479c8eae394a0cadc05f95a3e45cc legacy-trunk +16180 85520c220067a29ab1a6bd1d5e7eb6edf729846d legacy-trunk +16181 db9392a04bed421ce9e0266f05dd484eea1d5fad legacy-trunk +16182 d3f1eefdcb3a9ca16b1294fad03aba42fe469c67 legacy-trunk +16183 346df19208737abdeb6c93df3dc7844035845597 legacy-trunk +16184 aa3d3bece774545d22f618f73d8783b839b80309 legacy-trunk +16185 a87803eb9dfb1447f59ff6541bf63bc0ffe56737 legacy-trunk +16186 64a14ba746413853f00d95f68c3c2219cdd3a6b7 legacy-trunk +16187 263b4492844a206a3b954b7138589e73c622bb84 legacy-trunk +16188 5ebad689b7a79224e07a474c096a767e7348a387 legacy-trunk +16189 618a7280f6be50b9767f976729c571bc43fb841a legacy-trunk +16190 0d6af303a86cb4d36776e94d89ae9d7fd786e216 legacy-trunk +16191 8a3d50ed06f797c73706442cd3010eed9ef5fd1b legacy-trunk +16192 088c5f3b7094c9592499dba52846f5fc7baddfd3 legacy-trunk +16193 c71118b780594bbba9180716f40cd59a79090cdd legacy-trunk +16194 d17664bd9b657ec54bba6fc9b2bb2b82d02af9d3 legacy-trunk +16195 fc78e5a7812a510a5958964ae160e7367d1c2308 legacy-trunk +16196 cde27318cf87b5be82c162817122d0ce5b68dae1 legacy-trunk +16197 7e3cd9480f6638ac1464e0739ffc07b01c65949c legacy-trunk +16198 bc9e22ad5c46081182b9b36782a11ced77590225 legacy-trunk +16199 9fd33369335081db74b8fe252ffe69609d7bae8e legacy-trunk +16200 ddf074ec65063f881a3d31ef1268d08737d4dee9 legacy-trunk +16201 968a006e5480c268cc086cd3796627d3966e3f1f legacy-trunk +16202 f8d084e3f8ecf1f83ea5b20bde21331c12649702 legacy-trunk +16203 5edee6878943262b7d006ecd0c4835b85ba91927 legacy-trunk +16204 ed72067aac032884133560dcb3423005f2bdfcd6 legacy-trunk +16205 7e58c060d5342d48322267f4885924f999333067 legacy-trunk +16206 5709ddba423cc8dbfedc1558c8a6ff8aea94d067 legacy-trunk +16207 091ca6b9348f50d518f3f645f7004dba6db44d1a legacy-trunk +16208 23f9689ace506377bc2e8b52f17a68c5e0f14ba4 legacy-trunk +16209 a89f7f268de45f1143b4d9b41f6147159c4ddbf3 legacy-trunk +16210 3e10ac7a5bf36fd3c7673736975648c196db3af7 legacy-trunk +16211 0409a98cd582e3675c3025e889d72fd43e5f71d6 legacy-trunk +16212 4ad26968662be062662b6b2b7f2f2ec23f972a8e legacy-trunk +16213 808b446af97c763611ea7a89ab86eb33a92a9f3b legacy-trunk +16214 ed4f7a22e928caa233cd922f572ee630ed89ce5c legacy-trunk +16215 d6198e703602be3070b1608279f0d50d135b9c89 legacy-trunk +16216 fcc75a3748f5419670f9d3da0822c84249418e93 legacy-trunk +16217 431538ffb3ad321465a11d48a29f8951707b425f legacy-trunk +16218 6211315eb592ced2da379fb1cbcd39aae2bd3b1a legacy-trunk +16219 ef2ebb3b0c647ffac1ecfe9e8235047ddd8d769e legacy-trunk +16220 7908ec855665dcbd4d26c424f6a6bea2e353f4da legacy-trunk +16221 0f95c93f200bdeeb2f05a94f41a95da87676ceac legacy-trunk +16222 e6d17f15ae6aefae95b9a141223d09f9531d1675 legacy-trunk +16223 f6cdeac44a10528de624203858a06f94c61671c1 legacy-trunk +16224 4cf0de29c08c71abee95b91ef7e6b30a4707053e legacy-trunk +16225 b7066bb795810cb194fa105103d81c7ae98d88fe legacy-trunk +16226 ea8235edfc96158372fa99b8c86484b13a185366 legacy-trunk +16227 8e92d941e07f50449c87bdbc5712a68648fdcbf3 legacy-trunk +16228 bfadd363a200a31a68f121858bb914ee7fadd43d legacy-trunk +16229 6690374a1dc1a5a0eab804de69095f18a52e290a legacy-trunk +16230 b907ebf3b052b93214464d8cbf52cc922277e848 legacy-trunk +16231 dd7e13915328fc9a59174b8819e3c0862225700f legacy-trunk +16232 75b0e8cb07831d3dfcfddcd9272c4e77a48269b2 legacy-trunk +16233 df189f9cd010dea0efcd899f22401940a0799167 legacy-trunk +16234 dbe83fd23393a210999aab4422d01a967fba232d legacy-trunk +16235 31b1f691a7d9189e7b779eea268a522ef1fba721 legacy-trunk +16236 e1b070d7162c8de766abb4382c6d2dd73bc7df39 legacy-trunk +16237 2ff2785e52919c1cc61c5cc10e8a3e5f60f479bd legacy-trunk +16238 8f66c5ffa26c8605253c4d451c794eb750b449f7 legacy-trunk +16239 1622bb24da55664d38d45820ebac02bb89bc4366 legacy-trunk +16240 70d351fcb8d5900c86eabfb24c752c60fe79798e legacy-trunk +16241 93ae34aa20ab363567b1a2e0cb43d88c3eed090c legacy-trunk +16242 6084f8d3a825c0a7647b242f3b8add5a3007f955 legacy-trunk +16243 3abecb34737fcc806edd22dcc6b9294aef7d6ba0 legacy-trunk +16244 000a1c7eb09fbcfa88fa43e6c2ee0e593486627c legacy-trunk +16245 87f8396851b2aa65f14a53cb95454e0f2e8092b6 legacy-trunk +16246 67fd19d7452818d694ab6b4b9685992dbe0652d7 legacy-trunk +16247 e4ec77879ddd02ed88a26565f4a133faa225748e legacy-trunk +16248 32b686da3e51913a74742adb71b3e24d107b8c11 legacy-trunk +16249 8424ec4c4bb2030ce36129c8165aa81a6230c32c legacy-trunk +16250 b31311a78a5da653172951bf11481eedfde23b66 legacy-trunk +16251 f50bdcb0dd0eae01d9006e12ff2babb0f42b34ef legacy-trunk +16252 cb539824448e85e2b53cf2b5fac8d25f289fcec3 legacy-trunk +16253 5da8456f2e4d34437bc29f0b9f8a9a124d97879a legacy-trunk +16254 5087d1d45f1da66cee7f51523976ae6cf1cbbf98 legacy-trunk +16255 8bacf8631a11cece580de36d337f7f0c97094b29 legacy-trunk +16256 4aa12e55bf95d1df223b640aa160f0826a3daf6f legacy-trunk +16257 423a5b950cc983ca295408b25b67565e83058f53 legacy-trunk +16258 03bc51e43f7af755bee0a2d7299a2c886e0732a4 legacy-trunk +16259 95454b73ea91d3d6ba2df7313c0ee506374129fc legacy-trunk +16260 c830854fa507adda83d5f64b9da741c887cf30b3 legacy-trunk +16261 046799a08057c29fb9df8f02f07c218b6d067877 legacy-trunk +16262 d9cc620ff186ef8aafb61ae5e38cb65eef95a910 legacy-trunk +16263 ca32ff7a067e695c1d3b22f59a8b2b172ecca3cb legacy-trunk +16264 7348cceee8faa9d4b8755bb4f286939f461ad241 legacy-trunk +16265 6484098f40fc3d248d4d5db2a525f0c678c255d8 legacy-trunk +16266 8256d6198ec2f7b89b247d92fc0151b24ac3e09d legacy-trunk +16267 0edeb4efe6dbc39ce779b3e32712a863cc397b41 legacy-trunk +16268 86b367d2e7afabcf07bb0fa0f2bba83892622246 legacy-trunk +16269 c05eb902e5600d5e50d55d0e46c8186f573bd481 legacy-trunk +16270 7b0f4483c3317604d49b37ceb2c9a600f7b852f8 legacy-trunk +16271 fa741988db1785d833a86ad772028296eb083b39 legacy-trunk +16272 d018485271fb4e002c7218ed1929b788df87465b legacy-trunk +16273 18395ca5c30efbb7e21e1b4650850d03f4897ea7 legacy-trunk +16274 9a40f18f0561fff2c64b48b79da2f91bb8dc0072 legacy-trunk +16275 6057f44b0b7ac5cc4799145e645169e39a7f26e6 legacy-trunk +16276 5304b88fe3ccf079e56435fb61532178807487ce legacy-trunk +16277 cd7abb4feb1ba6f3f5a3aac3fd78fe618b0c2a4b legacy-trunk +16278 e44ca61db71584f54bd03d049e4ff602fc5569b2 legacy-trunk +16279 4f110441db39182aa371b29b245e1933e8e71624 legacy-trunk +16280 86704432d283a5d4a7dc50963f28e3733fb9f943 legacy-trunk +16281 070e41f2697b6cf976e810c0346bcfcb17078c41 legacy-trunk +16282 27d87e072bfb052c9972cfd4ac3e698291693df0 legacy-trunk +16283 4dbc75c189bced9ce0635fd8cb67d663b8435ea3 legacy-trunk +16284 acc4638f37d57a60e25ae8773f7f978c7d566e6b legacy-trunk +16285 02474df546f600a3daf2775cf1481f29ac313abc legacy-trunk +16286 16e490462e6bf198d1517867f0d048d7cee407ff legacy-trunk +16287 f336a267a2a2562964cb97a5bf8865193ba58eb0 legacy-trunk +16288 3686d12362b8c0960fb97d544bd454853de34f6b legacy-trunk +16289 07c31182f2371d04123cad92cf55c12590b976c0 legacy-trunk +16290 e848d6ed3eb9d03c62622d1af49297e61ce71690 legacy-trunk +16291 babae910c2e13a36229f8f6974bfa2c136c62093 legacy-trunk +16292 ed565b0fe6484178b1b3a8478719e6a5989dc3ac legacy-trunk +16293 30495d73b943615a647ff35e11bdc61a0dae4cb0 legacy-trunk +16294 b0636a527a87999adf931025401fa2510fbe36f7 legacy-trunk +16295 1e7c32bddb8f700434fb53f9856e50f0c27223c2 legacy-trunk +16296 47fec48ca4959469b1c6869e2495c5f0614a154a legacy-trunk +16297 8b1345ff98013f92f8ed87cc34599e5c4ed52398 legacy-trunk +16298 97cd4736392c17779b0c9716d877384abb9727e0 legacy-trunk +16299 b9f9da1a3fc473f51305792451bcaae3451841c6 legacy-trunk +16300 4228775d455ed57b14a99b2ad69e63081d112ab6 legacy-trunk +16301 feab677269e08c15ec0faa95ef6937fbb35dd89b legacy-trunk +16302 0615dcef024de05d361277540bdace1d6fc79c60 legacy-trunk +16303 9dbee4b4c03fdac8d3b3e62b6d53dec0d6702435 legacy-trunk +16304 ddd6138c9e6fe762dba1e731caf8070a333f0a5e legacy-trunk +16305 7aa51ebf483f992d3e49026a8bd749a064d37041 legacy-trunk +16306 3cf4f5aee00e2fac3fd4094cbb60fbfe6bd7e5a3 legacy-trunk +16307 1d66307922125911a63ec50d2892028c52b9bdec legacy-trunk +16308 1f82a4bfd294558e5a818b7818109ce5a74132fa legacy-trunk +16309 db963a615bc9312c1c96c31341392092e02abf22 legacy-trunk +16310 d8b8749de04aba61d6981f8a901ce3f9395db42d legacy-trunk +16311 33388927ac2faa7901fa645ffde05ba1f4fd9c10 legacy-trunk +16312 95b9ddb003523e367ebb68e7c724bcb22714cf98 legacy-trunk +16313 15b18e0cc3fd24829008389a6f37b34c27c568c9 legacy-trunk +16314 dd2b5218e069ea29e88bd30e0c4fb9c42d7470a7 legacy-trunk +16315 631b6a03c160eb9c32a608e03191022a3512f938 legacy-trunk +16316 906efc1da247a361571ff1bdfccb87e2114bf39e legacy-trunk +16317 9c74b8239ff80f872d79757e0d7f51e6fc419634 legacy-trunk +16318 37b1a39606ce8bfb4a7e8036d43e23bebc934fea legacy-trunk +16319 c396b602617dc460b779d18509f2e0a35cb36b78 legacy-trunk +16320 6a4436d6958b0c67493ec36274515eb848bfc50a legacy-trunk +16321 b786536f21acbf8381019df4ef072e4ff2326231 legacy-trunk +16322 6987e9450619b7cbde7fc74e79d40049a95ea9b1 legacy-trunk +16323 ea732719b3fd07c014312cd13cc5639bca14a273 legacy-trunk +16324 919f3d5172a95ef33dc5102f4e4afccfe988ebef legacy-trunk +16325 d1f6b656103b2c2008fc27083e42b15fe5ddd207 legacy-trunk +16326 7991aeb3598feb2ee7b1c7d4f7e4f1c7f0b5b838 legacy-trunk +16327 e558eb228a463f54dd5cea9cdde9fd0e1c9832cd legacy-trunk +16328 47a9471956af9bfabd16ed1cee86962a1c80180f legacy-trunk +16329 cfb2a0d0a8696f3774234086412db423ecbfba2f legacy-trunk +16330 ac2bb7708320dbe4752a990c9bda319fbbd972c3 legacy-trunk +16331 5d61b6f2aea3cda1a7313843aee4d04b4547bbcc legacy-trunk +16332 ef3ed75f195c780a788c4ae822680f4734cbd7e8 legacy-trunk +16333 3a8c670309a21db4b1766c5dd8deb6f0995a47c8 legacy-trunk +16334 e417d9528fd611544c1fe1347c269a4f89e5920b legacy-trunk +16335 01b23072cc76967622125f4b282f0cf0c5a6a1c9 legacy-trunk +16336 cb76d7da670279e0e689f854c848c451e2f458e0 legacy-trunk +16337 7c119f050290e3a2d9fce130874cd942b1f71766 legacy-trunk +16338 61e4c29d53d8d277bc8c249efa1b73aad10d63b1 legacy-trunk +16339 2e45b7c23dc6865f818afc41c64646829db9c7c0 legacy-trunk +16340 a032101ed92644c2e62a36a5e0138a04513ab898 legacy-trunk +16341 ffd5e8b67c84332b28fd46eba5a95d3667054c9f legacy-trunk +16342 b4b6f3962bd12398ba0386d5a1ca706e62fe0bd0 legacy-trunk +16343 e871bd05c6a744d25bceb884d2a44ca1699365e3 legacy-trunk +16344 084a758051e0e1c6e2b6de06c635c91025effffd legacy-trunk +16345 ad1c8271b6f828860e566f1311d1ea18bb28b0ad legacy-trunk +16346 2977fbae4ca51b4a04408e0e3002788cc6e4ef49 legacy-trunk +16347 89f905870c0a90de7bac6777978dcc9aeb9cbeb0 legacy-trunk +16348 14ceb159e4499a3766e0a30f208f5bcc73cd35c9 legacy-trunk +16349 7c127a79a369e574e7c8ba47d1d0c3f1a2ba221e legacy-trunk +16350 4faf8c22da60be2a2d781e3b1bdd9639f61d1567 legacy-trunk +16351 5025115d23cf2b1f0d31a89f9dd49fb7a2c89fd6 legacy-trunk +16352 c503d8e474b370c2a3c901d046d1c297e043b583 legacy-trunk +16353 2077bf141b377a442684dd4085c96b2f236160f9 legacy-trunk +16354 9ca50e2433eb41ef2496c343492bcf1118f3c45e legacy-trunk +16355 df64cc0e84e2a92a74e96e4041893b3b382965f3 legacy-trunk +16356 5949b47587d9555ba46da25a61f6cd2a942189c6 legacy-trunk +16357 a13cea430c1360e4e8c2e13c8d2339a3ed936e8a legacy-trunk +16358 930f4bbbd93aa6d15593f5af9768e32c13e9fe5a legacy-trunk +16359 258468a20d74576e5dd7b31d602888a759de08ba legacy-trunk +16360 07d7403ceb0f25acc3c64be3f8a3004e029409a7 legacy-trunk +16361 3260220aaee43d2c57f68674faf50b440411ce34 legacy-trunk +16362 39f54b9a7f9cb69622430e3d97963bc6a8997545 legacy-trunk +16363 ef8b20b9f6f537182762c0cc4c6508c95c8989bf legacy-trunk +16364 d7aec17cd0b5046b59480d6d59a69e0c73e3efb1 legacy-trunk +16365 42b672a09c4a103e559fd61033b02f8b68b84ae7 legacy-trunk +16366 483e75efc1112180dfa4f0cd4300f257df5b812f legacy-trunk +16367 dc17ef1a761380cbeee2afa420f17f282a44810c legacy-trunk +16368 c9a4a13161708090b073f84796fb38b1c34b078a legacy-trunk +16369 5583cfa6d2b0f3cdb143b49ad0487a4c3280e757 legacy-trunk +16370 a901c2c0166baa6a195289bec335e30c391cbc4a legacy-trunk +16371 295987f3fbd2201274199a4ededc188ead27148f legacy-trunk +16372 2eca4051f05cb5f9415af9d6b292c2a400d01c16 legacy-trunk +16373 88b4f3b508daa5989b5c26943ea9daa8475416ad legacy-trunk +16374 f3401ed132a14cff4a6283ef370bcceafe153089 legacy-trunk +16375 26075c03f02279595b02b2755f78239892640f7d legacy-trunk +16376 e78edc3cfae6eae73236d870856d5161c25fde25 legacy-trunk +16377 87a416d9d9b6f740154e6e3a0e385bdd9c3585aa legacy-trunk +16378 f7d9e6185f6222c1eb2d74fb4e6b3a69dc868fc2 legacy-trunk +16379 fa89496584c627b3fdec232d32dee65a353027ff legacy-trunk +16380 086947cd202cc1356ea183d708d38d14bba9afd0 legacy-trunk +16381 b74548a90a63c0369edd247929cf75a522f4af2c legacy-trunk +16382 5b727ab37092d572aa7894f639cce100c6898f11 legacy-trunk +16384 f11c472764ad371717ca19e3168214e90eaed075 legacy-trunk +16385 3791967cb32ef86fc49145170020a876a33dd33b legacy-trunk +16386 167de4953812facaa6ad1bf2030242beaed06a93 legacy-trunk +16387 83a595e691e4262b7c242b60cb85adefda307e5c legacy-trunk +16388 fdfd1049f36e943e7d59468ed8a4e94d35f49e49 legacy-trunk +16389 f4da4355acde62fe62ca66db30c8a7f7d2ead7cb legacy-trunk +16390 f4084f443f319da5994a572270b61e75c1264b44 legacy-trunk +16391 d6d23d5e296d42f4acabf510d7732666fdab5d6a legacy-trunk +16392 a1ad791e182182ee6c714148e881da9842f64603 legacy-trunk +16393 73c661be1ea3de63f7386df79389816f23acb92d legacy-trunk +16394 ff82fd422f1c1a328d2e3ab164a91813e9f5bb50 legacy-trunk +16395 0859607ca3e53baaf351cd8ebadf3b558a09e53a legacy-trunk +16396 e1469b7a2e68db2926e2090b7412b59e2ceaaaaf legacy-trunk +16397 6f0d96e6b5a513cb7b1407f3c612c34faf744d65 legacy-trunk +16398 dfb7ecfffe3d5b1c66b64b7f12a9576274ad2847 legacy-trunk +16399 b5120f58c5da58310f8df7c1ce6fd605a4cb18c2 legacy-trunk +16400 d901c43e7d58ce99f7af8490c2b34c83ffdae37c legacy-trunk +16401 58398c0f948bc89676378909bda1449a41c58846 legacy-trunk +16402 e2e25eee6a4b147b8cd3337927ce31811d6e792c legacy-trunk +16403 3718e5398fad34b7682a9162ca7dfc480f85b69f legacy-trunk +16404 38ea27455cbb3cb8874a8986276250a7fbec4765 legacy-trunk +16405 dacc9f167e959ff70b6bfff6dad82282a40fed34 legacy-trunk +16406 1528bc3ac73d5031948c6e43cc888d0e7b7423f5 legacy-trunk +16407 2d5aa212a322b2f99583372306e43ae46fec1588 legacy-trunk +16408 0c08dfa634c34e47bc336c5585cfaaccb3d21f0e legacy-trunk +16409 52595b70a568488fa35695ba91b0599d25843d05 legacy-trunk +16410 b2fbd9fce05e5e5005be23d93d4db30e7b2f1f63 legacy-trunk +16411 8ee4a209a9ef5babd1bf1080408c6de3fbe8e3a0 legacy-trunk +16412 f80571bb2913e78779a441931e36c97bf7df6473 legacy-trunk +16413 3d6d218b673d0cf1455a3082a9c10a1e44ddf8ac legacy-trunk +16414 8a063423e0b7df997488f31e6bb6eac57c972125 legacy-trunk +16415 117d20968a1042d00518845377ac125a9fc192f1 legacy-trunk +16416 a74aa49b0c37fad9ee6caa0fda2b9b216d73ba5d legacy-trunk +16417 0bb49b3dbdf0acadbe36d0e00a06b0fe6e83ad62 legacy-trunk +16418 12652da6d632ba08d2750fde18c7ac768242981f legacy-trunk +16419 99dd1c9331616bdb8977cf14249d9250e4588f79 legacy-trunk +16420 6a5314a6c2c299e33c73c794af31da3a3a102e8f legacy-trunk +16421 f79434ee41fa86019216240ba32be660bcfc5419 legacy-trunk +16422 e78153e179fbccaa51297a09115f3f7a5aae63c9 legacy-trunk +16423 a1ce0721878134b36d50db11fd82f07d843dfefc legacy-trunk +16424 ef25f32c452393f0d4d101c327347a143e017ed3 legacy-trunk +16425 a3856ab6b206d7d2cf6ba676b0b51997ceaf3f6b legacy-trunk +16426 29da35543833216036d9415275cc3ecc60cdb7c3 legacy-trunk +16427 ee10834d67a36c4f7b263083d7ba73f6a2b47415 legacy-trunk +16428 eafb79963ea64ee91504ddb4e2881e2c7d95c043 legacy-trunk +16429 36de7b6ab7eb994170133c1cc39d8e07b06adca8 legacy-trunk +16430 a6c7bfdd6777464abe9479d282b5599af99999cd legacy-trunk +16431 d7d81ea9c82de017719c53cfc817413efb9ff616 legacy-trunk +16432 e94c05351d4374bea5d9a0bb4b617e52baad56a7 legacy-trunk +16433 4388249506d190a76a4dbbbc70294ef6ba0656d5 legacy-trunk +16434 26685bd2c09e61bf389655f83ef14f42b56055d3 legacy-trunk +16435 bfc5b2a8c11f5e626682b98d376fa2ef6970a39d legacy-trunk +16436 cc0c0dc9fef0dc441b8563a9b44c8d040c2e03b9 legacy-trunk +16437 c90d94d287d79b745e4b5a0bd5515ceda73174e6 legacy-trunk +16438 b1959f006566591b3be1401b9cd0f16451ebc600 legacy-trunk +16439 5423b132bc97af4d24076cef16f273b64faf04d3 legacy-trunk +16440 edb1a8e6b8595960bbdd78bbc60ae1f7de75bd92 legacy-trunk +16441 3177e2829167797ea0816cf7072e403cf8c27ae8 legacy-trunk +16442 61f65de19e1e68eaac975e3bc55247112bfb042b legacy-trunk +16443 9f6189e89212159469a615ea7241059dda82f2a2 legacy-trunk +16444 b0e83962f4da708db78ef170b443123bab3b2d0f legacy-trunk +16445 7de18f04f85a77a1d55ab6191bfe3bc595da755a legacy-trunk +16446 8cb24e0bef9be59c3df508fd6183b5cf384d99ba legacy-trunk +16447 ec19a0a8cd6877b19d425e48c7aaf085c7b47b8f legacy-trunk +16448 129c9775cc19320ce588e04ca87a34770eaed598 legacy-trunk +16449 9a5855ea3e56ae543940573f57bf39def49053c1 legacy-trunk +16450 63832ede577fc59f9b48aec99eb4f4ed5a0f633f legacy-trunk +16451 95894c3108d1985f60485e345b103681f811a136 legacy-trunk +16452 9db86b27278fc92365a8e4698f76366fa27eaa95 legacy-trunk +16453 c09c0171474f0f49c1dabc084dad843996b990d5 legacy-trunk +16454 0f1c6053e8d09223728ca78adce06876e33c7abe legacy-trunk +16455 793bbad6d09cf0838c580bc61e0492481b2f4736 legacy-trunk +16456 25fc68077b66543402e72af89a2bdc0abe34f06b legacy-trunk +16457 b54f11ada91ea013885a3148ad5bd060bcbe6eba legacy-trunk +16458 a28ed8c5e62e026ca2835ca84b7e5f3710ecd1d2 legacy-trunk +16459 bb364d6f9f6925604160be36c42e278507402ce8 legacy-trunk +16460 5e2e91ffadcd8e485efa413f2c8afa4ecde39b43 legacy-trunk +16461 cb29d4a2c17b0b3fefb4c67c393ee0729fc855b6 legacy-trunk +16462 026e12ac9f71b439ecc706fef46d3a3f3015cad8 legacy-trunk +16463 d6dded3c850778ec19be3ce87876493c1352e87a legacy-trunk +16464 c68003efb796a3a1d08d0cb1bdd77d92ba62eb57 legacy-trunk +16465 f840bf6a3351e638ca431405a66011a72393df46 legacy-trunk +16466 979701698cd297115fdc33a8ab5c0a6fe062a69c legacy-trunk +16467 c9fd52d7ca0ae7c943c99f94f9ebb184ecb97043 legacy-trunk +16468 461f9b6ee55575ba561aca51795658af43e10b7f legacy-trunk +16469 2e603bd0c1a93d7c4712924af6165323b7b81683 legacy-trunk +16470 dd9ffa0a6b1107e0776112eb6aa9bc7bccb763f4 legacy-trunk +16471 fe89ea1c910898ba3dba19974d593fc00ffad349 legacy-trunk +16472 4e2aaf1e722a7872517270608cf1e286283f7337 legacy-trunk +16473 697c88cc4714dfb02d63ea22fd11c8e03513e648 legacy-trunk +16474 48886fa82ad50e86aa5f85ece5f82da955fd76f0 legacy-trunk +16475 00030eb88131f840f3b2bee92d037ec4c9361a41 legacy-trunk +16476 c87a37a3d2e65b7614d71cdd3a35dbd192752aca legacy-trunk +16477 c9d039196db6108b22eae3ba6a09a5c5a76a739e legacy-trunk +16478 06d4225919d4d26372679ce30710c6a7e9e6f9d1 legacy-trunk +16479 6578faf48cd1d49cd9897045e898f8cee563fb6e legacy-trunk +16480 5c3ee76d242e3e8f1ed66da19aa3bd7679c3de18 legacy-trunk +16481 17293f12e8840eb2e7f840108e50caa934723142 legacy-trunk +16482 767b2f7be40e63dfe548e0d2bff7850bddf2512b legacy-trunk +16483 d3f6940236425bcf88a0225d2341905497c993ef legacy-trunk +16484 05d59f4476ad50f6a94964d2a6bbe079f133dcb2 legacy-trunk +16485 b3e8d2e3dc73b04b0ed13dec24f2ee6ec2656239 legacy-trunk +16486 b7c93c677e56589e66037cea1a747d92f03e8315 legacy-trunk +16487 57d02f634a02b77890c6092dbfd17bfe02aea379 legacy-trunk +16488 449dd3a00bd72929896eb10734cdf89cc6473ee6 legacy-trunk +16489 ecb8aacff2e3ae86ff537ce0b0db92b5346c19fd legacy-trunk +16490 05177cd441a18e78678ed97a6f42bd2bd3f10ae3 legacy-trunk +16491 b769e2dd6a51bffd6607e0f5779f3da0252d0da0 legacy-trunk +16492 54861bf6748da63f784f6de828ac84b780cc11fc legacy-trunk +16493 689f190040635436b90172fcdcb71e53564f8950 legacy-trunk +16494 8d996f9c5903bf0cd6e7b68be66ec39fdc7f1e0e legacy-trunk +16495 9ce3e05b7fdb274a6a7559951e185321d07e8695 legacy-trunk +16496 ba36a9c3f47714203462d2c2dda83898d5071ac0 legacy-trunk +16497 3b69a9d044f1c431f783221223fed21358a6cbdc legacy-trunk +16498 a949a72af969cb2ff9402a1f8495e4fd0a57df2a legacy-trunk +16499 32ce254f3bea6f90ba466c1295b68117b280266c legacy-trunk +16500 c31b13b7db740751068b6c74bf45eb1078b6f6c9 legacy-trunk +16501 1475c1cc3bf1ee9c01595bd87d61cba06f344ab7 legacy-trunk +16502 82d9c2f13098e5c76ff49accbd6eefdde6bd1434 legacy-trunk +16503 98d8169563e71d74aae36a31d49cb6b4d6bf4dbb legacy-trunk +16504 f65b86738d3b58c21b1396f68117b6f53bddfd6b legacy-trunk +16505 ee8f09e41395461bab8a8e018807d365841fac93 legacy-trunk +16506 c76e74abb65baf3def5445eb32407559c80b0b6d legacy-trunk +16507 5a3114e8c027a9463ea849382782e268fbc8506c legacy-trunk +16508 5c067c1b5ed0d8a5e691f79369d931e972d5c553 legacy-trunk +16509 a44dbbde5ecfda579a9659b9dbb3a66c29a45da9 legacy-trunk +16510 7ae9fa409b46f26c523103f61b383cff542ccee4 legacy-trunk +16511 083b4e547171ef9a4dbe4572d1d54f0f7140463b legacy-trunk +16512 1e9f30eec4824481edbaa03142d3cf0e06a0d5a6 legacy-trunk +16513 dfdb911cbec252c93665bbc1d7a9f8adafb4b4b7 legacy-trunk +16514 83dba3f5f7b46a008b9001d940b5557a0b768070 legacy-trunk +16515 8d10757a575b0a6cfe51fd88a34328b05973c1fe legacy-trunk +16516 84f8579a079cdaabfdbed955a8e1495085f2d3ff legacy-trunk +16517 e8dc0a0be4bacc0817a145a566d721f57090a170 legacy-trunk +16518 632be99cc2cb1384c02c5f5dbd083ea77f3245e2 legacy-trunk +16519 00ed4b74302fd7e8679e05b17fdd1c08bd5a65f4 legacy-trunk +16520 67b9b05ce5a5dfb27521603c0e64275c763ad58e legacy-trunk +16521 bc37e6a335f215d9b9ca93d5f36c54c310a8dcac legacy-trunk +16522 493b1065763dbfcbc3f2420e85e809cc3476016c legacy-trunk +16523 16b60bd6c375da9bf4fae680d50a80e4dd881374 legacy-trunk +16524 d89da17b46f610aa5fcf96229103fed07ba816b6 cnri-16-start +16525 6f8d24b332d35d595cf4f2b2d1aded500a771f4d cnri-16-start +16526 59f8cedcf04951c30fd8a0c2a29ca13cb852547f legacy-trunk +16527 2d00bced603870a327368a165629cedd30c8157f legacy-trunk +16528 c1fc4066460382f3d3392276ed833428712a09ea legacy-trunk +16529 fdbc8730d35698970ddde40f9553aed0e92fc40e legacy-trunk +16530 b1b474cc8966437da4ea214ee16651478ca73168 legacy-trunk +16531 dad01317bed72faf705eb5096f19d29f31227b11 legacy-trunk +16532 8bbc0e6432ab482bb878bcd978360366166520ec legacy-trunk +16533 323de3a8ff8ebc25b8f36b85520959fce38c73c0 legacy-trunk +16534 f71cd24535c40619cc9162d9f32453d7e32cb300 legacy-trunk +16535 b08ab2cdf742d10adc82f243172a08cc840a1328 legacy-trunk +16536 2cffcd71d5e41471482d3ccca4ba3c116e556489 legacy-trunk +16537 eea51275acbfb442faedac43fd03f85f3afaef00 legacy-trunk +16538 b6d93dba120eab5d56102237c3f238a6df528f29 legacy-trunk +16539 f1c97af4c84709be62a70f66b04ff11308087dcd legacy-trunk +16540 9fbcfbf8a1d292b8fef03bd38dfc5634e505d69e legacy-trunk +16541 33df3b5167119e053b0de320adc3563a121f9e15 legacy-trunk +16542 b3903e05017f16042a6509160fa684c478fb60d5 legacy-trunk +16543 f6e4a9dd67cdd3ea4accef7696663af2355d93ce legacy-trunk +16544 ab42d4542424852f90d59e3ef28be22a540b2863 legacy-trunk +16545 e20fe00526809554c08b4f61b88e4a0ce6c8168c legacy-trunk +16546 ad390240efb3b095ac1a8fbc128e062b7b028863 legacy-trunk +16547 ff111d289905d52477c3591109164d7c79951b81 legacy-trunk +16548 c24f7755b1f52551d05bdbf39b5d314a9f1084d0 legacy-trunk +16549 1c186030688229716cee3abb1337bcec26c5c6d8 legacy-trunk +16550 4204564abf20c53ffea64c6500ab1cf82907d10a legacy-trunk +16551 6657956af31e0aa65fd058e8fd53b82ebbfa24c7 cnri-16-start +16552 c93687d6c731718f9fc24c92b2d5e27599a6e033 cnri-16-start +16553 f1290aba29da4a278aae8fc42da988d93062f41b legacy-trunk +16554 1f966f0d467ca1da74bf62558132b0514704b7c6 legacy-trunk +16555 f66513a0dea5a55e2afa24f81448f1ba31d935fd legacy-trunk +16556 4edd13eb759d26c3f608a687f117a23631f171cb legacy-trunk +16557 c66e991b5f217cba698d7d07870ccf342a6c9b36 legacy-trunk +16558 0637413e59397e7485c5a568f6be9dad72665fef legacy-trunk +16559 1b7813575af7dc9428dfea6af6009e3148e90195 unlabeled-1.8.2 +16560 352968ee40e629ad2783ffda0cc5b679290772f4 unlabeled-1.8.2 +16560 6f7ab74b1298dac51a2143b2f83b2b6803ea12d5 cnri-16-start +16561 8fbf307b90a6c2f4e47afad74ba54ee887cbc090 cnri-16-start +16562 136d3d72666a7953fc742e38de171a50b5d547b1 legacy-trunk +16563 4c10bc811fedaad6a1b9b790f776f940015a0959 legacy-trunk +16564 ba1383c987c8de988289640a30b2cab5432e1979 legacy-trunk +16565 8295f8506eaea7596f93c75cec01625ddaab191e legacy-trunk +16566 42a4a417b47503fd31c11cf585165fc0b883279c unlabeled-1.23.4 +16567 2c786896e549d4eeb75f1b44bc378cec1447089f legacy-trunk +16568 e00d3ce71f893abce5b17670ae8a8bfaf1478b70 legacy-trunk +16569 031dae08a0a98802da6dadef68a0f84a7879f88a legacy-trunk +16570 ac48d077eaac97bc5cf322948048daaec8ef158c legacy-trunk +16571 5466324bb8114ef7ba889fa8f471f24253757867 legacy-trunk +16572 fd4372787611aa71ecc699dbdb6b9e07e40c6911 legacy-trunk +16573 b1a7f61ab7811b1ce28d74b52eb0ce0f1495a8b0 legacy-trunk +16574 e8b22bc88d95ea3f7f1ae05abc5936ab5f36360a legacy-trunk +16575 c77f8873da84132482c2df7e9516c276e900ed92 legacy-trunk +16576 11625633d0f6700fc02e8294e8f53ded6f6c8fa3 legacy-trunk +16577 de90662f2eab1546ccee5ad477220d662d4724b0 legacy-trunk +16578 ba8db96ea4d9fd45cde7ee8366cf9d571f5045eb legacy-trunk +16579 374da582ec12f4daa8feb06bddbf102e050230d5 legacy-trunk +16580 f3968dd1711b25ab7b7590c4f5b88d1cb996e59f legacy-trunk +16581 76237c0cbf133f6db8a6dcd95a5ae699ee3d1bd6 legacy-trunk +16582 f38e321be8a43641601a286e10c0fd9ef764715e legacy-trunk +16583 64873cf20b16b40f991138ae0c88f19e7ddbb7d4 legacy-trunk +16584 acd0755ee7725138f7250fc477c4d81d0fb04636 cnri-16-start +16585 4f737fb04528dbdb1ed25cb2f75e42c955cf9730 cnri-16-start +16586 41ad36fb00ee935efd96e3f7b6144e526fcc8873 legacy-trunk +16587 45d8f23df2182c1d76669e498fa4de0b18350ac1 legacy-trunk +16588 51f29fcbd9ba5a30e34fbb8918b25d55cae2c93c legacy-trunk +16589 33ff4d4d91ac3d8b377236f59531abedda714f77 cnri-16-start +16590 afbbe674d58a0babfe9a9c4f7c93ab7e423566bb legacy-trunk +16591 3c0f75a2198ff19123318e43ca3be1c15892059c legacy-trunk +16592 6622d7631ccff1f70f505df17329ea8b2b76f9bb legacy-trunk +16593 95eee868611ec68f7c2902e1acb39a6ec24a9641 legacy-trunk +16594 8bd82cf361aa4240854cb428618987b1d45b809d legacy-trunk +16595 35e226686c2ed800a38748671adac933c97d795a cnri-16-start +16596 d430097d1bfd1899e304679e4fd30686f706b7b6 legacy-trunk +16597 c57b574e67664dc2c8c0bd4130c5b9ea5c766693 legacy-trunk +16598 eeed7bc8a283d95a38c9332837ee91e964091984 legacy-trunk +16599 084c63d85f9082954d5516528307f60be33fb4e7 legacy-trunk +16600 a10dc7215c1ec175bc30491b62d7329da73a65bd legacy-trunk +16601 c63863abe1aa9ddeab12d607a0359296496b0434 legacy-trunk +16602 5fd80c82a15a91434870ec6a1b9a1891e9316fdf legacy-trunk +16603 254f8b7c4a83813659f21da101f2e31548e564c0 legacy-trunk +16604 61cc54c313f6cd1587fdce14a301c8a0538084f3 unlabeled-2.54.2 +16605 02e0816e4b3717b9f0171afedca6667ca52a275b legacy-trunk +16606 e4c380ee9079f71352737542c791f7da6fd17dfc unlabeled-2.54.2 +16607 23a62a8751b4762b8589724cd9151a693397fa22 legacy-trunk +16608 15114e0176529460387ad1b822e7ad750ad43dae cnri-16-start +16609 403c970d1a5e4ac9cb1aa69677ddc2cbb9ee0cdd unlabeled-2.108.2 +16609 9acfd037cb94da18360602433834abdbc29ad94c cnri-16-start +16610 c3783a33f84bf03578e926d6b46b38e388d95737 legacy-trunk +16611 b016ec8738f9d23de8f2b815be9eb25c82efe6c0 legacy-trunk +16612 5136e37ff548e691017321459bfdec6dfb6a5734 legacy-trunk +16613 4aebd0f2a0626923f5c176580c504f92b2121439 legacy-trunk +16614 631b5df44de60951389ef70fb73bea72fba2079f legacy-trunk +16615 b368aa8208f3a1f4e6cf5adbb1142be7897ad9d1 legacy-trunk +16616 11d88220fb5228ff8c822d9481b6f0f0b25ba000 cnri-16-start +16617 2badb322355fce498434c67fbd46bd4a6020549d legacy-trunk +16618 91d95a7b785837403119b08ef60c2711505e8a90 legacy-trunk +16619 3ae06c57d09ea8cb81bde9af5f19c9538611f85b legacy-trunk +16620 465144abf02a2ea99e0c0660d483805df19beb00 legacy-trunk +16621 1e9d1cc2bc3f7ac58a12dd67eb2661b9a34f1bfa legacy-trunk +16622 924f0981bf76dcd914fab51d4e1d22fb3dd02a70 cnri-16-start +16623 97573cf91e6ade9478be0db465fe662efdd68ba8 cnri-16-start +16624 87488c3113f276d67da455888b5e2c5542666014 legacy-trunk +16625 00a5c806cf7cb8aba94563f15335d8a61736c94a legacy-trunk +16626 b37f08635023f2673abfc26e5c2790aded681653 legacy-trunk +16627 fc873ca0c7d3f48d7f7d2bc8b1e7859bfd85daa5 legacy-trunk +16628 0525851ba0b77ab70c342c367dd3e1ae445b756a legacy-trunk +16629 a55e4883f886b9cc96f70220bbe396a4e7a01ea1 legacy-trunk +16630 dd042f5a8fa221448eabbd9010c820c2afa5685b legacy-trunk +16631 098825e74a05ad92cdfe7fb05eeabd94128c425c legacy-trunk +16632 348a7c18e0e63a7f326305ae16eda3fb34882e46 legacy-trunk +16633 b731a206302ae70a9a4348dcf7e2bf678b0084bb legacy-trunk +16634 c480529807ab3306aa4fa311d3af73f4722339da legacy-trunk +16635 07b85fc7ef684f7783a4559e4a2be971f6f99c42 legacy-trunk +16636 66589b06c63308614fcdddf70688ebbc05029fe1 legacy-trunk +16637 04a36e93dc3dd8066f5081ab9e60ba9ad1c07f10 legacy-trunk +16638 45edc325e89a57690d86fef2cd168c6c97ea87ae cnri-16-start +16639 94add88ef08c06b55184f62f81c3e007d4ec344b legacy-trunk +16640 6682ff3e318f5f2942839afad81d60b16daeaadb cnri-16-start +16641 a296ff55221f7120b56f7ee57e00b1b7187eb34b legacy-trunk +16642 99f0413ef795f315b251d172b72e9c095873aa50 legacy-trunk +16643 bf8d56e27c7bba56dff8447a0e49c0fd0470d755 cnri-16-start +16644 94f6ec87930abe5edd4bfda121e2533e9654e0e9 legacy-trunk +16645 d74a4a43f45fb88adc87cc2db660356ad4815be0 legacy-trunk +16646 468df5a8cf4acfd342cffb3e915600830cf47d06 unlabeled-1.23.4 +16647 96ad32498db7821486901b02e2a3f33d019a87e2 unlabeled-2.54.2 +16647 1c2adae450697dfc31c66533fb72c8063fb3bac1 cnri-16-start +16648 f3d5f71ccbb45e736f8cc3ca4ba7e3e1b538828b legacy-trunk +16649 4c3f977ce06cfe7cb5bd48791a5d50f9f8833abf legacy-trunk +16650 a94e37ecdbeb6fb68d0de6dafea93f42326c5f69 legacy-trunk +16651 c58149c0670aa991ed748a16d5ede10b08458402 legacy-trunk +16652 fc49a3b3863b196c5c10b0077302b28e5e79db31 legacy-trunk +16653 dfdb601cee1cf51435bb3386a2e6b6b1f38c4c93 legacy-trunk +16654 592ac272641d22df35ff7147d5c934016a557bf4 cnri-16-start +16654 a6985d89464376b9173c9a577c670b7d0b767d3d cnri-16-start +16656 e263a273e321f96e97adacc530b9bee807bb923d legacy-trunk +16657 ee8c5cfad335e6bc6fdf4a74a8f6243ccaee92a3 legacy-trunk +16658 4ef461df32c191e9130dc9bcb7b951ea0a114872 legacy-trunk +16659 58fefef70facb7300a2e456fc7567620908383c4 cnri-16-start +16660 df7deb2eba414107edfbcbabe96595468a9d6497 legacy-trunk +16661 8307446bc6aad660dd5117e63118f80e780b52bc legacy-trunk +16662 35fc9511a36ff2c47a6ba66782a43009c449686e legacy-trunk +16663 d014c8ab6a824353d33001a232b10106b8417d46 legacy-trunk +16664 266e11a226f7cd839c226f340179906a207aecf6 legacy-trunk +16665 ea5eb51ed0f698c4b4662cd0790825491350893d unlabeled-1.8.2 +16666 f911618a0ea0fac46ce96e2cb65cd3f0391d02a7 legacy-trunk +16667 1c00fea9ae40c0f1fb42fed3eab38218fcb3d970 legacy-trunk +16668 755e2135a1948a8d3c131f1fb763bd304b24b55a legacy-trunk +16669 abfa4e4b2f3e9ace2ef282dedfad679dc8841dc3 legacy-trunk +16670 0f68018cce58f9f1fa9db4276bbff77ef7a6104b legacy-trunk +16671 dd830c9e5c218fae591826e40145e324594f838e legacy-trunk +16672 c4e3218342503ac6267da215156d315c3c32da19 legacy-trunk +16673 881d398a44e0710ae00fd7063e03f3e63c55713d legacy-trunk +16674 bf7062e8eeacf43e3e7672d77844813e09df251e cnri-16-start +16675 31a7b004558fb7c3a913e0da1f983fd5c18bd548 cnri-16-start +16676 33fd60abd4822c4aad571be97967a095b248886f unlabeled-2.108.2 +16677 15ad4088a700bfb05bd300a86af70bc29a505279 legacy-trunk +16678 8eeaff96b4c24422faaf2716f31c2aac800c0af8 legacy-trunk +16679 09565784715e1c6655e69899f6929a005fcf2192 unlabeled-1.98.2 +16680 3a5a7d27f1b72b9de1f988a18cd0444b86d910a6 legacy-trunk +16681 62494a96dccab5aa239e67ede9af61b60eeefdec legacy-trunk +16682 c0c17347da5bbeccbeff1c75d1ea3f01da504439 legacy-trunk +16683 aa49d074f7161b0727c9653cac09698fbbba51dd legacy-trunk +16684 98f08cafe19b12541eaf3d1a3ca6fe23f5669a32 legacy-trunk +16685 8f0fc0b5f784ccd06a0c71144fbdf1e3a85b43f2 legacy-trunk +16686 08feb538c837160eb485e9c044cb19995a77a897 legacy-trunk +16687 2190b759983734a0c4e94df0d521dc8a13c8642a legacy-trunk +16688 1c5bdb6623c8c11485c258918fc33e8c1240bd35 legacy-trunk +16689 77b9e041b595cb509d0d82251074200c49b94faf legacy-trunk +16690 c3320d24d7de46add0ee4b733800bf92f8c6c2fd legacy-trunk +16691 e2ea00620ed6899a4d4174690616154b8125f744 legacy-trunk +16692 0430a1309596c8790d37d76fd79f7750e11a602b legacy-trunk +16693 d3bf97d532a08b4f13f2d3f507955361dc5a2391 legacy-trunk +16694 25de7193f9fcea65834504a76f58dff2e97cbea5 legacy-trunk +16695 a0b36598b31d0d298991174593f4abf2faffab2d legacy-trunk +16696 9c69bd1a2822f0e505f08dd4c3408ac3533ceccd legacy-trunk +16697 e30a194dca01482c4de21c68db640f158e5e07ff legacy-trunk +16698 0efdf45bf6bb6b8d1638608317d9cc35bf4094ed cnri-16-start +16699 0ac919ca8e69624059e87a5ccde505ecbe787c54 legacy-trunk +16700 99e19c982f9445df8cf8c31cf2fb411de8a4168e legacy-trunk +16701 9c1e689840273f94237e21722d5cff4fd8416534 legacy-trunk +16702 c45accc8e6d036ff75ada5bc5158a68b6aa57036 legacy-trunk +16703 446c3616c323b0f47bffea9c3b01f69c7492e832 legacy-trunk +16704 52757baf030dda0f083914952a536a2897632ebb legacy-trunk +16705 b347fc5daeb70c7006d358f7d4a586868c954433 legacy-trunk +16706 a4259bfca5bfe8ba2f2f01fe034a32e97504f193 legacy-trunk +16707 6bf1281ec7639bde417168c84da45935a2222801 legacy-trunk +16708 6024399b78bfa62f93dad9b0f05d0656febd9ff9 cnri-16-start +16709 9414d031a2c3a4cbf64ce818f5842165b1354a4e legacy-trunk +16710 c8ff80cea4f7be6191d5d7cc96094cccfd6a8d5c legacy-trunk +16711 8f43e592cf9a4f68a5b0e521e2d8c416232da80e cnri-16-start +16712 d70aec2e349ceab5e9f24c8dc5e2bff21cf3840f cnri-16-start +16713 466e5ff2892620a027c2f4981f5e883bed9cf9f4 cnri-16-start +16714 f405fcbaaef5a975480c8b8138c9008889a7fe19 cnri-16-start +16715 e6efcfcf174a87ddd491dad1507759126c65b2f3 cnri-16-start +16716 cf503450f07b24c62d66d39179a1e5c19227e300 cnri-16-start +16717 bd67a4d6f4f8c1d6d75ae829ff6421c3acaa1934 cnri-16-start +16718 08023d26a0ce87509e2469aa5d61a935b8a63390 cnri-16-start +16719 59c6e9832a2042526ee1dda3f315d9b74459a003 cnri-16-start +16720 693b615817466907cbf74641c74876a6a7bd244d legacy-trunk +16721 4d16c8dd899c4eea21094691a7926be631a94f09 legacy-trunk +16722 bc0153a739aef467e5a2cd31a07a9b01d7dbe5fc legacy-trunk +16723 03fa40528d179fab652807987721862a7811e70f legacy-trunk +16724 08092d1eb26af97c96fb27382ad4205f9e5ba63c legacy-trunk +16725 33969751e351fd79049f7d94ee3a7e9b952bb112 legacy-trunk +16726 52fcd098547e9ecb3681a6763878925082b5b417 cnri-16-start +16727 d057cd543ed966df03612a6c42e0711adc760a18 legacy-trunk +16728 c7b3fe843358675c2b711f04ede74b9266586dc5 legacy-trunk +16729 1d17c5e67ef57252488008a2f8ae569a8526c398 legacy-trunk +16730 658b085e175bf847d76d6e1a16cef1260acbe19d legacy-trunk +16731 ddf302d692113e6e4b9db21cc5376cd614d5cb1e legacy-trunk +16732 2a04fbb7c07d96477db07256a2d08e6a69a1e8ca legacy-trunk +16733 b6e07c272487900fdd97690ff233d58372aad5c6 legacy-trunk +16734 266fb6302f3117d71f8c167398725304cd17ba19 legacy-trunk +16735 3927a4d9c2fb02da2718f3cf43d4bc0994a6bcca legacy-trunk +16736 f194d8b24865912bd16c1755301e9be1a3877d72 legacy-trunk +16737 4eaa463c031a1bdb5e7791c370d04108e0682dd4 legacy-trunk +16738 60c7cda35cfa4877ecc5a1548e903621ca85808f legacy-trunk +16739 7172c2d8b92b658f2cdc6d2f4f222c7073cef7d4 legacy-trunk +16740 4d14eef8ea076568ba75290672c5018ab583022a legacy-trunk +16741 2e0d1aea9c3741e04adff8da1537620f4f532b91 legacy-trunk +16742 44b1b818f28e9258331adc4b4ef323bb60a8bde9 legacy-trunk +16743 25fd9846bd542c344f0ce580734123eb9c2cae22 legacy-trunk +16744 464a2190d9b676a69357ebfcecbf956341972d07 legacy-trunk +16745 80089a450c34d0b5bda1f46b1e3a060b9a406209 legacy-trunk +16746 87af2c341b79ba0b559106d65048f23ea4139b26 legacy-trunk +16747 ece75b07b13608010cb5a297f4e0ca563a520e58 legacy-trunk +16748 d56dd1530ce1132c257c1efacf111c9051c3470a legacy-trunk +16749 31b25ac1f019af303c662ba1070aa7ff027c3c32 legacy-trunk +16750 5780b198abc899ea787581b49fce1d0b781ce328 legacy-trunk +16751 648ba40444559fb4fa5df42a64bcdf404450b4ba legacy-trunk +16752 afdb3f485d8f93e387f1e47c86b460d293c629d8 legacy-trunk +16753 7a99450da2d64f7b2505efa4c986c4406c5628b7 legacy-trunk +16754 191f20e0473ee1ffc40e8d3e3b6c48c4edc551e5 legacy-trunk +16755 26898a98db6ed0bc1ad051482680cdb21bb09403 legacy-trunk +16756 28afbc5e077004ae72d7f178021306b64e986475 legacy-trunk +16757 370ade88a52a544cbd643982ef9a2cb7383d456d legacy-trunk +16758 1b156ef8281b8beababfb79155589c8ebf80f10c legacy-trunk +16759 70c47ab01a85e2bece30c886091bc375569019bf legacy-trunk +16760 7445d99da8dd8825514266f3dd16694b11d46be2 legacy-trunk +16761 82a22d82960710ea9467807d05aa40bd8b8043a5 legacy-trunk +16762 494cf5fb8f174ef040c4825eb4ccd6b62679a370 legacy-trunk +16763 8e8a8df0fe734f2b90c8ae30567ef00ea39f6ea4 legacy-trunk +16764 b9002da46f693ac7f4728398d773ac9a9043b45c legacy-trunk +16765 0bb0c7167d1fc7b0c471fc4a91c01487a2f83c90 legacy-trunk +16766 8be7524085d6194a638290726c774e34f466c0cb legacy-trunk +16767 7dde74c1ebbe4cf5238797e5fab157fbc9ec40a4 legacy-trunk +16768 c9aa49e8748e715b4d5372aa030d81e09e1d8765 legacy-trunk +16769 7079aa05bbd058c9567909f69637daacbd4e2079 legacy-trunk +16770 2ee0f47f14d3b0a44d58f6d6cbef60a9043b01d9 legacy-trunk +16771 a256c101bf2795ec21ea242c935563ce484cfca6 legacy-trunk +16772 560175800a07e712dd826df80310b893ec7cf409 legacy-trunk +16773 91ddeed12fa703a6cc48721bbb70a71a9dc53072 legacy-trunk +16774 7b7ee58901fb0f0a7e0f2f07d092c7d8906ad1f3 legacy-trunk +16775 841cf9012ac3cbffaa182cbee3b9d9bd29abb4c8 legacy-trunk +16776 55e3988205b3480bce7ed05ee0cae168d4e3a048 legacy-trunk +16777 d99183cdbbdc97a9bb9180facf1ad763afdae27e legacy-trunk +16778 4eabd7d3925fc98c89760dd12ceaab35e5abbb46 cnri-16-start +16779 8155a8b30444a4a4a6ef0f50a398798cdfd1a886 cnri-16-start +16780 6e2c0d0c3fd56d4ae974a03419c005cea8c54793 cnri-16-start +16781 de2bfc15f9ece5a5be453242edeb4b005e61ac84 cnri-16-start +16782 aa420270225262711ed6e026710a18b25b0f8977 legacy-trunk +16783 c258f05eb85dc98b38a39495ebf7b161d7c0becb legacy-trunk +16784 4e28ca345cfee76fbed555b91dcbe397ea00fa97 legacy-trunk +16785 3e6e3d05d00b7d5f16cc87b6e6ab3df30b03d612 legacy-trunk +16786 30713d5288df49c44252e907b1fa4cbba72a0288 legacy-trunk +16787 8a4a179414d4aa4841b340ed09cbffade55b66e5 avendor +16789 58ac830401bd5c949fe051b0b799fe3cd8cdbb9f avendor +16790 5ada9fa548015beb69af50728db8f03652a1f661 legacy-trunk +16791 eb9a36163a9eaa99431c9ed340d8863c584a4318 legacy-trunk +16792 b2cd66e5ea4c24b73d53cf6b8d932d91d1059897 legacy-trunk +16793 63de7f00b5bccbe9ba97cbc40aea4c9bc8d59dae legacy-trunk +16794 88f4e72d724539ddd30cf4439dcf0700b769a1fd legacy-trunk +16795 72f682eb9adbe41b2a92e54d31854abcc73e742e legacy-trunk +16796 43f4f8d15971ea242fb94f3544cb47e2acb35951 legacy-trunk +16797 1b107c9ba70213679a71ccea0048b648cd672280 legacy-trunk +16798 2c42439594b7e8034913664b68d55f867d21db81 legacy-trunk +16799 61347ecb9b0137ee9fd58665403b3567f3635d5a legacy-trunk +16800 400a5e3ac76c94aabd95159028028e350c23c284 legacy-trunk +16801 f3bfcee745a7636cdde8b386a2edfb5cae3b5176 legacy-trunk +16802 e5a74cfcc971c05eb821c683c489649985209eda legacy-trunk +16803 f2792ead1f06ee889df27f7886ddb467142e38fe legacy-trunk +16804 a955fd5de0350548dec7f40d5c6a3b64a349598d legacy-trunk +16806 a284ed21a0ddae71ecd5a80f774609a254dbc7b8 None +16807 7834a113ce248010dac04f848fa7c38d5863bf92 legacy-trunk +16808 97f5388a6dce057af0856bbcc248ad4a6e7f4721 legacy-trunk +16809 716e1c4e3f7894726f923a90743e2537a6142850 legacy-trunk +16810 2e87bbb87ad4405c6d2118de82e07256c1181b86 legacy-trunk +16811 65c1abf451dc0530f72f3d6ae655838e8ebb7c4e legacy-trunk +16812 d8069efcd76e48347c80fec5709fdf9975fdbc8b legacy-trunk +16813 143ffbf87e51bb1b20a15e8a15f12cfd1e399779 legacy-trunk +16814 30dbb30ff01919b0e55ed2f0e5e5445cc8e624c7 legacy-trunk +16815 443f3c77d88ced6877a2d9f3040daa00bbaa8167 legacy-trunk +16816 55e4f4289e18833b5702f515f7573a7f23394e44 legacy-trunk +16817 73d976afa8d43f49e9cf17142bb11e60c596c5e8 legacy-trunk +16818 591afe2fc8230b6094ef731c0cd610b6791ba2a1 legacy-trunk +16819 f36938874ce5abb9810d72f1311e051869f7e126 legacy-trunk +16820 9a052696ca1237bb72cd16543d1e164f73c1581a legacy-trunk +16821 9cdb6f979fa550affb56ad59f8a3ed8a3cbec087 legacy-trunk +16822 ed369f0aa32b3963ab9a43cd8a2ec534bf7d1db9 legacy-trunk +16823 eda09f824a9fb908c6c51a8eb85827a7d19117dd legacy-trunk +16824 6c91ad9c0e06c3ceb85952e88473b4a9878a71af legacy-trunk +16825 faa970f1540ff94eb8771ea1d0c21e0bfe9b80b0 legacy-trunk +16826 49c7a4dd9f615d743d336d6ceb3de33fea6efda1 legacy-trunk +16827 49c8305004801edc41aab59b93aa8811ae5cb847 legacy-trunk +16828 82f79618b442851806c5d0a44618326611ba3788 legacy-trunk +16829 6c7fa523726fc556faaf1298a7226610935d315b legacy-trunk +16830 3d68d5bccd406e88d5b547abe985d5e2d3ef1f89 legacy-trunk +16831 9b9461a656ddc557ac39a739ec5a24bdc8e737ea legacy-trunk +16832 9a291889ab5f1788467ce26501d9d771fc7aee09 legacy-trunk +16833 128f641191c33c895325bbf83a77efc9c65da491 legacy-trunk +16834 0d805e239d8f44cfe23a6d86c9d5f88ea376c29a legacy-trunk +16835 5984c3d761f78442e2809034c959d868b8193e4e legacy-trunk +16836 b4b2612ea3330fd7cbeca1fc6a4865cc5a856f16 legacy-trunk +16837 5b34b70ecf22fdb4a93f095120b2f5949fa351d2 legacy-trunk +16838 d44603f2b9289b4a68279e050d31792d081873bf legacy-trunk +16839 740290a56190a133cd3fd2533b2ebf677a40da82 legacy-trunk +16840 0460cccefe4e3b6e48c6df3f5b9819f935aaf038 legacy-trunk +16841 ae228a64293e12dcbc1246daa2b6b1a845c78eac legacy-trunk +16842 219ce9622352514dbf224173739ed1318ba5f335 legacy-trunk +16843 67a5448c9a0f25a741c6f05df01fe40e7ded6c33 legacy-trunk +16844 5b0f3c40060fc18202fa82f52a4d4c66290c827c legacy-trunk +16845 f5d8e73d77b7f5bbb658a6e42dad762005e51afc legacy-trunk +16846 a96d7c45d961f336293aaaecf2546819d82a11eb legacy-trunk +16847 d26cc5bdd24821e6aa6b54bbe5064a41c8bddf2a legacy-trunk +16848 77a615c9217e199e93cd664708ea1f86bcf47fd5 legacy-trunk +16849 3ddfa2d67be467cc2f45ca0b01dbe7bf241a5bbc legacy-trunk +16850 91c659968a8018e261ffb3d8e24a65afea29df8d legacy-trunk +16851 79bf6b38b7d5ee968b6489718d94731f9d208d1f legacy-trunk +16852 32045d423a7869f002572b1b2fbeab34937c597e legacy-trunk +16853 91f847a783d2a027f5f5c8258fa0cafccfe7ed8a legacy-trunk +16854 18385172fac0b7099bd2d2264df614ed4466f083 legacy-trunk +16855 a29a8cf5e66dd3f7f1677debb538290f163d6575 legacy-trunk +16856 83080539f7b4b849938ac18ab9b26e6a4d3ab8f4 legacy-trunk +16857 53ac3e2062efa96855f90362dd104cdf37971d98 legacy-trunk +16858 98e3255486790264c2fd06d377cb662464f5f264 legacy-trunk +16859 023468117514f48ede72c14212455bd10414546e legacy-trunk +16860 a905c5aa0691cdb9eaa6c45ec172f6cd9b8a886b legacy-trunk +16861 c4444f68ebf96773fbdabc9a08750dea2bebd736 legacy-trunk +16862 1f94a11d2b80bf487814bb67a6508feced1af383 legacy-trunk +16863 0a87c5b75fe3d5ef4d64a9cdb23f5a1befdc6410 legacy-trunk +16864 8cf56147d7b5dbf9fb476247d1a9857f15497cf8 legacy-trunk +16865 b913125619c8bb740f51016fd109e1faa57169cb legacy-trunk +16866 6e2dba45c83e5de413c86c4c7bcd7725449978a9 legacy-trunk +16867 fee0f402eccb4e08589b8711cb1cbb7730f8a281 legacy-trunk +16868 275bc4f9d50d1758830ce94616cd18765fee8475 legacy-trunk +16869 80a4192942ce95f23b5e3cb4649d284820157220 legacy-trunk +16870 e8301612e7d80b9375723e9aa71f2fc726666358 legacy-trunk +16871 7a6c5869f4566642d949ccda0ecc660fd16b5e4c legacy-trunk +16872 6365a85bf4fb1cef3903f8033856b4fc22b72c0b legacy-trunk +16873 ca8dc1bae67d7dc97a77f1e294ba95b0901326ee legacy-trunk +16874 f69a372409fc0f012d24e3df8540b29bddd54a35 legacy-trunk +16875 d0348a26b0939ebabca6305a78d4ca6ae0f1e050 legacy-trunk +16876 dc2dedca93f70ecb1ff571c560ea074c6e7a092d legacy-trunk +16877 6531fb1c879fe91887ce710c2292bc89a6e8f02d legacy-trunk +16878 c722b4c4229a61154c9bfc2efc1ccddbf63dbce0 legacy-trunk +16879 17b7fc440195bd6a0738895c672c298e494490a3 legacy-trunk +16880 c7fe7569e4e177d756ffd26f4545d71c2af70b6f legacy-trunk +16881 c50feffae82209468e493355508fb0c2ecd3dba9 legacy-trunk +16882 25eea88047e9ecfccac279ae33609fbeaab81dc3 legacy-trunk +16883 dc2db4562d0602d7e84cc4d9f2da14492df1e241 legacy-trunk +16884 03401af36b5c0a12e79b5276403e38dc9e7ca14a legacy-trunk +16885 920fc286854396fd2a135ca5ac634cd2a31b3e72 legacy-trunk +16886 266d7eaf069e8e72b010e65169eee1d9eabccae6 legacy-trunk +16887 1fcf7b438cab9b4928b3b2ca30af9cc540690f6b legacy-trunk +16888 0089b39fe49cbc32388f0aaa1f7e6202a115be97 legacy-trunk +16889 314ec59e4e14ce2fe58fbdc5ee33c1ffeb46dc3a legacy-trunk +16890 713dd76be37bac782a7621b7d538dab836bfe54a legacy-trunk +16891 c64ac83d3f18225de49a49a7e9828ea43192adf5 legacy-trunk +16892 f8843101c943b8a7b53e1242f1e1ed6dbe2e345e legacy-trunk +16893 b678491f7e116f8503d39032da194c27b3eb6744 legacy-trunk +16894 b652a9aa94f13351a136ccca51967a7856d1ec58 legacy-trunk +16895 51c2eed601590cf83b25f574eaa227a11618df8a legacy-trunk +16896 5778f93cf22b4c21857ef55542058139ae0da340 legacy-trunk +16897 de742303c456910d6de1b65a53a1fc6b2523af0a legacy-trunk +16898 e678e58049b4c540d613f5709f1719e8afb35d9c legacy-trunk +16899 f19bea681b667c4384e849fdf05a979986c3b215 legacy-trunk +16900 02abf7717c96e179d9c3d4e5102d5a6b05e3f990 legacy-trunk +16901 0a63b4789dfce4be20c9db5a6cdb6b053605af66 legacy-trunk +16902 0612a1cfbbf68952a4ee216aa45ae2065a074dbf legacy-trunk +16903 5bf56392419438363f71bfe21bd55255d1c17b28 legacy-trunk +16904 d638f535f403c8e18eee8a84c35794cb220800be legacy-trunk +16905 579e5c7035e2d0039d2b89a2245079f2607ae4ce legacy-trunk +16906 9534619daaa12f75d65e363a004e8943f327b17f legacy-trunk +16907 d3f5b453ade84e1dea6ae205726fbdf38053e769 legacy-trunk +16908 465c7c2e8f2146d761fc4067600c6bad45d4c865 legacy-trunk +16909 ec6a0b4a6479a5581755182e36a7db06420aa1ba legacy-trunk +16910 606714fae1b507c9091a6816bbb1158ee3bfab80 legacy-trunk +16911 88d11f48a3845b47f118e928f728a5ee462f4063 legacy-trunk +16912 03db7b2392ae88a402b8240d928ce05919d6969d legacy-trunk +16913 74638d20c4fd0f4168f4ecec36f105432ee6914e legacy-trunk +16914 44e666cc8c07bdeec2ba145b7d98cb661bdf13a0 legacy-trunk +16915 468481135c490b1a31941f5550aeec99d9eabba3 legacy-trunk +16916 2de0cc174c3be91ae455019b0a95d42eddd65227 legacy-trunk +16917 e2ed69b82d8d71818528e21c9e60c04f8fafb975 legacy-trunk +16918 29636f020d4c7b4a5b3af344c5dcd46ca3a91b4d legacy-trunk +16919 f657dc8ff25e93b877305bbcfc45e360191bb326 legacy-trunk +16920 da69b7d1f20f0a6cba4af2f036f2b7f49cb2029f legacy-trunk +16921 d809b9b75b9939319f7485e46b2622eb99580d01 legacy-trunk +16922 4dac9e3149beac990ff10e4468a10f92b9e6651f legacy-trunk +16923 e94342eea4f88e42d5fd23a93d2c3a31164deb8a legacy-trunk +16924 17d3128478c3b93f1b9d258838db548d1ed89047 legacy-trunk +16925 3148efe5606fc1818c33cce38135f2f61125e088 legacy-trunk +16926 0abfca0035dcc832fa15c0e2d3250cc081c8facc legacy-trunk +16927 87b8f0ea50e8d15606534963b7bdec18bb6d960a legacy-trunk +16928 3ea23e3c1b06e2a649e3269d2a99a92641b3cabe legacy-trunk +16929 4eacc0c912090ba0e56f060d62a1d0e0052eb9a0 legacy-trunk +16930 3a3adfddc29d1f0823e615ac6757b9eca76732f2 legacy-trunk +16931 0f8341dcc3cbc6b4af686fb3d989966ff0c45add legacy-trunk +16932 92980920d5ed10de5b5fec71f71110516e7f1f84 legacy-trunk +16933 ac8809959d01644140e721dc514927e117eb9ea0 legacy-trunk +16934 44f4a84a80a825d8bf0c0830943d56445152352e legacy-trunk +16935 f6338d74dca107aba86e47e6ce5a19e586a1fb19 legacy-trunk +16936 80d4668f1e1037b52d486b5e98daf453848ef0fa legacy-trunk +16937 c14ca20d1fc8d95b511b22f0f3b0eda8e3a9dc80 cnri-16-start +16938 73c564e4a0f3527aebde66bcfb4b273e43fb5e45 legacy-trunk +16939 e8ae70c3abb43a179cd9d2b17714fe287ec89f65 legacy-trunk +16940 268967c9934a0586416c3b486e79bf51b9719635 cnri-16-start +16941 dc5f67e8a2af193890e3bd055ea8f8fd01e91bf3 legacy-trunk +16942 cef4da4147c83d58989392e6fc78a0f5cde14577 legacy-trunk +16943 fd3f8acf103d1e7a3f8f02eead94942503557fb0 legacy-trunk +16944 41eb755e4ed153f658b863a9ce6abb13c150c0c5 legacy-trunk +16945 26768e21acf90ecf502d5d5c6549a4f693bc36a4 legacy-trunk +16946 039583c090c43424b9a84430c1e795dcfd2e9dea legacy-trunk +16947 2c2ae86dfe877259ab091e9c9c3a63541603aa6f legacy-trunk +16948 7aad7d9b616e9ddbddbba04f2fbea995a2059eff legacy-trunk +16949 441da2c5de43a953acb65c65976728f86b689edc legacy-trunk +16950 44212336d71ea97efe7ae237432f9743038b4712 legacy-trunk +16951 3eb135d62e2aed2c31fdc327cd3c2b250fa86ff8 legacy-trunk +16952 76e73389c34070120e662f27fe5824bf1de50e70 legacy-trunk +16953 996cc0675db67869e96e026bf984bd6bb5a3d0d3 legacy-trunk +16954 aae37dc99f5755708cd1a0296e62b6e23c4ea091 legacy-trunk +16955 0708cac59def3a66846833bf5d86f4264e404494 legacy-trunk +16956 f6e5cc2af6f197a4430315b0fed395f89165c8f2 legacy-trunk +16957 3116b0b912e975c61869da59e46004f271651075 legacy-trunk +16958 f7a8c40b3880c413732a011e4e073a6c6b3de101 legacy-trunk +16959 428729ff88249fdeb5197b6a001da4cfcd57752a legacy-trunk +16960 f70424ebb39b4a1f48c2240588db4fe8f292ae85 legacy-trunk +16961 22b590f8cf5382410e0c35d40b03fb0ea93903cf legacy-trunk +16962 31cda87e9ff4ea47318a68c43f97edd2731b0f2f legacy-trunk +16963 73e48847126308b20c7899f921da9ab05286be3b legacy-trunk +16964 f5f8784a4c27c8a510ae3ddefb23f74474fe5a89 legacy-trunk +16965 21ec69a56228863d89f87c6d497ad216896a95ea legacy-trunk +16966 b8e5e933801e36afbd35c68c86fb03e6870a6fd6 legacy-trunk +16967 8dcddcf1330a77d582e0b889fa512023f487292e legacy-trunk +16968 302dfd53b3c8fc2258ad88b217520ad35a9c6178 legacy-trunk +16969 72d8a3b203b14f6b1db6f43429902a45e54e7730 legacy-trunk +16970 3da5bf3c5f1574864e1843c241ae8186b7edaf1a legacy-trunk +16971 40447b672064b420498e96a703a54b2309e0b512 legacy-trunk +16972 ec3e0fe17b3d77a99c3987c559f64d43222d7ec0 legacy-trunk +16973 dad54d44d9ecc273446471be138fb96738fe943a legacy-trunk +16974 051dcd7cd1991de9e16ed030aae6b1f04bc0e611 legacy-trunk +16975 e7c8b598ff75fa2395366fd5f21d80c7412485f3 legacy-trunk +16976 c12e796bc4b675b0849095066b1e0f604b7eda6d legacy-trunk +16977 6bf061a2fc7802f76aec63b6efd3f86b675f7061 legacy-trunk +16978 5468b6e3b96a7d17f59b0551f47514d0818db655 legacy-trunk +16979 52fd496d353209c53f7a7ac02fc064753157b8d8 legacy-trunk +16980 27d7d89c774b10003a8e83330bc63f6444ff0624 legacy-trunk +16981 1b9fd0cbd914947cc421ba7e45aa093d7ba9af00 legacy-trunk +16982 dba4aec970e6cdb50d176512c1b7f0bc60ab5216 legacy-trunk +16983 01846568d147d16707ed9592d869b906cf1add0f legacy-trunk +16984 e9c2f830f9ba52bf5968cc7cd268d2ce7175a2de legacy-trunk +16985 51a33a3b2ba935457fd5fc86ca79dea14f0c7a71 legacy-trunk +16986 91deadfdae36baae6a2ad7cce2f9f6417c2237a0 legacy-trunk +16987 b8eadeed8ed351803664a6b878f3991ff73af390 legacy-trunk +16988 019265b3a85659c4269a9cad7f538800cdff6af3 legacy-trunk +16989 c56372ad93435f1fcc5cdc50eb5990e11350a15b legacy-trunk +16990 2b6a63759b97cf97f3e7a1845d57f1ffd4bc68ac legacy-trunk +16991 f66e863a2a5b1e427d6fc170523bec242ce2c696 legacy-trunk +16992 35b7989ba20c8a153a47c0148bc624fc1d2efb07 legacy-trunk +16993 8d1a059ae99d44e226a3e25308b9ca4ef8900e7f legacy-trunk +16994 acc72858eb72c8360169fdb1c8a169a13169b792 legacy-trunk +16995 abbc02795c4defeca29e8c6858a15effe1820ca1 legacy-trunk +16996 dff22d4a48dae36fb0a8a4db2780ff9bdb3e6ac6 legacy-trunk +16997 5772c4983dd87d382029087dbc6aac477a1e2cad legacy-trunk +16998 ea7040ab7286f22acb12601b858b2082f7cced34 legacy-trunk +16999 89f8153fd1ba161f823f1961e3f4a841b85622ae legacy-trunk +17000 c85a80db6845b062f57994bb5eaa0cbc90f87246 legacy-trunk +17001 2385ea5872e193be54bb7a0dfa8b532621a13f67 legacy-trunk +17002 2863fbb135f1f9cc6c97ff4510e4d4de6b69ee8e legacy-trunk +17003 93013e4bbe02e24b02ca037715b36458051b64da legacy-trunk +17004 e921228af43567efc90123587e016e9145f0eb5f legacy-trunk +17005 581460fcf1425600e51a9a412778da6b00cf5a55 legacy-trunk +17006 6223397bd6a2661843362209fa67e3b819fe3edc legacy-trunk +17007 277fdd9647fe08b1a7aa27b80af5eb1623b444e2 legacy-trunk +17008 4e66a3ab757da32f6681decebedf0d005c389fbf legacy-trunk +17009 bd3d1411b66c1d405d6362d549b9f48174fbb8a5 legacy-trunk +17010 9bf159ff4912923ed2d45209a31ea57a2127002f legacy-trunk +17011 211976034cf7ee390c30f797667616edd4a7c857 legacy-trunk +17012 9d8ce6ed4a29ab4200358019b72e1b6982665c78 legacy-trunk +17013 999671f69df4d05ff74ff1913509afb5b0b1f585 legacy-trunk +17014 41234ae95d2a07e5db03411ae452cf10ead95ff2 legacy-trunk +17015 2787e93817c6a0a18dfbe9a0f33e565faec14221 legacy-trunk +17016 34e7de4ada70af3cbb6076a3ddf582b74f9150e7 legacy-trunk +17017 900a177540213cbfda54f3b01c3fa43ed8d7796a legacy-trunk +17018 ec6a21f55fa1ce7d745a2dc96add001848a887f3 legacy-trunk +17019 d223620a8112689c8b1fc8462b8fe3e7a8b25711 legacy-trunk +17020 1b0dabffc51cf090040eaa97a38ee16db92e7e3b legacy-trunk +17021 1c3445378879ba26b481b0c2d95dacaf606560fe legacy-trunk +17022 6816db2650cabf9b01dce05fcaae689886dcec7c legacy-trunk +17023 3ae185b8ff031b148e564c827a4536b422eb6077 legacy-trunk +17024 4e907a51a7affc1f3cc2db984badef9dc45c1a4f legacy-trunk +17025 8c7dcd1ed08a57f63a781eb968ca119753c9bc3c universal-33 +17026 c16f2dc9c089e86a5ccc001ba4b7a1f496358658 legacy-trunk +17027 94d71f2fc9a83cddc7035a89fe521fab7b33ab6e legacy-trunk +17028 0c0ee886fb03b79057f00bb5172374a0e786b96f legacy-trunk +17031 19126e557ce841f745360c066bcab59c8e361204 legacy-trunk +17032 a856c92b1d7bf1a3dec0e301afce3ae5c4517771 legacy-trunk +17033 589112c4827341008ac8a912ce2a9fcda58f2ed5 legacy-trunk +17034 63ea2a2df06f3d18ae5d4b2ec6ec2cc5e2180d74 legacy-trunk +17035 b5fb175ad5282541c6c23d7042ea9897de6537ed legacy-trunk +17036 0797fdb25a779e17a8bcdef3438ceb160e9d16bf legacy-trunk +17037 d33179cdc51121d3b929548da81eec8ab97533f9 legacy-trunk +17038 ae1edc6ff5435fadf8c63fd774376f7d9ff5a34d legacy-trunk +17039 e79d3cf4443ed9d7fd71f5f94cbaecd91123e8c3 legacy-trunk +17040 2c328309431167973eb593ecc2a6ec3b8534d12c legacy-trunk +17041 303c36e48769f939527c2d28a410e06765828d48 legacy-trunk +17042 e75eb4d8e329b47ab39a0ca8b543bee5930d58c5 legacy-trunk +17043 d974cf545ca6adb3c22335ee45189dc1ca169214 cnri-16-start +17044 8c52693397d24a11ddca288a8cc0c5e2467034c8 legacy-trunk +17045 c39733be0dc811aa8b1109ef9ccd9b5c418f1bc2 legacy-trunk +17046 a4f5328ccf19227bfdf0e5e6388c55083a09ce4a legacy-trunk +17047 cbe9590d2344c4b826ccc9baafb65c60ee5bc918 legacy-trunk +17048 11a26e963dc908f6d400aed0ccb3009d41551fae legacy-trunk +17049 9f9f3280dc68a0178b64c4309c828ef40a29de88 legacy-trunk +17050 20377f15b96a7cbf1f18c10e6bd4f52472f0c40b legacy-trunk +17051 ab0ebf12d4de222c07451af97beef8d23fa74fec legacy-trunk +17052 31925ab46b23542a1c347e3fc315b26ad27540e7 legacy-trunk +17053 396b4ab3b9c2a9cbdcb25d7aefa4711c530e48c3 legacy-trunk +17054 1f1a156ed5af8f7a50ce05fc85f85423a24f2aa4 legacy-trunk +17055 b97e6202f0b1968bd989031f2a11859023b6e294 legacy-trunk +17056 3e5d6e2093dfe1c5bd9659b61adb9b5f9d8cc18a legacy-trunk +17057 63d85897c69fa4d57c171e3b89ad350a7b34e67e legacy-trunk +17058 58d7995ce795f79feb02cfd9ecbf8cfe017be79a legacy-trunk +17059 d9643e9c90eb1a5cc9d01e78823ea1cd31907044 legacy-trunk +17060 74f7f237f739d8d6c91e45371643c74f34c8abe6 legacy-trunk +17061 0e66b774094bfe551454ce7b2c9b1d5256bb4e69 legacy-trunk +17062 3483a78d135fd46241bc6f3a68e7cdf58d0454d2 legacy-trunk +17063 3fcac35c7f5e21ffee17b25b5cc227c5793344b1 legacy-trunk +17064 0670c4f901710f2d09c22947f416d5bf47635c0d legacy-trunk +17065 b2a8292c39a9a2df3fe9919201faaa735516d216 legacy-trunk +17066 7b32ccdf1d4a2024fcf38fcb3ff16d6a7336670e legacy-trunk +17067 5994bb61916332c5fde914c52f682290afc242a9 legacy-trunk +17068 9cd2f790c50c382864ea36acd27e6d7b0d058f5a legacy-trunk +17069 a142ea20fe94f1846f45c89a29834f69f7e7bd83 legacy-trunk +17070 438871e70532b17be270cb8d5d82f26167d11d4f cnri-16-start +17071 a1b2fb17bde7ed7ab7caf3f06ae109af686337a4 legacy-trunk +17072 4e3640a06857206bf166eff5abf678f73db5dec2 legacy-trunk +17073 4afb0889a165c1975b4a106132b8c2e7e989a476 legacy-trunk +17074 58f3f936279ff682c605c81b523d24a977afe5b5 legacy-trunk +17075 a99fab0ba2df88c9a8c1660703b2e76cc5c4e7a2 legacy-trunk +17076 7459159ba249f46ff1d4305f5bb18bce2fa51c46 legacy-trunk +17077 830de68de33095ab73e8e148d90cd8180ec8975d legacy-trunk +17078 cdd95d67a71425829de8b8590853be8770d9073f legacy-trunk +17079 1fc33dfcec442ccff8e3cf941800e2f16c75fd17 legacy-trunk +17080 5fff4ffeb35d5c5af1f7c3fd2bb84cbdb04d8f3c legacy-trunk +17081 6396529a421c9ea4313265a0213556bb5eef7b85 legacy-trunk +17082 ae275644457b554ace46beaf7b8c8cfadab17eb9 legacy-trunk +17083 d87ce2d2e425731656840e51107808d14e1308fe legacy-trunk +17084 adf3a284a2cf1d66e6ab0142ae5bc17b3cc1fea9 legacy-trunk +17085 9b20a69a505e0e6f2887b8667226930c9ce093da legacy-trunk +17086 363851cccf2aed22a75f6ab6c679b50ee2629427 legacy-trunk +17087 660dbcc18b9ec6e96fce1a04883154b3d44bd45e legacy-trunk +17088 1f76fc98b4c8df007b0886560a6eb397145c15bd legacy-trunk +17089 d3f92f3fc0b09026d93aea5faf9895afc9c29d3b legacy-trunk +17090 98608429ca6e4292430d22a3c84da4f2ce62244c legacy-trunk +17091 cd8b815cb19657a0cf521af0eb5dd4b2cd7f7e79 legacy-trunk +17092 90ca6ab26909ec341e051db24eff03bee725ab78 legacy-trunk +17093 dc9d9ec44679395a0f9c6af5b1738afa4be7e207 legacy-trunk +17094 15b6fc25f605096f9366c73712978c180bfaeb37 legacy-trunk +17095 21557ba4afbcedbcfdd476d09f917de7aa5aa057 legacy-trunk +17096 bbfc49a84389642e990a8bbad8c7cc9604922010 legacy-trunk +17097 18da2bc5058c0fdf8b78f641d7cc3614e34f1897 legacy-trunk +17098 bd950c50167fa1d81c144f82e71ec8adcad3f2d3 legacy-trunk +17099 f3a8f603656709953a4e5d4a2f4450174ef057a0 legacy-trunk +17100 984abd20eec260d25b42e473d9e557f58c507ea9 legacy-trunk +17101 fb8fb53a2eff013c56fc1a9ed1ba70bbaefeb49e legacy-trunk +17102 b1a0fd3df1fc8d6107ccd9dffb1486c321c3dda0 legacy-trunk +17103 68b61aa1aa4aa09404b9cb0f6447988d75dbda4e legacy-trunk +17104 8cf663126723adafe64f3de4e81e09ca81d88354 legacy-trunk +17105 4d565095ae9933017272f9780117e8c896e5638a legacy-trunk +17106 df89238ac74771918758ded49a9573487981809e legacy-trunk +17107 e25aa56a5207df8a90a571d63bb10aea1aafcb5b legacy-trunk +17108 d357ad367f260fbb9cb2b370f2415f66768e6dab legacy-trunk +17109 ea95eeee04e7249348e5daf7e3cbe8c18605e0a1 legacy-trunk +17110 6ab58c55e0a3c0684065070a7ff4feb76655448b legacy-trunk +17111 77e2443abf9bde325189fcccf6ebf0f5a0a935d7 legacy-trunk +17112 2e2fbee53e69fe6cce6f06be77aa6ffe91a98334 legacy-trunk +17113 59c19052ae4fb021e8037e4d028a81f2dd20e66b legacy-trunk +17114 bfe304fc06ab91224448576d93b5f34249116d10 legacy-trunk +17115 11a893cbc1a012a7df88594edb424721ae195d1a legacy-trunk +17116 26dc62de9b6e15aa589ce5979fc15ea8a678168b legacy-trunk +17117 053627e7ac141e48e3c25b263af69846d1fb5951 legacy-trunk +17118 e5253b692e9fbe365ab4369cd759b24b8b86d609 legacy-trunk +17119 8172ac9d21966cfba509fbcde215ef26ecad4ba2 legacy-trunk +17120 eda449f54e449ef22e73caad53ce380affe3104c legacy-trunk +17121 1205b180ba903c6aa04d7edf3a34e202654653f0 legacy-trunk +17122 becb1ef0a573539076a69b71b2747b3b4ff1f3bb legacy-trunk +17123 5167ed6836fc4a1aa201c61c01c4a52323a3b418 legacy-trunk +17124 013ce7ee7167c39ff39e45a788ff1722e5aa5519 legacy-trunk +17125 31641ea89a534d706c1b083487157b5319e47881 legacy-trunk +17126 f8b20d90c9af25408060e6cfe96ef8689518242d legacy-trunk +17127 0198d202039036831455afc9ad55da77eeb9745a legacy-trunk +17128 e3779ee942d0a005eb326ae9b61660904db76e70 legacy-trunk +17129 62ec0bfd93f808c67a3b28f6e407ca0cdbfbeecf legacy-trunk +17130 b24db770dffdda9c08dfcadf9b4e58bb219e594f legacy-trunk +17131 b8b3f76ffd51d1241a682f82ed72d01f85277c92 legacy-trunk +17132 7d40bd07b1296635ba80ec6ab8ffd7e7a3d2a3d8 legacy-trunk +17133 2db807f345bcc07754691ac8177706fca78a8695 legacy-trunk +17134 97651f28b004c5b6fbebdccf5cb2150642291557 legacy-trunk +17135 4b98dfded49f40b09a61430fde319c0ca1549925 legacy-trunk +17136 c0fe1a8b872c040732a953156efb11baec19e70b legacy-trunk +17137 4d491aeb980fd1d33a76ce65114934af34c24b80 legacy-trunk +17138 4dfbd9b3412baae36363c7f31a8f9b8ca100ece8 legacy-trunk +17139 511123dd84243d342dc06f6f7acda1eb87f8866c legacy-trunk +17140 2dcfad3b2115deb6576afd9408c768a795b92719 legacy-trunk +17141 33c7df0c549d72fe3daf3f55fabde69e148832e1 legacy-trunk +17142 ddaef45595e2d762be3a02fd8477d21740ce0ddd legacy-trunk +17143 1fab92836758f8043bcca653b41c9fee323cad2b legacy-trunk +17144 ada4ec4cffd501dbcda88c09f04289a5d4fb0acd legacy-trunk +17145 58f100acc3ac0efa2a58fade3f3c0175f672c9c3 legacy-trunk +17146 460ff3cf3195be2dc1ed648c4aae8b328f6e428c legacy-trunk +17147 58842cba8dbcd231f534d28d566eaf5948bff041 legacy-trunk +17149 22b2ebd78372f2553fee8807192f2d9048b9e19b legacy-trunk +17150 14a2b8d4fcff08bbf3d0e76f0dfdbca8360c04ee legacy-trunk +17151 73f39ea4efb7a74f69139962e0e32054714daccc legacy-trunk +17152 8f2e6134cea00a506a95cef9437bd872453f781a legacy-trunk +17153 b57e360a6d161a9ac6defc362666b5462f59341e legacy-trunk +17154 6dee1985c681c10ac502c2e6c9096db354a8e419 legacy-trunk +17155 cbe423b3ba3a065ba65d638b394068fc69b6ed47 legacy-trunk +17156 eb7c27e8fe37ee7d4ac602c02c9a17e1bf4400d5 legacy-trunk +17157 f55b673d9acd7425caf95e0de1189cf18e127265 legacy-trunk +17158 bea8f14e7d61cf80e5323c1dc99d2738c30e12fa legacy-trunk +17159 951eb3af349483bd57163a407b508ad232789a0c legacy-trunk +17160 0115f403fadd8fb50dd304fc2c51bf700a0af79c legacy-trunk +17161 3b84c5ff89da893fd9fbb476dfc5d8a41b29cfb5 legacy-trunk +17162 057c7ceb92f04486f297bbf76863e64f152e7f84 legacy-trunk +17163 f48ed944884bfff2a551734f497d2de1991972d3 legacy-trunk +17164 801a304f248fbff768cd4ec2e09c0c223653ef85 legacy-trunk +17165 ab61c335a04dcd1bf4955b6dbc0a51728f341509 legacy-trunk +17166 d41c41371dc1089040db747e15d328594f799d14 legacy-trunk +17167 6949b50364dd08c8218ce7b734c696104d923277 legacy-trunk +17168 7b53ec2704e00a3a5e5d748d3e0f82a28f7025ad legacy-trunk +17169 432d308c45e8d8b41fc1ac72470287aedfdee2ee legacy-trunk +17170 5397fdf88ec25a1b5837dec9fc852839abe441e0 legacy-trunk +17171 2de1fb5302ed87ed68f2bd97d0f531e8ebf939d5 legacy-trunk +17172 6d0f64f7dedd18354e58c92b3fade6a74769e5a9 legacy-trunk +17173 21bf9fa92255853ee42caccc244e4e4ec5ca8298 legacy-trunk +17174 7352bb1632bc01a491612203cfa5c62696ccbcaa legacy-trunk +17175 ef978520085f10e597826b259aa906b1b7b9e646 legacy-trunk +17176 93dabfc3a83fc8c52bad882bcb537653cb8cae63 legacy-trunk +17177 deb727435f39064e35f6825d7948d20ec8902bea legacy-trunk +17178 0f6809eba50a88c773d1d7118bc3697afb57a62f legacy-trunk +17179 630c8abfa8d7c08e54567e7949159209fc38338c legacy-trunk +17180 3b2dfbc34689ded0b0e7262682267fa672a92cf3 legacy-trunk +17181 a38e12e4afb70c59dbe5e6478441a4af75500151 legacy-trunk +17182 3eda3010bc0a0db85d1981828c966bfa068f1349 legacy-trunk +17183 ea9e625b01a2a056d1e5235958e6fbc57ff09a59 cnri-16-start +17184 35763be75ddb7ca6f7228d57f82cca464f33ced4 legacy-trunk +17185 d1d5e2dc29db50d748d92da0c8e44debef9ff553 legacy-trunk +17186 5c51c096de3bfe6cc36ba718dbf0e34f54d0c89b legacy-trunk +17187 a665bdc4922f5dfb0daddba926dc7fc23d8fc9ab legacy-trunk +17188 5da406ebef55204f7da1b7a9bafa980cc034da37 legacy-trunk +17189 665b19e7776b53b201e54296efb0a0d94a42758e legacy-trunk +17190 c7ed412a075b019dd50d7cfa6065b83656cb34ef legacy-trunk +17191 36d0b5b094e421fb7e7966a0b54a53637608011a cnri-16-start +17192 7a1fecc08d70a8ca00e2204e5b22c56ebeb3d222 legacy-trunk +17193 648a12a780d908344abf7df94fe16cbeb9b8b602 legacy-trunk +17194 034bf1081304750238a4656696c8a7b95fc0a61c legacy-trunk +17195 cac939076c7dbee72201bde30c60a33087246424 legacy-trunk +17196 cd047a858ace19bbb51d760c8e98bea84809d16e legacy-trunk +17197 09dcff51932c77dde52bbf62a6c5d16f2949af68 legacy-trunk +17198 64c25fd29d6f6717bdcaff710bc8c676803b747a legacy-trunk +17199 ed147a53701b80065247814a55aac95dd69b0076 legacy-trunk +17200 8df166ca09b25ae925b7236315a34699b908f504 legacy-trunk +17201 6f6f965c5e2db64b947d4fcc7381e83aa0cb0756 legacy-trunk +17202 fd479960e5e0c2c0778ec42081276b417a02b546 legacy-trunk +17203 dd4766aa2fd2f77b76a8287782985a487a6aa959 legacy-trunk +17204 ca7316a00464ea48f18f0ea8519dda925dcffdef legacy-trunk +17205 b069d7d9ce8a00dfaf71240b912e3acd23ebcfcf legacy-trunk +17206 cd0c4dd4904c963412bc2c6538573ee85f43ce8b cnri-16-start +17207 e99b0db16dd7d3c93ca88585e26c0e690ca82825 legacy-trunk +17208 7958a88edda177389527592a8c0bb8986fd6d639 legacy-trunk +17209 2d6cf68aa64a55d2fa2b2f7cd3dd532f084d5033 legacy-trunk +17210 388c721c20cfb953410e801eec16e5d53316da54 cnri-16-start +17211 cfd074321aad9d1a52cdeae7e00edfd97f8e8511 legacy-trunk +17212 7e47b370eb675519b87528647026616064cebd86 cnri-16-start +17213 6fb61b83435da1b6f87d6bb0a8fc325560008139 legacy-trunk +17214 d395cac786b224b1861e328cddaf3052e0eaccda cnri-16-start +17215 0507e569d74ae6516ead673ddbcd254f6dc393a2 cnri-16-start +17216 8a933ec47ef7339cdb15e12ac92ab8165163b3bd cnri-16-start +17217 39ab28572307f8188ae552c2acd6d88ce9a8ffe5 legacy-trunk +17218 579a1e731fc8424ee851e2da0e5d06a798a8a7df cnri-16-start +17219 1fdca0af71d343e88e6bf50f7954421314c9bbbe legacy-trunk +17220 afd6fae467e5925951be9999395eca7a3fd4bb0f legacy-trunk +17221 ef2714bb0730a75256e832b70772a473b7a3abc7 legacy-trunk +17222 9f03d2faf156ade9dc296b105f049f25d2768853 legacy-trunk +17223 1c438fd5c0e934006eb42b9c563aa510e7a23300 cnri-16-start +17224 44ff7e4163aa1e0cb22502bc0684b8c8eae19948 r161-branch +17225 558ea90f5b1ca28c3f6042bc46de12b9c55817cf cnri-16-start +17226 9b1daf3dee14d4e41cd247cc73768915a5385110 legacy-trunk +17227 f1bd30447e30b59c08f021c59f17c68d88c6839d cnri-16-start +17228 1fd64b3af760228bb5eb5134a624ae081d63c439 legacy-trunk +17229 63d824679b28533bfaa10e34cf497a056d0c411d legacy-trunk +17230 7e4f602dc68576b2e886b0f5221926d09e11733d legacy-trunk +17231 2eeb58b43eb1883bdf44372ff4c811c7b831bbf6 legacy-trunk +17232 05f12128c38dbe424c297b4fcaa3df87670be73f cnri-16-start +17233 532c9ce6c87c17d9bb51b07aa0fcc4ce38090bcb legacy-trunk +17234 a10afb3ad2750c0e2624134b1f59bc90090b7243 legacy-trunk +17235 542d10bd04f477a4b89987fb126750fe9e4d22a0 cnri-16-start +17236 cd6f705c54b8c453b9cd369c8f16701ab1404d09 cnri-16-start +17237 f629af1d4bdaa82cb5fe60992b3588ee88b7ebd3 cnri-16-start +17238 8d47101419b84cab93dc5acf2d2011132b172d1e legacy-trunk +17239 cd2be153f228f7fce76903d1c8c9a6f6f36c0112 legacy-trunk +17240 367ca49190bc5265e6d71effabdc795024d6e179 legacy-trunk +17241 320158026a4bc4ee91650ed907bd40832e14f73b cnri-16-start +17242 88853c10308797c85cac588759cf091071e5a114 legacy-trunk +17243 6a5fbe8c5aa6a88938f8122db220784cdaa97dc3 legacy-trunk +17244 3e37698cd737f4f7cacc44939ea0172874f87b70 legacy-trunk +17245 8b406856bc31c12af4b780c555672772757a89b2 legacy-trunk +17246 057bc197034526a5df10ce5f1a5ba4133e09f3d4 legacy-trunk +17247 d689b8ce9d0a928ba65239268521b0dd3e401df1 cnri-16-start +17248 8721915a6acb8307a5ec120a870ee228b3abcbe5 cnri-16-start +17249 b17598ff2cdd7401d8f86651f5fe000fbbaa680d cnri-16-start +17250 d8d1812dfce0646b2fde559bd262a91c81925a79 cnri-16-start +17251 d8466855026f5e9bdabab7a2ba3d68cd0326bc07 cnri-16-start +17252 6563d71e7d95ad0bf8daa16c44718f07d1348281 cnri-16-start +17252 786a57b7dc6ccf56e630eb91a262016b9a14982f cnri-16-start +17254 beefa85a3924c3e22a5837bd3eb6186d76ec849c legacy-trunk +17255 fc10b227c17ddc2f918952abc8736e6042db02a5 legacy-trunk +17256 8d035c2fc23408583509c825fe7507d892973b9f legacy-trunk +17257 d1c395c47102a156b422b2bf5d30995592479b01 legacy-trunk +17258 a76ab7c8fc2921bbc1ec0252acc02900893e9700 legacy-trunk +17259 4306107b1395518d9d3297e1833abea0aefd3717 legacy-trunk +17260 a707a5f17139324a84dc2e6e451030ecdf6cb02e legacy-trunk +17261 b1944ce5492b2f2bc32f0fda7a9a01477289171b legacy-trunk +17262 86266f763d4419717ed640f207d603822893e3ef legacy-trunk +17263 90f0946f64e781e732d6f567cecbd46e635a9029 legacy-trunk +17264 607264e7bf514340b6217911350bf0076cadd8e6 legacy-trunk +17265 6be446ffa2d9abc913a72d3cc6b928e0ddef9560 legacy-trunk +17266 d42fc3c7173e5c73c7b89fb2eea6091d4b760f6d legacy-trunk +17267 10be9682b003f23c2276d1271d25b5b31c106e5d legacy-trunk +17268 0dcae84506baa9cb7352c27764b719b769bb128d legacy-trunk +17269 ba22a5ed46410bcd91aa0f566cca07efc6bf8b4b legacy-trunk +17270 e36aff52fb4e0fc3608c0d592226cddcc88fba32 legacy-trunk +17271 acd4113e301a3c7ba3d2a7a02da421246a3b32a0 legacy-trunk +17272 24be049d20379342a5e0677c094b3b4c834a5535 cnri-16-start +17273 f9448f44e701cad56c7cf581596f1503550c8f59 legacy-trunk +17274 6460411f473effcfd86065c6d07c7a90630fb008 legacy-trunk +17275 c616b79107458dfeb4fad5e8f1812a7c250c0103 cnri-16-start +17276 c384faae5052c5f39e683baba2011dc28de867d8 cnri-16-start +17277 f8e668447e2a1d290d571a499abc16da86d4c431 legacy-trunk +17278 448bdf4417923fab7aacd8f5562788618334ed81 legacy-trunk +17279 bb9083312d814c4eb4dacff17e1c3dec901079a9 legacy-trunk +17280 ccb37e2b24603b7c222d58d069e1f79ae68fada8 legacy-trunk +17281 9f1f0a6bc18e757f5274cc72de34afac449863b8 legacy-trunk +17282 8376ad6645e3ddc59287b5ef1daa9554a8333095 legacy-trunk +17282 35c4fc1414a59888614b9be784a25f233ba67984 legacy-trunk +17284 77e8e550ae13f75e1c643702304759e94912c947 universal-33 +17285 4fe014808885a46f47b813a3527387994ab57e41 legacy-trunk +17286 7886b3b6c40f7bd5eecae5c36cfff18e26797cf4 legacy-trunk +17287 34379127ee3b4d91ff05e30e583f26a16468357f legacy-trunk +17288 9fa3c571daff202e377d230bde3e820967d14142 legacy-trunk +17289 c0509989405ec0eeba76cb7f2f159a981c277078 legacy-trunk +17290 e348ed946d1f4c1b0bc18b85ffb9dbafa9979662 legacy-trunk +17291 ac39178fa85fc9e4c24e1d1691619f2f863bd94e legacy-trunk +17292 3a932cc643233fdcd8dbaa92ef60dc288346c42a legacy-trunk +17293 19443585cccc255e87c57da7ea18d64f128d85c7 legacy-trunk +17294 f7fd095c31a6aac99c9e283ae735ebb2fdf7f8f6 legacy-trunk +17295 c738041f975dbe83ea64bc1e1df458a21dd4b5b3 legacy-trunk +17296 f4c92a24211bddd030ce5435d70b171f77608749 legacy-trunk +17297 f051ac8340f7b8a1fc07f23bda2209f914431513 legacy-trunk +17298 93b1dab097676d92947032ac3fc05cf2e971ed09 legacy-trunk +17299 520ce7ece253985af089e617c1430e768e576de3 legacy-trunk +17300 5d12d9660c2ea8d3877e482d2612412cdfd74905 legacy-trunk +17301 c9ee6f74670daf55d5eb2a6a247f71e48c6e727c legacy-trunk +17302 3e387507a9919b0551328cf2cb732be10771b1c4 legacy-trunk +17303 fc5b40616262373ef746bdad7ef31addbcc1380c legacy-trunk +17304 e5cdce2a2b1649f6d62e7294597e77df5bc2a92b legacy-trunk +17305 0d0613b95758e7bcf9d093b52e8b4fd902724326 legacy-trunk +17306 0d1025aefebff2488c935d533297939181ea0072 legacy-trunk +17307 015a34bfbccba0992bda7451978f14b3b7d969c0 legacy-trunk +17308 6919d8e14a303690062893ebf7f38aef2110f890 legacy-trunk +17309 20aceb8edfa5e6ca4fadf9c52987c4246c0ee50d legacy-trunk +17310 0b66d0300eebe9c207b9fc8cc10315765a264068 legacy-trunk +17311 95eeb061fc6d4d4551e78379ae82d3e010c014f5 legacy-trunk +17312 eda26f1232274bf6bf18b04a91fc7ae185b6c364 legacy-trunk +17313 5edd49d340ea9aa0a4dbb49b530ec406c9bc65d8 legacy-trunk +17314 db026092cb7e49d8e765ff5c5382e788a08d2649 legacy-trunk +17315 aa44537d80b53fedd56c2e47956c0d4e15e8b4ae legacy-trunk +17316 ec165d03d46ca86176c0478f5fa4115cd64a3abd legacy-trunk +17317 17cec96f75bc1d5609d22315f87a018de413283e legacy-trunk +17318 e13df4e9076f758bc7d9043d8e8763129bd39847 legacy-trunk +17319 0721df789270e79438da8c2ec0f9c20dfc32f095 legacy-trunk +17320 142cb4e7310cdea4c5e081d143e6536828cc1230 legacy-trunk +17321 0ef6ea58590b60a5a36c87098dc77ad8fac1d53b legacy-trunk +17322 f90b823205ff1e1c68bb2e7dec298f2061b64adf legacy-trunk +17323 39ff6b3c43afc3eb3ab4d86f6671aa479e6b86e7 legacy-trunk +17324 c3c49859e80b08fd110de4ba2257a652649c98a5 legacy-trunk +17325 f6b86e2dc55bbff26a8ca347512a5d4fa33074ef legacy-trunk +17326 9537e7893f3c3d453ac52f646ed790ac6843f659 legacy-trunk +17327 b7bb4a35c121897779a8e1d994a78bf05e838f24 legacy-trunk +17328 e4ca8c21377a3cb73b93c25e35809d2f5a332e13 legacy-trunk +17329 71456782d8fd5a1f30b95fd0103e2df67b115284 legacy-trunk +17330 9998b7087ee6049ac0fec1ff7e0fb2ceccb3698f legacy-trunk +17331 cc683a0ac568eb844705080cb1f3a3bfe2816e43 legacy-trunk +17332 89e3b6a54fe93c6dc53828cc99b9e82c4fdd0d46 legacy-trunk +17333 0d15c8053726b27f4f2b02fd194a131f4bb7eb73 legacy-trunk +17334 5004349ede4df8eca411eefbc48d82df525d46f0 legacy-trunk +17335 8a63c604ee598fb640f1ee52f95e23570a7d9d34 legacy-trunk +17336 c32f5490f5e3ac2e829281b8e4a3d3d71d7f75de legacy-trunk +17337 34f9a017ce632ccdc8c1728d1256846744e4d91a legacy-trunk +17338 ac0246586d52782b5cefeb179671ed171481a628 legacy-trunk +17339 51369a57b0aab480a079c6e8bd13e13a9275a712 legacy-trunk +17340 8a715d2dfeb9f9a61d7ac260ac63f531c455ee7d legacy-trunk +17341 aba7eb9d8d61454f89a5fd87e99db3361b3910f0 legacy-trunk +17342 52a600b38f7ee5980c0ebe620f989c1ff3321c5b legacy-trunk +17343 f78f287b3addbc887c1944b5b873e6941fe0192f legacy-trunk +17344 334d9aebaaf10a02ed13a29b70d21165a439fa09 legacy-trunk +17345 7728b0ea93441c5300acafee3068c68c2204eb01 legacy-trunk +17346 2ba08d991c4330af4d7ee46810c29176e1928939 legacy-trunk +17347 b19886bea3787fafc0d21b8d45aa2a70aea4b68f legacy-trunk +17348 e6a9d412652d28a9ce51c54c299b5cc74dbf0b65 legacy-trunk +17349 aed37f5aa475e7473f9e8d6adcd29fa4c08c1bd8 legacy-trunk +17350 d327fc47f8fddfad97dd90ddd0c1b8b3a861ee81 legacy-trunk +17351 371e88af645f1e857495fda5ee3a0305463d05ff legacy-trunk +17352 7f23ec5cd9ca8458c96a8f1efbd3dcd6f0d380fa legacy-trunk +17353 21d847653f54b9599032403139ba34a09337d5aa legacy-trunk +17354 58ba90e4e985f1baa9cefaaed1dc47e9a8d3324f legacy-trunk +17355 eef25730e64daae78212429df8837b393ed81481 legacy-trunk +17356 15acd5c591fd4c0518df24eb9b3109e0f8deee17 legacy-trunk +17357 deb3e9685a1eddc2e1ba9ecce5cf01f78fd442c7 legacy-trunk +17358 3823fc722b50c5309d174d55c5b9ba1d49fd5492 legacy-trunk +17359 28ac148d0129a7802cc758ffc18d86a3faee421f legacy-trunk +17360 c8727aca1404c89f366bdef0df36ae48bf30d9a7 legacy-trunk +17361 c2f7ad070b9eff3013e88fae9e36e6d75b202d0e legacy-trunk +17362 a0392f4389605f870507b29d32da205a6d384cf0 legacy-trunk +17363 75ed4263436629eab4970dd2b99b529dab1a98c6 legacy-trunk +17364 29facb78d6f4167408ec6f2287797504d06f7b98 legacy-trunk +17365 0d49dd0f1bce3135d2619b7822847053ebe8ad21 legacy-trunk +17366 b34095e488cf1ac8818b2213cbdc29abe8942e9b legacy-trunk +17367 3b619385a90e47c968cf02cfdc9fb7b3784ed87b legacy-trunk +17368 1db453296c767bdacefaceff060af5de7afac56c legacy-trunk +17369 b82802bf7fff2dfcc4a9ae7190f0a510bbd344f5 legacy-trunk +17371 bf844ac2c81abf302325c8212b24bef033b6099e legacy-trunk +17372 5167d23bd6b0bf01dad208e03b6942fa8f91b7b0 legacy-trunk +17373 7435331b48ee6584051165e61074f31c78b0ac73 legacy-trunk +17374 addaba991077d4838bbd61f646e5a806c00aa2e8 legacy-trunk +17375 9fed4eebc5864fcd8e4eea50739eccc556fa27ea legacy-trunk +17376 235bcd3e5f1744693f6a8d837c3fe845e45af4b6 legacy-trunk +17377 cd3e4d73df8e4863f632c53e0c00790396c505f5 legacy-trunk +17378 919d36fda8c8d1857118718a7665103ef333feaa legacy-trunk +17379 fc54e397169ff6eadbcb09f654e88351d3df1f25 legacy-trunk +17380 ff4ae691be9b50f9c2e6e12e3b4402c6da728704 legacy-trunk +17381 86d4786734ca1dd6500e4de3940dddb010d09d47 legacy-trunk +17382 7366bb95f212990a80ba7cf673fe4394601c2d7d legacy-trunk +17383 be1ab187358c81f0962dbc82cab8035098370943 legacy-trunk +17384 8d1a468f8e59154b702b9e4ccc5f3174b3ec9124 legacy-trunk +17385 3067ae27458c240592ecc2ee5a8c62844432a49e legacy-trunk +17386 7150979f9694156551ef8f6443ddab2f80f3e3c5 legacy-trunk +17388 635f691233493e5b7935a942874a00cc832ef6c3 legacy-trunk +17389 a5d65459a7b692030e5451134c06774c08dab4bf legacy-trunk +17390 68795c13acea00116a15e116cf434cb567f31df8 legacy-trunk +17391 4175ee80a0858c9876f07306f711c8b9dbf882f0 legacy-trunk +17392 052b113c75d4cbe6ed960148891cdf0ddbdcb014 legacy-trunk +17393 369ac185055d311c01da30892cdcadfa74783f89 legacy-trunk +17394 dc3bef771d0732c691ce5da95a950e2426dcda20 legacy-trunk +17395 35ae8dff8ed099bea9d9a5d2b072320b6aa2ca96 legacy-trunk +17396 561c0b1d514b34f89abcb3c2ce4361cdfa6fd08e legacy-trunk +17397 a45ca1f7f2415bb7241ed978568cadb9e4541b37 legacy-trunk +17398 c16396511aa356aa1c9db7d88a3f9fdc45530c26 legacy-trunk +17399 ff712de8bd81345d748c412ac2a1fde12e38748c legacy-trunk +17400 122775ffa36c93fe02dcd54054d5ceb7a8f41fd7 legacy-trunk +17401 efba3070cddec8af9bac8a761ab19d6e82901d13 legacy-trunk +17402 aed1226a7fc4f34d10cc34a070ca6eda1b7899c2 legacy-trunk +17403 e9c31374530217a668c3804d4f7c8d3100ef9ca0 legacy-trunk +17404 d490c2a186dafcd9af38e3dd6fd032575cd3c627 legacy-trunk +17405 7fa4302a5a0870f0463193a250abf4394c37a801 legacy-trunk +17406 28df4f45967fb64eb92b8ccef519ef0a0139d5b0 legacy-trunk +17407 a8d1c030b19fe680c70b67695e43613955b11cb2 legacy-trunk +17408 b3f15611627123d909f99f52c63e77bda8ab0ef0 legacy-trunk +17409 87745e55472714dcc288b35f7408ebf3c852c88b legacy-trunk +17410 219e00221c8435cfb7fd48f36379707f9dcc8ede legacy-trunk +17411 4ac09e9708282df571c05ea241c033902c77fd45 legacy-trunk +17412 a71385f8b4dabfd81f33d1edbbe88639b89e747a legacy-trunk +17413 5f2b9ef3f2aec1c3823a3933a04c29627944e342 legacy-trunk +17414 28caaa3e292ffe1c3b10886e51015d9b62ca2b36 legacy-trunk +17415 eeb8ee488106a7cb9b9ebf3f9b01c8326134102d legacy-trunk +17416 07a2dc1b72aea2fed149ecb9c440a311a68e66d4 legacy-trunk +17417 fe8ef41c3223f99f9b17da60d52cb6136d6deb36 legacy-trunk +17418 03e6150fd8d524a82de5275f67cf7c43105e45bf legacy-trunk +17419 bcf23b52b02fd9aeb0ab685d9bad147b6598b372 legacy-trunk +17420 ac81e0cac5f6cd8b09f6a318e2c04f1661fc450f legacy-trunk +17421 b7ed543f4c56d2a621f6ac514d78135f9ee5c497 legacy-trunk +17422 62979c7b9a719b3124392be125806d2a2dd61b67 legacy-trunk +17423 f444cfd4fa0754109219671e1da0c3207715ff2f legacy-trunk +17424 55d673024e5f96b7b46691325ecc5c374a196a25 legacy-trunk +17425 bca1d2013626b9245817bc97e4da51e931924801 legacy-trunk +17426 600515747c51a35a24f26b9f8429dddd4a8ad188 legacy-trunk +17427 25b7ac05689e5092ddecf06730f68be225eba6c8 legacy-trunk +17428 857376d699bb9df429a508c77ad0aface286baaa legacy-trunk +17429 b4a37ab329da2481b95c3c31a6d9aab0def8e19d legacy-trunk +17430 ba5421ff02567b02e73865b64be8d4ab97dc483a legacy-trunk +17431 8369fcd79a64bcdf48f98a6c4e861b9f24554200 legacy-trunk +17432 1833d2bbf76a49ca10feff374ca46e253ae61fca legacy-trunk +17433 344d22b9db32ad92b8853cf06b8c50bf31938b68 legacy-trunk +17434 20b22fde1cb79f8f3d3bd5824ddfc74fc3a04522 legacy-trunk +17435 5f87eec7b6b8f66d2b6a60ea8e558b2d086f10ce legacy-trunk +17436 4d744515a73e4b2b432e265b5985f5f47c3f0b81 legacy-trunk +17437 6435cc47fcc6ff248b19674e7560b3fa0f7e40eb legacy-trunk +17438 213dbc880159967fc003cc1770c5dba47df97037 legacy-trunk +17439 89ce480963f9bb40e4cedfa08ab1323550e5e1e0 legacy-trunk +17440 d84d5759481556aa7a820d39fa90aad22cf67315 legacy-trunk +17441 cd1b9d8d045dd94de2eb391c33232277ab365852 legacy-trunk +17442 e8d8758adfdb638c624d233193b9f9a88ca64dcc legacy-trunk +17443 dcbc084d046eba5d024b2435b9833445437f5092 legacy-trunk +17444 9ab419a5e052891989a4729e467e26305f856f47 legacy-trunk +17445 c42105bdb5fc4eb1ae460de6cfad03e723f78b6d legacy-trunk +17446 16a9c057dc119f2c5357e2383c23ff237614554e legacy-trunk +17447 90f0789d57b717d30d274dd9f6f4eb6a483cd610 legacy-trunk +17448 6c317adc18a9e2badf1acb6b8d699de30390eb26 legacy-trunk +17449 a1e2e8d55ef005007a0ffd73be434bee71307e6a legacy-trunk +17450 2a4416ad837c4596a42f935e8f1b57c6d717b120 legacy-trunk +17451 256d1bb63888947fc6160d62f08d454b7ca138bc legacy-trunk +17452 f486176f56f870870aa471f9d547b3bfa05b5ea5 legacy-trunk +17453 69f96b6cad292b4060f12c4385887c4900f1e4f9 legacy-trunk +17454 49a041330461ce84a845e0eaa8efd4ea28b11cac legacy-trunk +17455 014cf6d2939872daae2a810e8a02b2e1938a4fa3 legacy-trunk +17456 8e5ca3fbcdb64632b951c2426b4afc69084bf0e6 legacy-trunk +17457 24fbbf13daa5bd676e3f318d4ea8c733ec2f05ac legacy-trunk +17458 80a782086a57f19b7c2e6abcaae8f8e191161432 legacy-trunk +17459 d2609d4304efc5cacfc730d85a8cca9e0240572f legacy-trunk +17460 8ad9bd9ca60c004aecb7ee8bab4940bfacdfed90 legacy-trunk +17461 f2fc66a6153b4056e62d9aee5f10c89421362c0a legacy-trunk +17462 ac583e6a3c8b51a5f20b63586b06559d42a03af2 legacy-trunk +17463 142a90eea8f4a1892169147b13c91db1103d5112 legacy-trunk +17464 0b6333258f547d1e900cdd27d6d9e273d9af907e legacy-trunk +17465 13c73a219cb11d9ee37783d471550250fac2ccf4 legacy-trunk +17466 dcb926e7296ec0ad2fc4ba03ec14576063ec9a7e legacy-trunk +17467 1e6c044d8e5985157d6a0df6bb507753185714e5 legacy-trunk +17468 5a512ec8a7ade28d9e9c15bc8ed5e95259955195 legacy-trunk +17469 33e2ef339e50d1913d5f5cb4cd26332298aedcec legacy-trunk +17470 c4d05985c6f3069c912e61f5071faf316ef0a3de legacy-trunk +17471 284508c653c7c3e931b1be23c1c559f56232c064 legacy-trunk +17472 9d798a763d241798d70f052d16537ce5d8891a5d legacy-trunk +17473 cb763835b1761da7e71ef731f79ebb35454ca9a8 legacy-trunk +17474 4f069f5dfa7b9780b0a52a66dcf66aa145e8401f legacy-trunk +17475 4accc63d56dc5668648157428e00fd2020d5188f legacy-trunk +17476 41afcd069a6c5184d039e90ed442348b2171a04e legacy-trunk +17477 46f762a61b9963005213115ade555d23128b8239 legacy-trunk +17478 aaa1dc161ce3d2f30b1c381556404dc9607e4835 legacy-trunk +17479 961860d6bea93ba54f412e452e4061f3162d0fa1 legacy-trunk +17480 af36ba5061f6e845388ef3259ed0ee1aa7875666 legacy-trunk +17481 fe47d238b50de252c0d882074a67314d3d741b69 legacy-trunk +17482 40595017a992e552e3bcae3e9a3ba3a73dc90d8e legacy-trunk +17483 7211fbe0db9d8709b82a20fc2c899ff0febfb4b3 legacy-trunk +17484 9d99a2df675f496ab4b076ade928173b001e2b16 legacy-trunk +17485 789c5b6c0f09a0979c5924fe110eb07a6eb582ea legacy-trunk +17486 3cd2174ee10d1162234534c25d46c4803a67b792 legacy-trunk +17487 4d6a5e5fe98dc891068d4e82b4210f97988c5de4 legacy-trunk +17488 7d0e3450ee410746a46a6827d501287ff9ce35a6 legacy-trunk +17489 8bd5349e7aa8e04c615c373443b0267e7a609812 legacy-trunk +17490 db9ea5b5f337e7f5f2ae26c3a6a327d058ad3554 legacy-trunk +17491 0c303a22d9a497119114d636e146791311c95bd3 legacy-trunk +17492 37397bd1f8a8db4b186f1015525489059498f093 legacy-trunk +17493 2e170c2f61e138b0e7b5ae8ef2ff570511225ceb legacy-trunk +17494 133624abc525aecdebf3eb5e0a278dd5cd7b2e95 legacy-trunk +17495 3fefeafa3f4a0f5a2a6e6b3455908d0339707297 legacy-trunk +17496 8a7d47d0798122b4e93a788a0d4e9a41bff9cacb legacy-trunk +17497 08e1c3c41e607f461fea3a0019b7d29cd2192b96 legacy-trunk +17498 b954c33f0b4b0cd7934f0a922a7f72ba75117205 legacy-trunk +17499 6637c091ff44f362b893d1afb7f7e8dc3aef4706 legacy-trunk +17500 2d30c35feebe5031ae87551e2e81a03990e1c31b legacy-trunk +17501 1b806553909f5dbbf2246826b819ca9e660f9495 legacy-trunk +17502 3b70e60299a31877506125bb69bf53adf198281d legacy-trunk +17503 15cbe399a9c3b585c204348d2814c3890e59cae1 legacy-trunk +17504 1ec6c63347ea3833e277a56ca2abea4b54efafa8 legacy-trunk +17505 edda353bde12a1db6be82076f805b0b2543c9c89 legacy-trunk +17506 7fc4569d962507052cd6b337e840f444cd0bcff7 legacy-trunk +17507 f4f3841a26edd14bbc4693264e197f05a5e3c812 legacy-trunk +17508 3d6fe64bcd218a0c4ce7b2eea1b6b3aa63a5d8f3 legacy-trunk +17509 0bd746bc7627f7f407af0147bb03f2dbe56f79d2 legacy-trunk +17510 0228914e0c5f0f710b6db2440e3f46373f60fa8f legacy-trunk +17511 60029e3e05eea8e1fda0012976a962598be45f16 legacy-trunk +17512 946709e82be02d7061a096c6d7ed6683038c3c41 legacy-trunk +17513 686d3ccaeb4a7e1a03124146ddedc152c2aa768f legacy-trunk +17514 699fbbba29a730c8a083819cff6da6bcef100571 legacy-trunk +17515 983502b2cd43a43f8ab7daaec8738fc7047b9b96 legacy-trunk +17516 e7f73d35ecd8c2f82f1b6492dbccdddaaf200c05 legacy-trunk +17517 2d6188c2ea56f1baf9ea9f7a9c15d22c1df6dd92 legacy-trunk +17518 d1ed3082581a62815f4f1f6993cc2d62053d9b80 legacy-trunk +17519 f83840986268441f1ba9cba11141a5abf72663f4 legacy-trunk +17520 6fcf5a70533cf0ceceb92022f6e786d638556a1a legacy-trunk +17521 1570854911ce06e7fffe4e0eab530c8f3cd6a850 legacy-trunk +17522 080054b123565a74b3a5f5ceed9bc99e24fd7e8a legacy-trunk +17523 42c41dadf2936fe40c629d21a87409827f43c69d legacy-trunk +17524 a5b40295dc19ba7e2878b3fa8d8e82e2c69e1e5c legacy-trunk +17525 8db8606d84eaa0a56c213de55f691ebeeeff8eed legacy-trunk +17526 0c6b9de19100f493722170bbcd787db063e23388 legacy-trunk +17527 1b20ad6eb501940d731c8658df23364a5b16694b legacy-trunk +17528 df8d575d967d88d05811bd6ed460bbfa671d81d9 legacy-trunk +17529 756c8c6535fe2ddec2f0edcf8a24d49a0839cfca legacy-trunk +17530 22011d976917384f6898f109b9bc806157116c1d legacy-trunk +17531 3c58716fafde8b3f73f6a8ae7d6f818f61403c19 legacy-trunk +17532 a7813ad73a4edeed032cb5f9a3301dc191de313a legacy-trunk +17533 94ca87a3e5eee28c580fa7dec964c5c00b5c0e6f legacy-trunk +17534 08823099ae626e1122b4b9462e3e98f62d1bb1f1 legacy-trunk +17535 e2d62d747f7a82c183ce7f04c50f9a9d8fc83287 legacy-trunk +17536 e432a185f4db8331b31eda6c0ef863b31e775f33 legacy-trunk +17537 295126433856cd333a23a02c1bb8f8a1b57e6632 legacy-trunk +17538 edf1e15c671a084e538e11badae861fe09abc8f7 legacy-trunk +17539 c52ff02bbd704fe47c9cf52b6454ff9d43556a9b legacy-trunk +17540 faf3e734254dd6f611afcbb804c6f8e5a1eaab24 legacy-trunk +17541 e384f50149c94044508ae9357f0f709f2eade109 legacy-trunk +17542 e86fa7e850f1420bcb5448b92f1fa8f1f4736a99 legacy-trunk +17543 d6ffb6d7fe8ad365fc1c55d994711a07932c0029 legacy-trunk +17544 cec003ba3c7b979c7403bf1b88de197629782262 legacy-trunk +17545 67a4913c077fefc912ef7b31dcafd2ec37ce1ccb legacy-trunk +17546 bab4fa6c3c241b6a9da4a3d6c2610d9fd70f9618 legacy-trunk +17547 c6f43c6036ba105137bb712d451722dea6df1f28 legacy-trunk +17548 34110538b11844855d8c12a148f572f806a05292 legacy-trunk +17549 2b9b159659515f889ea546a16bcbb973e0c049a5 legacy-trunk +17550 ef37078d272d642c11054ed5cddd0c2f1b48edb8 legacy-trunk +17551 85038a024b191a8881adc6fddd3496592ba3039e legacy-trunk +17552 9e3dc7c47afa29f10759fa31a9189547e3133a8f legacy-trunk +17553 407ce1c99e98e32915666d41e5110688d7dc665b legacy-trunk +17554 fa82820bd3ff3dd3c27a77ece699dbaa00868e54 legacy-trunk +17555 95fe083c78ee5e0b4832d444b1027dda0fbfd533 legacy-trunk +17556 581d1e77e35e75ded337bf668567200120b779db legacy-trunk +17557 91dde7bffe7d9e3c209aa565c4d2fb14565c2119 legacy-trunk +17558 43936a25eaf10034892624c64e7dd4b5a8596c0d legacy-trunk +17559 04c398e748789c7c4014f2db426dd443f6eac889 legacy-trunk +17560 4712f5b8f279af2a87f951108e47bc8e50145530 legacy-trunk +17561 fef9b89ad1622ae97ac61f51518e341f1a4df110 legacy-trunk +17562 2fcb990b965f86f5f2aa52b4753a1525ee5f5b49 legacy-trunk +17563 89b2aee43e0bd527df2e6ba79fb46e05027368ca legacy-trunk +17564 e024438522dd70bb37caedf564b94f6b8b84c16d legacy-trunk +17565 ac6df0494c5826bbbf83aad02df1709aa543bba6 legacy-trunk +17566 19223bbf1aa19e550ae5a2e2ba032367b5e6a2df legacy-trunk +17567 a6970449df425a5f4dc53c758b1009a965ee9e76 legacy-trunk +17568 58b832b8745ee2ee63eb6e7881eedd8f798ffb23 legacy-trunk +17569 2ec59a11d3c61e316af225f63fa04c95505a4ddd legacy-trunk +17570 830e8ece65639b53bde56ad505f940efdad0ee35 legacy-trunk +17571 5ae1d8a9f1dd8effb73e4627a68639f187f3bf40 legacy-trunk +17572 c3a27b6ebe1bcb1fe025b01ec299b5e2af95cba7 legacy-trunk +17573 69ca46af436a6c23b4e4bf41ba7c3d3ed52c9bc8 legacy-trunk +17574 870237089ba28e76350756762e29c2e8b2d1008f legacy-trunk +17575 d8b79e39c47e1442ff099a1316bbf22099bae813 legacy-trunk +17576 7f49c5864f7741b50f67d699a42d3879f24e9f46 legacy-trunk +17577 4d2e9cf1eb20b6bdba20dafa01ff1bce19d8cd64 legacy-trunk +17578 c04aac18656ab2983a18ba9ae340d4614677456b legacy-trunk +17579 a6f8013bbc3d16f0a594ea3c73d2ba83a4f918ed legacy-trunk +17580 06bb5d5d89927d5651cf019790059f54350d8313 legacy-trunk +17581 176660ff0c959669489088c42445133729765d56 legacy-trunk +17582 bf46f185c5e4c0c1626fdac472c453ad33c94c99 legacy-trunk +17583 e2c03c30b06ddfc6feacc83dbf7a119ab283a8dc legacy-trunk +17584 8749cc8479702265a12010496ee9d61f2d545414 legacy-trunk +17585 ffc300e9d867bd1d98407fd0718891a63a71f1c7 legacy-trunk +17586 f1abe03b2f168467298db0d35f837197bf02ae55 legacy-trunk +17587 336a6179e059724def802d57aca3d8e7a06e8187 legacy-trunk +17588 814f421e03267316d7b7da4278b302d828ad8188 legacy-trunk +17589 8aa112f9e130c32d17fb8918488889a0c9760989 legacy-trunk +17590 d46a0436d6e19817f3fe06f3a07ddfd7cd8a98bc legacy-trunk +17591 2b9a890162b0538e4742d3b4e0472e64c2aefd99 legacy-trunk +17592 7ed080b8cdaca779a8f7dcafdc72cfc6fe6dc8fd legacy-trunk +17593 2214062695e799e696365ce3bcba9900d53d5618 legacy-trunk +17594 570437341a09d07ffb62d6eacd0ef77a685f2433 legacy-trunk +17595 8bb6dca66ecdc48a7e5a4b9ffb6f474b01f58e11 legacy-trunk +17596 c1de2c3e45ca6467a23c9e278593c88bdc19c233 legacy-trunk +17597 d732a3a1398eb08fba9c77da6a3f56643c373ba9 legacy-trunk +17598 8db096b782f9733d2bdeeeea189d066b00bab467 legacy-trunk +17599 4f95cf1b2664f7c72b91a4f6b4334f03f34493e6 legacy-trunk +17600 70942767dc810c8be53f05fe74395d7eee79b034 legacy-trunk +17601 029ff46c798c7c1165b3ec4f02854346d30df2f3 legacy-trunk +17602 e154e79f4d22bf96bd143547fec998607c6db75e legacy-trunk +17603 9f8b213b84157712e16853153cf9c9f6e7035f62 legacy-trunk +17604 6f3fd7a2a7bcb383bba263b329ea2d0ada984add legacy-trunk +17605 00e8172ac0cb954b54856b84b72ba37d9f15584a legacy-trunk +17606 f8984f03de20253191f5a49032bea3f6d3f6d94a legacy-trunk +17607 46a6990769d170ab56606f6003bdc229acc1f51b legacy-trunk +17608 9ffcf749c15a9fbbc658815caebdeeaee6a35eac legacy-trunk +17609 2f77cb8547a1c0142f4a1e6ee0f433f5ee108b61 legacy-trunk +17610 93207076d61218d0ce9d9f6b0f47410cb554dfa8 legacy-trunk +17611 6e9331e68a3bd78e9f845e52ac543e2b4c57b7be legacy-trunk +17612 b4ea57870f2aac59d20cfd033893a67965bfd509 legacy-trunk +17613 a86568f54375ddc482505af74317ce0ff3a529af legacy-trunk +17614 5a9dffff0da2b46d03012920cd34199126b1573b legacy-trunk +17615 b5451a6872a298a1740c4c62ec1093c990953750 legacy-trunk +17616 c566ac9c52d792eccd5b0f8078b7f415bdc25014 legacy-trunk +17617 5f638a299888c704d7e42dee58d8877c9d636ab9 legacy-trunk +17618 d270584049810636374a61a70e9d583394050456 legacy-trunk +17619 828ef7ecd1f76cd833ac8eeef913099ec1966551 legacy-trunk +17620 9fe5c82c4c8a0b8c4ae47b6c7a43d1717b1fd784 legacy-trunk +17621 72860ef0317148671fae70a2febfacf61aec4f0d legacy-trunk +17622 60ce37f066d8cea1082ec6e6d2daec3585a648fb legacy-trunk +17623 92aee31d76138ba74dd8828a22b22d330bd8ee0f legacy-trunk +17624 aa18e5239b469c3bf201ae5b17ca81a7bc44fe40 legacy-trunk +17625 3ffacf1dc8f05f6e9f90d2d076549d17c535b46c legacy-trunk +17626 133007646fb4770f724c8abd05c18adf7cc4c15b legacy-trunk +17627 64863c56ce8e3e90924522cded1a85cf284e9d64 legacy-trunk +17628 c5ec0b11f8c95838fff1d635f5e168b6432b51e0 legacy-trunk +17629 52174b002f1ff37f30ad5510cbfac91257b388f6 legacy-trunk +17630 7456c97c99efa068646d8bdb781474aae673516c legacy-trunk +17631 1798770ca36b20ac79ec8e0ee73eb8d2cddebf0a legacy-trunk +17632 6b772c527ca74cfe70b961c855aae2ad60dd92f0 legacy-trunk +17633 8fae3f91161f8eb4db2d5448e88022964f7ed869 legacy-trunk +17634 7ba493bc24a0c0f81f469ffa2a9d64209dd4af2c legacy-trunk +17635 064e434e744f17243f0f2713670662cd733caf4f legacy-trunk +17636 081671cef7c1b6dfd18762df6fca33c473245fb9 legacy-trunk +17637 3c01f921c453ec368464703395d538b15d8f0b17 legacy-trunk +17638 77eddddbb7ccf941876887823f5bb077bf63c41a legacy-trunk +17639 0985ddfd442be9b088260813c77d180b7718e24a legacy-trunk +17640 d0b777ec9e027adc1bff5e24433051b69d957cdb legacy-trunk +17641 ad0d932cce32d763e7dd9814398f147fac4bb21e legacy-trunk +17642 1edb6b6e3b5b5942376e881f483fbfdd7617cc9e legacy-trunk +17643 179e098238e809639beec703486ffe2113856adf legacy-trunk +17644 be2df9935edd8fa1bb109dc68a4a1fe84da8c614 legacy-trunk +17645 43293cf753c15c01bf59adb759137898850ba0d5 legacy-trunk +17646 ff88c64cff2e5195a21cd8e1c40fca3c2949874a legacy-trunk +17647 afbadac60ff74c8f01411ef93cd157163f6c922c legacy-trunk +17648 ffd3e9da89b0eb8f44318e3164c5fc4e1d0e076f legacy-trunk +17649 c3602ae4989069d3a56c66c3db7cc1bf1ce78de4 legacy-trunk +17650 7c574bfa6e138cf3d2d6a60e831616b5180ae50b legacy-trunk +17651 d6828dd9a92705951383ec943d4c2c90bf56c816 legacy-trunk +17652 a90dac4bf88a24a100b06c7dd51bc43b3708a583 legacy-trunk +17653 3e3c2efc79c73c01c9cefc72d623e9b39a25ea68 legacy-trunk +17654 cf9d8bf56d145075d941192ab6329e818206f31a legacy-trunk +17655 fca5f8f1a8f471e8d47cda920feee09315fc9a0a legacy-trunk +17656 2574295545ff7c160d9ca3f6d84a5367afcd838c legacy-trunk +17657 1d78033a53d772a27680e3c10ed2a48419c29012 legacy-trunk +17658 29902f7748fa678e9bf4abd7f55d30a68f8d5e92 legacy-trunk +17659 7da36f6fd544ba77f251dea09a2773d810bcb6b6 legacy-trunk +17660 69873a30b7c9973840156dd5541292cef06ed9de legacy-trunk +17661 7461edcd249d451284574777da267080b54b099d legacy-trunk +17662 6db6952d887ac9b577fc3cad303a4378769246f0 legacy-trunk +17663 03eea7ea7e5cbdb2d2ad815d120ed4caf878adc2 legacy-trunk +17664 4d10a13568aa3d9511a6a242f1ebe843bd373e08 legacy-trunk +17665 523a12ed31f0de3c1791d7444fbbf9d8ce70fa4d legacy-trunk +17666 f5653aae1cbd7cc7205651fe004288174f90df84 legacy-trunk +17667 d543daa15d715886d6b6682ca79ac9848ccc19ea legacy-trunk +17668 b7fb1216f6b6222273eb31dd1b797ba4a1e66da0 legacy-trunk +17669 b56a88277e8cef59ec19b499137385167090ab6e legacy-trunk +17670 4ff84e734588facd181ebc1dc196f3a81c82dc16 legacy-trunk +17671 b413e87eeed4237390ab2a35ec1865029fd21184 legacy-trunk +17672 0dd204d936e1635226684a79e5291ef14d72ff00 legacy-trunk +17673 c95c676b184070045bea1210a90fb3979f96a8a1 legacy-trunk +17674 182d824f2b473be083996ed7662070526360b326 legacy-trunk +17675 07963421fafcc9fe54485012e1aab23ded44f468 legacy-trunk +17676 c53695f3d840d14ac380eac9ea60bf12415ecb69 legacy-trunk +17677 3e393f9b12939268207e39b30a365e93d19cd04c legacy-trunk +17678 4944e3859a8609ed3607d537566ac9c90a35f3a8 legacy-trunk +17679 a1033283a25dc60bdf55b1fca0773dce0773ce2d legacy-trunk +17680 9fd030af2fe039ace4b8b44b5138a4e40a0aaca1 legacy-trunk +17681 92dcea0859305876ff16c0ee28c9f1203408180c legacy-trunk +17682 b1a0fb554456cae0a26736235871b90c40052617 legacy-trunk +17683 9f96c92f03e3be6c3b1687afb721e2679ca25fcd legacy-trunk +17684 b1f220f636edd1e8cc01ca2877d4dfe0e1dc5266 legacy-trunk +17685 07288d2db5964246aca396b74f56c7ebce31b1b7 legacy-trunk +17686 1a1b795f0c9b9edd0d8421e69e55f7eabec562eb legacy-trunk +17687 54adb7b4f8c84de8dc7bb53bd864e7d93a0b52db legacy-trunk +17688 ee813e843f3e570e36c7e97440d0282b6f90726b legacy-trunk +17689 1d627242e29a2cfb6acdcde86d814a93c2a1af89 legacy-trunk +17690 96d31a143857cf8b5f35494b7832ac3c306d55a0 legacy-trunk +17691 67e0ff4aa7b977f1ab565a1f5c03d63d309badfd legacy-trunk +17692 b7787a9052e3d081d00f698f18743695c185ec77 legacy-trunk +17693 76aad5b06543afc7444cb7a796bcb769c1e63780 legacy-trunk +17694 3b0ca0cc3750e2233a1bc840e92289cc3528d8b1 legacy-trunk +17695 625a9a695469b5cc4be3c954bb7ddc55470dcdf2 legacy-trunk +17696 68189285658f22880ff51dac99d6757d15d4d90e legacy-trunk +17697 460ab19a3289bb9f73afcc101e5a2aff1d774098 legacy-trunk +17698 94c246e6399d2201a38d1f691b178485d8e3a0ed legacy-trunk +17699 e7d6789908d70934b3c92daa1a1a6d100e9143fa legacy-trunk +17700 88d3a8974409ee72c629257ed78885d6cbf4afde legacy-trunk +17701 45ec5df9a62d31ead5529f2c7a3d6b84b05b415e legacy-trunk +17702 f6e501fc32c771dfef54e1195e1b596f7dde9572 legacy-trunk +17703 e52c24319aef518b430e777044599b12a774bc51 legacy-trunk +17704 92cdbc0f55d5032f64f7add0d276006ae9ceef62 legacy-trunk +17705 c8ca93107f2edc4ff8986968375265950e9b1763 legacy-trunk +17706 5449302c4d2e148d47ed19ef03630f4c1fd81ce4 legacy-trunk +17707 463faf01685e71271832571be5de3377ceb410ae legacy-trunk +17708 1293492dfe603ea4ab77a928e35fa3567f68bf80 legacy-trunk +17709 89bc8475fc84e170d6604f86f5d15beacbed31da legacy-trunk +17710 ae12b8c3c3b33ab6f058a7e42ca81148b39a937b legacy-trunk +17711 83aff1ea5b70de6524fda1171c8eaba37e91e0a1 legacy-trunk +17712 6eda6a1a693c54725e5171cba86d8761ba607c09 legacy-trunk +17713 166119ec31955b59e57fe3cb3974b1282cafc121 legacy-trunk +17714 e97660d1f1aaeb12e3cf0a568ec99c1264375c09 legacy-trunk +17715 18b3def6c4b82762c36018f69f74052374415d3b legacy-trunk +17716 09c14ae5c2f543578b8cc1965ebd5a75707f4c94 legacy-trunk +17717 5b8cda6f3b5f69ec247305a04e90d3fa035be648 legacy-trunk +17718 c3f0d6f19f7bffc3dd6340fd9799921fa12a05be legacy-trunk +17719 56fda4e9ece9f7c22888104ee2c391c058d7c5cd legacy-trunk +17720 5baf7f74396f1dafc2f8afa6e1096a6efcfbb50b legacy-trunk +17721 4c089ad29eeac45a4a9dd6acd95bb1d806da5f18 legacy-trunk +17722 c892e6aa99976c830193f40c4a47ac9678111ab1 legacy-trunk +17724 b68006a5647116b01c426114928778c13043349b legacy-trunk +17725 25ddd3dc7a7a2e4d57c32c40e9b0b144b49a7bc9 legacy-trunk +17726 e35a3a772dca9efb256865c2f06cd71b0411d4cf legacy-trunk +17727 fb6b51033c3b60e1176e158d73b0e4af1cf67143 legacy-trunk +17728 ac14b86f0f8b8f80eea52da0850c596b43c6f4db legacy-trunk +17729 a93b2f176a5e2f15ec901e4ed1eccb41df9cd8a4 legacy-trunk +17730 6431cf5c8a004c66651c4f479061208a553df369 legacy-trunk +17731 17b5c43c08a6c4d8aef0c6d61f976fb23de677e2 legacy-trunk +17732 73fde44563d1ef928d1ef1a2c60b8d659095ed8f legacy-trunk +17733 7986a4553930b26301e70c0dc48c3a8fba562e67 legacy-trunk +17734 68e23f1ff5db7a288c3d6fed6d9a9bca91889233 legacy-trunk +17735 2809662ae9ce18384e7cac6b7cd7d58e79281ab0 legacy-trunk +17736 3a59a0733df8c16fa3e16c99e0ac4efa04da6a8c legacy-trunk +17737 5d089095f40f5ce65db0cd467e771d1e8e87a238 legacy-trunk +17738 528b52bd4bc32ed23ebef3770bf6b8d44eca01fe legacy-trunk +17739 d6bdcb0899dda90df3119c6b2f62fb69ca5f3e38 legacy-trunk +17740 968ae55fe6eeab28d0fc882d1a70cffe60cd8bce legacy-trunk +17740 55bba197d4870cdae62aeca00e20240a756b84f8 legacy-trunk +17742 f657930fd274c3b81f2da5408c050522bfe972d1 legacy-trunk +17743 4fdf6600d8aa7010c29fe245665cfd43430e7b4a legacy-trunk +17745 653749003db9763902cc8221c3685672bcf76703 legacy-trunk +17746 c7f55551fe31bccc0b1ba387daf3e9eb01839964 legacy-trunk +17747 afd7ece37c4695ee69f59cbe620797a9c835941d legacy-trunk +17748 e4641d193220f386c0d97a7385674d88d177e8d3 legacy-trunk +17749 1967be1359ee598ba938d11b8f1e65ca536187d4 legacy-trunk +17750 834062f695e0f21c74b9017ea9266004a77583b8 legacy-trunk +17751 de1892eaccffacabeec0889059fe8891f71b6f17 legacy-trunk +17752 420d3c57efec73874eda7b2df0195ab5660094c5 legacy-trunk +17753 ad98c136475e7b23732b9bd887edce9173d58036 legacy-trunk +17754 4111cf22a0ad941ca2e4528d9ef9504344fc8043 legacy-trunk +17755 4bea4f59c4e43c9c5c4a62653b8fe40dff7ead8e legacy-trunk +17756 606a80834a862238c7ca97ce5a5bb44a9363bf3e legacy-trunk +17757 f932c128279bcf3fc47776f708cdd47ddf4d92bf legacy-trunk +17758 291abebea55b2ed7c408e1a09d57642969dbf090 legacy-trunk +17759 ec756d58e8a70efa775db4f535ea276027481eaa legacy-trunk +17760 f4a1d3f8f262897703b05f0e5fc77b8dc6903ea7 legacy-trunk +17761 b15fce868e50b77a069947ef612fb8b9e55cd270 legacy-trunk +17762 45967ff1b6dc18e5710d0601f54f6dfc78e7e1d3 legacy-trunk +17763 a0a13f10ce4bf5cecc25dcc0c026a350c8633004 legacy-trunk +17764 d01394b0aa69880a4b5d59a9bd8daa4cc03a1810 legacy-trunk +17765 8f59bd95795257768e9cef2627037fa6f7a6ee9e legacy-trunk +17766 1018727f323176cafd0e2ec91a9a3d213fe65862 legacy-trunk +17767 6fb2af766892eb87bbb3d6c42c0e2021ca2e0fd4 legacy-trunk +17768 af8d77aa90f885870b7f4ee932ce59e8748652e8 legacy-trunk +17769 2cdf7ac9162d93504de2ede64a7f5e8f42ca4612 legacy-trunk +17770 a062749b80f8c503ee4cdee7ef2822180cb9098a legacy-trunk +17771 79cdeeeefafa5755e9310bc986f0c5e8a2445801 legacy-trunk +17772 ea2ba910e5f05fe6caccbc0661b241b0a8cea3e2 legacy-trunk +17773 aad2b5a3f7bf4c37aa217e25de4b76b244028559 legacy-trunk +17774 cefb1910ad0d7b84dfb3fd97cad74af85279d82d legacy-trunk +17775 914ae7f9c64cf7f00614b39c71aec04db6714d8a legacy-trunk +17776 95b20019b711454c4757c7cd65bd57171d32180f legacy-trunk +17777 fad8247ef0a52da734c7288f5eb901e49f2dc5c3 legacy-trunk +17778 3db8b8031a6a47441840598497bdc6c9b6df7b6d legacy-trunk +17779 9a8700fdc52be8060f37df97bd7643b09eb9fcda legacy-trunk +17780 75f3d5e7b89ca2e185ac03019f294509d336f6f5 legacy-trunk +17781 153541f824a36396792576f1e0c66266f8d1e2c9 legacy-trunk +17782 b4f74482f9afe107803067a7dd06209fde3cebeb legacy-trunk +17783 76c1e40c5c5de9061e460a6b8adceff9edb2f999 legacy-trunk +17784 c8f22f15499f8b17de641619820e10292c29810d legacy-trunk +17785 2ea297869b0271e0eb51928e427529e3006f97cf legacy-trunk +17786 af1de4f505089b346cd47fc85a133ecb6e465ba1 legacy-trunk +17787 5610ecd07dc036e4aa21b61ecacefdca15cee0b6 legacy-trunk +17788 0c93d2e27ac07c13038dcc7a17817e403c01e2aa legacy-trunk +17789 827e9d21a78164defb3c8a5ef7268419baec8ddf legacy-trunk +17790 715a3e924737182806a9b50721833cea35e0b16a legacy-trunk +17791 3da99f0c184f26ba4cbe9ff488499d29238a6516 legacy-trunk +17792 13488539f02bfe28bbaaf1b3f47f90afc66e5c59 legacy-trunk +17793 011df2647f413d2d15dd84d773cb804920f5940c legacy-trunk +17794 fd7f879aff81c5abcd3d5abbc92bfe1144a118e4 legacy-trunk +17795 c12875defc0e4e39607f304e8b195a57bbe95a00 legacy-trunk +17796 1629ef738b2f0967fb33904499508a68ddf3ce5f legacy-trunk +17797 9cea4db41d9fafeed4fc43f6c648e70dbb9512f1 legacy-trunk +17798 f9cf611096bf502f8fd79b25955e8600c3356fb9 legacy-trunk +17799 e15e97a6c14a83465183f7c9d4cc1447b026ebdd legacy-trunk +17800 19919e146ff8f31b5e3fbca9cb7b6aeddfe2016d legacy-trunk +17801 7592f7219b7c6ca1d113575f291a892cfcb3f5af legacy-trunk +17802 a59600a975d12470d2ed86fc44524e59468bdf7a legacy-trunk +17803 9e445ddca2d74a00182ea925961c0bec5cdfae95 legacy-trunk +17804 73cea59657babc7e63d6cfb6e3db9f2533879377 legacy-trunk +17805 7acb8bbc215bb72a33088632bfd993e6a820d0c5 legacy-trunk +17806 14b647d550d37931a921085c46393603252ca8eb legacy-trunk +17807 f8b526fc39f67fd2641918243e9eae9781a65baa legacy-trunk +17808 005a0b4c382d35f45dd6b2c12357b1c74427f677 legacy-trunk +17809 6e70524737786b35e2629ae33a853a232798352d legacy-trunk +17810 d9e66a83e43384a6341e761a065db120db2f7aad legacy-trunk +17811 342497ad8fec97632d40e2964dab53852ab0de18 legacy-trunk +17812 1f9d23777fd017449eb289196dc54ac91aa1790a legacy-trunk +17813 c78e76a571b65db9392b2012b02bef3b71596a39 legacy-trunk +17814 db1cce1ffb6082681153b626326d48b9989f8be9 legacy-trunk +17815 50386c73ba225d2985fd265064594ba9e49dd8f2 legacy-trunk +17816 b031abca3e91abe05d3e060b9d528a0d4a84186f legacy-trunk +17817 569214a4182c93e4f3c2671b39b5afba75bfe1bd legacy-trunk +17818 ebaeb19e03809b8861cbd2cf1b1dee1a440de64c legacy-trunk +17819 9c3aefa5cd7f5932ad34f780638ca22dec22d6fa legacy-trunk +17820 73d09322f2c36007547f1560ca933784149d4471 legacy-trunk +17821 54ec5ec32352f0ea87b3e48aaa8b49014d225e10 legacy-trunk +17822 1aa37008fd2c825e10ab7842522d0302b14e4b53 legacy-trunk +17823 9314cc79d6e12e7c1dafdea65441a12c69c56c28 legacy-trunk +17824 314eb8f7ae13529a578d6cbce812089847e72b32 legacy-trunk +17825 5336946b6495a1640ebb2d0b796d48ac4d786932 legacy-trunk +17826 b411238de9d10f12a182be5d3b5af7b2f68f4af4 legacy-trunk +17827 6af9aa15647f98f7874719f8b0e89a4b46c438a1 legacy-trunk +17828 32d263d447b7e13a76b5bba2080326377f01e793 legacy-trunk +17829 3eecda2ba93a384666202765a04af0f79e174674 legacy-trunk +17830 48b45a2812770016184ddf4eef50e6f407955148 legacy-trunk +17831 c7907379a6bd22853d06744fdd9fd1c8e41d126e legacy-trunk +17832 27eab80327662a7ee55dff3b112df986b7755706 legacy-trunk +17833 839ba35b0aa3144285e4192025c6a01178dc10d9 legacy-trunk +17834 b012aebbbe5178fa0d91ecb150de4c3fcd8abb87 legacy-trunk +17835 174d34eac5163b9c94c12277ee3ed401c9a2f7bb legacy-trunk +17836 e79d07c24571e38e2199c7e9bf2b64029cd07d0a legacy-trunk +17837 26d2e4f58adca970bddf9984423cd3f48da550bb legacy-trunk +17838 82123ce02684fe2501fdba25b31076749bb7aa93 legacy-trunk +17839 0fa58fea30cf216c237f2ef2ece8ae91db20a752 legacy-trunk +17840 b61cd1a489603bc479f6db2e76ced3fb65ac44ed legacy-trunk +17841 ece6c19edcc155b4ff7c4bfe65e742db580b9cfb legacy-trunk +17842 3fc6c5addf1ec1ac2563f0bfc59447867e467423 legacy-trunk +17844 a9d24a53c55334da22aabcb067e172a5737b98d6 legacy-trunk +17845 bbe09cccb49be0704f080061ef4a3b899ca03da3 legacy-trunk +17846 e85754fa69174fa72ec614b172acba09c52f01c9 legacy-trunk +17847 2b4236580e0c4fba0e6f6f883eb1af1c958bc09f legacy-trunk +17848 bb6cca57eb8b0c94b16699d8cbe49e46f529c3fe legacy-trunk +17849 5d41ca49a10adc2e8cb2e968ff12494d9db67bd8 legacy-trunk +17850 4c4934ca8579620e21b8327c0fc33272ccd47a5b legacy-trunk +17851 fa5c482367c7af5038debeff6e7c847d3f7932f6 legacy-trunk +17852 7f4e28045dfb458412462581e748dc69bb95d379 legacy-trunk +17853 eec2eb121dae0cc1d0c81f46939c5f39064a7d66 legacy-trunk +17854 5e4eed062b54a9e6f238001c2702d66a2f99526d legacy-trunk +17855 0c5b02cc5489392a2cfcbf90b279a5ad044a03fd legacy-trunk +17856 c16bdf555c797811088796c221df71c0be29f72c legacy-trunk +17857 1a3b5c8d6730d97973d902c802d093edc6ef6b5f legacy-trunk +17858 0a97f5dde3a78dc7c3739bf82c3884932498cc94 legacy-trunk +17859 a349b89bf10ee5d51d7b2b24477ba3038aab197b legacy-trunk +17860 9d5142c8cf2dddd9738bd4f45568f73fbcc579dd legacy-trunk +17861 0032dffeb163b4fad825a82143923ac41600038f legacy-trunk +17862 ddb20190591dbbf16f523ef05f8e6e875ff91378 legacy-trunk +17863 0cf5111bf09cb1bf17050efef229aee18d8c0bf0 legacy-trunk +17864 8b6fe6b997c2db7b4a3912cfff875346fd331a70 legacy-trunk +17865 cb4b2a16eb871255988ef1630dfec7eaa3ddff68 legacy-trunk +17866 aa052a52ef8712f085f6ef55dff85f5cea1a8437 legacy-trunk +17867 9847b486d15fba809f47f3040faa868b3a530c9f legacy-trunk +17868 c5cf6fba54ddb8b736627230f0f33f1e6caedfd3 legacy-trunk +17869 db3a9578ab0befcebc39b474ec7d2e70f23ede11 legacy-trunk +17870 6c51b5af1bde1309620eeca963dbbc16c05ea8e4 legacy-trunk +17871 25bc16952a24e5477b9b84452c0b7288e8f2e03b legacy-trunk +17872 b0d1dec2353a411aecd9cb333498ed9850ab3ac2 legacy-trunk +17873 da3e8c5064caf3bd22b1d13dcfcfa7e8895200a1 legacy-trunk +17874 fb7ac8a40a97c24e0da3c27a5c5461eff7e8aa79 legacy-trunk +17875 c285df15a0503830159dfe4b70e92c3458fbeb3b legacy-trunk +17876 98b1fa6c16000e7a4f354813cc77c9188ac9838e legacy-trunk +17877 a6d35cc4bf5ee5d832174bb06ad4eea2646dd409 legacy-trunk +17878 405ad0a7f7a61099e7bbd8c5787d6acdbf0295a6 legacy-trunk +17879 f12d35f9948855fc34c96597d4ba34bf26924c21 legacy-trunk +17880 37b1caeed70557a5906332f62f1f6ed45982e30b legacy-trunk +17881 db9135f380689a23ea002423f3e51efe3bec1c02 legacy-trunk +17882 0bb348986d5281b2e3d9669ce750be2cefc59b96 legacy-trunk +17883 29c2d5e521612b8123b6c94f218c8c3954a675c5 legacy-trunk +17884 b368e06a3b6275e914656922a36757c65ce60478 legacy-trunk +17885 5ffa515e620e4d7644857342456e86eb5d42d685 legacy-trunk +17886 25f1092ecd86d5480f289248eb2439caedee04c6 legacy-trunk +17887 52eb499f25b09fd57be5087c329de76e082346f5 legacy-trunk +17888 7a5c3859a361398fa162cfaf130ef0216e490218 legacy-trunk +17889 9bc52706d2834f7a8c53869e328a9d4e57818961 legacy-trunk +17890 ce5dff30a935d19f18edeb42e4c197bc39cb72fb legacy-trunk +17891 6c91a041c1d2b2c95fe6efedbf06079d42f75663 legacy-trunk +17892 94c031d7e9c2e8289e4a1bf3341667a93e2ba629 legacy-trunk +17893 894dca225d24aec2859cae9d25fa3bba2b566a44 legacy-trunk +17894 6e9ff060a7288299f997e17243bcd23edbf9cac4 legacy-trunk +17895 c7d46eae95d898d88048a14dfdee0dc800ec9b21 legacy-trunk +17896 e9713cbe2ba8d307d4971ff79c0679ee4ec2c38a legacy-trunk +17897 921c7459771b412eca24efa81c3000f56a84fdcf legacy-trunk +17898 d106dfdff480aebf1a359c69a3b9b72df224d4d8 legacy-trunk +17899 7eefde90ec0ee4b4ce1f4908438152ec828e8031 legacy-trunk +17900 293caf0e632a17448b26c13b5a1c17aa9f77d18a legacy-trunk +17901 c0c254fbde576bc019ddc8c1515a352482be44fe legacy-trunk +17902 dae7cef58ac26addc213051085d6acfbd800ef56 legacy-trunk +17903 c90c3aabd8f5036a5f8187e172051ed48f43627b legacy-trunk +17904 c654b20184039c88c5e70700ea3f26b8626806e9 legacy-trunk +17905 457f0df46dd98055eb8ead001e7af60ec3d6f854 legacy-trunk +17906 1dd72a92e922c35ad3dc5cfaa2fcee1aadc9986c legacy-trunk +17907 43c49dbd4546e8ecad1490c1d222832f3ad9581d legacy-trunk +17908 78bcae77e8c703e866baa934bdd88fe2546aa7d1 legacy-trunk +17909 fcf85c90a2740bfc6fbc1b64163276eeef853a4a legacy-trunk +17910 25579cd6cdd903807fe48298f9ac838791c0ed1a legacy-trunk +17911 be4fc8b6e1cb83a0306286f81dc183ca1de3f9c4 legacy-trunk +17912 08e6f1019171498b04b7803f4923f16ca424982a legacy-trunk +17913 627ff578f12f8f85192f1732b94b469e56990554 legacy-trunk +17914 41bfc9a40fe39496b834d23559d6c818ede8f830 legacy-trunk +17915 bf27caba3d0e4092318598c433d375442ef9ea96 legacy-trunk +17916 3a04bebb666aeb0e0bce8fdcf10e7954b0a34c84 legacy-trunk +17917 acb88607b4bd7e8bc0de42a4f9fbcbe2d7a0e296 legacy-trunk +17918 177ae1c52037650206acdb57e34134c996074b7b legacy-trunk +17919 103612516aa8d35fcddea0fdcd999ec7d8d90461 legacy-trunk +17920 675748378c8199d9749b54a891cef717d26f3ce1 legacy-trunk +17921 f780469a9577f95c8c975f1214c030e9886921fa legacy-trunk +17922 c058bc35640f78ae8840db612f2a9bb93bed87ca legacy-trunk +17923 118ac85af30a05c4bc12171acb6cd8d34281c8fc legacy-trunk +17924 1879a48a31336a4eb4cd25ed791aa4301465ee8b legacy-trunk +17925 690b41d47c1d6ad56586fda6689c93b02002fc42 legacy-trunk +17926 a53f16b20f1d91bd9db03335b89096dde1a31845 legacy-trunk +17927 57fea8709758f1f37ff80b14ba818442f35c6b63 legacy-trunk +17928 71a4aadde0198b866a4606f1c73a61f5572e7a70 legacy-trunk +17929 63d237a25f491e268ecae7624d849c6d88e25249 legacy-trunk +17930 b25eabf66d8d375c45552823b51b756488645857 legacy-trunk +17931 7ce9061f7967ffc732525955d3a47ecff9fe1155 legacy-trunk +17932 77d1d79a65d75e84a84773c37d81c32f50fffea7 legacy-trunk +17933 3142027b5979daeabd52617515f4184b91576a26 legacy-trunk +17934 ad8ef155ca390e8a681022ae311d4338d8baab1b legacy-trunk +17935 dc4caedc59611b171b14978c16a6af1db7062641 legacy-trunk +17936 47e68077117e4211509dc283a3e767a1238e5f50 legacy-trunk +17937 cdfec36f12cc9fa1b8e9da5eaa560a865792e9bd legacy-trunk +17938 0e0ea56e4be84c048820b102865c2a06fdfabfc5 legacy-trunk +17939 a119e0c8b80b0e4d1963bb334c63ea382b7bb290 legacy-trunk +17940 c2f13c395b9ae7f885fc47a816aab06f3288e1e1 legacy-trunk +17941 02ad9cb5222278306a57d8737bdd92c5e8bc1dfa legacy-trunk +17942 9be67c5a823ab1da1c9320a611acc51e3e73346f legacy-trunk +17943 f9d4bd79b46480c14ac4ad7a277230e114a3ac20 legacy-trunk +17944 f09a84af64bd863201bcb65ffebf609d6cd1a136 legacy-trunk +17945 a13a2acbe214ef8fc06ba35e3800a3ecc34b159f legacy-trunk +17946 1a6f9158630f1d6efa95bed870b0906e405baa52 legacy-trunk +17947 d0a6d444d6bc77b16d86637b36ba1e5fbb652a8c legacy-trunk +17948 5da9622fed7b5474b5dc4e91bc7b5e287c47c0cd legacy-trunk +17949 41c42b1bd5828b948880c95ce77db2604c0ab67a legacy-trunk +17950 44fa16f01b4e1229acc3d2456ec67c664896a6ec legacy-trunk +17951 1b34c475da87fae3ea8d5a54664713eafd73876b legacy-trunk +17952 ec1f2365bc2d57b11e60c2555de72d777ae6061a legacy-trunk +17953 c199460ccde906603c9326b80381608518916392 legacy-trunk +17954 95be43d1d3326571936ede5974a90ee20751a66e legacy-trunk +17955 5fb8dc289812df9eb4d64620098e84d2330d2033 legacy-trunk +17956 7de0808f1fe3207dbc65a110f0c604643e2beff3 legacy-trunk +17957 1acac4756a03beba40ffbd24770d800a04af7f81 legacy-trunk +17958 f8e962506063ddaf5080d1368658177e443e29b5 legacy-trunk +17959 a02f9dac216cd989424ff09cd9c33fb3cf46f7b0 legacy-trunk +17960 8bfa9703a4e4f40370e5e9a4cc474bb683cbd040 legacy-trunk +17961 a5a9cfc009b5b3c0ab8b3eda914db27b1dc643a1 legacy-trunk +17962 2900452026ccd5ee2225dd87d8f1de82bbf4f8ce legacy-trunk +17963 f76a1ecd6b5916afe0f5656e668524588d1af6a8 legacy-trunk +17964 666091f0d714471aed55d877e3389560596b4b77 legacy-trunk +17965 d2c17adf2f0c4556952ba7440d93e75ecd5b0800 legacy-trunk +17966 ce066799133ea475055f13e3de07de7603a2ec89 legacy-trunk +17967 3081d701be8615f32c9a8910270d2dd1e1b40613 legacy-trunk +17968 154b71e1656503a69e8b13ea9f2df5f7105f63cc legacy-trunk +17969 a80541245b663200d1e2c8c184be86a1ca7e8bc6 legacy-trunk +17970 e96d664de256acb9ded8607136b2bfbbd43dbf9a legacy-trunk +17971 c6d9afa6e6a05c5e7b384d82dd2956e0c4662a4a legacy-trunk +17972 fc686de86059b84560f14a87b9bc482d1d402e57 legacy-trunk +17973 4e1e9f5c0795068e43d2ae8f2eae9df03fc63974 legacy-trunk +17974 1cd0285e3cfed87c218878e6bd7fd720659c27d4 legacy-trunk +17975 d16b7413dc696df74ff9ecca4c2b2a74763f7783 legacy-trunk +17976 66d2483289672d75e2c8d3bdcd8935b8bd2d6636 legacy-trunk +17977 a358ba707e4d351e545d4b49eb4ca5e2e9b0fb59 legacy-trunk +17978 0c0e909b8ed23ad40d6b8d2a92c9cbd9b4786755 legacy-trunk +17979 7d0af4e813d85deeabfa899d33bd417e7935e250 legacy-trunk +17980 ef1f473aaeebeb3f2e64cb42f87df96c54896c24 legacy-trunk +17981 32b8c5a480ade35cdb55fb5b3693fd2fab8dd26e legacy-trunk +17982 3ae9d313bc33e0b4fa5fae655a7323b38c242c66 legacy-trunk +17983 6803429250e9bd08fc750a91826363db0ca258a2 legacy-trunk +17984 f771453c3af58864882fc33973d5a9d0f85ccc5c legacy-trunk +17985 eba323d7407fa136eb2f24d363023330d18d87a1 legacy-trunk +17986 cf2661a4598ebb27c67e9d82611da82bc3917473 legacy-trunk +17987 7e6e40e41c6e4a7c36454513e905e2b5e94fb1b8 legacy-trunk +17988 b3917940e1fa1c1a04a69f1b9524ae0f7eee0eaa legacy-trunk +17989 34a6e3ead1c0485570f22fb415823870852a4b0d legacy-trunk +17990 05686f97f38d246dd345feabbc8e365252d1c9fd legacy-trunk +17991 a5c3469218e9c454cb5ae24db66cd6bbdcc25e93 legacy-trunk +17992 9ad0764f2e841b1659be767172f4083d2f8407be legacy-trunk +17993 91201de25f36d649028407e4dd58bc04004c8ad0 legacy-trunk +17993 e276329cce036a5f9e9d3451256dca5984e543dc legacy-trunk +17995 da9067bc949428f6d8848bd51624cbcdb97ee2d9 legacy-trunk +17996 57192f0ac13a7d6fdf93f56a81602805f5835777 legacy-trunk +17997 dd49f29d98795e25d13426bc37e302346b7ec6cc legacy-trunk +17998 fb9958933b258b5836ea37ca66146ce73172f9e3 legacy-trunk +17999 43318746690169d2b4954425578ce25eb31ba3ba legacy-trunk +18000 563dee598d3a9f463d38364427fd3de9ea843ecb legacy-trunk +18001 74c020add846ec4b66a20c9b829c60ab1ec3a440 legacy-trunk +18002 6b01fc22ef6ef8ed3dfe3998c90950b8e08f1c84 legacy-trunk +18003 a19b1d6a59ce1c68e62abb3c65b5508e0c45ec5a legacy-trunk +18004 5cf0a02a574b11999bce3c7378eab5de74d96c7d legacy-trunk +18005 5e5b43118c52da6fc6bc9bee47b024c52301d75d legacy-trunk +18006 a2fcc487b9da185876fd7e9ce031aeb15b6bd393 legacy-trunk +18007 fdc2abdf4777ebd2f8d9dd33a6f9fc98dce0ee7b legacy-trunk +18008 486f3ff14d95ac9782a53cebe19b35fea2ef1df9 legacy-trunk +18009 ca9f6a8e9885713bc7d8198f602ac3d125f3f8ad legacy-trunk +18010 ed49a67869e9c20f4b6c3e499cf6663c7dd0b9a4 legacy-trunk +18011 e17d8cd09689f01ab7caac2df6b463f087f4e635 legacy-trunk +18012 1730591d5d5da8a253abe3cc0f7796d006da80d8 legacy-trunk +18013 74f165dc0b5ae7b5abf20400a42f533ccadd5596 legacy-trunk +18014 becd8a121464f36a4aa9dbd27a674e8a77c36764 legacy-trunk +18015 459232a9b804c0a0cf64957c923ae9617b826449 legacy-trunk +18016 7b07d62d2c7961d454f6de0787344c1f320e4fe5 legacy-trunk +18017 e71971a402d319aefc4e3cab2ec7a2764b93e69f legacy-trunk +18018 3c21064e8214c27ddee6216a280342c51b2cb74b legacy-trunk +18019 007a91d77703feb6bc2a564d2300a33b5694f654 legacy-trunk +18020 b075359803016540cfb94277848eac05501b04c4 legacy-trunk +18021 a8006bbb6225779c3a0d7eba80fe889750ac8a18 legacy-trunk +18022 8930ec3bc00a91b722a27fc4fcbd288a1fce7507 legacy-trunk +18023 2577519d5ea139746a6e2970d04e37f28f08d438 legacy-trunk +18024 e61e64d1b5ec3b81c742283888fbdbcbddfc2d29 legacy-trunk +18025 e582f57343f4d5c83743decb7ba8041fd32bdbc2 legacy-trunk +18026 2edf366f563c8db6876b213a80140c9097808ba6 legacy-trunk +18027 f6102c5d3f9c2c32d999fb38df55f93124516256 legacy-trunk +18028 09c7ac188ce2178b87b06504b0e4fe55b3bc4db9 legacy-trunk +18029 85a02cc37590a6f490dd88cbd98860689465b8df legacy-trunk +18030 d2f4d748c921ebdb090f3278dca16b84f485ef9f legacy-trunk +18031 744aa062f4701a41540dd46827ace5c2aae90b80 legacy-trunk +18032 3eb8687c98c6f7c2c4cc791295b5cca7c5f37b55 legacy-trunk +18033 ab1f90dd502f8aa8592037db67743dcf2c5ed744 legacy-trunk +18034 e7823f0ca21a0612aa0599dcc85165c3d5665479 legacy-trunk +18035 52d2d36b8bf7f7856eec7652326884e0d5c34e0e legacy-trunk +18036 1b73b3514b5855d5ed47b72385b239575de02ada legacy-trunk +18037 015da13f0038c166f0e46eb74c169b9f60917284 legacy-trunk +18038 54273858ead9c6251054e95477aa547967b32b99 legacy-trunk +18039 2ed358446f2fe33902391e8f482359fd211e8fe1 legacy-trunk +18040 b3387eeba68dfe4ca98d5f92ad2d4e20f340f5e2 legacy-trunk +18041 4d2187264cfa7ad11300ce9ed82533d091e0ac0c legacy-trunk +18042 9e9ee3c5a6078f3aefb13a59e4cadbf161ae90f3 legacy-trunk +18043 100beebde9dff54d48b450557121a211b47dae2e legacy-trunk +18044 b2892cbc63db7344180cb52702592ed56b79953f legacy-trunk +18045 5aa8c5aaffadd64245d409739670a66116d97a28 legacy-trunk +18046 f044b06e317daa2402d379f6484c7f1490d5a8f0 legacy-trunk +18047 319c6e3718251c9835343611fd273280f40fc13b legacy-trunk +18048 656d434388c8e2283022ac14d96d4cb522c42c4a legacy-trunk +18049 db4d80a67389a2061d1a1a3de2308c340010fc04 legacy-trunk +18050 1c63e224f616640c68ea4659c5bd87e844e7aab1 legacy-trunk +18051 e3d8365ea2315126e803d492d7f9d8a701b5889f legacy-trunk +18052 af02ac580028c9e5d1c092f20352f5cac4a2fbec legacy-trunk +18053 3743a6dbc4a772b5b08bdcd112b38275f86d6093 legacy-trunk +18054 48cc77b63ad5df5dec0c3b0597826911316c4f3e legacy-trunk +18055 23bf30858ef4531ef14262f9061e38e617a5343c legacy-trunk +18056 d469d15723d35f052ffb64c04cdfbb4e204f2cb0 legacy-trunk +18057 77ea8fcef24cb355b0be1fd6820835e3f1b18436 legacy-trunk +18058 c50b786ebc484b24fb907bf201d87a99af53bb45 legacy-trunk +18059 4eeb02817b5d80e413b7a6eadc5b3e5cfbf27aed legacy-trunk +18060 9b7ddd9cae33e2771e8d272e6342598961eb934f legacy-trunk +18061 6417ce914dae87edd2849148ad1f6b42099e40b7 legacy-trunk +18062 e0a5835af83350a07860ab7e1a79f95f49d08b7d legacy-trunk +18063 04e76e08e10ff41fe2aec8a56beae6fda351dbaa legacy-trunk +18064 c94f1c7761536ea70631671fc0ce39c1e104ddf5 legacy-trunk +18065 701a561bdefa8164864caa9282a4ab2e5a85baad legacy-trunk +18066 783967b16879a8a84be58b192fe16b97ae922a59 legacy-trunk +18067 9f3077506d1a16ba487bc510b07ff01a16d8dcbd legacy-trunk +18068 d2c205c36d8a418f70dc911f08f93b444bd34b63 legacy-trunk +18069 e4c9b805f39fbd783a09250a109dc177b337d136 legacy-trunk +18070 50a888ec57c12711fd511a293ce053659120cabd legacy-trunk +18071 882cefe21dc368185d7ffd7909863cb0675827e8 legacy-trunk +18072 7d45249b1477d9c78b954fa39403596b45bc07fb legacy-trunk +18073 9598650f2bc902320b7e920cec82c60fd48d031b legacy-trunk +18074 a3975d2811f0089f52da2ce3c586aa7e7b6ca88c legacy-trunk +18075 a82e4c295b9300d308b26d14bf4209bb1f307858 legacy-trunk +18076 5b5654ca7555b98b0e2b41cf661109d603e43cc2 legacy-trunk +18077 99f38c755abeba45501098f6a2ab4056635901e7 legacy-trunk +18078 3e7016c79daa0e7afcd3e452fdf2df700c5e33c7 legacy-trunk +18079 d7c93a78c94928afb9c28c3b44ab9f17f892e045 legacy-trunk +18080 3d90e1d7605f712723c4b4d6bce30becc4b240d2 legacy-trunk +18081 e470a9618ca72aba3586d14a34a3d234614270fd legacy-trunk +18082 7e92b7a5057c510f1d3bee2792e343df03acd7e4 legacy-trunk +18083 486a31d8a3b35c5f91fe1727c543c8fa76c063f5 legacy-trunk +18084 487b3502a45b310fcda70aa09fdb2d658cd5d1ad legacy-trunk +18085 f792820f3cd4bef56053cadfe8e4de5d012645ad legacy-trunk +18086 d2b9cc440b8dd42e0315f2b8d3261f310c7a0b01 legacy-trunk +18087 bd88df20da2f59ab4eddd592a3953760240ca591 legacy-trunk +18088 10b3cbdbdfd9fd9195f5f54023a2d43f70132097 legacy-trunk +18089 38c795afb3b8053eb6a8d2acdf6e87b69b6d2ad3 legacy-trunk +18090 864f1714af2871b307ce4371f96a9aa56c04cbdf legacy-trunk +18091 03720a26cfe736547f867f4781388d02b7cdddbe legacy-trunk +18092 8fe2a7981d70b32a98dba640a6442062f0907ed1 legacy-trunk +18093 c94c2ae746f1cb3a642a5fd14a8303c0a7ebe59d legacy-trunk +18094 f1ade8ab18695537ccec90f7ce33a86d66569557 legacy-trunk +18095 75bfbe37ab7a6c09034bfa7c0a06eb76c746e99e legacy-trunk +18096 9af7fce3638413173a007fcd342242eef19f9083 legacy-trunk +18097 0227b5961eef74a878230a608d0f1f2a99a5b80f legacy-trunk +18099 da43b16986b67701d8b7044587c715dc2c793663 legacy-trunk +18100 657750c1d78354d878773dcf2c32d8d924864c70 legacy-trunk +18101 2cdfc46e8068d0d8ad9823c45c811f46c84effab legacy-trunk +18102 e9e8824e3d8dfd9a3bfb2ed9fd47ac24b6844062 legacy-trunk +18103 71ea2bb01889572f96878668d116d1764149a9d0 legacy-trunk +18104 e4ea44b10abbef25ad107e0fe1164b9c9ee4d684 legacy-trunk +18105 6837135081d4727eefde74754bdf2b020a61d327 legacy-trunk +18106 dd0d199674f82a4cf5e31f713193c0f4d2f97183 legacy-trunk +18107 8686f284fa8d749013ecf43d9797680d039ef4a8 legacy-trunk +18108 735ed856de60e418f6757ac73cbae4ba0c0a55c2 legacy-trunk +18109 2a05c1fbd8947dd23301f8f480eefeda51dc59b2 legacy-trunk +18110 cc9eb187b7302ca3770b116a9ac2cd4addc88945 legacy-trunk +18111 9720c2c6f435d3d6cdeb3b902f4ab202b2cd6567 legacy-trunk +18112 0f9fd3fd7799a8accf1f56bbacefd190931110c9 legacy-trunk +18113 0813020b29775e1cf2cfa34180f3aade47e67e46 legacy-trunk +18113 2fa4e35083e02342ca014bf5bfba46aecb816c31 legacy-trunk +18115 bd4cd73cb0d6d5f88ced7df74d30d7d14b226bb7 legacy-trunk +18116 61f823009145ca13a8fb5f6987a16292996633cc legacy-trunk +18117 3142698d172c857bb9918c512f1eb8f05662260b legacy-trunk +18118 a187ad82c33f47293f44a4c34238d3d44c604ac0 legacy-trunk +18119 d2aa266ae41c88eb7ec0e21891fea06c45d8bc07 legacy-trunk +18120 bc4f89eefb04d42eb7e1b1c23f4a366e803004db legacy-trunk +18121 87780dbf8d174b1bde753af50e8615613e88ab3d legacy-trunk +18122 0d3babac4398fbe38b5f470ad9a88b4f02a1004d legacy-trunk +18123 b51629980c886c284eb43b5dcb4426b91ca315c9 legacy-trunk +18124 387f31ac32e648c543797f43a2ff2390bd8ffc23 legacy-trunk +18125 c94c1b660ddb156a7efb4ed81d00d84f8c4125c5 legacy-trunk +18126 d50335ac55803c04911f4c91351c22439ecd51b5 legacy-trunk +18127 0832810c461243378c530581a5847cb50a0013cd legacy-trunk +18128 d5740e12ea8a29a9daa4adab5dae59f397b3e5f4 legacy-trunk +18129 74c6153abbc10d0d7ded240fc47eb25bb8790269 legacy-trunk +18130 929c92c50cb2bbec8367c058be01912409af057e legacy-trunk +18131 3e96fd44b9d0f78fd4925981c42afd5ccb8d3804 legacy-trunk +18132 6381fa8d7df33704bc296d804eb7c76e30ec97e2 legacy-trunk +18133 68158d64e874e95074c891670ddb44c0d27f3f44 legacy-trunk +18134 847d99e4f24ad3e207e9a6b8d0abe7e194d80601 legacy-trunk +18135 65d265d89d8f4255c7357b998d220e9f6c0782cd legacy-trunk +18136 ba3677e1f81b65dc74c41def95eed5d606bc8d61 legacy-trunk +18137 11676ddaff015e287a0e781f27b9b670e86a20d9 legacy-trunk +18138 2541062ed4dd98bac9cb1fc7094ccf0b29522ad5 legacy-trunk +18139 a5ca54969a3ffe728af53616e76dcb833912a739 legacy-trunk +18140 af2aa807acde7fa4ca08864304224921ba616e01 legacy-trunk +18141 bf21e417bed2234920585c32b399bb8e43c86a51 legacy-trunk +18142 4c7c779bad879b8deb70ddd35ce7a2a4548dc28b legacy-trunk +18143 b940a0fc29e33949365077a0f5a1e85773373bf4 legacy-trunk +18144 8f4592f54988dbed460a72d93164c634b21c3ddf legacy-trunk +18145 132e69892aa5d15ae50880ad1c5aa111bfd9a4e0 legacy-trunk +18146 3a7afd3e6c97814b40484781303103e715118d3d legacy-trunk +18147 1f4a9ade30ecc17cb1b78341d1e0b05b8f39fa33 legacy-trunk +18148 272c2965081c651860368d741c5c6efc914c19cb legacy-trunk +18149 23b1108d6c8b5fcad7282801b1278d4d1bf518a1 legacy-trunk +18150 1f9d5eb84b0b20c0bb6e8aba6db076ec84639691 legacy-trunk +18151 9dd7eab836d7cfc9c59c3eea6b9604a70ce4323d legacy-trunk +18152 09bf6d30024fb088a508f6902eef50e5034ed776 legacy-trunk +18153 847dc61e30f5c8e88e97695b447a945a09c696db legacy-trunk +18154 757ff88e17aadbda3d31cf88c6af4f2930dfb2f4 legacy-trunk +18155 e6a1085725acf478a9e81eb375e47305f8cd0cfe legacy-trunk +18157 f20deaeaf8b97c21d6fe02954bedfb7fd0456803 legacy-trunk +18158 85a509faccc796f302dff964dbfa29dbd3b55528 legacy-trunk +18159 68bce5d83f7b93a71ee2d4a7e3d9cd87f62a6588 legacy-trunk +18160 0da4ccc7e8cf36e6fb2bf5ecebfb8d5a3865a3b5 legacy-trunk +18161 2a9d2765625e5a775dd5bda60d43554a767cd227 legacy-trunk +18162 b211026cef84ca803d86f9daa2b963680e562ac8 legacy-trunk +18163 0820994e2d5e876f1e09bf2c475d877dc1ac373c legacy-trunk +18164 a6f3ef10815ecb8dc10d8d7b9ca094aaddca0fbc legacy-trunk +18165 07f24261c6e6ebe3efce448ce4946c516f7fb26a legacy-trunk +18166 a999d058fab55815838c0006235b987889a47ae8 legacy-trunk +18167 f8721e8494246cba41830192edb7a2847ecebc89 legacy-trunk +18168 847ae40074d4e00734b30a0d4f76be25aba64947 legacy-trunk +18169 0758ccb3363cfd64e9f76c488011ced6e5ccb86e legacy-trunk +18170 5d2a2185c651a4339ba4ea8167d60a64bf560c60 legacy-trunk +18171 33337e5a4300c98daa159acd8c0f158f7525ec39 legacy-trunk +18172 86d069414099fe983635421f9e5b87132ab0713e legacy-trunk +18173 49468c007c0cd5af29c3971eff74964c5415b3b7 legacy-trunk +18174 87b5e480762f86b17970c5b3ca901ba646817019 legacy-trunk +18175 b49f522bf893ea52ab059968af6215daead50f4f legacy-trunk +18176 8e865f5ecf7841fd41912ab04e30bd13f7c81f4e legacy-trunk +18177 13975aec5152156017338faff1e296e3f8b3cdcc legacy-trunk +18178 8aa947e1eee82a2ef2e2cf60d0011c0438afcba5 legacy-trunk +18179 09ec882cde614420b9551a38bc197b0da76ab6dc legacy-trunk +18180 3bd13a2fc8382484e002c52e73ce1b5a5a234292 legacy-trunk +18181 11e3a6e16a9f225fa62a8814dec04fe4c03e06d8 legacy-trunk +18182 d17ba141480ae7a63b778270ace46fe1d4f9e59d legacy-trunk +18183 fd17217d5ba868af0fea347c8a8ccca9fb3c80f0 legacy-trunk +18184 d8aca3c890f7a4fc352856b2c1ee48b562350728 legacy-trunk +18185 65594feb552757e76ead9670e53d0bc43ebf6729 legacy-trunk +18186 e5d4c424c44f936b764f8a50a3fcadcf83323dd7 legacy-trunk +18187 c1846d331de9d1d39752d5e511301f3bfeb79247 legacy-trunk +18188 0d63c0ca7ae422394653ec1b147334ea04f73d94 legacy-trunk +18189 5d586d45cb5a524ad8a03d818985271e778e94f9 legacy-trunk +18190 818904a99ca37317e1c237b17ebf8b7b708ea165 legacy-trunk +18191 788b523d4827b246946c053c55f848b604cf92ef legacy-trunk +18192 12aec3381c946bc7b18870f235d0af9ad027976d legacy-trunk +18193 d5157c8bb11a4dda12c0c7f1cfd92b883438b25e legacy-trunk +18194 100c533d9a3e61566d3c51ea704bb6c41b877bb2 legacy-trunk +18195 ec79800f4c277025f007cad33cd5bea7e04645fa legacy-trunk +18196 bbc991ab6d3221a6f53d52c5ef5221886fedf884 legacy-trunk +18197 a81f9202803dbd2e55160a14955957e3204ed1a5 legacy-trunk +18198 ca1ae21a3039b341d3e6655f8496ddb9370c07b9 legacy-trunk +18199 c2d7451b42f66c528b50326fdaa4fe1c27f00abe legacy-trunk +18200 d99a0f6cfce20c8ae9962666e6ce3955d0a16129 legacy-trunk +18201 c2d10274a214892f53f723e216cb2b8d293779ed legacy-trunk +18202 cb11fa5b11f423dfb53389ad4d22315990ee755f legacy-trunk +18203 acf2b19e434432314ab670213b772cded3b81f84 legacy-trunk +18204 e59f538bb8293af288511d590ec464befd61331d legacy-trunk +18205 03dc761d2cc49e884856ad2115ae65536e77d6c7 legacy-trunk +18206 563dcfec2ae9e6c3ae19fe5bc7c975b98591cfa2 legacy-trunk +18207 304871d6e866244678477be19739241bb32d37cd legacy-trunk +18208 d4a46326faf43694ea6739ef20e76073546da3f7 legacy-trunk +18209 0c19672d47bb1e1711cd4bb2910d6739e50a3b1c legacy-trunk +18210 b3debf647b53ea8312bb860b752581038b435b96 legacy-trunk +18211 a6224da7b4e435cbff2e17a94e1b5858591f8d69 legacy-trunk +18212 3e54cefc58c601e8f20e29d9767ae94023d8b2e3 legacy-trunk +18213 f480d52c0760adb1492e2c235df266a96f5f758b legacy-trunk +18214 7be9edc4d5db11b026dc7ca48d9261d9ebba204a legacy-trunk +18215 2a3696d32721e7009d29f87c1d0510f26f071c48 legacy-trunk +18216 6e70baa487ed5234d4b3fbd65fbd24eabe07a2e9 legacy-trunk +18217 ee271c20b05f3b249a0c227ebe0c6df7dfdb8fbf legacy-trunk +18218 ab3438cf1f3e6b36a990cb8a25ab12e2c95bb632 legacy-trunk +18219 12b92a35641be2eecba68efeacad0befe42d8391 legacy-trunk +18220 74e1d79520fd4cdecceafaacdd3fa1ae8bc7c3c9 legacy-trunk +18221 a3af145d2531e0c36427fc513774f03a3e345925 legacy-trunk +18222 9a17cdcd3320358dc16533d468472a1a1b8bd465 legacy-trunk +18223 47d9fbe6537c87cd6db93c2bc6767af9d6a6c202 legacy-trunk +18224 09952d6ed37259f16d561652b20051b856c4ac88 legacy-trunk +18225 1e4de601051c1624118dea3364391e57478f2995 legacy-trunk +18226 3c6083247ce755c96002752ea9c593e7745f6498 legacy-trunk +18227 8275d8643e7989134edb047a53a231b490989efa legacy-trunk +18228 900f266c5d8e2c1927246f774d6ab92804c45139 legacy-trunk +18229 3abcb696661759264cab6a562869ee8a0e39f310 legacy-trunk +18230 2e1ab0c941c0ecc27adea0933c3af1f799030558 legacy-trunk +18231 c7f5dd2bdc7d69f53e9ef79b098c2e6ffc4f4514 legacy-trunk +18232 f6233938ff89b0e648f6f31020e981e5ad697c46 legacy-trunk +18233 01922a0f6f92b2e3feb3f8c89ea99e219925fc87 legacy-trunk +18234 a826a46bae54ac90f0fa9ed01fd26520dbacedd1 legacy-trunk +18235 cee96b391ffc260675eb569812ad216d6e618bc4 legacy-trunk +18236 493ca9e4260e52a237f40dd34765bca4c8818a8d legacy-trunk +18237 83cdd45485a573a2ae5bf8724b71518e96f6150b legacy-trunk +18238 9b1be1d848104673974680acfc4b48f7308c5719 legacy-trunk +18239 7a82f84290f7bbd30488a155a86b39d2b831f2d7 legacy-trunk +18240 bb006ad00d9eac6cf957837a12d3ba83fbf4f822 legacy-trunk +18241 52c27b7116869007249b63f1555c2a4d062e2963 legacy-trunk +18242 c104f00c9909eb18605d878390283ca987d15bfa legacy-trunk +18243 eeb7c8a5b79f643c2db77b4709db7c6943353afa legacy-trunk +18244 3cb12e0e7acd102dc38b6cf4e5b4ab3017e45868 legacy-trunk +18245 22dbcffc54ef10f8803ceca4cadd5d12480aa221 legacy-trunk +18246 16c12d1698f6ad60d1d69d2bd6c511e2a4c8a627 legacy-trunk +18247 b3469eb78bc6681133da25dde50ba73270c256a5 legacy-trunk +18249 f2901b6ac5ed9468c562c904f283281bc081161e legacy-trunk +18250 87a5bae1b944a99931f7b5c1b7772db96b0e0db1 legacy-trunk +18251 f62e3e7871be92392cb93ed214a6021fe3dd119b legacy-trunk +18252 5192bfd7a8bbd590179324e02dc69b7fe9cf5bc7 legacy-trunk +18253 fae5b1e41491d636a94df52ac4cdfc8076b611d1 legacy-trunk +18254 86f06c153dda4a3a3436b79732101e21fa95a5a6 legacy-trunk +18255 96c394a43b5bafc671ebb040f3e91203d0d3eeb5 legacy-trunk +18256 d265bf4ada7c9210f56df3d9529835b7358c1cd9 legacy-trunk +18257 b71459aeda9568de79ca38b44e9efd6673ac31c2 legacy-trunk +18258 5d5c51304f7c5aa8c705026924ddcb13a69505ef legacy-trunk +18259 3ab7faae803af24c3c670ce018a66eb6c2782102 legacy-trunk +18260 aa1ec270f2d38b84e02c17a9e6c48b9972edbfc3 legacy-trunk +18261 8f82316f69d4051fb981bdeef77891b78249e786 legacy-trunk +18262 c45c5080c844810f2ad31c916de3a8c573d57032 legacy-trunk +18263 fded5c9ecc9bbf4a0d8d43fcb0e38bd510ae9369 legacy-trunk +18264 5b4abceff53d4d395abc21ab79747ec1c2d4d091 legacy-trunk +18265 9a6894f8e1a09735d993f2429808ff6e1debf308 legacy-trunk +18266 af1e9e64ed9d241890dea645d73c0fc2509dbe96 legacy-trunk +18267 77171318e32128729842e671ad26498af3aaea05 legacy-trunk +18268 375229c3ac0d99eacac9be41b96784ff40e012bf legacy-trunk +18269 ddd903fb6a7108037cd498239d90a1f0be0b707d legacy-trunk +18270 99ca419ca58bbb7e13de09db10fd1871cf234b35 legacy-trunk +18271 b648cb0d1988f17f445984b101ad55060671f5a3 legacy-trunk +18272 56e97e727569c3a2631087e77381e6e2492cdc1b legacy-trunk +18273 876cf7b3d3dfb1b5b9f124d79ad619df900130e9 legacy-trunk +18274 4ae4929b12ffe1d87316e7f8027f0d85d3ceac8c legacy-trunk +18275 86f4e1ef81caac055b8dc6202a2a7c73905f4823 legacy-trunk +18276 0f00b6c7b9b95e1364d0b2661b181f3468e4e3c4 legacy-trunk +18277 c8d4e6f1b5fe975c276f195fa814d8b06bf8af44 legacy-trunk +18278 6b2524e9c672e805d60d655e816308ce2e9e634c legacy-trunk +18279 06465ed81826305a887daa218689fad5da346d7c legacy-trunk +18280 bd41e6273ed9b314669c782a3995c0f4395cbaf5 legacy-trunk +18281 27e4f5601aa589c20df7628ff12fa52dbcc6c249 legacy-trunk +18282 4918517ed6b4cb4f0b3faf81459bb66e07d0d985 legacy-trunk +18283 39ab827e72bd6e77bde3d9342a9f5bc58ceb0fcc legacy-trunk +18284 7ebdfe425c81eb6236762b837d246ddb59ab60c3 legacy-trunk +18285 97ea0b49422fff2a84ab9b9f2b841efd452b672c legacy-trunk +18286 be33079360c6694acd057179edaaf117c8781dcb legacy-trunk +18287 a9351051923e0b04515a23894bc031cb88b5a37b legacy-trunk +18288 c0f1ebd320723900835061f55013c8b04ded9942 legacy-trunk +18289 c833dcdb3a15547a9bd911f6932e63cd9037a669 legacy-trunk +18290 78a7f8a64f85a74817b59baf7e7d13b505a4e00e legacy-trunk +18291 d5a5428e965c4d250bb45c145d8541b3e7e50440 legacy-trunk +18292 849698550b32a68b95f5d136379faf3b3f17e318 legacy-trunk +18293 2049d570ca5a7b0e43ca15571d05177a645b4b39 legacy-trunk +18294 ac6fba0ecc29024288fbf7a68b83b4b1d250e6c9 legacy-trunk +18295 53c9d15ad98ed6934f11148b244ae2ae9a827899 legacy-trunk +18296 fb10937060ccbc388d8dd637bcee2df857f5378c legacy-trunk +18297 4e8577fb9407ff6e4e403189b30d757f3a8e6c8d legacy-trunk +18298 d5f0696c37e81bab2f907bf9c4f9c20b76ad7c8c legacy-trunk +18299 433458651eb4027954fb7325c0369c0db7c439aa legacy-trunk +18300 328fac1ca210fcb600b35bfa6425664e3ece2fab legacy-trunk +18301 ef466a19e3bc6a256d03438094de741e5b656f80 legacy-trunk +18302 4ac555a876a23f500f764f864175364d6a78fab2 legacy-trunk +18303 b855c88c6af6a416d2812515be56c37807901967 legacy-trunk +18304 68de9185b41e2a31ce23ca6e3b8cc4b648f2c058 legacy-trunk +18305 7e514f1fe31fcd4fafc607bf0f801ec46dea35c2 legacy-trunk +18306 dcd2bebc180ef43b5e0a654f906eee93ee75914b legacy-trunk +18307 f813ede134bf68d45c72cc030b04a7602a682b6f legacy-trunk +18308 f823b9aa0c03615149846b752956a943ce8d1928 legacy-trunk +18309 31f70ca06c68f94a74f4a4d6d7764895d26721b0 legacy-trunk +18310 9ab7a597eefe91429edd0887b3c22f3d877584e2 legacy-trunk +18311 ae49006b2d8faa6a8b80805ba35cb742e077d6e7 legacy-trunk +18312 db6d9bb7ec9453b774b988f481d4390b8a95e738 legacy-trunk +18313 f2c176d846a4a5b90cc1c7bb297846b9419ccf78 legacy-trunk +18314 7721fb50946231d9f863e23cc876fe3861789fff legacy-trunk +18315 ce77738b81acbf6bdff491815d83cda8cf429f9b legacy-trunk +18316 d0146d128897e7354661d914882968c0d71fe14a legacy-trunk +18317 597089dd2609a5ea2e1ed57a56539c9f1f1b3291 legacy-trunk +18318 af397f7dbbd5eb50757e9e5b56688f4a4a38ab4b legacy-trunk +18319 5d758cf5111d7d8cf84010f1491a4727766e9c36 legacy-trunk +18320 a79d3624f8454a6d428218b8ce44e7ee329ff3a1 legacy-trunk +18321 d397f66775e8bc41ca63c55065136c698708b85b legacy-trunk +18322 9f775e249ba18084196b56219a7e4c5459be149f legacy-trunk +18323 bbe8a64e219e58f5fb529849d5a1ce60288fcd38 legacy-trunk +18324 aaa91ed3fcfd29d594032d13c78c25181676d887 legacy-trunk +18325 c7f225ae31605b201352f5f3eab15e4980cba7e2 legacy-trunk +18326 0b84b31aa9751897fb4f86573a2bfaf7fe97c6d8 legacy-trunk +18327 9731bbb52fb4ac49b6e3e5c7b69b8474514f4322 legacy-trunk +18328 d7864345b1c8a8c4e7ab92b592f0d3cdf31e0289 legacy-trunk +18329 21986cc14bb2a7d0c4571e2758fa845ee82308f8 legacy-trunk +18330 ac220c31ddd7e9ab03d209a2bffd7ed399a5cb91 legacy-trunk +18331 e0d8a6f2d0911b26d6fa5c5343cbe84c964b5f3d legacy-trunk +18332 86cf6480d2fa63b7e4da32b3113b45e475999145 legacy-trunk +18333 48804dab788ca6da5c0ede509e4bd2dde5606b48 legacy-trunk +18334 2ece8fa56808078b74566fa3e6be724e21b0ef55 legacy-trunk +18335 ef91393375474fa9d6d349942c36eb779ef44731 legacy-trunk +18336 655f4c4bb9449b1da60d4db1ccccea314bcfa573 legacy-trunk +18337 3be1f5c520ad525f2f5769025bc004c68a5e1c5d legacy-trunk +18338 a5cff8c1f4e4a4214b8f39cef3c0686732062dde legacy-trunk +18339 856b2bc216f9fb3826cf21514a54614c3a154648 legacy-trunk +18340 e98964bc26814323140cf194e337e2e4870f4b0e legacy-trunk +18341 3c33f2c357d3b6c75f4c3069ee19ad1d0aa7d654 legacy-trunk +18342 07c2e136260c3ece40265d8520f22e1d99ccf1ca legacy-trunk +18343 6838e72f8dd2707da08e210596ee6d9b8d0d45f6 legacy-trunk +18344 105c25052de98ec6a464564d06e1f9c6447924d9 legacy-trunk +18345 07705177ca6bed95a8826649d5499c104ee7f63d legacy-trunk +18346 1091ad9a0303cfc8a26a39a35fe48fe43a1867d9 legacy-trunk +18347 b3398c452d9591a21445040609ab3a3027d7a471 legacy-trunk +18348 f0ca4c67957b57a9f2cc5af06b95a0ceae1cb2b5 legacy-trunk +18349 2d1bbbac76d307a0f98beecf5dc3403e248dec57 legacy-trunk +18350 10f6e195671dfe7f7a8b8e9a05d22e1852cedcab legacy-trunk +18351 8a596d10bc70853bbfbaa91cadc2f907211cb337 legacy-trunk +18352 58b4ae4ec55c6e8ce2b0baf2798702faf7a5132d legacy-trunk +18353 f64039023d64923a09fbe48b848c4469f11f48d9 legacy-trunk +18354 fd84b3524145761389d6cbd8f99690ccba7fb48a legacy-trunk +18355 8b596451f1c18f174fdcfa9aea3eba39493ef626 legacy-trunk +18356 32c440d2b0dfd6dd1c76dfc47179b2f4e0b1d155 legacy-trunk +18357 26d414c0a09202e0bf051db7d8c90904a0a613a7 legacy-trunk +18358 f3bf5f082a3f8a79ff216b4fcfd56de6b142bf18 legacy-trunk +18359 46275611cd59be888253d21f2b3c9e143601d1ad legacy-trunk +18360 8be889e8115bcb04d4fc9aa589bb55e0f67ff2cc legacy-trunk +18361 d137b94f3ddfd16ebe354f3ef41ca34d99b536f2 legacy-trunk +18362 55f4a6e8b5b3a7e431b9329bf49a69b856bd0d4a legacy-trunk +18363 daadd1e8531658184c868d7936a4225f6fa628de legacy-trunk +18364 39742c91add3e47e1128c409137d95fdd2e69121 legacy-trunk +18365 4b658c059c23d9df9cbcbc48c726892bc6045ace legacy-trunk +18366 5e9d0127ace9a1cc601a7054bc3143f2db88da0a legacy-trunk +18367 ac830c9e9a8372a31c1b75f78717f70990bcb875 legacy-trunk +18368 34058af976ceceeadf103240bec25e5c9cc70648 legacy-trunk +18369 ecde771428f9eb472e865e9d30f26cd1a1e107d5 legacy-trunk +18370 30546a2b9450e589c980951203e2d60231c96990 legacy-trunk +18371 db7570225ef84219a900bfa7b18ff436812e1d26 legacy-trunk +18372 3480e83e17abb1e847ac2214ae9a8e685baf1c11 legacy-trunk +18373 e11c12323ebf5c509251d962c18480749745daa6 legacy-trunk +18374 efc96aab71c2891d07e103eb3bd218a1849ffe7f legacy-trunk +18375 3e94cc2a0473ff5f8bd75869ec04533192f1db42 legacy-trunk +18376 dd583c33f455aca353e48b825c548fa6672fd1b0 legacy-trunk +18377 c13336572f4f41a01bc38cf5c91908a1f030eb7f legacy-trunk +18378 5e41ebdfa9a00e43f56c8f38ca99f16419642b6b legacy-trunk +18379 c0ad4c2ef44461fca286f3727b9d2380e28e233e legacy-trunk +18380 ed29df7eb5c96186e7d2002791cafce5b9d7cbc7 legacy-trunk +18381 8854d9d5add5f4621e2fe7195f37cc11f4f5f09f legacy-trunk +18382 070ee31caf28b70ec05122b1f2146a3c06b3faae legacy-trunk +18383 aaa54752e4bad039605acc839df09fe963de6279 legacy-trunk +18384 10221a6c7c3c5f6cecaff3b3082a515ac9add8c5 legacy-trunk +18385 cf1750c3f7f7f98d08edf000fafc4b0f79570623 legacy-trunk +18386 32c55f5746ded20a2353f748e293d82ce978adad legacy-trunk +18387 8d9fffed34f4064bdc90d2a7f5ca833e565b46a7 legacy-trunk +18388 041d57e3a2b904be5a8fff0cc6f298f507a111a5 legacy-trunk +18389 5fe2ec504836c10f20999468f656950953ee8abc legacy-trunk +18390 a93d79da4f8c5dbcf3f84bdc407076654e9d5247 legacy-trunk +18391 79fcd2b31808bde6cda14786315eb62ac9f53595 legacy-trunk +18392 ad14ddbd09a725ef6b43eea143bc7281c6057d00 legacy-trunk +18393 29f42694402b80cd94375b028c21056dacc9d267 legacy-trunk +18394 5d98d49713f21a1c693dcb3141814724282b01b5 legacy-trunk +18395 0cb751b563916c30e8e7a6eb3555eb5f6ca007fd legacy-trunk +18396 7ee39e14cf2b0f82c4be85ae09eb2c47fed30692 legacy-trunk +18397 c59f645daeded0dda4e8b011259e605c46ff075a legacy-trunk +18398 50358d64dc437b7e5ab3915c2db82aa44e666891 legacy-trunk +18399 3b04d3425ff0f310894ce7255872324cbfd3d92e legacy-trunk +18400 5aac5873aaae7d04df7cd39e276d6b0ec87f89bf legacy-trunk +18401 9d43129c8c55f337a9bf5956b17b6264915919b8 legacy-trunk +18402 58bc99e012a85fa997715b8dfd606fda00876521 legacy-trunk +18403 6359480106ecfa99ad619c4ebd72bcae00c544fd legacy-trunk +18404 785155e2cfca2949f0d77fb6060e5f89449898bd legacy-trunk +18405 cbd4f355bb96f798c30c1feb7f30253f867868d4 legacy-trunk +18406 d69611cce877683bcc597d2e256dde26bcd35ce4 legacy-trunk +18407 bb93b1dca57198d19ad38428d75ceb5484da7c2a legacy-trunk +18408 af7c623d8d33bd7a9003c135b12991e6bbb8193b legacy-trunk +18409 f3b0682d26d6011a37f5b1772fdbc2c4cd60240d legacy-trunk +18410 2fdbcdee2e1f2ed68a5e9a6edbc61905d933b135 legacy-trunk +18411 845646b09bf824582b871d0927ff9720a4b2e514 legacy-trunk +18412 f9b184a57223950179b1c6cf103ddc327f2db8c0 legacy-trunk +18413 4d9c31f32c09c24bfe2440ca69ca6ce004317d24 legacy-trunk +18414 57439336c2e0ee96ef5922012f7cb2ef1587fa66 legacy-trunk +18415 43546c5aeeccea7ed999089c99cd6007dc88175b legacy-trunk +18416 f72345b4366201cfe5654e1fd11e3d694cf31c25 legacy-trunk +18417 d3f6f3155c2404bd1c91d67a02ca417e459b9d50 legacy-trunk +18418 b175400e8b22afd33c947b31f84a31a343aba783 legacy-trunk +18419 c81bed0168a0949cb19ca2449da6fe8bab615fb1 legacy-trunk +18420 d08f8ceb3d556e3ee45f461cebe1b71ed5938adf legacy-trunk +18421 143646bafd1be890f6dfefb157b3ceafef0c395d legacy-trunk +18422 9453f6facefa45e1769d3619d55ea82316e0c808 legacy-trunk +18423 74ee661581b6d47e86e544d2ba75b39b7b480344 legacy-trunk +18424 35e8a29e54884e03ba52efa4641fc81f59aa972d legacy-trunk +18425 c10426da7bce2420d59307d5ca4781e86449aac4 legacy-trunk +18426 4c20379e663d4582bf0a4216baf458800f2557c3 legacy-trunk +18427 99422d610db3ae96f3128b804deac82be6fea19f legacy-trunk +18428 d38516ce6f1419d7e2938708443256c1ddf91df5 legacy-trunk +18429 b3420b002d55cf7190a47a3c2ccb3ce01c8d655e legacy-trunk +18430 56adc68e06f6913dc94739c5494df3283cc4571c legacy-trunk +18431 d410f6ad3c6018eea314107af1b63a9853a59786 legacy-trunk +18432 027ee9a870d2c233c8fd1556e5a8639237199fe8 legacy-trunk +18433 2175e567bd06290dbba7280b280809647965a630 legacy-trunk +18434 24074f97235c49d3b393d7ad1e6fa24a09660b91 legacy-trunk +18435 4a9f1552ba68e0bf0398703966578503170c01a5 legacy-trunk +18436 03c32faa1a49b4c7c5442c2a07e2c0be8621f260 legacy-trunk +18437 58fe937f734a4878af449b9a599fb9ff8d46e5b3 legacy-trunk +18438 96c3ae13ddca818b213cc146d3d17d3e641a9163 legacy-trunk +18439 e0765c5512d719897d05aa4a43b2e475f1f5f667 legacy-trunk +18440 31d78f361530cf0873e93416e620ad00942c2215 legacy-trunk +18441 668166a50c7071b65762915d50341cfe44ea277d legacy-trunk +18442 afb45b7fa2528cea904722b6d652deceaee40d3c legacy-trunk +18443 6179d4afa4e4e5cff3c2562ab680ff35278e2ade legacy-trunk +18444 b8f5b7267f1497c45638a1e2a81eb9535ab16747 legacy-trunk +18445 67c24c74f18cc4344c414b22a7238c1753211acb legacy-trunk +18446 b2a9bc91668a7f240f493a8661ed8204865aa34b legacy-trunk +18447 ff84112dabc89523605822f0e7ac506698244781 legacy-trunk +18448 ebce9b267bb8ea6192d199f1a683c83911ede4eb legacy-trunk +18449 ce92230281648cfd5c05ac261977f6295b43c404 legacy-trunk +18450 857a5400be87eadace870fa3832588eb0f67fece legacy-trunk +18451 1e756f93bf5da1e97d38f23d2ba67bcae86cd765 legacy-trunk +18452 36286632ff3a93cf23f92bdad9d8facb3f030aa8 legacy-trunk +18453 52756f613c182a8b3014656a15879699a0a7861b legacy-trunk +18454 9694909dbb0a79886c520ef28718c049bc26a258 legacy-trunk +18455 1779f8574a83a0f47cb6e426ee42f69e081cf739 legacy-trunk +18456 0f42f6669e802c2ef246c9d0c6af5ccea1f464ee legacy-trunk +18457 59a45fa95318feef779085ec138fa7512c880013 legacy-trunk +18458 3fe59ed11af10e541286f6bb942e0b72d1e1255a legacy-trunk +18459 148b8c1b713a9da9a08b015cd5d4469847e77b86 legacy-trunk +18460 d5c9dd24d977b8c70452b29eec53aef48e8deb9e legacy-trunk +18461 6630cca298cc0eb9fcda72a5087c03a824c103bd legacy-trunk +18462 53423ec0a72884b057f46124ecede9c203785f76 legacy-trunk +18463 e23d5b2e228c42c238b63432d1524722c8dae273 legacy-trunk +18464 987c74c8842897d6f836689e2b7a1d861ba14c79 legacy-trunk +18465 15e1eb1019b8a37af488acf36debffb7bcf5b147 legacy-trunk +18466 e1f2e3ec76d4fe6afbf46fc7d02ffa94f5f9cb6c legacy-trunk +18467 f99bb6a92e84f781a67ebfce651287944e826b91 legacy-trunk +18468 59bfbbe581c2d0ba9e76c84a71bb5bdb347cd988 legacy-trunk +18469 ff0767753d813dc080b40cc160adaab55ffc2e04 legacy-trunk +18470 0906c8e2c961c3b03f1b3aaf3f80c537f245bd48 legacy-trunk +18471 ed315b55f19e62faf38cdd0374b7efc33a047556 legacy-trunk +18472 2fe7427591ea967fc87b0d91dc269991c6d10b28 legacy-trunk +18473 e57f93ae4fe9f6852c2ce9ba9708e117e41bc53e legacy-trunk +18474 35749a557f1e5d6d0ba5a7f9b3efc502f13bcd96 legacy-trunk +18475 7bb7b72fa6666c152f042a5a12edbf16a3864b69 legacy-trunk +18476 0789dd062d6c0833d01fbb4ff1b423256c853e84 legacy-trunk +18477 e12b650f0face6d1f87fde9cee91aff54922c031 legacy-trunk +18478 052e372ce151c84777f3fdd9a28b0b212f4e5f00 legacy-trunk +18479 d3e86ff893b1056d7e06517d1e9d86a5846bcc59 legacy-trunk +18480 50d9b590627d64e36d29a0583bb74d73e89e51ea legacy-trunk +18481 30ec873338ad15644fde7faee24661d0c9ea7d4b legacy-trunk +18482 8262bfa514c2c00293e736d26f5ba8c67666134e legacy-trunk +18483 f5949397c8a588ff6ed01d380ea469de145cb60d legacy-trunk +18484 db69c092c906d397934b3023d67829b89311c7e9 legacy-trunk +18485 50de3b198a6205b05700cc2a3b807ebdfaedb337 legacy-trunk +18486 38f09fb18b8020c77a2c6c9d68a9f4dff3ec6cac legacy-trunk +18487 538097199783986d34b75eae680ccd5d3ef672eb legacy-trunk +18488 7e2bb994c2d3ac6e56302e12b8d3486423ccf6b5 legacy-trunk +18489 7f22e34ce40e3eaa2cb92ec56cd7fa8d789e42cc legacy-trunk +18490 50bbeedbce4a683ba3063f83bb202d82341786fc legacy-trunk +18491 db7ee5c60af0b87d2306c0208649c766108d6750 legacy-trunk +18492 552db8d83acd896d21d63bae6df0b9d67d2520d3 legacy-trunk +18493 19756b9180416626f9548e782a136ec67fe11aa9 legacy-trunk +18494 2a612ae2509592a2c38098c34aa56b1f711eea5a legacy-trunk +18495 446f3f939df03976657e191cb3c2b9026df00b46 legacy-trunk +18496 8385518697904d893b702c405de4249c929d6faa legacy-trunk +18497 2d6e7689dc42057952bc62f2745dec5aac76693c legacy-trunk +18498 7fb7c51a2e6162007c3eb3c5ad75c1b93aa4d2d7 legacy-trunk +18499 7639a9552479e3093daca82d370ec0ae11656b8b legacy-trunk +18500 7fb5099be20269bc50b723b573a0b8d8b903aada legacy-trunk +18501 c4bec7c4d6ff64138dce2a2c80df64c2b8e87428 legacy-trunk +18502 f0cda0d4b53c20826a8e583aa0301754757e736a legacy-trunk +18503 19c8a2d3807d58da040eaa7d3ce6f388c1f847a1 legacy-trunk +18504 63b80b77f5b2db309f9872a6eaa511026fc82d64 legacy-trunk +18505 8cfe26ed728d942d0d52f1a45631dcbced50d9b2 legacy-trunk +18506 c13f5a20ea312338a1fd69b34dde1a5ce28c1146 legacy-trunk +18507 5b158fc0ed555a1ab1e84245193231a01901e672 legacy-trunk +18508 e9f4b76699aa2310dcf1965c13387978558c1704 legacy-trunk +18509 1a4a5a936f508ce5c547fa00844718908222a7aa legacy-trunk +18510 56c74483b050cc21670ef57493e0e41935231419 legacy-trunk +18511 2f178bdddc1637d1b15c28bbcfb91a76764865a3 legacy-trunk +18512 927bcc315e56e8301f2c55e7b1cfa475967f9da9 legacy-trunk +18513 3e254f56eef1cd5c4f2765f4219f89dd44c15569 legacy-trunk +18514 82bec388c63629aac5b840a8a81d4654e8f29891 legacy-trunk +18515 6405f30aa08c2cc5108eca6e33f7e39394a835a6 legacy-trunk +18516 83d599652b622b539aabedc8a0df820753116299 legacy-trunk +18517 173d70e72c9f65ae8a5a96d2ee8a417411db8c59 legacy-trunk +18518 026a9210514528c4dbefdee7e9a6c235b7702f8f legacy-trunk +18519 56ce38e575026bb3c2b06967479429ed66a4513a legacy-trunk +18520 6585d3c04a29d8569ad64d68ba0af51cdf2d9277 legacy-trunk +18521 eaf5a78bd2827118a26166b30903b4d64a812d07 legacy-trunk +18522 afad65975a82e5c499ace310721832138cc2b7b7 legacy-trunk +18523 5f3ee5f1b3d797f9edf48cbe2b7bb73773667842 legacy-trunk +18524 1e4171717e77ccf181fc6c1d3b70892e9d843acc legacy-trunk +18525 183d0bd2fd66dc2ec54a08676f420e52f8416e5d legacy-trunk +18526 1690755c5986babd344055f6a8fddc86cb5feae6 legacy-trunk +18527 90ea1e3eeeb14d343dd91a4b001db1efd1ea6d70 legacy-trunk +18528 3d55bf65699addc46a0fe82612905aa528077459 legacy-trunk +18529 8b4ca5da7dc265d876cb31237199ea67195ba6fb legacy-trunk +18530 5c65e676f2996c50f0864b4f048382fa98bf9954 legacy-trunk +18531 51b5898040514f83be74a734337714b9103fe98c legacy-trunk +18532 c3c8bfad07ca32c329c8c2e93d6ec62a6f547ece legacy-trunk +18533 277a7a15eb94b0536152c55eaed0c826e7a6710c legacy-trunk +18534 67b3ac439f6402280f957c310915a35f2de84c4d legacy-trunk +18535 75c3a64847c49af2076532f5bf53f10d044831b2 legacy-trunk +18536 93a575bba09f6f85688a7b6eb67ce99ab548a8ed legacy-trunk +18537 3f2ff38cc6574ed99c12180daeaeee4ed9e50315 legacy-trunk +18538 29a2a114e9c9332c68d0b4014190e7d666651afd legacy-trunk +18539 01a4dc31b579b24d1b667e4524b0e05d9a73b629 legacy-trunk +18540 9c71add7e160818aecca27cc1b2aa936fd9d08e7 legacy-trunk +18541 ea4832deeac59f17a0b753e065dc4871da2ae0e2 legacy-trunk +18542 3ca702caa61aeacc6995d0cbfda8a862a4ee10f5 legacy-trunk +18543 a519f207ed368723dc2096cdb8b4d08a16464ef0 legacy-trunk +18544 10612cbb4623adefb96cf69de982bf0a17a5460e legacy-trunk +18545 ecdacf517594525daa5b8e8c244514e309328a03 legacy-trunk +18546 d6f86619dbc734fae3c3de475e5a9f1102c5c8db legacy-trunk +18547 986d1c3ccdde91a1416c935e88ee53d29eb1c01f legacy-trunk +18548 e8f5e61a8b9435a83659511ca14aa016abd92e4d legacy-trunk +18549 84cdc89ac561f982ab7b98a3d46d565a60a74f9e release20-maint +18550 175a3b17206880a28d7f416fc110c8ea2980549c release20-maint +18551 556a4e53c269773391881c615dfa17a10d3ed28a release20-maint +18552 e605624000bf19105069b07a0c68b246afb67a53 legacy-trunk +18553 f41705304af442f32ce906dd2f4d8991146cf09a legacy-trunk +18554 280a78ed003552808dc44cbbf7c576266ae19d4a legacy-trunk +18555 6f1453bbd56902eb4fa75171101070f1b40f9ef6 legacy-trunk +18556 139684a90041a0ecc89076a765a4bf61cd593e52 legacy-trunk +18557 57a4857430ff5d25771d5cf2432537f1e483b99c legacy-trunk +18558 36f7c09c2d7f243e6c3a6f5cf77fc097fe5a027b legacy-trunk +18559 0c22af2cdd6fb37a7109894bb6217b21a2447f88 legacy-trunk +18560 8e01417ec0017ab4e4f259647f3f64d83f983388 legacy-trunk +18561 4b168eeb61b3b7c74c68bddbaf0ce62344f64106 legacy-trunk +18562 5a5e9e7fb6b212709c45abbc8e64ec41b4bb5a6f legacy-trunk +18563 1997dfed8d21d6d9f5ebdd4d5d0c8e8ef41165d6 legacy-trunk +18564 f6ee0d4672d6296065d6b8816ea0815fe34bb310 legacy-trunk +18565 612fb7727fa298e16f1cc944af3f8d666f958e93 legacy-trunk +18566 b408acdcaf3eeecc5ff0f2a1bdcc80de7800dba3 legacy-trunk +18567 bf9bb0e3dd3413f306762fca19be83da895196ef legacy-trunk +18568 3075a153a083e229bdca2febaf01930e1e01f4b8 legacy-trunk +18569 e2978c0b7cbd6921af96a39d341b0bf0a95207a7 legacy-trunk +18570 161892bf7c15efe98edf49903efa901e2b4b531e legacy-trunk +18571 a626e39d684dc23fa6f5f4aa61de7986e5d9f0ec legacy-trunk +18572 2481b5fe86d6dce7ac4603c33b9515a6bf431916 legacy-trunk +18573 901f38f7f6f75507752d036a2070407a5a1b3cd1 legacy-trunk +18574 3693abd0eac1d41a47087e0276e754c563ffc189 legacy-trunk +18575 2a305129d566ec143e4272a8b050bf285619fc90 legacy-trunk +18576 4d978ad8fb05d604ea974a068673b72d8b90515a legacy-trunk +18577 362e53f43dd2361b90988fe64c8282ed9438de8c legacy-trunk +18578 c656f308aa1f87fcfddfa23adfb80b5800b52108 legacy-trunk +18579 6e2ec8f7c871f74a3bec2ea1fe6127f1afa9d5f3 legacy-trunk +18580 265f4ef7d7b1d0d625a34306ec06ad8d90683ec7 legacy-trunk +18581 061252f5c7296cd346848ecc341a8ef62f48e596 legacy-trunk +18582 ead8b5b994ad7ce612cf60ebc4602cef5e4aa375 legacy-trunk +18583 3e862a51861fd6b6dcf192e17d8bf7d350dc5a32 legacy-trunk +18584 ac7ae3ead88a44aaa3549af00b5fe7fe81ba36e5 legacy-trunk +18585 2dcc4a86a876a71f7c6a9e737ac5a63f5c360a20 legacy-trunk +18586 8e402aeca0a3d1cdf8dc34bfa0e5f478c7e9b239 legacy-trunk +18587 db9f1893be01681667625aa348e3a8bc9d05542a legacy-trunk +18588 641ad6c833be804cadf5ac805e2aa373caa302bd legacy-trunk +18589 4dd0b97aa6e166928b0c5a5a26b90fd9d99cd099 legacy-trunk +18590 2b3bc08d4d853aef40484f13d97a5a5825fa1bb7 legacy-trunk +18591 d3c7ed15ce25778eb9511fbf1071a83d84ff65e7 legacy-trunk +18592 a06415994cb56a786f61f5e1030094574bda7a03 legacy-trunk +18593 3ad3004dfe6db6d9d43a866827754fb20600f323 legacy-trunk +18594 00c6855d742a8d2a51883f68e794e7ceb8a96a3b legacy-trunk +18595 317c203abee686cb6bda287abfa1d52e99f0fe3f legacy-trunk +18596 85dc0ce0162e6f3ce656443e0a4640e6b89e7e15 legacy-trunk +18597 6124cedf8438dc86a0f8395243fc94a16f36be68 legacy-trunk +18598 27290eb9c5264b07b95c5c9dcdffcd546d91f308 legacy-trunk +18599 76caf0855d1ffe7e971bc1102ca89290a99cf83f legacy-trunk +18600 97821a46e000303a6b82c0923161fe0bc05fb0c8 legacy-trunk +18601 0a77013c50aca2045b14884f58318075c77d3192 legacy-trunk +18602 9d15baf7145aff2e505c0f2b3bf45aedbb1d8894 legacy-trunk +18603 abb94609318e6c4340477d0f216b3b6223a4678d legacy-trunk +18604 bf80866824ecb5ef8a78c59a3888ec119700c3d9 legacy-trunk +18605 4c043e227c4407eadb09f1f1bd38899fdf24d4cf legacy-trunk +18606 f5c04134f4e2bd7ad3a9dc8c5abca67a03b192f4 legacy-trunk +18607 4dbbf322a9df2cfbb55890ac415a43b6cf2a6b75 legacy-trunk +18608 fa3f537c8249c44aaf660556a5a1ed3229e27080 legacy-trunk +18609 79f9e333316e6bcde2b09ac1c07ae4597a65d8e9 legacy-trunk +18610 77c761cd1272e9b03043be5a26ab3d64362792e3 legacy-trunk +18611 d67cfcc0683eda84fd1641555bb8e01952e4cf63 legacy-trunk +18612 939b8fffc452e0525b380061b632868d355e6e9d legacy-trunk +18613 c0822a05e923b6f50094d8590d4240ea819fd8b5 legacy-trunk +18614 8d00f7555eec2782f850ca0fcfb98670ff3afeb8 legacy-trunk +18615 7c8fac4ac31abd58c931babe26fe3c09f0043b17 legacy-trunk +18616 a43a8a1f46ee1bb65c7473bc9be69e2a3fb5360c legacy-trunk +18617 45979cdcd369739cbb859a85f5f6c5d655a49475 legacy-trunk +18618 a9e15bcab32cb60133db7610f01b3d26e9ce152c legacy-trunk +18619 a1d88ab023a0becd5defa50b8c3536f34ce1e729 legacy-trunk +18620 a31c3868c812fce7666d124b8cb5445f6dedfac1 legacy-trunk +18621 a56c000e579cf7e435671efcb8a7523738f52900 legacy-trunk +18622 95ee79dfd746231867d7384eb0b037a4fa510481 legacy-trunk +18623 def416cd923df22a8b1afda40c4ca649d8690d0b legacy-trunk +18624 35e08dd37df137e1652856805e9395c2ea6cfe26 legacy-trunk +18625 7b3f8e761a2d82db376c2833078b4859de1385cd legacy-trunk +18626 6d8f7e1242c029d8162898c31d6646a05b203d27 legacy-trunk +18627 d6e6a5cfeb3d6b7d01ae5fede6c4697ec428382b legacy-trunk +18628 8745fb3a119172ad8eb3f804f9a0710e0f5fbf83 legacy-trunk +18629 e791f4905d2561c27fda15da32e35ad71f2b70c4 legacy-trunk +18630 fb143fb236d0af4b654f210fb688afeb4be83f9c legacy-trunk +18631 18a6e6d9b4f88bef39f634d4be7c3506c024ec24 legacy-trunk +18632 0868c361af5afda2ff2ace3901367936572ec1b7 legacy-trunk +18633 edb9666c07c04a8f9e879cc3a9c45e5f09204fc6 legacy-trunk +18634 076bb29a65dc4b093ccac3287b01845a9439d0f7 legacy-trunk +18635 5d6fb7ff68c79a69fce44c04b13cac0cf1473c12 legacy-trunk +18636 e8aad842473a4a5dbc19f5de780718ef2419cb57 legacy-trunk +18637 4370fc19697e4a96930de0b9c879689e0e5ce0a4 legacy-trunk +18638 5076544c338b139db9a6ca0839c50a1a39c3ad9b legacy-trunk +18639 b5a37bf9d12da7a21148e25ca7af66cefaa078f1 legacy-trunk +18640 c669c29d1b8cdf9bdd80a283aeab0b79214e2320 legacy-trunk +18641 d646d606892430d16222c5f0ff584fc0ee036a09 legacy-trunk +18642 b1c5778480a19f95637b0ee1843ea75fd30a8922 legacy-trunk +18643 ab53524442057eda0e228f82cae30f4979ad6bc6 legacy-trunk +18644 fca2cf850e4acf122b4e1200a2efdc0b1353a2c7 legacy-trunk +18645 78c4b63b5b9d354f72e3d69f409d9639e6132ce7 legacy-trunk +18646 eff11fac5f3639a991c24126ade5ec6b464de94a legacy-trunk +18647 83e146974b72a4a97f2860b22f5385c063d98c9f legacy-trunk +18648 b31a046f88a7724129eda583ca7d8439de0b8bdc legacy-trunk +18649 ddd3d8c2cca0528a8ad52947efe0ed1dbb1af8ef legacy-trunk +18650 9e9556924b0a7421e8cbb4467bb7d3edd08c92a3 legacy-trunk +18651 1db3ca9530c2863de7bfb0bd099d7df1b6fc5184 legacy-trunk +18652 4854ee585e0df881c802560856b68d0d24bd0a60 legacy-trunk +18653 013179376fa35e53e060ee570f79e11550cad09f legacy-trunk +18654 0fdfaaea5e2f9031ce301a818ba3a0e19cfbe439 legacy-trunk +18655 b7d5f68be017f4c8039bb857afbdb19d92f2a199 legacy-trunk +18656 63c0483eff68ff8d22744968c5fd6828c6b3f88b legacy-trunk +18657 b57e3e374314e353b5a870aee6f7d7437bac5425 legacy-trunk +18658 edd19217b39695da9ba76976eb7cc846d1329650 legacy-trunk +18659 d027e85e209f7d84d19dfc8dfd53140641bc1f63 legacy-trunk +18660 5a308a9f99a56647fdb3c2d3a41cf824ced58a37 legacy-trunk +18661 3a260274bcc6a15b4ec6702f8b10c3139d7a9fb9 legacy-trunk +18662 228ffd36a0ddc739e0b793a460484fa667a00a3e legacy-trunk +18663 eb1767b068fec2276f732a928e4d16d26c411709 legacy-trunk +18664 9b6814bfb2c0d9f5322399281ce9acab11836fc8 legacy-trunk +18665 37819a777fc0c49ef430e47a0ca3d3d791626fa3 legacy-trunk +18666 5415804fb345c69224bff17f91fafd85bbac38de legacy-trunk +18667 3b9b8f2ddfe796bcd87308094e9782ed4b38dad3 legacy-trunk +18668 22fed2b15a54b2b5c1a5684aafab75f6e235b2f5 legacy-trunk +18669 37d12021df05113459741b82f4533ebdb68124b5 legacy-trunk +18670 f9772f87b13e3d0fce6da5f7ba2507fedd68bb66 legacy-trunk +18671 954611fd35e1e940d46cf126ebc1ba71a4f938b9 legacy-trunk +18672 1a00d21910c89f1b38b12a8653c1a262d6e5799b legacy-trunk +18673 a563eec46c1abe91f6a13c00a619002316c19623 legacy-trunk +18674 064026dc764e89e50e7a80aa7b1efdad48305f09 legacy-trunk +18675 faaf9f10d849439e7913c9d452860d343c3247c1 legacy-trunk +18676 868d2acf745808c9033f57cd5829d97a69ecf56e legacy-trunk +18677 c68b06249d8a21467a7ae53c5f3b6c4bebad9a04 legacy-trunk +18678 645f8fd6fa9dcc59951cc2d29d269805288f07e8 legacy-trunk +18679 2d399065624800418260ef7f9d43bcec985526c1 legacy-trunk +18681 79770ca15c5a9f52914b162cb901e5e4b3ee70a1 legacy-trunk +18682 33b444cbadb992a7e57291bb9e753913b87a6bed legacy-trunk +18683 0f22feb9397db9b1b807fce604d7f86d94a0678e legacy-trunk +18684 c7dfba0db8790b004d11fbc3b5ba5571fbd165f6 legacy-trunk +18685 9821777f8dad6c0f45f32db8353ea99071dcfff8 legacy-trunk +18686 7f7ef9447e59fca4b8e20a52bdd3153357dfeb04 legacy-trunk +18687 4328ffe647bf7beafccdd7558138ee2d8b783983 legacy-trunk +18688 174490e924d47f192bd98fa8dd2ee53d69f507f2 legacy-trunk +18689 81db92e80ea8863db999fc9eeea364fcf72557f5 legacy-trunk +18690 05ad297e144fe97de52ee02b750448880c120cd7 legacy-trunk +18691 9308dc8c85e035c444b5d4fa7a2991b17401307b legacy-trunk +18692 e00f718e4d8ab395e68194e3dcce158e7ccfbda6 legacy-trunk +18693 9a2385ee1d99446407617855c84d624ee6bdd932 legacy-trunk +18694 0ae389e935fc416eb87437bcd35ce39188148c3b legacy-trunk +18695 7ea30a1634636d8feac2d64e8bb58c3cf9c2b11a legacy-trunk +18696 6e329f3e17f0e539a628d88d30356ba1d6f28153 legacy-trunk +18697 b1b0a703ec4e6a3b0673d13d2b3bf15740b6eb71 legacy-trunk +18698 0e4f48c5fc84d8806053d9c685539086347bdbdc legacy-trunk +18699 bb303a76a47837cf047266bb4679e7b4cb6d1556 legacy-trunk +18700 67c8abd21025a542fea7636cc83a1488e5705755 legacy-trunk +18701 3b643653e07820bf5735b26d56a6617853ebd879 legacy-trunk +18702 7d5025bba037c6c4fa51091b988e595a65a9551b legacy-trunk +18703 17eba7404099ce53d3f5862141adbfe293e2d1dd legacy-trunk +18704 f6cd36498a503f3165167312fdd5ac866a88c292 legacy-trunk +18705 601c53a9e49df1fb20a92e8f641f0c6d22e0376d legacy-trunk +18706 283356fb6efc759daa79d451571844d0e2227a6a legacy-trunk +18707 210bbe53b6d4ac78bdeb474733d1a9493be70883 legacy-trunk +18708 d41f9b0a40caa6147895ee4ca2576a0efb82b517 legacy-trunk +18709 679d50705e0695e1166b4352120bc1ef43ca75c4 legacy-trunk +18710 405a597358416d02a40905df492caf6a49b04e69 legacy-trunk +18711 17d3a63e22c7428390f8221257c2b87e3dfec8b2 legacy-trunk +18712 c7042143399f31844a2d0a22421531203fce406f legacy-trunk +18713 a3c1a234cee718414cc27c8ceed0e680bc3ded10 legacy-trunk +18714 0d8b5b3d9d83d066ced681b99e3a2cf62e6c768e legacy-trunk +18715 a84b53ba90c41dbedca33cf436227eeebcea6f02 legacy-trunk +18716 fc765464b178012c7cc2ab9b42481b71bd0bd59c legacy-trunk +18717 152d0071800609d50b0ca4e962fee7a778523d95 legacy-trunk +18718 8c71409ac0c394d196658698e89541de52215a11 legacy-trunk +18719 0a8da6f397b78f5818d90787841709dee8b0da8a legacy-trunk +18720 81e3d8626adf0f790579ba8951104291aafec2ab legacy-trunk +18721 31967a23360092a5c87f87db09f8482dbc1baa48 legacy-trunk +18722 083a5c75ed90452213b484604608962b8d22c1a9 legacy-trunk +18723 e7f6d54c014d341ee53a375c9f5e7aa1228c37db legacy-trunk +18724 fc1e5831fe1077b7821ee3d5ffe0558f9665c6ee legacy-trunk +18725 71b19d36aafa93feb003c214027902a73db7259a legacy-trunk +18726 1b03f76ab03ea74255eb75452b96a4995b94c8ee legacy-trunk +18727 5578e9b424d4aa8ddce56ea0acfd2dc04bbf324e legacy-trunk +18728 70a59e3fb278bb520e97137bccdc55a8d88d69fd legacy-trunk +18729 f5a3d98a35bc4bdc74a84fba6eed859d0f07ad29 legacy-trunk +18730 3060cbfa01be6dfc6fdb88f0f5c10b73bbfbf06d legacy-trunk +18731 1a4c1c0e14a13f595265ab64cb14cc49138661a8 legacy-trunk +18732 010d0385354646f1570051f1936f65074331de0b legacy-trunk +18733 62aeefa01fdd554e30b505e5e037754de71c54e4 legacy-trunk +18734 3685ef2a55a48e3d6c00a918ebaff730f3b24df5 legacy-trunk +18735 3dd217fbdd59b1ed268372187dc81d9f15809eac legacy-trunk +18736 4c01ee0a8073f9de48d2c0f57d8baf8f5d637113 legacy-trunk +18737 195557a0f050b81272e2a5a6157e10734a9223c7 legacy-trunk +18738 a33de23b3066fbcdbb27e916f42e840887ed83ae legacy-trunk +18739 93d0567c9fc9cb1f14e8372f111f3f5ca8d23e9b legacy-trunk +18740 751215fa0da7f3c31267465f4cd0967581b2a01d legacy-trunk +18741 90992c82d46e9fcffc4f5af4608114cbf046fb39 legacy-trunk +18742 3ea10ee91e9c5e5d499b84b0098d12a4dce3eb1f legacy-trunk +18743 41546353255c7f0a9b84345df10a4128c5c4f17d legacy-trunk +18744 190d14b70c27b8f55320c5992441b101c447e73f legacy-trunk +18745 f47d1cbfbe706324b9a6e3d68f3f5239d20eddd6 legacy-trunk +18746 7cd46ff89bfc3b0effe18c8954c6fc96afee2689 legacy-trunk +18747 e6a0fd54b6072fa84a28ee5690a280a3ee2fb36e legacy-trunk +18748 a7025f0709c5b99f9508b8226c1999506144a5d3 legacy-trunk +18749 f83115edf16af6ad6b47e87f0feec95bac7bc9c3 legacy-trunk +18750 b53206295bdfef754242952c4ac24fd939802d0f legacy-trunk +18751 b0ba46b16e075094fb044c95eb937d542aa724af legacy-trunk +18752 7cbe45d79ab5c0bd062072116f17b22d79687390 legacy-trunk +18753 18c4c7ca93ea06a19cb33171abe61bf5b583c8ba legacy-trunk +18754 8ef31a039a9640a05751a136612ebe98b5966733 legacy-trunk +18755 553a315f58e92fd132d14d6ed8d87b7cc758cca2 legacy-trunk +18756 1c6b0d3a58eadb5567fccddbd861fc7d94844c45 legacy-trunk +18757 8764dffbaf234e19687f229fc81da43b9d33e774 legacy-trunk +18758 c87e2a2e335d0a2902625b52e1ddf4fcf2110fbf legacy-trunk +18759 c568ba9dc180a2ca230924f514a012d98367dcbc legacy-trunk +18760 8366fcfb60904cfb5faf683d6241c9528bd33aea legacy-trunk +18761 152814f6cd1133e7b32a2776afae724e3348822d legacy-trunk +18762 1129e16a11dfb357917d5a6a8c1d142919711e2e legacy-trunk +18763 cd83f7a9cdcd1f3159e6391ba16c106b60ec0a1b legacy-trunk +18764 eef321b6e41ce663c686b7fb6398fa6fd38de6e9 legacy-trunk +18765 c9ddbe3407fa4400da9accff4f07e75e29b3881a legacy-trunk +18766 149458a5740af1f596d5aeb78b8bfd185a23e6c4 legacy-trunk +18767 13e5eb006eb321bbfe4939c32a4174bddaac50af legacy-trunk +18768 50890e3454c950a88eb4313e504ba6ae8a1043bc legacy-trunk +18769 1325bde94896dd5dd36f859f151152c3fd4247a7 legacy-trunk +18770 98e95e0f5bec745e9e010279fe7e0af967be95bb legacy-trunk +18771 8db319ddfb379e7cf6a779821731086916ede529 legacy-trunk +18772 f7f3be3d00b9c9ded6c4fb61034d1eceec4b2cad legacy-trunk +18773 a8edb3f7f4f83b95a053bed054135c193f01f06c legacy-trunk +18774 e8246440a825c94dea9ad279ff6f6bbbd3148366 legacy-trunk +18775 d7d166550c4339faef98bb2197ac23e87c0862eb legacy-trunk +18776 88a1267a3395eaf133e1984915b02d6cfec86746 legacy-trunk +18777 18511e1128700d1ed5b8d692e9bfaf82a0bfed53 legacy-trunk +18778 ae636b8ac4808df4bba9cfabb94821133963ff0e legacy-trunk +18779 a38190f71bf2b5f577ab5233d0fe524e5381e330 legacy-trunk +18780 ba6d4b52180a77ffdc662130e2b562820a77aba0 legacy-trunk +18781 be257a7553a2271663fbd105d3f1666d2e49e074 legacy-trunk +18782 007f7faf62b20318f27da0db1b484196d433545a legacy-trunk +18783 489692e79151432141480e1cc04ee862f00d3576 legacy-trunk +18784 fda9f86dc4e84455db939b56b70120dbcc8418ba legacy-trunk +18785 ff6c30e8ca73c869cfbd12c440fc90de90b4fe43 legacy-trunk +18786 702ed9965228bb07b60a7f7f0a50e6a626e324ad legacy-trunk +18787 9d5beed0b93fdf35acf21195f56a9bf4d4d37f2b legacy-trunk +18788 ac13cef423c833f5d12797232031513694152478 legacy-trunk +18789 c959f4b3efa11ae49a31796b8adaee2b271ed85b legacy-trunk +18790 1872e609a634c02c143b187079c5b52c443e1cfb legacy-trunk +18791 a484593cd407e1c661574a071fb1ffa186753d84 legacy-trunk +18792 14a27acc755ab4341fb77cc8c66d9ee422710a0b legacy-trunk +18793 dc3b9a581686cd8c4c4a92dabb21a46e24872745 legacy-trunk +18794 1881b968989b88da73db84650537455056d6dd1d legacy-trunk +18795 35a4194f9ead9b96fc63f52201ee722599fa4337 legacy-trunk +18796 b1a5edb80f5cfcecb5b316ba26141187239b4ecb legacy-trunk +18797 0b0fce14d4e8826bfc6bcab31dc8b77491579fed legacy-trunk +18798 bec0f61cfcd56e0634db7f7e314982a44dc78628 legacy-trunk +18799 d9d0dcb735d7f7ac457275d1c1507a014f8d6fbb legacy-trunk +18800 8fd221aed35759bf09deb8362049ab72cf4c0837 legacy-trunk +18801 867a4a6e7cda877f87b6ce00d375f828c6b49e1b legacy-trunk +18802 ea464eda61584b89894230585d1a34446b2734a8 legacy-trunk +18803 5abae795742ea96937dfeb1bed26e863d0050e34 legacy-trunk +18804 64390ceaac1af9cf968fc00fe431675f58d8f859 legacy-trunk +18805 5b063baebef8c6d57cd94fdf1e050e208eb52089 legacy-trunk +18806 f464a03be85ae6d912aabe0d5534fa1af8679f1d legacy-trunk +18807 2edf5ed305839b1ccf2541173e618487a4474d0c legacy-trunk +18808 4f621708514b1aa5f21a06131041259efbc009dc legacy-trunk +18809 6a85248b439eaa3d908ec13c62e098b02ea6b535 legacy-trunk +18810 3bc2440427d331cfd217a90f65d636ffe70438b0 legacy-trunk +18811 76ad2a9a3e534e1c0564b46335339adf5adc20d7 legacy-trunk +18812 f2e13895bda7df51807716fd0ae01cd0ea5c09bb legacy-trunk +18813 db26b43c924f30dca074ebdb7352452753117e86 legacy-trunk +18814 1f92d63b20f023107fa59eef40799784e8ff6329 legacy-trunk +18815 8349b4dfc51ade63d24fc9c0b271f21ff17ce530 legacy-trunk +18816 01eae40857d83dbe59aef839a8683f9edf4a6738 legacy-trunk +18817 283a0b2aadc5f2aa94abf3fa6cc63b746eeecfe3 legacy-trunk +18818 857aad842ae7d99d1282f30dff08ceafcc09833b legacy-trunk +18819 c1a8deb15f0e066ee1a10a1734276070a0bf31cb legacy-trunk +18820 c8205552dde1eb68de0c8bb5f656a941a9098e06 legacy-trunk +18821 fda3ff19d1c4a969ea64854ef243dcc5db7b3211 legacy-trunk +18822 d73b21dae29a2ee89893d04a964f392ac0ea4aa0 legacy-trunk +18823 c0000bd6252c68032504d14f214735a81610bb5b legacy-trunk +18824 f1751abf771ffc4acb61199632c2a1975ea945dd legacy-trunk +18825 cf17a3ce538743ed23af32ae6d0caa5a4715ee57 legacy-trunk +18826 dc8a30b8887c8073be5a7d22d9e83e78c553be64 legacy-trunk +18827 5abb47304bc7685e690c5de0829a5f99ca233dc2 legacy-trunk +18828 e59b835ad89a52ecf971c24e5cc1f264de9b1a89 legacy-trunk +18829 dcae3e08d84848573c2f2bc97444e77d9b3c7f4f legacy-trunk +18830 5bba85d49e5af8b6c294d4aa19ffba2a791058d9 legacy-trunk +18831 e21da84d0c65f0a102424ed8d868c7795d14d4bf legacy-trunk +18832 77008f07ce25daa03c472837a5aae677a4b13667 legacy-trunk +18833 ff9c79bbc3eed1b2156f7a2e777b4dc4d6237016 legacy-trunk +18834 889b7baf8bbb4b3c9dd2036dd58d4a9da7841763 legacy-trunk +18835 72139263f8a79752d231e8d399c0446ad5009936 legacy-trunk +18836 5b9103e62fac3da4cf2825f9c3a7c63faeddc90b legacy-trunk +18837 54205828b1e173c6f92e8f2d9a3341dc8260ef2e legacy-trunk +18838 51fc45276a433d7a05b5337cdba679a9ed302f26 legacy-trunk +18839 f16545f58345608b5adce843734907cc410f1237 legacy-trunk +18840 24dafbb0db58f662e5e0e3b7210afe876ab4c4e1 legacy-trunk +18841 a36a4932e399135c15404d6576ab9ffe5b825d6a legacy-trunk +18842 afae4068d2dd98828f23c643946d52d2dd0cb284 legacy-trunk +18843 d1cb4138fd34a4a969752074b770285eadbcf5cc legacy-trunk +18844 91304c4c7256f83d60275ca38ce5a858660305b6 legacy-trunk +18845 2b29319ae6819403ef033c18fcb01ff3df380c7c legacy-trunk +18846 6c1751f6afe23e0deb434b45afb4b54032749de2 legacy-trunk +18847 17f23f8cd8c77f2d5958c533afa802c048db6004 legacy-trunk +18848 bd5aee6b8390d4db220f393c71b240da3beceb8d legacy-trunk +18849 5fb86507519c09d9adeccc1fa2c554e69472f668 legacy-trunk +18850 ae29a89b77c3a1264de853e28783c6ccba07bef0 legacy-trunk +18851 1f1eff081a2a7512e822d9004e38fb8af509cf3b legacy-trunk +18852 3f4b6002c07d313da6373c9b5b97e1db6b1bad60 legacy-trunk +18853 62084cd957bd6d4d2481f567abfad6d2414dc986 legacy-trunk +18854 aacba37476d426ed2ca65d2b986b2a7b03858292 legacy-trunk +18855 eae26117986fa4b8b2225819b45e75f910608719 legacy-trunk +18856 f9a15a583c79d9a619075d23af8860e57cef39d4 legacy-trunk +18857 88325b73a6a3b12966a8e3ce846f7084c3b94f54 legacy-trunk +18858 c503fa9b265e22be2e55ad4a5cdd29ee9714061d legacy-trunk +18859 6965c205b60364fe88feb9536a8ea842db58801c legacy-trunk +18860 f390f43ac4b649a9aa833fbea2a2c59b7c0b51c3 legacy-trunk +18861 1dc02b2295a974695ec4a6d4ac2d93db28d2d915 legacy-trunk +18862 3f61ef72aef3506e27c4eda20b25e2acc44fc651 legacy-trunk +18863 f3740674ac5bf3299eff956ae8fa2971a628716a legacy-trunk +18864 e1e76fe3cb53b1525ecb5c7c084bb7cc9a8d335d legacy-trunk +18865 e8ee0785c846868cddd4873c615ed70194b6350f legacy-trunk +18866 9251cf70ed1f8b5ed5b3c02bce1720d9fe0e5842 legacy-trunk +18867 ced8041eb4ea7da95546bd74139736c34bd85ff0 legacy-trunk +18868 51811d78a9daa64fe59a3fa5a46b6c0f2775e66d legacy-trunk +18869 32352e120c379482c18812d9af264561051bb198 legacy-trunk +18870 4c856a1804587b051770549b8f4dec04657b8995 legacy-trunk +18871 2df4574d90fe6d88840ce7b8cb4068e70fd35e38 legacy-trunk +18872 33f5ee6a0ebe749ff45df2ebf806945622696879 legacy-trunk +18873 d90eeab5f9a418edf8313281419f75ac63af7906 legacy-trunk +18874 8e4dfb681689ba0c3f6ee4d9791331f1a559faa0 legacy-trunk +18875 9bc754413a8c2da3dbd305acb7fc45a07c2104bc legacy-trunk +18876 754ecd21fbef65e2ee15496575c42b9aaaec21ec legacy-trunk +18877 c832ef72499db3bd55281ddb681c34adc1146ca6 legacy-trunk +18878 8ca6d8cafcd37674f0c2f18f6a1d64d70cfd189b legacy-trunk +18879 7234d7c3c29f975c940403827ae238c84072a49f legacy-trunk +18880 21e7a18debe681b5453fbdb0666571e0e24c76e6 legacy-trunk +18881 46f772c6a2003ce9212d7bd6532b3a29d18922fd legacy-trunk +18882 7c13bc7c485fa7e1a46f7e30c697ec7165403682 legacy-trunk +18883 cfac2245a2c72e11f009a343176ea381bac697cd legacy-trunk +18884 d7f53f12dbee1ff91f7df76acccf3fe96f6a8caf legacy-trunk +18885 ce0e41ce787fff93d50e6535e0ef4bb10a91879c legacy-trunk +18886 0f8127366a3f7be271745e50724fd6eba9dd1581 legacy-trunk +18887 5dc1773c7f7c97e07e8283f7d9523f2c662ee6c8 legacy-trunk +18888 865266011dfa92a2b1a00c1ea96343654e2f25ae legacy-trunk +18889 5988f76480d6d9fa8740aaf1d10df6b9a6940368 legacy-trunk +18890 83d33f7e9fd4574788eb76a9778ff59bd1c8da02 legacy-trunk +18891 55d89a8fe963feb17b11c35e390109df03e9ea17 legacy-trunk +18892 8ba8909fb82304ecc97e96cd7d2fd27b91780a9d legacy-trunk +18893 1bf5d8b4cebe88ed092f14979dde2a39524360a0 legacy-trunk +18894 5ba45916afc7f075b2e8a31abd0c532cfc7d8d46 legacy-trunk +18895 76155112187e0addb15f35ff01a79129b27510ad legacy-trunk +18896 19eee2db2b16cb5849943cb2e16d3d81f2796787 legacy-trunk +18897 1144afb94019cda09fa925b54c999272a92f7e65 legacy-trunk +18898 73c41b49a9b80efed48cd1e2d884e91ce60e339c legacy-trunk +18899 ba295e2c73ea608bde1d8e57d2c9d50dda28d5e9 legacy-trunk +18900 b6863ba8898962d59c9d86bc6e9adf27eb9ac4b1 legacy-trunk +18901 4a6658e18f36f100c694c1e7de7fa68899eec226 legacy-trunk +18902 63a0a6d18a604256848b558dba5c534ca30c344a legacy-trunk +18903 30e31c2ab60fa59bb830b0dd7f4877222bd7786f legacy-trunk +18904 78bd97d8413ccf7bf7b443f15e60d43333982512 legacy-trunk +18905 8bac0659393ebdffde4766b85378e3af453bf718 legacy-trunk +18906 35dff4712c8e625a6dd1649344f709e26ee84a2f legacy-trunk +18907 3a56f65099aa78ddc842eb0d23fd7d930c50d9b2 legacy-trunk +18908 7937bcbbdd24a08d8fa647eb246330dfee220b2e legacy-trunk +18909 e50cfa5475f34207ce191f71a7dea1d065f536c0 legacy-trunk +18910 70bb1119044aceeeb307d59e5be12173e39c94cb legacy-trunk +18911 bb805cceb40300a8403e5732b3733ad2b84eb21d legacy-trunk +18912 e62d5aff0c3af1d2446538d8e919eb6b55674242 legacy-trunk +18913 4798dc739c19a39f6411bc9fc7e1ce6b800d2bf6 legacy-trunk +18914 75a21c230a26819f1e7778ad8e3f12989f7ec808 legacy-trunk +18915 aca05d75d232f100d96802a2ad1b2da4d9b7f7ec legacy-trunk +18916 4cc9a1ebea628ed1846d24799890b138bdb6e828 legacy-trunk +18917 64fab0047a14292a720a96fa75e44cea832157dc legacy-trunk +18918 883c7f615789099c64e57bfc15052d445011f956 legacy-trunk +18919 e3259e4bec606392d740346036bdea1a08d493df legacy-trunk +18920 4c40e9d74c5aa5d2045b80952726a3aa7a94d22f legacy-trunk +18921 564bc242ff0f083eb2b6bc705067ef35a078483d legacy-trunk +18922 596edf8129a0780d5686b4340be5cb891a0e6669 legacy-trunk +18923 6b647a5d5b7e391ee92b17cf03eb311a9bd4fb99 legacy-trunk +18924 afc6f1137ea47c924270647db68242385656ae94 legacy-trunk +18925 81285f545d546968aa1e33c92079d2e5de22620c legacy-trunk +18926 a97aa923877113c16561d5867204b2c415ef506c legacy-trunk +18927 c29da2c14417d8e069ee3e557756cae0760aa8fd legacy-trunk +18928 d9b69d780a160b052c5bac8b3ad3de4d32e79bfe legacy-trunk +18929 fe36ab4b3e9732543ad26fcf1819ff4255b05a5e legacy-trunk +18930 4db664389415202db9a91ae1bdbf6dd7003d95a0 legacy-trunk +18931 68a803b4d6182ab4c72a5e0a2fd10c56517562b1 legacy-trunk +18932 b5345e99596bea9844b7057e2510d135583f3ba8 legacy-trunk +18933 af7d7914fbf99bcb243cac17df21bc2d92339aca legacy-trunk +18934 bae889f44cd1fddd225186de92bb9f11ea94e764 legacy-trunk +18935 713ed6c6bcb534fd3f0e5408a3fd818cc327335d legacy-trunk +18936 7e55fa93f4dbc28790e4ac030d669c4b4fba037f legacy-trunk +18937 50bbe811b344c906525fc4afd0c10926aa9578d8 legacy-trunk +18938 eabd008b36ee7feca7e2be86486fdf3a9ec16176 legacy-trunk +18939 2d3e60179d7afead7160e4cc0370be65d98b384b legacy-trunk +18940 91a63df7eee418d18716b851d5cc5198b14469e5 legacy-trunk +18941 c4355905b044de10d5298c895b8fc4e64cb771cb legacy-trunk +18942 93f836432c2bd2a028d123a59d568a3399ad35c0 legacy-trunk +18943 1b6e457d03ab6cb5e3283ef264a80879509f3721 legacy-trunk +18944 e2b2b043ab4ef9755117bad5296cc0a8f6ff59ae legacy-trunk +18945 abfb11f8e051a013c3822bb9c45f4f36e5c2d2b2 legacy-trunk +18946 4c307a12dcb976a471666a653158e7780fe2cd48 legacy-trunk +18947 d56b49265310fea4da655107240bc079578cdc72 legacy-trunk +18948 481c3d50a4e5557c5b5c715cea48f6855e27e822 legacy-trunk +18949 263035bea3af210e2448989c7423044b0f29949a legacy-trunk +18950 dba83809a77507713023417e24a1fe56c1393e26 legacy-trunk +18951 6e143af84927a86a158b5d3145140f2908defae3 legacy-trunk +18952 8ac40d48a5814bf971bafe0111003303bf5f433d legacy-trunk +18953 45c065668ea5c8f99c1281b76dfa4ec7c5588147 legacy-trunk +18954 f3f6b7598bc5a052362467f913c23a146fb8cb67 legacy-trunk +18955 0c1acc15455f0b4b0e293ce10dee8039e7cac867 legacy-trunk +18956 ca46d3454269e69d7aaa5a930ed5a1a6c5f6ec42 legacy-trunk +18957 ab02f1741a28c7cc1707cde1607ae08692240c86 legacy-trunk +18958 fb67122e5c1edbae7b511f736f096262b3cd9b0f legacy-trunk +18959 e3536aa7ae4ac4a4a1a5e1a36cc60e80adaec6de legacy-trunk +18960 fb767a44961e71925979a3a3fb28969ef9f3931c legacy-trunk +18961 967abbecc4041a22e11326423d91dc1678f4e7aa legacy-trunk +18962 ae296229f426957e68b5d44c9841914c0b08bce6 legacy-trunk +18963 3fcd7f465f349fcb8f6325bf0ada80e1ff09c3bd legacy-trunk +18964 7cb940c156451ee3e50e265a6ee1e20a9075c7b3 legacy-trunk +18965 e0418b1f5cb7cb170d2259f7fa5807e73c4471d7 legacy-trunk +18966 bae9abadee22a4883807db6a1f6dca823b4a254d legacy-trunk +18967 d69571bf784267bded744f87e4b86ec032f52beb legacy-trunk +18968 28c414dcb3e18e543f000916482da9467b0155e5 legacy-trunk +18969 dc1c57714b3dd4f243f60cffd1452a70af53b24c legacy-trunk +18970 28d8ccbe237f683d21519681a3d501cd292abe87 legacy-trunk +18971 4d451c92bc50b2d6445a9f618ecc1ad0bb965c91 legacy-trunk +18972 140d45aa09dc09d601e794cc629501589f0c5f8c legacy-trunk +18973 e0824b3544fbee81b263771dcfbbce4059eb214a legacy-trunk +18974 a059d13605a0e1799a2c409027ad79f812a1a831 legacy-trunk +18975 70666b27c1b1acdd712f3faae71a5db08c7ea558 legacy-trunk +18976 44fd1a7cb27939af1dea4f4847b1870ef92fe3b0 legacy-trunk +18977 3e13524ed86cc0ec34fa519d7c406b9a69f93438 legacy-trunk +18978 60fac62f6c15ea060086ce4aeb3758b32a0dce5f legacy-trunk +18979 8e012ae9a042327a7d51f99a80ee5da053a0a61d legacy-trunk +18980 64545c986b98b26f0d4228e0832616e6d6f78986 legacy-trunk +18981 92b214bb42884858416d5d90ddccf638f514ecb5 legacy-trunk +18982 e0523a42c78cae92eaae86701535108b55a087cd legacy-trunk +18983 f6d8a13929d7270524451632ff769b60679cc4b9 legacy-trunk +18984 239c7372c3d37f8ce4b6491b4c965912a5d2e663 legacy-trunk +18985 f997ded4e219f30adb0b8944ba6b30a52f74d2a4 legacy-trunk +18986 4540e418b83ab4f1085163ae1c01639b894dfdec legacy-trunk +18987 548e7a5429185ff0aeddadcfbf3d57402c3dade0 legacy-trunk +18988 fbf07e1f3ca071d9270e712b432f7d2e021e78ce legacy-trunk +18989 6f1fd8500398ca91d9fd96d5a99986b03134e9c1 legacy-trunk +18990 d0864902c8c7d8994fef4e95101d043a2d42399b legacy-trunk +18991 56368d3508de560244490f8855815703de22258d legacy-trunk +18992 a9e3a52815e2bb3e0ebe7bf5ca186a569525fd88 legacy-trunk +18993 aa03c20e89b7aef92d85b3b61fd6ccf4dd1beb9f legacy-trunk +18994 8f6552c7030d054fa0eac8ddb2456a95d51862e1 legacy-trunk +18995 d48018b33e357f49fdaba0061b9c3b27435b44ee legacy-trunk +18996 a06b73ad371ea7760f5c433c372ee349545c240d legacy-trunk +18997 513e59b3b9a90b4250f6ff28cf4f3ae67972433e legacy-trunk +18998 fa9ef0e2dc07dade3e75a2e73a3f0d0003072ff8 legacy-trunk +18999 883cb0e31bb2b3f53a2da8259755f32680bdc1bb legacy-trunk +19000 49b7c1bc6004293be22e4a0a0cb2879897ff4ba3 legacy-trunk +19001 d96ce9708c007c7dd28f0fed95fc4323f43261c7 legacy-trunk +19002 38dcec06617bdfa1f52b8ab028abaf7405bde159 legacy-trunk +19003 058bd1bff0080e59b02c51a50e071e97ca76d58e legacy-trunk +19004 49f94a2b1dd40cf9148840391dddaac110ce4074 legacy-trunk +19005 6aa972df80d5762cf247a0023dfc383e61c5f203 legacy-trunk +19006 d12bde4b2ae92cd1efdd9c71338c0df18f8cb9ef legacy-trunk +19007 26e831bb0d6ec688c50a9d44d2417a0ab56946a6 legacy-trunk +19008 cd9dddd897a9553e2f86b22e905d37b32b3ec9b7 legacy-trunk +19009 fbf8abec93d19fc0347ae7cda03e2d1a21a025ce legacy-trunk +19009 b60831eeab5a06dd3c5e8297a99e39297aa8794b legacy-trunk +19011 7d765c1d49e2f3157a6f189cc5784d3655985d90 legacy-trunk +19012 ca055606b3a11c175b34f9e6f83388f681883990 legacy-trunk +19013 4951f5c48105bbddf72834eee0c7bec73aaa2e6d legacy-trunk +19014 85e35e68e3db057896e46dd0b2ee5bfe288e5eaa legacy-trunk +19015 df7bfb34b2a2e8dd688f131c110c0b5863c40e3d legacy-trunk +19016 3ee558634164daf499f77657035ad84d4e61ff82 legacy-trunk +19017 b2c8795a34489eb22f668cda6ef68377f93ca43b legacy-trunk +19018 83c1f14682a2561ad7c4f5e72b7dfb6c6d557b0f legacy-trunk +19019 62bf73998cdb21b494c36e1289edd60fd948541c legacy-trunk +19020 6396cc6b1f7a127ed217a9133bf844ba95ecd2d3 legacy-trunk +19021 680d6a50c2e844f1188a8cfac61ced17bc5ff8da legacy-trunk +19022 46920b60cd3343f2633554944a7788d40fb13c5c legacy-trunk +19023 c0de710f31c03f8019455e1dca3432838dc7910c legacy-trunk +19024 fd278031f449cb851744fdbc4475650752d02e6c legacy-trunk +19025 5f40fdbdd02c418d1ae3e1c2bd8ae24d0aa0d7e2 legacy-trunk +19026 2208a03d05a3add1f32c5960a1032d70630891b6 legacy-trunk +19027 0a72070eab6eba630c488dc746f3859c3140b282 legacy-trunk +19028 10646d092a52fb2d3633ffe2dd0b182f5b4679c3 legacy-trunk +19029 71ceaba3f6151b44f9e7cb808b04667cf2d36213 legacy-trunk +19030 a0e52038cc4e1c813c64e842747c30c6b1b61ce6 legacy-trunk +19031 78cddba4580532faa77bb556a35325c7f45df9ea legacy-trunk +19032 2c7df45496a6276e4639bd24217203a22c214f25 legacy-trunk +19033 7ae6a09d4d02dedd5ec9f6158930d6b53ca07880 legacy-trunk +19034 725b1baf3dab91c2b431e53b9d597de03de9121e legacy-trunk +19035 f75b864899fb15315d8108e84f86367abd659d50 legacy-trunk +19036 30c4c4e9e3d5677f448029d651b924fb9ce09ab1 legacy-trunk +19037 438428d1bf270e6970f2b4ae561e48e69db4c56d legacy-trunk +19038 2dcbc1dfca9c54de630718646d7ce3768e9a6b5d legacy-trunk +19039 277498183030748a0d61952fdf946f15547f5c96 legacy-trunk +19040 d0e8e1959c0be42f120b9d38841033d9dbfd3f64 legacy-trunk +19041 3a0eb45b2b5e026dfd3517536445345596364a67 legacy-trunk +19042 6f92920c115009df45a023882f631b7f40218197 legacy-trunk +19043 a54c282bfb63da2b7a78e5e6c9fb4f1fac532404 legacy-trunk +19044 b882f4c856668af33274874258e4fc49427834a3 legacy-trunk +19045 a130d5f7e58aeb21964dce64a47d9c4dea2fb1c0 legacy-trunk +19046 e26f8d6cf288ef36e2bb474eeca2fffef365bd33 legacy-trunk +19047 115fdc61ae914b82a9c8fb13438d0812f27d1624 legacy-trunk +19048 01e8a6d8da8bb65efef515159911117ed5d092c9 legacy-trunk +19049 d7218ac99c09ab2cee6da74eb017bbea2dfcbf5a legacy-trunk +19050 499e229e6ceda892ef572035ea59cd66a4da1fbc legacy-trunk +19051 991a17d610362769ca425bcb47febb65e4f290a0 legacy-trunk +19052 c12d8623b29490e120b900dcae5349491568ed78 legacy-trunk +19053 c02ae7ae011d6282ab2193ca38de7df93a9a9fe2 legacy-trunk +19054 4fe69a9f8b3076b9ef171f94f19f2305b5350bb6 legacy-trunk +19055 1ff4f8901d96060955d27b69e1f57d1778e22370 legacy-trunk +19056 f4ac060a841b399c0716d76e7f47d8d90663a632 legacy-trunk +19057 1aa8349f66955806b005d047baeec0645089270a legacy-trunk +19058 5712620298882ac06971f09dccf9bd190b590d65 legacy-trunk +19059 1bb7651683e741284a142c573f581c885ecfb97f legacy-trunk +19060 32755b456369d82269b473a1a1f42880e5dfb5e8 legacy-trunk +19061 01e5d3e58833ad9e990df87e432f6f7b20f69640 legacy-trunk +19062 3484670c37f2e8dbf206011c3d99efe4cbb0ca98 legacy-trunk +19063 38678cb0b3cdb8dd62207eee2dc333830e13a3b8 legacy-trunk +19064 397ae53f1a489906e56151979fe364d60063dc56 legacy-trunk +19065 743d52075be5efcbf078192a6ec8d2853031a9d0 legacy-trunk +19066 23ab5992122e81408ffe23452d75a7d759de1bb5 legacy-trunk +19067 a3f57ed757e50a9b5496402e4dd711786b2357b0 legacy-trunk +19068 a6453cfb733f1d7af835fffd2a6ea23af667f5db legacy-trunk +19069 743f163368273b3b5d5f40297e4719413f47d827 legacy-trunk +19070 8d4a25c81a9b9430fb02da90d0d5883b5eddcda8 legacy-trunk +19071 55e8c026e1e3ff22c5e624be250ad9f327e3d383 legacy-trunk +19072 1e43a2456e8fe4cce51d52a42b2fd41c7fbae326 legacy-trunk +19073 98b65484ade6a84ce811dabb8b0d313f5f1c8557 legacy-trunk +19074 1df40d7724ccde40657c38c74518a936645515e5 legacy-trunk +19075 c0f61d4f5a0488123469fb3cc30c5596f7a75380 legacy-trunk +19076 635e9dcfed2cc6584895ccc421704b6dc33436d5 legacy-trunk +19077 72860ee9eaf0890fd0e2b6ba593035231c0c9e6d legacy-trunk +19078 5aea1581543b4482850a5b21aa385d63876e0616 legacy-trunk +19079 397491aa20a6ebca7c92891b5e5dd70f37d8582c legacy-trunk +19080 a4e54bfd3c29d656911eaab8bcbdf09929040e4e legacy-trunk +19081 259f79a36e2f36d0b2de1b4bda825066d4feb1bc legacy-trunk +19082 185dfc14a9342fb765bd151b4adc5e9e8e618e12 legacy-trunk +19083 588691f806f4d081a34416702138c1fd8bf30ee0 legacy-trunk +19084 a0e46c3be63ef2df4f41d4597178606ae48c5eb6 legacy-trunk +19085 54534148873e6f9c1792ce6efdd2dc2ca566aa83 legacy-trunk +19086 d3292ee5b6e24a15c545e0b1b9112be9b82e7349 legacy-trunk +19087 e56dd2dd996072a7949689e487a34fb150513ab0 legacy-trunk +19088 c7c404b35f33a0d54c82f675899f190c13e50fd7 legacy-trunk +19089 8c4db8b9af9b90e536bfb500e470e62062e1f8f0 legacy-trunk +19090 abb9450664367508044f94fdeb02e4c410af31bd legacy-trunk +19091 e302586452a308380cba49e60602d88e107e7669 legacy-trunk +19092 39a14bc8a0f790b848bedfd3c6d487b99acea6cd legacy-trunk +19093 3a20da2893c47f58bd6da9aa265de7d48762a9a2 legacy-trunk +19094 df2ed5664be51522e12fdf78536d7dadc37b03e6 legacy-trunk +19095 9bf438c8f5c7938a5f5f5517cd3296060b501a2b legacy-trunk +19096 41ed4d86db777250c62c41ba6e3d08712ceec5ce legacy-trunk +19097 5c60184f7f52ab1d52233ec9e39834920afc9757 legacy-trunk +19098 e5d59a9dbfc028cdef0ed267a239ac2c03527b4f legacy-trunk +19099 3fe75924eac10dcaa9739a63234ee2b73b1953e3 legacy-trunk +19100 b4d4f20211144a9c8e28031f48dfa2ea50c7d113 legacy-trunk +19101 2ff826318e89edfbd0d76ea7ca58254da14c4361 legacy-trunk +19102 7f618bc1398110922c5556d6cbde3b53d09d2fbc legacy-trunk +19103 05be5f85f3bf608d6b9d928571b5a3dfd8e9f15d legacy-trunk +19104 3c5f09422b69a9fd87230be74ee9c5f7021c4bd3 legacy-trunk +19105 9fd96e2455b62c7757f1e0e17dde5d45960c0fb5 legacy-trunk +19106 fa209cc84cace3ec8d3c988379b7f1685e417685 legacy-trunk +19107 09736aeab8311ff237dba5ec0245a63a22a70a9d legacy-trunk +19108 c41dd2204b9c8e0b303d122180c17cd5da0528d8 legacy-trunk +19109 a68c7032cdf299f2b3ef8138dca7fa45523d29f4 legacy-trunk +19110 140c52858f65e4088ab15ff5796aedd97a303fbe legacy-trunk +19111 fa271d7b2a62bcafdf936f4c16c969d8523b9256 legacy-trunk +19112 aab871635ffae49b8909ef660edb264f6030aed8 legacy-trunk +19113 bd8d298af880c2a1e02c18ed799f23486a502e1f legacy-trunk +19114 3f89e7240086056839413e39f04a7c8bb5cc2233 legacy-trunk +19115 4b51d069be350ed9a5404f024763969acbf002a6 legacy-trunk +19116 c1cf5d2c26cae70e30c8c35e2846b1e1b00118e4 legacy-trunk +19117 f80453e445b5a44158ed96862ad02c5abeb10dab legacy-trunk +19118 07071872de3e114b0126c3e27ab7e6f7e9506200 legacy-trunk +19119 fd8c7203251ff37dbb397f7d423ae41f16a03c68 legacy-trunk +19120 f494ca0a2b346ff68faaccc6508bea2802da9a08 legacy-trunk +19121 9386b32bff1dab424d0b554f698619bcb543a8fa legacy-trunk +19122 20ef849ec877c72e54b6a44bf58d45ae3ad4351a legacy-trunk +19123 bdfc6f1fa475ce67313d93dc1e33ae2bcebaf53d legacy-trunk +19124 a704ea5eceb6b3d1afc1fadcdc885441cedf784a legacy-trunk +19125 763a3d42baedf167d292590748af3a06712d32f6 legacy-trunk +19126 e18889e3949c069f1c341e0e77c2b64653b1fcc5 legacy-trunk +19127 d614b6e9fb4ed94e1f00b71090e941c139c7ace2 legacy-trunk +19128 99f346738415a06b32fb7a4bb11890179cd1892b legacy-trunk +19129 60ee338f0d666fdefe0036021531966fcc61f90f legacy-trunk +19130 c2ce9b2e5bb423aaeedb0f1d954988a19e197a0b legacy-trunk +19131 77958266c7d7aabfec539fbb71e4542f6d6e0dee legacy-trunk +19132 90255d441cd5f621d085a48e3be16724fee3229b legacy-trunk +19133 7ef2382f6123a065f9076210da7c124593f9ecf1 legacy-trunk +19134 835e9dd54bfb8ac63feae393d8e1f4cbfe1e8849 legacy-trunk +19135 c85ca8c62129cc8114c53a7041f3acb1ba6e4977 legacy-trunk +19136 2aeb3a34c7acdb33ffa5f987e45f7b2bc6a6ac39 legacy-trunk +19137 9ce5149825f6aeabd0d7cb4690f602fd5b0a84bf legacy-trunk +19138 ca85547fcb5e424f53bf6c4d446ec0c795966176 legacy-trunk +19139 16e21772ca3f146202dad7599aed19c42549bb00 legacy-trunk +19140 b46f956abcf852f560ae99340e42fe1b1e8ab370 legacy-trunk +19141 785ce619679614283430df4930dff0624cfe3704 legacy-trunk +19142 8b81a7e58a1d19c8bf6f95abf458782755f7f36e legacy-trunk +19143 2abcbe44271abb076345372859cc518bc35f231e legacy-trunk +19144 ea4a2f3b266e01865fd64a32582664b8cfb78b49 legacy-trunk +19145 65c6a2998b1bded0c99653d622073225fe79432d legacy-trunk +19146 a0558ebf6612753e0388b6d7ae3c0c04655da458 legacy-trunk +19147 15e0c10092bb4db0ad673272fa2973128a1c9862 legacy-trunk +19148 20e3c0d5e46fd343e18f11c60c3ae5ffdaa6a149 legacy-trunk +19149 4b72888c9e2f7edd336693f85f2f66a32ce39cbb legacy-trunk +19150 c0a2441a4454bdf30da1d2784dbc2a4b1ae93e8a legacy-trunk +19151 93ba33dc333af22c7aadedc7b0b11cb106b815f7 legacy-trunk +19152 7a251440ce67d6894abf2fbde8b326b62f602ca1 legacy-trunk +19153 09403c5cdafbc08a60b26856f1d4280df3b66acc legacy-trunk +19154 0501c2a10315fc4f0d4c14853ec10642637cf2f6 legacy-trunk +19155 27a4a17aec2514cd88646799729e956d185f53f7 legacy-trunk +19156 28c6ec581aa696822b99e3cf292baa31253d6b75 legacy-trunk +19157 7b3476c1382ebcbfca5dd77714cde095caf56722 legacy-trunk +19158 ab99bd39470ce391bac2f8ccc6079999713a10d5 legacy-trunk +19159 d0d8c9d52f18499d0aadeceb011a40281a466cda legacy-trunk +19160 2db29939580dba78d506a321a062c2a524092df4 legacy-trunk +19161 e1e0e996b0035da22d9db56e84bf062e0a8e17ea legacy-trunk +19162 26c1fffdfff2f08e74c9f4cabc03f364b71c36a0 legacy-trunk +19163 bdfb81d3c610ead8f39dc6a539673ec61a3b7852 legacy-trunk +19164 3a1e658e44746c0216c70af6fd5529a9e8792149 legacy-trunk +19165 e7f413d4ee15ab86d464a15be3fc7dad1d42d900 legacy-trunk +19166 fc3f505945d4cd082d6506cae318732063174abe legacy-trunk +19167 fb0f56bb14059973e564596d8689cda87d62c31d legacy-trunk +19168 8e873fa5450ebf56be406f196a58d4ea8865da97 legacy-trunk +19169 f84f8d81e32ce707112b386509d99973b4263171 legacy-trunk +19170 8e66ea602616da8fee918aa71190d487c4a78569 legacy-trunk +19171 9663d5ebb646c122c8c1b53977544707395f5826 legacy-trunk +19172 54b0aef650c529d076e878091f77069a0d64e84b legacy-trunk +19173 8c41f3861aaddccaf2d0f2bab15f8e7f49d87192 legacy-trunk +19174 b8018145e2a5e79526b569e72a0f7d7573e571b6 legacy-trunk +19175 662adf03e4fa2f66da6f880a81c071025c58a2ef legacy-trunk +19176 24e457ba1f926c5b4c74c8c22166f8b0436065e0 legacy-trunk +19177 28c60ef48fa3a1cba1e1938398ffbd42e2e8a200 legacy-trunk +19178 79e72ce22a430f01a04bbfda57fdd22f9b5fc0ef legacy-trunk +19179 861bf8dcfb58b8667d85e96a20732823901ffe82 legacy-trunk +19180 17cac70cae7662170a2a958e47ecdef636ef6e35 legacy-trunk +19181 b335d4dd223f3884a676bc40026be9791146be5e legacy-trunk +19182 0efa6c97a4fab56586ad47c00c9eb55693c75ed4 legacy-trunk +19183 a58c993d9234572f829d858a4e82b3d775efafd4 legacy-trunk +19184 925b233f02ea0dce1944696479ddf1d4e6236f7d legacy-trunk +19185 afd0930f868399aeb250fe4d2d3160a3b254cfdd legacy-trunk +19186 9d572038206e027608956313bf7e91cea3094fe3 legacy-trunk +19187 330239575e1e6757fcfe77a67fdf4ae3b6f2ae23 legacy-trunk +19188 ffd251dfabf42ad82a9720645f329c19eebc009b legacy-trunk +19189 93afb2bb22ed09baf8f96070480365172d88e1b5 legacy-trunk +19190 abd383f1905c81ece90f4e22ce3de418c5c5b5cb legacy-trunk +19191 4d424d1397b2d8b9854783579ebf320d571215c2 legacy-trunk +19192 be06bfcbe51a2eac50258b772cf4256ac27eafa3 legacy-trunk +19193 24e8c69cd34da54a582977033a00b82ace3b90c4 legacy-trunk +19194 bacbb45fe8448fe2367f452210d47a817025d170 legacy-trunk +19195 01d5b80a3c0382375df94648a746ccb8938def3c legacy-trunk +19196 36db193608bee1545b7f95941588127cdcfcf3e1 legacy-trunk +19197 2852eadb7daba512cb31edcc43266352bd488d60 legacy-trunk +19198 2d8e02902d67e9889714d9003aafe9f26a0fd6f9 legacy-trunk +19199 fa93bd1d8709d8cbbdcbe04bb97c076a7b0928d6 legacy-trunk +19200 687f93ddf3d7343ba03bca23cdd99a938bd82e49 legacy-trunk +19201 654982a46607769eeb20f5cad4821c986b8f1f0a legacy-trunk +19202 207074588b9fde04d1d6c1f30456e2094b4ffe58 legacy-trunk +19203 a4bba3eb34c1f1736e29356635de1ad350378035 legacy-trunk +19204 05a913ff97a6e210f6a201987b959471fcac433a legacy-trunk +19205 f87a41b96e28cc98d10144e4b0ae846d76bcdf5e legacy-trunk +19206 a8d8857ab0f1ecd5baa60ce9f559b3028a84533e legacy-trunk +19207 0cb47955344e444e011ab379250ddcac076adbec legacy-trunk +19208 90ede5165d1f3c15ea08a2b8788b327a5170ab07 legacy-trunk +19209 6f1c37e811605bfa05115ccef67d299be81f188f legacy-trunk +19210 6df12732e262f3c783b2c069a7dd6cbeab8b8eb5 legacy-trunk +19211 7c4eb40d4ff7928e50de13d2d60d87501b09de19 legacy-trunk +19212 66d4bf56e32dbb185b2ee2c361e4203032661bc0 legacy-trunk +19213 ef32bfa5f5c6813480b4a138c614d5735501c892 legacy-trunk +19214 0eeb2ee207999daaeb1db6f1a058f4ff958413f7 legacy-trunk +19215 ae04d614a3e033b40ebf7daa867979cb8a7b479b legacy-trunk +19216 c3b75a7fad3f7806c7490975b2b7b72209704a87 legacy-trunk +19217 e4420c2468f90aa6b1b61ff170b3bf20fa8052f3 legacy-trunk +19218 4ff2858d7a855686469576812ff532e4a41cb43c legacy-trunk +19219 9f2ca855fa44db64a168cb92eddbf9e75d280f8c legacy-trunk +19220 fa8be28730c9853243b427fc0cff3732420bbac0 legacy-trunk +19221 109c6a280e51aa2c7ef2c35fd60166654698b4e5 legacy-trunk +19222 95dae61ced51833d8f18591f870160cfdf768c90 legacy-trunk +19223 8c5d8b617979abb1e6bdd251f5f98adb47007ddc legacy-trunk +19224 655aaccd1caf8a559ffc32f163d10228e59c412b legacy-trunk +19225 c29ca19803038bcb4a2f0aa4969cebbfa1cebc3b legacy-trunk +19226 f1e2f98f0120780371d20abdae16f4bd6d29ab60 legacy-trunk +19227 50f7dd1a5357d9c959327b9b1677321f2539cb2f legacy-trunk +19228 38ca9cc9fc48a1cf3007a9a909bcf20872d9575b legacy-trunk +19229 3c1b426b3ff4c6ecceb1e126fbefa47d0f734f3e legacy-trunk +19230 c696a52c26218458231fd8f6371d6bdb9e379b7a legacy-trunk +19231 c04ca6cba1e3c8e8b52d5a36151148705b7c1026 legacy-trunk +19232 4b5becfa2eb3acd4f1f59cd79c3063c730137cf6 legacy-trunk +19233 3fe855526c556049d89c44e06b2f11bd6a5a6754 legacy-trunk +19234 670a0194a8da7e8be8d19791969f82fa689e2dfd legacy-trunk +19235 5dfd7e16c62f172e64ad4b4ed850317d9b9d2f47 legacy-trunk +19236 6325bd063f0a88336fba5507c94566c8c4d9a553 legacy-trunk +19237 6fd63c5c19a9218b2899ece2943dbe9a5f0c7067 legacy-trunk +19238 8b1a38224ade9b575a553b2585869a129d231a7d legacy-trunk +19239 0d4b6ba5eeec850522cd9357793b3cee81ff1efe legacy-trunk +19240 4cd574469fe1aa8c9da0de8f1cc62742a69a1e29 legacy-trunk +19241 5f0683a69efc6884c64173a03d8cd03e5462966a legacy-trunk +19242 3a4d2befbb747342df330a8e33ba6d6780c8a38d legacy-trunk +19243 48b4acf73ad7abd203d32d3c895a036c2ecd9442 legacy-trunk +19244 ec8f47a1cc48388781d82c42c771e7ba86bcb583 legacy-trunk +19245 98a88abe58d42eb7890d9128e232ab014ec99273 legacy-trunk +19246 c898ceba2261840eb9cd4a1191b48b751fd76c05 legacy-trunk +19247 1fb6672b20ef3ccaf2104867801b911cd0ad67cb legacy-trunk +19248 c2555b4f38a3140f612119a8d6be04514478cead legacy-trunk +19249 556887296d2ad8ae1add4186ab0006768728cde0 legacy-trunk +19250 fd4a63566ba1f4d99a279598a16c308b13680f45 legacy-trunk +19251 46a8cfe9afa634d0c38c3d41c1b9cf343aeb5135 legacy-trunk +19252 d34f25046ad4ba469d77e7a444b7ea811d092ccf legacy-trunk +19253 2ab28b213d705dcc9fd033a25434ba4dba686fec legacy-trunk +19254 2ecceb9d87f59e220fdb46daf0166e7ed111fc27 legacy-trunk +19255 0394270d4d06d5a187257e4945e413ef2747923d legacy-trunk +19256 f700e6b8de1fa6059e27ebd4e2671b0140142000 legacy-trunk +19257 74d140a3f034635484824a2296cf5a0d6a0b1282 legacy-trunk +19258 b22e4dca451a357697c6bbd51c549e5c30272d19 legacy-trunk +19259 0bb58cdfa688ff1d937fab9c0ea2902ff776bf62 legacy-trunk +19260 80c0b280a4f911ef6b7c82fe32c9d4a0c3cfe42f legacy-trunk +19261 dce7b4e6d421bcb8cc713de4a4c3260e7a1d61a2 legacy-trunk +19262 166e87836e8e6059260c9aa7d36116d26f811473 legacy-trunk +19263 abe85d2622f9fbdef53cb540e5b8d2fd100915d2 legacy-trunk +19264 08ac556f2d12de59eba65d345a47d97a7d5f6930 legacy-trunk +19265 c22e872501a0c952e46ff4599911d58ba47a6ad9 legacy-trunk +19266 390ca43e5f79d0f2fb09ffc1c0a58cdd4d4fa665 legacy-trunk +19267 7ad97832a5cd05b17a5ee20a451b2e67cf215c18 legacy-trunk +19268 2d72db9f5ca544cdbed092f90904af3bb8cb7900 legacy-trunk +19269 99ede21908727364162c15be2ac624b3a764aaae legacy-trunk +19270 ec709ee8e6fa6527badb03fd14a7320f7fd653d1 legacy-trunk +19271 7430ebabdbdcaee329ccb1c7bc2d7aec349d36e2 legacy-trunk +19272 3d4a7cd0bf178ad63e38bd3ceef50f13272402da legacy-trunk +19273 aedb93f9c6b80d5991c02dc965e8b0af8e06acb4 legacy-trunk +19274 10ea4060c8dc55bd53f8afeb01bf22acccfc5ad9 legacy-trunk +19275 8819867f14ef659be8ff8051c0124a4d9c5d439e legacy-trunk +19276 185b91967147dd0276615e28a32f2b761d2fb999 legacy-trunk +19277 12d0048ed6ca5b68c2e647f56a2f37880a457ce9 legacy-trunk +19278 7d39d9dcf2d611378facc680408024bfb7554dcf legacy-trunk +19279 901b94656928b0d0aeeb6c07280a29c8f24798c1 legacy-trunk +19280 1ac7e6186b6e3f77ba7b385aeddc46920465de9f legacy-trunk +19281 1ef7e43715f540c30bdd6107c5afcb0fc38d69c0 legacy-trunk +19282 38204093d9c929d644ef9c56bb89daf994587c0a legacy-trunk +19283 aa844711463aa894affce09a87bbac3f4c7e0e27 legacy-trunk +19284 8b318b8d78c94466dcbef5ba9125cb53b396f292 legacy-trunk +19285 5c40113409c3277c66241c9bc7f3ce61ee90ac77 legacy-trunk +19286 25ec4f8c60aacf6a028349bc72871261ecd72e20 legacy-trunk +19287 3ffcc9b3bab87f71488437306d7c02bbb0af41ec legacy-trunk +19288 7ea7a1c5a8d203b3fb2502e68ef155a98809da81 legacy-trunk +19289 c8ef864ba861f234cb535aafd8f8375e6aff3b44 legacy-trunk +19290 6496844c4a4280906b7529cd38d491243d4795f3 legacy-trunk +19291 8a440ff274ecbcb1e53566419b89ce34e05cf5c0 legacy-trunk +19292 2be7c90c1dded2e6410c177d95518d588453d136 legacy-trunk +19293 c16e061d23e886bb1b11ccba42948d166377722c legacy-trunk +19294 6b5e20f69e9ee9d56cbf50cde0463446f8c9a7be legacy-trunk +19295 0076e8d28f9eba9eff4508696dc33730af2b4001 legacy-trunk +19296 5a4bdfc66083ecc33c3c200d8184eaf526e9ff84 legacy-trunk +19297 a6219950766e78af386d9e4ee5e7ae2a05f0e3be legacy-trunk +19297 b382f1f07ec6b2c95551658b30c6139eeb32077a legacy-trunk +19299 679f826b24ca269b8f18c4043ecf5c3d5ad87ff6 legacy-trunk +19300 246b3a6aa7a9411ea7786134a325fd022d4f2fe1 legacy-trunk +19301 d557ff0a2f6c97d42a803243699c5101ce5b1b0e legacy-trunk +19302 7a39704a5047e4f6fc73011092be2de92158cd32 legacy-trunk +19303 c453fbf30f6137781f4f584d069816d87d1c5b03 legacy-trunk +19304 b2c516bb734a729eaf2de6cc7666dece40c34a25 legacy-trunk +19305 ce9850051120490de30852d3ebc97c0a0d258eec legacy-trunk +19306 b78c8d8c52e61f6a16c695825ed73bbddf3df07a legacy-trunk +19307 f93e23a82a73d2f1ba9a6e0b02409078d561d49c legacy-trunk +19308 575872584b0cfc6dd5f32610816089a0f192fed1 legacy-trunk +19309 ac52d37278673fcf47394ee771958edec38c37e4 legacy-trunk +19310 1877057aa926207617b95f6c9e846f486534c7a3 legacy-trunk +19311 64a32df5c06345d8906eb25f7823ddbedfc40fe2 legacy-trunk +19312 af39de262b9c9b8f1b7f89aabcef5f3184fc0a14 legacy-trunk +19313 99befeac8400ffa8062990b1658aee75fee0b708 legacy-trunk +19314 2885a339635ede9a0271c290d32d35588b993201 legacy-trunk +19315 2e3dd62ceac5f88439e39c38012a3b36b18cb59f legacy-trunk +19316 ddce715e49ba067787d5aa09ba0034b8bf9088dc legacy-trunk +19317 b305c1536b7aa4d420bdbd87dfbb35cf372b5a5e legacy-trunk +19318 a506f3b7569414993e814f0775f8124c84372613 legacy-trunk +19319 3cc8635587933ec5a91ab60cb36b938318c0c7ad legacy-trunk +19320 c99d6d5afd75d0bcb00ebe8ab9ba5763224bd2e5 legacy-trunk +19321 5ef71cb6649536141fdefdd85eab6e13a996a27d legacy-trunk +19322 c18ac8c2f0365ba7d3a59e67258d20194b196461 legacy-trunk +19323 0bb17127b2f8ea3c28a9faad6c4cdc73c7f11fd2 legacy-trunk +19324 a4f6b633230c3722d37a8db5b67ab9a1f329e388 legacy-trunk +19325 2ca8783ce8a35ae7e2ce923c14cd8fe1fc268b0b legacy-trunk +19326 286a9d987375363d3e2a592588e7156d9349550f legacy-trunk +19327 65a708950922b6f8f8324f908b50a6c032bc0d50 legacy-trunk +19328 ea88c2a73173044f1480a9bff12ad8a3562cc19d legacy-trunk +19329 1c71aa7d55131abf2d00bc1a20f6429f2acef505 legacy-trunk +19330 ed4338c7e8a45c897bf8403ef58ddd9346542be4 legacy-trunk +19331 c0b0fc13279e2321647c248da707d644e95cf93f legacy-trunk +19332 807ca697620aee18bc26ae30d102e3d99abf9ea5 legacy-trunk +19333 ab02bc6a5ab2cadc088596c68183ef2e27a23d7d legacy-trunk +19334 549e993a476cd70f253693031a444af1956bc222 legacy-trunk +19335 f5bcba5fa41c8b0c6f2a9784b65342014f761cae legacy-trunk +19336 4d406c26c16ea79da7a36973273601d2c2e504c6 legacy-trunk +19337 b6313c9114ed6d12c6a9cdf161a3d1d8cf64c3c0 legacy-trunk +19338 f7b167c8331858dd74835fd4c819c827c0142dbb legacy-trunk +19339 57ce92a16b3c9eeb28a630b75c2896cc6879c9be legacy-trunk +19340 edc0c99a69d6d22562273dbbb59c45c9c6b6ac02 legacy-trunk +19341 d59663d3e433a35997ce869dc3340ab0aa2461ab legacy-trunk +19342 e97217f5b32319f3a7f987e322efcb67ff2dd99e legacy-trunk +19343 811b0ccb62aece937d103db9ec5a3fc74108e9d1 legacy-trunk +19344 1fb7befb59f073b01ba1447df35611a07eed97ba legacy-trunk +19345 c233efcb489e5bf5f47c4e694fde10d48c3afcc3 legacy-trunk +19346 bf97818dd9e1e28b8ad1ddc9af598e32122d1e8f legacy-trunk +19347 5f12df88a2085aa2389e0e252db1e9de9b5154a9 legacy-trunk +19348 464de8dfa59e9a75dad9d47198f6c82ed955b067 legacy-trunk +19349 771dbb155575fbcfe8da5d7d8dce428e19005c65 legacy-trunk +19350 92cbefdb674a65cd7821bcc67aeddaa289b6c992 legacy-trunk +19351 a68884de12ec54e54b68c96d73553fdfabda0fd2 legacy-trunk +19352 87f2abb731848b6ffa2bf24968aeff65966a7c8d legacy-trunk +19353 a4c6e401ee184c3ffd5258048334313e23b30276 legacy-trunk +19354 fc4ace0242cb094b6b36ed61db16683e78c473ae legacy-trunk +19355 6e5ab7840b05d0bc94d9bfeec1905a2cfbc50c35 legacy-trunk +19356 f4d15fdd15dd7b1ee751cb769237f2e9086c6460 legacy-trunk +19357 69f162dcd8b4c09c5ef4ddd4b57b907b79d6f8c9 legacy-trunk +19358 1ff9d571bac09a781567e06a917da5e099f80e82 legacy-trunk +19359 d329606361f8b3bc5de584d33ef37d9d52ce8e89 legacy-trunk +19360 f751b96de621ee714e5aae5bbe8c680e1c869e74 legacy-trunk +19361 58de2829cfdd3b898102553cf97edf810c94cea1 legacy-trunk +19362 c97e6189ad96a9ead52aba51f4b938c5e2798b53 legacy-trunk +19363 b11780b068fa6c1229cbed295df3cbe974075fab legacy-trunk +19364 bf0309d5fc0a939e90aeb1b763e128bf41672a5d legacy-trunk +19365 8d7655ac8bf868a534e041389690669ccad20d87 legacy-trunk +19366 6ffce8be3e0b8dd314c696e661c64806eda4af6b legacy-trunk +19367 88c87c89b4068007894a11925a8b6ce65c4eca22 legacy-trunk +19368 b26cbc1fe4e3b5bf6196ba69538916d64c936d45 legacy-trunk +19369 bdfc6bf7b0dae7d228aa7ffd7509fd6dbbdeeabe legacy-trunk +19370 5c3bf2e89d8011afb5fef68b98a71a26b3759c7f legacy-trunk +19371 5f588dd5439bf006a16df0f1451d0df4b9090f11 legacy-trunk +19372 c87fdf7de0e6b8f917700d108f1ae172a72fcb62 legacy-trunk +19373 18ef3d5eab4f22cb93a7c7002a6ac6faa8447d60 legacy-trunk +19374 893a515d331a73aab367d9e1baf9aacebfdf5c88 legacy-trunk +19375 5643e37b99ae69eef63bbee5e4b7c0968191f7ce legacy-trunk +19376 90c600a819e96d4606979e2d68e38dd14fdb4112 legacy-trunk +19377 8ba6bc8c2e09381f376f11939a989c9d3c4114c4 legacy-trunk +19378 af88465999c7a6c03346bb0b8f75d7e8fa1ee260 legacy-trunk +19379 eee67a84e5faaf300a1ef2681b899e36801d2ff9 legacy-trunk +19380 b3d923a66152cd8d5369f69ecfa4fd248d8e1155 legacy-trunk +19381 631d4c8db7840802867f93b396f225a61f57c357 legacy-trunk +19382 c802385a6ac3e64226928ac03e28c687d5d453b8 legacy-trunk +19383 e3d4880748b5c475c4c58e8ff003eea53d1b449f legacy-trunk +19384 f42799c68929ee64c9c824f6f92aad5de9ab8295 legacy-trunk +19385 9d625303f914be830a9927d3a54a25105d615855 legacy-trunk +19386 24e946e951fa2a35a18a5921ca4d69aa450c2358 legacy-trunk +19387 c36967bdc9dd4dabb78bc5f7240ce3209b7d4b0a legacy-trunk +19388 57d248ddbe2abab4dff4aa66c5b0868b837de9f6 legacy-trunk +19389 a8e123df268b9cbfa05018700b6d1a6e59347217 legacy-trunk +19390 f3e83e514dd89afcef804980f7f401dcf1bf1cbf legacy-trunk +19391 751e9cc477d9d0349275dab93acba8a4a2462c05 legacy-trunk +19392 a80f67b72308e9d0515bdb49affadefbec25685e legacy-trunk +19393 06dd94e20f3b81bcc1408d53728b0126540d3ee7 legacy-trunk +19394 7fc64df13db0acafc63391d02dc4aa3b61516074 legacy-trunk +19395 c48af39cb292e01b7c92b700746fcdf68e8a982c legacy-trunk +19396 b59f3a1eb12391bc1aeda75a69d92c3395f190b5 legacy-trunk +19397 084b3dc9b6ff3102ae8d5f9e9b7cb4b79b5492ba legacy-trunk +19398 54f7209cc71e7b6909d32f2c36d14c8ef417f4d3 legacy-trunk +19399 f4e71bab7853c97b55797909c0efe9664ca1d3dc legacy-trunk +19400 a540c6fd0ced1d881dbeca17b821b2127e3f417c legacy-trunk +19401 a47d93ef103a7673bc22f3b65e7f52dcab32b8d6 legacy-trunk +19402 8236f3e7585e14fc8000a4a926f4e05517c40676 legacy-trunk +19403 8eed373bce7fe50ade2a61f5784c050a4f98a5ab legacy-trunk +19404 fef4c039733dcb81dc7794bc2959ce416aa0c3ba legacy-trunk +19405 1214abea0c7b2a8351170d888455a3e6dd2e1d40 legacy-trunk +19406 4652723ea655ca82a8fe268a1e1c4667a713eb6d legacy-trunk +19407 38ecfd11d9b53a26c4ceb31ccc17e48eb9ae8c67 legacy-trunk +19408 60a2e99c863be9719e314389568db38a9e051a0c legacy-trunk +19409 cc9cb1e90b3d24bd78d3403b37faba853d1572c3 legacy-trunk +19410 da8681f17b500e64e1de671d44e453b4feb57cb3 legacy-trunk +19411 7e9f4051ba4af13ffd5a5cc9f1e4eac02cf33d26 legacy-trunk +19412 8f70b5ddd5c08f64088f6783caacd5c537f7fb6e legacy-trunk +19413 7de5043827f70fdc186b6df6eeecbc021871d4a1 legacy-trunk +19414 e5592f1ef41f8651f27e3fb65c8b10551d6a8afe legacy-trunk +19415 9a95794e0f7ec65b5369dd845f7b0f00b8bb967d legacy-trunk +19416 444c0eed5a66c5ac95521b473d07874a4f124c38 legacy-trunk +19417 d38afb20c336a724aee232438917935b45d64ae6 legacy-trunk +19418 27fce2d7facdb427d9768ab81a6cc2ce54fd0b84 legacy-trunk +19419 9ce9e0342cc1f0f02e59becbee760b169d79bbee legacy-trunk +19420 192e9855c7c006556ad278e30eba67a9d5f5d4ce legacy-trunk +19421 8c1c787bd6f9e2b5a5dcd35ed24d6e318d52aa61 legacy-trunk +19422 e8e636cc1a0933d6e77ccdf0c132bf023315413f legacy-trunk +19423 0d1305c83de4c9e0dc581df3f0316e2b3618b501 legacy-trunk +19424 623456576d6a8e54d5e90b468068bd8fc13558d2 legacy-trunk +19425 30d34bbf86201aa98c8b4a86a68ef3a8f10d3bf9 legacy-trunk +19426 d3484ca40b8a0d7f911cac1242d62eba366e69d0 legacy-trunk +19427 23b5e7d03f76fbb85940b002009aed11256dd6c8 legacy-trunk +19428 4cedc826bee8b6d1986488899139cc484af20966 legacy-trunk +19429 b4ff1cf4a10fafb87829461b7f55298e5c421f26 legacy-trunk +19430 91763013c36fcf5c6e1e09bc0c2cc431623dc0c7 legacy-trunk +19431 c904a40e14ea9ff3e472013286b15a22a23077f4 legacy-trunk +19432 8657384dcc4ab283edd3a72d37cdd3b863c76f0f legacy-trunk +19433 2c6417ef462850bdef867eaa6ba0c9a238509611 legacy-trunk +19434 ee0dd0c7964edbca0663a264da5a067492926a15 legacy-trunk +19435 4772fe2db2c46c245ae3485b836915cbd573b91a legacy-trunk +19436 bf9c24beda7d57534e930f6699598e702fb7e307 legacy-trunk +19437 5f3a8350615c8b9ce638723468a29b533c677153 legacy-trunk +19438 f654468b9ae8a9a051aaa28dce7ef18a46312ff7 legacy-trunk +19439 068cb8494b7b1e661ff034226997d97c396e0833 legacy-trunk +19440 b439eeda00828f3bf0d6ae5051a72ed647c7e28a legacy-trunk +19441 a63dc59be0f986a242ab3f44408983b088c23224 legacy-trunk +19442 da15e5f68644a960deb0b6c7255b59fe1a39a75f cnri-16-start +19443 e2b2fe7fabb89439041e1a5c82473676bd8dd817 cnri-16-start +19444 9d08c37473cb926abf9639d67665f19675dc2ee4 release20-maint +19445 c0cdf82599e03f394c85216f0b6ccf17db25b100 legacy-trunk +19446 9a8e961b505f030696d02cf1c8a2c30287041b53 legacy-trunk +19447 817df9efacbae743016f58ef771d0afef10e74a8 legacy-trunk +19448 3f6c05e040826dc7229d43db374142416f02d8e8 legacy-trunk +19449 aae2bb8ac3739e0c58e4f2df7bd5bdce1a39a64c legacy-trunk +19450 5fa25542b89675d42b15d8dfa55b6f66232b3c45 legacy-trunk +19451 9bb2b6963c825aa90e5ee6bc0f7911ba7cac57f8 legacy-trunk +19452 56a8106baf635ada290194b618b05c1d5e988de1 legacy-trunk +19453 ba84463efc7bc5cbeefd2a730a4b8b91268cd200 legacy-trunk +19454 f813e987e65ce40a83f4e9362cf0ebb457bef690 legacy-trunk +19455 df7d52ae20e4cd05360c8a1e7aa08cb98379a5ef legacy-trunk +19456 74ae80d90fa6cc2643659a88659c1fc10452decc legacy-trunk +19457 b36251316f6aeda6e3b9fb51d960788aa12d3b16 legacy-trunk +19458 9ef978c6f0395650c99b72b8a0114d82b04d9b34 legacy-trunk +19459 ffdc7185bdabd63e04930b01576a8f926789d0ac legacy-trunk +19460 0855119167762696c6a18a4ae57cafe08064043b legacy-trunk +19461 07ffb0c3bd5ee67c18beb7b22142f453d540ae32 legacy-trunk +19462 e104367256f0203754d4ffa5f73b8076e49dc4c0 legacy-trunk +19463 260f033ae7df3898b933b6f2e75ccaacf1d40e0e legacy-trunk +19464 885d545248db3807933715103ac0262b3d9f98bc legacy-trunk +19465 0b455a428967787e04ccf8c38c846a48c972c499 legacy-trunk +19466 96d8868a00284d99c88e3942824a76519c206062 legacy-trunk +19467 0cd87a5d1ef974eae7f01c298bea943adc5fd46e legacy-trunk +19468 ef2be12b18fea3966a97e8a6244b365d403db0ea legacy-trunk +19469 b05b8b6c0b430989c7b7b6d8c439b55fe1868e28 legacy-trunk +19470 44ef644cb526eeb7fdc2a44d8e7d8a04ccaa4107 legacy-trunk +19471 941a76f3874742561418db9dc467f8c19da01a8e legacy-trunk +19472 f425d8523480b01fc36461092955b7ae68e164c1 legacy-trunk +19473 73306949119c04d358a10568ae0d23c6f5849601 legacy-trunk +19474 f0f5729d603fb59f8a96f67371598316c6b6ed94 legacy-trunk +19475 e3cffc0394bfb6c0452b5865c877732d6d630645 legacy-trunk +19476 8ef2467f0191bb61004b3006adf0f9f097f7ed49 legacy-trunk +19477 f68dbffff927bfa566fd2c3a9e8aefb5b6130ad9 legacy-trunk +19478 20e52e5a408a16f02866a6fae22863d042a4a1d6 legacy-trunk +19479 8ff4cf49267ec547901c0de6f65218fbb100c6be legacy-trunk +19480 e2a63584566f82db937e0a331a1b3bdf8b2527e6 legacy-trunk +19481 e050b94f04d3c9672793ef6a49cd183e3ff93788 legacy-trunk +19482 56914884aab6301b47624efcb0608d6c5c172319 legacy-trunk +19483 4e2d1c6f2904da64bef3c5d1291df9ad80838ce3 legacy-trunk +19484 1c6ba946d8fa0be2e440213fb4cd3a745f5d4198 legacy-trunk +19485 c958678720fdac4246545f5a898545ddb1302d06 legacy-trunk +19486 91780ead8c25b2727c422cb8f7ea5fc4e6e264c9 legacy-trunk +19487 3a6b4a003a17e4b9af6fdfb1d33a7349e99f722c legacy-trunk +19488 67a0666f11e323070f532852311fad75c3416609 legacy-trunk +19489 c9f23f80fc930d85fb29fa33ec844ebca6a4d299 legacy-trunk +19490 611768349dd90f39adf109cdcd9e1ae093eb0e1c legacy-trunk +19491 063d5c4f6ce58b3408811c9d477af758a5291362 legacy-trunk +19492 c87e7017d66b33a88abd99e391f95935bd71b8e4 legacy-trunk +19493 96e9ccbf165f6a4e2015f79d171482f3a909b159 legacy-trunk +19494 c9509d84f3df7f8eb0f638c8282301eb6844a66f legacy-trunk +19495 e381453062312635a74163319687b4c5a9996ea2 legacy-trunk +19496 0564b134b58403551bdba1d098ca2f450cfd9946 legacy-trunk +19497 217277583468d056884e4f3b5ad5b59fffc79e22 legacy-trunk +19498 d4559b7457a0e32a31525daab42699821c1d0c0e legacy-trunk +19499 2fb64983965ff223aea252391ff34ca1b53a4ae8 legacy-trunk +19500 e30c197532aa126a6daa4b07fc69836a061bac92 legacy-trunk +19501 59f4f696010168da18a9ba9a790d2f4e2e3f7a3d legacy-trunk +19502 79568c0d3e77a69362b3579ccf5b475035650a1f legacy-trunk +19503 146dfe7e03382ceb2190cb19ce9b7d6919d30e7c legacy-trunk +19504 7d1e7b6ec839453486db2ace81ef1f62592cfe9c legacy-trunk +19505 38f6972dc8b417ff2bab98532155ec8d91cc6164 legacy-trunk +19506 15f0064c840096efdc9adc556f1735c758aa191d legacy-trunk +19507 f7a9776771ab0efe1d672092e90010baaa5d23e5 legacy-trunk +19508 7f127be07c50957781e1c381edf77b379096a610 legacy-trunk +19509 d6d5c11f75a922e95ce2b9374cc0eabbd601f878 legacy-trunk +19510 b9e5481f644c30af74634d6c7e5d49c136f14ae3 legacy-trunk +19511 728c115621872f1701cee3dcfe7f353b8f3cdcc2 legacy-trunk +19512 a51b9961f3bbb0c0605da7e12d0e9cb4ef07947a legacy-trunk +19513 8d85096178741f59408878888e28bd20fa2c882c legacy-trunk +19514 d3e8b880651b7d47354e98991b133f12c4b32192 legacy-trunk +19515 91521c52b1db55afc6d6fcca4204839c39aa4fdf legacy-trunk +19517 da9a4a1698f1f684e79691b9664b7c607bbe1c92 legacy-trunk +19518 b9fe8bd9e5f4fbb06d29967ab2fe6b0c0dbd6785 legacy-trunk +19519 5921b129f35048435c06ec749d9f8d470611afd8 legacy-trunk +19520 1d7aed0769648126a5f604c93c182f71df8bb305 legacy-trunk +19521 7f8e817ac423c4569f891568b7d101a7e20c79ec legacy-trunk +19522 79d533934ac1b3095e0c4f9a4b731e21c0efff28 legacy-trunk +19523 1a5a441772ff63aa9f918c1be9eb59bb2b06a1bc legacy-trunk +19524 deec6fa804710837d176812df8e95ad19328953e legacy-trunk +19525 0049f77b36c623237e71d2969d1be1677ff0987e legacy-trunk +19526 6af415f0c01eb00d23724965ce239e7023e61679 legacy-trunk +19527 89c1ccef5ce8360e3b466403a03d71045f526618 legacy-trunk +19528 94a38443f99bb570555cb171d545a99299c5355e legacy-trunk +19529 5746d0bf5f04df7f253b9cb20f5466156f6d28c3 legacy-trunk +19530 de0e8752d5b72ce7450cf48550c383b11a2d322e legacy-trunk +19531 e9fcb46c1f2cacbc39746d5e7f54836adef621db legacy-trunk +19532 725238293869cc5ac9f665a70c71463ae7ef3799 legacy-trunk +19533 57a9722c588d4da2b8a5a0e891f92bfd57c5cd61 legacy-trunk +19534 990fa25cde1ccf1568c869430a8de663eef22b01 legacy-trunk +19535 a8a00de024e7380a9fe84dcbd725f2a7cb56b9ad legacy-trunk +19536 8bcc10db562e4f9ff8e22f27c1358d0fd7e0d1ba legacy-trunk +19537 0d3ae8f0849d92a5397e1e48ca88e7bd66934f68 legacy-trunk +19538 5bcf9c49b6e78c45fb6ea0e772c7baf1921bb0c8 legacy-trunk +19539 f4e97ec1dc9ab62e6152efdca288c2749a69fff7 legacy-trunk +19540 963f95eb7646daa18818a491f31260ee62443d86 legacy-trunk +19541 294ba16b0e88a4763d3ea07b581a54d4a5ea85ac legacy-trunk +19542 b955e74955d54c958a6922279171822f0bd19833 legacy-trunk +19543 06ad5053f40a062c907797e503c0b135be4ff889 legacy-trunk +19544 db4fc82aa44ba9b53b684a680cfb5afaa12550cb legacy-trunk +19545 17ed61fd5b6540933f3596c74a37c0b08d0a2a81 legacy-trunk +19546 26acc2445f373732f17dd5182ac0f2e1c061aa29 legacy-trunk +19547 3cb00cbe7455084e721e91ccaa8d3553f649ac20 legacy-trunk +19548 d94fea57834c33a01dab00c9138dcb7580756105 legacy-trunk +19549 f7ae0d937cd07431a300c723309fe82620a36415 legacy-trunk +19550 a6f080fe52511f9286aa3352872e8d90f1ff460e legacy-trunk +19551 a0baf4cd835cf2f40db91544692cb692b0584e5c legacy-trunk +19552 102ffe1611e0f84749d8fdfc02b8f8aed2ca3b85 legacy-trunk +19553 6ebb14b141ad51b9cc4b88f217b8db3b183ef088 legacy-trunk +19554 736bceeca3dbd63af83288db2bbb176f717da4f5 legacy-trunk +19555 4134b5972219cfbc9efe63a75733bb8055f09355 legacy-trunk +19556 66266c46ccfdcd62aa97a8ecb3f2d687f6a612f5 legacy-trunk +19557 2a86d519f80e5e8852137cf9debc835637e43fd3 legacy-trunk +19558 de5a8dd1c6f24756fa43a4163a0c7f31cb9c5e81 legacy-trunk +19559 3bdd565c77bdddd22804f073e1597ef2b75fdaaa legacy-trunk +19560 e14c5f34fa05856a5412ca85d032a4192b3a94da legacy-trunk +19561 564927c557425f8bf58cdbacd3862dab415f994c legacy-trunk +19562 c02a9db56fe15d5b0532603a425cd9aaf7221c5c legacy-trunk +19563 1b400c854a2c2ffe4189d284ee6f293db64d8b94 legacy-trunk +19564 7334b2cedda8e750be2eb5348d0b7e7c19c7a0d3 legacy-trunk +19565 d2a8414a1eab3d1e3d85d28d6c74e342d49efaa4 legacy-trunk +19566 60c90ff9c2f78ad6d8e838b234a07181343a88c6 legacy-trunk +19567 f9f4c233ee037cd534c568ce10657025a4873d25 legacy-trunk +19568 8172906c6dc8fb37861588bbbc0ea6e6a5a47a9d legacy-trunk +19569 0468596e301874008d07e6a7a8a35e010ee8e8c6 legacy-trunk +19570 932a1f8d92f709172c27d6a9f8e4b2cd7258dbbd legacy-trunk +19571 617cb40cb74b8f742001d167933be2123eefff3d legacy-trunk +19572 9696c95d09b7424cd123d40be8f997ae1b7c00f1 legacy-trunk +19573 57799f013aad254a8f89df6b614a8b4bd960e844 legacy-trunk +19574 1cf36eb5a25c0f5602fce073fc4361c8cd98e768 legacy-trunk +19575 58908bb47ccacad7a6170dd0e815d763ed0de816 legacy-trunk +19576 2c1f8d3bba2f81ebb527b664d521909761e958ac legacy-trunk +19577 6341f8d909ac5f56c1c2f74d6f9da06239b64d93 legacy-trunk +19578 e4b47b4393c8ad4d6acd25e28f81b93f8402a277 legacy-trunk +19579 6d1fd9244dadaabef2a9eeee216ce711165fcb7b legacy-trunk +19580 3e9396ac4ba07e4dcd98604559f964c152443748 legacy-trunk +19581 ef64dc68520fdb992fae52df94347d6b5edfa09c legacy-trunk +19582 a1d8bb68659a47437eef70df7dd231449c3085e2 legacy-trunk +19583 01c2470eeb2ea03415876ca37c546ddfc3bf7f9a legacy-trunk +19584 89c126887df093e0d37b754902ae83afab668876 legacy-trunk +19585 407d4022cc8c0428b154fe96a58e50d03e1dc405 legacy-trunk +19586 4db0fddb69178dbfcfd7ba1aaf393d76090475c0 legacy-trunk +19587 cc338a5c16e5c4203e4fe31d16515f335e11486e legacy-trunk +19588 59f1b57bc90998f07497686cac66a5257229df23 legacy-trunk +19589 120621bd33fca59a1026a16b4bda5b416b3c675f legacy-trunk +19590 d170c1e772c553a9b5896b6a4a14def5d7e493d9 legacy-trunk +19591 583a812c45c8861345567a5ce7cb8c1b75d43abb legacy-trunk +19592 800b004acc71780e6d993d32bf814343ca915926 legacy-trunk +19593 256e1599d8d96c3bbd747bc361ff5a0f1469b4c3 legacy-trunk +19594 74145ab1fdc5bd9df503fa675b64992bc665b3d5 legacy-trunk +19595 e81dda5d37c4b1b0630206398d6b51f4250e8e2e legacy-trunk +19596 86c7683b606a90bee9cc90840eab5eb689420219 legacy-trunk +19597 8f034bcee856badf0f5464f723276227de808b14 legacy-trunk +19598 c99d19a96e9ebbecf62dc7715166ae7fedb9bc18 legacy-trunk +19599 05ec1b054b4d93fe06f289e7e8d373cfdd7f6d1d legacy-trunk +19600 9f86cba4766b54ee951700dd80f50d5b787cb2e0 legacy-trunk +19601 b3278bf4f091823713cfc47113320c2bbcda9e74 legacy-trunk +19602 386cc698aef9556f6db40bb1c4279ec1eb2c1307 legacy-trunk +19603 844fde600a61d3389aab1bf1ded6f6a45cf06cfc legacy-trunk +19604 ddafdbf914985b8914cd8a04a570994f6a633c78 legacy-trunk +19605 c10056100ea5dd2fe84d52c2e3270d89bbe9ee0c legacy-trunk +19606 8466bb37289cd6e7610aa88d38fea24714568fbf legacy-trunk +19607 db61894b0d6fc3e400e40244c05f8c98684108ef legacy-trunk +19608 85d2af972e62304c0b920620976dfa3ef74c2a2d legacy-trunk +19609 35f57c7170bd40a75d8dc32c21054efb1bf2a315 legacy-trunk +19610 4ca62afec004525fc3cb734faaf5660ca1e91252 legacy-trunk +19611 b42b22a9228cc8605a59f916b05499abd08f0731 legacy-trunk +19612 e2a0db839eb1a43b45268639d2e55f292c467c0f legacy-trunk +19613 e444a52711812cccc710a9adc001541c9dd31fb2 legacy-trunk +19614 9518893cc8a7d6f5d226ecd780cec2542f33d09c cnri-16-start +19615 06f6f0e1e10616c8b6634d77d1f996399105cc02 cnri-16-start +19616 3c0a35002108d2e120431d54d6c3cbbf5157b5ac cnri-16-start +19617 6a55b677f509645f3c87bbea950cb1980eea1620 cnri-16-start +19618 7815919e2af8b63e0ea76166dd35a90d05631e7c legacy-trunk +19619 90e90c92198b7da609e560fc3b3fc767e536cec3 legacy-trunk +19620 ca1be7d00413e8aaa5e39cf5adc34160cace780f legacy-trunk +19621 5c3aedc969da45678cc9b0ed20f393485e8b0e44 legacy-trunk +19622 51977af230fa47bee948137631c05b71829072ed legacy-trunk +19623 23c7a0108f590cfc7c1b981b02aecc5351857be1 legacy-trunk +19624 2fb4d625bd39f01a4a2cbf87bcd89be92d65f0a1 legacy-trunk +19625 3448591e8275e7a75a472e0295f4efc81517cc9b legacy-trunk +19626 e1fa98fd239e75a13f08f775a82a9d356284e509 legacy-trunk +19627 8996288a8873b1c4e7814bbb0a8ecda5245fb9ef legacy-trunk +19628 6c96e8328d5301b7b6d5c1421c98d126a0be47d1 legacy-trunk +19629 a8e51f6b5cfc097c5d4fabd824521135c5e4285f legacy-trunk +19630 ff122c404f6431c6f458a4b1ff7744d3985dfc94 legacy-trunk +19631 db48d0b13b1ed012237190558394f37777533439 legacy-trunk +19632 2f585cbe71da59de397a77c0a85d708b5a310347 legacy-trunk +19633 a7c514e15003670aab91fcc59d073ffa35306812 legacy-trunk +19634 a804c91c182e1c15e1796b151fc0f08cd27f366f cnri-16-start +19635 0a38f4d9667ecefd9a18f1f68581ab637d619e07 cnri-16-start +19636 f4f2860d3a5f3e0998c8cd3a6fd2fc600620de07 cnri-16-start +19637 b4e42d29963dd4cbd2d2c56e90e8291db22f2efd r161-branch +19637 7ee378d5a41d2d8316ee326f818992419a4804e2 r161-branch +19639 6348cd459ee49e3e557e7f5b5127e078b30f7b2b legacy-trunk +19640 680c885dface91b946162eb5622fcf3ce6e1595e legacy-trunk +19641 b6a52e4383441f5a331401bbbd22b3f99de13334 legacy-trunk +19642 d446e4ec9b7b39770cff7fa929e4f69b304618a5 legacy-trunk +19643 905011e8740c5459cf8bb1b87923a05f4dd7ebf9 legacy-trunk +19644 14affbd037506c4d98bc980740e02a065461a9a8 legacy-trunk +19645 b235160f1346708519ce25f52a1008bf635108db legacy-trunk +19646 e4d9ba0ac0b2ca14cb3418d276cd47ca70fcf77e legacy-trunk +19647 67ed8a6905c339da8e5a9a1891fc6065a44e5bc3 legacy-trunk +19648 3839f0aa1e7ccece8a12087313f492f3779eb749 legacy-trunk +19649 a4182c679c61c44825240f63c4ea42dff53c37ac legacy-trunk +19650 2915eb07bd25a34b9fe84ef3c7910a818ed06459 legacy-trunk +19651 b9e5c122212ef34786b109b5284698211b7cf7d8 legacy-trunk +19652 68bd96e426e32bb1b992ba11bf1012adfe9b4cd4 legacy-trunk +19653 eb29924a3370e1fa820aabb822daec5695c473c1 legacy-trunk +19654 bf8d2b92ea0ef3251ccab6c33b0cac10c92b08d6 legacy-trunk +19655 5a1230de436a86057f7fd45828321f631e62c84d legacy-trunk +19656 5864a9c58c81c2281a617854d19d7ce4a91169a5 legacy-trunk +19657 4feea99be777f9627b40d86982a70bf82ad7ca6c legacy-trunk +19658 60fd9d454206da57ef5f23992279e36d6ac2e3ed legacy-trunk +19659 9977806b86174d96db7761338e67a4bc74245c90 legacy-trunk +19660 26d3e8eacedfadee6b909a5e14f4dc4a42e77613 legacy-trunk +19661 9519cad6bf9d4c53b6b183e360d4d20ac7f0a182 legacy-trunk +19662 00fea41730cf43c5cc81889f2d8722dd355340bf legacy-trunk +19663 e991d8843ab47e916b9c4b4f6a3a92e8214ec61d legacy-trunk +19664 67bad9f20b29c1793ee9ac71fcfe9bb25337871e legacy-trunk +19665 a89f783c133a502888fe70f32e7c1431569606dc legacy-trunk +19666 dae39ebbc0041cc15be2cfb5b863a768e193be54 legacy-trunk +19667 7f8f7bebd1f6467679f72ea298a3911ad18fdf9c legacy-trunk +19668 29aa832b878747866d78f9802dcadfc064f3fbd7 legacy-trunk +19669 b80243f7f97cbe6a786405dc89c59a1848edf8c8 legacy-trunk +19670 ac180c982295001a7e4662540cb8e43b5c6154d6 legacy-trunk +19671 3c2142f076b46fe2ab2bd0465f955c4fdb47aba6 legacy-trunk +19672 258dcafe2d0b8dc6bcec16e2a232d91877a0268e legacy-trunk +19673 08d937107fe6cc2095b18a65493c8dd24d924f5d legacy-trunk +19674 e0062e89d8f427a5fa88e50fe5135a6e92bfed0a legacy-trunk +19675 2c9186e40b30778fd0701b14a7341b2aaf1163aa legacy-trunk +19676 a869505195863c87aef203732cfdeeec13af5057 legacy-trunk +19677 44458fe947ddb05545cf8a846fe8b2578cbb659c legacy-trunk +19678 8156879fe60d1e2dab30796b9248986ed319204a legacy-trunk +19679 83895b4ce0bbf1eef5e470f3c6cdbe346d3efd7a legacy-trunk +19680 b2585d8fdb8bbf44225cf72df61df8951143ea37 legacy-trunk +19681 74fd1959cf44ee2b3fc0216d023706d15b38fb2d legacy-trunk +19682 ae7d7207da488036e2f718fdaa8be9f76d7987d9 legacy-trunk +19683 8bf0c49fce101aba91796b4e04188a10825ec033 legacy-trunk +19684 50d9159edaab676bbff2ee774e2b26e43f5f39c9 legacy-trunk +19685 1d1bf6813ee569879dc50769319f9b3dce6c80ad legacy-trunk +19686 580ad685445f5183a6161a5dcc624943f3e7a537 legacy-trunk +19687 c3fb044d7e6f1ac8d6061963a7bbab55228b8670 legacy-trunk +19688 4eaddf478e97a463b77a9917a73f6aa0fa09e8f4 legacy-trunk +19689 b2cff5705775e2699398cddc7916105113126fa3 legacy-trunk +19690 765801de1512083d6a4960c0abbcd3fec5e590a0 legacy-trunk +19691 ffcb3cff94394d0523263150a55264fd1fd1f330 legacy-trunk +19693 fd2a869769b249b87673139d9e164ee172028594 legacy-trunk +19694 53e8ebd11620d45c08a7284d73155825dba4654c legacy-trunk +19695 f54bae86a2c6bcc616be0ce2ee7c811f70e7cd94 legacy-trunk +19696 f796a877117e715b341f1ba7e00dc0424e203f3e legacy-trunk +19697 0f0efc2d12f143a686ece7668c35c1785395aef5 legacy-trunk +19698 acbe74f3a786f2f4579c6f7843c6c2c7e38d16ec legacy-trunk +19699 d4a315e4094c4871df433d0f6f661b21bb0209e6 legacy-trunk +19700 51cf451faae460198f97046c0bf54050bc01cde0 legacy-trunk +19701 a95693491ecaaf712deb788672e7fa0ecc3f2445 legacy-trunk +19702 ce47498a31585973ba7d3c955f3279804bd98ac3 legacy-trunk +19703 3b05212c161602557038ac8880e64f8b2d0c6ce1 legacy-trunk +19704 6732905686d40e81cbf081d29d8ae7d3af01ee88 legacy-trunk +19705 f5370e1e2392e6e42ad439a9d61a59e05d1d1cf5 legacy-trunk +19706 27f04d714ecbc536ce7afdf23eae1fd26b5a3e19 legacy-trunk +19707 b463acd6da22299ed1a070fe8f2bbb7ccf29ed2a legacy-trunk +19708 bbdeb6d4dea152fc36a518aa296f9cc7f1fd3122 legacy-trunk +19709 52fe377f07f2ce160b0325f0aec22405736e8f8d legacy-trunk +19710 5902b5794a17eb7f730ff386f0202ccb43f3f936 legacy-trunk +19711 f29c766864cb5a388f34277e5b97cf8ed28a6081 legacy-trunk +19712 0e6a3da4f956130521665ab60a8ccbb1d986fba3 legacy-trunk +19713 09f6c137205699370886ef6c7c66f1ac79b56678 legacy-trunk +19714 e1b1e68cbd8c15b81ce921e4ddf6fe88d0314683 legacy-trunk +19715 950fc2261da461a128899c2e4e01f9c74d2139a6 legacy-trunk +19716 3d29690a24e8955064d0739d7e323cd270885341 legacy-trunk +19717 76a684fe3f7fc5d8390da24a023787cc892af8e3 legacy-trunk +19718 326a4dcbcd22a766f396e4104ac177aaf74f5e02 legacy-trunk +19719 8156deb0e62de5e121597a896a5ab825059dadc8 legacy-trunk +19720 09dcf5ebcd8032fc9be3074cc95753aa1f9a3cbf legacy-trunk +19721 2d2ee30f43eadd5dcd2d7ac087aecd98c1e75036 legacy-trunk +19722 95a7c5898faa1da7a0c4b6d353a1f8028fc59660 legacy-trunk +19723 4894ba3edd0a5344f4a19f12e1f32f8dc11fe92b legacy-trunk +19724 a8771a52abb37fe07c9c5eece1e5b85f256cc559 legacy-trunk +19725 2d4da6cfee61829f83b4d6dd9db3272a04c67d9f legacy-trunk +19726 e5f2ab811ec3d818bd467c65ca83ca6fdf10f985 legacy-trunk +19727 847844248c6f92772968be94c9f30379d137517b legacy-trunk +19728 05785bdf289cd0608a3152c1fd5b97ed1a62b02c legacy-trunk +19729 bc89f116160b974ac2688853a93d1fd98bf68169 legacy-trunk +19730 ec9083ac26df7ddc1a7bbbf7b7ab47ad23140b3c legacy-trunk +19731 26ce6efc9744279ac67fbc1bb19685df94aba19c legacy-trunk +19732 c55780815a6e5a35d33af0a66b6c064480c05ca2 legacy-trunk +19733 b0aaf8f85d128e240a62d894137ad16c66c3193d legacy-trunk +19734 8d7f72cc2ecc81454c491d669bc03b858a9c2840 legacy-trunk +19735 cd4085cee3093aa5f410292f368aaa6aefb78f70 legacy-trunk +19736 9fa2009825833c818618545f56bf3c7f65e2bef4 legacy-trunk +19737 77a5470299dbe4d27e43bac5146dbb7babb5d949 legacy-trunk +19738 13cdbfb591a4743a1750b9f34b13c4d600cd9140 legacy-trunk +19739 d052dddbfd4450a11935d20007679e8b5af2853d legacy-trunk +19740 2514fcfa0f08254ff345cf5d242093c34159fc62 legacy-trunk +19741 3a411d41eeb4ff0704d2eb2b45f1beef3cfcde55 legacy-trunk +19742 7976cf7fd19683b58a44e4c6431fa2956a698eaa legacy-trunk +19743 7dc66d5b100eeaff09c524e886f40a197e8e106b legacy-trunk +19744 4126803e1a85dcafddea1eb6f5865718da7d2cbb legacy-trunk +19745 f399e6a88f65849581621c761e3836f98c40b327 legacy-trunk +19746 d675d75af8395eb84ae8f32ab1ced8097dee139e legacy-trunk +19747 5280e8439d5563842940454ba17f7d49f90d223a legacy-trunk +19748 9d018a3d7946aa71d1975960e060f7c9405a647b legacy-trunk +19749 79bbf7ad0fc179b26c4da436e0823c125edac20b legacy-trunk +19750 10b84060b7f39c675cf8ed9d86b2c7455f3fd6c2 legacy-trunk +19751 8d7486a8d69ac0b1a5bccc89dec307e366a91a75 legacy-trunk +19752 30ba883764ebb4e1954f61a729c1dc83db2b7af6 legacy-trunk +19753 1cf52536c381ed0dc31b5c6daec6ffb6b2658a2b legacy-trunk +19754 abaea443e28c2fcab9414a47a26f166659b2c6c5 legacy-trunk +19755 bdcd79873924ce642b0ac3dbb30945cd9685f49d legacy-trunk +19756 859829384663b36d90f94b90a881e6dfe3a118a0 legacy-trunk +19757 ad7343737aee9e12ee7462e9a2ba6d1867c1db6e legacy-trunk +19758 7b5b5756b2cad0e1f14e2338adb0ff27eb2baa7b legacy-trunk +19759 1ce751fa67d806ee7b549270ca6df93726599201 legacy-trunk +19760 d3f646404a43572a56b041c751de876cb0ce6c74 legacy-trunk +19761 68ce32861626f8e643356fc8e9b1c0f5a3e20e25 legacy-trunk +19762 14dbde1ecdeab9c33677582096de6c910223222b legacy-trunk +19763 fcfb442d7b34e296530594dfc1467fae6cdc6773 legacy-trunk +19764 0feb634900935aa6b3774a04cf93c44b757fe1cf legacy-trunk +19765 f287c684e04c45e6801e9ab19f67f92e7d291d0c legacy-trunk +19766 806c6ae231032475557c0878764508906812572c legacy-trunk +19767 f27d3299df3906206a9ecfef0a8ef09ca279ef9e legacy-trunk +19768 f1c8ea92ee852ee4a7abcf19c80d75630b4d647f legacy-trunk +19769 b3d504bdd979fa36e40a6124b40add7e641296bc legacy-trunk +19770 8aecdb2234881730a1d811448abe23617e7c7d7a legacy-trunk +19771 fa84f9f410923116b1cd578771e05084d9e9d1ed legacy-trunk +19772 74a9d0a4231a5eb0a1b3864b6e142f5e06bf1f48 legacy-trunk +19773 dcea09388332cab85729343a83f752797bae06e2 legacy-trunk +19774 320fa50a1a7d2556183d1186ee0fa100fb9643be legacy-trunk +19775 8d1e844fbb1ab5af0cb0176995acd95ef96c2d71 legacy-trunk +19776 572b654bf4ed54b07ce306df3722500b9ec3468f legacy-trunk +19777 f55f35dc53201a549d4cc8979608fad03f955e46 legacy-trunk +19778 e86875f069b16e34d096b0373b7b48e86772448b legacy-trunk +19779 41f3f4b2fe4a6762ab01085bdd759da8ff614e1c legacy-trunk +19780 0f0770a793acd2fb85b9894b923ca1d6c111917f legacy-trunk +19781 b73249c8de1801693d364d991326c029d44f11e8 legacy-trunk +19782 f1d45d6c12a28c22a39a8ac14fc73089bc1611a9 legacy-trunk +19783 6c93f18d323345eaf6eb7f3744d8fd17e8e5fcd3 legacy-trunk +19784 fa8906ecdb70245950d8efd73e3a60e566fd845d legacy-trunk +19785 203ad6f3ef8ce12e2bfa192bcbdf399a99a6e4cc legacy-trunk +19786 da638c484d08c63d65656ea598e5dacca0b03097 legacy-trunk +19787 a46a13201eeb8844c1392d712f20e645aa3e1f90 legacy-trunk +19788 f07fa7f5262a92fdc453e7bd8a6c604df8531a37 legacy-trunk +19789 f2902659374ac88e824b2b2a1bb4875f7c696c1b legacy-trunk +19790 4934102227192ecb67e22c7ca79c7351642060fe legacy-trunk +19791 b0456d3a0f1f1d3ec632df16b0b3aeb0fdd89339 legacy-trunk +19792 bb25f2b7bdae03b8c4161fefa37f0d96a8c05538 legacy-trunk +19793 6d59817cf7928ebeb5396be49f4bfd116b38ec4e legacy-trunk +19794 491fb49b46e6fded9658582a9b4f89ea5fcde2cf legacy-trunk +19795 004985a5ad5a8063a59a8518098d59722916969b legacy-trunk +19796 415205b2cdb2ddcf251af8a44f96bf4987198f56 legacy-trunk +19797 b5db23c7a804a192babdb0cfeaf2ec2cc79940c0 legacy-trunk +19798 5ab4da6ad4fc7bc8840c6bdf46b76ad4ec69db9b legacy-trunk +19799 b0a982c91af0133f365ad4f260ab64675883bd32 legacy-trunk +19800 faa7aaeb0210df918c0cf2b8ea14e33a63a3ef79 legacy-trunk +19801 3c65babf322fb3c5fad36d72ca16886f328b94d7 legacy-trunk +19802 2548d1a7018002f5a6661edcf42bf2b2c92de205 legacy-trunk +19803 02e097f72d47b0a3b5c9352846a9d5fad603b83d legacy-trunk +19804 3a2e8a3ede48193946657e78c3e440b77b96d4f1 legacy-trunk +19805 9c921a8ed3a723b84dbf9d8f91768829adb9ddff legacy-trunk +19806 52a3f82617c40c7e4fe1f1f5ef9c9836772504f4 legacy-trunk +19807 abc8c6c025ce83711964729bea6df2f98e1db168 legacy-trunk +19808 b046a31af2e06e83a13273e7708fb635a461412f legacy-trunk +19809 eb4ed9f23d20698e51a615c6f8dce4f0faf91d6c legacy-trunk +19810 94683c85ec76e6d1604c0684afd0f537d7c3fd3c legacy-trunk +19811 8c64dda1d26f30deaa3f0e6e6383a7e7cfb67f40 legacy-trunk +19812 b8259c7ff49c9bdeb58d626aaae5b35d7a47907e legacy-trunk +19813 5d7e0ea318180cfb04be971877cb7e6e821fe7b3 legacy-trunk +19814 09aec668df3ae28c26fe3da8ab45bb5570af0492 legacy-trunk +19815 c28dfe5f87a73be1908c87e1991e62a7a45ebe6b legacy-trunk +19816 a015aed3a1ac1098fe34e45916911c064f4d3542 legacy-trunk +19817 af810f08425bef2548b5ffb50877aa816203a55f legacy-trunk +19818 e9445c51ff29f6923166705ec260a3dff446e215 legacy-trunk +19819 4baa5a955532ae55a881d5cb4504613249dc8185 legacy-trunk +19820 8a4696d7f74c0c21e6efffc6382bd179d9ff5306 legacy-trunk +19821 31e302e94da881b2de3b7da82b8c7772fd254f01 legacy-trunk +19822 b25131bc6ec7c882547153999e8dea4ef5709de0 legacy-trunk +19823 faa52f384af65248db4bc262fb2073a183313815 legacy-trunk +19824 09ba15ee1961ba3357da91972c24e615a36d4682 legacy-trunk +19825 b6c0cfb1efeaccc6695b6635bf6a022b1e1f5986 legacy-trunk +19826 dfeb3ae692c1119ed709140903200b4353869c7e legacy-trunk +19827 832e40909ef484f4adf11088998bc936f80b7377 legacy-trunk +19828 9fd20cae7b766754c56c7b24842efe78c5450549 legacy-trunk +19829 c7c535361467d4901d195bb9e0f922d68cd777b9 legacy-trunk +19830 acd506084727e734d87b302ccfb6f6cf8ffd190e legacy-trunk +19831 a1b3446c720f1a4ff758e2e141a0f03fb783ae8f legacy-trunk +19832 cd6e4bc99295b855ff475a8c7f18ef712815a851 legacy-trunk +19833 e53b32845224e793195216da866b64afc5b485ec legacy-trunk +19834 91231bbb3842f476f08c6e3d8abf0e0a850e0945 legacy-trunk +19835 b8320a26c06576d738a5c044da3f48af0a61d321 legacy-trunk +19836 0d4e806c42ccbd3ec2ba393358ecfac98ca89e59 legacy-trunk +19837 602eb046b3e7d344479722117c1e81018df32428 legacy-trunk +19838 2c290d4c3b382f7a87fb5863cd4f4a5f21d85fd8 legacy-trunk +19839 6f42c1d55e6af068401f1a44e0f53940810c9e14 legacy-trunk +19840 ec29895ee40cfd2611f9f54a704273e6a2632200 legacy-trunk +19841 38e17a0894929064f2759801cdff73d051334683 legacy-trunk +19842 6bbe268f8ad84918cf4aabb727270018a347b37f legacy-trunk +19842 d0c830db5e68edd4aaa3401216e610c9ff145826 legacy-trunk +19844 9a9eaecf0fd82926bd2300e61eb9d2cbecd49970 legacy-trunk +19845 723cf5e378e57dbd2faed87c7b7b1d45c59696fc legacy-trunk +19846 64532ba5dced5dff3e5c52895cd2ff3f5c828d1d legacy-trunk +19847 b83a3b78314eb8931993a5efcdcc258fcabf2df6 legacy-trunk +19848 d888dc7bea32ebf53182659bd8c461fe260aeb2c legacy-trunk +19849 2dfee333a651006378026dfa6b533878319d04c6 legacy-trunk +19850 a79ebba6466a637bf359fb816b3be61f95715757 legacy-trunk +19851 e6c5bc5beab3a07c71a45ce3e40bfd6a0e1063e6 legacy-trunk +19852 0b4c57a25977eda7a97561ec1c4016e2cd1c99c6 legacy-trunk +19853 d5e53cf9de7c3309362f4c7de0675175177212a6 legacy-trunk +19854 2b9354f4852faab05fd8373c20a63ff893db9468 legacy-trunk +19855 c1e1949f39fea2152e5bff8a1eaa90b73eca339c legacy-trunk +19856 6702c0df16b668aa03de76f84d3fac8b51e1a5eb legacy-trunk +19857 c79dab652ea84413c8c34b75f91d68fa3acd6c60 legacy-trunk +19858 d6ece7c3b35eaf6a5e9d788960fbff65377dd992 legacy-trunk +19859 f5cb6d66a977bde3308744c00d121627290256eb legacy-trunk +19860 1a5a03e2da73969e22655fecd6e0c53da8f4381c legacy-trunk +19861 c5a417e8d84c836374a290c1f087def82b91cc4f legacy-trunk +19862 61c9fa94ce9d9a4ad9a180ca586be49c0dd101b1 legacy-trunk +19863 1c95b6b06ae31d27a5ab41586952ad079a66830d legacy-trunk +19864 4152855ef9a8b635a841010dfe34957af5e11fd8 legacy-trunk +19865 a975f2c154c0604599913b63ce1f1a11d76ead58 legacy-trunk +19866 7c7ccfb5db3ef1375bc6707d8b7fe6c2cc324b76 legacy-trunk +19867 1ddc70dd1d1bbad031988bc3536162147e80116c legacy-trunk +19868 86318733fe709359fa7199cda6bf11ae640f4d1e legacy-trunk +19869 459c8ef0a0103598349c0533dcc5fd563294fd46 legacy-trunk +19870 9104ed38ac051c9d5091adc2d199be94f57705ad legacy-trunk +19871 41b9249e4d4863bd5aa2bac762a3587915b3ca10 legacy-trunk +19872 86fd723f29286a2c3fd7367377f707bf8855216f legacy-trunk +19873 4f9db834825caa0c3fd8b16ed67fb79ace992152 legacy-trunk +19874 eee7d0c5ae592af4de950fb72b362094c18ba523 legacy-trunk +19875 e59eda525fc1e7b52b745eb3f8f0a0fcdc0bcd7c legacy-trunk +19876 2dc3ca1d890c77317e634cdb655a033c19a14475 legacy-trunk +19877 f3fb05bfeeeb135c6e9266f610bbe2967a25d278 legacy-trunk +19878 534a93d82edca1adfb0e8e0ce66a8019d6273038 legacy-trunk +19879 b7b048da16735f04c160c1d6121822ab6a15c728 legacy-trunk +19880 548716e2f1f13c38b8b5fad82ae00f838e036470 legacy-trunk +19881 3b494c5c6234dead11a35b8676139824d43c8b69 legacy-trunk +19883 4c17cb2c621e9bd09abb7bb20906661de9a0a2e8 legacy-trunk +19884 a1dd0b0709d2063ff3ff6ce7d507ab0559246cac legacy-trunk +19885 99de4bf2b9e55193b280a70ca9d09b2ee0a32efd legacy-trunk +19886 d56d77f9373bdef99bb3bff8109d3ffb221039e0 legacy-trunk +19887 db55604353b3a2a4da2c936c217a6366a9816568 legacy-trunk +19888 8eaf74a111ebd9205983ae812a711933801cf746 legacy-trunk +19889 d15ace32110266f6e3d500ba98b4f029959f26df legacy-trunk +19890 6bdf563c763b3a4d033770c97a6a515a3a93df67 legacy-trunk +19891 3c650d9c38e74eeac3fe40f7bfc67f827e45c494 legacy-trunk +19892 19c2f50e539571c4ef9da572c686691b6566c15b legacy-trunk +19893 3f5a54a8a1fb5058967a3f0b0ddfd7809aaaac48 legacy-trunk +19894 7a36f6201c940072d2f361acb802a9c44bbcb4f4 legacy-trunk +19895 89546bddc22cc0deef1b4dc66c264020c9e3423d legacy-trunk +19896 953c50f12184aae2c4022b4dbbd2674b44e1e54d legacy-trunk +19897 f0efdcd24512fb8d4b4b4f0e060307790ac4faa2 legacy-trunk +19898 cd7ac4d9add02079a28b972865bf7db938592a4f legacy-trunk +19899 e21d4c20565d00ca42473344a52984a37d06ee6c legacy-trunk +19900 3cfbbcbf7134d117b821380fb2b556dba9deca53 legacy-trunk +19901 971ff6b58edbfb7e66fb514ee2814819c8c2e0f3 legacy-trunk +19902 f4146ca0f2921e20b4d742c58f731f1812808500 legacy-trunk +19903 2a80191d12030e83981bd079a03bbb52f136fe31 legacy-trunk +19904 51c6a2cb03d1b419e1d4a6a7a31a38b9330cc841 legacy-trunk +19905 65a638a24f7e954f48077bbed3857074b631c97a legacy-trunk +19906 3ec500403f010d8efd543071ceeea39d1d027c58 legacy-trunk +19907 b40ab3105521f1945cddb75c96caac533133291c legacy-trunk +19908 1e58d782c09ac9f3fc135b9540c3c75cd8c59b93 iter-branch +19909 d5811af8acf3dd4e328bdbd16b7281c7daaf8449 legacy-trunk +19910 533cc907edbd2cb61379dd75040f05a087250b30 legacy-trunk +19911 ba81d79dc3a31daf5701f7fe24f2afee39a494d5 legacy-trunk +19912 7e1e6725509e6c5971c9e94d82e4dcf7942d47d4 legacy-trunk +19913 ad741745cb6c0941626fca5404b32aeea42bca5e legacy-trunk +19914 8a348308316d544fb0681ec4948ad8132d06c27e iter-branch +19915 420a0781bb92f7c6011c7e88a68021cc1f6544cf legacy-trunk +19916 c1edb14f043bbb732a2ed2471c069eabee742cfb iter-branch +19917 40ad0a0761d24fa654b015bed87b140d7c6af228 iter-branch +19918 f394af8c580f0551e46093aad2d4959a47e690c3 iter-branch +19919 62f74c259762dfe5e5ed0483bcd20b64a9211d73 iter-branch +19920 3f5587c28a50f913a7c0d05cbeddd288e28ed67b iter-branch +19921 f4d498a9d98903fbc1681002de1ce28bf010be27 iter-branch +19922 52797b4b375bc9426cd1b0742eabdd2ee395d383 iter-branch +19923 d27f844f6cfe562e273a58e099648dce166fff5d iter-branch +19924 98a2bb90520d6cf5e283088748bb51fb85d028f1 iter-branch +19925 afb33fef14cb8e36e4cf4ba88184f051e2f6a8ae iter-branch +19926 3a8666e129adf9eb6e0c6b048d7a4eabb41791ce iter-branch +19927 220b62738d7428133902c43ed2f500af615f8f63 legacy-trunk +19928 5d68afc5227c91b1bf3df2aa698c19215118165d legacy-trunk +19929 172d2a2816bfa3a0afeb126f0be0357f42894512 iter-branch +19930 095b80d2e785d9f920c9eb244d2c72f69ef3e82c legacy-trunk +19931 2ed7c58943e6112af25f9baa7dccf84a71e8e8c4 iter-branch +19932 c57a1b6781b04fb4517d31ea987a6af30687c497 iter-branch +19933 7bb1256b506db464de8ac9944cfbb4b11f657b25 legacy-trunk +19934 3375a2a98e566fd13e43c2bbf69bf837adcd15dd legacy-trunk +19935 eb4366b3e391aa90c3c83713558890ca5395e11c legacy-trunk +19936 6ca72d71536e0c7f1deeb84f67857183d410c935 legacy-trunk +19937 ff75c382f0d32e0f72d3903ddb1a8696e143d502 legacy-trunk +19938 1f700a7206b2fc44fb3a72ec1d94b1620cdaa010 legacy-trunk +19939 5e6ab939bdbcc4da6c4edd04b9979fc9e8c77091 legacy-trunk +19940 bd40b13fa5abfab93da4a355a6853afe106b39be legacy-trunk +19941 7eb5a6e8c98d450ccbd38b09dcaf6785d079816a legacy-trunk +19942 7a4175e10626cf7498c3928d411e558f89735134 legacy-trunk +19943 d58e93dafb98c2fdddf5051ef3683a6da0713c62 legacy-trunk +19944 4e6f14e7557e99005476c4a090bff1081d42dd3c legacy-trunk +19946 90e4064ca045ece8d1a98502d82c7f006ded4ede release20-maint +19947 415a19bb1675c4794c168c64eb8d4252dbff51a8 release20-maint +19948 743296ce052b187aa07430afdea546068c93a680 legacy-trunk +19949 14b7a7b8d58dbbf2a4de2dbb184f621e85b72492 legacy-trunk +19950 797ebb7033d726ef0e928ec48b9aaea4140f7ea0 legacy-trunk +19951 a1066e5a1065cad416ef4c1baff984c1ded3702e legacy-trunk +19952 dc0f62e7588b3e895cdd4d8348b164766fc7d256 legacy-trunk +19953 3f5276cbbc4da244aafc48f929ec65e21aaf9bce legacy-trunk +19954 a5814f620e86d9a703d697c9f02cdd88c8c17b9e legacy-trunk +19955 33c8680b3b354046d2324a86c17fc2ad999052a9 legacy-trunk +19956 d7e02b9ee179c1e43adcfd4a9dac9d790225072d legacy-trunk +19957 546922fa8d99490a34023d86ef71a1cb60b2eca4 legacy-trunk +19958 dd04bbfd5a76ceeaa052d4131a32f8cac1f285c7 legacy-trunk +19959 2c1be7924b04afaf74bac7c3c77e1206be45836b legacy-trunk +19960 26cded59c17253f97c65e14d3c72490e2f3dfc10 legacy-trunk +19961 eb4a5ff0f72cc853729dc9bdf37fc233a5ed3ddc legacy-trunk +19962 ee6793ae06c14e0038728b64f3ccf7a1effde123 legacy-trunk +19963 b650d7daa593cc96b233006b10c18c7b3cc86183 legacy-trunk +19964 b45ae8c467aaf44d0aebcc82271024671657d774 legacy-trunk +19965 43172889e8e66b1898c5ef2276342951b77bb6af legacy-trunk +19966 462b8dfe875391e9631609627cf795cb0cfa81d4 legacy-trunk +19967 8323b098c6ce0b1c6311d2ae53d28cc18bd444ab legacy-trunk +19968 9079f70a5b83f9f228e5da8247d66040dca57c0d legacy-trunk +19969 85d74f040712e64da530948fec0cadac04ee1875 legacy-trunk +19970 f7e2c3d9c38791d3179cb54a3411a056cbe8ae4d legacy-trunk +19971 7e181eba6b9bd4d814b94b011e094135d6a13d5b legacy-trunk +19972 bc0555be22123a4d5a8dc324cb5cc1887d478243 legacy-trunk +19973 52cb0c5fdf23809928392d323461ad1c6a22ce33 legacy-trunk +19974 f2717b0137d07274deaafa501f7359a21b809c28 legacy-trunk +19975 6434dc776cb975a2c3595064a3f7db900facfd17 legacy-trunk +19976 1380a52f1a2186290f9ea5cc259a29c7857527e6 legacy-trunk +19977 ce8ac37db300a5a74048f857b39bb45c47d3640d release20-maint +19978 6a527be4c4d1907d84d9eb43620e5688f3c8ff95 legacy-trunk +19979 3f2281e24e2dc4cc9a6199f4d957a5f04534272d legacy-trunk +19980 c064c0d3c49b9362249f6d1bcdb4e66ece50673c legacy-trunk +19981 74046782072d608c8ac0d79ccff4998e9a782c41 legacy-trunk +19982 b1abb26229793df7c5fddbe8eb9330ca3ea60dc8 legacy-trunk +19983 7e938f0e9a497548e899d42a6d587e8b4644c6ea legacy-trunk +19984 77196557fd3167cae433db809ca77531c1db62d3 legacy-trunk +19985 9cfd9c3297dd4293c6023c6b0c54ea87187af001 legacy-trunk +19986 45ad7a468ba2a353bfc6d6f248aab85ec6a835d7 legacy-trunk +19987 dd5a1b28044079c0622f05e703cad627440d4c36 legacy-trunk +19988 579ac8e35f5b5e8277877f555d834e8951e04420 legacy-trunk +19989 8f339269e027d6f8916c3f3ded6c5d9a025beb74 legacy-trunk +19990 c214f3720658e2b86535f0862bc9747df069f41c legacy-trunk +19991 989fed28b74f33a448e04f639cd84f731b472076 legacy-trunk +19992 d9ee56b6db26a547fd73f8c5ed68e6ec79f0941c legacy-trunk +19993 dcf73f10f7ccf03d79cdf11bd489151518056287 legacy-trunk +19994 9bf37493387205acf3ddbea7c80a740df2a1f3a1 legacy-trunk +19995 edda4a43239bcc30b50c20304e88a67eb784224c legacy-trunk +19996 a38cce3f41b41dfc220da356c5cf0a50651ee5a1 legacy-trunk +19997 a488a63cb8674e6b70424c96703182e4e69999e3 legacy-trunk +19998 8ff24abeb388110cb4c5827585abcdd9ef340ed1 legacy-trunk +19999 1823fa2315215c04e85e0d4a02d0e09d8b1c446f legacy-trunk +20000 adc8a41bee9f6976913b2b25191e194776ce2895 legacy-trunk +20001 33f7769a218ed7b54f6b7a85d9a5625b02805f77 legacy-trunk +20002 7eb8b240dd6c4b01775fa89bcb8e0fa37c50eebb legacy-trunk +20003 7ed3e7a08a31019dc8393d7024a71f43327b478d legacy-trunk +20004 bf678a11c21aec7d19fb7458e70c33a3b85139b1 legacy-trunk +20005 76eab2ebce58a44b4880e5e2cf3a02209f676f77 legacy-trunk +20006 4863b595bdae86001246e14bf21333b5d159af9b legacy-trunk +20007 6fe13d008e25f7a932e33cf0150edac906e1d17e legacy-trunk +20008 e1214f9e12a3ccf1868e3fd5f258fd02747cdaec legacy-trunk +20009 d31add99a8468ca8cb130052cdf4d6afa39c0eda legacy-trunk +20010 33d8dd02aa9912919fe62bc783a63f8673cbef31 legacy-trunk +20011 f9a07e99907e6eb974e493a44ec529aaa7fc1a18 legacy-trunk +20012 3b6ea4cfeee062ecbbc0f468694e964cefa218e8 legacy-trunk +20013 848f08559916d4a731896df3283c4025a14d1d17 legacy-trunk +20014 646ec2a4d7f4e0cb2760902861290f67c99df68c legacy-trunk +20015 9e6e4f5e56045f864352225d9e70d7c4c63d5c2d legacy-trunk +20016 da6c662982b64443aae119f9dd616256694431d3 legacy-trunk +20017 a8301d4ed2b1b95896e0b7a499e8ef8c2b7067c8 legacy-trunk +20018 2054cea38754bd3badbca3fc4403c43fbcd46a3c legacy-trunk +20019 1b8745faa2ed2c9f14beac5ecc25b3732f787a58 legacy-trunk +20020 54b6d28a6878c9b102c68ed4bf3983481b2e5abf legacy-trunk +20021 1146070f47ec6b7eac445d5c86689aa543e19757 legacy-trunk +20022 32bcb4e210054ff182f4cb512863450792375988 legacy-trunk +20023 0b33fc67ca4e49d7e3af44cd017b00da1736f34f legacy-trunk +20024 1c90a1cf795c9680b7e478c38f7cac92fc1ee249 legacy-trunk +20025 55218e0495bc4784f3ba7ea544c8d19428613bb5 legacy-trunk +20026 d0fd60c59aefad0a8ef8ebb98b9f234d99c7df5c legacy-trunk +20027 0fa2c05188a0b79c6e92e4054e627e95f8a5c782 legacy-trunk +20028 206a9f1978e500a869cfa3f8205fd609a67df58b legacy-trunk +20029 2ed845f81b0c5df884816da2f09adfe04633611e legacy-trunk +20030 816d860026831b2409df065337dd7c06369c020f legacy-trunk +20031 7243deb020e87e32c075bbd4149e78b7cfe05cb0 legacy-trunk +20032 c9b4eff15dcdacf7904845cb9d700b4a55f25d20 legacy-trunk +20033 f58a65d4cc237837ed54f73c6b14448915115c83 legacy-trunk +20034 f429ee9448aad4d2eb3764553c7554f3ec476cc3 legacy-trunk +20035 8fb10affb6157acde57ecf821fb13b97e5a03dc2 legacy-trunk +20036 c2e4ba3c85cc92cb839292070abbfb7a42ea160b legacy-trunk +20037 bbf5ea2a22e5597b9d7c4da5986e9bfaaa2fd99f legacy-trunk +20038 8368404373eccf2637f3fbe300539e6524e0321c legacy-trunk +20039 f07bc4f8db9e6987cd2f6675ff2313952776f049 legacy-trunk +20040 349c8788604e293249b9eead92b3ff0c31c429f5 legacy-trunk +20041 206809e25b50d2dde2388aa81929b9e55b3e1fb8 legacy-trunk +20042 50807c465034b69a23c28466df70ae861ef42407 legacy-trunk +20043 c74c4bdcb41122f38083a9dadd99680d362e61d6 legacy-trunk +20044 260868cae1a1d5dfd877fc4f1efe896f4e64ee9d legacy-trunk +20045 ce90f567fa4202a59c4d7ae1171b9e07c795b534 legacy-trunk +20046 0b8b6f8406dcfb806d2ed8f590ebff8f41e6fb01 legacy-trunk +20047 3b8a5bbfd2e5720d6e96140e4c40d50bf49591aa legacy-trunk +20048 1550872249e9e8519310f1bffcc9b7849d94076d legacy-trunk +20049 1be0d1c57834025dd5d1c335d2b090ff505719fa legacy-trunk +20050 8c6f22cef87822d6e00ab65e11aa69d2c59efabf legacy-trunk +20051 f72173c793b6d832cbe477f66656f1c2de34e968 legacy-trunk +20052 10940561e891c100c9935a19fe528510c06b97a0 legacy-trunk +20053 7291891cb0bf7687cc5df073b6e923be05897a41 legacy-trunk +20054 e3b5d03e3d7db7c6cfbb3f60deac62bb386e9ac3 legacy-trunk +20055 143ef88ec85634b44066e6dd7e674552b274ac50 legacy-trunk +20056 ad683f20bb14075b1ac21141ff032fe916ffbbe4 legacy-trunk +20057 b44e77a129788de5b906229a8209afda7be528ab legacy-trunk +20058 dc9a151a0bd52a9682bd07700e8d229b8a269020 legacy-trunk +20059 9dbab3d54deeec3fa0c546fe0ae89b852b0ac4c5 legacy-trunk +20060 346e978630a9c3bc7de1bf06f076574109fb04d9 legacy-trunk +20061 0d52358cb2883419548d4a7f85426225140948aa legacy-trunk +20062 d807488dfc7a12b7ae3fabc921c952489cca214d legacy-trunk +20063 962196ce7231563fb05844fb63e6e9b13d88862a legacy-trunk +20064 4f68d3f8fdc82008059779a845ad4897caec2f9d legacy-trunk +20065 10902ecabca9c730a1df0ed0617e79382f093ffb legacy-trunk +20066 73f41b0ff7775afde5f426af1a0d0d0aa9d59c3d legacy-trunk +20067 cd2455cb13ef55c65ec6f58401c1eb0bec0e3d7d legacy-trunk +20068 e49078101a68741d77a5f04b8cb74ab5121a7de1 legacy-trunk +20069 596efa7e7df83cfafd7ba8a441a30a6046939d75 legacy-trunk +20070 63cacdeb8045bd519a26d6d6a79720001895cc9d legacy-trunk +20071 707f95d05e690764e88bd1cc4a67b24dd0394d29 legacy-trunk +20072 8df0f65e38603587816d19577db4b9f01a98da4f legacy-trunk +20073 a7bbf33fce05ae4bbf0229e12799bb5fa392e89b legacy-trunk +20074 7916d32aa08125d8c9df6edfc62dd2883c8ff407 legacy-trunk +20075 5ee3543ea33f4250e97c81fe8c85541f46d97cf2 legacy-trunk +20076 9e6468356a0b337165f5b25df07d2556cac8d960 legacy-trunk +20077 56d195f21b4fe0da8e5acda9eeab9f42d7ef9d45 legacy-trunk +20078 f9a30015e8b0fcb4fcc7f5cf2cf787c2e412e89c legacy-trunk +20079 f2f8f3e2ac231c1bf49acdc5f274768c0b17bd1d legacy-trunk +20080 d48d09c787a849d140582e785fbb9ab43af594d7 legacy-trunk +20081 f5d38c5b1751e3d716d5c1563a08749f82deddc7 legacy-trunk +20082 d718c293a1ffa2b7f4f9818bc70826c0e10eb105 legacy-trunk +20083 bacac75d22fde9e86a24d0d60a785530da330c8c legacy-trunk +20084 eb06a02e05076be4ce16d4ad990677db1a043c39 legacy-trunk +20085 1153796d21c240706bd093120e833f1d7d52f996 legacy-trunk +20086 4120ebe08dd0416cc3d7c87cacace5d0f17b1092 legacy-trunk +20087 34ef05441413f26b65cb15400cae82a277658e07 legacy-trunk +20088 38ef466359492656903c744eb24d6d05d1e079b4 legacy-trunk +20089 2e7f47314adaa3177834bcf12d4bfd1f7d4a83fb legacy-trunk +20090 5705d5a8bcb3cd95e4fab0d33c12a9ef36d8a7dc legacy-trunk +20091 c58b6d868d0816f5a694e10a6be35241254dee89 legacy-trunk +20092 7a4940a4aca6f729e29080cb9fdd936d760eb428 legacy-trunk +20093 7057b6aa46ec55fca180c5fde58d70e0c56dad7a legacy-trunk +20094 ac656c837b6c764bac10eb92d096f33972ea6afa legacy-trunk +20095 6cfa3d65ab5469bf068b92e52c6aead481e3e351 legacy-trunk +20096 90546d6e54454fc68594a205f9112e661121e1c8 legacy-trunk +20097 b742caf0a862a45c3f1565570a8be73b2057ec85 legacy-trunk +20098 407d60b2fa41a94c9df4e3c665ca8c07ed33ea0a legacy-trunk +20099 7822394880585bf7b6a5ba2d2af7e7b21cbb4e9f legacy-trunk +20100 16f145aac2ec12e5d61217832c4749a7b9f361f6 legacy-trunk +20101 c8817a9bbbddbc4c0ccdabe1a6b06a79cb6c74b3 legacy-trunk +20102 52da094b53ec39bf9505aef6196eb8f01d84c747 legacy-trunk +20103 d3f7c7fadec03989caed79490be9cd02881beabf legacy-trunk +20104 64876bb8aacdc5b1df9d063748425b2cd255aa54 legacy-trunk +20105 215dc725db84049ed68f55a75b8d7ef51b6b5ed6 legacy-trunk +20106 4d6ee7f2bee6609a0c30676cdb12a867541a24bc legacy-trunk +20107 f1a49eec7c2bf1db7585d2ec273109691f0d1523 legacy-trunk +20108 f6e1fa2db48cbb7a4f72d25be7f90f03d04fa60f legacy-trunk +20109 a1b99d088cea8294d5b921327d2b434a03183385 legacy-trunk +20109 b59a536ae1ef3774fd85c17f623e8926b7b6c095 legacy-trunk +20111 b3dce06868d6d35f5903452e6e90d7f0ac417c38 legacy-trunk +20112 3f912fb8c1808184eba632867b20ab1dbbcba358 legacy-trunk +20113 b60096d5001a6e0d836a0660ff95c79cd11e0191 legacy-trunk +20114 e3cc20e9ea36ecdd787bfb7bfd6df0211a3ed748 legacy-trunk +20115 eec391a55f844019eb4f3f9c64c16e33d8231c64 legacy-trunk +20116 b291833a0efb7e1d1466d3e4172eb0134e3ac1b9 legacy-trunk +20117 f9395f7627c4b7bf24af4b699396d45fe0dc5d6c legacy-trunk +20118 ab707209409bb958574ad3461065a415a810d287 legacy-trunk +20119 02a4b0cfc57e1354b0ef7e0a66e3c95328094ac2 legacy-trunk +20120 3eb8d725996924c2a757fc0ac96196d40fd6718e legacy-trunk +20121 32fb6643adf1f04cb878eb6fab5555ce6bc715f8 legacy-trunk +20122 92b3e08319702a4c733b4bf432cae0c0c99266b2 legacy-trunk +20123 45cda1b39355bc76639e3f5add9717f720c522de legacy-trunk +20124 bf4cc99d711d0ac74f001459a5cc1b5ee3d83c14 legacy-trunk +20125 4e19fb8cf1fbd39870ecbad6b6d7882078e7be27 legacy-trunk +20126 d2b01d4e17e9dcfd2b276a98ca73d49ddd0f10e3 legacy-trunk +20127 71af3b60aa629123a5643294c9dfed5b8621fed5 legacy-trunk +20128 5f71185ef2b5addede7ac21bbde7cf2f87335fc6 legacy-trunk +20129 1412309563256e1e430163fc7ffeec76685e0e4f legacy-trunk +20130 390a8315d6342b4c2f70f8a21bea244ec8dbec79 legacy-trunk +20132 7c0472932fbf960bd59bb28d2c92a176232e5ef3 legacy-trunk +20133 22d85017bece89899b721062f30b29cde9201729 legacy-trunk +20134 536e8dd35953244d3026fdf3196b6a84e27c63ea legacy-trunk +20135 ee480382678479669357897b04043f1761991521 legacy-trunk +20136 1b12e634003894cc18c8412158fd9e7e1f8e9f8f legacy-trunk +20137 a340ba4aac270d84af6b8d1e022a7f7d6721fa09 legacy-trunk +20138 25e93a01f86d9ef05de482ffa12c67803b4960e0 legacy-trunk +20139 0377f927cafa33846386340b2fe7d449af07fbd7 legacy-trunk +20140 75103bef0c2455d3386caf0447dfba423f352740 legacy-trunk +20141 59472bcbfb8e8a5abd58b1727d03b557a71c5b86 legacy-trunk +20142 02cec00f22bb53cf608d2e306f0b8122f8fed10c legacy-trunk +20143 6d30552cb4f99087a1f390afdeb1243e9296cc15 legacy-trunk +20144 4aa7afbf29d82157e249c830f1b976d81344b2ae release20-maint +20145 fdc522dc9df556ccabbca7fd967486de1b4143ad legacy-trunk +20146 b553fbac146ddbead069b46919a12b22834ecbb3 legacy-trunk +20147 87d509d085a0fc38852d7198564efef34d681800 legacy-trunk +20148 870da24d4baf24e7af078f160512904ec55e842f release20-maint +20149 22d349748384f8666a80a86e869b5336b39a93c0 release20-maint +20150 c4a5bd08851bcfab5f7ad8a6206967d815bbb622 release20-maint +20151 ee264669b6780e97ede504f402ebc3e336fd3658 release20-maint +20152 a002918fc0c27644c47990c1371b986332cda7d2 release20-maint +20153 12fee7fb019b3b84356b322fcc76bbc2ec9e7ef6 release20-maint +20154 beb2982d85aa822c454fefe4c97042ffb1510c9c release20-maint +20155 11a21d59283487a5e3ca6171869ea4f8c1743204 release20-maint +20156 a626acc30fc2399abd9abb99689ead66469eb91f release20-maint +20157 f4ca93e8a2d47964c87d78a6a0d68e3e67442211 release20-maint +20158 6393f55dbd7be9df7e278cbe7b03c192ca5f0711 release20-maint +20159 5ed4c7e8b4f98ecfdf4635ac6750ba093fe32f7f release20-maint +20160 9ddbb76c31145435be2fafcb916eab35f15c4a85 release20-maint +20161 42b1a699a5ddc1cd500b594deaea696ee246b93f release20-maint +20162 d467d184b429304e83c1c028c103fdc0fb131116 release20-maint +20163 093e9a24ee767a1d4ccdef196d15bfb98592709e legacy-trunk +20164 e2e9146f4ab4d9c29bf34b0b110445c97e85b91b legacy-trunk +20165 24d22eee94cf371573d1232b6cd013e3264a9272 legacy-trunk +20166 72fd2657be34287f596f34bb6b7b1d56b1b0f302 legacy-trunk +20167 536cc126fb9f8a07112b050bd1b742baff08e897 release20-maint +20168 6dc43e0c6bbf503534330062e73b729ee0be190c release20-maint +20169 e510c4cc573763d3dcd14b612fc95aae0e322c39 release20-maint +20170 a46964d7111ddef4a2a2921fd74d0c3c4d4667cd release20-maint +20171 d7e0d20cddadb3632e5e0006f520b91a38c0f594 release20-maint +20172 d9ff13100e2f2122ca23a9945f65591a5a6e3e4c release20-maint +20173 5cf355f67aa37b1f6fcdd50b8f9bae3b4caa695b release20-maint +20174 573a91388705b500fca5b4d73ac1f3df001ac038 release20-maint +20175 ccef02da88a67f9918374e8a7ea0c1843f4b1759 release20-maint +20176 31203d99358273cf733b9fe1dc23fc6f787be115 release20-maint +20177 9956a1c5d44054d64f61f885aeb0f81e4ecbc101 release20-maint +20178 192f25e41fbbee988bf1b5d995386d4d1df182a9 release20-maint +20179 2b5768c1359920293e56e0e8635ad2a374643041 release20-maint +20180 992460c668c15bf926484cee3036c907e3884d95 release20-maint +20181 8deca79ea6abb55e33f8b38057c956b8fa0d878c release20-maint +20182 043775b3b8b296634749bf921f9ac80f8c7e666b release20-maint +20183 f34c90989138345dcf673ad232355b49685f62eb release20-maint +20184 d1c1350a3a5f42b585c68c498aa24ec8d479dad7 release20-maint +20185 5a4e0839cce76cf06de24f134e66bef47eaae311 release20-maint +20186 5bd686e0ecd41f6001987294bfa87bfcf03e66dc release20-maint +20187 d16edc704da1f58cc54d828f2ab38da2d3f9dc10 release20-maint +20188 d53a9679a93bb8be81ad95d3e03bef3d25d168f5 release20-maint +20189 9776cf5dbfe38d0c7881b6dee2d1b55d6bb0b3f0 release20-maint +20190 76b89fa3ef34060a3cc1d46e4f9a3ea5f4426de8 release20-maint +20191 c0114edfd31376a886cbd7caa8e135318df05b4e release20-maint +20192 ef1223d8442dc5681d9ea48efa1954367202bc55 release20-maint +20193 6b0ff529d6150243b90e09e86e1bb6744dda4266 release20-maint +20194 7d04245ed75f39bf2e4fd34bcda671fa75e8876f release20-maint +20195 d6547ff9416bab819ab89bda9eb08e027fca353d legacy-trunk +20196 03ba06247486630aafa7e0f4edca2308e1ef5e3c legacy-trunk +20197 836cdf8d1245d5f92b3d5d36a85369d94912d4cb legacy-trunk +20198 ea326eb4775cc1c40ee1e212d5dd75968e0151ed legacy-trunk +20199 46a6c28d35e5db8d14a6171c347692b4f493d569 legacy-trunk +20200 311e6aeef858ad50523e06ea65105331958924e3 legacy-trunk +20201 288d805af14218f3f492995bebb26dae0d647f49 legacy-trunk +20202 506a080d39ecfc229239874afe0cbe61bb2a1bc5 legacy-trunk +20203 37d9ed55416ff19ad64e4f298e3336e074369357 legacy-trunk +20204 0cdfccdb68710a10c5668dddf32ad349e9465a42 legacy-trunk +20205 b0a7faf98a8edb3f3ae03ac40f3fc347eec961d8 legacy-trunk +20206 7635f8838c6892e29c160b8398cd2a4d49e6fe61 legacy-trunk +20207 b73547bf8bc2487291c50f5db3bdef5c9797f65c legacy-trunk +20208 11eba5bbfa14ab51a322c3c4722ed2151e49a9a5 legacy-trunk +20209 6be8bb4808e14ef9ddf9886b8ec56859bb72f17d legacy-trunk +20210 57a5f6b0337d1e173884eb854a6f8df216b295ad legacy-trunk +20211 310066b992f2f8a8e1b7870df2ae93fb8b8a74a7 legacy-trunk +20212 b25a2413020e2358ced799d71d2dd9098951f263 legacy-trunk +20213 9906db2a1ffa7861147c779324bc47c699a958bd legacy-trunk +20214 92b65f121a3e9767201ea7106d636a05b915d9aa legacy-trunk +20215 9b8ea6387dc609fd0a93f4f469bc6880813e47c0 legacy-trunk +20216 bd110eadc19ad409951bf3af302c14d49a45e770 legacy-trunk +20217 e7f5b70b0606abb0d8b5d9893b5c88b576022890 legacy-trunk +20218 911e211b8930b90e24fbe22d19da5b3a2007308f legacy-trunk +20219 a3deb201ecda10f815daf4ad926a14834a87d497 legacy-trunk +20220 bb9e214035e125b913485c27536e360c4f563476 legacy-trunk +20221 760754418ee0270ac4edeb85a9a39a6cc187f484 legacy-trunk +20222 080828bf8dbde8fe18b1453b6a96cf79a992965a legacy-trunk +20223 4b346cc3989baa993ea5758dc94db2f49b72e8e2 legacy-trunk +20224 12f7f167ac533d46a4fee42cc1b61c506e9945ad legacy-trunk +20225 d328cfeb0c75bc0464ded00ad5c78f7fa3d00662 legacy-trunk +20226 181d01320ef43e3f564e76d40e8fa10fd061739f legacy-trunk +20227 b3fd44ffab1e916102e2f6ab13feb1e8a4440e44 legacy-trunk +20228 92b60dee7f0835df289cce568216615b7b805a56 legacy-trunk +20229 ccae412bbc3e22cfa6249a702a97c8d27b210642 legacy-trunk +20230 2146a73ce35c0bdd4499f3ee9b4b17be854ff16e legacy-trunk +20231 96ea0eccdb31737888358816b677166fba0f28c5 legacy-trunk +20232 c32752a28652213e2c37e67837c21db0d1150524 legacy-trunk +20233 a5710578c2e02216629334c1a1b7ce1e5babf823 legacy-trunk +20234 ab4e4cb094c1f6430d438c93f7afc73aa9f28773 legacy-trunk +20235 83ee63bcf036598727fb62703ba12e0f2053f8c1 legacy-trunk +20236 9876d6baf843896381cfc862ecde09fa41d537ed legacy-trunk +20237 de9858530a553dc84eaadde821696bd110ab9730 legacy-trunk +20238 f1d2e88fa11de3260583590e2195e31f8affd774 legacy-trunk +20239 5afffca66e2fae26f206027fabb0fc09e719ad62 legacy-trunk +20240 f8fdbeb7366708b7339cf1d7d8c8464e25a60dec legacy-trunk +20241 876861f135436ce7c79cf96ec05b2970165aa3f0 legacy-trunk +20242 a9ef44bbd968290597b56866694f2307e8276886 legacy-trunk +20243 e722d4883e19715ef288a52e1653df0cc03e477a legacy-trunk +20244 3308afcaa13155d73d63b3ebeb3dd18374ca7fd3 legacy-trunk +20245 2d30a099705f39fcdceaaed85d6349967e27b1eb legacy-trunk +20246 ed3e66f30837c22116516fccfd7e3b5f63693a6f legacy-trunk +20247 aed6b1436db47870f5c800594230a443990b3da0 legacy-trunk +20248 1943318fae3177a58ecbeec0f3c94dc816499524 legacy-trunk +20249 4468a8da67ca010424eaea74a7828cdbf0f6f5f8 legacy-trunk +20250 28cf0a7943cfd7b23531bc2dd68b1430732a4bdc legacy-trunk +20251 cc8a21ba644998ccead429692453e7bfd8d24a3f legacy-trunk +20252 3aaedbac95b312be5f1391884994954b6fc6186e legacy-trunk +20253 a1840b9b14f145f0d1f10d972ca6b7d3fce809f2 legacy-trunk +20254 9621d0fbc2e52f0d7f4981b73f970ebf0e7f3366 legacy-trunk +20255 ca565e3d3cc5c0697fca3d3be51839df1576acc7 legacy-trunk +20256 6b8d91ea9de34340fdda6d42f212bddee1ad9845 legacy-trunk +20257 d109ec667ec25d8fed1062a3476f0fe68f1421a8 legacy-trunk +20258 8a3ba10f10f6a254916ad480eabca12385b7c1b0 legacy-trunk +20259 11e8bb4d845d2c0be53fe01abbf56638117dc3a4 legacy-trunk +20260 5079d6e3b615080078665fcb4d62fd247bd0b2b2 legacy-trunk +20261 e2b3e6d853430a210fcbaafeffae3ad1150331eb legacy-trunk +20262 bb75d93f6a31c9334dea6c35aed80bdc47aada77 legacy-trunk +20263 f398e5856fa74653055b8bbc38a639329001b1f5 legacy-trunk +20264 65f363236ecf7fa6a836aa9f35cdc1e237421901 legacy-trunk +20265 e843eee7a33e8625b0626a497ffa6422329f1b5e legacy-trunk +20266 d3827922909ca25754db9c7651e1d51544152ce2 legacy-trunk +20267 e54e11c30e4b15497c3f72cfe469e184d0203a02 legacy-trunk +20268 cb40e770c903dd8e0b998991f2a134b5f92421ae legacy-trunk +20269 0c87ac674ce1820674a983d4cf5d231ae7a3448d legacy-trunk +20270 a80a847f5f4eba58be100950446fbbc54fd163f6 legacy-trunk +20271 5f68754eb3b6bc8007c33e970fd0ecc91b8d81df legacy-trunk +20272 30e5270db1283bf8cda0aa86d1626dfd84c3923d legacy-trunk +20273 0f6d8fe4a3a91cfd7cdc70927f5a42afecdccc49 legacy-trunk +20274 4622af4da9e282fb1dce78a5ae3119ca19d44a1b legacy-trunk +20275 8a2dd97873f25762ff4b7cb33970fa625cb93489 legacy-trunk +20276 d368552c2b726101f9ffb869ac6565579ad9681f legacy-trunk +20277 7c4bac2f7b3ab718e239b703451ce85163c9d59e legacy-trunk +20278 9b297af18e2f31508449ce46623b7e48187c8fd6 legacy-trunk +20279 b612b519d41a5469876e5309a9e6c7126f4ec521 legacy-trunk +20280 bbcc9837312e8e59f6bc5809d53a81f7e3cca348 legacy-trunk +20281 0ec06b4755db724d526eda39243e3f34cc74f812 legacy-trunk +20282 e4abe74bc9732d728b31a5f4a539512903c2e6e7 legacy-trunk +20283 471ce0faa7750f4208e695216ec744d741dfbfcf legacy-trunk +20284 b2bc56332045ae02525ab931f882c407c51e5d9a legacy-trunk +20285 112bd47e078d31930c6c5c8172a58a0eca667470 legacy-trunk +20286 6873549d484c7585d60bd2bf3474e88a2a32b02c legacy-trunk +20287 4b06e4db0075dc3b055bfefdc18e6cea3e4c3b48 legacy-trunk +20288 717b0c8de71e9a1267ee62cc8d8fb6d7c2fffe49 legacy-trunk +20289 863e8073c7aaf31f317be872fd1d7657dc3c09ae legacy-trunk +20290 beb9d2b0284657be23fa9f9b34498e2daa88c89f legacy-trunk +20291 cf8a595cec33748b52362404f73353a5a6f89b58 legacy-trunk +20292 004c9b0319241c5c0546ac10cb59b54b9047b7e4 legacy-trunk +20293 70763c4752e2fa3f7ec6ba390125046bf0039a89 legacy-trunk +20294 13857fb3301770cd2ca4276b1a0bf259d410afb9 legacy-trunk +20295 853d6a97b7d9b4d386c735f6cf0a270c6e86535b legacy-trunk +20296 3b905f28f225698c8b4d3f56c513047d98eaf391 legacy-trunk +20297 34ec5e2fa3561ecbf03aeaeca8599afc9c0620a4 legacy-trunk +20298 01791a097456b6fe7512e608d7111043a212b0e9 release20-maint +20299 afbb65b60fa2038193241b505662470e9326ea93 release20-maint +20300 c9e07bc303a23ed0c783b99061a319270d69c22e legacy-trunk +20301 9d76d8552c3612774d6aaaf478e647986d0e0f93 legacy-trunk +20302 694b8c3f25e7c6d3731f142559a842a8c4887d24 legacy-trunk +20303 84a3d70ec6f44d65faebc749d8e92398255955d6 legacy-trunk +20304 f967489ee3b64bad86e745d15fd867e4d25bf6f3 legacy-trunk +20305 bd844b20b9c8544fb9199778afe79f08972de14e legacy-trunk +20306 3704be3db30286260f628bbfb6abc18efaede4fa legacy-trunk +20307 bad2daeb7440c3312042d56f8640fefd2d27cf6a legacy-trunk +20308 4c497c5e72adce1db8dcb85a26c492130d02f1d6 legacy-trunk +20309 65a92251d6b85cac2359e263d835866a7bd11889 legacy-trunk +20310 9dcb4bd651548e87699a620f0bc6f90b3dad96c3 legacy-trunk +20311 b8fcf45dc6fdc743923db7664c9404a2b57c559b legacy-trunk +20312 965eeb44e4544121c22174690c02613e12e0c2fc legacy-trunk +20313 3fadc37cfa9209ed40676e5a09c2640a3776c56b legacy-trunk +20314 64396243c1141dcf908760d73c1d407045bbb43d legacy-trunk +20315 3402c7166d3081144cca4cbf242eec0368558464 legacy-trunk +20316 f3f9641743a07e88df9efc7986529abcf0dc69b4 legacy-trunk +20317 632c4d5b75b7a96dec3fca32d3aaaab9a2aa2121 legacy-trunk +20318 7c61715752be2026abb58b04513840790109d01d legacy-trunk +20319 8ec7f656f80831e6dc6612a243e5e5610779f0a0 legacy-trunk +20320 257b57bccdf3be894b2bd8fd9767ed792163a647 legacy-trunk +20321 3160da4ddd891ae0be806fd1ffe2eb67ca307798 legacy-trunk +20322 ec075cc82bdb3f57c2ef5bf78fcdd4738f37b2d2 legacy-trunk +20323 c2fb2d476bd38cdf27ab385c3494836282bb0085 legacy-trunk +20324 e5009025e62f2c1af98fc3470f3015fa02dc6f14 legacy-trunk +20325 b4b3cffc7c355ff214a4b44d57f00f1adce0dd86 legacy-trunk +20326 bfc10a80545baad8893b2b93141b8c44d6d8b724 legacy-trunk +20327 b005eb9bc842d97a5a315d21d95ac11ba2e81f13 legacy-trunk +20328 2ccc0f2c9e1f281fa2cfcc1b2fa063c742d91584 legacy-trunk +20329 0f32ab5afff89e644b16770614d85aa66266524f legacy-trunk +20330 98f69245bb69cd247afd43298446bcd93abb7467 legacy-trunk +20331 02d69a88703891214b78728c52c34aaf1a54ea0c legacy-trunk +20332 41a423294cb51312859a5ec6066dc32fc3b5da68 legacy-trunk +20333 fbc12d6cd0511b94e6414b05d570e039b9afffe9 legacy-trunk +20334 1cdff2838a178ef461d924bb9f8796454ba704b3 legacy-trunk +20335 74b9fb1c963397928a3e5c0ec8dc8f9ae5131a2d legacy-trunk +20336 2d521420db8f1e292be2d4c1cd7118de1afc3cd9 legacy-trunk +20337 9237f58dcc19228f090d5f632ed80a305d6be531 legacy-trunk +20338 111902c991a904f3ca2e14024fa78a0f54454407 legacy-trunk +20339 f0f0467a33342dac86769ec17b910378418c06f6 legacy-trunk +20340 0184c50a87510ada817eb599aea5939eb445abda legacy-trunk +20341 0475c8b7223ba58b84719a69871a21ff7919767f legacy-trunk +20342 45c1825196ed6603a7d2da5d59e20aa2898182ad legacy-trunk +20343 51c8ce1a2e259953f29dcf26c6b201b5fce7f87f legacy-trunk +20344 f74f5aafdc7e250a5d54d335238f8f945e4ca9a7 legacy-trunk +20345 9941c44816c1c730689bd4f5fa941e7f7f6843c3 legacy-trunk +20346 1a2fd5c4dcf570fd10dce443851300a87d146e36 legacy-trunk +20347 f3b6ac128de9f1375b8a4f8d0748778f89a8d2f7 legacy-trunk +20348 d915777833357641461e48d916f327bc1cbcc9bb legacy-trunk +20349 4ee346b35524a885dddee4099cbaaa1925e44f39 legacy-trunk +20350 3bda59071389513417041e881e1b94cebe08df54 legacy-trunk +20351 66a7c8c8dd27238f64430b22dfc0f286df7d73bf legacy-trunk +20352 0d0546bd8448ac5220c01fdb83b201887ace7e9e legacy-trunk +20353 e846e960e7f631fbb3aa061ad51c3e500fa14213 legacy-trunk +20354 99c471ced170185cdfcd82dbde604b7c77ed51e7 legacy-trunk +20355 a004c62e696e6e229106f7a38781ca1931fbbdb5 legacy-trunk +20356 e8741dc36ad13b9194194894d62ac2293ea8a399 legacy-trunk +20357 c29ee373f718f78ab42346d5acc14ea8cb63b5ac legacy-trunk +20358 f1ec52ef771c11a6b4bdc4b78b5a156a3f70a9bd legacy-trunk +20359 f24272e8962152578851dc912903e3b2005ce5a4 legacy-trunk +20360 b84f084b2992a81e6b06c209bb3cec35f7067621 legacy-trunk +20361 4b9e684bebb872eb3be25fd47ee5ac33e6c5b051 legacy-trunk +20362 8aa4de207ae364b44baac22868ea9b8be0321e6b legacy-trunk +20363 926b64fba5e7ed59a2f4013acd634313b9054d2f legacy-trunk +20364 b4e2b8e9f1e6842368f96fa943995f25931e27a4 legacy-trunk +20365 24e81b43067dc65f5aa23815d0940ac448a2d820 legacy-trunk +20366 2888fc60bf9acead64de1283d1a7665bc9d920d0 legacy-trunk +20367 339a93b0084c75b3ac41786d6231fe5455586768 legacy-trunk +20368 142545d2aafc80a7773a6f90fa7500bcfb8b6540 legacy-trunk +20369 4ab58624653e7f55ae1b904a280f9215b9d36f4d legacy-trunk +20370 25f55b2e38acc83d2bd2ea154a177d9d9a4b510d legacy-trunk +20371 0b69e17e055fa74e2597cf3e76ae11d016a4104a legacy-trunk +20372 613dcd5476b6e6da9bffee33bef2f2b4e73d10e0 legacy-trunk +20373 ed07d6a873e7340c5ed9ca2a0f9392bd8ce8b4f9 legacy-trunk +20374 04daee3ab627a0a692bab92194d52b9c6b493783 legacy-trunk +20375 99ad0257b942dedc17c6b2dfde0af8e5600d78bb legacy-trunk +20376 2265032efc9f0f4bc628db24f9d3f635529e437d legacy-trunk +20377 71752a41b57f98ba6cc65fd88b11182a4fcccb87 legacy-trunk +20378 7e829dd03f97a8b69cf09ff1aa2fc63f33195cfc legacy-trunk +20379 640affdf99e507ea51412eb872719d19dac2e01c legacy-trunk +20380 74e7e93ecd41419da6956adbf2cf7a1dc776c23b legacy-trunk +20381 96bd4a84f1a494c27e5c4acab3db5d43f6ad15be legacy-trunk +20382 f7c12ba4273708ec8a9292a7702702e604d242ee release20-maint +20383 5f4fcfb8d3dd366701ace3083b4b802f4fa0504a release20-maint +20384 35139a9454d438015ae7b20a7262d925f3f6940a legacy-trunk +20385 15b7609e3e2c891d4d60234fe60f5a726bfc7437 release20-maint +20386 b65d089e8841890a10f7b88ad9eaf7a6a1ef1f07 legacy-trunk +20387 6eea4ceb75165282e2b9b829c60cb2fe8269349f legacy-trunk +20388 a34293ced63b6109f475e65d88366f12c1f7d4cb legacy-trunk +20389 e526d9248965f47d4735cb554ef091548da00bb6 legacy-trunk +20390 0b060cf762ce738519e92e9ea4fc472ad82720fa legacy-trunk +20391 6a377620175075fd3cb976dfd01eb45fa3c7a734 legacy-trunk +20392 f72dcd67cccb09cb1a80149d41bd564e4a5e0c1b legacy-trunk +20393 806fd88015f53b73916266ea4a6a61712e8fd632 legacy-trunk +20394 5e99a1d0ea4dd79044a70c0114d27187dbf1e949 legacy-trunk +20395 61d954e7be9923a434ec9783c6807e3e6441aee9 legacy-trunk +20396 c5bab794dcde6449c2857b0a2cb6726a626736f9 legacy-trunk +20397 327efb59dbcde7b60cba38c3ac9c38f2af73177f legacy-trunk +20398 8e1415ef9b28d8326ebfe25bcbc5c411c623c670 legacy-trunk +20399 11153c14199931aaa646b1162c79d7fa595481c3 legacy-trunk +20400 55ee15c4eee683f4aaa250b09482f5e4b72eb42d legacy-trunk +20401 068fb58a11d48681c15ae9703b85c2022afac972 legacy-trunk +20401 d611276e9ad53b5d32d1e8065e1d811c32f7d96f legacy-trunk +20403 7b67eb26b39ab68bf562f7362dc95db5e4ae6427 release20-maint +20404 fd0683cb73012faac05fb3d0c916648d42d136fe legacy-trunk +20405 90ae37ff617fceb6041639290171cf5d335b79e7 legacy-trunk +20406 76fae614526cec1eb6b55da95b9c6ede2c7087aa legacy-trunk +20407 c651cfd0ffd488a5cc37cc9d8d960bafcf754e9b legacy-trunk +20408 773c64d38ac6897ce4e998ab4d6eaa605238ddf5 legacy-trunk +20409 81823cfb5b146823b362172dd828b3d03a81a9ff legacy-trunk +20410 33d71e80a09c77319094ddaa07420f694e3219d2 legacy-trunk +20411 1e23d91c0a821c06dc68272b402aec0f665fd05f legacy-trunk +20412 f939ce52a734d5d2f6b04c20680d70b13b136cec legacy-trunk +20413 f9dfd587c142b68ddbdfe9ccfc9dbe37c7517b91 legacy-trunk +20414 05bad2f05bfa6ecef2f14e40873af6bb8d7fdb5d legacy-trunk +20415 c9cae5a70b48297212507ebc48beb147b990ce07 legacy-trunk +20416 b2840a3c5601d7743000241f6871e45fbf92e495 legacy-trunk +20417 8389c4df488db05b3e0150bb7873d035b2e367cb legacy-trunk +20418 79efbc9a03defc32e37009e39d6a5a27cfa63241 legacy-trunk +20419 5fb0c46753f983010773c2929df1771e25b87c34 legacy-trunk +20420 0f5a26aa4e4a30ae64b3d3d1f6df792f40a49574 legacy-trunk +20421 01be08333308ea353bc47d6c6490c2318a4f0a05 legacy-trunk +20422 500d53460f5608358b061aa5862391eed50f1c61 legacy-trunk +20423 c4442fb99d265fb1498c91385e241cc958609e27 legacy-trunk +20424 17a71d2b81f7cf78542cb3538f79693898e81f08 legacy-trunk +20425 c497fa3fe38a2e3c85d926fe1caf39f52cdc4cc1 legacy-trunk +20426 dd6be625a9233f85959021894be093b025936f27 legacy-trunk +20427 1cfef8ade2707390340e9722b60fe34dc1cf1384 legacy-trunk +20428 025929c1531d3d76f6de4cf7bf2ce91dcdc5ef4d legacy-trunk +20429 83c7b4b75668ffcd4722eed5139c10f8b7ad0e24 legacy-trunk +20430 d2da681ccb54df4b0b2e6e3de763c3c0c80baa77 legacy-trunk +20431 e1c507cdc6f1f7cfd7700e8dea40f9d3f9ebf546 legacy-trunk +20432 162fa6b1366f3b4a47c2cdab0b492a79730b8f86 legacy-trunk +20433 f17a830e25eab34e218015573a99ac0ea866a5cd legacy-trunk +20434 52a8e35df127994c28b5e51171f8cc0e9684625d legacy-trunk +20435 e0a5a63ad756961bdb6b44b008041da4d6253aba legacy-trunk +20436 4493199d2b956ec18cbbc2bf33e823405d690e26 legacy-trunk +20436 ff065e674af6c9ab895bd9eff7d9e9039a376c7d legacy-trunk +20438 49085bb7bcd9941699c9a0af295adddd6516c143 legacy-trunk +20439 e522ed80fb3933a61b6a5aa0c7bfcee5b3fc9a57 legacy-trunk +20440 da5eab33147b9595b04c324bd783d3f2a50550c8 legacy-trunk +20441 6252693afd9af1cbd9d6d6946a32379b06cde8c3 legacy-trunk +20442 354a571a05b4f4e5108187c53e43dd35029c28e8 legacy-trunk +20443 693fa6b41dfa5e0bce6a25cf55087ccbd20d8d62 legacy-trunk +20444 84d7839bdcf63dc0e3594ac89a497c81de709fd5 legacy-trunk +20445 cbc9f886559589cc4d40898b1c08101cf1fc937a legacy-trunk +20446 05436a74012d1c6026d929251eacad6aca79627c legacy-trunk +20447 1d9951d126f5c345908e32052545d78e36830ac8 legacy-trunk +20447 020e95d8180d7943fe54701e1db0a7d7d87e2b1e legacy-trunk +20449 19686a6279f475eb8711758b4ca33d2763c26db6 release21-maint +20450 fff30221d19a34c0eebfddda30b65975a686c48e release21-maint +20451 732ddee68957208b1e7efa2809973349750c8c47 legacy-trunk +20452 d06bbb8c493ac01697eef401484a1b4c85d94da4 legacy-trunk +20453 28c14a79ad225b53215f3cf44279cefa20e867ac legacy-trunk +20454 db928a277f8b2e848533d399dbb262325870578d legacy-trunk +20455 36232f543220eedc8d3af7a11493363657f76f6f legacy-trunk +20456 895fc5c95763ed10d7a4d74db9813c11da14738c legacy-trunk +20457 283683b5e767c7914e8180eefe9a080c6de36788 release21-maint +20458 b6f08d2795b5e2442c8faaf051d9f9ed0ed48767 legacy-trunk +20459 88a5c76ffc8d3d8aee3424961c9dc7e5d2e2328a legacy-trunk +20460 42bcaffa5d9b1ae747b3c52a680fc797a1504baa legacy-trunk +20461 d944423e6fff6dc2627683cd02ce86b0c10ac48e legacy-trunk +20462 a9ad8deac17d5b2fb26d3913bb6bc43ca46c8937 legacy-trunk +20463 0405c657d2ac9fddf2dff67d8bb53ce3c874dc6f legacy-trunk +20464 75e322d604f16e29872ee31f9d01f106daed878f legacy-trunk +20465 3eac20afd54aaad7477266dacc9042f4d926653b legacy-trunk +20466 518db454863019a4e8fabb3c14e2af894540c3a9 legacy-trunk +20467 d112f135af8d1419f37672eafcce9754b887c90f legacy-trunk +20468 0dd5d6d9a952a6f11105460834452a4ac21a37e6 release21-maint +20469 7074303846031917c2630d3f98ceea856d13eb75 legacy-trunk +20470 ccc44e543beef17eb84108b45981f7ce3fc50227 legacy-trunk +20471 3dd9860e4e2d4bd3e7d824624c26dce49d4cafe2 release21-maint +20472 228f4b8d18f01a9908739b41b72fb6575083335c legacy-trunk +20473 452666cb283df8b9245b33905fa8d9917f030d46 legacy-trunk +20474 c657a3937902077265de0adc4a06eb71e859051d release21-maint +20475 c1937faabb23748a4e283e7c4e90c7d2ab77a0a2 release21-maint +20476 2fcb3fa67e3b6878664c52a3479ccc1bb32a70dd release21-maint +20477 0d70daeb896e1ef39b90403219ff24c9e4efd02f release21-maint +20478 f99df2a0e2cf9c623118ac6e990018f3bfb0d2c8 legacy-trunk +20479 d16dc26ec427ab00b9540e8c80c160e17825c2e3 legacy-trunk +20480 c5f7191ce67e934bd1f12bc5dd17ce3a5861be8d legacy-trunk +20481 7eb87cf16a5360c144bc529f29f0033abcc463aa release21-maint +20482 5a5805a45dbf494111e0aaf8f421ef631f71856d legacy-trunk +20483 96f9b86b7b3ddd6760d0ea3f79611fc5804d1821 legacy-trunk +20484 1e3042a4e60e2e3cf1247f709ccfb9aa9a180478 release21-maint +20485 44a3ac59c268dd8ea520f8fadb8082e885deb3b9 legacy-trunk +20486 1f3a194e21f31f457fbdd43b7e6cc922943c2a9a legacy-trunk +20487 00a6b0605113535e3f318838e485716589f6b6bb legacy-trunk +20488 56f1b8ba5ca17d1bd2951afc5855f418495d15e1 iter-branch +20489 bf94af396b1e107ad3cd8f116716b276ea812db8 legacy-trunk +20490 1d726f5cd57a0fdfba622faaa35fec2d676c9e2b legacy-trunk +20491 1b49b177a105e13cca1f1c4e7b41feebc465db26 legacy-trunk +20492 32e7d0898eab85de8134f932680a85c6e7abcec0 legacy-trunk +20493 c3bb0ff396dcc633cb67196a43776133f7023ff9 legacy-trunk +20494 e15ab4e652adcb7fa556a18154cc116d49c7b562 legacy-trunk +20495 1fe8e50e6e1b982d7b7dd1f68e6a94d406a35b35 legacy-trunk +20496 b6dbfc45ac9bf19038e1cd3258d9b9ac20842f39 legacy-trunk +20497 f63f749364effdd36e0f7c849918d9b679329554 legacy-trunk +20498 d638e419c30452d9d1d7fe9a9861fd0b9d45ef3d legacy-trunk +20499 d324ae2892ffa4abfb217f5a5989a7d2d09a90e9 release21-maint +20500 4d7fb24fe7953f90f8364b2a1fad926b2e6bba65 release21-maint +20501 4abd072ab3d5b5bda1cd6acbd0af71292213ad5a legacy-trunk +20502 387e80e11a795fce56767cf49fac321a3e7cdf1e legacy-trunk +20503 22af15f8410a8b2773434d9afcdac228c0421842 legacy-trunk +20504 79f0cd3a71a1e996ed843a20c7170cb8dcbc92ce legacy-trunk +20505 624fc9713d18b110156dfb6692d6a5f261f0af84 legacy-trunk +20506 1eb00a123a0ecd7d6814620904035b0bc5951bd6 legacy-trunk +20507 c19d6db6e99b7aac7cf7c8ec9a20fac558068264 legacy-trunk +20508 7dcdb16bd068ccaec59174756d799c3b42977440 release21-maint +20509 1885417f45da39855b8c4202836a2f43b0067e0a release21-maint +20510 b830df083a9add0709b68d0b5192316a01118586 legacy-trunk +20511 7acba78e1e091dbb7eec29083016f5bb91c178e6 legacy-trunk +20512 aac65f50df6ff144b6701fe51a163b30a6bcd02c legacy-trunk +20513 b44ba7c0121775d64410cf1c93d0275b5c82a4b4 legacy-trunk +20514 1b730bf3f8d2ac1d15237ec9eee4d52d267dfc6d legacy-trunk +20515 efb5c814ffb6ab4856ce822bf3cea731633bc6d1 legacy-trunk +20517 99e946a82699217060b95da462ab7f7afb006b2a descr-branch +20518 e2af90b61b2bd2679b4eacce3f84d35dc664dc16 descr-branch +20519 b7a7135bccc8b3e1ad1485e7f770ee6d411de8a2 descr-branch +20520 0b5d3e0312018adccd090076ebe11f0a8dcbfb07 descr-branch +20521 c97b37136d83e35300509bea52a45b11ae1eaba3 descr-branch +20522 6819310de828447cddfff0d601650691afd559ba descr-branch +20523 a1f07fcc3d413f7527f4fd952220e3c9c703ec13 legacy-trunk +20524 44a0a9a277ef691a3cb3db685af1057b93860845 legacy-trunk +20525 1686080a7c6c376d37b05ee252297fb90478d491 legacy-trunk +20526 d91fc02268d8d010b725b10f00b574c9e13e7caf legacy-trunk +20527 9c1132f3095a063ae4be6c387a60722e14546836 release20-maint +20528 950f1c3a8e6aa15f1d437a2822190316db2a0365 release21-maint +20529 7e8ed6e39ebd0d75593f01ad313877e91debb07e legacy-trunk +20530 91cbd01b85cbdf91ac351f7d7d10d63c719916f9 legacy-trunk +20531 a9485d404f05d241063711450a19776cb885458f legacy-trunk +20532 da4809947a32105b8f4d2b75261ccf1e556e2401 legacy-trunk +20533 249123c1f4dc11340a4b40c7df45d2fc33e4467a legacy-trunk +20534 fcdde680331e5aecc4842b23f10039d016582f2f legacy-trunk +20535 7f5e3e6b2a39207500c20e09c7db1fa5da554ce5 legacy-trunk +20536 0bc3377d0d7208bc2239bac40478c60fe6603688 legacy-trunk +20537 b7df88a78adbab81d9f87b680599969f5af0d6d8 legacy-trunk +20539 9921a9d27f728c61905613ef62eab03f19ce23c5 legacy-trunk +20540 8ff76cf30a8cc37cf6eea36cf604b4beb799b848 legacy-trunk +20541 7d676b4237a9932f913fb281317dc2c919101038 descr-branch +20542 32e735bef0bc29b0569366474d113ccb3ea885b7 legacy-trunk +20543 bd65f8893be3aef405014c5a3279ccaa333d119c descr-branch +20544 b125416394faca3064ffd7f212820db4ebf67369 legacy-trunk +20545 a19e68e365c7571d9784946131b38857dc21ffc3 descr-branch +20546 9934225fe29782740bf0bfef08e2a600fb684dc0 legacy-trunk +20547 9be7758a8c94c8896974319a6330de24dd3108e6 legacy-trunk +20548 b28236349de514737111d3c5e66c4f11122ab378 descr-branch +20549 9e81d391b76589d86facc45dac2ad355c3700567 descr-branch +20550 987ceb9ec02333dc0b1d0353654db7d785d28c98 descr-branch +20551 887b5297652a3c6fafaf0d2ee4abb62b07ca14c3 descr-branch +20552 e06c36c13f1286243ed085df05055435781e4914 legacy-trunk +20553 53ee0fa676617a917c9a82a9e711dc26e4af00f0 descr-branch +20554 013deb5e172bf5c94a136e117fa0515e77d0b7c5 descr-branch +20555 7037d1f6e79aeb4694001f7f96108466f52cf524 descr-branch +20556 587da29d69d5d0ce97143541414796d6be793c10 descr-branch +20557 1721262abaa82a337dbaeb4573f21f981774fe9c descr-branch +20558 4b811a71be5c2fad97ae5c9fa220ab29cf1c70ba descr-branch +20559 ae07599adf33f7a86dbd75e5cfb7ef672811f775 descr-branch +20560 e2daef068496bc136b613174c74500837ba4e1d6 descr-branch +20561 56c5445ec83586e5f777aafca5d06a633f36e58f legacy-trunk +20562 aa7087ac6d9559bc991f8dd09f4decd4b7467005 descr-branch +20563 bd313a5e20d788ff90d1105057f36f9f41df640f descr-branch +20564 5dbfe8316236389ce7a3d9e60bd883398c4a1f75 legacy-trunk +20565 b5f583eecb203c4c284b20cc343b04c752001170 legacy-trunk +20566 d1ec679baa3db82ab85adc807c2ad19d0e150c43 legacy-trunk +20567 557aad3e74ba634b02feb8076d13b75b2a2943f0 legacy-trunk +20568 6c82277e77f357d74a357180476d4c40580be06e legacy-trunk +20569 dd24abcb2331c78cd68d5ea4d7292915e8cc9417 legacy-trunk +20570 11181cd3897dc1b801cc1d19764bc31a705cf5a9 descr-branch +20571 7a367ad43f35238d4664ccfb98af4e0194ac7379 legacy-trunk +20572 fa8326cc761cb3affd6802ee03e13b35a5f04a74 legacy-trunk +20573 ebc24a1041329c5eef2e50ae9c9f6a6486288ed7 legacy-trunk +20574 a84874687cb1cde38717809865c55788a077b511 legacy-trunk +20575 a97e18e499a9cf7b1bb4c0a9a23d4c9156f05845 legacy-trunk +20576 0470babdae49fee8336484e4d1239787dcee8ed8 legacy-trunk +20577 a6698a016afe2061f77745b172b8e0262414f700 legacy-trunk +20578 085f460b0e3b5994a24bd840b0229aeaf60dbcb7 legacy-trunk +20579 d6498b1ef50d1cd93f0d7264293b8ef5301fa3c2 legacy-trunk +20580 deb8a5e151a346cd54a64b0467cdff0a1de286b9 legacy-trunk +20581 30d7518e17e5bfa9352d256985ac64c7060e45fd legacy-trunk +20582 0ff4cdf34fc1a50f3e0b6f45a7d74adef1d06a5f legacy-trunk +20583 64523307794e93547c585625a06b4b71f3fbfc37 descr-branch +20584 5b6d5961c9e38e0f62f1948dbb36333c60f6be74 legacy-trunk +20585 d76649bd38d01c96e5de26c1cdf6b00bc3c1914f legacy-trunk +20586 b9076d8718ab1d2dbad0a0c44daa08fd97f017e2 legacy-trunk +20587 4c29b04e4d6fc186c51fdf1422e8a1269b751745 legacy-trunk +20588 12c80b570d00a0ecb929b8cbe67afbd45cc11246 legacy-trunk +20589 76ee8b62ee2a82d623c6c4e091a4c8cff10edc66 legacy-trunk +20590 15cce3d80d0fd8d3bb1a76d30407aa96248b52a5 legacy-trunk +20591 d7d05103c023fc64599ccae34f1fd12437b102e6 legacy-trunk +20592 8d9eb5a4ebcd98ddb584e94870ad2acab4ee7582 legacy-trunk +20593 99b06a649b147b750c7d8adf5e6136b892992c06 legacy-trunk +20594 7948cd4f766374243fca1487cb6e4aae7e47fcb1 release21-maint +20595 8643e6de13dfa7035a4e8de43b23b7da384eb0b7 descr-branch +20596 e6e81dcebfde5d9e4c2563a810c02f9e0e4cf54c legacy-trunk +20597 98f34c4643e9800124cbe4ddf0f64f87c41ff2a8 release21-maint +20598 0be277039d93b42f36da7cf9351fe32c8e73bec5 legacy-trunk +20599 d80500076e9fb95cff82b80e2429d8fb5571648b legacy-trunk +20600 bf7f166d3c97460db0e8922e0a57917ea4464bd0 legacy-trunk +20601 55e3201895087b3ed1151532f95860b5f296b5c5 legacy-trunk +20602 1c2d26eef7ed1b59c982d755a14d84e46398038b legacy-trunk +20603 bb6c59a85ca147dd14d77c7c9ebed37bea0b07aa descr-branch +20604 8b0c0c482a55fd06d9ece9d37d7c0f667f481d0f descr-branch +20605 839f6f2cd66f3cfda261996815ae0eb9f8eacafe descr-branch +20606 3091fb83d5271ccd391277ab53a780f66d365e66 descr-branch +20607 8fc7becf7839472927ff648cdf6f9bd982ee18fe descr-branch +20608 0a9e3aa71db9f230b857e89d83843ed5a98c38bd descr-branch +20609 82f8a2b1b79cc32db16a7698f2c6afba20c2e3a1 descr-branch +20610 fc658adcedc8e9b4bc286e95fe5bf2c955632b5a descr-branch +20611 f89e85153d047539c4f474344a0c96802b5fc0f5 descr-branch +20612 39cabd0aae1ebd2853e5cc58cf366c7b1d34db3b legacy-trunk +20613 9d1e304ecb18a58db4fdacc3081ad2a75584d529 release20-maint +20614 5527d62fafe05e6b66a5e80a9f6e0fb1afddc594 release21-maint +20615 6f8efdbdff4823bcafede21c38a6ea8a1c1b56e0 descr-branch +20616 162b94c8d2d1a94ae6b8c45f75108eacae7629a9 descr-branch +20618 e9a4e27e8d4e16e14b32ab266953037ea2468115 legacy-trunk +20619 399d99601b2dc0d2e7bb4b550d84218c3773d195 legacy-trunk +20620 0c9877120f381783f7503bdcab4d560050693f6b legacy-trunk +20621 3cd4af666de6b3e6f00c8122220b1ad9f9757c39 legacy-trunk +20622 9e093bf8f6a93f2c33d7cfab09166be6d1968e59 legacy-trunk +20623 1ebb4e566257aa89ded0f3d6f010834f5aa014af legacy-trunk +20624 49d9ba55588b67b6cc611bc314fb9aaa639b4811 legacy-trunk +20625 ee4d17862b6180b1407580ff5769377465483d32 legacy-trunk +20626 002ec733b5dc5b638d5cdd50047aa840474ee429 descr-branch +20628 d4d06529c21811d30ecb72ae2c2112247ef82104 descr-branch +20629 9e53a5d71f1da1ef31045f5f33a369663edd1d90 legacy-trunk +20630 1812476b7fe4570218e3d6c53afe95dd8fa68468 legacy-trunk +20631 68e71e9bc204542a9a2cddad15b28500b17b750f legacy-trunk +20632 aab6c1f19289dcfdbdba2c198661ce97118c7030 legacy-trunk +20633 3064b73adc1ad7704a19ee7c21466d3525bfcab9 descr-branch +20634 4424e06d415954fa12277b3b6b271fcf43353743 descr-branch +20635 1e902fc73645185473d74541028c8b46d221d714 legacy-trunk +20636 ffc2923bad1a96458bc6a898b2a2d8010db7628d legacy-trunk +20637 f970195196c4fbe76312cdff584f98c19d86becc legacy-trunk +20638 aad0adf806adc82db26af1472a1298f80e9d4521 legacy-trunk +20639 379fe887644fb80c63d7927291c170fc37fb2ba1 descr-branch +20640 54623626da4e3a1fe918beb1ee370f0e484e43ca legacy-trunk +20641 433013af459878a8b0c445b3b5ff038e2f41f89f legacy-trunk +20642 ded41be84da4facc15d9fc072d837bf48fa5a368 legacy-trunk +20643 e3f0fd38c24b70b09b5916d369a81a5d7ff4ee18 legacy-trunk +20644 f3b8785bd0222a61fe2bba380324dc7b8ac398d3 legacy-trunk +20645 b41f6ef6ea8f78f16acabc8080ba68a7d537be88 legacy-trunk +20646 2f16062a1b7c75cfbe660a9f8ea77eeeacf89369 legacy-trunk +20647 ad25bfcc437715f70cfd377d9efaa98bea29a31f legacy-trunk +20648 fe4c1034b48013b4f22dc7718d315c1ef9d1ae1d legacy-trunk +20649 ba8f8e4d42b047925f8161609f10b6874a4ea659 legacy-trunk +20650 1c86c8d1c9c762a722a66ea6c4ab7acb705726af release20-maint +20651 6199e5bd370b560c45338852c1c17f2c36c8b804 legacy-trunk +20652 350be19ca6a5f89ddca6b628a5bbc06bfe1a574d legacy-trunk +20653 2a7cfc172a684a0a2d7420169b85c69c446c72ad legacy-trunk +20654 5e3bab8aef7b0faa27c1daed580cd68cbac6a2cd legacy-trunk +20655 6493d5e941c2a80ffea582fc2741ab4a88c69286 legacy-trunk +20656 ff810fb59513219acd2ced6924cd930b31797bf6 release21-maint +20657 75e7814041dacb8ebd3f9432e773397ccee9eec5 legacy-trunk +20658 a6a399acf62064f9ac2fa412c65304475fe2a0c9 release21-maint +20659 9949c870e14420a268267b4a8d60608f91656bf5 legacy-trunk +20660 bb095340ac987593ec194e24a8fc00eff66fe278 release21-maint +20661 ede29ad6440ac028b83708b40f55f585d786e860 legacy-trunk +20662 1dea431fb0a041123178724a30f18bae02369734 legacy-trunk +20663 cd92c0d7eac47f9d475667b116b12e71310b7bc3 legacy-trunk +20664 9f6cfdf71d5069aa43324c599670427997729585 legacy-trunk +20665 6dc36078f53e1e8687ea3b10d17b3e2207fa5dbf legacy-trunk +20666 1b1f0cb285c25836a622f178c2b6442bccd3c0e1 legacy-trunk +20667 bded6d3186c0d298ad67e90bcf879eda49f99d1f release21-maint +20668 489663059341322d273d09c4b090afa5234a4411 release21-maint +20669 a626fa0e3d7504d6ce709c5b140990409d03d308 legacy-trunk +20670 0cfadd7607d51e254d2259bc97aeae20de5251a6 legacy-trunk +20671 06d7da81409de1c0fc4f332943b66e0abcdf7b9a legacy-trunk +20672 e13eedd04a4a81c75c135fb90a60466e7f21460f release21-maint +20673 e785d7bd7598fa49f0ef5087c9ecb6203adce204 legacy-trunk +20674 60f8c15c0255db987e3b766075d9c2e088f65c00 release21-maint +20675 39bf1f6cf0f9bd5f8206815af6af1eff61ef50c6 legacy-trunk +20676 147632ad1bcc3a3d73332373f233e61da998e56b legacy-trunk +20677 437482fe55e6477c55233815f20dfebca8dd744e legacy-trunk +20678 0ebfe9a1eb43e95c44bcd0fa907907defa9b5421 legacy-trunk +20679 820e5a0c3112fcf3d79b7d9beb366441a3c1ea41 release21-maint +20680 f971f252d9b87a65627fbd65c202c8a2804f9549 legacy-trunk +20681 d05dbf3f36f6729428cb9ee6511f2ada62054d65 release21-maint +20682 ed771b5db5aaf3a776704e01613aed9f330f13e0 legacy-trunk +20683 1a21dd13e60a6e742ea1b0bd59876f00bae732f5 legacy-trunk +20684 3ee9a3f60bc7964a1721d15bd4026d4e757aec79 legacy-trunk +20685 53bbeb25bde719f46ab6b8c6a93fadf439176ce8 legacy-trunk +20686 b16fc89c194f6a354f15c4178b8dc7fab9ff53af legacy-trunk +20687 b76d1b5e88600d6eefe37be1a8712aa4a8964382 legacy-trunk +20688 c57ce75dcde0c82f176d8c1e2ff4f467d5ba7365 legacy-trunk +20689 261196bd16d7ef22cfc997ebb9cd7861967a6a48 legacy-trunk +20690 f465cae301ee615d30188db40b35b844a06e25cc legacy-trunk +20691 b39266f7484c448054e369fa8a61ed5f8a2a870f legacy-trunk +20692 c886cd1c218473d2cfff7636e2430468150f5818 legacy-trunk +20693 f4374d7931ba9ffbeb535a414f916acb9f47515a legacy-trunk +20694 c47cc9a9864c4e421a04f87fe931a2a4f725f19a legacy-trunk +20695 ef6f3e1818786633b4aba25fbf3c6a5b98380901 legacy-trunk +20696 47d18602d5ea455106e42eda96b2d6c033e81cea legacy-trunk +20697 a06a704260e96a1d5fe5f4547a07d2ba79949798 legacy-trunk +20698 a987cf18143490da8adb947c8acf4e36e3f602e6 legacy-trunk +20699 5e0ec39c4cecc4c484e634e64f072f1bc1719969 legacy-trunk +20701 080a1291bf6c9f81f7612c411620be6afb7983ce legacy-trunk +20702 332697de8db8e2d5294a7c3bdb58415f6dd31731 legacy-trunk +20703 b534f1073987cd36030686b73ca67d5edd99e519 release21-maint +20704 098d6f869a9de855174d5f7f0ae32a47ef02cf9d release21-maint +20705 686054e03ac59c5bd20c604f2dd01a461b557aa2 descr-branch +20706 ef65bcee72ca2236ca7b3ca0e81043e866797c38 descr-branch +20707 65e26113b3fb2e11f9b611dae30d8a4d4c344130 legacy-trunk +20708 4ef1b6a83a4794e144b68e4bf659755e2b7853c9 legacy-trunk +20709 2f0df9f0b088782d867fdc8e7775813ce4776dea legacy-trunk +20710 658c077dd3513135c49f2147d6d8f859869c0d35 legacy-trunk +20711 51aa4250297550db1eaab5e0b76fa653142e4277 descr-branch +20712 47d44d8542b7b2fb651228be045337db1ac11bf3 descr-branch +20713 dd6f8c9caff0ec5e045ed561160f9972daacab34 descr-branch +20714 7a9f6c09791a8eed264a4842da95a181de863c00 descr-branch +20715 47f4d0568c7cb73274dce8f4162a47f7a111c097 legacy-trunk +20716 c1880f6b3189cf84c34ef2e0380447fd4dd67ae1 legacy-trunk +20717 ce37342f6f6e3f30e636a07e1e6bda763424dbea release21-maint +20718 cc8d148c396ae908c9b43346ad88edc18f5e34e0 legacy-trunk +20719 fb103e3da2aeaff3c9fe19c22c9606e174d639c6 legacy-trunk +20720 01b5043a4509f70444340871a1408dea44614519 legacy-trunk +20721 669604d9343f05d17ca835b7aa559afbd257e59a legacy-trunk +20722 4b2fdaebbfe5de31c870b34f06cdd4aa18db7bd6 legacy-trunk +20723 0ea0913f824dab3fe1b5b01377e92bc33c9093a5 descr-branch +20724 d7ccb931ca79555ef86782461755b12caee17f0d descr-branch +20725 7a2a122c997c206375bd1301447edc067852618e descr-branch +20726 dce1f53451a5af4692e5d38a6fe95b63cc73438a legacy-trunk +20727 59604f5b4dd1290e1ec4fd1abc67fa294781da50 descr-branch +20728 419ebc673ed8df9c6f9810b8f600a564de410b7a legacy-trunk +20729 0ebb91521ae6bcedbbc05eec7b926192b2128b6b legacy-trunk +20730 b4b3657cb1faa4573a4d54de74d69728649879d1 legacy-trunk +20731 993fb1801f41b24a6ac0808edaeb6c4bdc57f555 legacy-trunk +20732 a1575dbf7d812b19e8657b003926f4b8b7ad2a51 legacy-trunk +20733 ab17b8b886962d9100ae60bbb16f08c9e3643b40 legacy-trunk +20734 5387cb7670594a2f9efd6c4f3c467f4e62177e21 legacy-trunk +20735 1dacd0d60637c873c9371fd4e0398054f112063e legacy-trunk +20736 1296e86304ef58f4f2be5c57e5dddb36bddbf101 legacy-trunk +20737 0ed8c5f3f53062412521c430c306cb3e3f2d4a05 legacy-trunk +20738 99c49f009388e52cb48249d2ea3a6651e561aaf6 legacy-trunk +20739 899f367eba56b50c92e106a4e7d3842eb3b9f656 legacy-trunk +20740 479ea69ec85b320b9bb60b337d27307d714ccac4 legacy-trunk +20741 22a0b2e3291f02a889e4dec854a31146f33c17e6 release21-maint +20742 78c64c0f661cbc4f53a8854f52cc09108e54223e release21-maint +20743 80425b2c1e4c7023cd5eb17fcbef27ce2bea912d release21-maint +20744 2e015f8a1ac201b12f22534f41eb0a2b6620194e legacy-trunk +20745 1c604bc6b91e54fdf16167abe91dbf5a2d398402 legacy-trunk +20746 1fb3eca8969ea8cfe700075ab821ff8aa333f89d legacy-trunk +20747 6e008c6198553856f117778b861a2fcebcfe4e2f legacy-trunk +20748 3b5beb9277e047be3311b96f9340a979233e5d88 legacy-trunk +20749 a8fa9c0f1e0bb5ccd7892ba7790d690e0d1031a2 legacy-trunk +20750 8aee5395058309253384acfcb2a3e5c20e51bb7c legacy-trunk +20751 a2b656a522943a19193c12a491f7edd44cb9a04a legacy-trunk +20752 c19980c03e2de15f47876be7082a40947b4897e7 legacy-trunk +20753 5597d4bcde07585b39315789ecea36b461973d72 legacy-trunk +20754 7eb3288c81e355bcf7e78ee2351c98a61db80688 legacy-trunk +20755 53fccf4d6a414135727ee24d3d0cc47245a4e219 legacy-trunk +20756 49e71a83f790fa224a17a55897fd39bf50f5d8a7 legacy-trunk +20757 bf70d1f4f61f6cd151743eebf332753ee50225d8 legacy-trunk +20758 ce8c356542ab7ce66bc2bd421a31466d06494bea descr-branch +20759 dd5fb39e65ef3653f2df00675356df5166087f30 descr-branch +20760 3380279612a33c8bc7b393b824004d0a028ea2c5 legacy-trunk +20761 ff9a8339ad1b4b2959b6c65872214b447d9951f7 descr-branch +20762 9f5597ea96fc14ed17fe1e8f0993ddd373466da5 descr-branch +20763 7f0f5ece45628be9c423e286332a1e9941870014 descr-branch +20764 14fd4bb7799ac15f7898393b77cf4e5ac7d090eb descr-branch +20765 1579d309676e3507ca99a63dc58848f4659e58b3 legacy-trunk +20766 54d395425e9293467d61bf77aa3c8cb6c709f006 legacy-trunk +20767 c34cab87d7219fbf80ffa81e3644d75ee316acf4 legacy-trunk +20768 c8362303ec3b1e33223b2e66f23b8fc2d935c4d5 legacy-trunk +20769 222767eb28f75cee0a1a8c6cf31bac2398794ce9 legacy-trunk +20770 4f20495b8bedc599ed741e7e35336f8a72bb5ef8 descr-branch +20771 4af865b221edf0c2198482af4168a02cf2933b57 descr-branch +20772 b881dc3bcfb3d3b3225d5f9a6c3063bad8f6b406 descr-branch +20773 4b08fd087d3643e48ba47566d3de5d318583a1c5 legacy-trunk +20774 8cd8741ebec0d44831cd9aeb8161e7dd37c868ba legacy-trunk +20775 2211c8995a5f8d85acfcf8aa189e198309cf2106 legacy-trunk +20776 d6df8d371b674678af90b535c33495ea9470e50a legacy-trunk +20777 8f5ce58119e054ab723658efde25a21538a8f246 legacy-trunk +20778 f7c385226f65a8535ed52229d343638469be849b legacy-trunk +20779 29d84f920d5b9731b074cbf55ac2c72df4c38280 legacy-trunk +20780 19a448fdedf724b614bcf8688819dd659c06d5d3 legacy-trunk +20781 4bcf88e4abff2099c45a60c9c12052b9d7aebc15 legacy-trunk +20782 780248cd1d9afa5b7067c09c511976797b98dee0 legacy-trunk +20783 50376d47064821778781de5ec20528c1641f4cc4 legacy-trunk +20784 f12396c51aeaf4d49d2e6cfc176868e6a400a01a legacy-trunk +20785 0adfbe3289d5ae3cb0e352820b8e8882c75877ab legacy-trunk +20786 0be16d0ecf64a79712338719e1782676cc33a2e0 legacy-trunk +20787 07a8752001bacb9c15d1408ad886d08651975782 release21-maint +20788 0b3da99824c7d5dfcaa32289bb063da07d4b17a4 legacy-trunk +20789 26745053f840596ac34d911dca6c05fc96812752 legacy-trunk +20790 b54dbef1f8d36564ffecf08e0aa66ed7bf1256c9 legacy-trunk +20791 d890a21bebda2b8a14f319246a230cf6f19c8de6 legacy-trunk +20792 cef5b600fa162846faebdfe81ecf0b105128c111 descr-branch +20793 7509ea072ccb422d1cf73a77cd018477143e11c6 descr-branch +20794 5c06a9596fbffdd11d3b5bd1d215b5dad7e5013c legacy-trunk +20795 1becf442d73559bc566b8ed50ba9a1e31372c9de legacy-trunk +20796 c3ff572263d332f8515acb0e318aa5501298f8ea legacy-trunk +20797 ed1e8b6e26ecb1c73ff3e78c0cb363ee3904d7be legacy-trunk +20798 9ea87c0a7c043780d569b63a71d2244d866fd88c legacy-trunk +20799 ad500b52673c63986d64bd05e5e56028267508b4 legacy-trunk +20800 2892aa2607d5f5e7478ad83c4076f16c6e2bd5d2 legacy-trunk +20801 db074aba9e364ca76275cb163929f04ad91059e1 legacy-trunk +20802 3dd49542c4d01a161c9e293028aec41fffeb630f descr-branch +20803 c872fdf10130f469e92f8a08821a3af86a86120d legacy-trunk +20804 f18e808c0230d0387ad6c22de36e92410ebfdd08 legacy-trunk +20805 2b5a9bff1b11e9382d5a9af82abd52b0e66fc12c legacy-trunk +20806 7ed0caebdd861ce2daa2f254225912b1d6e732c8 legacy-trunk +20807 3e256f9d99ade0a9152897a304d3d689498a4249 legacy-trunk +20808 ada3bd1b871347ccb2a0efd99fa522f19a568edc legacy-trunk +20809 fb31c33761c965f0c08b1a28559e13edc11b6d5f legacy-trunk +20810 9ff35f7661bd73ed601b54242627003e9788f342 legacy-trunk +20811 7f4554a1cae228f0291976c9e934fa3b78ef783a legacy-trunk +20812 6960b2bbbfcaa211bbf0b1089d37b7b345b14c57 legacy-trunk +20813 017a64a4bdc7a98c6018c4d774c80ddc52fb8434 legacy-trunk +20814 295a2f4927ab69a5caca0d393ef729f913f363c3 legacy-trunk +20815 a0d08c42e7102baeab331a1491fd969f10ad079a legacy-trunk +20816 ba97111a6ad9f997f0108865e2332cc2f396a391 legacy-trunk +20817 055fc046e080ec0e2da4a18fd0faa201069032fe legacy-trunk +20818 028a1d39efb65c4b38fa854cea4249c163760e12 legacy-trunk +20819 d2d3f88661a3e994af71782560fd2fc604dcc36d legacy-trunk +20820 2807949e0ba591f14ff1d2301da5b19988319371 legacy-trunk +20821 79aee498a2be51bf889a18665a7c182b58357db2 legacy-trunk +20822 7763549cca4564a4e5131e5e56dc4c42852f37ec legacy-trunk +20823 b77c4888d7ccadd6f7476bfcf3256f430f3f4391 legacy-trunk +20824 b53b60f1ed4596787ff1a4ac34c23d949f35a337 legacy-trunk +20825 335fbdee7cf83c27bfacba335242f75bb6bc4128 legacy-trunk +20826 97ece9321c5364fe879e8ec6114bb85930ba3337 legacy-trunk +20827 0e86bdeb0b92617eb7082ce94df0487d77e25272 legacy-trunk +20828 be969e717b91b0a28bf52c0cdaeca912baf2099e legacy-trunk +20829 fde5508e82de6cd9d8dd770da6889b2372cc8f5c legacy-trunk +20830 042dca1d4526e1591ccd965e3d5e7decf977f2a2 legacy-trunk +20831 ccb6d76633be4d9da27ea8e6a43a44bff3d761fa legacy-trunk +20832 68bf07e7bccc94dd6e2dab8a7d50c9dd7634e743 legacy-trunk +20833 b823a33183fc64bbf96cb7671e80074b9e0f7259 legacy-trunk +20834 094cee6898c1026c4a9867f795f6eccf6398f760 legacy-trunk +20835 43b7ee718f53ffa91c3e6a642eef056316d9f1ba legacy-trunk +20836 200f3a5de1c9adb2ee8cad72c3fa1fdf3c338762 release21-maint +20837 1eb12259feea64798482678675eeb392da1a82f9 legacy-trunk +20838 eb03c6fc31e5bd9fb5310e081595072d7f6dfde5 legacy-trunk +20839 151a2fa296fe42afa41fdce5e7ce8585a2b117aa legacy-trunk +20840 cb11c59c18dd3bffacfe1be62955294398387e18 release21-maint +20841 13bdb5b207d26d936965946ffd093fe0b4e5ff42 legacy-trunk +20842 524e0f3c169b2707baa5e95129766371df20c13a release21-maint +20843 17c200a7db85ad6d48e5ad8ea65d74c4c5fee981 legacy-trunk +20844 43ab9f824d890d55cb3a84ac9c32242e15a57d8f release21-maint +20845 d56666deb9538ff3ae039590467dfc8ad16c07fc legacy-trunk +20846 6027d3cf805cf707a3b598ad8993f709ae7a916f legacy-trunk +20847 2060ee0a7d92c41f3d2b09d9590b01f4e8a08933 legacy-trunk +20848 2135d7de86adb2aa5d8711a1c3a3f65f1c2b79dd legacy-trunk +20849 a93daafbd13d748ce95d16ac9edcabcda5bdc127 legacy-trunk +20850 0af824c88203061e404ead05bc3f1f9ca7bb8e3b legacy-trunk +20851 fd5f831887786d312c38b36f7abdbaf1a96c398d legacy-trunk +20852 93b590729bdc8990eef71ca5451ebb1c3aad66b6 legacy-trunk +20853 fd12e82b7727fb282f5ed7dd4107bf09622d9d26 legacy-trunk +20854 a1ddc4080cc572197ece86798f899a36f9770d47 legacy-trunk +20855 f95bada5273e28990cccc36f36b34ef0642735fd legacy-trunk +20856 939e3da59c612212630a14fc957100a6b7a5e79c legacy-trunk +20857 5b097f61717353892d08f47bfa2a54ed6550e207 legacy-trunk +20858 8da9473f0736b048ba4cae14f8534b32edc457c3 descr-branch +20859 14da5314664d9482cda2106e0495184df8eaee21 legacy-trunk +20860 c4f55401e8aed5701e141232ad575cc7cf3fe421 descr-branch +20861 e2080db71b1b0cbaab66fec9776c48ca68824ebb descr-branch +20862 c10b418552028ad7bfc11bed534c6db620de00fc legacy-trunk +20863 f0c3de22caeddea224b7813454f2ba74b30bfddd legacy-trunk +20864 cc984ed26586ac06c6ec89d6f4770ded7b3d53d7 legacy-trunk +20865 5d50d1fae0787f592d57ddb173d0ddf072b8b8bb legacy-trunk +20866 38fdf98da99fdd162e2dbf3aff4c7d6a9c5f63bf legacy-trunk +20867 34b1504e6644c7e8da10da234b0b1d4f7b444152 release21-maint +20868 ae8c4f470a0e44727c73924035fa100809e0469d legacy-trunk +20869 53de0eea4d25c86e998eec57a3723b8d554ad492 legacy-trunk +20870 69737d7f4776fd6c32943d50bd621ca2138d6d25 legacy-trunk +20871 a46f1f7a9c869a2c7549e1b5761b53d5e53a9451 release21-maint +20872 0a7af0e538d4abdcc0b57fa336d6775aec1411a7 legacy-trunk +20873 9af806b286c61654766d3e30c148c15049c0b117 legacy-trunk +20874 7b9771f6856b309dd332ca9a6d2ebc6424e1178b legacy-trunk +20875 d884235fe75c3f4f651313403d192070ece6e1e6 legacy-trunk +20876 77871c499215fb19c74674fce326b7c3213861e4 legacy-trunk +20877 619fd8e067daecf077083d9765fa445f19748062 legacy-trunk +20878 fbffb6de25ddcb3b83edc2f8ed17daf79ef710c1 legacy-trunk +20879 421b1d66049508869f1c7e728e2964de2c5e03bd legacy-trunk +20880 84ff1977d7725fb524057ed73ebf9ac74c5aea83 descr-branch +20881 46909f22170c3e8682602d667d0ea5fba1260dc1 legacy-trunk +20882 ff6a6d347195ad4d2423d87c6bcc6d5cccd00ecc legacy-trunk +20883 1be6d68ae12ce7b1a4fc34ab366916b8ccbbfa88 legacy-trunk +20884 6c5a800da791f4259cd1e1d3f866de0217ff58a4 descr-branch +20885 a643a87a4b2caa4631c83224e735e9a9ec07f1d3 descr-branch +20886 70cd9a419076942740427fd883425a30be4e5acd legacy-trunk +20887 bd5349b411f61a69f1af501fd6ef35459c20dee9 legacy-trunk +20888 d4269437e8b3dc1fc5f17d577491a1e8c99d4768 legacy-trunk +20889 ce69fb9c8d561708b8929e3a927ef2cb451666c9 legacy-trunk +20890 16005b2855762df1da00b13de74ce088fda73843 legacy-trunk +20891 a1fcfdcb34796681532dfdb2be37e4bafb77006b legacy-trunk +20892 5abc2329922fed6a3260de816ef03c1b7b310541 legacy-trunk +20893 a895d7d739ad416b74e2f8d56dea5365d648d1ea legacy-trunk +20894 474e3de00b050ecbbb0512e34d780b88979598e3 legacy-trunk +20895 297a266ac4ee172bdd5ff2eaeff0493d9806975a legacy-trunk +20896 dea0bade656d491510f08abeb4fefa6abb9ff2a5 legacy-trunk +20897 694c9f0cd8142979348d6b3412cee5390b2abba1 legacy-trunk +20898 831c27f876ac9dbcd9b77ab766300afb64a0be35 legacy-trunk +20899 bbf702049ec6b1bf1f9b360d02f961937dbfb867 legacy-trunk +20900 e4e853d55675a296be3e6b7beeddacda022b93f3 legacy-trunk +20901 ea0cad92cfd27b7f6dcca73e02ed4453617567a8 legacy-trunk +20902 ce7f0e380830487bd93d8e0f1d67f80d4a4524bd legacy-trunk +20903 562176191e60498759db6a00b2bc78f252d0f57a legacy-trunk +20904 e14b41fd2ab2515218867234f271817454b0a475 legacy-trunk +20905 cfe081c9553ec78476fd754ac893bc171b3677c0 legacy-trunk +20906 3e69d7db5f8d50fb5539e47f897a84e3524215a6 legacy-trunk +20907 a42910b5442a8fd774af6e43dc7572d30e3be71e legacy-trunk +20908 22b5152d23fc2bee080ff269136ad2380b373428 release21-maint +20909 22344154044316678b777a1c8b683c5d9b9b147b release21-maint +20910 b86eeeddae21346e4bcfd2f6e06d44e273af2437 release21-maint +20911 db43be19d3e33b00015917143588b13bd696debd release21-maint +20912 096072d8879868acb0dc2bd8fba24df5cf992409 release21-maint +20913 d0798b3a38c156ef17b2884e378b455fb97b3f65 release21-maint +20914 2edaa8e9f381515cb0a787e73d9efdc82b8b19d8 release21-maint +20915 0711f3cd44d0770703943f66fd5d489e2f488e3d release21-maint +20916 e1816f649ff8e123649811727fd6bfa93ec11465 release21-maint +20917 5d894a5fce38c2c95de00676765c38a266e5d065 release21-maint +20918 b38fd2bd68c0a19e452407f4e2fb567b0eead561 release21-maint +20919 1458b596a434ac8c3cd0479076a74fd79f542a96 release21-maint +20920 793b75543f13f5b5b3b82f3a5b55108f2f8a4eb5 legacy-trunk +20921 8c47d9da30de26dc8889bc9bd2255c8391a1108a release21-maint +20922 9dfd22e8e9b76dd197102866805d86c9b2231575 release21-maint +20923 a429da7db70695467cd62ce5f86db7dd1f920c1f release21-maint +20924 248418cbd00527d47e55f5876fb45d83260a8f37 release21-maint +20925 4ed657d37cea7bd8c3da80e4da12b67db5cc86df release21-maint +20926 5696ddda3e40f971fba173da24f944129c2ed558 release21-maint +20927 fc68f6ed701420455f67d08b488ed89b4f470b09 release21-maint +20928 4ad7a2ab42b42e8c50c98e9da71534093414b2be release21-maint +20929 e5ba0d2b47e294252e1eab4ef351ec52a3e2e288 release21-maint +20930 103111ad99f1f0e2eba504316369ddecdbe02157 legacy-trunk +20931 af489587509dcdde63c092e803dccadec9a1f8c9 legacy-trunk +20932 d86b245e085801c24c7241438d28de5b95d3c68a legacy-trunk +20933 95baa333ee43cb8017875adaf2887c8fdd597f22 legacy-trunk +20934 5e1141157d53fd95e768ca0cec0674f26eb9b70c legacy-trunk +20935 78f67071c949eb2c92c3fee9dd2a3770cd9f4bc8 legacy-trunk +20936 178bedf9536d8ce1c0fc6666ee310855c7071e2a legacy-trunk +20937 05ab0a714e4caea9740ce2589cd475912ec3a00a legacy-trunk +20938 b2018e5d2142b941d2171208db687ca7c1b5f4d2 release21-maint +20939 ed8b79c6cb4b2cdaac43f76ab98d1aa8b92e65cd legacy-trunk +20940 f9a34ac14c8be9962222b241b768748ed2c3e613 legacy-trunk +20941 73fcc4f4a182290ed15304b9d80853afa966ab36 legacy-trunk +20942 401ccfcf28c38840ea7e772de2100dc873351b68 legacy-trunk +20943 2f2ee5daa60db657970cf56e75819dfe7fe298f5 legacy-trunk +20944 b0b46d7734e0ed3e48c4bf52a4c428cebd3eb271 release21-maint +20945 527d0ffdf09901611bf6361c338bbf2c3356b62c legacy-trunk +20946 d579a5d8b3fea81c115cffc674a00e3808402cf5 legacy-trunk +20947 2a94bf235daacfaef4e79377e091b78ef0e7d536 legacy-trunk +20948 5e87a08abb057a15ca92cd2ac9bb0aa05e330593 legacy-trunk +20949 192d3686944558a3f3597dcf4db9c6b13c0fa90b legacy-trunk +20950 db13fb5c858a51931116b244fe67b3e9f600064a release21-maint +20951 a2b996c716a1c50445991bf54d10baafb477a048 legacy-trunk +20952 62eec2936cd3f9e1b600585fa91a35fc6b0f2975 legacy-trunk +20953 9526f0ed066a047e4c4e8fd054ded5e977224893 legacy-trunk +20954 47c7c1eb9574d199ce54e5e322b43b4698796929 legacy-trunk +20955 706bb6c945dff58337a7f934f4665036b240ba42 release21-maint +20956 8585041ba57b1bece1df7d3944d607ebbf40eb37 legacy-trunk +20957 ae08a01f2f2dd2f587fa697dcc5c30072cc23d05 release21-maint +20958 e819cc0a9ef6dc0bedf19f53be45395e3f3399f4 legacy-trunk +20959 83614d0e00f15e745f0e24c998ae2a9246737415 release21-maint +20960 cdf88ba2d968b93b0bac5e43809cf84b19541b77 legacy-trunk +20961 0769e11d9d5f48f3e361a54a9563e10eb7043736 legacy-trunk +20962 9ee2182481af9a1473a6ab70b82d9be541976cef legacy-trunk +20963 447ea65181c285c06747982ba47d7ed17c10e8ae legacy-trunk +20964 298fb29daa81c2734362c67afe08ef5be754a6a0 legacy-trunk +20965 837825a779c16ea321c53266184b2043ff06c961 legacy-trunk +20966 5a9debb14440e252e3355f33ba495bc14b96b9b4 legacy-trunk +20967 27f2422ea335780a770fe147286f6bc2694ac8ae legacy-trunk +20968 c8cb79772364e4860ab1caf40c32b88bb3d1864f legacy-trunk +20969 ff644e608528cf6c475ca03c95ae7218c437b1c5 release21-maint +20970 ec9343ad1e609a7c5ba5de84c2f43ad3324d6615 legacy-trunk +20971 97806a599c7eb5a69767cc3b389150b130d07deb release21-maint +20972 45badfbfb00ef6136f0573f1e6116afacb07d259 legacy-trunk +20973 27ede8b095d6df1d14e19da2ada55cd473e9e9d9 legacy-trunk +20974 64e1ea34b55300d3f2e5594f74e0cb3ee19d85f3 legacy-trunk +20975 baf2137e9676cb446c9f7d4bd1a932e24aa0e6e1 legacy-trunk +20976 e60fc01762a0f90177466448743cafea786ff266 legacy-trunk +20977 6a2e2548e6cf39a1d9f1d3574b1eabe2cc09b94d legacy-trunk +20978 a4301431b2ac8e75efc38c9269d74cf56981c96a release21-maint +20979 50e3380b086a1d47621e3f9885f1ec661acefa6d legacy-trunk +20980 53b0f65a0a05d75df13ade45f3262ee7ab3cafe3 release21-maint +20981 180710911f15d7dc67d4a4086796de6dd689433e release21-maint +20982 582845e14e5cc15cc08cd1887f2b702d82f4686d legacy-trunk +20983 99aea6f5cebd28ef519c810af2de646d23f2e352 legacy-trunk +20984 9f97167f164301673ceecb96a7efa744011073cf legacy-trunk +20985 0c1a04e981342fd5b94d1ca3ac8e58686f85f47e legacy-trunk +20986 0d6f760b6ef1a64436b18fa7117789150e89bc2d legacy-trunk +20987 facff5f50fccaf28e9dd9006a4af564becb5f7d7 legacy-trunk +20988 038e2f74800d978301ee40cd81db512bd3942af3 legacy-trunk +20989 ca7e2e1ae8df96e5866902d42f6373222e8b74cc legacy-trunk +20990 e86d33081bba94be9d786e6685f93f9b55c74ddf legacy-trunk +20991 c987dcd882b9c7318d851f76ddda00c1b80b7463 release21-maint +20992 bd1c4fe977cbdc75732f5f01cbd1a2fcaca1f689 legacy-trunk +20993 8d2bbbbf2cb9fdc2fa87ba3b83bdfdbc3320c497 legacy-trunk +20994 19b504fb9d156e7b17f989221d15d6ca83e0fb48 legacy-trunk +20995 511587ab2dd2e6f282d6fade8092e088e3b25cd9 legacy-trunk +20996 024267441761e944bfaaf3dcac83d63155da6253 legacy-trunk +20997 5391b9d022ac12757151f787b341fcb40bb0ca86 legacy-trunk +20998 ee5f0165e4e3eb1db0d0944ccbffb5a6fda4981f release21-maint +20999 4d62a2fec930a2a8840177d7cd5d5f7541323505 legacy-trunk +21000 6ae6122912d2edb9d42510b8f68fee30f8da3dd9 release20-maint +21001 9ebe85e715504104c00bcdb3df6e69a1d6fccd01 release20-maint +21002 b99979d0f9e7c0804db49b75c1a69645254f6912 legacy-trunk +21003 bd97a4fdb6f3c5f826d666edcbdb743573494043 legacy-trunk +21004 c00373177bbb6d6a868a46ab378c027e2b8c8cb9 legacy-trunk +21005 fa2255d31500e92d44762d36801ce29fc48e7ff1 release21-maint +21006 a02085871c3fe4fc665a3d116661efa5ce46186a legacy-trunk +21007 df1c53a8150291265d679cd43ec573a15249660c legacy-trunk +21008 a6f8b2fa2e20183e5111942fea7c676bb27a29f8 legacy-trunk +21009 91619d7df58b9b07ae9481dbcdeeb11512c7a5c8 legacy-trunk +21010 6fdce76d40665e0dd623252c0d270433a7576d25 descr-branch +21011 bf16c3ca580ec64774be9ffacf49f2be5908ee7c descr-branch +21012 73a1e9f7c83f21661963e403bc54fa19d2912acf descr-branch +21013 8c45a64ee831b7892bfb7b90693636e000f1d336 descr-branch +21014 e919473176c8234dcb5818523513e352106917f0 descr-branch +21015 ed4252bf080c97e1d86790e503c670d0271b53fa descr-branch +21016 49f0ff6eb4eb135dc2a5ec5426a2382eec3d2855 descr-branch +21017 c0743025b23db38f1f30382d992854160cce28da descr-branch +21018 5466ccbb2f97498ebbb0f758fa2dbc4c0850326c descr-branch +21019 5b5056cf1488c75cc4c3a3d8f3619b024445f265 descr-branch +21020 fb93dfbd8052357e8d8584eff897bcdfeff09f3f legacy-trunk +21021 c2d49a732166dbb1d92e91dab82fbdbe3b553781 legacy-trunk +21022 957f9428660f22964d52fac160f0c7ad03202ce1 legacy-trunk +21023 3cbb85726f6ed214263d9f3c8e1115d0c1db68ce descr-branch +21024 e0f0f7bc5da7694bac705ab2ae9ba0bf9dea8245 descr-branch +21025 3ab6c434a9c8753c24abfe52fd1e700f2919d29a descr-branch +21026 65322103955a04d090f087e9017d8e8cfcd02103 descr-branch +21027 0d46b7c7105e2e3ee114bfe2e9f2e1c65148a108 descr-branch +21028 a78268424868a191abb4ab4c30c53cdcf55dd2ad descr-branch +21029 0e518a53ec5bead9adbfcb8d91b86952c4fc4fd9 legacy-trunk +21030 dcb1c3bd8e0e89766dfece47318ed8998af6976f legacy-trunk +21031 96d11215013ab2330e99edcc0fce9cf823f3a004 release21-maint +21032 96330ccc870a9444130144273d0d2aa734992c15 release21-maint +21033 ea8308fd06f23d9a398854ce3ccd0dab46e37ba8 descr-branch +21034 8593b7e0b6454163fe3082c436d8c9843d572e94 descr-branch +21035 6569c8499b170fa7b51d0b6665df19c72a0bbbd2 descr-branch +21036 e79bb5b8a5d0e9aa524fd11a621b7e74f0c26644 legacy-trunk +21037 1b92701a0ed2dd5fb4723fa9c283c41932ef7a8c descr-branch +21038 b73c2817cc1ac021cc720f6f8492ba82da30f497 descr-branch +21039 14dc75a5600ac5aba28be6601d1d8dbb3a7b3c60 legacy-trunk +21040 81a8d1830b63abc981dbd263cc6c919914c8d391 legacy-trunk +21041 65a2e3e8bf56d1097f4305e682c0e8be5792b3a7 legacy-trunk +21042 586fd79ef4d97c8d74917d2cb4f0d16c86dd8b02 descr-branch +21043 13a8dca4b040af8809db08f654162d58a10a7171 descr-branch +21044 b0fc836f2cead0b20a80dd8dd2fe72803dff0eac descr-branch +21045 e897550b474840f7616b503e1afb11a2f43141c7 legacy-trunk +21046 f8475fa6ba36da5c5ba8ee8170b37de55eca47a2 descr-branch +21047 c4016abd6b7f3ea1dd505d56f8719c971f962141 legacy-trunk +21048 a3c329f69e3a60be43a62a8300116caf98484f6e descr-branch +21049 2b017b2c8f7cb52fa6a85468a40ef852b66629b4 legacy-trunk +21050 e66cf9d6ad43ed055fc9316707df55fbfb2876b5 legacy-trunk +21051 9a26832da0f9e6577598723fcc2e284a41888a8e descr-branch +21052 a1f357696264b3cbefaf853a47d653871eb07ca4 descr-branch +21053 8caf21971f37879ece28f508726abb06741ddd64 descr-branch +21054 7de7d0694ba87a4ffb4c33e4b52f4f60db55e268 legacy-trunk +21055 a232a6c3fc8c7dfa83e12f67393ad0b8eaf27bc3 legacy-trunk +21056 15f4381cff0f0c68bf4e37b440a0ace509ecbe00 legacy-trunk +21057 d93b49298afd6f121f92a9c7e7dacbe227321afc legacy-trunk +21058 2ec08d6c7d120469547a1087782b510862e218dc legacy-trunk +21059 999b13de39a42dc77b784953c69519d26494f05d legacy-trunk +21060 1c183ae5c93492bc8f2a3deeff1efe1cd569e793 legacy-trunk +21061 5a6b83f41527b780b06f428c7e691ad09499bf86 legacy-trunk +21062 bbac2a6a5d16fc272b1a7ca607ad06737f1a1e93 legacy-trunk +21063 ac5489a2548de46357b0fd7751f09c112e7a918a legacy-trunk +21064 889db6d5550601c532b3eab40c74a32a12618d03 legacy-trunk +21065 bde1cf5740ec69f8b7468cdecaf0d250019d5f18 legacy-trunk +21066 10992198c9d67aa5ded24679e10e31f8e3dd5b14 legacy-trunk +21067 62472656807ea98e4e6a0a87536680c3e85d9588 legacy-trunk +21068 8e187740aa96a68313ce5c5a3c33088df8d65f7c legacy-trunk +21069 f901a7dc5fb4cb8f167e176b0b211f1a17d06ff5 legacy-trunk +21070 1f83e4155fcd172b473978194449ab2a5586b0c1 legacy-trunk +21071 7de5d378578cde1d0076b0a0ebc72bcd2e194d34 release21-maint +21072 e849488674da26618d54a7a2c4812fee770a428a release21-maint +21073 410bbf5d98f97aa23581f80253e13b9a8f8f01bd legacy-trunk +21074 72b15731a8769a3de46e9df707e9fe859093b376 release21-maint +21075 90193750cc8376bf3c801d590afe5e90ffb2066e legacy-trunk +21076 f3bab929d70ee0770f5d68fc47d3a2b6a463dafb descr-branch +21077 622867e4d832fb03a1a1d240481c6f2f24c5ba39 legacy-trunk +21078 add0956398530de49e35657389876c659f9e1000 legacy-trunk +21079 bc05b0b5e0578132dab65274b8bc8ad9198e6b59 legacy-trunk +21080 ff2d7c1837152b69e19682e0bd336e1b55fc5943 legacy-trunk +21081 4ccbb8e5fb24cbc7395ffe1894aad2272aca2eb2 release21-maint +21082 b8fbfa569c34803b6c50e1257760514347da627a descr-branch +21083 6b6e0b0db4f75511c7f6f1efe0b621c660f6e9ed descr-branch +21084 c90bde8b67b8dc8757bb967f4fbdfdc09bc8bf59 descr-branch +21085 dabe7100b21f307d9c170e741f48a51be4f433cf descr-branch +21086 4cc2af8a2f4e6630d1dad65c092eaa09450b4671 descr-branch +21087 6fe56a9b30218f9204d948ced259d57cf2d92dbe descr-branch +21088 dd09f11fa40dc95df85f0b69b0197a1c7e25fdd1 legacy-trunk +21089 5fc6d027e86118eec711dce9caa3745f7cd5f0e0 legacy-trunk +21090 bbcdbd8f4469951ac05e0092a9392f587b69a08f legacy-trunk +21091 7e459fb3c3329be2eeeb9313c937d4277ba9e861 legacy-trunk +21092 592109f2a6fd696069fed63d2cd0c7f8ce5dbe57 legacy-trunk +21093 6254737cb6296801339965d34ba288077ad289ff legacy-trunk +21094 86ccf93cc9522822d441e7d7f9842266e196d6a3 legacy-trunk +21095 18a1e09397dac95c6efe8c73547853157ef2238b release21-maint +21096 41016675002fe4d99f240d938a6792711ab20433 legacy-trunk +21097 a001fcb761779de459cda8236fd57cfc1f1a9771 legacy-trunk +21098 bd0056ee1a6e4905f392d33cfa0eef2fb902ad44 legacy-trunk +21099 6ea366a2b2a634f4c1516956e1c2da4aa204d30d legacy-trunk +21100 2367b7a001a7e7e69a9f4af687cd8408ed2d7e38 legacy-trunk +21101 7a9a692729b4039cf74031fe16b3ad9f66294e15 legacy-trunk +21102 c2fca77bbf3ab8d6fc27b1d2ede9353bb1437f24 legacy-trunk +21103 de7f9aa0a63a523bf27164b843a558efe51760bf release20-maint +21104 f74e92c8eac1a69e98f171e828b72b430768d09f release20-maint +21105 037386a2b247cbe9320f0387c6dd82c6212979b1 release20-maint +21106 142129e9a98564906076d5082a430cc1cabcdfb1 release20-maint +21107 9dda0c11e00699a944028fc1c017f6dcc26ea5b3 legacy-trunk +21108 a3c9b4140cc5ec5bff7a3b3e1d14a7fcd0809046 release20-maint +21109 0224873c0ac74b01b0137dcd1558164f84e961d9 legacy-trunk +21110 5d6fc18c400985dad74916bad498068432485d77 release20-maint +21111 15c04fe24d858662df532fe20c5721b3a3bf3241 release20-maint +21111 83459cc191c1c9c8cc6b08ada99c02f0af6ad54f release20-maint +21113 c578b75ad62fded70b64ab7351fd4a28869597da legacy-trunk +21114 8cf72b187b3ab9866e8d841df92f184a760e5282 legacy-trunk +21115 be2ddb25b698b39a879c46451616aeca9bb2b1fb legacy-trunk +21116 e21cd4135f3db1af23b3e5f710b07d638033dba4 legacy-trunk +21117 099ae4918069a5bb950836448768c1c50cb4d221 legacy-trunk +21118 7f5d8044f994c1f51406953d58793e2c07159ab2 descr-branch +21119 b140b78f1785cba884d5ba5cb11fc8e03e9dc8be descr-branch +21120 a6231f24dbb6e0a474e483fee15d008597388bd3 descr-branch +21121 9eb469a431441768de81112105a36f1f61bd28b3 legacy-trunk +21122 e64c7031d94fcb72a4452c320c1b91ae5276b68e descr-branch +21123 a4763bfed9f0e9307553b8c25cbef533f9f9a0d7 legacy-trunk +21124 31cd0db0f09fcd995d198581490921f9c64b1c5b legacy-trunk +21125 2ecaf9e21a046d6fe91849b8ecd651ab7a0c29e9 legacy-trunk +21126 7517fca32262cbafd389c9c02242227fe85c86e6 release20-maint +21127 69910194959944840138fc20cc949ec5c77e8c50 legacy-trunk +21128 c0616e096430f20d711c449f638435d4eab4e604 release21-maint +21129 e406815782afd471b8a4a75887c44198668bde49 release20-maint +21130 40d794b5041df04147051a1674c2f811d4d22248 descr-branch +21131 02530777b5218d41b96960fc9f96eaefd810ad9a descr-branch +21132 05054bd7959b6451589d7dc03f04ab044f8a438d descr-branch +21133 c616655782f1afc19087905f6141b6a217b63b68 descr-branch +21134 c29f3135a20cb0444956cb154ec57ec49d579ae5 legacy-trunk +21135 333a2c6eb7438a51715e5ac832a288ba884ecd66 descr-branch +21136 166b7b36585193ca786d3f7d74de15bb5074c25d legacy-trunk +21137 9522976d1e996cccb354139f7f03d13442e89e66 legacy-trunk +21138 ac7dcf0e5104afa140f437be05a1654bc3d21c20 release21-maint +21139 1f1364806599ca31ee8bd50b1ef2598878c47bd2 legacy-trunk +21140 9e9eddac25b858f6fc0a1ed9dc011356a1db74ec gen-branch +21141 27dd9ec3162cd8cab94bd734094e204570351eb3 legacy-trunk +21142 0af6eaf9f89eef4a9daed14d3f3592edc9b8326a release20-maint +21143 3642442695063a981092ea4e9776b9e5df22169a gen-branch +21144 6acba9e4758cb01890be069171f8defbfca16637 gen-branch +21145 e328218546b598bfe46f689452aa3bf28fa861cc legacy-trunk +21146 b7f2e2312610ec4fb351d7def43c1083c82b001c legacy-trunk +21147 9d533ae574d20d14c3dcad2b6bc0436b64700f63 legacy-trunk +21148 8eea2efb34cd1f16e6cbf7127275c9e5171a2968 legacy-trunk +21149 85e3fa1eb836c88220eff4a0b75aa97177d2cc27 legacy-trunk +21150 e887d6862f77b40830d747f1a05a16b4690aca3e legacy-trunk +21151 b49945e8044a806fb2ba28c501688d5ffbfcdcbf legacy-trunk +21152 eff8da7c3dcb9beb0e85bbff80857292c7850947 legacy-trunk +21153 cac207b3a43fd8a89464dd2ce0cae4c3d23fd899 descr-branch +21154 7a338f537e42bb2a3d1ab4c60d10a400a365191d descr-branch +21155 a447fc9472999a163880264f35418c989a85d987 descr-branch +21156 28c4b66ecbc58dab4a3916a79cad59fcd5f98343 descr-branch +21157 a7c2ffebbd266fafb014e812491df511f3960562 release21-maint +21158 4cb34314bd9709c0056f733ea732499298f6d156 legacy-trunk +21159 541e095a6ed6516925e661f8b9bc8c7f71ee76c0 legacy-trunk +21160 418cabcb763f0ac2d55b0fa5d76c8183e2d98edf legacy-trunk +21161 354a4df09e385b8493e02d830e95a7a5c7a9f005 legacy-trunk +21162 31cb5d17311ab52890911f725eaa51de2c221b3d legacy-trunk +21163 0116e459dad2cbde6e92264df177dc0656f1d821 descr-branch +21164 4e3019da91a9365eba515722b28d0e81420ba1d6 descr-branch +21165 22feba9659ce7920dd612cd85362ec942f341a99 descr-branch +21166 11ac02c03690d4144a0bfef525a7d44f5c34d459 descr-branch +21167 97a208291cd8bb0849bd55f89571a69483c65456 legacy-trunk +21168 47c9d0cb6e314dbb796d9813b3471080b6067a24 legacy-trunk +21169 767c4b28210adeb4ee28c3dab6fa6bebc0a50c51 release21-maint +21170 dbe82a9c6f7d73f5993c451063689cb79923c9b6 descr-branch +21171 80647b82e1b2d8746c7cfb71acb0e1ed552c1120 descr-branch +21172 0e7cad51cf66530e8a4ad7a771fb4c821ea9f5c9 legacy-trunk +21173 a71fee84b4e4901b95724420b5e188bf57231a49 descr-branch +21174 8cd4a3f019521d9a7d475606412621a2c0f9fb7a legacy-trunk +21175 b51b4c2bf5f9eafa898f00e83c19282b8f3b2d8e legacy-trunk +21176 17b3ee9cc43fa2f913598c3fbde13db0370fd4c8 descr-branch +21177 e1b30625a467408933d48b0654d8becd467d6207 descr-branch +21178 2ce70a883af6a7c060e3e7579b900b3ceee00a6a release21-maint +21179 31c11ab1a3e8574ea42b2ed64ff5c521fb53b469 descr-branch +21180 0463b9e5704eb287857e8cc326d3ed7fe9a7109f descr-branch +21181 7bc473b2c654243042784b8aca264cc025ccdc89 legacy-trunk +21182 1bce8bb41dbd3f09d70e02f90cd82316f099b96b descr-branch +21183 2e4c6ba7d09c14d10b814877c48ee9a0a6abdf1e legacy-trunk +21184 9ce8a995bf12e583d4744a433e2a8eeb6bfb3ef1 legacy-trunk +21185 0676ea2ff867a98da42d9e5d8fdcd4aafd990ad5 legacy-trunk +21186 54f76293d92698515d50337c8925d3478a925a74 legacy-trunk +21187 8ef84b83ec1fa435514cb15e0f8e0b7ab559169c legacy-trunk +21188 126a66b3413cd2bbff42a67eb6f822b8f216de9c descr-branch +21189 b1f63280b2c298ec911518fec8581e8afcc8ad66 descr-branch +21190 651c66406bf8211c0c10bd0c5e8e4f2aeb4b8313 descr-branch +21191 d639a1e1f1f48f88fe43c071f1507fc16607fab9 legacy-trunk +21192 7c34899ad50623e2c3b51d710c3b56d98bb96724 legacy-trunk +21193 0ec03e1be5588eb7eacf2c0d88bdc5687aa4957a legacy-trunk +21194 4d1c78493221abaa321a6d9034f142a87227a943 legacy-trunk +21195 e5b273e95f74b8498c83c8ac379bfa95ba344344 legacy-trunk +21196 31bd25a2d8c5b8d7af718955d16c2afbf04fb731 legacy-trunk +21197 6fbc5f201a1f8760ce7a151e73e9e58cd7096ee1 legacy-trunk +21198 a66572ac71e7dc784b951a79271776cfc87a1270 legacy-trunk +21199 02aa133deb538e4e87f2f410d2f99cf9cc9a1d71 legacy-trunk +21200 f926eb1f57701c2301072d107b9aefdc39bad0fc legacy-trunk +21201 efb5069cc74fe708c38bf561d37ad0c2d9e948dd legacy-trunk +21202 0bad42e56320415c2d12752b1b67dc04ac8107c8 legacy-trunk +21203 cf6a864387d37881ad72858643f6fafa97f4ee88 legacy-trunk +21204 c5ac6f055c6235c247a04db348916cbd2cd017a8 legacy-trunk +21205 d3e4399fe2f9431615adbabf6a43b7df64eb8e76 legacy-trunk +21206 c638a7a2fe77b93222f07fc0dfb280d6f1d529fa legacy-trunk +21207 6771dab1fe32ff39080c6be44857efdf8a3f1b2c legacy-trunk +21208 340e9301e85b324fc5c155811bb0fc97c845a23f legacy-trunk +21209 12d7d4db69f2f6f0516afe0b2d51b10d6935b98a legacy-trunk +21210 09a08a1e47d68aa76fcff6b04f107aa15c597b28 release20-maint +21211 e7f7eef18c9863cc3a76cc186695b94c402ece0c release20-maint +21212 b73241e5055670ee4f4928be46318b179b03f8e5 legacy-trunk +21213 cc7631fbf7f92e13d4d4a4ae7bb969a95278c9a9 legacy-trunk +21214 826000a408665228c67500ddd70b7300dd5069f4 legacy-trunk +21215 2f21febf6d462b7f74b5d679bec39648c6367803 legacy-trunk +21216 f5ab3479acd4d532a82fed8c82340275f53f4b24 legacy-trunk +21217 c25876a51f1b59630fdc0f09987daaad8cab12d1 legacy-trunk +21218 a2e6fff471b0253200967dadca14899a8a8ef9e2 legacy-trunk +21219 15a24e0bf94f22d12a5f858bd15b5593cd9c6372 legacy-trunk +21220 d1221fbdd85d8cdf94cda56d285805df7d9d8c8a legacy-trunk +21221 bd3993c494a1beea1a7b6eb435142161a279261a legacy-trunk +21222 d3b1956e3de0c13ec04d6a857ab89eefcae689b1 legacy-trunk +21223 ae0f09c7c1e9116048c7c7cc152b9ebfb38923c6 legacy-trunk +21224 3a58027cae4e7ddf7d4639386a6a4809888b87b0 legacy-trunk +21225 a7825441caa4a777a7ec034c84c50ad6c07288ca legacy-trunk +21226 a438aba2d137b7a59132736b597a543c0d4eed6b legacy-trunk +21227 aedc3e920debcada8d2f8e13fc8fce321cd23b36 release20-maint +21228 8e5b537f87a1918cc2753a8621d39a9dd9116540 legacy-trunk +21229 19bc63a844390e4a82b791be524a00b693107bbf legacy-trunk +21230 5965339429c9cd22fe5b05300a646c3103cacb2a legacy-trunk +21231 990b73fa074cda4cab312eb84e6659e806e77678 legacy-trunk +21232 36e825660a2451acc8b6e551e5c8bdd9590f5c0e legacy-trunk +21233 9a4cac2b8b8fc98670312c8ad6d8353ee6415c10 legacy-trunk +21234 1a6b8f69fed62184fa1756a777d8f410c032469f legacy-trunk +21235 5e43573f0df1f19a7389647d1016c4cb1ed7063e legacy-trunk +21236 ed3745da741928086c74b9646d260b03a0edcf24 release20-maint +21237 be42ce295edb53a359487e04dabce5086c1391d6 release20-maint +21238 58736ca9143c0f6f75fcd3b890033c88b52da64d release21-maint +21239 9005943c754ee920a0b682f56676ae9cb04141ea release21-maint +21240 4a8726779bbaf73a36f2ac1a3186f4ba29f97da1 release21-maint +21241 256406b5cf0c4f4b8fd138bb3bdfd442ffd1fb11 release21-maint +21242 76c3ff57eb6d066f21490404ad8c754c80b18f74 release20-maint +21243 6253d128a78bf92c767f50d7339e8d4cb93943d6 legacy-trunk +21244 e3708cb1e0d07cb9c5ccc1d010b21e2070842c3a release20-maint +21245 82699499b38ec1d30429c8d298c11a1c2a38ee7a legacy-trunk +21246 546c7852bac55cd922677a375d3b9a9d11db3a0d release20-maint +21247 0d4ad89ed32d87ecaedb3e8a5dc13b209901d727 release20-maint +21247 73de94a722d206a45c0b49d3011c629ead4d62b1 release20-maint +21249 0757b6c993041437d1fb3008446abd54843a0eb1 legacy-trunk +21250 f9d127ab32ec9aad33728806064ee3a0365aa68c release21-maint +21251 b664b02c3e91cf49e2e12eef0ec87390a062e31a release21-maint +21252 409abf225185d21d3704b9313bf04e0b46109b7d release21-maint +21253 08619bf1829904237e7a0cc9da8a7f92ecc89356 release21-maint +21254 e1dd4630ef3b91bad7f21d581d39ae694879d17f legacy-trunk +21255 6991ddafe3828a2dc18fed5d2f8a3ad3a8dcfe13 legacy-trunk +21256 6eef21e523b6456949142782b1f8c53f1e36569e legacy-trunk +21257 3a8732c67898c6daa4cfa0aa5d49e043db5ac749 legacy-trunk +21258 acd3da5d563cc82cfb0740a55c844c6eb6a02843 release21-maint +21259 4975173e1a02d82aed889c0733f6a5e6cc76897a release21-maint +21260 220405c07232593a4cd9a71274c328db2efbff0a legacy-trunk +21261 83c4748b9390e8ce42440fa058f0318c9a74c5fd legacy-trunk +21262 aa8e238ab0ad7634e7ddd67da9f1ca78aa3341aa legacy-trunk +21263 a4dc21b4774dc997e07039e1bebad79111ab38e5 release21-maint +21264 7d2e6e1d60ce58ba4f9dff09ead1e6b70c835cc1 legacy-trunk +21265 4ebd292c975f8098f1f5ab4a9cb2759c872a68fc legacy-trunk +21266 f0361837323d6d6a48274312c4ba1d83eb256d15 legacy-trunk +21267 b893d12045cb4609ea22135f57c2db65ebf1858c legacy-trunk +21268 f9261904cebbc559a4ce04eac6227166f64ca3b2 legacy-trunk +21269 d923b3c8b15269acf27c7d100188ebc79249b653 legacy-trunk +21270 eae66bf2487888bd46916628ccf3d3570ae52726 legacy-trunk +21271 fe4071beff41868f8c0f46904cde3431c87beb59 legacy-trunk +21272 eb524322a1c31c6352979d255a521523267aae63 legacy-trunk +21273 f8287d84b7551716f5ac8c21e35ad552d8cdeed6 legacy-trunk +21274 f02605b8fdc1e59715621f881f5db9e081e8cc5b legacy-trunk +21275 037c8be505e059d774c87345f5115f158cbd23fb legacy-trunk +21276 a1ef43a6d6e1313f49a917da661f9bbbcf0b84e4 legacy-trunk +21277 0439c82a8ff475613065abf644fd69c54ea67b97 legacy-trunk +21278 4517093eb99eacba8ad08b12ef3f0f0a951f4b30 legacy-trunk +21279 e4d655ae9140e313f9953393d9bf974d9b4e26c3 legacy-trunk +21280 47717e5667eb15f184e0a772d32b5d7c8af5ff58 legacy-trunk +21281 24c29b3715102cdb3569f0b6a48c0c2c2b0ee161 legacy-trunk +21282 9fa54bd7a7cb56ec8e94dd440308df223417416c legacy-trunk +21283 c4db09b87424230d22e9ffeefdf3e5c4bb7b3099 legacy-trunk +21284 e3cf3348feca530af483dedc74a7458d1f88a2c1 legacy-trunk +21285 f1b5fbeecc0e992171472d9e8efe127bdf5f8d2d legacy-trunk +21286 4826a6cdafc40de22acbece437d00f38ff66f166 legacy-trunk +21287 45de1ac2a3767b685ca0ba108d58e4a8f7595312 legacy-trunk +21288 5d3e7f99cf52cf46dfc9a581bfd78ad4bc9bff64 legacy-trunk +21289 065b17fc0d2ee06f65128b5abeb2621cd3eef170 legacy-trunk +21290 9f1dfa786ba655eda127f1fe5c62889f6a48de92 legacy-trunk +21291 0514b16c1a683f3bd547acd9fa0d4663c1beb711 legacy-trunk +21292 fb7c44ae4a6277d42b6631fe60f6aab66a7f44b9 legacy-trunk +21293 d50d4f81aa4c5a7c00edf904533c5895daf0014f legacy-trunk +21294 358cb74c0864f9a8b793a671df2a36aa41d6e3a5 legacy-trunk +21295 57dd13b6c80310d443b20ff55ccfd63f28b38f40 legacy-trunk +21296 309fb026c84ecd57fd257095e7c835db0229738f legacy-trunk +21297 1a2a914b246c22c6f131ebca04f4e8d192158b2c legacy-trunk +21298 c88f4148605fd52ce0eb2062634d798941f629a9 legacy-trunk +21299 6b0a8157be3b6806f13e0a32b04feeac0b7d7ab6 legacy-trunk +21300 41491d196748cd4dff903229f0d6511d2576e47a legacy-trunk +21301 3d9164d95e789f718d679d82618117827f5f3466 legacy-trunk +21302 a46e35acf9c1c64ba90163bac0ed4ecd9b6f1857 legacy-trunk +21303 16e4eb4277978f66be8b466cee548ce953e75382 legacy-trunk +21304 78bfbe2e719cb3bd90354d4849766d10e9472a97 legacy-trunk +21305 426e0c721bbf6eb20a5297cbe074cd181941d0f9 legacy-trunk +21306 ebf61b5b5aebbca711cc6ca754fda21150c4aec6 unlabeled-1.1.1 +21308 fd83212eb8f24efd6494c89a432625c5857ef405 legacy-trunk +21309 dee498961bfe3c90fc759e02ab4c4a8dd8d3d7f2 legacy-trunk +21310 4ad842f9d43147a8018bc0f8b1d7d9a319ee7c77 release21-maint +21311 44122e7b49cf2c9473e68da213dca8925fc49c02 legacy-trunk +21312 9e326c9e6be5942101c103d6a8c67d55456dfa25 legacy-trunk +21313 86dab0d43b7312f0b887e57691c4fe78d587e738 legacy-trunk +21314 9734f895f4fbed98b47fa62dd126698f0f47d92a legacy-trunk +21315 d2c950032393001f7bd232fc8a8fe45d1b265654 legacy-trunk +21316 7c8dad5f2d966dc21dbddd70ddb90f91e29b7d06 legacy-trunk +21317 b5658a230e1a5276045e27bd46a3e9ac13ff8f35 legacy-trunk +21318 8b7ff44b4669597a647f480623d35da8f687ac90 legacy-trunk +21319 0632dcd69ea3af19a69835674b4d645a7146b642 legacy-trunk +21320 e3ba3739855ad1ff77d884bd7f57bdc089fc3e49 legacy-trunk +21321 f38923ce3c6b0f4adba3167bf249258467f7f85b legacy-trunk +21322 1f1d2c50b3c784811c74a13a4c66cd6588834898 legacy-trunk +21323 f7c01b938a1738ad7525f141125a0f186aa09409 legacy-trunk +21324 043e200174f1b7e9c34f4ed61f1d2c8eec6982c9 legacy-trunk +21325 e31a349166f4e0cd1e25e19980efa27c3013b42d descr-branch +21326 bc05a95242a37803a51bde5292a1d9bdbd19325d legacy-trunk +21327 f6078a30f70a280ea6eb584e233b9ec836a6876d legacy-trunk +21328 6800bcce04555b9fa3fe24f3405095ae65276ac5 legacy-trunk +21329 4fa31eca3be4a54d8e917d35080b41ccd3136d09 legacy-trunk +21330 295acc0755f0c7fec8a1d9adec502a1fea39e1bb legacy-trunk +21331 55f3a04e06411ecff2765d07f03cd9a70439ad81 legacy-trunk +21332 ffbb9c918ac046b0ce6c5bb6b7b1440b34866f70 legacy-trunk +21333 0344e4ac70b0c8f955e215f03d664d52dc9d6db5 legacy-trunk +21334 b14521fd8e391621a31d0fbfcb135fed1e11c80a legacy-trunk +21335 20e3a6e10c248fe03ccbcdf452cd7d707af705c5 legacy-trunk +21336 22f85c6a6520a6958b3a91185c8cd95e5b0239eb legacy-trunk +21337 932903c7d054b02bb8970ce2f2214f97126018ed legacy-trunk +21338 982163c4e9d2be0a032f6e61851c8389e022b309 legacy-trunk +21339 68c12d5556df716bd046cdf883150073462fad7a legacy-trunk +21340 0ff76d781d2c6118d69821989c4de4949b26f1d2 release21-maint +21341 ff8e183ae58f941ee26966526124e44fce24a95a release21-maint +21342 7cd6e515fd30a691617941ac6e11f4a6ba64ccb5 release21-maint +21343 314842dcd52e94e741ec79ce922ea2a6afe73872 release21-maint +21344 893ba1f0378a1f644bc05ad4c48b60b48f3dd714 release21-maint +21345 67c841d821e074a9b7f4ce71401b55d13522d057 release21-maint +21346 9098415971d01701bc3f2a99cc27241d22b9c788 release21-maint +21347 be9671e61f4a60867a4ff11d01a8beec2af7d30f release21-maint +21348 3a6a2e59de03c371ff39f802638229aadf1169b5 release21-maint +21349 ac0027e2b3b7a4fd3f2b004f55ee76e3ce495b25 release21-maint +21350 e8650d75e5a454c88c506db26562b95e4f0b5305 release21-maint +21351 75c1f9c3f0d1f7b8306a86735fcca100963ccb27 legacy-trunk +21352 9c2bc3e4df738371fa9740f87de5923642ca387b release21-maint +21353 d52e635e205f8763434abe75882e453e1903ba17 release21-maint +21354 6cec761df2c34ae198a59435f23223dabb569d9a release21-maint +21355 fa4a77e424ddb35e893113745fef2b3854203e04 release21-maint +21356 071c957221ecc59d85545a20960c2e7d5016e095 release21-maint +21357 c823ec47df495e58cf1738513f030457ad77e405 release21-maint +21358 1aa591e4181545c3bdc85098341e547c2443596f release21-maint +21359 140cb246b864aea03f5ab67e1ea068707458e727 release21-maint +21360 159abfc8b1bc51bfc92d16a0bdd68a05765094ce release21-maint +21361 0c978728ebafec8732d889c43f0eda7f5c9fa103 release21-maint +21362 0d287434144b59c2c1e76f4cbd2c405917790780 release21-maint +21363 cda6ca9dfd590d49f819e1fa7ce3746a8aa995ed legacy-trunk +21364 3ba7a358ce02885af4d5a3b5b2ed658248d3e493 legacy-trunk +21365 fb35b3a226046221f7b7d34a2b665b43ba36291a legacy-trunk +21366 e427afb5637f08c1c240efeae1952b32909a0fde legacy-trunk +21367 93bdc5ece1bf6987b617b89cab4cf259a6ad77b0 legacy-trunk +21368 e4527d45e942d1c95f620ee1961bd35b2baf8366 legacy-trunk +21369 f995c4f2512008b3a5a64c99c9d4e3cb32cffd86 legacy-trunk +21370 d014b5226900d7332119b68fa387cbeaac7a2352 legacy-trunk +21371 bf936c5296353c2694ca3efc5cdc70203834fc9d legacy-trunk +21372 49acc8ac60c232415d9bd57dbcbeb46221b87bf7 legacy-trunk +21373 41243cb4ea05d77712a546c89645180545484c56 legacy-trunk +21374 976b0ae4f527c1a1e75c5b5ac4351231daebee12 descr-branch +21375 3f0bdd4ae68400f64887c0866c33b65a018db5a9 descr-branch +21376 754deb86820e5f5ca8cfba60f24f2a39950c06bd descr-branch +21377 6ca3dd82cb07ed4355ab5b2322daad58b4d3f037 descr-branch +21378 04a64d2d8b2d20578905c57dcec4630ad452b358 descr-branch +21379 0226d06e3eff5927490ea7ce6758c046b9d578ff descr-branch +21380 7ef662aed9de4e0a67a59cc2438c61a775735870 descr-branch +21381 f73029c71b0df09ee079559211b4a406a94ef779 descr-branch +21382 2d0b69a67f694c65b39b5f37e2e0f09b20814306 descr-branch +21383 405eaba36b2fc862ec2ba7a4d7eaf9eb28cca22f descr-branch +21384 27839ba7ec22ed49e2c314f9163abd69a594bc53 descr-branch +21385 85db989f6a73c6ccc56ac439db68b4e8f5a932a2 legacy-trunk +21386 6a1630117805167eab9c08d46cd3a9f9745088f7 legacy-trunk +21387 794582fc0623e3b95877ad8fd5deaf153521cb30 legacy-trunk +21388 c2a60de91d2c713813f3cd221275ee8e024eb057 legacy-trunk +21389 edadfa28359f8525300dacb4304401a0fd289417 descr-branch +21390 58469202ee8d8b1b5c97d1d5d85bae6f4012abcf descr-branch +21391 fe633534f4478637547a27478b9c369666352130 descr-branch +21392 a12ec8876515c37e76396b6ac57ac576d7f42f99 descr-branch +21393 5668a8550be4545b4be4d2153cd89e2973be6980 legacy-trunk +21394 e90fc34d73d00fa22a1b52aaf595ad3399a26862 release21-maint +21395 e8dc733867062a149aa12773280f957ab774bb39 release21-maint +21396 0fdc2779e8d43c4cd7efc2b26b6acfe3299f70b2 descr-branch +21397 8db94367fae1c808070b1c1fc2119f54007b5985 descr-branch +21398 b3ba0f48adc4ce805b516e3dfcdf87fbcb1447dd descr-branch +21399 1166011a9cfca982e030283d52f6232fe9cbbe01 descr-branch +21400 f70b2d63f309a8e2611f651ab827db648a376410 legacy-trunk +21401 d32fe48fbb968d70c100e6deb7c2ef3875292b20 release21-maint +21402 264ed55dec6e1ad35419cf9dd0bb13646b3405a7 release21-maint +21403 449da857dce59441a91fd27e20f7e33fddf656f9 legacy-trunk +21404 c029b74332d2aafcbbc0cd8071d542fb6b115c55 descr-branch +21405 d2c9963e42915556817c1bdc6b6eb59d7a9da6ca descr-branch +21406 1da724cee22d3f6559cdba01d127ede91c0d3b78 descr-branch +21407 5a7841340dc7c1c930d1d598435f229cb829e844 descr-branch +21408 08a2c2e794efde6c941c8a6153f19ff911cb36ef descr-branch +21409 0200cd22492ec2609cf14fd4063042398cd12ff2 legacy-trunk +21410 4bab9ecf3e05e2f668ff0bffb0fef106a7a9fc56 release21-maint +21411 17330429cdfeb5808b081b83ceeb977f2c2f4351 release21-maint +21412 798b5e6b4915f0de94ea6283199313aab63a42bd legacy-trunk +21413 5596504ad49afb0a5cfa037567c9ef69a45acf26 descr-branch +21414 e58799eefa39781c01b88dbcab92041079eb91a7 descr-branch +21415 27b866514c9ebdcfd2a06808507e843400424202 legacy-trunk +21416 2513bc1db12fedaa430982c28f1b518e5505f94e release21-maint +21417 520e1f40101aa01d381b420806a41333595fd1b6 descr-branch +21418 8937d234b2a8d652fc95b603e3a53f255084d1c9 descr-branch +21419 c6723cd55458b248da780c51c12c713a04f78cac descr-branch +21420 650f7004e6d39aa3362746d3fa6d404541271ffc descr-branch +21421 23bb3f49cb9424983bdbaafc39ba9a3ff883bd06 descr-branch +21422 44a87c300f2ba4f3a0f84cb43a1822136637b681 legacy-trunk +21423 3eda6231e1c2584908a48141a0e17e2fc8822d34 legacy-trunk +21424 d23f9931b03359a85fcf2c297c8e33ff82084467 descr-branch +21425 4e26b41d2f3dbcb6e74c44880c7245ac2eec7b1b descr-branch +21426 9de65600420b60718341fbb9cac34e7362f67d6a descr-branch +21427 9c58ddc47195ad8331181e9e9724d630fb6a60bc legacy-trunk +21428 be096bb4e3f227a744433a342b2d35dd67453e9f legacy-trunk +21429 98556cdfe71694eb5c0ea8b70306eccb009c1025 legacy-trunk +21430 a80e0d39f10b27fa8ad4e951c60da3d0292ab444 legacy-trunk +21431 fa3a4207d957084752cd5ad3d3cf92c510059813 release21-maint +21432 56652e684737b9db2fc52e0de0df53fbc2facc5c legacy-trunk +21433 903212612771290a49f607b6624b25a4f2cd977a legacy-trunk +21434 117371af544b090a5408b3002b5a729bfe4bedd7 release21-maint +21435 caa8ffc3cd1c70e07b767f442e516e1023bf57e5 release21-maint +21436 77f416387922ea7818b2645fa833ba2fd1843c4f legacy-trunk +21437 c0288670230e9325bf463e46e29378eb0079c3be legacy-trunk +21438 2e1adbe89e4a58441eb7e129bbac8250ef6265cc legacy-trunk +21439 811842dacd39e1e9c7991e1b9f4057dbcf30f658 release21-maint +21440 451c0abbf8a9f54528e1c0bd95f115d54cc37ac7 legacy-trunk +21441 eaabca13174e03fc4df69ea2b2c9cb5a93201cb4 legacy-trunk +21442 3fde1d20331eaf61df10d03242af573b16fd12ee descr-branch +21443 472ef68318a8bf8fd2719203ac9323ed9a81541c legacy-trunk +21444 4d37b72ae2d260400566c6c121055844143df405 descr-branch +21445 f24ec23cd47edff76b42d2b68af269c8081de346 legacy-trunk +21446 c76dad06461b88840207103afb3dd87a72ea5290 legacy-trunk +21447 fbe0ded5e4c1bf0291e47db39c24c253cd47b19a release21-maint +21448 fb96a78e72ac6f5487d283c653b457327b8ed954 descr-branch +21449 764492a8f6a759373e6abe134c5c9e155a20787c descr-branch +21450 e3eac21e1d304bc376c371d49fe6e31168b675de descr-branch +21451 9d6d1116bf2cce8c4329d909ae5866bd4abf17ab descr-branch +21452 1694ab87f1d7c33395e993abdbaeb262b847215c descr-branch +21453 f399e6bc50afd5f3de4224e181d53d74f4a45610 descr-branch +21454 01b920ea52f16fded4579075b59c76f876fa17f9 descr-branch +21455 2e31665bbdc25531489e063b55c9b2a69cc90040 descr-branch +21456 bfed2123b14d7c4506796e0cb298312efd873990 descr-branch +21457 0bd67c8a969e0518da9894c27fa0dc0f28b63903 legacy-trunk +21458 b61f3b6ce1ff90d243c86eb13f724dd464542037 legacy-trunk +21459 3b295ce2705f67ac6f12b54ac2dd612ec1a67911 legacy-trunk +21460 e100c05d444ee90165cc9d3cf09baed3e90fe144 descr-branch +21461 24a0f84ad7465e7b2130cef324b40ddb57b1205a descr-branch +21462 338aaa14c4e5aeebe31a7faf8836fa149c0e8dae descr-branch +21463 b21e70c6d09d4a3037f59258dfe508a819effee1 descr-branch +21464 630c86d3330bd497ca62e47eb5f0797f62f97179 legacy-trunk +21465 baf04cdf65a300de6a4463e2e2dba011611b1eb7 legacy-trunk +21467 fdc3b16215c75f32da2d073de2b29fa7b1b5b778 release21-maint +21468 f6925ad2d1911b38e8727e923b0d435b724e1732 legacy-trunk +21469 40d19f907e1201546008e9599d22253086f05a51 legacy-trunk +21470 d1c60b07217f8c62df648a5da61fcdc31566f8a2 legacy-trunk +21471 dc74823b49ea570dec4d99afd6a27a1d22f839c7 legacy-trunk +21472 f6b3a7a90d83fc0ba024e03a0c1b3d53fb9ba20e legacy-trunk +21473 080100647396c8d034fc6e306d77f48e0cb551bd legacy-trunk +21474 95e3947ca3cea19450878fd8b5d75d866d4415dc legacy-trunk +21475 83479252309489122f8e8902995f4e9a6cdeb5d3 legacy-trunk +21476 8cdff545cbde50e2956ff0e1f66d356da315e186 legacy-trunk +21477 9c6a8dcd722d5553106aaac9f577c79e9be2d2a0 legacy-trunk +21478 06332b3c4335d43300b2d442e2e71720a3fccff3 legacy-trunk +21479 6135c12e8448672b13dc4bc8f4b8b0fe3d3356b5 legacy-trunk +21480 1e02e2014e36a409d4656ccbce7dc5ed5eaf8d0d legacy-trunk +21481 aadd99830531af506538a1d9e098a53850a93080 legacy-trunk +21482 74b3c4e3f486110a48aa3a1a87b32c31a7501876 legacy-trunk +21483 f80f6e9228de6de43f00a9dd6e68c64c665236d1 legacy-trunk +21484 116532141adee38043843880481575ff1fdf9302 legacy-trunk +21485 1d0d3e6a3201a013675f5d4c2d417f1e3e8156c3 legacy-trunk +21486 726e5f2cd36ed0d7deba8390e8e9469d8c478cf7 descr-branch +21487 7de5c376232cb4a38066197cc5039ec31c5cb675 legacy-trunk +21488 824d61113a71220cc933cf2f85e843d5583e8373 legacy-trunk +21489 c8662543ca6a685d4167e8dc7cdc3d002dfec361 release21-maint +21490 cadc18942a34457911fed63bf883699b6378aa77 legacy-trunk +21491 7f83ee3797a26466dff4c993f55f07853c1089f9 legacy-trunk +21492 7b03c150754a09d42fc9ca5f8603d1cf4214a31f legacy-trunk +21494 afda5fff50271bd42c4c06cf19ad55b23c2a5932 release21-maint +21495 82f9524cc84412aab41324078756059c200185c8 descr-branch +21496 b4af091e31c4a46173f4cf4722943f59e97b0d96 descr-branch +21497 2e6fb6e6428fa097dcf5e2b68b59999c098b07a4 descr-branch +21498 d94f8b3213e8cdfede5950530fb06411dc4f7cf9 descr-branch +21499 a45776270c8e11acc828a864d99ec9230cdfbab3 descr-branch +21500 23208f3027f6831a3cb9483ead1881b9a88d36a2 descr-branch +21501 a31891cbad4427b4872c82acc11624ae0000a4b8 descr-branch +21502 69b88d34e722de9f2867801a176c7e242f663690 descr-branch +21503 47bb06023e80593a94788cd2c7245c561eb6521e legacy-trunk +21504 f4032bed470f38f2dff08220c03e1bd68bdf85e7 descr-branch +21505 c5e46634c7d978e471be87e4a852b16ce16b0cd6 descr-branch +21506 53d4e72bb443b0b358b8106c524b87f523667e09 descr-branch +21507 ff81e735e184fe351edf9f73dfadd26245f92eb7 descr-branch +21508 23927664c7295e86ef63aa3e3378cad022c5b2a7 descr-branch +21509 eb80b49c7b15ffc6d6da5f87114afa2b0d00e238 descr-branch +21510 e6defe24ce85565d8d008f19e011074a3467090e legacy-trunk +21511 b68940cf20172104b8a3cb06c257b06a6593b7a0 release21-maint +21512 1165d3f7eaf3ca5fd04e7dda268ff1cedee3530d legacy-trunk +21513 9512747afe9e942a79c449ccc716a982f640f8b7 release21-maint +21514 5682f96f25de24389a1a9de80f6a4ac7dbfd6d41 legacy-trunk +21515 2836b26861806c695554a0a940d2aee398b72490 legacy-trunk +21516 fc1680fc9d23689cc2413eed78e3a7f9ccaae899 release21-maint +21518 bcbbc51f0bb3d96cba3c65c545fa2c3daaf5fd29 descr-branch +21519 b0f98475917d4e5e1004ab5c25b49b157b86f005 descr-branch +21520 37d9d2a7ca50dfabc9c0b28259a1e78340ae11bc descr-branch +21521 eeb2e77c5bad2aa2d6c9d0ae015d9956366a3614 legacy-trunk +21522 7ab09fbb869a0e5c79ff38d4de478ec616a11c5f descr-branch +21523 a29bef457ed8f02bccc5054650884087e2a9b0f1 legacy-trunk +21524 c1e413ef981776514cd76d6eff2a8e403917f092 legacy-trunk +21525 dfcc038c2d4ca6998fe14c438b07091e8de1e6c5 legacy-trunk +21526 d8414f51d4f58ef79c36bdcc341766ca93d76634 legacy-trunk +21527 33b4357aebb8c3b1b2bb33c9637fdc320fc2496a legacy-trunk +21528 4e5e977bd3e2a740f2543196fcf4ebb4d7cc7913 legacy-trunk +21529 09235be74649375186111b630084ca6fe3f0399d legacy-trunk +21530 d56ecae57e0c25293d9e66796d1d9abcd959120b legacy-trunk +21531 b6cebbeb07d1b29224ea6be406e2edf683a4adba legacy-trunk +21532 f83bdd075361b1f98a2534120f4428063583045a descr-branch +21533 9f013d13a28b1daf185f29ec5c1b5a9bfbdefedb descr-branch +21534 b4411de01662f7f92458f3f48bd45299601f8ead legacy-trunk +21535 76360afdb97027f03faf66972e356906c8260b2a descr-branch +21536 fa1e88eb1994a6bdd2b01d0bd91cc5217ea6b448 descr-branch +21537 1417cf470ae9e5df47189e5668e2a7b81e20018e descr-branch +21538 d2eb23636cc627ec99552df480ed93d637d3bf65 descr-branch +21539 46825ed23528a2c3ba00bfde922ec798cd5a1120 legacy-trunk +21540 f315f5674b95f62ba632926a892d0ef1a27951d6 legacy-trunk +21541 a97334971a8186b4a79c448086d160ae183bfa8e legacy-trunk +21542 2fd1377ec48c0d2b1a6b3c130b79358ac9737f11 legacy-trunk +21543 a83ff77399929f5cffcdab13ef0bd9ff771e6801 legacy-trunk +21544 6a5ef19941536e1bd4d29559e3dc5e4e4b1b92e2 legacy-trunk +21545 99c8b5b0c89638458ab7bb6588335fcfc8769aa5 legacy-trunk +21546 9c354e69a489e8591bbc6e521aa08ff23d9e49c0 legacy-trunk +21547 0b4061eec68e0398c0bbc3f5bdb5f7c18c8ecd55 legacy-trunk +21548 45917323791503d8ca769706aa04e55d8d4f4917 legacy-trunk +21549 71f161e8a1d716867e8d811e27d1a1c865aef690 legacy-trunk +21550 40e0f5a332e90a66ae040ddacbdb4f1c48b932ed descr-branch +21551 d9052cd9e0a763e1c19746a938aaeecbb3d11b55 descr-branch +21552 f04a1ddd741a348654eb703972cbe1e973fe3ce0 descr-branch +21553 ba8a562be38358cf5d4e912304cde0b9d866b416 descr-branch +21554 6a5fe1a943ccd5c15d55dee00f6e775edabf7104 descr-branch +21555 eacb78d9cb8edb0ccf7abfe459a909423262bc5f descr-branch +21556 6637016df6e28f66f9426f1eac207fe5223c9240 descr-branch +21557 173bc724d110e2980361f3df8198c64408ed269a descr-branch +21558 3dae251b5df5a3275dcaf761599ba11d2a8d2349 descr-branch +21559 5c976901673e5d06f42d549ad6142041f163c6e3 legacy-trunk +21560 f7de9e0487cf14c2e14462454e1db4b01f06b6b0 descr-branch +21561 88ee9665de0543dbff63eb3065ce1653704a7ab9 descr-branch +21562 f7f076bfcae9c8c2d28e39f6d720ecb9127952be legacy-trunk +21563 b66a652e3c3fe7b8a71f03ed472a5123cdc1fdeb descr-branch +21564 aa76c17a5f08cd999f889188ab87c7da1060cdbd descr-branch +21565 de8560c68c6fdcd6671a5648fd9ec9e0b9fb544d descr-branch +21566 e8c661df303814aed9ccf6837516cc8bae56573a descr-branch +21567 c15acf2e01108cad3bf2363fa52c3d53c66d5e2d descr-branch +21568 eb04a0564a818607b109d74b08f4744a2368c2df legacy-trunk +21569 9653272f036f40a33681eee175264dd811ad5fd9 legacy-trunk +21570 684b0099032d462c8a2a3ae9b6333560ea0159ac release21-maint +21571 05c49346b68b8df6e9062ab29de142bca4ef872b legacy-trunk +21572 31119d0a18e6fc293f098d9ff1387d68db0ec094 legacy-trunk +21573 103028725253b387d73eeb4e2950eed269a6a2af legacy-trunk +21574 51c501c68608c53af067d9bb1ec6c3adbc31e9d5 descr-branch +21575 65c9287abf85ba88e0097e6f28dfeab8f09b8b34 legacy-trunk +21576 ee7a86f873835fc57b6bd137216023d417ab89fd descr-branch +21577 a4fbc2f0139a82d7ed7b2d568e6a8aa3d66194b4 legacy-trunk +21578 9c04e23f8d43b39186e2344a5dd27d6160e45beb legacy-trunk +21579 d45ab7146b37cf8768d40fd597edb69d91bd57de legacy-trunk +21580 6da862339a0e99db5d97e5d36143ab8e35c67793 release21-maint +21581 2933ae49216f26382c2af5027b9dbf6d4e62492f legacy-trunk +21582 ca2ea75df3f252b072886136a33bfb886579b362 legacy-trunk +21583 946b816ad5cb8fdf83d725bcbc6c287d2d6f399b release21-maint +21584 9ad4db97e2d9b6ed291093791ecbcc942782769c legacy-trunk +21585 d4fb94153b308209e5f9b0c718986fcef54fc6d4 release21-maint +21586 fbccf18aa57bfeb0c3d7fe0a17e4849c3057a2f5 release21-maint +21587 a78f4bd59e10a0b3ef3d3de30deec84040369b34 descr-branch +21588 abc4a3b7d18e01c791b18aff01d007b9044a2cdf descr-branch +21589 2f1b4cdcbb06c442229bb62feda73468595a58e9 legacy-trunk +21590 e78a51268c81dfc75707fbb704a249927077c8d6 legacy-trunk +21591 8c38449df74609411c134a4bdbbb4075c3beca09 descr-branch +21592 fee5b5717dbbb890d4f94ad7db0dc3ed9bf3cb52 legacy-trunk +21593 c6d8645d4c885fff99a03289b6b8e4fe8dac5619 legacy-trunk +21594 70af4a173a9564f08809e69672702fd6e3a7f9cb legacy-trunk +21595 cb2eaf457386b786901444787e4527d60920b587 legacy-trunk +21596 6b931bf6bdf67f9b7e8869387c0f4e966d90a862 legacy-trunk +21597 cf8149cedccd21af2ef6c4261286c6e4dcbdecfb legacy-trunk +21598 00934d62e78167232dc35a8b69512fde6f55deea legacy-trunk +21599 3db921f3ede0ba55c8b6196d5274f49cbb17f0ae legacy-trunk +21600 ed0f0d96750cde6566494e56ac81844501b7ad01 legacy-trunk +21601 939bbc51cd2193d2dc21d34545678893227734e2 legacy-trunk +21602 c1a5e5175907b1261d64b96a5c2bcd3a36e08d43 legacy-trunk +21603 cda16383bc6baa2ebd75e4e94be5c756978cc7c2 descr-branch +21604 3b13b2695b7a6b7603a2ba4dd7fde8acccaff3e7 descr-branch +21605 b73e1f422ea8bfaa3b24c627cade7602b7dd23c3 py-cvs-vendor-branch +21606 404c60e0034470673b912ce12ccc0d10b0bf2f9f py-cvs-vendor-branch +21608 8d6b4ac0440b4c0c2177eafc2db0ada4c231f889 legacy-trunk +21609 feea3d2f3563f0bfaf586e1b7af1ac4003a028e3 py-cvs-vendor-branch +21610 11d9e46f147051719f388a7bc2c22cb6ab3b1a90 py-cvs-vendor-branch +21612 8b93d04fa7a9b9f50a586f0a8caaba7a09f708c9 legacy-trunk +21613 9f74965e0f35855c860c8f184ecb0bee8d052625 legacy-trunk +21614 34d5e48c1ed26257c5adf5798b5d68a6a9860ca6 legacy-trunk +21615 6c501d8920030a92add96a4cf7214b8a1803cd58 release21-maint +21616 498d7dd99da41e9266389f1e318613252d9a05cb release21-maint +21617 99ad6fd279e9bf5a609a10e54a8f1438c146304f release21-maint +21618 b1a1de18f91fbcd0746458198368193ec192e5ac release21-maint +21619 87ee1c3fd0c82275585e7b07a7a4f8ad6fb39c3c release21-maint +21620 82a34932ea22d629d14ce2f87f387266a621cb85 release21-maint +21621 c99129a0a47d907bb7d4f325f008dcfcf746b68b release21-maint +21622 04e25c01849b44bb44fe29474b4679590ccc859e legacy-trunk +21623 c397d4cd837d206f5a10a31d9c2d3bace005a58e legacy-trunk +21624 a4d3508aefc0f958a99008cc09441a09133dcfd2 legacy-trunk +21625 dfb77422c60742967020741b2d30124732fb526d release21-maint +21626 106c9995db68ae5c8f769830c7261b04871479a9 legacy-trunk +21627 795aa45902110a99861d73fb8736abfa206aebd0 legacy-trunk +21628 2e2ef47114f77240d068b1c373e3682a65f37f48 release21-maint +21629 2fbb25c3072eb6d47e668113496017ed81473e5c legacy-trunk +21630 e061155f99e8eb077043f20409cd0a9c9b380cf8 legacy-trunk +21631 98bde6e5e7432dc7d7767ef74ce9b2798994a51a release21-maint +21632 26fc905ddc12e55b7b781cdb43f60433191cffdf legacy-trunk +21633 6f8a2402f6fa4b3f91e50dec31f4477561d4a09c legacy-trunk +21634 9977cf206532b146f319272aa8230bb9cdd4b8f1 legacy-trunk +21635 4c33dc345902a9157ff0394186a7b56e5e3cfd74 legacy-trunk +21636 c7a24d3b359739697297bf0d51e93cd1343e4faa legacy-trunk +21637 4b7fd3ae1d930b92258e4f97cf06e8921bb1fe45 legacy-trunk +21638 f4092a5f7bbc7140b1d4097163d2086c98ce862a legacy-trunk +21639 069b81519be7850bb40aa3ce64db43b32de416ca legacy-trunk +21640 5846c258b88963696d8e55ec8fbab834797dc6dc legacy-trunk +21641 c4f75857502a6d3f6718f076abf639d05a687fae legacy-trunk +21642 ba1f3de10085434f11ef9711735f1e05b5c88e45 legacy-trunk +21643 42741e67733841f293d8bda48910b8fdbe22810e legacy-trunk +21644 ea7c77fe50ae99daa4d05e9019bffa872c693875 legacy-trunk +21645 2bb75a1f318419285cd8c28789d9d4e709670248 legacy-trunk +21646 e6ecd8a07ea88f27bf55048ae6bc2950885514a9 legacy-trunk +21647 46dd873d26f644f49831c6f84f4cb5a7a86a32a9 legacy-trunk +21648 202dddb7c97474ca706f67664cf18c4b7d2a55ed legacy-trunk +21649 8626171b2c72528552c160ae6c635950c5695d21 release21-maint +21650 cc2486757c8bf3e22bb94c6b3352bc027ff63bdc release21-maint +21651 c5b50552d56d1f6273c31c63c6bb13d508a6b259 release21-maint +21652 32cb295d0862c22a1b07e81459176ea0f7e97258 legacy-trunk +21653 86b1c82160ea98d57a0f9f41a2d0bb89e8bb216c legacy-trunk +21654 8de91042173f7f4e101fa4827dc092af8ab74eeb legacy-trunk +21655 254a4a9af0fbc6e8580e49ba2c5b721b5dad133c legacy-trunk +21656 f4ea21a0f9542d37fd38a4ac56637634f3d0d571 legacy-trunk +21657 d211709f25f1eecb417ac521910ee180bc23864c legacy-trunk +21658 b2bf88e06fc5997b5fddf62d4109c3a4c1ff8138 legacy-trunk +21659 65afac84d4f73236eca13e7836404e871768c4bc legacy-trunk +21660 7328c8cd917d9ef60eeb186d0ac3afc08af9290a release21-maint +21661 a59ca8446f92b6edb77a19c31b399294a796c980 legacy-trunk +21662 4861373959176c58cd267a11b413749c4d76d403 release21-maint +21663 f72bcecdd1f7e2fcb1d1a1c22b91204dcced1c8a release21-maint +21664 d97c82cbd76691ccc036bb15dba95cd4e6cf6753 legacy-trunk +21665 d50266b5dc48c5ae1cf0644d579b990a4450ea37 legacy-trunk +21666 eae9272903571a277cb08dd4b9a478879d6afa30 legacy-trunk +21667 b1d6ae329dd058fd5a5655b4eb33392c614f6c37 legacy-trunk +21668 fd9461373cab3008b8292a55139ca5bf43071688 legacy-trunk +21669 21b5b2eaeb3d41e62823a133e84a616e915a3b3a legacy-trunk +21670 1fbcf549c1c4535f3be803a1844d806840c7224f legacy-trunk +21671 64fa72a8434749003905f80d5ace4bf0a8a87601 legacy-trunk +21672 23d8eb29e4fa0ffe683f2c01c8a917e418295d16 legacy-trunk +21673 e4d6a739997d961d2d48206d302d60c7d1f6fd0f legacy-trunk +21674 37ee9cd54a113fcb25252bc3175a44792c27243c legacy-trunk +21675 e064f526a6efe8192a2acc3a9f9dac526a16de77 legacy-trunk +21676 fc5a3ec0745e1d6b87f590a0571fcb970559de95 legacy-trunk +21677 ec9aa0dc8b73606a716eb1ea0f9c3270045261be legacy-trunk +21678 bf562418dfb81e0f66a3a4bab054ca24bcbdeeeb legacy-trunk +21679 cd3b4dd3e4ca191794efeb30352aa14bf608576f legacy-trunk +21680 ea26c9b66fbd9d2eab353fdcc37dccad0fbe3af6 legacy-trunk +21681 0c70135389983cc45c542a13723aaeeef7ff1413 legacy-trunk +21682 b287f2927db38a3e51d0dc05c89114ea11495894 legacy-trunk +21683 3fcf98ca6c4a146f5af7c8fa309d4aca2f176e2b legacy-trunk +21684 9060c06bedbc4318444ab20a8a91937ceb6afa9c legacy-trunk +21685 c4930131f5e3ac7275a67c4d352619cf8a3f6c44 legacy-trunk +21686 c1ec87f1044a49cd1786e80e9eab0db50da7bbf6 legacy-trunk +21687 70461f2d21098d1c52928430260d9e2f31946d54 legacy-trunk +21688 e675ff5748f05f279ac469f443ec162d003f3d4e release21-maint +21688 22bed2dd1b286564dea4d9a67d4ed80dc3225193 release21-maint +21690 13783e0a34237d50d52aa920d07559d0ea1250c1 release21-maint +21691 6d4c8a29be7087f906ee2f469c894a65acd54b1e legacy-trunk +21692 047d7c48068add7a3504d412d672f54b33f5c420 legacy-trunk +21693 f53d8c52c81f8d9e34d2f18c069b4be799d901bd legacy-trunk +21694 f60e85384b7981a6ef8e8a11ebe159bc12b2cc12 legacy-trunk +21695 0023a78c1c82c71520d45357aa7caf7be0d32195 legacy-trunk +21696 09a5fe2a742673889c19b12348a035a24b56a452 legacy-trunk +21697 72939a2230d3bf17089a3d252cfff38f22253561 legacy-trunk +21698 bfaa97a19b3083f34f87acb49ee1c9add1d0002b legacy-trunk +21699 29be871bd87685663db85227a9658ed2a51175a9 legacy-trunk +21700 6417d58816cfdd5b9654090617b92c96af43c4c5 legacy-trunk +21701 a06831b3540761b085bdcdc9315a5302c069bad1 legacy-trunk +21702 fd896b7cabb7422532c2ee4506f43b7f7b7b5d93 legacy-trunk +21703 7461348d99da4436ffd2866c9866947910ac7071 legacy-trunk +21704 eae17c57672742597a06cfa746de3cdeafa9a4e5 descr-branch +21705 cfe53a620cffe8127368e69b00abdad2f3b0e765 descr-branch +21706 49c07acc6e83e7b7b671bf719e5c66f5ca298275 descr-branch +21707 c940287dba79bdf56390aad93e5fa638686ab2c5 descr-branch +21708 646e052e05bed51ef2d4301ea45c17c7baf2e05f legacy-trunk +21709 58eb50528692c8e6c438172b8ececbd01f197e73 legacy-trunk +21711 12e7ad1082291605de554b7f49209d4b676164f7 legacy-trunk +21712 9b42df4b74d4563ea4f9b3faefc33520a3e0f75d legacy-trunk +21713 f40140588b1e83a75faa55e3bb39c4ed6d52b672 legacy-trunk +21714 e760eed5f6882cd4760c50708150255e7c422616 legacy-trunk +21715 aa34436145d033dbb024140c6c273adee2e08bbb legacy-trunk +21716 5d3964e622a852cc3b9e96744fb61a68a3522c10 descr-branch +21717 638d9044fbe21eb8fa638d5b0ec877494571766a legacy-trunk +21718 a75ca217f73777d4dff665f6e500070cee970f5d legacy-trunk +21720 ace70e327929cabbde5d919a5d52d10580f590b7 legacy-trunk +21721 55511caa24eeb596ec6f782631b5c5c10842a717 legacy-trunk +21722 5e1a14d993b35b92356298b53aaa9db2e751000e legacy-trunk +21723 99b5d334de1e431fdb6f00d05ecee119293d7f92 legacy-trunk +21724 144a3005b5bae3da51c2a4f3ec8765a6775e954a legacy-trunk +21725 9b8564f6e34d51cae29582dba2cad8ff00bb6929 legacy-trunk +21726 c4041072d101010db2d3c8549f97785f2593c0c5 legacy-trunk +21727 346dcafc878b466e6e081f297ce7b1e93dc749ec legacy-trunk +21728 670464c94b92a682320d179493135c9b0c3a8a3b legacy-trunk +21729 7d77614fd0b7fd701c786183baa693f32078904e legacy-trunk +21730 c6c30e45ab5ba662b585f34933cd69c64387e900 release21-maint +21731 4384f919b448541ff128ce8c300cb9626468b3f5 legacy-trunk +21732 8d62dde7627cef7cf0e4f88c03fc3c641f1eba1d legacy-trunk +21733 132a06ad96eec1a5e89d9b6f322ad0ef24b557c9 legacy-trunk +21734 a86195e6c7e332a57b68bab0c3ed2f814def1267 py-cvs-vendor-branch +21736 6b60d0d974c31d5b9dc96e97b9e825131d7c8a7c release21-maint +21737 28818766a64ca5f95bbd1f68e6d3a8e2e207fc60 legacy-trunk +21738 61e50d0aa59a1d8969d9d897e7341eb9c2985d96 legacy-trunk +21739 405352ea50a07d31f65d7b1bd0531280c1ad22c2 legacy-trunk +21740 4247b4b2c48e69147a98b1e1a3722ae8823aea35 legacy-trunk +21741 fe44428f9774df845bbf3735cfa8aa5a396d1625 legacy-trunk +21742 30414b41fac9784b6f135ba75b1ea2941303b3a1 legacy-trunk +21743 e9954567c54b02f704a9cfd0a125dd5df0dd74b8 legacy-trunk +21744 21a04d15e38c26d833d1e01b969dfe3ba2e78413 legacy-trunk +21745 5b820d7a3e7c13e29f3f342cc9466d8ab4cff911 legacy-trunk +21747 2783183043579192df503497cb89220422736480 legacy-trunk +21748 c7bef6aa6f926727d1199fbaca7a5e56ac072d7a legacy-trunk +21749 21c549b66702411c8e6287153137c4f25912912e descr-branch +21750 1153880597cc72a8cecbd1eb3e83520319e70466 descr-branch +21751 9a373a143a130f2abc863400b8231a03e231f9da legacy-trunk +21752 19250f9181dc44e1a956a93957f6db6b842c8208 legacy-trunk +21753 23e6bba88d6a7fc7f5b9c986210696b63f605987 legacy-trunk +21754 28b6291e2a5cf7f552d3db99fb7e9006cb76d51a legacy-trunk +21755 3f283c98e815079b54cdfd3a073d0639ccd3cb13 legacy-trunk +21756 1151ab8a2cdfe58e250b50561ddbd1b5e911c870 legacy-trunk +21757 7fdb41603e9a3c3c310ca97a74e00447848684e2 legacy-trunk +21758 85950522485020efb01f8b238fce85df35a2ae99 legacy-trunk +21759 721f1a893fbbc248cc071fe323f58cc3ee255e4f legacy-trunk +21760 9f43e3a9bb6ee2526e289c926d59ba82674495d6 legacy-trunk +21761 b9d47d083d2caf34287b5d8977f43279f58e747a legacy-trunk +21762 275afb5a767e2bd91110b9795603ec0bc97d8b58 legacy-trunk +21763 f84acc9dfd0b5cdcbad9cf31402e7005ed2f529b descr-branch +21764 0857fb489fa3a631077a9731d8e615f703939e6f legacy-trunk +21765 730ab0bed6ab46f0a170878cf1b48c975472ae53 legacy-trunk +21766 faf7f171a9f322409b518e016fc355e8da0e7e44 legacy-trunk +21767 dcd1a0aaaecb49ca797ca6cea7e5b86fd7e76332 legacy-trunk +21769 21d7bae9dc2db6c2cb3d72d9e3f73d92a93a8085 descr-branch +21770 59446d0f8341dd1730f161e03e1d72962157409c legacy-trunk +21771 1f9c7b4cee77afe9fa8a4a5e4dee11000776b52c legacy-trunk +21772 fdb36a0c7e6e98e620bff1fa0648865610e68135 legacy-trunk +21773 4ac98fe7abd2b5167626986746de42c464531443 legacy-trunk +21774 6238a222b7cd658ab4339ea6c3a6ba4775ca889c legacy-trunk +21775 384a61fa6f5a2047dc4f39ef6fb359d6777cb143 legacy-trunk +21776 0a90e5ec61b6981e656e7ec8d49a2964f8375877 legacy-trunk +21777 01fc98ba399f1a8af1f39d4f74344be40f214e34 legacy-trunk +21778 19dcfb935f60e4e0f8acf86128bc30428d4cc771 legacy-trunk +21779 271064da1d52ccec98fe1853100b85834c8cf5df legacy-trunk +21780 1f3d766dad91e5ee26928e592594c21cd5cfdbb1 legacy-trunk +21781 9159222e6463fd5945048b67d3c9d762bb6a5ad9 legacy-trunk +21782 10717f8a6d9684c297e1509bacfe485af4b03d2e legacy-trunk +21783 98d81cbe8bbd7fdb39617405a2a0ea7323aac734 legacy-trunk +21784 35fec487bcef77738d5fb3ffa9d838c72d14aa03 legacy-trunk +21785 e5e5bb5482d3b72c671126a897138cb4187e7a00 release21-maint +21786 920ee7f2a5922e685ea8c543207d93ec65c617ef release21-maint +21787 2b5e7383c77a16f34ede4876e3ff81f8d7f5f4b0 legacy-trunk +21788 295518e6fceabe1907625d854bed99022afe0fee release21-maint +21789 c06d8179e9e3b336896a56d9d208d386d1785987 release21-maint +21790 914940946e2ea1fccae003fc0103dbc8090ecb83 release21-maint +21791 c9b4c8ae617923051a61ff26327b8c81eaf81163 legacy-trunk +21792 4030c9019067c5c2067e8830a32f01b0c684e254 legacy-trunk +21793 fdde9facbb6ea7d155d0d4de28ac6cc1ed6e086e legacy-trunk +21794 77c82824df4129f37bda611977ab18d3881440ff legacy-trunk +21795 d59a8476afab9df54aa0418ed5ce043c7a372e21 legacy-trunk +21796 c8e4728d2ab0f3ca8a0d2b2169dffa4c05cef555 legacy-trunk +21797 1d3c57cc8d085c8687b78d89e698ad0c336dd258 legacy-trunk +21799 983acac56466b3bcfcddd2c4318290ea7c9536dc descr-branch +21800 05cf6b3e63de554e17b9356653440d6bc53dba43 legacy-trunk +21801 e53bcbc3165e39679af638993ee25bb450756ccf legacy-trunk +21802 d3c25b06b7e5b44dc5301fdfcc26488009665df2 legacy-trunk +21803 57e59525d217dfce35d18a46eb8d248ebab8ceed legacy-trunk +21804 fdf8d0831278953a28579c1dca032b70d705d534 legacy-trunk +21805 f7196486f42d1809d5e8a4a6edd7c1ccafd5352a legacy-trunk +21806 6a50910ca303ad04a37cf9d8aefe99c3ea6c8cfe descr-branch +21807 55717dc227f4de10b490c8f5f633b5d65cbc1ea2 descr-branch +21808 94fbcf196549557b8e271fb6d9eaf67e8d9da57f descr-branch +21809 0772eaa176319ab4ffc5948e68038fee04507785 legacy-trunk +21810 7335ac7c53157fc00d9c1de38a520aa388fba07d legacy-trunk +21811 cb5ea4d8e8bf9811d666df44c3b40a0c769443a9 legacy-trunk +21812 e5a2e8916e0b4e64c3f2780bbe2504661e37b17a descr-branch +21813 c43fe213ee108f535339b9b293b5579ce6b4bae4 legacy-trunk +21814 ad82cafe45acf491f898615daf92a3c2d2743943 legacy-trunk +21815 33818ec6395bad90a8dcc328fdba5f321475fdf3 legacy-trunk +21817 1f1c78ba57ff457f600a24c5463562938645d611 descr-branch +21818 d6233f7b74c18fe5caf6445756157f17623ef36a descr-branch +21819 8aa63aea7269598a713be447486ac56e88a82017 legacy-trunk +21820 cb66a983096f7cf39515b4c33ae4aee1566c50c5 legacy-trunk +21821 3b888859d52b3a607bc85b59d6a8c8940deae0c3 legacy-trunk +21822 ca8a48aba22ece29bd67709d55eab9d58dfe1ce5 legacy-trunk +21823 5ebee5c060d0e7db218c7c1bfe2108da5a7b64d2 legacy-trunk +21824 748f6b3a8bf627481f29762deb225438c2cc9f06 legacy-trunk +21825 ac11af7d860a35f5ce766947614de3fc5385512f legacy-trunk +21826 fcdb8c94b5d8f33deb8b4670b6f27cefcc7b9e98 descr-branch +21827 cd639a9471b8f7905ef581ec946a90ac0fc137ea legacy-trunk +21828 e638f1206ee0bd99a9a91f2452d8938d0a53a2a4 legacy-trunk +21829 70275037f12d8ded6ad22bcaf93ad74323c0fb8e legacy-trunk +21830 74623b076d1be9e33d08fcdf65e11d7efb6ec965 legacy-trunk +21831 95ddcd444d392fbb136c767b1a3a237aa1482a16 descr-branch +21832 d89e936e1b1065c5f570c0259e73302dd643c5da descr-branch +21833 70711a98d9897c89379bad04afe439c315dc9f8b descr-branch +21834 e09bee9b57292d7613ee76244be8424a56747ae2 legacy-trunk +21835 584be0bbd942b6455c3992fab486cf1616c90e9c legacy-trunk +21836 f65ce5990547d5104cadafa009652c6ef8b60118 legacy-trunk +21837 b7775ebbf449099a4e1b05498258515cf0e63f5b legacy-trunk +21838 f14800229677dea0aab6e8f5a7db2f4fb958fd88 legacy-trunk +21839 92626f42e0433cef66f5de660dee8a48b652856f legacy-trunk +21840 5fc2ba1c3f2423ee939303328bda66a581e06be3 legacy-trunk +21841 a02779fd9b920eb7fa95b79c5c4132b9e59287ef legacy-trunk +21842 1f9743a1ed7b0b08aa9418b8e73d72b22c15522f legacy-trunk +21843 6d4a530fe7c162211168980d6e0a9119d4fab194 legacy-trunk +21844 384b9113a2e0c69adfb42d5a71d92032a1d2a7d0 legacy-trunk +21845 7927e8cf46150ac4d12ae08722c7f75a938c9ee8 descr-branch +21846 38206f29b0fc1c5475d77185aaba53f222cf1bb9 legacy-trunk +21847 cfb57db4c388e755f9de1a05d72eacce60b63881 legacy-trunk +21848 492a1bd4d0c5fe1a2dfc6dbc12157f5ae5b3d9bf legacy-trunk +21849 9ee8f16b0e272f69ea440af58f28957b85065846 legacy-trunk +21850 f7be7e9a6f20281cbbe5683a0d1805851bb92abc legacy-trunk +21851 d3bc82d1c5a92855c04087443cd1e92c9b7846f4 legacy-trunk +21852 e421aa45040cd08691ca38224955f2573b2ac0c6 legacy-trunk +21853 a7bc339ee2f350897ca5751ca3c11631cf2fa1e8 legacy-trunk +21854 2ba1d9d996a383ee2124dc3b77161e7f8636a5fc legacy-trunk +21855 0505d9dc833d74035952835331da2cd4ce6af6ee legacy-trunk +21856 c659d4c009cbfb37f144cd8f06d86999ed71173a legacy-trunk +21857 ad2f526f0019d41981e992080427527eabe40991 legacy-trunk +21858 8ca70c9c1971376e54b5555964b980fa1ebfbbf5 legacy-trunk +21859 47932d82b8eb1ff6018ad1c8abd31e6d701c4656 legacy-trunk +21860 a38e77240a673980ee8d981814615f31272d2442 legacy-trunk +21861 54d0459c8e0fdbd63c24bea3b45a5876501578d9 legacy-trunk +21862 fd74cb5b95732c89f4f90f683a2a5501648bd81f legacy-trunk +21864 09c6fe7dbb1c53cd7ae1e85bd41256185e6b1e39 descr-branch +21865 45f53fe44c0e6d5ca6c52f474b4424b1f65eb186 descr-branch +21866 62e24bc47b62072d3157413e424202dd39a2ca5d descr-branch +21867 b21df091fbbfd6d7c7ffe86816c84be41e412bc1 descr-branch +21867 d250959133b5a996b1edf8a4772fa02e58a3a972 descr-branch +21869 4c59e934e765de503be9369898e6911669ff7e92 legacy-trunk +21870 064de84385caea0d27d7e59d04e6a9cfa238937c legacy-trunk +21871 51c382d5851b9192f86d1c45c6182e794a5b8ad4 legacy-trunk +21872 07917f143488621603ec56719d799b740d213f22 legacy-trunk +21873 00695551d721211705dd73a2251632f21d86bd95 legacy-trunk +21874 4381461cce5df92ce135d5a4d4bc3f0f26e7f15f legacy-trunk +21875 9218fa652391f3a891c724c4b98d37f86b7cc475 legacy-trunk +21876 25244bdb163d921e2130ce6ae0e02e2af3f61a47 legacy-trunk +21877 1c2da78b839b9b058d66b6735a28e50f0650cb29 legacy-trunk +21878 6794dcae5d0cd984e0d0d7483aa5ae8248d0bb36 legacy-trunk +21879 c766756d84d33758338e949f4ae7ebd2d7c5f700 release21-maint +21880 daea94f06429609f4bfbdd9bfb640ce79361b838 release21-maint +21881 a1f19ee01aae0d5ee3c32b97efbc3c3f1b531f54 release21-maint +21882 53545c371fe3840d120947c591c40c3d82e169d0 release21-maint +21883 3cd3081df601c20a92f81af425188ab17c0723b1 legacy-trunk +21884 95ea610f3f54d72ac866e3497b816b8125e7dd61 release21-maint +21885 36c561ee96b5329f50b030cdb93f5a9bbef033fe legacy-trunk +21886 8df77415a61d564c86395682359b4cc1b8cf6faa legacy-trunk +21887 03c20e7cce6acd4d2804480db4b7bcbe1dd935f6 legacy-trunk +21888 70e1858ad703221a6260837ecab9298fc8f88d52 legacy-trunk +21889 237368644c13d537c7c2cc873a593315f4432509 legacy-trunk +21890 726f4d06bd4bd3880291eca1637ca9e20551b152 release21-maint +21891 24d00557fbc95aa7fd1fda33812f8b7e100c29ad release21-maint +21892 b094965960af91d0a93167a289fd1459eeb4d353 release21-maint +21893 4c0adb8a5bc65393428f6451a4047c8b47332131 release21-maint +21894 8cf53d0f85c874e7a1e7f7c015fe2a24d3b5dedf release21-maint +21895 5c73621c9559b58fbfcc0569cf7d83e07a59719c release21-maint +21896 5b07470239db8924b873643bf4673334e979b610 legacy-trunk +21897 4ca9aced55037cf3165719971c84362caeea2471 legacy-trunk +21898 55320d6291c9f5ab8e8d61ee450beba61f74b722 legacy-trunk +21899 3c050d1e35b102a96cd13105dd1b838ffddf9b67 legacy-trunk +21900 11f4cd45a80c07837d08495dcded8d04fdff8687 legacy-trunk +21901 baaac94fec547520afe716646df524e46e68b575 release21-maint +21902 ee9b4580433770b427de6f2ee1d27329f6c5f0a9 legacy-trunk +21903 ca9d7a63794f015b8b8c785e5d139e57a4ac88a1 release21-maint +21904 917168fbfd94b3df7fe6a3e8eb31de8209fb2184 legacy-trunk +21905 a557e95b92f0bdf2ee1e5719b28dbf629b3fedb8 release21-maint +21906 ae676cf1495d4fcff37e788ccda52888752a9473 legacy-trunk +21907 c780c61b35cec98db92e93b4f5bfe287a8324f08 release21-maint +21908 ad6c5c27ecbe63e8616a23f368ea19e09dc817ca release21-maint +21909 f8e2869976b0e507509145220aa6b852248a5d82 release21-maint +21910 d51b2d93381478619c27cfa4d30bdf5e904e12da legacy-trunk +21911 335e75bcb51ad86e00bb758e425e524268c09c61 legacy-trunk +21912 2ce6a9b0a51d684779207504a9c92246a1f4200a release21-maint +21913 140b729130d0c5f0be328ddf5723bf3444489878 release21-maint +21914 b0329649b8cfcfa5ba361fa162ae9476fed5d661 legacy-trunk +21915 c25f2c13d3806f4c387657ecab39e5668924d140 descr-branch +21916 df4b6b5ea9b85c5c78b8dfe870e94a457b95a486 release21-maint +21917 59d14c88651cb444ca0e92575aba125b41175cf0 legacy-trunk +21918 fec8f4035fb2866ae45e814823de691c9aae7655 legacy-trunk +21919 de6f15896861980ca8d72f3f81d3a77f90c0052d legacy-trunk +21920 b26ff1643211f14c2c60d4a38e911c9cd211e2de legacy-trunk +21921 704486642079fe63137c3a1385e61b62d1d93384 legacy-trunk +21922 1aa7e219f52dc82a9d56c680482ecc96d3a599da legacy-trunk +21923 c7cb1c9e9d9c57db526175b7f3ffcd2852b5924e descr-branch +21924 c712b16ffacd63b5d6282b1339d0126dbba426aa descr-branch +21925 b142b517309c752d111a5455240eea8411a1e086 release21-maint +21926 920e0361dd6e3e742cd5032c4ce70456ec8410f8 legacy-trunk +21927 133e570151014f9df07a2206dc22614631b6fd68 legacy-trunk +21928 8ca2ef663ad20cbd9e8203b82df89f696d3542c8 legacy-trunk +21929 276bf596e8d18086158e0eb8621c88be87dc2b70 legacy-trunk +21930 df9c4c54ef3ef9d634258573eba2ff5fc658a47f legacy-trunk +21931 74b7b8a9628b66200f0142270039d34b26d6db55 legacy-trunk +21932 e5bafddd1da042e9c40f0a41d0da1cb94bcfdcbe legacy-trunk +21933 d0938bc12a11e67b3be08e1ebc603553150447a4 descr-branch +21934 c6ef71e943dd640b4fd21ee3bb92fd63faea8363 legacy-trunk +21935 aac62aaa846defad0bc45549ca3345fef27d4f2d legacy-trunk +21936 db647f7c831bc58a23026dafbae7438ef062c13a release21-maint +21937 92f81449e16c21e7f8f94a45c4a18a111218ff88 legacy-trunk +21938 01692bf02f97850557a6e44c88662e319bdf13f7 legacy-trunk +21939 3cd03a64c338c0034398a324621d8be1631fde79 legacy-trunk +21940 f8bd14aef4d6fb5ddf4e9d7c726f2fd8689c497c legacy-trunk +21941 af9ad90a44458b6e2d48ccd8dde1c314382d65f7 legacy-trunk +21942 4d46a1b33c6213be00e7e7c9459e4cd3d0e3384f legacy-trunk +21943 e70929e10663cedda80b6b40c4a743b8e5578b8f legacy-trunk +21944 802a84e84ea942f606408d1d4667234bb561f361 legacy-trunk +21945 29e09b96ed3635a93c39cdedcf7f55d613851334 legacy-trunk +21946 74dfe3200423dd36c3caa0dfbfbc4c6208847343 release21-maint +21947 1d5083e6d17e6cce57e6a9a00c2b83bf8382d111 legacy-trunk +21948 6bef09da9b9324f282d9ad6b33f3642975f7af58 legacy-trunk +21949 0ebfb259ecc65e8cc2715e6a4e959840e0979fd3 legacy-trunk +21950 cbd22c9027b2b3d3f3496665f9a01e4642cabad2 legacy-trunk +21951 ff8e0ce1d9869806fc68d6526ad5b006ca5ab611 release21-maint +21952 141bd70e0b723059c6dd548fbc797d4ec40ae684 legacy-trunk +21953 2e173da11d2d146c8bb823a72ffc59f3d6871bff legacy-trunk +21954 8242907c89573f8eeb36ace21b4c092915377ff7 release21-maint +21954 572533a3038d1832c8a200fb8718112dd83758e9 release21-maint +21956 79d304e3ba257c90ca914a9852ff14b51d5b5d1b legacy-trunk +21957 b10ff337896be577ed7c3ef401b3d9ab63db56d0 legacy-trunk +21958 5de23a638ad64e9f595dcad9774cd02f37a9a9b3 descr-branch +21959 743f8e1d953cbc1bef6894aec06e08ab2a8ea7a1 legacy-trunk +21960 57684d3cefce91c03919b1c51db43d8dc5f54cac legacy-trunk +21961 2d68626143a79c9faf71b09e7bc4c5cc041099bb legacy-trunk +21962 22b2f4b436aff839025a5377c96d3130cfb895cf legacy-trunk +21963 4d33acbdc508f4bd796bf1b8f2cbb04d83765ea2 legacy-trunk +21964 23ae47e00119f3c6962eb74886190538164c37b8 legacy-trunk +21965 44155121f02b1e283741f562b2243ab6b50fca50 legacy-trunk +21966 5eb460a65ff70a34e5f45885e9c079c645d59607 legacy-trunk +21967 01ae962df885e4e6e7bccc8f2554610238cc3174 legacy-trunk +21968 98484ef225f9289f6218159ca7f3b84f716c8007 legacy-trunk +21969 ac13a6ce13e24cd0daa18cf402c88c374594fc56 legacy-trunk +21970 01c639971bff13bfd54f84496e82bec960502198 legacy-trunk +21971 b465cd50cf364a96235ab237c454d99697aef179 legacy-trunk +21972 0e22312c47334bbd89cb9de321b53cd55de06c7c legacy-trunk +21973 f999d3609f7466dc6452732fb7a5bd573f015804 legacy-trunk +21974 2402070ee024c32e21ba5c0778f027564cf07e9b legacy-trunk +21975 18df0978de5d2e1122876dfdc9d2056ae2866026 legacy-trunk +21977 b307e5a8b4d8d591f9fe9461892c2e3d61dca617 descr-branch +21978 014639dc65f8c764d9164ba4b484fc2385fd779f descr-branch +21979 7cd22bf56d7bc2181c432de677f509a7caa8b212 legacy-trunk +21980 d1119633a73e9cdda6b7d1dfc41cd5c590ad5ab2 legacy-trunk +21981 02b81df048bc59f67fc69a5c106f23e42ee66866 legacy-trunk +21983 c2fbb5941ee56fb8a9856e93b303d447f09c2fdf legacy-trunk +21984 4d0ea4c2386d5d88c4337191f0b1770a9b7780f2 legacy-trunk +21985 3d53b59f48e66c835d028639c8688e63ba910a4e legacy-trunk +21986 604790d493fa7359d66e82f9d08f928fcdb2fa8c legacy-trunk +21987 18a3e0d8808e0f75564b13c91e8bc130ca7dbf99 release21-maint +21988 d591a96aed0643d59ee6754bbefa6cccbcd51bf5 legacy-trunk +21989 96455f4abadd33e7ba41104f0b4222e96767519b legacy-trunk +21990 4a431952676b57b02ebb17b228379057585b76cd legacy-trunk +21991 6d9874bb978fbf5c5fd9f62ee8e37ad35d6a6df8 legacy-trunk +21992 998f80514a1312988b35449580d444c7b05fd646 legacy-trunk +21993 763bb6fae280ff7027ed74fe00e7e4566dec2973 legacy-trunk +21994 70b9b6f4e79c2a82964cf97e88e7c242d412fc35 legacy-trunk +21995 4462c57f6c948ddd8d026bce6ce5d16dfca706cb legacy-trunk +21996 74f050f7c364defb58c19a578b6f745f26c53d84 legacy-trunk +21997 1b6868e89a23e8f0a0e07cab1d8ceec27942b2f8 legacy-trunk +21998 a8b1acc7a21f54d3d52d4efef4e073b864c5def0 legacy-trunk +21999 81315b6f94695102074f4b1c0477f32c33a8e0da legacy-trunk +22000 41007d50ccb73d275603dce64063f9bf1884cbb3 legacy-trunk +22001 29e661c52c0b55e9b58bbb17f0256a7eb4fee9f6 legacy-trunk +22002 0c3ad503ad6c4920281e36cf9e398539f9f1942b legacy-trunk +22003 c3071bd6a713318cb0ab79ef969fc33fd5c30061 legacy-trunk +22004 107326515425db79a92942b056905b816a84e75a legacy-trunk +22005 693b39831f718107255746e20145b54644cd9197 legacy-trunk +22006 50004bed4e65a916b3b515234a7af9b9533caecb legacy-trunk +22007 315b3cb127c06221d842eeaedb5b0001842110c0 legacy-trunk +22008 cebb4e1874499d48305770115502b8622c64ae3c legacy-trunk +22009 dc9baf80c45afd9267679a65663d9e1aa47ddb10 legacy-trunk +22010 4677d2ff31508f5fa6aab640c5834f5590633f49 legacy-trunk +22011 a6361c2e5044acd4471aa8549c3ad04ce10e9978 legacy-trunk +22012 33f82080559e1698d407923922c40c17ae6aa696 legacy-trunk +22013 3aa87f34cab01b644d2622a0390f1261d3c9499f legacy-trunk +22014 6f9242d87059e84fa8a8aa67eae49bcfded62667 legacy-trunk +22015 40900620293e6d6dcc01cd5dacfe2296039f11f3 legacy-trunk +22016 b80ac8e31a802efe74960d338752812433037573 legacy-trunk +22017 7c928116baa00de0f3d1c246505eb4a3ef89e8ae legacy-trunk +22018 081d96fbcf432cbb7518dfe760d57c0f1b65e80d legacy-trunk +22019 1bc1fdf1482b06c77faca560a5c2c6b6cb6c5aa5 legacy-trunk +22020 fdb388f2df4eaa73190b425018454e0e91d4feb6 legacy-trunk +22021 132c4bfdba748018cd0660e0c92349c278939f28 legacy-trunk +22022 131a9f75e2582dd54ef6c13da9656570ce5f2d48 release21-maint +22023 3cc66750687d5ce834e6518dd6f3f51a0d95dbfe legacy-trunk +22024 7e52bf52ae33487dc475f2034638fc5bc9079c6e legacy-trunk +22025 2dea40e40d9d573e5067a5c760e990a37524d0c7 legacy-trunk +22026 03305602ba9b85b3bfa81a337b26d45e4cb8a448 legacy-trunk +22027 5e0a40ccb9da4cfc95a727e540a0b3edc49f06fd legacy-trunk +22028 a8575f358b9fdf7d70a54c1354e9aae80f0ad7ad legacy-trunk +22029 ab8aa4302109913226e317f07a79165de33ec7ba legacy-trunk +22030 c032aaf6c812320df21218508dfd396807997040 release21-maint +22031 a1f6fd01205f022ccee3026df0e5ba8f0dc01a6b release21-maint +22032 e66d647b732f23f75b41a7ebee857967b1b669ca release21-maint +22033 1c5d256b125a4c48a0983cd2880edafbde4cbef7 release21-maint +22034 045f55135ad004a4cbb1fed7e55358dac5cdc05d legacy-trunk +22035 876aecef6483f34e39523cc892a832c079332c5b legacy-trunk +22036 3e5ce99459862a2227696842f51eeb7dc85fde1c legacy-trunk +22037 e1464143c46330624464bdef9ac144782074f98f legacy-trunk +22038 12cbc942f549d538efff05d976cfa67070096816 legacy-trunk +22039 77fd20bcc7661a70b84b5b14d43bacf8a2a9b42a legacy-trunk +22040 43ac1804d2aacbddcb5c9398b898e5130d476c04 release21-maint +22041 ef2031c5487576324d67f3671b9d51b843f0586e legacy-trunk +22042 5331f47058a199123201a21ffdc27472befbc42d legacy-trunk +22044 2b16526a35a4de121eb7f1a2f6e5f6c68c511c25 descr-branch +22045 f52c083b558816e13b6359ff8e74744707bf231e descr-branch +22046 3147efe31eb898215369cb71d1a810b69aebc526 descr-branch +22047 d972ceb4dc0640cf0519b5d382675cc9348c2d75 legacy-trunk +22048 d64628cc8ffc8a86dff73fc13b675f3d53aca462 legacy-trunk +22049 6f301b3cf323ec93549c6886f01b05b829e75874 legacy-trunk +22050 4ee1fee1d4adb743040be5c9c64c8d457d71b1ee legacy-trunk +22051 d1669af9d0ec52d37b7495e13c3530d613ee51eb legacy-trunk +22052 7343622f2b85d14124a4c3b78e980e60c5b9b8e5 legacy-trunk +22053 d3d9cea2315669a21e74e4e8ca22a6dc01f05143 legacy-trunk +22054 ae19c6990749620b0ae918a787e720462c36dabe legacy-trunk +22055 9ac1d35f81366ce2b254e822b5af88ebbc2e1a16 legacy-trunk +22056 ea8e963d9e6724469dcf6361601ba6f1c2799da1 legacy-trunk +22057 6f59032af158f185614605e93a0e9635309c7ec3 legacy-trunk +22058 81337fba7ddbe059b09182f15f8df1527999d443 legacy-trunk +22059 c07655f72647b0dfd9442df602dc2b2eab9b1801 legacy-trunk +22060 a5aaf68ffcdaaabc9187ddaaae4a278693cb2d3d legacy-trunk +22061 9eccf78fea1ac03eb589bc79061fb8a63c4b9f0d legacy-trunk +22062 432457f02287841096bbff41d5adadbd732a2f65 legacy-trunk +22063 cb76117c1b4bb8009b39e4d818116fb1ee747395 release21-maint +22064 27636c91cb27c5a10544874a651ae236ee037bf1 legacy-trunk +22065 1b09a9cb06d59f5000e327dd37ada27aed6a3b50 legacy-trunk +22066 3c12eee7bbd4236476bac441a7c74a35a018b212 release21-maint +22067 a3566ee5b1f948444d9f4b6a0405375164f487c2 release21-maint +22068 11112b736c7b5ac0e27aae7e4041d1c74b77e8c8 legacy-trunk +22070 12b4bc4a80488e583a300167ecda403d54bd2d6f descr-branch +22071 4081b56f20ff59bfb1135644a8ba2eea10642d2c legacy-trunk +22072 2dffa3d3d94ff1ada2b7df00c505d883cf157997 release21-maint +22073 0e212e88d33d092d9d47167ee6a741622b045459 legacy-trunk +22074 4d9ebeedbd045fe18a97dc46a51d0eb26caef81b legacy-trunk +22075 8c402adeeccbb5b03aae6de6f3fcc000c67c292e legacy-trunk +22076 0b9cea63bcfcdcc33c98429943746ec6990f5f59 release21-maint +22077 f5e25fe466a4191dd5d0d623177992446eef71ef release21-maint +22078 92ef38b013463b263e379b550e0f5c49c0d30e0b release21-maint +22079 0ce35e7d6e33663536cccb99a04edd547edcec49 legacy-trunk +22080 64343a1272083c050cc2ec6b68a5f65ac194c288 legacy-trunk +22081 22456d0ee73798c4722663f6774f1b9dd860448e legacy-trunk +22082 c7bb9563b1498037c3a02bfeeeb73333a523a012 legacy-trunk +22083 9b291ca6546c4b4f924fe6fc1b2ec9ff2536dcc6 legacy-trunk +22084 f12e1a766a142d5475547dd4357d721625296a37 legacy-trunk +22085 aaafc852c2d53f8d29252f77e8938847a5230692 legacy-trunk +22086 fb837c5ae5d3f36b1869ef3090a5590850c5d080 legacy-trunk +22087 5bdbe61a0c28bb2c3f9605850fdbd10d2c27248a legacy-trunk +22088 59b7e8ecfb9667321d29f4a3376bcb65144a275f legacy-trunk +22089 71feae7bf56094bf34017194cf0a6c9991a21c02 legacy-trunk +22090 bdbb7c4dc63adc5776750a15d2dd6b63101de6f3 legacy-trunk +22091 22155a71825415e73bf85aa9e2e14776080562f3 legacy-trunk +22092 dead9fabbefb7b57a019ecec4e95540f01a0c5f5 legacy-trunk +22093 0b1625a9e89a72cfec67cf7cea282cf70e5e134a legacy-trunk +22094 d20a4ca0705c1ead9309d36a264a2aa94e10ba85 legacy-trunk +22095 0132af63506b9cde0d7d76c71d924faad7f2ffda legacy-trunk +22096 8584217ddc8d6d20821fa279877c3c91c877034c legacy-trunk +22097 cbabe522b8f1676e5f7a81e271aa823d121154bc legacy-trunk +22098 22e8231463ba6b23e15e4dda145c6dc9abc6cf65 descr-branch +22099 edf058b16ddf3fad3f22550d45d56bb24a43cf38 legacy-trunk +22100 cbfdf623c266f693fda29e551cceb14b87e5b463 legacy-trunk +22101 5af1ee42257527b524ad6ad9c3ef71a0ac39d461 legacy-trunk +22102 7628aa816ada9da968a24c3534d10be9b323fbf0 legacy-trunk +22103 29104173a072ebd63c1cdfe672cdfcaa3087501d legacy-trunk +22104 443a8622e851abcf62e2865facc25917fa028764 legacy-trunk +22105 79c676f9b34a9140b9847e79c05819a050b1db83 legacy-trunk +22106 9753b0269f3ac0dd6840ec8a21943ff2ebf496c2 legacy-trunk +22107 34f01c6cc81861372ef98980aacd383796bbd8cf legacy-trunk +22108 55b45b47fc4878fbf45448dc737938689c2b4c52 legacy-trunk +22109 36e7d1eabd921ab0434e7520dafac1d3197b4c48 legacy-trunk +22110 914122fbead2dc2ddba998b3dd1ac4534e0c389b legacy-trunk +22111 f61df8f0cb438a675394e7099aa943de2590dd65 legacy-trunk +22112 deaf7b139bc8f4bbc0c6cd3ea1852f73ae7df48e descr-branch +22113 f082189a444294b46898f65e5a9d6dd5b5361839 descr-branch +22114 510f7f6a877ecf74b563fefd86e49c40b146ed4f legacy-trunk +22115 2bc648932d44fb1533dc466b870af40d4498477e legacy-trunk +22116 b732690f561c6e765b503758a0e0e956d3bc599d legacy-trunk +22117 e7c3c9bf52b27d58eab6c9bbf1a1550db3f741dc legacy-trunk +22118 42dd6251cc3cc4f01bd411eb091319c337428452 legacy-trunk +22119 72a3691f1071faf2e2611be9bc1d7ba2b4bfe47a legacy-trunk +22120 52bd9e1db3d90a52169ee1a27e06ad7bff0324f7 descr-branch +22121 52e92cfab2376a3d450a08d984881aa1dd234274 legacy-trunk +22122 2f27838d8fc594275862486f0335050138e05748 legacy-trunk +22123 2e49f0e92bc5aa5c8b86fde9bcf2ed3be32eb0e7 legacy-trunk +22124 1efd69bf184c3908523b39185775a5b12dcb0b2d legacy-trunk +22125 fa02f79bb491cc7110f874a505ab228bb636aa31 legacy-trunk +22126 0aa1916cf103491dc7b6d4ecd89bbaf5d6f3587c legacy-trunk +22127 8e2f6296fd7b4a675d5c0ba6ac00ae2f6accfeaf legacy-trunk +22128 f49a12e7e24a40a0f47453478242918ffb2468d2 legacy-trunk +22129 4bfd8a5da0b1df1b7f7789d64144ad13a5d6eff4 descr-branch +22130 23f55b9f4bc744b110f5b555f4414d9452870bf2 legacy-trunk +22131 4a8ded087262f2c566e07add30b61c10d45c56a3 legacy-trunk +22132 0dedae7be3aa10471bac0ee97c96e6de06659a33 descr-branch +22133 0fdc5eebe42d1c5187b964c6b510b76119e0c9a1 descr-branch +22134 6c0185df7147c39830452f6c5fc34966b8a406ac legacy-trunk +22135 dab95ca8acfc2a4a70652045c759aaf9334314eb legacy-trunk +22137 41908693774675ab6a01e878bea9f3bb2c654828 descr-branch +22138 650973e2926ca1f40782d1a7312bd081cb4176d2 descr-branch +22139 09df3254b49d7c9306585302fe815ab0bdb53439 legacy-trunk +22141 1541d5c6a8f181208aa7376e578b07a072c9eedb legacy-trunk +22142 900e38524bf291b1cd6aee2e13b098596df3647b legacy-trunk +22143 7149173e8edcdac6bfb26ae553c0d03ba9922463 legacy-trunk +22144 f858f987e772a292006e8f462cfd045c954ac6a9 legacy-trunk +22145 6c21e9394b44f4fe1ed88d68b7c9a2a7c136db67 legacy-trunk +22146 fe3bc4a4ad8436e9ae1d8c530907c33004fb3c6b legacy-trunk +22147 a5e4d4a30c98385367699c1d2c3730e14aa620e7 legacy-trunk +22148 013cffcfd8a3b4019aa632d0c52521d149ca8acb legacy-trunk +22149 90d06cbce26a4b014578953cdc2127280e1d4685 legacy-trunk +22150 e01d29639d8e5d3c7a57e37c27f5f55194b467dc legacy-trunk +22151 a0819708fe9c72d58b4fe617508af51031a4b25c legacy-trunk +22152 f8fdd5083af3659380fd55914f05b52096c68f6e legacy-trunk +22153 2b14f1308275527d2b4d4ea2e66a23b7f26220c6 legacy-trunk +22154 1346ecf318f277d0be52cac0975c43ea309df61e legacy-trunk +22155 9306daddc26fdab78580ce068c891dfed61c4b3d legacy-trunk +22156 388df49c1c3822828c353ab1914e6d969446eb30 release21-maint +22157 4ddc5ab9bec419f630c3b4e7484ac783bbd44c2d release21-maint +22158 f72d61b1246ee01c131868a29ee89172bf9e2bcc legacy-trunk +22159 e90a658a58d4f633afa1638b9c0c073caf5a15d7 legacy-trunk +22160 48e0fb055c33caba249e375e4b7296c95e88749d legacy-trunk +22161 fefcc1e80cee3560ab5a7124cdc1672c70d9401b legacy-trunk +22162 1db6900a07835a3f5c3e9ea89495277427dff7a8 legacy-trunk +22163 b762220a6159fc33cc2e77219fd24a87da3dfe5f legacy-trunk +22164 f2885b0ddbaeb60acb0608ebb4aa182933bc6434 legacy-trunk +22165 4789c12a89f1bf44323bb07f3d89b8dafcaf46e9 legacy-trunk +22166 cf9254210015db6f96641fbbc9ba2e469a1dbc9f legacy-trunk +22167 9aa5d66cd13dcfa3d22e5db6d80880b2263a4ad4 legacy-trunk +22168 eed8a8a8f622c8d99d39cc8826a014c6140b9f17 legacy-trunk +22169 d7590122f9a2613731133a3b62e6d4f6d09c48b5 legacy-trunk +22170 9313b48f11c3f8c67bd27285f9051107f8555269 legacy-trunk +22171 919e60d773342ca4aaba391a499e55c6292c21f8 legacy-trunk +22172 f946b7f7d8318ef304d3f565e52d9db2987c0b9b legacy-trunk +22173 ed62ad30834eb0b53558da711adf521766291632 legacy-trunk +22174 1ae718976ac6dc118eb24bf3477de4ab2ad285b5 legacy-trunk +22175 0c307fa344b5ca63563191a468687db2372cdfe1 legacy-trunk +22176 b00e7b38f77f2751f4d750a726c9d8dceb3ca931 legacy-trunk +22177 bd972fa841c5feb6acd47405a68644945483df00 legacy-trunk +22178 9c3d5395e3fd9309392bc6fd3b3f2eb1d3a39425 legacy-trunk +22179 d144c81eaf44680f95076c825305dce2ac19eb95 legacy-trunk +22180 dc4be7bd67461041e00168c254262354e4f9e19a legacy-trunk +22181 651e6394208c8d91d832bcb5ea88cfb8e8aef13b legacy-trunk +22182 1e686b0898a2f6873ef3e1bb9fe6310e333769eb legacy-trunk +22183 471a9018129c3fd19191d677ef7509507d9386f0 legacy-trunk +22184 f1cf2a4441749fb2002329eadfc71ba028dc944c legacy-trunk +22185 34284216201bea9935b41823c1e9d1935eab6c0c legacy-trunk +22186 3dd8e64f512e84afc4c388bf4654b87b4cfb7719 legacy-trunk +22187 9e4c12673fab44fbe526edbc6bbce092d4c9be03 legacy-trunk +22188 dac9cca490121c1ab60a51bafcaf72b0d7d809dd legacy-trunk +22189 8b9d87af61ebdbf6953bfa0a8ae5ec43452a93bf legacy-trunk +22190 113f0b5744c40c91f09051045f4112a60f49d217 legacy-trunk +22191 00935031b373c549086e2d036dc7637dfd48cf85 legacy-trunk +22192 ba9e4f55133f93be36412b1c396abddc2efcc9f7 legacy-trunk +22193 9f78759a51b0f73c838f86c535090b2f80fadd28 legacy-trunk +22194 4f4d8303de60cf6c06fde4f8982d7b5e2ea321b1 legacy-trunk +22195 08cd81cdffa9dd2f4d6693928e367f76d08c385a legacy-trunk +22196 accf1925431c770e831f16b574d5dde7bb1ecb5b legacy-trunk +22197 2b11d166b07b71a0c50745639f9e9ef2fd873291 legacy-trunk +22198 360cece7612355e3fae4bf4ac28bb6d11a220eab legacy-trunk +22199 7fa1f87ca6b2d3f62ab8a878cfd1d4200ad81663 legacy-trunk +22200 b0aaf780bca66c7df41c8ed79233922aba86576c legacy-trunk +22201 114a90a43db7e9e807bfd4152481fcf864b316ce legacy-trunk +22202 805090ce328a0017c8ee092970c791ae24fa2ca4 legacy-trunk +22203 9059e7c1d8b018b7d1715f7e5d821f5661edb4c5 legacy-trunk +22204 9fc4a5abb36943aff3e334fc7bc9c7c477d1e8bb legacy-trunk +22205 ae43f99b47e1e2766bd29886753ceecaf2f66d24 legacy-trunk +22206 a2b3587f592a8f5dde9de7c64d1bc173d590c49c legacy-trunk +22207 8ea60e2b0f219e4233bfba5bea168140e10857d8 legacy-trunk +22208 28f0ea8d62781b4ac2c54e8fbaace49f0077bb30 legacy-trunk +22209 2ae37cfb189f9e9ab48b2253f5ed94c69264c820 legacy-trunk +22210 19a3c6af4374464e0172c16d6495a4edac6c98ba legacy-trunk +22211 b16f8d01c51e3a33a8358165e5fae42dd56c48d4 legacy-trunk +22212 c942a9821d0997386b4e4a5c69d9fddffee34002 legacy-trunk +22213 81114209ee8eee89a639628dd59159673a88c752 legacy-trunk +22214 cefdcd60a8b2b01644cec7df62e4e1413ddbe19e legacy-trunk +22215 f5b7a1ec4b9f2b1d467d51649a819ac5095f2e6b legacy-trunk +22216 1bc67cf57d0ab6a6b731638806d6d93b06a15ad8 legacy-trunk +22217 fe20d1cfec3d9a3c39e1fb1e08d6bfcce54f73a6 legacy-trunk +22218 c1daa94c21d830e32e8ac185f59da3ca38c531c8 legacy-trunk +22219 bb85ccbd4fee5543de92ef8aebd9f9f474c71c07 legacy-trunk +22220 7d27e388ec6c9ed023515986a8a186d52d36ca82 legacy-trunk +22221 ec676e14073d7fcfa521cd881bfd458e77169e27 legacy-trunk +22222 50da637341ae522fba2acb525aec01f0d53eee36 legacy-trunk +22223 03849946672728f1a7c2ab07da2f02e5bd61e9a5 legacy-trunk +22224 078c1961e17514600d65fa8c5212c64ab184d0a5 legacy-trunk +22225 821e35706c07159f5b112231be8b3747d1c6b771 legacy-trunk +22226 30ae3aff03bd984899f5a710295e43c9d51fb78e legacy-trunk +22227 600ac5dbc6664f54b63156327204b9646fee0006 legacy-trunk +22228 e5754f048f0bc35fbc00e45ff5142f2d333b4d47 legacy-trunk +22229 bad408c7d9d785406cd5a9b68326bf923d380706 legacy-trunk +22230 7b1a0804161eed87245dbeefbcb1818778369003 legacy-trunk +22231 0ab8f937ff665b858dadbb9729971349b4dd9a89 legacy-trunk +22232 23876e2d84b6f1e51225010ee5f3565c329b12c9 legacy-trunk +22233 60a75002a74cfd02b57b79db1bd31fbdecaf8d0b legacy-trunk +22234 98315f0e1d26d7427f67b601e65e48d2ee2a19b0 legacy-trunk +22235 6b8b65fccb03d9f1fc836b1fa18196f58e9e699a legacy-trunk +22236 263dcaf00eedce0cf2b6cb4d1925ddcc081937bf legacy-trunk +22237 e4b6705dc84f90dd1850052587af843e6957d56c legacy-trunk +22238 9e578fcb8ddab73fd130cc2ae209767b79ad9d0b legacy-trunk +22239 d3268d62e46221d26ddf8d977c812a9d10054c58 legacy-trunk +22240 d915a0edb2ea3111d736ad20daa7c321d1388eae legacy-trunk +22241 b15307d29be7bc4fdec883642b1be4ff326005e3 legacy-trunk +22242 c1729cdc07340ce620d4be8de72d280fa7afbd38 legacy-trunk +22243 3a7d67ee10113e8fb256dc47191d4eb2727843c9 legacy-trunk +22244 803a7a1448b2d1fafa154007932de8507670a73f legacy-trunk +22245 2d0a04e27581e8adbdcf1a049e503c0af45928c5 legacy-trunk +22246 f66ccf2c63eb3a93e02adfc90bbc448e8772cde5 legacy-trunk +22247 4df72ea78ae806280c2e7c76924ffc4d211d3cdc legacy-trunk +22248 9a88e50bf11456e18e5e0040ddbc0dcbb09da20c legacy-trunk +22249 ad2b80755d2d4c6bdbe470bf987d2a6a2a7b5bfa legacy-trunk +22250 8d47a21d95e04207cc74b9548ef20839ef33e37d legacy-trunk +22251 8e60f30037a1fcf98d856a23a5e18fb281e64d41 legacy-trunk +22252 745774dbed58e75f8bad622affb8467cbf5878e4 legacy-trunk +22253 7db5b5423ccf9903dc1b2fd3f5c831676fb37dcc legacy-trunk +22254 35050d188a6ac1c1c49fd7f9c47954c7ffe9944e legacy-trunk +22255 e282d6b2b758e64f34d25227cc54951d7c2eb895 legacy-trunk +22256 28b643bad74d2b68507ec3ea66b2cf37438223c1 legacy-trunk +22257 0c5e51694b0f7ef4dff6407a316d5a29ec58368d legacy-trunk +22258 f20727cc3d0f2f3bf124dae188f0b9ac5f239178 legacy-trunk +22259 3969fcbf950086f4e672e08f7a516fbe5a64bffa legacy-trunk +22260 2bb242dc69d8e49a76dbc014a0adb27efd62c165 legacy-trunk +22261 11bba30e9c2840e0431e45f76b3d7b1b53f086a4 legacy-trunk +22262 c90f0036109d4baa71ac621f0b7e1081042a8a53 legacy-trunk +22263 a3077f96d478959f2d14e5cfc91c0bbb2817c648 legacy-trunk +22264 65fe6b07247b00707b5c894a47a87298d2830a07 legacy-trunk +22265 f9494135b579095d0bcbd2ed7b866ad1c97e4359 legacy-trunk +22266 c979625feb496891e54297ff6699724051bc5361 legacy-trunk +22267 8bd06e3249bb5e0c1b98a084aeb8b18f4426676d legacy-trunk +22268 f51b13bf5d54f9f2a8e0daa40ea4e0d9ba43fcbe legacy-trunk +22269 e426230ea5731c9f1611562a2e9f9f1eeddbcd5c legacy-trunk +22270 9cc67aafec6c188002bf94dade988793e7da361c legacy-trunk +22271 e57a4614469e6f4cb037bcc997c1948626568c7b legacy-trunk +22272 ab2f8095c4fcc6d02b83a49a9bb551c92cec4985 legacy-trunk +22273 a1b4f3a1ee079655cbeb5cba9384cbe058416279 legacy-trunk +22274 d79865c0f804589d8b7ba1ccfd325e0e0b8a3c99 legacy-trunk +22275 d00802c74ba4dc4190241e3044fd05b9829535e1 legacy-trunk +22276 b62c80d58d1ec3be5d07777b45e3e86aef77a894 legacy-trunk +22277 39a73c6773f12ed99bbb0db6e918c819f7b70e7b legacy-trunk +22278 764923d985a76814e4a7c92be94d7fcd3e3d4ff3 legacy-trunk +22279 310a9170aad476dae12d6c498f03de5ea46d434e legacy-trunk +22280 efddcf719ff2efc72a25fd714d7d5318c1af9074 legacy-trunk +22281 94ca8eba7e4f097ba1620d245ee688f362d00744 legacy-trunk +22282 e2e589fead30f1ad8fe74c217d035bd796dc6085 legacy-trunk +22283 f75125ead0a23b9634806aac1e86bc5b60c905c0 legacy-trunk +22284 c3e8f47fe7c84df55c6c73327335e085cd3446c0 legacy-trunk +22285 0a9ce81de399916a71cacc4b99c336d0ae5a5fc5 legacy-trunk +22286 cb8fdce9e65a6d29c999a56b3e18eb8d3b1d3bec legacy-trunk +22287 27b4dbd428fe7d5b0066e9bccf8e7fc195ec320b legacy-trunk +22288 36ca376e586465ede088f876115cd041cda1dacc legacy-trunk +22289 88d124c7476606f6d2c3220fbc5180eacc69399f legacy-trunk +22290 5c27f0e4f50f736ef85e6167a7e71c009ee4b14c legacy-trunk +22291 9f785073e48bdf3c49df43a2bcda746a034eea50 legacy-trunk +22292 6e958d5e988bd05c346c7352d5307d938d008ae9 legacy-trunk +22293 f3e278bc439e2708a1ad07422c9c20c602e4e9f0 legacy-trunk +22294 96ebf2b886f76829b4f979a9763a81ccababc342 legacy-trunk +22295 1960ceec1a00ba5623914a0af430ce23c0f886d6 legacy-trunk +22296 c4b31be7e080b95bc96ee1b19a9a0ed8548e474d legacy-trunk +22297 e411bfb9db5764abb45e375ea835774fb432deef legacy-trunk +22298 6faed615b058dfc02a29a65b30be1ad4edb8d736 legacy-trunk +22299 e79fd3934f61027ff04493aea9d5d75b8fa6abca legacy-trunk +22300 97de868ad0f402843c56c1156789fb1f06e4d394 legacy-trunk +22301 8ebf71e1ed298ea921b6821cab65e982c26c9832 legacy-trunk +22302 11a9767e5d8a53f25e4c1557bc8a317768f0b325 legacy-trunk +22303 45ccf3b889b50368dd015fa90aac777903b20d49 legacy-trunk +22304 9e6f7804ef145dd8c37563f57b33a6281479c266 legacy-trunk +22305 c95f0a12b51a59d06a751bf7609d0a07e0f76c41 legacy-trunk +22306 de5d7a9428ef90cb7f394aa5166531b1b348e18f legacy-trunk +22307 c238745e0aae6c066ce2208395229fa77f827c69 legacy-trunk +22308 6350bbaa632a755d839c3d66ca0d844ff105df9e legacy-trunk +22309 9ec5611cfe9c03303432ba7590c9a13d1ffd2e05 legacy-trunk +22310 3420c9e6af1129e5ba64580f7cd719b16464a09a legacy-trunk +22311 875ac8e935424bd6b035328414b172dcbbf881a8 legacy-trunk +22312 eea8dfbbee860290f7831fb9e2a7e7e6b4076840 legacy-trunk +22313 10ec3968428dc83c85c211df6003adc84a8281c6 legacy-trunk +22314 131a01b6f6c714e5918beee5d50a88c06d726864 legacy-trunk +22315 b7984c9bbf2cde038b43a006a5c570bc0aa757aa legacy-trunk +22316 373cc59415900b44b59be2736ca07453f0ce341b legacy-trunk +22317 0201bb5e3b836b37b6fa5cc4b7cfcccfabca28df legacy-trunk +22318 6ba4415072204a61bc27b18e29cceb700b944cb9 legacy-trunk +22319 b55478bd9165c4fe39f42662f7f8428ea19ea48c legacy-trunk +22320 b355376d0731278aec5fad1e93992ba87897d932 legacy-trunk +22321 7826cc37a234b8b10bfa5e5ad85978f63c39916a legacy-trunk +22322 17525b6c532c5924e61f82c1c3714c5971be978a legacy-trunk +22323 13d0f34b6a160999fec11bf7519f896400777042 legacy-trunk +22324 8cbf984c9c13f475a6c08f0a7964f804c58945bf legacy-trunk +22325 91299418b72dc9a8bfcb2e612612b2e70515299c legacy-trunk +22326 600a9a2b7a183130f0b64fde2c0f12eccabe8d6c legacy-trunk +22327 95515c6b694ab5cfaddc65e4e532287c2800dd58 release21-maint +22328 77e405f3a942a917ff1e458c61073ab1f8e981f9 legacy-trunk +22329 6729bf30d3ae5b18df656526e514034e8244a7ff legacy-trunk +22330 e0847ba1d6f4eb06a3e8681474f4aa81d8c4348f legacy-trunk +22331 af482055d5ce490a0dccbdf6bcd53100c660e473 legacy-trunk +22332 f8b51c8ca0826318c6f287a03aeebae584dc9789 legacy-trunk +22333 67be3a68fde492414ba22372ef433508ea93945f legacy-trunk +22334 78752eae132e1b2ca9d1731aaf9c75e3201f1a0c legacy-trunk +22335 4901a935490dd86bb4072eafd14961a56171676f legacy-trunk +22336 c3959f6e404478bd56339a3e16c031a62a0216fd legacy-trunk +22337 957dd646b5b7434fd89a306174077b312b6522bd legacy-trunk +22338 67698d68920320fa8e21aee3efefb014a6b82a3f legacy-trunk +22339 40a17d9500a8b6ee7f294f63b246cd32baa7c528 legacy-trunk +22340 98bba983bfd37cff99092db70249f4894a5c3ba6 legacy-trunk +22341 d98121930e7061f4cbf7252f07f7c40ad5a4728d legacy-trunk +22342 3f8a56f52cd61bba55c980ebd94c5e91479bb030 legacy-trunk +22343 6463cd9db2fceecf58c2e68d439593208d5de015 legacy-trunk +22344 fb12ea9290b2d2172916aa35c32a731c1f902e05 legacy-trunk +22345 815e78125357af798d5828555e5190e56e22250c legacy-trunk +22346 4a8ab67773a9c6c53a5305cdd618b706b50e63b8 legacy-trunk +22347 8c378f9086cd73b54bfbb21bbde066802c03cd3c legacy-trunk +22348 e001a9cde6baf6c8acdb6e5a2de937ded9d8bf65 legacy-trunk +22349 2d67d238d4e918babec1b34a260ec115ac2d3d35 legacy-trunk +22350 85292d959e1b877e957839eb5165fec33b73dd0a legacy-trunk +22351 08cfd8e99806628419923cbdbbe0d8793da0134a legacy-trunk +22352 f0d52a8fde5fe8d99389d15b1f51e55bb45a2f1f legacy-trunk +22353 edf8d2d1a90b69893d5ae6b58e043f8baa8c39de legacy-trunk +22354 2f3b18309cce678c46fcdecb668454c564f02b13 legacy-trunk +22355 809aec64a78eba2f81029c2ab4e929a78acb1d80 legacy-trunk +22356 481b81d300df82e94e980f45bc11396dfc558c9b legacy-trunk +22357 3f34f724f01489bcbd6193e88ad0665a03cdaf83 legacy-trunk +22358 cd44254360b6ea94c7f4d17dc2226ecef1bf5e51 legacy-trunk +22359 1e6f4bb65069d23e24c6003bd60af6b96b6b91e1 legacy-trunk +22360 64d4ad73a8875e0e8182130d40ad09ccbe796bcf legacy-trunk +22361 7a1ef675d8acf044ad01ca408bc77baa05ce4093 legacy-trunk +22362 2f41c952beb058ed38f6933febf5a013d0470a42 legacy-trunk +22363 776628eea8f7367460fad09d53add4c695f78556 legacy-trunk +22364 b7658e665d2ec7a39874d8ffc77ba13a1891f0a3 legacy-trunk +22365 97a3d3d7029f8fb26b24450dedc547fae19e4572 legacy-trunk +22366 3537062b3dc1be081d4b8e4682714e4d5c1fa8ff legacy-trunk +22367 9d024ae05837c94be8653ecd123e869c64b8a54c legacy-trunk +22368 d64e059cd199da38ea12f6437a4c20dca8b151dd legacy-trunk +22369 b06d9dbdaf8fbe75bb31318cb5340af99041bac8 legacy-trunk +22370 b160fa63f40c57a441368404f51b5ed1b03b9a11 legacy-trunk +22371 5d6b2c17ea2cd7a8718120068f365c699cdc8513 legacy-trunk +22372 039e3d26ea35ca61338aa2510969de8639fe6709 legacy-trunk +22373 67f354d4347d58228236b6aa8df5f5ebac088e98 legacy-trunk +22374 30860be3ae7be9f4ddf5f17c60b7dae52b4754b1 legacy-trunk +22375 802c4f940a4ea31a099361b3a6c003c249a1a23e legacy-trunk +22376 9661093d3e2affc3f76930370fec5291da779550 legacy-trunk +22377 81f4cdf8685572262b2b981e9d5c5559ad977efc legacy-trunk +22378 2f6593bf58afbf93fda46d6b5045a06740d78364 legacy-trunk +22379 cb346baedad6c4a418bcbcd8062140a5b1a5e94e legacy-trunk +22380 f0db345621ba7efcaf2d02753c1144b8295b7b68 legacy-trunk +22381 704ad834de27696be5a50e91eddbe687305b9b54 release21-maint +22382 b0002d7c22b1f0cdca96ea5511825fb003dbd122 legacy-trunk +22383 fff6c662859d9c0a09b881a7dbc03b1615eb294f legacy-trunk +22384 50f88ee71d45a3d7f28072069bb418d3736da28e legacy-trunk +22385 ca12e1e333ea1040360289139ee37b885c48d246 legacy-trunk +22386 6370a0f988f0d3f65a2179c9af69f6e916abc239 legacy-trunk +22387 fde3b0f72e38902eece578cd8a4355e13e47560d legacy-trunk +22388 1d462b737810dc820d997f2e813463b15ebbc552 legacy-trunk +22389 fc39c22b5a7ad15b4748ec5e10078eda4d96cc7c legacy-trunk +22390 b14951cd25673a60166c70e8a4914756e1a16c1d legacy-trunk +22392 2967ca96d07ee7ee0997bb680839155746c5c9f4 legacy-trunk +22393 78d00f7023a216f1b775821368bfe1f0a1f6daa0 legacy-trunk +22394 cdd0c7a45575a2911f95b90ccf39b4fff9dec9c2 legacy-trunk +22395 30f8b654c2e5bff3cdaf12a9b18101cd5df5c016 legacy-trunk +22396 bcfe30cd1f0de16c9ed9582c4c8707db84e884ef legacy-trunk +22397 115e4099f3d979fb0deb44c9b6b3b396fff210d7 legacy-trunk +22398 bee7557213b22993296463d88903239e2c96c7f9 legacy-trunk +22399 a97c8064c9d83a4158a7ae692ed988b1f371353b legacy-trunk +22400 680232fb61f30207f1dc7ffd274f8d469aa59fcf legacy-trunk +22401 095c89a825a90a1bf97d88115b055660813b7ac5 legacy-trunk +22402 7e9f5c59e9f27f0264da26570474f9ad35af4eee legacy-trunk +22403 7e44873daf7bdc37ba1efc93b1f223189dbdc1d7 legacy-trunk +22404 301bcb01b50345f1ad603749df86b78ad94fca2e legacy-trunk +22405 01a9b7807160b18108a38942b7f31203fb68f7cc legacy-trunk +22406 3c1c9948ff6557cedc0cc42f4cb288b5dc906bf6 legacy-trunk +22407 3837dccd11cad3527500da124aff380a84757c85 legacy-trunk +22408 50fb4683a46186379fd57b318dcce7433d310efb legacy-trunk +22409 2c4c2caabcfcd93b34bf239cd2eb73fde3418e8f legacy-trunk +22410 47a45da03b09ac8125fc5075ce27995309277a42 legacy-trunk +22411 cd1310e87fe2155f343c5a578938baa885f678cf legacy-trunk +22412 67dcf04fa7541854c5aaae818f96df66677708fc legacy-trunk +22413 acc0ffab0771c9037438dfbe9547983d5d074589 legacy-trunk +22414 de1c2d4d72ba177a2a8fe3a06dff4932134da043 legacy-trunk +22415 fb153e306152886e340d5bd1daa475e445ec3709 legacy-trunk +22416 7b53fb3ba01192bea049311356a40cdfa006b74b legacy-trunk +22417 8691484c5bef533dda04cadbfd55522d2181f3ed legacy-trunk +22418 b484b207e96419e80c5b3c462db16495305436c0 legacy-trunk +22419 4dd38d9301573c90ccd94e8852fb2f8d03c563f3 legacy-trunk +22420 c9a4e6d1bc30b198ebffaf11047b2724e3c853e4 legacy-trunk +22421 c0a16b4c9edb7e1a09bb6a331a56dcb6a8ee7199 legacy-trunk +22422 d37e17658048dab8ed3e980e08c0b8b7906d025e legacy-trunk +22423 f513c6c7d1670bcced5963a125bc8a1730c11579 legacy-trunk +22424 e8be40c75a3f717c7e55c4c81dcfa8cce39200b9 legacy-trunk +22425 77640c38847ba257b39a98bc015c8b5a1a29cc30 legacy-trunk +22426 d16a3a5c8a86b130b29d2ca10a2edf1d7fcb57a8 legacy-trunk +22427 373b6abadc500fcc8cfcc66136f624fb11882c7e legacy-trunk +22428 242ac427f0d0f0d3d6f917bbe0953fd81a3a7753 legacy-trunk +22429 3c7ad5037ab1bc5a223a946c9d39111e2524b38a legacy-trunk +22430 41785793a8a375e0be1ff8afc00f439fbd9f83ca legacy-trunk +22431 cd1c2787ebb4a930194b2a4c3dac8a6002373758 legacy-trunk +22432 6e46c7cd37490e1414490d30a420ad8857025e55 legacy-trunk +22433 71f05fd30e73d5cb782754365cc4ee94634dd78a legacy-trunk +22434 255926698692d46c91a10fa40d70d1c058f5a5c7 legacy-trunk +22435 84b60213159b0223680925ad3a936911dff08fe6 legacy-trunk +22436 0f612d687ebcd77474ed91321b79bc171ba01e5d legacy-trunk +22437 53f3995987999ec3f6126a459c7b2226d2e8c146 legacy-trunk +22438 acb18c9fb20f6a51908ab1de3ccd156115b52231 legacy-trunk +22439 e29ba8f1e7f80a2e6225ec5283347f5340359a8a legacy-trunk +22440 65885ea76c37716418dd12d6cadde90e1f941da1 legacy-trunk +22441 cb7fb565c89b94fc831f49d33ad3e8002cb357dc legacy-trunk +22442 c3363e4d6d1d60ad4aeea2acbfe6362395a7ad2d legacy-trunk +22443 c6129428e053ccad01bd7e61cdfbfcd5c8ffdb43 legacy-trunk +22444 38b5906ff031d3cf93c1268d5d0951124d081bd8 legacy-trunk +22445 e110cd4fc3c6250d160df362653e7598d8726294 legacy-trunk +22446 5b87ee44000baa06b85b493b38ed9557b62c46de legacy-trunk +22447 a08d0e5861ccf258ab3d48f9556363d3f0955d31 legacy-trunk +22448 ac6d9c742864325316d8f68f80ddeb83fe5ac600 legacy-trunk +22449 d3dd0f2fb1f441a8654fbc7f9431a4ea1d843cb0 legacy-trunk +22450 d99c1240d0ac3ee99b4ec436d0f5c86fc65e16f9 legacy-trunk +22451 788a16351e18943886952f6fe58ef4b516841498 legacy-trunk +22452 fbe2074c5fa5a2191423e94891bd538b442c4ea7 legacy-trunk +22453 3b98cf1692d4155cf92fcd1594a5b43963f5e5fc legacy-trunk +22454 be024c274e02cf9a27c43ff485a8686afc84cfac legacy-trunk +22455 388bcdee5129a3dfadc5d05601546959428fad77 legacy-trunk +22456 9f80c70a7a51ebf701232658fbed9553b9a6f1bf legacy-trunk +22457 06f9027141ff9ab92280db23393ae2f7447a40a9 legacy-trunk +22458 2ff5702adb56dab8429c030c6403fb3725d8b3d9 legacy-trunk +22459 3956b22d5e2934f62ebd71e34d441a75702ff5d8 legacy-trunk +22460 fbf1ae7693066015cffd539bb969b48cff6fdee0 legacy-trunk +22461 968d169501f2766abd0b2e5136aa2ccda7cc1b65 legacy-trunk +22462 6617030c51e3ad85030c7de1d5327544c5df67ce legacy-trunk +22463 af1c689324f5316af65e15057aac5dfece656ad1 legacy-trunk +22464 fedba86865e294c94b0fc9ce5c8640e0d4aa1856 legacy-trunk +22465 1c39b96d29c325fad11529578d50cdad9213e2da legacy-trunk +22466 14f782ba40f912f7588c608e63bd925cee795010 legacy-trunk +22467 04643a184546a1167f9fbfcfe946dd200e8dc22c legacy-trunk +22468 49fd724351f4a854b7b22b2f25e25a8c15cce214 legacy-trunk +22469 ca7dbacbbe1866b6da74d707bd590c7b7b513552 legacy-trunk +22470 c3c87ce4afdca6b378beb3d1bfc40848df00e78f legacy-trunk +22471 7861ee951a91c4e9f5ff71402c24c2ee4dcd2446 legacy-trunk +22472 eb5e2b68354f5debf23d3020f8aec2434e70dd92 legacy-trunk +22473 bd8cb665b5e108b2f94cf04d48c5ef6f2734304c legacy-trunk +22474 e9a97b02889b080f83c9df4939e74ce99c81db4d legacy-trunk +22475 a9ff0f6ff260ea41361199ab8d692b64ec834b76 legacy-trunk +22476 dd82cd486d8a1d19a2478cf01c0dc70a857f169c legacy-trunk +22477 35c65d9aa86a26f879bbef60f8d7c9d9186fc131 legacy-trunk +22478 b65312238c0b664aad32dec8eaf87efb2752a2e9 legacy-trunk +22479 1ce5a90fb192b846982cfaf27458209ab88cead1 legacy-trunk +22480 d899bfbffbba1794757cf0176f3d5523f631387d legacy-trunk +22481 c34bbf17385e4d4d0c85c4643763acc34d28f7fa legacy-trunk +22482 5501958edc361d14c81e0dd720328e5b4ed66df6 legacy-trunk +22483 4c8d7868a8e76100353c4a6730d5cd5203c53f12 legacy-trunk +22484 9fb49ce240d19ebe4ecd91ca0ee0d612e2c6a32c legacy-trunk +22485 b9502d1a27a7a5978a8bacf71cadede2e39e48ed legacy-trunk +22486 1afc3116c60235ba30de92ffdde426f3d5dfd8e4 legacy-trunk +22487 1ba9e3684d35482b73a374ff5742b564ce36ddfb legacy-trunk +22488 f10b68eceefc1aafe2945eeb9f31e33c538a689a legacy-trunk +22489 be85f686ad97bbbe20fc4e05ebcf3b26e603e0d4 legacy-trunk +22490 6f6acbf7893943f834b5c423c9e39081b20f7917 legacy-trunk +22491 b865cd5c1925036daeab3d8b2adfc3b6a35e50c6 legacy-trunk +22492 a5a932c215830e095057d6c26659ecf2273e51df legacy-trunk +22493 ba8c62e5f92d69dfa31cbeb02d8ffc5d6b64ac90 legacy-trunk +22494 14e6051d5f1f07a8b440a27cc053ce834ac0a4bc legacy-trunk +22495 3aa060644903166e91d75ac7a1243aa41f8e8949 legacy-trunk +22496 5ad71fdb205b3567ab2b0b0774cca6bff19a22f9 legacy-trunk +22497 5c2bf6cde12303b1c2ac223a9b27a27f062a8dd7 legacy-trunk +22498 f7a2130a256367744de73843ddf6928d7f958708 legacy-trunk +22499 37558e865ead54c279c96157dda557b256c47baa legacy-trunk +22500 c3d53d34ab44debc694b30b36de3eb96d05dd8c2 legacy-trunk +22501 1e87db0ca2482e1c8e53136c7c69722e870421bc legacy-trunk +22502 1456ec7350872d67a952b952f0e594d267695dc2 legacy-trunk +22503 157bbb896198b98c1ff9c9a3531cb56830464a79 legacy-trunk +22504 1069090b124ef87f3e5cd3f37e8799c57698f055 legacy-trunk +22505 3ddb210932ca6dd1c8c34f6523ae22e1c78009f2 legacy-trunk +22506 6c4a8730663ade0e8e3847e98995ed019932a1c5 legacy-trunk +22507 6303026664662b9fd0b943e7f5e8783c8767b191 legacy-trunk +22508 81440dd326bbe1752eafd10685de85f229eb909d legacy-trunk +22509 b9701538f8276a694c5fab5a7c5f6cd9df584276 legacy-trunk +22510 ed9abab971078cdafb11d8bce8fb712c469aa72b legacy-trunk +22511 cea945764db219fd94b6699bc862d7a26e324608 legacy-trunk +22512 11903eb009f67021c9bd6439f5a5466e1c86deac legacy-trunk +22513 fa786f8a7570a5b3c26289b023e8aaf52b180cac legacy-trunk +22514 a7bbac69c8ef2266067e6918ceec1fe2be5c26f5 legacy-trunk +22515 b0d2de8ce24f4c257334cbd66c2657241183de87 legacy-trunk +22516 af0018bb8cfc319ecbb9613232775aa17a6b2026 legacy-trunk +22517 0c2b4391df7dd0c4e5adefb47a5b360976809111 legacy-trunk +22518 6cb9f538dce4987d0f2bdad336dcfb89d33461d9 legacy-trunk +22519 fc761731218283f7b1b6e17658927c809b66175e legacy-trunk +22520 a63a6933554f950d82e3914bf2fbb496e4d008d0 legacy-trunk +22521 6f62f5a62a2c6bd06a91ed74aa939090ddbbf022 legacy-trunk +22522 2d88dea464177ca57c272ddef3c64a1068dbc3e3 legacy-trunk +22523 1f4eb8c925d518e59bca8026a4242ba41ee44a54 legacy-trunk +22524 f7dc21cb1661dc378b239345d8d21bc45b383310 legacy-trunk +22525 3ea2909e051ffb667718d51476e3c7b839859e33 legacy-trunk +22526 cbaa545c788daa97921046068154f2b7fbb8187a legacy-trunk +22527 d370a58fb7fd8f3dd0592fada4ad346033a7e78d legacy-trunk +22528 7957b3f5d462d7dd015a30acfe357346b6ac97bb legacy-trunk +22529 42246b8c58bba8960b3cb7442d072d804567d861 legacy-trunk +22530 1fec0301234678954c03c2d6835f7a62da62e97c legacy-trunk +22531 261e28e7fa01faa125e34bb2b47c0d29f9d640f0 legacy-trunk +22532 b525e602f6c2a42859649cdc97418f3f2f6ee24b legacy-trunk +22533 db488cc9f259886e66e71d851ee63c3982760b9f legacy-trunk +22534 efdcf42f885272ebdd8a91a2bfb078572886b955 legacy-trunk +22535 73f685db8c0c79297f8b75f2ca242c6529ffdb22 legacy-trunk +22536 b41638a11e4e439efdbefb005aacf5d28ee287a8 legacy-trunk +22537 f93c16c10a55c0e9dda3730bdca3aa06a2cb8131 legacy-trunk +22538 ea9cfc38e11bd80e187cd91326ad3134910a70f2 legacy-trunk +22539 ba87c244fb59be654b7fbaded71667a1c079ea33 legacy-trunk +22540 0613fa57ae6d9c7354fef84b5e2568002cf06aca legacy-trunk +22541 05c9a35f214f28b49f575fed7ce0d730234b60c1 legacy-trunk +22542 60264d1e100e9d64e921f44b926edffc44304958 legacy-trunk +22543 d6b084c25ba8bd1174f0f42b9e2908e92e52bbe7 legacy-trunk +22544 ebfb74ce7e5681347749212b275800b1877cd463 legacy-trunk +22545 b1112a2c354ff3b4d5f490368a3dda94ae473846 legacy-trunk +22546 786aced937c5389b1c5f9185117c1ef1a9ef90ab legacy-trunk +22547 6130deeb4cc615b4c02c0e651e4b08fc3f6e05ef legacy-trunk +22548 86cd57f9db9b96f0ed6cf959963fb3d0e13e284d legacy-trunk +22549 d46682bda82ff5cd802a61adf493218b13de27ac legacy-trunk +22550 8144722dc0765ef92a3f07fee76bb94cb60c267d legacy-trunk +22551 7257e87e072016a37800e16cc769761702ad029f legacy-trunk +22552 db9762529f454666642b0e049741fedcaf00da3d legacy-trunk +22553 38be177bd493a08f12574c209eab51c2bda1ed40 legacy-trunk +22554 a48a3d75475ecf2f035d5c40499a285e4553462e legacy-trunk +22555 3d97a4b5c6aa5e473a9088d86afd93c2185e958a legacy-trunk +22556 13f4ba055687f47e718925428722cdd6dac7766c legacy-trunk +22557 9b5a2c1a02f3c0b9d578646e211c5ee2b815f2ad legacy-trunk +22558 5b6a6d7d44aed2b201b7e4254a6c01c20b887a5d legacy-trunk +22559 f920ddb77d8b3f8407a9a9d9d8b366a1cd587436 legacy-trunk +22560 94905eb72f4fcb5b2358991df7bb297e2dd18fda legacy-trunk +22561 051d8e380f382fed1a46fdc1ed2aa74ee4f71ea3 legacy-trunk +22562 e93f5c385ff4434c34b10887a308f3b25b89b18a legacy-trunk +22563 d5acff178ad5e6643fee2e21676a76e7f311fcd1 legacy-trunk +22564 c0ee10e0e13e35e542828f04bd5087d2060f6456 legacy-trunk +22565 be9b50704e4c0a803149c580c41e0ffb787f480b legacy-trunk +22566 0dad0dc7149b2b7c1db07d2de7d3c33fcd3bad7c legacy-trunk +22567 eff8ca679bf6aeca673d0ae45ccd8b6a22f99276 legacy-trunk +22568 ea131ff1d8cd82f999089831def1baf08582306a legacy-trunk +22569 9222b6e3b3687ef02925c2268ab854276c1de1d7 legacy-trunk +22570 78dacb543887efb81b5edcd9467ba42f35810531 legacy-trunk +22571 f199d0aa9f810f7ca5ea41b29a389bb39e17be9f legacy-trunk +22572 b738428238f19500cb10ad50c0fe31d9d3255f37 legacy-trunk +22573 a1adbf07565773c9710f5fee7cc549b9dc78d483 legacy-trunk +22574 63b9b177e350fd66d53640749e26dc1e5a474c67 legacy-trunk +22575 17802077e77cf59fd147c92b40a5f7b3a44045a8 legacy-trunk +22576 3b3079b8572743520a77a7097f4546f87d49122b legacy-trunk +22577 8c2a29b7548ed6242e15d35020ce2951e213fa78 legacy-trunk +22578 bafbe5cc941ff1ac7207d57a5ff19dba61244263 legacy-trunk +22579 2bf2690966ffd321ac653a1e1f667d63ce9a457a legacy-trunk +22580 36fa8e9bc2da9e8254390a94d25b0e64663d9964 legacy-trunk +22581 033462df17bf58b7b7db779d6e3c15b5061c95f3 legacy-trunk +22582 c4b2a6b04d0b90c104304a4de1fe0bb99158404b legacy-trunk +22584 fcab36c93327ca5a56fc0a0670baff454a222bb5 r22a2-branch +22585 484c05dc49984177d15feddb9621f3e72d35d79c r22a2-branch +22586 294a56bf7315f0004bfd5a1d788cbcac552466f9 r22a2-branch +22587 fd119899045c8384cceed86360ee40e221d62b56 legacy-trunk +22588 9e4f739e9a84868ea05f60e4e1ff811abeb39314 legacy-trunk +22589 6386f01f240162d97a08b9ee2b867639e4f82d64 legacy-trunk +22590 5f1e7571b129cb07b92a551e3ac860780cd7ab3b r22a2-branch +22591 8a6cda1755eb991d243467d7d9061b944324e539 r22a2-branch +22592 734066f2164f36e42b2651c017019f113bbade1c r22a2-branch +22593 5c8de68b3cdcbc463daa533594b7e242b73fbf9c r22a2-branch +22594 af058d69eaedd7922bf12bd6eb512973febc4e55 legacy-trunk +22595 d764d55692a14f41c653ff9d7a610df1c43dbf4e r22a2-branch +22596 479b560deca701717aa9f2209534fa9833781a3d r22a2-branch +22597 935aa074cdb86abc91532bb56bd64b073655ee0a r22a2-branch +22598 2a083e050617b5921d222bcba68c228b5a741150 legacy-trunk +22599 50d3b366e8c8a90d6f30dc72e1419818a86437a7 r22a2-branch +22600 88422081095af408ecb8868da3c8a57386a1835f r22a2-branch +22601 e9b795d4c060cd722043d722937746296587c369 r22a2-branch +22602 7b553b1c3e8bd14d0c8b4169c4bc236aa34ad9af legacy-trunk +22603 60d5cbbeadc3b868f6eef5efc6befda15dc6b411 legacy-trunk +22604 fb47db85410e49f855830087f1dcfd5fbff65e3f legacy-trunk +22605 c2db18c070fecda16c4df45152084ddef8f0b39b legacy-trunk +22606 5ebdc3ad88779fe8adee9d2ea7e4ade762d09bca legacy-trunk +22607 ce6ea4449e97cb1ea299036bbb8601e2c14a9619 legacy-trunk +22608 b9caf8cb12a2ec38f61f3a1b8bdc25305133770d legacy-trunk +22609 b45084730916d99e0120274cae0125cde0da723c legacy-trunk +22610 77f495e822c158201af9eabe5380fba421ce6ce2 legacy-trunk +22611 0e7aed53b583332bdbb679ac7edddb4fe582d29d legacy-trunk +22612 3a2fe745a0bbfaff7559c8281f45480b225ada12 legacy-trunk +22613 b22658a468cfaad436542c01c722976386a57c0c legacy-trunk +22614 6218499aebda2b999262416030065897c8e0d894 legacy-trunk +22615 0f873d06ac13fbe1531738252fcbc7c6be06e5a5 legacy-trunk +22616 fb319e9cc2adfed3fa587c201f1eaab465fa0a7a legacy-trunk +22617 7761ac8beb819e2cabcce9ba1b3647602b7ff01a legacy-trunk +22618 0c6c6e878388b9ac49cadbbc5348166f70ca6862 r22a2-branch +22619 88b1ecd048fbc23c507e9092e8414679a29af9dc r22a2-branch +22620 8bc7bca32a9568c6ac2d638312817528205a59c2 legacy-trunk +22621 2fc102b838ed820f76816a45ffcc9191bb473f05 legacy-trunk +22622 96263cfb2c9662999bc6aa7a243582d7eedf4054 legacy-trunk +22623 e851e6148ad8d9e565ff38ff83548fe86231077f legacy-trunk +22624 100dcc9e6f2f3aad900291d663077292468ed0f2 r22a2-branch +22625 b94ce7d70cfca90655dbe6df8b6770c21d8ee6ff r22a2-branch +22626 60c0cff5d57ecbe0e9cf1b75dccdfd38ea4dc2b3 r22a2-branch +22627 853dbe12bbe68a662aec76b524c0b29c130e4b97 r22a2-branch +22628 be5be989caffea046ba0e330cfc7e5856f2a16df legacy-trunk +22629 8607bc890b1f025d2ddefc8f0cc1f314b1531c7c legacy-trunk +22630 a038993890b23e6c32cde94580149651ffbc7796 r22a2-branch +22631 554450409a738e21f98009370a0f80573e69754f legacy-trunk +22632 d9ea99a6f6b446686e7c87ed610c83c0f67ba62d r22a2-branch +22633 5bcbc590f4a71160ce861111604638027e307cc6 r22a2-branch +22634 8996dc520b57bb724a93fbc6a1f75c6534c6a5fc r22a2-branch +22635 ac6bfa55fcebf4b80106b5163792561c8f887db1 legacy-trunk +22636 6125d9f92441dc32a53d6115c88291c46ec7e378 legacy-trunk +22637 9de83dda9f09a3d16bae29a9ca43155957c5b954 legacy-trunk +22638 9306f828fbb7734fb12d577f4f095f761095f369 legacy-trunk +22639 01e66780af61631beb768166da5e833cff1b49b6 r22a2-branch +22640 81c7565a56acce858e6edfceae86335c776ab34e legacy-trunk +22641 7e5e974b3d376d4bb5efa13198abf2ac9db74577 legacy-trunk +22642 bc9c8cebc2efc807860514a9eef0c8ce5d03bf25 legacy-trunk +22643 c403af003884e6adb5f523d91f76fdf84e9c1ad9 legacy-trunk +22644 0d1bbe65a1d877b857504e832b34a54ff3157729 legacy-trunk +22645 d4ba6e2aaae34ac3e0bb0391179f47bf1ded5380 legacy-trunk +22647 ccc4af687cac6cd218ec01395ba1ab9daad89784 legacy-trunk +22648 5f731115e3526bda78a31acf9a9703f0360bfeb2 legacy-trunk +22649 47633b79ec19f3ae66edddfb61cf669776032825 r22a2-branch +22650 b2dad4d17ca9ae1dff3fb5c238f05de7398cfa2b r22a2-branch +22651 0928cd62ddea5d20c1ac802407832cfb63d83334 legacy-trunk +22652 a6ce2d16d739f72b24b719d8fa09529e1f71f77b legacy-trunk +22653 0b11f09cf1e40d3cc0517c8f760492ffbe2f04a4 legacy-trunk +22654 293a412c9fd97d9524be59ec661178c16d173c89 legacy-trunk +22655 125785f1e12fe7b82a51882e50b659ad71786d1d legacy-trunk +22656 811f289637ad24ef1e2f24ccdf1dc89931bff750 r22a2-branch +22657 b159ce3315cb8da68c0bed50b8c755dd235b81ac r22a2-branch +22658 34a74b81c9b2fa685640082b2183c0d4ef823fb3 r22a2-branch +22659 730dcd6d590b2bbe1ca8ead2aa7bd9ebb186c180 r22a2-branch +22660 f52fa2b703d72c6dd019f25ddf674c15ee2f733c legacy-trunk +22661 e76f7c83eb0d5609797a648bc50da57681c37ab2 legacy-trunk +22662 5c03584cf3cc1c65ddb196a538d700698ff61a1f legacy-trunk +22663 2b7c0bedffdbd3942946305cf01645f5565e8e17 legacy-trunk +22664 858628cf6e256945472acc969deb6c772977f533 r22a2-branch +22665 17e7b1a331f35dfef02db89df489b01e41bc24e6 r22a2-branch +22666 fa39f00dd5c333bdaccad8d7ea00eb17e948ce1a r22a2-branch +22667 ffef4e41f06edc41fd82adc1c54524f34bcaeac9 legacy-trunk +22668 c637f29c8198ae0372c582d026692c4deb1e70ba r22a2-branch +22668 d7f42c9de9440d7a6a252c50f3dcb05c97ebecc4 r22a2-branch +22670 de2fbc52c1eb9f4d819b27d2167bfd1d13277e17 legacy-trunk +22671 75269ab26d031377b1702614c9f2e4cd09259e9c legacy-trunk +22672 8d640445344857e48d5a34972aefbc431662d76d legacy-trunk +22673 c72616d6143c2c897272af1080a42274416ec993 legacy-trunk +22674 9cf66958111034be6328107fab4935de0e5f5874 legacy-trunk +22675 500c359038c7b235f9917fa08d23982eac1a2a3b legacy-trunk +22676 b139bdb6d48a4bcd5099cc8fe37f842aad01e911 legacy-trunk +22677 999de54ac6a621e6e7fbf2f98959bf8a81a0986d legacy-trunk +22678 5d81c6bff306e5af0a6580162f9eff6b5a2ca4fc legacy-trunk +22679 c140bd7d3bdcffcefee0e899b4f99673d63af5df legacy-trunk +22680 dad3209ce97332a9da2559e6b9f5e9109bc889bc legacy-trunk +22681 e16ad5f7f387221bf7ee0be7cbe3fcb7667c50ad legacy-trunk +22682 5fec1c9a21eadf4e955e02b4c68dc8b1df5881e3 legacy-trunk +22683 7be4c73bac53e14937a4b88b8d083eeb23d954d0 legacy-trunk +22684 de748347a40480ff424029fc78de7b2a8e866656 legacy-trunk +22685 ca1b8cc1ba2bd65bdeec026fdc0562e7018503e0 legacy-trunk +22686 0757098350c2857d506f4f030c974888fde6503d legacy-trunk +22687 4d69d742db2f44bd864e08a5aca3ff731395b672 legacy-trunk +22688 0922d609acd1252a77ea095d9c76bd247b5df6b4 legacy-trunk +22689 71372a0f50e1b4d50d80411a7c136257bc11c3fd legacy-trunk +22690 2aea394f47dd40e1f2c64c741a06ba1c62e1d959 legacy-trunk +22691 f5d87c41f65b2027b6090aae57fe6130866933b2 legacy-trunk +22692 3bfcdcaba70342544cb5c51986c3eea5efc71fa0 legacy-trunk +22693 25d2f648338419fb5a0a93d23dca69998f3a7d73 legacy-trunk +22694 f94c4bb7888b2c78279a31b45ce6ecd272d8e847 legacy-trunk +22695 cee1decc4ff209a3f42ef37e5c43f4c4ae6bb780 legacy-trunk +22696 2817f1d3adbe303f0aa054a1c8794a57e6b951d9 legacy-trunk +22697 10b44e3b390547a176fa40ac54436841012bbeeb legacy-trunk +22698 7fb5f15685dd06a9268ab94ed5c5e0913def427b legacy-trunk +22699 9afd9d5fb97a0b60e6c140620936947835abaed1 legacy-trunk +22700 25b9b634d9e3d1eaff570531195c717d39101beb legacy-trunk +22701 3b5f34c5bc6c93a170080d5b4755b2489c4543ab legacy-trunk +22702 6c2b7b624ef23f22d2847858798c7fb5065238b1 legacy-trunk +22703 8f90e1f50c11838fcad03bf802fee1b8fc347741 legacy-trunk +22704 50019cb784e0dceeb3dda154f6ab9023970778b8 legacy-trunk +22705 7533412dc58cd6a9fcebfb6993d9a74dfc84ecf2 legacy-trunk +22706 f7aaf721a81b3cfb75c85bc56f9d959876e04635 legacy-trunk +22707 134e133d8c445cc6dafc6591d7b57b3da3ef807d legacy-trunk +22708 0b642d220b02e2d0df893ac2388dd769a51fb6ae legacy-trunk +22709 45d0e114212e98051648bc1c68e97806ed73d7fd legacy-trunk +22710 4a30ec798e6c2eb858a070b85246a6844416fc31 legacy-trunk +22711 61d53c053e434e9ea0662c513c20d1f23c4bdefa legacy-trunk +22712 6e6fc7b6a3601bde6ef483738adfb624c2608d29 legacy-trunk +22713 0dcee9bcd813e861605278ed96ec174167a083f1 legacy-trunk +22714 b3c92f013869f0689effd52cb5a0199aa79d5c9f legacy-trunk +22715 45ea3b5fcbe5787b05cbec65761f65d8afbea607 legacy-trunk +22716 8d2b2cb2febcf04e95121d8a68eba8c3f403f390 legacy-trunk +22717 553d688438c43456ea745e548cfa234813259145 legacy-trunk +22718 c392c3e49dd56ed142fec6ebacaa31501d226ffe legacy-trunk +22719 f9f4bdcbc25aae3b852db4c12c489a287a0217a1 legacy-trunk +22720 bc63afc701ef70da65e0f7d6986fc3286b9cdeda legacy-trunk +22721 0e70df98424edcc36b8881fcb0da2ff433b7b1a4 legacy-trunk +22722 e1c91ac55cca804ce7d12923b458367e423e44d6 legacy-trunk +22723 67b325ce0226d40af10124dba3956ffe1d230727 legacy-trunk +22724 4796a67a998b990cb823378b8d7e1e1cdcf1ed35 legacy-trunk +22725 984ffa12460609b9927c1b977153224378637225 legacy-trunk +22726 77fea8fa1f16431c39fee72dfc47bdacc1efacb9 legacy-trunk +22727 93cb5ec4401798d523a681f2abd650ff031a2768 legacy-trunk +22728 c171b07bf6a9e8deefcd97acfa6c996aaa8c00e7 legacy-trunk +22729 de977d7627ebffc19171206ca41502eec651bcf2 legacy-trunk +22730 003a0fe9c3503eed06ae589a47534a6aebc8cfbc legacy-trunk +22731 5c859d2cb37bdc5069652ca8340b33b0a487cfae legacy-trunk +22732 3e68e1a02ad208add8f33bacc2d7020bf4c62018 legacy-trunk +22733 42b2f19362546ed3b81517fbdb7381d2606eb20e legacy-trunk +22734 3e74318a1b763bdb4b14b3882660136b7db098ff legacy-trunk +22735 c6385038de39afe5c712626bd1814b706e81e58a legacy-trunk +22736 c1ac5f827bc263003c6c2f58e4cab336bac0b033 legacy-trunk +22737 d79b51867cdb51901a5ed124f93ecfc03e5464a0 legacy-trunk +22738 56b50e4d687eba5123dd90149b8409fa6e144032 legacy-trunk +22739 6734c80651148f5a0855af68d7e7ddd836b51c15 legacy-trunk +22740 4354ba4735a096776144c867921be275adbe9845 legacy-trunk +22741 617555579611fa3bb2576990fe732a189b423a3f legacy-trunk +22742 547b6ef1108c849479d906a34badfb1ecfaa4150 legacy-trunk +22743 fc5c75807e1952cb6de96222b027cd9f859615cd legacy-trunk +22744 078292bf94cc7210a75aeed04d428408b5bfa50a legacy-trunk +22745 d0ce0460f4a7c61add484bb5eba7ba0aa79d8d26 legacy-trunk +22746 ce4f1e98ba7e4369b3ec906e93a783f8ac6637cc legacy-trunk +22747 62bf9401a1acfddfb9ec9e4e533c80bbd1f5ff18 legacy-trunk +22748 17b2afba7a6fb04a3121e2416c999e70ebd94ac4 legacy-trunk +22749 59931db572b2449a8827354b0fd1bbdc3b9aa7a1 legacy-trunk +22750 fefe95319f24b0d22220f023c845b220cb369736 legacy-trunk +22751 87628030ad75d687bfde49685b59d979835a0c77 legacy-trunk +22752 076ab8cb451ea023769cc0a631ef8c6fe6198a69 legacy-trunk +22753 dbba2ca7dc1e5d4d36edb99dacd5eac40556004a legacy-trunk +22754 334f4178477aa77721691c44c302c7dea7326754 legacy-trunk +22755 ce319b82a8e4dd9d32fc26526eee7d9a7d09bd8a legacy-trunk +22756 5cf9241d35b09a9b0ddfc3d929ede7c73a2dcb8f legacy-trunk +22757 cc02341dede47e058d5d6477142de7ffb70afa4a legacy-trunk +22758 24480a6d27c4d47935c944cd109c35c700fed753 legacy-trunk +22759 b1acbcf7d5868426cecfb40f8968e51694755e69 legacy-trunk +22760 546ef318ba5dcd4a73b9d77a8b8536cbb40960eb legacy-trunk +22761 4aec9cb7fe5d9d58332005cb55809e47d75ebc66 legacy-trunk +22762 1a6cf325141e0d955f20ffee225b481c5911434d legacy-trunk +22763 fbb35268fed4f878b1eca8234c79d05a6a7be0c8 legacy-trunk +22764 99e953c6709ceef4718b3e2172754753ec860f7f legacy-trunk +22765 c0c5fe7902cf271c2614c744eb920ed9dd0f74ee legacy-trunk +22766 412d0eb5d4ba521426d824a4e19b94a478df3114 legacy-trunk +22767 a0847b7a89028c76615f80b1b29e7c66325d860e legacy-trunk +22768 3a90211a02958feae487e303e95dad9e26b51db2 legacy-trunk +22769 ab194f1f053b66fdf86cfcbaff83cb79e1e3bfb1 legacy-trunk +22770 f3ec5488908b3c499d8600203722dbbdba80f0d9 legacy-trunk +22771 4433eba739e7f16a7c0df0123029f9d55ca4803f legacy-trunk +22772 ec51e10a6229c6ec16297de2f5ed5182e58322f9 legacy-trunk +22773 96a0bb3a8521a1b6b598237e487d09706aed4a81 legacy-trunk +22774 dd8d6153a8c65db8e1c475c544988fd81c71c1fa legacy-trunk +22775 ede7fcb8b0b23771f7180fa8cd38b976bdaef297 legacy-trunk +22776 deacd60272be3247bf086d7d05f2b27dbc5ff4d0 legacy-trunk +22777 202d8dd65eb5b2ff4f70c97f30e4a477a96547d7 legacy-trunk +22778 3e78978224597f416130986155f5aa283edde319 legacy-trunk +22779 de10151a7f63edbd19f485aa5af0f3a44533b13d legacy-trunk +22780 9753608e2d57a3d3c8072c1c4305ba3acdcde195 legacy-trunk +22781 cf9e34188763c0214523c79089fbe2338320e05d legacy-trunk +22782 47fa4ac042d7f0e32e81296cae61d3dda84e7f9c legacy-trunk +22783 b4a3fc1479294b4393c41a5e15ab581779421577 legacy-trunk +22784 72d9b7c0d211db7695b377b7b732636188661e8a legacy-trunk +22785 e141b392b61dd2b43e5657f7fd2b819198499762 legacy-trunk +22786 3e10c087401cfcceb5d0e00cef10072053d3f146 legacy-trunk +22787 2d2516e37299312ca7464cfd95c0f9a27df0b13a legacy-trunk +22788 1cd87642359ca59529f8935f194b39bdb82ad924 legacy-trunk +22789 d711e82ece2332f101995ef7c087919a8244468b legacy-trunk +22790 85605c93652b5a4e03ab20ef04cde253ed0f8e61 legacy-trunk +22791 477b6ddd42425f62d0836e667d446b91173e091f legacy-trunk +22792 7e628f60245e9b2d3b0efdc476022ff270b943d8 legacy-trunk +22793 da5eebbfe41da5f758bfd4d3eefcd9385026513f legacy-trunk +22794 11a758c5602790f6934a3027fa0fa553421550e9 legacy-trunk +22795 19d271f297dc758ce37e75066ef092d5e16287cd legacy-trunk +22796 01a6901cd305e29eac72e52e2a7761aa3e97bdd9 legacy-trunk +22797 6c30d20d27f2cca8aaa5e925ba8e5219c9672a8b legacy-trunk +22798 7b39d91424a2af0c9f12f65070f81e389ebcf844 legacy-trunk +22799 ddc4c2f5efbc9598c5a81d87ef02b612eb65a3c1 legacy-trunk +22800 ea76dea6440f9785769bc443e13a72872fd57984 legacy-trunk +22801 37e0b0fcca540f67b38169e5ad54eaa789ee53ba legacy-trunk +22802 2c2cc31bdf153ac6705c2ce4459c2ac35109efee legacy-trunk +22803 02251b048bbbf192cb06607e4404d87e76808501 legacy-trunk +22804 1849f49aa6f8665fb98e7f10288fdc44022ac1cb legacy-trunk +22805 07388a6a5526b95a4423fa03dd733494467cb940 legacy-trunk +22806 81168ef4cb658bf5cff479b134e0b69ae9e490d9 legacy-trunk +22807 49bb41a69dfc38ebc6c4a78090300093cd732e3b legacy-trunk +22808 d9ecb2170354f562dfa6bcbde8e92366eb1f2fa9 legacy-trunk +22809 3811580fdc373ccd72d8ecfc94f44ef517e69284 legacy-trunk +22810 3fa29cf7319d48450568dd9f5c29bf301b698b65 legacy-trunk +22811 856e3fa14cba68ff843d06d9839cea029bd67e38 legacy-trunk +22812 b98e4346257bfbc37c18f83109b0a9c767506d98 legacy-trunk +22813 b0f5278a2ab437f2d11679fe5184bc32567f1b61 legacy-trunk +22814 cea7fea1742b4038416354b02f34b71612f19672 legacy-trunk +22815 9da68c0379abb9bbeb5b1fdb91ae52d01741533b legacy-trunk +22816 c485d77376fa40750608f353c577f34582eae713 legacy-trunk +22817 476eb7dceeec2497d4b17f2b0e0b72624c38b110 legacy-trunk +22818 725762ca27749ad6ea97c3759a8492ad97af1dfd legacy-trunk +22819 26588d7035308f10c39540f4328c6a8d561e566d legacy-trunk +22820 7edc2fce1f881574828ed8deaafd4bd4fcdc9b2c legacy-trunk +22821 b67309407cfc8854c1340f00c2458d16f7cfffcf legacy-trunk +22822 fbd49d1717c4c2838adceaa35affcfc9fae61abf legacy-trunk +22823 f6f93419bfb68023cc24b80fee0f0fe34077388f legacy-trunk +22824 43ddc46c5a99678c7902e26e83dda52696370ced legacy-trunk +22825 dc27839c0b80fab1ef0a3078aff72e54380d8849 legacy-trunk +22826 fd48a55ac364fe307fac26a786ba8413b41bdd97 legacy-trunk +22827 13a93a5dcb1de67e72b62b42abcff4dd809abd80 legacy-trunk +22828 44a62e3b706f927f2ab3016b49b24eed2dc7fb68 legacy-trunk +22829 c0cf1a24fc13dd9d931447e322bf26fd5c2b8b36 legacy-trunk +22830 c43d7a8f00a4595aa002fe62ce4eb6d34bae6904 legacy-trunk +22831 c59f06f38a468f9803e0e7a1dde3649b73d16824 legacy-trunk +22832 5009fa6ddfeb3228675b561b5587f179a1b502e8 legacy-trunk +22833 2fe08918fac667c9f0e0a11f6d7c726f14d8d71f legacy-trunk +22834 844553473fa4668f034a9d812dca4e29275cec02 legacy-trunk +22835 bf2c77840f1cc6ffb0872a19588a67162f174a91 legacy-trunk +22836 47e0c0fdd4c8a00797bc7a7fe5fe25c9a222bd06 legacy-trunk +22837 85765e61deb0c31d83d40dd59022c0a227a7067e legacy-trunk +22838 a80b4b006eb7cf33f8382b21b3b369151b7b1060 legacy-trunk +22839 c48654959dc46fd0149e913bdbe0ec0b21bdd518 legacy-trunk +22840 db36e396f0431722aa6b0032ae9e2706636e9d79 legacy-trunk +22841 1be18ef869a47889373da32199b44cfc7971758a legacy-trunk +22842 bbdf86f358e955888b404d7d51d540c7919e0e4b legacy-trunk +22843 0663154479416b097b4fd52add26ad2db8306e29 legacy-trunk +22844 00de719ae83197794b55fb9c5af0248d153bc2ec legacy-trunk +22845 1cece743a70843ac331fbbb6dadc5fedd7e2c83f legacy-trunk +22846 04fd3869c6bbeb205d1191d711dd96c75bf2e2c1 legacy-trunk +22847 904b2f9811a2912edd5af556a19135544cd0de8f legacy-trunk +22848 5d973448e691df33854eb46cf21e7ae21ea5e1cf legacy-trunk +22849 4ac9a44c7e478c9f9b8f1faa962a90370f3a9171 legacy-trunk +22850 10bf4bed5096f84b17314de050a7ae966b95c966 legacy-trunk +22851 6d5ac3c4341634f6146d2ab9d22b7fc71365723f legacy-trunk +22852 43fe9377e2cf603656d514b39c2b289c6ce1f819 legacy-trunk +22853 6beba8b6f60add96b0a6ed8953d0a03a8461e9ea legacy-trunk +22854 b4e918612dc9750bee38d1a17976a767441e722b legacy-trunk +22855 c773daa448406e8c94dd9db4af66dff329f3281a legacy-trunk +22856 8f035800a373d76c9966fd72ff076c3c68bfc2cd legacy-trunk +22857 c396afef1aa92329a41e70831d4e9d2335e2450e legacy-trunk +22858 f7cf8961c6678e40e3d54e30d4f6c692716b7654 legacy-trunk +22859 f4a899e7ec93af0568b6b2627a7e6a776ce15828 legacy-trunk +22860 253aaa1edcbd18053b2ab14cb2c0b8d68fca9dde legacy-trunk +22861 337b53679c73489d9528e114a16d688e624832ee legacy-trunk +22862 b730107dbd13752a0fc97730150fd00508c29812 legacy-trunk +22863 a885d8761bd290500f4aafd47d7ad9d88b54389c legacy-trunk +22864 5663b883ea5d999b618476e8b80b7a03ca83e197 legacy-trunk +22865 b706c027c3c0ca1425d491621093cd383d0b0d29 legacy-trunk +22866 0bec699783d009bdc2a34f82b661af5559fd875a legacy-trunk +22867 1ac110e905c2f25e4a495a9cba00b0b403bb62d7 legacy-trunk +22868 38a6ddff866f1786e5644e205538c04bc0f036ae legacy-trunk +22869 0f51465f9f3340c69d1264335135542607e0f92e legacy-trunk +22870 d10653e71cfe042205c3680bb287bcedad0bd632 legacy-trunk +22871 f09be641c7a3a1b192ddd2ace7cf01bc6ff95886 legacy-trunk +22872 545080e30627cdcb0ecec04013802282f291b78b legacy-trunk +22873 ef2cf9943acda7eed2c42c7d0bc7927051f24877 legacy-trunk +22874 43cd0b4e7261fd810f8f3b991d36e24a083f27c6 legacy-trunk +22875 ae056f11497496553e8897d3bb2298fd40223000 legacy-trunk +22876 ad0cce4a5de1f78a2093fabccbf3e1936fafa36d legacy-trunk +22877 20fb7591f88559c0a6965520204926249ede5ac1 legacy-trunk +22878 c0a44829bcd5ff26115f1b95a777cb401d7e2f30 legacy-trunk +22879 cf1919ea94c28a2f1d3d9840c86b647c873c1268 legacy-trunk +22880 f5cde7eeb6d77da69fbf5873c56003ccb80b5039 legacy-trunk +22881 71d45f314d90ae352ef16e3829b33a8d30954a21 legacy-trunk +22882 08abee2a398efa54ef46a98d4619559655d0c144 legacy-trunk +22883 40feaedb7867e34c778f6f7bcbf0d8bf22bdc4bd legacy-trunk +22884 60f290a7eae8c1489b3f7d826a96812e2cea5c96 legacy-trunk +22885 f4af27cb263240a0a21e2e27475ed847e1cacc23 legacy-trunk +22886 c9647fa78f052f3ef0b53baeef3501f056101236 legacy-trunk +22887 e03ce2d6558557a2942dae26280869ce2de1dc9c legacy-trunk +22888 b1b0479c9106d5ed73afffc51be6a1594c2cc9b6 legacy-trunk +22889 92df6845120d64618379efc9d67754dfa8d544a1 legacy-trunk +22890 d55b75ac2fb4883165f485001975fcf58eda4ddd legacy-trunk +22891 797409d9702245a39b37c415a88adefc67560b11 legacy-trunk +22892 01dae8a03f86376206c84fd6beada6faf11378d2 legacy-trunk +22893 a3c045fa49f50ca957e3859ab0775d9b078d9cc2 legacy-trunk +22894 a4feefce0ce84969ac49574f1e72107233ff61ea legacy-trunk +22895 d4b3b8e23544b8f4def82b76a9b890c4f46a08dc legacy-trunk +22896 b39e56dfe35d2b9944e421ff1df68e8b12ceb621 legacy-trunk +22897 de0f035205ef9a347c3b4676c88578de2cac5938 legacy-trunk +22898 79e2327e51d6136d8d22f6ef35defa28c95cfe0a legacy-trunk +22899 6b81f9e9d8600a284fea3c2e838e1eed3f03bad8 legacy-trunk +22900 92d0fac8a16934f59e222587c51b3326e68c214e legacy-trunk +22901 575f50ceceba1831a98920f4237fc801d24549dd legacy-trunk +22902 937965516b5472f29f4f4568b982d9bd0e455588 legacy-trunk +22903 2fa615dfc464c80e26340a64ba88b60d6dc1dd38 legacy-trunk +22904 80bebc5389fd0d18bf5715c11bc4b6473a02986d legacy-trunk +22905 b4edce9d6e990ec4e91563fda6f618a9d576396f legacy-trunk +22906 84be0cab63a884b46b0a276fe7caddf2855fdfee legacy-trunk +22907 780e741585e10e26c56d11f8bfc1bb367af86831 legacy-trunk +22908 8f8e971132b867384654271430a47264ee29d191 legacy-trunk +22909 ec7a2a6cdbe9c486a7a68914b830f65b0f00357a legacy-trunk +22910 08c3c9edd99bb0ba1e48081abc40fe8c0747f2af legacy-trunk +22911 cf65ebf875609131e8c93e632c65d138a85d55d9 legacy-trunk +22912 8d358c24dcfbb1043a970a8fa11b7ddc16efb983 legacy-trunk +22913 cc604b71036c4ff8c2d213b48ebcc86275909c78 legacy-trunk +22914 87e8fc0a9862b5539c7f2a6f27b1613c4f496779 legacy-trunk +22915 78cfb993f2741906d74187f0f365284d917c692d legacy-trunk +22916 7df300d284c6aa023f3b3ff25083085ce0688af6 legacy-trunk +22917 3584550a622ad59a692eae8292ae19cbbc7fd40a legacy-trunk +22918 b3271297b984ea49b693614deacb84b5778cbbc7 legacy-trunk +22919 715244108faa0f7718be9b5860fcb2def2b5c69e legacy-trunk +22920 685dcae5c1237029836b9eb39e1367457a209289 legacy-trunk +22921 c768d3191df1c1ebea5b9d1876aff168d1be6ff6 legacy-trunk +22922 91533675d6cbf0ad5f2751751d157005545e5467 legacy-trunk +22923 82db9a9006ac5ee3cebf373aaafa5d64ae78dd2c legacy-trunk +22924 6958784b1cef015cddfe232b8856a88fb995c44a legacy-trunk +22925 3f84b2000f62b4148ff7a4ff62274068013a14c7 legacy-trunk +22926 7de4e6b8d199c0e4a452dcedd183dda90d73340d legacy-trunk +22927 8dfb13a4e175c0f35156136da1d3c584e0de5770 legacy-trunk +22928 8cbc74f5586b50767d30d62ef3ed6e725eb1985f legacy-trunk +22929 714aeecc23162f747bad1aff7e2eedcc9f63defd legacy-trunk +22930 6ebc26333e6d7cc1eaee38ae56da4a9656f6f425 legacy-trunk +22931 749e49c947c071be9030a8d850bfd038ce3059fd legacy-trunk +22932 3731ad1d90333ed11b38387358b377e7f1ce02ed legacy-trunk +22933 31a66c0c7d301e6a3ae257af1078758d5d4879fb legacy-trunk +22934 cfc5e5160cf5df8265021b73924265dfbb74914a legacy-trunk +22935 6b82853df2edb786777fb2dcf35f97b6fd405494 legacy-trunk +22936 933e812974c3ea90d93e2e020457667164cc0c10 legacy-trunk +22937 04218e85b156fd658f4700c01004300f4b70edc0 legacy-trunk +22938 617f5e72b0ec8332d92fd95a164c2431a228bb86 legacy-trunk +22939 3716b116fb3132255b4574cb15909feae31d4d1e legacy-trunk +22940 9830d00b887dfa426d0d99206bfda488e7db4279 legacy-trunk +22941 843da9795381307f015247b1fc19fcbe9d734649 legacy-trunk +22942 bc6bd35f5998df49f5dc4f221019416c6be773fb legacy-trunk +22943 372d8c1d2b64e288d6102070ce61e8f5561d1db4 legacy-trunk +22944 2a4e3c9285b54fbe86bc87c12ba1e67421909d6d legacy-trunk +22945 fbaf4e55263f910393f9f87a3f0dce831492dbf3 legacy-trunk +22946 45657376b9b8cc934635bff68f23ca63a2ef7736 legacy-trunk +22947 d6e1b109160971b37248ac1dc62e3c073463e2c8 legacy-trunk +22948 e202a75d881e147995bb436556f6e7869d6eda69 legacy-trunk +22949 1901f875b7d3d1d8d4f302d12798b62b1db83fba legacy-trunk +22950 b7f6fbc087a77eaa707671b26ba0ee133bbe843a legacy-trunk +22951 5005545b6487f06a7ed69affb3d320451af24479 legacy-trunk +22952 11b373b00f2afe1aef057e8cf230f809474d9f7a legacy-trunk +22953 6eafc4a6359a80a8ee1541e07865ae468b8111e1 legacy-trunk +22954 0b0c84078f9160da2615ed80f70c3b479c90c44a legacy-trunk +22955 1c8a950d69700e75b1443e818b478ef0110d2209 legacy-trunk +22956 bd252b1832a2dba1890802ea0c3616c565d00902 legacy-trunk +22957 b4521436e8f8f99d281727a3776783a57dba53fb legacy-trunk +22958 9433dd3c197ef4b1f6a3d5a5992b641b509605f5 legacy-trunk +22959 450e5a0e926b940db8939a1472b875784c72406b legacy-trunk +22960 0d96145c44b89f6a0fd3b81d728635e6192b620c legacy-trunk +22961 fb2d83aaff68645fe7f6f2a10f6c1854bb196650 legacy-trunk +22962 01de0a7030698c74c328e514f53bf2ba2e656666 legacy-trunk +22963 d19648ca8749ccc1a4249b14575259db25b8b5ec legacy-trunk +22964 cdfdd5359411a0974290b4042977b72eef47a08e legacy-trunk +22965 a684b4c1012843e931be30227a64ab4579713559 legacy-trunk +22966 7766ea72432094f79f3abf34938d9628f4424f55 legacy-trunk +22967 21d2b9eedc2de17996043c459ef5a2046ea32660 legacy-trunk +22968 2a9bbdbefbb1c94f1d2fe2096316e79716612c66 legacy-trunk +22969 ba9aabcd89e3decea2ee92e1ecd5777996d2fb41 legacy-trunk +22970 226d5eefa44afd6b5cbc56b866887a600d9963ac legacy-trunk +22971 5487d9d53a0e1e552121bc900db73333750963ff legacy-trunk +22972 f3036d4e3c22af812f089aae14135fe1f790cf29 legacy-trunk +22973 4d2cb6eaa41138c9a0042b253eb8d1d5eb5c05cd legacy-trunk +22974 deb08af89a35d69884612d32ef114289d066309b legacy-trunk +22975 2e6da2dd2ab82070b4111f59ab44faf535477a48 legacy-trunk +22976 85eb1c911ae5c0c766c0f788ebf5ce38f802cd19 legacy-trunk +22977 b7dc5159448f48a77322b92defdbd9a34283b562 legacy-trunk +22978 2c1a983098a064b48d925a2938f4fcfb2c4f9e56 legacy-trunk +22979 d9daa4a67be262389a10c4f622110d4aa1434632 legacy-trunk +22980 f56c91820fae2d2ca83bd3fa821d56b0a8627cfa legacy-trunk +22981 0e4646bf804110e337ee38494a7e1e49a9812a47 legacy-trunk +22982 56c549a253a6e94c6fc9a6a11a4793a8e9b29326 legacy-trunk +22983 5dd28aa2be6bfd00404312c0c66421592009d51e legacy-trunk +22984 8d2c7436b9d27f7f325ce649b432702cd384ea09 legacy-trunk +22985 8e6e248dfdd865bb8b6c32028b5b426172689a13 legacy-trunk +22986 a5eeb1e70f41f2fe86dd852761282867fd99c3be legacy-trunk +22987 2a465b0eb54e420aa3df24796dbf2e3f0eea2004 legacy-trunk +22988 8541878cf2e13d25604fa95038b4bf8f4c3b870a legacy-trunk +22989 f1430e3382bbe4baf8242b8b5859981693c1759c legacy-trunk +22990 dc059bfb53b22ecd6512287e9f0bbd225578e22e legacy-trunk +22991 98856a4aed101726ae6d24b5ad067d01d8712cc1 legacy-trunk +22992 7fa40597da7e7f92e3480fc67ba20c575543b2d0 legacy-trunk +22993 c93d7d0857a276dbcb1a12431d1152ce434b5c18 legacy-trunk +22994 fa0621e4ad8ac7f7f8d574c4fae34c531ae369c6 legacy-trunk +22995 35b6a1d0b1e054b4d64e20589af8d24fd8ca156c legacy-trunk +22996 3d76dfc34c57e6375528d8176e01bf8d5421bc82 legacy-trunk +22997 dbb9d82c7ce37ff428573049a4f28acbb7934803 legacy-trunk +22998 c0580d8c193e3e33fcb78c5794b3aa648d24558f legacy-trunk +22999 e1f1e9ebf05013a706e6f07913c632154cc9fdb1 legacy-trunk +23000 5a7ac8c063cccfc0c6ec27a304cdd9f5e34c0fc4 legacy-trunk +23001 a1d3970885bdbebbe706adb649f1e8a2b7070056 legacy-trunk +23002 ca7f7576d823e8c70b86d02a5f8882def051725e legacy-trunk +23003 64bcef1702ad97ae017fef6c079fb718a1b6ce9a legacy-trunk +23004 8e87cdded96fbfe7f5a6e5c2c4e3349d5e7616b3 legacy-trunk +23005 96da985cde98426aac4d3a1b5d4da493a906ac20 legacy-trunk +23006 44175bb0b7bfc807eec6dda92960dba980d4a14d legacy-trunk +23007 d09268d0ea529b64913ce04b9bbbfbc53b0a72b9 legacy-trunk +23008 94d0f2eea047e2e8b123e319751df4f1070f56d5 legacy-trunk +23009 578ef36f8fde0a42b6cbdd4a4bbe8e98d84c3287 legacy-trunk +23010 5fcd0d41a446bd652507094e00f4a8ae4147d7bb legacy-trunk +23011 2bcce8bab8bbe8dbd37823c826577a40ea330ec9 legacy-trunk +23012 d54378d3334fd428e0aaec91942280cc4f50d109 legacy-trunk +23013 d4f53b1fb4240dfc2b387cdee0d26ccfde95b579 legacy-trunk +23014 a5eaef47a9b3360ff422c7d3a6a428302c9043d9 legacy-trunk +23015 42d0bde73533e1245c63531426c6fcb25f1ef440 legacy-trunk +23016 432591328410245bd8b506617f141b018ba6cdde legacy-trunk +23017 335bf3eab9f1add9d9a5f03a896737489016f5fb legacy-trunk +23018 6c7dd9b3e50b5f3368d4132cb23300393328ccfa legacy-trunk +23019 c5523b0f89d583deded1ea70e2e01b3873226ddd legacy-trunk +23020 ee12c38e46a6fc035c87ac023e49fe9416067791 legacy-trunk +23021 b23238646d156b2d1709541daaaafeb875c98c77 legacy-trunk +23022 e7147156ef33e74a477bc0713a1ba4099027ff2e legacy-trunk +23023 1c62b4a597f6e72b05c73df2fc12fb5f37c5ee81 legacy-trunk +23024 07bb09df3324f10201c8829299798dd6a4673788 legacy-trunk +23025 1cc84dfcd6bd274f3b57f4b3466ef89c0cac25d2 legacy-trunk +23026 7b722b6cc77b31c289f265801ae7ab3023bc7862 legacy-trunk +23027 9de2f7e1b6e8b9be381ba10af1069536397bc98c legacy-trunk +23028 13b654ce63a477bf6d685a5a18dcbb1d23da4909 legacy-trunk +23029 173122e5ede4172c411a1e8b680ad706b468095c legacy-trunk +23030 c737d13da92d2ae0a06030a6a908b218915557e3 legacy-trunk +23032 4abfc176685c302a21c1603c57e4c7bcc43096f4 legacy-trunk +23033 f814ea6bb6676b824195c51208dd663a7c9feae2 legacy-trunk +23034 cad933a454fe61d4df180aa2be2938f27e8dc66b legacy-trunk +23035 94e141e20d618e8e131f90bf7cdac2611baa88ca legacy-trunk +23036 0b57729284dfb4e6c239f16ab34941e19426e098 legacy-trunk +23037 9079710ec21696e398467982cbc61c8c91b696c6 r22a3-branch +23039 960474d129aed7365ec79aaeb0a26bca4dfe8643 r22a3-branch +23040 c97dda238b362661bab77bba9d0ac3a79c52a219 legacy-trunk +23041 3f621489be721da6e4ae52bce446729dd705b727 r22a3-branch +23042 b35a2bf0c980ab453b4daa431dd1a4a9dc27df37 legacy-trunk +23043 e2e9f1722c4fa29f0cfce0fcdd8394195872e00d legacy-trunk +23044 95ea66122325688e24b7eb1714af322385ff573a legacy-trunk +23045 9c54a16ac8b9edc534da8a6d3215f46c286e02a1 legacy-trunk +23046 700fefdc03d285f324face33b3a8785fa2b82cfb legacy-trunk +23047 c0f94bc5ffe806e77861f692bbd16144a138d879 r22a3-branch +23048 77097a55e9731f05e04f78d5a532569d39e9bfe9 r22a3-branch +23049 03080e395c9ed0fea858356fe90375aebefe7a8f r22a3-branch +23050 78e73b851aa9dba364fe91ffb637d347968ac899 r22a3-branch +23051 285b740b844192c67f843820c626d64edacc66a3 r22a3-branch +23052 43dc827dd717cafbad5b4a445a7f2653f51e8135 legacy-trunk +23053 091c01d07d981427ca14c12084d22f998f9ec9dd legacy-trunk +23054 d48014dbb85f6a9a5b6d2ec0440cf5c306292c09 legacy-trunk +23055 ed54943ce24e0fe446888f95f806d18d96cc4761 legacy-trunk +23056 fe229727a40cfd49db41963bc51aae32cf6377a9 legacy-trunk +23057 b47d29699cd298b1b2b4326f84553be695da3918 legacy-trunk +23058 32cfce4d83dc060480b91fb48a47bc48bea3e842 legacy-trunk +23059 9031aab27eaedd2a50b4b3f4351e03d0f788c5c9 legacy-trunk +23060 560155e750878c2df000d9af5750691eee02a3fe legacy-trunk +23061 8cac5eb703fd8465dc2409efca966e4555a5c28f legacy-trunk +23062 086ffafaed5525990f54875a0ada3e047a200509 legacy-trunk +23063 0584c9132525a588e054462c74fd8a6eb02f989a legacy-trunk +23064 79a31ba873a343dd97538ae04e2bf42bcccc1d5c legacy-trunk +23065 ce57fff939629d0cabe8131ea13085089edc336c legacy-trunk +23066 38c12faf612aa589c809904ee407875111561853 legacy-trunk +23066 08796a137f1ada2462f7a3177306df5f67a767e1 legacy-trunk +23068 70411eba225b1a51f7cc3a7f268ee96f5f753bec legacy-trunk +23069 dc87d91d0dfd685e8544e1e62e47ddb4747b7e85 legacy-trunk +23070 8d585d822f9d0db1cc910a82d55a2c030f48e73e legacy-trunk +23071 0cbb060da2c34bcd094ef5a1bb192d0998c35aff legacy-trunk +23072 b7396287cf65b9726c24851979279f5d770a01ac legacy-trunk +23073 6b1be14d765032490375d200e8444ec1c1da3902 legacy-trunk +23074 53e0cae3cf6cd0931b6e7d7e8b782661ce645b0b legacy-trunk +23075 fe5ec1a3a7e0f730b07a1d659cc2ba4ed2cf9e60 legacy-trunk +23076 3f73a8bf76f7c99ba96f168e46cab1e27f954293 legacy-trunk +23077 3dc315409968142c0d6d56d511be3ddab543c376 legacy-trunk +23078 6e57dc30555108a6fc18334a1a2d8016cdc02e86 legacy-trunk +23079 372149779240669f8475312bbb889d3d9d5be317 legacy-trunk +23080 919532c50a1759b894db95f0105534b41d1b5a01 legacy-trunk +23081 8ef456949b76246aee84c68552d95e435c3e17b8 legacy-trunk +23082 39eeab689d067b09ca5fdb3809b1da73194c1758 legacy-trunk +23083 5b28d7dc300625b583f2df162d883318df3857b1 legacy-trunk +23084 bbaea53ac087f5865782d50580f592f94bdcf9c8 legacy-trunk +23085 e419060e13c8d4413f0d7a6da4c2cfaf59a03904 legacy-trunk +23086 1359fac617f1bb47b866f06a5954cf095ca54cdd legacy-trunk +23087 00d80947d8179f889a0c782a8b6310235af0098e legacy-trunk +23088 f44606b242c5911140791614269896a85f2e1985 legacy-trunk +23089 53250cb106eb471b74483ab681e66d8225f13491 legacy-trunk +23090 9cf1338fd8d985002229dbeb14b3619bc35d93c3 legacy-trunk +23091 5420e7d348a44c631b8c35ec9bb55643401fbdd2 legacy-trunk +23092 5158e478945921810e0d66936cf12699cb06a79a legacy-trunk +23093 c15920c2cf6ccb9fe9884484d4023f6d42c8ed13 legacy-trunk +23094 10f5927dbf05d089dc6b6b302606f5c55e4413e7 legacy-trunk +23095 377746a389721998c41b9db494798718fc996fa0 legacy-trunk +23096 d8dd75e3b30465fb1e573b6908bdffa8b055fe6c legacy-trunk +23097 20924a70fa1bbc6473a82a77246760bd8a648496 legacy-trunk +23098 6ff7ee84d5a15835d9c614bc7e0a97db186b3f6c legacy-trunk +23099 9e4d1a6307f63855525b30b709e30f8f0c3e3d74 legacy-trunk +23100 7a980c98c8aeffd3f22e3c9017c842c7b40fd975 legacy-trunk +23101 662e22f99639f5074e2c84e844ce29cafa80d312 legacy-trunk +23102 c5c241bef88d3b066f4b8fa1fa097c2c2d0895b4 legacy-trunk +23103 8af74f0358ac39a9bcd095b01b4a62e42946e527 legacy-trunk +23104 bf0202dac4417160beb7551fe7efd249df24b6c8 legacy-trunk +23105 2b581f4c69b4f2094e3f10e238f31724e23bf900 legacy-trunk +23106 f3f694111ea08160b47a36124d91e8b08d939d30 legacy-trunk +23107 5e79bed3426f93df336fd6a77ee0d19a90791a90 legacy-trunk +23108 9830323f5f8eb2e58ba6ea5a678bd633932733a0 legacy-trunk +23109 43ed8a345f4d83391d385e5cd7f28f3704c9c70c legacy-trunk +23110 5568b320914f6db95742307f8372133be410e3e7 legacy-trunk +23111 41413c783836793739620e6d8faead342ba0e779 legacy-trunk +23112 9a5bbf845c633ec7a1e65c58cef161a10c4478cd legacy-trunk +23113 873be8e3462bee67bab53c7f8bf829ec158ca56e legacy-trunk +23114 5871e0aa021b850ccd9ec9dcca19b123610a6e60 legacy-trunk +23115 2a809b3d03e94bff6066d3d2a6ee7c9cba139839 legacy-trunk +23116 d9970d6318780b988f5354e390aaf90d2070c7e8 legacy-trunk +23117 36ca16dc35b9d999df04acea3015780b5316240f legacy-trunk +23118 676298c0c76296348878c0fe072fd4cd1508c13c legacy-trunk +23119 304652ffc6ac60354f9dc73a133e4808041c5815 legacy-trunk +23120 f2a3009b528e93e5c063ca546e2e75a3bb88de62 legacy-trunk +23121 a34991b91008619cbc7e05f05bb8ef0bbf8204c0 legacy-trunk +23122 5780724470eeb4e7a0bd77e1e03f6bb01e421e6d legacy-trunk +23123 af98282e9277b7cdca8619b769cb9e6f4a4894b6 legacy-trunk +23124 df493646ec4dcd9e86b133e23a986a0f70865b53 legacy-trunk +23125 e91b99138985ae95158fb8a4131eff840eb69658 legacy-trunk +23126 18086c913ed5c5131b24ae09326efc94bd8e48eb legacy-trunk +23127 51363348dcfab7b02f7d0f44bb735550d8560bfe legacy-trunk +23128 a19eea41668fcffa00ef12bb40805cb7bb19113c legacy-trunk +23129 ed3e529fbe4791c8abe9d42f80656b885383c454 legacy-trunk +23130 70bdf84862ad1cb3343f8f53a444eb867bfcf62f legacy-trunk +23131 b87c0586281559672ec4db897ea855f2648ae08d legacy-trunk +23132 62d31ec43df663497d42c8d73b1f1f1e26b0949f legacy-trunk +23133 cc146ee528975b5273acd86c1f57f0855d5ac04b legacy-trunk +23134 bc50581b3d7cde278fdcc050cbbbbafa1ef6f396 legacy-trunk +23135 d1cd4cd72271e07a757ff9004d4800df4a3ebd2a legacy-trunk +23136 16e4d096f787d1a9524892bb91f147a34dcc541a legacy-trunk +23137 96f53f8831eee4d2909f68f8b867235bc6a5a96e legacy-trunk +23138 c8fece37f020b0e962623f28901de9c3619f9413 legacy-trunk +23139 df66b4dd0b0dbb4488bacf6a3f6ba77a0d7f6c85 legacy-trunk +23140 72e6eb65331207b816e3eba5b082b4491442af52 legacy-trunk +23141 3b0da13ace485722ed2e4689150a022c6ad47e21 legacy-trunk +23142 b28fc8c36e3de78f7e151193c890444b3bed1c35 legacy-trunk +23143 2da66ce7ee22951747209341312c964e15d9bbc4 legacy-trunk +23144 733314fcfdaa0a95ef6bb78d7feed2482c2eff79 legacy-trunk +23145 31fe8b3e276baade4501f75d58f07b84cd810aa4 legacy-trunk +23146 c33a855c12745f82a9c8d52dcf8d9bf272de2800 legacy-trunk +23147 e913d75713e643251739ad621b866455a0fea0cb legacy-trunk +23148 3af006503678a7c4ea6255ab05f5ee2345690f09 legacy-trunk +23149 51cc82605d32db7b142f55366e91de6b1da41fef legacy-trunk +23150 1c41fbd09d93a68611c20eca7b08d478cc0067c0 legacy-trunk +23151 0491ea611bc4b773c1bb9fca5b50cfc603fda5e7 legacy-trunk +23152 84376356ff890e9027920dd2246f0d6dda4eae0e legacy-trunk +23153 fc40d0b540437e9887342836e1c339a2cffd64dd legacy-trunk +23154 1f61526307c00b6788a1a698bc89f47085696815 legacy-trunk +23155 ff377472eac940b25da13124469e274c68280f1d legacy-trunk +23156 07818cbcd302688ca1241756fc99ef7c19eee6ca legacy-trunk +23157 de39956b545804365f1624a52e52d27b49d128d1 legacy-trunk +23158 c082971823ce913088a198df9a8ebc19d5cd68a4 legacy-trunk +23159 58d50094bf808474011f8b74dd3819a8639aa791 legacy-trunk +23160 a7ba00e3b0de2fd4bdc729d30353edbec7f15bbf legacy-trunk +23161 f39a9be7c9af74685c411ea57832923a0ca7fbcd legacy-trunk +23162 d68cfd85e6db9b5fbbc832f6d2c531a0c9733bb1 legacy-trunk +23163 d57a6c813658cc0300f5f4d369aee703d3ced5b6 legacy-trunk +23164 a288a55f929151bbad5ea2e6a8f46430e6a77803 legacy-trunk +23165 49b7e3980853bc2d55347c1bcd7e6da2ac1b8543 legacy-trunk +23166 cba449ab591579c94fcd2d7c0b5fa77f596d3682 legacy-trunk +23167 71c853dedb07291def0bce8c460afc246887723c legacy-trunk +23168 ca0f54dacdd8c45fe5fbd0c60084ee0b04eed937 legacy-trunk +23169 2027dc124eddadbc9e804ec6cf0a2f6426cf2e9f legacy-trunk +23170 2263cb43eaabbea0cfd5eb1ce312547bb6e22613 legacy-trunk +23171 1b55d79c69d5fe049d353a753033adac1a6f461a legacy-trunk +23172 294a38a19b5a97ee5aade1b84cedbf09545b967a legacy-trunk +23173 d96cdbb4d27bc1e15c7b5fdf8bef967d83dbaa10 legacy-trunk +23174 8e4d35bc673ffad9db3c2b974b8783d9e1e1dfbf legacy-trunk +23175 63930159ca3c72a8b8f443f343973faa8c220057 legacy-trunk +23176 16f64d7da8e321c21da0756fbd7d1065e329450d legacy-trunk +23177 97cf6dcd0aed27a6bdfbea2aefea188463bd43c7 legacy-trunk +23178 cb35d0f704de0b70b06b1bbfe1012b03cc61ce26 legacy-trunk +23179 01f66f5db3261853182dc4f98e982e7246bbd828 legacy-trunk +23180 df409844b659793f369faadb85aca968e693dd41 legacy-trunk +23181 ce414a6d30b46e836ece661d297300b480f47472 legacy-trunk +23182 2894458877c829937129091a2b5463077cbc53da legacy-trunk +23183 6046e9546a702b61532361a91c6fcc974c0496d5 legacy-trunk +23184 9bc76e36ba57ec8f5a3fbcc3148dfe3b8522f1b1 legacy-trunk +23185 36c07a1718e989298e60d8f0f457e8aab57e379b legacy-trunk +23186 c327a8ac9f2b5fd100f05fa4260ae7d8285dabed legacy-trunk +23187 621ed13445de55f79a7a101796b9d23a59eadad0 legacy-trunk +23188 b6cf2f27e44faa53daed25339d24307d7bd47905 legacy-trunk +23189 f2f25a738f7f093b44c5292d576966dce8bcc971 legacy-trunk +23190 619a2d6b5ea9219d1764152e3c56a1e99f60528f legacy-trunk +23191 6944f5b9de03db9e860a8b91c8d47da913d7ddef legacy-trunk +23192 896f2d1e2f46d76c1734333419d9943a9cff241c legacy-trunk +23193 fd7a7f832258d7a97238a9c3382d4e16bc5d089c legacy-trunk +23194 aaca4d3cf62b675be070c677a230f8414383f8de legacy-trunk +23195 3bf622bc279218193df1881715545693a020e560 legacy-trunk +23196 0d535c86be5f52f0a8411c8dc1a9a1922fa4ecc3 legacy-trunk +23197 8522b022f80a2935f6602ac0e8463bc552edb9ed legacy-trunk +23198 6773dcfe34a3691f580f19e262522c4efc1b6a52 legacy-trunk +23199 d940af5258408ed48d0bd9fc243a3303c9af73a1 legacy-trunk +23200 be4baafa4c528d0623564e3ea754590e1ff9b6e7 legacy-trunk +23201 41799b70a96c1e3cc119ea933c62f9a508d91b59 legacy-trunk +23202 3f192299090349240ca32da09ccfac4587c15700 legacy-trunk +23203 eaf1203b85cfd084e027bb4e4a9a7f8b93e6f4a4 legacy-trunk +23204 04ce2a48c0a831a84b1a22b56099e84b06ad1b86 legacy-trunk +23205 76133a465e0396f48cdf3cc95d2c5462675fb25c legacy-trunk +23206 78946a784351202d052d2fab39bf4fca8d52c632 legacy-trunk +23207 96c4a3f08dce24dbdf5f7051e19900cbfee98bf1 legacy-trunk +23208 0f9df563b65de4e1482231a3e4d484bb17e2161e legacy-trunk +23209 84af1dd011ee33f7acdf9de6665edd0872b77917 legacy-trunk +23210 f36a2d40a1df68af3422331711046a7c84ff2332 legacy-trunk +23211 33669c8914b4ae123c3c958427a90d9cbf541451 legacy-trunk +23212 9098a308a57b078ca026743a570b7299b8a5bc08 legacy-trunk +23213 6081d736167b0e693f05b379efc075f6d015511b legacy-trunk +23214 03f3ab0c7286dca1aebd136ada7b64d17d428b65 legacy-trunk +23215 cae3ff31bd912c1437dab46c8213a8c3b59f83fc legacy-trunk +23216 08374a8526e2103fd6c0b6cd420b20d21dc07a2e legacy-trunk +23217 cc52b05ac9795442a7477df81cdf811c35a8c17e legacy-trunk +23218 969e306b62fde9bda678486370b93c751820aff4 legacy-trunk +23219 43e5fd54f8c98d9a7df5f29e5d6d93dd8cf868ee legacy-trunk +23220 817745e5adfb376d165718cd4b8c241de19886e1 legacy-trunk +23221 48689346e8bbd66702b4b174c6e14c35a52e3021 legacy-trunk +23222 0b51e607f3337f94570244d969ad555f83f14314 legacy-trunk +23223 e9128ea45cda823e778e5902051609405e4f1cd7 legacy-trunk +23224 b1408a28d8be2b6f16789e31c51942b45cf36b52 legacy-trunk +23225 f761cab28c1c10f495e9d1326ffab9b3bf8efa70 legacy-trunk +23226 d4c9653166104f69dfe4b371c14182ca4200ea86 legacy-trunk +23227 20adfec61467d5bc4dc2a23f723785aa021a1c27 legacy-trunk +23228 05f6b09899532a6617b56cc29b9dd0d2aeb9b98c legacy-trunk +23229 8edc44bd0ac7f143a3907e53f858d002b663c8b4 legacy-trunk +23230 4e445a3e07c6b5358b9fe1ff8ebf42f2b244a23f legacy-trunk +23231 da00188d52709af689a353d909fec13228954e9e legacy-trunk +23232 6313fa38e90eada34d6409229780a971ebadfbfe legacy-trunk +23233 a960e673077fc5b28355e31f1f542af72afbc8f7 legacy-trunk +23234 8dcfaf0e6559bb6dcb41ba694cb82b2abec60894 legacy-trunk +23235 9ab6af6815afcb6da0605cfebc8c8b092d9e138d legacy-trunk +23236 0fd95200ab6ec4d7a049162f5329442f1d05d282 legacy-trunk +23237 bf4b1b08a2c6f229a98fdcb8372d283bcb9987dc legacy-trunk +23238 d5646c0c5130cc2f92de071ac138b8be878369ac legacy-trunk +23239 98812d2210751806ce72f63628312104bbe14ab1 legacy-trunk +23240 712afdae112394c0a989f0f14a5cc958c908d278 legacy-trunk +23241 f42f89b5b8f9bb46a2c45b150f3fa392b4c2b8be legacy-trunk +23242 db16e26a071b8343c39b904c9e91c0e26191a244 legacy-trunk +23243 fcb877069faa711732c09bf208380e2784f2f582 legacy-trunk +23244 cec9e25af121b16571f8107b1223d722cb1c1de6 legacy-trunk +23245 ffa1a87ac43a886ef254822023586a95b8d0111f legacy-trunk +23246 87134c7f2bc77b836454b6d6a9739179213571ed legacy-trunk +23247 9d7ca5914d1ceb563b50b83def78478e5265a813 legacy-trunk +23248 28ef22a2598e5aa31b17ebe5a2e47bd0b6e6bdf3 legacy-trunk +23249 ab6c14822de1bf65ec10dc0e766bec7fa1612871 legacy-trunk +23250 b07cb51d731c87115a1621570f3c9f81ccc682fd legacy-trunk +23251 646e247288523b8ec90a0a74e29f227c2b1df04a legacy-trunk +23252 941c28686039684f0218c79047b4fb03a86ba3c9 legacy-trunk +23253 8a0c97453df4835d2fbcfba324d92282697e11a1 legacy-trunk +23254 1f4e2627b627011d43b10243fca1f6706d445859 legacy-trunk +23255 34af19dcef593f1cad0e67e9933e934f813256c2 legacy-trunk +23256 7ffe276a6854c83227d24d5803bf1d1bf62a6302 legacy-trunk +23257 b0afb6913401aa74aebc962acba5f0875bf1c566 legacy-trunk +23258 c7caf79f51433d86bc4b9518bed0ffd44e64af2d legacy-trunk +23259 3815c8ad02d0334091e207a86d099d6bbfa27121 legacy-trunk +23260 9c8b1961503413435604fac2e4676e7fc84dfe84 legacy-trunk +23261 2a7b4d4460d3ebe86b2d93ed1f977800a3f54f6e legacy-trunk +23262 56ffee1eeeec4f990da12fea4bf139b7b90720fa legacy-trunk +23263 ed18d4439f084f29ed962a8b9021a69d59858d7f legacy-trunk +23264 0fe318a789904149fc02855a2c923784b63ad980 legacy-trunk +23265 d03c19db309477beb44e93e5d7275ded0ce20aad legacy-trunk +23266 75b7e8bdb21ef60545c96ea81c031f9f619935e1 legacy-trunk +23267 3faabf54b8b83d125dfcecd5ba9752406c04bf33 legacy-trunk +23268 e3184e46303b549829de680a55621dc808d03db5 legacy-trunk +23269 f020da781b915cc6aba3da673042cbf6b3f1c05b legacy-trunk +23270 ca7af2a5d915b9c64f3a338e5942948f3fa15593 legacy-trunk +23271 71895dd268e2d0638478615fb796bb60c897dff1 legacy-trunk +23272 08446a986a562d2aa90ef359e19750d57a4aa4f0 legacy-trunk +23273 8aa1ada33f64e2027bc4c9930f264cfaf1d56fb1 legacy-trunk +23274 0fd12f92ce8f0c60c6572cef0207458c0776c243 legacy-trunk +23275 b70c08813ba97c24aa0730a3d0e6964a15132112 legacy-trunk +23276 40cc6621eddca0721bd199e7e79de2f4fca84be5 legacy-trunk +23277 109def4a5f6e9852a6221b23d5a9658ec76bc79a legacy-trunk +23278 729fdf0454941e960b923d9b7eafb8058f1955c3 legacy-trunk +23279 4f747142e84c8399260a339cd8539018c033c784 legacy-trunk +23280 b7ec985d85c6196e220b52043ffe6cd131faf93a legacy-trunk +23281 7c5cd685c1de02d975f39e0ce74acd7a1aeb24f7 legacy-trunk +23282 e63f97562a6291416febb4d4c08ac00ade9774e8 legacy-trunk +23283 df1b83fd0ebbdbb7adaf7d09ce2e6bf9a0bd83a9 legacy-trunk +23284 4bbb4d9b4d77641d0d59a92ccca28affce7f1eea legacy-trunk +23285 6378cb117b73bb32ae9d50d9c4504d292ba505f1 legacy-trunk +23286 e5a3f9d7766b7d0f4b9401ec6c788af5c3bade2e legacy-trunk +23287 5c9a955ef17cda1173012cde629e171a3f14a92b legacy-trunk +23288 104b5c9b88eae97ddb8c59162394e216998e8c5f legacy-trunk +23289 062ac9aafe47b830b349a4bcc58197882ab7a2a2 legacy-trunk +23290 0996f07d04a3acf0d60c14e05fb7841b118b80ee legacy-trunk +23291 ab62d147ba90f359753888d35753f2e16f2c32df legacy-trunk +23292 e521fc370be2050f453a6a1e980bd4470e00df4a legacy-trunk +23293 8a6f2ee6eaba31a4ca468ad7f4a2a1a72ab4e9a3 legacy-trunk +23294 3a4a0039edf32bf69258d9d0f99dd529d2ed7267 legacy-trunk +23295 59882e7aab89c912440dd7b1509d372c74aed13b legacy-trunk +23296 cd72b64aec9789cedfe7f0729ee41244f1fed2d2 legacy-trunk +23297 e08f423f9165c05ceed34031691a4d1bc6569daa legacy-trunk +23298 66bb10ee49612b9160db7d9aab25ae57285eaf64 legacy-trunk +23299 1929fc696a04841c3d61def99f9075db6afec5ed legacy-trunk +23300 7b8c11739714d2700646f63cb2b7c01aeef03311 legacy-trunk +23301 9b818af0d730e9bc0a5768bbe8cac5c24ea86664 legacy-trunk +23302 4c5cd3d1cf4b5bc3c81d27cbe9a8fe85757ead32 legacy-trunk +23303 6310837ca53439177aa467ff904beab47c933a3b legacy-trunk +23304 1a58c74662e93d64d8669e67e3b2632b352de804 legacy-trunk +23305 6e93a1586800a79a5ef6b0fd4b7b98b8ab9000b3 legacy-trunk +23306 4966cf793b44c062396f9cb231cf9c6278e625cd legacy-trunk +23307 0ee8903d3fed017127cd142b8620a1f84bbad2e8 legacy-trunk +23308 bfd4e03ad212d249df497fdf5f81fe1ecf5eafd3 legacy-trunk +23309 920c63cfca0cde3282ad5fdbec56dec40c48c6e1 legacy-trunk +23310 88a03ea57714f8f155dfa7e6241e2ea0e231b09f legacy-trunk +23311 33edc99861b90d4d3f5a4104a8f31efb37ac7b2c legacy-trunk +23312 5b1ad7acabb5bc54cedd944f82865ee742fcfb55 legacy-trunk +23313 c2bf0b13380e304f0d6609769e94683f52a493f3 legacy-trunk +23314 d2d835b35d475e5b75d2f4a3106df0c4d1c553ed legacy-trunk +23315 ccec02bfe9a058f644968eadac5866a560be60b0 legacy-trunk +23316 2caddb82ffea2f53bb98af35474ea6d5f505e49d legacy-trunk +23317 6390139ad0825dcb1dadb72ecbc1352b694a2eac legacy-trunk +23318 9a599b1d9d1c84a7778cede5732d14c9bc1892a4 legacy-trunk +23319 ef3034a60a3ec2ef29dbb20e4303a425fbeaea13 legacy-trunk +23320 f84691b114027a9a991972bd73b98d2b4147731e legacy-trunk +23321 14c83cf7f3382e2fc0f0b1950e569b5cc89bd754 legacy-trunk +23322 299f5fcb0ba80ecdd6d0ba6edcc6690aae6b33c0 legacy-trunk +23323 69e820624cbc316a39e1895e0ed0a3d9d9da3813 legacy-trunk +23324 90a4f23abda7dcf062d1e35ca4122e3cae54c800 legacy-trunk +23325 93977f17552d58e8393cec00367ed940cc0f6d64 legacy-trunk +23326 e01de8bc5813778af8c576c9ff2a320aa0b7a670 legacy-trunk +23327 399d777af04851267dd07044e20a1b39ab95f0c1 legacy-trunk +23328 d8abf9ce3225325679cc3847adec9ccd21d38ef9 legacy-trunk +23329 511776d6d7d8685a86a4297150be306aa94a0fb0 legacy-trunk +23330 aae5cf7e58615c47cb15fc858d71bd4a3d732772 legacy-trunk +23331 d9250d5b79a75926cb1b65226bc3dc8610a5632b legacy-trunk +23332 8f19b2a8c63c677970d274967c0d2152d82b344c legacy-trunk +23333 004cdefb70d1f9dbcf2d2957d249e6cf23a57e46 legacy-trunk +23334 9298fee446b7740ad3fc6caf348090edcd48f1a7 legacy-trunk +23335 f48a41c970215694225a2965a49be1ceb5cccd2c legacy-trunk +23336 4397fa5152fa416681b6526e1afc23356f65f6d0 legacy-trunk +23337 18df32f6cea13e3e27fdf4da14cf00226e4ea7fc legacy-trunk +23338 fdfc18d556153089d11e509dba378b73fb1ffb92 legacy-trunk +23339 48e93ef3c5b70b8e443b7d0ce616d07b18515057 legacy-trunk +23340 3192a32fd48f6c4c989bd170a420ce5fe9031820 legacy-trunk +23341 dad94ca47e213914e411ad45299cfc7e7ff5278f legacy-trunk +23342 b4161ce585e64ca1c9d21ed1ab9aa4d82feece84 legacy-trunk +23343 386fb26e08747ebf55ef20beb8daf42e5ecc2718 legacy-trunk +23344 3719ba5ee8446a6dd231dea7e4ef53aac0c1744c legacy-trunk +23345 933bf68e26503a8c2b36c1823c1c77ec2d7a7ffa legacy-trunk +23346 40d4d1cd6c84a416166f6ce2998d4e4a3e3640fc legacy-trunk +23347 b52a63052306869b2f5f569d4925a55163f328df legacy-trunk +23348 b28c07a1b40df99e513323c2e2becf778a74a0fb legacy-trunk +23349 d658a15a90ad959286a6272ef805d60ae1cbf397 legacy-trunk +23350 289c1a7002864b95c3f59eca3460f2153496b749 legacy-trunk +23351 19abc339d3fcf2f1ba92da3027396c770179ec19 legacy-trunk +23352 a381ab0f9d283bbab266c8884ca1a3361395a2b9 legacy-trunk +23353 56bdd90c9fd6dd8666f74273a8b0025bb41397c2 legacy-trunk +23354 819b6ff7e56a6b5fc601846faa2e537dc7f38a78 legacy-trunk +23355 2a68c6e1f9c54a9daac267d7dc9715d6691bf477 legacy-trunk +23356 ab1af1ca030c5c5bc40da4b0bbcf0b4e1fab739e legacy-trunk +23357 6009d859fb573ecb0baf2c0d8fff6e2393654a76 legacy-trunk +23358 d1910223b247df3d301e338cec1dc6e7a48fd0ae legacy-trunk +23359 8a1614ceb3777ec0bae0c5a194bdb7a9af6f2563 legacy-trunk +23360 3df4b8cdb8c6879c0bebd007a8130287de0ad22e legacy-trunk +23361 8f25ec01018b5a865d6574945e26b5fd5f4617c7 legacy-trunk +23362 83216ca67ebea1b340ef6377424fcd0d39fe503b legacy-trunk +23363 334bf0baeeb7eb91a0e5956431f6f3de843e1a58 legacy-trunk +23364 d7d84eae92ba0a129b167113498614f7e94a13d5 legacy-trunk +23365 befa7258c200f38e89e15a3ee6f55cb0c8c64476 legacy-trunk +23366 80e36dab21117a440b1fd7a93842f352698d2c7e legacy-trunk +23367 e8a29d23c70a8d3cbcfb00323cad2e7d60feee67 legacy-trunk +23368 12a787fb71df3526e0187efdbc37839d22215a58 legacy-trunk +23369 233f9606ba8e24e032174f1780b93d11a518d5b6 legacy-trunk +23370 8ec95ce787358366abbfedbc6b76d2d4243ae70a legacy-trunk +23371 55874d8e0dfba8a0d6ca58a2f5c660c13b91fd1a legacy-trunk +23372 e026f517f655b4509602dd00728285e623427159 legacy-trunk +23373 8c371435f693c0fbe6d8fa8747db9ec973ed0e94 legacy-trunk +23374 b9f60b825261a0f95d630840633fea2bb4ca053b legacy-trunk +23375 0176f61af845d4c8cf2bd2a50f49470dcdd054ce legacy-trunk +23376 f822b356c3d9dfa80a5b6db4946a773f33c5e022 legacy-trunk +23377 098186613b057d81caa0ef843f51d82894f610b5 legacy-trunk +23378 aed62118d632e88d35bbf6d2776c44c749114fe3 legacy-trunk +23379 9c2b9b76a08e3ecd996826cf4fd8e7d5ad1c170c legacy-trunk +23380 3bcdb519abf88112929d20f62647879b0fe4bbb9 legacy-trunk +23381 3fb293fa17c5468489feacb3b62790b3a037be98 legacy-trunk +23382 697206e747639b18aa94a78dee80b50685056bca legacy-trunk +23383 fdfcffc2152c60eab6237eeebafa5ee13a1999fb legacy-trunk +23384 e3a2e6076bc52650a02b7aad1802bf716873c5eb legacy-trunk +23385 73fbcc958295f39569e3b5053b095610fe3d410f legacy-trunk +23386 a276ae5fe8c3029b2d298e79116708f8f416cfbb legacy-trunk +23387 ba3714191a7a2f3eebda2b7a041a4a4dc05cd567 legacy-trunk +23388 441b2e155826c18ef726903a46e6b4ca63a0ac78 legacy-trunk +23390 ce27d9c0c35823154aee9ad6cafb716755eab741 r22a4-branch +23391 c2782c35e72d745b35fc3f0c9bb89b67736a861b r22a4-branch +23392 3aac916c1505c7db76f8db06a1590831c3a1e9f7 legacy-trunk +23393 a97fbc5b18b6fc11c980c48d276bc0bb82a15a3e legacy-trunk +23394 fcc216c58c87fa2c62015ac362802207cad09617 legacy-trunk +23395 727b95dd86886115a15cb9529f657da3c1cb4587 r22a4-branch +23396 1c529128054c8c20ce1a59cd292a99c08e3b9781 legacy-trunk +23397 83256bef0d75e3135e48714a69d667fe5f021ad6 legacy-trunk +23398 70e57f7594027d28f8fcd44ab1518ea66933db5c legacy-trunk +23399 ec2d4f99badc4b713cd1eb21c6be1088c4f2b26f r22a4-branch +23400 6890071877dc860cdd963a4da745e1ae8f99aa8f r22a4-branch +23401 225f17ec89323a8b17b8950ce991c44b9eac5ea0 legacy-trunk +23402 9560f86c4fa4a7f30d34937c66371bc47d249ac5 r22a4-branch +23403 ca95bce5a33efff7b8b3ca8af5356182a1882073 legacy-trunk +23404 bde9deb59d1bc095731eb7bd6b79ec59794103ca r22a4-branch +23404 2ac6c32fc206df914dc2f9d456e79c59653728b6 r22a4-branch +23406 89e5f10c9f99400f2870ed870b86b93a43f5cb70 legacy-trunk +23407 b94bc7ec7be851ebef4df3444fc29ef56764ffe3 legacy-trunk +23408 e78c8f4e2b8c943553304e2bf2b1dbc7a35d0a12 legacy-trunk +23409 c6fc8781055143c043ed3f9ecf3dd503da59326f legacy-trunk +23410 b5cc586ac25aed0d82f0601d5c9a0a22cb253fa7 legacy-trunk +23411 88da38a5f0bf5a85262f64ffafcc72d0c4a6742c legacy-trunk +23412 206b25febde3cea0004445e26ebc55fb073785c6 legacy-trunk +23413 1f4d99e7b1e75499cc353be5a8dc71f9ebada394 legacy-trunk +23414 5707da90093629bff6b1bfffff51730a3115372d legacy-trunk +23415 c8fb00f5eb5e5da8e9b409d950c4ce7fdd8ff0c9 legacy-trunk +23416 72a5347d2f9ad99e8d904d0488563f3cd81a453b legacy-trunk +23417 c68ef47b1709dae66da3acfdc753e256eccad99a legacy-trunk +23418 d5d000862a669a9846460c7e120371d511792b11 legacy-trunk +23419 bbb353d31e25425c8ecd6a34c4b0daaa0aa1201b legacy-trunk +23420 416f0bc228e8b945979d89415b68697d1a1ed4c8 legacy-trunk +23421 8ba3287183e05be1ad6189b929c00ffb875f6d8d legacy-trunk +23422 2c8a5a172f47bb35a85a10d45da82ad4aae523d2 legacy-trunk +23423 6ff531435b34dc71984fade021758d222c716dc6 legacy-trunk +23424 bea686449595635482b04bbeb8fa468cb3244716 legacy-trunk +23425 edb0b805e5498890ab00aa52f40aa9e93d9e9fea legacy-trunk +23426 3b356f77922d8db5d13383e73d01f696066388a9 legacy-trunk +23427 470c1c72a0a7a5f0b9ba0490a4ba447c363614b1 legacy-trunk +23428 5b4f7321d9cbf81b6bd451a65aacae94e642e38a legacy-trunk +23429 db82c0b40dfc40fee1beddb5fde36f6126f828d9 legacy-trunk +23430 6508adbd0bb1bb266374d7b4972387c7e5d26127 legacy-trunk +23431 006cfaac029a7684bc7bb18934641d9ef26f560f legacy-trunk +23432 091e9e3ceeaf07b429fb1511c4eeca5051344cf3 legacy-trunk +23433 abd6a08b2c3271afd8f044b219272d3420a770fe legacy-trunk +23434 5fb0691fb690391e37c217c19a9b1242030d064e legacy-trunk +23435 83106633f93334f5728674a7e38d2bf9214329c4 legacy-trunk +23436 de3e851818a4327fb99cd0c5f3b7f911703d5d26 legacy-trunk +23437 f100793ca9afc70fc3fb980b81b928641ed43c5f legacy-trunk +23438 8f79fa537bd24b30a38c1975ca6905d636666f97 legacy-trunk +23439 fef289d66e8e15823129a7c775e455fbeb3f3526 legacy-trunk +23440 754b816284d138eecf6787ccbaf83d794615f41d legacy-trunk +23441 8799dfa0f76ac47c512af9c2e5dbfc02dd596cf2 legacy-trunk +23442 01a5c43f1894cdf1c136f977657933097ebda5d9 legacy-trunk +23443 5ecc02c1edac3ac67960db9c06ee3dfe637e4303 legacy-trunk +23444 784e21bdd9a2f9dda34fe6c3621206353f7a2e7f legacy-trunk +23445 9de291694b1e1bd1cfccdea7b2cee600e8c88e31 legacy-trunk +23446 6d73b54d92052014e231ba979cb39b6535507398 legacy-trunk +23447 c6b6189a8397608c6424dc849eb0c5dfb9c45e53 legacy-trunk +23448 4c6922f266f0794fa801552b940f75d35f6b41d9 legacy-trunk +23449 8d79db01b2ba25db8ee1b923d9a8a4507050d890 legacy-trunk +23450 c7817b6074b58044ca68b7c93c1b0224fe19379f legacy-trunk +23451 8e4e491055954bbf67b048a7b74583d7e315f037 legacy-trunk +23452 6dda498cccc4855a22df03252b31e5f65948596d legacy-trunk +23453 58b4cfa5487191c1fb2f82f0e8ba019993d6b845 legacy-trunk +23454 5642d37f1b161d55535847c91329531049417a88 legacy-trunk +23455 e946c5d2fe151f5b1b2751d83b0a90ff9f3dfdc4 legacy-trunk +23456 49a13e6e935db2966a25ed1034417e0c671481ae legacy-trunk +23457 be548d4be888f47eec86590c8bc821922ccffe28 legacy-trunk +23458 21060318f539af099aa4c717618298355cf57eb6 legacy-trunk +23459 3408d929bb940ad610d2b694d66c793903501535 legacy-trunk +23460 6de4ee477949f8d7863741f3941852c2031304d6 legacy-trunk +23461 b4f0f10a6c5f4d37212518c62f2aa4253d8dad3a legacy-trunk +23462 578c1bb7283992565964a08b1e4c8962f8573794 legacy-trunk +23463 72ee57347aea653341ac6f75c73a12e1b9e9e78c legacy-trunk +23464 f5d791c2acc950eeb8efec855ff23154b732e101 legacy-trunk +23465 7d5ae7d7c7a9636eac7c2bdd0ee4ac422dc3d518 legacy-trunk +23466 e5c3ca7b509924b5c4582172012fe33bf51cd13e legacy-trunk +23467 9873c99c43f753678743c4c339ff6ed8b6974214 legacy-trunk +23468 8e6f604b079937ba874c17e752dc2d8a226d6935 legacy-trunk +23469 00152e68745a518dfe2e52f6589c134f4a75f125 legacy-trunk +23470 20ba42ccb36f6765492b886802e245ab3369b417 legacy-trunk +23471 e2da9a929acab55290e9e76825bdc2d6fc86f835 legacy-trunk +23472 ba5aaa6bc1e56b5bd7611fde01e9568d8367c3eb legacy-trunk +23473 e7ef881389419a6867708920219b17b4af58f50f legacy-trunk +23474 69b941d131767535f891b10c9a03afbc77e12dbf legacy-trunk +23475 b2f957f9c6f413bcf3979f0211cba7eae7d6788d legacy-trunk +23476 e3d75778619e3dc6b7ef629a5f6597a73f5e6bf7 legacy-trunk +23477 d053726fb01bdc64aa58ba74302d96f93c1d83c7 legacy-trunk +23478 9698b71b00315ab9ab73895bc4d674342db9cb15 legacy-trunk +23479 face1eaa68ca9b5aeeefe6826958016cda601c45 legacy-trunk +23480 a5a330646c132ac2f43de50eac8ac3a3ef0eeb8f legacy-trunk +23481 c0a6f53773e353ce92a2fa8113426a6f350feb19 legacy-trunk +23482 bf5574f4f41f76fd64e0ab3c1f74ccb0a192f0cd legacy-trunk +23483 5acd2a81d6fa714677a87e02054f131c185d5c73 legacy-trunk +23484 0b99174d6b17845876be789355a76cf54234c2a7 legacy-trunk +23485 abaf9ea2e560729950962c7e1737d4dcfec55dab legacy-trunk +23486 a4ef03b5a9286d9dc91b511b00d19f08730f8550 legacy-trunk +23487 a81db1295a9e2278ecfea20b977d5cedffbb0d45 legacy-trunk +23488 d6eae64fdb5ac1860f7af9b5138af062b2c7b2c4 legacy-trunk +23489 aa18c0ecc4fb67847ee454739ac5d9d1b6e8cbc4 legacy-trunk +23490 ab5042058b6f1efea40e6952d37dd6765ed908b4 legacy-trunk +23491 92f86436b6be633da30a388860ed4b1f6224c01d legacy-trunk +23492 1bee49bc8d9c55ed9e6175c960bcf7df9c9bcb61 legacy-trunk +23493 8bad55edfdf39381a66affa7b784e3385443cbf2 legacy-trunk +23494 5a2e7c78d43345eb6c827c9f6da791666ed8876d legacy-trunk +23495 464f9a09a91038a9dcc84109181cd0842ac5c1b2 legacy-trunk +23496 d4782494a1e3c29ed324ee54629c546d98b6ebf2 legacy-trunk +23497 81386a71ecce865c882c7d7a7503c7c9aedc4f0e legacy-trunk +23498 7ea61da878af1073e1e8258d198494e76a392015 legacy-trunk +23499 acfb278662c62c32022595057e820e945f1e3626 legacy-trunk +23500 9ee6a98f032c313e8f089fa4ee552cf7b8ef0c9a legacy-trunk +23501 d1671ddeace0b6441664fcda088e951e1c14c412 legacy-trunk +23502 e7aca2a302cd7134844f991c3ad54bc0dfa03b59 legacy-trunk +23503 2745c3dc24af29ce43096d042b7bede8d0b80e1e legacy-trunk +23504 5c4261e744780cf00311ca6821dee98e6ed423ee legacy-trunk +23505 aff6fcd26c15c471301b6da9c11aaa5dcd97d1f9 legacy-trunk +23506 7cedbaaa12e474fc56827930a30abb263d1d9ac3 legacy-trunk +23507 0e940da845bf8379082b24363567c5c7f930b954 legacy-trunk +23508 16658df8456a66281b5fc0f570712bf6c8a9586b legacy-trunk +23509 7160d795473e9183e74ddc1b283f9ceed9190b49 legacy-trunk +23510 f3b3fd5abfa616dfa3c70e0373c288ec7375ad21 legacy-trunk +23511 a4d328d5089759bcd8185ef2e519e077d8f4682c legacy-trunk +23512 10b97ae69025c654a735c63c36800e9973c6549b legacy-trunk +23513 1acecc908ee86b4f3d107c19eb7dc5f894046b4f legacy-trunk +23514 1db5aa6765c01b145d1a3c69aa43024c3bd30efe legacy-trunk +23515 b0ce92561e075bd5ab373854047dae3bedb2c3fb legacy-trunk +23516 b85cd163cd5cd0e7d1565f16804c3ed78a446f0c legacy-trunk +23517 d96cd38a3fec72942607dac1421cff8d9125132d legacy-trunk +23518 c68f3641bacd82723d30a515a74b9e76cf560a8f legacy-trunk +23519 6692855922884b51c88abeb2e29a9de5b674790b legacy-trunk +23520 6f02569cc46fda5217fcb774d37044336dbfe95f legacy-trunk +23521 e3f63a95455f7c02482f98bd5fffcf3fcbe80798 legacy-trunk +23522 318589404b95727830beb5392a02e7941c93cf7e legacy-trunk +23523 6152f82ea8238030dc57ac90e4572074e448229a legacy-trunk +23524 1ea5bbbab7d771dca989c67a23fb8066eaaa3911 legacy-trunk +23525 56f17810534c2d3b558d98b820cb603c9c8651a1 legacy-trunk +23526 de29c8e4de9b314a875649f61bf362b5a92d12d8 legacy-trunk +23527 873d584c1221390b99f15c6b4503708485a5e1bc legacy-trunk +23528 d092abcf9c4b76ef282cbdb5bac79eea45001e99 legacy-trunk +23529 e4e749c42f4617fe640ed14692f1400376e6a7f1 legacy-trunk +23530 241ef8a923c7639a3f187a59eae8f94f834918b2 legacy-trunk +23531 5934aeeb397f0efe5e9bbdf0b2bd1e7022aad2aa legacy-trunk +23532 05250476158a655a5902499a2cd4582fdd2fde58 legacy-trunk +23533 7ea04029d1aead7a2932193c87bfb2b72326dcf8 legacy-trunk +23534 ce4a7e4ad6c48c9f016f4beb225ba983215b7fec legacy-trunk +23535 612e86a4cd9f6ec3a5140261ea40dcb40e2e3f12 legacy-trunk +23536 f0916a6dcef275ffe2ca490572fdf16dcc65749b legacy-trunk +23537 2269cb371e05fc0cb5cf4f5480da3d7ab68997ca legacy-trunk +23538 d7d956b47d242e2b7e60d495f9bb231bc31aa80b legacy-trunk +23539 167e7f98b51fb37d016405087035997f0a10f177 legacy-trunk +23540 66a56a20cfa3f6ce2269505587cede356450fb3d legacy-trunk +23541 2983b54256c7225e61decbb2bd5e59dd274f5899 legacy-trunk +23542 a265d8bd2f2777c1e596d33b6d99424619e56bc8 legacy-trunk +23543 8b3ea7335c1bdc653203d31c0252489b81c422af legacy-trunk +23544 97cfa461d793d35de79f5ba5ed4600d46ee465f8 legacy-trunk +23545 380d4b4ee60243c223ae05a207e1c36b5a594b9a legacy-trunk +23546 e3751af0f1dd178c2405862d1ef9a93c716f8f35 legacy-trunk +23547 04f296f711df023afd1f21c91918ff90407dd68c legacy-trunk +23548 fb5f1211703603509625adc32fed55afe6085902 legacy-trunk +23549 ccb7abc714edda7e949d8127b82fe7aa04dd2c38 legacy-trunk +23550 c853d246f3c8f700410654719d5a251ac1f2d8b1 legacy-trunk +23551 f48782237f853288027b288667fe5f8e6b2445de legacy-trunk +23552 5ccfe04492ac9b7346bfb4f35bc01fecebd8a1ef legacy-trunk +23553 6e7d5ae2800fc9474140ec8bc81632c9bca9bbd5 legacy-trunk +23554 acd8378216c31f1cc2b6607bb7caa28e18f8077a legacy-trunk +23555 178ba33f67e4e8d1e467ded4b7035396fa349907 legacy-trunk +23556 a43cb6c59070f80e50c67b7d96faaa58d1075ca8 legacy-trunk +23557 b285decf0421ec669914003490f56410c234e2b0 legacy-trunk +23558 426b379a138b41b71ab76a75d9f4183cd08775c4 legacy-trunk +23559 5d2d1e2ec473b10250b1894504c95db319b0f16a legacy-trunk +23560 6cc0b48049ec4b59ebd75eef6c5bd6467a54b993 legacy-trunk +23561 79392ab2c02a9e2dd9bf931fca21610f659afdc4 legacy-trunk +23562 6211684ed9ddf077360126ac9543ecd7824964b8 legacy-trunk +23563 42b52793740c0df1705a1fc29db37821247915cb legacy-trunk +23564 874bb17074b0d4df8f30ca69ae2570257f75ea1f legacy-trunk +23565 3b3ee97633c11db049e7a2ff9ada1724ff0544f2 legacy-trunk +23566 c5345c0abd706193064059a76d27df8b632c4c5c legacy-trunk +23567 faec69c11640361a1ae8c19f798e546ed80eb403 legacy-trunk +23568 e44cdef791ee84055a82e5b1ccdb3dd7c0bc8f45 legacy-trunk +23569 08295ec58ea97dde165bde9bdde93b5ae89e2b7d legacy-trunk +23570 1ca228e21a987a722f1446c82ec79cfa6a4a455d legacy-trunk +23571 aa681345bfab13373d2af29a5ab41558643b3783 legacy-trunk +23572 ca2bc5cdaa8e9ed21d462e33dcb8ef5eb1aa899d legacy-trunk +23573 326e5a72c66028e2ba7d0b262c594b6452a924a0 legacy-trunk +23574 b4447bb5aa0eadec956a95b7903d6a3f07e69e45 legacy-trunk +23575 12353b131224c6acc8599669cc4e2e8b72b07878 legacy-trunk +23576 3393d6f807f5d7b5ba31ea1d9ce29b9f6a1e462e legacy-trunk +23577 ea1910d2c781dd0a9ddb80b430fba2739eed3f5e legacy-trunk +23578 284eabe3b552cda3fcdd068a5668f28160e988f1 legacy-trunk +23579 7b41f7a2e52854f29bcca078d8263c28ff150b96 legacy-trunk +23580 2e073bc72686951a2aa93609e6d58623360dac6c legacy-trunk +23581 4ef7eb90b69ac74dc7f4601911eefd68b14856e2 legacy-trunk +23582 f9a66b24bfffba2e2f60969408a40e526465017a legacy-trunk +23583 1253553fc3cc8ec2b3190f4f4383de2787c32e30 legacy-trunk +23584 f29b8ea0b695449cb8b2c4906b8502583ba322af legacy-trunk +23585 267c6fe0abc2eeb8b7db128dfe358c4dc066c837 legacy-trunk +23586 5a9880156d712537e54af64fcbbb1ac96e2ba3fe legacy-trunk +23587 bda274dde27e10264b10e538e202a5ad15fc1601 legacy-trunk +23588 429a08e2fc782c3c6b6ce8902d19af5f8f27c484 legacy-trunk +23589 8585535e404bcab9db4d14835d198440379cbbe6 legacy-trunk +23590 b32d66a4b5e6ad42b8b56ccfa7ed6b792fca93b7 legacy-trunk +23591 54f05b9b1fc4bbba92f6cfe950c7e87827f0d687 legacy-trunk +23592 26b5f8b94872b7aff72ad7471a15a9fd077e2d68 legacy-trunk +23593 a9763675b74c7a5fbd2b5447f0535d2a141503e7 legacy-trunk +23594 79fbcfff57970be16a9c3bc08bc4cabe18055a27 legacy-trunk +23595 c5247a366ff57bed888dd494d2dced87b28e6359 legacy-trunk +23596 04fee70fed8feab94c239d5a4f37fe0239fbbbb5 legacy-trunk +23597 86896b5f1ebc2f81b2138ab4b0faf9747cc7d0fb legacy-trunk +23598 c70a2b57a4dd251eac245f1a5a6896327107e08e legacy-trunk +23599 83837ac5bb40f4d5a514087876513e4e73ec5b69 legacy-trunk +23600 1b3ffdf121509bf644141dfb901d478eddabb15b legacy-trunk +23601 4bf3fce3f6cedf5ebfe79322a6b6f2e6ac41bb21 legacy-trunk +23602 7096e44cd1bd29ee10f9c5ee8a6bfb93c6dce8cf legacy-trunk +23603 85226df9a5be91e178a83c8b41bcbb2615107684 legacy-trunk +23604 53a9572b623777e01a79bff607d8c751d1ef6fb9 legacy-trunk +23605 14e0fe152711fa2467dd90f0737f0041af95c830 legacy-trunk +23606 44bed254d8373cecfcfbc0d8997473da835caba0 legacy-trunk +23607 7bd12270dc3e77cdc9f4f8b23b225e426d205327 legacy-trunk +23608 36d148214d8e27dff4258936163d42b11a1c5e0d legacy-trunk +23609 67a7a99f2d5ac38c636dbc032bd415d797914485 legacy-trunk +23610 32e12f8d75d8326b3467490496d289c618a20ce9 legacy-trunk +23611 b79ffd3fca28c8ff5a9da8beede4e4e37b8715ad legacy-trunk +23612 425c6c558fac1aa99c459548b04cd59d3e0fcbf5 legacy-trunk +23613 33dac6181be57c8e928f013b1ea85f510db0b223 legacy-trunk +23614 0a915b22e006aa1cbb00eefec91d41412daa61f3 legacy-trunk +23615 66e77585b4bd95943752390e9b95e50d6663d215 legacy-trunk +23616 9e7a0af4c0a3b6a71c4774d8b5629e3a3b619a9a legacy-trunk +23617 d1c7b3ede48159262024d6df2f8b055f20fd579d legacy-trunk +23618 fdc1914406e26e272ffb469d8c2356c59d26f778 legacy-trunk +23619 4dbb50581d903a4428b4158ce78192aedf609ed2 legacy-trunk +23620 c0d66296627274647c9ceb21f51c72df3e49acf5 legacy-trunk +23621 92d56ae63ed3f7d0dc530fba406afc5ce442cf90 legacy-trunk +23622 98f597a17c907f962d832bca1024e5de400609c5 legacy-trunk +23623 e191ceee672ffe155f5c4891862d6d76ecb0e827 legacy-trunk +23624 8a09c855f957304105db8b612da6c02c41a5a102 legacy-trunk +23625 c408333d37f06155602eb573025215b312fa3bb1 legacy-trunk +23626 b997ac70e445edba3fb51763fd312f84910cca51 legacy-trunk +23627 6b1d8cb9904ac01d4126f2d20f884ae13c29d03b legacy-trunk +23628 b0d8306c09c51b0b69dca86c360d6450580be72d legacy-trunk +23629 e46f69f5798b688c1b02cbc8096eeeb4de64b36e legacy-trunk +23630 7bcaca65338824d6462732dbfbc8881c03bba295 legacy-trunk +23631 300b1d8bfa4de1d35131dea865b697829f6c8a95 legacy-trunk +23632 9e72bceb540b54740f4dea144db2ad9b9945641b legacy-trunk +23633 8830be3209a2ad1bfd3a416701566b9ae2fb257a legacy-trunk +23634 abfd17001e8f5efe1a739cbf3f263a7ea08d8f6b legacy-trunk +23635 8ef3e95182c36dc13d5b52fc15d54f8054d894bb legacy-trunk +23636 dbec863d33d7ea35015c40e05fef9e94891cbbcd legacy-trunk +23637 4bcc231c1a41a4e293d3e6e22b4d469b4c1e82eb legacy-trunk +23638 94983942c94b9b7eabe31e929a7bccb8c8b78a52 legacy-trunk +23639 3ab3b535daf2495f6ea09d2dcc6fcc9079052c91 legacy-trunk +23640 061da22f42039ccadabd1d34ec57e7d7ad63faaa legacy-trunk +23641 9c2d444674d0901f594f5e2836cf4c85889da8f7 legacy-trunk +23642 2f89b344fdb3dd5c84c27dc59fb8abf65c6f17df legacy-trunk +23643 aff8d14b28ada3d79ef0b65a52af895e3a425887 legacy-trunk +23644 3adc3a14cde4127ac1f4ae4df9b40d7dbfa27618 legacy-trunk +23645 b4f829941f3df411e1143a11cdc7dd18082e6705 legacy-trunk +23646 be08734b0afd2101692ad89a2245d9116a86c597 legacy-trunk +23647 3b45c04a4833be90ce7c4d54b8c830c8720ee615 legacy-trunk +23648 2ba4018de2e31064809b5c6d53e24b9f7744577e legacy-trunk +23649 be58eee69a949443b0a9eef889468fbb5202b49d legacy-trunk +23650 3c01c34d07f68ec16ca4c952c72a887a8d5ad5b7 legacy-trunk +23651 f908b063f28b7975e5ef885bd6e962c72d81dc8f legacy-trunk +23652 be8cba5a3b7be879930cda3de3762ca00d96fcbb legacy-trunk +23653 b47168178d879cbe329380d7d70b717274df97a8 legacy-trunk +23654 946bebd00132c3bbd4037820bcaba00de7a2128f legacy-trunk +23655 773a130b330ebeacec93b144704facf62c638997 legacy-trunk +23656 853c268bf24795e7a25beacb743aa31546c108b3 legacy-trunk +23657 c27cf913b1d691030d7e2d33e71402fd88d22323 legacy-trunk +23658 ad1f081280aa009f5e32fac539e891d87b88efd2 legacy-trunk +23659 2050877c0c363ac1811ab5ca3105517f61405f36 legacy-trunk +23660 7294932d74ecaef5c53c956d58a46c2aee6fa481 legacy-trunk +23661 9fe97548d9521fd8ea8497b28bbf4c694737ba38 legacy-trunk +23662 c9a212329da6f0ca1bc7e1f38aa2ee6864faaee0 legacy-trunk +23663 65f60d3fcdd77e02e73025a44ff220c7c2300452 legacy-trunk +23664 65790562033c13cbc82b0fd4c18ee7ac27a78c46 legacy-trunk +23665 b74610c92d8b826d0b3bdebeb27ec210f2413360 legacy-trunk +23666 f57f17cb41086542bcab0a2208c8f9203a3dcd66 legacy-trunk +23667 ed2eeab802d2c49bd1549402738f05fd96717f02 legacy-trunk +23668 9ae78ef858e2ca9bbea6fb02b09b632e1f1bc674 legacy-trunk +23669 b6a5fecbec3cbea6f8cccc0c09628fbf185d6a39 legacy-trunk +23670 c3a937cf60a5f5cda7d65bb315141aabab239841 legacy-trunk +23671 6b104083f5f33a90b8e7cf17b6a8102e5549053c legacy-trunk +23672 469a8e1f7edf5137f0c32214cb8248370c27aec5 legacy-trunk +23673 b98185c882e4e76fa1929a8c1a585ddf4a9bf690 legacy-trunk +23674 2a4bb7d19b603fe856d485ffc3c55434586064d6 legacy-trunk +23675 4dab61f484581721fb09dcbe627797b6d5fdc9fd legacy-trunk +23676 698bf7c22bfeba62ceece79c4ae987848a52885d legacy-trunk +23677 1ca627c4c105f21fbd2c27e955d3978835cf5b18 legacy-trunk +23678 e4d0b1f94eca8d6b23245725463db8ec31ac7ba6 legacy-trunk +23679 621c7703e8b7528e9df9ba3738bebacaa68663bb legacy-trunk +23680 5900a9d8084809269c55bbbbc894d0be15595b7f legacy-trunk +23681 c168eda736e44a7c8b4cdae34b216c7114186b85 legacy-trunk +23682 903221852c3a59c3170736ea243ae2a138de603a legacy-trunk +23683 4f3d1240830e6f53038a802edda040804d5b5a1f legacy-trunk +23684 3a18133f990643504b48e0004bc59184d2b2f234 legacy-trunk +23685 ee89567bcab4450a51ade88411a78a528112c8a4 legacy-trunk +23686 f618607e8f98420d6888c4e47772be8228a9a800 legacy-trunk +23687 4698a3ec5fa8cfad9b4d795139e4dadbb646f596 legacy-trunk +23688 6da03718c1330c3c221187873aa9c978819e2a0b legacy-trunk +23689 7d1f490b6cb172824f9ddeb073ea4df515249f08 legacy-trunk +23690 518e30f90d1f7d8844e27188daa59cca56c4682f legacy-trunk +23691 4712bb62cc25d05b2d0c76a93cb3bf58aee8891a legacy-trunk +23692 632b9d3a8d1a7b2906f7c82b1741fcd6b19642aa legacy-trunk +23693 b02986e9a6be47226642b7e5ed657de18bad8e54 legacy-trunk +23694 5d5ad951a6d6e170d4f33b6429a68ecca8ba9096 legacy-trunk +23695 cee0fe5fce115da59598a84fa9e8c27b3ce05f3c legacy-trunk +23696 56141b86a7f2c95a12f66deea4982f74a5359cb3 legacy-trunk +23697 7f51a4b7deb440ee2fd5d6c473c4cf101d163d5a legacy-trunk +23698 ba2850408f0a260d58d9436ca2434a4ef4bd47d2 legacy-trunk +23699 5000b5d4c3265f5410e778b33ad7c2e25387bd4a legacy-trunk +23700 20118f4129defdfe319fe0879781077fdcd50bb5 legacy-trunk +23701 358397b9070f6a7ee95fe3934097a0fdf1b979c4 legacy-trunk +23702 08d7a6756bfed92a888a80b3af4ec97c4566791a legacy-trunk +23703 85571d5f6545b67ba6ebf8087af7a640eaf80e1d legacy-trunk +23704 9be2cc6b9959d831c51ab06e04b0134c699f2246 legacy-trunk +23705 562834ed8babdf7ae31cb6b9318189f4f91441ad legacy-trunk +23706 467ac453ccc32c7eb63d2b9deda5f2847acbf7b2 legacy-trunk +23707 03624d7484fa0600e0c48fdeca74a184217e75e9 legacy-trunk +23708 bc905a11c148a48bcb5fd40b1335a52d9d649f30 legacy-trunk +23709 27ab0327b2fc3a9e7a7bd03a8e863c3345ff4912 legacy-trunk +23710 855245bb4d4276cef78a2ccedd9ef6e63b546667 legacy-trunk +23711 353a3e9f8516c1599b78fdaa3e368348ce50ca5b legacy-trunk +23712 b1a8616f13e4cd726be5580398f744e04ae9d38e legacy-trunk +23713 69e65e7391b817bc04846b7e8a1bf70985f40270 legacy-trunk +23714 b72568a2c17cec23089114ca1d254d3dad45e6bf legacy-trunk +23715 99b2bd25bb12d47a01fc14314459555ae616ef24 legacy-trunk +23716 41bed1f6d26ceb3a757b3ea213398c2f8156f2bb legacy-trunk +23717 64f4ac606ae5313d425ed8a3c0086cfacb12acc4 legacy-trunk +23718 598c02ab062d43ffcc66f1de94b47c0c163b5bd4 legacy-trunk +23719 ec9596687292963e36e4bad4b79d1884285f75e6 legacy-trunk +23720 bff6c2d76f336c52d6deb48c6791433ea7a03fba legacy-trunk +23721 4f71dcfd0a9370ef7be426b4398727681827c72e legacy-trunk +23722 a96235b2ca625b30a68646a6384eaeac3c68d97f legacy-trunk +23723 c68d1855daa9ea24851aabc1f309c875b979487b legacy-trunk +23724 ffbf94fd9cef8e2f6e8531dace03e31ee2ab0063 legacy-trunk +23725 7e71eebab4ea39e99d626d72cbb395aa5e976a5a legacy-trunk +23726 2f0c5af4d5ea07fb56a05b6e6d15ba4bdb1dd4e4 legacy-trunk +23727 ce12bb1097a4167534e43c464f7f1e7651c53fce legacy-trunk +23728 98df0115ecf9012c46cec999aa96c37c1d65325b legacy-trunk +23729 c72915d8aac7289f86cdc8b324014a4fa6e5f43a legacy-trunk +23730 60e12f83d2d225e3b1a892ef04f1b96a8646d3eb legacy-trunk +23731 5b5c15a095cc7abb515f487154e444b9e9623210 legacy-trunk +23732 ebfd87e87884e06f802e10daab2e93189ecdbf73 legacy-trunk +23733 c46e94fd6986b6e0ea66f78c044351e13837fbe4 legacy-trunk +23734 8964ef84c92f4d2178bb38fe41d1f9fa34c58e4b legacy-trunk +23735 bbdc0abfbb1397ff51ba9734772bcce5ef2d99ae legacy-trunk +23736 dc7204dd2686ea3ecfb928ad8ef069543d252089 legacy-trunk +23737 8d5c000e0e5b44388f533392be26097ca385f3af legacy-trunk +23738 a5a30ba2899f57e9def61fc79b3c5c24c46bb611 legacy-trunk +23739 2f095c3e007dd776d47449cd81a5bc66fcd09b69 legacy-trunk +23740 0cb287cd7547a847c6243eed6561455f222505b6 legacy-trunk +23741 c23989e22ffa50114fb15ff882df3850fb632c4c legacy-trunk +23742 071cfee8d8eb9ac29683aaf800437e46a8041514 legacy-trunk +23743 769df85d70bc13ff0dc425e43f46d4ce74e71c4f legacy-trunk +23744 dd0cdd3defd839f88c6bfefa1bb00b4e08f175d0 legacy-trunk +23745 cd96c4b01ff0f0a8313ec031fbd3604a682b01a0 legacy-trunk +23746 8f473179b0730094f2a58088f4c0c2e7beb4e479 legacy-trunk +23747 5d678356c89429b2e4b93ca9fc4af10c4463efcd legacy-trunk +23748 1a9494f9edb270217d68008488209a225fdd9b9e legacy-trunk +23749 4af8d24fa691eea1a0e6a1f50015ed3ea9ae44d0 legacy-trunk +23750 4bfdbc82310f1bc35a6d0b6e4ad2a52040f49a67 legacy-trunk +23751 b69273bee0950cd7c90b223205ee3c6e6efbdd76 legacy-trunk +23752 be67b66e5fed0f7266cee793d16f9dab0b84cc25 legacy-trunk +23753 e09fb48487653528fe6412c3c33461a85b2448dd legacy-trunk +23754 7cbd407be6e7d3d16d778642ef122a7006021b25 legacy-trunk +23755 149a65fa427c34959b621dffad72586f7edca80c legacy-trunk +23756 bf4ff05eab5207ad066eeb20531412a9959d5de0 legacy-trunk +23757 1d9e69fcf0f8d4f51627eef21e9edcdd1bad3687 legacy-trunk +23758 c8b0e99451599f5c77178b162ead634523c1e5d0 legacy-trunk +23759 68fefa982c5c291e979c7c262656a5c51d0b0df3 legacy-trunk +23760 7cbd2887f60fce3e4a94692a09054fe3fb148917 legacy-trunk +23761 a9b19db180a2600b021b3c681e6bfc9d435369d3 legacy-trunk +23762 2bc4183fb57e69fa160dc241d48ec894a503f496 legacy-trunk +23763 a0c8c2e5a44d0872ac523f8d8b98f7567414f3ec legacy-trunk +23764 fddacefeeb36dfa26b1512a571eda168883fecc9 legacy-trunk +23765 733cb268ad2fb0b7407cccf5d85a279fe374b80c legacy-trunk +23766 6426a5adbf7753bf06c7c75dd40a16decde477f0 legacy-trunk +23767 84331c8d98a41add90d7b6714ff43f98f9fe5bc5 legacy-trunk +23768 e0864aac9b6b25d27fc15daf9c689aea973550fd legacy-trunk +23769 93841c5f475b100a8c254fdfda6397d074c24551 legacy-trunk +23770 97c75f981a9e6273d73c6f2dc17b2230bff1075b legacy-trunk +23771 364c238a68710fd94632bd50860e1d8fb53a4b50 legacy-trunk +23772 8e0c31849c648e7d36efbbd1ce7581bc5d419b61 legacy-trunk +23773 dfc9f23c8655345332315dd724b3aea57074d373 legacy-trunk +23774 bdc486c66df04ba0d7449191a76ec976e8ab37db legacy-trunk +23775 c13a473ce1b7eddbb08df08b63cd04f889500542 legacy-trunk +23776 dfb2efa559672b87eea0f57b5e59685066b5501a legacy-trunk +23777 62b207588866cc6f50e5508f3aaf31be95c9cc09 legacy-trunk +23778 f938cd1ba94ec4e3273005404e09aaa850006b9f legacy-trunk +23779 06f1254d22808ead182023aa5c6649d0081b7e6b legacy-trunk +23780 d21160a921791389c12856fb13e50f349b5c3fe4 legacy-trunk +23781 d51fe520e5fdc020c3275dba4002102bb2876e18 legacy-trunk +23782 23dc7bb0be4fb77868e05396f15101c95e0e9489 legacy-trunk +23783 d01c5f29915a28c838a47252753e23f85f785b19 legacy-trunk +23784 bc3c8419874c6e1f389cf5c8797f20180077aad0 legacy-trunk +23785 cb87bd97f740f1751affe4801e251b29d0931f7f legacy-trunk +23786 3d13417a63e0fd735a85e2d1b06c8ee0717c8f01 legacy-trunk +23787 54a8396045403c0e287f2ecfd1b38a70fd0e2816 legacy-trunk +23788 fd56144a96e8fa644c5e29189b65391e6a5e593f legacy-trunk +23789 c948bcb0415e0c32ea41386bf8443fdd04cc9192 legacy-trunk +23790 1f3c1e831f216a49be6c08323a730629cf7e0957 legacy-trunk +23791 3d3b6b4cb79f399b22e2149a77072a926173f215 legacy-trunk +23792 cb334a8c8dd23a566fdad0bf7b0445c129dae2c7 legacy-trunk +23793 dbfed3bf160eeda03d3a3201799a31a3535e8436 legacy-trunk +23794 f0e33c57e46e801014d978d10bcaccb456d9f92b legacy-trunk +23795 9b84efbf6b0d0b7767332d234c3e7e46df412631 legacy-trunk +23796 bc138bc73cdd1c354f719e763367a796c01ad311 legacy-trunk +23797 4f7befec35b0197f4b79072a58a189ae42876bf2 legacy-trunk +23798 c2005bb879b467d5479ff32acc27f58644cc7358 legacy-trunk +23799 80b8bfa04406bf3f4915f7baa2bc6c40f7134814 legacy-trunk +23800 4b1615bf6eb09d31c7621c65a9ef913413e939b8 legacy-trunk +23802 01af91aeccd44725424179e27af6831f39368959 legacy-trunk +23803 fe1b6ce4eb936359892c470fc79522976a9440eb legacy-trunk +23804 2d599a36b67a8c30cb98a43def49c7edf37ed9aa legacy-trunk +23805 ad2662095d7724691d0c484aff46c2bd296d4880 legacy-trunk +23806 f567b45737c0e3480e28d12f1102883e05216cb8 legacy-trunk +23807 294901ab8630b5dc09703cfc07708a246fae4ae0 legacy-trunk +23808 a8995a6de8d005e66366e7315c60f83098aad402 legacy-trunk +23809 4ba4548ba9417940de2bb83397c12f3c9a631396 legacy-trunk +23810 36714b98fe5120e65271d8031e7daec9fe598cc8 legacy-trunk +23811 73a1395a23516490969a0431f6d339df1814f432 legacy-trunk +23812 a12ccdbce8da93eba65b8fa4e429c51467897c68 legacy-trunk +23813 a56427e5c5e17284c22f927ef1cb342e3e217ee4 legacy-trunk +23814 d8825475b80072e8ea9b987fe86cb830b97e0382 legacy-trunk +23815 6a5a10a5b5265dd13e66508bfa01fa1acfe5ee18 legacy-trunk +23816 c9608c790f6f5fa8513914a349e4eea5c7e97134 legacy-trunk +23817 65dd6157f99934ba41070f86c8f63eac90d2034c legacy-trunk +23818 722bb1fd31ea096fcebf0cc01d1f86e9da3bb5f1 legacy-trunk +23819 0336ee5b46d4222ec307a4bde6f7fb5c2d9aebd4 legacy-trunk +23820 949ba47e8f30ca7f3d638219c539fd17cd7ee0df legacy-trunk +23821 87e5fe056d299f5ea2aac52d8a7890d6142ea771 legacy-trunk +23822 ae507cf67fbfc43d2f19189920081fc470d27d79 legacy-trunk +23823 4a257a58be8bfb7331af76a6b902948d1f8d4359 legacy-trunk +23824 da81125b2af8eaf10bd132fab30ae76572bd636a legacy-trunk +23825 473adbf52171848d21733161483a30e556028724 legacy-trunk +23826 ec72b63d269aeb9a329284b00d7e6ab5ecc7a64c legacy-trunk +23827 d0621a669c5690d06bde2850e6b36d695d334c4a r22b1-branch +23829 ec05afafe13b95d7f64aa512aab76e7e07c780f5 r22b1-branch +23830 377b09ac726e7ea2e26584271b7a3da8d6fffad3 release21-maint +23831 9058e49c6c57d237b90bac640e8c504e80cc02b4 legacy-trunk +23832 ce2a3f15615f6ba3af7273ec1353224cbeb99abb r22b1-branch +23833 8dddfffb9f2bb7e4c8f7c1c92e5bf276e215361f legacy-trunk +23834 6f9902ace18d8eb6f0b802be6926a3e3688bfc66 legacy-trunk +23835 08f165f135a8a64360e4d82359f84425db8653df release21-maint +23836 cb8e8b42cdfbeb5e174304c41f9a4f9cb8478e61 r22b1-branch +23836 e9fad55ef704dbebcde5e14cb8db96af84c22e55 r22b1-branch +23838 61809c514ad8069ef24323620d63c4ed2cd4ec0f release21-maint +23839 805f184b6de09a529ca2037c163dea5764fff2bf release21-maint +23840 d06446d4e78da23408bf5855b2308cf938ba65b2 release21-maint +23841 711135ce1e54f5e769115012d1c9d3fddc37d319 release21-maint +23842 541f825c7d637cec9dcfecd24bc6856a916547ed legacy-trunk +23843 a9baba16ebf39d1c9987000d77c8fdfee3eb1ab6 release21-maint +23844 5f4950dd37c8a9b73c4216ba778e42a1315dfa75 legacy-trunk +23845 5af6c89c8cb75f337d305e976879290039b3f4d9 legacy-trunk +23846 151e45e98c11d356301957a300e523f81a23d38c legacy-trunk +23847 2cb32f7f78c2d1e4fd6ef81b26cb247ea83dc0a2 legacy-trunk +23848 ce88eb465ce76c13ad09d911b0ab1dd91a7f38ba legacy-trunk +23849 9058bcce69e318c80d44fa03af22ea5c2b026f60 legacy-trunk +23850 84a586acdc023733aae3fe1da8ee3133b37ca53e legacy-trunk +23851 376ee174ecd077421169b89033c04774e4b457bb legacy-trunk +23852 bf03b8e3ef93af1150909d8c95cc333cb46037e8 legacy-trunk +23853 80bcc8b7d6190eb73e0a11f41f6404e3eac47a5d legacy-trunk +23854 b5ca0687ba6a8096b11bbf8d6e6e95e0bacbfaae legacy-trunk +23855 887a93f9d5d5d9cbfa38c4bebd232509cf34fe0a legacy-trunk +23856 7d1257485aef2e7b80f71d7fefb8b10e01ba28a4 legacy-trunk +23857 9bd603d434f552ab833b0331555755081f7aaec2 legacy-trunk +23858 325d513a50bba8e900bb6fa42eab2604cade22e4 release21-maint +23859 aad762503d11e8c2443265fa95432e3003c73fbb legacy-trunk +23860 d3298435d85b584b6509fb08bbcc2773ecdaf763 legacy-trunk +23861 050ed8a21cde5ddf3efb5ad5f332e8deb614e022 legacy-trunk +23862 9246b6c7e7422bc6e923573c02a2337561969680 legacy-trunk +23863 82bcfac896425cc8affd5c736d16e812ec25c867 legacy-trunk +23864 25d764d881491c73d10198e48284e1ee20a4f55c legacy-trunk +23865 0d5e6fc0481d614acfc9024ed37dbc15c030a505 legacy-trunk +23866 c4d9d86745062ea1e324b1947b1779a81a4a990f legacy-trunk +23867 ca5f2ff839792ac82e95b99a3e8e51b8d023e22a legacy-trunk +23868 b47e15fa43e851c36072b8f6888ff0517cb2ed61 legacy-trunk +23869 eb6b953ecf7ca7ef353c8229531c2a7b9018826d legacy-trunk +23870 ff57a1a370b3501f25226e2ad26b6c72dc4ca420 legacy-trunk +23871 eebddd3b94a530ca91503a45a8e6b25f02edf009 legacy-trunk +23872 5c1dfd92877d457d7511a5cf7f48a9261e714db3 legacy-trunk +23873 9009c25694d1fc1bbce55a0da0d60a7910bb874a legacy-trunk +23874 4b79d7d91b4f9a2a3e93ee2938d954edcb7ea68f legacy-trunk +23875 7945639df26500cacddd04168aa8ec44b7c21b75 legacy-trunk +23876 73702d7f13b1b159a38eee9e70feeb97ffd961a7 legacy-trunk +23877 2d8dbebf81e06a17cef4bc8fdff43f36d85711ca legacy-trunk +23878 7f3d0cc2188996ff031db7a3bf72a998999af7cd legacy-trunk +23879 689d0bbc91b139259273f4acabbac1013679d6ae release21-maint +23880 828cb0c2c4805de314db32044543d539b58d24b3 legacy-trunk +23881 7dcc8a28133a22b0943e851b58bab7f97aee42cc legacy-trunk +23882 716a406e9b4fb3d5a747095f0de4ebd8e8fc9d5c legacy-trunk +23883 bea9404ce62cd2483acbd7f3815eb1be012e3da0 legacy-trunk +23884 bf4b37518c14772ea23eaacbf300273334971a62 legacy-trunk +23885 403dd59ca7d5df012038dec7b349508ecadaad41 legacy-trunk +23886 302a1c025dc792ea882b9407034f8468344af87a legacy-trunk +23887 a3d6b31e8bb9fdcdec40d824500edb590a54bc6e legacy-trunk +23888 b9745229bd132c7249a9aedd229970fd63acda3a legacy-trunk +23889 57b51966a4f1f06f3072e691d98c78c704265195 legacy-trunk +23890 0b1c1394bec61193a02da9b0567f84a5f3362ac8 legacy-trunk +23891 e4f5138292e659be265fd700b4a096a285dde9f9 legacy-trunk +23892 b6f8197f4df784aaaba68e28fea3b404d69cc0b3 legacy-trunk +23893 aa5647569ee2ab3415fb2d0836da331a3036e9db legacy-trunk +23894 4fb7727e4f475beac0840ef5a41da6da5e372e06 legacy-trunk +23895 7c381dd0779ca76c9fb0615652e87969b5642cda legacy-trunk +23896 2c1a4584a704335e0569e9905068644ce09fe1e7 legacy-trunk +23897 3d299b15651118cc98fef293685b3c96259b852c legacy-trunk +23898 97b18c09d22a2a346417a1c107f25d857de775fe legacy-trunk +23899 1598588ef1adb7e4f8d9416cd6251e9a6e5f72a7 legacy-trunk +23900 acc7e3b4d042fee5a7742339814ce87ba2c9e56f legacy-trunk +23901 e496b85229c79bd02a9c76c92378877ca1bc68c7 legacy-trunk +23902 d5b31ef23cebe31f36b710ee4503f4e27a7655e2 legacy-trunk +23903 6c84d55abb58a1357a70c88aecc39af0757655d0 legacy-trunk +23904 fed8a18894f5f9bbd4c85f50e305157bd41edc1b legacy-trunk +23905 899bebc89047e5080b3209b42d20896d5f5136e0 legacy-trunk +23906 04f2801d99770f59347ca5ee5e1d9fce71a939c8 legacy-trunk +23907 3f80c91b5c3cfdb54e8a0f7be6eaff1d7d4b8df4 legacy-trunk +23908 8b9e2fbcae1ffcfbcc24d759601bb5f8aab90402 legacy-trunk +23909 6f2cb18068ddf90652e749976783cc9222fd4134 legacy-trunk +23910 aa46c66188d36c955023d12bd0dcb9525fc71c2b legacy-trunk +23911 71a9b053ab42b2cd2bb507984cd09b45b3a7dbde legacy-trunk +23912 c80dafce1b74a6adf9432327ace09f50b53bcc6a legacy-trunk +23913 ab833d9a09b980af0dfb97717006859f1b259ef9 legacy-trunk +23914 ef78ec602a4063807d09cf4fe091bd64ae36e716 legacy-trunk +23915 7c41c4fbf9c73c2a75f431e37855752f786ba9ff legacy-trunk +23916 b078991cb56a3d03f04c5d240a25e471ab03578f legacy-trunk +23917 cabb568a558b1e634ce5e3f50112b59748286e51 legacy-trunk +23918 dd78b1a71f3eaf731215d2483ee5aa44e704e9d9 legacy-trunk +23919 fec950d8c25d7b4fab2c93148b24648cea331e95 legacy-trunk +23920 52957a2dfafe690459896324203b4bfbed1c30c5 legacy-trunk +23921 eb004cc008d2776c8a810170a137b5354eb11f31 release21-maint +23922 8deb3b5fd7c1789fb6d29c983a48f84529ec8352 legacy-trunk +23923 2d3cee9f163320ac3460785d031eda381654eba3 legacy-trunk +23924 757bcfa201dc198a46278227b39d432028da7008 legacy-trunk +23925 edd9d0b3c47efae7fb2010e133290b56eaaf0b7f legacy-trunk +23926 7344687bf2c0ab8fdd9d50d717198f7f174d7ecc legacy-trunk +23927 d0eb2036eccaf264e95fa5aa87af4fd92d4f7d4e legacy-trunk +23928 393556adb2950a3772b41a65fcd86eabf1bdc9a8 legacy-trunk +23929 dcaa2c89430e78fec11a7fafb83b97a7a920cea2 legacy-trunk +23930 ce13aa31e189a0981dc45c2f2566c07b145ad21e legacy-trunk +23931 c05d4895234c10eb9df1e31a928012c69de78a46 legacy-trunk +23932 f7009167dd67c38dd04ad2563097736d808a8119 legacy-trunk +23933 c478a5091f3fffbd5a98923cf98baac218bd7376 legacy-trunk +23934 5cd8c87a88aed81b474a0eaf270183b51364f03f legacy-trunk +23935 0397a75a5bfdd5fcfd2b14bdba5a8a4ff5cd59de legacy-trunk +23936 3ce03e2f01ef7f016f2418f2e277491d78e38d15 legacy-trunk +23937 88a242bfb23ab0a15d94ab800d17621e9fce0016 legacy-trunk +23938 98e5d901bfdfd9208834433fef9d2805a87d8109 legacy-trunk +23939 3e9b85de447b9a607c6ce2974afcdd99b091f984 legacy-trunk +23940 535dc3650becf53deaec8cf00fccd46fe4c1ea37 legacy-trunk +23941 3cfd578f648b248edf2078bdc1d24eb0b2904d67 release21-maint +23942 3fb403eaede1e627ae2f3c67a19706dd710ab499 legacy-trunk +23943 d951c2de095caec496eb88df51d250d92e4a5939 legacy-trunk +23944 af9f290264afdd793b47c370a69e39757cd27b8f legacy-trunk +23945 aba7a4895e4dae491ceb0418162c92cfb128dbba legacy-trunk +23946 7418e0d5fc010fa1879d066079568aaf586b16f3 legacy-trunk +23947 ae94b5f7dd30f5541019cb1c858b4925be3e2347 legacy-trunk +23948 f614825d326ac278b3b796d2114c00332a3f5a30 legacy-trunk +23949 61e8f01de821258563e447d9cbb12e7babca426f legacy-trunk +23950 e89c25ca6b29f6050676e1f6b7ceca53b5839e0c legacy-trunk +23951 e3c24fc20a8dbc06c44942848d0cee691d564b77 legacy-trunk +23952 a0f1c2d2ac9e4a230332349c47d72550c53c5c4d legacy-trunk +23953 f31b12a42951cd757f22b201025f5cc53bab373e legacy-trunk +23954 505dd34e0eebf9f828936b5952af7ff85f89af2f legacy-trunk +23955 433ae48387035f19673f1dc71d570d453ce4cd96 legacy-trunk +23956 99ad2a9d20e1c1278f0acfa86962061a92ba196a legacy-trunk +23957 311a2abea8a47ac32a3534b1e59f3bc79a7c5407 legacy-trunk +23958 367cd8e5df479494e7ce075bc1f5a4543f10724e legacy-trunk +23959 99ee719197ba7ec0a40d3571f8dd9d19a0917644 legacy-trunk +23960 a0332ae848e26fb96ac60379eb631db3fba2c0a9 legacy-trunk +23961 86fb18fa346f8a8a6978744f276b5d48e5fb1766 legacy-trunk +23962 c3e0bd20775cc49f4344b56c2a52ba413fce2b43 legacy-trunk +23963 38380d5f27d40b2cb46dc15b804be74432865ab2 legacy-trunk +23964 6903420f0a825acceef498ac9c8ac5b9075e3041 legacy-trunk +23965 d02068d163cfcedec106279ead27b9fb0a38db30 legacy-trunk +23966 adf565f0f8ae6085ee80cbbe60a7fa0ac8a870c9 legacy-trunk +23967 398135e400c7f83b52d976a7b64f7f3f9e1ab5b1 legacy-trunk +23968 648bc74c47ab7262e3f81dd3a94610aecd22de42 legacy-trunk +23969 b229208a2a72738b98efdd0912496dbc2b6b58f9 legacy-trunk +23970 fa0bf6c79e042a02af33d828c089a3470928a346 legacy-trunk +23971 5de3a5947257bbb144648d1363f4a3c0260baa0d legacy-trunk +23972 5f6850d1f9e8523921dda1a48b9096466dc377ea legacy-trunk +23973 4b3efc7501396fc201d638645d488dfec7dbdb9b legacy-trunk +23974 b3a00d3165bee2308e1259352eb4c9cedba7ab2b legacy-trunk +23975 2925e27a281c521a3bf1aa1431b63dc99aa39871 legacy-trunk +23976 798f61997c08d5d2d041edbfd174ba51e81f2230 legacy-trunk +23977 4133abef5abbd1a0fc9ad832e45215c14e2592d6 legacy-trunk +23979 184b8b9a2654cbdfcfcf57c46b7369206c722414 legacy-trunk +23980 e912b683ed3e1536f0b4c9f5e6e1d3b56a20f544 legacy-trunk +23981 310450e74f2f57ddfdbab2ae68a92bb35e477465 legacy-trunk +23982 a44cc0c21cfe315425e380e646c01ad2d1e33337 legacy-trunk +23983 2890769b1e696624f6f93d0a981dc41bbbc4de35 legacy-trunk +23984 a6a4bd2f06d0f9fe284710844978f456a3fbf4aa legacy-trunk +23985 7f4089519926e5c5a143317244cb4adbdf3c1524 legacy-trunk +23986 091f9656d79b35918f9042cab678eaa218251ca7 legacy-trunk +23987 5e6f8187bd4893f395450b2f1c38485ef78307c7 legacy-trunk +23988 dcf769c12d8b412fbdb7157952294544bdeceb50 legacy-trunk +23989 84715d52d954e9d507947b565bd000d0b934ebf6 legacy-trunk +23990 c6384591d846ce6a1b3d66c724a1737e352364d9 legacy-trunk +23991 5e347e4e05bf5ecc8b0da423fd4934d5a68dcee7 legacy-trunk +23992 aaefc2f21baef1ce39e82d0b3494fcaad61f1fb2 legacy-trunk +23993 acb854b897bb6154f849a390a6842ea3dcb97240 legacy-trunk +23994 676f106a50023d410f25a00361b7d41238f102ff legacy-trunk +23995 6ac45244c41e0ae7cd5770c58442533fcd3c0bf9 legacy-trunk +23996 f224632d02603f1b68436ef4267b9465b45dcb8f legacy-trunk +23997 7130750a62222e44fc4b1ec1c484de24671a99ca legacy-trunk +23998 587b74854f8c050492be3a9fee609118b2cd1a12 legacy-trunk +23999 abd71e89840f77841f0548f6c2dae9a18f27044f legacy-trunk +24000 cd835caa506c092b104a1f266ff586164eab7e32 legacy-trunk +24001 cd600039a123e0f7b5573aea0b2edaf5ec9a30e6 legacy-trunk +24002 73cabe664c11eb6ba7bb2b4217f4c70c6d515f9b legacy-trunk +24003 8359c1189f73025049df91e0dd0c62eab55d62cc legacy-trunk +24004 b3b2fa76a3929ecef06c1b793801e3a7e286698a legacy-trunk +24005 635fa14eda509a81eb3542c940e049f51905c433 legacy-trunk +24006 b0628043e537dad784a501bf2f62690d9f4dd87f legacy-trunk +24007 faa2726dea37157837c8b92962b206cc2136018f legacy-trunk +24008 a7884e7eecc9b2589399171c91587cb2eb11cdc5 legacy-trunk +24009 00a581bdedebaf0242f51c9dab78801e95ff5448 legacy-trunk +24010 c7aac78e23b49c31be19473ddb9dca41f88113c3 legacy-trunk +24011 3b87740d1bbc85a62884456dd9e0468272bbb9b6 legacy-trunk +24012 ad45d22b195d13a829f52a4147293341dac376ea legacy-trunk +24013 3e4625818f5ff5964ca8e9c0af8e922dfefc106c legacy-trunk +24014 d5f6b4d58380eaa5d64b7ed92ba79015c299fa2f legacy-trunk +24015 7da4179995111308f6597ff13bb777e6a6ef94f0 legacy-trunk +24016 23d230ef415ba56a32b23e2ff6723588d0ccd4e0 legacy-trunk +24017 8360d6432707c5b87443e03d132573ce6398387d legacy-trunk +24018 4617d3d770c5990fbb30d068cce13e81e53083ef legacy-trunk +24020 9f62955de4c3a1e72b0d21242d0849cd0128d01f legacy-trunk +24021 08dfd3c22f41dce3a148b6c0a2b8227f5cb54af0 legacy-trunk +24022 775926bcf06925f71eb781868e8fe50f0bc16dba legacy-trunk +24023 c8ba2db1c3c24bcaf01d7549873f7bbe66aae18d legacy-trunk +24024 85109a6099b5e1f27b433766b3d02b629c0c09bd legacy-trunk +24025 f2af42cf827ab7e39611db6d7674330ad27d5756 legacy-trunk +24026 ecd64931482c9f2e75516c976eb7158fe46381b0 legacy-trunk +24027 272336648d1ff1e2ca1e1df757e18cb414d72a5a legacy-trunk +24028 17f7c9c1d66a514abd88232d7719c4a17548ffaf legacy-trunk +24029 828bf317880a205e9e7432057aacc37fdbf4eecc legacy-trunk +24030 050fc52ab3d4152720a16da8c649f21dc0fd06e4 legacy-trunk +24031 a4bf3c5cc45a2ba23c47a8899949aee0a0b19142 legacy-trunk +24032 5b236f377a258871fde606f270357f8d35e116e2 legacy-trunk +24033 6aeab380292ed4699c82ff9ab0fc1e66159b44b0 legacy-trunk +24034 08341362259597ba4ff3c129ffcf1f89b5b348f0 legacy-trunk +24035 6b14d29e53089702f0b1358a798f85bafa95a8e6 legacy-trunk +24036 781ae176bac2c252008f4e51ce2e7a93298a7947 legacy-trunk +24037 37b8d92e12f518dc70fa18bdcdc7e64caf4b3aaf legacy-trunk +24038 3a07bd2b0386e1f3b0ffe844fb81c1e983a2f544 legacy-trunk +24039 a6af009347e13128869c5ef5d4870927c8eb9902 legacy-trunk +24040 b3f48c5d6e1674826b3a35995cfc364155626e83 legacy-trunk +24041 7b0546ee4789edd65705a0bf9a942c06008dc15d legacy-trunk +24042 523ec70218e490a6e8b82e7ca0e22bcd2b7e2776 legacy-trunk +24043 eba63dd0c2f5a92dfe5046c899545c682be0073d legacy-trunk +24044 1244ee18baec33f46f6a0dede094ef28a9d8cd74 legacy-trunk +24045 74412e59bff8261000b5f684554af93f6a89c8c2 legacy-trunk +24046 76a85752d4524c24480b1e7357b032ea90ec0721 legacy-trunk +24047 1043e10be7800912104112198301a747e3c620b7 legacy-trunk +24048 744a19220a3cb76fe330df22ae05af715189169e legacy-trunk +24049 a6bba31b3cd77581421de0c14131524bc8f4a2d2 legacy-trunk +24050 57c61c6224a2f4b60c7278e6a3aa35a507a14845 legacy-trunk +24052 4bb6753e7d53ee57d6d569535e1dfa1db22ae505 legacy-trunk +24053 61123b860b4556a4aa7d6ced39296a282f3ee1a1 legacy-trunk +24055 ab2e315849a7b6c7aa315bfc851fcf255391a027 legacy-trunk +24056 61226ddadc975723684c53cfd371456bf1ffc810 legacy-trunk +24057 b1d9029e09d14d517758bd007acb0267d5d7285b legacy-trunk +24058 a2b11d00b697466c276b903e89d99e8023a530a8 legacy-trunk +24059 a9002fb0a7d79d3b4cdcc1314a13a66e39c10b3c legacy-trunk +24060 4df6527b78822078888f70b75412587dd25864cd legacy-trunk +24061 feb80509fb215061836da8ce2c6ead50085026f5 legacy-trunk +24062 25fed1d0960535e3108555ea7d979131cc1bc7db legacy-trunk +24063 40de84bc62ad02148f02ac2617c18252c39d0bf5 legacy-trunk +24064 961b24f8e1d8298f7f35d85a96e667a477538cd2 legacy-trunk +24065 c91f17a4dc7bf22e97ab02b8bc6de16551266e5e legacy-trunk +24066 2f7b6926e38dd1255648e969b867b0921ab27ade legacy-trunk +24067 e0af282f5dfac4ab9c3c5bf6eab5d6d5cc27c767 legacy-trunk +24069 79fcbc31a03ec9de4395ea403a44b7b6199d7a58 legacy-trunk +24070 83a3e21a7cc3f47ab3b3dc6cb1caf57f62c9fcbb legacy-trunk +24071 73abe0af7e070eac178768712bd41a48f99daa77 legacy-trunk +24072 9c23abab962da50af06217d51e3cb38f9f4f982b legacy-trunk +24073 fa97c9972d1b38eb791c4352c0feead600f23adf legacy-trunk +24074 610a644fd4c3abf42ae2d3fc530c937159443224 release21-maint +24075 ef8bd8be98beb0b5a2413da605dddc1971903456 release21-maint +24076 ee70fac9535b4509b57b7f329cf043baec83426d release21-maint +24077 756b9edf254fc213d4f231a09ecf8a939cfdf7da release21-maint +24078 51eacadc815a29605fe8d83432e93b0233e95805 release21-maint +24079 104223b3226a40ab3b71d4f4eb140857a4bb028f release21-maint +24080 0629666e65c53f8d4cb448381d1990e9831fd542 release21-maint +24081 076e5e49e27d394627a6e1af0f4013d06a7f704c release21-maint +24082 42f22ea6a0f1361373eebad65391ca506fa61b9a legacy-trunk +24083 026bf0ab68a515b4d79a39f7793f400fc7cfb3bf release21-maint +24084 464d213da888c7f2f1162c21ee966275279e389b release21-maint +24085 821e142e19fa4cd81b0a3ef54d3f4a5ae6a4f099 release21-maint +24086 6d38fba05f3574e82701c74cfaf648a5fedb21c3 legacy-trunk +24087 8d4b6642a604a001b7c2c59fde7467f4c3dde758 release21-maint +24088 1965116d1aeca944b1eb5b5f102614c56dd87640 release21-maint +24089 f4eff3247c66ac9f809840f8e278d65717d2ad2b release21-maint +24090 ef1e9c8aa3ddfdb680491626b5139973fa39f7ce release21-maint +24091 57ab65c2f170791d6e0ac41bd9f857e6e009186b legacy-trunk +24092 3e098a963561d77037920869ddf16e4d436d1563 release21-maint +24093 3a748caa03b91a150c5afb0821acc1748e32f289 release21-maint +24094 9aded6235d890e90a23738dfd9d85b0295879add legacy-trunk +24095 261a70c0aa792c3b686e746be209d67465123f8c legacy-trunk +24096 5346b6906d1af85e91a3f7203dbc389b9ce97a88 legacy-trunk +24097 ca418a5fa471cb8d25973eac9bb083a4de17a0d5 legacy-trunk +24098 656c3c84debef4ef7b9c477d0589e2945a50193d release21-maint +24099 c7aa332a2ffafb73404d57c4d22e275e187ae00c legacy-trunk +24100 b3d8d2615b23bf4f0db3b08f7a84d28a43854ec4 legacy-trunk +24101 def2a119d5cda31a46bebb6edc5fb65cc5ca24ee legacy-trunk +24102 3751366c2f3931ca9db28113d67ed55aefee7d71 legacy-trunk +24103 95201153251cbb0bf9345fc4fb79d77ffec50581 legacy-trunk +24104 6f259f7bbed80e4a5ca9f32d62f0a0bedaa13c7b legacy-trunk +24105 14dc693af532195699a8035824f19aa13df6c24e legacy-trunk +24106 5f24b20e103d232d984795c4bec1437590de6e81 legacy-trunk +24107 dab52dbd12aa1444be97738db84e9219eab320f2 legacy-trunk +24108 d139ec49d204d70789f842fe71d7213ef8dcce59 legacy-trunk +24109 860472877dda15111b811b4da430dc98cb686821 legacy-trunk +24110 b0c310cdb9869af693e0bb2fb67cb6739b3dc0ef legacy-trunk +24111 3fbd253dea5d4a9c6f853f2b4bda43798838e160 legacy-trunk +24112 c1ebc0285a5e7d1b19c8079080b6bbc73642ba33 legacy-trunk +24113 981e5468c9b531fed49d002335bb56c299e45088 legacy-trunk +24114 f187d24056f48d856fac47a4298c2a621ca50d9e release21-maint +24115 f6c7460ccaf899f12388ff8d48b028edd6620a7f legacy-trunk +24116 3803af9d87963f8c297b47246f61fb0af8501f96 legacy-trunk +24117 eacf81df6c42756dfbc1d73629791e48d205ab7c legacy-trunk +24118 916f191fcff43f05b6495d40458cedcbb3fcdf8c legacy-trunk +24119 8d14f534a5c276f69c5fb903a5d96e24334d106b legacy-trunk +24120 6990fe9c40f6a7a28b0e90a249913c2cfc063001 legacy-trunk +24121 4ade76a6b245ba78dbee858be9037f3b2a5da208 legacy-trunk +24122 e10d9070e10732c11ec3ab53c4efadc47169f352 legacy-trunk +24123 ec632a41ee35d9b646134dcaa18a5952eb8930ca legacy-trunk +24124 d9a9d92624db97428a34c2aedbdde4d0f956f97a legacy-trunk +24125 404aeeca51e9c451a10bcc3a1affb05447009258 legacy-trunk +24126 2962f01924c997a35cf92eef4cae640dd6d0dde9 legacy-trunk +24127 f34a8df8bba460088b1ee9341c435a8e75498ff7 legacy-trunk +24128 053dbd9b58df03c0023197d83095bbf086ebc51f legacy-trunk +24129 77bb2ae067c258cd4a7d66caa93d1a271cd73bbf legacy-trunk +24130 0444f576c92b19e81c2455dc6205b1043c754684 legacy-trunk +24131 6398d1055fcfb9de2cdd865c8a74209a82e0c695 legacy-trunk +24132 8cf1d9266911328e83d6e486992dadce00f9671f legacy-trunk +24133 d1b3ca89d78b49dbdcfcb5b092de8e3f2f4997e3 legacy-trunk +24134 24105e989f178f2f608e51d1df0a7dbf9902f2d4 legacy-trunk +24135 15c924a11aecc4de4a678d9439871ce84e8080c7 legacy-trunk +24136 0caea5fefa5c1c7dde68b1725983aeafc478f710 legacy-trunk +24137 5a47b58a44bb4e4ab13c1a55b6383972d9ebd650 legacy-trunk +24138 d9b9b5b4815b621dcf32b0c466a93b9a8edfc78b legacy-trunk +24139 d6ff1daae39817646e78a84b407ce9816814e157 legacy-trunk +24140 8957341f98f847d6f4d63de0d4607e6f5dee8a5a legacy-trunk +24141 f54828eb8e07689a1f5dd5960b010f9783e81a88 legacy-trunk +24142 ebbdc38eb11c8a8bf9f165e9568eea01c9b7c86d legacy-trunk +24143 40a88989d6cba44e853ae2ea0950864aac257473 legacy-trunk +24144 2d9e41a72a68b3924a5ea77986cc9b1e0fe10d75 legacy-trunk +24145 7bb31fb483bc867b44792a39598c58693328880b legacy-trunk +24146 a8a66120badedbadbf8bc18b935962fe7e7ae2ff legacy-trunk +24147 f576ffd57966b57dabd65d652b71239a6229b565 legacy-trunk +24148 7e8cde464db40e9928fc8cb4325b640cdbe657b3 legacy-trunk +24149 7e247f0837e269544d2ba8586f8554cda6f66b7a legacy-trunk +24150 811ace3c40d01c2aeeb0e43be8f6b3ebb1190fc6 legacy-trunk +24151 179cd370b621fa24fc36c83cf267e47d9d2bb82c legacy-trunk +24152 27874c86026837311918dc641cc4cb502db84c95 legacy-trunk +24153 d54e294484b2bfdb3b271a04c8b0861cf23cf101 legacy-trunk +24154 732ea22eb5182fd30a0eb27f3c08dfdb616d57bd legacy-trunk +24155 8a72ef6b8118d7c5ac77a41e8e5691196502b70e legacy-trunk +24156 eef9bd87fcc078d889611df259b78e0f96309082 legacy-trunk +24157 19817a4fa2b6cfbbb550af7dda086a0a7f70d197 legacy-trunk +24158 89d171f6bc7d630582570487186bd51494033799 legacy-trunk +24159 6ee19c19b2c373a8363b7c5f0f0ca1407eb88c16 legacy-trunk +24160 5c435b5b59df90ef152fcb99c76434c0e765f99e legacy-trunk +24161 a60c1e8b0bbbeba8f0825f08d1a69fe951adcafd legacy-trunk +24162 7f561fe9edfc2283c492f2a9b85f77a5680a16aa legacy-trunk +24163 0c17515b05db8b7a2e46cf6ab21715a9c672dea9 legacy-trunk +24164 2cd2ae4de30d921ab2f4f4c244ec5fba45fa670e legacy-trunk +24165 640f0284e30ab294ccac583524682ba74a837fcf legacy-trunk +24166 e23140f6fb90396e33476a923a849d06113db1ce legacy-trunk +24167 41d2d00a31f15d9158de56deccdf1bc48da003cd legacy-trunk +24168 f4679f6a958f954e96cdfdf956040fcb88574490 legacy-trunk +24169 de4f6b14d380acd135fd17f2b3893760fafca96a legacy-trunk +24170 5b61a2ff696d0f5a864a4648e22df7aa7a302efa legacy-trunk +24171 b5fe9a9414fca66b96f5723bf79b80b630496ee7 legacy-trunk +24172 af3673812e33612a1abbf5f884c1cfd0ab4a8aa6 legacy-trunk +24173 e184bbd7167c3f047f9bd241cf104b3d8bcd29b1 legacy-trunk +24174 c3d3dc82764c9f4a19e1111bcf3547ba69ca918d legacy-trunk +24175 8722b0abeac6278effc8e761f967c7c29bf41e3d legacy-trunk +24176 0b6332c2aba01cace676c436e5b19e8877ad0508 legacy-trunk +24177 358648873adea2dbe0bd6f91c20a477e036a7a7c legacy-trunk +24178 d3f3d21ac04bc936328d9076080cea569cc7cd0f legacy-trunk +24179 bfcc2ed9caba27ed401f303c5f9b5c86be97fcca legacy-trunk +24180 f2c788adbdbbaf3b45814f0822aa5e741a26a9f6 legacy-trunk +24181 b0a6dbc900470639874cf2d84f6208dfb6205f3c legacy-trunk +24182 6027fdf1ebda3ac099aee53ed405104c549a31d9 legacy-trunk +24183 316fffd80b161c8d23f491a3174cb38a7fada91e legacy-trunk +24184 80baa27bf0ec3165279f4581625068941d4445b0 legacy-trunk +24185 669eddf470badd6e77873b2cce65f3317aae60ad legacy-trunk +24186 8346255cca7c7a912f8dff6940d54d5d3d4cf1cd legacy-trunk +24187 55a060f4173f72066d69c804479bd210920e74d7 legacy-trunk +24188 06d95b6877c45aaf990dcc9b803dfa266a645589 legacy-trunk +24189 d88dd5c2b282b9506145fa6e56e5302454d53b6b legacy-trunk +24190 93253c65d863115cef55500fb3a4929f2f5d531d legacy-trunk +24191 23a209484f028e661e84e3829168c98786137ad5 legacy-trunk +24192 b9850c44756b3c78c0b9aeed57e5f3c4ca7198fa legacy-trunk +24193 20014716556b6bbbaa682318c7e42931468b6658 legacy-trunk +24194 7b5864947baf6cc9348953641aec7c55012cb308 legacy-trunk +24195 b21b42330e40219898b77144b183db3959102bfa legacy-trunk +24196 90871fa43f4e0ae01147b417e9862aa02a4cff14 legacy-trunk +24197 9e8885bbdbc95331bc4dd870f12607076256f0a1 legacy-trunk +24198 7a991d012cd631ca120401f99bbcb355029af678 legacy-trunk +24199 98dbb079c5d48c1c9c7c9a8d423f4745a84d5515 legacy-trunk +24200 21fa7579082223c76514b29fa02de2bcc0e67e36 legacy-trunk +24201 ee1437f5de0332889d5e834ee7f405f0e86415a6 legacy-trunk +24202 7cedbfac746b9773d2499d5747ba273f5f191d63 legacy-trunk +24203 5c02d215a38db9026841cae153009ec94237eaff legacy-trunk +24204 2b5d3329d7e2a4be93c9227e667ec4f490b93c8a legacy-trunk +24205 9aed74528661f725376ac40263d0bbf30749e295 legacy-trunk +24206 fa7e0d00c828e45e46e9a75980ecc1053b6df185 legacy-trunk +24207 cd606a584903e4815efbdb5052931d7e28eb0647 legacy-trunk +24208 197505e6752a254da8b54300f5fc9fbe3e12a848 legacy-trunk +24209 ecce5d7da607de4af293ce4e395f1216c0e9fe2b legacy-trunk +24210 ba9455fc4c8b0e25b2da64953368d826803192fa legacy-trunk +24211 0b64520c200c88c7d4e45c03990dd66e5f87a8cb legacy-trunk +24212 e053e44f9666ff8da467d99439d2ce149c5927f8 legacy-trunk +24213 13a18cbffd9c70bcbdc1d203d01f1be1367e0b84 legacy-trunk +24214 540e5325fc6b08db22043145e2c6ab0e8c61f259 legacy-trunk +24215 13df8b6c2b80c75281622dbcc0333f69f114991d legacy-trunk +24216 45c952d2a61135233f2174db0c86f33d2f94bb40 legacy-trunk +24217 5e735f197ca67dbf86c783957063c552532c3479 legacy-trunk +24218 d3dd0c2a1771d85fefab6d92e391e6781390ddbb legacy-trunk +24219 e4d380f5f2976641b6b62f48668e0633e461f80a legacy-trunk +24220 c3b33ead3546ef41b9741fc7f33b4eb6e3d809e0 legacy-trunk +24221 3c5d0eea1ae2b228ca7a8c8cf69d14374d4e2117 legacy-trunk +24222 ef12c9ddefa705603b9034e5a673627c77d72b1e legacy-trunk +24223 c555f1e7c4be4d93d3986a29d27c73e12814e407 legacy-trunk +24224 9bfc31ca80f342fa2467ea16a3d6692655c3d5a4 legacy-trunk +24225 d27ce8fe43f83991f31472e4e733e8be93b37e90 legacy-trunk +24226 c3b08319959c4ca09d2d350c598cb99e365bf418 legacy-trunk +24227 0d1767844c4b707a24b0af8ff141d8d20bd165e5 legacy-trunk +24228 771b029bdb8a1836ccf0e5c02bf8b4e8c48bb420 legacy-trunk +24229 9ede4d6cc9de8d5edf2009f852acef14137c368c legacy-trunk +24230 c3b3e2e40035ea0e7e29fae7b3d5b1022f930fe5 legacy-trunk +24231 615a4f56026851068732c16417eff8a37a343a71 legacy-trunk +24232 f79cfd054f21b81c9e237e5ed05bb9f264357472 legacy-trunk +24233 ca8bec4b3383742cf3abe38b11378fa547e921e4 legacy-trunk +24234 a13d7cd0ef7f27511d14cf6b32328e14d50ac196 legacy-trunk +24235 da5fbc1eb1d05ff91c6164a24349d462a2a4146a legacy-trunk +24236 3d522cbb7a81f1965b277b7548e35c6ae510ceec legacy-trunk +24237 300b68d63b9f4c25bb5b0623a72355c688d8b79b legacy-trunk +24238 a3c57e59b5a813bfdfb4ca7171535cf6dea3299b legacy-trunk +24239 3e9d6e9fbe58f6a636dce947066c920251184fae legacy-trunk +24240 9ca7e46faa24bc2984a8dfddd15166c6868d7286 legacy-trunk +24241 5545818f581a82f6d633b1c6e7d9ec2d361e8371 legacy-trunk +24242 90a0f09518c8f6ef2b51fa49df85679ac14cdcce legacy-trunk +24243 bb8716095a81a5cd55652acbc61fec0eca5de0c2 legacy-trunk +24244 f1cfdca73f8695877c8be9ef8eb0eb49a18f14f5 legacy-trunk +24245 c1ecafd15560b519b1e64419e51ecec4a61c26f2 legacy-trunk +24246 e167b82c64440d80c0dca7f7b78246b405e54957 legacy-trunk +24247 eba8c771db64cb5098a2a7b1f5e8a61c70580e0d legacy-trunk +24248 ce69d4ee2fa00e17af65cc8572899c469f766880 legacy-trunk +24249 ac51916bfda07e2d890c092931be2f4543485ea6 legacy-trunk +24250 f1671a61007993960ae3de47006bce724fe3e375 legacy-trunk +24251 e71ccfbf36bb8ded628462daf54749c93567f118 legacy-trunk +24252 07f1d2c5dd041c8d84118f4b6a66ca40bd8da0fe legacy-trunk +24253 95e3584abe4576e1dc482b62747d1b7562f77b0b legacy-trunk +24254 44f3f5a5bfe245d74aa7d086dd559aa27a6f033d legacy-trunk +24255 63c14669527e497d9041a2f19b12f18fdb8e24c2 legacy-trunk +24256 4b9e63cf02a6f828c9d0c9031c2dc5657cdd3d05 legacy-trunk +24257 b0df1fd818fc1f565b1a245e18acb90aa5741782 legacy-trunk +24258 b163e786ac74e4a567e4108b905187c40b749a2b legacy-trunk +24259 f711cf458525eed7cbf8a2c0d16d45ab8ff8eca5 legacy-trunk +24260 aace4faff17dd9245edfb7fb514f2fef32440a23 legacy-trunk +24261 f96e891cf0e4ee52db9b44d0aef178a98469aedc legacy-trunk +24262 ac2bc07e8697f765ea5949a639481cb039aff4ca legacy-trunk +24263 a85a3c10ba4da4ad90cb381094717ce1a4541962 legacy-trunk +24264 01e47ce962010f6c14aae0baa12beb1dd0c245c3 legacy-trunk +24265 816264bda136ce6217f859f0f0c87ae1fd7ec4fe legacy-trunk +24266 0d1deb40219f9fc0287fcdfa1715f255db1c670a legacy-trunk +24267 5b578d4d8902b95b521ddbe0b488a0ca4cce8011 legacy-trunk +24268 d9b7853a0431b36848863eea2d15f0389e5c28be legacy-trunk +24269 3a543af19c795fa193f4852a2621bd1ec00d234b legacy-trunk +24270 22df3ed11e2196dc2b38f40e87e2c4eab2e1f321 r22b2-branch +24272 09244c46830f7b89086bb8c2f74d262948c78ac2 legacy-trunk +24273 174ccb035b3d85893bb80baf8851af09cf8265c8 legacy-trunk +24274 570a54bb1a598882c105b7e1c2ddb4b269c11f85 r22b2-branch +24275 c329b811ee5496bd59c48492404704ae38a3682a r22b2-branch +24276 f0b575d6feaa70df4339e4047ca77307e9b2c28c legacy-trunk +24277 555a9e0019a77996b939bd9e77c96c9eba07b450 r22b2-branch +24278 6bffd2e2326a31418069fd258077a8a89ea58dbb r22b2-branch +24279 84bca1ef1168bc97a82e54f7d47744ddd58d5dde legacy-trunk +24280 3e0ccccc4dcb1e77aab1e95d5d18739756dbbb99 r22b2-branch +24281 465bab07d2a884808f6005d48cd635225961532d r22b2-branch +24281 f71581ce7a3ced69c1bbe5ab913990a5c8c41694 r22b2-branch +24283 92d6f6f97c70c94f6887a5c3234c81dc4ef45ee5 legacy-trunk +24284 30e13f0ea76b21c7a252ce42346ba02322ac8b3d legacy-trunk +24285 436531b0acf81a147ba07e627044eee8ea1345a3 legacy-trunk +24286 f7b6100593dcf17695c3dc33375d1288da79e00c legacy-trunk +24287 bea92c3d77a32a416e63b0ecb60789813dd28c82 legacy-trunk +24288 394da4effbec688284c28f313f74ad9c0872bb1d legacy-trunk +24289 d914e0f39f8378e31937630a5566cabca1fe0d4d legacy-trunk +24290 1b4e2a7975961a089da940ab09107e0ff2d3b9f1 legacy-trunk +24291 6e10a1499e2423d2b47d4f4cd24b6ec79fd6d434 legacy-trunk +24292 94fe17c677154080279062e7b4515a4d6b5b0a36 legacy-trunk +24293 61a2df56746eee3fda1f98f869cd21783d346d62 legacy-trunk +24294 22cededa2a73cc596c6fa7a8330128b37aab7e83 r22b2-branch +24295 b5c2f794d80593717e2e877f61804974d947470e r22b2-branch +24296 1fdb89a8b62199ba8e6288179d3e454be97ca0c6 r22b2-branch +24297 44c7781d3f0ccd48c1197c49ba8a5696ec9d4bcb r22b2-branch +24298 41ef982a64b1b1d19d7aa993efdc0d63fa1568f5 r22b2-branch +24299 126895a392ba73fb978357c3bdeef1cea2f95b3f r22b2-branch +24300 145faf298cdcc1324cecbebd5db23615cf6b47d8 r22b2-branch +24301 94c858feae7f88610cf3e327c072641a87b31741 r22b2-branch +24302 c52bb862d0f77354da7c4daf47c93806fa50990b r22b2-branch +24303 30a4080bc30b591dccba8313dbadaaf74703bcb6 legacy-trunk +24304 4a9a9cc041dece6a19e1d08b00c8cf0741efcfc9 legacy-trunk +24305 fe29327e471ce2e6f4f1c54d1f151e7a8671d773 legacy-trunk +24306 8c3219a4dcd6deb619a85c6b707471858c68be12 legacy-trunk +24307 41b8d66730d61f4a1a60ea995b4419012cfbe83a legacy-trunk +24308 33eb63b86a1936ee4748cea2fc7215b525b0470a legacy-trunk +24309 49dc144a15557c17e6a91573c94db16ff67031a3 legacy-trunk +24310 57c791a5f81c75872bedbe4bd0319f71ef305677 legacy-trunk +24311 2b650c21a5638d58fade8704b67278ecc55cccb3 legacy-trunk +24312 42365b70e9d8b8e4eb504b3050f40674620d9bf4 legacy-trunk +24313 f4d9fa207e40e5b0ebadee72648a0d351e595874 r22b2-branch +24314 62c63ba90df210ba360a8f975f661815e83e977f release21-maint +24315 0f408261b3c8b7aabac1d39b255d69d59f0d289f legacy-trunk +24316 a9653811731a003ba4801cca2d703bc9130dec20 legacy-trunk +24317 9f66aaddf8d40bf1a3821f2ad191f9dc387f8e6c legacy-trunk +24318 7ebc3e2983d11b2d5fa3cc56549d9fa980c598e3 legacy-trunk +24319 1daebff177ef1377e1cb990e32fbd01f9fce9588 legacy-trunk +24320 f957d396c84e71df227bef730c62128e2aae58ee legacy-trunk +24321 e79fc257bca0e6ed10781b07ba83776616ca64ea legacy-trunk +24322 dee0e866653e6e41b5f651a20922390ebdd98b0d legacy-trunk +24323 3dfbbf42bf16ae97fbbd2a46ef13b19b0ff0c5eb legacy-trunk +24324 1ee75bd4ee3468d517bc5175bc7df61588f7a836 r22b2-branch +24325 109ed6964832adf87c9b04dc456062f71e01c4ec r22b2-branch +24326 bd2e89d77d45adf17be07f8d512812f37ae4b615 r22b2-branch +24327 4c832878de74eb721a5f6cefdc16b9ab4d425d0b r22b2-branch +24328 e3e3cd47bad5fd383bc58bb2258925828af74128 r22b2-branch +24329 d21028d5cc8528c465d78d66e26ecf44b1018731 r22b2-branch +24330 48260b0b526f69a15a1d470d7dc76d1efea577b4 r22b2-branch +24331 ee24bd0cad2903b1084af0b183369443f739e67f release21-maint +24332 c7e833b3cd9c5aaa2fef5dd2cb523b36d89ff178 release21-maint +24333 9746219813f997927eedc27adeec550e65892c1e release21-maint +24334 11cb3de0823da8ec28b8e25642d571595879d222 release21-maint +24335 223953069a1a09f0296af2a9daf10ed369104029 release21-maint +24336 3fc06c1149a43db2f866a7539ee7af9cb0b93ac3 release21-maint +24337 c4499596b1a40fd8bcf1d8967887088274b8db61 legacy-trunk +24338 1cf77df95f452538976593e4f9b7ee81c327dc8a legacy-trunk +24339 5981dfdda8570b61723ed88f99198932309bc67f release21-maint +24340 afb789aada16fd8da6fd42d93e4bd6eae81cf613 legacy-trunk +24341 778e6a80fcee4f55ff4366d88adcfdc32956b416 legacy-trunk +24342 c3e6e63d9ba2d829f01cc686394a18bb8ff69165 legacy-trunk +24343 e5cf74f791679bae15ea3434267e14dd314834e6 legacy-trunk +24344 0846b4e2517df028bca2a4b6d2a002e8fe119256 legacy-trunk +24345 70b4306f488db1460ea10097af781e4f5b1f2db9 legacy-trunk +24346 b3d627ee2b73fe1c05f7061a32b965a8fd76f632 legacy-trunk +24347 e6eaf957ea26f7164dfb6d0ad04c06246e888b74 legacy-trunk +24348 b114b1007418ee2e10d1416c0f1a20d763ce4b95 legacy-trunk +24349 881f49befca3c01a04ba98cc6d07a1d2a452028d legacy-trunk +24350 cd0b75b19df7d8262782aa557158cab0351f0041 legacy-trunk +24351 fed5071da9575d4d69445f48c3021e411e6af246 legacy-trunk +24352 7ca5a481c0d179556963cd2dec556ef57ac847a9 legacy-trunk +24353 1ae2afe675fda7bcc510cd96ccf9ec504c763164 legacy-trunk +24354 da388e1d404bfb83f59103bf28c662edcc3770b9 legacy-trunk +24355 b7f38e765147933935aadec6a05aecdadaf742d6 legacy-trunk +24356 bcbda606d8c75718b40283c7c5f981c160dccb6a legacy-trunk +24357 d45691a6987fe967a05fbbcf1b7f097c490cf338 legacy-trunk +24358 bac942e685fad2dbbd20d9f63ae819b042c837da r22b2-branch +24359 36c897bcf4d7e6942401138623ef3c39f9912eba r22b2-branch +24360 f8fdbfa8d5f3b82fea99f95eb799f87d872d8636 legacy-trunk +24361 2c0a9a5086e10b99f041d0b0aca2db6cc1ddd473 legacy-trunk +24362 9df82c13c675f074002d02832bfad991359766de legacy-trunk +24363 e76306eea3709750db576835eac5b67d21c42ffb legacy-trunk +24364 597d10cf7938e9bb26597e336f5aef26d3d6e168 legacy-trunk +24365 1802a9edb4eef4d8e60efd8e1759c9400aeb0727 legacy-trunk +24366 bc02c3b09626a045f66b4790d2c9f77c66de499e legacy-trunk +24367 f187496ffaef9d21fc263890e9a597e893e9c793 legacy-trunk +24368 a2d78e21a7857e16ec07e406971010425c02bb61 legacy-trunk +24369 50cfbddc6037e9751e8e197ea479a7c162dd330c legacy-trunk +24370 225c7dd17e37267943d3d73ace44027bc3a9a80a legacy-trunk +24371 c9c4c523dcbf128d7a65ab79abd72b2d14e7cc8d legacy-trunk +24372 9b059f1b2a1f056998f99865127c3102dc01a2d4 legacy-trunk +24373 7d3a211ef233699fedaf49ad909724d8862aa19c legacy-trunk +24374 ba67b9c97b696bf6255d5b39b0c2f5a075a59ae5 legacy-trunk +24375 6392f03222e010e803386728a79fda868f37582e legacy-trunk +24376 639c0a3ae8dcb45da161f2d80ecd8d2791016d6b legacy-trunk +24377 304b34023876920f570465c2862bed406f42c6c0 legacy-trunk +24378 47ea73fd7e6ba30cb986b0137914d737902a603a legacy-trunk +24379 dc641e1256f9c4de80727ef6d25dc300209e80f9 legacy-trunk +24380 c5fbe92e02d3a15700c9f49c4ed8a29b36df8a4e legacy-trunk +24381 379fc66f4c96d0a1f7c176f9bedd10cd735b6d2f legacy-trunk +24382 025ad27d4224f457245134fcc9baee0b386ce6a5 legacy-trunk +24383 8cef75cacb01604cdf0000adfeb668c671d4985a legacy-trunk +24384 5b459677fc444fc9b0c03bbb96dd50ab18a0d199 legacy-trunk +24385 94f5a9fa35834750814d1629d67d43daebd940b3 legacy-trunk +24386 c8d775b9ff92a9bb9395d50b6af6fa21686da430 legacy-trunk +24387 d3b6401ca273b5e4c8ecda3aa9377589fb804331 legacy-trunk +24388 52ce887db3c931a638e1af5fca5c23e8f7978f3d legacy-trunk +24389 3eb24f4c88d5b19cfea4f8deec9bf1444aefb3b5 legacy-trunk +24390 ea5b0f0b716f254843268a927a284c747644d1b8 legacy-trunk +24391 41ea2abb74fb39c1bc777b6ef7a8ab1968e57d92 legacy-trunk +24392 347ea693002d52b89e310d0b45860f3b13fb4b53 legacy-trunk +24393 d95a4ec685e0e38a3974eecba69d505a216a4991 legacy-trunk +24394 5e25c669741cf911a1daa91161b557b4f37c2a93 legacy-trunk +24395 47f6533674fda2db626bdfb63743373585a93cbb legacy-trunk +24396 53270d281bf083bd8d164e2876d4464fa609ae5b legacy-trunk +24397 7de133cbbaf18e8683a0481329112a4564b45c80 legacy-trunk +24398 c2150313d9d13e6b526eecb1f52a40e49d3b1865 legacy-trunk +24399 b1280cba79b59ac3f6b9cd4df1fc434b47d093e7 legacy-trunk +24400 cdb70bf88db1a8d0ba600f402462da133ba0600d legacy-trunk +24401 9ba3c82946b8961c17679e6e03eb697ecf87e4d0 legacy-trunk +24402 82d8413636e7790d55f9f8fb83b4475fe3fb8ee0 legacy-trunk +24403 83fc88350f80a22b9ecac575bdd1111774695db7 legacy-trunk +24404 0feac45ee662efd09e730c64800c3fe52e5274ff legacy-trunk +24405 183f28599736631d509230398fb27102521f9119 legacy-trunk +24406 d6c183ca093c803b46ee86b704a963b9a1a2bff6 legacy-trunk +24407 cec800931a370d25c94a9fae33a8ff34f6e29125 legacy-trunk +24408 e422031b8fd70862e05774a03698954657b8edda legacy-trunk +24409 67471070b96683c1f2e5f0f3fb5fe07ec2294879 r22b2-branch +24410 11475dd46fa76132704723e33e882b164f4543b3 r22b2-branch +24411 34fc5238310d33c408534eefa8f720219dc74e9f r22b2-branch +24412 e9a01e24a4a974f54c0b4b8dc1b354698dca79cb r22b2-branch +24413 6185a67b30128409e953817cd9de18d52d05b533 r22b2-branch +24414 03aea7575afba6bf9820d1bc432309090082adb0 r22b2-branch +24415 a718ba992f104af3d9abe7a9ea945b6b94d551d0 r22b2-branch +24416 be39fa5558c545da33e9c833e4575e1ac97df050 r22b2-branch +24418 d19513e2893c99efe5ebcbf15e5176c504bc0bc1 legacy-trunk +24419 3827f136e0d6e6a0a1954aa3925be9829bbab2fa legacy-trunk +24420 2711f8db164cfab5e7d94ddef4ce23c9ee3a3e32 legacy-trunk +24421 12668d0af8f7f54f7927e869a2cd02899503fe2c legacy-trunk +24422 05095398f9392e2e874a3aec69b9db557263b60d legacy-trunk +24423 af1c5fb6a70392b30ec61a1f1a63131ac4ce190e legacy-trunk +24424 8d0c106d909926811e33a037eb33f116b34b0621 legacy-trunk +24425 38d0bd0fa7f2e7b70bb53e9c9e9453395a59d642 legacy-trunk +24426 ed3dce17fc79b7a6c6ffccc6a29dcc5551be06c6 legacy-trunk +24427 f7db2c0a30fce8d5973c20e8b184dd9e0c7137b7 legacy-trunk +24428 0ed6fc7c1c093d06cd08d58f443a89fb6b33227e legacy-trunk +24429 0a67463f8b7d2259c8ff2fe1e616e4e5e88ca5a9 legacy-trunk +24430 cf79703340418fd74d943c7d80f336ab967f6a33 legacy-trunk +24431 2e6ce3a56284bfeca5b8f7a5a600c344d878b216 legacy-trunk +24432 493f932d5829b1dc8c1802c118240ffc6ceefb2f legacy-trunk +24433 4685307384eb0d7fd31a0860a8c65d016805dc03 legacy-trunk +24434 671a84866ac999638ecf0ebd8a662e8786aa2e03 legacy-trunk +24435 687b8c7192a1a166c06d47ab70ec9fe1cb0b9501 legacy-trunk +24436 21820732a1171bfc6746b72ad3f9ff4071782e4d legacy-trunk +24437 21bb4c4b7e26f508706eb78b4fe548cd5aa9aa34 legacy-trunk +24438 17e87aa377962c5864d6ad09f7240fb81015f734 legacy-trunk +24439 6b6a9cae256ee31c34cd865deb3021808dc24aa2 legacy-trunk +24440 dd28a4ecb37f6093949510e9be4e389f6dc2aaa7 legacy-trunk +24441 15ff504632ed6a8e81d77f901e3a9ded541e3137 legacy-trunk +24442 a13a4393f45c01eaeb0c025136f14c507dab323e legacy-trunk +24443 6e34151aefe663053f1bcd28fde01ac3fd977223 legacy-trunk +24444 60e36d518758f1e294fc172b9cd2a66fc0e56133 legacy-trunk +24445 a9a87341a9e7b06ecd048fd40704d5dd55947fcd legacy-trunk +24446 ec88fc430127611e6a880ebca9f60e5f7541df64 legacy-trunk +24447 abe14ac62024213755387d62c1d090964865cac3 legacy-trunk +24448 943639b944ab4ee32b33d94fb15e0b7d8d883284 legacy-trunk +24449 197a90489beed9c5dad5470ff15c5f0c8af01a65 legacy-trunk +24450 5b8f07e6399c1e6702e9da4235159f168baa977d legacy-trunk +24451 a2d03ceba80ebfa625cc2a457e8f104507f3eb05 legacy-trunk +24452 67508a351aa2bfbb6279040bf078f97d11b2092a legacy-trunk +24453 1c6c027fd110bf9b5e3f4f49a292ef48bc650e8f legacy-trunk +24454 51b4572cf013d1a6c8c796b18e20f56b859e7350 legacy-trunk +24455 842b280421ba61ecd4a19adbfc091b706d2e7640 legacy-trunk +24456 72966c9df9a9987ecc63143b2298a459597f4b01 legacy-trunk +24457 96a08fd38ef812598d458ff8a374184f35bb919c legacy-trunk +24458 87fa6e9bd77ec3c7bd61813dd6c532c7b256cc01 legacy-trunk +24459 34fe7433526ba4785ba6e206f02848fab7281e41 legacy-trunk +24460 90a0d80033b4f70346bff960fe77b0eb9969ec85 legacy-trunk +24461 d4509cf93f50f92c0a672b3187d3cf8a4188efe4 legacy-trunk +24462 8e7245460d30bff49e8d751e16a5fa24fdece504 legacy-trunk +24463 0dd16fd36ee8e5c4b91555c76f4570cced0bbdd5 legacy-trunk +24464 918b57354d8748b9734d13c2a442854a2d0e9946 legacy-trunk +24465 be5f52962adb34d2d53ca1a0b27dbe6e0b76b961 legacy-trunk +24466 11a969e2fa505356b0f06d3d0dcfd0b4ca393161 legacy-trunk +24467 a20b372fb939c22084108ea5a021cc9b430cf52a legacy-trunk +24468 bca53a37a8a5afe249986e0929660d26e7e9251e legacy-trunk +24469 9fecba5269367aeb93ca755af81a85c904514eb7 legacy-trunk +24470 e592472d55a38f0bdd488da1ed395e9341c05218 legacy-trunk +24471 1acc4ba73b9d16177c36d7175ecc0f7ced908d94 legacy-trunk +24472 6fa96b329e15ee1c05df793b6deec0407377d3da legacy-trunk +24473 73384e13bd2ae112be46dca5a8b11fe89c080487 legacy-trunk +24474 943ca81ad1df3f53997333f8b5da3c085956a30d legacy-trunk +24475 e1a67be6c6e40a3e0b65f24bcf3a1d4a6214c301 legacy-trunk +24476 7b6879714b7466e449f17a27336ebccdbf47ef4e legacy-trunk +24477 21ac55fb2dd8c82ad20fcf6c1ca8cd93d848170e legacy-trunk +24478 cfe407e4d8c015da64b1878ea6b29bc94e8df2a6 legacy-trunk +24479 0b4aeb413d7df730a8816ee8360b0a1802f1aef9 legacy-trunk +24480 fd42eace50ea5dab467634bf1f785f5aea87277c legacy-trunk +24481 475c8271e057e9fe8a6684e4e7e0d8209306a9db legacy-trunk +24482 8905e6725ca1b3a830817bf05b37908ed1c74748 legacy-trunk +24483 2dfc600f99cee6d621a79dff21a15f1af7f311a8 legacy-trunk +24484 2458cbcc1dd3765e6f6ce5b832c9a72d6fdb4c70 legacy-trunk +24485 df2ffb0cd6bba60b22cb8b8505c893044f1ad762 legacy-trunk +24486 0b6a18c6e59ec450856ac6d1bb59f8ec6915c915 legacy-trunk +24487 789292cf0914c4363d4146e4c6b1097215f2f56c legacy-trunk +24488 c9a796400a51c51487c271e33541956c7e8f1a79 legacy-trunk +24489 d4cc05f6e1839d30f4db0ba9819b51770a9d288e legacy-trunk +24490 7d1eac41ce3ecfe0ae2cfd492712c8f8f54a736b legacy-trunk +24491 bc51de643b5e58cacf3eb167cce94714ecfac80c legacy-trunk +24492 485422900ef079c217fc75dfb3fb717f599e6160 legacy-trunk +24493 0fbc9289a4c7ce4039bc4f12cd480c8c7f52ae4d legacy-trunk +24494 944d6e02f35917783b4cb8b3655d6c0e3479ca38 legacy-trunk +24495 473f29411f3b2ed2387356d716294983fea83a7f legacy-trunk +24496 ac1357fd1aea1f8a124cd82265ece7afe94bd169 legacy-trunk +24497 c2bffa672b759bf9af3753331f7dee6e9812b96b legacy-trunk +24498 aebce485b56b9cb5059aa68abc1a7189e0fea2d7 legacy-trunk +24499 0189186f4ed9182291fe74077d78cdb911590c1d legacy-trunk +24500 ef6f692c76e22a9bef1e783d3a9a904d1968bab6 legacy-trunk +24501 08f21a5374d9a9fb9c9ab24ebcb94c3ae23d62d5 legacy-trunk +24502 a623f9cf95354231a2dcbbc25b0c0d273ac84d9f legacy-trunk +24503 6a73d58e174722f29f8e14ac8be3d00f2a997e68 legacy-trunk +24504 33c8d335a2c437762e8a7c1a071b4beeb3337a50 legacy-trunk +24505 c18ad52dece35c381cdc8dac48c039bc1a6e7c30 legacy-trunk +24506 426c0d24debd8a58ee7b616d0517d3f72b26ea5c legacy-trunk +24507 1519d6faab1594045eda57e37c570195f34b4260 legacy-trunk +24508 5b3b292475735a98fdcf18e70ff640bc09af503d legacy-trunk +24509 920902f5a884c09f45a8d012f49e5dffa16048d1 legacy-trunk +24510 ad7b4424aab6f3b33b4a34874b7d64154a7b71a7 legacy-trunk +24511 f17a37de6285aa51ddeaa93ac58b68c1048d764e legacy-trunk +24512 60415bf5f8f2a4661e09f9fa5bc584e079ace7c2 legacy-trunk +24513 947931392694ed39a32a9fb35f37e2e1d90e2e70 legacy-trunk +24514 db9b5976829e447c3a36f3fa97a2edc3e3656d57 legacy-trunk +24515 c84df848616366f7afb87641088eb8b761c257d7 legacy-trunk +24516 d95eb7ec4553542b58eaa2c1525cc4f7ce8e5fa8 legacy-trunk +24517 f79e4719db9645f5c3808596ee48a2ca19997860 legacy-trunk +24518 864cc593bdda277df9799f401932e783e70e6ef2 legacy-trunk +24519 81928c9d70117eed6d3a2c4202a3f7a331d4dc4f legacy-trunk +24520 bcf666e883121d2b7e37e7153dc0c0e176613f7a legacy-trunk +24521 ead1fa269502a1ce6fb4fd3b58d18d57e8f0a8a5 release21-maint +24522 d8265a0c3cf0288a6d21e9edb9c50555f37cd579 release21-maint +24523 2d21650f46f89d2ea0fc5bda66b7bad571d4515d release21-maint +24524 151b6967bd210b2c12ce5b1d7f8d9f281d685b01 release21-maint +24525 6709ad4fe75ec8e558c6eea9f1bcf95344758dde release21-maint +24526 3b09ea723ece722e91c803929de1d651f02f70e9 legacy-trunk +24527 d26e659507402c376d28c5e3ac74d5043df58150 release21-maint +24528 198aebe123998d965d7aaafb516218ed17e4f234 legacy-trunk +24529 a39af800b9a3ed9f47e514f60d0bdf9c2c839c98 release21-maint +24530 148ffd957618d32eae094bd998dd4356ab09ab23 release21-maint +24531 656c4cf5165fa80dc35a676784cbce74908df3cb legacy-trunk +24532 9205cfb7709466500418082d9b01a7fbce451bab release21-maint +24533 d2290e97de187d3dd964d3babaa3536c69842146 release21-maint +24534 34327cf452994a8f05b386ad98d24642449f464b release21-maint +24535 22d821673e5267a1335d88e23ca2882153a096f6 release21-maint +24536 02d0170397885c6de76578d754000b8a21b348aa release21-maint +24537 4af3186e66315188170b07b0bf2b971ee2453e8b legacy-trunk +24538 5ab0dc7f2eb0462ffe3451e780f18966c04c90e6 release21-maint +24539 95b42f1055c24e70c194bfab0ac6725373790636 release21-maint +24540 0bc8838407bb5796e89abafad6eb1386bdf0dbf9 legacy-trunk +24541 accbe5684ac614d5eb33d99c39f80f11b2a217fe release21-maint +24542 00ecfe19a8d29fea44edd29386c9aa83017ae9a1 release21-maint +24543 060c37587951b1a841c51a42ab9aaa80d64e6840 release21-maint +24544 a3d01a22532973db6131cbe157fcaaaa06b08459 release21-maint +24545 4930198f92dbf36341c020278dae6d2dd9950259 legacy-trunk +24546 803ccbe3ee7cab5c21828a0cdb58ce473e8ca1b3 legacy-trunk +24547 9dc87e61b5a2e22ee229e02cc99f71cb9bde6b75 legacy-trunk +24548 b782490da7f08218426140e0b25c0818ec734c0d legacy-trunk +24549 89a5c1106b82f1808720fb7958cde539d9fdc2b6 legacy-trunk +24550 42d0819546d609fb82b9bc26358584c7b3fed9d4 legacy-trunk +24551 3e8460fb2fbe49f8076fe5318e705745ee0a577c legacy-trunk +24552 9d6fbcb950f9b34a4dc1dbc1e455871163bed6ae legacy-trunk +24553 54ddc379d4fc28980289c00040bff949054b7bda legacy-trunk +24554 ad87674de3a1b3c4efee2563ad25742eeefd6dee legacy-trunk +24555 5c0ba6ebc62d0cdb9325363450b61c1a0a2b0007 legacy-trunk +24556 2034902b0f1ac84afbb5ee97c19f82dadb1ec7c5 legacy-trunk +24557 1289a0559e5a44dd1d0c7e07a54bc75a41654b8f legacy-trunk +24558 ba6a7a5c32e871731bfc7d5630baec6d90081876 legacy-trunk +24559 cb921d483e00942e44fc1263c199bc4c8d5bae17 legacy-trunk +24560 ba16856bfbabd8d4dea0120f6d900e9d06ed722d legacy-trunk +24561 062c6f47106fbe1acf4c808fc31402da4b62af03 legacy-trunk +24562 224edbaf630191544251ba2875071e78e33b3296 legacy-trunk +24563 b26d58b9810cad7e8316c20618738f037f68de51 legacy-trunk +24564 45e1177424e1c7996872f5bbee10b73ee75d7fea legacy-trunk +24565 e386f6e26a42e381f784e9e1915f50bc30fabcad legacy-trunk +24566 d024a5c72cb563c4b434469c483dc98baf82dd86 legacy-trunk +24567 19186b17d25aa3900d7baa0a883f0e09356072fd legacy-trunk +24568 14507671c02cc9989d299ac132da6aff8b642682 legacy-trunk +24569 fbf68c59d66ccd26071a74a87ad37530d7aad739 legacy-trunk +24570 08dbf6b3c3164318ebb2570dba87af1475a5b067 legacy-trunk +24571 e5d295542c7fb9661169c17a88015dbbf9007111 legacy-trunk +24572 102d18ea02cfac39a2138eab729ea2591c88b03d legacy-trunk +24573 c506bf7b26b8a0f1f98f2ce9af0ccd396b7c8652 legacy-trunk +24574 4271da70ed9e13621f3e5755bc0eb2464b92d3e3 legacy-trunk +24575 e8fea95a82a40360780adb300bab4f47274ab535 legacy-trunk +24576 2f2abeeefd878bef337c716be89e02259d5325ad legacy-trunk +24577 26567f28677e14afb45ed9d5ef3a838f685a06bc legacy-trunk +24577 abec4e3b081f2f802c0f27bc1ea70ed752abd84c release21-maint +24578 4dae842aa7c58ffde4b47bf950283f707d379345 legacy-trunk +24579 7a7f557b4d5418eb3702da52e95dc9c83de96e2b legacy-trunk +24580 d296e6bb17e54cf07cf01e1aafcfbafb7490c9de legacy-trunk +24581 2b5dc6c77c3de6dfb5f315f959b9a3c7457e5a07 legacy-trunk +24582 97709fd8fda026bee8aa3d7e8eab53b3b3186f97 legacy-trunk +24583 ac3fdd1412d9eaa83c7cc015914956d650663069 legacy-trunk +24584 d64dfbdc5f8c44806c0243c2602b32c201061c4b legacy-trunk +24585 ecbbeccde07dd3b9605e4cb085a79293e863c0ef legacy-trunk +24586 cfbe38a03e8c1907c0cb2e699a33366f8402a796 legacy-trunk +24587 b01323bfcf6ce9329f492fe2a88402bb8e6696fc legacy-trunk +24588 28f4cea209d78ea86a5279df867f90519c0e2605 legacy-trunk +24589 f702ff390e4dc773d2c1f256a58a5a128c3cb25d legacy-trunk +24590 03f3155cb6ebe17fc67d6e58aafc7785b8f6666b legacy-trunk +24591 643244f7f46708d1e7194d1381c97b2320b7d2c8 legacy-trunk +24592 3657befaba4f0a81da1be1eebbef4222955c5084 legacy-trunk +24593 991b170cf4385d102571da3a926eb023f035a454 legacy-trunk +24594 d35a5771c4c69f4e3b7863072178180054d5c83e legacy-trunk +24595 d4907cdcc2994543666345f8c0bd8d0b8c6e4502 legacy-trunk +24597 43b8a962a32aeecee23d2b6b4f20994e9ad708ac legacy-trunk +24598 50f28ed8044ffc1c445fc73c0fd1a8d1779a1966 legacy-trunk +24599 1e7c0b849584d7ff7ffbd73fa20ff60a15826c84 legacy-trunk +24600 d51f2158fa79070a4ad153581800a50bf4aa3f0d legacy-trunk +24601 d0c2040fede7d4fad85f3a9100d9792a44e1d681 legacy-trunk +24602 776dd2e7678e043d65e84c1d40891caa23dbae38 legacy-trunk +24603 9835bab2876e42f83d6bec54a0b782a60808e314 legacy-trunk +24604 2375d2dfb5b3a62b86cda8f3bbc2944bdae8fb39 legacy-trunk +24605 e8ddab13732abad0b2949c8b9cbc63aded70e362 legacy-trunk +24606 b810c30b4aa1a7ad90e07dba96d0475c4f7f5bc1 legacy-trunk +24607 24a6c3fd0e58bc0a19436d0ae7cf5545c802ea84 legacy-trunk +24608 59894496b5c7362dd4ec9cfa656431f419d5a312 legacy-trunk +24609 bb78a52b8ffce2705de83a95106026e52c16cbf4 legacy-trunk +24610 119422430e8fcbe1f20c90898a75f15e4a19937b legacy-trunk +24611 9a243ee354a134cc5d3fab7736b57d573461665c legacy-trunk +24612 62ea317dfc7f4a0a58e5f026ef6d5b6d55f02561 release21-maint +24613 f5532cc1514b7db635b0664e78660e9481827f52 legacy-trunk +24614 12c094a2327346e6b9b3a4913a3f9c8d40cfbecd legacy-trunk +24615 de764663c325c0467a4402f6a6e13aa882c3d9f0 legacy-trunk +24616 b6f592eec241d6ecccb26d9c98b3b722f34c3de5 release21-maint +24617 d980ebcc696a288295a8447ccccc5d368bda60df legacy-trunk +24618 d86d6e0d158c5c82407412cc123e07c74c3868f5 legacy-trunk +24619 0d2eef636d129c575d92d98585aa67662e890bda legacy-trunk +24620 898c825e08acccd64505f3d2e6279fae55d787b5 legacy-trunk +24621 cb6203ff29e5a1e3b58800706fc52644a54fcc49 legacy-trunk +24622 2607433b13e9e81eca282d32a3602a42683899a1 legacy-trunk +24623 90804a348923dc7f2768bd03793606251c7e4efa legacy-trunk +24624 bfa5f7b4e788598beff1f20fc857ec03d5bbfd0f legacy-trunk +24625 0102692417af0fe3e12e1b217ec1f955a30ce6a8 legacy-trunk +24626 91dd223829c6e0356011be2c6c1f4bb479b165a8 legacy-trunk +24628 4d5098cfa781bfe3a7bf33ea664bb2a159c2f1ae legacy-trunk +24629 9b2d1f8f4be34983b8409f29103f090e58ac5efd legacy-trunk +24630 0c2ea233ad2493b5049b0c2d82eebc10fe8a55b4 legacy-trunk +24631 b583caf1be882b329809b1903f99e600eeccb820 legacy-trunk +24632 bb566f525f12cf88edcba007b987cf8328553523 legacy-trunk +24633 4bcfb9dc57e03dcb350882e760746d7310afa681 legacy-trunk +24634 60df2bf854ace417b71008a546018ad12c2395a7 legacy-trunk +24635 3a2cf5e45656a98a75729435a363d6c9c0af0a9b legacy-trunk +24636 1852caba7014b415497b398b2fb2095f1d7fd465 legacy-trunk +24637 644885118fe779876c7399baab34bf56dde73a70 legacy-trunk +24638 752fa485c4aba5f472a1125af7691aed92f59950 legacy-trunk +24639 8a26bb369f5377d68a39710fca454ef76d9a2ccb legacy-trunk +24640 c9adace3c823efdf57d4afd99a3e6022415f70d0 legacy-trunk +24641 34a1a50e6ab6f8191a16c6e2ff3bf64bd8deed03 legacy-trunk +24642 784c8bc0b3034a5485a3fd79a82a36fe026825fa legacy-trunk +24643 848f6988829f1a2e540d4fff77f8a752065c31ec legacy-trunk +24644 4420a4bd96a44c1a30c5a09cb76426deec791c61 legacy-trunk +24645 2a7d5ffece1c9b87bf443b8a5c836179398d56ac legacy-trunk +24646 fbbd8a4ca7a6fcc5b9898a9b7ec6d047b842cbf5 legacy-trunk +24647 6d874a91b58b81b883a0c9e3fa3c6df451c82b56 legacy-trunk +24648 cf2fb20a6ce7eb3b02ed29ebaa63bad6101714e3 legacy-trunk +24649 18f60810b94a3f010fe4d8145e3de357ff7bef7d legacy-trunk +24650 7c6df964b04bb414ab45b9ba562b20b5c5c1b1e0 legacy-trunk +24651 93f54058ef48f5dcbfd9ca0522c56392342c4450 legacy-trunk +24652 68040db084b6aa57acd5e6f2267e5f9029067531 legacy-trunk +24653 525c77368cd057df35976ce7ba88487e2fa3e30d legacy-trunk +24654 3d68e3110e1fe58ee6e6e5321cbe47cd34137577 legacy-trunk +24655 0b1faf116f63ea8c56d17f24795012aa9d4170af legacy-trunk +24656 a392e1fae61dd22fe91228145eee3ce099d2220a legacy-trunk +24657 7a58cd337cf440a1c110d12c9e1250535d823f89 legacy-trunk +24658 f7eaeeac9c65e7be4b81c8736d85b2c3e6e9ab24 legacy-trunk +24660 d1f938eee700a26291778ad908519f730e780f78 legacy-trunk +24661 8a8f57dcf9fe736397f499b3253387a635da4464 legacy-trunk +24662 f59c6b5dd1222b2fcb22d54fafe6e7228d749ed5 legacy-trunk +24663 12310d643d8d729765d1132c4196e32bb092ccbc legacy-trunk +24664 938b5bf74fb94f5bf855f7832d0a233d6a486196 legacy-trunk +24665 a5146f843010062750b341e67b97331f77549b79 legacy-trunk +24666 be990e703d0f1472cfdc7424f9118ef646b26c02 legacy-trunk +24667 be3283ed8f97588439304c859400e276716dab8e legacy-trunk +24668 257c938900a6e5e3d4e7801fe8a8f9d0119dd98e legacy-trunk +24669 fbddb64d21c2cb3d98ecbfb0c95152166fb83875 legacy-trunk +24670 003dc573b2950ceb4e7831526261d458e5a56e7a legacy-trunk +24671 c67046ef538567bcd4ac95729c270e50b535482e legacy-trunk +24672 de3c88b5f88962bd7fe1a3f6454a9096a0c1a673 legacy-trunk +24673 2eb25ef34386c3975dd2dcf2eb3d70a7ae398d2c legacy-trunk +24674 2c208dbf0cb03875707bd107cd71e5ca3bf58759 legacy-trunk +24675 29072e8e8d982b1afba426791ab3e71997ecccaf legacy-trunk +24676 e8b098fe3df878f8c41bdda383e03ceae88771e5 legacy-trunk +24677 3012f626df7cb35e130ceda09b602f73c804b32a legacy-trunk +24678 71e5eecd589e55c3356ecbccf0ad2c802f7f8f5e legacy-trunk +24679 040230c1589047a7e2cc2f5ea9387fbb559a7f10 legacy-trunk +24680 5ab9a65e234661461535b1a4471fc6f07ac6febc legacy-trunk +24681 f57767d76de6db7f4f4df50a439a37345db74c31 legacy-trunk +24682 8a89ff1e0662db4da04e59e6b7ea8e3fc86fbfa1 legacy-trunk +24683 d87ca932e70fcd0ba500aa8708ecca513647945a legacy-trunk +24684 af51604d00db271449b77f13b6816a5067b7fbc2 legacy-trunk +24685 8a035087eb729776b27ded2daebf194fe7051e06 legacy-trunk +24686 73466a76f25e2e71725290487adc7ea2fe14431e legacy-trunk +24687 c2966a7bd1135149839d43e0b1fdce0d69812fa2 legacy-trunk +24688 c5939d0c747a492c252efc4728c3cebc361ae169 legacy-trunk +24689 49772d318440b8b4956baad3064ca9f50660057b legacy-trunk +24690 7e0d2d59bbce9b7ec487591bd766625de9ca6890 legacy-trunk +24691 50d0366e8f05822f9ceb8134cd1348911d070fe7 legacy-trunk +24692 5f571344c89ccf032670b0dd71862eb79b32b3ed legacy-trunk +24693 116af2f01442a900b088de7e61790a254bd0da5a legacy-trunk +24694 743f67befb57e953268c727e5fca13c2a583bb99 legacy-trunk +24695 44ebeab269c5a77efe208002fc8c978cfee7b5d2 legacy-trunk +24696 913458eaef900b9c169fa4b756f84c7e8acd2e51 legacy-trunk +24697 d16b327181a8d6b1613d226751be56efd2cc330a legacy-trunk +24698 abcd2f52f316da07f324d5a4c1914a4131098fef legacy-trunk +24699 c44c911606a44cf713a020fe04a80a3a6f1da88f legacy-trunk +24700 eb78f03dcdec6830283f3a1e709e460abe0e32a2 legacy-trunk +24701 81a578eb7346395cfd772efb6ea907f16eddf94f legacy-trunk +24702 42cd50594d0d9782d1c7b603abb210f732ad8513 legacy-trunk +24703 dfacc733cbf4b5c9456c27d2fe5d3f1304c85547 legacy-trunk +24704 75037d86b1136318170f8ec7e9ed02c29fc32451 legacy-trunk +24705 96bbb3d0c6a044f01625e1abe7ec457f45e1ee6d legacy-trunk +24706 2c32fc5f23c037043f2e5e1beb731db337b6e71f legacy-trunk +24707 6578c7dc328b1e72769f99be4d6245d92a9c1669 legacy-trunk +24708 3f3ef0743537b27a40870ebe7d9ff380a0221a0f legacy-trunk +24709 82af54b43817751ce3e4f4104bd44502705d05c5 legacy-trunk +24710 560222e9d4710b0a4f6275f2bd753aa265d4ff30 legacy-trunk +24711 ec32e59df400bb767d4072de6c2efb2f94001304 legacy-trunk +24712 5c9ba24183901bf5924378c91e92ef22788882f3 legacy-trunk +24714 de125792bfaaddd082a7906b9256c024fcab5ad3 legacy-trunk +24715 33d59e18b68d444a35d577c6ffa90541bf8dfb8b legacy-trunk +24716 cb08bc6986859e74d65a69ac0479475bd083ac21 legacy-trunk +24717 6da6091a31eef209a61147c19bd3e88bf1414e5d legacy-trunk +24718 05bc5905224934efa4364080332b33c611bc400c r22rc1-branch +24719 22c988cc152d122b24717e76dc640837e952d92a r22rc1-branch +24720 3d97a054f9d4afe5a6a786d3b6e817cdf0a137a6 legacy-trunk +24721 698b6eeb9a86d89381bb3359a8248c1b39a3e749 r22rc1-branch +24722 ebf8a036151d465c2596ea82cf0a211a90f3de7a r22rc1-branch +24723 204d1d5b08d68a8c78f5708385dbba26e951c6e8 r22rc1-branch +24724 fbd57ee5b77d7825009291ce75a1d5d86a220936 legacy-trunk +24725 3ce871a0455b52d5db4421ab90fd56a9bfe131c6 r22rc1-branch +24726 363b2f7529351edcabb05e9bbd39f1263517821a r22rc1-branch +24727 6ea7193bdc2eafd1943e5ad8357a922806b6fee2 r22rc1-branch +24728 064311149cb4d3dfc48bee2fc4ec917c07ec6ac1 legacy-trunk +24729 2afe42f2455908f0d00e43dbfaaf2ce823f04d03 legacy-trunk +24730 9c80b5af8121a74bda2708efa3af8c1f60eb5174 legacy-trunk +24731 fe18eb055107408269b5296bdce002035d7bd78d r22rc1-branch +24732 cedb5039155a6553314a2f743ff6397c4876643a legacy-trunk +24733 31a249a340f817ad291b7bbb7b75c7c5e8bcad1f legacy-trunk +24734 85086f3e70f3478893f4c6cedd72a94be8202e1c r22rc1-branch +24735 fdc0cf56ba9cfd5f024ee42e7a90d5b160dffdbc legacy-trunk +24736 27668dab77f88acf2eea05f7f0d58d619c1cbd13 legacy-trunk +24737 0407294021a0a6a018a16823451fffdd45d925d0 legacy-trunk +24738 1d89da825f957886ebdb2ca1318ff52613abd5c3 r22rc1-branch +24739 0a948ce47e7a06a3526757f7b3fafe9353ec1ddc r22rc1-branch +24740 e63f4668c95d087093eb664a7e241f5592168f74 r22rc1-branch +24741 ff1b571aca710f40391998d69c5b049e0a3dcc31 r22rc1-branch +24742 8fb0c24f4d450d940b4e5cf6333c61ca63c5c82a r22rc1-branch +24743 b11774ccd101f730e927130cef10c81861b038c2 r22rc1-branch +24743 7f4678eefafb143935c39c0364e0b53b33d28820 r22rc1-branch +24745 4216ef19620bbdede4cb3b1f305f596a8e37ee63 legacy-trunk +24746 8b2bd0780925f9d5f1c6b7770eca882d31244467 legacy-trunk +24747 f536f85295b8637cbf15a75e3a57271ff222b46d legacy-trunk +24748 3fcb2248bbe8d907e8e6cce1885c6b1182bf8e22 legacy-trunk +24749 6b30c3f4378d4304ce1e7f686426751adc5ea3e4 legacy-trunk +24750 c3920c4353331884f2f228dafe52caff7be967e4 legacy-trunk +24751 571d5b7b746c82ad8118d42c3b6a2afeceae06ed legacy-trunk +24752 81349e51659b51c5fcde2aea2cd1ba4996e70cfe legacy-trunk +24753 4cb223ef869ba0537c7c91bcb7038da753858660 legacy-trunk +24754 aa4753f945722141621609b997d1f0ba837b2ac2 legacy-trunk +24755 55921255ec93d234384af1a676e47814103564e0 legacy-trunk +24756 274aa91b417c13f5099022f20fd96327a33b7d83 legacy-trunk +24757 e0e2b6161c7fd6bdeae7aa8c14246cc550263501 legacy-trunk +24758 a9656ce015b0d8f129d79a8770ca40475fa2e79b legacy-trunk +24759 063f8a31b6b8b729e2c8f87e19349f6227ab64ec legacy-trunk +24760 a620ef84b0fb2623185182843dfcfcf5350b7c71 legacy-trunk +24761 3fcc2e2992d4d5e57b477b9455e008f17f14b8d8 legacy-trunk +24762 b2d3391364bbb7316cf030482896bbd790734219 legacy-trunk +24763 dbd6a76121596be03b3ccaa73dcc4fbf4c294143 r22rc1-branch +24764 a029e348304c8e7ca59138f09465ebf2a8b93211 legacy-trunk +24765 fd9d7ae3f94a7025de65d5218f34b388dd76512c legacy-trunk +24766 3d2cc8577127e563e8fb2ccb4a04a2a50b598f25 legacy-trunk +24767 1450ee6b8b9ecd7da97ad6026624390dbe2e037d legacy-trunk +24768 c65fac7c28433e6e8614f5cf86e89342f593df8b release21-maint +24769 97d857881c82af3d2de97b87eedb64ecb209bc51 release21-maint +24770 f546623ef0c6565dcfb4e914ae38c9dd7efc5430 legacy-trunk +24771 5a590f196ec583a7180ae7ca558dd2d6b1d9b49a legacy-trunk +24772 9a634d60542ae7164462730c55467ec039651b36 legacy-trunk +24773 d7a9eba74fe2611cfa0eb0f10721e10db3c93505 legacy-trunk +24774 30efe46f8e3caa5ab1fe440a18b31739fb7ea464 legacy-trunk +24775 05ad7a69d93311c7df1a9d3ac5b3549086e5252f legacy-trunk +24776 d7d25ec02d4129bece3ef0ec6ceb02b4b7284367 legacy-trunk +24777 4f621bac75265da27ed42b33a8f211c94e8101dd legacy-trunk +24778 5193290aef0a5b4c1e338682e7541880af3fddb2 legacy-trunk +24779 40c56fefa1772b6294069aa253ad531b5151c669 legacy-trunk +24780 77c7476f41bde76741283a05907c7d9c22f2b698 legacy-trunk +24781 7e7455890fd6eb1a59c6fb554416b2ea033410af legacy-trunk +24782 97f099671bbcdde8f02b8de03c6bb3153c83f613 legacy-trunk +24783 3abf00215c1cce06303b5202d7e29f150e5d5ffd legacy-trunk +24784 fa0bde3c86b278b95d0dedadbd7f4dd0ad9c92de legacy-trunk +24785 be5ca0b25bfdc7bdb2631830a5d2e1aad080f395 legacy-trunk +24786 fb6b3fc4e0c1aab134680c9ebf0f87467370a2af legacy-trunk +24787 bd12b5973daa996524e195a646f767b969f852f4 legacy-trunk +24788 7af45affd3532a0b08cf7ba84c6b75b5d68b0d7d legacy-trunk +24789 98464394cce33683baee16ffb8b2ca8463c5045b release21-maint +24790 e3c2fd177a6e4e2ee7898936a80c5cee528ec4f1 release21-maint +24791 c5797a0083d8fa2a0d536e6d84d59fa91faf9ea0 release21-maint +24792 465c9325af69f41864d26ce8770edc69b52e9f3d release21-maint +24793 f685f0704bbd3a985cd2ce7eb77b8fe0100847ff release21-maint +24794 0f74db74a8f4080307bc48a7bdd0b5dec96c628a legacy-trunk +24795 3303f2d92cef9c8d34892ecc740479e701d9a378 legacy-trunk +24796 664ac8227cc53f3e34ac9dfe906b9bae2ddd866a legacy-trunk +24797 df770dd0bec4a76fefba4b17e217bbe818bbf8a1 release21-maint +24798 b27599abcc49a117e81dde57997fadf49a2cf96a legacy-trunk +24799 9423245514a885ec9e77bd9b7cfa8a1ceda70554 legacy-trunk +24800 3a93145b6a9632db26946da9b97af23ae705bf8d legacy-trunk +24801 4e35fa5d5708dc5570cbea31792d6a74c3b1c2fd legacy-trunk +24802 8348e8441eaf75be88ebbe97792c30821b42b571 legacy-trunk +24803 f18cfde2e8049e8e0d296fcddd4f3cbca6d8e31c legacy-trunk +24804 959a2ed5735cd0859bdbe9dd6fc19ba5f911c71e legacy-trunk +24805 803aa0c2b130f92d5d425796c48f35c86f4d1c86 legacy-trunk +24806 673bbf1155089225f4e9bab260f8349866e6d426 legacy-trunk +24807 e1f3fe5677da3d8ee5ee8a4a08bd8fe532d43988 legacy-trunk +24808 a3b0673ba2ca5fa43c39855677f4e45d457a126f legacy-trunk +24809 aac23331a25d7830efcfb63a9d30c73c35f02cc5 legacy-trunk +24810 af2623bb5d0bc3d8da4b2ed1ded907f124d8e62b legacy-trunk +24811 ccb26a118867e8204c74a76de880a74625073484 legacy-trunk +24812 b48910a957971a79e9a3974ecb793a886ef4503f legacy-trunk +24813 4c82c8ed6df4d4c47d4755a9943e0cf2a7048202 legacy-trunk +24814 21c7d7565977cea69667fd84634393e68d13e72f legacy-trunk +24815 00b3ad1ce404d6ffd33ab64eefc356d0a108bc9d r22rc1-branch +24817 003a985cab95bbb6a99b63618b0afd23a43c62c2 legacy-trunk +24818 76225434a6fed744a1c2d4e9dedee0147ebe87f6 legacy-trunk +24819 873291a4889ec92e6eb08f47605c638341cc4fdd legacy-trunk +24820 2d376d926da82a9021fa8142b4d5ef460208138a legacy-trunk +24821 9d95c1a89cfcb0a3397a968be74a30fe36c248c3 legacy-trunk +24822 5e06f8fe38ee4aff837e116d1a43db838a68dd47 legacy-trunk +24823 a1992694c82425e0c425c4e3131123f4aed7d591 legacy-trunk +24824 bb168de50a032b7398c8e450f1ab362619bdd3df legacy-trunk +24825 1d1c46824fc3e7ed500aa74a54bf47e2b1a5bf4d legacy-trunk +24826 bf6448f0227374eda9189eee5bdac58276cbd163 release21-maint +24827 ca450e4dff9a62648405217c4e4407defd8c8ed6 legacy-trunk +24828 044630161093c91744c539e6f50b9ed40b63ada6 release21-maint +24829 162106b16e444c1a475b6084d0dffa44b314dfb2 legacy-trunk +24830 44c479f84e368c0b5f3d853584bc889af3268128 legacy-trunk +24831 2474414d4342924b06fbb9dc18bb06446faf84f1 legacy-trunk +24832 7c2f95deccad5e248485c05017387017036b7a81 r22rc1-branch +24834 65f4094f43f46fd529a684fe29a78c15220213bf release21-maint +24835 814ce092953ec23f39814fc8dc0d40bfd785e75a legacy-trunk +24836 e9202fe32f0b8ff6eab8599d2c34f768bc8bd6fd legacy-trunk +24837 88baa4c4eee105b6e479af4e5bd13766930a8c7f legacy-trunk +24838 cca56a976cb25cb06024851e81fa12f20b2a6b46 legacy-trunk +24839 4a34862a399423f47025939d344fc38f0ad83570 legacy-trunk +24840 652e18279583c146a9296485d17cdd9e4aaff14b legacy-trunk +24841 5a504102a09c50247a123a77d91d2acf3319dbac legacy-trunk +24842 a03b13be2f68f95bd46dbde1b2ca861bfcfa499a legacy-trunk +24843 3815a959819c469383b5e7f13ff8811caa4c441a legacy-trunk +24844 3c9f391d7e0338420cc2bf8959afeb050d9b2cbd release22-branch +24846 3248ead7192879d8cbd0c40474f133407fec1d69 release22-branch +24847 d6a44fd1f4c1437090679276219f4d676661fc89 legacy-trunk +24848 e3de38aa646231481ad0364e49d007c844067daf legacy-trunk +24849 097dd953e119624f019f8905ec38bf755336d6ff release21-maint +24850 568c75dd50782a9b40311716c23b98cb0fe3b0cf release21-maint +24851 85e694e9b9fc14644d2551b0341d2d0afdede997 release21-maint +24852 e3aa5aab2876dfbe1d9ad1af9ee5bdfd07aced12 release22-branch +24853 82ac8347446291125ae1cecfcfa83c68b760fdb6 release21-maint +24854 25babd432b24f4bb125dae1e2cbee8f176006fff release22-branch +24855 326d9972f6f610036f9a4e8bbee21a1a6a7f6407 legacy-trunk +24856 e8d36c18313757374fbc2865bd200e47245e9db6 release22-branch +24857 04612dc323df30820c48e8e8e8d217054dc73cff legacy-trunk +24858 767d245fd8dcfb69ef6b4f33b4b9b281f0f37ee5 release22-branch +24859 09518c4c68508b42d08f7089a44b89ad900a2564 legacy-trunk +24860 48f32198ceb91f49dd8a00a40d92dd4a55fe057d release21-maint +24861 0825eb1dbeb81cab76017f5f4ea37fba008ad827 legacy-trunk +24862 17997820971d0c29be57dcc5a1d9f98a923d14e3 release22-branch +24863 fc9e2711714dee99596ad36413d02a2bcffe87bd release22-branch +24864 6c23a3fb0b049872a53774aeb1750672506b3a2e release22-branch +24865 606354401396f5406bfa0199d72fa4ab1f7063ff release22-branch +24866 3ffeeda020dcae10d682232e7c5ab3a8b400e4db release22-branch +24867 479cf882bdb5e662cb718fd3be33a05072b45d02 release22-branch +24868 11003b665545d61f148be7c085009c2ec507d50e release22-branch +24869 324684adb4835241053013ce8700a5640608005c legacy-trunk +24870 74c5dcc15b735565492688a5be60ae865a716853 release22-branch +24871 e93f144862de972b1b117e46a1fca32ffe204467 release22-branch +24872 8af86a952b2ca3fa20b783fe8d8de0341d72ce7e legacy-trunk +24873 4f8932134dca3b3fd7a48102123bb6748ea44109 release22-branch +24873 dca8b58746439a9f7df212f643ee4d40eb8df24b release22-branch +24875 935b8602cad9836704a3aa17cbbd8e4ec9824092 legacy-trunk +24876 9025197a8ea0c4bbc76a0d08b244e4a7dd8b0232 release21-maint +24877 e0a5d16a9cb95196ca18614423093beb221e39d0 legacy-trunk +24878 cb55f15b2730105fd9b593e21a990724c9b945a7 legacy-trunk +24879 b484aa61cab4a6aee6ff07f1892f95a45a9b7ea1 legacy-trunk +24880 9d480d0fe690571cfbae520b2d71d65bc1eae022 legacy-trunk +24881 268b57d9daed18a3c8e76b5d43b0fa8a5d90c934 legacy-trunk +24882 fc813164ce9f9813e67200b467bc8e9f858bddcb release22-branch +24884 349d66cd874c335dc4656094bd3bc476f1ab952d legacy-trunk +24885 7c28e956f9b0bad6bc6a149e3eeecbe01f27ec06 legacy-trunk +24886 ac3ce1faec68ea3c7114a1cf0de4cfc2660f7a34 legacy-trunk +24887 4232d257e4ff22eb87f7b335018747a9d76b30a7 release21-maint +24888 41ff4777926eb519199a5db971ee55d9eacdfca5 release21-maint +24889 1339b6d32e953db8b8b6b40676879947822344de release21-maint +24890 e69b21f2529ee6c459aa2fb7268fe9483fa355da release21-maint +24891 4a2c3ae09e0c4efdea2a563cc83706cb1e3ddc02 release21-maint +24892 2a785b668a1609254edc7f60b3d6863fb0a72cde release21-maint +24893 006c55bdf7e156fc2e5756eddc40f527ef6992ba release21-maint +24894 c48d8b362acee1cde2b07406bac13c08d426bc49 legacy-trunk +24895 ca27d82ac89b46e3d3e9ea3e07a334892c9d7708 legacy-trunk +24896 e8cb236aad279626faaf7eba6c4f86b58153c61b legacy-trunk +24897 7bde9ca90554934e12eda6d4d6d91bcda48de719 legacy-trunk +24898 0af9ac87ffbc1d9e32566f821531116501a0be8f legacy-trunk +24899 bf519321e7967e2d206c190b82cb78015dadc7b4 legacy-trunk +24900 5d4135609efc1a84083dfeb1f1cfd52199f0ca9d legacy-trunk +24901 9c32e9200abee91e2170927275c91cdc0a43768c release21-maint +24902 5f3213655d955f417b5101b87c4ad35586f6821c release21-maint +24903 114a6bcfe86bb84f1fca67bcec51b1a1c028fb8a legacy-trunk +24904 f72244cf85a9b7622b47bad6d74eb08d69a6e16d legacy-trunk +24905 ad126c0636548d35be475a11d616ce6e77bcb633 release22-branch +24906 a60fcdc75346b3e368a4484099fe1e57bc7a7344 release22-branch +24908 d59868bafeb10b2ced8c2ab26bd4638b06689e90 release21-maint +24909 58a82a4be8b173e52e9fcce1fee33b6fdc5a3b00 legacy-trunk +24910 68842d295d2cccdf86b90ccb9c1c8464556a7158 legacy-trunk +24911 82cb17498fc1fb7deb73b2f3b992638dc548346b legacy-trunk +24912 3b39ba2b800edd7d9a24547f05f30d59f383fc6c legacy-trunk +24913 1894796e930c14574bd334dbde5286e51854e989 legacy-trunk +24914 4554072e76b4f09ab6fec993b8ce90804ea1a241 legacy-trunk +24915 b2e79caa68e0b1c9bc85ce39dcb33ba11ab4f2c1 legacy-trunk +24916 e6a7ad6c3652da3a38d4bfa26597c8db5fcd0776 release21-maint +24917 58b77ef472d4c2a3320f65c498b76e74b0a8db09 legacy-trunk +24918 52053afcad325c63867a9c56e08150bccc998613 release21-maint +24919 1ec34a0d02a77ce43ab29bedb553d88eca8a9355 release21-maint +24920 43b64245f1aa7b9e13c77e7969ca999789b9d1ff release21-maint +24921 ab92eaa140ef94e75cd2f639b95e4f6eead6bae9 legacy-trunk +24922 847425d5bca807939b76d918691081f68437b3e9 legacy-trunk +24923 f8475135ac13436f062c35ee19f8c6c7c88f25e8 legacy-trunk +24924 fcb649b1004de37e98d1f277d4fb17a38041dabc release22-maint +24925 5d77825bbc10658f211513355e87bacfbadf0f99 release22-maint +24926 9e0233c0e003c918c7524398d0f0208667b10fb7 release22-maint +24927 ac8d85da6d0dbbe48737c0e1071e5c2fc6f7828d release22-maint +24928 e2047af0b2e6e6fd2b525ec190ad16d24d5f65e3 release22-maint +24929 12e0d58e44bdba14ca466a3d77d438a26e45ea0e release22-maint +24930 18db91c0a78f1ce7f20b42827ea12d85741c5736 release22-maint +24931 efd04d1f3085e1fa6142df22382d6c21ec6a7c50 release22-maint +24932 cd77aa11eddc19f6c8a3f5f251f2ca5fd9fec69c release22-maint +24933 812d1543ba089aa103f4656b3b89f7e812fb53b3 release22-maint +24934 d089d1e8411ccc4349b51c5345cd9798212a4bfe release22-maint +24935 f77758c872fb511f63b001bda0c71a208f7e9ea6 release22-maint +24936 8d51c7539719b19c5415b8625d81f6923cd4e546 release22-maint +24937 9ccead5fd2971178a6d164b78e60d51eda759fff release22-maint +24938 3977ad3b08257d50a647ab8662d8ae4898a05674 release22-maint +24939 b9371f3241b85007e2b8a5f6d5055fb9be281aa0 release22-maint +24940 ac4b1c4c3b12f284df371a0fec7fd4fbe40a0877 release22-maint +24941 7b2d701ec404d739a880662c22ea301686772742 release22-maint +24942 a94e4821398da29c582017d9023d1cb3e917357d release22-maint +24943 a2eab4de5505399b2014573ab98ccf0ffb165aa6 legacy-trunk +24944 ec623047073a2be4172844995fc0cd5dd64c4cf8 legacy-trunk +24945 16a82423b86020457a4f4e819c804b4bff227e9c legacy-trunk +24946 fdc39e27a494e8b6a74b2e503721716cc98a28ed legacy-trunk +24947 29c1a58dda53faf3599ece6f8a1ad9442253035c release22-maint +24948 097ae0adf47fbc416ccdfd400aea79113817470c legacy-trunk +24949 6e9a4f9a55a41b34a6f9c6f3b3db87c15a547f69 legacy-trunk +24950 d04eb8d664e2df30c6fbe04adee0dce3edfcf829 legacy-trunk +24951 92da74c8e5e8c02b7d7a1955790cea5fc5834390 legacy-trunk +24952 5b7b386cb0d453576a7b851968b8d1fb79174cff legacy-trunk +24953 7dd39598827581cb15cf6f6e9fb76f47ebe7b6ee legacy-trunk +24954 ff70e5634ae9127a791fb1b37ebeda9462f7620b legacy-trunk +24955 18a70a82af15978861462f7b96fedbb69459d98c legacy-trunk +24956 e56047db653847235322b45020222ca3b34a3e80 legacy-trunk +24957 5ff8bb25031c82308c81a1a19afb2be82ad6a2fe legacy-trunk +24958 8578355d23d3495a04a308c79c592e00523ec692 legacy-trunk +24959 cac931ad3cc5a672d0e26635916bdd9001ef60b4 legacy-trunk +24960 697051f67e976a503a683612f8fb8077888c5ff3 legacy-trunk +24961 fe54e8d93cb48c20d1f85006e071474fba5b9bf2 legacy-trunk +24962 52b3b846f11f54dcb5d67a0362fc22f00730a260 legacy-trunk +24963 a50df65aca7a9b815004cccbc43a69311a5475e4 legacy-trunk +24964 2f4073269dafd3387ba181aadf99d3bd2e0ff78b legacy-trunk +24965 64d0c949f33e2febda7bc1e463fa8d67640b5638 legacy-trunk +24966 035d9c96aaecfc8840d582440b5f1d7bcb736369 legacy-trunk +24967 67da11293406cd4f744fc3186775255030582266 legacy-trunk +24968 be213f1cd462e1b58aafcaf1d2402efb47ffb085 legacy-trunk +24969 fb34f55a03fabf40217f2174dea1c23304907b63 legacy-trunk +24970 3ba0f1b20320c974fb0bc095c411b398123b2213 legacy-trunk +24971 a9e06ffaf7fbe9d8c79a988e684e6814bfabdd76 legacy-trunk +24972 937cc10cd39df0177c1e2cf97187881eb5a0aef3 legacy-trunk +24973 da8b997469e7dc0fb58181b15a73c36683c44cf5 legacy-trunk +24974 8dfbfbc931b4a67b891f421d884fb9c58ac17720 legacy-trunk +24975 095cff21956cbf914e571e9ebe2e20f4d56a2116 legacy-trunk +24976 ea85eea6b2b949fda62b5650abc956db451570ad legacy-trunk +24977 3b43f40af27a984a1a660910fd3000fc67bfb0ca legacy-trunk +24978 ccea8782b847231e0ce84cc3ab784d4c2bb811d5 legacy-trunk +24979 3c8a9ef3b9543962eb7db0b85c24e4116a0d9571 legacy-trunk +24980 5d009e5e13f799eed854480c0bcd9fd865e85f11 legacy-trunk +24981 7246fe5e5a2827e2d4e990b8c6a90e185be04730 legacy-trunk +24982 d594a58b446d5f3ce4bbecddf18ef1d001d8e8dd legacy-trunk +24983 1491f1137e0ea570e58ab49c218704c415af37d9 legacy-trunk +24984 be8697c70e7c2e55449a56213b9bb10992b540b2 legacy-trunk +24985 a33bb73246839db8cd93c471064e7bcb34622047 legacy-trunk +24986 758339dbdaea782d5fe015883117006294c45104 legacy-trunk +24987 de1ebcef7d3107e4b30822f92dea537731705a02 legacy-trunk +24988 051f3b65ddab8495bcf1b066682ca24ec48d5639 legacy-trunk +24989 6d4288e8918b2674b87cf438b2d371770e1b57b6 release22-maint +24990 dcccb9cea05931a2542472cd549c568fc9b204bd release22-maint +24991 dfc970409f7ed02341f7e22b670ffc526f76336b legacy-trunk +24992 66e0080c6dcc901b0b84cc8803b4a7a887424a8a legacy-trunk +24993 5861885577e997051a2923557d801b2e5841542a legacy-trunk +24994 6f6f0e103566dc9c951f6f329906fcbb624c606c legacy-trunk +24995 63a2fac2104c9a7a2dc510b3fe4ab625d1db5e32 legacy-trunk +24996 6ae85d838466a257cf53c3e61f03a7d98bc0c617 legacy-trunk +24997 9c7da272c9b94e881627c7b8a60fea1efd3bf4a9 release21-maint +24998 cd07e84235e6db0353e1acfc039fd86701baf732 release22-maint +24999 2b746543ab3d728de47683e2a418f7d559e657ca legacy-trunk +25000 62219ed21599bce4d930bdb51dbf82c98c797c5e legacy-trunk +25001 851e4bf30358ef8d03e046cd093c17d336ee4e1a release22-maint +25002 b72da0780e7a592a2e5c409ebfaf2c35dfa628e2 legacy-trunk +25003 3a4a34fdfa81a096bca8b1dd68abaa21a596f743 release22-maint +25004 35e3f2418b2da9f6f298c6c414126faeb4d328d9 release21-maint +25005 3c0bd2f37a788a1ff04bf9d4517d92ae5aa576c3 legacy-trunk +25006 a3a62e440f2a692d0ff75380b31094a8d3e8420d release22-maint +25007 7e2a3a2bac33fc988fe61466bcf2123fb9eedc5b legacy-trunk +25008 a5be0765c57136119f54e4ae258de8453eb84f1c release22-maint +25009 9912a96c1fb394f0c11770cf70e6aaec53762a55 legacy-trunk +25010 195917b7a60242fb4d06ef13065b0d77c176d556 legacy-trunk +25011 eb0519a467aba24fd073d8dfaa56c1f256864fcf release22-maint +25012 ec48f96c9295dde080ef27ef49f54b1cb3940af4 legacy-trunk +25013 c3c6de14530996a66baca276897bc7afc2fe7c34 release22-maint +25014 68834a69746a85f7cbbc0d3ef385b1f328212b25 legacy-trunk +25015 29b3dc90be95cb48aa5e5bb8d96c95b4510b6dc0 legacy-trunk +25016 9a26829826e9792b8174f37b3f19d79c91041afa legacy-trunk +25017 6b0e16cb65d5929edc8df778127f624eea9dfb3d legacy-trunk +25018 34eddca1fda79a5540c279e47e0cb60f7a7c1fed legacy-trunk +25019 7c582d1b9cf81e1a4abb36f1ba4150816a84a277 legacy-trunk +25020 22dad9fe09ca13dcf99ad11e298f0316c2709d15 release21-maint +25021 362915b3872444cc99407830257996c6c8fff69b legacy-trunk +25022 9de350a6542edf1a87193474b3e64b2fcac36729 legacy-trunk +25023 b56843c15249b3989ee456d31838b944e6fc4191 release22-maint +25024 a911934126fd866dc10fc9a50f1f1502b23677e4 release21-maint +25025 7248c37513f375dd303056b8d9525164ceedd5c6 legacy-trunk +25026 8239129e75d0a0aa525c227f95f0b59da6c4aaf6 legacy-trunk +25027 72bb70e9640e4804b126cbd751e4d59490dd5e66 legacy-trunk +25028 0d3bb68e3a28a32e12606aef4e3db53c6f8dae88 legacy-trunk +25029 544e262061a362ccd20581cf1e72190b22e55ab7 legacy-trunk +25030 646f8c088f5d847eb870dfac98fe994d7d9c199a legacy-trunk +25031 8970e746681133a842a5a097a08c4e24c5b2be78 legacy-trunk +25032 ffabac50973dfc619394d0a8c63eaee6b5cad6a3 release21-maint +25033 a1c328337c8e848862207c0b5afe3c221f0f01f2 release21-maint +25034 88c463f879ef2755bb314b52e40353b9c570a500 release21-maint +25035 068e873f0932aabab37846dd383e4c265803124c release21-maint +25036 08a3aa9512e982b20ab840cc6db48a0315f454e0 release21-maint +25037 299968c279b980d73106d1c9218f54cb7902a084 release21-maint +25038 3a5515050b436bc523f693c171516c8addcfc67e release21-maint +25039 a1d6cd97e31963ce2ef6ab93120a700e268f82c4 release21-maint +25040 edc3532fb2b8fd0ffd610619e486fdaa0c0a83a4 release21-maint +25041 c4fe95fea3e6ffaff02d2c9c79f2b7b1c88bef43 legacy-trunk +25042 d05ebbd965a37125f74715846f866eb9b8f03cc1 release22-maint +25043 116e3218a7ca607a8e277c771ae04eabf843e3ce release21-maint +25044 8b245297c166e6cc256cc2f03e38dca8821086c3 release21-maint +25045 5915d45b8098416f98e1fb72490435921b9d151e release21-maint +25046 a49a65a95e35cd369cc8e6a3dfa290fe11d253be release21-maint +25047 1edf5ed1af081a0255d0e81f5b93ca880392261c release21-maint +25047 f76a425b14e4ee8ade5e9239598538534b3a90a4 release21-maint +25049 3e78bf0e2be8d2ddf1926bddc3c23845ffbbcf11 legacy-trunk +25050 db2c128125f4569ab9bddbf0aba8ad8f2bb9c56f release21-maint +25051 10d1d7d635d422ef74a4d63be959272175c3e1ab release21-maint +25052 2f3648600e601fdd9959c7a4539b64feca68a085 release21-maint +25053 7fe3e61abce3ea82c2d3b49aaf26e1aa185f8a90 release21-maint +25054 5c62efbce4fa061dddc886193c2e66695782b10e release21-maint +25055 d74dc406641689249027ec7aac73c220e148e1c4 release21-maint +25056 aedd85187496487eb91c74b1a1724b2540d062b9 release21-maint +25057 ce35e570ffa21ebdb0747c6c49fb139da7617475 release21-maint +25058 a0b352e76862df0c8995bdb9e575e80a27ed31f8 release21-maint +25059 ea1755d73e921ac90a603fc2e2f6c78083ba3599 release21-maint +25060 2e228461a391b18d7965c593c4c9c6a82a43f41c release21-maint +25061 32c1c0afcf98dc4c7d785641b6a0f1cc877b1da5 release21-maint +25062 3b54c44524eb624343966339a57ef257bb7ad658 release21-maint +25063 48ecd6061e88d0dbe902ce673c7143d91b53453e legacy-trunk +25064 4027361e7956a21eff9f04b108084548f1865436 release22-maint +25065 7531cc592e463a1f840edd57648a0e3a678e29df legacy-trunk +25066 4a5a010c8f444299796ade5de05dba72984b7265 release21-maint +25067 aa83fe6e9c4f5ddc4fe41b73a118ace46a5492d4 legacy-trunk +25068 3b73325b32e5943fb417d568661da877d41dbf9b legacy-trunk +25069 a6a31c55a16d050088d37c7554abaac69338cb8f legacy-trunk +25070 866615f0ae2a7258d6b0451fefd4cb81a97dff4e legacy-trunk +25071 3be40d3aff945f6a9038a36f63adcba3816be3d6 legacy-trunk +25072 437393e780cbff3d32ea9440241c40a8ec47f072 legacy-trunk +25073 c64fc56f60725f8928281fcd24ffa0b99c0ccf28 legacy-trunk +25074 e223397b26fa5a265fdf3492ffaccef80cea4152 release22-maint +25075 630293be10356e1b0627356a4e76236976cd2fae legacy-trunk +25076 4c6c13aa8a997529f70628c5ff6bca75501fd654 legacy-trunk +25077 4eae66be1d291ba27459ab61876d28abc9a39495 legacy-trunk +25078 1d91820128a1c99ca08448e1968920066d0337a6 legacy-trunk +25079 81a83a65246d3006c967a4c5247cdde78e38f538 legacy-trunk +25080 ec6b67d2803d2fa22dc1c2e5f8b7340430172cf9 legacy-trunk +25081 e99198234d96d24d54b4930cf90711b38ccda4dc legacy-trunk +25082 25e44a0125e457c6af66d74546f5b66e47fe64a4 release21-maint +25083 9e173cb35b6dfdd73ed35b0d1dd6342e4b93d950 release22-maint +25084 ebe6bd576f65d9b8aee08c289143e3cd288665ad legacy-trunk +25085 884e57bf3ada41073b6e6d7918ab8ae2320893e3 legacy-trunk +25086 5d2bfbd47f1be2a02afb020527d2caca19d6ba28 legacy-trunk +25087 67761d5b4ae6a2ef1571df7d469a52d0fe542c2c release21-maint +25088 5a329a257197f952c6ddf6da7c46dca865e3b061 legacy-trunk +25089 54eccc5d22dd2741ef89f80e0056853e9a8e6226 release21-maint +25090 e65475b4f3cf8b58e6994a4c0a9aaaf679e78237 release21-maint +25091 3e26f5dacbbe662f10b59cf8cc61f43f26c63a9b release21-maint +25092 d963184381187288df897841f066ff6759a6af53 release21-maint +25093 31b25014174bd6c848243cfadce9466945e2d779 release21-maint +25094 dccbd7bb5bd5c8515333ecd96974f8f09cee9297 legacy-trunk +25095 c3a8648bf097ab70128b4fb1fea963dc7f75b047 release21-maint +25095 cf31b10e45b48615094cae90e3c5bd072587d8e6 release21-maint +25097 ba8db90eef4ecaa8a1fcbe403a6e3a48b0845ddb legacy-trunk +25098 30a817038af0f4bd6db689dd30d665239d288419 legacy-trunk +25099 ca1b67f5a3ecd8f47b63a477cc5ce02e9de4d46e legacy-trunk +25100 2b56af69f67ded9f684fa336db6df6383db8e87a legacy-trunk +25101 8f4cc821afaa7283a5e8e813fb2575d953f43f28 legacy-trunk +25102 ea8c8400a4c8d00e74e74ab4e183e1cf60df5ab9 legacy-trunk +25103 9d5adff87f30020aa2bd8c34b37547ac850c3a0a legacy-trunk +25104 34f85a0a7faadcb7dcfd8dd8ec6af20abc69e0c5 legacy-trunk +25105 53fc6ec8a837605b31fc8098737e73eb1050c937 legacy-trunk +25106 1b7ec395d3924f8f29f54de47a37102cfb3d929b legacy-trunk +25107 442eff29b49f7b33638f8305b1e8e79e36b1ce78 release21-maint +25107 d823fc135e90e7bb845915cec90277ebfcd2c8d3 release22-maint +25108 74246a2d996223ec1ee1dec9a746a87c971e9253 legacy-trunk +25109 6605f076f95a2d056c23c0c8ed11e87752adad7c legacy-trunk +25110 c4f72b4722da634d0c517e04de434bb2de6c3a92 legacy-trunk +25111 9c0a0c89773f182b006597ee9f48adcfe10d6eba release22-maint +25112 9d7708ddcfb998e294902542ebc05e3436cf6978 release21-maint +25113 19d668751b1eaf0343008066c5e3cb83959e4f44 release21-maint +25114 cfbde8519e500e1230a3e674b3d03eae31932e51 release22-maint +25115 0eff961a15b5388eeb531e47b9d393ddfe2a986a legacy-trunk +25116 d60350d71b605828e5b6044ff718b1ac9973aa83 legacy-trunk +25117 40631ae74b17bba2051c874b9592dee7f5c4330b legacy-trunk +25118 cb40aca41889ce77385f6f468eb939ef0d21faaf legacy-trunk +25119 7233b86be656e39f94ea92f60b03a1427b1b59f9 legacy-trunk +25120 dbb703eb6b3d9b4e0a3efc8d17da9621b2e0fb41 legacy-trunk +25121 1a26dcdfb6cc9dee3d8d3095759ec2be90439a33 legacy-trunk +25122 a1b0658293a709913b81394d965225cbbe93205a legacy-trunk +25123 652dc51b5f832187cbad0734ff840ae1651c82cb legacy-trunk +25124 0110a0983e61930cc105d1c461784df6f7b48511 legacy-trunk +25125 3685615d21b327f5811e68d123f0297ec14a3664 legacy-trunk +25126 8b116a8449bd5eedfc82cfe763d2a2d327c7229c legacy-trunk +25127 8a2cd1c0c1354ec8fad6b38f2335c00b88fa046f legacy-trunk +25128 e227c8d03d6d8c24d454c53a71631da4fcd09727 legacy-trunk +25129 e6d5c4c745bc013c4fc631088c53fb317445a7b9 release22-maint +25130 5787fc48c2b55a50718aa406df4a391b618e07f2 release21-maint +25131 8e67d9035b699abba211812c553b65e2d9da195b legacy-trunk +25132 ec750e37671be3eb525ed88ed17e9d4a9d58201e legacy-trunk +25133 d5a38a32f78b50cc8588ecc2445a42367c4e55fa legacy-trunk +25134 1ed268ea2d26303933651c6f1c1021e5e698c14e legacy-trunk +25135 16cc538401b3f082ddd8fd567e7d5a23d1f9db1b legacy-trunk +25136 9bec183fefff61ced3ccad1c05d6d3f160b399ee legacy-trunk +25137 633e64564edfa1abc5ca2a6568608feb179b9f0a legacy-trunk +25138 f8873625d8f604b6fbf583d1e33339cf0e19c5b3 legacy-trunk +25139 6f958f499b4295705364e5cefbf5c14f0edca200 legacy-trunk +25140 0fe875866d4ef5686255381d6bba58643a58fc82 legacy-trunk +25141 da17a10e2f231c920765942eb5b27a1061a4cb25 legacy-trunk +25142 3e0db984bd3e304c77ae19b3a2cdf8fec87bed42 legacy-trunk +25143 2c6617f270e2c92dbbcf01f0d21c7db6422cef6b legacy-trunk +25144 5a5d94c499750e3d3ca8c594368f5deb46b16f1a legacy-trunk +25145 6c5c112d45339bd772853bf89999cd1d89fa6126 legacy-trunk +25146 1383e6f7b11f99d74369eecb903b293b502bf6c0 legacy-trunk +25147 3ef7bed007f6ed37c29699f64cec03d8677da400 legacy-trunk +25148 05fabd8f4e7f8d65f3d1b0aa5315af942a4e2062 legacy-trunk +25149 19e0a92e32777ed6fa5dc27cfbf9e8871a75edfb legacy-trunk +25150 6a8c46d8212bc67b292e6982e754146711f29ab1 legacy-trunk +25151 95760ab118755f571fb1dc9e423b978c8aad4597 release22-maint +25152 a68ba755d700e5e31acfef418ff23fe53c28de2b legacy-trunk +25153 ce10a7f967e5a7bdb624ec73d6408a5d13559b4d legacy-trunk +25154 483f5f272defc6f47e499c3f69b766bc1e174603 legacy-trunk +25155 c888620e8062c7c7d0f508b0218b339a37ca70ba legacy-trunk +25156 26a54d3f55e47ff354734fa065c59c3efca7c570 legacy-trunk +25157 e7d8a9da3b18040b7f312db36d88fd4df23a3835 legacy-trunk +25158 03a2ba74179b9f15f0dac73bb74a0b1a52a0821c legacy-trunk +25159 adcc14142432e814e20755ac8d3aef054c3dd2c5 legacy-trunk +25160 24098f4f682ed16fef16dfa22952bfe75d7faa0b legacy-trunk +25161 fa3051e0fd9321209f7ea467c574980828cab148 legacy-trunk +25162 2c8b03ed39063a4e30fe0554fe76843aa457f68a release22-maint +25163 e0dbd1754aa908c17c15f8e375b8b6aa12c9c067 release22-maint +25164 aae977ca58a3a7b1e13e1402376b8bb7e24303b1 release21-maint +25165 345b92ed2a3fb7aa2fc9a541d4dc9456fb5835e3 release21-maint +25166 9260f69432a93c9a7d4afd22e4b195c324c61348 legacy-trunk +25167 59d09ba1f782c8f8eaf3ae17b6045ffb871561a1 legacy-trunk +25168 63cba423fa040bf105f2c88c8b18e53072d19dc5 legacy-trunk +25169 7441533aca3bb9bf6053fe8bf91d936c5178942b legacy-trunk +25170 7a11bfc66214317137f35618ee0d64559f1cc3ff legacy-trunk +25171 444591affd0e03cc306c6c66349c67f4fc5bd388 legacy-trunk +25172 ffc4116ec119f8abcd9bf9efb6b70c03ad41785f legacy-trunk +25173 f3b0e3cb340b30218910933c9b9ca18062ac8b91 legacy-trunk +25174 05e63111c3106e0d9ba3b98588f3633615417428 legacy-trunk +25175 905213e286775713cff3e6baa5ced83125fb2803 legacy-trunk +25176 969ce017bd3a175b550545621995ebab36a44373 legacy-trunk +25177 3a707520de3093e7f81a9f8000cd3bc1c004c57c legacy-trunk +25178 90c1f3f37dae46a85fe72f6b10bff6171df6b829 release22-maint +25179 b12dcd276db0fd23e9ee9a079813a0b21de24fb3 release22-maint +25180 a4e4736799b18f369f7fcb23ebe09e54f12c3fed release22-maint +25181 1d86cdb17291609ed0edc3110f532325c4fd7d90 release22-maint +25182 14da7dd37c94e6a648b283791bef6eff2491345a release22-maint +25183 dff228ad17b983525a37658dfce8129ecae1b421 release22-maint +25184 6f455d4918715f3719ef7d83d6219c0115b79d15 release22-maint +25185 06f8a821b683cd13555c8e58bc1f80a9fdc33732 release22-maint +25186 7e7964c682b56238fcbd3338977d6252ed161da7 release22-maint +25187 7ba2a8c162fa267a773a151b312055c90534f804 release22-maint +25188 9b414df48e147e95744421c618656c5ecf8c773e release22-maint +25189 731beb67fec9017a926b26f9a6f2b59043748e0f release22-maint +25190 5caea2b132ca185e07e0bff50d93a736af919625 release22-maint +25191 4f54e9a2976e6c221cd606bfa96c7010a8fc3f95 release22-maint +25192 aa713c4c498dedf3db20fa5717d027daa59f9764 legacy-trunk +25193 070d392042e3eef6702c51878bcef3372edb8a25 legacy-trunk +25194 c1d55a627897740377cf1e7f0c09ea14ccdd7b37 legacy-trunk +25195 f379bc0c5e3fc972473c63e29b1e5c1d4968c44e legacy-trunk +25196 6a1e74adf8d6cec4d2c112667966581987a9008c legacy-trunk +25197 11cc0598574d81845f18c2dbfcea0323ffff53ab legacy-trunk +25198 fc10e70218d3be3c25fca3389e3744c5ad91f630 release22-maint +25199 5e67ad76c72fdadbc8a7148099944af7bc76657f legacy-trunk +25200 fd4184da09830f6dcb0b51f6a1432621eeb1619e legacy-trunk +25201 4b3b06de02a3115bc0408e5af55c367648ed3195 legacy-trunk +25202 fe2b64fc57a0a0e40fcae860e4a2b8c037db4565 legacy-trunk +25203 43d9c2f9a2f6bc021735d90623bbae8e7463865c legacy-trunk +25204 48b59fa6f64722d5ecfc758a1c4fc51411f26883 legacy-trunk +25205 a93a7bcbc386fd6878ada40bb26d9a5d5670cec8 legacy-trunk +25206 26b758c00fb6064531116c112cb81def487cf952 legacy-trunk +25207 45731f1360eece265b92ff359685d5fc8ed14301 legacy-trunk +25208 fd424f519a8ebe83e860383e1495fd575055e4a1 release22-maint +25209 faaaeb535d392e7e0dbafbe36d46a5c86876b210 release21-maint +25210 0d08cb849511808a39debfdede77f8d364fb64b0 legacy-trunk +25211 e0fc286d57a46cd6a787aa5b91e19ffb2a64aef6 legacy-trunk +25212 9e384f10304721087ef75b1d1f956832b6925a9f legacy-trunk +25213 6583c95cf692242db139fcd0dabd9b08b8590d3b legacy-trunk +25214 c433de17c1583aaa7828ec8d6a058c9684761b76 legacy-trunk +25215 1f2e92850188738889ac3b0d905efa026c2e835f legacy-trunk +25216 2f616474eaec7df5ab18c5733629cc2d089f6ccd legacy-trunk +25217 9cff890b4fb076a8351f3dcaf0ce670684d6e330 legacy-trunk +25218 d521cf0899c803b52b0daed49b7e9d8587b72155 legacy-trunk +25219 76607a0c695608f57630443386c46841d34ea1a5 legacy-trunk +25220 20bc4ff1215c0fe70c8740140bcfb474294dd067 legacy-trunk +25221 f5aab8eb8124157b2dfc98a52aacab6d02140bce legacy-trunk +25222 53ac8284217afd1fa733cf2295e3351711811327 legacy-trunk +25223 cbf41925dd3e93171b0dd9161a3ff60dbab86f7c legacy-trunk +25224 f708a907dc691a7acb387441640d34a6ac36af14 legacy-trunk +25225 53fecc8dd4c905ccc775ae34bdac583724709ee4 legacy-trunk +25226 6f62d51c9c12819ad33888689b39ba0c93fdf924 legacy-trunk +25227 da008b5c5035ec05db5289113a4325dc7ecbc8ed legacy-trunk +25228 3cd0b4bb5e34d249aac38179357319c4c19d79aa legacy-trunk +25229 b5d002e90827e06fe7db1bb5093200916888b61c legacy-trunk +25230 042db0382cd3b832f5eceacede6c36331586dd9b legacy-trunk +25231 5043b738b0720c3f0e04c2752680e7f2449ebc72 legacy-trunk +25232 ed861e0d4a71d4866ce6150308a41b7340fc768d legacy-trunk +25233 844fe725b1cd43128ff5ffffebb2f5469f36568f release22-maint +25234 4d721357bddb5a8af5699e6cd942ee6f3561aa56 release21-maint +25235 7faf0fddf7e68aafc9d2c6276253a7e526f2a517 legacy-trunk +25236 78e36f0523a8c858a3bd7317081d56fd2a9f8559 legacy-trunk +25237 e48846717c26f3c368bc797a61b53d47d6bdcedc legacy-trunk +25238 49d93689402b54e0104bc30f6442d737ce2df83b legacy-trunk +25239 8dafe4a78cac46515a63f540343704648fad3172 release22-maint +25240 35f84893acf769c8d2f00a09109aa5b1bc41b097 release22-maint +25241 1c769217c1059f3fe3357e0ce8956543675360f1 release22-maint +25242 94bac88f150f00102f54026ba4f21aa946863b44 legacy-trunk +25243 0a813a3ddb92dd9caf9a5b1c2b23e8b2ea58b657 legacy-trunk +25244 04cf4e13e5c9fb34ed74130d5d19abf92c15e60e legacy-trunk +25245 c8286cc702c9924f1e2b213cfeeae2202fdd0402 legacy-trunk +25246 abedb2418f6231adf24205092a59996f1f1e4c02 legacy-trunk +25247 e10869726cd41b72a8b1f91dc0af3b33f4fc7455 legacy-trunk +25248 836c1dbf23a0ea981cdf63b3f71d354264bcbf1e legacy-trunk +25249 19834cd101d91b5f326e451d9142e9114aaefd07 legacy-trunk +25250 64e5a39f1ff0961582f61a395627a5bb5d425f4e legacy-trunk +25251 17a56e1c6ff8e27d2d3dd9653e4b1d06c1f8925a legacy-trunk +25252 8ed7c61b5f1ba35b15a1a4b51931126621bcbe54 release22-maint +25253 8613df17f19bbd38e591418c84dd1f23ac118007 release22-maint +25254 f245955b3fbe7f4a2c1aaab2250a5db6fb578d1b legacy-trunk +25255 21f59d9ed169f4db0763b83ce0047c0dd81ea503 legacy-trunk +25256 937348ef18b8560423a89e69258140b469a2173f legacy-trunk +25257 98e92a64e73c2ff751ebab255c1f8d1451c3e6e1 release22-maint +25258 86fcd9438cbebd718378e54e64b22b9ec225ea9a release22-maint +25259 4b5c28a62d16e4a4f78c3b4d3a127f0ba3711854 release21-maint +25260 57eaa5d69ac35f50d80a7dc0d0fc4830f1fb9e5b legacy-trunk +25261 4c1ccf36025cd97aadd0ea13167fafcd401c9004 legacy-trunk +25262 1f6bc498e6e56e2fc55e5ef3d0440bfa27a7d83e legacy-trunk +25263 c0518ad72b92e0aa9cada51067056b7f70ee0010 legacy-trunk +25264 f00781d664a9a4b431ebb07e43fa168d6d7475b8 legacy-trunk +25265 dcc0778eb7d3b41c1782acbd367d1012365515eb legacy-trunk +25266 f881e0618df0af6650d11d6765a4f314ea77c459 legacy-trunk +25267 7f6523b321792623a61c26f0b325276d42e19f11 legacy-trunk +25268 16faf687500452f9d2b331183c4ea6aebe16cbd5 legacy-trunk +25269 7c30cb17c2f656d7a0536eb9ecc327ef208dcf2c legacy-trunk +25270 16c2ae369d715e2e9f67f06f21528f3e9cbe3200 legacy-trunk +25271 794fe37ca5f4e8b59963b18d77a6af3bf8c63603 legacy-trunk +25272 1517b4547b8766ca3875053f590d81959621b403 legacy-trunk +25273 9d2ae85319440458806e4fd9aa1038a48918f28a legacy-trunk +25274 0c69992cce09946d38975f23413d601f4770a8f1 legacy-trunk +25275 e163713b47cf21b13cd9b8591a6dc15af682ef2c legacy-trunk +25276 15c0e7aef666d1883c2d7e5f72c9b8a40dfdcce9 legacy-trunk +25277 b9815f4d8be35854956ff2f77a8e662cc819a3d2 legacy-trunk +25278 076e9dc77aadb3857023655f5ef510d88989b7c7 legacy-trunk +25279 c3763976112d5affbb9e4559f90102185d9536b7 legacy-trunk +25280 59bb43b6eb11f25fc9c420df23e298697d86a916 legacy-trunk +25281 0f5dfa33f9ee84e0d6c0787654caec0e2bab4116 legacy-trunk +25282 f7aa327ff0feb9271e3effa2a649e69e1f8f8d00 legacy-trunk +25283 efb6e617aea39dd1aaa7f1cc8c90ea42156ac90f legacy-trunk +25284 87aff648d994e237dc26ef66d4482a5afd52a8da legacy-trunk +25285 1097f730294b2c90a9c7abf62553cbcd75bea53b legacy-trunk +25286 9f6e0cf1ab3097a155e75ff2f13f887c109256df legacy-trunk +25287 24482921a78a9b92d4a595d956654df47b64b31c legacy-trunk +25288 a13bf2f72629ab68a7130754c7a5cd16608d7415 legacy-trunk +25289 7e7159c0283091f8feb7b0eebf60d5cf12eb22b4 legacy-trunk +25290 88e217e5053fe447dfdd078f50b0e4af47de2f28 legacy-trunk +25291 778241581d4a356c60383eed6db607603dd0f29c SourceForge +25293 7f35bb92fbf7534802b89d7ee978789c6036bdd0 SourceForge +25294 7d5b2c679f3bcd13d6f68a07feaf7c110d7b6055 legacy-trunk +25295 ab68ad43d51435d6103a5554b4e3288409b0b1f8 legacy-trunk +25296 b38629b9154512bacd31d1434f51b765e1190867 legacy-trunk +25297 71ffc9fb5986f59531a0859ce002bc8e99f986a4 legacy-trunk +25298 e20d12b5dad1c0fc623aefe60850fd4b0806cf0f legacy-trunk +25299 d742798cd4b4a46b8c47a719dcf8013ba9b666d7 legacy-trunk +25300 8298e9c535da84f1935fb52f263ee15e062f8edb legacy-trunk +25301 4ab29b06a76cba0e22c48a23a15325fb6624a4e0 legacy-trunk +25302 6bdfc9f6f059032d5effc808b4b1ae61014f3621 legacy-trunk +25303 32d0ef6f19557062c2b030a6083bdf9c001f2117 legacy-trunk +25304 f7457fab76f0dbbc70b279d1874cc3a091006505 legacy-trunk +25305 9d44e752d617ec5409b4adff8f5f59bfdd32197d legacy-trunk +25306 9c8323abf1dbd27d9ca0cd7d725499e9a5969176 legacy-trunk +25307 f39213405e05c48b639f3c7ca2cbe0e682bd43c0 legacy-trunk +25308 cbf1dbca1f630cc3702fcbde0b71bd628a46cddd legacy-trunk +25309 766c5937a61ec677a9d827661239afff102e6129 legacy-trunk +25310 91a6db6efa149a2515cedacd9e46eb53651901e3 release22-maint +25311 d2441105a9bff108cec9032d235cde30d87719ac release21-maint +25312 17f8469f09d207aeb3520b94617f26a33cc3da03 legacy-trunk +25313 81c2bda5d37788864d238ed1ebb6ec8c9e672e39 release22-maint +25314 4864444520d92bca0dcf0786c1e250b494aca32b legacy-trunk +25315 676db0300f067785fbd9284b01e467a3719b8b1b release22-maint +25316 0c9ebcf17ebfd59296e169a4a9952a5aeeb8407c legacy-trunk +25317 97f49edcbde720a07348b451bf8c76a6860d341e legacy-trunk +25318 b55f2ff8b25f617e44f3979b9671d117c805c0a5 release22-maint +25319 2e9e1b02b7d7b62b2822d80745cbb153b3c77ec5 release21-maint +25320 9fa5d40cc7222d6f17d59194f08fb043003d7b0b legacy-trunk +25321 5ed782bdbb2aa0079a6d1c3550b38c5ad489d758 legacy-trunk +25322 3957d155f8c550194a8e5d38ea63939f568a4094 legacy-trunk +25323 7a917ad8f4424f52fd496b10ac9f7efd5c73151b legacy-trunk +25324 ea23e6e492903d103e636635b397c590daf52140 legacy-trunk +25325 d3b1f2c0ebcfc3e3f99055dc4648f0ab68437f63 legacy-trunk +25326 2faa23facef72df24ef8b36a2ea398ae5d162b5a release22-maint +25327 94b90cdd6e0fe5e3f7a2939bb5a74a78870dda78 legacy-trunk +25328 c5d3e458749e781e8cd306ed24fcc4d7cfc1586d legacy-trunk +25329 9c402523f8f5ab57d458878a4b45b72347bcf201 legacy-trunk +25330 4d554700c4d1723268a98643f8b327ee7ea094b4 legacy-trunk +25331 62741b25ed65178648525593effc6755188c12ec release22-maint +25332 72c95448ee4b3c0b5c4d82f8efcdff7c317adafc legacy-trunk +25333 b1a871dc51962d5b8137f3f2864dfc3f7dcbe59d legacy-trunk +25334 fce7278d46b0a8490e469b5fc39d0067228cfc25 legacy-trunk +25335 4a1337906608fb76a3e94011682fb379f7d8b921 legacy-trunk +25336 ea8db6f5d1c57926ce5713dc8db4671488d1720f legacy-trunk +25337 052efc06520a21dbf68c1c86cbbeaa1076632996 legacy-trunk +25338 8e0c3b75eff58b15a9866bf80cc4e9b499eb810e legacy-trunk +25339 e964e0fc4bfe71bb3d0327e08a6050d1e5bcab89 legacy-trunk +25340 a0ad69c0bc367f3413d587e4d8095297972bcdd7 legacy-trunk +25341 19e3f8659eece2c50c3f36c7abc52455a140ebdc release22-maint +25342 88a8fcad02d0dccbc4ff797a678f24c6fc3a07e8 legacy-trunk +25343 c80f56010b285c83beede31f6984b61a383312bb legacy-trunk +25344 4e9cc26e03fde9038c9fb1a6191af2d26d1f4370 release22-maint +25345 e08ab347d12e8b3fafe2aae3a49b800cb3353a40 legacy-trunk +25346 4c3387ba119d0187b22a158e4b421fd198302046 release22-maint +25347 18b5c7f64c805c15e4f6cda3ca51b6045182b42f release22-maint +25348 9b45a5874c09919ac0c4ae6c6058faefaa4237d2 legacy-trunk +25349 35d9f569361afe6ca3d09654190aa0c1d1be6cae release22-maint +25350 0f63111bf4c5d775f926697d3da8843ac6dab810 legacy-trunk +25351 f92e868eb440b7609948a55762dcbc9aef6c9ce7 legacy-trunk +25352 c843be5d58a9dc8c7dc2bf54a5a76c9939139195 legacy-trunk +25353 09ab9ce1f52a6024eeb52e7152ecc380f82a7d5a release22-maint +25354 08c5b0c7d9d818e7caec9c75137f7129b5bcad85 release22-maint +25355 a7fbde6e34a50f458fdbee1c34a6aeab63a4969c release22-maint +25356 4e996314f8fb44139d381b8626d3a1e754760912 release22-maint +25357 1aa0ce60f6a85270c152468b219d61c88b65e8e9 release22-maint +25358 2714739d483b627d712890c9bdaaf6114a4b45a7 release22-maint +25359 0b15cf11431e4d176e0ffc1a867547b8d4999cd1 release22-maint +25360 cb5b4a54ff12a4cd8301f6246ab389983e2a3670 release22-maint +25361 defd2b1a842688bf16390963e1cb715b54ea0da4 release22-maint +25362 7aee0f8afac508ce6fc18e0d71f34a5f97119e81 release22-maint +25363 bc5bf72fb5d45d4c0d6aef6a3524fb0de6c7e486 release22-maint +25364 965874279ee2d266596105e3e6fd53df21c0d934 legacy-trunk +25365 5e95f3ee77ec143c7e23f0e665c5716f3a48b61b release22-maint +25366 a6a5b1fcc2a7e8f54ea00cb22c42e6e82d78d1b6 release21-maint +25367 51266b2b4360d4e6d099699350d8b9eb5156f1b3 legacy-trunk +25368 52aa3e3e577f120c592c8fec0a77379b20e1b540 release22-maint +25369 4cdaffc9e18cc0f0be538203e4658668abfcc821 legacy-trunk +25370 8a791330fc203b6c2507453577521e996420bcb4 release22-maint +25371 d24aadfe3c06a9a8bc1737d09f433ec11db1dab8 release22-maint +25372 8ce17da98e8cbafcb98e0b18218749045aff029b legacy-trunk +25373 82fb0f99e2dad318de403a4dd98bbc5c029e1f76 legacy-trunk +25374 963675fe97e7891e238fbfd9b772abd88a812690 legacy-trunk +25375 e799498836b94ec9fd45fb0c61d547a1b1a8d606 legacy-trunk +25376 9885da3feeecd1b130ac3e40e9c086868bf81336 legacy-trunk +25377 e3fb8d16a51aca57d3f9af2a8fd388c04a048a00 legacy-trunk +25378 4eb81869f6197b5b25aedd0372d9ddcf897596d1 legacy-trunk +25379 481e9a46d68011b32378beff0a6fb9baf36755ef legacy-trunk +25380 80a04cbcd0c8011a602ec1066613e4691744ff93 release22-maint +25381 44edbe0f21748e8e2e3cd50012baa8750dd5187a release22-maint +25382 32d24f8d64f7b36da7442916446bc6011e1475b5 release22-maint +25383 9f5e35786752527bdbe9660adabd3eb9eb147712 release22-maint +25384 71f25f95e90259d52106d74e5d2cbd5e648e6c21 release22-maint +25385 b8691601d2a0288297a56d199e19f00644f5fd2c release22-maint +25386 e068440e116f9396e85fef142812faa7163f46b2 release22-maint +25387 95dc3024927c988ebf162da6575db1dd8a540897 release22-maint +25388 02a7c64e3331f997dc50320787b247681b3067a4 release22-maint +25389 fbe820e0c601d66579f1b0130cb66dfaf8019679 release22-maint +25390 7fbefe3e3dee2d722a5dcdc5f5ee32baaa32c0af release22-maint +25391 556fb7f1b606743e18654de3bf549f1cd7b6c908 release22-maint +25392 a5b25a816a6d68c2e93cc864dc259fa8675c86de release22-maint +25393 99341e85017ea46bde80cddcd345656f9879cb43 release22-maint +25394 761075280a95e60be1a56df5462578ae7c392939 release22-maint +25395 b12e97143668d87d8b6db3a582d40557d9dbcebb release22-maint +25396 fdaafaa89587d7990c4eceeaa0d0883a73a256a9 release22-maint +25397 ae48d541f65ac39aa65eba8d12f46a50bb1d82fa release22-maint +25398 2293e0d7b5c4506fe13583e76df9f05aeb0f1ce6 release22-maint +25399 229b624c6b54c9160b392343bba64a565e32746c release22-maint +25400 7223c54b07276d980dde8933a5db0299023a5bab release22-maint +25401 e6d44cf29dbf976a51e4f5acdcbabf04856ef003 release22-maint +25402 1339cbe94cee5545a32bb2fee41c4d3598da787d release22-maint +25403 875fb5b72910c351f8a243d0303bc1fadbe56789 release22-maint +25404 e0a288db022de1b11ccbfca64abf55962f189e86 legacy-trunk +25405 f3863303a9f4fa55f0beac7790adf70cbb6fe7fe release22-maint +25406 47aa1081af28098007e1dff8859fa64ab4d53053 legacy-trunk +25407 1498c6e4b43a1f6db910ebfefcd4be39e07add8f release22-maint +25408 ca2cba10b4487aaf0fff295ef0e56cf0083dcb57 legacy-trunk +25409 2762d2251e85dc64a76210a11a5f0e4d3cef15d9 legacy-trunk +25410 efa23d26fa35d46e4fecc4744f511b81d17f8ea3 release21-maint +25411 6be65923c02d6dc46551f99b78704dc9fa7bf71b release22-maint +25412 9b1cc99f5932a84978c238e35449aca6b32e6231 legacy-trunk +25413 ecff4046197da1808b7a21d80a3321cee70a8ff3 legacy-trunk +25414 e31ad4dd30d99883338db7533779b0cc4b785eac legacy-trunk +25415 08d5cf596b01071c0dc63c4074ec610371271d69 legacy-trunk +25416 49197fd76362b2f74feebb35cbb2180faea4ce51 legacy-trunk +25417 5cbcfde3ad550767df88a195145467a3ed6e3de7 legacy-trunk +25418 86d0f7f86550587a191457ff85d45a76d90d2d98 release22-maint +25419 9f1eb8ff17956ad8e281765524fddea59f2dec44 legacy-trunk +25420 4385431164da59fc65c7696b7c929b9eca91f575 legacy-trunk +25421 ca8a2849dd56ec137c5ef6f1b515e38405f0eedc release22-maint +25422 46bcee11b48050d11595f2d03aa345c3537de643 legacy-trunk +25423 51ee3bddb72ce6e4134c712db43a1bec63088a9c release22-maint +25424 5cb6cc46cd42ce4d648580e5fa7cd6233c555358 release22-maint +25425 1087ca519eb9ae7f25e363f3a883caa9baaa6147 release22-maint +25426 a50baa126c75e6e8d6cf8dd54bd0532f086ac8c8 release22-maint +25427 b8374de84e2ae735151cba461c35727d04693fa3 release22-maint +25428 97224a9cc83c6512a70dfb6a987ce7776aafeec2 release22-maint +25429 f576d900026f36b95993f6495ef580489397f55a release22-maint +25430 5c148f5e1c114200259bbc784e5b470e301697a3 release22-maint +25431 3c3acac86734549fa2503328a9e3c2ec21d0ffda release22-maint +25432 5032ec891e74563e8d2b13637bf33d826edc1ff2 release22-maint +25433 4bbacaedc6e2d7415bb025c46a5c0e85efa7413c release22-maint +25434 c2f90ce597553983137ab077287bf5fc640e1d76 release22-maint +25435 52106290d392c94ae4ed4b42e5a5c8989bcdd630 release22-maint +25436 ece4315c1206f7d42b441b982735eddc3a8f8f48 release22-maint +25437 65926a970a171c81e32d0383606ddeac2d40b6dc release22-maint +25438 5d1b2203b6ecf7cd256b3f7863f930786232532d release22-maint +25439 b383c3ff3b1ecbe26f1634ca338fe6290c7bc562 release22-maint +25440 2852b4cb7f6abf08645d55700ab299c84a91c5ef release22-maint +25441 b70211c1d25679e4e4a3ccc116a5807396c67afb release22-maint +25442 b5b77350a004403d704e7e0740128406aa7445e8 legacy-trunk +25443 8d5dc1a7ee187bca102e00e5738f64591e665b68 legacy-trunk +25444 6072fa410dcc94a4c3c9c03ce9eb3b1a8e64be93 release22-maint +25445 55c4d083c309a0ea772a70c510949888b4881600 legacy-trunk +25446 dfeac0334574f79e06b934c3f0958d45d0eb0149 release22-maint +25447 ad3d59612345a24128b86c899a2d3a9fcf08b01e release22-maint +25448 68a6a9dd42f8011cffc51b65f7e2d3092d0a2629 release22-maint +25449 a9af89868689a058ff0fbc3eeb29f356a2a8b8d9 release22-maint +25450 5b24a6ae2dc4f0d8dfeeb2aa847ce3fe4de7319c legacy-trunk +25451 736fb5aec9b3b7c1e5776fda8288a0399f6ced52 legacy-trunk +25452 4009c08402b145605520e6748cd4542c8e2e0d96 legacy-trunk +25453 90d3ce3eb19cb59ac916627d0e9b75ce623bb2d3 legacy-trunk +25454 7065135f9202f38ce88da1a4cd75a29050c3947b legacy-trunk +25455 7a3e03b541ffb127812aeec7348d0f24564041e3 legacy-trunk +25456 cc8b7f71127d84d0fa538d8b801739c4cd6cc70d release22-maint +25457 66c745a7abb1fe821eab54c526aa4513e7fbb148 legacy-trunk +25458 5955e0e2976d3e9151476f7f6b1abb7d3838dc43 legacy-trunk +25459 9e5ff6747437f9fe4396a9a1927d0243e63acfa2 legacy-trunk +25460 2efd43ca033f649de13525791d1e8eb869f7e93d release22-maint +25461 9667250958546df2ced99bd971288e93a00c65bd legacy-trunk +25462 d0acb3cb011da55eb75631174d4f79b0e9fe567a legacy-trunk +25463 423bc9b51a7e4133c5db455d9f7ba488b465a5c4 legacy-trunk +25464 c81e8ea0c4ba7c736579648bcb942d8a8c52bcb3 legacy-trunk +25465 fcf0c244e287e92d6c6006abdcdab0df3c0aa459 release22-maint +25466 6442fbe5dd04240a165750ecc905549d4eee0d7d legacy-trunk +25467 cd0ce470c153c948aaaf8fc4c539d291ac764d09 legacy-trunk +25468 d38458052442ff152cda49ab987d0771e44eb86f legacy-trunk +25469 93eb4b61f687bbdb4064244cc5fd91205ad70f85 legacy-trunk +25470 13ac27fa0704839410fd5bedcebb3447c7ebd4fa legacy-trunk +25471 354cde7f90a1527aafb68f8197328fbbe0619b7b legacy-trunk +25472 58f2c299b6544338b07672ebb989429169d8842a legacy-trunk +25473 ad7969e8f58dfac395198642945bbce65a0cd60d legacy-trunk +25474 c494084dc6d8890831d32dec3ffb895eb5081e78 legacy-trunk +25475 8b104a85b99c7a277774a1fe6092c911a82a90ab legacy-trunk +25476 79f292dbabcea295db6a610c942b5311591aef02 legacy-trunk +25477 c454b76d51e7b900715cfe4229d0ec55c482023a legacy-trunk +25478 d104bb50a194d32aecd50155eedcb13dac076bb3 legacy-trunk +25479 0c4230269ed3efb98c97e4b68402b0b4359b57f5 legacy-trunk +25480 1046964896a1a4e3966465852dac4b49fb9df867 legacy-trunk +25481 cbc08b172d1fd6175bed9b64063495116224d732 legacy-trunk +25482 0859e764509e6a9626144275424b3a2d10c4eeec release22-maint +25483 b2a2cc0c2a63730b8530cc35d973a6ab0e009169 legacy-trunk +25484 d4406fbfcb4e54e9b41534e909784445c82f2208 release22-maint +25485 074b7e3e548d8e73111e9ad92fea8a0cddc160b6 legacy-trunk +25486 3a06e19df46b903b297aee3834adf14e6848cabb legacy-trunk +25487 edf05c69bbf3bbbe5035fbfc4680c0690d185b5a legacy-trunk +25488 74f16f7a63696697c619e6de12f203a0bf9917f8 legacy-trunk +25489 986eb1d4ebef53af456836a30b999df5631103ce legacy-trunk +25490 5994440e5dd52b86c537da30b070a5bfe4fe592b legacy-trunk +25491 2bfd137a976f5983e4e7c1691d27dc953013a978 legacy-trunk +25492 e13aa4c672a949ba870c8d8c86572679ede37e5b legacy-trunk +25493 e81b3076a6c30d9ca427c65db921dc965a82aaf2 legacy-trunk +25494 cca988f3f64f2047a3f4f3e142c6bad4327c18c7 legacy-trunk +25495 99e60817ce6ece253196f194234ac3d18f7f655e release22-maint +25496 54932054f6a941e5eba8c8b275bd8380296ebecf release22-maint +25497 e599e7b8abf70253bde5bd4deb4e7efb6425fa15 release22-maint +25498 9fdde8ccdca65e44b8673f0a23314ed21989f118 release22-maint +25499 7e188140b6181c279309eae23985a6c9dd053de1 release22-maint +25500 1a5110b4bd72a2e06b96236339f5be1070e62ee4 release22-maint +25501 ed2a17a376d0c6bee6e34bc1bb0dbe2884cf62df release22-maint +25502 3477030327a60e30faad28c8cb6d02237ad34f21 release22-maint +25503 1e8be74a374bbadd6226564e1bd6f6be4b5c97a3 release22-maint +25504 4ff9f8a74c827ef3ea2b3125de8e5c9b0df5b90c release22-maint +25505 c25d6d780b1b472d8b5a635275b36e3ee9af092d release22-maint +25506 fd0ee0a07047d17ec718f1424899eddb61447cc5 release22-maint +25507 8eb591dd768268d0fab916bb9c34c0343ef80bcd release22-maint +25508 bef44d108e5761380f20db3d73b09fda71074bb7 release22-maint +25509 db040938dc663b3d6eedd6155e1ef72e50cbd923 release22-maint +25510 1d1a01d956a2ef0e849f08d68e65c166096b0866 release22-maint +25511 ea9be2e5d95445441bf73f022d1c51dfca3de3dd legacy-trunk +25512 1e60b1e18145dde282ca94cb12b8919bd1f11bf9 release22-maint +25513 e4d7e5129e4c167d0cbf9a26d9f4d812cf98fe15 legacy-trunk +25514 4b345951a5c51cfdfd535a796d422c1c7b161fa1 legacy-trunk +25515 a53730cd29c1474a5d7cc8be3c8929b7fa786d91 release22-maint +25516 513103249462d7c5b3f7ba0b0b8fb428ddfd89e6 legacy-trunk +25517 e81a4e99ecfa3c6b12135b39ac5dfbcd5005c867 legacy-trunk +25518 345def37b0d7a587e750a46b6fe0382f9e663eb1 legacy-trunk +25519 e30162b1b30468dbfc6194f6772f05fcb3e81154 release22-maint +25520 2b3f4380673f8162ff128d2ccb892b1bfb00f398 release22-maint +25521 b1d573a2a7745b3793fdade46843fca87347a4a1 release22-maint +25522 71902e1cfbef30b176b8b6e89fd9cea48dcb45d1 legacy-trunk +25523 d697d88d25b40caeacc50a41f798df10b38bddf3 legacy-trunk +25524 af52bf8e2b89f4355a0aad261e41a96686bfee8d release22-maint +25525 81dfa2db4c61b30ecb883ef5f84a875115a421cb release22-maint +25526 42862169541fb9d5030a59a055f008071e6a2023 release22-maint +25527 af6122df28e07e42ca5698085f22a554fa8b26c6 release22-maint +25528 22c66587c452e24998cc239fc1d7eff9395a1d03 release22-maint +25529 837951ecdce95754c999e855d1da9f6fd5ee4feb release22-maint +25530 8579d3d301d48d4850aed6444d0632de1b4cea74 legacy-trunk +25531 68831ac5495bb013fd03f890420f4e82d4d003f9 release22-maint +25532 4d5becc6902bccf3f6cbf4c7836900040ba9a3ee legacy-trunk +25533 32a1b484a2f3a52a8c4e8e09f3f77a3aca6ac5ea legacy-trunk +25534 103c4c4cccfb7b794be3537f0e9cc5ae2d021732 release22-maint +25535 ca8bd997e419d418969c86b911fbc632c3c084d5 release21-maint +25536 c5c9e36c39099f939371e849d78d1d295e82a22e legacy-trunk +25537 0e3e69e01ecd647d9bf357b05cb2b89f1665c74d legacy-trunk +25538 cda306b2321f6d62b55b6434ae11bd9ce9226f65 legacy-trunk +25539 e2196ba34330fcfd9a686527a28c72def1128db5 legacy-trunk +25540 ee33bbaf3381934f6b7fab7812adc67a958d93db legacy-trunk +25541 6fa56c43a1bae48c8a019c95a8f018fa780156c5 legacy-trunk +25542 daf04db1a6998d792c045d6be9c0f9aa77ab266f release22-maint +25543 266334a5c4ca26c65e6323f96dcda26e21433bae release22-maint +25544 d2a76f7dd651066d677bd4e5003c522fd1e0837b release22-maint +25545 f8a9db67fa5b45e9debbb153b702733613673e87 release22-maint +25546 534e79059be10087684df906601ee8258b6469f2 legacy-trunk +25547 81a8db15fb988bea40934ded4fae213f931794ed release22-maint +25548 ac1131f73d1fd709db76883af93436ba8e15f4f9 legacy-trunk +25549 c6289ec8da0a79cc18dedecd9d87eb6cde78f856 legacy-trunk +25550 2c5f80371261edfa9dff3a24ebacdd9330120dfa legacy-trunk +25551 c6a660f89ffe8568efd9d0b218df58004841f887 legacy-trunk +25552 1ca2eb650e1377b55f7c9a740f420a9c5a5020d6 legacy-trunk +25553 95e86430982be7d920067f239d0c21ce0f579871 legacy-trunk +25554 cb4edd10877d917c8edf7af347dd54ec5f754e1c legacy-trunk +25555 044f9e71320f62cec6022d35f9c3b90e6a03520a legacy-trunk +25556 98a3fa5f687caaefc159fd1e56a61bd9d902e4d1 legacy-trunk +25557 fc6dc2ea25cf77b8c0703f6621b886a60401b2de legacy-trunk +25558 24ba693e9c739e676ef22450083a91db9601da8f legacy-trunk +25559 01d4582697502d6501abbe7609458a1f19803827 legacy-trunk +25560 d7f3f83b96588c2c0e50fd5b72a4a9d8c4849f23 legacy-trunk +25561 26e3b563e26132dab8b14fe7491c186ece21c208 release22-maint +25562 4ebacaee3009e267ddfdb59e70e0b2155bf67e99 release21-maint +25563 dab05ab0347b93b717e0602b6a9291851aaa2ccb legacy-trunk +25564 ad81f8fb4ee4751438a7512ed0cf8360ba358b02 legacy-trunk +25565 5f2c0f6f0af7349c751d0d835210da63ed6f8627 legacy-trunk +25566 409ac0f6898f41b2d7246a7048a1a66799bc7320 legacy-trunk +25567 928c1282e5e2b5cfc8bf7a33d6ca48f712b42599 legacy-trunk +25568 f4487350c53787a8f4bc49e292aada3c3d242310 legacy-trunk +25569 b898c0feb754e489fc4353fd9fa29efc6e715ec5 legacy-trunk +25570 f0ae376251895c80bb19cb09d633ae659f441dd2 legacy-trunk +25571 7fef356dad75f91bb7c246b635ffeb63f8774987 legacy-trunk +25572 0b08eefb6fc077edde6d7578e2edee4527f7509c legacy-trunk +25573 0dc10d55706238d477f9ca1fea8c63e69fa9d99a legacy-trunk +25574 239269c9651443dd2dabb258b068065934ab1d6c release22-maint +25575 23606b49af74304643a907ae06d50e557e98329b release22-maint +25576 26bebf20891e759bb20a041da3fc4c9cccdc71c5 legacy-trunk +25577 e24ba04d01b08e71cfe66f3a2a9c83a65a34598f legacy-trunk +25578 907832ee7173713943c032c8c8b20c8794962cd6 legacy-trunk +25579 64c731d180e91e1dd26784199e26fd06b7d88c4c legacy-trunk +25580 da518fc7806674326847c6f98858346cbb9793c5 legacy-trunk +25581 5440e4b17affb2ee3a2a23784a28d04ff6e3656b release22-maint +25582 78bdfbb6e59e135de9ba11b75aa2ac02b640287b release22-maint +25583 81255b5be219fa361f397e55b0dce04c70af3959 release22-maint +25584 d6d12e21d44f5270b6d5a299ad288f97ff9e027b release22-maint +25585 e61d2982fc135d415c7e37d84eab14376dbb70fe release22-maint +25586 01a55c3d505c0d7aad795b7885d8c1520e132706 release22-maint +25587 a762edb0461a7bec470a0ccaaa67940867aa1555 release22-maint +25588 67a5e25dc88bc74eb1c90f10fde01c8d8d02dc1a release22-maint +25589 7f4d15d878ccd6052c12cf0811ee5a7286125a54 release22-maint +25590 2f48ae5c8a9470d19d24bcbac01cb46f4a80515f release22-maint +25591 4b6eda7d0c8f54cecd1a8d80da3960d3626f7428 release22-maint +25592 9968d8dddd53dd6296ccc1e701c95d2634caea7a release22-maint +25593 fc4056b9cf18c17168a76e095de36038aad12f88 release22-maint +25594 452cc0f3ae3ca8f79f3a10571874f706dcb09d51 release22-maint +25595 641f263f4f44bb8e494dedb040848d4a0228fee9 release22-maint +25596 182f0173a8eef5bc1552a88660947e577d3fb444 legacy-trunk +25597 22fc8b822d40d2b0611e1390e784822e0b90b098 legacy-trunk +25598 298879a9f9f4bb45bf00fd5b87b53ade27accc83 legacy-trunk +25599 50c6666fc4567039a6808f38004c6f3b7072a3e4 legacy-trunk +25600 427e331b41a2e1ce4294c2dc7fec77388429321e release22-maint +25601 ae578c8c6ced38078654ce1eb330e32ddfb77f1e legacy-trunk +25602 e54f5c50ef09b9daeaf16efd3cfb0c0b8c96b6dc legacy-trunk +25603 236ae53d646622463117be97504e7d7ac60431b1 legacy-trunk +25604 7584b6f1afde424dd4052e7e6a165e0fa7fcf1ca legacy-trunk +25605 163de71f1942938ac2a5cf91c900d16ebe9b441b legacy-trunk +25606 6a279e172d223e6ff29de1b0324890e9ffc29a11 release22-maint +25607 72fda64b2a2e8cdb4cc380c37acf24a8bac7c706 legacy-trunk +25608 e8e465e6d45f9f0931a13367ba1adc8b46799be3 legacy-trunk +25609 27a0fb019599124ba361954656374ec14918d4d0 legacy-trunk +25610 abced5581c1850a4ac2311f998b7235b48c4c824 legacy-trunk +25611 1e7cc8e4baab95a4ab676c2d090b4bce4e69088f release22-maint +25612 272f965385c713c78c30fa8fd25df9ea15ccc1f3 release21-maint +25613 edabad025ef1a5b5e5172a593051a700ffa99db5 legacy-trunk +25614 9f119132ffbc463e9790da5f9b4fe445cf52bd35 release21-maint +25614 70edd292c757af68ca22590cee8c7d1319c99ee4 release22-maint +25615 37b69815af22fd56f63dff4f84b5823aecf89356 legacy-trunk +25616 93db723d5e4789120a18322741b3fc191e6029bd legacy-trunk +25617 093942bae1a639af03811a548b50a5a50c91b76b release22-maint +25618 54b636160acdfe646d522acabf2a10c8fcb53f8b legacy-trunk +25619 aa3bf525f482cb98d57727a40d52e04312a194cd legacy-trunk +25620 216ccda284d8585e5bfdc26e5b46231738537b36 legacy-trunk +25621 07505a4510176bf3804bd331e84ca87c969f19c0 legacy-trunk +25622 d30797e5cc1ab8553593897142e120d377ddc03c release22-maint +25623 6c34cd3a98a93e028fee7ed9d2cb25add63d9239 release21-maint +25624 aff21453befff1a331a25f86058183cb8a01f771 legacy-trunk +25625 17e8a3c9310cc3902f4c7a6e8ed50ba662a9eb8b legacy-trunk +25626 8e99d56819846ef4085f53858cf24dd1f874d275 release22-maint +25627 150a2a9c55b87caef24731668eadd5a7a96e27ab legacy-trunk +25628 6485d1ba735cc5ec5a6830034f6e9e8f1848c63e release22-maint +25629 f9a5a8fc317796e01c60c8d33f3fbb36af360355 release21-maint +25630 2a8bf3d0bd865eb70c19e52c86a1294a6d36a717 release21-maint +25631 10007aa78a5e954628d9572b3e00f9fbae2d35e9 legacy-trunk +25632 69ad2a1ad689e1460f019e7e7403de4755807251 release22-maint +25633 0bb17d3b5197d16b02d6c8c19c058596421e40be release22-maint +25634 283816529e7250ffec5442789a2b64364470fe97 release22-maint +25635 763d5ae89e9ed87c04d09afd183e2ffb60b52cec legacy-trunk +25636 17ca2907d1359d1322e893e03725db6eaefe0291 legacy-trunk +25637 3c685c037794fa82dd8184f30adccc877c8fd389 release22-maint +25638 f2da258aac20968566be4a648b675654f7460faa release22-maint +25639 9891958fc4b296b71142cfda321d86dafe0e0c17 release22-maint +25640 aa44d3799b47bbb352ac6c12e8cc81939ce1c5a7 release22-maint +25641 6d4e05d257596f4e6358e106b9e03abb52f144b1 legacy-trunk +25642 22e0dada56d7b864bb3ed5248fa7c5f607ba6914 release22-maint +25643 6a348a3900cdf8360500bf2554fe5328243c1c6b legacy-trunk +25644 f0346d93077016e2c6a1317b022be8607eca8b38 legacy-trunk +25645 5ade7e8204e5202f61151475eea1d934c47e3bfe legacy-trunk +25646 160e335fbe6fdd2b41ded163629c5f3ae3606973 legacy-trunk +25647 56f4dfcca9d81fc152b524df89a87685f9fe1463 legacy-trunk +25648 cb6c85d8391f5ed5172527c4c8020c92b2085581 release22-maint +25649 e4e54fc5fb3d395288aa1d04d666d0fd8fd2fb38 legacy-trunk +25650 9078f2976bcca3c044e88dda5f663a14e2434e25 legacy-trunk +25651 1873833c616df433b17dac1f976b3399b278eb3b legacy-trunk +25652 a7958971de1c72dc3ceea8c494f618371647ee99 legacy-trunk +25653 12577ae9595623266cc99fee88c2820d45001829 legacy-trunk +25654 49edbee9dae22248c5d31c8647a3209e27467fe4 legacy-trunk +25655 24af842030a0b4787863a499facb98fd5b4c06e6 release22-maint +25656 c6c1a5fbb6c1f3edeef9f77cdf69aa530b42bd1a release22-maint +25657 3c74a1b1287afacce2b87a7a8906831880df1a79 release22-maint +25658 9a091d72136ac05f15e84762b68197777af7d719 release22-maint +25659 543b2a48467b64cdbe3646692502188ac292e745 release22-maint +25660 633a96a65009148ece93ec8af8433972cf5f06a7 release22-maint +25661 41b5153d705e5f7c0a681bf551eb230c3618c1b1 release22-maint +25662 54bcc5ec3a5125572d09015ba3905322de41ac37 release22-maint +25663 a3460cb23f194515487ed289422c259bf0b5914c release22-maint +25664 a0cc52735e6e468d94ff20ef6446194cc2793af5 legacy-trunk +25665 c403633355855196668af573706db2cffd8ab7a8 legacy-trunk +25666 9c435b1b59a56c044afc9f07c02469a7eb4367ad legacy-trunk +25667 ea3b187746f7d539e7c2238313b861587e9fa4bb legacy-trunk +25668 089ab5ba9466b46eda6032392e2661d9a4cfeedd legacy-trunk +25669 99e1fec26b405abb44b6210da3dcb051c0aee492 legacy-trunk +25670 b55d7bc05ec88676b2f108f48965e33604b27223 release22-maint +25671 134cb41869466abcf42f808eb5ba1adc7dfe0f4c legacy-trunk +25672 049739ca0c135d1a51c1e5129289ba995df4926b release22-maint +25673 35c9be693888e00bdaf850aa0fd8b0d9856097af legacy-trunk +25674 19d1d35020bd437d3bdb461240cef0d206a4d38a legacy-trunk +25675 3f6ddeac4856b5288fe0703f2c54f1a097d7dbbb release22-maint +25676 a415ca3e890386014b78012e5e2e84b86cf9e67e release22-maint +25677 0408ecd84aa2a26049f2e91dd4f6be66fe5c3253 legacy-trunk +25678 cc788b3b21b6224b36d76995b38eceddfdff7244 release22-maint +25679 dc80ce11fae3909a314175580b4b324a0b4a31f8 legacy-trunk +25680 5f4ffbfe6be681b5f960b6b19f4390ff03aba6b9 legacy-trunk +25681 ab74ff80f9d0ac53b2322cf5fbe638969e540e6e legacy-trunk +25682 dc6054e5b642cd3c3f1f617d7d43290e24c2d0f0 release22-maint +25683 096b75120e72b44fe4a32de293cf8cb200ea6b21 release22-maint +25684 5a778ae185123891ceeaa0d619ac4a2fa5f87cb3 legacy-trunk +25685 ac976d36708d3d781c0f7a60668c714ef4806bbb release21-maint +25686 31d9d11a294ca97d5bcfb91cff9ec60b243c1ddd release22-maint +25687 dff0a44b2368e414a44568eaf72a135ff960b4b2 legacy-trunk +25688 16f0defa45c20df2604160af3813cc291022aa69 release22-maint +25689 3992544dc145fbebfb1373502866cc4948809c6b release21-maint +25690 6d08a2955bb62518727921f1408812ee75d83070 legacy-trunk +25691 a6193a87f500e2777b3f196838e602b6bf7fb854 release22-maint +25692 1a750fb93b169361cbb0ef8d0461f5060f2e96fe release22-maint +25693 f2eb95fb4529e276956f06adeaa7b322b154085f release22-maint +25694 28e37905bee458293485973bb0c174cd2898e38d release22-maint +25695 79856ad749ab7dc73986a93123206b51cc75d3f2 release22-maint +25696 debb005f1673a0392f73d078990eb801a1d21360 release22-maint +25697 0fd3831cf2a0757a3f637075da624f8c29ff02de release22-maint +25698 029e4cbd231299b1bd1cca2aaf6fdd44ee134ce2 release22-maint +25699 c901d158ad68936e9c11516f23ad288a13b06bd9 release22-maint +25700 a34f9195f611e73f6325fef4da3b011807208095 release22-maint +25701 6c3e32357d9108c327616abaa2e1bbdaf36abc9a legacy-trunk +25702 7ecc49117d7e88b67250f4c3437f263b7f7d99b1 release22-maint +25703 2548e2f323fa7e9ce3f0864b3724ce0490d73cbf legacy-trunk +25704 12d204d93af3653452fcf1c1682cc6a45297465f release22-maint +25705 641fb4b4720e769ceb81fcd4621a575b83012c78 release22-maint +25706 f976faa330ea167d82ad5efbadd84548fa2e1982 release22-maint +25707 1f73251c625ac62209df66c6298af1868bb34cac legacy-trunk +25708 27f36f4bf5258bec45033314fbfd50828234e0e4 legacy-trunk +25709 b879e6851be3b98f1b1c0a510c92a25cb276eb48 legacy-trunk +25710 51aa9eb24d81f627b0d9cf27b7f53c3beec62f75 release22-maint +25711 fb9a00821c0d50d33f80dc6dc12bcf4b7438d46a release22-maint +25712 4ce517b3e301f6cc52d64da88d11ca1c9bc18e96 release22-maint +25713 a2733feffb36697a1c14dbb5af8649c907295b78 release22-maint +25714 1bb4d2babc145c6f2b5e7ac30c0f28bc23715928 release22-maint +25715 5a9dada7cbac37d55d72426890a55b0c03ab431a release22-maint +25716 dca4a7c36eb99cc9a5b43e8ba639c038ba107dee release22-maint +25717 3513a9d090a9a95e3fe4cd215ce362860f7baa03 release22-maint +25718 92ebe49d22c53bd158a9cf614888e0e9acc33b5b release22-maint +25719 84f2c7783d310165b7bfd84f808615db57628d2a release22-maint +25720 dd17aade3beb8a55245efba67e8bbb37f410157f legacy-trunk +25721 df979bdd6aefd2bedb24537008804222efc854fc legacy-trunk +25722 c8a6ea00a9e1adcbb19a62c01eced04251bf0b27 legacy-trunk +25723 17d561243ff812dd12af6ed80575baacdd562ef7 legacy-trunk +25724 8ed647d31f44ef4fa95b15c6fe1235842be00c14 legacy-trunk +25725 6ac4150c4e8841a29b21b6ca266f3bef8919a297 legacy-trunk +25726 34cbefd2c3fe966765585700517e418f7c8c5943 legacy-trunk +25727 c854b6d0b2c04bb71977fc1c4f248973d448abe6 release22-maint +25728 121e198f6dda9e8b953d746f0142e824412a04d3 legacy-trunk +25729 f2b6ccc00808514ca34c1bbed35389420b757f28 legacy-trunk +25730 715d631eea2f42623acfcc8affb51412d3a06854 legacy-trunk +25731 7f0d39014e2e15ea9fb3daa100a926c9242d8271 legacy-trunk +25732 c210562e15580c626517cf2b92fc6575c6a334bf legacy-trunk +25733 b357df301f5f256f2f34ad29f3387ab5304b753c legacy-trunk +25734 071f503e5f4f4aec353b4f9d2992aca3a06bb4a4 release22-maint +25735 0a96dab70a1574eb8a0bd5c41fb7d087e577fd45 release22-maint +25736 2417694324ef08d130ff3ffbee9bec8f1b9c8425 legacy-trunk +25737 8600dba4f59d3d2521722cd7daa12377389e5b09 release22-maint +25738 cf9f1b6dba3b4787deb9fb5e9c19d9bcebbceba3 release22-maint +25739 775da6178e86557f01c27adb6162c18e69ed7d99 release22-maint +25740 4668d1c926cdf049cf58cf9a7aa93a2da083707c release22-maint +25741 55512fe1d6f14a4172e54e7519378ed94f3aac7f legacy-trunk +25742 b9004b836994d943c94ca0d4fc3638cba3442380 release22-maint +25743 68e7e8dfc5f502bd63e472f0d4a8649c6b9e1a81 release22-maint +25744 165e20ac0ab12a7c29439359445d9fea070627b1 release22-maint +25745 d5f63e7cab31bd4b653ed61bff2c10fc7831bc62 legacy-trunk +25746 42e6c3cdc0958276c62260198805b5170a5ee31d legacy-trunk +25747 8fc9a576fbffc41da510c0fcf2117c3cd57d4123 release22-maint +25748 0929894cdf95fc0561af20b19387d0569b8caea4 legacy-trunk +25749 b59e8a8df57e867b2b558d9bc132e176410984e2 release22-maint +25750 c73c6a5b6a8044be3795fe00504cc56bace9769a release22-maint +25751 fd050ac1e0ce5b28df7eaedba09dbe39c07a2e50 legacy-trunk +25752 af8841ac2989dbabe2fdcc4664486ee05526e860 legacy-trunk +25753 11f6f8c1ce734f98577aaea98a5ee591d6ca8563 release22-maint +25753 765434e7aa019c1bb82f9813b8025830867cbdc0 release22-maint +25755 e88d5e2687ee473066efb8036cd7938b94d90ed0 legacy-trunk +25756 ab6616e6cebfd1fb9c78e2c49af08a60894fccbf legacy-trunk +25757 0c8a385fc8a0130a10c3c80fc87c59c684fc2378 legacy-trunk +25758 6706b83d1bd15c39ab95df4379f4c379dfc85bba legacy-trunk +25759 132a064da656e523e6f05ce85f1327c24db8000f legacy-trunk +25760 963e814e69ccf5fe602c4bc0c264a059f31748c9 legacy-trunk +25761 984eb995fb9edc3c5cc1e88230db26721cc8de6d legacy-trunk +25762 71857f162231155631bf16b215495b553a80b163 legacy-trunk +25763 8bfcf68272482bab7310474b213279f5199fa801 legacy-trunk +25764 a6bb80028acf2dcbb642ced78bb6341cbff8784d release22-maint +25765 351f9b4d80c5d270c5bd3ef4c5af9311e50a74d0 legacy-trunk +25766 cecda4ecc090ca6988db8dd62772be91817b2f6d legacy-trunk +25767 e150109d2b9c60c9ad838e274b00548c905c08be release22-maint +25768 073db68a2c2bbeffa1b7c1467fe9f8e3b109aaa0 release22-maint +25769 0c8ed3841a64f8f826bfd5788bb79030174a0cbb legacy-trunk +25770 a3ee7132036af05d11ec622ab1e688c6d63178ee release22-maint +25771 4e823bf2512cee87f96917634c09e2e6b0b1e4da release22-maint +25772 457bf184e7ba8b578e2ae4a0aa77f6ece70ef9e3 release22-maint +25773 4a4597bc4ea222784014e0cc4a38af6edd2d53ae release22-maint +25774 36c52cfbd0b75e6054d2e0fee8868526943b7f21 legacy-trunk +25775 927bd4f6e35b2ee8e6252a7044cba6db453d3049 legacy-trunk +25776 53a1f21b04514893c5d7dec5518a9a12eaebd339 legacy-trunk +25777 701340c8772319bc6e4e409b488a7fafc87ebf10 legacy-trunk +25778 c78ffbfc36d93660ddfa8c7d0113f03eb3bd4c15 legacy-trunk +25779 df35656e7d99718ff7a7ddecfadd582da48ca63a legacy-trunk +25780 e62174c7d8e517686f884efd00b7c9acc92003d5 release22-maint +25781 b148e18ae77ab0391b2729b3a85ca4dc838057b1 legacy-trunk +25782 7afbbe288af3da6cd9c8b9dfa9ce1a6fbb55caab legacy-trunk +25783 f64a1197a52a478165baa398564d7448bcc779e1 legacy-trunk +25784 9895e2e336c3a10f6bdc1c75b83c0aec5fef0d72 legacy-trunk +25785 b523a470a0ce98be94ca0aa644d4f7b4b30a8a20 legacy-trunk +25786 5c3a259238cff53c4677b0cba557b183b7b60849 legacy-trunk +25787 be492df83d03008ba57cae126db91544295f925c legacy-trunk +25788 f52d6a675f5f78763146c8ca1bc98084cabec5a7 release22-maint +25789 eac560cc0399d7f338b037adfeaa8ab6068d8cdd legacy-trunk +25790 c1068b092879fce61b969baa71259c9861f04c4d legacy-trunk +25791 f4e24ab0d124aedb58949949503c12b565ee10df release22-maint +25792 7002f24f818fb2c7e09a7c8fdbc085e1d6fc8b00 legacy-trunk +25793 503b92e66a8c765eecf59c0f0cabeb33aa336b35 legacy-trunk +25794 832058f21aa274455e23f5a88e3cccd8318ef9cb legacy-trunk +25795 237ad43f89a8f94502fdd0403f64643c05f02403 legacy-trunk +25796 c0ae6f46f231574322ecab06ef2a0005ae4c9883 legacy-trunk +25797 d8d981d0a47e5f2a9edf5920996e0ded8230c19c legacy-trunk +25798 888fcd9b858dce3317380c98bf7b35214ac57d1b legacy-trunk +25799 d2e457c44bf2757529fb5ac1ef1e71667db26289 legacy-trunk +25800 08f742df9937a2ccb3c9dc572c318393328c4c16 legacy-trunk +25801 273eee38712cffea1b3a7f5b184d3d69695c1f73 legacy-trunk +25802 10846f1e1592f99abbd0b70f1ae3d49529956444 legacy-trunk +25803 b1836ccc951c97f5015c6fc5240e6b9eba9b36fd release22-maint +25804 9afeaf9979a0a2ba1f8577beb5347ad9f1548857 legacy-trunk +25805 d1aecf66316790e5e81f867be560ac5a9d09838d legacy-trunk +25806 72fd8416984b808508d46aba6e22ba1ae186dc26 legacy-trunk +25807 ec1a5a029f74c57fe282936c507f7eb7112eb894 legacy-trunk +25808 d5aad6c581c9ae473e92c5d2c74961090c2d6d3d legacy-trunk +25809 ef6e2fef81d2a8b8ba8e1205bb09c3597e7e9771 legacy-trunk +25810 9e8aa29523f0979762bfde0eb5a5133fd9866c54 legacy-trunk +25811 881b6484f0dfaa61b27e3827f0ef0f6be51183f1 legacy-trunk +25812 52208fe4ac471148cc71f748b4c5d09ac31b38b1 release22-maint +25813 d864e2bd91a6e1143fe9dfb81cfd623a1ef4ce02 release22-maint +25814 23925df4e3713068fed89e50b88bf42213bf61c8 release22-maint +25815 7b5d6f1f1c6ec7653b3982221eeff6b94da032df release22-maint +25816 2a7f71a9bd2e30ceafcaddb5e3e5d78b95c867d8 release22-maint +25817 1fe3802336a356cade87ef60c6f3ac49fbd8ce79 legacy-trunk +25818 a367bc61d5b607e9f1ed9b2807131204c60772dc legacy-trunk +25819 f6e6fdb935d21421934a534f05e9a743b6341f4d release22-maint +25820 68fe2b391159472ea0f46003550597a61062bbd1 legacy-trunk +25821 bea01dc2f00e2bf3e2e7b84e5898118c75a9e4f7 legacy-trunk +25822 c3e0ea09737366db994c2c9c60b4681e72e45bdc legacy-trunk +25823 9ba9d1238804f458708ef4de9513404d63d4048e legacy-trunk +25824 85bd534cbd19f693315884580204d3d31eea6884 legacy-trunk +25825 f551af92660eb22f06b541e9501c77f28a40c868 legacy-trunk +25826 ab98a0def9d763337f01b665572b1bef2fe0b6bb legacy-trunk +25827 ab24ef2c932389afd755739e4c8766065841473c legacy-trunk +25828 1db1510abe2187b656eb247d9d96c5462c4db4c8 legacy-trunk +25829 aaf5ee3b8f9355648e5fe651473717f4f64dc520 legacy-trunk +25830 eebae4f60d05ca3442773d784d59c636a0da05c4 legacy-trunk +25831 8d0061493c57d227bec9c9b9be55d75119b1b1c5 legacy-trunk +25832 0e4758ccfe2be690ec3ffc8f5c2cb15c134e13ac legacy-trunk +25833 acf5ecd806afc79fa5187f4e75c896ba467bf622 legacy-trunk +25834 ad3825d04decd62264891d1b03b2fd578753ffda legacy-trunk +25835 bc88f1b47648de6e6e57b1faae31cc05fdfb63fc legacy-trunk +25836 7aded6d0696e34584cb99e28adab1ada3b7bdcda legacy-trunk +25837 e4d10bd3973f16483e3668c9ccb2d842a5ae0e30 legacy-trunk +25838 d77e748865ff9b89ba93c8c39e2cc899dbdf2145 legacy-trunk +25839 805be7c0e26c5309f35ec968eff7ed91a1e520bc legacy-trunk +25840 6408384c8137b248b571584c1c43e59ba8107cd9 legacy-trunk +25841 fb45791150d197777396b99358ae218a3a2ccc85 legacy-trunk +25842 15702e1b961ebb6cfeaa4aa6603382ef07a7f646 legacy-trunk +25843 7de3c9b58db8fefef4874753484a8c7fa6ab06c7 legacy-trunk +25844 23b9ae6b3f7afeb5a04b3461151675ee5f9d9186 legacy-trunk +25845 0f1ae37cd8eb027e93757a8200db64b8eb4fe839 legacy-trunk +25846 ffcb2fd2947e128a7812ae6965734f7610157a89 legacy-trunk +25847 b360a650a0dbe49ed319b5b342fc3f79920d1885 legacy-trunk +25848 8ecd1bad24081b5c95218405a1ee77acbefd799c legacy-trunk +25849 f02cdb2bc17a73fb9d41296f8fc2e0c046d073d7 legacy-trunk +25850 1361f7bb3f1993716bd4902a160fa5a6d2bdf7dc legacy-trunk +25851 6039254aaadc48727978be9477daa490c6f4194d legacy-trunk +25852 d4f541467b6d52e588ff0c423264599e1a616818 legacy-trunk +25853 ff9ab7d30bbfbd21b6b7161d4dbc3552d37a570f legacy-trunk +25854 422513f420cf39fc271b456ab14cb5736002d114 legacy-trunk +25855 66adb551cd38f3d2b0fa58c6071279f817af24f3 legacy-trunk +25856 7224a1df4809fb471af34b2dd0f32a937c92eb5e legacy-trunk +25857 91f9a24887cb5e5808ee053a7af0cbe332169c7b legacy-trunk +25858 ecd181b02a8a966ae1d7ab91f10fd21e1dbb78c7 legacy-trunk +25859 393b0c3d9773247a6ff313ed0f93cf8cc2c7c3f5 legacy-trunk +25860 54bce3cabccd57c7c38f6e430a6ca6988583ff39 legacy-trunk +25861 3a3de6567f1a5d215972e656afb6995513772495 legacy-trunk +25862 82bdbca02c0751aca3937a3e9ec35eaee54f757c legacy-trunk +25863 9e3d6b5cee0762d66053962a0beac8b907c801cd legacy-trunk +25864 5b8be8611d8cd891d122c898d3ae5f5dd3708540 legacy-trunk +25865 c8165758a6de7c2a05acc95795a6ded57e275d3b legacy-trunk +25866 25e2b580b2cfbbcb1ba154822d0e76671192435d legacy-trunk +25867 a32c7b3f1f1106c9c88d802ec41ad1d0e9d56156 legacy-trunk +25868 e94eddecf330a040429498fa7fd92a8ed25710df legacy-trunk +25869 e777452648306ee6214a5ce8aa370090649d0d36 legacy-trunk +25870 3bd22bd187c32b53c2fd6b89b163b68b26d517d4 legacy-trunk +25871 54c05a947bcbc58d8950171457c33924e63a89aa legacy-trunk +25872 0eda3f82b6f3f42814f798f1a48ef38bfe432abc legacy-trunk +25873 205c10632f087f39e18b41e520dc3e727bcf521a release22-maint +25874 658ea026634c4c22013dc81da9538d9e9560981d release22-maint +25875 0dd2f9b57cff5ac918e875b27f64652afad192cc release22-maint +25876 a40543b3e3bf32643bb35d9cdd52d80a1bcdf18a release22-maint +25877 814329a6426cd77d9606f13c8b035e2e1ca30c06 release22-maint +25878 4ef3693f1a26aad9037dee9513d2ef19823b9cc0 release22-maint +25879 665791d53c4356a226657b98c156af52b59c1824 release22-maint +25880 16245a9cbfa1df370da7f142fbcfd9f281ef07a2 release22-maint +25881 7c7c90fc7005a7efc79f7084af30ea07b39334c9 release22-maint +25882 c3df9b7a6acab189c4caf45df332931d773bf424 release22-maint +25883 795bdd692176025a4a91ac6cef85281202f0c4dc legacy-trunk +25884 8bfc91849242c30898dcadd998947445f2e8c2af release22-maint +25885 64a68361848cd4026fdfda1b7145ea693b0dec36 release22-maint +25886 0aae09986fc98f56d79c32be041cad1dab43235e release22-maint +25887 4ff37c58ab89393ad927a2160328892561dcead3 release22-maint +25888 0c1912f9d1ce83defe471f7d0f9f6b0e57aefa54 release22-maint +25889 a2fe0ecd0ce2abd0cda6699f5f8cd25ff2f67260 release22-maint +25890 2f9c6cbeaa628d5e3ddbd5c655e045b023fc81ad release22-maint +25891 d66e4e7c9e9a70c5603e4598fd9213e700627912 release22-maint +25892 45721c02160664fcb5dc57f622a0f06c2ad8ee3a release22-maint +25893 ef314b37e260cedbbc571b6fc5203718015e9bb9 release22-maint +25894 9198fb0435fbaacea9071885cc1cdc855cdd403d release22-maint +25895 2912015a1e7b76b85e5e3c2a746aa4baa906c5a3 release22-maint +25896 8090d0d63ee1a5917e0dcb95e8828948f8f62f9a release22-maint +25897 f6a7fdbd30d4f216f61da606e9889ced51e3d3dd release22-maint +25898 21e8972d37e4681ecb4e99a43d8870f140e7af63 release22-maint +25899 1afbc56188b00748cb9a10778f149b0a1e08c48a release22-maint +25900 da9adec66e2b219a147158b89d49566238ae65c0 release22-maint +25901 e2cbe9c33411a0b0b5784ea558f340f08d21bfe5 release22-maint +25902 75ef1f16725ef4ecabdced9602b3145448cb6eff release22-maint +25903 b726e6b3a8523ca4522429775a33570354690648 release22-maint +25904 16e542af2c45bc07903aa30cbed1ba6ca5688878 release22-maint +25905 c5c1326166b921a47964c0d95989d816668667e8 release22-maint +25906 7566187a201cf2145986f7389b25ab59f59a5dd0 release22-maint +25907 142fd3e1073d1e07584202df38b6167cd25caa87 legacy-trunk +25908 6b3e99b2ff91c4571a0d6b269b2cbd539e2a1fd4 release22-maint +25909 0922c919cedbe37c0d5970f2390084a5691b8feb legacy-trunk +25910 63fbca898eac26ac448485d380cf77df5dfc471d legacy-trunk +25911 fad071fb4141fe609ba676ff7585a45a9f4e7ff3 release22-maint +25912 ad15b39ad8f712404011a2935333440ef9a98ba2 legacy-trunk +25913 8b636fcb8615ea2920ecdb977f5d261a42a48378 release22-maint +25914 9eb4e62309b0e232e07cefd407cfe731ab6b1a18 legacy-trunk +25915 25b599f360bc21d183574fbb99c3da44fefad60c legacy-trunk +25916 6de1a19f47a425fe11f291bac6ba420a2b2b4b0f release22-maint +25917 f9d96dedd1f466b47d1047a633ae902322f25cc1 release22-maint +25918 f2a3af4fa4ffeef34b7ec70e8a1465b95bed5301 legacy-trunk +25919 b68af4a8000ba12a61adff8cd5629a2444defd25 release22-maint +25920 3f421634c37cc6c5e2f5502857b57bb864af70f3 release22-maint +25921 b59ad4b97a426e14fb5f03429c8f8f5ae8b9a0b5 release22-maint +25922 7a4cb4e979766aa60ed57435569e772687abcf9d legacy-trunk +25923 043ad7adc896f4a48fe33452c5ef02f9ec92fed2 legacy-trunk +25924 303b6ad13a32d995112c9a313f07dbc567c7d8ec legacy-trunk +25925 3bf2b5aca61ec1850d50269822426d18e6bbcf08 legacy-trunk +25926 9bb450365df7871c0e49c3e24828385739736f93 legacy-trunk +25927 906ad36cb7bcce75d5c885108cdfaace0075f3f3 legacy-trunk +25928 39e42d6f5da2d0704a5262bb3b9dfb0bfa3bced4 legacy-trunk +25929 aedda0abd313e00eaa47cd2587d8fead5a39330e legacy-trunk +25930 6a1c8752a65fb071fdd4512a953dae160fe3c206 legacy-trunk +25931 ee4b59b5feb72f7beb02d2709a40b1d99853a8a4 legacy-trunk +25932 470e9da21c4ae4ff51f3627825073adf7314ef0a release22-maint +25933 d190b2d303c281d7bd2c196d481420abbe04beb6 release22-maint +25934 5a30d4b3da37a10c6014a7814602e961e240d1c9 release22-maint +25935 298802abd38dfffa79b472c2f5ddc3370eb24ffc legacy-trunk +25936 06a8156e3bcf73bfcb6457d086bb25ccd6224f6b release22-maint +25937 bc20baaae3ee119e39a9f2e2a2f6a243d19db048 legacy-trunk +25938 d71d3b715b13ea294ad83f52fdfbf1dbbb031a14 release22-maint +25939 e6c6babceee5360f3db7384d7a48cac1a959e278 release22-maint +25940 3a21dbe1b6fe4689a8e85d60dc51bc17734daf19 release22-maint +25941 64a1049fe53b961a51b8990d5490a9bd1402b7dc release22-maint +25942 f0ef8b426d8d9b07cab3fac7bba34c9bf2884d87 release22-maint +25943 2d33cfd6c17f0779bf7cd3d40241b00b88a69570 release22-maint +25944 9a17b3a3af0989c0d41f4ad314ae3da1ff413e18 release22-maint +25944 11c952c7d4be6638040764910be80bd9c3c17de6 release22-maint +25946 bcd1fdf13acfe3671af68664120a4fe88cfd4bc5 legacy-trunk +25947 93daa4fde087eddac83d5125a199b4a1789b66ad legacy-trunk +25948 3d68085f495f9e58e365247de32149686bb0e195 legacy-trunk +25949 91eab745810f113c405fe6f2476a526ae4d619c0 legacy-trunk +25950 f1dbecb7e4160d274e2fad42b44d80d93e36793f legacy-trunk +25951 66e85a732ddde192586ca4a02b40295f41b4a8da legacy-trunk +25952 c18fe487257160fd68373b0402b27595f9a21bc6 legacy-trunk +25953 7bce4751bfb340f2f1828ed1f377f6cf22e07f57 legacy-trunk +25954 7d0f0bb9448b0100626d838aa7276f17c17fd9a4 legacy-trunk +25955 a758d4c401e08eaadc8205acf36c77080366c581 legacy-trunk +25956 9b5310cfa2e0ddb160c73f7b7db5bba765ac7cfb legacy-trunk +25957 204d46fc54f68e0334fd7169360dd809a290c1a5 legacy-trunk +25958 0a3bf22aeca4a2e4b85f4ee721a17bd5541e34c2 legacy-trunk +25959 1c7207ad5db815782338edce57f5ca14f9b268f5 release22-maint +25960 80821a65fd4981818d4e728b9c8e7437a5fdfd00 release22-maint +25961 194ed5e0dc8ff0de130e9b25e689320416b36f8b legacy-trunk +25962 0c5c64b75d5d0a1812de9eb3a075551b6c497404 legacy-trunk +25963 a331c616bb0ad5cc54ea9f793edffd668ccc34f6 legacy-trunk +25964 f3a913e64eb8ed4db926b10090a9dd1ae802acfe legacy-trunk +25965 2868e9a9e280b68a39652e2697e52b7a5442a684 legacy-trunk +25966 3f4b2f93e8b5b5426e888c49b449b7c5f83dda99 legacy-trunk +25967 da1645fd9c2438afebe74c093207db8bf65a99c4 legacy-trunk +25968 1c838be6d004bb886062f3edc98a6048f093e602 release22-maint +25969 ac24c2c9bcaf83d8cdf5ecdfdab80166e6bffa53 legacy-trunk +25970 83776ba580ef20a5c435de42b7d6c8752cb88401 legacy-trunk +25971 4c7bb0b4d354bd247613bffba13b96e466c0d317 legacy-trunk +25972 c9b732628e6c6063f18f0b2d05fc695e45def737 legacy-trunk +25973 26785fe63cbbe2d4c6591adb8698d6326b34796c legacy-trunk +25974 f62bfb0b0946cd6c1372759371ca0fa515787ede legacy-trunk +25975 ddc9543c76a031c9cb2d2378d3b12532920215b9 legacy-trunk +25976 f294fdd18b5b08a4c0731fa905a4ecb07672761a legacy-trunk +25977 d6f5064f2673713fa65e93fe14872c0ef4cf906b legacy-trunk +25978 3299b7aba8ebe70329c1ec1c04fecea945914f0e legacy-trunk +25979 6796dd30a6024794bd0a10b7d4a696e60ba29bd6 legacy-trunk +25980 19d4e836bd075eedea211520c26adb100bd6953f legacy-trunk +25981 ec6ecbb34b06b9e045b88e662d5dd8701be231d3 legacy-trunk +25982 6a850448fc8e8e3ac9b36ea970754943ff118277 release22-maint +25983 830c829a7eb2aed5522a7a47978969da86f4ecff legacy-trunk +25984 a6bb3cc919b9656d67e77d8859cc40b22bc64a1c release22-maint +25985 d9f30303c860d0218c1d5804263f142e178d0b47 legacy-trunk +25986 880d3106499bab5bef4b976a37dd2beaca125e7d release21-maint +25987 898c392477d91d128652c574185184e72652b990 legacy-trunk +25988 0446eeb787b7f92dad21a56dabd2ac7314ebdc54 release22-maint +25989 51b1c5ea0fbb456174e540b88f73a45a37ae0013 release21-maint +25990 84684fc02da004f48c3ec95f0a5c57866e16e97a legacy-trunk +25991 7230e01c3c494ed4c332058a924f8c042938680e legacy-trunk +25992 e6fccde610866d1b2fa267b4d71157f185253d98 legacy-trunk +25993 7870fac049f7213a77861e509744132b11e47373 legacy-trunk +25994 349404426faac37e245c5d72d58912c582451b9b legacy-trunk +25995 f8c659848ad6f782b78b0ad3a0baa728c6cf40f5 legacy-trunk +25996 b9ce969281cb73821351f69e98c564d0dfc00d54 legacy-trunk +25997 726c961f3db51a750feeec15f99d9d66c6de6fb5 legacy-trunk +25998 0f801626c2d379c8c8b4a492307048850a1e6f72 legacy-trunk +25999 d778ea9de780fac0f878633154621946c745f8b8 legacy-trunk +26000 c1666104b554f9a6cece3b4a1f3461d015833b97 legacy-trunk +26001 9c2ca37bdeec58156e4aa28defa5f44b201b7a13 legacy-trunk +26002 ec1043f6d05efce7778a6cfb86e4b3272856c8e7 legacy-trunk +26003 cecf31db8b0db5734380c28ac35c646ecb83402a release22-maint +26004 96b136b611784548eba0732319de61e55821df59 legacy-trunk +26005 d29119d243e9e37a4a405dee17fd515e7c0ea2dc legacy-trunk +26006 b172ee93c13c6c932ddb0fe6fb69a00a965b8469 legacy-trunk +26007 150f03407d0d2697243d16aa3bfbff25de84bc70 release22-maint +26008 86a27ba1bee75f022bde22de12a096d8d9f6ed5c release21-maint +26009 5655bfb607ca7224ad97cc95bbc371f39fb1dd18 legacy-trunk +26010 8a836d0b5974165ff0b847fc31b4b21cb051e442 legacy-trunk +26011 1616bd8b31bc04808735409798674a5b418d1dd9 legacy-trunk +26012 2288c724fe2bad0140fa699c64c200d04cffda95 legacy-trunk +26013 f3a416b178c423cf09c40f41ded96f0110cd5feb legacy-trunk +26014 e971475c0471931ceeb63e7bea6cd1bfbdff8f3e legacy-trunk +26015 2da1137600ae7e9eaa1d53899dae2d0b05399921 legacy-trunk +26016 a82ce198fe698c2e576d42e2f95f9b7a1dbba1b2 legacy-trunk +26017 107023c0c456df3c2c8324945598fa07eff6de26 legacy-trunk +26018 3aade150e717247b39aee04687d6d89f1310faa9 legacy-trunk +26019 af71914d8bdf0dfe5db47d995fd0a00abb837dbc legacy-trunk +26020 409311c78383653d681099314c04d99e1b77aecc release22-maint +26021 bccd4613c496a30bb1bad6419ca7849bf59ef6d9 legacy-trunk +26022 46407d0a6000f5ee288b5ad948e4320cca6ae731 legacy-trunk +26023 c16bea79f4db3b4e7c51a5133e733975ae243cc8 legacy-trunk +26024 1aea7af09260e7f214f3fce54d22f201c2f1f911 legacy-trunk +26025 9d2a8f6b06b6fb9c45d776dddf418b777de525d2 legacy-trunk +26026 f63f2bc8bdba6f0d5d8e42a3ede7b5034b357287 legacy-trunk +26027 45dbfcf0fa19fbcb807a56b19ee7155cc1ce055d legacy-trunk +26028 532c27a735b7b925b668dd9813aa9cc94e9f3494 legacy-trunk +26029 d971d1eb72f6e24ffad9b9a9f6a9024dbfa7be29 legacy-trunk +26030 3e0da84939d0b33406bcea08362c60dda7a2e4f9 legacy-trunk +26031 bf3b07c62cf7be24e469e3c418ba65474f68ba60 legacy-trunk +26032 fc2e7e397bc66bf97a8609017deb43d3b92205c0 release22-maint +26032 4045e6e92fafabad42f6c9989b67076fbad452ca release22-maint +26034 86ce9ee140450e16a5babfe14d03a57b56c400b6 legacy-trunk +26035 b96740c42e8070b72d431564560894591283655f legacy-trunk +26036 911fe0793050468131aa7d92c7d866acd779f74d release22-maint +26037 57811c355f3abcee57b3330718e642c9e11bf521 legacy-trunk +26038 0b58ea07495cb07eb8ffcd8fae4e8782ee3c6b8f legacy-trunk +26039 881a6c2d5db2b8cd6fabe8fcbbb19356b97c9a0f legacy-trunk +26040 18cfef011abe7e68af5e0fbdfcccd8f81cc934cc legacy-trunk +26041 488b9b3f599ad410db1c1267597c85fa9be40c90 legacy-trunk +26042 7c0ccac97f8efd7d856813ce4c854d3ef33f1861 legacy-trunk +26043 120e4ba0550bd7097979291b897195dd9de2f8d7 legacy-trunk +26044 44be5e74f1727be45590cf221dbeb88bf94cdb28 legacy-trunk +26045 6f2f1b04e82e0dc96d705189773c488bcc3d488f legacy-trunk +26046 fd1b8ebe4eae48b6d47a188032539c20f620beba legacy-trunk +26047 b457636539e80d51111b0d8f556602c95b05e7c2 legacy-trunk +26048 f8bd930644aa344e5969efeb94cc636c731460f6 legacy-trunk +26049 eee3372c2f962d4855292aa54d47158fe8005a8d legacy-trunk +26050 c0596f84a8fb149b3783709d951628cd6eb150b6 legacy-trunk +26051 614167df20960a62bcdcfcf60fad9de96f341e5d legacy-trunk +26052 00b2972ab4a4b1a1b3e98a695f2f09555bebbd9c legacy-trunk +26053 5ae3c31673e4dd6621a7ff7038bdf6eab1c291c2 legacy-trunk +26054 2c02cf278f0282f17ec959ad6d9fc130654dd71f legacy-trunk +26055 596167647bcf57da46259af63cb35054390590dc legacy-trunk +26056 1738712930344aa24c43139cd29533be5f3e051b legacy-trunk +26057 f0583b1e93ab0f8a5263f4d639ac2c42867ab37c legacy-trunk +26058 fa0f35f944b56300d4afa9830f3b3abd5f067a02 legacy-trunk +26059 6bb4386b111103344ce8833b3721cf273bbedac1 legacy-trunk +26060 a4a1e6f555318ae02363335789220731d0d85fbf legacy-trunk +26061 35f58c297899644cc37916b61e6937e4a91365f4 legacy-trunk +26062 0eece73c13c08dead74a095e4f82d1be1fe0cb28 legacy-trunk +26063 cf1a05c86595c10cb20a4fb15306cea9ada6754f legacy-trunk +26064 f07ca997230408929d2431d54c9c68ac62338ade legacy-trunk +26065 e0ee009417df073ed1e40c79ec0eb9cd03ccec35 legacy-trunk +26066 18dccdf2c46d80274ebbdd9c3b9e3565e4571f63 legacy-trunk +26067 8703d20523399866f2917c57ec250f21dc7ccca6 legacy-trunk +26068 14ebd76109026cacc7f3d34772a52a9604d378e0 legacy-trunk +26069 dc2f745fcc67e82c7de44cedfd42fcf5cab9285e legacy-trunk +26070 aea6dfeaaab841692c0288d00f5cb313d732e710 legacy-trunk +26071 3aa4bf7ac31e985f3513a867a471715059c57a1f legacy-trunk +26072 8a225bd8763ad0fd60bdd3789aef9ea4ed8c918d legacy-trunk +26073 ca465e4d88bc1f72bc36934ea395f973451191f3 legacy-trunk +26074 b383dfe36eee7dea36fb32a623e95b1a80f21044 legacy-trunk +26075 cc8b73040e837d6bee3071187e2e86d6954a0301 legacy-trunk +26076 ceca6cc444208c108cd6987e284282d501826eaf legacy-trunk +26077 e0edfeea5183b463017372683af9082753b6176b legacy-trunk +26078 22fdb416ba2f1b429fea76203d6bfc1122bec915 legacy-trunk +26079 0bdd413a34169b4694961b093922a6198df542c3 legacy-trunk +26080 c3d637308954a3123dca87afa39a532e7095ac6e legacy-trunk +26081 fa0ac845929b21e0ece65a0a6b73309fb6a95ebf legacy-trunk +26082 6c4b193016c675c1c5030c317679daa904d480af legacy-trunk +26083 253de588f2fb65e2f174cddd923aef8256b67b79 legacy-trunk +26084 ba68dda15df0687ecca122e76b103da6bf0fe243 legacy-trunk +26085 1e3062e69f2cc110359d154e62c2ea7d41694bc7 legacy-trunk +26086 9baa8c9a1e843a98139becb6959085d938bac6ac legacy-trunk +26087 fa9559c5b103715326436ba0f546762d5cf9b2de legacy-trunk +26088 c84110f05dc36c47197601f69ee623c9cb5f5b3e legacy-trunk +26089 0973693e4ad21d688b3a477719b6af57e50ea117 legacy-trunk +26090 14b7986a92e1038fa902c4069163e70ada6cba14 legacy-trunk +26091 cdff3c7c1a76437910f419ce0435cb9af1cf782c legacy-trunk +26092 6931dbd2edb421db523e2b9ce6b0793dfd9daab4 release22-maint +26093 0b64550a746115c47eb6e8342ff2c3ab884b0a75 release21-maint +26094 00154a0fde6175a4c854df6b757b34807c564c2a legacy-trunk +26095 d24670384c39cd260c40efffbc367ca33ed5d4f0 legacy-trunk +26096 1ae423262fc986815ed968ac19c678904bdc648d legacy-trunk +26097 f02ea8e824b0c13788e1e143bd76122853c3d7f0 legacy-trunk +26098 73e82722b03c392f156a1ab0597d63b59dd4b7e9 legacy-trunk +26099 810c14f243736d922b72033ad1d98eb00dd074cc release22-maint +26100 826bc1522d2212c3f4eb3000791ba46d40da74b1 legacy-trunk +26101 e449c81c1c01f4e02c50e8bc156c1e13e39cbbd0 legacy-trunk +26102 271d621f0e9fdf22da83a828cc19551bde48600a legacy-trunk +26103 771b2a8d445dc321ad573f79b3cd8db7d22aeff9 legacy-trunk +26104 f51b7788401287efe3ef6e67d6cec794f6cd4eac legacy-trunk +26105 7361ec88188a91e1a1e8c4bd4fe3d5ddbe55c96f legacy-trunk +26106 280e7a20e31a5c86834abe4aa9c2309b1f94c9d7 release21-maint +26107 c118d095bddeb5db1736cdaffd22d5c78c3fc75c release22-maint +26108 fee2f66f3c165ef0c161914fc2bae39ef6530269 legacy-trunk +26109 1bdf217bad9309b766916a48fa0e7dffcbc10ecd legacy-trunk +26110 2224afc63a5bb963ff351444dd244d100697b44d legacy-trunk +26111 53ed9dd6bcd5d4909e7994360f1d8107b54b3967 legacy-trunk +26112 522405ab35c1ad2c6228c05626d6fc8fbfaa8caa legacy-trunk +26113 4c10f1692523264579d160bfb67d49e4238a66f0 legacy-trunk +26114 4081eff932fe287926b3cc921225965dec2959d8 legacy-trunk +26115 2aa949d02d405328d3104c425723869901891d60 legacy-trunk +26116 cb5fca3ce79a9fa78c6a72a79088f07d5a1cdfd5 legacy-trunk +26117 fd44999e7ead4217fd513f5085dadf59062154df legacy-trunk +26118 6871e6745aa54210a9b102ce8ca3c47548be3f28 legacy-trunk +26119 6fa46c21766d9231ddaa8dc7caafda741bf61489 release22-maint +26120 e70c9b7aaf3d68964e1fc3c962e254754e5a4df2 release22-maint +26121 8719866014ab36a909f7560b28e4642aa6210c63 legacy-trunk +26122 9931f154be988f5d88d4e9ed0a865de9d7172a9f legacy-trunk +26123 817b494c9b5e497b4fd0037970ac0a4e2a2ab7a4 release21-maint +26123 5b54640e72b66b8c085795e28ef756d58b955c6c release22-maint +26124 a7884d7d2d48900f95d2d0d46af934d449319128 release22-maint +26125 3428229f12bb19a2869c33fb42e09e85342c745e legacy-trunk +26126 ad3ce73016bfaa1bc6cc5e6677c9e767363ad1c0 legacy-trunk +26127 d26d8575ac621cf2fc8ed6b982eab329be4e8f84 legacy-trunk +26128 54ea8a93ecd7e62197b3b6f332decaf8ec23b36a legacy-trunk +26129 3a5065005fcfd12112aa2b32cd365a588a559514 legacy-trunk +26130 9f509e490fcc79cffeddb2d4f5f3d61eb6bf308e legacy-trunk +26131 314e1416aa5d5f5dcce601b4a566e19a642c58b9 legacy-trunk +26132 260a1720f629c4ff3701ab4a4d662366d65ae158 legacy-trunk +26133 59d3913a29c4439323c7410a7bb648c9eec24fc9 legacy-trunk +26134 a6f8e1286b1556edeebd5123ae04d66d772a3b68 legacy-trunk +26135 02fddf7c25c2de3e32bf078183327b3503a0f3b9 legacy-trunk +26136 74de8641828410e2562db57f72646cf5d2b16c18 release22-maint +26137 d6ef957bf290fc6e65f71fd72342c694161ca2ea legacy-trunk +26138 a6a8c69ec0e7c58e13b90cb5baeecefa63cc5367 legacy-trunk +26139 36186af3c125164a70ea1fad2a57a97270e6b8ca release21-maint +26140 149fbbb0391575b5f885b7c92e0729d96acefa85 release22-maint +26141 5f7d70ab74eeffdfcdde721cda5faeb715c4aee8 legacy-trunk +26142 ec67fce3fa3ced4a3c8d8cc48b96570ff2fcdfbf legacy-trunk +26143 d99a1ddf951805178d8f185a7f326a82b3fa1be1 legacy-trunk +26144 01c5ae6fc5bbba3a7e1aa157c66d1e55e93f30de legacy-trunk +26145 0b2c087542bcbff3704622349abb9d9c5b5b06bc legacy-trunk +26146 aa8d59823add1a8e7f7e8a7fe8c7f710a97e3c8b legacy-trunk +26147 a8c75cf74dc14112c0ec80c2c2dbf65afc739da8 legacy-trunk +26148 028ebc8fb3908a8cdb7a940be1a1c45c44172868 legacy-trunk +26149 22396f77c356aa309fb8f020a689d8439a433b91 legacy-trunk +26150 97a34643e544a9705dddd48781d821832105112f legacy-trunk +26151 06668d8d9343f464d9108d3d2cabae4f58b39b65 release22-maint +26152 9acab76b00178d6487d64cb00d2ea85003a3a34a legacy-trunk +26153 1922915cb73d7a8accc51ff95d54880819ef6f62 release22-maint +26154 3c8781492d1fdb8ba3950e2e94a4f75eeb2e4a7b release21-maint +26155 f663ffbe9e5c40d4a2ac59e8a88d5f08ea92b8ad legacy-trunk +26156 4ed06f8aadd37863288e36daa6ee316e4be9baf2 legacy-trunk +26157 ac5e1d9029b794526c7d32082c7e3080d9ae8e11 legacy-trunk +26158 693e00164081aedccc8cf47502f8848e8cb6f155 release22-maint +26159 0eb83aace071667da95a832fdeaaa86f36af38ec legacy-trunk +26160 58b2f4626b64d78a1f18458762471f8455dd189a legacy-trunk +26161 2100887b47cbb9be2cfec1f3c8b6acddf81f085f legacy-trunk +26162 f0277146aa16db649f7d3f9a72f9b5aa44885f93 legacy-trunk +26163 17a1751ad1d9021fea84a19605c3899b7dfdf77d release21-maint +26164 21f353124145c43a3921c8225e9e557305cf9aff legacy-trunk +26165 77343aa03e2f363c7b41041610f78c8334cb61f5 legacy-trunk +26166 f1af8ad11000a089be0f9fdb5ba372c1982c17a3 legacy-trunk +26167 c815e003dbcd8bd5c0ce45844114f617f656be4c legacy-trunk +26168 882ea5cc7687abbe8f4c70c024d88a8e3ad43297 release22-maint +26169 3337c41c132b114a94c52b50c184fd9f2c80242a release21-maint +26170 2b7025a232e1f7f494cc99b33cfb58932a6d3e24 release21-maint +26171 a3bf2c97e808e41648d64b1a5fa693f11b88f713 release22-maint +26172 dd8988ca4b1466d367a18fcc0fea8605614506da legacy-trunk +26173 12b003be5d96c538977047a32f6e5a1fae7c2cd1 legacy-trunk +26174 533cd5197575da77c07f11a66a5d3623b059fe70 release22-maint +26175 43ee737a1b7f10aaa0a9bd59228f37b689df3cd7 release21-maint +26176 3515767123d8c8ce538fa2e351f6d86efaa17b30 release22-maint +26177 35b798438527eb62fd762b6b45f5b98607a4adfb legacy-trunk +26178 6afffff1fff1eea57fed03226a4595146e0fa785 release22-maint +26179 43cee18182420a1cc6853c60329b9544f54fe608 release21-maint +26180 c1aec6324ad54e0a8e5262fe3ce3b1a6a274861a legacy-trunk +26181 0acf6820d9e351033573b6488ea76e63a3e07320 legacy-trunk +26182 42cc87c401036b1f3067b95f558fbaadaa5ccf9a legacy-trunk +26183 c56eaad3a0b39f2ae0f538265042e62bbe5f413a legacy-trunk +26184 f89f201087ea675a511b89b2ab26c775fafb2c22 legacy-trunk +26185 f68ddf7f21f84a5b5e0e242ed73a7475c8f08162 legacy-trunk +26186 8ba499ecc6c9124c6043aeb6fe3253942d99ab18 legacy-trunk +26187 29551f747c0ed9d46718d844b8ecc9aaac96f769 release22-maint +26188 3b6f48b54666ecfa121ea16966a4b7340f732d93 legacy-trunk +26189 aaf572e334c3c8ba3949daa136acb3b4fbf235c6 release22-maint +26190 d3cf383df096c2c8ce6545c08437230e357339ff release22-maint +26191 a9dd5e6d680563e07863d74f7d58c28031175f03 legacy-trunk +26192 3af8ab1b05fc7f12902366f13b7ea58617a73bc5 legacy-trunk +26193 5eda7db007d6d78e6811916e305c836c055c4ae1 legacy-trunk +26194 c865cf8bee40d6951b0321d260cf13287d33fdd0 legacy-trunk +26195 0908729e94e0f15f1d6d870015978e69f39ab6ff legacy-trunk +26196 73d145bfd8e45e0b0cc18996f4f41f88f5bda2f4 legacy-trunk +26197 f1f57bf09092ebe6c269933c875950e1879329b1 legacy-trunk +26198 ef2fbce717369dfce080750cee23f4e8881b67f2 legacy-trunk +26199 d7531307435551a0db5f58720a70b49f01daaa0a legacy-trunk +26200 2eddce44b3bedbc712051285bfdce988595c39d3 legacy-trunk +26201 18696fc35062f62aa40c13849041ddc07245f109 legacy-trunk +26202 39ea09ff5734eccdf1c6272e5f152b3fddac8ffb release22-maint +26203 079abe05e8bc81c3d8b926ea5baec119077d31fc release22-maint +26204 382791ddce1c1832f050f5e6dbcff906be1766a2 release22-maint +26205 216dad7209bc70132ca229b920d94ab2448eb720 release22-maint +26206 d7029679435f7ec29060ce18057e143e9455bde0 release22-maint +26207 68071a7269706b81ba579516644c031adb4aced2 release22-maint +26208 f6093bac9fb64fe34f25b684f75e64af7764e875 legacy-trunk +26209 e589e473f232fbf77f89e84197801dd7995d40bc legacy-trunk +26210 d6d64239aa05158a2f78362b6c8b626830d1698b legacy-trunk +26211 f6600b0db688a77680c001ff0f7e50f747748cc8 legacy-trunk +26212 ed03806d88cdc9729ef005b90d4ca1f280b634e6 legacy-trunk +26213 6e9c0d9bdd7fd4a6241787f44cefe4a7fe5c2a1c legacy-trunk +26214 188b0fa28007e86a98e5135c1f025bb44926326e legacy-trunk +26215 32eec6d79c93f2ab512628150d436eb89fdbb327 legacy-trunk +26216 416db8d96216b911ec8a9554f75ec33aa425ac31 release22-maint +26217 273f51f520001917846d45d2ec82f1be1050a33d release22-maint +26218 e24b8d0b64704b10ce3b150408b214e3ddbf7177 legacy-trunk +26219 22f7ef7ba72ba45ce569159def77d3d456182f68 legacy-trunk +26220 bbf05af3c19138d3571725294cf6d23da5da6744 legacy-trunk +26221 04367cff86895f6ccb580f72e201ca971b90985f legacy-trunk +26222 a6527d1ee47428ab622569f177abed2586ed4971 legacy-trunk +26223 f9236cad69e6280fa87724b7c4cff446585884f4 legacy-trunk +26224 6f8a5ad39e6fe72e1f0e1085d0c2e5a7d41584c7 legacy-trunk +26225 6804e48a0033b46645b878cd1a491ec661745f04 legacy-trunk +26226 7014921820a51cd1aeead3d1da438245ad238f51 legacy-trunk +26227 a561ff1b4ffa1fba979e3312d17cd7d59abdba5e legacy-trunk +26228 e2f2187c3d2c1ca798eaf968ab95136252504dd9 legacy-trunk +26229 00e640e680bd298dc77097c8ee7d77410c903656 legacy-trunk +26230 b1fa90f8b6c21203d0bf036db62a74f0ee99cf62 release22-maint +26231 c91626d1f411f0cbfa274afa15b0c1c745d30370 release22-maint +26232 252438bb05d97a84ad1d881ca52bbad68569df10 legacy-trunk +26233 d462c790cc5bd769787f9b81b743cb33e7bb77f3 release22-maint +26234 8d337b3b655a3aa6178a265b91eacd948a76e90d legacy-trunk +26235 c3e9a052e268a0070da7b2a629b7ca9d577e1411 release22-maint +26236 e3de9d19faaafc6cf8a184621662ec6dfc2204c6 release21-maint +26237 1a3b08663ebe01e7bf79a16605c272a4b1948ab1 release21-maint +26238 a41a1e0051c5d6e202df29d954ae91d71d4f029d release21-maint +26239 3a6718b9b65a838b2876d69d1111fd9b683ffaab legacy-trunk +26240 e1423ec9e6ec362d0967a754477c4b7ebb61d9fc release22-maint +26241 389d429ada72c6d47e23ff3732af9bf621a667a8 release21-maint +26242 7928751bfdee5187ab39b6b88a4bb3850a209b83 release21-maint +26243 5be0677d810d026a79556d1ad39782d7696fd8b2 release21-maint +26244 d8bc68cb17e0370128b9de4f350f414a20200809 legacy-trunk +26245 5d383006d36b9d364a5242c06942e2649f52e3d9 release22-maint +26246 289ea1d5c5acccdc19dfa6e77677624aa8a60ba4 legacy-trunk +26247 c0dd8bbdde6040834795d65a2ea6a403a291696c release22-maint +26248 f97473b340a5803cb0dccf764e4350742ebcd7c2 release21-maint +26249 2b3a6a844bffdbb9e8de853fee53586464911184 legacy-trunk +26250 170fb5b9473f8a3424d2a60bd672443171c00cf6 release21-maint +26251 af72d2cf2c55eb8849006d0e00065a810ac51d08 release21-maint +26252 b81d0e890412cc1af2c45202a28913f84371ad0b release21-maint +26253 33b2a89bf4a6a5b267b5d183e25853657086fda3 release21-maint +26254 1a375661cc9732950104d205e4c7881ba0c4f797 release21-maint +26255 570a780279d1a461be642e3b74a11cba18f9ee9a release21-maint +26256 b5aade97d723fa8a63e7b19bb1630dc61fe2c70f release21-maint +26257 7d40b691dba7637ccbf77a1293dd238e372e9ba4 legacy-trunk +26258 8baca4ece6455352707ab6faf1113d0ad5269d0a release21-maint +26259 ea43523b5be7627f4ba622b78a9878aef35cc2d8 release21-maint +26260 c0d7b5788cbe63baac024495210739d0677d8974 legacy-trunk +26261 8913dfa11027edaa7aa115cceb7016cea9be9f13 legacy-trunk +26262 11cfe8383cf88751fad3d79e1e6b2bd3122d0066 release22-maint +26263 fbdd40b92b870b7ff7bd4edd6236b067b8b4ada9 release22-maint +26264 7e84da9c98eba6b8081fc3c3cc1a67eb23aee57c legacy-trunk +26265 9d26d568dbb30763c5ee2ab304b3a2caaad91b1d release21-maint +26266 b608445b25f029b2dadc85ff0af31ceb723f3ca0 release21-maint +26267 ac99bed24b7d106ca51b6044c50d7ca1695860fd release21-maint +26267 7d1504c80fa072b4ba86edda13a13b0a05ae8eab release21-maint +26269 5ab3e8f14d46639d6c40c9cb62d0d7cf8b876873 release22-maint +26269 394790316aa380d22e4d670bc69a639e725f0300 release22-maint +26271 99001fd95e48db815a8fd01b3dd01779e1ee78e5 legacy-trunk +26272 0773d23224d2aa6b55051cfd0769aef3ac6fdf7f legacy-trunk +26273 c26af1abc2c6213012ad590f941d9a89eadfa190 legacy-trunk +26274 12133c8b83cf5f4ee324ce743b40bfdab495ecee release22-maint +26275 7281a06e3b57f3bebc5752141eb03acf5bb652fa release22-maint +26276 feb6d1bcdd1d62e189de2305dc58e2cb5773c10a legacy-trunk +26277 9081c92a0cc85e44fc67ec3fca73449bffe8781d release22-maint +26278 8a02c33ed2c18bb3840b09b1e0f5e47fc65b01e0 legacy-trunk +26279 15c18bc9d71565fe787948fde6a01f0ea3069cae legacy-trunk +26280 54229c35132e7751f1bd06740a2f940a8bde56b3 legacy-trunk +26281 2392af05f0526b5603000b78ce5b8f61b9af2a66 legacy-trunk +26282 3c876ff29a83ed9efde4925a18776ab55bba0b67 legacy-trunk +26283 3f21e4e39268103f21543509229b95efccc5e081 legacy-trunk +26284 a5eeb288e020f730c90d68498119a42ef5a3d408 legacy-trunk +26285 077ce8b5d83b59b73e73c7aa5d103b453f2beda9 legacy-trunk +26286 4c499447cc49f8873ee185da889a8e945db20380 release22-maint +26287 3323f3f422db09a1224ce0b93fed79f433de444b legacy-trunk +26288 e23381fa47503802cd143bf2afa93c9e4468fafd legacy-trunk +26289 e2dec3cdf3c2680ffd7e862dbc82bfa1aca67169 legacy-trunk +26290 e307a94dd77bfdcd5b7de7db2405aaa53e876976 legacy-trunk +26291 267b9732bf465500b2a04869904f6f6f117bf51d legacy-trunk +26292 a96e7e5f3407715a70232f2a5fc78cf86a1152b4 legacy-trunk +26293 f76ca9fbc7a4762c48d63078bc47304336144413 legacy-trunk +26294 32a9b19dba1dd6700ae3b7e9bbbb2a26e22325bd legacy-trunk +26295 44ee68ac5e7f961b6fc399147f0c17c242e86b2e legacy-trunk +26296 d4f9e19b8c0b42760a387a7f480d589f474d729e legacy-trunk +26297 f14e4550b2f3cea8c93b77a44dcd7ebb41606ca1 release22-maint +26298 a54b23b2f1720c337271b887f90decabd05bebbe release21-maint +26299 5c553772ca54c3fd4de9f0bb4e9a84c086a916c7 legacy-trunk +26300 534aab5bccea45b3c6ebf06449822e2d661d630f legacy-trunk +26301 ab679931ae0d17170fbfa0902a838ccdecc969fd release22-maint +26302 057c5d79c988addb77976dd7c98f583e7b376c9d release22-maint +26303 97939834a67352201a4d2c5a5858c76a4800d809 legacy-trunk +26304 c8750d63dc35584264d3cf71c13da8d01e04d031 legacy-trunk +26305 50c9c241463d21aeaf16be08208db36fb6a428e3 legacy-trunk +26306 c04906fa178c88bb024f47a64067df4c7a007fb6 legacy-trunk +26307 cc50a091f573affc3112dccecf3db8448648bf99 legacy-trunk +26308 1a8a7498b0bb371ace22ddfc2d3a5443546f4214 legacy-trunk +26309 6cb52829da1a2aac67696c0b438c7c20a96eecbf legacy-trunk +26310 5f5454a48b5ab96fe39334d0fd765dbc72d8cf6d legacy-trunk +26311 21f31939dc2f748f2ff90e838bf39c246899a809 legacy-trunk +26312 6a36112a3dce0675bb2ba567df564d9f69a9f9c4 legacy-trunk +26313 c8c1dc0727cd50cde7dcc6b3a1ff5b3ffa4e1f6f legacy-trunk +26314 bfa330b8520507d99127dfc82b8ca070f23876c3 legacy-trunk +26315 9a58e97db447c3f496a96854189c9f067016874e legacy-trunk +26316 cea852f8aa4763037f015e23079795c86d6d7bad legacy-trunk +26317 03a83340c914a92c6fb78371de8f589576b0ca00 legacy-trunk +26318 4f9d5ea4f37d9c121b80a857f0600edb48fcc9f1 legacy-trunk +26319 5f2dcdd0932936c5d2bf4ba47f410feaa895959d legacy-trunk +26320 f81701b712164f6622ea8a054c063ca0400fa8ca legacy-trunk +26321 a0bb5fa1ab2dcde0ef0c3397d2413556c85ff17e legacy-trunk +26322 3f23d72ef410f666e04e8b2901afdebb0b3a1126 legacy-trunk +26323 6d731b64670b690d24b3885be4ef9a785e88d29c legacy-trunk +26324 9563c9664a0bb8a2ece689f35b4a2040225dc107 legacy-trunk +26325 a00473f3317b93f754845b1694c78533c523422d legacy-trunk +26326 b37314fcbcc9f7520747e2d0a489f8e11aad284c legacy-trunk +26327 084ab73777a34174de7d898309e4071cbfb1bbc8 legacy-trunk +26328 5495b6df0c65d30f7db3d51c48c88072fe402152 legacy-trunk +26329 ba0236f84318c239ed83a8bf56ea8fd53ad08b01 legacy-trunk +26330 3100ba26913c7d5baa1131fda74f50c136d424eb legacy-trunk +26331 f93a26d1bfa0e9dd831811806c4275c7c1ee7198 legacy-trunk +26332 90b834ce57077feda5fc19a05c328432a7d2f930 legacy-trunk +26333 95819f7f0bcd2cdc8fe5ca29b0401585964df820 legacy-trunk +26334 699cc139d2d24866a10ba1adc9632cbece031a74 legacy-trunk +26335 72778ec94dec66763827331100bb8f18a03bca55 legacy-trunk +26336 29e6cb832497b5fe8ad2e73368bbdf03b94b0bd9 legacy-trunk +26337 a9e4024d8a377019560529bade058712db50bfe5 legacy-trunk +26338 4ba091cc70b89b16644aa75e1737dfdd24d400d6 legacy-trunk +26339 363c7fc174ac8bdb7b831981b89c63c3213471a2 legacy-trunk +26340 9fe94c01eaf1fff5007c0384255e4181bd0dcd75 legacy-trunk +26341 9f949027d7ba193bd6143f2aa644b90370467d28 legacy-trunk +26342 dc1fb19d990d692f17cd1e0ce77105cc32c54580 legacy-trunk +26343 d09740b2e03de1f85ca084356a45d01ac02ecca4 legacy-trunk +26344 1c26a310665310f63fe57578773fd0331a2be352 legacy-trunk +26345 c5a67f50532e914711d0cff597ba3ec946b4e401 legacy-trunk +26346 d9d82c1ef86450df2335500e9be3bb73bab7c6fb legacy-trunk +26347 298a7c51d2c01dedd5a080c469e6c0714cee20d5 legacy-trunk +26348 c8d61ff1c0d6b7495490aa99d403f2fd8e33478e legacy-trunk +26349 be54465a39c454a58b2b17c34ea9b95ab0e72d17 legacy-trunk +26350 61661583a12fab2af0cfd0c5083c3b32ae131a1e legacy-trunk +26351 24663b86b97505eca60721917d473e2b2339d79c legacy-trunk +26352 1e1c721433d8e4a3b08753ce481aee5bbf795d02 legacy-trunk +26353 beb3218905a2fe9b14b634e20b2d9f94a243a15a legacy-trunk +26354 0a19f016a994647ea1289cb41320c2bd3a10a54a legacy-trunk +26355 196dfa7ed348dbfe9615762681945db21086b941 legacy-trunk +26356 690d712e2807c3e1c8cc5120b7a59b34472bf22a legacy-trunk +26357 b9ad1e9f59a85ea079e870e8e165647ee661005a legacy-trunk +26358 2dd0f84af07169290161ea35335a4f8a2dca560b legacy-trunk +26359 a9cb919e49e331bbe8be911d6f79c770fa67ca7b legacy-trunk +26360 25a6e39c31a2070e151fe8f6afe6dab064412655 legacy-trunk +26361 0b1e20c34c8ea6c19e4c5315575990b9d2dd8f12 legacy-trunk +26362 a0561cf491634db14c76e3239adf66af0cc0b441 legacy-trunk +26363 8f98cb3a0f368ca43f1f50330c0410ca8a4a14a2 legacy-trunk +26364 4f063b80308d9923d05a671e47a492d0992afe8e legacy-trunk +26365 1f7af4fb3a5152ca148e1e0ac2f663e4856ea128 legacy-trunk +26366 e54b9c3848b7a3492080a489f345d71730413ede legacy-trunk +26367 1ceaf7f8055d6f30afa7dafa5d782aa7efe9b426 legacy-trunk +26368 db003b8a9bb9546009095b030a77dd17fc579c78 legacy-trunk +26369 d5048f9b8b8257b1c1bddcab919cb54adf7c28ba legacy-trunk +26370 8be6238748c4d0af3cc70a0bb663ad717a849c75 legacy-trunk +26371 931d448820aeef38db62203bb09bdec1235af007 legacy-trunk +26372 989377cdf0532d7776cb667c6c5637fd3c7a8e6b legacy-trunk +26373 08ab0a6bf1ebb14a90f4cb9328cd0f6dbb9a3a3c legacy-trunk +26374 d6322983069e06aa24c93de98fec95985be72b86 legacy-trunk +26375 3b083b26296a8e812764d28e136b27ba22586816 legacy-trunk +26376 202ae5b75cca24382724873bff998fa02346143d legacy-trunk +26377 b5f9f7a8f5666e489fbb55d2b0392ad1f936b368 legacy-trunk +26378 44637bd7f59b64298c2d2c2492b4b3b585fc0017 legacy-trunk +26379 b1ab4bc52243d00d90740c88232f339c68461dec legacy-trunk +26380 c6003de7397557b9c84d35eb370cf6827972aa53 release22-maint +26381 e2848618bd1959ad146a9b1a1ef9e5a8ced0914b legacy-trunk +26382 2471832700958f74c9236aab3861886815b3d8d6 legacy-trunk +26383 ebe3ce6cbfd78615228beccf90e3b7e1c785f7c0 legacy-trunk +26384 899002a882a08a509ff6b2ec243a1fe47d7d23ed legacy-trunk +26385 4e58a38e3c061aac1d7de7d4eaee8ee7dbecec26 legacy-trunk +26386 3e892582a850bc8b6118fd7e7082bea43c8979d5 legacy-trunk +26387 f3fc97da68a9858c3f9a8f90304e8edfe15b84b3 legacy-trunk +26388 03c39640d81a8942dcfc45a13ea9ae7c3a1f4d5a legacy-trunk +26389 a9a6c118dfba7543b2f61eef875faf74c61302b7 legacy-trunk +26390 8291473fde3eb32c517c07516df8a99cb2960de3 legacy-trunk +26391 1862374ab25399d55f8698779c5277ba324687ab legacy-trunk +26392 5bda546ebe24acf9eab170bf21c6c807516ae5c9 legacy-trunk +26393 1db3a02965e655ef4ef851a58fd8a9759d2e83ad legacy-trunk +26394 8b9260e92010b54e8ab5e8e34fd6e8b5469b2f94 legacy-trunk +26395 53ba9110a1f17797c753ec3d7117e6bd440e3749 legacy-trunk +26396 b1ee4321a50a7b2c59bad1301468a3b2702d4235 legacy-trunk +26397 8f645180534d53f6bf637355159eaa36aaf69584 legacy-trunk +26398 89db9e3f35a748b19d95b34a96525e8d52064c3a legacy-trunk +26399 9d352667d715eec078348c8d954f600a7aa0badf legacy-trunk +26400 454351ef50f1d1970ce4b9c3bd30ca588123d656 legacy-trunk +26401 cd202ef6726e3457f53b65cd5470372a3a61ef5f legacy-trunk +26402 f1aa18c8c96b821c95b20b54f210157ffd73e118 legacy-trunk +26403 e1f8e29547499f4973ff9babdb33f3b8fa0b9b33 legacy-trunk +26404 7fecd6d58f38ef174d3ab3424bfe9ec4342cd50e legacy-trunk +26405 0f37cb5a7e9e8cd5b082d7f51695500d41f34e67 legacy-trunk +26406 8b1268bc371a64ff5bbcf3779ccc10f4159251c6 legacy-trunk +26407 769e0a538e543d15cd8786bb7afc4fbfa36bac78 legacy-trunk +26408 751289cd1ab712d9e762a1849e8250b92defe559 legacy-trunk +26409 c1668a819242c513a2aec193c45dd2f0888da2b7 legacy-trunk +26410 9e6ff787280a95dd4c08fd0ad51480016c9f74b7 legacy-trunk +26411 8a8affccf463bb5c5780de70f9899973977f9521 legacy-trunk +26412 19ea00feda336cd11d994691800d55fdbe082dd3 legacy-trunk +26413 8eb6dd3d8322efbd4f8bc422c88123a109a09eb1 legacy-trunk +26414 04fbf65c73ef6fc6a788fc488c765e70559a613a legacy-trunk +26415 71be5ba88aa7a72c7ac00e62828e38a87493ec45 legacy-trunk +26416 3af2cadccd6ac6523e9b0e9c62356bc7b64669a1 legacy-trunk +26417 a135980dd4e9b6b9bf12ebe3d192707a188c60d8 legacy-trunk +26418 6be283d148f7e388255949441594d30f91a6d4dc legacy-trunk +26419 8005fc1aef39c8f0624e415c6912f70eaf5b29d6 legacy-trunk +26420 4c0ab5d6a63c41eac29ca287c7d7c61526265e62 legacy-trunk +26421 c328d7250e92660036c9ba8ad5cc4df02a34b6b9 release22-maint +26422 dbd0ee7f60e056970a6a0731b4d590a2378fb583 legacy-trunk +26423 c371bb3e85291b9e334fc53475c4f6d2429adeed legacy-trunk +26424 530aba3116a40d085e4a108979f603e29bebf3f8 legacy-trunk +26425 dc0c1213c79abdda0935b38064a3ff20af3c2bb8 legacy-trunk +26426 938ff3cb51c26bfe419eb65ceb7aece37b9d618f legacy-trunk +26427 03ff3569ba04caf6c5681d280ee6addd3f0c169d legacy-trunk +26428 f3677414bc3def6a09055fc6ea7494d2b6336ebd legacy-trunk +26429 42c99728b6cca2f9ec2b783e53f14cc767294810 release22-maint +26430 bbab3a17b4cf4e3c7cd3f4f4c5b712fa5500917a legacy-trunk +26431 97b9480bbeec75e6159c54097137707345de389a legacy-trunk +26432 fda73bff21ffa56d5a9ece2f249cf1c8cbc8cb32 legacy-trunk +26433 d89e5573dd237e13b06247ad2053db9f3dd2c1e0 legacy-trunk +26434 21d252028404c80dd8229ef92c68ed9a82e014d2 legacy-trunk +26435 4ff90c99c302aa6bd43c4d2281ec3fe1fefb7722 legacy-trunk +26436 b7e87732f6ab9413d54fdcdaa9ec99ff34b6e169 legacy-trunk +26437 0fce55675cbcb380c242f39def73b8e3883148a4 legacy-trunk +26438 3bd336b6cb03a67f73e710ef16640ad317f5a3ce legacy-trunk +26439 4addf4ceafc547f47bfe048c57b2ec681ea24504 legacy-trunk +26440 969c1d118c97debfd3fa6a8ff6a12cab492e524a release22-maint +26441 10e0122b5fed5f88d721da9dd9ad7f595578f81d release21-maint +26442 3bf762e0e06ed09a91e3e26644142fa1b9eeba3f legacy-trunk +26443 393e9a216a88b500109f031836ea6cff2cd0d07d legacy-trunk +26444 e484f30dac77a6171a27b97ee365601aae8c879f legacy-trunk +26445 8c3dd1c2ef479ee6ec4e60e19baa8ed357e272de legacy-trunk +26446 423a3678bc7c7176ea60ab1e2177a9b6fa19eadd legacy-trunk +26447 4e82522847d0de81e003775063c5eab592d94b12 legacy-trunk +26448 09db3f5d0bd0ea0bf3bb2a5f59a164d3db3daf22 legacy-trunk +26449 8c7a39d0fefd801f6ddc89ce0fdfaa126f390ce7 legacy-trunk +26450 314f92a24293b2abbcf07cea3e7d57c401645c19 legacy-trunk +26451 b395477d84d0d76997307d4da688a03783ae7be7 legacy-trunk +26452 99757562bfb957fd4b594979f309ece929772b8e legacy-trunk +26453 9eba60ace2dae0c25c489ec6f5a059dc26a7595b legacy-trunk +26454 911f9f14e2d57e9b6242c6a2aec29456d5adb7bc legacy-trunk +26455 2a542784062f5a93d5c3c0905c628f9931e256df legacy-trunk +26456 b5aae2a65f6d122a0f735fa2e5e9b846263d72f1 legacy-trunk +26457 f8679f6798bf67b914f371e174c1cb7671808487 legacy-trunk +26458 03abfa7db4498c5cb9cedb0f9d589c2eae89c0ed release22-maint +26459 7172cef23b0549ebfe693f8bb9f86c9c36e517ac release21-maint +26460 73895c99fcc5bbeec75e1c73b2a85a9901879bff release21-maint +26461 b6f432b321438cacb54cb8875dbc03b0a0b6f9cf release22-maint +26462 569e383be0da9a6d6c7e3fc6c69ffa37068aed15 legacy-trunk +26463 d44545c4a47a82f320e505b0226acb18c4697c69 legacy-trunk +26464 d27e97b8a866e6dc4fbccc28c506c6c54561d795 release22-maint +26465 26e3fe8a88f57b71ccafbc2da238e71d8fd36dff legacy-trunk +26466 01f73fd663109fb12243d8be559ecf3160183c4a release22-maint +26467 97836f6193dc30715b820fc110b8f0dbc6b14375 release21-maint +26468 f5edf7025267685e3172952ebb6cefaf1f764ec7 release21-maint +26469 df45adf77d36dfde4d8b614fc2cc73462fed7852 release22-maint +26470 7b00dab988cf440786e39ca589957850ec0a77e3 legacy-trunk +26471 2d3a2beb3d4d7029f3ee98d57ed5b739c446b66e release22-maint +26472 4079e9c23fc172763beb6d8f9f4bf9a17dac8330 legacy-trunk +26473 a3c982d412b46e1cf94cf44c723338d70f9de4fa legacy-trunk +26474 e7513e142c70edfbc92341069fb248675c6701ea legacy-trunk +26475 1da02bba627673acfc43b03cb41e02cdb37f2518 legacy-trunk +26476 7121d7d572d01af30b6226d850fa771e5cbbe11a legacy-trunk +26477 fde878bc0e3be5e498178f15c2dafd0ed2d7d595 legacy-trunk +26478 0ffb54b1c3ea5ca1e88794cf19ed312bc8582752 legacy-trunk +26479 f917e7a6e911b771e1d61458ddf37bafa2e50fa3 legacy-trunk +26480 fa41f24106887312b5f622cb12994f1635decadb legacy-trunk +26481 737f4458e5de011e03c319e08e395368fe7967b8 release22-maint +26482 b0e59f1e495ac6db9566f887dc822a37257ff44b release22-maint +26483 627b7ca5221ac0c91ea19391a723fee8bc50ceab legacy-trunk +26484 22da2608285cfe77a4eabc665fce7b52356503a5 release22-maint +26485 0ba23341e5cff4e8e5ed1b7676fe5769f7aae785 release22-maint +26486 90805fcc6c702573f118eb99dbc7da26dd3751f4 release22-maint +26487 368e8081e73c4dbd28043ebe1c8baa3e678df1cb release22-maint +26488 70650ae1a2cf0023f17381be28defb78410420e8 legacy-trunk +26489 5aaf3d7b8d8c0893b150ef0db779ed0fbe4486df legacy-trunk +26490 ad44bf1179eb254b5ca97c755fccbfe2bc559acd release22-maint +26491 de09b874f07a688ccc66270b783e7ab05d28813c release22-maint +26492 90adbcf6201361c7dbb8cc83539ad977502c4453 release22-maint +26493 67578a830d81ca3926ebe696c919e039b5f03528 release22-maint +26494 6da1f9917e9b3e5335fb55ab381bd42a597f7f48 release22-maint +26495 4694a0df174e48b951baee7b9bc5cced1cf3063c release21-maint +26496 a047f16fb8b3e7220c9215b48d27524e6819e807 release22-maint +26497 d9b71f62814f8d1a5fe6d9519f41b89cc5ca29c8 release22-maint +26498 91a2228f3021b792d0dd8d223e961495b842b062 release22-maint +26499 ab5123274ccff3f6f0eb9478e1cdbcff26aab895 release21-maint +26500 2a11144f8f0c07783661998a4b67fcccc17c05d5 release22-maint +26501 46ffb149ea73a44144265b2edaaaf996782c3171 release22-maint +26502 8ba30e2d8ae656d2e276d51c8ca75dd4c18e27cc release21-maint +26503 b7f9506e60c94fe01ff6fd96bb97365e388276fb release22-maint +26504 a575e6ee85d99695514d1a90556740ba0cebc13f release22-maint +26505 a36f9fb2c4042af2645286466e276a236027e354 release22-maint +26506 0ecef8bfbd4b02002597746ca4a4981e7fc0ba35 release22-maint +26507 61cc08745d3159360ab34a8ae0c9fc6b083bde6c release22-maint +26508 dbf013cc3deee0a45fec946df1301c4d7624e083 release22-maint +26509 c4609ca17e3ea0d07853bfb3cdf02295f118ccd1 release22-maint +26510 62fabbd457be6b4b49cbedade08912149549b91f release22-maint +26511 52257affe0c9ea3aa5327780678cf220902ae9f5 release22-maint +26512 f769b4958e66639fbf6c237b6e7bc4391e05a550 legacy-trunk +26513 95052715651b600d604ef5974b96a059b51b558c release22-maint +26514 9368567a1047ce78b98b92e7ad86993aec9c5f50 release21-maint +26515 1eb42fc68b5f85e8f29cab6af3030fe863fd878e legacy-trunk +26516 61eb7182535ef08509ce06f8f8a892259833dc68 legacy-trunk +26517 aae814f94baddfad088972be2af417e69e6374b6 legacy-trunk +26518 54af4496760455f55d19eddc470f099034fbee80 legacy-trunk +26519 4ab21e354403e05bfa1cc5edd567846beea1fba8 legacy-trunk +26520 fca379c30906e1d6fac9bcb4a85ebd9314be2e07 legacy-trunk +26521 c548e726b3bc8be6c7da0becd6eaa8521875a9dd legacy-trunk +26522 362c1b81ee9c79eb6e6af3e17708bc9ddcd3e75b release21-maint +26523 dd416374ab3862e2ead90d3ca6fa1ff658821367 release22-maint +26524 8c144245b315cf444cae373a25bc952fe5bc9901 legacy-trunk +26525 883d69de560bff911f732fb9042887c6bb445f61 release22-maint +26526 195fe5ff50ab900b1c252d4c388ffdc82ab7369e legacy-trunk +26527 f0dc97bb9c0dfa5726eebe2792516b363fd0e063 legacy-trunk +26528 0ab245de7dda74cdc44d532cf6bb98c18ffc29bd legacy-trunk +26529 b63f4a19ebdd27f87264a0c9e5da5e14dcf1165c legacy-trunk +26530 713ff889d094859d413f4e1b21947cfc0df2e062 legacy-trunk +26531 3a0a2f077b8f0109d4b0a01be4724484a206217a legacy-trunk +26532 d5ce7ff531bd16bed0161c7a5326d1480f8a53ee release22-maint +26533 f03572084851b49ef8fa0d9a03d34e0d7c84b50d legacy-trunk +26534 2fc94ba5dbff132927dce7f55954da7deda1392b legacy-trunk +26535 e1d0d7c6999a516738d76d590442ecdb33131b36 legacy-trunk +26536 16328761eabf594cd23a3b949476152cf519c762 legacy-trunk +26537 68d70b41009ed96410cf842dd493d6cb3e2fd182 legacy-trunk +26538 ef73ff7a989e7f0e59649deb81f4452f4b694779 legacy-trunk +26539 8cf1ef814ee43a8b8cc8d5618ad10bfd050b8602 release22-maint +26540 6218828b0a112bdea866cb0e4eab241a2b620083 legacy-trunk +26541 1a618196e15a9c573035db9633e9bb411dd210af release22-maint +26542 1df9318b2b8e06e3f01a9a263ceda5bb24583bf8 legacy-trunk +26543 1a77af6111059fbd74d72aa92a30aa0b9650765b legacy-trunk +26544 998cc48464fefab7f02ff146ba83b00ec9e667bd legacy-trunk +26545 c277ebc3ce0f1913ba2ec159b8b284c4b501e2d3 legacy-trunk +26546 e7799916596d39e5965ca19d21f50ddfc4c2e410 legacy-trunk +26547 b4352f5a3452212468d58ab96b317f6f2475cb6a legacy-trunk +26548 7c0e8dbcf57a594eedfa4168df45c491844bfe52 legacy-trunk +26549 2fd63d75e92f952854cf97ef4f38a2d28c48f58b release22-maint +26550 37435f9f04d64552fa00486ec81b392d747c3a3e release22-maint +26551 0bc3a41d4e40a26b671775d11eb83121843bb5b3 legacy-trunk +26552 d478f8afc36dd5184c8dd73fab8fd84fb7d94204 legacy-trunk +26553 f1d6142128d3e4939927a99b80ff1ab7d069b858 legacy-trunk +26554 508fd952c9e9f23e43e904025ce8981ad6a2716d legacy-trunk +26555 0c8e762a677c481cbe29158ec996e7f747ab872a release21-maint +26556 f3be05e62ad1a8d68d088a4f723b2fa672de2d85 legacy-trunk +26557 60f242589c327a9395011d172f9d4dd29c26f0ec legacy-trunk +26558 6759be088d68bde67cb3418f686e6e837903341f legacy-trunk +26559 950a22eb8cc8adef5ad6922b68f47ecff188f415 legacy-trunk +26560 217eea9d6615958124b7ff589c4df10646631eb5 legacy-trunk +26561 d078f848ac3b880f5c1c87599e54314c9558b432 legacy-trunk +26562 c408e8b2675aa2eae72118ac41ec27e8914a928a legacy-trunk +26563 49bf5a8fa1517e1bf91a057a9af442f08a232914 legacy-trunk +26564 583c226afde6cb204a2bdcb7b263f921c0ada088 legacy-trunk +26565 6e568ee31a9cec0830a5d9b0b089f90303ce272e legacy-trunk +26566 8f9ad2c05dadea9e5c3e414b070097bcf9e3b06d legacy-trunk +26567 fd609d2c16691f02102f87955f85b9e81e1411e7 legacy-trunk +26568 5c301775665d9cfad85f9df7c3933e51614166b0 legacy-trunk +26569 382e37ac374da2ca754d766bf9eca8825b121532 legacy-trunk +26570 6b2af6dafe7c73f568a2f4c0de59a5e144bc8dcd legacy-trunk +26571 0e4497fb2de8d4a109481ffd21fffc7738427001 legacy-trunk +26572 e16dbf8753037383be85c169c1e24e1824e7d334 legacy-trunk +26573 ef919d295a120d6585a8b04898b0e7797c50563e legacy-trunk +26574 19f53aa4e1e51477328943bf985f0878a01d6321 legacy-trunk +26575 d8e9f6f57f13365339fb48c9d4a128f2c9d84a5a release22-maint +26576 b19a5adb69900493a6b6bc303f3759f057872a19 release22-maint +26577 ba889989a7eb01fadf0a6db13692991174b358ac legacy-trunk +26578 d614ae948bc3ae3b5beb1f7f26ba4ac1f82562d1 legacy-trunk +26579 b236d20830fe53d58f24beac79bd538b1e3a748b legacy-trunk +26580 b08b51dce264e3f64188e74dd9d0b95b68697ca2 release22-maint +26581 bd08c6955e9bdd1644509f8bec5d453ef80e5e0b legacy-trunk +26582 554f2197a7a76c8f7391335a4e7bc1ac3478beb7 legacy-trunk +26583 ab4fa78afddf619a26c7fccbfede6929e7df39d3 legacy-trunk +26584 f5aeeaaf03974e1e7e5ef7a0ba6223b875debd1e legacy-trunk +26585 ed5d75912d60da91d5b93f236610174d3faa4daa legacy-trunk +26586 e639e34ef9011e8f3af38b7c5c1aed11bda09557 legacy-trunk +26587 dd350b63930999468d38d0ccc27e21c6dbe81bc9 release22-maint +26588 a4318923c7aa334864d1b6c8b356ca5194435735 legacy-trunk +26589 6db6e3dc8366bec666425e67ce02b7a34d148154 legacy-trunk +26590 2b47d0dcfa666a8d581c34b0a6abb738d51595ee legacy-trunk +26591 86312554530159306b4fdc844efd460cada51635 legacy-trunk +26592 8bb90e8bf363d3d0f4defb173273e53e76ed118a release21-maint +26593 d32543337a2175e5bde73899390d1b21042a1c84 release21-maint +26594 40a1880553691fcc99b3e5acb845c25692aaf27b legacy-trunk +26595 aef248c1645a242bbc715e0631ce906a4e10bae0 release21-maint +26596 770c2d2f547299bd512306015edc51224a4204d5 legacy-trunk +26597 f51d1a2d4a4a1fad1aa3ba46de4b4db5c042a066 release22-maint +26598 5d135e414c76432dd3e21421991c2f29e14dbd79 legacy-trunk +26599 d328e5bb8a880f648258b28b1511a87e59438a6b release22-maint +26600 dabb0a3f47a554202051fb8d5d678bddb2b2d6dc legacy-trunk +26601 76c45037113fda363c2095f2b2e45c8ef504db75 legacy-trunk +26602 30458a11b5e093ad530aff9e84543aef877201cd legacy-trunk +26603 4e234b87170b08ee26a5dad9a9b7c8b46d8b322e legacy-trunk +26604 24b3ead89cae878360e43b9e3e2cef3ae1ede652 legacy-trunk +26605 8fec110e9d0208490dc90ad2f6fa7606f7f81b99 legacy-trunk +26606 e0470f2dd410e8bb7521f4383ee8c005be31ff68 legacy-trunk +26607 5fdadc94266502d72673dd2f3ff1254348805783 legacy-trunk +26608 b0b632106fd765d1cabd9cf818c54e6e73d38607 legacy-trunk +26609 97650edf58bb17db3960225e8ed1af1be690e5fd legacy-trunk +26610 5e80ad36d8ffbc44b142b7fb48f5f15a2e99d619 legacy-trunk +26611 284cfca74df40d61356d41fba0cb6f109ef0accb legacy-trunk +26612 405b291c321da0e91c113afb049c74abc6ffb440 legacy-trunk +26613 4f335ca3f11cc1844181c326d019c55be2634e44 legacy-trunk +26614 72ca0fd4dca6bf5658a20ef6533c1dd3de0a429f legacy-trunk +26615 9b175018fdef785ca2c9f7e9520cb566211ec453 legacy-trunk +26616 2922113217697c1b071cb7934d8db5ef4d0b2702 release21-maint +26617 a839a6be85788d503704af4f46c7f2963534eccc release22-maint +26618 667b026a89d90e2e48c1f20189260e3c0264adc7 legacy-trunk +26619 9a9bec10aa8c6cd28b729ec0000f4e616671f738 legacy-trunk +26620 1cf885931669390728bf79b7c396de70670ba539 legacy-trunk +26621 9e3532b75471e68f6ccf69896d913bf8785e958f legacy-trunk +26622 e5249a6cc1d87fe6c3e32946884497603a098c40 legacy-trunk +26623 7353977d6b64acf20bf255f7bcf1dac14733e25c legacy-trunk +26624 37812f2ba1aabeb58ab4183ce1e4e174b560ca08 legacy-trunk +26625 b572f7a0bb5635c56f4df7db954b9807b37be028 legacy-trunk +26626 8d4b25ceeefe9f918ecf5ef157ca0eed1ebbf820 legacy-trunk +26627 7b66cd15dce99031a97a406c144a7c23379336ba legacy-trunk +26628 21ce5d5e0ec714a96cb672750031717bf7838796 legacy-trunk +26629 493206b701db517419cd2f87e341750f4c6b373f release22-maint +26630 ec2a5559e7695bbd6e756fe5fb61eb2efad63664 release22-maint +26631 f970588e89b10d32eec09d72f907e131ccc53ab2 legacy-trunk +26632 803e6a6953064c399e3378b3a5a3fa2b72f599b6 legacy-trunk +26633 582855f6d35bedfb0b167cacb2cdb1fda6ad7d91 legacy-trunk +26634 70a0897223935bf21ca2f04404806844c17fa3b3 legacy-trunk +26635 29ca9e12bf1019a2c9b7e9ed05a6198a27a5a03e legacy-trunk +26636 d47290dd2d57e65165614df4b1f9ee8c8e0a6edd legacy-trunk +26637 46450f17a070561c6f5ac872120f27645fd88d91 legacy-trunk +26638 314e08e8090fb4d90a6fb4c5b11952a24f25af3a legacy-trunk +26639 5f5cea272b46231c08e10e62cc2e327fadb943fc legacy-trunk +26640 200559fcc664f7b66b93828251e2cd81b23a5a7b legacy-trunk +26641 9e22a8702de2d84d48ceda870ddb0f718a6030d2 legacy-trunk +26642 f5fd7e295897595cf1276d35bfe352732b66a96e legacy-trunk +26643 a4e75d53d32b4f577b561ad5fa04a46aed926d97 legacy-trunk +26644 3eddd9d68af7dbc045f1d69a8f302b7d122b25ba release22-maint +26645 00f66360be19860652343bab79ea1621120be663 legacy-trunk +26646 afe263672fd84babbd35385a428cfd521411fe74 legacy-trunk +26647 e11471a0626c122d45a9188748291deb37cc62e9 legacy-trunk +26648 b60b73d41eb4a83de4f1ad61898f68d169f5a550 legacy-trunk +26649 4728bedf4b789a70518e812feb3681b17136cd6b release22-maint +26650 7c6094b18d16100ae9d42d478b473a361a187b08 legacy-trunk +26651 5dd52a9b0438a8695fc284374ca5fa52e0ecf807 release21-maint +26652 65610bc4e6a573f047c54d2dd99509113d44a8d8 legacy-trunk +26653 b93ed1a4e49f1a8692e018a09da51643cdb14ae3 release22-maint +26654 8f1b371ffbaf61d7ab293db4707285d85299930f legacy-trunk +26655 b735e89ccda74f80d702f33b2f6c27da4dc1c546 legacy-trunk +26656 6fa76b4e59fefe81c511198c7f8965d02a279374 legacy-trunk +26657 17cafe805f045f652a652349d9f853c8804fcf90 legacy-trunk +26658 08e6f94f3ab0079846225cc3c6e88432052964f6 legacy-trunk +26659 5a6be8fa8de24e6c7afa3797d5371590f2fb4dd8 legacy-trunk +26660 01478a1329089b8029ce1cea837bc334ef309504 legacy-trunk +26661 b5f6e9f6e7f4b798de086076b5202e3a8c0c69e6 legacy-trunk +26662 5732a9cc91c7a942b0bffa3788d06aebb7b9be80 legacy-trunk +26663 53ebae7823d9742f3514bcdd18598eaa372071c0 legacy-trunk +26664 a2153285652460096962d3fc4fb1fb2e41751679 legacy-trunk +26665 20a7b2cf3c1fe395e7e5b73a9cd2914f11750634 legacy-trunk +26666 ef6e31f0cee127616b7b70aea41bb4277904d04b legacy-trunk +26667 cf9640be6f8a9520e3f21cd1c6aaec0ad0c275d0 legacy-trunk +26668 8ae7b40ac6d07ebed6570d405dad71e0eaee768f release22-maint +26669 d0532ae05ed72ac2c71a93d2b0942493541777ed release22-maint +26670 4ce611650d0ce87e2370302b96b3e9541d1ab878 release22-maint +26671 01765d30532e29d46fbb944dac848ec0901d0869 release22-maint +26672 ba6721ae4b80933cb5b82e035d70b781c43d2f99 release21-maint +26673 5dbc79ee0885bd563c34fb3ada014e0127eae0ee release21-maint +26674 0b089c8ac0773012ec60f693ecfdf0357e15425b release22-maint +26675 aab4273a7cf716739ad6ae66fe6b8468c17ecb96 release22-maint +26676 4c8f5a890f98beeef376baabb3a1b6fb1408cca0 legacy-trunk +26677 1337633327673403af8c0c2f3f3e7cab7f214ddf legacy-trunk +26678 af1ff41be47b845306c6ebf7d2fd467418148ab4 legacy-trunk +26679 46cfb85f0aae760407e34b3b4b7528840f5f32d6 release21-maint +26680 a443e5e5ece7f61c2cabcaa2e6c70b54306d4829 release22-maint +26681 23bf68778a2a85c291abaf1fd17dec296f2a19bc legacy-trunk +26682 388449370946247f07e77a87e3c9b524b127b940 legacy-trunk +26683 174ba03c89fb4813a4a8facb4c8eafd1ef7cb310 legacy-trunk +26684 af499b50a094643c77f7b6d12777132fe7c78d34 legacy-trunk +26685 3c7b22d112d35e3cf23ee73c3e29596ed6b93e7a release21-maint +26686 1806d02c08c447a52fac194685509c415307db9a release22-maint +26687 68926d0aad403bf8a4dabdf031c3b94f907557a3 legacy-trunk +26688 ba2901287cb7ca86bfcd3191912f86b1818ca493 legacy-trunk +26689 8b5926032b56a205a4caef3ee13f63bf6ce1d52b release22-maint +26690 ffd5d86e96ceb0f92411fadc3765c0fce8ee381a release21-maint +26691 c33077dc0c83b9c19da627941c050a9eeca3daeb legacy-trunk +26692 aae6dc6b2a5898e32c100c7f4581062c5fdccfa5 legacy-trunk +26693 c1d1ae15de92c9af54669f2d974b300e8fa3886e legacy-trunk +26694 cd02a36704fef23aba5391118795f659c22307ad legacy-trunk +26695 c917fe9bc654fe966061770dc40d4db5dc4859c9 legacy-trunk +26696 3debc8c34cc910c823708ddbc5ae2b50e98a0cbe legacy-trunk +26697 87c98af61fc4ab95cf034ffbcff96dfef8959066 release22-maint +26698 838427f0af232d14da469e1e1a3022faf8340479 release22-maint +26699 97e0b504c0009881aeb94eabb956852010579e85 release21-maint +26700 02d5283b1e21fc62e6e9ac19b86f856a9061dfa6 release21-maint +26701 3697a336400fabc261406466a67017eba0f31a38 legacy-trunk +26702 55423c1abcd149de8830e5fa68f7b3dbd7ed0ded release22-maint +26703 13056b6267a25f16eca0eabf9c66a7c76feeca0f release21-maint +26704 03b1e989b1d977458d77bc6d396516b0dd05cda0 legacy-trunk +26705 bffc7236c4ba289147de8dd8aab7a3709c8154db legacy-trunk +26706 d93f537a752b886edea64adfbe18cd9c88b54d73 legacy-trunk +26707 87c716b28a3ecf0b0fb70df4f7a2b1585105291a legacy-trunk +26708 2d2faa51dcfdae8ce3e01290444e2688c4406222 legacy-trunk +26709 aa08554d1a9b41ab9a232476c0d0cb46669bbc97 legacy-trunk +26710 1c9ce34d529dc38f29607c4dca675930da489582 release22-maint +26711 b491ab7877d2d2a25a97934bbb0f2902024869c8 legacy-trunk +26712 238dfec9c899e8e33dc47810b57c91579fcda37a release22-maint +26713 981c6b6ff2f172019a9d4009beb3bac29a208f3d release21-maint +26714 9c9e07359d6e64047a9cfaeee776b25cd0182625 release21-maint +26715 d466bc19f7312ae5770bea14225a84ae98f42c0a legacy-trunk +26716 67bcb4f5237f24526079ce5ef320ac0dbf625ee3 release22-maint +26717 0a4d6b240ab24877bdee841f17bfcfeecbc9b62f legacy-trunk +26718 066d8275ad643abebf83bd1af83ace844ad032bf legacy-trunk +26719 fd69f3ee77eac1f62a267421346dd83b82bb7d61 release22-maint +26720 ecf070c34999e65637ac9ad381efcc807ffbf0ec release22-maint +26721 7bf7cf3a35b9044cdac30d3e28de0cfeca5adc4d legacy-trunk +26722 aee8f16f27741d16820854128aacc95c90043113 legacy-trunk +26723 18f8a7b56f890023eb0eae096ba65a96d68ce727 legacy-trunk +26724 36840a989722d7e8443e86e89a2de1c8a2fd89db legacy-trunk +26725 bec157dbee2e08a6b25663db9944d4c2a2c27ce8 legacy-trunk +26726 3efd34fe6668064aa43f3a119dbe7ddfaf318ffd legacy-trunk +26727 3b323df945bb6bf19cfae365bdd9df9e64d636ce legacy-trunk +26728 b27f36cf3d3e023dceaa6e770aa7789c82d0ce7e legacy-trunk +26729 d3d857a882f0f839b771b5c7ccdb0cf7afbb9c79 legacy-trunk +26730 7ed49af048ba093e47384e7464f764f8cbc2980c legacy-trunk +26731 105be936b5c36d6378e717a532806cdcd871f89e legacy-trunk +26732 ad97fce9dcfe25ec68a6463f0b0f114525b14ffe legacy-trunk +26733 c56888d170984e132f3fec88bdf818492ba721c4 release21-maint +26734 4af669f9c42e082b1ae7ef599ad2cd654342a822 legacy-trunk +26735 6751e8bcfd293fcab07640d3fe246900a53d72b4 release22-maint +26736 3b825675d11944724afab87d4bab13b42b63f827 release22-maint +26737 cbbe289e7c2e9285f38ce4fa70ac3ebd671db084 legacy-trunk +26738 2f7d869dad4df7bbdf671191fe6deeac01ad90fe legacy-trunk +26739 4d6beab766e274d9f9fe32169dbd2d1353004457 legacy-trunk +26740 e5df086ed4551850eab9a969526690784f688325 legacy-trunk +26741 9be01b7b6c80abdc9d31dc006943e2e8fd36f4b8 legacy-trunk +26742 82a850db7ec577e82700807a857f5cde5c9ed0ac legacy-trunk +26743 1303dc0723fcc123c9cf05869461fb7a54ae4e78 legacy-trunk +26744 ca907f28e2d5582ace162cc7584275faf4ec5517 legacy-trunk +26745 0719a377a616c139fbd0d87f4c30c81a85bf2b16 release22-maint +26746 422784709380aa4ea7fb4d364b6f0b45a1c9ee13 release21-maint +26747 f8ff9fab92cee454fc931baa9c1667210ed0b1f1 legacy-trunk +26748 a9c98183ff87fe6658dd7d9dc3d036e92c617b25 legacy-trunk +26749 6a7b26bde0e8b9c861d4ddca44cc96b584921fbc release22-maint +26750 c78b52dac9630c043c6aee33ce1bb8b6a47a46d4 legacy-trunk +26751 40fe183a892202d5c6477d4ecc2a9e89616b94f6 legacy-trunk +26752 fa7320cb37d95ec4ff8590075078c0a0fc9b2efa legacy-trunk +26753 2300734145040bca81aebbd8cb6d80e5e463f66c legacy-trunk +26754 dfd98e9521b37ef909a07eb321c96d4f4546cb1a legacy-trunk +26755 44fecc33889d8c00dd11dff88b4b4f29c10002c0 legacy-trunk +26756 bfe91e1e31b200627693c3f0d2598d491ca483b9 legacy-trunk +26757 38841bea24fddde953cca8750d73a9a372bdc1f2 legacy-trunk +26758 0d8740094beca26d70ee65de423ca13a7470a15e legacy-trunk +26759 956d038b1dd26f56c157c640273df3077c439af6 legacy-trunk +26760 a868baebe9564656e358bdfb25d4da7c67b5de07 legacy-trunk +26761 93542efac06669baaa84a79053b28d317d4240a3 legacy-trunk +26762 4e7815c95d3eaa94d3031e4b596d1d33fa19d541 legacy-trunk +26763 b9726ba71aa3f5e7b2c75b742adbbeaf30efd051 legacy-trunk +26764 c5c2b24db8a711950899af34d0c61231e24582e1 legacy-trunk +26765 b2aa2648df27b0ae6d69fa06adb858172250eff5 legacy-trunk +26766 977e534fc6c774220cd258bbed6fa3e0f3cbdc1c legacy-trunk +26767 e0ed68adba332756f423a32e62db8c26150fc1e3 legacy-trunk +26768 ee292a53e5fce894f05a5d0a64bc196788215532 release22-maint +26769 c5c4c1121087797dea10f3b4212999167a707e59 legacy-trunk +26770 10ae2d611ae9417d68ba2e181c04e6f448eb21b7 legacy-trunk +26771 473385fca2992883fbe946485e2931b13260865e legacy-trunk +26772 94bf6aceff788befadfb58449890160e82bf0a82 legacy-trunk +26773 2339dde6babecf8f1292e484e7df30215e7c0eee legacy-trunk +26774 60d86b2eab0fafa22892e40843c5ae0d8d7344c6 legacy-trunk +26775 e5ef166fc22f623e8c60ffc16ee8158c243632b8 legacy-trunk +26776 211b16ac066a70483472112874b78c97c6ea57c9 legacy-trunk +26777 58cac70602aa69935909469b7d6b7f94f784a19a release22-maint +26778 39e5c0d6c1822a80e7bf9c88b6eeadee01e7bc63 release21-maint +26779 81d067205b86f2b7d051eeeb3015a9ef5fa7e8fa legacy-trunk +26780 4f67e56686e58d9aedce698c088195aa1717fc67 legacy-trunk +26781 90efa1cab3bc2c7561d8d871b9c74b64dfbf9252 legacy-trunk +26782 642a453e7a2e923e05900e625921e87c20f87467 legacy-trunk +26783 f38bdb2fcae02d0557c7e2f01ceb8992a4441776 release22-maint +26784 c375c5b266312e1303598442259978dc14be6196 legacy-trunk +26785 63890bc29a7cbf4f8966b20801629baa7f87ae2a legacy-trunk +26786 62403b93f470b22e09828a289f7f1ced04d6c1fe legacy-trunk +26787 1157281f00a02b1377f8f7d1eb181d5ada2bcc94 legacy-trunk +26788 a4d675b8b53c0240793be9252458b1030ace9e41 legacy-trunk +26789 8eba4c92df2b4e4e5617e5df4929d65aebe673b2 legacy-trunk +26790 e11e950acc235161051fbfb871907da525ccd320 release22-maint +26791 1be6e79b1d460508396a53b31714721ff4d022fb legacy-trunk +26792 ab52312f82c79188640bc1a918523555c6f32f09 release22-maint +26793 56240bcda88c91f0b131c9fc636d5c80b5cc3df9 legacy-trunk +26794 fb64f21176afaeade35499d8f40ae26bf04fd941 legacy-trunk +26795 993c77587dca239232cd7b1fff675584cc5f4146 legacy-trunk +26796 25fd4a8f9e092274cd3e323e9b12aae173af8c29 legacy-trunk +26797 f9d5e1fb2aa6973caa42f7eedbb49fce44a00bed legacy-trunk +26798 82460fda4f76710b63a212caea508dd6e4bf2419 release22-maint +26799 08d6c8b780d9699d298d69e8cdb4cb5b6ec30df4 legacy-trunk +26800 de0ac03e5e72d8c856fff8acfc2e0fed4c7e8b33 legacy-trunk +26801 28f71c4bd16bb593ad5041415161bf8b859ac24c release22-maint +26802 6b2ba3b7ed326be4aa487930d82eaf4b34fa8b49 legacy-trunk +26803 b1589605393334a304070a9f164271a6d89d230e legacy-trunk +26804 03dfe7d343dbac3f80b58a9416dc29cbf85ef1b7 release22-maint +26805 f12193059239db2a49418825da6bd6fc1dc2403f release22-maint +26806 d3f275bd2c60a1d0f8610da3bd10058b3565cd9b legacy-trunk +26807 19a9492537812fa211820c56871db548f098ebbe legacy-trunk +26808 08ccb0f3e2d496c7be76ab3b3d31626eeaf4ddb2 legacy-trunk +26809 453e59a472b21a28f9b1470bc3203ee34435a47f release22-maint +26810 72f0c1a245f8df94f0f167a2f39d0b223a2df668 legacy-trunk +26811 1cc93d501b45f06b84bbec7cfb470eabddab51ae release22-maint +26812 273dd2508c57e1b657d66b8f2c478165f9537974 legacy-trunk +26813 6bae0c31bbfb26104fa0ff884cabad757f8a24d7 legacy-trunk +26814 24e2334e7bb2f8afb6f185bf7f31f869a818fee8 legacy-trunk +26815 26b924ad266cfb56af7aa77fb41216c9f350b22a legacy-trunk +26816 f98a27cb92823942e52c6549ad512019664b800b DS_RPC_BRANCH +26818 68c776ba5ea5ad1c5dfbed5c49b1818ac5207cd2 legacy-trunk +26819 64eb119b816d5ad5f5182be96b9007df0892d07f release22-maint +26820 ddb41e87d6514f760e2786e3d9d66a8ec255dcad legacy-trunk +26821 8a45bfd6b4717c1b425a5c8a45838357e2339e9d legacy-trunk +26822 7e5141b68c5f1d04dc0b774107df7e99fadac2ee legacy-trunk +26823 d9bb4ec3e75b327882b0020397c2be3ff6e5f170 legacy-trunk +26824 e43aafffb03c676f1a61a9ea48defb7596eef9ba release22-maint +26825 61348aa2ff986d5bfd6cf7d99877c9eb9bc36fdf legacy-trunk +26826 8183859dcfcd215155cfe812d10cd952dd3f31a1 release22-maint +26827 be54ba4b2c440e8ec9723136bbdcc97a8a503b5d legacy-trunk +26828 c2556e30fcb482add0ea201dc4b07cc919505110 release22-maint +26829 ab234107e267327c53169bdfe692ac73e92b663c legacy-trunk +26830 3abff11f82b3537569b80d2ca1757fdfa71a8029 release22-maint +26831 10c820083c2dc1644c82d0c88143115d0262d8df release22-maint +26832 12b465758729da290044c7d94dae2d6816dde059 legacy-trunk +26833 bd1c4b65db79104d45efc7fb1fbf82479216bc6d legacy-trunk +26834 a2198f72d5ebea007f3df5f1ef5a7d3e248c5f32 legacy-trunk +26835 be0bc55ecf4a0f618fb085b83f47144745c6ffff legacy-trunk +26836 077d44b0405be6b20cc8533efcc65c1216c6701c legacy-trunk +26837 344ae531e6a73e227117179bea04ae33d5a2c9b4 legacy-trunk +26838 7ce0188378ef3a8d86761a8bf165150d7988e690 legacy-trunk +26839 50a97a9629987a02cb7136999f3201c653ebaf12 legacy-trunk +26840 d3e025ef1fb2df98c0861a1979dd40046c20d7db legacy-trunk +26841 d35b9fff81e09b25fe37b5d59e93e9ccd83e3625 legacy-trunk +26842 73249abed683760db218b6d62df26fa8a5809c05 legacy-trunk +26843 5d73a2c7fae63fe6132666bacc6c9b5be33d91e7 legacy-trunk +26844 d917857fd334ea9e8d5399054a5a41bcb7012afc legacy-trunk +26845 5bd30a36897b1e4760dc479d0f111b193885e2b2 legacy-trunk +26846 17562106c2a046682d72687baf320523b30cdd7a legacy-trunk +26847 cdd5c751823cd92885e5a176fa115ef91426fda9 legacy-trunk +26848 c76e5c1c6e4545b5740b443b6c91aff8572dbb98 legacy-trunk +26849 bb5790c6cdaa1473745ebae2651ab9c0c0099027 legacy-trunk +26850 9b1e3b7bd7f124269bc368b93c29643771eaa87d legacy-trunk +26851 be6536f2ebefb1633225bba66b3630137fa18633 release22-maint +26852 267ae59eddb4c4b5e56b1568e8c5d8a4edf0dec8 legacy-trunk +26853 684edd16bbd81fc487b2cf3806b40e2f5a9161c6 legacy-trunk +26854 8673c2edf21cbe404a571cdb432e02af30a0fcb4 legacy-trunk +26855 bda98bac695601c2bbdc47e26e35b3943a64b9a5 release22-maint +26856 0c42cee475dff35d62b113c4f45bfccae4afb4c6 release21-maint +26857 76f376bea5e5a9a9188536d11d5c7516c8c09ee9 legacy-trunk +26858 68e3f3dd4d4884919d95dc08d4292bf13b599bf0 legacy-trunk +26859 f4318885ce9a63288b1009ea097c9c1f0cd6928c legacy-trunk +26860 989a7adf84efb357c5175dccc1844dff4cdb16b5 legacy-trunk +26861 85615ea65b1bf80af965c6786874064d6e5b87f3 legacy-trunk +26862 dba4f5176492f4541e56b4cd30a3125ec4b728dd legacy-trunk +26863 ad904db7344a9f941ea0ffa2a3851cf9d68bc8f7 legacy-trunk +26864 62688d6ac3879c0cd7e5e4c33b04ea362d4e671b legacy-trunk +26865 dc3a7f98d4ed12f3e862bb522baa024ac11e7c29 legacy-trunk +26866 631f928667329bb6c6d28add1aff9b308614c3c5 legacy-trunk +26867 172b6250d52603bf7758e334c27dfb2e67685d46 legacy-trunk +26868 76ef4b942b131bd883ce1b57c6f6b303b783dfd9 legacy-trunk +26870 7ab8c38117239714ee65d972982bcbd52703d996 release22-maint +26871 c44b21fcd38ad32e678534b9baf4f5e7251d6331 legacy-trunk +26872 b1d8683521ec4f374fa92a774ac29eae84c5bee0 legacy-trunk +26873 fba05347bb30ad7aa26ca6beaab5bb0c9bb8f50a legacy-trunk +26874 82309c7325efe3686c81a08966fbd8ba17184591 legacy-trunk +26875 7bc31ad9477cf5f65e02667446a8f8e63e370f7d legacy-trunk +26876 2675b158bf677dfd9309e9fb426c42ed5b3e9227 legacy-trunk +26877 35f01bf34d604376e93424ede7e86b55e78af899 legacy-trunk +26878 9eea5edd857f6ae4e3c139b03c7d565e67b10178 legacy-trunk +26879 b3898d326519ee2390646b85684e7fa673b3f689 legacy-trunk +26880 bfea14f8ff353c5ff28015cb01bbc4e45ac36b67 legacy-trunk +26881 73c01b1cbdb2c0161e31d3d24c5c0691b4e8c115 legacy-trunk +26882 c03e8899d4b190442fd77176af698c9f165abf1a legacy-trunk +26883 0014387fd6044d1125403bfe257d042d9cac0c48 legacy-trunk +26884 b8728d58e9c333eb0e8568620bdeb43032bdfdc5 release22-maint +26885 a90faa5f94171c7071153a7139fc03a669c4aab5 legacy-trunk +26886 2aff12e2a94f5c9de35697117afc12f117840d0f legacy-trunk +26887 b602f2291b5fd3fe487e85b700aa0ba5b02e4fbe legacy-trunk +26888 0e1771fc012f26dd73c48a4f5f783f1ed2a22b67 legacy-trunk +26889 c79b1e5552e84959af24eac891051cb78a4e8655 legacy-trunk +26890 98827a9d62c32eac6b9618eb8348ff354f873e7f legacy-trunk +26891 b21b6965866289b0d33910fc164852f7a4ba7903 legacy-trunk +26892 8a49a13fb28df70e3347b73b77ee0c8f54c9ac5a legacy-trunk +26893 ceca281678008a3d134dd135efb605fc2bbd2b87 release22-maint +26894 ecef65e57cc6bd99b4fce02f91da8f0b8277101a legacy-trunk +26895 a98e93eafef7e03ee0c33a3f0f356b94e2c29bc3 legacy-trunk +26896 2600cf7d33af823cb6b943c2f56cdd5cccb39e5e legacy-trunk +26897 a4efb59f87671832540d363d3dcd61f8bb7a580e legacy-trunk +26898 70b5e111ccb0902f720b619e0c174e72d29ace37 legacy-trunk +26899 8d946c9339e82101ebab7ea718392ea1a3d16c8a legacy-trunk +26900 0a4c92559a0b41664f21ac04e72c511dd344257c legacy-trunk +26901 fa8fe2e980625ae68bb5d3f43c47e9cf05a2668f legacy-trunk +26902 9e67a0d5705fbab9fb6aaf3ac2696bcf87172403 legacy-trunk +26903 b490ff1706d96462f329d914f1173a2591a4fdae legacy-trunk +26904 bd58946aa521b2ecf7ee4f55d398122f71a3e466 legacy-trunk +26905 f6ded6efabcf3090260b3ed92170e72c2390cd54 legacy-trunk +26906 220b98f0641564a0597b4684c3b7b2d112505b89 legacy-trunk +26907 40a031155897f9beb72ff7d0a8f3e2691cfbc1e5 legacy-trunk +26908 1bf34f4394c517e43446013258734a0bf6499003 legacy-trunk +26909 ce1da2f978076e4c69b29c41871a8dfa115b3fec release22-maint +26910 88903853f180ee6bb2e0c1e8087cbd288b02424f legacy-trunk +26911 b74afdd072eb0a1899fcd4f1665f8a820fa8b9a1 legacy-trunk +26912 303d81e15e70c3a2427a72ae682ef07695bc28f7 legacy-trunk +26913 446b2f2c01d8aaca3257ab3c1c2c13853f48af4c legacy-trunk +26914 b3c50f69f38bf238bdd560f7d1ae588e58a3d250 legacy-trunk +26915 a67248fd237010f82a5734f9e7f1891125b9dfd0 legacy-trunk +26916 3b2a7ee0866761dd8403de87e8d5546b8205748c legacy-trunk +26917 3aecdba455285a0e6db4744fc4b47aa3b87dbb77 legacy-trunk +26918 e5242f58a5b6f90d86dcda730241014d43c9bc11 legacy-trunk +26919 c4fa37f8978399321e48662a99460e3b77a7435f legacy-trunk +26920 fecce0173254f7ea2dcea2aa8375020f91f73dc7 legacy-trunk +26921 a399d8b13c2f458b49510ad80546f7e2fa55b70a legacy-trunk +26922 5d095898dae659bfd1afc7dfabd5428d429599b5 release22-maint +26923 53c614288eab94f6b0edf8a457084c4afa54170a release21-maint +26924 3a4793575ecd7ef68cedaee257e09eb96699960c legacy-trunk +26925 c5e8f89fd35868d51fc265c49a5401e041a66f60 legacy-trunk +26926 eaca627f2a546ce8e8fc542e6f9b722edacdf348 legacy-trunk +26927 508965ce5e472f96d926ac712e0b27aba458cf1a legacy-trunk +26928 3f242cdd0904ee115c5f465e50bcfcfa101a8c1b legacy-trunk +26929 1a67fbc7a0668231b98e49299d44dab1a8d77d3d legacy-trunk +26930 caf62eef7723e4c87844fd7a60a5d3d43b7a38dc legacy-trunk +26931 3d83fabef0a40ee5d1f0dcc49b76a33ec12edefa legacy-trunk +26932 ae0a3b14d2e8be78014fed53c8de2ddbbc0f4e32 legacy-trunk +26933 dc2623e0243e28bf77fae9cef50825b2e1616c0f release22-maint +26934 b6c32beb4dbcc9c802909f37cb25fa848a0f2909 legacy-trunk +26935 d5ae6f714cd51cc7d2af972460fcbf00b1ec0a40 legacy-trunk +26936 4d884ad80dda554e99e87885102c344e12cdc5eb legacy-trunk +26937 0ac653f469f070d44ba5abb9bb6566540fa702a5 release22-maint +26938 668c5ca4e0d48c6172a5cac12a6921d16a14135d release22-maint +26939 99df257142f6438da7e1c5124a1e235e9b29cd70 release22-maint +26940 7d4c5e4a0ccc26f99850ae63cc2477f7a82a431c release22-maint +26941 8f7b79cda0d321d7e83ead635160cf7fb0c366b0 release22-maint +26942 c367607bb5f7d20489865b0a480e1d6e12e49b7b legacy-trunk +26943 4e3ea55f7e118ca6e27b8e85a7de2237808a4b27 legacy-trunk +26944 7dba80d58ffd6644368909c6f3866c8c038db5bf legacy-trunk +26945 beb527158cbcde72c19857f438072d3351732068 legacy-trunk +26946 190b6bc1912a5d5d62d79bc98e5a62f176600a8d legacy-trunk +26947 0602c7e6b94d7213a4ed2776ae0cc9062c1a2a16 legacy-trunk +26948 c6af574bda2928f1cdd18f363d93c987df5300b4 legacy-trunk +26949 0e8370e7088863cd3d155a02767a6e8dd36512a5 legacy-trunk +26950 fba57e40f547d0bd63981deaf5190492ad94af3f legacy-trunk +26951 f12491171638603821b8b826bc53c01f338ebac5 legacy-trunk +26952 ab94ec4af98a934f6d9c7fe64b018e308350137d legacy-trunk +26953 b0658feef939e16c24a165b2266036ee61adf8f8 legacy-trunk +26954 a4bb18212b480eb93d1bb758a83d52db52903842 legacy-trunk +26955 acbe8e7f99d93b7ff34dc2dfbe8206654fe1aaae legacy-trunk +26956 d67f1e3a9f1abf58f2b3ae2dd33b3ba2e8ec1c34 legacy-trunk +26957 c844fcc3c9523ffa7c7b368316d0a1bb83bfd0fb legacy-trunk +26958 c3a67ce58245f4254a094c87f5f7458f2473fc24 legacy-trunk +26959 4380a7aa18dc6cdec8d889458c5f3eb997d1acbd legacy-trunk +26960 c2bc2ed145f727c5c1b436b09441cf3d7fd8520c release22-maint +26961 ed007e47b3a1399890b22ab1af0e74f29732ac53 legacy-trunk +26962 2b1d61781d63748971327b6de091d9ee2a68d9f0 legacy-trunk +26963 197fb305fc5cccfc82342cd47210303b29bc0c70 legacy-trunk +26964 90ee55b9d72ad1c37c790c29b015f2a50a6c8357 legacy-trunk +26965 7e400583755ff4806cddce0d45c32f8bea7834b4 legacy-trunk +26966 dbabb1f7ed3a44cb78db7d5aa8875a67d283690d legacy-trunk +26967 cffd091f56d0ef05aaaaf8e5f7ddd5ea195022b4 legacy-trunk +26968 ef8d456067fd28c76285a279b5117261137455d9 release22-maint +26969 7120620f432bd090a61ef808aa01dd0b523660e8 release21-maint +26970 5edea752a4219dc2ad958d6be8ddb85d00533a66 legacy-trunk +26971 a68faa26853ce739aeea1c0078065353c61f7fe5 legacy-trunk +26972 ec27ac19f9e3c1c9f0983c0b54f178bb27119842 legacy-trunk +26973 456d58451feea747ce11e87b19085cce21f3688a legacy-trunk +26974 0a2818cc342ce4d4216cf691e637422a7fd5ef0c legacy-trunk +26975 21b1d742e4a7009cda0651dd6f8fa6a6a32041fa legacy-trunk +26976 3caee2958387cd92f3de460b3b2df9a61cadf15a legacy-trunk +26977 4a1f5bd486ff9f80ebbefb1171d15af8c13442e8 legacy-trunk +26978 f4eab268e617e9049261fb48de131bf6b6391b17 legacy-trunk +26979 a6715ad416e5da2eef0d0fab3e18a829f7a62e09 legacy-trunk +26980 9da85837ff25084b3e388a23d708f6be0414c733 legacy-trunk +26981 3e3b3c1770ac11b59fccd593171e6b90051f61a3 legacy-trunk +26982 54483bc21871ef85bc7a32c8d33d761fb9d9746a legacy-trunk +26983 92626e5ab067354dd1b9db12a73de9e1e86caeff legacy-trunk +26984 a1de0bab5475093f905a225f6a26330045cc1bfc legacy-trunk +26985 87f40377cf5438b510619dbc783d491811e3322e legacy-trunk +26986 5edd80726d966fda2e90dd5bfe4b27c4b3b2e5a5 legacy-trunk +26987 c00febbe09295e300d1816766505782350dcdcd1 release22-maint +26988 aed39caf9860dd608bb2c84f81e3577cfb5522f9 release21-maint +26989 65cf478950ff5c3a881a5ebdda8753396abe57ea legacy-trunk +26990 63d14141dd10d0255ccfb6c0c4c7776a23cae83d legacy-trunk +26991 a6a765c7d33b4d71a763b96a0d6fafd31eb06a86 legacy-trunk +26992 ea979c5206b7e6b8755d907141d379434a7beb64 legacy-trunk +26993 4a4d120b2b0e09a8f56b0532c883257b59d5bcff release22-maint +26994 afe946918267a1c5063d121673100f52edf63684 legacy-trunk +26995 1a52162356028d4f3f4bc79efc904f42e89f8592 legacy-trunk +26996 1166013fab779536f65533a6a4189150ef31584e legacy-trunk +26997 0ee8ef7ca09c632e3722a4da6fe6d09f2a15beba release22-maint +26998 dbee2f628a906722fc430e0e342c8295c8a1ad0e legacy-trunk +26999 1e60b5d41417b1384a0978e48beb7e37f5250da2 legacy-trunk +27000 8551e642727c235e157329c3b9dced67237bedf8 legacy-trunk +27001 0b7fe0fa9dc6b1c3a9e82fd4011cd4a1075d3274 legacy-trunk +27002 8c215ddfd3d1a185cfcb5fbdb1b19c763b21848a legacy-trunk +27003 940fef324ebcb5f8c313461e7c381503f212d1ee legacy-trunk +27004 a25080f6901fe6c8e933b6c438d8c0f0bce32b5a legacy-trunk +27005 04a4a0e71a8dcf701c8874f093558cb28e956030 legacy-trunk +27006 c6463afd9f0860b843baef01e20c953bb82aeafe legacy-trunk +27007 70d76833550b0d935958945808fd964a6d245dfb legacy-trunk +27009 3ebd376aa4cb6b7975251a91f09da37b35fd33b4 legacy-trunk +27010 e1e90b0f1f4500bb55cbe302988603c1cebc8638 legacy-trunk +27011 220ed7febb0019ca6fa676eff9fcfa5742bee77b legacy-trunk +27012 ec8949e4e46d7824625d06feeb2f30be3caceb98 legacy-trunk +27013 b94acc18740e7e6862ea74f23cf7ee9eca3f4771 legacy-trunk +27014 b9218efae8f55c8fbbaae2620f986c9e5269f6e0 legacy-trunk +27015 a34523121cf4414e91c1cdac5e43f7efa648d527 release22-maint +27016 f0ca3935d011dda72f38de04a148f0c61e25d9d8 legacy-trunk +27017 b40165a4efe9ad2bdb36bb36d10ecfd285bccaf9 legacy-trunk +27018 eb6a1651ccda0372f67c2ed9ca3a609337ba5c38 legacy-trunk +27019 b86eaeb0d7dd42a77e9ceb56ff3a366fe5c9f3bd legacy-trunk +27020 ee772f6e881bb23420a377c6b91b1a6eadd11469 legacy-trunk +27021 bfdbe25a45b06868f177e08e8d7edc846f367d74 legacy-trunk +27022 5f978196fd3d02ff17db8d761af2f706b9cc95d2 legacy-trunk +27023 94aa4eb9bb7d942d05f422bc0cbaa4a5c12d2770 legacy-trunk +27024 5c5fff5de250d73b70ef3e2f5ebc010b2d22d180 legacy-trunk +27025 18d58de203d6e8de30df3cb381b2addb2464a377 legacy-trunk +27026 b5c3f10ce63979d6767f28ab212f203dc4d44039 release22-maint +27027 27e2120cb476313f927b7faf94d26adaa8181c8b legacy-trunk +27028 e419066f408f2d42e7a705702d034a16c5634637 legacy-trunk +27029 810dcf9d81c98dccfc6c117e0cb61f80b010f089 legacy-trunk +27030 6dcd4b6ee5da9e94d958c970c85828e7c78abaa3 legacy-trunk +27031 2becb5793acd1c986fd1f428b7d39ad8c484d6b8 legacy-trunk +27032 dc7d5c2d5845a9c16d87c251e1a2405205fff788 legacy-trunk +27033 ca87119255eb177fe7d6e4de5db5a2d06cb32028 legacy-trunk +27034 e32152afde4abcca8926d7a37fc7584a678ec69e legacy-trunk +27035 c3dba91afa6d142e39f9adfe3baa83b2f1af7d99 legacy-trunk +27036 8efa52e0a84485939a24a5409678da9910f0956b legacy-trunk +27037 edc423940cd6639e44c1f1b5a8dc6da51fa5312a legacy-trunk +27038 b92f81938843f9b6f97cf750da559af6e0a3bc0c legacy-trunk +27039 2fcc6d4e4cd261f265864a6b6d912f6aaeded80e legacy-trunk +27040 f35e751f5ff258466134c59c035e1a6b390e0d08 legacy-trunk +27041 3a1ac11ebe50c3e206f158cd6d76ff540c1284ed legacy-trunk +27042 732b69318168c2c8119340e37ff50724d5c13f8b legacy-trunk +27043 5c5902de5a54214f2be505d091eb7fb061700298 legacy-trunk +27044 b18348bdca083e33e5f63c31093e9ca45f896e1f legacy-trunk +27045 f159ea955e80ea2be4a32feb40a7b51f1fd16a46 legacy-trunk +27046 e3a840fa584cb8be9c67caf2b499942922904727 legacy-trunk +27047 d507ad86234232376679d2e6cbf87aa9e00b3f18 legacy-trunk +27048 61358f800b61690279ad14f84e51edf4c80bb96c legacy-trunk +27049 325bbb4937c5dc9f3f472a5097250583c0c394df legacy-trunk +27050 8a9a3aff32fc58d41d89a9c5737ff29f25ca267f legacy-trunk +27051 14938e76276a1a69660c993729e14a7188598ce1 legacy-trunk +27052 c4d2d305fd982a7dce900ffb97de1442df4db38a release22-maint +27053 d7bd7b7329a7ecd73958b72453877341472a755c legacy-trunk +27054 d6faa137948defcd3f40c64078fdc4a05dd38053 legacy-trunk +27055 399afce86eb0d8082670ef201f7cb702e578689f legacy-trunk +27056 3bdfc45d90968c9c99e36a7b7d45ca7c38d52c81 legacy-trunk +27057 3a2a6af9099283bd99f61eeca021881d22efc2de release22-maint +27058 8983158e9f11346ecefdd20ec15f7dc175c7aeb3 legacy-trunk +27059 08057a987910b3f94a1a57b6b1941edb67f2f006 DS_RPC_BRANCH +27060 a56f8c30af71c895adcc886a0f561aee827e5e04 DS_RPC_BRANCH +27061 8b9d9130820ef7ed84d364c29820e16ab26a847b legacy-trunk +27062 6266f1bd1ab93efdf168b44d28349b3a720c4f9d legacy-trunk +27063 0199aa274c7bffde8634b7fcd9e6a1d1cd5f12cd legacy-trunk +27064 cceaf78b85dc72e01c10efc3c5a4d76eebec0f9b DS_RPC_BRANCH +27065 0f570be6736ebe2ef4cb6e59202888efafd092e5 DS_RPC_BRANCH +27066 c0e8c07ae1d6cb55e18c2e939e6e2e83d1a69dda legacy-trunk +27067 7718b274ad8b12cd02a0e48d399cea17dadbeeae legacy-trunk +27068 18ddc02ce36f3582e920941a61ac2a0150e833f3 legacy-trunk +27069 67b9f53a78014cadc5170c14d1cf1af6941e517e legacy-trunk +27070 9a5c485796339ed6a0f0e739cecfbb9a7c330f4a legacy-trunk +27071 d4f6e2adde4846c207e291a162d87304c83fec23 legacy-trunk +27072 abe1bb76ee4474494b6609f0b2c14d72d14f2333 legacy-trunk +27073 e4add7bb5f148db51cd70bcb3a1de9a46cc7ca89 legacy-trunk +27074 f85f4531c3c16448926601727dbbddc8eff01024 legacy-trunk +27075 e37f1c0f9a1e936fa7638ee701dfcff8e903f43b legacy-trunk +27076 058bd2d50e3339f614de0c79ccbdf0319a0d1fac release22-maint +27077 56a4d3a50b76b86dbd52d65ed15949198d5f7691 legacy-trunk +27078 3b379ae3569d9310c4f35d13501eb98523e25df4 legacy-trunk +27079 44b9977d48487deda552510249b6a16c0f6b1932 legacy-trunk +27080 565032b48f509c53338eb292e51305b6a13d88b9 legacy-trunk +27081 28b9971f068f7cd4b4c4d9483754c838dc985ab7 release22-maint +27082 2b1219a72efca6ec766faf1787bb04c7f4e81897 release22-maint +27083 969bd597f9238c79666eca2de6c305d25fecc49a legacy-trunk +27084 c2733e8f6612b9b25ea8c746b076227ca1841171 legacy-trunk +27085 fc5361e028f3d7d6f70e5e066485ced084f6d0c0 legacy-trunk +27086 77154cef29d19f40f35c8a62d15291f502ad6497 legacy-trunk +27087 444954c5434c1ef7d814f8f28faeb4a6a26fcda1 legacy-trunk +27088 237cbd2a91e9bbfcb26e63154859b095005b92dd legacy-trunk +27089 b062085c1ff2b80a6572b3531bbb677f3ee7f73b legacy-trunk +27090 48e937e1b3fe3d10c26aa0d39519f336ce08e49b legacy-trunk +27091 75c51999c8d54f95ad1b5880131e4bbdd86450f5 legacy-trunk +27092 2f6f8708e3e945a71692bc9b76964e760c970f53 legacy-trunk +27093 db239ec307e07471c2e8ba1f3002efe2e2708eed legacy-trunk +27094 1235a95fedcd6caf2f4f94d66760cb1a1ceccb09 legacy-trunk +27095 2cd6ed1c1b583ba27875098000a6bacfe8036097 legacy-trunk +27096 9d11f51860dd3e1fd3f3ffc2bfd95c880fd8ede9 legacy-trunk +27097 5562a499fb7f8451cfe9cdd155ff5c5af2d8ff30 legacy-trunk +27098 5f85cae25e1855419f2eb3423e896fa40e820487 legacy-trunk +27099 af8d40e4c377732071aa2869345770fd1e2494f4 legacy-trunk +27100 e0a91c67388f4fd0aa50d762b566235483ad92af legacy-trunk +27101 bd26c120591a578e9b140cb516bb26329ba9c424 legacy-trunk +27102 7eaabe77d5cbd9f7fb3e6a30c438c6d2bbee9611 legacy-trunk +27103 308122b6996e44dc18ee9583c54e47335a363f52 legacy-trunk +27104 655f486284369cd4c83753291e25587da0d6689e legacy-trunk +27105 1842db6a13948546c1d6abd4cdf3d9dd389f523e legacy-trunk +27106 df1a275ff4f25b54a3542db935afdd94fbd30805 legacy-trunk +27107 a68d2466d94bf5549208bfae4ddcf6f40903d5f8 legacy-trunk +27108 27f48314ba9d0e1ec3364f64a11605a94528a810 legacy-trunk +27109 a2136ae9d4f76e725090743233b722608da8c5ff legacy-trunk +27110 6895200d62b19ce9d8b4c1fe37efbc68d133d7cb legacy-trunk +27111 fe769b07150353fe21c47639e27c779b54408344 legacy-trunk +27112 2e1def417ecb897c94ef76f118402f525648dd2e legacy-trunk +27113 ea035490f6245c28914821dbc4391b4824d32d59 legacy-trunk +27114 38832000f7e945be5c44a676604e507f664e250c legacy-trunk +27115 43ddcdcd3c71fe4ef7412c6940d2e6c64b8d252d legacy-trunk +27116 4d593254ba93925deedd00aace975614f9891630 legacy-trunk +27117 2d67a0ba9020d28e892d8d65c3a4b23173e340e5 legacy-trunk +27118 366877edd48763cca8a1746d533370d9231d4775 legacy-trunk +27119 7bc48029eaa9cb3d90bbe827ddf7672e9b47ea41 legacy-trunk +27120 a168b2f6d7daad6f5826ef9ee956379671890faf legacy-trunk +27121 471a57bf2dae185d480ae3d8cba0496a31519d4e legacy-trunk +27122 41097e92f560f99934bb2acfcd281648cb1f911e legacy-trunk +27123 2c8ea7f9a3cedc37ff1a6539ffb5d39291c07a90 release22-maint +27124 0279040ae03cba4d89be10ad5426365130f67718 legacy-trunk +27125 8e5f267966200b03372273f79ca4cdb2720fe200 legacy-trunk +27126 0771f9382d1e32de89560bfee52fb311e3fc482f legacy-trunk +27127 c7e8078171591ccd7cebd7ef545e1e17f7a2be1f release22-maint +27128 91317301dd098ca33b7f21021b75668f7511a39c legacy-trunk +27129 e640d89b4907415a08408620ff322efdc2f9a846 legacy-trunk +27130 94d0dc9d6e44ef107423be6b930ef8bed66a8074 legacy-trunk +27131 badbc53344886122aa8982531dcbabee0a4ebe0e legacy-trunk +27132 f16f6da4f5ffdb6d5ddc70a210dcd82966a0c64a legacy-trunk +27133 d58fb544511888e6fb591863ec859e66667aa938 legacy-trunk +27134 a7ceadb03edc9174544a592b561164f82681d275 legacy-trunk +27135 1cbcddca33b0283c3846e802c39a3cbcbcbdecbd legacy-trunk +27136 5fb08d832eac9c90837d4f23cf8fe9d5db721eed legacy-trunk +27137 4680ef4fe90ad4533d34bb646074953e2a704996 legacy-trunk +27138 35b6290855fc1e87438835fca91537aa903ba2dc release22-maint +27139 f6b2719fbf119897ead25071cfdc2ad59d35a0a6 legacy-trunk +27140 06dbd0898b39e243da31d47e71afd6f038d1f18f legacy-trunk +27141 a5534fae5110168677229117003c1837c2da0b30 release22-maint +27142 0c65f41fd9219ed8fd23bdc46b91c5d39b5f9f8e legacy-trunk +27143 50063016d04699d1186fe28d17eca7c681e17c4d release22-maint +27144 5f86c21bd9fc8905656a2a44f7b7bff449d32c0a release21-maint +27145 71db428f6e08a459ae4c42b1e86e45bc9673a336 legacy-trunk +27146 bec1b942e0bc3cd71e769a0172311f569230bbb8 legacy-trunk +27147 245224d1b8c9201a2ae843ee1217e3be3e751644 legacy-trunk +27148 55c9226699131341e27f48a4ee837b9fac511c70 legacy-trunk +27149 c7cda63a007e44f616d05a4b096bdd637f8b59a8 legacy-trunk +27150 730490ff25ea39bd65021a9e4ee0a883628ac7bd legacy-trunk +27151 54f6f89139db53d918e5561c755973f2305a526c legacy-trunk +27152 0dab8ba1d298079f9c0459e6e15ee5d6eb2c6c3b legacy-trunk +27153 24b0f6d693e34b37c52df05908e2b7c5dd83d6ea legacy-trunk +27154 7a32c2356e567cf899a2684623f54f00a5b21497 legacy-trunk +27155 e0fbf9c4d46c2d2be8d78537dd2fb4eb77573aed release22-maint +27156 9329770637a85852194f6eb694d14753902d2575 legacy-trunk +27157 9da2d8c132090948358b863b5a0b7e3a310a0f7a release22-maint +27158 c01c1b4a81716d1e237d410bc3be19968c4dc640 legacy-trunk +27159 486f4045d13df60896aef9bc21d9616f35cfe947 legacy-trunk +27160 cde6608739c42d45a1f6b08507f7557c489c4510 legacy-trunk +27161 7dd432e1de2666402ef6b590ff320059e2ac6f20 legacy-trunk +27162 7cdc531e6a504a09d7837f7fbbba53c290630eae legacy-trunk +27163 1f1a6f7dd60014db06cd8baeed889e1479a3f952 legacy-trunk +27164 80d450e552f699ce67a0f781e7ba1c78cf92608b legacy-trunk +27165 fcc36ee1924b316da97646e8e9224734597e0cbf legacy-trunk +27166 ba29485d0720beea8f01657e42a2d5e3cf2e8984 legacy-trunk +27167 1da6d67f4a05c5e30f3f542f6bda52acd4615502 legacy-trunk +27168 2ad13ee6d8505c2c2410086c196051f851883057 legacy-trunk +27169 bf1555a927117db18d3ec6293da894afa8fc4617 legacy-trunk +27170 b2b1f1ff5c71cda7c2df7458fc9df9feba6b5555 legacy-trunk +27171 4ec58c270f3ec0c0c9eef8989513766631bd42ca release22-maint +27172 7ead2d9df7f968cd54cccf6b1b70657a70473f44 release21-maint +27173 0b12afc4012a806cba45e63544b0b795ac877d73 legacy-trunk +27174 0601ecc7f4bf739dd3978217c2c3f3470ce077cf legacy-trunk +27175 c74d86dc401774dc98ee40514fc6ced67982deab legacy-trunk +27176 cc65b5bcfc38369b8d9b6576a479af61c169657c legacy-trunk +27177 79dcd57f272dec49333356c9045c764f96766206 release21-maint +27177 bb5b370492d6a3769e7e3aa50bf45706c2d342fa release22-maint +27178 01e4b698ff7efe0b1f3297a1b69cb7ddb24ac6a9 legacy-trunk +27179 e3e019bc4e1ece4145ee175751cd6c6b84701c55 legacy-trunk +27180 89a7fa918c3b7f689af434bf578b36f367ba4f9c legacy-trunk +27181 f6c26d083bf6c8df30893ee6dabf4fc986186f5a legacy-trunk +27182 c7d7d2319b3a1c7bb53b1def1a687c1730b81d33 legacy-trunk +27183 203d1412a7e826d3c042962ef5fb2519f51f36cc legacy-trunk +27184 e4d557d46b96fd65422dbe37665a473df7303ad4 legacy-trunk +27185 2d97bc2ba50d278d0beb62f63df43ed0666b75b0 legacy-trunk +27186 8a0a14e3725e3763f1567776faa0b971e1df2920 legacy-trunk +27187 43d658dc8dd36e44736d3b516bcecc93fdef3128 legacy-trunk +27188 130fff486fa64ef82006d27055d24761e4503b85 legacy-trunk +27189 3126c42629629b795ac3dc04c647c17ae37097e6 legacy-trunk +27190 99d22723252f5908995dd86a36576b275280bee0 legacy-trunk +27191 c48bf5df614ac04a7d255687a9b0d7550865221a legacy-trunk +27192 8ff691dc7f291ddd0c7b52687adbb58ffa17dc86 legacy-trunk +27193 9f0009ca97b9a5c2d7c87ed8da8d3c05112cefc0 legacy-trunk +27194 abcfa49952c432627e6d114c6f00c8f818dcded3 legacy-trunk +27195 d5e88c0c9e09ee55ab38159003e33da9ea21f899 release22-maint +27196 41c4ddab36f2e21e2c1374218e2ae0ddf6a51668 release21-maint +27197 e4272ad1a63694a20d1b1532cebe449af773f380 legacy-trunk +27198 ade1d56109a82f950b598920301d76a32b3bdc90 legacy-trunk +27199 f7306ae8662db58820cfedb28465f9d497eadb51 legacy-trunk +27200 ed1ba37a46b73f0c5b271245554c2dc7be47a32f legacy-trunk +27201 9f0ad0eb61f086ccd7a7f2a662ebe08d343f4079 legacy-trunk +27202 8ae26d9be1b4fc13f4df5911bc14a8c59d5c1aae legacy-trunk +27203 1cf1f9812219798943314f13af25a0083bfba5a0 legacy-trunk +27204 065a7f23be2fd44ac7ab09e6e3c7547f85549487 legacy-trunk +27205 359a57e96d5eb63bdc577e22e8d670a3703ad1bc legacy-trunk +27206 95263ccec819ccc52fc1deb58248ca368fdc5cc2 legacy-trunk +27207 c8815bd01ff578e59a565462ba0d55aa0929210a legacy-trunk +27208 903112c1c8876088b97ff117793623af4ad4f14b release22-maint +27209 3f196b4dc4c106ec3668b7f69ebfa9127b2cf12b release22-maint +27210 6c619c161b87f8dfd8112656b0760f72d6096d1e legacy-trunk +27211 85a4e727b16ba1e73aca4d5b128b1d3b19e5cbfa legacy-trunk +27212 bd37eb4daf3b674828d60c49ca487e9d219f0717 legacy-trunk +27213 b481ba967ad83710d369aaa596f143e50929cd70 legacy-trunk +27214 beb699e10b29ce224e010e598940ec82982b06d8 legacy-trunk +27215 f6c2c089fdf2ae03e379b699c46323dc313e87c6 legacy-trunk +27216 7252b867d81e28efcf629e109a496fce48e8a4d5 legacy-trunk +27217 c9c8f523ff1b5667ffddd6c2818f936ccecfd686 release22-maint +27218 854583cd63c7ce573b7b87292d0be40caad419fd legacy-trunk +27219 d6ae544acd24a1f72ce00534fed464fde91ee504 legacy-trunk +27220 46275f9e740710d9b0e5a0af264bd42d96717b77 legacy-trunk +27221 8a476924ecfea194f47c0c2660cd06db1d80a35a legacy-trunk +27222 8bc4e5ba1f6517a7887e892a8bc72f3155a80261 release22-maint +27223 2b071337205c01c2685b1bbf22aff3a5f054f52d legacy-trunk +27224 868cfbdca909699b0c569300a1e0274d275a8dae legacy-trunk +27225 5027e7c12a16003a06fb03a0a441ffcbed8dc951 release22-maint +27226 5986dbd0094fc3b3f43241e01a9e8bcccabedbaf legacy-trunk +27227 6d008a4e263335eff7ee36d7514b47e9d0ae2caf release22-maint +27228 63ee31bb25f3256029377f6b740367c8a8e052d7 legacy-trunk +27229 d7b307c379c8dc1dd5d036ffc479da7343b99370 legacy-trunk +27230 b79d43305c72d9473f58536cea1931ff93a73e64 legacy-trunk +27231 dfa68668d00ecdb56afbfdbe45d86c536305b675 legacy-trunk +27232 6c1a0dc851b6c1cc395c86f17af6729ae18c236d legacy-trunk +27233 1a76e3c4508f36353b2e3db65ce2fe7d6fccbb43 legacy-trunk +27234 487a6b99f7811b0e8106c03ddf21e1a4eb37d2f4 release22-maint +27235 45d6769338828f7f1bda308e17ae417586c23ef2 legacy-trunk +27236 8e6760bf1884e7cb40087a1bf6e493544db5b512 legacy-trunk +27237 8ad81b3795520058ae1c7843f01030d62ef52aa7 legacy-trunk +27238 63d1e3263f4562f39545926136416be1424f94ea legacy-trunk +27239 95e7bbbd0954945eda987ce701ea3736515e4179 legacy-trunk +27240 c02d1c9a662e665a407d50994a444f221431533a legacy-trunk +27241 4588b6820a11e54bbd409fbefcc57190ba5bc542 legacy-trunk +27242 15ab29393779f19aa83a2abf4c9df3b7b75011d6 legacy-trunk +27243 5afd14a2a8bc6c87601481a652d881f916ce479d legacy-trunk +27244 832f0501148bb78ecf2ee43e29d3b2695c4ed17f legacy-trunk +27245 0499df5884d2f54ffc43f04f6731e466726851d8 legacy-trunk +27246 4f6d31dacd5e67e49c52c57739be2cd00ef89314 legacy-trunk +27247 08475c87d24f50d27b843e12e8e107659fd777cc legacy-trunk +27248 bbaeaf2719c4bbe6562e87ce0a0ce9186576a7bb legacy-trunk +27249 8b7d87ea4894e1d60960bb086fd2853b7f76aad6 legacy-trunk +27250 3dba866e862e9ffa61ba451b4b6f971d50300236 legacy-trunk +27251 000ab584e77a61b4288aeb1b63bcd0e75cca57f0 legacy-trunk +27252 ea7e717dee2723b416499760d55547f098086022 legacy-trunk +27253 4c67dd42a1d9ea38c599c97348feccccc7d41bd9 release22-maint +27254 ab5355d873dd587c1bee4700dd203f3e8aad7cc9 release21-maint +27255 1cef61d59478671e05bb3254a16d8cb2e62e5cfc release22-maint +27256 7b66f0034233a766741c336e49601bf3b67dbc12 legacy-trunk +27257 41ab532d4f601cca44cc6995b0037b5a9b38dce1 legacy-trunk +27258 c145fddea34084ff63a190ba361234fc0080f37e release22-maint +27259 ea9d333f9034e1d5237462bb830032883feeae40 legacy-trunk +27260 a44f3877a386bf2738754e19c53178bdd880d477 legacy-trunk +27261 83e458a63c3fbac4376e42d94b22dd6381333fd0 release22-maint +27262 324c72675c8d04b4b2253c0ca428b68d44db2efc release21-maint +27263 02c5045d5b4e0a327f8fe8892770b86eca832481 legacy-trunk +27264 ad1d862fb63264df0a3f822cc486a8564e117947 legacy-trunk +27265 8305a19584bc88ae16e68a8ecf55ead120666028 legacy-trunk +27266 f5030a29935dcab3a32cda0a86b1010aff8ea761 release22-maint +27267 285702f0824a637e73c8e5f1ba5f4bafc4252d12 release21-maint +27268 0899409a0cb6d1e1e3a8636987cc39c6fea56429 legacy-trunk +27269 01cdd38d35fa0d0c20b1e3f33fa9f1a38addd573 release22-maint +27270 a07bc303a60d8ae3b74e595c160c3c88faf55168 release21-maint +27271 066f8938071a55088ddf7dfccb692281afbc3a90 legacy-trunk +27272 4f0606ceeef8c94394eb2bcf293e1de505e35702 release22-maint +27273 e8bae253784b3edcbce13264274cbe473722b77d legacy-trunk +27274 9ce71b1cc17f718e9cb9250cb20df27c1ed3ea71 release21-maint +27275 73cf4d847570ecaab5485243da87bea41591097c legacy-trunk +27276 92f289c2f7c63d977b15919e8b38dafe49d359bb legacy-trunk +27277 b16d4be6a232ee181118475e30d0ab91e4e451ab legacy-trunk +27278 921064c26297b25eb23ba96d4cc1beb1743a58cf legacy-trunk +27279 6893ceec8610e9c54843461d4938d795f2fa4ba7 legacy-trunk +27280 075f755a65da16bdefff370900a83922a0541634 legacy-trunk +27281 1298e97fb343adb16b2dd1edbd3c46ce6c75dba1 legacy-trunk +27282 7e3eac5d329979cd9620f8e0b1fe34a5847ca0de legacy-trunk +27283 620b699685ff0428d29560c9979ac32d3e3dfa1d release22-maint +27284 ff0cd6878bdde5fbf236575711a085d34b57076f release21-maint +27285 ce163f340cdff5c3622f96228eb81be3142a6e90 legacy-trunk +27286 0bcef3ca21c06a372387d1918e9758ed7a39c717 legacy-trunk +27287 5f69d6f17aa31092d7077af2f8cdb8758c2a30c7 release22-maint +27288 815d02800d980bf02120844955ffd0828145c8f6 release21-maint +27289 bae996bb7d82ce2dee9241771f4a2ae5cc259766 legacy-trunk +27290 37560f434f6a2beae0da6d2a75cb141c187cdf6f release22-maint +27291 12f49fa8f47f2aba2466bf204c1c419e18eb07f3 release21-maint +27292 9211bc7249a07eb3442d4ccd052263ae59570516 legacy-trunk +27293 fba7d1035fed5efc1aa40331a10c47b5c3fce488 release22-maint +27294 5586f208581586b5f91b8d9307c3443eeebb7342 release21-maint +27295 970aa97128131ae4977e79927061d04d8e292aba legacy-trunk +27296 7dfe48c7aa65e0c6cecd15e981afc0aa84b086a7 legacy-trunk +27297 26ba17b758b9edd99bbdcce9458655596f5da47f legacy-trunk +27298 8eb2f31eea9eb3eae2aa2c64386f289c041a05b3 legacy-trunk +27299 e558a40b6b52311610d8b091e4f38c08b2aa31ba legacy-trunk +27300 eab8eca9ec51d2b92f729da23a503fd298dca4e8 legacy-trunk +27301 5a2302f797249e9a166c0691089b9ad45b95a955 legacy-trunk +27302 3042dad149ae73e73cd2c549257b189f0eff40ab release22-maint +27303 b5bde77da20e07cf917da8ffcb282b8219086216 legacy-trunk +27304 d3b5fafecb29df8fae1f6c6692b1b79fbdf1c0dc legacy-trunk +27305 3500da666c0c3d696e1779e8d31aebb41efacbca legacy-trunk +27306 d62e684542b9bbf5366cebed3dac311ea7ec9b0a legacy-trunk +27307 84f092b106efb90fda60291116d66180325a7d01 legacy-trunk +27308 83354c2ca3903d16b4159d8d3eb20853fbc9c5b1 legacy-trunk +27309 a60a3d9c6fd9a6e863a838e32081bce0573c22d6 legacy-trunk +27310 6e2a3c5700ac9c7a11dba675b4056df3866494ef legacy-trunk +27311 de625517ade802d4d33f84f8cbd7d58118bd55be release22-maint +27312 aea8fb3e3f3d7db835de7a31388888e9ec37a27c release21-maint +27313 85e1204b66171bcf7a982a0c0d70de11bb4db133 legacy-trunk +27314 652f1b318e5a081e7d5cd1462839ede3364c730b release22-maint +27315 37118b6e5f46124ca4460b72b02517b60be59739 legacy-trunk +27316 83aa99deda74de158b5d992405729089120e66b7 legacy-trunk +27317 ed62c04b19f520e359b6815c0e3bfdb22f97de8a release22-maint +27318 f7ce696979e18b011a7e407795f1d98aa2324c43 legacy-trunk +27319 d4bd6601701d35dc979fd7a995685e9f7f7481cb legacy-trunk +27321 3834cb0e7be65c5ccc850309d16eba5649d617bc legacy-trunk +27322 cb08ca57e2a96628871807ddea24f44ba3b51392 legacy-trunk +27323 11a6d9b5f9906596a11a8e3a2ae9282818eaec16 legacy-trunk +27324 aa238770d808f53eee661ef58fd3353f9fa7b63b legacy-trunk +27325 1a2b5344d1ccf3e6148d061e9964ed08b73870ba release22-maint +27326 03bba7282852cbd2ac4a1c8d8463dbb4073fbcfb legacy-trunk +27327 3138167201aacd78cc3ee2f5699057dbb415620e legacy-trunk +27328 4eed51ad493d4ef3a5f3c91e438f0d23c1099284 release22-maint +27329 096b475e1bef025837390cc59f8f8f44c22e8753 legacy-trunk +27330 7d8c6b889b54e301ddfa8c60742f446345485d26 legacy-trunk +27331 111c1e59ad72ea0265153b022421beadcd27200a legacy-trunk +27332 f5405c6ec4acd369d3e29366fe1a09359877fe54 legacy-trunk +27333 f7e191c8db23f3266fa0591c11300ee37a14c587 legacy-trunk +27334 1fe005c4283687bc5a5d61e163c24586ea8c9b24 release22-maint +27335 25b0af27ddc8572d1001ce6d0055fc025c1eabd1 release21-maint +27336 1a8096bb4c48280c48c242f8a036bd955815703d legacy-trunk +27337 e2fa741c547f51510daf6d57aa487dc05ca952cc release22-maint +27338 edd7c0146ac824f5b4e4c9cc55f2adb93d3afbe9 legacy-trunk +27339 a72997f7db4c7018f5b9544d70761c5f388aa089 legacy-trunk +27340 7ebd2cd3aef01b7396b813638ffc90897e6ff069 legacy-trunk +27341 8149d978b006f770a91a7998696b6041effd242f legacy-trunk +27342 fe9c7132a867e8e7a2a854462dd899bbe03a589c legacy-trunk +27343 c69dc43b700a97f95f85fc505a12b426cbe83943 legacy-trunk +27344 481e4a4b8de069c157d0d739cc6ade4c0affe4a5 release22-maint +27345 3600d8d07358329d77ee46e9cfff142dfcd1ecf2 legacy-trunk +27346 a7b169ef83eacc1cf83222a80b930cd6192e2fff legacy-trunk +27347 26a0d0da1312c3c0cfc6680f22daee8fb94c1af2 release22-maint +27348 0825bd7b5b558e01e9a444a0e3b48d8cd401482b legacy-trunk +27349 35c9894f06b960ce105c3629ac7d2e7f94a1a9aa legacy-trunk +27350 32463e8e5e1ae6cd9834c1167c577937f5785fe1 release22-maint +27351 a181ccca1312832dc2b3a032eecff2ec9a5b341c release22-maint +27352 d7a62042e7efa5950d0f5b2576ef904afa8bdb09 legacy-trunk +27353 212ee6365bff983d91d8519842e34cc620863d66 release22-maint +27354 7d8a150496a8f06d06a3702588ed2962f8ec3286 release22-maint +27355 d7f8512da4236c9fc1d59730fa6c917611d60f25 legacy-trunk +27356 a56292732566dd47824a0ea2a7b2fbda9b1c5e08 legacy-trunk +27357 8863076e2df9307778625c4d99d9256ec2ed158b legacy-trunk +27358 33ea522dd3d22ea9913ce27fcdff04705b557019 legacy-trunk +27359 b771857ed7888de33b968abeaa38738bd9ae6ead release22-maint +27360 4ab9df2416f936dc2af37fb0471e343013c23998 legacy-trunk +27361 95da99187c575420937d7e5f2114a5069ad46d34 legacy-trunk +27362 ad6fa1c04e4747708ddab223e5f2ace7ebe01879 legacy-trunk +27363 48ad470c1f8e16a42ad19395a286bfdd1dce2deb legacy-trunk +27364 41468f9353ce9a893333c17203286155f0464b4b legacy-trunk +27365 703e63ae0f01fc4df00cebc248d82642bb439301 legacy-trunk +27366 1f6510051c8ae862d92a4e4a27fe2823d7bd5331 legacy-trunk +27367 dab8701bd3fa24b415e8c3cfcf1a503a8ececaf7 legacy-trunk +27368 4e63e9771f30c509849616d8ee79dfb2f7a51656 legacy-trunk +27369 b8875f16a4be545f2b79044ff4817207b50ee129 release22-maint +27370 45b9e122c33a7a1edf1822a37db3ed6edfe28f47 legacy-trunk +27371 b71e0f96de23357af320833f2abae07a10fb80e0 legacy-trunk +27372 ea18778df6c37008c219ad692bb3e52c86a7cacc legacy-trunk +27373 14e2eb9e5ef2bea60abd8b149a5fc31c94d4c46f legacy-trunk +27374 19a609517ab8a6bf52b3c9e43f9358c8074b2faa legacy-trunk +27375 14d8ee1e8de5ccd14c510802474f0fa64bb6c18a legacy-trunk +27376 00e578f78caaa2a8763ed0c527e583f32df48085 legacy-trunk +27377 44f7fc30767368384048e207559d98e4ec53e7d0 legacy-trunk +27378 c882904607919ca31da74dab1c7395909de73a74 legacy-trunk +27379 dc872a2f513b4421ac0e94cf139de49318cf9103 legacy-trunk +27380 9d89a9a054e0409ef137e5ef2586a56b47e695bb legacy-trunk +27381 e8a263db1be033ab59cbf4ff338991c1698d3b76 legacy-trunk +27382 71f13cf4f9e2d932b5d98904f467b6b8140653f4 legacy-trunk +27383 2e5a1e8c0b481d64a38ffde5def5b7c0590ec4a9 legacy-trunk +27384 edf950bf423258c6fa626439ce4f487134f4db3c legacy-trunk +27385 58433b66f58389806d7177859f90b5ea983db546 legacy-trunk +27386 7f83b2124b4ed3936ece995b3b86f7f76edea51e legacy-trunk +27387 d8de9b5f561eee8ef2446561465a4a4723da4a2e release22-maint +27388 3848aa3edafc6c7734799b770868b5bc2c70c202 legacy-trunk +27388 74d5cd698bbf71cd9b4b96419d90c0908835c4ad release22-maint +27389 fcf2e01c616a604eaf0f535a5e88fe27430b8cfd legacy-trunk +27390 913570ab0737433779362e816238d3a74ba74e53 legacy-trunk +27391 9a9d6ce5ed4e225fc5cf3f76fa0f3971d3b5ea6c legacy-trunk +27392 bbfef948c43e80041c51fff88c3ab72ddc18e2b5 release22-maint +27393 74368987f7f0a03de1945e8f7cdbfb1b05bc7e46 legacy-trunk +27394 bbcee7478fcb84048975dd44a1a798f1a744e3b2 legacy-trunk +27395 34b8cdbbd8fe3394e54eb587c8faaebcb8ee64c0 legacy-trunk +27396 9b6d259c25eb7ea601ee4fcb91a6dd5ccb1d0b52 legacy-trunk +27397 5b508ce049f5d085b3619de65cba783a1bd015e2 legacy-trunk +27398 c4d68f82a6ddb8168b890e33c730b805d507c6eb legacy-trunk +27399 d10f1c6d9ee943068295e01a5f500a20591a1865 legacy-trunk +27400 c10c09192c12bca1e1c908531ebf6489444a694e legacy-trunk +27401 07e74993573c5b5ed5ca65cae2adcd16e93edff6 legacy-trunk +27402 275d04a35542264bd22b3cd85acd68d20cfb0088 legacy-trunk +27403 77a96ac4dde4c0805aa616fa9bd713310276870e legacy-trunk +27404 eae496efa460132746c513e1d8ac265196f1bdbb legacy-trunk +27405 2c2245aacef88fc85e95d0a498e191826f64106c legacy-trunk +27406 9377158652dd0d4b86a1ec2b2fc0b51ad50f8f4f legacy-trunk +27407 a3d6128afb2e5531c92d0150763f6dd7c3298759 legacy-trunk +27408 a78d41ee9474f76174a1cc2c145e250296db332e legacy-trunk +27409 af0532f23ab3ffff9e7004176ad539eb0b7ae45c legacy-trunk +27410 63fbbed10714aa54680db8f6565bf05d434f7e36 legacy-trunk +27411 fef397b1b85c3d89f7ad4cce2d6160b5ace9ae9b legacy-trunk +27412 90cca857d20322a1b27e7fa9e68a2b4d612b9167 legacy-trunk +27413 4046282cb338cf7e536aa1246bfcf25368f0d939 legacy-trunk +27414 8ea86564fb326439feef6c0a79ba93ef6d445747 legacy-trunk +27415 bc6aae74ddfe5c40b3e753661e934f14e67ebda8 legacy-trunk +27416 2c79b1a8d616539151f6ff9ea8232f95bbc9700c legacy-trunk +27417 d93f342015038a798f67958d3dab0775e2ea8c92 legacy-trunk +27418 71840a1bd82fc7c4647b43b11b426819a3e2dc3e legacy-trunk +27419 a922112d780c5897ff44570c834a04f98c8762a7 legacy-trunk +27420 cb16995aa7e809ee24e73fadf6dde44733cbd261 legacy-trunk +27421 9913cf7c40861ff4944c98cfefca2c248c8d8f8f legacy-trunk +27422 67f2b40bab7070a2da055c01eb3cfe5e6ebacecc legacy-trunk +27423 e9a6a0c4b33f3c8dfdde17ff14e9a2a0df080a6f legacy-trunk +27424 dcc2b75d7a78c0f4d041b9d3236d60bceaa68351 legacy-trunk +27425 1871733524354965cfe9b2de7cd69f361d5058b6 release22-maint +27426 37ffce2d9c3ce0536f0f59b94ba6912bfa6f3afb legacy-trunk +27427 d24c8c946741bfb797331c91677aa0fe121a3937 legacy-trunk +27428 dd9d2ec96ead0ce724a358ff666be8861fe07513 release22-maint +27429 b9e0c5753238084b65cb81eec26135cefad8ee00 legacy-trunk +27430 3e863a65b1a442cdc46b36146b014e99b33b86e4 release22-maint +27431 e8789751a5ccc3665148bf1b993e0729117133fc legacy-trunk +27432 92834a248c15cbf7ef3fc14d8418b8a8032ae48e legacy-trunk +27433 60e41a54e7b109b20bf0130395e09aa93132727c legacy-trunk +27434 2c6f931d8dd25141bba60e7b43679fcc38b7c9fa legacy-trunk +27435 c79432feb862154aa86ff78280f474bed61f19cc legacy-trunk +27436 5af9081a6cd409e4aeb108a311f2babc6d300385 legacy-trunk +27437 0d9716c3b8ecf35c9924ffe30484a366f2c6e0af legacy-trunk +27438 b128255c2bea7077db3289eda28e44493a845068 legacy-trunk +27439 8142f8d668a0f4ab7aafee90bec9bbb31727ce07 legacy-trunk +27440 86b3760d285d60f6dc9226da7c8dbe27f5ef03c6 legacy-trunk +27441 1314642ca0976bbf0ebc563bbca846cf52a89a85 release22-maint +27442 a1805a54666fbbfd91a0c6f328b58e2132df0772 legacy-trunk +27443 32db075def3f564b5b6b1d0127ad4c5d5021f83a legacy-trunk +27444 95ccd5bbdc86d4f25cd8f9e9d496b3874f054967 legacy-trunk +27445 a5162fd65c3d5bb0d9862b833959f4aa9b662413 legacy-trunk +27446 702a5900df7d65f9d4068b2510089875c68c6963 legacy-trunk +27447 183eba2d22140c1e1eba5c63c1e2dfdb6e597a44 legacy-trunk +27448 15447a5573bd11489273e5141e300de23002141c legacy-trunk +27449 800912f7df2e392a048d16fbbd9dca32254c87bf legacy-trunk +27450 e66ced481c77a4bcb25549d9e309aae85ec2b00b legacy-trunk +27451 d7126c34128a9d9bd13366f09160fb84f19ef57e release22-maint +27452 6fed13422bb1aafd1239619cfc35e1f73b1ef1b5 legacy-trunk +27453 22d2f037af9d3c4ceb43c6ec534fd50bb2fc52fd legacy-trunk +27454 86dfb96a1831fd27eaa3a0c3345d2f0cf1529cc0 legacy-trunk +27455 355e46cc124ff1116e45cf033e2f14bcea809493 release21-maint +27456 b74d4a59793aad447b515c21c9d7096eb70db253 legacy-trunk +27457 b185c85952fe838d709a3605cb7d6bf2af3b8c0b legacy-trunk +27458 bc00eeef0ac7bacc04301536a02ecbc7671860ee legacy-trunk +27459 4298e269bd672010438ca3cf8955c227a9d681ba legacy-trunk +27460 4026565fa7ebdff190b2c529181e55e889803f04 release22-maint +27461 a2b677af7b289d65a0c1150912884b764736dcef release21-maint +27462 68995e854a88e3d5d7f7bda777643e17060df8b3 legacy-trunk +27463 dbb14f85ae7b60dd328ff1a6e3a4da89b3777c92 legacy-trunk +27464 2a20574400afb60880a45a98c862a8c46a3f507c legacy-trunk +27465 f7abbd15b4f4819b17d0c84b2200779ac9057b00 legacy-trunk +27466 cfcfb5df6e61cc4b50fe3c52b075849d8664bb8e legacy-trunk +27467 51481b39cd865c1e7ee4b321ea8028fb69543aea legacy-trunk +27468 0a18ef5cb3e7ed77198c730f2e9f40c26362cf08 release22-maint +27469 f8d41e2649b7e5de77b66912717eb68882dedd75 legacy-trunk +27470 28f2bae1031bf3f08556a39e28f710921e9f8fbc release22-maint +27471 46a84d2ff4e2ac7a028dc4c31df1a43822affc10 legacy-trunk +27472 6676623b3b7421916e79549fe74bd433a0a870c1 legacy-trunk +27473 8ceee6630322c57545436c376b0610f4a85fc36e legacy-trunk +27474 f7c0d6871b07f0311fd6969640a93200a815de17 legacy-trunk +27475 7336f51faa46cb7e1b5220343a955e428097df52 legacy-trunk +27476 6cd932ff0f09d8cfe73d6dd0f15b738f99812884 legacy-trunk +27477 80162dbd47f0132fa59c8fdf20c6cab3deb6e849 legacy-trunk +27478 805c228cf77b6fff920b987a4e645322876b47c4 legacy-trunk +27479 34d7137098a7519478581e4c1b058d2ce12961f3 legacy-trunk +27480 cbdbb92efd369f8497ea8a823412fd9b615e87b0 legacy-trunk +27481 f35e29aa0d924c4245be41b15cad2239d328767f legacy-trunk +27482 ff6873d28a14683e5c0fb8467c96690cf87b181e legacy-trunk +27483 fa6be9ee6c9c4eb7fdb395ec4221c22d68d6ffa1 legacy-trunk +27484 13240b8f8ca0141a2eafd890262f77577b8ebf97 legacy-trunk +27485 1e0acb45ca8f0fce1c5f65ad21ea5bd20fd0c3ef legacy-trunk +27486 f36fa10ebfa0c26057ece3f7e71298ace02fb536 legacy-trunk +27487 f33bb9c131f8cce5644849de15d0d016bb7ace0f legacy-trunk +27488 b51a578f5769b5f1999998acf501b61d2c975f21 legacy-trunk +27489 bf3421a287446cd21682982f3bf27b0c6065ee65 legacy-trunk +27490 d332484e394a80b46f0ff0f64b50b7c64a061151 legacy-trunk +27491 aa6217bf977643ac478dd108ce1a830e443152f6 legacy-trunk +27492 5da605d2b5477a411974fee26d840ddbdaaabfac legacy-trunk +27493 f38112b88388e78fb38b68d94dbd94ed9d8f3abf legacy-trunk +27494 7dcef2f87068226dc7dba9b2cbdaa0c2894191a6 ast-branch +27495 e33393ce4c513ad7c2ec0745afba1428fae4c191 ast-branch +27496 30c7cc5f25873ef873baff0a09c562794aa511a2 ast-branch +27497 33f21eabc15506dd5bd91b60157ab76505f46707 ast-branch +27498 c96e58438a9f165338f72d4f2dd6deb6600af0d7 ast-branch +27499 f74f3c3190993da2496f64ca214cd89a3c0ec4b0 ast-branch +27500 c42636306e96b6d087d0698cf5e9239b92d93d7c ast-branch +27501 2a6ec992228ba7a35f04f214fdf25fe0efd3628e ast-branch +27502 844f129fa1285285577ce455903911d8d046b5c0 ast-branch +27503 fdf80e04e4bbd12a1c16b33db077393251af989e legacy-trunk +27504 311375464fac332acc32247c8f0184744686b021 ast-branch +27505 9e63b0f409d4b36067b7c361756e31fd6fa412ef legacy-trunk +27506 76e9a14fb7c5a0af3b9679fe88f4eb23770ddcd5 legacy-trunk +27507 399b09a27af314b470b3163795f29bb3e9fe673b legacy-trunk +27508 707c6f026142a40d6b5d86d16d2fd94a099e9ac7 legacy-trunk +27509 e5ecef5a123ad890f351216ac72fac7f542811a3 legacy-trunk +27510 12f2be85da259a5263019b94f3ea4f17f5cc42ed legacy-trunk +27511 8dfacb06c3d1a4f102ab1c68220bf5f1069e99fb legacy-trunk +27512 865a77ce40a9f863d74432b6a019913d3ec5f13e legacy-trunk +27513 7c1a76b7871222c2a19bd2ae8841b08ff42eed7a legacy-trunk +27514 a483c5ddb7f1b5e7110fbd9b0ef19476241e3f5c release22-maint +27515 176ad706afbc56bb737d3732e1ef24aaaa4266d5 legacy-trunk +27516 c36be79fdbea171603c4519a791f96a60cdee0f3 release22-maint +27517 abedc5cecc649d73c94fd1018b09034686c0ec45 release22-maint +27518 39c0bf201db9c431ea9d8423ba7766809ea18b24 legacy-trunk +27519 40bda3e090f67ba684b3f6f76d43650a232c1077 legacy-trunk +27520 21bd86e00bcec1b3346358053b1492ab1b90de50 release22-maint +27521 e9e6111beec1719e8fdd594d4e1231318499b4ac legacy-trunk +27522 d7d816e1f52264aa84982b11f3a183040e50919a legacy-trunk +27523 7189091217371bf4bd788222c9edba3456e786b3 release22-maint +27524 69fd82658bfb3274819567364ae6c01efc1148bf legacy-trunk +27525 be02d514b9a6696c20c7bfb3e17c9e15a86491d2 legacy-trunk +27526 481080f71439ab32becb906ba0b8cf0d0e9efd12 legacy-trunk +27527 7bcd8177628f35aa6a3968a83d0186c69923191b legacy-trunk +27528 ea03843754c0024e743ed92528406677e273bf87 legacy-trunk +27529 562d7f8a82a19bb32e1da83f14432550c4cba2d0 legacy-trunk +27530 bb7c396de3aba780a10a23968db57636d34ab085 legacy-trunk +27531 a59df2fa4ec8aff466839038a657298e7d320c5c legacy-trunk +27532 208fb1d611484e711c04ff25c7dfa000af410987 legacy-trunk +27533 9456a2ccda610a1da4dcefda4729762f7af5fdad legacy-trunk +27534 44c19699fa7ef9dd3f3292c9d68d092407245992 legacy-trunk +27535 9dded6f188191d08744432d4d84348b2c7b4cfdb legacy-trunk +27536 233a50e10e66ba4cf035dfdf7962e8320ba1cb45 release22-maint +27537 cb728141ae12a253cd6e5b413c510f1dc50c4dab legacy-trunk +27538 637dfcd963b9832a4b851dd78050d66235477a11 ast-branch +27539 d4d5c340e054382b078ed28be7003f372bb84372 ast-branch +27540 22b212dd86c1da3c5dbd668fdbaf1590aa11925c ast-branch +27541 fd17394f6dcee1b8f2780e0440a5645c60a068f4 legacy-trunk +27542 e685f32d80688d18a9ad3c30ea9368ba40258543 legacy-trunk +27544 8ee2ab4f2a2d498e2a207be48621935dad45eea0 legacy-trunk +27545 a387d4e539c2d82e7dbae3ba795bd402ddb9fe74 legacy-trunk +27546 78ab086a354846fca88547d86be9d657664a7289 legacy-trunk +27547 095426af4a4240664692235272f3fa0d80a9a826 legacy-trunk +27548 80da951c89fbe141e174201935210279cada36b6 legacy-trunk +27549 d3e490a51408b88fb889a45f3da3ca40897fb7d6 legacy-trunk +27550 fdd836575248f869df83c38bcdcab35c20d1e3cd legacy-trunk +27551 c31afea88934e0646821392bd267b2d515cde283 legacy-trunk +27552 0cab4e4fdcf380c61a1d992d4d07ba4f70e12b35 legacy-trunk +27553 5e4b8d1e9fd6b2b97d0be40f573433a3af6b6f36 legacy-trunk +27554 371954785739f57463d863c7f998b8549c0fd0b2 legacy-trunk +27555 2abf9e940274f08fc45ea8e11ae6d1f329c2fddf legacy-trunk +27556 43fbc67374a57b6ef6603747e5ba7a4ddf2f03b2 release22-maint +27557 25fe3a0a80fb86238cadac702985e227ece8a81f legacy-trunk +27558 98ad772defaabbc206c38eb9d6b8aff06f3b4b4e release22-maint +27559 a038abd08e4ab52b0bb4b2ab0c864f5a48b5ab54 legacy-trunk +27560 c89d333fe0fe346716575d80a472292c3b65df6a legacy-trunk +27561 b993e651eb745f7846a02bc278054f075e9c52e0 legacy-trunk +27562 cb73e891d3ee3f60b2956a90bb9e10d08d3f0046 legacy-trunk +27563 63a887d8a1e3a5193a27f973210276584ce4d5b9 legacy-trunk +27564 5c151d958fc1442113c521d224d6a6d3ab3060ca legacy-trunk +27565 1723bcdc1e854e891b79d571515757dd510a4bf0 legacy-trunk +27566 c4dcb80f48ea158ee05544a49174576f9f67913f legacy-trunk +27567 a33f2dd46444b67d09cad5216a1bb8a48b6b7e66 legacy-trunk +27568 bec5b66106229c70a895069fa34d816670226cf7 release22-maint +27569 982a90a4d67b83e38ba2bce377348275dcaff6ab legacy-trunk +27570 dc20c7eb434f521ae67ac9fd8bbb9f7727724c5e release22-maint +27571 cce9316a62f88678c501e3e0f153aebe1f50a823 legacy-trunk +27572 a2bcb00dcbd595b11495c137f86f43a92507fb32 legacy-trunk +27573 7b5e61373f6edc9bd500598b34575c5200bbe6df legacy-trunk +27574 b9f23e2253f887c2885046298b1b7dee5c33acbb release22-maint +27575 6eb74e83a6f11a483950983605746481022c3964 legacy-trunk +27576 07809f6a7968b27daff506745fdb6e613f6e48ff legacy-trunk +27577 bf64018a64ff4c754ce103f0abb58427a49877a8 release22-maint +27578 5ccaaad4f33b1bafc8d631ffb95ecabc3fd749e0 legacy-trunk +27579 3d1f3b7ade07343396375ad6f41efb0578712588 legacy-trunk +27580 f02599ec5cb93106f3c3227a30a2a7d70b047e96 legacy-trunk +27581 990fc04cf0d4001415515e9a5664a368bded6b57 legacy-trunk +27582 0b6a2ae706e21a8761a64d3f5474924f724894b1 legacy-trunk +27583 774dc07f1c16e2396e094331dc6c101a33d79a01 legacy-trunk +27584 9deba35e624cbf9522b667af3f4a1483757576ec legacy-trunk +27585 082023c20cef225058e0a5a7ff831fcc08d43c2b legacy-trunk +27586 e48a4b0bdbb55da496dd5f4a032b6e85e724ce75 legacy-trunk +27587 f2012db1616c3e5692472154eb8ac8e38705358e legacy-trunk +27588 fa9af245ceb4ead2565e3fe9d41cda2abf7c066e legacy-trunk +27589 561e33a6a3138417c6d9817a8a360eeec2c08b77 legacy-trunk +27590 efabc1511dc271ec097b469dcfdcd7106828b6c4 legacy-trunk +27591 a546593968d64df4659d7627538c479baf8a6fdf legacy-trunk +27592 25367c7c40a4c6de5408190892adc23445d214dd legacy-trunk +27593 06ee862d9815434495296348670887c79fb35da2 legacy-trunk +27594 296dd32425d6a73f489d49e4793ed5ed7fe0c008 legacy-trunk +27595 0867da5e85489ac855f9717ae1d9274f712c1125 legacy-trunk +27596 f0a2ec78bd05c3757ae043cac513a829ee4c7066 release22-maint +27597 16314ff58ef48052c5c32e690a1a54dc57e39b24 legacy-trunk +27598 c8a19a4283584bb9bceaea0e27186bb267fb357c legacy-trunk +27599 494a8beb458265a1dba550aae2ac2cb84a97fd02 release22-maint +27600 dfd85e9023fcbc496b9be4ee4d95e0e4b0d3dec2 legacy-trunk +27601 daa5b14492ee909da2ed1a292287ee75476fe860 legacy-trunk +27602 76af8b30894a7cf9f0534e51174990dc782093ed release21-maint +27603 ad5f3a0526d1f43e78140fb0c08dd0c3f4c4d6a7 legacy-trunk +27604 565781ea137be2bdc528c36b5b95bcbbf75b3855 release22-maint +27605 42ed02afa63bf76b6fb4dd556b78c1a2db79376c legacy-trunk +27606 b347233783ee393bcec5bbe8763faa647652674b release22-maint +27607 9bea2c0c838e6c6778464c8aa3cb0fed2cc00c53 release21-maint +27608 62d8f974811f1a4626e9781e794be1fb23326d07 legacy-trunk +27609 8a67f28a42a5dc18cf5016b9f2e2f7536f3cbec2 legacy-trunk +27610 5b66e63d7abb70d484f38ce9054b0b506854250a release22-maint +27611 40d96493a42951bf9b2665f1a742bf2d1c37ac44 legacy-trunk +27612 2860be244263e404974c7d79499df430335a900b legacy-trunk +27613 b6213843d8bed00ed02631c213a1edfdb5e25eb6 legacy-trunk +27614 e06b1ab0bdb80c3484c1f8481f0e4d024b482fa2 legacy-trunk +27615 11c4253698dc73dca4f5086c8ef105cb7f76ffd4 legacy-trunk +27616 c8917b59c0659aa38f53d862707778308001de62 legacy-trunk +27617 73a884487a76680ab3a26a86bd03b9aa994c2089 legacy-trunk +27618 2be63e20a4982d5ab7491e8f2cefbe6fb5425cce legacy-trunk +27619 05977c5f880cf8a1ccc90f460374ac48a3851927 legacy-trunk +27620 3895b78d3ee0cecf5d82e864dc28a31c27510c29 legacy-trunk +27621 51cda6e8764a6e22d5732c6c0b2dab481363153d legacy-trunk +27622 9eafb4cea47a5c9003f6bb08dabc8a18115375f2 legacy-trunk +27623 fc27ffe2036aa10fe72ebc66eed852ccc225c6f5 legacy-trunk +27624 a3fc1d8e0ae81e4a3fd20ef8bfdd01b0373724b6 legacy-trunk +27625 c423a88b22ced346a8c4c378ff7a2ddfe829e124 legacy-trunk +27626 da4c7120143f08d9338512439fea8efb2d433eda legacy-trunk +27627 50443127b21dc49718234c24adb85552ebfc81c9 legacy-trunk +27628 9a58d64f8fc3fd5264c680aa00cb371b12951c49 legacy-trunk +27629 5d3ec28e9a7ad3e80ca2426fe06921fe8bc7afd3 legacy-trunk +27630 305422d69d31332da9931d54a2ce3b21352511f5 legacy-trunk +27631 4a7b3bac381287b2416cf6137464e9a226633671 legacy-trunk +27632 804ea51cfce6e2c03212b53f8e84724a456383d7 legacy-trunk +27633 7d0982056f72b57d87a935acb57c3dff2c837be4 release22-maint +27634 5542bf0bbce23cb8ba2d231d38ee0f4e3db1f5fc legacy-trunk +27635 62f4b45b05fdda13b9440194d76a16c20f1b08c5 legacy-trunk +27636 83120f5a48c2139eedbec8145ceb9ee593ceaba5 release22-maint +27637 41c54b37e03088472ab7af015843731972529317 legacy-trunk +27638 88cd27db79b93f2855f0efeb8583681262eeb3c6 release22-maint +27639 a6717275195c92903bce60c8f6ec28ea1ed6f0da legacy-trunk +27640 eac54a83272f4200e9dae1f2a55d7a01d3edf407 legacy-trunk +27641 2f60f90ce3093dbb15971376464aa7093bdddf12 legacy-trunk +27642 6aa2d09e32c13fb56c9681bef21604742dba83d0 legacy-trunk +27643 27e94cacb43bd6c34faf5600cf0750e13a5b770c legacy-trunk +27644 3b571e32a6e45fb825bbb69a961fb20d2e510aec legacy-trunk +27645 e6033254df21455b8fc414585293e526e463cf0f legacy-trunk +27646 18c1b290e4842974723f3126cd4fceff25a2227a legacy-trunk +27647 4a5c6f69447d6b9ff7778b20a5ce02ccc5902d86 legacy-trunk +27648 d98b0cdf7e51b6a190fa40343b3a8b79c1224c90 legacy-trunk +27649 76cd286e7de5e7795b919305d9bb6f3ed974eaad legacy-trunk +27650 3a3e071d84f985fdc23995607d79cae6a0fe4fa8 release22-maint +27651 d7237037f3794d924741ff98e3848f7301d8ae59 legacy-trunk +27652 a4f4ce5e8aa9914e32307f588f7805eb0cc52952 legacy-trunk +27653 d1b2bfd93a2708950ca0ce6d6b3f735b39dfb700 release22-maint +27654 c3cf22338e1ce94728ffd7c4894ae541661838da legacy-trunk +27655 c320a07f014671a3e30a8d3c013289a0cc634776 legacy-trunk +27656 1cebce50fe71224d1094c65da0a349597ebf89b2 legacy-trunk +27657 99da93683ea5b254860e1613f190a0494d0e36c9 legacy-trunk +27658 3529ad213955943d3458a10292276b65ae7f5151 legacy-trunk +27659 eb04f17cc008ca7533d748d37a53db0f97e98a60 legacy-trunk +27660 71f1f35c03573476ea3983135467f0407df0d01f legacy-trunk +27661 1a703f9bbdc0fedcace479f754fa3192876df325 legacy-trunk +27662 1598a1e473e24798fd59acdb143bc61676831459 legacy-trunk +27663 819c8033705b954f556e72feac235f7a10d8c265 legacy-trunk +27664 970786d02e805df17d4d9b647077c4ca1dbf64e9 legacy-trunk +27665 c0a67a1cab09c9737c21e7a074334e5fe0e408b7 legacy-trunk +27666 d8909792005ab82ed1bc2b1310fddaf6cd184b2b legacy-trunk +27667 44522a75deecea944c832efe4d39d67111b21902 legacy-trunk +27668 4e85306a9bbfa81ec5be5f386b143281d2ec8629 legacy-trunk +27669 1576a2dff01f8e98a255a1e87f56253f4d55347e legacy-trunk +27670 d814a731924a315ea597ee2dc4df4d39caab1817 legacy-trunk +27671 b5962b587cc0929ea1cff4d5eeadc027b16d017e legacy-trunk +27672 09e4de5dcb3bab1ecd48ec548b47938cf6f5fb65 legacy-trunk +27673 3cacef249eb550b263026c9adf671568338f24b5 legacy-trunk +27674 2d407484a4e6338eff546c1dec4f05b904dffcc8 legacy-trunk +27675 640370f08e2af29967bab88afc414a6a4d5cabcc legacy-trunk +27676 0a08ed05bd425c0a16af7251c3bc180a3d61dbdc legacy-trunk +27677 a26ca8ab27f2b201512a98514f2eddaa3ffe776d legacy-trunk +27678 87e2534e9d64b37050c2707f8829dc55f87f4eb2 legacy-trunk +27679 e662226211e539caedfd14c9ce23bfb842c87f01 legacy-trunk +27680 379b01e0742219906963b82f9dd0fb3c03963920 legacy-trunk +27681 a03298a3acad1439092e0f49830e0ac8fbe2292c legacy-trunk +27682 52b0976e48a1d6e49d4053b9837d9db4a778a20a legacy-trunk +27683 9c01784ce7cab51431d8b9d450eaefcbcc730b62 legacy-trunk +27684 c4bf45ca4d556769f0127cfe66968d0119e7c558 legacy-trunk +27685 93434bc0899d9fd54a79b8e751195b442e4d07c0 legacy-trunk +27686 c91b7f34626b9cd3e5873cd2b54c793479f54de3 legacy-trunk +27687 428cbbf05639069853089c906c7af4f17dda7a6d legacy-trunk +27688 132577f693b1cc1597318194b1e824537781d5a2 legacy-trunk +27689 416654e27d88933563f2bb4254d74c024924cdf8 legacy-trunk +27690 69134c61f87c06bc1ad3811433bc200e26159e6c legacy-trunk +27691 08d307cbccd95120aed9c67b83ecb650afd6364d legacy-trunk +27692 5ede9bcc651eb2f019a4ca6e3e629de7655ac3bd legacy-trunk +27693 a353d6a452769ea02bb291b87d510ec00adca210 legacy-trunk +27694 c4b3a2b247ac37a37125f97e285f7e0d171eb24a legacy-trunk +27695 658e12cc03362d5a6427777c8c16c3dbb35abfee legacy-trunk +27696 74f9a206d4f08de1323e2453aaa4bbd27336b063 legacy-trunk +27697 a8df0c0be2423aeb6d61feab36e42c8f962b6d10 legacy-trunk +27698 dd38291b89fb540075b9dc1ba5b1d524792e89b1 legacy-trunk +27699 29ae8e89153bd6e557bdd99bd0e27d63f88d4902 legacy-trunk +27700 12815d05080cf69c2c9a993e4eec196070402398 legacy-trunk +27701 c43466f7dae8416457e7081a6b4292b64b8404d1 legacy-trunk +27702 478a2d64ac58308fabf4e4cd757a7264fe973c7c legacy-trunk +27703 31227353cbbcc010b5d826960e306746d981751f legacy-trunk +27704 afe479a6235ec08415e74653bbb03362d0244ce4 legacy-trunk +27705 ab1877a7b2625bd6c46efb31490c56a5efe3929a legacy-trunk +27706 d9add40f92ff32f19847de325b5bf3efa0da3ba3 legacy-trunk +27707 17d5262977557f7e6180ce7ab179eec16ae50abd legacy-trunk +27708 aa4b9a7b3817a19e5fa58491a9a03acc216e9861 legacy-trunk +27709 eb39ba60dae0cfc295bc83ce8d0d4da65d0d1e87 legacy-trunk +27710 d497f523b82ed74aca126399516e33a1cfd808aa legacy-trunk +27711 e3751fc03e6c8782e976bcf50ea3fb1f96fc1fbd legacy-trunk +27712 53b32271e8e1f16df4d938cbcbd747f36fd8ba23 legacy-trunk +27713 697777cc83cc0ff06358512fa4ffe6ffd71cc757 legacy-trunk +27714 8b4a165baaeedf6984e4ac0ebf015a71753586e2 legacy-trunk +27715 ddf671633465e506f5b7c967ae1c1f6f96207ad1 legacy-trunk +27716 2131bb790af958c6513417857504b600a1484ed8 legacy-trunk +27717 06b9a8dad721b1906e0f9bdc0f1f21713585807d legacy-trunk +27718 2f60344a49e88ce4ed997435109319513f05493b legacy-trunk +27719 49a3e83347dded0b0997849ce7058b90aa876c91 legacy-trunk +27720 67eaabb017e0e0d01b89ad0e1e6b7d148f09211d legacy-trunk +27721 a9b809c8b9dbaa3e415e165d616b343971886d27 legacy-trunk +27722 139859016b44bb9d06724b10e88e64263d6d5e9b legacy-trunk +27723 3ef019caad1e51508d49b68f09fca8cc19e88ed7 legacy-trunk +27724 2ae0145931f1f308d3ddb2928eed8e82ea33c046 legacy-trunk +27725 f09cf8eba7e23790fd3655658fbfe96ef263252a legacy-trunk +27726 bb0692e30fc6b01d3a150ce0b1cd351bccfc3ecf legacy-trunk +27727 232ab0d663752ba2ea6a11e1346e14f8714f25e6 legacy-trunk +27728 2dc23f0f34215d6f46a379435904222a0e10ba36 legacy-trunk +27729 48930b0043b772b8a6029134c4e1de6fd2f37834 DS_RPC_BRANCH +27730 187c4fade3db3eb5f911a5d56599d19175664065 DS_RPC_BRANCH +27731 30d0d8dbf24458eb1684d8b06e9f232861845a19 DS_RPC_BRANCH +27732 7fed3513abfa713dec166de98bcad6c51334682f DS_RPC_BRANCH +27733 3a3bc7d9f1f5e6161c208f09838f699bca960497 DS_RPC_BRANCH +27734 4f6e56c44739fe6b94fbc7df3be857d0dad8701b DS_RPC_BRANCH +27735 d2d81d53d4a12df30acd61ed03dbda5e4a5a59c7 legacy-trunk +27736 808b4fe5184fcad765f1eb9afa3949702287e0f0 legacy-trunk +27737 aa5c99b61df77741ad69b2e69fd31e3e0f2bd792 legacy-trunk +27738 137fdde700060102f24c4293d9a1e4ffb38ed857 legacy-trunk +27739 157bbfb17f44ce92dbf6b58f7822bbb4bc5dc5e0 legacy-trunk +27740 55eab10e472d39f384622bf7da5bcf511bcd788c legacy-trunk +27741 fda513b671b6c9f62be6799744a0093c6ecc7a4f legacy-trunk +27742 4eadf7dfcdb4a8eed4da3a19e75f40aaf03dd273 legacy-trunk +27743 194140c83276049df55562fa4657d38974b4345c legacy-trunk +27744 a3571436837c1a245d23092c8e5cb13a36883db9 legacy-trunk +27745 17e94e62353c738d375e765fe77c1a9d21e84f15 legacy-trunk +27746 3308a96b976f6e8950d7f76ef246598da6faf7f0 release22-maint +27747 f3c8e3af7b6bf62678b2a6f70523b4d15375e23e legacy-trunk +27748 020d96625357867cf60f5717952908e9b8bc19a5 legacy-trunk +27749 e8fd5cab0db3ea726075d498ae9eb207e94e586c legacy-trunk +27750 713ad7e0406aa62ae310efcb096c0c833369df1c legacy-trunk +27751 979ff5d0ae07af543a77373647edfd5e09f939c3 legacy-trunk +27752 aa0d2d51fbdec112af30433216717dcdde5fd169 legacy-trunk +27753 a7186bb9142c929ee1d005a8ae6d3e8b217f9d46 legacy-trunk +27754 1012906e8adf0fc5101a6465c0a9e51006b13a96 legacy-trunk +27755 8d23bfa20cdbcdb0aaca048e4c2d7a7d7293409e legacy-trunk +27756 4ab4dac462ffdc995f3d92669d8ca75b0225f28b legacy-trunk +27757 e3605eb2f866b3b533f9c5d1f7b1b7b97000284d legacy-trunk +27759 f6eaa9d996ec242c65b6d867c1ef07309dcf4c15 legacy-trunk +27760 40e0140181cf85000c05a11456a600d5a347736c legacy-trunk +27761 43ee1c0750a23554bde554ff73a73303db9398c2 legacy-trunk +27762 dfe54af29a473ffe8e379823d30b3576af576d44 DS_RPC_BRANCH +27763 9d641ce66af35821ca82c5f0886aa8ece88dc3c7 DS_RPC_BRANCH +27764 f79c7aae6620d8b2b3f78799300617f2fa4dc451 legacy-trunk +27765 3070b717fc3d833266b8fe8a35ea4a96674501dc legacy-trunk +27766 89ce62126664f24b640bf9c9462b82acf184c952 legacy-trunk +27767 aa9e054270a2a9fefa66b9eeab279df3d535777b legacy-trunk +27768 ec2c854bd196d3acac474c3305cd6be1157eec2b legacy-trunk +27769 c9de55fbb2b1dea7cefd13ed6dcc42e2761bf2fc legacy-trunk +27770 e2d461befc7a8c5b2174af770e39d1f5bb404692 legacy-trunk +27771 672843ee4b61fb391a08f3aa5ec5e6979d9a85a2 legacy-trunk +27772 d8a682d4c6924047006c9b248cb33ed23b236f77 legacy-trunk +27773 4156bf9b0043c0b78b9fa0443df06cc5bf78fb4c legacy-trunk +27774 3c45dcd0101deebee94e0f88c041421b3bed55d7 legacy-trunk +27775 6673171fc37ebf1be1858b8d0ec2f5f61e396d3e legacy-trunk +27776 dbdada9668582df14dcce735574583237abaeace release22-maint +27777 0e27b67247daa4b0f0ea484c4429e0acf5be4b72 legacy-trunk +27778 b45d1b3040aef00f75c962575334d468cafab62f legacy-trunk +27779 3aaad9df711e43e4fe924ea39fe2785795a93c76 legacy-trunk +27780 eb759da064aa85db863b6933537aa30c2236d87d legacy-trunk +27781 ac49b2807b750d47978f089245990d6f4bfdf215 release22-maint +27782 b8e3596cebd7d344c07920c2e511cdb1c43911fe release22-maint +27783 0a327b76886874abdbf1970189283439edc349d6 legacy-trunk +27784 07dd2fc6ac9b77abca385bb7c0227ac49fdb3809 legacy-trunk +27785 bb64a8614f668174e43c0389b72329eacf70d49e legacy-trunk +27786 477c74d0066f0627680ec92e6e68cbfe8a392349 legacy-trunk +27787 ed98c88b2353be4093b07053a9962d7a5c530f97 legacy-trunk +27788 f6052aeb134fca1e816ff22bfff0809cf0e00a23 legacy-trunk +27789 c7ed925c75b310a9aeb8fa3318f2096b8806f8cc legacy-trunk +27790 608735dd2ebc7d6e51c8206dd18a20e6cb517262 release22-maint +27791 81ca6ca5c3074b343ceba7f9f1a50679a316f1a0 legacy-trunk +27792 bd3665bd2f783324096e9383a6311fef7802cbbf legacy-trunk +27793 8c6a992245579f3812a959cc9aa3b511540f2d44 legacy-trunk +27794 eb554aa361e9ce8206e7ceb3c4d77425255dc780 legacy-trunk +27795 ca5ac967c7c4ccca13dcb9d85c702d8e05c0e7e5 release22-maint +27796 80129d4a8cec17531e3e63ea7e89d263b04f02e4 legacy-trunk +27797 30440871c6e5640c6d56e501f3947b435ed0efe2 legacy-trunk +27798 d049fd58e4ddc4ddeec7482de24c9bee8814f1bb release22-maint +27799 4de5c7e6231e5d36905f74c7da1f4b74ce0abb8b legacy-trunk +27800 d6ec4dab927e67d228574a5f93c7aad67ecf3573 legacy-trunk +27801 31a7119bd8d4def71374211961e3bedbaec03e25 legacy-trunk +27802 8e266d0acd10a0821d5126ffd718d786300812d6 legacy-trunk +27803 4708c09f0350f954640634a080099c16c5aefd85 release22-maint +27804 08926cc5f2afd0416f0a73fb1930ca403cd3c137 legacy-trunk +27805 a088cd08dade766250d1866069d79d7c47907b6d legacy-trunk +27806 f5cfa0ee02cf3f66a2ab73b4e2a6d81d66c0bf42 legacy-trunk +27807 dd6a9711b43cd906f0e421b6923f8facfe435005 legacy-trunk +27808 a0a59e52baec5dd0c8ea605c80b70f63dcbed8a1 legacy-trunk +27809 515e8723caeff659634f09394f9acc60bb2c78b5 legacy-trunk +27810 275693bcee7402b30b6c8377b61290d08707115f legacy-trunk +27811 36e2fd3f08f7580dee46ad8b069e93897e73bc85 legacy-trunk +27812 5be961a8e9db3e180f863df422ebba98f0f0fbd1 release22-maint +27813 bd6268b17b7577c917abd2db9976dbce42e44636 legacy-trunk +27814 3db261a93a5b9f73a37e6352983ea8979ef6a7c3 legacy-trunk +27815 f4cd78b3b774cfb94a72aa6ff5a45648071aed09 legacy-trunk +27816 ed892411ee0d00b5ea84e48bb920d0dbc311fbb4 legacy-trunk +27817 9afac0dd6b6e4ea0e632e0508dc2958e9a992f35 legacy-trunk +27818 ea482196404324c3b0f99d42c514cc9bc6c0b337 legacy-trunk +27819 15ee445af07f7a8526991cd1c82063f82f56199c release22-maint +27820 f55d58ee4ea3fcc00e26044d7bdfaa308e79262f legacy-trunk +27821 14bd5ab0cdb66c65f5758cea372861bbda19b513 legacy-trunk +27822 f4436e1b1868fef2f12dc72699e52ce58348b9e0 release22-maint +27823 7383e674fcd51b9300e75985977e3b5ee7b9cc70 legacy-trunk +27824 fe2250f45ac084530b91c7348861c3dff968bd9d legacy-trunk +27825 9ef82377669d53a9bb5c1b822f9d7e6a7c82c751 legacy-trunk +27826 7dc3f4077e59553ec7f9593df243f3a056d6dad4 legacy-trunk +27827 d98f8e03fa312a3b46052235ab34445b500dcb31 legacy-trunk +27828 301dd5465b8e2b2860d8fbf50025d40556ccf1e9 legacy-trunk +27829 6698966838c8e4902ac3562c789dc6d929465391 legacy-trunk +27830 fe03ab580f955b92b6848186993911b05dd399c9 release22-maint +27831 2cd51b052ddf77b935b71405cac329312ee64868 legacy-trunk +27832 6d61126ace695b387592eba422266753c6902e34 legacy-trunk +27833 226ba34bd998b5ee3fd0aac9ea6e0e829a341fea legacy-trunk +27834 9d473d4d11a693e7dcc06958a4a4a3dc38a3dbc0 legacy-trunk +27835 32dde37c8d959740feb1f53f8fd0cd6f1ef32b6a legacy-trunk +27836 c3d9e01c6124097eb3bc2748caaa8f5b5b31c729 legacy-trunk +27837 6f824d6f128629124b71194134994cc7ef6a8bd8 release22-maint +27838 ddd6ff0693c4f00dd7b1ef73bac63127ce183c23 legacy-trunk +27839 354323371e3848d5ba3b518fb5f7bd3812c92322 legacy-trunk +27840 2add27b55864ab00d9b6d7c9046be2223927d72f legacy-trunk +27841 747fa65a9b475a92e40c4c9c12ae8c2569bf36ae legacy-trunk +27842 22570e76cca1621e6dc3f096f5928d8fcdeeb51a legacy-trunk +27843 a5ea4dd17883a7aaa6129eef08cf935bfbe20b19 legacy-trunk +27844 f0d1399a2445d0dc9b548b7911b2012c6e6f36ab legacy-trunk +27845 f828f32206ba52b4e344b7dc0de147b40a138f27 legacy-trunk +27846 d971b8703508121cbfafe4cb5ee4c0bc542b5938 legacy-trunk +27847 d216e67ac221c220a099f769dad2c344ed2a5d8d legacy-trunk +27848 27825d268317a1116044cb18b37fa400bfa1d765 legacy-trunk +27849 5f149ade9af191616b71ac945ce98e2a7a0b613d legacy-trunk +27850 189eb6fa9ded8531ffad2b1b10e00a5d7a239e03 legacy-trunk +27851 2d77be41ee5fb07e58a9d249fed3561473c7a002 legacy-trunk +27852 7fc2cec4dc828d49ec9b2d430b1ef3c5fabf8c33 legacy-trunk +27853 a1bddf6a32cabf6da133897fc6b42b0122bdfdef legacy-trunk +27854 ebc8667f325adbbc70b8bd720556641f3fc8ee20 release22-maint +27855 e334dd4e510ff1727f93e540ac007fc2db0c84e7 release22-maint +27856 4a66bef15c3bb67da0374520d3e1a30e00d947b2 legacy-trunk +27857 161a5ef0230e39069eacc0e8c12cf931b21a50dc legacy-trunk +27858 9b2497e297953a99f8e1d8dcec66de39165db4f5 legacy-trunk +27859 e56298dc0f8ae821442e419cbdfebdd532841c5d release22-maint +27860 79f129b073debe3bdc0a82c51c9593540dfc8569 legacy-trunk +27861 b6a82f8185406c4cecef37992433d05eecaaab3e legacy-trunk +27862 f66b3a3509c70ca06b36587200fce5264d2522f3 legacy-trunk +27863 45b4fc63bf67193654b0ef4772860e8a28bf42d2 legacy-trunk +27864 90b49668d0ac3f98a96bf625c52936b66cdd4962 legacy-trunk +27865 5dbcce21dfeea67220416dc2a9df7fefa34092af legacy-trunk +27866 e1409ab0fe698735d2cfeadd90637a3ff7601171 legacy-trunk +27867 ad4d23f1bf6e6a2bc7386d468567c9d0d4065f7e legacy-trunk +27868 b38754f1cb61122eaecb2dad3d75b72fe99f7123 legacy-trunk +27869 b6e51b086cf4d6cc5a9e367937d3fc7bd701bcfd legacy-trunk +27870 564629d1f1ac4a20fe10fef876205bc75c49a57a legacy-trunk +27871 03d85d197052a912c6eff91954cdd7b336de3020 legacy-trunk +27872 8691eda4c05733479a35691d561a846679067d81 legacy-trunk +27873 7899fd2af9125f86515393f7666eeabc79f03def legacy-trunk +27874 71ba2e969c11415d40d176c74f33805377b9ac64 legacy-trunk +27875 e0128d616f87959f86adea7d79f123786df1eb7c legacy-trunk +27876 f05a311d79886257e27b294192e7a531d3320a58 legacy-trunk +27877 12aaf8d5ad2be7075728626066079056ee44b252 legacy-trunk +27878 4e627d8cf9f4d2a8496f4a379fdafe85f207fd10 legacy-trunk +27879 df0628662b481e3854945396a66af601f948ed7a legacy-trunk +27880 bcc35a0f1a78e8cfb19e0ff839cb990386804932 legacy-trunk +27881 0854524ece00840da542326d42b6f71e8d3c4872 legacy-trunk +27882 4bfc8c519b6dd54a95d9bdb6ec917c531cd9b02e legacy-trunk +27883 fb0691f10d912b49f43b87e5c50badf83f51088f ast-branch +27884 3ddace1d12a9fe50c6cef4c908c3ca04b13a37eb legacy-trunk +27885 8091a4a3b8aec2ef32e17f8b28eadf9530bbdf35 legacy-trunk +27886 ec1a2d7ac02bc04923992d63598951bb7691bee2 legacy-trunk +27887 30335c68b787f91fe0618fccd6f1c80cc83a7887 legacy-trunk +27888 2670a5db684315cfe4573dc133ba75af49a39e8b legacy-trunk +27889 daf7579c22482192cce98545bde7f5ee4664d5db legacy-trunk +27890 6dcf128d7e0308acf85f6c0660dcfc4a8c352c76 legacy-trunk +27891 ac7628769ba53e1bc564a8fb5df39331d29b4b8c legacy-trunk +27892 17a8b74bbe5cf04c68c0e9446024785598d8babe legacy-trunk +27893 dfe6884b59e0e7e40bef66b7d30581a6cfa2a64b legacy-trunk +27894 fe2cfce4e65863ed3172b5b13454b9ce40e7b196 release22-maint +27895 4897e29e19cc067c6b930f0fe2303ce0c4075b43 legacy-trunk +27896 87f828726fe6eab619598fed618a11cb978ce336 legacy-trunk +27897 324b2e7af68357a0b73f9328018e35f05e0bd333 legacy-trunk +27898 fa32e7a65a7e8f8bea33c9a5c28377c40d82ca9f legacy-trunk +27899 dfe5a689979ba823cfbed750ea2151e05bdff526 legacy-trunk +27900 abb52d56ba5aabc5f2097c2a9701f8ce4e612e8c legacy-trunk +27901 12d85b785263634e7a269da711831dda51bf56de legacy-trunk +27902 7ecb6eb1fe773974573656e2bb4f107a28f3b60f legacy-trunk +27903 7fac133d539ffacb0a257a8b5c4542674ae8023f legacy-trunk +27904 56ce4c8f4f169f21c9c178d51a00b9c9ebdc580f legacy-trunk +27905 702e113d39b0d55bdb8d8eb5c169aa99e0a79578 legacy-trunk +27906 d8ba373bf2b3c727b41633b343e70172555a306f legacy-trunk +27907 94ff07438377b87d48b658b4607b20c5094bb370 legacy-trunk +27908 ae2fb8da3863e9964259de4817ae71b6b06de771 legacy-trunk +27909 75fd862901d83e7f03365ac2f4fdb387d6642df4 legacy-trunk +27910 8a10a721b84bceeccbebeab367a0bdd7d024754a legacy-trunk +27911 0cf4e0539cc1f580c3f6bd6a648174253283318a legacy-trunk +27912 175cd0e088aaccf93d4a00056b39454369c536f6 legacy-trunk +27913 adf0b215a52ae25904fd28d0b76e9739eb387bab legacy-trunk +27914 5bd0f241ec5adbb928a5f1572e2c9cd39b140713 legacy-trunk +27915 a73a5898bf492a5612ba1eaeacae9e4aca0f5c97 legacy-trunk +27916 a5324b094942e32856744c005cdd3d1a153e67ff legacy-trunk +27917 3cb055aae73957d80223537b8b2c6655e1f0606c legacy-trunk +27918 1f017870552e653bb8da1419ba3bb813491f6918 legacy-trunk +27919 32f92d766b8136aab43b62b71568d6196fce09c8 legacy-trunk +27920 62f6babece1fc324574dc2be5266e9a03451bc3d legacy-trunk +27921 3444005b652703d2fb41dbc91a7a9b5d6eef179e legacy-trunk +27922 95df87d44923bfd4cefaa0d9a4b585486ffdaff0 legacy-trunk +27923 950c5a09ad9989419dfaaff4af3901c34da62a46 legacy-trunk +27924 82c48653861b56e8bc0c386aa0ce478f1e7ce54c legacy-trunk +27925 1c26eb7682936d0190762a814e5fcb1f84f3d28d legacy-trunk +27926 af1fb4fec2b44d4260f4069a76159ea982b3a363 release22-maint +27927 41895609d084cda75083ac965b6bf60013d6a303 legacy-trunk +27928 e961cd2f22e428a41e25c751199746626b99bb0e legacy-trunk +27929 28a5c8afa056e52ceb70de0a2db1cb12c01fb2d0 legacy-trunk +27930 8d5e0e3f644500f26ef8b2947da163d6d47ad257 legacy-trunk +27931 06f1e2fd05bcaae16f3cd83fd316c94ac29f74c8 legacy-trunk +27932 614358e3c4f6aeff2b0d9886cdf91ffde9b3631a legacy-trunk +27933 ff9efa692594fbb83feb85f755617940d2df94b0 legacy-trunk +27934 d0d3f760d0675de3770654191f272d0a63a61e5e legacy-trunk +27935 c00df23e856e5e2bd1dbb14944233d9c734a95ac legacy-trunk +27936 0bd521eb714eaca86f8ca2453ae4fb5364be1be3 legacy-trunk +27937 dd993d01e7404118838443cd5c31d3aa483941d0 ast-branch +27938 b5b9b0334469c476feff0fbf6d2c769c20252947 ast-branch +27939 d2f41c8a81f0d9538ca52a320cda2e3388ec6168 legacy-trunk +27940 96fde9808e15c7a033da73fea4caeb35be3cc52b ast-branch +27941 42286d2e4d2ff75a61828d01c4bac5a09a2a82b6 ast-branch +27942 53f21f434956656ac97979fd489d253e7bdfd611 legacy-trunk +27943 4f00134b561db534a32f5fd43bfae20756d97eba legacy-trunk +27944 f2025c676e2415725f6d3fcc3f430e95fbc7aa5c legacy-trunk +27945 d8750897c897caab11436f9fd503730221094185 legacy-trunk +27946 a6a4a951c616ce7a93fcf57d245513508d7afc84 legacy-trunk +27947 e21381fd8756410add3e79dd6aaa6d094621cbfc legacy-trunk +27948 c9808f52120afb9e26d4d8df6383c3d98d9855ca legacy-trunk +27949 d5f17d85f6a06583b6bf7ac66ab23b7926ac1aab legacy-trunk +27950 df4a9d3abc56a12a7ab08d8484ee2f98292079a4 legacy-trunk +27951 5d6e470ce05cd5b180e21fb4194ff238c99f66c3 legacy-trunk +27952 bbac4e3ccb6252366b9cbd930d4f33c66b1e4821 legacy-trunk +27953 4bf94149d21c7e463ba8daba1db19149f30c6785 legacy-trunk +27954 d26b62f0c6dbc352f0c250f5b745074c93bc82e9 legacy-trunk +27955 f059d5435d6532ede70583843e922381719873b2 legacy-trunk +27956 b4269fa67c3e9cc4a0e1f4739f342faf6599753b legacy-trunk +27957 b25c31e008c8c7d21497e3f56baa661d7eed98d5 legacy-trunk +27958 9348fa20f214920d1aecbd3fbe30bc2ac7fc2f69 release22-maint +27959 479f8f4ee4ad455ac351e2c7235ba2544eddf90f legacy-trunk +27960 0bb3986cf653a605eded86b9a51ca59938c2c398 legacy-trunk +27961 c8d694b641f19249d9cdbc994ace5e1e09b0e298 legacy-trunk +27962 aabc97902e1046abcbe523455099d759a72a6eee legacy-trunk +27963 7ca46e08200dfee53e216b17be31846a62f259f5 release22-maint +27964 457a04783183f56f701618ae4d58bad5fbab70da legacy-trunk +27965 8c38ea092f207ebf4709c0becb579b12f85260ec legacy-trunk +27966 10dbde698766924dfcd377a2879dd2e8da9d8665 legacy-trunk +27967 81c56cbc1d5ff485e642a7cad855b4d5703a032e legacy-trunk +27968 00488ca9e04f754b867121321dca358217de55ae legacy-trunk +27969 851121ecc11117a47825893c5095c37e3f005672 legacy-trunk +27970 80fd0d361e17f604adaf6f1a76030fab30df56cd legacy-trunk +27971 920ad09930dc509c97dd2d64da8c1a6dcd2ce723 legacy-trunk +27972 3e718c3d51efabd138a1d172b011a74ed40235a7 legacy-trunk +27973 a32cff0c75dcc7efb5dbe2da9f7aa373c8b1f8cc legacy-trunk +27974 cccbc2c78c098b379fa128c6e73a35a1e5aae702 legacy-trunk +27975 244117aebbd585bee9eeaf5ca004375f6e936ef2 legacy-trunk +27976 ca20be24381fb305f32912f794ccbe2dc8796c5a legacy-trunk +27977 4382b23743901de724ec588ba9c7ded5540afb79 legacy-trunk +27978 9b1b2b58c866623670ca640b5199eda853d73c2c legacy-trunk +27979 00f8dda17ee2b52afade95148c1079e0eff14df2 legacy-trunk +27980 ec2e28300b7659c679733b0e71a8da7048b3f455 legacy-trunk +27981 25d67c94a6d1a0c7335c9fd68757d3fb9910f85a legacy-trunk +27982 c39aed45dbe99dc9a3478a3d59740d19082ca919 legacy-trunk +27983 9dba12167db6f7d226fa9452ef39f5ea66d93c6b legacy-trunk +27984 cb308a13a1fd204687ebc46f3dbcbeaea15b5ade legacy-trunk +27985 fd05c2d35fe7191f2daed8edbea80fc8a7953054 release22-maint +27986 839315de0ca10e2cb49851316276c20d28f0a473 DS_RPC_BRANCH +27987 1ea569ea51fd9de800874195268ca9b218dfeb9a DS_RPC_BRANCH +27988 e7b6bc2b35e2e42be877a4d316b17a34944694ac DS_RPC_BRANCH +27989 307332f37b7d937d4fe3b516549f2268c2e69221 DS_RPC_BRANCH +27990 3257efda451331e7bcd3b60d0174065735c82b36 legacy-trunk +27991 e4a8e3e4210d977e7e79766c4c6735741184401b legacy-trunk +27992 da88e990f92ccd2e7183d63771b364c99a1887d3 legacy-trunk +27993 6e0deeeb9787d3b3d7fb72971563ec4ab71e17d4 legacy-trunk +27994 f928f7eea2d698586d304fd54b78ad9ff00d99ac legacy-trunk +27995 a506ab9bb4a4147049ed7d7405e5932b18e17a4a legacy-trunk +27996 a02aba72cbb2499e5a3017766d872f3b2dc429df legacy-trunk +27997 00167b2ecacc5ebc379b6ffb507ac5055c64790a legacy-trunk +27998 12e146171f3dc906b91bae0c6c9f4d1fbe4aa69b legacy-trunk +27999 d7ca0a2ce0746b86b3122756579ba82d8d51652d legacy-trunk +28000 59d533580e72d6153c8ce4d6317da059c3ebe150 legacy-trunk +28001 262ad16b4de09a32b1c134bc25001f7a01795741 legacy-trunk +28002 f5e29c7336dd88ebe160e43e52a16de4239e2d21 legacy-trunk +28003 73b309cf02135529c99d84bcc3f34f9863bd1513 legacy-trunk +28004 2b0766afaa222d0ab071eb07ca8f824b3cb0a3c7 legacy-trunk +28005 fd4575b56a4de018e678ce47366e24e884f98aaf legacy-trunk +28006 940c4f546e7f17e7483ce9d4479657c1648f623e legacy-trunk +28007 3e4d432872ea7918f3732d2851ea8fd3518a3416 legacy-trunk +28008 b6707e159909a65f88c8c7fdc263985ef06e68b8 legacy-trunk +28009 434ec523f32c7d606df28630a8046740665bb8e3 legacy-trunk +28010 13de2f6f07dddc981903b3568c486b484e3f1c94 release22-maint +28011 6542dfa40e77c761d014809686a227a6901bac3b legacy-trunk +28012 8a74f335cfbab9e12775417b9726e3985a374853 legacy-trunk +28013 791bbedbbbe9e376cf8bd494b24b82e73ac767c3 legacy-trunk +28014 40eb80dc42500e980e18cacd3f6839b310f4842c legacy-trunk +28015 8a1c086ad213a765d41ee60980f522a30fae15ac legacy-trunk +28016 35dba6007ac37d2f4d4d8c26edd949f7af591961 legacy-trunk +28017 dbc0f2f1141420cdf2978b5426e045f2c6de3ad5 legacy-trunk +28018 642ddcfe864a4feafa88ef6bcf012b55ea7b4948 legacy-trunk +28019 b64db550972c140f44a1ffda9ee9cf65795cd86a legacy-trunk +28020 735441fdab7e474fe450a16d8a66b445795e07a7 legacy-trunk +28021 80b12944a42b0af71505752286b8888901bce93f release22-maint +28022 c9d2428a6a85ee885eee4a8289a21a6890df2847 legacy-trunk +28023 11b262fed5809ccc454852f7d54bc6ef70a90b84 DS_RPC_BRANCH +28024 fb4591c0470e2800fc887574e1dfe505abef35f1 DS_RPC_BRANCH +28025 d6e5e9a1bca08d5c42722ffc35858ba2727f134d DS_RPC_BRANCH +28026 b47a6a2a1e560c2911e60d7826b75869c1d66fe4 DS_RPC_BRANCH +28027 1869cecd3933492104dfc383317672c2dd3e78e2 DS_RPC_BRANCH +28028 f732597684267a9bbb4f90d036b8231b8cfb9c7d legacy-trunk +28029 6445e44fcb78360d725e9c80a5f3d40bf52a0ee6 legacy-trunk +28030 482c941d593f861c4ff51aa59a4e293e3f77f650 legacy-trunk +28031 f3e69b9acc406b3e1df0d143204232122023a524 legacy-trunk +28032 ddcb9ce0454649632db28fb664643347a76ac5be legacy-trunk +28033 0df9a9c08c139e961d3f2208d2e1316084096898 legacy-trunk +28034 7f8967f59cf82f0f220d7de3dcce78c7af111a70 legacy-trunk +28035 43caa212b959cf7b0a9a85704ccbfb3245159210 legacy-trunk +28036 110c6edaf62f3858e4d611a6e82a9448947ee7da legacy-trunk +28037 f6a97cd3ba24b4557e073ee0ba0e0b69ebe9ec2e release22-maint +28038 1ebc128e4842c284a2c4c4b4f777cb64b365ca57 legacy-trunk +28039 778093533a46399abb3b107f8b491406a79a4f68 legacy-trunk +28040 7ae3d7486801e7fbefccd774bb83460d61c39637 legacy-trunk +28041 da90653fc2c6ebceb0c2d4ef870b6bc4ccfe3d07 release22-maint +28042 f33c01cc414c897545642094e9bd46eec07b9e91 legacy-trunk +28043 a9f2567c2f837658217e6dca32757eb1af9961bc legacy-trunk +28044 fb1d0e55b1521d6babdc698b18b2396e0adfc556 legacy-trunk +28045 beed1c1e7c6df6771733ff2e249a28c022c5e805 release22-maint +28046 0d98660e365395ddd945cb1763a9deedbfec67e0 legacy-trunk +28047 a0eb8e382d74cb122b7b1ca47002c3cb582ab799 legacy-trunk +28048 27da2b81a496a925e111b45b8e7f3678e8f7c02a release22-maint +28049 7ba3e5fbaad80c330addc7c5f6687f43db45c2ad legacy-trunk +28050 8cf00338b728d387dccc109e134fc81de9373bb1 legacy-trunk +28051 4b342ed309e02cf9b6bb22a77d36e9083fa6d550 legacy-trunk +28052 697d223a2f76660366d3252d7fc6f5d728863dc1 legacy-trunk +28053 edf757213a92db03cf88e7109afe0c9bded7a54f legacy-trunk +28054 224c516bc11f1e1446ec73d4b9338b200df3f08e legacy-trunk +28055 9d84a5bd767fa8d065861f248e409e452817b397 legacy-trunk +28056 ab5eea2dd3c00c08d1414dbaf18cb0d2dfd84d47 legacy-trunk +28057 fd1b5efa0ce3eacc8932c850721d44d1120e26da release22-maint +28058 1ab27c1770df5b869b7de7ca050b01011b59f0fb legacy-trunk +28059 f672e1dbad922411b432c82821136a1c855fed33 legacy-trunk +28060 18ca4e783f987bd33a6c52dd2ef57dcb60a1ffa8 legacy-trunk +28061 e61b118e9cab2926cb54ebfe20a4dd9c294b92a4 legacy-trunk +28062 955914b0a4d646e78b1ab80d7cd06e22605cd456 legacy-trunk +28063 8bc265b084d97c1f7cff3bfe4b2118f1ea49b370 legacy-trunk +28064 59d9228778ad63e8bd768f02a65d7fb1cc450666 legacy-trunk +28065 729287f7fc2e5fab0041529d95bd40dc0578606f release22-maint +28066 2f411f2d791ade7696500dfa7964c1a8e2746059 legacy-trunk +28067 a61893d7cef250cd34dc2148c0ff88918d8e05c5 legacy-trunk +28068 b265e76bab88329341ba8447a52e9c983b87653e legacy-trunk +28069 6a6d02be321ccd10182373c50b92e052b6a7c628 legacy-trunk +28070 d25cf94d20b1eaeeb0888dc621c227094c138f4f legacy-trunk +28071 4fbf534211b97c882c09844bc004b1680af11ec9 legacy-trunk +28072 579f09c0fdbcd92add8663c42b76031c6032f552 release22-maint +28073 bdba72ffd21bf9d62674bb1063bb7d7f61d66a4b release21-maint +28074 95c4623f818508f2fb944f0a72f30a50d2a7402e legacy-trunk +28075 70b6753117cc01bd7f7742476a38be0cd9ba04b8 release21-maint +28076 647f9367750e8740131c44d1caed6a98d85f787e release22-maint +28077 688eefba0869bb5d3f2c816a500eac203520050d release21-maint +28078 3796d39f0b80c81c85edc97c6d4b0a9b9fc957e4 legacy-trunk +28079 3269bdd65988eff897637084a831aceb5be43a99 legacy-trunk +28080 fec0b0aef14ba487e066864a86f4eb395f838103 legacy-trunk +28081 980767c6cd975b617e3a07cf1b6fd8fa3a05d9c2 legacy-trunk +28082 479cb5ff2e609c5a217a82940bff9393ab7c2319 legacy-trunk +28083 71dca7c76fa22792be93fb90c4c4be7e90925c1c legacy-trunk +28084 7b10e7ff794dc5000faeca1f30602fe1ed81b270 legacy-trunk +28085 6d26d4b9c5a36c18e5507393b0e8782edb5263aa legacy-trunk +28086 aee18ea3d2847653507f2b1ab169e418a3df411a legacy-trunk +28087 0492ad1ac6235d1faf3a84392805ccc2aee51853 legacy-trunk +28088 567704bfa595a5ab7b4ce71a96c4162b24017423 legacy-trunk +28089 274e42a691e0c843653ff8b2a24c9c6b2c949cd0 legacy-trunk +28090 36493a7c62539bca995a93b13671f4c4cf930536 legacy-trunk +28091 be47db38307e1831a6b4f47c6ae6281e5ba81111 legacy-trunk +28092 8b470281645e601df32dd0dd865e7d01c200bf4d legacy-trunk +28093 734f89c194dd9f103ec304bacd9ef88c435ef9ce release22-maint +28094 debcf72067f05967b5d75647d6344d1f0980bf06 legacy-trunk +28095 9c6f0e1999035a4f147552627215d75dfa74d68a legacy-trunk +28096 0cdb6e9bcb5214db3870e5b8a6a1452ed08c37ae legacy-trunk +28097 a28c9c336ab7119171db7e5d6cc3459035c9d5a8 legacy-trunk +28098 e71bbba0a0b97668c76840f4d6a30de9bdb3d4a6 legacy-trunk +28099 82e3fdb2816450c2cb5eded0fc680c8d5299c010 legacy-trunk +28100 a989a2eaa2ac10925584b0d23ff7837dc1407219 legacy-trunk +28101 ba3038a27c1e39b755f48adeba6c15632bde951a legacy-trunk +28102 eef73e8823d5aef91d49b7ec1c701f97873d9327 legacy-trunk +28103 31b9d369861d84997d95bd1ba45402b751be3c1f legacy-trunk +28104 80c7a82d614489e94504f168bad68fff180d603f legacy-trunk +28105 34128ccf2ee6193b2ff47eab8fa4ef3e7121e9ef legacy-trunk +28106 a2f9bb54231b13a9bc737f5a10605e89e252a015 legacy-trunk +28107 6eb958716d97c840ced2becd493433528107db3f legacy-trunk +28108 4181e3a42d0a23dabda0f7cf89a09d1412b050c6 legacy-trunk +28109 564abb98deb89c4e29d9a7c69fab55b283b7b835 release22-maint +28110 e5bc470d1d1e1fe0766686c24495a0a66caf4a9e legacy-trunk +28111 0d46e4b89cae7a4ea1e3ed4b2ac9ed06d516ad45 release22-maint +28112 2dcd4d92814703f991df4ea68ff2b1d8dd7e1438 legacy-trunk +28113 aa8bd0dc4f8a106f06840a37ae9a59427e4f7c08 legacy-trunk +28114 6c96587a197f9cda432b8f5254bfee0ba5b4d9f5 legacy-trunk +28115 11c70103880565193ea4c5f079e7b2366dd2f1e9 legacy-trunk +28116 406788caef6f26ecf0d5071bf99febec16474a84 legacy-trunk +28117 9429c3cf42a712bf40a0b8f168fad0e85f187ffc legacy-trunk +28118 db27a42ccf48ac30eaa172b142df26882992ae5f legacy-trunk +28119 74143db6ae2f97fb6a540af758ea6057dde264dc legacy-trunk +28120 4c746ba24de21c810b50a79abf057ce31684eee9 legacy-trunk +28121 343e64c92eb28e09b5e0c74943962239bf0cfc44 legacy-trunk +28122 1d3d980a3186041c062396b9cd57f9926aa7b9de legacy-trunk +28123 129d8d2e1904c726944c1d59c71cc2e6e07a5c76 legacy-trunk +28124 5c77316b21f70d758cdb65c5d88a20ff23c85d18 legacy-trunk +28125 374f879c5d8bd97f0ac4bbf9cc751ba446a146d5 legacy-trunk +28126 2d3c4a7aec0a706df5252b645483b4b389c12199 legacy-trunk +28127 510e73ae3e9e9d123ea33602eef14937613fe618 legacy-trunk +28128 9e2f539634e80a1ed63cc861e0912a080d4ee0bb release22-maint +28129 1125d9489dfa4007be67abf77988885ae753e8bb legacy-trunk +28130 69079ac7c512e560a81ce4072ab63eb6cb304b35 legacy-trunk +28131 bbd5f8af588ac10cf14d30af7096940fa5d9673d legacy-trunk +28132 b5640e74aa5c28befc19bcffcbb446a89152757e legacy-trunk +28133 3b8a707b41c462f0d90e6fe09b0d3dec7d0695cb legacy-trunk +28134 b2f7df4677221ccadadc59365aeacdf0e85df472 legacy-trunk +28135 8d850d58f109c7f57ed47ac2c870158cc0c5de95 legacy-trunk +28136 d715ca9db3aaa2d14c086a2951ff2ac833c8df61 legacy-trunk +28137 09ff0ed33efcb9197ea84b7e4cfd9b282e670f61 legacy-trunk +28138 b0273f397cf122dba232a9c329fed0a31e21045f legacy-trunk +28139 4923160e0707f7c3e4fe01c596d5e54f3b01c01c legacy-trunk +28140 b0d5fb577ab601cda38baef424faaf9894e25b36 legacy-trunk +28141 ff05eef3a6d1eb0d0ac5038d1e8f10613364a823 legacy-trunk +28142 eaa87632b1e8edf8e2be83f33e902d242dde6dc7 legacy-trunk +28143 565609bb8d898d3c375b61e583898439ecf30638 legacy-trunk +28144 eec6832818a37009e8d70b3bb93b4a04f553a29e legacy-trunk +28145 10391d58d18411e37640242680cf0db8ef02c03c legacy-trunk +28146 e756867ace810c8fbcf599590c277e26c1ea01f3 release22-maint +28147 c659f04ee499368d54636015d0ceda3eb5431fb0 legacy-trunk +28148 6d9974b45fea1333949dad666f569cebc6189ede legacy-trunk +28149 1a3270e26c162f499a0f164353f86922f1f922a6 release22-maint +28150 ba035f4b47c15602f115407c46537678caaa0c3e legacy-trunk +28151 49169d00ab182243c94ec9f7d0bef26dba48f167 legacy-trunk +28152 19e010f792a383e2ecb7359de0181898bf772133 legacy-trunk +28153 18c35bb5fe0743ff571c8026d4e7b9a7199aa854 legacy-trunk +28154 a43519887b1794d7017e1a7178bcae79abb90486 legacy-trunk +28155 c248bee52dc6a78e9d8aa0613995ce4db39e3e7d legacy-trunk +28156 dbf6e563023b9d4f6755b7efec6dd2a565046e52 legacy-trunk +28157 c1eb668525e11ce47fa947b100990d34b03c489a legacy-trunk +28158 27ae978bee58573429a9766210d0d5389c0e9802 legacy-trunk +28159 8ab303375b305e8388547e1d4c7eca84687de754 legacy-trunk +28160 c88d0848c5c930c26c00dbb11f58311820c9f7c1 legacy-trunk +28161 9c25aa13c36e1c92b904ef030b78bd6577c8706e legacy-trunk +28162 b504835685c34ea73e720e6680038a8db892d82d legacy-trunk +28163 27eca4766937aef4cbe2fb9edd99b5623489d04b legacy-trunk +28164 3d2335094b88c17fa6b5f6d08549dcc42b25fb8d legacy-trunk +28165 dcfabe65c22e5b2b68ce1553ae07249e5e9f8bc3 legacy-trunk +28166 e0431d9c44742027f728b5c3260ebb9b8494c5b2 legacy-trunk +28167 ccf66a1aa0b84429d5548d2b53f6019d5172ad80 legacy-trunk +28168 5ed7c977d2a96db6d400cf9fa5d6e487d1ee3c22 legacy-trunk +28169 f0bd5cd4b1706b339f0a137e4aef29e6c6090c1b legacy-trunk +28170 4cafd9dbc8b47916e923564238aa936eba30909e legacy-trunk +28171 58ea420ddc5eeade0e2ffbcba04bc24a0f33f457 legacy-trunk +28172 2722057ffe860109974610ac616c6b436262b9ea legacy-trunk +28173 acb258545a5c12546b4519c0345443692967ad43 release22-maint +28174 0afacf5dc42eabf8b0c299d017e208a92303e65e legacy-trunk +28175 d75bd9e5c4d9c3d84d53185018d8ce4a16851514 legacy-trunk +28176 1824983fd94a744848a32d42c9a0a3f533e51fee legacy-trunk +28177 c60e895d1125b34db281334c85c1e9dded116989 legacy-trunk +28178 801a44ab2aae672189dc78e43e3e3c65c9afb1bf legacy-trunk +28179 9e7ec2f5a1bd373ebb81bcb82b0e15610bfb4b63 legacy-trunk +28180 6c6df69236b1d295a866cc9e27edba0633b387ff legacy-trunk +28181 fe3472f2f8eb722d5ee13891f0ff8d9d89d73fd2 legacy-trunk +28182 696a284569e64cb8a10f6d37f9a3677c5eade191 legacy-trunk +28183 f1d18fcd56e696285992dd261dd2762c1b50d234 legacy-trunk +28184 53cb71638841e6dd8839526d75e82589df52925e legacy-trunk +28185 1fe06655c50c959e3eead48143eb685e1cbe1eed legacy-trunk +28186 fae386d5e35456e5ab19e19d318f9b1a15d6aa4e release22-maint +28187 c23853f7ebeb9e05ceb358cbea11aa00c1a6e06d legacy-trunk +28188 01d6c5146ff9aeca2ff31074cddef0eb5be80372 legacy-trunk +28189 cec41e3761ac3e4348c5cfd8371d652ad63a1a30 legacy-trunk +28190 4de9ac0e4173661be1f1de3211469cb0ffe1a346 legacy-trunk +28191 f0d63aa1dfc7e909a2d03aa26a708df3e4b63dbf legacy-trunk +28192 0f61e074147fb1aafca247835a770d200da66412 release22-maint +28193 1fd38900f53b8610ee9f20ffb36aa401f8c58d35 legacy-trunk +28194 fcbde226545cc38c263b5c37541503365c447f5c legacy-trunk +28195 825948c21f0dc13885cb810eb32143656543b63b legacy-trunk +28196 dbf4cc56089883e079c708e3e68d677df2e36279 legacy-trunk +28197 4c46b3edaa587c0e1f750b394b9012d9833d9d70 legacy-trunk +28198 1951b2c6604438b132fb18378f8f202f0e839ff3 legacy-trunk +28199 1c63d30826569ea17465b905e18869cb7b12d1a0 legacy-trunk +28200 452d6a9161962463f565ecd91a4c627f85ce8cb7 legacy-trunk +28201 de71e6fe64b0525949d329599c2bfdce672e2f40 legacy-trunk +28202 6a9ea0c22cea1f9ab1089aa850953d3ee14b46c3 legacy-trunk +28203 461afdb5cb9edf6306d3ee87ae327806dd6d4c36 legacy-trunk +28204 d9ff97ce75bbed1e7673978a1370fc7ad1466371 legacy-trunk +28205 931fb3700d0ba91b905ecd128a78e170a95678a0 legacy-trunk +28206 862695b920fdd88f8a6b377e023b8d7318f9d4f1 legacy-trunk +28207 a62cee4eed966f1fc2d3d92c9dc4e5144cdf0016 legacy-trunk +28208 18cbadd807125aed42b18a1e7bba603bcd535bef legacy-trunk +28209 30cff9c1bf693c08cea2a96ed3e1917f47216683 legacy-trunk +28210 f147b594424467f14279394857a48ee584e38313 legacy-trunk +28211 9b06f44bd4a34d873d6d5c35486418f72f799c78 legacy-trunk +28212 685cd52c4c438c3ff554707025750aa1bcb0e49a legacy-trunk +28213 ab63af3ec3495cbc7c8903a31c74b80c3d62a2c5 legacy-trunk +28214 c75cdc471b2244a8b3a7c5e1ce94a1aa3e5f0b9c legacy-trunk +28215 7ce82e9d08c78a50590bf80fa2219aa494b67593 legacy-trunk +28216 58623ce94d406c4914d59de505e789caca96a569 legacy-trunk +28217 74ed457208c1a0f534897ccf863a5434acff0afe legacy-trunk +28218 7b7d8820ae380f09e60bb6acee193dc1f6d31978 legacy-trunk +28219 6420b97eb59f17c11abca4b4797a8c283742491d legacy-trunk +28220 50faa6835ddc41799421022197b81ae87688e5ed release22-maint +28221 c45642e1dca93c535f2f5670e329c51e43cdc7c1 legacy-trunk +28222 3ae8e3ff7e3f3437cc6e91cb8bb2def824b1e1a9 legacy-trunk +28223 31d2860089e600b6f4b21d5896129d83b454ec1c legacy-trunk +28224 4e44fabe0fa017bb85b2501c42168210d8b3edf2 legacy-trunk +28225 011138b5f389a2848e25eb6213ce57fd34be89dd legacy-trunk +28226 ae9c9f90b4b01bfa0b1911b5977d25d6c98c873a legacy-trunk +28227 d3d7de703a22daac8d9d9727d66f9aeaa286d19b legacy-trunk +28228 588d145c44dd9e6c9617d9e72036f7931ff46064 legacy-trunk +28229 7c91d303c563ebe86a81d95ea6e6f4ce85a8ac94 legacy-trunk +28230 c001e5a15369f37a7ba121e2097f6ae862808295 legacy-trunk +28231 a7dbe4e7f5dedcc2f0fc3853c070eef4263be8fc release22-maint +28232 e5a07cc815590584c5aca3f1abfd4be92f5fdcf9 legacy-trunk +28233 4cf502716d15d53fefe5cdaaab2c80ce31cf8044 legacy-trunk +28234 31ee32c23d29c59f9f31033fb7e35b511423d6da legacy-trunk +28235 8e3e0e11f14caca333547abed3fba4d36e79be14 legacy-trunk +28236 a602e4878b4ecd0caab39459c42df49dbcfa9ffe legacy-trunk +28237 453c88f963ec326388e85f35d5fb38f0eea18bfd legacy-trunk +28238 ca58f5a4558b8fa928c3d2e0ba36914b743fad1f legacy-trunk +28239 64f4dd770c67da6509a9218418f84ce274fd5bcd legacy-trunk +28240 e399d0a875b7e1ff38924cddd8e473b88836a642 legacy-trunk +28241 c004b2bcd5421c4447e345ef9ee49df1eeec903b legacy-trunk +28242 19f25bcf5a002ed1be7bfec194131fd55fc34b04 legacy-trunk +28243 aea68cb368596134cc2a51a231ee65ba9b17aa01 legacy-trunk +28244 17e95cc06f693b06c8dcf812c1f64c1d7fcf28bb legacy-trunk +28245 2ff4268f25dc738a9896020566eef1b2ab447132 legacy-trunk +28246 3af8d81d7f86e48af9c83d159321cb683e16b420 legacy-trunk +28247 c9af875048e7296b50f4b71b7fad720b52bc3061 legacy-trunk +28248 11c1cc97b87a31f6f635dfa513ea282e29075b7d legacy-trunk +28249 cf5928fab108de9fbe02632d07176c717c2b3aa7 legacy-trunk +28250 6939d72182e6c4991cc74e54c74ce50349738b5e legacy-trunk +28251 10a4ec45549d0d894910dda9818b9788193545e2 legacy-trunk +28252 873f12f68e3b10149bcd7f3d98d295f6ffb99ce7 legacy-trunk +28253 dacd10d46e529405b8cf84e9cddfe0902f46cf9e legacy-trunk +28254 3c9c56d97e55e723b6e73b83b17dface5ab2b8df legacy-trunk +28255 8ab46df3182e79433cfb29e71082a1ecf7c1ad0d legacy-trunk +28256 34cc98892e892e6737ee1b31438802e42c71e1f5 legacy-trunk +28257 ad361e1d54bba3e2f4b12503a6dfdc4a4014dfa7 release22-maint +28258 e9dd3e91e65310b70789f09af8075c3a71628d87 release22-maint +28259 136b853622cc92347696077ae32d9470d89fe18f legacy-trunk +28260 bed5d5e536bc0cec2baec41c3f7c4dfde851f14a legacy-trunk +28261 87448a228cca2becb272b3856693cf7eb9a223c6 legacy-trunk +28262 0ef6c2ad076b13390d69b85f18aab038b6ffb6e3 legacy-trunk +28263 592406e0c9b019b6642ac4b02d6d98bb9ba3ef95 legacy-trunk +28264 f2447686ec5ebe7f199d7ee0960cf8cf7bcd5e43 legacy-trunk +28265 e45d1611e869d640dd5137e92d38afae31329ab8 legacy-trunk +28266 4e795fe9f54b21b8fe403e31fd9a50ef2fd83e0c legacy-trunk +28267 5b656c3e132b86741ce6c5a23326cc7a512771b7 legacy-trunk +28268 a3ebd1233c00eabf909be82223ffbd5f18fa925e legacy-trunk +28269 e5014ac97ba1879a6e49465983446545beb94bbf legacy-trunk +28270 b54cfa98b66b9b34c634725b8ff35009a02400f7 legacy-trunk +28271 f0dbd5b49d8a01f5197d106c41ded8c97340d420 legacy-trunk +28272 255d1d3e66a3ad9b2d3bb1a1606dbf1aac49d4e1 legacy-trunk +28273 2306001f6eaa350fa0597231b68bde40c4d8c421 legacy-trunk +28274 9ca89642337432cd38ac3c7b6ec6eaf2ba984004 legacy-trunk +28275 df2326a4894dee743aab94a7eaf90550918440eb legacy-trunk +28276 258e0b1347c2ad868d3b678438f87f9453221289 legacy-trunk +28277 9becfef6e31a6bd707eeebc76673f6cc548cff82 ast-branch +28278 4f13e59fd0a03f9650af7f6d9d232a97d2ecae0c ast-branch +28279 cf561e612378c1a3afc9dd24ec1ddfeda86362c4 legacy-trunk +28280 99f5d18be5880386da6427530b9d8b7515827173 legacy-trunk +28281 b517d9292ce7c0f1f2632a23d9ca17258664b75b legacy-trunk +28282 8089ba397480e40ccdbb655258e64df8099f16e4 legacy-trunk +28283 725337b68ca02b3c1a80799f838e81cf42aee356 legacy-trunk +28284 fc7403e11878330c3ad4f857dfaa5eca3cacd1dc legacy-trunk +28285 f485104e4ee852b4c291ec9dd64d23f9935bb874 legacy-trunk +28286 239bdabb63af9d717fdd9c72f48539c5de43b3e5 legacy-trunk +28287 710bebe2182cb144a199d2d9f017c3dcde2b49df legacy-trunk +28288 d3541d90d5e06e5bdb06417f7f66857d22f0fafb release22-maint +28289 aaae6932177171838bdf937730955acb28cfb569 legacy-trunk +28290 5ff3d8aaa8f8a06b1829a0343c7c76a0cb3294f1 legacy-trunk +28291 c4e550702a29a3459ded126fe408c2dcf96db80d legacy-trunk +28292 8791193b09d6417be4fd60ebe28b2f8c38a352d4 release22-maint +28293 02b2f0885c5210240dc2fb139140b2576020641a release22-maint +28294 d797cfa8ca0d045d5d3aa0e0b1909801e0f22a34 legacy-trunk +28295 24f1d845cdb57331aaf5a4d715e6556f0d8576f4 legacy-trunk +28296 492addb812ef1178081a9f32dfd1d44c6a5ab51a legacy-trunk +28297 d7ef2ba1b6f5ef0ac1f59628dfe556da993d66f4 legacy-trunk +28298 aebf8c52a842d41d92a8e63004ceb00ac35d79fb legacy-trunk +28299 4e4a344c9b6ce7b0c71cb52800e60408f8f148aa legacy-trunk +28300 44d1d0b623a9af7942ff7b15862158dfec1438a7 legacy-trunk +28301 8862bc59685acd637f5af4664cbf6bfb0dd7d9df legacy-trunk +28302 c8d9592c9e7497a217a20200487148ec4b4d8dae legacy-trunk +28303 27f0deebf2648afa557d6a54d13649eba924bac2 legacy-trunk +28304 6310a4a21eb892ce3fb8ab7419281714a65ea915 legacy-trunk +28305 a869d2de536f8d30cc6e7c6fd3501f4b26e9d77b legacy-trunk +28306 8f8fe990e82c334f50cc6a5fe9dee12c42b8b6ce legacy-trunk +28307 2cdf3d0dfabd5010a69a7dbd6178b790fe26ab7e legacy-trunk +28308 bc660f73795cd7ce0709cdc88a76acfaf1398069 legacy-trunk +28309 f57d6db423f2dbdb473b8c5e7519a4983909c1c2 legacy-trunk +28310 ecd4ada252bc09ad9a85f4891d0acd39396f1e22 release22-maint +28311 641786bea13e2b5a61a7f8ea429b20d965d7546b legacy-trunk +28312 aab7debc73a88e2135dc718ecd7227f71ff7d061 legacy-trunk +28313 31145d667b14a5e664d741ecf385fe3862767e4d legacy-trunk +28314 b3efbdccf7c64c0bd57f46c2b5044fc610989363 legacy-trunk +28315 c6ad603bd2645aec8be6509f2df828ed6c0b3706 legacy-trunk +28316 5acae719cb8aba5c44ea83533a619447e955f880 release22-maint +28317 5c38457f6b3b85b6c1b741483046d9d406216cb8 legacy-trunk +28318 35fe5e3cf885f646a69e10c0924f7c11a173046e legacy-trunk +28319 0ee48aefa4749e73d9173bb99e7e62f60ab7484d legacy-trunk +28320 59acd502880447f40e2dd0d38bfc48c767a6da83 legacy-trunk +28321 684ab0640e04fa0ffa893c85da3c13b6294b3ab1 legacy-trunk +28322 01e1d6abc50122f28ebc1453e58da829b5186dd6 legacy-trunk +28323 e3d96e00dc6c1c3339f39efe34f5d6da37345c8c legacy-trunk +28324 886686fc92a99cfd1d3140904e7fab20d4273a04 release22-maint +28325 0d5d8e1cdc22ca16706dc1ce502d294dbe65128b legacy-trunk +28326 4cb253c556b10a3d4b9f41f731fcb592ebff8787 legacy-trunk +28327 714797156c512b94dee42f41bc016c24aeb6f9d5 legacy-trunk +28328 8eef03850f57767fac70041d5dd837691e8e7e57 legacy-trunk +28329 5fc46098158920575cda6b749666d07668ee1e18 legacy-trunk +28330 51c26994d8ec69a7307989230f37592686d00223 legacy-trunk +28331 a1143224ee0d0f7694a9468aa156b1dc61a50abe legacy-trunk +28332 940605d4155fdc6793c10443ee84948dae1dedf2 legacy-trunk +28333 d2eb007448a3e658ad67240a4fdf6993c25b6196 release22-maint +28334 c4a4b742ad6c65db3e17e3c6fcc00a87b2f33342 legacy-trunk +28335 0dd5bcc1ee0bd3e9988f1f7f629b64e45b00e0d2 legacy-trunk +28336 419d47c77143428efd6ec055b6f9d08a3031fe4a legacy-trunk +28337 e8f77307d9c6a28d017f7f515fc3780e167450e9 legacy-trunk +28338 c0e980ab54db3bd950a63d25ef11195d7d017037 legacy-trunk +28339 617bd55b4a6edbc24f4ce5e7eb237893d40cd3fd legacy-trunk +28340 9ee4f4cb977069981a41b49e59813cb6b75e3288 legacy-trunk +28341 6060cf6682c025698342b954637f551f75a6b9ab legacy-trunk +28342 64508a37a8d5b50c81c1e18e8be358bd7c1b6505 legacy-trunk +28343 294f7be2619a6031ed9cf378a6a0ac5d55f4eef4 release22-maint +28344 219e7038907267997cda7391977bd02fed054c9d legacy-trunk +28345 e9500709d49c98a86d05c2f6fd3cf5ba3c7074ab legacy-trunk +28346 2b66adde02306692426a3c47d4d06b908ce9dcb5 legacy-trunk +28347 bb6a71d3fdcb755f8747bc141ece89484649cee3 release22-maint +28348 67048454aa1e7467939d72cc0865a89c305ba632 legacy-trunk +28349 d13551cd663e5772e8e329bca9f9488b419b3269 legacy-trunk +28350 5306408657fc664aac0299eeea501d93c8411be0 legacy-trunk +28351 54b601d3b2a6dd91f265e463c22ebf367f122e84 legacy-trunk +28352 7417a6dc736662d3a1bad7a9115af5e438c22489 legacy-trunk +28353 0c201548d3d4fe5395c262a05e188333624f79c3 legacy-trunk +28354 544a326baf7f29f1263b0ce5301fdcfd1019aff9 legacy-trunk +28355 8adca5f9bffd86fec632f4eeb989f9e20421d04d legacy-trunk +28356 9f26e0c0c6927104bcfb62d0b033819bd342fc6b legacy-trunk +28357 13388cafc16e9633b3f1d5230b006e1330d53994 legacy-trunk +28358 1bcafbc69c967275dd7c470ae5c6d9882f8b852c legacy-trunk +28359 6a18b4e838eaf3f9c75322923e0b711ad2ea474f legacy-trunk +28360 330f6e42274f8387c08d5724b78f2eb22128d0ae legacy-trunk +28361 05da95bcd724dff7e78e47e473811436857c8e42 legacy-trunk +28362 c55e8d6c091f033cf7eeb636de437b58dce21f1b legacy-trunk +28363 62810beb9af477730bcf07fdc786ec664a2066f0 legacy-trunk +28364 dc66eb4cd17ac2a000ff19060e8a38441a92a69c legacy-trunk +28365 6e78a54bac3c84041bafe3c00303f545d8ef089f legacy-trunk +28366 8b6bf5bc51226b7228fa316c677f8d50bd22fca1 legacy-trunk +28367 b933d19ae8512cba01e7264ca45d1ea000181367 legacy-trunk +28368 043eba518c689cbddb371e5b70ffe9904c5d9205 legacy-trunk +28369 c1f682beebea1cf1e1e8eae72799723cd3cfcc33 legacy-trunk +28370 73fbcf21b2c0fbacc9f72d447896dd0934a3a449 legacy-trunk +28371 d90a6add7ca398287c0f9468fa88dada67e3f11b legacy-trunk +28372 1b4ef9cd189742bc80aebafbe5f4dddd64320689 legacy-trunk +28373 c45b28658805fa6694e393652eb01929358b2ae3 legacy-trunk +28374 80f65c63e860c26dd5b2732a863572a1a64f8c40 legacy-trunk +28375 95186591cbcfeee146706eff08e3c57387c2bdb7 legacy-trunk +28376 81679ebec07d719ba6cca59e2d5b7680625f4a63 legacy-trunk +28377 f6581299bc03b518ba7dcc15198f8767a7969dc1 legacy-trunk +28378 4263638a469f8db867db098ca30cffbac72a023b legacy-trunk +28379 8ea117ebb2f349de5e8e3d4419f78aa8e417ffaa legacy-trunk +28380 668eead13a7c57ee65db60ff18ce93754848b6bd legacy-trunk +28381 7190348d466dff5d66056caa2273a2890640f1bd legacy-trunk +28382 7beb16923b71bb70fe95af36a658e6986f928ddc legacy-trunk +28383 063f2031660c3e258f36880f5d08d43189b3277a legacy-trunk +28384 25f6954fef3423d07b8f3af8e77585d73866e24d legacy-trunk +28385 b1ab4e8d7d9c5a0b289f3d4368c89c2b44c7cdbe legacy-trunk +28386 80ac86194a12bb94ad621e7c21e36d5ef69e9bf1 legacy-trunk +28387 9e11bb83d953ba3ab61e3b963e547c57cedf1556 legacy-trunk +28388 ee99d222570a94600df070038ef73d44fcfa8ed6 release22-maint +28389 22b70c3983b538cae574ac8cd7bf941098821351 legacy-trunk +28390 4bb776a02e6e84f8a7a082c5c20e964061e9a951 release22-maint +28391 80d035c451493ddec74fcb0b244e49b4ebb1734f release22-maint +28392 1461b94606c5414eb29b1657aca77d1d34d82bd7 release22-maint +28393 00f11eedd603345cba9923a36dbaf056534516cd release22-maint +28394 9130ea6693da7ee99a3c4e3b7d53bd05ec7ac1c9 release22-maint +28395 0d6617a9cb610d2722aa252370d5132a3ef34c40 release22-maint +28396 f4bb0ff310d3489c23f748642053e3ded6cbf399 release22-maint +28397 bc81ee20628f3cc9d5010cd418978f5ae2dd6a4b release22-maint +28398 6461acdeb58c9082afee8e564f0bceabcdee6104 release22-maint +28399 c5417f0ee5f0802b187389b718b12d31b9455471 release22-maint +28400 fd066d194cff41c2bbf7a4a5a3a7fded56c45cdc release22-maint +28401 5e4eadf1903a028e655ab5829ff5100e902e586b release22-maint +28402 86aa2c2da40e4b52cc6dee103f5337c6e66bf7b1 release22-maint +28403 c512a9433eaf3b3f160bba6905dc55535ae73841 release22-maint +28404 a0dc6f50497285a146b120f93a1e58dc4655f83e release22-maint +28405 ac468e20b4ced8bca06ea4b8eb059e5ce46d498c legacy-trunk +28406 3a7499431dccf3cffd1ff48dc27f32bcb900f2be legacy-trunk +28407 f95c0b894f2766e92de815f948e819a9aa8bb60d legacy-trunk +28408 2cccf8242009bac5598b262b393cd11a6a4a59d6 ast-branch +28409 fcb5201c69ed86752a584663a456a3a53da05915 legacy-trunk +28410 48138373709b47004043c4390b0af042a408afdd ast-branch +28411 bbaebe6b7c1adfebe7da59c5baeaf3027260d611 ast-branch +28412 0b726496cf44f17adfe3b7cbfa46276e4cce4137 legacy-trunk +28413 59b7f4e9fd61470dbddad0a6e505ae708a504490 ast-branch +28414 c744144c4049df6737adde7bb0d6096ceb8e052a legacy-trunk +28415 94adf699618fed5ad47c7020198c788d0bcb8da2 ast-branch +28416 8fdb0877d352383870ab09b49a9070f908616e60 ast-branch +28417 762dd09edb8342fb048439fab6ea81d62c131d64 legacy-trunk +28418 b43986f73fc9f8a28ad9df67033078dd07e6172c ast-branch +28419 f82475d7841525c86f58ebd82aa504424162fffe ast-branch +28420 12bb6f0c60f8c638c12cbdb8a4f4692f4b71ee14 legacy-trunk +28421 0857aadc612a3358ea24cb144cbbe4fbf04f06c5 legacy-trunk +28422 b5b70e410f124f8eb95936ec7316475068ec2161 legacy-trunk +28423 acecdc4f733363c4e7e1452abded6937713a5ba4 legacy-trunk +28424 c68311efd346ed9f4067789233464a01d5a229d6 release22-maint +28425 d421bbc9961c8cfe0aa2659b20c80c6874e19af8 ast-branch +28426 35749db10809305610050fbf61b5d855cd2b4e1d legacy-trunk +28427 f36e16ca8f50580f5285ed83e3212f060ed1c561 legacy-trunk +28428 f2d75749e61c5e322492a1e28cfdcdc079d30318 legacy-trunk +28429 68627e0acd15bab85baefb3da2ada9edb6bae38a legacy-trunk +28430 feeb0b02b8f2529e5e40c97aa3fdc568e9a87eb8 legacy-trunk +28431 24e80d96bd0b6e926ab98514a0444ef68eb57f55 legacy-trunk +28432 0ebec83eb3ddfc1c5b5a2afd12de762ade3aab34 legacy-trunk +28433 aa4503556339edce0374932abb25d9a44a7e89b2 legacy-trunk +28434 81be61056717f88136062fb72889f7678b512fa8 legacy-trunk +28435 bb28bbc28c323ab29d50655e26788890c46c6c76 legacy-trunk +28436 e41058845b792ed6627e984f0ccb12d4c01d26f6 legacy-trunk +28437 90b13d99982710ff6c39e092beca67a7391d32de legacy-trunk +28438 81acbe1680a3308bb818ae0632f77f915c1b0c50 release22-maint +28439 a6de50c0d457eb61cfeb5992d7511c0cc81d73fd legacy-trunk +28440 049096efa2c3ca876b19c37b2468d73845fd960a legacy-trunk +28441 8fa753a97077ba09ad5c421c00707cadc09036f7 legacy-trunk +28442 2c2b84bda141b7a4c8c5931eaf7a0f6a2b272bd5 legacy-trunk +28443 3484309573f21c839c775392b5cbedec1123f180 legacy-trunk +28444 ad289fbb6b48d72b7838e83fe0f30b7f87f36fa9 legacy-trunk +28445 aff067ba8d0788f0a937e9be3def6250b738a587 legacy-trunk +28446 8c61c92025b6c77b83e92bc7893074b047c1dc64 legacy-trunk +28447 40e9cfde1c50880a1f18e0a4bee1313cdf49187e legacy-trunk +28448 7fb3759d3866d5084e4a222592f0dc76795e848b legacy-trunk +28449 8c8052378017cb453b0f231550ed73ae57605298 legacy-trunk +28450 4e996e959ec187c7137817777e71c104ed01d287 legacy-trunk +28451 d5ebd616a3e6f4bcd58093bc55c38a36596c1183 legacy-trunk +28452 0e01b85add8126e6ac737857ce99eb6f03b1db33 legacy-trunk +28453 7d3f8306a01ed5ae543eb848afc59fdf84db70c6 legacy-trunk +28454 0b9792cbe90042b17701ed324393c16e667d38af legacy-trunk +28455 3647b30aa9de09ac56b2db72f74a16e4ee264983 legacy-trunk +28456 db49ee76b7d0e3f76dcf05ba2b324c83910703ec legacy-trunk +28457 ed0b02672f0905dd0a9a3fa60f2fb05b8f201ab0 legacy-trunk +28458 1189f77cdf845d2ce79e9ced02f86e2107032fc4 legacy-trunk +28459 8cf205892f66289606cc26a388b53ecd33451abc release21-maint +28460 bd2aa0247adaad8c46a97d97472440c99ef6765e release22-maint +28461 76cf88e89376dc254ad7ff6120e6f831c0946ce3 legacy-trunk +28462 434bc1dea4f8ba7e77d6586b33ed4ef7bd11f03c legacy-trunk +28463 ec373696c17bc3786265c9721c7f99fe1e64be77 release21-maint +28464 d0413de143ec245ab0e125fce3d33085f1384b99 release21-maint +28465 d83c14ae647dd0310c1aa0fe05f0fec46d3b5ea2 legacy-trunk +28466 4029d67cdbd5fdbd4225fd77b8847e0b0383dd51 legacy-trunk +28467 cbee2ed6cd755a7727b3b8ea026c86cada534464 legacy-trunk +28468 a7a60b141d1da6838dc9e1e1c33499995e6b7531 release22-maint +28469 63ca12aba07934a59a5f45c737ee6f7f8cb6ddae legacy-trunk +28470 8e8d3e4af4f46894b782c9a7d20973b12e22f6cc release22-maint +28471 1aa0815fad4b11671c58135249a9f9efcd041fb4 legacy-trunk +28472 e0b855aad2302092e336dad0167b0e3f31a8a516 legacy-trunk +28473 e2042c76af06560cca2be6a431da95d8eb6ba399 legacy-trunk +28474 b8067ddc11f87a97d45f3fe72759b3ae1cbc34e3 legacy-trunk +28475 ad3be471b399219330685d41fb9b2f5df8212bfe legacy-trunk +28476 0d492902894a558870e753c46eac49082d5c39a1 legacy-trunk +28477 7c76c0fc2e92a097bf8e900583b1d5a24e0a5e64 legacy-trunk +28478 100f154982c8bbe09ca518ad0f93dcd4b49f8c6c legacy-trunk +28479 7dc7ab5db9099e84649b4c354b1d4d1180169f20 legacy-trunk +28480 81a36d2a2d137d1209b541823fede4d37aa82320 legacy-trunk +28481 5a88f174b684cbbf80c1c7b7164ed802308c38ec legacy-trunk +28482 ab176e164eab6948b27925e4f21ade6f2d0ac2f8 legacy-trunk +28483 46b050455533683bd8dd22706efc16c7002852e4 legacy-trunk +28484 03eadc57d4299c414a1de9912d63a9267287b3b5 legacy-trunk +28485 8231f86c8628a4639c190140ca79ff4909ce5a12 legacy-trunk +28486 274fa0b34ca7e6b3d44a115dd7268aa21514da10 legacy-trunk +28487 05b15ce28e31fa4f94a852948c40d3c82145e0cb legacy-trunk +28488 5fb6f5bb7698fb8f9911e2f98f0f2020e6d47626 release21-maint +28489 efc128a334a55f274a3bd1c31c9623f21272eec0 legacy-trunk +28490 825fc85523257d9e90c67228a9cc803c3b5e4578 legacy-trunk +28491 31a774a6f604b570f91716e558e7daf4a41d3244 legacy-trunk +28492 6a221834ed7df42e80c201a11426077dd4e62900 legacy-trunk +28493 a54c5cfa3f8fb214cd35f41b9a1f8cc473e526d6 legacy-trunk +28494 be2868a63ed53d1f24e4c071f48906e5a13928c2 legacy-trunk +28495 004de1ac23c44233d9ab4201feac3a6181eaf354 legacy-trunk +28496 4aeacf9f9858e45fd0200414be83201d16600396 ast-branch +28497 26c50f322622002280bdf32c8ea799bd2a766db9 ast-branch +28498 02e0e6d3813e9eb342f5d36a84f42c60192049c0 ast-branch +28499 8e47361c4b5b03949be9271fc14e6f5445b7c901 ast-branch +28500 13e90e3c4c9931bff5b057b80a7b9fa7b2cbb0b6 ast-branch +28501 c556906479613012936942c972b3324ca64d0c35 ast-branch +28502 89421505db5903293dbea0aea0225e3b3d8b1968 ast-branch +28503 0c54488a748219ffda8be6ff8c8546d5f3f62fdb ast-branch +28504 ed2a8c548c444d8b9f95cbd365e0154c446bac99 ast-branch +28505 5a1016b2c440cdc1a42e842e8ab3bd6f44e5a055 ast-branch +28506 5a41a70bc5d17ce143ef69b11bdc1c48106aa602 ast-branch +28507 2be969d29510ba9c4cafbedfed2c038a46491b09 legacy-trunk +28508 9a2de39e8da75fbbfeee4b260dd4a7f7a4332024 legacy-trunk +28509 70603f48402946a2387e0e35c38821299ffb8791 legacy-trunk +28510 4c4f92b0af9036954320fb52e2b7bf6c11ff47c5 legacy-trunk +28511 b337ef16c0d2d8bc3130d73544c775731a661a37 legacy-trunk +28512 5fe4d93df429134ef8695c12e59ff962ff8b73d2 legacy-trunk +28513 84bfb8a805fc9ff66b381ee1e1646c1d3212a346 legacy-trunk +28514 9a178adb4e2db00872dcc5fc579301dceac4bf56 legacy-trunk +28515 19982c5eb493af09a22f507a5be502ad57e21da4 legacy-trunk +28516 877198705c92adb028daa2e06aec994eab2c14e4 legacy-trunk +28517 c149d39314344740f4696c95065adafcd4b4ea84 legacy-trunk +28518 0337dad8403e10a7358be5675f32663940ef3d03 legacy-trunk +28519 427efc35b5beb6deb9bd29f0231be57683d32058 legacy-trunk +28520 ae1469e468a0490896bb1ab91fecb9ce09494207 legacy-trunk +28521 6a85a1c9d33d8f3af32e74461f037a03752d4e47 legacy-trunk +28522 1b80e0fd5a4814598f44a557068e6bc8a05efc03 legacy-trunk +28523 98ddc4297f361de5dbe9bcb33452f6357503e6c4 legacy-trunk +28525 5672b1573855a515aa363fd7f8e7dae2b4270b9d legacy-trunk +28526 73b2cbae9d9017804370ce5beb5fa99c70b2665a DS_RPC_BRANCH +28527 c02a668488d082c4d0db8b3872777e68c1a2c2d6 legacy-trunk +28528 a69a12484d69aa866e67268f7a761452d03a2752 legacy-trunk +28529 bc590beadf0bd17634bb0e1f642db6677ad7d38b legacy-trunk +28530 32331d26d7cf19114f1f80b3eeb59a5579f48e95 legacy-trunk +28531 8a16de0be11178092bbea05065014c7ad4b47efe legacy-trunk +28532 f9e4243ff792e79411c188a5116de25c686f16f8 release22-maint +28533 4b580a4625080cdbeb22db8f140a5a05ec5b4b78 legacy-trunk +28534 39e09f30f7ef2846a7f1ab596230e1f44c4e6d3b legacy-trunk +28535 c0d5ff8555adea4705d4556ffb099547ac8bbb65 legacy-trunk +28536 0ecb3cabf40b9a86e636cb997876b5d671ff3357 legacy-trunk +28537 3a26e352f0a6d275ff1e077c80aaa8cad2129de1 legacy-trunk +28538 00b6dd414b80461fb7801a4e8c1d6d3e1c1b871b legacy-trunk +28539 0401a0ead1eb3347d120d2a0814dca522f12b813 legacy-trunk +28540 b470b417839d8cb46df31a345270b7e32e36efe1 legacy-trunk +28541 f0ff060cd194e5178725e5c92821766940382c34 legacy-trunk +28542 fb334b1a56a65c07108ab38be819307071933e5e legacy-trunk +28543 a2b1f3c11387a64708c85ede088cb1d1d0b50db7 legacy-trunk +28544 8834385f29bf5410d9f728aa0d37a6d76c578894 ast-branch +28545 75961cb3747f9db9bf401cfd1a94fdb14031127c ast-branch +28546 69293b849d85807b4d6e181bb246b550aa2fcae8 ast-branch +28547 7c73338027149b20c869a9f40da5233eb687c35e ast-branch +28548 4ea08110030529b8b8b28df95b09c82505257db0 legacy-trunk +28549 efc0edc30fea4350fec0c05bdf9e33c5632f3e0b release21-maint +28550 3015c678f81ddf850df100e5a86e313dc0750006 release22-maint +28551 0ce2722a3e154d0934bbb9b5526edc5e938f8284 legacy-trunk +28552 4c8163a27640297a6b1cbc99f5d45df5d2d8998c release22-maint +28553 953ebe0c0c25eeaae3b3ef78e54a18be09808f8e legacy-trunk +28554 c7310f348c78e2afcafb6acb1beaaa963e1f98a3 legacy-trunk +28555 e500f18f3131282a97e7c6fc3f5a46ec315bba2e legacy-trunk +28556 6b67d26079f255690ecfcc22de2b20757662bef5 legacy-trunk +28557 27c718c82efde146c4f89c174468fb6114d6cb6d DS_RPC_BRANCH +28558 48d108e5b8841a0e89389f01f8c03e0e984c5981 legacy-trunk +28559 172845c09afecf54253a4f843ca4ae7ee35d104e legacy-trunk +28560 56f9f5ab6ec11f8a9fc3b68a4a1f8c2dfb2b021c legacy-trunk +28561 5165a0ee84c620a6f6ecd03d53adcdd942c67a47 legacy-trunk +28562 f1c69c32c42b2beae64933cf3ba356b3638550a6 legacy-trunk +28563 964d6888a2368e9e1c0c12e4c4346a230be855b4 legacy-trunk +28564 368bc3a4919e305c5c8372fb3506ffeb90b0867b legacy-trunk +28565 8529e558f71d742fe5bf7683f91206dd1771a4c0 release22-maint +28566 b89ebd57ceb4a95f2cb3804ad34ffd1963c35da7 legacy-trunk +28567 38fa74a205ea56d8566f469f5d404a4704450961 legacy-trunk +28568 cc53ddb6424f3b41525f908e73d7ce6d4e957b46 legacy-trunk +28569 0f0016632be49f9f09a050290d4abcf817bf5b36 legacy-trunk +28570 0d92eb63db89ae894b8b0488aa7b1ce8b1b88a7d legacy-trunk +28571 ddad367b80c3d46812da2dc5b8e389d16aa47b40 legacy-trunk +28572 80634ca02dbf9364c2122192f91c30d4c09accd1 legacy-trunk +28573 d446b5151316ea82e78053a015feccbd4eaed3bd legacy-trunk +28574 af6945f33b0860ff10c060024735ebb1b9e2ef51 legacy-trunk +28575 be25d236f286dd4e71aa11d9a72a0a003fa548f8 release22-maint +28576 deb64dfc84166ca515675233b1360c86dc7e2473 release22-maint +28577 65e0f2e395ac83766026bdfefa6ab2e023ebfab7 legacy-trunk +28578 adabdb99ecc4ee746d28cc532f12aa985079b2c2 legacy-trunk +28579 4b154f19d1af2f4f0edc3d3f4c9903e5f8bbeb07 legacy-trunk +28580 0e2366879289e2260ca2930bf855d9f712fd3074 legacy-trunk +28581 4b205e0fb46bc1f86122f67cab6f38eba9409982 legacy-trunk +28582 5c24338f3ae5f422b69b439f731b1e619486cc7f legacy-trunk +28583 10f9888853cc60412bcfbee76c1a84f97bf98422 legacy-trunk +28584 ac741587e66b9234748d6deb4d1c98d926161106 legacy-trunk +28585 5cb8d572b4def01ac3c22d51c2bf4ee661b07e64 legacy-trunk +28586 0c9dfd5a06d4470c0004299ac45b06a411bb678a legacy-trunk +28587 741edd1ca23a8be9bf4d6187f5d11f61a8ff2c2e legacy-trunk +28588 e566af94648ba6632094521c8c407abf043de4e7 legacy-trunk +28589 645dc33cd481240f08597b5d36fddecf7ae61a27 legacy-trunk +28590 bf90fb71aa76d93a3613126cd5c9392ca35990de legacy-trunk +28591 c1ca03ee516e13dc6bdb088ceb6f7be113b3ad6c legacy-trunk +28592 0f0d3474f3f689dfe2137d53f8aac41c69e2f264 legacy-trunk +28593 13a5f32628321257bec7d03bc068d316ebf782f9 legacy-trunk +28594 e1617156f93fdc9a738bf4b2f69ba02063ae65d2 legacy-trunk +28595 c213e9b8002629979e59191fb07ab3a1ddfaabde legacy-trunk +28596 a37cfc1c9716c7a65834f93aa3960bdafa51cfb1 release22-maint +28597 2ac10d932d7f559172b36b989f44ccdf8bb52d0e legacy-trunk +28598 61048ada05bcc9549327d8a5b61263aa7e48ed3d release22-maint +28599 b6bfaa6ca84d054a8189dcb5f700d4974241d23a legacy-trunk +28600 b8b92b3f5b17c6ecf9b790e99bc177a15ce15f33 legacy-trunk +28601 98d8bb2ee4c338481ca1a7a1ae2b1bd62db2175f legacy-trunk +28602 40c3519139de8b6c0203ce926b421b6521cd0c39 legacy-trunk +28603 9ee2fb27d33a72184c87b232dc1e9b20bb4d3df1 release22-maint +28604 13d06e5c8a5c3ef4b9550de625f478d74851e285 legacy-trunk +28605 1c0197f49c59c037765d58a221312016834849d8 legacy-trunk +28606 5a17f0978326009c06a106bff9685ef997da0cd2 legacy-trunk +28607 f4e9f09df4f23983c638b0186522a7bcb39190df legacy-trunk +28608 29efc2d83ade619a0a36c6a2762a2451967e0c57 legacy-trunk +28609 4f4003043b50131ed7dabcd000d1a8953fc7279e legacy-trunk +28610 038711ae13e0e18348a531018b408c4a83170b5e legacy-trunk +28611 bcdb60df4e3efb3308b9e8515b9e4105d6ce6b9e legacy-trunk +28612 3efbd1943b8c1e888cdccf6e3d3a2e65e79e0f0d legacy-trunk +28613 1150560c1003108f2661dcc691462a4f29c062ab release22-maint +28614 24fe2ac5adcc19c98924809d9608c9ca0c8016e3 legacy-trunk +28615 8a6f54b763434076c92e6ff45e456c7170980cda legacy-trunk +28616 4b9844188d04e70d27e0f569502a98cc74c53863 legacy-trunk +28617 18160cb636509cfe4dcf62569cc9a216c9cadd7a legacy-trunk +28618 a0be182631cc3babd2b7444cad6f52d86c283a2a legacy-trunk +28619 46ac365396a49784cb201d9d152fc80e0c8ea783 legacy-trunk +28620 2bf098924ba40952d346bdeff0190246f6b488dc legacy-trunk +28621 f1885b99a39cdac67c6afe0f08b5fa3fa176dc61 legacy-trunk +28622 b3c458e3c280f8fd61d249a2e204d18b773e48b8 legacy-trunk +28623 46e72a708857844b82fa05a018bc4471f9020aa6 legacy-trunk +28624 90960f7f4f3144de1a7b7008bfe856bfab70fec6 legacy-trunk +28625 45df2de34cd39bf7cbe264e7092a1c0463528e0f legacy-trunk +28626 5d207e57d040140ce3b52a76ee2601d723df9d95 legacy-trunk +28627 5508e04d497c68516fadeeb908364cf61eb5058e legacy-trunk +28628 96dd9927e011d8b15a5a43cee992781e473a6f91 legacy-trunk +28629 4b32be6617785d350054b5d4ef98e4cda88a53f4 legacy-trunk +28630 47081a753ecc48264c6d928b17a78e1dc377b2e4 legacy-trunk +28631 64d105dd0823ba9b884a0db2d0d89b532a318a7a release22-maint +28632 8dd6f55fd4b7e7ed9c5a7fa0868e84837322b274 legacy-trunk +28633 c184e4168d14c8e979cf585a3fb190e06f6c8347 legacy-trunk +28634 cbb6cc79d336507545009c6b7bf77c5e5f2ff503 legacy-trunk +28635 27f8354f41b6e72468ef9278a2c1239ff277485f legacy-trunk +28636 afd0030e4c38c60fd9a6658dbdf2626c6dfdf4f2 legacy-trunk +28637 abd625417a5359a05390b8c2fe50dc03b287469f legacy-trunk +28639 2e7fe55c0e11ace76755c59d5fd72a9bc56604a7 legacy-trunk +28640 2d13f9d9813577df5e7f86da90511c8080ec4a43 legacy-trunk +28641 bf75f3a45927ffb30a3530b40f98aed5a960855e legacy-trunk +28642 1e46da1e65226d07ea5103f24bef134a87217ef2 legacy-trunk +28643 2490cf7e68a44ae1ea547ec2bd1df915f3145160 legacy-trunk +28644 9f3ea37dc43cb7858f407e4867982872b80d638b legacy-trunk +28645 76768adb6f2328b2e1e11808c68830f693575bfa legacy-trunk +28646 cbcd73f587ad7a49880bad907935d77d7a3f4b69 release22-maint +28647 12949eced55ff7d9c44f9cafe37deaa546bba244 legacy-trunk +28648 75cd4c203d8f3bdf3475bf44043b6eec1def871e legacy-trunk +28649 5330c0620810e5daaa8a7bc38ef7bf5c17c20fc3 legacy-trunk +28650 0220b0075a35d4985a82c15cbba962e80f877a49 legacy-trunk +28651 951f5f28f2feb33a394bfa1167a031cf969f2b64 legacy-trunk +28652 cdad6b0921d578253115990cabbcb8c42717c815 legacy-trunk +28653 4fd0b76c749eeb61c7b75d934686b0941be65e7e legacy-trunk +28654 8a7a2f1f88f06534c6bd3902c81b7937c5d43ab6 legacy-trunk +28655 ac0e1e931f3900c9ed60a621b6654f199ba917c8 legacy-trunk +28656 40e5b2da9f2843cb2bc38f5872aac554f6f45e0a legacy-trunk +28657 5f5f1c8257844000c5ffc41c71280ff62e8dbdce release22-maint +28658 2b1701cd4566214f66a4dc436efba65c3c2ed2e4 legacy-trunk +28659 e709a3c8bfecc5dfdcbf180231cbbf8c1061b2ec legacy-trunk +28660 23a2bad8d82ce6417ebff0bc38609bcdccc812aa DS_RPC_BRANCH +28661 fd8aa7aed4d51e6cf786eab39a225eca2f1773d3 legacy-trunk +28663 19904750c3657c7573633060f8f3e73fb2579141 legacy-trunk +28664 809c14f1101a95b9063ba7361198da41274c40e0 legacy-trunk +28665 1a7895f97b30d13873ade977295050557c3a0672 legacy-trunk +28666 8775dee60d89a559aac9b7909597fd20eb9e755f legacy-trunk +28667 2970e5e7601ff26be427965d6a60a14db8362577 release22-maint +28668 8fd4e22e78f01c5c872944bc9c1f5ee69442b255 legacy-trunk +28669 aac1ee966f56a4d60a292499a1e6c68ea733a810 legacy-trunk +28670 8d751b62ecc425b4e07ff434574009435ffaa5de legacy-trunk +28671 96b2ffb77b017437e50d4913ad1f33af6f43d523 legacy-trunk +28672 2930faf125ca9f3fd45c153b36dda727aedb58d6 legacy-trunk +28673 7008e53579ebd758ff78f97ead47b2f5d5c68fe4 legacy-trunk +28674 a0f6419cb13fe6acdc5ced0a10275e143e5a9f86 legacy-trunk +28675 778f7221f95511552124723ed4c8bbb58b5573ed legacy-trunk +28676 cc35d7b87852f4188ab9c6a09012a8047daf6b45 legacy-trunk +28677 c8044123d110b6daaa197b19b51c372c2340a9c6 legacy-trunk +28678 0bf968ee15c7654ef77753fd6d1391a3a1a0e2f3 legacy-trunk +28679 1bbedf5481c8bb9d8c804cf4ab3ff75083ea3e34 legacy-trunk +28680 e1ba41dc9784281682ce24167f33381e478bbde1 legacy-trunk +28681 dbf3cc1f4733c5ea9bc45e407fe0457d5427c34f legacy-trunk +28683 1385d179a17ada421141ed8e0e7abf00e645ca17 legacy-trunk +28684 b128e8a11e295ae23e998665a1c3fb8dc0f5599d legacy-trunk +28685 480caf7c0a14e045ec28c01efc9d77f3684a851e legacy-trunk +28686 fc2b73802f7b9d971d85d46e6fdbd5c17615d3f2 legacy-trunk +28687 1dd7e51fe0be7cab6c9b8a460b916e703b0a80fb legacy-trunk +28688 4690ca755bec639fbbbcb6f1be243db3df3c0c4b ast-branch +28689 6b0e846b8d37e54157ae76feeb9b10a426e86237 legacy-trunk +28690 9fcb77b04f97fb30970ace527e8442751be48fed release22-maint +28691 6eb8db53f7fcac480a0415305e19d1741e649351 ast-branch +28692 e205c7de5a5a454a3c37112d3975b96fe908131c DS_RPC_BRANCH +28694 29559e21cd530493fb45cdadfa905ab275e17727 legacy-trunk +28695 1bd089b1db7fdaac95b60ad76d36966a8208c17a legacy-trunk +28696 3db03c0d15310aa4c17971c32689647b3688a3e9 legacy-trunk +28697 e57e4bb532bab4890216f5f96f459aa19b89f089 legacy-trunk +28698 04a541e6896442a61666ff8ece847afd48ec4c03 legacy-trunk +28699 ad6528691c309aa8792eadb64ef0a6e21759f74c legacy-trunk +28700 0ec4753ccb0fb62e15434b84607ebef84a8eae05 legacy-trunk +28701 5272b763c29c9ba7f4fc2b009bb6fa5970a77432 legacy-trunk +28702 6158fca5bcbf22a9f61815a2c032f67dca6498ee legacy-trunk +28703 4b6185128814c143cc918b08b198ef6aa9dd6c9b legacy-trunk +28704 fda48dd94b0704931e52ae2dd7a86c3aa264c3ed legacy-trunk +28705 73429ca748cebbae2e49d9fe08f9e294dadacdee legacy-trunk +28706 e9a63e483109ce8c9b5950eca4cae16d216f649e legacy-trunk +28707 85d81e09e2f7d7954a2a46865d654c1454ed50b4 legacy-trunk +28708 6ec1546840ae662ff85af8a3699d100d99cc61a6 legacy-trunk +28709 a03f77869b2f549602f1daf5f29978ef230bb19d legacy-trunk +28711 973f5ff207cc58a5b952d819793c57d32061d939 legacy-trunk +28712 5ea82cb556823d5bc8a10175a6b60749ae826b8a legacy-trunk +28713 854dd7696eb2beaca27cf57483afbe88c4759224 legacy-trunk +28714 57d3b96651b6ec863508479d798bc7968fe80cc6 legacy-trunk +28715 8ce4ba85396919d1f24f298ed534a00b1c5f91cf legacy-trunk +28716 c6de68cc8e2bbce970c3d37ed494498dc24db438 py-cvs-vendor-branch +28717 93e254577cfa531b988d8fa283ba79a20b040df7 py-cvs-vendor-branch +28719 98e12aa8c5475f57b4327921d0d4a965e69720ed legacy-trunk +28720 fb00fd93188a7659f83dafcedf8e1eb72d8311a8 release22-maint +28721 c772640d535e04418a74fed23924bf41e2481446 release21-maint +28722 6c21e95a48817756d6ad0e1719a9d9d09beee061 legacy-trunk +28723 9b8924bd5b5ccddd14a66ce1370dcb4bb42d5912 legacy-trunk +28724 f3d88ee05928d5061c0df4147af476e620288047 legacy-trunk +28725 4692c487ee911eac58dcac5eb50b623793552edd legacy-trunk +28726 1bbf8e55a8bb9b0ee445c949ca6a70856eca050f legacy-trunk +28727 aec0f944f6a01761f303a44031db74ce55ced57b legacy-trunk +28728 609f3d31d1c24a73088f5c35f47ec0f7fbc4bef9 legacy-trunk +28729 cd70c8803eb5c0d0a4abab4d2bffcafa5baea11d legacy-trunk +28730 c97a4ce3c58edabe6871878d709ec060a5df94f9 legacy-trunk +28731 4d6f8204234a8d69ced2a35c30ebc9cf413fefad legacy-trunk +28732 b64fc6a1049e9b7157f9fc71d39640a4b692b121 legacy-trunk +28733 c45564768f526edf9a6be1928cdddf9b88c3f220 legacy-trunk +28734 055f7fae81509134fe39ec1ac6b41af0fb7628c6 legacy-trunk +28735 752f6895cc630a8ff4db7afb08387cc958d31a38 legacy-trunk +28736 f5ec08d458592874c49dec2831b75c63931c9a87 legacy-trunk +28737 da4e5e46ae3fb9ed6981bb08abe5d1c3a661e31f legacy-trunk +28738 6777811961526077fa8dbe7994257a2c2fc07096 legacy-trunk +28739 61c2506ec2e8ea4d0cf9d53554a24c2fc4aa83f5 legacy-trunk +28740 dbf92c55fbb8b78922c641b6e3e5e210d5498048 legacy-trunk +28741 40149b50020cbb686ec7784558f73ff52f68c0e8 legacy-trunk +28742 1b0ea47279c68ad8f40d40fa235135a5e2b1a187 legacy-trunk +28743 7be26544be4e35e4fe5bc7e7d541db603e6f467a legacy-trunk +28744 c670945c869522889c205898c360bf016eb8b57d legacy-trunk +28745 22d198910b208a60674266cc212675ab10064447 legacy-trunk +28746 1c7ee23dc49e1698ae79505c760c5d392c9be2b6 legacy-trunk +28747 efe639151bfec5be21af52106291039395101cc2 legacy-trunk +28748 eb28dcddd34dbbc26e7e20f9651bbaa0455ccf51 legacy-trunk +28749 df03fcc66104361838735353014c3116bb32dc7c legacy-trunk +28750 71779b839e09874d9ba4939775a00315af5eb2a7 legacy-trunk +28751 0399c8aea7b2861d17d82f1b99cf79b379693191 legacy-trunk +28752 bd6510c5cabc47d95f5f6ff0943ccb71530f2b94 legacy-trunk +28753 468c3be6c3e2cd12489aebd12677a53300059752 legacy-trunk +28754 abb768b417a1330d6f43edd68467b8f5cbd95430 legacy-trunk +28755 86ff95b1c636d5e159e0b458f9fa6c300b6ae1b1 legacy-trunk +28756 eb7b7b719ee5649de93644e522c35d87d371f383 legacy-trunk +28757 bd3b92dc940a649ec7ef0d2d1a166b76584cf3cb legacy-trunk +28758 8eda166b104eca904da2d861139a79e76018ac7e legacy-trunk +28759 92a3d897e8193ed238d34f166700218b64f534e0 legacy-trunk +28760 53e2c448b169a32752401aa6d81b133e4ab3c68e legacy-trunk +28761 b968f038235ea1a55134e8177ccca1e943a6ba7a legacy-trunk +28762 df0ff5b17e1aa15ddb9d8076a0305dd312d2bde3 legacy-trunk +28763 e9e74cc5540ad8ba0f1b3de28ac2859f8abf1803 legacy-trunk +28764 bdc3def3d085ddad1fb8a9e3b982cc5e88ee0df2 legacy-trunk +28765 823f02a22210d8a6a4ada7427040eef73de12cce legacy-trunk +28766 14ad560f4a97f81b69f5fd6a9d6675cba19bbe01 legacy-trunk +28767 f1758272764c70c5293050020d0bc091c4b8d939 legacy-trunk +28768 7de88cf0783e2cc3c22d56c7da8ebab1db11df6d legacy-trunk +28770 9c7a06ac8b2772e941cd42f0f0503bd439aa807d legacy-trunk +28771 24e789b6ccb6416d043f64c9af2e24982c555783 legacy-trunk +28772 6b62ab8485eb819647cc4716b5b5419e76fe64eb legacy-trunk +28773 0739046a0c3a514834dfb2ab927b534b592243e0 legacy-trunk +28774 337fcc24985b344ab6b8838c37de588dae436d19 legacy-trunk +28775 a3b295918c5fd5a53cf10ac624d6b20aa7bd2179 legacy-trunk +28776 33b249af4364dc84b8ae21cf5444e6e7fe4ade30 legacy-trunk +28777 9c954e64d17a94a0b1430edaa568cb0d9ba57db6 legacy-trunk +28778 a302308819f05da879177359fcdfffdd7e817193 legacy-trunk +28779 2f44a90fff077eeafb7c2c9629a2f468f803691a legacy-trunk +28780 2ae2a203f47ac2a6ea59f520ba98788d47c1898f legacy-trunk +28781 9f61710628c4f295bb516d533c1ded490a24a9ae legacy-trunk +28782 2c3b5397c3f9ec116896ab8f0be2eef47ed70512 legacy-trunk +28783 bd24c2598a429d76f1510b8790eccc077fb79bd8 release22-maint +28784 b529ac2f9ab64b90bd0153adb93284e91b7e5f9c legacy-trunk +28785 49a3ebe9df14766553a111e7f45da31a3e975abf release22-maint +28786 6ea8987c746fb55e76940e91e0c73752de1763d5 release22-maint +28787 27ff694c8c050b45f1a97c994037bd85ccfa8178 legacy-trunk +28788 3aeca6c50f3800cae8b529ebff8acefe6c318407 release22-maint +28789 802583f88ae0d825929ffd1a5a01cbfb3f38ca29 legacy-trunk +28790 c8cb8979062ce7d616b461a051bd925ccac953eb legacy-trunk +28791 0eb882068a7cee36bf1c929b20369694f9a0a03f legacy-trunk +28792 86620afb22124bdb15d88a0a4b641ca03db82f95 legacy-trunk +28793 6dec74f4424209df3a8959a90d801ff2de95144e legacy-trunk +28794 37fc6a83a134ea72d95d604a640f48481cd40c08 release22-maint +28795 586fa24459824732b45cdcad49841b43be5f611d release22-maint +28796 c43c428390118e15438cd20c12937aca5c4ff717 release22-maint +28797 e7db1c9a10fcb87112286f8eaa860031e0168b8d release22-maint +28798 033adcbb4cb2a744a9b342574aa5fa5cd65e9539 legacy-trunk +28799 2ba80a4312ff50207b523b776559fb7533bee38e release22-maint +28800 85ab4650dfaa6a4312fc7c59689bffb21b8355d8 release22-maint +28801 96e2effec94d1bea590a637044769f7e5d97f62a release22-maint +28802 988f425d17665e7dcce5020fb94215817d439981 release22-maint +28803 46170e560e01e18c7d2a83934d015f8791d6a249 release22-maint +28804 1f9e9798302bffc0b171b8aab84012877acb1dca release22-maint +28805 0fbb76b5074b7e91ff4ccdb2b4d350ebfe152a9a release22-maint +28806 3f5041295448c86be5b9b0678c889833f52eb7ab release22-maint +28807 5255b45fddc259ab78b1d82d9dfff923daf273ff legacy-trunk +28808 f3c3e732d12e694be1ccf4502be3c3777decfbe1 legacy-trunk +28809 52420fe67c9690047da3c8097911825ee345ae3f legacy-trunk +28810 c6312360c86171fdca9ed227d0ef0736177f896c release22-maint +28811 37d88b42ed11a8a092379dc8c32f6e27f16a261f release22-maint +28812 6513466bb7747a0734f9ffc7a275cb2b8667eaab release22-maint +28813 0b68d810a8becf2b87798c42014463d93cad732b release22-maint +28814 9dd21c1fad9a400703009114d0978d98a267df9d release22-maint +28815 786e0e9a5f7f92827e2d57dce1eeb0c1aa857900 release22-maint +28816 116b0858d4b0bdb0244df4da32a113383a21fd7d release22-maint +28817 651abcf63fe13d3e26f08838870cc160820860a2 release22-maint +28818 2bfe44c4dacbf378d4285966e002fc78df2d9a22 release22-maint +28819 caa3a2fc6a208659db158203814184a7eb656ace legacy-trunk +28820 c066dc3ea1521698e6c0cbba435dacce5da69345 release22-maint +28821 e84d324ac66a48865c48fc22f878b8979e41bbb1 release22-maint +28822 4df0e691f4dae86b07ceed25338fff1f58cbdd13 legacy-trunk +28823 2dcbbbb007c2ab77c0dee99ad59f6c0cba4914b1 release22-maint +28824 4d10c3179ead0f562813605ec3b328a7f3763bdf release22-maint +28825 fbc820d701bca98cbc404fffaa50493b833175d8 release22-maint +28826 5e4e8c1ab704001312e07921a0a0f4137b260136 release22-maint +28827 4df807adff873d50b13aa3c9be37b480ba5c61c9 release22-maint +28828 10767a8c2e2d65cd9e35b21b02419fa31e155094 release22-maint +28829 0c44fa04f5335efdd8e3302f8fd1ea3b42ad2430 release22-maint +28830 e53787b1ad8581806c25ea6ac4ab898a10082880 release22-maint +28831 725f87597ad9e27cc478b1ee251d68a340d7f85c release22-maint +28832 e8891e6952eb6015cc06008fdc7b707e7fc686b7 release22-maint +28833 462c35b9ac1fa4a4625c01e7a93c866a43a04362 release22-maint +28834 80ce384d408a6f9e946e39b2915ea137d5caca79 release22-maint +28835 911107829903b8ae30b72307d5938417a5da9627 legacy-trunk +28836 e5e057a6d281f315fd2a709461d2e1a6f0fcc03d release22-maint +28837 de21e93badf6365833c6f793ea4e6ba8026cf1f9 release22-maint +28838 7929d7566a9428919780149a9bf48a656729bcfa release22-maint +28839 bb2033c8b92fddc419e3f19b27d086d7c4cec64e release22-maint +28840 f559e97a41be4d0b46d97af1e758ecf466cd94e2 legacy-trunk +28841 30bf55491e79edd9698ad38c9a43b25f1582716c release22-maint +28842 9ca609f8bdf22617c4786cde733063c0ba7b6b19 legacy-trunk +28843 88d0f6d6b03ec1ba59f0b203143ca4d52e1ee1da release22-maint +28844 b46c7da06410e71f97c49773a2de7f337707f454 release22-maint +28845 dc31668a7c09dcbb1572793de3ccaf0e927b3dfc legacy-trunk +28846 97424b99df91c58f2151635017123252120c1729 legacy-trunk +28847 d4ff9841417ae06f252f39ee326cff38cb39875f legacy-trunk +28848 0226f1656d8151f78afd9348b8ff67224a8f3d1c release22-maint +28849 710354833bd198098f566ae450fe4d85199f00b3 release22-maint +28850 51cdf470f974409f5b017bbf1e6ad3b42cc20f2e release22-maint +28851 75c4a67dcb8c360321abb51fc6b42850c99f6288 legacy-trunk +28852 410f6eabbc0b8844a0a1f20ff4c1ccaaa8d87906 release22-maint +28853 6fc0b716c0389a08d371e242f09447c4b192d666 release22-maint +28854 40801df859121a4e60a0978f641824746dc88bee release22-maint +28855 b48a236b8c7b77d810ba805b464b34bb493c20cf legacy-trunk +28856 d935a1d70230b918fe62e9f088885225191bdb41 legacy-trunk +28857 4d7e9e40d3e4ac98271fd2f4fe6d230c26de2b5b release22-maint +28858 d2dbea17fc6fe8c0d06983f9d1956404b1162807 legacy-trunk +28859 94315a97b39e66ecc5c1502e53418d2deeec761a release22-maint +28860 7d0c4d7e0a8c7191d2b898e66dc70cea72f14c66 release22-maint +28861 45a214f1bf0b454aff93c87709aa2105c996dc37 release22-maint +28862 832084a3028096c37e0eef78f5f2a9a591fc87f5 legacy-trunk +28863 048968ca2668d42352250520b5d7d577a7bcc2fc release22-maint +28864 253e397df67b1e3743f91ce693f407ea3048deb2 legacy-trunk +28865 0a095a257424500392dcdcaf74e3f76ffc800211 release22-maint +28866 1849e23552dfbc1e16a9c38feef94c0dfe46da6b legacy-trunk +28867 56cb92dbbaafc05bdeec1034353db36e61894bd0 legacy-trunk +28868 aa3048ebd19a0a5a6d84908f3a1844336bac8f67 release22-maint +28869 f749d50dccdc5ebfe5049a92a413b5c37efbf0f0 release22-maint +28870 91b4f7abeba8d552cb22b9b0fe0aeb4dee5b5daa release22-maint +28871 fb0f7cc5a69f6bf4a56fa897cd83a2ba0380fc02 legacy-trunk +28872 6237be27a59735bf6e70216e0e94fbcac7467b14 legacy-trunk +28873 554f975073a0380ef71895c6ba8b8d7d3202b59c release22-maint +28874 29f6160ec0bd93c809a434ec224bd3f13c420bfc legacy-trunk +28875 fe6211bf90bb8f5498d696e27201fd9dbb4d8560 release22-maint +28876 c6f3072d595d54f5131276acd686a93609eef58d legacy-trunk +28877 eb252b374ecfc85e6b772edeb2589182bbf7ffa0 release22-maint +28878 1f9b3cb66e098e03c4daa22febf87e5e9ad3c7cc legacy-trunk +28879 11088c53467a1768d6ab9b446d22883eaa9795c1 release22-maint +28880 72d56b4460cb9df3ca519d7513100accb4bee4af legacy-trunk +28881 b62514c217629e203e43a6ce6fb3e2be3bedf3eb legacy-trunk +28882 3c3b8946dc63c5db6928a5cc767105b70b922483 legacy-trunk +28883 0c779492cd8077889f93571f2de9dc6a7cfd6400 release22-maint +28884 854534c607a16cd4dfa9405b5360330169af7df2 legacy-trunk +28885 dfb74d61183d737890209fc3dac056d591584d3e release22-maint +28886 cd837ecb1d70953e5a5aa868aecb298de9a0ff4f release22-maint +28887 bde0d2626b205dcb38651a48fe2992f9968bf6d3 release22-maint +28888 d32588c8863329468cc4f6d99758cbd5e9903c44 legacy-trunk +28889 898304f6da23b5c9715c5c0fbca67a005151f89b release22-maint +28890 b6112327124b46a2741ee05ef5d46694fe71b8b4 legacy-trunk +28891 aa31c68da84df6f28d77edef8b2e7d674d567c6d release22-maint +28892 db5f1db7b34e18c4ba6b57f7e305f6727ef24cd8 legacy-trunk +28893 9ba0111388318a4c3bf0bef684f655ac048505a8 release22-maint +28894 e8cdea44f7abcec6a1583658d4215882b1c74e2f legacy-trunk +28895 6a2df44b8bfd496fae0751e9b0f03b9c472caec0 legacy-trunk +28896 7cd6f5490758c63b616830769f5d61c7b339fb23 legacy-trunk +28897 f8180a74b0fa5c6ec75b5d63402f8d77587ff2bd release22-maint +28898 05ffe201e902d80f88703a03a7b32277cb368293 release22-maint +28899 2eb4eed538c6d3efd5da2c5f501dfc1b3e82e8dc legacy-trunk +28900 d0aad519e7130da3d0122bc23d2b2b7c419251d6 release22-maint +28901 4d367872fcc665bfc24fe6ac19e953fff99dcb6a legacy-trunk +28902 76ccd5bf9ff2629fe43b154452d63ce05ec650d6 release22-maint +28903 41eb24b747c02cdcf5a902b0ec6028fe5486d0d4 legacy-trunk +28904 dcafd99c85b68a88307391294510a828ab55e8ad legacy-trunk +28905 a77254cbd4f06b1e825b95a5abb9606dc5725f4d release22-maint +28906 d07f8db3db41e4b949782a60cbd3733381535d66 legacy-trunk +28907 b5a9aac4b10fff783c944e88e823e04ec7871823 legacy-trunk +28908 09551c6da299f818cb9fdff71d2b86bc184be2a6 legacy-trunk +28909 16e66197093070c8876b6ee795960f50850267a0 legacy-trunk +28910 1d91edfd75f2b45d6e4e89c3ae7dfae64f127155 release22-maint +28911 4da8a4de07c233d07b3dc07f00456194a2d361d5 ast-branch +28912 2830f961429405fccae781575e709080164c85db ast-branch +28913 d8f4980b965ceba01a92489a32d9a2025f98b8bb ast-branch +28914 dff48c417980214de5b61283dab6df942c7da0e9 legacy-trunk +28915 96960d6739e0972c9ef0fe9a9c23c9151387d1c3 legacy-trunk +28916 1f2b1e68485036b8343d8864c7915bdb08ae4b4c legacy-trunk +28917 7843b53009d069229ec8e637ade78a53948a8844 legacy-trunk +28918 b686ddb25c69b4b661ee30dd47bfd9962bd24a6e legacy-trunk +28919 55f090b38b88d38f3383f6da7f9df9a590f35d0c legacy-trunk +28920 0fbbe79b4edb5b0a4ebd5913cdf48c2245e2edf4 legacy-trunk +28921 18e679be21193689a7d632f62c4249796efa89b2 legacy-trunk +28922 8a6eeb0c7934144e6e6bee7417f6871808fa79fc legacy-trunk +28923 2a763e7b7debd07dcc5bdac4756513c47e3348cf legacy-trunk +28924 25654b811616b0f057ae90ef1c63bf67725ed908 legacy-trunk +28925 57ec1643188c9031fca65ceeb8aa53a837b9df9f legacy-trunk +28926 e2f65a49ca343e1915e6f672875f14e3631c3211 legacy-trunk +28927 7d269bc12587dd573731e1265a6c990736ecd71b legacy-trunk +28928 8c95486301b3f749c6cc58c89a50ff6c6a2ca512 legacy-trunk +28929 bbf8cf5ee9f942284eb693dc391067e9db0f1766 legacy-trunk +28930 9d50bc831bca04c6b6b916cf4c3c3484ad241dd2 legacy-trunk +28931 21444bdcb09c04891d0687efe69c19737d67924e legacy-trunk +28932 80f67385f599dc1733a179d9185b209911acb2cb release22-maint +28933 fc534d1c9c283967a1a91875c2dc5c0571d9ad11 release22-maint +28934 cac1b034b90376ba9dbcf38eea0681d32360a4f1 release22-maint +28935 e4752f316053fa368bfa0c98e0360ef0c928c3aa release22-maint +28936 ce7bbf3d9493521328620140361b1e85d3b68491 legacy-trunk +28937 877a3914df224384c69407d0cacb7073b56b1aa8 release22-maint +28938 766bfc93ecba66b6d66d26438083f96764ca3b7b release22-maint +28939 75b08e6e97c60d6eb1ede79fe1327a29949bf0d6 release22-maint +28940 20d7a545590783b477637d9b5ba732024e8d48c8 legacy-trunk +28941 6d58715430a7bb8044d5fbcad6e39da2534f53bc legacy-trunk +28942 2ac7b0964c7ba9767339ac1a20abee214e77b33d legacy-trunk +28943 4e05aab60bdfaa5fc7c4a19133f3eb456fc92a41 legacy-trunk +28944 c3eeaafe6265e3b45b48c80397f78b910ff35106 legacy-trunk +28945 5f5fd2c4fcf227e8a370ac10b10aae8731d829f9 release22-maint +28946 d0e574326d18b3b38bac2f234aa2448bf397c8be release22-maint +28947 b526e12b941b7fdb6ea11e3ea0df04e2b00210f7 legacy-trunk +28948 c573848c75c332aba9b7c20139f2f6fe9e1d03cf legacy-trunk +28949 0aa64eebd4932cf9c65316d1aa71db2394e28835 legacy-trunk +28950 dea619b5882d0c9645ecf7ffb3534704faf70881 ast-branch +28951 195833a3f10daf0d2b723d1a9720f86838532822 ast-branch +28952 c4628d9acc9a1570d504dad8e910462b5ccd3bcc legacy-trunk +28953 db9fee373b303b00db8ec99aabf4684c0b1d2a0a legacy-trunk +28954 7429f22473cc7c04c43d963863fc87fbaee933d9 ast-branch +28955 56dd86b4cb8777e17f355b392ac8a244ddbe2bcc legacy-trunk +28956 2c98eb1c3162d8fddd571a849ca150d429f2a51a ast-branch +28957 27f835519a5e7debe87e379619f5ae75eaa29d75 legacy-trunk +28958 9167490b0de94bc230c5dadf9d6e5e876b0e898d legacy-trunk +28959 2bc2e02fd6dd12db45ee244bf26d0d95872bf5c9 ast-branch +28960 45577e1856d0e938649cfd424aafa6da4b6b0344 ast-branch +28961 7fd2da201823d1ce7ddc56093d030b3bfeb8e1b4 ast-branch +28962 24c5a1c87f3bf1229e506f87593d4c1b13855957 legacy-trunk +28963 6694f0ccf8ea4be75674f15720bc3462e6004f6a legacy-trunk +28964 bc0978459ffb780cf3836d47d744a5f5f6373f8a legacy-trunk +28965 b3a98eea34c841c23f8c7364eacbf0b04acd5223 legacy-trunk +28966 2d80bf65cd0979d902a437ca42a87a3fbb54dcfe legacy-trunk +28967 e1a732885be096158e6f4f50fd890e24d5a9bc86 legacy-trunk +28968 d1b6b2ca9d9b851d2364922cc00c38bd48c6be4d legacy-trunk +28969 d124fb08777855dff2a7578d291c8866bd7674e9 legacy-trunk +28970 bd04e2bd437fc5d39dd2e62740a38e971ebbd810 legacy-trunk +28971 59f82d96682e9a8085dc4dd7e10df83156f1bf5c legacy-trunk +28972 377d64cb53470b06629bedda138094357b314b31 legacy-trunk +28973 d722bb5205ad7029ddb16f5052c0c815fa1bccb7 legacy-trunk +28974 40594ef34b309c4ede3114c870dbe42a1099878e legacy-trunk +28975 ae2f234882b216863e247911520484edfacb01b5 legacy-trunk +28976 a3647d11cb71347909a95ed10ee24eca46084e48 legacy-trunk +28977 58bfa7ddc999ac9642ef8fa6682b26816dd438a0 legacy-trunk +28978 b5d05f10d0a5bc2c348913f2feabc12d0e555e0b legacy-trunk +28979 1ea6e3547610380f88060e1c9030eb8cb3f61c9a legacy-trunk +28980 30ee99a8b0ae35a9b8cb1f7322e0bebbadf61c3f legacy-trunk +28981 c12a4f7a00b74af19f510b56e7ac54a670ed64b4 legacy-trunk +28982 2e140700fb6c0c53baf4011ceb6c951ac3652555 legacy-trunk +28983 d7bba7eb0ead0c713f1274d5d8e5edae01835f62 legacy-trunk +28985 5420969ddd70ba85bb2aa451e8e7318e2838855e legacy-trunk +28986 636c0f8b39879368944b27ad44398928d2029a11 legacy-trunk +28987 195d2f2576e42ca486da3ec6fc14f1578adbd4c2 legacy-trunk +28988 115736dded7d08ce48a6af5e569a5c7f9a13cb81 ast-branch +28989 b9233ecd9d41947323f701bc10fd1772e9eb7b5f ast-branch +28990 70d93b62370b7bba94952ad11b56fda48d13d8a6 legacy-trunk +28991 b96b8264d6ad2ffd9e2183e8ad45079931966620 ast-branch +28992 9e815f2c0e84f03749f921463882e3bc6b9a18db ast-branch +28993 1094c6e0365e5b0570ca852c2292e5ca72fdef28 ast-branch +28994 fe95cfc6eba7dc34d5595c8703c64815c6fb2501 ast-branch +28995 8e4cabb2e003d29b9a9dc64a8e32e2d6a9871946 release22-maint +28996 ca01f4b85853e44b36f424c13a436945dc68894d legacy-trunk +28997 75e5a2a717295ac209d4526b7e9073790dd21a29 release22-maint +28998 08148e916d3851f28b7e799f7efea5f277b2e5cd legacy-trunk +28999 8610652564870a830b97cb4dc80e40deaeb86c96 legacy-trunk +29000 93ef745555d7c0b52245c32a0f471672b8c441a7 legacy-trunk +29001 61d624f5c107a7e87735c079636b0e803e8eade7 legacy-trunk +29002 2c0e0f0dca6f512f45df22bb6228a9a7ce2515ab legacy-trunk +29003 5fe07cd4b2bfd711452148672274c47504251deb legacy-trunk +29004 2dc0da5372b4702be55f2540887dd28b0d1e1dcb release22-maint +29005 47aa9fc74da8cf530fa0c4daf3a8e8526a255b61 release22-maint +29006 98e58d3c5fcfa489fdcb407688d37c836e2ff6b8 legacy-trunk +29007 dfeec3b34faec2455d4059cefc4d3e417d6e2264 legacy-trunk +29008 2fa559fb6ec52299b87171e9b8f1e14dcd83b828 legacy-trunk +29009 3731be28e1a3264c894d2b5adcabceff8a27ea3e legacy-trunk +29010 c7b9da859b55f836518cb4a4107b31ee37bf4837 legacy-trunk +29011 61822d2b5e886a75e4756654e097e428541e2bd1 release22-maint +29012 0ed82947571748d006c7a9daff0bf27604430f61 legacy-trunk +29013 0e928807536c16a21338d0487733a41e637e2e1b legacy-trunk +29014 1da5e17bfe63a208134ddd38055e57ed55666061 legacy-trunk +29015 41e1d8c224df2e3aae7815828e1927f909998e71 legacy-trunk +29016 555234d4f0d00914c68cfa5857e80fdaaf8647c0 legacy-trunk +29017 f61d1d2b9ce3b22da4a62b2da4e95b93e6f7d829 release22-maint +29018 36124157b317adbab835fb6398188d6a88eee0a4 legacy-trunk +29019 488295d1ba11eb2167444ceaae54912c1eb667c9 release22-maint +29020 8cb0740da1fd5992ebea0757b5f8ccc4d5c874a8 legacy-trunk +29021 fc7029081093068f473fb2aef6406601b601f4ab legacy-trunk +29022 14c4c833cda9ca4e4edd71f1b7bb6779f9a99c1e release22-maint +29023 13fb4d16f6042bae0230e017967823f7d3c106d5 release22-maint +29024 fb0ce77a318abd3840e54086a2ccf8c29375788e release22-maint +29025 0705ca29ab966fd132c7020690881303e77171aa release22-maint +29026 44447f315ae9115d9d4d1dca3565830c359c708f release22-maint +29027 779bb6ddde4b8b242460f7569ecf62478735d12e legacy-trunk +29028 6dcd0664b09e2cd92456c24dd52eb141cc9076ff release22-maint +29029 d0728b4b07c33b17d6f40ec275e158650b5b090d release22-maint +29030 b19902ad185fbd8b38db2445e321f841a64dd875 legacy-trunk +29031 b11bc214e4f2f76d99fb90b1475331e8dfb74712 legacy-trunk +29032 c42c988b2b99ca90a2fac4084e687df78958ff99 release22-maint +29033 aae8b94385d6b58a9ba52dbf20b4283ee0942e71 legacy-trunk +29034 de370e6503df68a23ea83c27ab101d01cfa7dac6 legacy-trunk +29035 c85d7cdd983f32856b2a901f4746a33f4b0991e7 legacy-trunk +29036 43671e0116d52f053812cf01e6c66a5fc4528dd9 legacy-trunk +29037 0231cc54f87eac4844aa67fb8df7e6d24089267f legacy-trunk +29038 824162eb7977370ff038580db1b5a9c54a252f82 release22-maint +29039 c5a81c3bdadabc57861ed0d77bd4c6ee0198dfd4 release22-maint +29040 405a5b4f453bec4705e21bc965221c21b1182ec5 release22-maint +29041 6cca614b5e033a796feccc83dff325ab2389d46c release22-maint +29042 100daa36198dd858e388bf54323e4213b285484c release22-maint +29043 83f64c04f002690f27c2c24d2b02bf3ba8757dc9 release22-maint +29044 3679c4fc68bc04866e9a61ecc4fca397dc511b31 legacy-trunk +29045 276b6c4529994ce35ab66db5ca7223c0bb862f0a release22-maint +29046 d49f164e6a974d74f0efd164351542fc8393954f release22-maint +29047 c1a6f44e2534d83b8fc4d8f69d91b5109a0f21c3 release22-maint +29048 a52695b71e7dab5cbfc753735362aa810d5f154b release22-maint +29049 dae2282bc76b42727d1cd8fb30b9cd65aa65dcbb release22-maint +29050 b287bdacde39faf36c024cb83fe57636627355fe release22-maint +29051 6003991731a9906c8ccc9284e356b58a858024c9 release22-maint +29052 2347f901843153d934ebfe43b388fb983be45fff release22-maint +29053 4492d77327c5ee09f73c07acf3a635f4490fbd04 legacy-trunk +29054 2911eb377266d975a9889014a32575019053ebe9 release22-maint +29055 b3256487aee8886364dfaf2f9e79cf8f9b0eb398 release22-maint +29056 774771c50b187cf6310ff6ca5651583a69e4bebc legacy-trunk +29057 2a942a1c42e849fdc54b7f9afff71cb8b13cec33 release22-maint +29058 fed7c41caaaef55321ec2a66a242faa4c43ef58b release22-maint +29059 c62fb63dcfd1b53d1792d70914bd02d736f14831 release22-maint +29060 6b1d4643a0fd50e808496ecc5d9c373ffb6c5007 release22-maint +29061 e84e08372efa1ec5053aa1aa80e63260344b9623 release22-maint +29062 523fd890359878adebd5fa7e424411d4927acf4a release22-maint +29063 1e359dcb4fb3b72244f87ce505992b2cc27abf58 release22-maint +29064 3938e9a096894c6c866ae44c8d526a19f6d1ed77 release22-maint +29065 86f66061003c06cb97437e04fe313f7adf0cf91e release22-maint +29066 ad37b93e7a2e6f134124de01d0370d88fd4a7701 release22-maint +29067 a67b9a195265b5eb0e41dd4546f4d51e23a49804 release22-maint +29068 a6edc1b3fd56616c46b33f054a31f04083004bf8 release22-maint +29069 c1f7af42a7f1767934c7a69a99675313032bc9c1 release22-maint +29070 1b8697d60568c47b74b4407958034fceeb4d2fb5 release22-maint +29071 1daeabb3624430ee22c7241f88708bcb455ab162 legacy-trunk +29072 977fa135906d1a14b845b8efb8f4047083945a07 release22-maint +29073 288c1ffd606eabbf5b4d5c90f3c9530245f93cb7 release22-maint +29074 f37a34c256c4b043e31a2cae53129ea60fb04811 release22-maint +29075 f9906e6261c5f0d4718dd1f7cd61b4d0118d1384 legacy-trunk +29076 3eee72931d1783e50ea990e338f1b13d93fa6282 legacy-trunk +29077 f3e70cc26422d0d139510980b35e580015f35cbd release22-maint +29078 c4c093e23c6dd1c80587950fe79f662120fe08d0 release22-maint +29079 38a1e56b9bf352495aa34e16c9a09800e0d6edc4 legacy-trunk +29080 6379a5514065c956c125da57307b6a2f907caa91 release22-maint +29081 5f2c6ac215c7995edd794b16cf28dfcf87c4c980 legacy-trunk +29082 b5dec0a554b380ffc27d45c14f723a639844b6bb release22-maint +29083 df276b73fe4b579480cdd22be2f45416e2c2d8e0 release22-maint +29084 2dcde90391aae34758aed02e19d56cb9c7437396 release22-maint +29085 87daa565442db8018a8dfba9200fc8b1fcda0dc1 release22-maint +29086 a0005d26773d02c1053efa731856fbf7cd53ed96 release22-maint +29087 b98f85dc2d881558b113463e5efe18fad6912e41 release22-maint +29088 8a759733676fba9aae6b633ddecdaf62ce9c28ab release22-maint +29089 4bb918ea64d1e2bc5dbb0c9afa01e515f468b91c release22-maint +29090 f867ca6c7d698e5ebf21e695d3d59c46a474c923 release22-maint +29091 3b60952043cd05093d55378efcd16e136ea223d9 legacy-trunk +29092 5bb2c057fd40b88a2dd6c7c735fd06127ed85022 legacy-trunk +29093 446b835fc19b2cfed79380b7e8fe83cd48a5ca1f release22-maint +29094 25d1f4f91487e0dabc7723786668b17c81207fed legacy-trunk +29095 85062a12c24f8fb4544796a338b78fc85a90d88b release22-maint +29096 4ca32e4f78393a27ae806e647bb09e7ea7436051 release22-maint +29097 efa9a86464d342cf1e63a0d588091024806ec1a9 release22-maint +29098 85539279094d15e711585fe2893c24c40d4c8408 release22-maint +29099 a94f272e600d90994c245e44cd5fd7d0dd1c5218 release22-maint +29100 eb849973b9418de368e0532a3acac5a4bfe9c071 release22-maint +29101 42139abfdbe5beb5d63e11f3c3ec06acc0089089 release22-maint +29102 29d40eae8736b3f3bcffba7396b7e13fb88cccff release22-maint +29103 0e6f0a22c6a923c85f37f01a7d0039070fd71775 release22-maint +29104 5cf33db550d75cebc8f9a9d23626661d5e578fb5 release22-maint +29105 13438586daa6373cdb4c164e96f0f7b1589f02b4 legacy-trunk +29106 bf28d0f78bd5b29b436a3c676d807364b6e4a955 release22-maint +29107 5c6fac95a94b4fcc965a1d3364d4930aaf1bbc9a legacy-trunk +29108 199f0f6a8a363206d7493547877b7f4dd65ff2a3 release22-maint +29109 88c1c4d789166dce33dd628fc02c84a5373d3c5c release22-maint +29110 33bd6445b7e9394c367dd7a173fb069c8248dbdc legacy-trunk +29111 e21847531674384c44203c14cfc7ec80e36594cd release22-maint +29112 15ee299d39e671d920c818af5adfea8c4b242036 release22-maint +29113 5d8bb00fee1899c76a9e56953cbc54b6e056222d release22-maint +29114 49927b6b5f40fa43e5a1a341f92b4766d1738a05 release22-maint +29115 3fa544a3c5edaaed7ef6091dd0e92b2e868ddfb6 release22-maint +29116 1157c400316b1e6c96c435201939211fe9baa82a legacy-trunk +29117 2103846eef73af5489f786539bb45bdc2c218615 legacy-trunk +29118 c58041e6a79974e4c8cb48bf389e577f1bd0941f legacy-trunk +29119 0a1c1c5e1ab4f29e0f97eb000cb1787f353433a1 legacy-trunk +29121 4be97eda436bb63309ea2488314136a2f653419a legacy-trunk +29122 0690ea6d1153572b32c9e77ad10f87e2a02447dd release22-maint +29123 f5099a530d67af80aef02351b730cdcbb53de266 release22-maint +29124 cb9c1f94220b99eaaeea5c868a7944f49d74305f legacy-trunk +29125 000d15581a7686d95ee00a15295dce8bca730e88 release22-maint +29126 90274ba04424d76105e26a1121d1a79ec0e7638f legacy-trunk +29127 14b68f59295e3956b7f135bed7f8da8c020bda73 legacy-trunk +29128 37c0445bdc90d97d54b8df4f7bbf76b0fa41c91b release22-maint +29128 0128313c2855d71753f00fccc60bb39ed92a0c54 release22-maint +29130 ddbf69abb95cc886ac1bcd2a1b204e7209f75ea2 release22-maint +29131 4a825b902310e8dcf488c430f8dd83a44dd0c8f8 legacy-trunk +29132 b659ab494571ea7e7b28ca70fa35731038c3073a release22-maint +29133 63c6f45e947de49294df16944e866ec1776ba854 release22-maint +29134 cf92660e1e3ce3f4ee98d9abcc20263a03cd9f54 release22-maint +29136 c5d91791e57b29634d6a95b44356013697908fc0 release22-maint +29137 8897a0b1cb075418a0d25d1a89128aa40836b547 release22-maint +29138 1a79b9e39e7252b6081ac9178d6f13df11becabf legacy-trunk +29139 9cd6ed954065db620efc2378ee1fd827f64a2014 release22-maint +29140 62853195be68d1fd2526b895147d1f56357cf713 legacy-trunk +29141 41e8280a3685a7027e08654b0df8187a0177db06 release22-maint +29142 bac5a493290599a8ca9343f0c296a522d73c3bb4 legacy-trunk +29143 6896ceed46a6b2d2ed3752d1291fff14ac0b864d legacy-trunk +29144 c52165f2cdf4391fbb64c3c401522f7e7618712b legacy-trunk +29145 386e6fe2c8d2c9a06c0538eb49f3d78869bb96ab release22-maint +29146 65dffc9c0a169e7beba3d74b3283275869b96c15 legacy-trunk +29147 ba522c74a93101c435aeffe7eeaef29b0e607bb4 legacy-trunk +29148 ce49f12a1769e6a97c9dc64d7e77f79124caf075 legacy-trunk +29149 38843d35b646602a46bb56a5ed1267d6eb9710f8 legacy-trunk +29150 c7d5801bbae8bcdc58955cddc81ecabef4733c86 legacy-trunk +29151 695ad8f87709511339fac2d88cbef6acfa1db951 legacy-trunk +29152 0809dc598fe23a2b32c7018e1997b59c15ff7e10 legacy-trunk +29153 f4aa656710f039f377f4a0e70ea0cb7f2c0eb5da legacy-trunk +29154 56c0ba20329b4ded425f1d777bfe1e7cc933d63c release22-maint +29155 b2e837f2d141c6fbf9d71ff2f2717802f0f0e595 legacy-trunk +29156 d8ec98b74fa78b554ba9c1f14f7fbe9cffdc1d39 release22-maint +29157 b39bd03a8dab6692388d9c16844dce5c85ca0ad2 legacy-trunk +29158 13d639a4afd7b83a98c3af03146a5a7f230d587e legacy-trunk +29159 a9621ba7e3dbd1340b0d087a76ce44c34842755c legacy-trunk +29160 e9e7f160aac990e215bafdfa0fd8b3fddd19429f legacy-trunk +29161 50013d1c6a43ea1beef526f13c067b53eba26849 legacy-trunk +29162 b78f5c7e579021908353a6208702ae970acbbbdf legacy-trunk +29163 2fb910b139c2e25d56ceb1447547bb4dc8c35df4 legacy-trunk +29164 feb8863b6fc4674bd7b9d4791db59057677cb62b legacy-trunk +29165 6ae6f2060e28d36435a9299a184fecc7daee6d79 legacy-trunk +29166 c621f71bc7025609f09b8d188cf55140e8a40d7b legacy-trunk +29168 81204e20cfe59e372a7a6011fa6bf565045a77f0 legacy-trunk +29169 0a7aa874c450bdda5999a32c0b2da5e2c24f356d legacy-trunk +29170 e959172caf49321880f83c98dfc36e3a938cb842 release22-maint +29171 447762ebb11d2d72a151889b9b2e46185a8772b0 legacy-trunk +29172 ee756ab6a13e0df738fb79bec18d1e73d116b9d4 legacy-trunk +29173 0f50536a10bb7764e7d7722fc0f067d4bf0421d6 release22-maint +29174 1fe1a57d8eb1b27b8e387bdadd79e70dc99baff8 legacy-trunk +29175 733df2d1eba971bf50a4710d5806a778bd063656 legacy-trunk +29176 1a9f478852604a7d0ccc3801ba36afcd73623661 legacy-trunk +29177 bad9699576d9d9bd560d82d4b278d08e8debd7cd release22-maint +29178 ae6863e8772437bc1c7256cd13e4094cadb6c93c release22-maint +29179 06f6173b80fb4171d0797b6949a06fa37e66ec48 release22-maint +29180 e06743fab4775ca84339b3c5c0c78e7d7b6d03b7 release22-maint +29181 41c592122f629fd5d9d609a47bd6df7f93116c5c release22-maint +29182 2adadc19923ce12f3093123895336f2e37f587d8 legacy-trunk +29183 290ea0c6de6a5a1acf2a3c06b221671621d320c5 legacy-trunk +29184 55b18394123b7ac625758dec77d4c859ce9b2f55 release22-maint +29185 e374ea7ac4ce48a044929548280ade19fccafde0 release22-maint +29186 f532e9b69551c2e7e784abb1e5cf02ec9882403c legacy-trunk +29187 3c26ae61e9523ebdf3505c1dbde9785c002e44ca release22-maint +29188 8b20b26f11869980239cb10678d715d8d22c94a8 legacy-trunk +29189 f6edb1ef2e3f800f65c6e065febf4fcad1b44e7c legacy-trunk +29190 61e6b57ebbe1d80eea2820bc720d735b72dc5a2e legacy-trunk +29191 d634fbd5e4232dd7c091707e428ee29e19d25dba legacy-trunk +29192 8e92be65ded3668fe6aaaa8d4f1754523e07b86b release22-maint +29193 65fa193ea1090ce7d9cf964f41af7fef83eab5ac legacy-trunk +29194 f461827dc7de6c3f3f35f91ce903f70426eb345f legacy-trunk +29195 fa173719ac8c0ea611b8a66ae4da63790f8cbc26 legacy-trunk +29196 b59d1a1193932db36d33f61c9b436e3797e05b02 legacy-trunk +29197 ace82da3b450e4a29abf1cf30cdf1ce128ceb6f9 legacy-trunk +29198 787fecd0aa1bb1076869f513006cab999fe5dd69 legacy-trunk +29199 c59ce513def625bea6a0580938716e6afca76e31 legacy-trunk +29200 3a3d5aec7a6aff1dfee4f538d79fbcf657bab74f legacy-trunk +29201 7005f4b6cc122ccd9ffb911ba89a6e2e5dbea24f release22-maint +29202 6d21383896672562057f3b75cafa94cbf0994615 release22-maint +29203 92a8a352e02430633a8ecfdf614c0527060def64 release22-maint +29204 b0fa5f6a8bb97de7a55789f34830948fdfeedca4 legacy-trunk +29205 eeed7c8b231aed16767e370e77f2c123e0568b60 release22-maint +29206 97002b250425679d18626a67c782ece7a6891c67 release22-maint +29207 70f9026a2b16fd38d87c2724d56f03b38c1c91f7 legacy-trunk +29208 21ab2a674c0a1464ea06bdd2c9eb0b44e4d7d4c1 legacy-trunk +29209 396c8a24880c825d5424f0e6cf2c4bf9ce17f197 release22-maint +29210 86bf840c2a1ca8be4fdd40257702e30157bce835 legacy-trunk +29211 54ebf085d26fa964caf62df67c6a741c81fb315a release22-maint +29212 f7ccf4991565c3fb332028a1d3c2a6ac3ff1a6d5 legacy-trunk +29213 7340b64a4908223ebbf3e02ae7e8dda1d463fd83 release22-maint +29214 4890f1bdeaa642e20c7e4f87691cc25437966f37 legacy-trunk +29215 f7a46b0d3c07aa30e65ae1c26333aefb1675d167 legacy-trunk +29216 d43e82b8d79d5689e8bc9bb766db84c3c4968d2c release22-maint +29217 ec0a48ae8eb47ea16f737848165ece8d499fb9ec legacy-trunk +29218 9bd2f9792efba67ff54fdafacc982fc08a3a3190 release22-maint +29219 3c95e09768448eca3423dc02e0abf60500419606 legacy-trunk +29220 2d17e3cb774e8363d915444c4e1cd25563ae3412 legacy-trunk +29221 75cbec40db7d5fc541cfd0fdbe3bbe503e62cce6 legacy-trunk +29222 6d35d4292dec46d21839262c5faeb23a1d12e379 legacy-trunk +29223 63225811498d511d31b1c3b042adfa6df49deb0f legacy-trunk +29224 0838c424791783fec8a5e3ddb6d1d40d045b1818 legacy-trunk +29225 f449fb5bbab8ad69a53b2542c4d19634c2932d50 release22-maint +29226 5632841a32a4059ebea3757f5c36bf7f10519d43 legacy-trunk +29227 6ed0bbdabdc819ec0a25a1a07d050a1f22072fa4 release22-maint +29228 69aa60d771d1f3199ccd36314d50a6c42c348ba7 release22-maint +29229 b4ed9f9319cde4115da1f1594e8ec070402a06a3 release22-maint +29230 f447b69601b9156e1d5aa20f1059575a3be5de28 legacy-trunk +29231 ca989a71b6c7dd7dcd115fbf1f9e270631fba3a0 release22-maint +29232 71e3a8e9d884061c1d57f96b99a241f8149e3954 release22-maint +29233 44729fbb3d5bbc1afc6c7ea70ecc36dc22a120d4 legacy-trunk +29234 8ae9c0b0aa0f154dcc48df15a1d3ccbbb465f314 legacy-trunk +29235 7a57ddf72794ef9f139a64f0c0e8be948c3ddfa6 release22-maint +29236 037dfba070ac78c38a602d2da99f7943c75d45f2 release22-maint +29237 5698f0fe2ea00900608eb74bb33ade630f3716fa legacy-trunk +29238 951e3fe7ed3ad3a56e4b6cb77c81d7d3a8c20918 legacy-trunk +29239 3a879f2fca066ad26824860e4196ee5bac8f8180 legacy-trunk +29240 d5871d6e735d74dfc715aeaa68913bb0df728dc8 legacy-trunk +29241 362301a8c3e428986d40523c24e9cd3e3519527d release22-maint +29242 91ebf488b5a187bb3cb31239e1360a4e548f91be legacy-trunk +29243 c355fd37d6407b142fc2df178cfd8542083799f1 release22-maint +29244 84ee5a4997430106886f9d689e34f6e72682bb1c legacy-trunk +29246 edf5e7e55d140a77175e702af56dec711ad96efd release22-maint +29247 ade8af1aa3c68f433b672f8d1791ee9d63a3b80d release22-maint +29248 1dacb6ac38e9cee530a7f950b478b89bad1e5cf8 release22-maint +29249 cc41b9cacae847e513f6fc513484be2a45786389 legacy-trunk +29250 f0a74ae09ad73e48a351955d609a885c700f928a release22-maint +29251 2ef71f351c74a2e1f50f136e26dafdaa0eb4b25c legacy-trunk +29252 423aa5ef9247bd4f5dfebfc481b900752401971f release22-maint +29253 cf18ca0eea892d55b493948bf12fcff148a2d84b legacy-trunk +29254 af20aeaaa98204a04627d27bfc9cf26c76b8df9c legacy-trunk +29255 bf384111b3b38f7f8217e1db0286efb52119456f release22-maint +29256 ea1a4cebc530a5b3de7ebde8fe88a430adad626d release22-maint +29256 61d531533a86224a1c26917c18013d91f592fbfb release22-maint +29258 83828583d91738f6ba86e568888fc5f750661f39 legacy-trunk +29259 31b2fb448514632a5519db767f9e7f72fad353c3 legacy-trunk +29260 a3d612f0563f16436db7e0ca654d9122fdf76543 legacy-trunk +29261 b858f4c883ddde4d084c9b8e4bd4beb38bf9df37 legacy-trunk +29262 001b789f1f84c0078ccc51f9d6decb0fc122c933 legacy-trunk +29263 ac14317a9ae8b316e4ba527c707492cf774f6df5 legacy-trunk +29264 3eafbde56b219f1daa5e2c852eae09ac1bfc5dc1 legacy-trunk +29265 66e3e5f093ca1137487dc808693fbcf3bd426e8a legacy-trunk +29266 85c87b3ac96bc26e574f954e31b76bf94a5cb875 legacy-trunk +29267 6c930e256a16d248986aed7903d7453ecf090f5d legacy-trunk +29268 bc81d531c62932252a7258e36b8211f7dfa9bc5c legacy-trunk +29269 34284825d9cd81c29333fed89a3f194ded5ffa1d legacy-trunk +29270 c77d83570b3fcaff6a36b78204846e5f9e04c86a legacy-trunk +29271 ab9d4016b587d5ae9a7d5e942f214adeba3a898a legacy-trunk +29272 6001265ec686156c7a7a4d192e305acaa3005f2f legacy-trunk +29273 b9769f7133c60ac2b426a241f7ed3c214ec226da legacy-trunk +29274 0bbea4dcd9bed6d81c92745cf68e888b16fbcf96 legacy-trunk +29275 37bd2a901c100a9fcfc0bbc5544be7a198d7e129 legacy-trunk +29276 fdca87c4234ea46a542afc178b7200e5e74141e4 legacy-trunk +29277 cdcb102f8e56c2cf4a90a873f43f5bb5ba7ddbae legacy-trunk +29278 915112671152f43fa9d7dcb6efa30665a861d917 legacy-trunk +29279 54834363ccf0da69f340d0fb7417dea2e56e6d00 legacy-trunk +29280 5d352de9441580c83c2dc02a6ec4069146817b73 legacy-trunk +29281 777998a227b74d17f4dcb27192ebe7b9e9ae69c2 legacy-trunk +29282 b8cbdb735cf2b199e564f94e9189b4af420b5699 release22-maint +29283 4a92c7d9d4154b05fbd245ffe06dad8a4e0d7060 release22-maint +29284 76ac16293e4b6c7407ea9514f9372b7d81a0f81c legacy-trunk +29285 ff67d5ff123e569cb0b555cc4e4987e74344c3ad legacy-trunk +29286 79419897a36fe7977556b74d6008b566cf122340 legacy-trunk +29287 c4403a3efa5d5f8b8d84e46cd2b898dc6bfd1503 legacy-trunk +29288 12227d79f6ba4c76df05fc671f15c6b75186fec0 legacy-trunk +29289 0f4e998e3ebb6334cb1ba7a521365b6de030ef71 legacy-trunk +29290 032f196059aa0b4f71e0c80e4fcc0fe97a6abe13 legacy-trunk +29291 990b275149382b4e7d7d94b4af48af91dba6c429 legacy-trunk +29292 1afb228e4265b5a86f08c0c84db4060694315016 legacy-trunk +29293 cebee2a9e3cf9960c0055535f39a04b5eafe56b9 legacy-trunk +29294 c2dd4130184108be53b51f7e39a8589f1fac5310 legacy-trunk +29295 093fe5b9f6f949aa5bbd114f035c928c01d55c95 legacy-trunk +29296 7ea674ac590ef5748d3c4a1db741760774c15713 legacy-trunk +29297 dc420de17a6ee63cee020b519647a13f2a345631 legacy-trunk +29298 deabd053b6de1f4ed656afd39795ffe9857d7ac9 legacy-trunk +29299 8050157a4430bb7bd87213598b74384bb0003a98 legacy-trunk +29300 090b72c0d2eb730259a9a76295de25126d1fa86a legacy-trunk +29301 44cc7c62d98db37761c4317c54ec52f2e5027cff release22-maint +29302 035b8deb52c1ef4d0eb53017ca7a402c18ee7396 release22-maint +29303 4702921297d1255a10cc9c73bd1287b35a071071 legacy-trunk +29304 a89d014559e057f0162329cc4d8e45b9709ec64d legacy-trunk +29305 2f3647b21b0763390f2d17875141d83554f49ff8 legacy-trunk +29306 8540887bcec6c9b90a2aaab4102279522d1f7c59 release22-maint +29307 243503926c81d80ec53e1ab04b035d335bedd042 legacy-trunk +29308 eea40c41720539fbf7b3430d0d0ba33199b12772 release22-maint +29309 09e3f0d8be10beb5ab0efe8484ada47b4a7b22c9 release22-maint +29310 eab7940277fbb3c134bdc4411876d2e92c34b7c9 legacy-trunk +29311 7b7b96555842a94d467573c46c25c4705b33cd1a release22-maint +29312 31bdc66fb307f015cf0e8c0708a58599d4ad361c legacy-trunk +29313 4acb5501b4900c713d022f03de7814c4eb9f5cf3 legacy-trunk +29314 8fb12ac79c937aa437859656fb1ad613ab615b47 release22-maint +29315 eed0fcf85b62290429c2119c5dfd7f0ce067308d legacy-trunk +29316 a5db246d94a0b91ad94434b2c976f95303fe2937 release22-maint +29317 057de41daf4892d01ffde99e386fb3446b67e796 legacy-trunk +29318 67381ebd5f4f726083ab855d7a25e4f748018cdc legacy-trunk +29319 7885899fb43eb50cd29942aff71044abb7b0821a legacy-trunk +29320 1f5f6481886d9ab34811de6e45f930625f52f7d5 legacy-trunk +29321 680bfcc9ca066c6c6de27dc03e43bac7dd0b72c5 legacy-trunk +29322 2f9b0a35e205788f7e23a1bf477d088042a2481a legacy-trunk +29323 a11cfae71deb0786e622300704989400ca96540f release22-maint +29324 84a3dd994cd18804f633b6c83f5f296d0bd13535 legacy-trunk +29325 54f32ba7047cb3fb18920713e7bb4e4be58c5ecf release22-maint +29326 9dd9c531ca78c4f10dc1164c612998035d6705c4 legacy-trunk +29327 4c8a8c74f4bda94ff385f65c15e4bf237f0cff0b release22-maint +29328 823e947e2450257ffc57c981d25cda1bfaeea6cf legacy-trunk +29329 35f476d6481ef429dedac0e62942f3629093a8fb legacy-trunk +29330 41e0361a219122fae733c0f6d2d532f10a34a562 release22-maint +29331 e56b52e78bc9790b53b678850a3f37d2f281dc98 legacy-trunk +29332 151aa3434aa67023972ca73addccfc3789417a97 legacy-trunk +29333 d17ffa0522b759ee98a73cd51d67b8dd699eeaae legacy-trunk +29334 b9aa871f844bfcffcec6256e7212652bcc2fb8a6 legacy-trunk +29335 b7b012e78da35e3bc5517c52011d5a1a96b9b390 legacy-trunk +29336 2b158267b00e4c09c011307b09c28a262e72eea4 legacy-trunk +29337 2bcb41611fae919352b4072b09a7fbea9a20b192 legacy-trunk +29338 4eb94c56c46a471a46d3d9a7d0d7a08012f79181 legacy-trunk +29339 cb910c39492714953750140213ea25e5690a3624 legacy-trunk +29340 a9cfeb42e24099864a3fc066ccd317d9dbf37d77 legacy-trunk +29341 57fb3d5e3dd37601eff8279eb065b7adda15fbd5 legacy-trunk +29342 79305a2efa8c878ec37b1bc90ff9a9b11689bea8 legacy-trunk +29343 9253fe86b922fa1a1d12b20e01e161c33a9b3f0b legacy-trunk +29344 5f7a334c0925109943b5fedbf5ee88047afa5b7d legacy-trunk +29345 15607ec49faf1081847bdb90482971cfd7d8387c legacy-trunk +29346 d4cfa4043c094d7ba0bf05c6c412149993ca62c2 legacy-trunk +29347 ca025e9fe5bc2e904b423ef7aaeaea06bf7f87de ast-branch +29348 83a32c547b4993b60f5a483a482dda7be8febff0 ast-branch +29349 098cdbad55cf2e76042f672446e0183b481243da ast-branch +29350 2d7f4277073325ca88da387f1a8cdf817e5473c9 ast-branch +29351 4587d1af2c4143e5a490afd63a9d310ebb0b54aa ast-branch +29352 aa2ea5ff5f42709d748d68d97dc83c159e29e7b4 ast-branch +29353 07c6d3b9293c275dc95199e436bb6c03bd4ca944 ast-branch +29354 46b5673ca380dab845a5fd99ad2bb8dedb90121d ast-branch +29355 e365e6bf41bb01f6832bdf23be116d794e587744 legacy-trunk +29356 4d50318b3eb181db7d6288fd55a03501eb96ce62 release22-maint +29357 8d44d614941d477a66bc317f045633cda220b609 legacy-trunk +29358 6f18508bed3d27885cbdffae9a3dd18ed7efdf16 legacy-trunk +29359 7e80e7d05a16c839b7da275a6946832c4c866c8c legacy-trunk +29360 34f17fb49c5131103986ce9b215d11b4b0e62bc5 legacy-trunk +29361 fec15bad386d9f0d30705c4d6c345042314bb037 legacy-trunk +29362 a70fcc5dbba505ddb558697f176a3ed08a84cdf3 release22-maint +29363 529da505eabc731038930bf8711bdd9bf412f092 legacy-trunk +29364 175041e34587a761eabf6e870aa904a8dc9841f3 legacy-trunk +29365 7f030b8f917d90b02c4f39e0b02e11ebef1c8eaa release22-maint +29366 fbea70a402915421831fa5cb2a1480a71f922cba release22-maint +29367 ac239ee0c9e8b871da086d04a4c3d67f7f666d41 release22-maint +29368 cf87920351ace9277a67b914c35856f3a203cbc4 legacy-trunk +29369 402fdae67e440f4d86a5739137644bf58cd4b1fe release22-maint +29370 19500c9b58c161bfc53a6e7c6006f659ec3e699f legacy-trunk +29371 509bb0b6dfa3cbcc90b73720fb868e7640782c79 legacy-trunk +29372 1249245212e446161c4f5a7ef7b0cda4ffbaac8f release22-maint +29373 37d87dc803d7a4bd62de75f1122aee17dc3688c9 legacy-trunk +29374 d3b7377c8afade1209df8900048723322e757864 legacy-trunk +29375 c3398c25dfef7d90656ed3cda1371a30c2c69195 legacy-trunk +29376 fb7c52ca9840510e6ff1b6b3790139374dcd76b4 release22-maint +29377 095dbbeba9c04fd644353d3951d4083cdf4aa9f5 legacy-trunk +29378 487d3c2490bc03588120ead25ad907fa985f10a5 release22-maint +29379 03c3f610e0541308b4b584e6f2e83d15b12e2edc legacy-trunk +29380 51828ea50b59c0e81e4c77ce50a41c9f40260853 legacy-trunk +29381 179482875cfba5c40f7f8872f7189ee5fac89869 release22-maint +29382 50905db35da5b0f069fdc4f25d59b016fc8c18b7 legacy-trunk +29383 6ea9eef991084786308f9878ea6023cfa89f72fc release22-maint +29384 df055a9eff9cf90778c0dbe6dc30a910b20d7c12 legacy-trunk +29385 0bac66e1b356904eae42d7880ce7b3fa4655b672 legacy-trunk +29386 accd2f54e1847ac45a9ed890394184e2af1eba8b legacy-trunk +29387 d32c45d278b2490df55e9f70823f211aa848eac5 legacy-trunk +29388 f7da33bce1d93996c8e7bcf24460163982f82762 legacy-trunk +29389 fba16b9bc9517f4bd9f543a2fc38615ff1e5e837 legacy-trunk +29390 b0638329e3b9a1a9b65ba1b70be5c310fbbe6ebd release22-maint +29391 f2dae3d9a75bd3c3e586de22a29c16c9412407f9 release22-maint +29392 8bb6003f7f54c5966eaeee48e6d90bfd50bf200b legacy-trunk +29393 5b6d55b45287c434f62d10c77ea42fb7077bead5 legacy-trunk +29394 9901fda7c3664a7f753232e9ea8de8efe01ceb59 legacy-trunk +29395 4ef7686c4c889f67166862b23eb416d991b670f3 legacy-trunk +29396 4f4e0260b771323813f37cd95a0bff15c11dfb5b release22-maint +29397 e8fc459ec015585bfb10129719bf1519fc36195c legacy-trunk +29398 6e414fba46f68c29a0865ccc5ce4da9ddd51e5a3 legacy-trunk +29399 834b0e0389c5a9b3a92895425c74d69704a3975c legacy-trunk +29400 dc4a0336a2a33cc1c6a849f431d53836272266de legacy-trunk +29401 6d5542ca277a39a89764c67a37078252af39564d legacy-trunk +29402 58941fcb6f5bc156a1b1eb8cd45247d746252852 legacy-trunk +29403 7049268f252d2725e78d9556adc9d7c843aedcdc legacy-trunk +29404 75756c8558bd91171cc5840737365dce9ed5f545 legacy-trunk +29405 def9609d9369ca8ae6ee29d7a3a5f34af9ebe492 legacy-trunk +29406 3065b54e3ab71bf17df26a1bd3b0b07d7cc97efc legacy-trunk +29407 11fccccd36004791674a45fbf24cbe02dd92266f legacy-trunk +29408 790729477610ea77b816773bd736026fdd5e99af legacy-trunk +29409 04cc12bdcedeaa75bd54b0e629feb0314c588dae legacy-trunk +29410 be881614848b28863ff23d57fe0107e8966fea03 legacy-trunk +29411 94240ad50dbe2e71b8cb3d68fea9513ec7fed775 legacy-trunk +29412 b6ee8047b250d4a94dfcc96f8a9e5ec2b02763b2 legacy-trunk +29413 fb57d5777a2492b7273f04f5c8a24093a6b40627 legacy-trunk +29414 48e4612f87cd928b9ef7ac97c3ec6af398087a13 legacy-trunk +29415 43f70109cda5c558be29669c5f4928916fa48089 release22-maint +29416 e1db1f90e17f9d370f1277fae94d7660a154ac8f legacy-trunk +29417 7b773a1271c3df3824f709e04c85ef6b7a948b3f legacy-trunk +29418 3db772d45f9886c9bc2301642b0c9378dfe2644d legacy-trunk +29419 26b440c37c94c89261ccf9933c6cce3f56a2ce37 release22-maint +29420 253e9edfdfc060ff77b4896f4ae2b771cf0989be release22-maint +29421 aae3764c4d58d491f4c65f1aa2e004ce1021b6e1 release22-maint +29422 b9246f8fb8fd304cec736eebaa1d229a9870e8ad release22-maint +29423 808e513a2f5c2fc48896f87a76213aa0de609cfd release22-maint +29425 8585fd9aecef95ade6585f81d8f79a12d6449f21 legacy-trunk +29426 36d418bea55218f0f0f610483f256a48b6398a57 legacy-trunk +29427 445feb26adfb9aa5201f26455ebb30804e9da61f legacy-trunk +29428 f4f17678fdd8658dba4bffd9e920201d10ff307c release22-maint +29429 949ed8365d58d351bc720556a31ed0fe2bb54aa2 legacy-trunk +29430 18edf23bf4993d7102947e344789e3c135a043ef legacy-trunk +29431 dba60d024e484363a2f8e9cd3974eeca7b44ab19 legacy-trunk +29432 096642d7eca25bb7d2cb22632588c52180dc72e0 legacy-trunk +29433 fc6a19f69ac7e2b60ee79cefa2ffc163e2d09f37 release22-maint +29434 01bf9c88d96036b6662a15927add26c24c456ce3 legacy-trunk +29435 72734b39f8aa0acf526ad23a679aefa46aa028ae legacy-trunk +29436 d90ef46d083828bc95c0bd46b911efebc92be731 legacy-trunk +29437 4a24c6a6429a6673507e3a6b795306f598d67719 legacy-trunk +29438 91d3d4452c48220b46795c033cc4cbe4f3057b16 legacy-trunk +29439 e349fe093b34a91849d1899ada55ba3b299b7d34 legacy-trunk +29440 323e4c1146d0c6025f6bfde48c2f106430e7220f legacy-trunk +29441 5517c36ac497dc3640b06bcdb91ed94397a89a74 release22-maint +29442 6875bd7cb570573eec33cbe67435eb190ccaabeb legacy-trunk +29443 5b828ffe1b35f01ee6cbe370215e7b3c7d9d9b75 legacy-trunk +29444 4252b04f3eed634ce23ccd207f8e556442f19486 legacy-trunk +29445 8e73383474eaeb7ee292f6d39b639dc56953b50f legacy-trunk +29446 d7da080d776304c8bc39ed757deb17eadaa09ff1 legacy-trunk +29447 472a42e2024409adc5960a63012d2295f8b0390e legacy-trunk +29448 cb8298a6ed47c44ddf10651a6e702ae419691718 legacy-trunk +29449 6662f9d4220b5cda0645e16b639b3aa984f0816a legacy-trunk +29450 a68c6d62fe788df400491d8f688aef39729c4fd2 legacy-trunk +29451 040af9c736bb198be8536327fbf12753de5ec7c0 legacy-trunk +29452 b6478d4635554be1529ae95da89124ecd5bd316e legacy-trunk +29453 2d837e2083faf350942d6c46f6d8b8e66a7e8e45 legacy-trunk +29454 1d02b405e31fb219c0752d402298f59d2005956e legacy-trunk +29455 4f1b7396a3c5426894477e731ebb80933163cba3 legacy-trunk +29456 d812b8aaefb31b4662fb6b56cd9699c7c744bda7 legacy-trunk +29457 0147ebef9453c361f43842a9e337a5bc41bbe1cf legacy-trunk +29458 06e005666c42291f8fdd0b5652d5d4624a2a8240 legacy-trunk +29459 e1bf4604c0a584b1bb18048239065577e826e2a9 legacy-trunk +29460 d308df824e2d15bc012f9c17db2573cf1901db28 release22-maint +29461 15221980714472d1234a06ba4b198c73b15ac274 legacy-trunk +29462 1425bea2ea66a10c8db38bba03a5d87401d78746 release22-maint +29463 9ced3e5187ee1d6658ed40e31fdb10744e5fd674 legacy-trunk +29464 6e11ae04af10949a60e5dbcaf708b7ea302b7025 legacy-trunk +29465 90f4eeefc516f9f3d3e07c105c31adf37f100b82 legacy-trunk +29466 611af79c0e892b4ec343ba0d9f29c952bd91fdee legacy-trunk +29467 273cad7f7df721967dabb4c44e1ed73a742e41c4 legacy-trunk +29468 19762a4936fc84b4c09ce05f46e191a2620e2dfa legacy-trunk +29469 0fdfccdfec06f2eec245b3acbc9173e237c62e96 legacy-trunk +29470 90a09cd15305931df5d01764328b6097e83ab9a9 legacy-trunk +29471 bb813346b227ee1c96461f2c3e5a39894fe5e7a1 legacy-trunk +29472 1aaa12c08b35949f94d52964a6ad6697e086ea2a legacy-trunk +29473 a7536ceb06f63cbfefc2092aeaccb6d278a63480 legacy-trunk +29474 548e6ffbff757ab896ace089250697628f2afcb7 legacy-trunk +29475 3f3b7a6086b73b3beb0c877b836e7bb59da9c2d8 legacy-trunk +29476 8a88e977a71bbe63ec0b7c672fa72d3f0f412f05 release22-maint +29477 83d21ea9457db2ecfc6d191463d9f2bdf9ae29be legacy-trunk +29478 bde3660542cd3e190ac98f6bd5eabd74b3b98fe1 release22-maint +29479 41ecaec5b4f81ef83db7ecc352020a3dcebeb6be legacy-trunk +29480 72057ef902aaee070d11fcd33f3441bdf756612c release22-maint +29481 28cff60a609702de7991719640e960591d676d01 legacy-trunk +29482 4946d4f37d84e2aa4888dc0e1aac55ef8898a9f1 release22-maint +29483 3d627e3d956136521aa7b74433d337135239a514 legacy-trunk +29484 31b5849cac42fb58134152bf2d104194d952c224 release22-maint +29485 b28e9bf0f046ae9a3cc9d108a343096f415f76b7 legacy-trunk +29486 029e75ffe750d34c3ade052212e230cdfd696cfc legacy-trunk +29487 36ea31bc907650e104f8867ef3518d99e2912f51 legacy-trunk +29488 03b0270e116b372a5c813d8f041d9e2ffb301d1b legacy-trunk +29489 c6ca39b158cdf9b3603ef8319588c6e101e75327 release22-maint +29490 3263ad4fcf811a157ea990ece8b938c8da82e9f8 legacy-trunk +29491 d424558d24f9032a9aa0d7554b314a62a3dfdc54 legacy-trunk +29492 5be5c84dea23ff70248d6429a2a382eb6256c8f5 legacy-trunk +29493 bd677c8e4067024946acd6f0b96039426d6b57fb legacy-trunk +29494 36de5a731257ebab14ec11fdfc28ef4664ae91b1 legacy-trunk +29495 9bfd47a9c8b350194bfd5985c2328ec43219ac37 legacy-trunk +29496 6fa5c95408ebd84418f803f1a3f0a17087b5a561 legacy-trunk +29497 8e32468427734c9aa16b5421064bebb179a683cf legacy-trunk +29498 758301ee0bb765c8ade79bf642a1bd6e163b71fb legacy-trunk +29499 f54e89272aded2953b19a26716309c4fb2a188a1 legacy-trunk +29500 9b47386ba5b8054c77fe7799e7efecfbd854f416 legacy-trunk +29501 1244f4c3834f49022fbe82bb4a195c6d45c6ca25 release22-maint +29502 18e09720738f6ff531d7746554b9f04aaf014cb8 legacy-trunk +29503 0bda20afe6233fb37d299143f4e46d65f0a42aae legacy-trunk +29504 d68fc49a709601bc009b32b96a5cd4b82b8891c3 legacy-trunk +29505 64a96b97e1e97ceb7cd5c63eb73bd0fefd6f661b legacy-trunk +29506 2df98ff2cdda1a65276411ce13b4dbad4e694141 release22-maint +29507 a2f36934639307ebfe068c9476079a695503c09e legacy-trunk +29508 f5439f8133f857b389f69a4aea5a11dd3158e8b8 legacy-trunk +29509 225ea1f52de95a9196055eb98fd1a6a5e0f063c9 legacy-trunk +29510 1de7ac729bfa923a2e00d62588263a38a13ba856 release22-maint +29511 183fc21fb8662323dcb329803f33eeca62ce00ea legacy-trunk +29512 6ed2e23aae456523806e2fd712f46797edfd484b legacy-trunk +29513 771b6f521b9561d8e42e924d1a15433e4c693923 legacy-trunk +29514 521e89c4ff4478209173a458988f30061b12a63b legacy-trunk +29515 3a7606a2237bb695721cd063915b35a502dd69a6 legacy-trunk +29516 525cddb7682acee7ed8b93864a578d21e87201ab release22-maint +29517 e9aa394c7191727fbac5f5e85d83ed29c8f6c976 legacy-trunk +29518 ce369cd5626be7141b3b82a6f8d2d96b088bccac legacy-trunk +29519 4b8044d1f1ac32819a6c0b60119c706f57d91b0f legacy-trunk +29520 9da026937fa5280950c5879b0d68f58043c79a54 legacy-trunk +29521 1c99a5a0b87bde602dda0fbedcfe435a14e4854b legacy-trunk +29522 6ee2f9b4bf5c4b72fc107745563be98f1c92f362 legacy-trunk +29523 1dbabc5beff7f55a9bbc402b5ba83e783a6038bf legacy-trunk +29524 a5599740a6e80f90821a6e817d959bda8ce6fce3 legacy-trunk +29525 b4a6283b915bc61d5b6699ec3f495a2e8be907e9 legacy-trunk +29526 5819c4439ba2464e9a344e47d479f1f62410234f legacy-trunk +29527 c54716aed26a06deaa6a9d51e2488ae39f231b6d legacy-trunk +29528 1b4c5e66a4b4ad17ca105bc48fc9ee6d07049e8b legacy-trunk +29529 8121358e321703a574e89f07d4635701fb638ab2 legacy-trunk +29530 696864aa05d334310250702560fc9ad616070161 legacy-trunk +29531 6a42536fb9eebb9900e4ebbaf39a9176591ad831 legacy-trunk +29532 ba2194ad3b423c3eb83c8d438080b426099990d5 legacy-trunk +29533 1a30ed19f64aff90c0e1e6105a2f310350e89d32 legacy-trunk +29534 13b2ec536e0705e9813c3dca56c7436bb4da4384 legacy-trunk +29535 9dd9379ac6d6793b7768b1b9a3c5cd4b8389a0cc release22-maint +29536 3c23e4c3da02086f5a6fcb72e3476af2887d69bd legacy-trunk +29537 951dacc21847d7050f2187948af8ced51f002716 legacy-trunk +29538 9b5b7da362a5c6fa5def3201bb55470c77d62c48 legacy-trunk +29539 0dbd6b73abd231f1389f96e63ddd6cf1479d54e2 legacy-trunk +29540 fe6e9894c2d42a4baecbd06c8d95ab929b7e0f5b legacy-trunk +29541 9514079320019d69d0177dd812e31a8e879a4078 legacy-trunk +29542 d27e5cad38d7824e4e8809f1ec1dbf11a3329bce legacy-trunk +29543 ef5893bb79ef39c99c7564817411eda591961952 legacy-trunk +29544 87b7fae10a1930777b93a172f1a70b2da0e72eef legacy-trunk +29545 868ff0dfabd2cbb064940a209bc3080aeaf45e8a legacy-trunk +29546 f2ed722ff00350c26081a6bcc8e84d91a31ed9b7 legacy-trunk +29547 88bbc30b08478d1326732af95c471e7bceea2a02 release22-maint +29548 b063c43f4df032ce881d11c57812d086e6a160d8 legacy-trunk +29549 dab2c12b682e78755871c37bae94e99ab2cf5757 release22-maint +29550 7fa93b5ddfbd49257e43224a8093881559680f05 legacy-trunk +29551 d2be796c4b81d7b9a7372ba61a4a1cbeb05d690f legacy-trunk +29552 1afca375f2a9e36f289915b06235228ad54096af legacy-trunk +29553 f3d44926a1befdefd7e0fa884b4df17acd2051a4 legacy-trunk +29554 98322c075f4d95388625c7b0bce1d5177d6437e0 legacy-trunk +29555 53a3823448d93af23f7e9c4294aa2d85e1df8639 legacy-trunk +29556 cab167613e43b737bf954c82d43dcf5a2998c57f legacy-trunk +29557 13af80f0208008f12a000fa9a4693f570bcacfcd legacy-trunk +29558 999accfa91c56da7aa8eb2326384c683327f2ece legacy-trunk +29559 f3a64035ba8bf196329534e2780bdfc99b17d3aa legacy-trunk +29560 2c1bbfc122c1a66fed26640d2ece1207d213a8b2 legacy-trunk +29561 4a288b494cb2c9a80ad3e3d4192734a0cf1e59da legacy-trunk +29562 d69e8a9fed11fcf359824509dc1c2ff9f3e1a86e legacy-trunk +29563 34e70b89bbb723243a6920d0e2ebf391b76ac410 legacy-trunk +29564 b564ec4b7e5b3319e42c372690f6730459c98d99 release22-maint +29565 f3537317b1b25a6f1e044bf550826c31478931bd release22-maint +29566 35158fd60b3ba22b72d8af39c917794cdf875b8c release22-maint +29567 62f88c02c98728f306eb6bd1e27ac7b8059be35e legacy-trunk +29568 d9474c0445babf556ae41728b2565d042d92971c legacy-trunk +29569 52652fb8649d731ad9d709aa3af867662867eb00 legacy-trunk +29570 ff1c6046f10b947f61a6f8a870646700d3e3e703 legacy-trunk +29571 f62f773bc9fdd2a2d9a0f6a33ac8b04a2b341a24 legacy-trunk +29572 f467427e03fa9d5cbc1d3232bca7875f5345a15c legacy-trunk +29573 cbbf7f2425d9e108a264931a9af04e235dff1d5a legacy-trunk +29574 e526365ddccdfd0edd00999b0c94e56cd04e07ec legacy-trunk +29575 933c6d608d01b3cd43097a32261fc919b3ced1b8 legacy-trunk +29576 135f08b73bd5d8b1e710a1cf95b0bf39566f1ca1 legacy-trunk +29577 756319a137b8326df0a0c82e5df5512556b6af67 legacy-trunk +29578 0820ad49829d80b9875834bc327bbad38ba26f1e legacy-trunk +29579 1f365b98f11cc545ab1c6e971beaf4764d5ec719 legacy-trunk +29580 081190484af61616aa1c7ec95406aab2075cfd8b legacy-trunk +29581 00848342d4984ae475c3d098c837ba9eb46efaa0 release22-maint +29582 53e9041efbe3fd6a49198f66cb0f47f4d83203f5 legacy-trunk +29583 540881ee2d4acc4c58867390a967a77b5a529c28 release22-maint +29584 ef3f6929fc0e195954bd5a7d5641ccf82b8b47dd legacy-trunk +29585 2832628ee8cc8408a366aad9b84da1db702e40f4 release22-maint +29586 e61b946474dfc69282cd917eb6a0fc3c28986292 legacy-trunk +29587 964d6b79c22e2e9c3dfaa538311b70d7fcb4bab6 legacy-trunk +29588 2673732ad5f191b669ad94634876da3de0655884 legacy-trunk +29589 adaa450e7d70dc021a2174ae9d4268acee9474e7 legacy-trunk +29590 9ffea50e83301779a8d0b04eb23a940b63c25af4 legacy-trunk +29591 2f2a2fd844bd74ba8f640b449b671eafdcc4bf25 legacy-trunk +29592 9048207992f00bb53ca2de1557dbad40b71b5889 legacy-trunk +29593 8965a2b804b50495bcf71379d2cfa1cd11ca77ea legacy-trunk +29594 e9aebd4cf56cf4f8268b2af0f3de52d1ef4c602a legacy-trunk +29595 9c4bbb3bbd0de7236ee5524387ae9b931ac53bf5 legacy-trunk +29596 004216d7a1dabc009f2f09f18d4e9efbc8740d8d legacy-trunk +29597 1ebb5dc7f696ef75277660778955e49ddddccbc7 legacy-trunk +29598 64167760998c431439bdeb861be1292a8751d90f legacy-trunk +29599 3ad4fae9ed3ad0c6c8445506ce7e1dc486fda125 legacy-trunk +29600 cfb317e4a7701d2bfd4d2e474b7519fefced6708 legacy-trunk +29601 a6d16e84fec054e9421d1d5d06cd7eb61785f227 legacy-trunk +29602 099d36cbbb611ab5fb324bb2f42563a041304c8a legacy-trunk +29603 98f3fd1ed42f057665522d941f0e687714a8336f legacy-trunk +29604 e2226d47ebf01297c98a1a907b4ac5910bd44db6 legacy-trunk +29605 23ef7c163a125029f5109c9855715b398c7e55ea legacy-trunk +29606 4203047e202237e4c91a8de425b0500ca75f9fda legacy-trunk +29607 a56c90cfc00c0dba7507109178e839ba71a2e04b legacy-trunk +29608 42cf1b5e63926f6dda369ed986ae14d1431830b9 legacy-trunk +29609 e98a213101b38a9b8d53b8c1c212a528014713ca legacy-trunk +29610 4b905e1983b610b25a3535b9592072a6987eb7a4 legacy-trunk +29611 076512a0c6c22c92b7283214cd89b400b2fa6b69 legacy-trunk +29612 f4278af8eefa02bafa79686fd9ec4bb238cb49b4 legacy-trunk +29613 6e41cfd25bdf0fe286a1d6d733dc570f99da9adf release22-maint +29614 a2ae635e43b6187112585721d9769cd1356ffe0b legacy-trunk +29615 4ab6b7c3f3117d276302627e6b9eb0d0047e32dd legacy-trunk +29616 144d9d48b96cfea837a00c9e3e4e1c2c3681e393 legacy-trunk +29617 00b4cff93618e8002d9b37abe9bdf919bb5a86cc legacy-trunk +29618 6ce9228a3da200a2cd1135be1937c1179e07bf4e legacy-trunk +29619 c2ec789dee5676bed02c6a6fe725990bdaa499fe legacy-trunk +29620 bdde94e029180b54e353001c907f46706f9a51a0 legacy-trunk +29621 a48acb5b40efc455685d57b14fb9e5c4ab987f7b legacy-trunk +29622 913927d3261edb213dd6267585c35589d9c1d3cc legacy-trunk +29623 9bb4adfbfcc83139748528dae136d790137e5169 legacy-trunk +29624 65d6f0bfa4615040d4ab8b11cac12c340c99f7b1 legacy-trunk +29625 0b611e50c5fc3c4dcde7e0740bdeacb8e6df79ad legacy-trunk +29626 58083d8ea9a5ad3e601b3a00c36cb835f34ef347 legacy-trunk +29627 3e1e9616f8c865a02428c5bc203ff601233eb14c legacy-trunk +29628 9749732a0f6b9ffe80f9fd2303f2735cc6fa9d94 legacy-trunk +29629 ec3414c58872629846159354938d11d4885cb3c4 legacy-trunk +29630 6078abc69036fc76fbe0e9c4835c4d9b5669467c legacy-trunk +29631 bb718782e7369c5c25b7ffd5e242806c7937fc93 legacy-trunk +29632 8ceb455f554112cc7f5e0258998cda08225118a5 legacy-trunk +29633 f49292621b173aaf7d98aac10ab007c0bf8bbd47 legacy-trunk +29634 24a5522d0784b359d209d489be71a6b03209994f legacy-trunk +29635 f0ee37e8932fac8d053e706319ad5f197166e98e release22-maint +29636 27f64314f0de7efab6b6e9b75dbf9088bf815e4e legacy-trunk +29637 e62774b447c107a888c44df3630302d54a78ee56 release22-maint +29638 dd10d97d329a60e70e12a4267f916be5f6804b56 legacy-trunk +29639 3c083f881655d34f6cc30085c6781741f310834e legacy-trunk +29640 af5b4176f4ef686da1eecd84fc7c7200ab596e32 release22-maint +29641 63a08639dae2a3ec0e23f70371438e549f991da1 legacy-trunk +29642 29f7d1d5e6d6249ffea624f861409c86acd438e0 legacy-trunk +29643 e3d2691fb6b8c2fa0cc7dc4555528bba91382256 release22-maint +29644 23df4656e8a2aa477c07adf4b3c59777de52d8ba legacy-trunk +29645 1ab657e007627584c9f8a7dd58bd8bb19c7bb4cb release22-maint +29646 95c9c566bdd6d8cecceaa7950cbbc3631ba936d7 legacy-trunk +29647 4b6d8f51669817f13708e6ca33a2ac5ffd084999 legacy-trunk +29648 251e552c835210e67ba03da8bc76f6b14df5e246 legacy-trunk +29649 5b62b9ea460b239e32fb62c36b3b80c3ae7d985a legacy-trunk +29650 e71770a7f549fa8d3fbc6423a4da7fa4179fc3f3 legacy-trunk +29651 04d3f95cfd89f0c0b480fdb08536030fd33d78c4 legacy-trunk +29652 082930dfbebddbe96fd27af122467369f6f116d8 legacy-trunk +29653 1c055171b8711fbb99864c3d9c7cf4d8d7ead54a legacy-trunk +29654 f96fa3a6dda418c244c1ed8fd5ca8aba5760717b release22-maint +29655 83ae4a902df08f739932226bb6f878d9ea22a9d4 legacy-trunk +29656 dbe25687be6e5c369173d7940864fbdf87c34f1a legacy-trunk +29657 0b23cda004170d9a62c20a490b8530d4d017f61d release22-maint +29658 46d0b46a754fe1b57afb9bad9b97e149d6036c32 release22-maint +29659 1af410e33becf581d74b7f4299a4541b91d069fc legacy-trunk +29660 f72b1f8684a2b9826d4408cd3027a6652208a78a legacy-trunk +29661 3e59d674b8c36433ece0c5a09fc86d76bcbf8c44 legacy-trunk +29662 4c2532c1cb2de24d3d501333d4e4e0a9d8fd67b3 legacy-trunk +29663 af3964679e2fbd9bf9696afca0d41b836fa6b122 legacy-trunk +29664 ae169f5b94e048136489485889b33873d7a931c4 legacy-trunk +29665 0e0b3dcf7878989431d98875667203cfea18e6e0 legacy-trunk +29666 38d1f83d577108a6e309e0600b80198a71877144 release22-maint +29667 d6dc46b9af3c0e268ea470e27c7260cdc8501550 legacy-trunk +29668 390bf5d2d8e7df66001919da2cbf050ce1138cdf legacy-trunk +29669 9c7aa43b21a9a9b0efece0c83cff376931a5e902 release22-maint +29670 d5633e93f707f342b542003dc9edf310c9c4fd5e legacy-trunk +29671 9373578822b590e07a010d65ce764cc2e3e4dc59 release22-maint +29672 a42f63a80cc8736a7a650fc4a16e1cacf45f9567 legacy-trunk +29673 785ad074027bf0e33fcba54596a09610ca533593 legacy-trunk +29674 cb71e7c620e2f50a97aef24c03ed72e03df75449 legacy-trunk +29675 1df98f68d607530eaac898aa547ae1676e089ba8 legacy-trunk +29676 d37f1378d8b8bf9ad369abd0632bbb2e2477289c legacy-trunk +29677 e0233c4425026ea8b09cca3d889be349d3e177c8 legacy-trunk +29678 7e58a15048726f2bb04ee9c9a7f5b95630f1f962 legacy-trunk +29679 1cd8106bcd2071c9df56a1194a524bd9bc8ec542 legacy-trunk +29680 baf87d26ba03d537beb93f6085d9a5d03c52442f legacy-trunk +29681 3f5773a8888efd665ba7636aa6fcc418bf61d30e legacy-trunk +29682 d33005f8388e74e1957dbafeb37cbeebf10a4919 legacy-trunk +29683 ff92cc27fd1ff30d5415b8d0e1190ba716e134ad legacy-trunk +29684 ffec6740914059bdea9122c33bdc7110f19fdb78 legacy-trunk +29685 58fba595726eadafef61dcd023a75e6eadff741b legacy-trunk +29686 383587027c74d1c1b8373df078812052d7c94da8 release22-maint +29687 f465d6692bde33503314c0534fd091c487958fbb legacy-trunk +29688 7f870467c182a75e0d44854f4a78d52aadb7f260 legacy-trunk +29689 b8303413a57e5a15dc17c49c7468e646ae6a5208 legacy-trunk +29690 a5d1e0814061c52ab2bc37f61d41e51ee0628096 legacy-trunk +29691 e89056718235dca87a126e522db537e96fd7f5d0 release22-maint +29692 7cfb52f981396feee89e71b3f2076b699f87d58b legacy-trunk +29693 127e4bfacbb75049c314e5b107d9282ca7630548 legacy-trunk +29694 76f32fbe03cc54e554f2049faa01eeb430112f44 legacy-trunk +29695 57fcacbdc885a557c2233e21ba24e5dc3e1df053 legacy-trunk +29696 20fa6329b58ff804062aa89f9532f9b7b4c58e10 legacy-trunk +29697 eb0c0c83b92a09ff6adc4846ed6d35dc9e92012c legacy-trunk +29698 ffbead3484e1033b2c30c3860cdaad6bb442ffdf legacy-trunk +29699 c95190532c0cb6d9e1e044870632118ac461fa13 legacy-trunk +29700 52f6133e20d20eb603bbeb3868423f91d2b1cc0a legacy-trunk +29701 adb93f4e978051e46faa00a7d8dde2a982648034 legacy-trunk +29702 190389fd8159c7c46ddf998ae29741b2b3a3daa7 release22-maint +29703 ecdff46202c0ff35cbef059fb1468dee16a1634c legacy-trunk +29704 529719a5350e75ee31f1d4394354dd528fab8f81 legacy-trunk +29705 cb248704b784e3c727459199d67d619c54c2a2b8 legacy-trunk +29706 79420fa222b850595ac57d488d3c2a6278b99f36 legacy-trunk +29707 e26ff75dcf6911c01b231d2bea165e3da37d0a9f legacy-trunk +29708 c42b637b95146d7386d485a01b19344f1997f9ce legacy-trunk +29709 c85480692cae9cd900a50a61dfcb4e9ed09eb2e7 legacy-trunk +29710 87e69bada195eef5f6ca5ef8bc76d5b25a2472f2 legacy-trunk +29711 93f30c3889aa4b7a82b3411f17f2c3a3501b06fb legacy-trunk +29712 3ee9519eaa4c47678f60e590e5537e16edb1a5d5 legacy-trunk +29713 e9f89dba5093b0a383d9b721d018b180eebb49ab legacy-trunk +29714 449b2b5caf582fddc8911ee7d32d60cc7d27850f legacy-trunk +29715 edd2eb88fd6ca0ecb4d647bc979dbc497fd994f4 legacy-trunk +29716 a0efa4c9569e3196ddbbe4e0d526df353b1a259b release22-maint +29717 e42997acc7f1e7546866f7e7dcdddbe6a4df6ea7 legacy-trunk +29718 a4e3021eaa7d40b9edb6143157880af0e7936955 legacy-trunk +29719 b1388f58bdb5d10e160332b0c59d1d8bba066ab6 legacy-trunk +29720 4c06bdd7d05c2f32b7f412fe3914399d46be8dfd legacy-trunk +29721 8ed66edff387c6d482447471b8f4b59c10b4e1c9 legacy-trunk +29722 ff7639ddcaf21cb6c6ffc341665a2d59ae0036d7 legacy-trunk +29723 61a0ef542b6f5e1b585b0a498870ea7b0961b068 legacy-trunk +29724 d62c1ba3396406864da5d062de335e7d0a16bfca legacy-trunk +29725 3be1bdc779e06f04960ad91db2e1f28c4fc6dcdf legacy-trunk +29726 0e8990e892b6d6a2c8cc34cd155fbe7b43601c39 legacy-trunk +29727 02d48ed447a83b34cae88b37f7218c33a28c5a08 legacy-trunk +29728 149165cdff7cdc493719513a14634fce0ce0943b legacy-trunk +29729 cdd289a06614a3c349724fb99f34205e8d4b00d1 legacy-trunk +29730 679b2b8254ae666d78f6f53833ddcaf5bb88bc89 legacy-trunk +29731 4be34bd73dff41e67a9cee17f64923a57247b77a legacy-trunk +29732 22d7325ba7ac4969823ce8cee6d54d9c8e449d79 legacy-trunk +29733 a8d130a6a74d68e9ba05a7953ea8f58ef2ad8260 release22-maint +29734 f23c35f81033999c8539875c054cae146899ec02 legacy-trunk +29735 b19443bdf447e7d81a09c973f76a115ed479191e legacy-trunk +29736 60d809a25baec8139090a774eb48fc834635d3ae legacy-trunk +29737 b327ffcfe9b7b9614aa02863d1fe71e461413590 legacy-trunk +29738 205fbf1bd07562f2425606adf8f912fd596b8095 release22-maint +29739 76601fb078d4017c8057942b2761458123749790 legacy-trunk +29740 244e8fbe4e204540d3f44eadc35a815f79472949 legacy-trunk +29741 533eb53a7fbdd03ef546e7b20f5657203e0b72a1 legacy-trunk +29742 e38d50337e8cd83024fdd3aa4ddb7941b2f500d2 legacy-trunk +29743 42279f7d244df74b276b3095015e0f5f3fd7a053 legacy-trunk +29744 34fbbcb105a43b665602b5eb4fb789fc4c8dc84a legacy-trunk +29745 83ccaaab3e5e477d62f97650485a2909f45bb5bc legacy-trunk +29746 6b556c545ffb38adbb70dc4092c0bb80bd1da594 legacy-trunk +29747 e270c0d41a05057a311647c624bd2c9c8da3bdcf legacy-trunk +29748 c419fce1529e57be4af02f7bfc1b0af5897f61d0 legacy-trunk +29749 fbccef8b315331b1427782fc482fb44b9aebdc82 legacy-trunk +29750 57c6e84f71cec66a0d7b81566bc69d096d59122c legacy-trunk +29751 958d07085dcf4ae808c6db96ed3f35cffa20571e legacy-trunk +29752 50c958f703e30289e26a6c068f009867b748b567 legacy-trunk +29753 d66129b551db4fae208f27ac59c4766fb6c55a30 legacy-trunk +29754 3ac464c37374c4384fef181504dcc3819875ea9c legacy-trunk +29755 7c08f6cb90e4f96e12c931ed4285045fef5ad6f2 legacy-trunk +29756 d4411d950d48325503459605da105d927e52ef09 legacy-trunk +29757 875140d30e176560adf426ddf5349c0b8c15f7dc legacy-trunk +29758 eec99783716c3acdc4bd542fa600fca394b6e571 legacy-trunk +29759 ce640dab10e432c87989b80e4c55e71487d208cd legacy-trunk +29760 efe58c10ccf16d0066bda2124184d9a3b68f6f7a legacy-trunk +29761 4ed230a0c931eb0f1ca53da5d9fb14f4e341ae7f legacy-trunk +29762 42bfc98d295b7851e170177def710ff24928344a legacy-trunk +29763 96bdb44763c36df19654192899f4a85bbb217a88 legacy-trunk +29764 a24bc6a2e2cdfa6663ca25072df4c69b8c513d38 legacy-trunk +29765 b0b608598170205fd1740a43345be744572e781a legacy-trunk +29766 0934a8a0ba0d854fad342db258d236977feaf4a4 legacy-trunk +29767 e96575f7e96a7ec2f004ae71cde052b8a2e328ff release22-maint +29768 d31ddc66b1b551f99cffe4f86fbf3a439bca0b95 legacy-trunk +29769 316fddbc1e07eeebda806e1360281d6c854706d9 legacy-trunk +29770 ff5b510eba6b67945bf8312466d07c09ed38955f legacy-trunk +29771 6d0cd80e280430d88cb0021988587ce280bd9a2f legacy-trunk +29772 1bd9d9f02ad1b4562c8b038b5d064a68c7a394ed legacy-trunk +29773 bea991e65ffd39c89e8108cfd580deda34983a56 legacy-trunk +29774 bacd678b3c4ced234c2c6d9434ae27cc16283043 legacy-trunk +29775 f6e46585b6b34c0dc6be994c3e314401108d2786 release22-maint +29776 c77435d87c2e920dc405605c8b383439997433b7 legacy-trunk +29777 dcde25347e938901d51a3fed73022a82912c021f legacy-trunk +29778 e3b8f77a69800b2cb2b08dd095ed64df0cbcb5b5 legacy-trunk +29779 ff7ad32c9554edf28b9dd72df64a60b9309f627e legacy-trunk +29780 0c89937cebed376e40de69f86141f809529e3bf7 legacy-trunk +29781 080838e38e7c4ae84d22811e186bfa76b02b286e release22-maint +29782 32df8d5960d182fd7c4a11d2af2e2bc3fa8de240 legacy-trunk +29783 251dd136bac3bb03157c793d07132d500dbed062 release22-maint +29784 ef1e3832a9ea20235270c2b53bbe7244b3459bdf legacy-trunk +29785 403dcbc9043f6874d0ffadb4cd1140f3977293ce legacy-trunk +29786 7fc704cca1813bb3c07fc513ebca3af15419ca93 release22-maint +29787 baa47d7e84e25836092626ab12859376919b6f7c legacy-trunk +29788 f2fc38f8ca9de2e8b51d0367460d7eae3b326faa legacy-trunk +29789 8b638be76cbe240b564d4146bf7476096c42d0e4 legacy-trunk +29790 41ff50b4d097423b0f2a53c6d9bea446bbd54979 legacy-trunk +29791 8e6013bbe7a7c3c4fe99d0a5472ad9550f7d8b40 legacy-trunk +29792 3fd8c2aff305297399ff1fbf257887ebec14ab9b legacy-trunk +29793 a27ac9d32f2338faac4f89509e9e20f30aaf9aa0 legacy-trunk +29794 a4dba058f70eaffc3f8b36ce3185d9b7d704b73e legacy-trunk +29795 910fa739f4a4e7c348509c1f93e5d1a1b53f3ffc legacy-trunk +29796 90e9a3ecda449dc6bb1a6a5d9ab878888dfce89a legacy-trunk +29797 d41c4b95e714de18ff8324749a11a3e2727b3827 legacy-trunk +29798 680360e68a063a678a88a505253a79024bac3ac2 legacy-trunk +29799 fadcab65aa874b64921698c32fb8141e25ec722a legacy-trunk +29800 06754d73c63e4687be68e07bb4362707cb49b6ff legacy-trunk +29801 05d6ade3e92b4b1c5815d99e287070531affb4a6 legacy-trunk +29802 823896ce2e5d0568cb9c3437fe5e0128c3d2152a legacy-trunk +29803 2b0e815c0b307ffe3c5dc2130f05e4413d792827 legacy-trunk +29804 ea1d2050d7daaecf562adf50f905c697f88cadc2 legacy-trunk +29805 f3a69037fdf0fad3a59f03757e70df4bbc43dd62 legacy-trunk +29806 44d7eaae0d8d38b2262d32ccbeee0a6765c4ea58 legacy-trunk +29807 3086e111783a791041b8cd8dd503ef9d303b67b9 legacy-trunk +29808 60bd7af0324e80ca377c9445448343b98ac2fed6 legacy-trunk +29809 601b8fc12fb953a1870c789277bbdfc23a3968c4 legacy-trunk +29810 f3400ef02a459c47b2019925ebe80d524aa28192 legacy-trunk +29811 c76762d66f421c172e52c00a2454bc209473a8fe legacy-trunk +29812 957ca2c5179049a3583e548289870a16a4b6e09a legacy-trunk +29813 10871f44e7db29d6cdf638e79ea41f8c6d0a14ae legacy-trunk +29814 733e4b9d592ebceb094c299d098fdd58af11e396 legacy-trunk +29815 ac7872e554059bd98940347aaeaa16e72cca5a12 legacy-trunk +29816 6589c37c0ddd72b3f3c8e7f8489e74b536f051c8 legacy-trunk +29817 4ec1902ee6b77ca8d95c57401c9974260fe81107 legacy-trunk +29818 561185d13d5cc41f7612d6684ecb6397dfe1117d legacy-trunk +29819 f785270cee197d1714c859d38d3da6155b02cfbc legacy-trunk +29820 3c64ef87d5f89f5468044b287445dbccfb12fc6a legacy-trunk +29821 067a2ef6d8a9f16f3b8bb48780eed3802b26c036 legacy-trunk +29822 9f469da591a9e7faf1c5608982b552751a224dd0 legacy-trunk +29823 547de407c133473ed3f239cb64254890b42cc00a legacy-trunk +29824 3e02ead8de058007979f0b743b62fb7fa567f252 legacy-trunk +29825 46bb9ad8318f18fa4d54ce9fcfd734066be0df1a legacy-trunk +29826 7b9096501ea80d8059eecb9860c8163f890e1036 legacy-trunk +29827 abf565cf5b5474c82e4e901ce29271955123e8a2 legacy-trunk +29828 13c1aa15e0fb5da94837513d624ee208324ea0a0 legacy-trunk +29829 dc399e9cab8986e9272a383cf5df2992eddbfb0d legacy-trunk +29830 322b664a2022d8784a96338477526bcd9265bfae legacy-trunk +29831 35f125d52cf5a81b12c010b3ea3a0b516bbdc651 legacy-trunk +29832 8fe296ad5936b37028bed6f25dbffcb1deb0dbe6 legacy-trunk +29833 77093d57cca997be6485c82b0a695b0073e1199e legacy-trunk +29834 3f7aea5b93a1867928032a37b353a15dd78477bc legacy-trunk +29835 79118632e37e401e079cbe008fb52b769ed130af legacy-trunk +29836 54a74b0dfe26cfa62d969b22e534ccf335e1c0dc legacy-trunk +29837 8236d528841256bc1ed778bc00609470765a03fb legacy-trunk +29838 878fedc6c7e7c4e551430c32bedd6414e308d6cc release22-maint +29839 6e228e1aff38587e01e331837a4b2611911c6732 legacy-trunk +29840 b82428b17978fb0db6e0bf9052ea6d8a9b024f51 legacy-trunk +29841 4f2d5174bd4ac5b8eeba80f0c23b4a0e5778fa59 legacy-trunk +29842 d1d8959b138acfed9f64530283adf74023aed213 legacy-trunk +29843 08b720cd387e33595cb6a65d1f2c0d5669843c24 legacy-trunk +29844 0c7cb2746d8643458eda2def170d4da859840bfc legacy-trunk +29845 c1caa5bff292af52e0f02684bad1b2957d1d1608 legacy-trunk +29846 c2604d69aa5d52bc2d683cbc3a2780dbb58f3b11 legacy-trunk +29847 9e489a0df7b5af9d668d65390c8b620a9babeac5 legacy-trunk +29848 3d0e02976bc336647a79595bde52ca60489e7c87 legacy-trunk +29849 e168763e861a2c49127fcc847fbc5c1bc4a6d7ed legacy-trunk +29850 d4cc971d18a63e10fdfdc9fbdf901622c932a199 legacy-trunk +29851 135bb11215a094be862ab69924b85738e8bee634 legacy-trunk +29852 d0f2d1f3fc8542a6309c009a3b070c37e8bd7b7b legacy-trunk +29853 0f2766302ba0a9f368e78b5445db7e0dd4cb10fb legacy-trunk +29854 d2fb42ec8bb422e316da333627f9488f1a2071c0 legacy-trunk +29855 ab3763d477cc408a678cd13f1b1c469c54525b32 legacy-trunk +29856 1885b2d6393a8acd704c28398c1a93ca67ae10cd legacy-trunk +29857 f8a1ba446158469cec687bc2917d323f387f51f7 legacy-trunk +29858 119197fa61408ed5ab81031bffbabe4bc1ad302c legacy-trunk +29859 3d523dbc99beea4a79458b0d13cb4e536f52300f legacy-trunk +29860 e7486f3ef759a8b2e5427f400e2d97a2df831c3d legacy-trunk +29861 df556fdec69d05f35478e1dbc5c6e8b48bcb4b49 legacy-trunk +29862 1f800057b63728f5257a1a673476826645461ec0 legacy-trunk +29863 df719736e151b576468c3c0f9cb96fe60fc4dcca legacy-trunk +29864 fcf9734e10214be3c4f377075a3cac232ab6b5c3 legacy-trunk +29865 1baf1cddc0ecd969c674c7bcf74c9b6a3e204762 legacy-trunk +29866 8a010c27d6cb9a36cfe5ca9f55466d460ab9e435 legacy-trunk +29867 a8cadfb0ff832f6bcbcf0dad7f32ed9066a58094 legacy-trunk +29868 d207d1d78c5d5a1fbdd429b755b2416fbf1c7203 legacy-trunk +29869 482ae055bbd4fa0ac5c4cae5d57683ad20cf728e legacy-trunk +29870 bb38d7abc3fcdcf78a973fcc72d1b4d42264e308 legacy-trunk +29871 491bfc4a0f5bb62297a7cc7aaba4de3c9754e5b4 legacy-trunk +29872 b055e7883c83fc527466bd11391e55af6be4af0f legacy-trunk +29873 e3fae7b6c2078f4d8ac56e11f76e2cf08cfd7eb6 legacy-trunk +29874 b27c1cad77ea70750ec4f96fff83d10b4a80f739 legacy-trunk +29875 a0d752be557730be31902a94d9b398e392695157 legacy-trunk +29876 2812cace301acd7fe59253c42ce61cd05f1dcec4 legacy-trunk +29877 cc62854f636cf2107a783610584c91a2d6ffb7ee legacy-trunk +29878 4380435fef66504f4c1d48580a83724783ff1eba legacy-trunk +29879 cbd81d08c4301c4b80ccf93dbb8b42b0d83e981b legacy-trunk +29880 48816021f58829215fc5e9ea08a57ca0fffcefde legacy-trunk +29881 1b47b576e0d4a61d15f8f0d099d10bb0e943abbc legacy-trunk +29882 b38533e01d65fc9fa8bf9d7bfdea4fe387fbf481 legacy-trunk +29883 700e182b2901934277c3ac2702aa96eb8827d72c legacy-trunk +29884 f71017022fcecc62efc7567cb927463a9d6fcc64 legacy-trunk +29885 3fa6ded0a1e9480fe3bd837b5ed5a69cba74728d legacy-trunk +29886 544727d41f5687fec9579eeada235285a23bb248 legacy-trunk +29887 26918e2efd177aa7b8d192fe9223b94ca6b5cd10 legacy-trunk +29888 1a094ef0fc862c44bf0a1a86663246010c0333a2 legacy-trunk +29889 dde9c62a72fe03ab30c64a90b2ef24301f4a35a8 legacy-trunk +29890 569e193bf59fca703519222f71b19d3172b4ccc9 legacy-trunk +29891 f28355310867055b5183abc17d397f88e6cd5ecd legacy-trunk +29892 d58824ceb35d58679d32107cb446c4e71df1e587 legacy-trunk +29893 bd09e3a2d53640e83dcab2f48c2e581193676593 legacy-trunk +29894 03035523b385ee963bb2307d82c1a92f719ea126 release22-maint +29895 35f444ca5e05c373701677a0333499739c9fd8f9 legacy-trunk +29896 1e514e377613e1768260191bbc9af3b6ebd19353 legacy-trunk +29897 ab6c7b27a4cb914cd98bf6f6c7c6a5198efd51c3 legacy-trunk +29898 9d6aed2e60e28f6777d65e6ec08ca6f74b03212e legacy-trunk +29899 4d471526ace124b99d4bd12c3a7407d19a5cc9d6 legacy-trunk +29900 3d2869de2336cb1293a1290121cc32fb555871c4 legacy-trunk +29901 51d005781c86914f6a17dd6ade14963f3f697f11 legacy-trunk +29902 609b5f37f14fe2bd91f4d9c6168dd3925d6dd968 legacy-trunk +29903 4574b659ec37abd887b29e47b6a489c15bae1e3e legacy-trunk +29904 6511b16ffe89ffbefb9f7c1c4586fbe925b49cea legacy-trunk +29905 0103f0b75fe26347e88608edee8c654c1359bf1a legacy-trunk +29906 4bee33790940ccddf230a0d49ff37b43a3a4d6d7 legacy-trunk +29907 b0489a60597f74141c8c812beb74f1ccfe4e8e4a legacy-trunk +29908 ad75efe2f0a66c7fdd1f06a880add249a8de4c78 legacy-trunk +29909 c522c8c71cab0c10e856c573c01861b32a6fe9b9 legacy-trunk +29910 c6ffd8e61cce6dbcc0f0a138f6e659b1c73e6971 release22-maint +29911 6d5906853a7d907e6835501af4953d06e1bc7a9f legacy-trunk +29912 c2be4dc254055435870897e9729f3607c7358a3d release22-maint +29913 4a01209926916d9ab53e00860a4e9b3478ef7543 legacy-trunk +29914 57d03375aead77a859950249ab6fd86ae22bfda4 legacy-trunk +29915 d44945b81ffae00775f12fba85f17b73d4845461 legacy-trunk +29916 c5b1305081dfd1299fca9c595a3bb5156516051f legacy-trunk +29917 aa0e19b6e1e75a0c574ab773f158a4ccc3a96add legacy-trunk +29918 a350a487eac11b36559c9546d50a1ee31971d6e8 legacy-trunk +29919 367252214daf0f27529c0fb4a4ac7f56eeb268a5 legacy-trunk +29920 c1258b1a36c6f68df6c019ead9535fba6953a1ed legacy-trunk +29921 4ac38f28cd10a15ccc924c94c3cdb32701e2f3f2 legacy-trunk +29922 7421367274b45481ef271da627dfc6a7f52f6b44 legacy-trunk +29923 7777dceb66ee144ccc565fc3b5667c0478553b65 legacy-trunk +29924 7a09b36ca379c2c07d6d7918c0ff4e087f244110 legacy-trunk +29925 bddc4131533650d8bddd856150ff2b3cc0728aae legacy-trunk +29926 8ea2e35997a04b205430e8144c2e9c035513af59 legacy-trunk +29927 8b988a09de96dda669ac9750afe3692ee170dcdd release22-maint +29928 ca01f3de664e8b6093129195d644f597d0257945 legacy-trunk +29929 cb85aae789802ad67a655ec74bd7c8e013900c25 legacy-trunk +29930 60e57797b8e61a311caa29ea64cb568bec60cf88 legacy-trunk +29931 27204f0712a26ee8c458cf921f55b968b3f93064 legacy-trunk +29932 5c7a3a17310d1a2a8d36f73e3039aced66d13b3c legacy-trunk +29934 49f49aebf5c20be32d8e4cc62b910ff677872919 legacy-trunk +29935 e51cbdca2085ba972a77effbc80cbb6fc323692d legacy-trunk +29936 03afda9ad0908a3fc128e83e3bb2360963ece037 legacy-trunk +29937 dd817bb3646bcb92ddd94ddc043da644facdc661 legacy-trunk +29938 37a178c0fd59f2f2432e98c557be89030fffa73b legacy-trunk +29939 ddbb057e5ab315bce9461d1c062690d438a1f4a1 legacy-trunk +29940 15957b7e42479e2999fd80e49df3753a5bee3a0b legacy-trunk +29941 c88f6fff1c3f1c7817364d339d9ba8e1321b86a6 legacy-trunk +29942 14fc187334c5815a98e381d0bd1e7a18a4f5c849 legacy-trunk +29943 e1a33136b4e267bbf4989bc33333626667b85b12 legacy-trunk +29944 418a7ec9259930fff873573455355d3da746cdd7 legacy-trunk +29945 a573af5db807452eac74c716ea2f9ea7d9f027fd legacy-trunk +29946 fbb24cd54766ce77b90e305bae50c69bc3b094d9 legacy-trunk +29947 f79ebbaa48334d582eddcdd5ab82d27addca1435 legacy-trunk +29948 95edb48dbfa16f63e682be8b0d3b180570783b61 legacy-trunk +29949 99c78cf9561051a9a030a5ceadc04c6616efec89 legacy-trunk +29950 b8fffbbd68326636ddd661b4e3e8c1c8da134b6a legacy-trunk +29951 0690f81cce78be74a10820c099ced15db63e730f legacy-trunk +29952 13838530f61957447f9d99a0400848d526d0ae5a legacy-trunk +29953 6c45985a8fdbff3aa14d763457bb86646e3fb22f legacy-trunk +29954 f255b3f5e91361c44eac32e1ffeac22660786a88 legacy-trunk +29955 e07948d5cf67c45dc7f88198b29104bb8c4c85b9 legacy-trunk +29956 7468b68e98286f4ec1ac17de3bfccb40f9cc0bdd legacy-trunk +29957 d1b4e7016d88a52eb8b62cd547c98aaaf711d62c legacy-trunk +29958 7ba072db3828f7d3ad96260c6b4a3863acfe81d7 legacy-trunk +29959 b268a6e859cb7b28649cef98aa8dd3bd9c62d891 legacy-trunk +29960 28efe16a8b7df7ad0e964dc28346c54a5ebd46a2 legacy-trunk +29961 e26a208ea71b835716fa03b5e5f2d7481eb44753 legacy-trunk +29962 0f848b06146f0c975467da0148e5544dd800ce8d legacy-trunk +29963 b4ce6ac17f6079e66f3421a8f065b07d082e423d legacy-trunk +29964 2f40fa79b59a5f279c03d71acc0d1fd9dd8a43d0 legacy-trunk +29965 b8a7c4cf3e6d260059720eccb582079aaaf35cfb legacy-trunk +29966 c135fb2bb825ae8085b281fc69296f2d33abe775 legacy-trunk +29967 a56e0b2517bd83564a823d69b720f6b1ad130ff5 release22-maint +29968 af4698e591ecc8e2985b3e913c20d2fd40eead2a release22-maint +29969 e0b596060313e63708f7a294e5b00fefa441614a legacy-trunk +29970 238cac97d16584be3155b7a4ed444c4e66af5419 legacy-trunk +29971 b31bd004f430c73388a09c73b0a823e71b608d18 legacy-trunk +29972 3f8019273549ecf2a89e96ebdc6fdfcf039bb00e legacy-trunk +29973 5467c6e1f541b04feb501739874e7fc006f87664 legacy-trunk +29974 2775de35dd29d49ced506d6b72d0ac715a76fd1c legacy-trunk +29975 f0772bd7cc4012c20f874f813d8930c848846fad legacy-trunk +29976 f8d1c6820bfaec5389d771966175243edee4a46d legacy-trunk +29977 76f79bb36fc773dc91ae41397fd5e7ec3cad5419 legacy-trunk +29978 cd1fe4b5f7ffcc23ee9c92b962465a925e1db48a legacy-trunk +29979 f86130f45bf750d8f9bd88d5e24dbd69d6391ee9 legacy-trunk +29980 671327195dc30ea5d2c47eb29495726063606722 legacy-trunk +29981 825445f9d6b8b02c8ebca22275a81cf1df4b050f legacy-trunk +29982 0015d3f189e149a29b66a52175a68404d2dcc737 legacy-trunk +29983 eda8e6898dd3ee7c11e32d0e948d7a5f3aadd7cd legacy-trunk +29984 a9b4b6aa12202774ce4833e3d2eb05dc00490a50 legacy-trunk +29985 fa4532ef99c9a9f0883a2b11beb1a9b488637bf2 legacy-trunk +29986 e923f6d3b4a330917717fdb6973ce0028e57a08a legacy-trunk +29987 9e4c80340fa1d9755ef2cd83fb58fb23339d611e legacy-trunk +29988 f40a2d3a2ab55372a5cf6f2d124d0f870059bcd5 legacy-trunk +29989 2d44abe57b4263840dcf80589432cce33cd61dc7 legacy-trunk +29990 376bd357c4d5ae6d167a2fad7a7d626e54ef0694 legacy-trunk +29991 5a9e7064c9234d127d20847b0399ec31d09b044e legacy-trunk +29992 643100170bde91f865e8ec3e804560e446bcdc6a legacy-trunk +29993 50c633a87e35547f1b3d9ca0a2c9c7b8b381b500 legacy-trunk +29994 fd6fb73fb20fda1fc988e9e8ccf409e7df673c78 release22-maint +29995 8504591e4c631b4477aa01c5a0a563f900d13f9d legacy-trunk +29996 94c553eb88c3a57792cd9e9f7ea6424812527d52 legacy-trunk +29997 0b66d4e9f4f4859679b5b40580de304222d8d2ff legacy-trunk +29998 17d123f33611060058aa54dff03652c67d3f88da legacy-trunk +29999 79f9063fb58ecb28dab984b08f078c7ff1624474 release22-maint +30000 4c16428fbcd83c5f1703902668dbe09ac7232b40 legacy-trunk +30001 a5a8735711e816f851d42bdde840b290e75adc4a legacy-trunk +30002 7aba859cee545327c88e554e5ae31b3135be048c legacy-trunk +30003 d2d7817fccbbbae13d8e917e522a7e9c6307a311 legacy-trunk +30004 9fb8aade887f855cfd25b1708c807031079ec83e legacy-trunk +30005 18dcf80e6f8dedd4e1c09fcdaf5e2672581b2c9b legacy-trunk +30006 38fe5eb6ac25672126179ee2e02793f9e45e5923 legacy-trunk +30007 3981cf2a5730534d896dc74dc3fbbbce5939d058 legacy-trunk +30008 b5837b8f3b2c4c2b6b005eff2767ca13f51ebbc4 legacy-trunk +30009 8e1567dbcba893fe66b3c093079d3d69ccc70c0a legacy-trunk +30010 6177a13e4c145a40d18f2cba0efe4c4effed0aad legacy-trunk +30011 d6d5222b7e5552a92e7a20ab543aade7927f67fc legacy-trunk +30012 ca6fa69711bb5e0e2df969f3f02a7a9d82972379 legacy-trunk +30013 61e2b8cefd86700bf1dcf1d073be03ce7bbf3ae0 legacy-trunk +30014 6ea786528395ab7440797a923d47b2b0a3d7ac69 legacy-trunk +30015 997fa02244bac2c2ad065a69d83b1b276736ebd2 legacy-trunk +30016 2621968319f0344a2fc179e2e7298ac46551fb9f legacy-trunk +30017 0e6e39fb9cd732ad6dd01c884021d4025e65d3f9 legacy-trunk +30018 910fb66c3b81cbce3b658ca2fb2b61951bd98a5d legacy-trunk +30019 e42732e289b9a416dcc666f4d3e6d9c8a34c7d84 legacy-trunk +30020 58440d0b9b4ea6c7c6bcc82d9d2ecb552ae29f06 legacy-trunk +30021 975482d5eb5ce794d5213e4828b95068e57ef3a8 legacy-trunk +30022 9970d77980a0e2fb939c9099ab73405439bc4443 legacy-trunk +30023 8a75c66bfa14de4ba72acc5a0449ef9fa4600c28 legacy-trunk +30024 09c7ed1b7a8739d827967228c6014dd78dc76143 legacy-trunk +30025 687b4b165268c759fd477e288eb8550bb6220a96 release22-maint +30026 67912d83799f73c0ce957164b901d24d06dbd8ab legacy-trunk +30027 8b3601a62336332de24b06b34bff457e95866e27 legacy-trunk +30028 b9c912e2c3c0063dc90b54554051bccaa88184d7 legacy-trunk +30029 0c995cd070267719603fa713d95cea493cff2c1f legacy-trunk +30030 4e6ac2fe68f0bca8e3f190609aa8f03791f86b7d release22-maint +30031 c884a6c47e060e8b1ff03039ee54b9560cdf39c2 release22-maint +30032 4bebf1a19319c415ce93c3dd7c01438e40f6d77e legacy-trunk +30033 a36dffd753009b8ef3ee92a3d81270a597e2f886 release22-maint +30034 242ad5c592cc2afda85da0bc293a1ead42b9db84 legacy-trunk +30035 4be62dc9a3e7d749260c43148c727df575d078ae legacy-trunk +30036 701b797bbdc8fb4460d0e3532cc0c143122a5669 legacy-trunk +30037 0dbf98ee118e26953b6171c4ddb9a84ba45ebc89 legacy-trunk +30038 8f743ebe6c6632b00a3cb2ef137cc6742fded6a8 release22-maint +30039 12bc4a3e45af8a24c1b8ecfeb86db85dd72b7348 legacy-trunk +30040 851c629205d2f3fae32a8444989348d6e0989859 legacy-trunk +30041 b566be8bfc23c790264de0c8bd251d3571da44c6 legacy-trunk +30042 fa65f94dc4cdbc74590f58087501bd41bd1e154c legacy-trunk +30043 a9f6c006aa458869096c438f531fefcce4b588d7 legacy-trunk +30044 715e2888f377fb92ed213fc459cadbcad0648768 release22-maint +30045 0601a90558fdbaf39ecbd786eab69f86b5156349 legacy-trunk +30046 342c34c438a2608a155465fa2ae483604c6ea5e8 release22-maint +30047 82b9f5c7d01a146627fee68f4aba4f5abadf81a5 legacy-trunk +30048 2aba1ac4744c967939552fee8dbdb57f0025de80 legacy-trunk +30049 cb8cfadf75a27bf8b53e3a068b0798a1e958a592 legacy-trunk +30050 d755d4292f3ffb12fb817c703e2267fc79d6e350 legacy-trunk +30051 29e8de59756a45b62edfcb88268b50d910f7ac49 release22-maint +30052 1d9e30c05cde4cb269ac15ddec617ade04bd7b7e legacy-trunk +30053 93b5ca9423eb2795bd7a318133113b957fd70a52 legacy-trunk +30054 7ae9c36cbcb66a719beca803490f0b8272ea3fe2 legacy-trunk +30055 405239a7e0d8bc9488c7b86bc1ac2beb16551a5c legacy-trunk +30056 8ca80843a6716175997290e96ada02cad97431cb legacy-trunk +30057 e8940d4cd8cae7ae36fcfbffe66473e3dea8b16e legacy-trunk +30058 d4b76817c9e63c65103f7c433e9371573fab260a legacy-trunk +30059 9206b004f152c43d5a1edfc2d23b2f0f54abad54 legacy-trunk +30060 952687ea9cb12d98d6601e4c802cd735c4a169a7 legacy-trunk +30061 8991f78817c79004a0c8173fc94cb162d6319c19 legacy-trunk +30062 4e94aa07276862055f4549b2b966c9d16e864d0f legacy-trunk +30063 3f4383a04b6254b36a2e3302f77d8bd7790353ee legacy-trunk +30064 e64425bb94d89a320c903bb7f112927733b2ed5b legacy-trunk +30065 81032e97ba3ca20021d5af9799f1b1020d928108 legacy-trunk +30066 f5b4e17749617a9601057785241cee4a6bd8007c legacy-trunk +30067 f9d516c61e7b932cf65f7ea8f705981495195138 legacy-trunk +30068 615a25a6eb5baac666fb54654ba53e9ba5051c27 legacy-trunk +30069 c234f48de138f499b0d4d9f374ce751be3b4a529 legacy-trunk +30070 0c646baeec582325bb1d940d3d60910b16ed325d legacy-trunk +30071 211038505e56c4eb973abb56a02e123a9b3772c4 legacy-trunk +30072 056387767832559801ab50398fcdb3aa5b3356ca legacy-trunk +30073 c35768d7883e4847e9ec60bd9b0b62f28a25a234 legacy-trunk +30074 3084bf8bd11c0aa60a3f3618f104c8c07ded2434 legacy-trunk +30075 7ddea4dfa519d3ad8e602a984b1ef73227571a66 legacy-trunk +30076 56dbd9079a13ed6ef741af5647abb2346201adb0 legacy-trunk +30077 ecea8410178e065b12740fe3171f61f7d5d2f109 legacy-trunk +30078 75bfc24fd74850d17e952325ab55dd5cc756a600 legacy-trunk +30079 cc05c2c8660e0c68accbc56bd8e68872de55f169 legacy-trunk +30080 c163ed17f8ba385aa87c03492c54cd7a0e516dcf legacy-trunk +30081 bfb2664cdb1be87c01d61dd48b085221acf61037 legacy-trunk +30082 af5119be221f439993f3cd42bc82c35ea82e1419 legacy-trunk +30083 378ce020d9e68c675f466e12eb2a4e55cd0e28bb legacy-trunk +30084 9db396bce4e75f205b74302ef38dfc41641a1623 legacy-trunk +30085 e39e74aea2fb8a73414d9fdc5d64e0e7e59ce81b legacy-trunk +30086 14f53b6d7f58b204b6dc38be58f9be3b3a654c3b legacy-trunk +30087 2fab0b6488b510ac9363298f52ce105054b25a35 legacy-trunk +30088 74d1ad61f843cb2fe4e8e2bc038cb875ff6b4a3a legacy-trunk +30089 8771993c9aacada40fb8122c403592c68a52db4c legacy-trunk +30090 97f83542f8eefaae1df41bc4e9579db91d4af013 legacy-trunk +30091 28bc2d3af91db689d408018275c8f6232566b814 legacy-trunk +30092 2c7bdbb50e7628ca50313dbd1a05deed008f290a legacy-trunk +30093 02785248e00a6f44c7f156b0ed29811d2c14217d legacy-trunk +30094 20e0755f35541d69ee649771913e9607b0918ce1 legacy-trunk +30095 3be4f5d377d8b2c54a765898be854b8b08c95d84 legacy-trunk +30096 9e751eee81f504e4525e644b82014a84951ebac7 legacy-trunk +30097 b62998f98973e331d81acab712f413e21f12f216 legacy-trunk +30098 cb93d9287b4eaec4df30e864f41293990a3d04e8 legacy-trunk +30099 7d192875a12f79902abf3619e0bdae8565d264da legacy-trunk +30100 19507a1d02548eba92d4d9a4ce1e93b7410bc6ba legacy-trunk +30101 8096dcc7af65bbb6103cf6df47b162de1c064cf5 legacy-trunk +30102 637b10b52e02e67f34361dcb0aa140caf794026e legacy-trunk +30103 ba1578be5706ed5e95db1734c8ac00c8b7e5de56 legacy-trunk +30104 e41ee2b8e73deacef6cf1e61774ae65b6e322a8b legacy-trunk +30105 7babdaea7d19d7f3a1b2a1d8b9e29510e0253eb7 legacy-trunk +30106 8dfc0fc4c14b510010220b51ef8245b59a716b4b legacy-trunk +30107 98164666d2a8972a475f2931e37b62a9aa0456bc legacy-trunk +30108 59dd9257bc0316f6ac765c5e2081a4ce2779e8f2 legacy-trunk +30109 d7d525e30cc020f6158df05fbde87af6c5dfcdd1 legacy-trunk +30110 890aa93dd9c38e73268c418349d5bbe6021dfae0 legacy-trunk +30111 b0bf3604244fd59cd3dcc7a76db0308d93eb72d8 legacy-trunk +30112 fd455df55b135bb533db8b8a16d2a1e11b5d733e legacy-trunk +30113 96b8c8ae7262edd68ee8fb8be38c803722ee02d7 legacy-trunk +30114 c69b8e61e695bd1e89d8f40443e94f8bc976321b legacy-trunk +30115 3429955724b27922d6a7aee54ea2bb8475b01953 legacy-trunk +30116 fd6be87e5c297e58bb703f406030e98af8118d6c legacy-trunk +30117 0ff47362bb8114a046e790a40f898250d1e9f38d legacy-trunk +30118 bb6ea07909479a63d673c70ccbe489c279438557 legacy-trunk +30119 e783cdfa0b419a1b404b0efba38a5a6ee6b2f097 legacy-trunk +30120 d2302339a8ad784234cc65a6e89a8810d537b9a9 legacy-trunk +30121 02ba4663cad2127a60ae6b0a2ff8fa2c6d268f40 legacy-trunk +30122 41188e389c6144f2c1e9388a3093eda8c49c562f legacy-trunk +30123 d176cbfd3765600eaa3957759f45181d9f6ebb1a legacy-trunk +30124 9267dffff32d31d3e1670fb2cd56fe9f9baf1f77 legacy-trunk +30125 f883ed7b93c868db12ee74443885fc1385f54f4b legacy-trunk +30126 6efa8216db6a892827a61fad6273b78e23400c1a legacy-trunk +30127 7b1d107e63ae6f76a5e52006e7a38fd71538a4ec legacy-trunk +30128 caa245af7786418d53af805b430600905d7beeaf legacy-trunk +30129 6e2c2f1221e53528b6cbc9e447cb1a0fdd0dbb6d legacy-trunk +30130 4834f8368036386d7cf2d03a48ff9146c9c91efe legacy-trunk +30131 a800015e7cf2a6db08b67633f6d0c020517c8977 legacy-trunk +30132 61b3d179f868e741569c2964ac1c1b6a404101c0 legacy-trunk +30133 f356fcb70eae55d37371feff0592333da78f9779 legacy-trunk +30134 b7bf38d44598f5589c0943e85abd7bcbef4c7547 legacy-trunk +30135 63d7b5e396fb89d1ee8cfd768760dab6712ddbd8 legacy-trunk +30136 40f8b648e7659b79154071d26402a233d79772fb legacy-trunk +30137 d99e38bb6dcd35bbaabe27a1b7ef4f3acbf26bfd legacy-trunk +30138 f838bc9056cc379d59c2b2ffee5c030e13186061 legacy-trunk +30139 b12e326b4ea247f4c57517c8167a10f1dbb2872b legacy-trunk +30140 e8dc1a0d6f4d4d10a40df754b95d2902aa42d7cd legacy-trunk +30141 338e025fde8b516e8ec9bbed5222ded39a5e9e91 legacy-trunk +30142 fe2d422385b1fee66f9987ab6e0a99221bc016e5 legacy-trunk +30143 cb06bfc8877b249b2cf9ffd956ec63d0fe1fee9e legacy-trunk +30144 98d11855b46cceef8343bd7f4f154b3329868b23 legacy-trunk +30145 f76717707a6d7a092c2f402b0fec6bbb1923a6de legacy-trunk +30146 373d0a8ed6be64a5d1f1fdf4ee09ec87a3a2945b legacy-trunk +30147 ed28b9752f8d2abf8de54f774b2dabfc5a037d0e legacy-trunk +30148 1312297887a3f7e06ea9b3ce8cd1dc7a25d47c38 legacy-trunk +30149 300f926f2b3eb58fd49f041e3c4d23b01a796baf legacy-trunk +30150 8dd25a6f5913904c7da83236f7a174d6e444f9b1 legacy-trunk +30151 5b715cad34d0825dc18318ea1dbd4e91ff7708d7 legacy-trunk +30152 c7ec8ad0234faf4d219751507b553dd1f1eebc36 legacy-trunk +30153 bc9056d847ef7d46fae5954dba5ef7e2960b4fdc legacy-trunk +30154 f7d8d49e8f5de27cb3c1e7901628c0e66e523819 legacy-trunk +30155 43b54c2bc4e60205de05aad7702530f0b2d488cc legacy-trunk +30156 78d872cd064c2edc490cd9c690a87c55e343f290 legacy-trunk +30157 ab50a21b87aea12df1811a0ae4f5abd811e345da release22-maint +30158 bc6662ba3a7755bba568fa22cffdd3e17e29abaf release22-maint +30159 5791019b6e4e8e2beeac4d4fac16eb054d9c8bde legacy-trunk +30160 c11a6e1cede0de18e15c41ba965d4f9b2613df2f legacy-trunk +30161 6059e41bd77a3e5793a85c7634cdfcf57d796a8b legacy-trunk +30162 a9974a48a4d6cf9acc0f522a3a74bf65b36ddab2 legacy-trunk +30163 a20cb5abab6b78f5a5ccfb3acad8e07216478743 legacy-trunk +30164 ad3f66e7fb1042013a941a1f0fec45ff2e40f743 legacy-trunk +30165 6b390548c6980040b8021fdce0e3e8481b3007dd legacy-trunk +30166 c74b69ab4742ab848474fcf578ecdca92680b3ee legacy-trunk +30167 2318f4bb0bc5cd85bee74db0e25c20e821bcdb28 legacy-trunk +30168 2e0dc9e08222896a34258430a9ac003e2e815eb9 legacy-trunk +30169 36cd2641e82674cfc42a9e087b0f0a8637ca152c legacy-trunk +30170 4173e43ef40cce66f63dddacf1dc0723d085ef4b legacy-trunk +30171 975333d40bf832a402a06bfa9662a66aba098015 legacy-trunk +30172 c4286a6ab00c9e35b9c6ac24cea97a2dada821ad legacy-trunk +30173 49ceee026d663e2089a447d1a2433309c5495951 legacy-trunk +30174 51e74321ad3d6073db39f40097cfbc2872f6e898 legacy-trunk +30175 a223e25541901ce7768c6cef5ed4319c969a7218 legacy-trunk +30176 af660cab1cbe911de9cefeda0b47dd91a7692c40 legacy-trunk +30177 e404bbeff08371b35cc61f5517fb6464fef1b343 legacy-trunk +30178 3ed47b07850819d1daf533c7fbe160096d45463f legacy-trunk +30179 45ab31127bf922b99a5429e9cd81631564934d18 legacy-trunk +30180 101fe32f56ffea5408a8028f722dd2653d571fd9 legacy-trunk +30181 bfe38961ca42c886d51d3718af98e9511c101753 legacy-trunk +30182 f91d78e19c866f9e68da5ed8fafd1b18921fe496 legacy-trunk +30183 2ed34f01c81ca12a7e3f700b1c3a890079c46206 legacy-trunk +30184 d64214694083bebd4d284dc9c0d7bd4b6355fb28 legacy-trunk +30185 1e170a95b64fdefb8fe161a9b01041bfa1845ba8 legacy-trunk +30186 3593f2b91d7d605e5c45808e8348e82c1b6db592 legacy-trunk +30187 89317d93f639739e1662c62fcf2644be4751d16d legacy-trunk +30188 d348b17ceaad69363f986cc0f627aab718d2cbd5 legacy-trunk +30189 d939adbca774f00db9f4b20c83d11a24475c725b legacy-trunk +30190 04b3a9f6be41f4e42e70148b2570930cfcc4a6b3 legacy-trunk +30191 eab6d7c803419179d202190b9ca3b9a64c3a86bb legacy-trunk +30192 2f523ae90e060c87b3e56a2b3424c4f62c2c3090 legacy-trunk +30193 e82326996481b2104038a6093642b0386e0af77e legacy-trunk +30194 a3600c4ecc8bf2c22abe49c6c1450339de74a474 legacy-trunk +30195 f55f5e1e30bc9257597a3045099bf13cab50566f legacy-trunk +30196 dfcc2057a755ae7c6f9dcb8080deae3de051e5d2 legacy-trunk +30197 538447c9d543db2b40534f2a4bd53957574f2a95 legacy-trunk +30198 a12e1727850af9b0615fcd9fd44cd35402791537 legacy-trunk +30199 cfd5a682937e0c4364984ae6ab5835abf0b3eb4e legacy-trunk +30200 924c4f22bac79491cc9a9f8216ad1a77c69cd2b3 legacy-trunk +30201 a54363ea694605691a33074b2a1ae9117c49d8dd legacy-trunk +30202 901e47cc8cacc820f35523e5c1610de95ef700d7 legacy-trunk +30203 966b8279d1fad8144be37b1c950357fc88bde12b legacy-trunk +30204 4967790472dbd3ec5fa8bc02e02ea8cd379f57f3 legacy-trunk +30205 c7c2b222bb8ae8d4c6ff5c2824c8f2c430faea3e legacy-trunk +30206 5fba51f3729b2ddf585f3a992e912b84ab988a6a legacy-trunk +30207 41bd37bef3c773beb523dc0977e712d7b8c39736 legacy-trunk +30208 9b4c014b3a218e76a9d9760c7d455f446a7fa446 legacy-trunk +30209 573e482edec1a5836916c2ec1a0be944c5d1c8ed legacy-trunk +30210 a03ce5d8f29754f76c6fd68c65e32c38261595c2 legacy-trunk +30211 709f9054158521874807f6a7e012ebb912172d53 legacy-trunk +30212 d8fda4818bfd5f56aa52057bebef50160aedb290 legacy-trunk +30213 16aff7077e4bee4ac0970aaad144c5840121aed9 legacy-trunk +30214 2b46d7292f277430cffc38c4b36aa969d5ecc5cc legacy-trunk +30215 6f1f84203ecf0b1a565507bdd03c8da85abcacee legacy-trunk +30216 78e857e9dd4769055f4881d3e8fb99131c486d26 legacy-trunk +30217 c65e8cb91f4c36d9df8b9dfd7aa8c7b4f63b6b8f legacy-trunk +30218 72cf089d634a1984349127336225c1bbf4e99009 legacy-trunk +30219 cadfce66d8619a6bc3579d6a22af8b7a56c246f8 legacy-trunk +30220 2f3d6b79f11bd3c4dbd10cadcb381fbd45f1c993 legacy-trunk +30221 d052112731a8e25bf1721b1f51c1fe69a85948f0 legacy-trunk +30222 b0acf5de3421ce0f6ca9041bd78e2ccac393e518 legacy-trunk +30223 c1c8bdc4e3dbdcf0b9bd022a8f84888fe511b07d legacy-trunk +30224 06586404ec4cda3020d269e5c7b213e79f766eb8 legacy-trunk +30225 336968821dcbce1aa8d06d01d4d8777da59e124f legacy-trunk +30226 db9fca1450584b53a3e9000593dd9427109d8429 legacy-trunk +30227 60b389a4dc085501ae455673bf919f3651ecacf2 legacy-trunk +30228 b9e45b828ae11a0e55cebede6b502a9b5b8d34a5 legacy-trunk +30229 65acec9cbe69227e52fd6c37005508c61554adc6 legacy-trunk +30230 16288b054fc3f1330db78a77b2557e8c530e3308 release22-maint +30231 7c15bf7726b24e522500e46e002ece257cae6608 legacy-trunk +30232 8c3ef524faa067fdb8637ac1595c11f255fac9be legacy-trunk +30233 95bc0c0520345087d305213836c248a4f4e44254 legacy-trunk +30234 ccf0b027b5856d57bf36b8d3617e31d39067d3b4 legacy-trunk +30235 7fd1bf20a0c0e9cba517f2fcd3690db05abc0d0b legacy-trunk +30236 c1272f3f28f5179b233d3c6e37c00364e616cc1c legacy-trunk +30237 ecc27a1c33ca798952e12dec33800c2a1efdcb34 legacy-trunk +30238 620096fd5564c36d037663edbf974dcb40c985e0 legacy-trunk +30239 c609cd4906fb4aedac3caa544a2827122fe23e08 legacy-trunk +30240 49d022b5fd6405190f9566f6abc5c6dd6ea33c81 legacy-trunk +30241 4c9fe4905e8fa06b27d59257e793d64fe22048c5 legacy-trunk +30242 6b31b26e418ddc8459e26e4a775e8aa9850d0b5f legacy-trunk +30243 095440b975a1c87058ff973f616d956a4711d39b legacy-trunk +30244 af217cca3bfc7c1348d84869bd32918d42584fd3 legacy-trunk +30245 ad263d26825548024809e862c1c2d1d813bca527 legacy-trunk +30246 346a07270e87dd649c8b3c208a6209ba3fafc08b legacy-trunk +30247 aef3a03a79f10e177ae0d7cb56d1ec64af5e3057 legacy-trunk +30248 8aa756e5accc85fccc9b156fa7d8c74af2467dcf legacy-trunk +30249 fc7fdec3fb863d2c91293baad63982ae0bcce401 legacy-trunk +30250 240fdbef8c60c36a0b88a8d164dfb6cb7b9addb7 legacy-trunk +30251 0f1405ace437e926c9b84522ef2dad58cc2b2196 legacy-trunk +30252 89dd74f7ae326c0ee32e4204bebae0a3a1a796b7 legacy-trunk +30253 d160816b91e583d230dbc8d0484c52459ed96839 legacy-trunk +30254 f85cb0895535de768a60d9bcee2f33798f94b1d0 legacy-trunk +30255 bb4df0000b6d1ac4e771f37a5512155a619d2b31 legacy-trunk +30256 44d7468d6db6e233918bedf8090f1898337d2605 legacy-trunk +30257 92a406115e7cd341666ba25065f0ee22d88bec4c release22-maint +30258 5efe6b0ac0e6bcc20a560ab8f300df50b25827ac release22-maint +30259 c55e6e601b998d72b89a56b80ddb3bebe963e618 legacy-trunk +30260 bc7f8913f5ca866cae8a21dbf71f2f9caee4f471 release22-maint +30261 30013429bb8459e3b806407369bcbb1400eb3fbf legacy-trunk +30262 8e27512cc17ddcb7d47b717c5bc74a3f6631dd9d release22-maint +30263 0b34f51eab4ea487ba1c01ce9941346d6a70eea1 legacy-trunk +30264 7c5196f01524b9e97c182268c66d6a7ee9747130 legacy-trunk +30265 2f28436060c45654bb8581fcc07514ca2c59e0a5 legacy-trunk +30266 143922a40fac6f7dd500454586950a85e2c319dd legacy-trunk +30267 fbc85aaa260ba1ac4d589a7a54b26975515b7008 legacy-trunk +30268 89c9c6c405ef8c415de87f0136606d04560b66e9 legacy-trunk +30269 58bd7100ee157f17b85d944801ac1ec2fe54fcc1 legacy-trunk +30270 816b8ddccfe1651614d164018999cd683ac9391e legacy-trunk +30271 db9388f37d8c471f1fd54d8c07677686195af787 legacy-trunk +30272 06868376aa28d39fc6e9ea289d91556e9797acb4 legacy-trunk +30273 a2d402e7cd8add32a78bfad25b22ae73df4e8fd8 legacy-trunk +30274 cf73663cff59ea4163d8f1295133ce880621dce0 legacy-trunk +30275 47e7c70e841fe33027c4eb9a96c69dedadcc6ff5 legacy-trunk +30276 0f06156c8e03766f9ff4fd18975887eecf3e1d3b legacy-trunk +30277 507aa96a128ffdad9417ba54e9eeebc5e254aeca legacy-trunk +30278 b2b4797052c6fdcdcbfefc61b9433a94cc321b5a legacy-trunk +30279 299621eca9ad5312ee42f03af752957ffd0156ed legacy-trunk +30280 30a7738943818b7ad50226c0bb0de8a6847126c8 legacy-trunk +30281 82d8b5c6ac4a7fc2ee7d9ee0c8290966a0a42ed3 legacy-trunk +30282 2585d4596d903b0a1080e8ab5a43f666d43814c5 legacy-trunk +30283 ffc1e9e5ff9a7247cea6b567a52bf89aaea58375 legacy-trunk +30284 b204b4a72b4ee8baf0450c9a5b32fb38c14cb09a legacy-trunk +30285 2319d13d54f575155058f5710320730cc2759804 legacy-trunk +30286 7f81d16e2c5d7aa384cec19f1e37248d2a1200b2 legacy-trunk +30287 858ee11714a632427e33c87bc6f81a2916a580f9 legacy-trunk +30288 9d0e62c9a128d7a147162b3b567a6fc1a6e6c2b8 legacy-trunk +30289 edf304e60cc61ed9b6e411e928db8095b511e91c legacy-trunk +30290 178844988812f2df0628c23f205bbdc69d53c95b legacy-trunk +30291 2251195a3dd1fce714f51bf8dbe17c58aed730bf legacy-trunk +30292 7c8af1979e7885b778995e738450294d77d26e67 legacy-trunk +30293 8eccfae04bb4f6fe661941c82784b581c207886d legacy-trunk +30294 6932794817c2d1df116a94ef6337c24f3d56417c legacy-trunk +30295 0c85a947e2c000d667b934b32b2bcf0ea2464ea6 release22-maint +30296 e094a03a80ff45ef6cf34c1c2c8b58cbf8f07603 legacy-trunk +30297 57a00db731fcf1f2ccd34d827217ba914a1715e3 legacy-trunk +30298 6bbbe67d1eaf717319df7eec6b9796bbed897acc legacy-trunk +30299 d6f483fc9e02e3ded7bfe8fdd03a82c80d3027c6 legacy-trunk +30300 fea92e7ec67ae3505590972609d1dfb680513e24 legacy-trunk +30301 2e2195fe6c28a794ffe9c56d36ec1c75193330ed legacy-trunk +30302 fb36d9b50df58c871f94aea1b9b7fcb2a8d96427 legacy-trunk +30303 e153961f961f2f6ba71777d221029456ae15d95a legacy-trunk +30304 3c32a94b0b1762629ab9b1bc0af2da6dd8881848 legacy-trunk +30305 13d59dbfb8d44ae64bbadebb401165bb5d2a444e legacy-trunk +30306 7d7a01bfcaafb86975dbe67d0d528908d29f9494 legacy-trunk +30307 f64c96922708a5104bfb06e8de7a4f6de739b3aa legacy-trunk +30308 f4b1beed64052d0b3c51b76d25ad854a33691d4d legacy-trunk +30309 9e409107aeeaa1f3c31b830aa7fbba4788768d23 legacy-trunk +30310 bb1546b4601bd0d2fbe17d110778ba1c7177454f legacy-trunk +30311 58d75a3c8afea7ea4df3131773f7e461f3bb07c1 legacy-trunk +30312 3e1bd137d3c2b88a5824e1f5da63b713b21adb2d legacy-trunk +30313 5ccde8a1526a40d92dc54c8db79b67ec3f1099c5 legacy-trunk +30314 79c9a07b289659286f14351fda3824189da96a84 legacy-trunk +30315 15bb676f2e8c0f2c2f8d848e57123e131dbd5aa5 legacy-trunk +30316 00075f1ef866bf44ac7d8240f4e1b90cb953c336 legacy-trunk +30317 c44d994b39e542696244c586eaaad05abba1aa7c legacy-trunk +30318 786798e86469cb808c3008cc5e4619da1372ef8a legacy-trunk +30319 37ef017646c4618a3fc0bcafa00328cdeb961bc4 legacy-trunk +30320 d2b03628140313b88a1d02346f669133424052e9 legacy-trunk +30321 a9b522e545cf6f083e09cfb79a9c85ded612ebc0 legacy-trunk +30322 5419ef4a4d70b0c5fda29a848ae1ad721da9873b legacy-trunk +30323 673dcb9b51ce2bdf12dda3512edc22bf4fcb9e03 legacy-trunk +30324 fc5169aa41cef85b9697c3942fdf955325b65501 legacy-trunk +30325 ea75919c769db65db2f49b598e04317f5e26a883 legacy-trunk +30326 865c59b5bfd712828f34cad5a377d8ce0093f585 legacy-trunk +30327 bca5409b76ecfb9342d24baa12321d95c869eb39 legacy-trunk +30328 8033025731527be4ab340988e8afb2d69a40d660 legacy-trunk +30329 5f74e040012d69ef835e2c66ef5a7a73a66cfd50 legacy-trunk +30330 3ee54fbfe846d89edf0e5add3a9e4b019259eef7 legacy-trunk +30331 2ce8cf284b150c08181454208f45f523cbbaa460 legacy-trunk +30332 daa458b283851bfd3c94fee19a948b1ea7494ac3 legacy-trunk +30333 660996a28ee8c4e6b16695f1e179a8dc3657b4b8 legacy-trunk +30334 704842f05b091e58d3e93f4be3569fb091f19ece legacy-trunk +30335 6cf637767ce24d2c3a811ccd6b20f0618280a3fe legacy-trunk +30336 b4ca5b9ba9335528aa68bccaac09829d41116ca4 legacy-trunk +30337 2752e9aae97bed601dae8fcfceb5b516152521d4 legacy-trunk +30338 3cf5a7852a2f3fd4f0b0a6dee266ef99069bb98b legacy-trunk +30339 3a130047290163a05966d3adac2401417793fab9 legacy-trunk +30340 0369199a265af841ffa1614ab3159197ef5d4bc8 legacy-trunk +30341 029eda937bb4743f0e171603da630fa48e7f2586 legacy-trunk +30342 83f8bd6ae8117220d2b12fd07871639cb5ddfb1a legacy-trunk +30343 aaca8a3b23cd05d22283098f01976f6cff31ec50 legacy-trunk +30344 a6f0bc6e8b38de5f770634c4049be561bafe2e66 legacy-trunk +30345 f305a578b3940ec83cb86f77ebebf79f97b8eea4 legacy-trunk +30346 48afb8e1420bb86f9c9aefd8fac4aecba8bba94b legacy-trunk +30347 42279a02125e28461ea474d6064fc004430aacd8 legacy-trunk +30348 23a980eb8afbb35a2933e2e8bee36dba69251d47 legacy-trunk +30349 1eab26f717199d7ca28368d7ac4fa24438c66c0e legacy-trunk +30350 f483efca224c6cfdb357e0f57d48ce75633fa32c legacy-trunk +30351 3d1060db80628bc5e949fd373e286ce9e0c374e2 legacy-trunk +30352 26df6013b303d4abde4df31d5fa0ee64d506a790 legacy-trunk +30353 d177dd0ca8f70e41be01c7ffa0e3345d9e850094 legacy-trunk +30354 35468ad5022a7745691d509523ec4199e6e3801f legacy-trunk +30355 120afba2dbf6407cd77b56c15d29685e8117390e legacy-trunk +30356 c249607ef535f11284f7d30577bfe18a45209b28 legacy-trunk +30357 31b1b0460303d85d7470da8019f247a7a65decbb legacy-trunk +30358 90934e4c91ba4bcd2866e2eff7b3a64e8ec2d7ff legacy-trunk +30359 6ec386b45e1faee169cbbed7a33246d82b61e8b7 legacy-trunk +30360 d2199fc14d0624ad80d8612533fa34e1ac7c581b legacy-trunk +30361 2133cf355bfc8a2c9250977ab023ac0e10e525a5 legacy-trunk +30362 f0f9acca4164abd78b5e1d604a6d8e29c3c66317 legacy-trunk +30363 54aacb87beda3037dfabfe3bf3e67f9028006fed legacy-trunk +30364 b625f1bf72f90d04c495093b41d39c4e368e115e legacy-trunk +30365 45fc0e4b508452275b46bad92b2e5e71c245a48e legacy-trunk +30366 b9c1597d8102e45ca45d8b3e6eb6f226bff44ba9 legacy-trunk +30367 12753e7b15f7e86be14356e54d109cf3657971d6 legacy-trunk +30368 8053bc0b8bb581b4b8670ca5fdcc6b66487f1b51 legacy-trunk +30369 bc20e8b46de0d0ae7aef268e4488d786e262fc0b legacy-trunk +30370 95510f0a0624584b41bb7b75faf8865c89fcf51c legacy-trunk +30371 2a95b7d5fbde0d4ce707431302b76631b0d000b1 legacy-trunk +30372 140644f22f648cdf0b3d3cc4cb5d0e98d9e609fc legacy-trunk +30373 0a0c759ed16799aa2e06ce9f3c98bf84a41b2d4b legacy-trunk +30374 4cbdbb0bdd5d4aec1025a6a68866c8459abea302 legacy-trunk +30375 3bc2af41c016579a8e1c2af4c3a7a41c7235934b legacy-trunk +30376 096d12db2636523ce5b755fdc3cc38c5b708fc77 legacy-trunk +30377 a4474e14fac97b4a6229a05f77623039afe121e8 legacy-trunk +30378 18d4f71f5ed6a936a4b073b846d0dc90692dcb4b legacy-trunk +30379 d5ad29a473e1d990a3011410ddbee3c62b3ef0e1 legacy-trunk +30380 2c52abee7d1062c500ec28cada715041a2f4d52c legacy-trunk +30381 97c5aa82b3e9c1524bbafdd749ca65a72a322620 legacy-trunk +30382 40db78159177620de13ae9be01dbd7160e73c18a legacy-trunk +30383 7ea7637341d0a147a4c346eb58b5b3d2633a1a2b legacy-trunk +30384 47e6ab8d5751d4a07f8c6669856d889f3c311938 legacy-trunk +30385 ccba3b66d676661f6e163e3109918ded04a3973a legacy-trunk +30386 bcaca36a583cc4593b5ded91b77f10b9394f909e legacy-trunk +30387 074919715355ac86e373c80a533d7ee7f5b71a97 legacy-trunk +30388 688fa6cdab943c580040526978de8363a65dc2b2 legacy-trunk +30389 8999d72c2e6cdeb1a600fd15d197caadc47baa21 legacy-trunk +30390 0032dbeec391c157022f8d4e47f7ddf3d7e4b51f legacy-trunk +30391 7cda3603567f967aab2da71e3ac6b599c44e020d legacy-trunk +30392 c25d7d2c1710426c76616933341f1a3019369503 legacy-trunk +30393 fbcf3c4b4272e215fc2d75f5d3157bd2a8327e15 legacy-trunk +30394 f5161ca4dd680d4fbe33a19aac79b6340a65427e legacy-trunk +30395 a43a2b18b5c48bfe6cd7ae3a211a0d2a123dc8a0 legacy-trunk +30396 05016bb91766fe9d1b19b16b717527c2868bc3ff legacy-trunk +30397 b93845226db68d832c2aa1846d5a315b9c5cd910 legacy-trunk +30398 42f19a6c65701cdf36500e470e9b0ee0db14a24a legacy-trunk +30399 faf965d73824bf244eb64f1fea028ee269a0bd7c legacy-trunk +30400 9d0580acb45ff45ea7571d4330c9fa6cbe6157e0 legacy-trunk +30401 dbfc3ef7d00350e09e9553e956497364b5b3de90 legacy-trunk +30402 31adea49a558f728ce93399befea8f5bceb2161e legacy-trunk +30403 96468870d206d94f1a8a4d9cd043018194a7d280 legacy-trunk +30404 3db165f021074363b1608aaab15c35704ef66a66 legacy-trunk +30405 33dcf4fd0ff903fbdfe3076ce84b82bd8b6954d8 legacy-trunk +30406 24cb62225040cebb282abb24ac1c3adc29b8e00d legacy-trunk +30407 ffa4ab37036f015fe99640d214a9b08c8f14a10e legacy-trunk +30408 32e4c77534162c5f7afcda4d41d01b8b02770ce2 legacy-trunk +30409 6c535dcedad303c13e43472b9d0f78d27831973d legacy-trunk +30410 79466f04f1c54b52b72ed21c9da527091555f65b legacy-trunk +30411 b91d95e9b249a79335a6a6609c11e6aaffadaf8b legacy-trunk +30412 a085cc0476810959dacd0c077788fe0f56fd17c1 legacy-trunk +30413 8468e3fc3a2bc71cc2b70886d9614c1cc0436318 legacy-trunk +30414 3d5abd3d9e4ba8051943f855c45bf0b52b1245b5 legacy-trunk +30415 bc305849522df7872982e720b80d3653b8ef5bb9 legacy-trunk +30416 a82d92f78472c707e6e7e11c50feed43d5aada97 legacy-trunk +30417 bd0c407195836bd0f199fbd6bce27c96d389c0e8 legacy-trunk +30418 6e541a72af1ae65437742d28456e7b92453307b6 legacy-trunk +30419 5ca7072361bd95a00d4aee1098ad236b1925469c legacy-trunk +30420 723721ea402596c435ee66fc7756f2155627617e legacy-trunk +30421 55141144dab5e50912b1074440c5be7a454ce1e5 legacy-trunk +30422 beea4215278743da11eadb539bcbeeba48a70381 legacy-trunk +30423 526742a74d065b3b3ff4326d6d33c75b9140f077 legacy-trunk +30424 acdb39b714b1eee48d4dbec23381b834e0a02355 legacy-trunk +30425 02c6fd5cf75bcf56fb4bec776bfe0189110ce087 legacy-trunk +30426 be732e219ed10267d902783bee7314db14a252dd legacy-trunk +30427 a58cecf59b063f5551c8b4a13c454c07b0470a2e legacy-trunk +30428 7b5a7cfc17a9e5017f7503d032ae5abc85e074dc legacy-trunk +30429 94bc812a3c5285158e60fe1245e4179d21eb8f75 legacy-trunk +30430 35fcabefc9d2fd35695729ea9ad6b4cf2b4a235e legacy-trunk +30431 f1559460b952626932c4651f711c854a71bb27ad legacy-trunk +30432 163563ccb7d60adf84e8b50604a9b6563cef1019 legacy-trunk +30433 240a2401c404de6af9983c24cd0096343c45dc08 legacy-trunk +30434 38927fd567b4e4f2f9288f8fdc734d3179935b4b legacy-trunk +30435 b82366bc5438428a9d95d6c24c8e76da5e69bcdc legacy-trunk +30436 3c041b19f1d3677a3c391abbf55b8c942345e37c legacy-trunk +30437 b8c72e86a12d40700b1be0746732945eb9fbe103 legacy-trunk +30438 1c58fe5c769f3c06e71be3b0000c878909ca052f legacy-trunk +30439 a5c879726b3a32337516bf5b10b1d1bd2942af5e legacy-trunk +30440 b9c462d23f3c65214d47d16a5cb54cf72b6442cf legacy-trunk +30441 a573fede88e2b18e4e7d1f078bffaf99bff090d7 legacy-trunk +30442 5df7a284eaf4ed771f1774c2b3b465ca7dd5f997 legacy-trunk +30443 b790da0671f7a71e9020e4128341b50a7b9e3644 legacy-trunk +30444 4b4ce2490fe2ed7eec519b6a2ccfd864999282a4 legacy-trunk +30445 103899ce88b2fca3e7f1e7964baa19ed1b693730 legacy-trunk +30446 bf9e0424237f515622d8050e1aca0fbb641b9d2d legacy-trunk +30447 776f270a6ea9c70bfe67e44e41354a138eb392a5 legacy-trunk +30448 4448ff8b32390bfd925f69353d5dda1715be1027 legacy-trunk +30449 4c03a4fad72ef261707b882ece4310e2e0e841e7 legacy-trunk +30450 84879e18377384949fa29bca621eab550cc399f3 legacy-trunk +30451 90998079a1a23893254dbbf592d2a48e6ebd78ef legacy-trunk +30452 67df2893a50ee8177c102697c49409b4badf869c legacy-trunk +30453 701b1029af40790550ee7d4991b1fb1c2b278c8e legacy-trunk +30454 70f0f25b134e428c1d17fb82b5377e1237ca13de legacy-trunk +30455 774f754fd1ff15038fbe9107acade91552f227f0 legacy-trunk +30456 35e5b021b774447203ee73416b9b19dc2f09c85b legacy-trunk +30457 784e7fdf8c524346fe03f53dbab05f1d1436f583 legacy-trunk +30458 698960d561f8da5898e0fdaa2fc03aeee1721823 legacy-trunk +30459 5b1575968f7faf80e7028341b1cb926bf24dc687 legacy-trunk +30460 5677e980e047e4248fffa0050b772f71d0a93b44 legacy-trunk +30462 2c67169f6e13fbdd17b4776dc79bc52aee25ae49 legacy-trunk +30463 e02daf6307fc8a8eb5e0026e8c70dee9ec07386c legacy-trunk +30464 549d07d0aed7eca19027c965cb70911ad3acf1d5 legacy-trunk +30465 f722a830140fb415e5e2873d4e1114f4d1ee78e4 r23a1-branch +30467 7e2351bc6e7a69bf68df712535186bc5b06ac271 legacy-trunk +30468 1c65fa5e52c3d81ab01ba8ef3a0bded4af3f6bde r23a1-branch +30469 15017a79bacddad27bbaad4f392bb4b091177318 r23a1-branch +30470 d6dcff4b357423480e47a555ea00bf32f2ce8f32 r23a1-branch +30471 2b80116815b535dd9802d6c3591a6d9cbd64ab97 r23a1-branch +30472 92e572e3ca9f8c8339f7e96a956ba9b782b8826d legacy-trunk +30473 8a8dff250be4362fa1a67d31ad48870b603f26fc legacy-trunk +30474 bcbd94c610e823f295d1b74399ebb68b878fac52 legacy-trunk +30475 7cb73a732f771eaa236f2df42b98f85242eb90ab r23a1-branch +30475 018307765d34dcf62d6d2ad66bd7f7bde531efa2 r23a1-branch +30477 cfa13ce983ba2b78966c0ec78711cdf7c822363f legacy-trunk +30478 69905059c7bd18859b3f8a263ce87eeeb1ea27e3 legacy-trunk +30479 74079be6f3f114e192283352f90271a76d1003f5 legacy-trunk +30480 cf81f825daac926cd547a242a0e55cbec41519bc legacy-trunk +30482 4e0932a112f42b559b731c9ed8f87dd9b6316ced legacy-trunk +30483 96e1ab8df88384ada783022b875cb9742fd5aba4 legacy-trunk +30484 2a87d9489112fa2e34aa3e875b6f2360ecfdc2be legacy-trunk +30485 00cd1d7159c2b451311211ec0ef9c9f95f442abc legacy-trunk +30486 6ca1c0d3ef1931224414250a12173ecd3e695116 legacy-trunk +30487 8ed472e5bcd44dd321b435f9bd199055a079ced1 legacy-trunk +30488 88df267db859e3f4b89fd6864d91be4430141947 legacy-trunk +30489 bda4185670ccb748e8399af6190c779faf19b7ee legacy-trunk +30490 293eda3e69f5f58214aab299ca03896db14edc02 legacy-trunk +30491 f57083a3419664ab48e094c0b4e7a3e187e0d154 legacy-trunk +30492 1c4060d9e6874c35fc2b7fc3d0aae0b6b8f514a0 legacy-trunk +30493 ea67cea676e99345b0dfea245bc941aad9ee48ab legacy-trunk +30494 d85eaf478556efc613f6f4f8909b0b62793ad05e legacy-trunk +30495 81209c0f08a05926f7bd0e9f9055acceadb02d05 legacy-trunk +30496 4579e83c663b702ea20bab1a6232a111b5b4aa74 legacy-trunk +30497 72c3f7347e88c894406dedda787a16facc5a9c61 legacy-trunk +30498 2687a9085411e7857f6562e022708615360bd7ac legacy-trunk +30499 5c4fa04c9f628d8992c25066abb4fc9bec46be66 legacy-trunk +30500 6a5cffc62387ddaa090bac533ec50a87c9f7b7fd legacy-trunk +30501 c0b3bb485bcf80016ce860adef5daadede4f90ba release22-maint +30502 97dc530d90eb785262d159f9593dcaf93e780969 legacy-trunk +30503 479310149b2ede1e70972197a4ea9f5822eeb2fc legacy-trunk +30504 fd9f20ce3bba1fc9c38bb33c830704f4b52123e4 legacy-trunk +30505 741aa9d6d8bed7405fc331f37bb2300ed263bf27 legacy-trunk +30506 0b3fccfbe2a28761ee4c57861b125020c6ab40e4 legacy-trunk +30507 9ee4fd05d3cbcd5ad7dab3833bbcf90b2dc0f8c3 legacy-trunk +30508 bfa32613dec8eca0e817626f984dfdff5c58bd58 legacy-trunk +30509 727bcb811c50f95fd945b2f0ef438928956a2a51 legacy-trunk +30510 e2c88c451c19a5444c95bc709f32bf50b5933418 legacy-trunk +30511 f441c4e5b234656545c88fe546319b7d9bb4a736 legacy-trunk +30512 1098ccc84d63f892f62face823951d5b7bfab476 legacy-trunk +30513 806d36e56bfa3e08011f49bb0b3be770f3d4b80f r23a1-branch +30514 ad12ea9c7efdf46b6389bf3cf65e55de9fde5c17 r23a1-branch +30515 4414707d937616c6ad4b60c260a331a9af849592 legacy-trunk +30516 e3271e8b14dee0fbe07d1a852c00f8213f7f7ffe legacy-trunk +30517 c429fe5de4173562d53031c0f38516a4cdca68c6 legacy-trunk +30518 338ac86f442d99ac1aba7544c4f1ff8e4cf9c14a legacy-trunk +30519 d279d763f46254ec5dc1fa6d25e2267ea72721a9 legacy-trunk +30520 d59b7cbceac1c6c9657d1b391c469aae22b6bb1c legacy-trunk +30521 b1e23c35707be4c0102b7598b54957dc9bbb7523 legacy-trunk +30522 b61a66022d5a401f4f63251071303539f14f3558 legacy-trunk +30523 8ecddf4ad8b0281d69466db856cfe266cb2a849a legacy-trunk +30524 dc33d027645a4f3d90da6d33ffa2b92bb9b57298 legacy-trunk +30525 93b6a3f6132dc828732331702ec60dd39881d877 legacy-trunk +30526 41f7726e3e5117a91444dd4380919193d1558032 legacy-trunk +30527 a98673be20c2802efa45c74f5d1742262708a528 r23a1-branch +30528 42f33bd69c724cf4f5fa4f185025b5d29a2551ed r23a1-branch +30529 f0bdf4c590ec40f981fea4a239205a37c03243a6 r23a1-branch +30530 be511203116f06f308c6756fc8297c41d8a9d3bb r23a1-branch +30531 13c9038fa93769938c61d7ed62c60b12f0545970 r23a1-branch +30532 dd6f1df524ddc7402491c4abf84b1384d5561ac2 r23a1-branch +30533 68dafe1bc0169a86679acf302f50475d18c672d4 r23a1-branch +30534 0259856c1e47610827c50d5e95e50db39ca27af9 r23a1-branch +30535 99df0e52f63433265e567f2805bbc491e4d56d0c legacy-trunk +30536 1ae782493132b9a40e908afba452c2b2169273ad legacy-trunk +30537 b30fe4dcc6979863be676ec09c62fc4ddde7abda release22-maint +30538 6e1a7435df25d353173d360df22c6da410cbc9c5 legacy-trunk +30539 e65ffcb4369518d72a15dc81f4cc10d108197b2e r23a1-branch +30540 ae9d8f50e76a3603c2f55be26f17a565783575a6 r23a1-branch +30541 f9a5557c9447aca16dd6382523b5bbef173119da r23a1-branch +30542 041c52f49df2278df3b92e7f2f40757495df3452 legacy-trunk +30543 188416fb7ac52d2eaa518b9469e06c42bfff5815 legacy-trunk +30544 ebf7265aae4ea92fccef305e0e68d2d13c7bd309 legacy-trunk +30545 23280a64288e3ea17a440b788d5d0af0225a04ec legacy-trunk +30546 5d997263b859b92f275f7eec11ff38378ba434d3 legacy-trunk +30547 237a146207859b5d675f773a8ff8333ffcc51590 legacy-trunk +30548 737a5476396b6416841f202a3011d7bda8c9f8b4 legacy-trunk +30549 267f45be9c02cd40beed370448ff7c0ecfce663e r23a1-branch +30550 554121fcbb9dcbfd6034b69d2a800dca078af8d7 legacy-trunk +30551 1cd9c8564875b85b5207a4d05958c38c4d6092b7 legacy-trunk +30552 70d2cb36fa17a31fe7a5d6dcda6527ed20ad28f6 legacy-trunk +30553 78227709ca044f79e4fe1bd6596047fa3469898a legacy-trunk +30554 af3579511f8468fd2102d62c93ddc4555d7c9fed legacy-trunk +30555 9d08291cd41166219ebd1b52fd0d5890cc3b8094 legacy-trunk +30556 714cdf0806c16f7a4263604b0ca95378d161e63d legacy-trunk +30557 e382d393331d5c121ec7fafed899b3f483ae75f6 legacy-trunk +30558 94b9cf4274de1e05f9f160a2bdaf93b31637029c legacy-trunk +30559 ee34b64952c0f8a672b07eba975680e238ae36ab legacy-trunk +30560 cd3c4df19b035b6aeaa0d14fa22e4246a202450c legacy-trunk +30561 afeb70c876aa3514217b914d1f8b4adeb559c66c legacy-trunk +30562 cf90309efeee622df641a9690500b0839ad753bf legacy-trunk +30563 6977e320a756c4685ebcbb219dae3f8dd3790135 legacy-trunk +30564 d3ba7f4a9f88afe5d8260d900e305e6c98598448 legacy-trunk +30565 aae949506d2a7d32839316c58e638a25b2de1b6a legacy-trunk +30566 157a95f417f3d7bccd03f30fa1f3a04a2a73b27f legacy-trunk +30567 7901fd95017f094783f221cea73c0f6b1c68e4f7 legacy-trunk +30568 cbdf60ccf54f5dfc7bed00cadc70244c15dbdd39 legacy-trunk +30569 eb322ef67c9fec501942f3a20a50160de59b104b legacy-trunk +30570 cc5b2d0a4ad1d86fe26978dc9f4e8a7fb6f7e636 legacy-trunk +30571 06b3fa25d9f1de3fa753e172f679fb8cbf9739d9 r23a1-branch +30572 1712e204aa92f1207f2e16d7f8bab1dea16351d5 r23a1-branch +30573 ef531482bb37b0fb38bf0162a8627cde21ff3d31 legacy-trunk +30574 e92044c0b8ecee8175aa466ee53a33cba4535e27 legacy-trunk +30575 c30f9728760294f2f88efe35d9eb33eb2c2d20e0 legacy-trunk +30576 1564c6839e6b0eb8059ae4c81cd02159dc09db25 legacy-trunk +30577 0ba46606f0f9118decba40d3ff08280e258e77aa legacy-trunk +30578 b865925ef68ab63f748eefd68cd409d226b98ccc legacy-trunk +30579 c29ada6c1c904a2745da5a05186a8a28b00a32e1 legacy-trunk +30580 753306f9b0a0e338c9b13622b4def5458601e207 legacy-trunk +30581 c1f4e53c42dd0ce05a4831da1da5400432b64576 legacy-trunk +30582 972fec21f223b7138bc9bd0755bac1c7097a7c59 legacy-trunk +30583 a74c88838a55b421f8bbe99249e72fe0743afd2f legacy-trunk +30584 2ae1d17572da6a8e74fcf5f70116cbe55fa6c451 legacy-trunk +30585 3199e974f55aa3f6de52f6924e208daba9161570 legacy-trunk +30586 64e8c6986610c2b378648064bdffd14ddc71f2a3 legacy-trunk +30587 d5e09d412b5388067eb93dc8fe187d0a2f5aef2a legacy-trunk +30588 f7226422c1d0a4b71416ba305252b380f138ae4b legacy-trunk +30589 90350b5d3397c4fd68ca3ec46cdcd998c9ac1ee6 legacy-trunk +30590 38319409e89567e2428a16d05c9e01bdc7991056 release22-maint +30591 93f322f562f3998cff265126002c2d1b783d2682 legacy-trunk +30592 abb5a69d60cbff994639bf34086f8b21553a23c0 legacy-trunk +30593 a123793ca193be7d4905d53c0b4fbcdf103fe26a legacy-trunk +30594 3a295ceba401f57ad6da6666ed7b055c3e379c09 legacy-trunk +30595 388e547477400f452f3b01ce4ff7e9bd768e4085 legacy-trunk +30596 54ef7d5296f1040aa38d81aeb356190d3d53d154 r23a1-branch +30597 1ac9994dc6c2581302ac98a535634ed093421f61 r23a1-branch +30598 1a0eabbda654aa551edc6e67c46bb613f0b2fc73 r23a1-branch +30599 97b5ab67b9f2909d84d24295060c3dcb6d6127a8 r23a1-branch +30600 52ce71358e32a1169dcf03ca74c1f4dfab31b86e r23a1-branch +30601 7dab27731be818d04b228fe527c5161fe55ff71e legacy-trunk +30602 bd750378d5c1ffc2d3307c501602197cc1c512ac legacy-trunk +30603 e841c873a93703cf46a35443c344aa53c9ac8b13 legacy-trunk +30604 27e9c3cd58afd332f393a4fca5ba242b0daa9412 legacy-trunk +30605 6c4bd487fd260bd93da0aa9426e6ffe22a35c009 legacy-trunk +30606 a1664b7da76f79c22a78d210db25cecff9145a7c legacy-trunk +30607 3e23de802a5dacff26c6a693031a543d86d3b2a9 r23a1-branch +30608 b42255c822b1e571d5c4e03d96a06f85bd55e0a4 r23a1-branch +30609 8d7ddbb330d31cbcfa5590d150e5e5b8aa44873a r23a1-branch +30610 5ab4b648a4cf47dfc32a190b685b4d4feb8f33cd r23a1-branch +30611 96a8efd91948c1eac358d73f67f02823e90c9ace r23a1-branch +30612 33b4610a892253c3b6ea4c6f0357bbd9c1c9020f r23a1-branch +30613 f9a5ed092660061008cddd3e91f4aa01d35652c9 legacy-trunk +30614 a16bc64f1145b448f5e229a076cb32f053dfc310 legacy-trunk +30615 8226658a63bb2e3c5061d833321f2a0f1b9d8719 legacy-trunk +30616 6d7daa5329c6acaec9563bd6db95b1bf13edce17 legacy-trunk +30617 69331fac4ef25b0d1080170068301173cdde99aa legacy-trunk +30618 4306c665f857cce8960623084075db11c177891a legacy-trunk +30619 2443c557cbc3d3c900408e8d30b53e55d4ac62a2 legacy-trunk +30620 82eac31e6e2dc9976d35d56924f996b18d6b972a legacy-trunk +30621 aee43a4f3570d7238410a60a18441274e9efd9ae legacy-trunk +30622 a0a6f4dd7328685685cff79fb3d0a3947bd4de1f legacy-trunk +30623 faba6e6c824df9e48bbf4f28aac101dc0c15ba7f legacy-trunk +30624 0464acb5b3e46b1e57b3b8fb5f76e2fb66346787 legacy-trunk +30625 55de2b95181e939f2bd27ef403d57dbd3503e162 legacy-trunk +30626 0364aae5a5a40baf807c93cef5c47407f83ceb56 legacy-trunk +30627 e719ab46adabfcb1a87d577c18b1639db76e53fb legacy-trunk +30628 d2fa1ddcdf6da6edf2a143681e1e29879e470d37 legacy-trunk +30629 b2fc494963b2ec9425526e6f07766ab4c07bf852 legacy-trunk +30630 9db4882610e5b83bb06dda8f4822b45d9e3e19a7 release22-maint +30631 a2f17f4a6a22cfb9b3c4a58b4d54c0ca28eb0c24 legacy-trunk +30632 37beb4d6092983bc83b8bb655da95148f7a647ce legacy-trunk +30633 eb9353b43cd12c1792e3919c9b860c2ed15ef0b5 legacy-trunk +30634 b3c8d9c472dc926bbce360b49044d93aad4db7c8 legacy-trunk +30635 86e7a1f7f26527706655d8bd1fc3d00b60ab5ba4 legacy-trunk +30636 7ec7718934102a99bb6633e5f6fd05189398e2bd legacy-trunk +30637 c0d5fe9a0f1c3e423763371070d6b7856dc3ec52 legacy-trunk +30638 1b881d5e4a903e5c467bec53071d284aef2e4633 legacy-trunk +30639 d1850a36ae41fd9df93bfaab904738d71dd89148 legacy-trunk +30640 e54855257a4f930f31d422daa9dd60be57540ff6 legacy-trunk +30641 acc80eace4dc134e1e331794295fd76f6a8d7a4a legacy-trunk +30642 46a6ed7cc4fe95eb81412adc262569c20746c19d legacy-trunk +30643 45f1e6b12a813b43b3953304e5f3ef8141c33d7e folding-reimpl-branch +30644 047b6e16ab2e4d9f8f1d1a9fbaac417131e8288d legacy-trunk +30645 6dfdb1c0308ad1fe864aecf6867832f15f47af28 legacy-trunk +30646 8617c2506b8e4549b2dec3bf0020a743b33c4aba legacy-trunk +30647 e87d590a5de18747c75fb10ce6c1d04f4d93c8bf legacy-trunk +30648 22d660494f29c4d791c46498e55707eab814f66e legacy-trunk +30649 49bcfecb29627256ae2883df0cc2265171d2e76f legacy-trunk +30650 657aeafbbc9a0c84fd69898331e6d9dee63e74a5 legacy-trunk +30651 c2663ca31d7d0e38dab38ed778c4a00325341415 legacy-trunk +30652 3d2962b0249e5451ae1bf58132e67a6037783f8d legacy-trunk +30653 3330a509d2bd835cfedc401800cae8414b7cef88 release22-maint +30654 af8a30de66725a01aaa0330309861f157a1cc8c6 legacy-trunk +30655 7bbb0dd8d2306897a49a4f55ac6f5495fb5fe30f legacy-trunk +30656 8e21bcf2158ac91047c16369a56271181f3e0668 release22-maint +30657 5d4f316d871c0e6c15bf812cde01a0a2614dba36 release22-maint +30658 81cdabbd63d7cd9984428926d6d341a845d7e228 legacy-trunk +30659 acf1b51212c59a9b7dde9cee9d12c00f6b19b95b legacy-trunk +30660 e204dff3fcbf9e04d10cb3070953f8e51a1c32bc legacy-trunk +30661 92e922e7327ae32739361d9d7d4cb8ab9dd10e37 release22-maint +30662 576e2b5d8cf8825a8567f276b3427892518da41a legacy-trunk +30663 1375bfcb677e620ee135d557ec285b01d5c1beb2 release22-maint +30664 47799c27646117e96b1512b0f8ed703eef22bc52 r23a1-branch +30665 56b8f908813cb0cbc4db28b36ce1990c3263a677 r23a1-branch +30666 5cf410e4725166305ab2549de4b541d5f1bc35c3 r23a1-branch +30667 e265efcbcbd16520719da343ad457e4493e0a7d8 r23a1-branch +30668 2227ad86d33c52382331322718c3405348d1f35e legacy-trunk +30669 5ed820670af35c9de7491f804b2abf8efed11420 legacy-trunk +30670 b943560e5f7b52567084e5a044ca9ecc57f6bab2 legacy-trunk +30671 29f89c7257bd0c9806e7b7562462355eb566dbf6 legacy-trunk +30672 e18008b711b022fcb5f3774a1af0766287c2f9aa legacy-trunk +30673 ae838f774f6c1e1d1f7fd89baaf5bd280163c5f2 legacy-trunk +30674 80fceab06835e61928be9ba4d7b5904037c174b8 legacy-trunk +30675 3f4e80ebdca8354b0b1f5830425e429cdb5acca1 legacy-trunk +30676 585a6460f5776feb8febffcab47c84b71dcd58ef legacy-trunk +30677 b1f5fdbe63972f793be6722c448f9f5c4c726af2 legacy-trunk +30678 eb6b36b26e8d2b6a2fe03f322ab6d1abecdb1331 legacy-trunk +30679 23260198885acf3b1f8d65adf656570c6dae9419 legacy-trunk +30680 c5d02d5370d937bf006c46a7cde8ee9430424cc1 legacy-trunk +30681 b49a40db7b472a245f40d0e83575c71cb4756d99 legacy-trunk +30682 910e76dd04daf65eac166e96dc38a7e827dddf97 legacy-trunk +30683 734ebd47bc2a9d4303613f2aeefe907788d69af0 legacy-trunk +30684 2f93c231eae0ea8cccc91820b2f2d8e19732381c legacy-trunk +30685 ef43de562fd1b251bb157c2bb64c6e32c8f68860 legacy-trunk +30686 0cadc29180e615cf0d17ee063c67157800f9ddbf legacy-trunk +30687 7f09b1992ce9fc35eabe92a1b38af085336a8c91 legacy-trunk +30688 ccf59f1ab4312864f30b29aed0b82ea066a6ae9f legacy-trunk +30689 0bd07391d921bcc1506416da342b8f2231c083fc legacy-trunk +30690 adf4ab3eaa621c441fa77b2b2d57fa3c7a57321e legacy-trunk +30691 4b89d76fb205ac0dd334266b7414420520ccfb83 legacy-trunk +30692 d5d12ea3a5809fea23c8dd75cee1d4b7592171fa legacy-trunk +30693 b9f5bee8ec18e8ff04c9820d39e74c04267c4b8b release22-maint +30694 0a9796a6468ef13f231566c31bb8ac248b6805d9 legacy-trunk +30695 47b134bb51c302d8ea2ed0146d64c72732847341 legacy-trunk +30696 318aba94c1e7b1eced94cfd38446c3d50bfa2e64 legacy-trunk +30697 925a7b1f93ee00f8e04e21ff8cad262dfb4122c2 legacy-trunk +30698 07c6c2e98a1cde1cb51eff16bb5fc39fa07435ae legacy-trunk +30699 6fe49dbf03fd46fbf6366e8ed5debd50be824071 release21-maint +30700 a0e0cab5c927fc1af92ef0c1b516bfca69bcfe4b release21-maint +30701 cdf1ba2ab715294226b8e15b6ac825be08637d51 release21-maint +30702 7706a06f5e692694f5bae7bfaf2341eb0965708d legacy-trunk +30703 01d9fd595375fe55dbd04f8db5b49abf12f367d4 legacy-trunk +30704 728383dc739ef00f253ef82b91e183e02b5f72ad legacy-trunk +30705 c798613a87655ba2635782753f03467722e3c5b1 legacy-trunk +30706 04aa86d49d93e556490bcd892d7959aa870ab87e legacy-trunk +30707 fc4bb3820449e3f0fade9bbde56544dd1c049b70 legacy-trunk +30708 bcae2a70e1ec7c9f844031380527a130b88ec864 legacy-trunk +30709 7ea4430522df493a084dd7cba89f1e7c3725b90f legacy-trunk +30710 d03c13034560a362e4d8d1929d8dcfada96dec78 legacy-trunk +30711 b29cfad44097b58c2b162aadb1d8e7584e5be742 legacy-trunk +30712 b346272544a182c16bd3ed01d4faad35bbd0cf49 legacy-trunk +30713 9347327874194bf8ae464ba9b494cc990cd1ae6d legacy-trunk +30714 59309d4bf841b69296177770bfea6df919b78d44 legacy-trunk +30715 65dc0110a735c10128eef209c0d14f6958b9efac legacy-trunk +30716 d4c8af9119d1918ff66f7957b0267bdd3fbb00a5 legacy-trunk +30717 a51e5ae29882bcb1bf5e342a2c3bde2cf8bd0636 legacy-trunk +30718 b8724341bb1abc32f9ff615d8f01d3f87efd5f23 legacy-trunk +30719 77b70a8884cb23b86fd012e41a0128d27da3b576 legacy-trunk +30720 92812f6cd63b5b2c2bbd855ec7bf070d250fde29 legacy-trunk +30721 dc6fb8a6af3def2780eff5e6948038265643400b legacy-trunk +30722 ae122675df1e90ce96414365642af7b447e9492f legacy-trunk +30723 81da73b93c3c62f3c226768d7a2ee2c673dc14b1 legacy-trunk +30724 0a035f9299a979f789c1be116f579b056e1267a6 legacy-trunk +30725 3c8d91f3f4c67de78317a574f391ae6db26478dc legacy-trunk +30726 4f19c8524f1ac7e4e7acb44169d7891d14719e50 legacy-trunk +30727 6ae361df870eea318f7bb00dba4d49fa2821f32b release22-maint +30728 b0d528327c4c1a6cf6cc539e9cfe466e8c65a770 legacy-trunk +30729 80ea048fc0d735f1fdaa90aefc7a006b642e0dbd legacy-trunk +30730 428eecdfd57fcace2e7d191ea8690e63018c3494 legacy-trunk +30731 a494f5a8639f29045fb797075c04b6c1255c4eee legacy-trunk +30732 4a62a941f3b12a3035acb719bc5d8d09dc54995f legacy-trunk +30733 de2c95d81984160f59ef001ab5caa00ac3e10094 release22-maint +30734 f96772e31e233f777ed21ebb738b8cd5d3994049 release22-maint +30735 3b3ce964adc9c13f2fa5698a2a7f674f2e15c3de release22-maint +30736 7a4d782715f4c7662494ce6ccfd8d223e1b4235d release22-maint +30737 10b7e60245b569401b963627eb5f8d072b847663 legacy-trunk +30738 38d2238c795e46e9b16e7ab3992f24c401545242 legacy-trunk +30739 2ed518ab2fd20a2d22294044649a316f1d2250e1 legacy-trunk +30740 17878d458cf12f3dfd13e2a10490aff778aed7a4 release22-maint +30741 1119d582609a14f24e0f4a7e6f22055038c52c2f legacy-trunk +30742 209d67212883d010c36c6e56f1d2731a06c90cce release22-maint +30743 201cdeb305f64a09403f2fed46c929e6e116c404 legacy-trunk +30744 420ea205f0241ee451954026c82a4f5eaa507f55 legacy-trunk +30745 5d42dba49fe507275b980b4d1dc59d4028276672 legacy-trunk +30746 ebeb00b8d502a0c9953b41ad90cf882ebea77e0e release22-maint +30747 11b34564a0fd05821da422056c980192b348debc legacy-trunk +30748 3a33bd0f9c4bfdc754ec8fe1e13523c9c808dab5 legacy-trunk +30749 f34c28650f14e18e5ff2535cc84115e2d995d31a legacy-trunk +30750 7f37ed54292003ea8f0cc48fdde3ac3455cfcc61 legacy-trunk +30751 18f072d140a9c7fe75ee4b14514c6c71992f2d7c release22-maint +30752 fd3b0711b25fb055faf0bbd8382775cd82c5f41a release22-maint +30753 eebc4fdac594e692cf1f0800e3a1d488aa587b3b release22-maint +30754 e9f45b8efd6b4d7c876b40e5bf24a66c65fa382d legacy-trunk +30755 8bd6b2ae2874b079fb0e5af7bc951f5101bef5fc release22-maint +30756 3ede90d6e1cf125a0203b49ef3c749848d8f175a legacy-trunk +30757 84a8e7d1daa9769815d99d6d3ee7958529b765c6 release22-maint +30758 3bfdbc3dfbce928c9171dc48a87178f54f192b41 legacy-trunk +30759 0a6b88190b8b1d3bef52a9ce473527ece5a8a9e2 release22-maint +30760 f59d80c7e1bb4d18f9000d501d031fbc9dfcf4e8 legacy-trunk +30761 f95e9f3c9fea78d4d717eda03d1f50d864874610 legacy-trunk +30762 a7706d4c690c20ae61ee816d2d93d45a4fd08bf1 legacy-trunk +30763 3afbd55fb18fa4ab13a38cf1b14d215163e7744a legacy-trunk +30764 b3f105399d22811dba5d199a95660c4661f44724 legacy-trunk +30765 d3ab532b3b6d6ebb20a71f6a25f2cc95f1675f1e legacy-trunk +30766 a56c3c56288b9feb27db5ba909dd452b570d8d88 legacy-trunk +30767 5ddb90f8169a58939ae443b07724b7bdab02b82c legacy-trunk +30768 c4150f7f6a6961524ae8887207702e2b7757b4f1 legacy-trunk +30769 7c34e5bf2e22b1f8589f8275efeeecee32c13f2b legacy-trunk +30770 16a8767462850c746d025c38fabdd8ac0f4782fd legacy-trunk +30771 c99493aba098d253c2db78d196a164591ea7f6e0 legacy-trunk +30772 40cd74782600811ad0287e78c4d83727f65d17bb legacy-trunk +30773 1ca7b2d692425dc67b8409336caa5d38ba4f44ff legacy-trunk +30774 261547703443dab454097b50d51551c05274d6e3 legacy-trunk +30775 baff56adfbc338248f95eba79f5775a41ec5dcf6 legacy-trunk +30776 ae89b556050ae0572f4c6debd57290049873ca91 legacy-trunk +30777 3fbffd736d9d04c2208896ed476923d6d3f9bc6a legacy-trunk +30778 e8c1a9542f66a668d78f7d2ffbe78ceb3f88751b legacy-trunk +30779 faf256a59eceb293777f27647245e54be34403ea legacy-trunk +30780 4cdb501ab6a2177af3bda0882276856d8d57f45c legacy-trunk +30781 f05764d7082cc1a0a1a2c7fb6172f913b95b2930 legacy-trunk +30782 77428e835d67ed8063408a4f19ecb51d8f97ce36 legacy-trunk +30783 7acf57440f4e09fe5befcca08559c9dc3d5e48e4 legacy-trunk +30784 8d0e07c270ef9b3114774cabef37e05588bd9947 legacy-trunk +30785 af811172717d0a31014eedfae544d47ab6564a21 legacy-trunk +30786 a9ddadf789eab8f698da373e7c729a73e624f34d legacy-trunk +30787 b744508d5b12646af20bcec2514ac3b113ee9b7a legacy-trunk +30788 be3d1b7e62dc269cbb847bdb41ce1287b414b9b7 legacy-trunk +30789 dbe4f57e8bb2956cc98ae9f219731229035c4f42 legacy-trunk +30790 392feecd2f1c71ed8b73cc9271e0816edee28d3b legacy-trunk +30791 91d678a94c7363f50de9d9f67302dc004f2cb1c8 legacy-trunk +30792 64d3fe904a0af8d674b24eae045dd5df3937acba legacy-trunk +30793 cda5ab625774fadd520297945d94e22a66265cec legacy-trunk +30794 d2ae5affde14e7964012a461790f67bca6fca96f legacy-trunk +30795 bedb75d90e03c399f2e016f6182ea37adac03137 legacy-trunk +30796 7fdd5d62c615af20af64b98102a5c1988febe85d bsddb-bsddb3-schizo-branch +30797 9da43cde8a1661e68c455faae8e476fe5b42ac88 legacy-trunk +30798 cbf355f28ca9f689287899149c9a33410c7e5e0e legacy-trunk +30799 c8234e26115c66d4ac9b48a2bec6e6164e2b6baf legacy-trunk +30800 9de064c7a247f11fc38e04bcf9a7421002ee5181 legacy-trunk +30801 87b66b6ff5e76f7702ea3eb7455073e3e544df74 legacy-trunk +30802 5a050200f736586c5f8d50cddd77ffbf7c9e8865 legacy-trunk +30803 c6f49b797963ecbff985aa4be8c7daaed6c437eb legacy-trunk +30804 866756f670ffd58453d15ace00a7b4a875d8f158 legacy-trunk +30805 df2754aca71704f4ba47e8443aace45c5fce62df legacy-trunk +30806 40e5eb9e04e0e835ab5ce5f65ec5c2109eb901a0 legacy-trunk +30807 04e5610c5efe97af458fcdd4661ec7d7465fa5eb legacy-trunk +30808 88faa985d98c3f3663a073676d503cfbc09be825 legacy-trunk +30809 97f494bf73190ad9bd06b2bbae5bd8671b7a7564 legacy-trunk +30810 75da49977571a4eab9a192b02a6a2ab8f1313eb6 legacy-trunk +30811 e83a42a90df16396a7afbf875ed40e8a5fd7e8e3 legacy-trunk +30812 7039375226a7f2627af0b55458daba01252e74b9 legacy-trunk +30813 d7f80028301deb74a01f58551273fdd411d593e7 legacy-trunk +30814 bfc140c7e3d0651f03a3939aeb12ded9f49f38a7 legacy-trunk +30815 7055f4c1edcc341e7d4c454d6a194c685007c28b legacy-trunk +30816 b8387730dd8ff415e7927f6fa2d44383a8807609 legacy-trunk +30817 c1c45475f170e40e7e92cdf5239f0687e833dc23 legacy-trunk +30818 81551adf12f6d1ecf245c89986dd77a7346ce8ae legacy-trunk +30819 05ff904ee4e07b6c66cf72a58e208dce7447bcfa release22-maint +30820 4fa9ad85c3b15dc2df8be86545ab7c9f755b803d release22-maint +30821 1369d24bc861dca2687158de9d001405e3682b90 legacy-trunk +30822 5a975e82d70fb5bc049cd44620d8ed7aad5941f2 legacy-trunk +30823 de801733ec18875bc2cb6d8d36267d1525891058 release22-maint +30824 0f8d189310b45a9fdb64543f54e8cee9280af3fe legacy-trunk +30825 a555230be3cb0073b3e82dacab0bb7857fb589a8 legacy-trunk +30826 704639d20a6cd625bc0a312b67f5eb4e4148878b legacy-trunk +30827 ea7680eaf937df738264252d5560736d00f0bf75 legacy-trunk +30828 dadd178b65fa568ae0da6c85e078a0d29858ae31 legacy-trunk +30829 ff179bade3f0dc39e4bd0a99ce5c32d9da387fe8 legacy-trunk +30830 185847140ca5dbdda11ff8f2b1e3263d8c1aecc2 release22-maint +30831 a2f84d2835faf825d8e03e4c61d42a472b49e012 legacy-trunk +30832 eaa612a41dd0d69eb0d9f09572ba30ad5bd464e0 legacy-trunk +30833 9220098f0327e9b2c0130c480e87ef368f53897c legacy-trunk +30834 c68290790d53d6e01dc32270dd4094c8112fc6ca legacy-trunk +30835 cdab2b74f307ead63797568e59543f63b391d580 legacy-trunk +30836 efa2f8abb02c9a615b004b891f34e94329cf8cda legacy-trunk +30837 3c7023c9e8e2671bdcdd764bd956893c6bce773f legacy-trunk +30838 d966bb54b3de0d8e5d75041f8115f2f40992f485 legacy-trunk +30839 7067d36c3cf47019561075ccb5570931a55df85a legacy-trunk +30840 75f38c415e7d4d07c864bb0012bfeaad8b9c28dc legacy-trunk +30841 1562c1e10b497da97148cef96c20d6cac93069d9 legacy-trunk +30842 299ef2dabb52c6624c037fb36337f9cfd2156612 legacy-trunk +30843 88bf10313584de4167f38674058f957468e50282 legacy-trunk +30844 1b6229adb3df9df02c44a69f1ec429ae35bc410c legacy-trunk +30845 d5a3386c76f49456cb505b1f982720807e256b84 legacy-trunk +30846 c404879cf999b03305e11b19ad450f5d5774240a legacy-trunk +30847 44e352d7d52ffbb44fad10d721af250176c55bfd legacy-trunk +30848 e2da0df3613d1ca3ac4ab38872a203861d5599bd legacy-trunk +30849 683339b852abd49b9bda6b65bfa5db0724bf27bc legacy-trunk +30850 87045a8ec547179160307175e99a8f0491c53055 legacy-trunk +30851 6cda7c612154a76868578c9dda952c56f542c204 legacy-trunk +30852 a0a914723c480b7126c199d6c42cb280a36ed7d3 legacy-trunk +30853 597aa9966ec6bb333077a8764cf08e1f7215c484 legacy-trunk +30854 f4c694a014256835b7cca0ac6ed5f454cf661764 legacy-trunk +30855 22fb76c539267516dd61c65ae728cf5cb5fafa3c legacy-trunk +30856 2c649c7ae8f3f2bf7c4ae1d00ac6a11287862d0c legacy-trunk +30857 cbca0bcf1c31e9eacd91d719d08b774ab37a7da5 legacy-trunk +30858 b470ca84fd2b5ec99ea69d6af1e9be53c22882a3 legacy-trunk +30859 e80456ad195b68d806eb6606bb61d2124107fc2a legacy-trunk +30860 d34ef00d9da8a086086443f725f8a863d7c4d1a9 legacy-trunk +30861 8b53b0ce06d458e7f41ae601aa2724c4dbcaf2cb legacy-trunk +30862 ba63d717c75f0004c0bceac7124e5b9a3b3ca221 legacy-trunk +30863 9fe36ae2a4a2b2a85f4bbdad8a4953bc14c60202 legacy-trunk +30865 9be3149fbee717b463a88ad47290aaf97ebddfc5 idlefork-merge-branch +30866 412e66e3530ee7f0b6712748fdd80bbb9ff4b5c2 legacy-trunk +30867 4f59981f7817dac11590890429b36497eaf45270 legacy-trunk +30868 180067c2880fee5c4d46cc8224dc34e98d9e1716 legacy-trunk +30869 2055d037295cf0998c0c90c3cadbfb10e3f721cb legacy-trunk +30870 30da8c96fd29ef365b88fc96ae29504c08bba73e legacy-trunk +30871 5acf6967d6dd3714860dc3dc96f190c039f8ae99 legacy-trunk +30872 ddb52f5673db5a853e725feb65f78ec1b189de84 legacy-trunk +30873 22992fa518310fef18a85c1899408162d31268b9 legacy-trunk +30874 bbf14185bf1e7e6b6d291e1184ac588be4132116 legacy-trunk +30875 40677fe8503d30e0e1c1b8eee52e1ad0deb917c5 legacy-trunk +30876 27aedcf46bcc92ff3f1794ddcb811798eb03273f legacy-trunk +30877 428c8a423043eadd365b6a8633a69b3a4e356201 legacy-trunk +30878 dc61162782593d8c740dfe1d880b53138ca2ea28 legacy-trunk +30879 8db2e74ddb0e5aa4f4f0ecfceec8c8f2477b7093 legacy-trunk +30880 afd1dc62e354dee33aa39cc438ae2d8f5628bafb legacy-trunk +30881 58bad769776e5999e4ad3313f7e3a203628d9864 legacy-trunk +30882 04e4565832bdd39c8b4b63a4df1ffd41e92acf0d legacy-trunk +30883 273b2b49bfd868998604c4fe2b4f6f1cc86d4a2b legacy-trunk +30884 891ec4d266d17867eb0c33c18489641a950e8a20 legacy-trunk +30885 4a49b5aa5d212718c414f5e2f917dca6214f3279 legacy-trunk +30886 eb1e529fdfdf0d4b9c2d22925886d3bfd93a08c1 legacy-trunk +30887 fde78d80e0989d2a3403af3c95d5d3dad93db7fe legacy-trunk +30888 00f294bf8299f6176231e9f651092ce3d2adcbd3 legacy-trunk +30889 6147bc14d277b6dbd56acedd7071c0dd5c748949 legacy-trunk +30890 ff0e1ed998dedab3cf716e5e0a0958a0ff3e6329 legacy-trunk +30891 c1dc50df578cdceba5f25d2461aed720d13397b6 release22-maint +30892 13beea2d2d26aa1a1f51a1ac84fc494344039f72 legacy-trunk +30893 9c4b4207e979dc3bfc04609a841f1e1fd294faa0 legacy-trunk +30894 5b3fbff05ffda9b3fce209be70d9f2b110456853 legacy-trunk +30895 b7256496c9b01c7463fa1d1b98492f3fb94edbc8 legacy-trunk +30896 d29c78d27c5e3b88ad8f19e17869b319358ab429 legacy-trunk +30897 be178afd41814511fea88e446754480fd217a62d legacy-trunk +30898 e2d79ffa2928c40ead4e15ddb781e5160c588c8a legacy-trunk +30899 840e9fed908a1fb85dfed5e21556f9ce45e44c67 legacy-trunk +30900 f3babaede189a0b6a3a2cfd7f27a92dac1299c84 legacy-trunk +30901 81569ccde5bdf00df65ef75fdde14bc884e73a94 legacy-trunk +30902 a457531c0fd4951072176950e04f1c177f0f7734 legacy-trunk +30903 629603f644126ca352c119970cdd173bc37d8008 legacy-trunk +30904 8d869f921f22642127f99f0283604f2b119e360f legacy-trunk +30905 9bcf85d0135c2e74afe8c8172034ad06c9ea7d98 legacy-trunk +30906 5174b4a71e6e4b774fa95ff68f27e56cbb8ce867 legacy-trunk +30907 d363f83c2846a52f5723e155cd2a68e13b030f7c legacy-trunk +30908 91a573243d5d79eaa508278cabada558e9691300 legacy-trunk +30909 015647c7e1843364a66a3a0f9a965a07f36867a9 legacy-trunk +30910 f9c48ed67a93ad6ea790950450d26c884feeaf76 legacy-trunk +30911 e7cdb503d1e05bae9184b374d93cbcbf7ceb2ff7 legacy-trunk +30912 aa94c820b3ed02dcd9b462e4b795afe60b50c215 legacy-trunk +30913 882e3eeac3dd7a30605a06a16f489aa75aa97e17 legacy-trunk +30914 e7cd3cc112d300109243537797892cac533a6203 legacy-trunk +30915 28b3d9a8ee1a336aa96b0255c8bd865e55913ee4 legacy-trunk +30916 e7be686803326e48081f1c4ad196c7d1f09c4324 legacy-trunk +30917 12359e537512c328cd23f821ddf1d9916f7824a8 legacy-trunk +30918 00640714a59a5d88d8c3d716238925f605a23958 legacy-trunk +30919 f1dd90357dcba17cd829ca0d424b8eb977bb4814 legacy-trunk +30920 eaf3f80700b3d5d19b89bfab89979e2166a0f834 legacy-trunk +30921 47958c99452de36e2f8e03c3ccae28ef778a9b7f legacy-trunk +30922 d16a977746a237c624e495390f384e254e62b7b1 legacy-trunk +30923 da0c991255c2ef648431d04fd01eadf886c76206 legacy-trunk +30924 4172b286d658c7a1b8a5e165b075eeeb3a1cbe7e legacy-trunk +30925 e945a03ee56c69ef57d869daa0f8fbe65fb51f11 legacy-trunk +30926 aed2ef96ed54d7959bc531bb205bc2b1bf2fc1c2 legacy-trunk +30927 6eb5e1a09b95d5e6a91a73d0661e12b8132908ee legacy-trunk +30928 acedecd20126adfb337d411c2e9470abb801f7fa legacy-trunk +30929 caa6df9e08805dcc754a73f40c097fde8a3655d7 legacy-trunk +30930 d19bc3b1813cb518c76bdea225f602111398fbff legacy-trunk +30931 ea5ee3e7bfb10a78fa8871997726d4df01a9bc4f legacy-trunk +30932 1fd04c37409ab3eb547e00d5f1d9d08512609d3f legacy-trunk +30933 a24fd45aceb18bfb214a49797c03c0d771b66d6c legacy-trunk +30935 56d83d0c55b60fc17f9bd674414ec0afae2d83bf legacy-trunk +30936 550c15c4919b16283cc80beb4a4ad8520b25a02c legacy-trunk +30937 5c133d13f32562cc42f7618241b660d84be46752 legacy-trunk +30938 9924f22d6604e4294b30b6f96fab906e1362d32e legacy-trunk +30939 2742ea93ab233a488276149fd3d6194756ecc38c legacy-trunk +30940 20df24a13349029e6a2595df26c59faa0fedc015 legacy-trunk +30941 9e430acccdb8f5c01e063b8a9d27eea2eea1e291 legacy-trunk +30942 009f3abbf7262a25afe8ca1d00322ae01fa5cce8 legacy-trunk +30943 c74cea24372e8f5f321ca13a60e639feaf192947 legacy-trunk +30944 7d3c6ad4e3edc9c2caf29a823d44b33808ce6417 legacy-trunk +30945 0aeaa3d1e0ff7942c17a76ef40b767c880e24b33 legacy-trunk +30946 24c8fbec761f231d7f38f22849b7ed040b04c397 legacy-trunk +30947 3c3e4c8c4a9dff026b2cc16c3cb07c2730917c31 legacy-trunk +30948 93ba42cf4e53acf8b112becca9d5b5c18e2f35ca legacy-trunk +30949 fa24538f8650a562c55014e0a22dbba0a1d6da97 legacy-trunk +30950 e26a2f7f224b59a42238639d744e31a7ab488316 legacy-trunk +30951 bf0bc8481502143b1c7db210ebcfc9818033a85d legacy-trunk +30952 3cd9ddd5562ea099ba2ab6b58cbcacd2ad2abd87 legacy-trunk +30953 b465c9d2196a3cba8793bfe3ab3a1b78a0331805 legacy-trunk +30954 1ae0b142370e4084eda4cb220492e3f6bcca039e legacy-trunk +30955 f8a90085acc41e9a0612bab78c8babd63244fff5 legacy-trunk +30956 4047821419b57a88590c19d8b7e10b4b8636c331 legacy-trunk +30957 35736591dc1e7a531ec32d3c999d74b037ad6b7c legacy-trunk +30958 7116cb5bac5083d49b22fb5ce2f59ccdecef621c legacy-trunk +30959 430ed1c8e071dab011540f3da9c28c9d27f60e84 legacy-trunk +30960 60ff1ba428c3fa0b064de78292b90050dd076f42 legacy-trunk +30961 91ae292c3a97f0cd38a02bc3b29fbb5b197822a4 legacy-trunk +30962 18e8ed80e8d1748dff5f3fb740a3b30cd45ebf2b legacy-trunk +30963 d9d24ce1cbf658d0733aabd8329066dc0743575d legacy-trunk +30964 e4a5f753508bc50b015447a14db56bd9288a60a6 legacy-trunk +30965 5db2cf3e77db33c980fd0e149c80f6766b47d91b legacy-trunk +30966 6b0dbde0fed715a298cb74211aed1dff59c22ef5 legacy-trunk +30967 8f13729a94a966a1a18ca47d811dc4659844c350 legacy-trunk +30968 1f6327140fc23cfb807d9f916e135efb91594cf7 legacy-trunk +30969 a16262bc6098dd08017c36168f84d43e2be2dbd0 legacy-trunk +30970 925edf8e000ca7dfaa210f7886a3134fc29daa18 legacy-trunk +30971 d8c2c40b386b19a0d6786eeb871911f471ba5559 legacy-trunk +30972 b3cbe7a0142a78d967569e6bd732c2ab634fe890 legacy-trunk +30973 0a47d832a64b5b4f13a20ac88429cdba65bf3619 legacy-trunk +30974 4015a27a1d13f2c74d63c22cf1eba194696aec2a legacy-trunk +30975 a230d1200bc35b3d2665afd3a99cb168d05b74e6 legacy-trunk +30976 7fb5e8a541ab8fce73ad659f4e68211c0e869526 legacy-trunk +30977 3509ad07d156acb6e5682b3a1c44f1b1fa309169 legacy-trunk +30978 9fe32154d28902ee65f7f9009f4454c0ffc308e8 legacy-trunk +30979 b2ce9c637a2bc602c829047259665e15aec7412e legacy-trunk +30980 115ee40518a84dcadebb1b8ee08ccacd4aa7fe27 legacy-trunk +30981 62c66893c2dba2a4503d464a1a93af8eb6a6801b legacy-trunk +30982 4c03ef06c3ff704fa1d0b8c28b36ad7502051f51 legacy-trunk +30983 ea480406cc65621cf0ee62d547e6438b35cd6afa legacy-trunk +30984 0554b7c5f6d7d2692039c00f252f11ba42b2f2df legacy-trunk +30985 883af28b9a0d0660efbb2f98711c9ab9c9439883 legacy-trunk +30986 26a79200766525b952e6afbb47d80df44992611d legacy-trunk +30987 2ee9742aadd892147e5543022c02be26f133b4cc legacy-trunk +30988 ed0d4ae6c6ce409188c05f1b6c2bd891218c2b38 legacy-trunk +30989 8dce7a5e5fccd27ec50db2015d42482cf1398760 legacy-trunk +30990 764df2fdc9c63675ec50a6d2e072c1ee877058b0 legacy-trunk +30991 f4911f7aad0253852406bcf020f340b42ce4091a legacy-trunk +30992 6ffafcef98fb37fd5f4215796e6e8ca2262075ee legacy-trunk +30993 5c7548bf377b2288c6f3858ed00b83ea084d2b29 legacy-trunk +30994 17d87c5ba6e4b71520072e3d75626cac818d2b04 legacy-trunk +30995 05f7e1c65d7e8383b6317d925c18850114ffcb66 legacy-trunk +30996 f4e8a6d4aa7c37e1bf644d50b99bbbedb8c2ca53 bsddb-bsddb3-schizo-branch +30997 f8d28e82c4cc99a3be102a54ae9e688d16689cab bsddb-bsddb3-schizo-branch +30998 de4061584c839157225fd8c9413e67eef1432d97 legacy-trunk +30999 fccd9e943211ad63b3e666713e1be0b6465b9ab5 bsddb-bsddb3-schizo-branch +31000 b79c1afff1128351a882302878c3d33745bcbf1d bsddb-bsddb3-schizo-branch +31001 154bac0b26a54ec190926c7c8bb554b6a6f3b73b legacy-trunk +31002 31014fbe20dbb08830141e6a74d74456702d99e4 bsddb-bsddb3-schizo-branch +31003 38c7c2d4cd5acf435e3a56440319bd82c25946d7 legacy-trunk +31004 924ade80104b1739666ad517143c09c904635d17 legacy-trunk +31005 ba9310fef49dd82938def878ad5b10cc7a271548 legacy-trunk +31006 6e89e80e6a267c516467db2af5b801ad0e2cb571 legacy-trunk +31007 712b01d52e8cd2b3f95ba8ee944a3b24facd8943 legacy-trunk +31008 14b1758dfddedacda05b856f2854914f0280e06b legacy-trunk +31009 29fd9fdaf52a905a757479f879e1175bb98e1486 legacy-trunk +31010 ee0e515407fd979de318b1f5a97f24bc02265518 legacy-trunk +31011 7c8dfd3f4ae906e3aa1077e270c0d301c72b4e9b legacy-trunk +31012 f9284b57b4229aed86c91f46fcbcbb95f8f96ea1 legacy-trunk +31013 5ba7934a7ba02184c52e3d5057a2ae53197b884f legacy-trunk +31014 36f71fef5b108fc803230bfa310fefdbdd1589fe release22-maint +31015 e9578747f43dfe66b7065449bfe6d2e8a7f16cf9 legacy-trunk +31016 0904d878b8f18777daf7657917d64b6c4af62f51 legacy-trunk +31017 e9cd228104a130bfd61184e23a21ffb293830756 legacy-trunk +31018 3bc71d234a29e9899298e9b6b3bb522c45cb0ecf legacy-trunk +31019 b83fa8fa121e84d833e60a59fffbdbee8b6e5dec legacy-trunk +31020 4247e640e2a6eb2a58c79d00babb588591de1a6e legacy-trunk +31021 a89c077e648a18fcd2e46b42e8476aff03eb1901 legacy-trunk +31022 7b7d3b9063630e4affd14f40754931018ef60d8e legacy-trunk +31023 1f16abfaf63e9f0ee488a89ece693b7fbe0b908b legacy-trunk +31024 adbc3fe8c81cc3a3a0a951be8a49fe3c982d19d1 legacy-trunk +31025 5e4355d80dd1597340fa76b17031f8ed0d5309a9 legacy-trunk +31026 e905b22e392ba58fef935eb67bb3e61ab0989ad5 legacy-trunk +31027 d8750e0d3fb888836ab7838a8065ed7d2a0c629a legacy-trunk +31028 4c35a66fce4df0ed95eb9390447afbdb253a9e13 legacy-trunk +31029 ae31fcb7b58e4ccd881121f09f29b0304f4fd271 legacy-trunk +31030 090a50cb26900e089e4527f341ac6ba3abd3df31 legacy-trunk +31031 e42e3025bae3b49a5877259d9f74a84116fca4de legacy-trunk +31032 620539165e5308ac9a8480a2ee7de1088364af33 legacy-trunk +31033 0dd8d8a76015ef0dbb96befd92ed7ffbdf586260 legacy-trunk +31034 fe40fcf49ee566dfb5fc29189170d1566c016e29 legacy-trunk +31035 b480a4f707f6178b20626801fed056a34e3f1734 legacy-trunk +31036 d9d57f5f98cda722b784aff9de88c0efcaf32857 legacy-trunk +31037 14276e43ece60479dac66721402e41d9c9f85507 legacy-trunk +31038 44f465683927b3cfc6dc3c3a6f034a40d9960e5b legacy-trunk +31039 20c581c23bce333686524347490d492da54cf91d legacy-trunk +31040 0de14252d26ce6dd3c1411fa7aca201e5c814699 legacy-trunk +31041 a2d96e7d91a1a9f9eb0914737758f435e4391ff9 legacy-trunk +31042 b1d1fe7fb514b173a808ca5db969f5b40ed26508 legacy-trunk +31043 d62bd24072919ab0453e47ffcac22ce43d293346 legacy-trunk +31044 0e6dce1ec231cd47c430d2f1f5b29c4af2e7ed26 legacy-trunk +31045 5f32942a225ada9ea5b95adf80bfdb75b0099a8c legacy-trunk +31046 51abb5e862262555fce528d3a429ea744307b7c6 legacy-trunk +31047 b2b574118ffda3fdf74d6a2fbe2a9fc876998aaa legacy-trunk +31048 81a2d188ea1f9f6a33fa8b495ee079cce50b0fef legacy-trunk +31049 6786e86b8ff0ad0ba257382bd3faaa5c8bf2ce4c legacy-trunk +31050 17bfd5dbc0f16dc85c16b2088acc42807d693235 legacy-trunk +31051 0f9eb8413b61b4e6251e49f077625947bcb22a2a legacy-trunk +31052 b173a2a230825a41fab1daf8d0c548e3b4f2b977 legacy-trunk +31053 d5f47e1465d66de5032829abbe24e350e772d018 legacy-trunk +31054 0bb154fa8047c8f0fc803becaf6a395d141be6ff legacy-trunk +31055 ddee8c158301c683cfb98e57f96fd269efc90552 legacy-trunk +31056 2e18dbcd9e04cabd647edc32b9a0ca788c3c2b4e legacy-trunk +31057 689257ca4d092b6d79d8520349b70d5df1219d4a legacy-trunk +31058 696c42da7875331821130e089eb45142bc7f6073 legacy-trunk +31059 5765d524de71e2acdb9edbb0a3e502fed4556dbb legacy-trunk +31060 d11223daaf61d3c513becaa0af19f9329d73a6be legacy-trunk +31061 02f138c639a083a1374e074466fd7d72088cf66e legacy-trunk +31062 842d6a24497ae83a5369281b5ebad3ab0bac7ad2 legacy-trunk +31063 99099deb602640bb956f4312692e3936dc5bab37 legacy-trunk +31064 72b38d5fe61f9afeed2a2c6fd4d160e5a854caa8 legacy-trunk +31065 cbc86028d9f3bab70ad824975b31acc0089cfad9 legacy-trunk +31066 fdc52b1197090e13290f98438e5583562a648221 legacy-trunk +31067 87943faf4fd216a6102e07d499541c8abc5118e6 legacy-trunk +31068 97b28170634ccf192c9aef56b58089b986461274 legacy-trunk +31069 2add008b1b7d075d3302774ba99f55fe2fb2269d legacy-trunk +31070 88ceeeed70bd151d5ec09011139bbec9ac384c9a legacy-trunk +31071 0c8810373a1a77286490c961bb545cf40141d5dd legacy-trunk +31072 ed2d23d2fd412b9f7e765f266a1709e05d0c92ee legacy-trunk +31073 c47de88ae85d7e547a2fd916c539db5ff23913c2 legacy-trunk +31074 f9822b18cf919c56cbc9fea65cb5833991cd9b39 legacy-trunk +31075 bd63f28ce7a8bfda10005c3074781bbb9fb4516a legacy-trunk +31076 ce748afbd6efd2d4a73414b6219277fd5b3dded3 legacy-trunk +31077 c425f66db45822503d9ec9d44e24577796b1be4c release22-maint +31078 7fcdeeb16ec0d64ebc2fc89cdab6077d4d6102ee legacy-trunk +31079 31807880f59965914cc01b1fcf552fea81caa00f legacy-trunk +31080 d3af1e793243892bdbc2a20a5b3a1f458751b6fa legacy-trunk +31081 50c734250e0529b66b55dc297e0c4afeb5f28585 legacy-trunk +31082 6597c09b1e6dc9d00d1f3528e27698c31680095a legacy-trunk +31083 3ae0a2f87aa06c74d69ab70f79f0842aed63331e legacy-trunk +31084 c267f28724ddccdebc53188eda5da9e0ca7205b9 legacy-trunk +31085 24e34abc6295009730650a50e167c56920650a40 legacy-trunk +31086 5eefec94a7848542b9a06e8c5f21c1e8ddb8b701 legacy-trunk +31087 8d83578dba8141d46fffe1026aad35e14685a844 legacy-trunk +31088 faabd9867fb8dc49940d38c2296da7a6c0abbbeb legacy-trunk +31089 4aa4e6b3eca723f4349e746f7b6630d56171a3e2 legacy-trunk +31090 3c89049fe628d34da1eaa1e49aa650812e5dc5b2 legacy-trunk +31091 d42d83e5686c3b96bedee4d3bc85dc88149d587e legacy-trunk +31092 ab143aed49b906fb83360003d2e6d76e9a488f82 legacy-trunk +31093 256789aaacd65c03232ac2f1e144038dac29c7f5 legacy-trunk +31094 620bb3551bb6747a660b4defadde3f204552714e legacy-trunk +31095 8763a8f6c0d5bef2e80025c004912ab7c56b4820 legacy-trunk +31096 c075ba2abf7aba6f6fdd3380f7cf523e5261d4df legacy-trunk +31097 f33e6448462081c74cbde1bb1869bccbb8bbc445 legacy-trunk +31098 76fa8c79a89d0a690bc35de9e9db79292db7e408 legacy-trunk +31099 ba57c3daf6e9a39d6eb02d2620569f33b329ef03 legacy-trunk +31100 bd8e6222e16a32a3af4326b01093037a2ccd6aeb legacy-trunk +31101 f235f135f3f8a2786293a7693901ba049cf7e077 legacy-trunk +31102 674f3eecffc5069e71cc7aaab2f836dc2b15868b legacy-trunk +31103 0190872ebcf3d774840163fc6649e0640d53b867 legacy-trunk +31104 3b9fb57fac34a25d498a4d55b13cc4c233a44d3a legacy-trunk +31105 1608507bcc3ff847af561b96bb62f213f4194995 legacy-trunk +31106 9bc1c84b23e662369328326699cd60f78b1e897a legacy-trunk +31107 2f227ff11f5e3aec164a959b344ad4c5c7be2823 legacy-trunk +31108 6ffb5c8e6538ee85b8a2e42240a3b79bdc259fee legacy-trunk +31109 f47af2cdb983b41f5eacbbebf313726685396657 legacy-trunk +31110 2d7c0cbc83cf3f49b9a00aa1153b433ca3782091 legacy-trunk +31111 d1edaaa938fbe74852ff5552af453c9ca4de6e17 legacy-trunk +31112 a2db437d314b48937ba0bce789f05555c2716420 legacy-trunk +31113 65635c72135e1acc9c67335bdfe5c776b7d3140f legacy-trunk +31114 a05814184e8c6e5061cf0bf32e0214d857ad9c12 legacy-trunk +31115 98197ebe5ccb7def78e7b44779bff916264c3102 legacy-trunk +31116 7283140d431986b243daa702a8f3b98a8fcf3326 legacy-trunk +31117 3eb10a14ba00d96b340464c2edcfb3b89d155f09 legacy-trunk +31118 e3fa8377f30c580a50b4b9aeedc66fd05acb93cc legacy-trunk +31119 93210564bb46079f0d62e154635f4e4be7c0da5e legacy-trunk +31120 d6b65e3855a2500d8d159e3b4d436efbf8212d95 legacy-trunk +31121 78e43b36e7844eb8d459e8b942c6c39c9b044e54 legacy-trunk +31122 57bdf4bac435a7e66ecd5fcc17f9e66907f4b927 legacy-trunk +31123 e5d18112030349115eb26dd7310b443c5066c466 legacy-trunk +31124 915d327a214a9afa9b6e8401f9e16eececd6e4e3 legacy-trunk +31125 72228a25daaa25923490911e608963a726969e9c legacy-trunk +31126 8e60ec88ecb84d92530d834642a389695fee8b6e legacy-trunk +31127 a35dfca93318d1f9e83c1786c5c593fd97a2fa2c legacy-trunk +31128 d158d10ef4aeb027b744f56aae5d3daaaea49a3b legacy-trunk +31129 313e944a2c886236a6e197afb1c5a75c63f94709 legacy-trunk +31130 9a3b8443d5a61615ffd9de3f5f38705393189479 legacy-trunk +31131 c4214c20b21dc020a807f60b123d42499408e1f3 legacy-trunk +31132 82a8ca3c928c0ade33d97b211b00d30eb8596e2c release22-maint +31133 1fa4441498589d5018573f2a5027d2ec44c60748 release22-maint +31134 42b617fd9c6923d7572282b9c17db168efdc1ecc release22-maint +31135 22551e1d2c6e70ed4d48bd3be8591ebde642a028 release22-maint +31136 ccfacaec0968919ebbfe8bd9993b0660e1bdc776 release22-maint +31137 beb2008a3c3295d7e5bf0a2aa4895c2a555f87ec release22-maint +31138 c9ccc9d0ba99a88dbe9ea45d911ac4fc5946584b release22-maint +31139 1d8c86234d9c2bdf0641028808fb5943f0b4986d release22-maint +31140 0602078bdce123b02b029fe48c6cae43e84e294a release22-maint +31141 0729f8393b1603f7e7e245d438fe81bbff1c3d92 release22-maint +31142 647c29147d5d27ee84bb43a1f6748f8b63eb10e8 release22-maint +31143 83701fab32fe11758958f5d77a7a21a25955e9e2 release22-maint +31144 45ad77a43d87f69baf402b005a9283cf8e080c56 legacy-trunk +31145 2a81c1a883cbb5c3eca2011f47b13d3f20db06f4 legacy-trunk +31146 9cdc233b7224b037bdcd7674b6080b9b194cf8cc legacy-trunk +31147 74d9604e935316d7a167d3f5793221eee14a7594 legacy-trunk +31148 558d0f3b62548bf4360f835ccb28b0853c447e14 legacy-trunk +31149 bbd8abaa0f33512823f6ccb5b2dfee939ec1373b legacy-trunk +31150 19d0c999555e91cbf77113a678e3862bf8976613 legacy-trunk +31151 65fdbd781ca99af199d8e5e91259985808512bbf legacy-trunk +31152 a24528318be96cba3fb20215444fef12f19a1fdb legacy-trunk +31153 8201038bbf30bd5bd1e412ec4b70f8fa958db5e5 legacy-trunk +31154 eaaef516a6853de7248472c6fe6b41acfb091fd6 legacy-trunk +31155 45906223efb236a11d0c2f36427f01278bfa4ff5 legacy-trunk +31156 4c9d02c5657b35abe8709da050d1cabe3824011c legacy-trunk +31157 afc9a095a2d56f8f789e84bf0334a4e2ce70334c legacy-trunk +31158 f7b3826d013a1dedb213b302dd59587ebe9e8307 legacy-trunk +31159 6567f4829e7ec4ff1a5bfd3f0a6b63e6d7bdf00e legacy-trunk +31160 7bf7dac4dc49614b92036de27322a168bd14d0c5 legacy-trunk +31161 640e52dee1a03d2a225871b065146ea4862973c8 legacy-trunk +31162 48033017c78f2018cad2254bbff4328c667ac4ae legacy-trunk +31163 c40cb9bfc8e7c3df16589bde2bebfc9e7b719f0b legacy-trunk +31164 e4e26fe286c0b89c2ba61b912ec2e4eeac4d0aef legacy-trunk +31165 974f196abb87becceb86e4d4b39aaeb037739be8 legacy-trunk +31166 601549c64039c84bbe81e460497bb97e1f358a6b legacy-trunk +31167 2cd4e0dff3a432760ae9421af820ee19fabe29c7 legacy-trunk +31168 6205da383e4cb41b68506998b3a23018de34cdcf legacy-trunk +31169 00426c7f147d201a43256daef87d3347340491f8 legacy-trunk +31170 dd73a1218f69a8964a0d2ba54cf55a83cbc5f882 legacy-trunk +31171 4d04f45ff8a1e6c58e705ec9b5ddc15ec31efabe legacy-trunk +31172 934a2b497d1dd2ade53308e9482261095698d530 legacy-trunk +31173 8a147a41c3f7fae0bcf5332e26e7cf6fb8c0d650 legacy-trunk +31174 b66acbe29575c45d5aefa69ab37059d99bafa477 legacy-trunk +31175 e99615de764763c90e23e40b1b06890841688287 legacy-trunk +31176 52ce57b78c71a86012f82e1faee8269c1abe4374 legacy-trunk +31177 db784d29f481e05bb7e23bc55e8b966d42a5f226 legacy-trunk +31178 f619861405030aaa82ee54fa4f0be781e36b988f legacy-trunk +31179 f260343eccf1322cb9304ad44bd2220c1cdb187b legacy-trunk +31180 59b4ebc29d5317a6b7fc1b60d39c3ca371b0db7a legacy-trunk +31181 ed91bf601b2de98af084dc9772c6ef58994d7724 legacy-trunk +31182 106a44a4b975db4f1b086af45cd47ce52b6aa5d4 legacy-trunk +31183 a9dd217a9bb101e08b12324d8323665964bd0284 legacy-trunk +31184 e11e976fee7812ab4118c5bfbad32e34807d5920 legacy-trunk +31185 ba3eaff49b7ae089a88fc01286f1da41e6516ff0 legacy-trunk +31186 67315026d6d3599b66ca5914731ebac852364af3 legacy-trunk +31187 b595c4735fccc6fd003b3a878e88a41505969d41 legacy-trunk +31188 0bbbcacc05fb9e7e8ee8470ddc6335dccd98f67b legacy-trunk +31189 6a1394660270741702566ed876c52a27edd68abe legacy-trunk +31190 35278aaae775cf971c20eaf2c55040763b557a12 legacy-trunk +31191 3a528aa222b6c9d6dfe213bbe6c71b5858d88e81 legacy-trunk +31192 df363d1b38428856fb4b5492382ff3dd69c87a59 legacy-trunk +31193 652df4549708552a306ff72be74bb58667e17b70 legacy-trunk +31194 d5eb12bccd1e9f5545a0d46400d3b4d984411886 legacy-trunk +31195 5d7888fbea00484b75001c5e53d85e3422c429c5 legacy-trunk +31196 f62ec2405e9fcb55ef1ddd208c54f54939b7584a legacy-trunk +31197 8e5de43529b7573cfb450be8423bcbce41623892 legacy-trunk +31198 3e98d2e2d847f16c43c2153e07c20c264d510772 legacy-trunk +31199 20330e13211eadffe7b5b46715db172fdd4a2d56 legacy-trunk +31200 3b0b36cdd9cd99e74ae053a63af56ef5fb6a4f63 release22-maint +31201 c8943f87c68b99f2f165ffbe207d16c138bf2e05 legacy-trunk +31202 960803f9f698994fa3d0aaf470893671d7bb9fa4 legacy-trunk +31203 ce3faab06de753a6a91439557f77810188b100d4 legacy-trunk +31204 8f8448fb58d6f8960752a35396ef7a689b57dda8 legacy-trunk +31205 95f3a1cd00e160d85f4e87388ef743dea1a05e25 legacy-trunk +31206 5199f7ea6746f398335a793e998b90868971ffe9 legacy-trunk +31207 261915a6c6852c984fbcf3b70703a62e03a6d384 legacy-trunk +31208 d698c5623da06f51ec597ddc700d835e62b26bb2 legacy-trunk +31209 b19aaaeb6d64203163ad9cf90de63f0bd4f01851 legacy-trunk +31210 e5454fe1aafd0dcf9f2ea68baef96a3b8dbdbd4a legacy-trunk +31211 74aabd4419d40d65bc7ffbeed4d439a26aa67ca4 legacy-trunk +31212 ed1d4e7971095bfcc4a1ec93134263caaec7614f legacy-trunk +31213 96fd004a58b0d32feead8f6259c09b64934c3d9a legacy-trunk +31214 9e47f9ed49f64622cb787ff19f4726cdd2d46a4f legacy-trunk +31215 3599f6593fe90c0c99aad683f609c490e1fb3a50 legacy-trunk +31216 20b803cf219d0984fe8a6a913e3b5f706e606a4e legacy-trunk +31217 4c7b1b7d7f31116786690e187c6bd3b0346fed4f legacy-trunk +31218 0ec3896886e696a789f0ffb9330d362a1ee4dcbb legacy-trunk +31219 8f37835cf4a411b42f01cdebc2ffb324d0892347 legacy-trunk +31220 9ab971cd1965724af0ca883356e848aaed905741 legacy-trunk +31221 63d634ed945cc01e88704eeed67d25faf0b12ab7 legacy-trunk +31222 ac453bb370a2e9c71ba883049fe7bbd41845afa4 legacy-trunk +31223 7c4dda0c145f0401b55e0a1a6c4716d7fb8d12ce legacy-trunk +31224 1a300f47533205c08665d84100b73a0a4fc6d3ce legacy-trunk +31225 eb28789409058604e47cbb6e1bd62fc79d8bc142 legacy-trunk +31226 43143d4dd6b1d513b12e88ab2cba0a1291285ec3 legacy-trunk +31227 1861335e78aa116c7d398024fd4cf60e3d7448d4 legacy-trunk +31228 0fca65a09f062828c5e59a81689339618bc77ce2 legacy-trunk +31229 614abba5b7624fc357f88576609dc92b12b4a8fb legacy-trunk +31230 37999f6924b4e5532882feb9e0cdeac36cf1eb3d legacy-trunk +31231 84f2c438c3f52ba18ef32f93f8bef4aeb3e64a08 legacy-trunk +31232 0428d59069a984127df67b2e791f0a9604933c54 legacy-trunk +31233 c8c7816d3a2da6e309644cbe01f743b59bd99e88 legacy-trunk +31234 0f6731d126deb18c37ed769af05c4635a4f95b77 legacy-trunk +31235 537bfce2b7303f1af1d6087a5126c7cfa86ff6c0 legacy-trunk +31236 e0fa52067dbefb8273f7b2b8f19ccae43f636291 legacy-trunk +31237 f87b6d16bae85a79ffe150ac162bffcd137b0f4e legacy-trunk +31238 9c3c993e9b9cf2334ad23dea733df1099840e165 legacy-trunk +31239 e4fe168e35f143fbca52ee0c941e02ed99aa6321 legacy-trunk +31240 001cf74dac501a9e653d335720c7bab387debaeb legacy-trunk +31241 16856c9514e05a8846d4dd65456ea97caa7e58c7 legacy-trunk +31242 aade4bc125f8ff2924e4f3559b1c6842c2feda9b legacy-trunk +31243 76376e5af388d0192ea94ba0d36b3b7c82f43ad7 legacy-trunk +31244 e3b5f321eebb03f4bee5052e851166a2eb67c186 legacy-trunk +31245 5935b8243d74e4ff18dd25479f0a9af476b71005 legacy-trunk +31246 41313d20d1dde268abe38cf3ed352397118dae61 legacy-trunk +31247 522edd591d2cf1375ba4275d0e3951993f8e220f legacy-trunk +31248 474cbbdf00ce7d64478e80509aea70a873a58b78 legacy-trunk +31249 21283b6ea7f1a6dfb70865f2b1ff126a09e48218 legacy-trunk +31250 04384f4290baf6efbc8e191dc2c19d242c074247 legacy-trunk +31251 cad1185eeef7c168aea1a29c50b77d817a911ce9 legacy-trunk +31252 7267214f07856bce7471862c5f7f080ef1236bcb legacy-trunk +31253 3982f117679efb8368b982e62b77795639e81b70 legacy-trunk +31254 f2f06b6ecdd71bd75f44a24ec2f8e92c1944bbbc legacy-trunk +31255 5e31529fdd4faf9861fd2f139f4dac5708c06ef7 legacy-trunk +31256 d502187b2b06e00a7f5b7b3ea06b18759e71c9ab legacy-trunk +31257 8d92af144c16ec7877037aa38cae421246a737cb legacy-trunk +31258 03cfc637c3935882f23c887ff0341ebc0158f896 legacy-trunk +31259 b466c5fb4d8eabca3aee03c3b00df7cb09d6c8da legacy-trunk +31260 c1ecdde32f863c48dc8043c5f71630a1c17c0ce0 legacy-trunk +31261 fa9f9e57e98f8608c24aee936e439d7a8c40ace5 legacy-trunk +31262 e5e242cf46b1c4c77a527042ba20e40c77b1924a legacy-trunk +31263 7b2cd800c2296d42eca42f4d541c7ca6120d2310 legacy-trunk +31264 32fb94a6a4fe9becce32ed916a2199505ebaa00c legacy-trunk +31265 db416bd18d4f79f2f8ef0011c3528d62aeeec850 legacy-trunk +31266 4367f805db09c3f66066c027b5e968e098408932 legacy-trunk +31267 d8c765c09d8c1a8ea66b98c4e3a176a7e58a65f1 legacy-trunk +31268 ce340fb4b6149512b7fdbbcef25c39ba73d4a0c2 legacy-trunk +31269 4b9b8df54de9ad8554224eacf6467ca3e81c52a6 legacy-trunk +31270 df74127e2c9fd152158929452cca388aa2ba890d legacy-trunk +31271 9503685fb4e8808925261e8ee6d627038abfffb9 legacy-trunk +31272 b331e5e5cc4abf355deee7de0975009354971ef7 legacy-trunk +31273 abf9a912cfce9c5bb80a79480fbf0ed1aa2bb92c legacy-trunk +31274 c49638305a28b0d2806f2a474a91bd2df9f4bc87 legacy-trunk +31275 85359217091caac2bfb4ba42baa7660961d81271 release22-maint +31276 941de791b17aeb327df0d2c3a68644d565d8cd20 legacy-trunk +31277 59ae41e04ffbe7fc7b8564e40785d22a27f3e645 legacy-trunk +31278 9f94009b1ae0ce78ae24b16d24a2fb6aa7d870d9 legacy-trunk +31279 47a6915d1c36b4b3963fc9347fd9336d67d3df7c legacy-trunk +31280 c7cf1b5d471b7e7f3e2efe44470a3de1b5698e83 legacy-trunk +31281 7850fa7fb6f1a149a8971b32ff74dd5d90580e3d release22-maint +31282 329a00777e320cae7ea88a340bf4686c4c17b1c0 release22-maint +31283 6b1789ac2f95813e12859342e993bc18b6cc4d08 legacy-trunk +31284 98c34cc1cf400b64e48af2cb4449e22fcc3bb69c legacy-trunk +31285 0395512ce1b5ab89c1c6676700cd245f05fed415 legacy-trunk +31286 38d05056195c9c187e786d07ed96f0dded7d6969 release22-maint +31287 a4bde915118c605934ecab0aa50d3aaa246e1c85 legacy-trunk +31288 59482317166e6a7732473afe21c6c931baf1a116 legacy-trunk +31289 c8148d7f0c986e0f0de8f62d0960713e357dc8b8 release22-maint +31290 a8a647e1927b56e9d677246c5fbe5be5423bc54a legacy-trunk +31291 f4cdba83be56028e65cfac9370daa93efafcad9f legacy-trunk +31292 fc88174c0c0adde36ca63861941acb4cdfb2186a legacy-trunk +31293 a036a5197610c7c929d0c904f8e20c2d9f373379 legacy-trunk +31294 7b5043c0ff4768678602ec92f39d6f737cf8d4f3 legacy-trunk +31295 c5ad0a2489b8275d0a2d4d038313c3da3e5be6ba legacy-trunk +31296 82cbf1178e4f4f2a6600fd49e29dbe29f0facac5 legacy-trunk +31297 2d55be3a8ec34ecb19132d4babf101614fbbf76d legacy-trunk +31298 dc5e1d9180558134d286fb74882d84e219fa6517 legacy-trunk +31299 2c389a0448a4fb08c64526c7ca3b8ead47752ea1 legacy-trunk +31300 9f713c7b7fd9100e565385c063fe712f963b5b99 legacy-trunk +31301 3566b84e66b9e756b2306ade62602b1c02382278 legacy-trunk +31302 24e8c7e521f598e5d0ed6701a49c20458b11df28 legacy-trunk +31303 bfc52437930711841645ef72d038ae81a3154796 legacy-trunk +31304 c18422716ff26b88105272e9ea89285e012236ec legacy-trunk +31305 8bff3d0944ba769fbf27b4caeadf8b8417ffe38f legacy-trunk +31306 5f6931b8352e41f0e1bb355bfbfa476fa24a9539 legacy-trunk +31307 1dc6366543d485e764af59a503af301984c42f74 release22-maint +31308 fc5a60a61e32f53edc088832205b9de7aed80652 legacy-trunk +31309 dd1130253f103b96d6abdfadd1e2287e435602c5 legacy-trunk +31310 cc01fb654ce3f55cb6de3e194c9390dc57be982d legacy-trunk +31311 904f0e769820905ebc765c204a7f52fb238204ef legacy-trunk +31312 ebcaed7948e80e1cc97f6bf52ab0c5e87df60cd1 legacy-trunk +31313 2100182f74e38ac55f40b44337ffdf771736c99e legacy-trunk +31314 c20fecb5cc9c56e37fe67f88978f9352a1f7bcac legacy-trunk +31315 f34446fa216e5fcc1372a45acf592605db5d8f7c legacy-trunk +31316 0bdfd65bb122593109c976b10a6a3026a9179aef legacy-trunk +31317 39b1bac89365f820cd39382f4b97733da8442331 legacy-trunk +31318 f2b431364f6fcbf0fa42232cd194de2428309fd2 legacy-trunk +31319 b650a54a76fdadaeb7e1531e4f2e2f28e6144bc3 legacy-trunk +31320 9a6054c6d46fab6db3bff2f99da78e61777ab138 legacy-trunk +31321 b56f00ec808312787be22e2f8ac5047355949ee4 legacy-trunk +31322 f0409d754b9377efbcb9fe5dc16e81544eca037a legacy-trunk +31323 d2b01c9dff16835b9eaf8199bdfa0efc9bf80902 legacy-trunk +31324 2042e2051d9784756375799e7a6cdb3e152a28d8 legacy-trunk +31325 0400ba78a8979a4f8898096ed438a76ab39381e6 legacy-trunk +31326 61973d5f6e253c897b89761050d775db4cb1e9ad legacy-trunk +31327 e62099c65a3c3c1e3494017be1eaf2ab85f0b267 legacy-trunk +31328 b0539a450917250cc6f5e1fb2b5f62776e9772f3 legacy-trunk +31329 3611976cb174a5f95349db5a76c19ffdd6372670 legacy-trunk +31330 0c7e8c3f642f615a572a6ca44562108bd3bedb80 legacy-trunk +31331 372e3483d32754281c61750ab0ec6ff97028d9ef legacy-trunk +31332 c7df225e4e4a57518d3f067137930c8003a82562 legacy-trunk +31333 8d1b272c9e71c24294dbc76e778397c8999066e5 legacy-trunk +31334 9ec47e65117d39daa3434f69b6b7fb05d5d80e69 release22-maint +31335 e8878c8f54df5d5e11ba7bd507d63c7082060436 legacy-trunk +31336 b95b9abb9bf39e571e736e316e055f859dcae944 legacy-trunk +31337 d2e7f468f224e812ed53fef97deba27128664653 legacy-trunk +31338 8d6ee15866b216d41ab9f00b76182be8c4191f82 legacy-trunk +31339 5663e0c818602f1840fbe5056fc94d0c1ff9d8ae legacy-trunk +31340 42396a786f59332dc24dd47656bb93fb9d11e6e4 legacy-trunk +31341 cd05af701e5d65bb7021dbfcb5e25f9bcbe0ee08 legacy-trunk +31342 f6c95f9138ad372d912863047b99be1f21cc9df7 legacy-trunk +31343 48dc4a59a50ef86e1a030d436592f53b839c6339 legacy-trunk +31344 cb1eeaeb74a06607893aeee8d4638d730a57f303 legacy-trunk +31345 faffb11f54e8d0a4f8795c429d6112b58d0404de release22-maint +31346 bf083e35185f5430cc1be5dee327b9614392780b legacy-trunk +31347 59fbae33a0f9d7e5de7b20bc295ef938fac8fdec legacy-trunk +31348 ee10d7e7f818cc43bfd7bc7cb4347bfcf53b9df8 legacy-trunk +31349 fbc45beaf0344cfddcd33e57c1a861b543c9819f legacy-trunk +31350 b804ee5beb49239de80332a9311f1b26f1403dd5 legacy-trunk +31351 19ac12ac80415353c8fc2fdb0b83ab211a0bccc8 legacy-trunk +31352 651d1123ed6e3722a3aaff02a9e9c2401c9617d1 legacy-trunk +31353 bdeacf7b15c966bb514175b180071a0f4ee9f74b legacy-trunk +31354 011f734258db9bbeb4720c15c4aebb76dc2f861d legacy-trunk +31355 7dffcc498c45831b6cbb43704a6fe8b93e68f7e1 legacy-trunk +31356 c377c56edfc8d36b077cd350b73eaec17967b3f5 legacy-trunk +31357 6ba940cd99ef9831c6205a8667169233b56e806a release22-maint +31358 4a02ca6bdb6f4f7ccc9c7a247739ce97dae6b04d legacy-trunk +31359 bf9ca086b8aa627042a278dba7543b49beca07d8 legacy-trunk +31360 6b5696541ba4ef4a93e58284f8b036197c90f472 legacy-trunk +31361 7f171f9db8afe48405f08c42ad03575a992315ba legacy-trunk +31362 523efd773261a672aa9fbbabebf5c83f6e8536a5 legacy-trunk +31363 94bd11b11df7d5fdb07518aa692977a109952dd2 legacy-trunk +31364 5d2d24a7382592d013fd9fa2573af05becda2683 legacy-trunk +31365 221eaf7814f44b629060bb2bdb1a32bca48e6034 legacy-trunk +31366 10259122bf5f2d139ae677497c9751960df2b93c legacy-trunk +31367 b51970ba218063309452962bd6aac5c5a9dca01c legacy-trunk +31368 50173ea1fd440716a9002856d9914d477f0dd746 legacy-trunk +31369 15b031748116c368c5bdb30c367c170c9c8e2802 legacy-trunk +31370 3160d304152194ce087d8c212969eb40390f2592 legacy-trunk +31371 1c1299bc33d607276cb3249f6481bf1cc4889769 legacy-trunk +31372 23f6b0d01bc6ad434cb6098d9e5de32a6dca6eaa legacy-trunk +31373 e4dbf0f0095be86cf351f74ba1dd64e7669ca32c legacy-trunk +31374 daa4495cf61ab14c45863cac82f9468230b9ff19 legacy-trunk +31375 e9d7102f82780ffbe02294a1c48962b1c619a810 legacy-trunk +31376 e0da4577aaa62415967b56d248384a8c36fee6e5 legacy-trunk +31377 cb2c3fbba72ee76bfee16c505cdc9bb8f79e681d legacy-trunk +31378 3eb0376e93e8420650b4330cb434de95f1d2b2c9 release22-maint +31379 c5dd077de0fc646a7e17dd327193298697a2324f legacy-trunk +31380 7a20bbdbff3682f7f6653d5b9702751385419325 legacy-trunk +31381 4b75a0b7685719bf8b3e13244f97da59c9026f81 legacy-trunk +31382 5620b078627119b69b6d034f875c52f95ec32cd2 legacy-trunk +31383 81afca747caa5c186ed01879e62079b8235f9692 legacy-trunk +31384 0160ffcb19e337bf13b829c52711befd2ad32fec legacy-trunk +31385 cd10fa721a512ac8b382e0b7e3c33774e6b40e44 legacy-trunk +31386 a8780479d4e0977c228eb7f8c78269569e8eeadf legacy-trunk +31387 9453d8cdd01e8f7c08b50536acb089fcb6d3f182 legacy-trunk +31388 e7cd0861c273b56264cb7ca25e7ecc3d632cdc4e legacy-trunk +31389 38746337ae6e08e15386c54632ff9b3836ea3d20 legacy-trunk +31390 f8440bb8ede5d19f49fc2f6feac5eaff923b782d legacy-trunk +31391 83bb6c9dd78c0c63bc511d940906daea13f9f505 legacy-trunk +31392 d19661e198f7472b60360edeb45fe8be73792e3d legacy-trunk +31393 b4eb34372bdb5e712c7b648f038cad20fed6b74a legacy-trunk +31394 65494469ad3eefde24dbc62cfd222b75f6574569 legacy-trunk +31395 bbbba0ee61fb6f2f608466384aa9bae8399fd6c0 legacy-trunk +31396 e6cf9557de42a899c9f9ab5476df3732fc0de89a release22-maint +31397 a52137b88eb3cf64d9b65fd10cb5ccd9c3e7aa55 legacy-trunk +31398 870cf14add2adbc706a49d47b357aefe0d9a7fcf legacy-trunk +31399 a9c96bb46953bde8b14d7d328c562ed90a90ec90 legacy-trunk +31400 100fb684cf3e5f5343ca0b04b641ccf530ee6e2f legacy-trunk +31401 11e6123de6fed6ff9065faed9b70a489acfffaa2 legacy-trunk +31402 88a42a7c238a64e79025eccdf4e58a1818ec47ae legacy-trunk +31403 6af780e0862d009c680ae0894045d699c5913207 legacy-trunk +31404 abdeeb818a9a07c413560e1539c4638f6b9b3bac legacy-trunk +31405 8789e9822aa4c971df1f8eac63a127f436119acf legacy-trunk +31406 8a6c45910ec908d57836496bd13a7c88e8e7cce6 release21-maint +31407 be7683a6f521c5a6d0283c5f74f136457a2eb4a1 legacy-trunk +31408 884fb558f2b91d0bd02167fa3aadb66cacc8770e legacy-trunk +31409 5fed1142fd34b9066a46f1377991678141f4b9bc legacy-trunk +31410 148d8c0b96472339a5b28791af48dec86b823061 legacy-trunk +31411 46659675d7f79209cfde460f55aa9122ec02c5ad legacy-trunk +31412 520a8c0c9a25ec8b71d37a45cd0902fd6641ef61 legacy-trunk +31413 2094e199fd55631f0c62f1007c5186434e523d9e legacy-trunk +31414 eacf97759038c3592d80ce8cdb03340fa5667ec2 legacy-trunk +31415 206c5e3b5be75b19ceecffeda69bfd2d9bb41ce2 legacy-trunk +31416 cedf9efa68f814f38a3127955a3729d309541473 legacy-trunk +31417 31e8581bcf259378e95af2689f4052e7498cc827 legacy-trunk +31418 57d0bad73c8e5a24bcf1541ea0f260b22e1f0424 release22-maint +31419 e7d59db6839a719aa5f74aeb49ad9fe4202c84cd legacy-trunk +31420 5aee1c272938d50503b084ec4d382ed53304b8c1 release22-maint +31421 d8b06012b3815f2a9cf0b4e877404d9de89bf405 legacy-trunk +31422 a759057ecf1b320570508c6f99ba7e5e91bfcbb7 legacy-trunk +31423 66fa24777f0aefd8c4d78ce9043a3ecb11bb5d80 legacy-trunk +31424 7428c12f503f6d969cfd1c28b39e398d143f2a36 legacy-trunk +31425 4e31e40868498a8bab9c4a8e815e8938c8e978d3 legacy-trunk +31426 cf1efca82b1837fb0c3b597801e3cce003f52fd4 legacy-trunk +31427 c163f95b300c649f905718aab86896ca7ca665d4 legacy-trunk +31428 d0f4f3cd4fe41c85752ea9f02859874ab3f451e0 legacy-trunk +31429 197d64dc04dc246f4870a484ff419751a275cfc7 legacy-trunk +31430 55adf08a213a2d8461f17f7a2bfbdc1163775228 legacy-trunk +31431 81b2bcbfe39bb60083bdd87f18492196cea2515e legacy-trunk +31432 e5820a150d87fe8434ec80edd40b834fc4705fdc legacy-trunk +31433 9bdaccd8a908c230215006022c968943723d83f1 legacy-trunk +31434 233ed6cc8e14a724ec6f97c7c8e9d78e3015ada8 legacy-trunk +31435 a682cec6b880a4974791cd00fe0f12a6fa71d743 legacy-trunk +31436 3e169d294395b81d4a808f0730ef96f2593232c6 legacy-trunk +31437 174749f5b32faa18633b6647882de3d2dcd74ac5 ast-branch +31438 47b8cabab7b103fecb594d8cc7d3bf97a3e92133 legacy-trunk +31439 9b42320f1e0fb04879ac0fc5686886f3b8e3083d legacy-trunk +31440 b0dca92c299a5e963e4a1eb30ba4d52cb096ce3d legacy-trunk +31441 95b750446bb99d4ad1a03fc31131201dfc2ff02f legacy-trunk +31442 c5ebacbba0bec05931a8767a86ef3b9220f39b5e legacy-trunk +31443 cdb1abc1b40929b801a190492bdfac68c2f56ef3 legacy-trunk +31444 c7d7f350e96c45a968a5f4a870991b584775f7a6 legacy-trunk +31445 a6dfabf3b92bd7a355e85a107080f20687ac98f0 legacy-trunk +31446 93d44870e8b58a1ecd123d6aa9bd9c94ce918d20 legacy-trunk +31447 c346d095791d788857d60f4a5d819f0f294f32a9 legacy-trunk +31448 be371ffc4cd07a1ae5113a7ec5505d8fb9db0e96 legacy-trunk +31449 4b5c2e025c5ef5f892df7ed8dbb4a432af447b59 legacy-trunk +31450 8e7432cdf7d8fc654acbc9a4160f811607615170 legacy-trunk +31451 2759b048da9b6f409dc19c043c3fd843bb590354 release22-maint +31452 efc465810e1edac9ff11aa829c9e2bc2e583099e legacy-trunk +31453 ec1052ef73ba89c473a47ad32936b9fc04ad7bd2 legacy-trunk +31454 3018f31f6830923b908cfccef185366655c355e3 legacy-trunk +31455 2c4ab1da6eb47ea18ca64f6db88162711ac990f0 legacy-trunk +31456 bedaca9853f904cb3b9b481378fd46cc934b40bd legacy-trunk +31457 84d309b676fa7b77128b49a2ca003d1e1d202745 legacy-trunk +31458 e31b39930a312834ecdbc8735fd5042f71fd6b4a legacy-trunk +31459 3da31778ecd724f8a140fe7746d443d1f5a3a222 legacy-trunk +31460 850c0da101b63ebbebc46a2ce874d4e871ee3fbb legacy-trunk +31461 2d50049bd21df7caa11ec2b1d50539d7996e9ccc legacy-trunk +31462 70e29ef9fa62f01d4f3b3f792e75c40eb5799b17 ast-branch +31463 ac683ac6759afcff54384a471792cfa03073f0a1 legacy-trunk +31464 44f3e315929b9e4d9fdf33df9aa9fc37d22dfad2 legacy-trunk +31465 f67ab6b664540b42d70aad0f4fea1701bfad260d legacy-trunk +31466 86b506dbea18032ff1cc10e58cf80a5088504bca legacy-trunk +31467 1afafed9fa7755bc386543de708ef8297df33a1a legacy-trunk +31468 8c211ccde2b4b4d8c55be364a4f60afd7fa9722d legacy-trunk +31469 c9401a36bae714f0cd5f141cd17f467326ea587e legacy-trunk +31470 8c6c797727a935fb0579531cec390dff5c95aa9b legacy-trunk +31471 1bd4857175646260b9a4517a77261016b04358e0 legacy-trunk +31472 14451dd3acb04d1add811ac16d4c066bdaf2cff6 legacy-trunk +31473 9255fbde43f362d1c04f34de463eb7a72f0f1094 legacy-trunk +31474 3b30f66362be00587944ae969c692b0fac1e2654 legacy-trunk +31475 a6962f52f23981a4c189c943b38f840b98a0178e legacy-trunk +31476 b5560ae4d971de055332eb74cf0fce0b6f914d8e legacy-trunk +31477 dae79d78320579606c5fdcc3b23c259a4c5c2276 legacy-trunk +31478 0f018df974dbb9c81139885ff1e015c5bcdba768 legacy-trunk +31479 db1d4584a5e1c115cb082a25fc917ce4867d7957 legacy-trunk +31480 b4eeb0bbdd48b8cb45b7d143f1d27c7de3faa73a legacy-trunk +31481 47a764e43e901853bfe8f346046b3a58bde0dee8 legacy-trunk +31482 b540e608bb8a6bcb18460ce615d66476af7a1224 legacy-trunk +31483 aa88aef3ab0eea84037331cad8b726737bea8d40 legacy-trunk +31484 1e76ae3c1154d6ef1afbca26872a1b30ef6981a5 legacy-trunk +31485 f310894107cb1953a1bd5a779bee6db527bfa96b legacy-trunk +31486 f3310dcef3f8b5e089f67c43fa7471e702badb16 legacy-trunk +31487 70e196af476d48eec351ff610b035f2b90f9459d legacy-trunk +31488 91fc9637e56a09c2030d551cffeef036211010be legacy-trunk +31489 e07b21ea3c45ddf44930efe91a081628d73601d4 legacy-trunk +31490 cc4ad9afa21d33880ee2d2232ccef5bb16ed4b5c legacy-trunk +31491 cb3f18908cebee05b9c9184200f90ee5641a5f10 legacy-trunk +31492 ac10729f0932d09ab978b93d337801feed530ca7 legacy-trunk +31493 e27342a641737f7e0046817f1e72dc94ad0bf98c legacy-trunk +31494 226463445697203a275035bd06b3296e8cc0886e legacy-trunk +31495 3baabd027cc4d4120e8e1270b750032fe633a78e legacy-trunk +31496 8dcc520d3a2967a2bbc56161f6b2c6d25c8dca91 legacy-trunk +31497 b28d4fde9e9fb8f3c8b90ce93d8879354bf2e0c8 legacy-trunk +31498 4337a899fd13247f32421e413912b56d1a5e3c2f release22-maint +31499 47c9421358dd047d29c33207538b0c86651f145a release22-maint +31500 4c85de247eedb97f44c949ff8d386c64e20ec0ac legacy-trunk +31501 e0a8c3115005e1c339e936a6900a27acd75de3eb legacy-trunk +31502 2e0aa68d434fcc406ada9ff5a398a78652adb0a8 legacy-trunk +31503 53c802927202e8427538446a457931ee53d50240 legacy-trunk +31504 8fc91f50b8615065d6fccee8fe8318dfb7d89938 legacy-trunk +31505 d0d29df2b6390053d5b3db4959970352524ea5ae legacy-trunk +31506 cc95bb7870dc547c0cc8e835fd7418e67f791a35 legacy-trunk +31507 d5ea2b67b5f443f3c6575fcbdfc8a6027474eba1 legacy-trunk +31508 0fe321e78ad31a1baabd965d55791617287a6340 legacy-trunk +31509 4b99a701defe0eb70b63198810a7604251bcb0c4 legacy-trunk +31510 96327ec76d9e02b8431158d2461c18cc3e4fd8af legacy-trunk +31511 e01d5dbb66a459011e14cfc82b47030c3927609e legacy-trunk +31512 eb2a984d37473ecde735d25bbe9668ab6324a1ba legacy-trunk +31513 387a4122cbd1e66c2dbcc5ce5319eb6e3b6bc24c legacy-trunk +31514 9e0f2242277bfc1fc402f14602b4a677adf110ae r23a2-branch +31516 cef7c95e748c1cc68e94b9acb32549dfa9392fca r23a2-branch +31517 765019758e95102a2baa1cb22a02bc4d89b99164 r23a2-branch +31517 721b6f181fcb9a9420bca88d7c0f5f85474823c1 r23a2-branch +31519 c4b919fa0be3eb94f73c748b68daa5bddf96f59f legacy-trunk +31520 4809fb0e86601884f8f3e0cc7586c84bd57e0bd2 legacy-trunk +31521 f59870976146860babc5d364865e6d7dcfbf1448 legacy-trunk +31522 658602124df52823a6592a6d658daef506a1ab7e legacy-trunk +31523 2c751936f69767a7af4349d1dcff7253dae9ee7f legacy-trunk +31524 b26f5758414a0f13508f0ba49aeb3e729b573290 legacy-trunk +31525 e7b26c3f356f57d359c55093f692f8a46774261e legacy-trunk +31526 0b3db0edb151ec007fcd3fb524bfd764cf48226a legacy-trunk +31527 5367cd0eec477c7590a30d20ee169ae403f977ad legacy-trunk +31528 4489918a4ccdb9036024cc83b276b8a999b05c8e legacy-trunk +31529 beea4f21c9f057c3b139ff9680f5816261b0e838 legacy-trunk +31530 e267ed100d85fcaac956c090298f11b81319c73b legacy-trunk +31531 e11a178bb453fa4476d14a5ddb1666641dc7cd74 legacy-trunk +31532 107d988901a0f93c468ac910507660101228703c legacy-trunk +31533 9e38f817092fef092adf7ac4734da6c07118fd69 legacy-trunk +31534 e27f58a5073704829c7d9b127a79a53a7a229b6d legacy-trunk +31535 8f70602fbebb3c3ce1771a04f90d020463869c0c legacy-trunk +31536 1d92c15bd0e72589137dcd64de04b49389f61e69 release22-maint +31537 739ecfb5f15e889c0ff118c8e2ea04b184f32952 release22-maint +31538 77bef6aa48e55fb0d86a8b18d4336222031aca3f release22-maint +31539 16b25032217ff510136a9cffbc7291c32db5cd42 legacy-trunk +31540 d92d9b6a8a7d3c2687bb51ef027b4b5c995a407d release22-maint +31541 eb5e296173109d0ccf098ffab9f15b5069dae556 release22-maint +31542 5cf0921f4b962625e9dae2f1a1cafc95cc4b555a release22-maint +31543 2df92049d925017bbb860152acf7ab76844c6b16 release22-maint +31544 a4f9d91a321a79df48b757955d26d21430f6aa2d release22-maint +31545 fe10ece8ba68c4aefa48d1337357607e3af9e17d legacy-trunk +31546 7aa2163889acf87f065491ada81503943e5e2a49 legacy-trunk +31547 0eb948364990fb991524db467f951d064b34e0f4 legacy-trunk +31548 facff522e7442ce01fa8cb380b652c5fd138cd37 legacy-trunk +31549 729a1c2ec4e8e0fda2de53a3fd7ba142adedf5ce legacy-trunk +31550 612883eaf50c6e71ca187008e6f51e99f8eb715e legacy-trunk +31551 79ad6156d6c424465817c5bbe6f4968f4b1a4635 legacy-trunk +31552 056ffa554517a788777deebd17b224337e5eb91e r23a2-branch +31553 a8c0af82288846e8a95eafe68b002f46e32f1a79 r23a2-branch +31554 a2e970588e5bb68802eacf9928002908b3ae51dc r23a2-branch +31555 bce3df075f378093b280f4f0f32b5841e0328e1e r23a2-branch +31556 3bbcc3bba560c8b4673f31f8afd1f86bf2cda564 r23a2-branch +31557 b849482c70c6d9f0b5502cc2aea02995ba93cf24 legacy-trunk +31558 fac762283abccaf1026ffcc00cd0bb757f098682 r23a2-branch +31559 1e907462e83adbcf54dba754ef44010e60e8f9fc legacy-trunk +31560 78c9c4a018cd1a038b7fae59434dc12af2a1ab32 legacy-trunk +31561 32a0c2f422f18de9164e03011e613798a08a3f3c legacy-trunk +31562 21a50c308db4592ed0f8fd5fa0944cae44bf3738 legacy-trunk +31563 5dfaff98091001dd6f25ab20cc7341f50deb1946 legacy-trunk +31564 872c6f2028fc4b7f36ffff5c35cd5ed6f58d4b32 legacy-trunk +31565 808437b83b151866ad23b098e5b5d5930c50436c legacy-trunk +31566 61fa6b55c1de2d65a4e6332d1a898ee05cca1ca5 legacy-trunk +31567 e63f1eccd250dad39a5eb9188a90b83a5ed3dda1 legacy-trunk +31568 906459614b5e712b518c91629e853fe1d0fbc9f0 legacy-trunk +31569 43a9ecbd9607ca33d18727916a83a935d05f4d4b legacy-trunk +31570 abd57c5358bd7a0ea03102e9802903004a739e21 legacy-trunk +31571 6e20b049ed6f6c45c819583b118ee0703fd12e57 legacy-trunk +31572 25fd28c8bb6bae9a81e336f2eb52d5257c0a4bdd legacy-trunk +31573 904a8b822dafbfbc6efa2458569f36fe14bf7713 legacy-trunk +31574 53bef20f84ccd2e923993bcf5ca1f2a2fda5fdd2 legacy-trunk +31575 1c2c97d3456384e72b9f1b140d9e50fe3ea9dacb legacy-trunk +31576 91624a47537c701d58e84fcc879302a00b14ef00 legacy-trunk +31577 f34fcd63ae28e08357726cf8fe7ff291cb508c03 legacy-trunk +31578 53ffab5db015dd7ac6ab8a8ad657f7dc57d0bcb0 release22-maint +31579 be09d32687d8c5ef579d59d0c12c44cbd80a4b0a release22-maint +31580 3ddb092acea8b8ae533e28ba2d56e37471cd23ca legacy-trunk +31581 4f6c6330806337d50b284cf38bcd8e61b7d142ac legacy-trunk +31582 d8b9d7c04146543e71abd5fcb0fdac78b3154c3d legacy-trunk +31583 1b6538aa09591e1e9b42608b7ea6a6de0d940841 legacy-trunk +31584 4ea378a71f966a8bd8f02d66c35828cc8bd5b0ad release22-maint +31585 db92c77b05e26b5ce3905c7b223b56a492a0604d legacy-trunk +31586 486a0f516db03d17c7087fa45b9ea4384c2e6893 legacy-trunk +31587 784ed605b5130baa6f43fb0ba2af44aa2cd437fb legacy-trunk +31588 7802d8c1adac840b204282871e57e328ce8de28b legacy-trunk +31589 2e8f0531919bb2f1441c2ea77d5c4831ef517820 legacy-trunk +31590 192bd6e135aada58f575c373785d7e4e28e4bc89 legacy-trunk +31591 b38cebc76d8251f5a29dbc3019a2ebec0dec35ed legacy-trunk +31592 5abc5d08814f968a3acdb4c3e3755a50e88cbc4f legacy-trunk +31593 823d5b1f32e12eb5995533aa56e047f2e8b9cc41 legacy-trunk +31594 0a89b406c732f1f6a238c2a19859ba8be45dca74 legacy-trunk +31595 498db1bcd664894cad3abcc37cc83455535bfbd7 legacy-trunk +31596 ca5b0cd7a5250495cdb0adcd436e186f6afc9334 legacy-trunk +31597 40134070e6a6a0ddbb1f7ea78849f8fe7ae3f7aa legacy-trunk +31598 a8c87a0beb9803610915cd06613b03076b0f831f legacy-trunk +31599 1a0c231c6b0cae80429426f1899a0c186f6f7993 legacy-trunk +31600 723c5457307d9385ab2aabee190e940167ff9222 legacy-trunk +31601 7f90b5b7001ed1fd88f983db5f035b815f2cc0ba release22-maint +31602 fb79cc2630c1ee4242bb7219c058d7b8bf24d186 release22-maint +31603 f8fc5e14bfe87a5cf5dd75c2d1631e4c7048852b legacy-trunk +31604 c75661444655388325d20135cdbd7625e62fb110 legacy-trunk +31605 c3665df66d6d5b2c8da9b965bb1cc02912e1c919 legacy-trunk +31606 324896b7f4e1e25918af1a8e993534461ecca978 legacy-trunk +31607 c61ef183ce2f15645c4a400ac01fa65a9a9c8622 legacy-trunk +31608 d6730590526c314c5ae0f6f8ba6a71e3647a113f legacy-trunk +31609 9d297d3de36f5861a5db767e9ca740ebbe157d75 legacy-trunk +31610 f72c383bcc45d4f8844f303c44619465aa15ecfc legacy-trunk +31611 86d8384d88102fe288723017564b1376a2b6c5e6 legacy-trunk +31612 866964c85b8e26d8395c417769ea4e525ccf3832 legacy-trunk +31613 5b3d59b978a2d69f166e3d972aab321d2ddc9bc5 legacy-trunk +31614 a8a64364a711d419d6a8ba5f6be85dedea1bff95 legacy-trunk +31615 0455cf89b12398a0e68c3e653dc4089109bff595 legacy-trunk +31616 b04625cea0613aad6da680a3ff7b8df092a61e8b legacy-trunk +31617 7fdcc4cfc75917554e9ad7731167dfc2ec78b9f3 legacy-trunk +31618 00ded62d2678a435fd40d6bcd0041b8bd096a68b legacy-trunk +31619 fcb39b0a6e306c8058cfe745fa01fdedddb9df72 legacy-trunk +31620 bb6bd549f92a7964eb969afe04caa509fe02457b legacy-trunk +31621 b8cb90fc3523d36849a4a09880bd9691557f8e6d legacy-trunk +31622 0c89dc6254be8d874ef10b3c9ff18e48cc64167e legacy-trunk +31623 cf9d9128345c3f1b49adfcdf6ee9cb27e82975fe legacy-trunk +31624 a5874453bf17c6608e592d7fba82f7b3d944871c release22-maint +31625 29965d0d465059d30874e6f780c5484ae126cc43 legacy-trunk +31626 44ba1572518f7029da54b0ca363b9167c7eec117 legacy-trunk +31627 f42fbc7c7d8e9ac2e05fd42e7420021bd06afc05 legacy-trunk +31628 2474381527bbc9c42a20d5e949d75223d4a07707 legacy-trunk +31629 465405a159c1f4277f6a4e6d4674c81137958319 legacy-trunk +31630 d9e9c964b6a46e50daff34936a5b9e073eb2376f legacy-trunk +31631 14f65d6610848e5bc956b4768d49c8c88dcd5663 legacy-trunk +31632 3c5a8814470c9c4bfab75ec70d356023f4d84de3 legacy-trunk +31633 04a93b7bdce496115b1078b97f292cc3d94e741c legacy-trunk +31634 12bab87a3dd2345ce9a43a02340fb9b933a50852 legacy-trunk +31635 899f2d210a34d8540e6a3ff4dc6e46d4e9651395 legacy-trunk +31636 d5aaa67c096af35692e3bdc942aefeba80ae8bc3 legacy-trunk +31637 748f2e5b8293882f7fcbb2189a289fc2bc942b23 legacy-trunk +31638 31008433c74fadf8bfa9b9d16ecb604e57b2c559 legacy-trunk +31639 d50d1ff42b5ace8d55616f1209aa651e73edb9ea legacy-trunk +31640 2d59ca29f384d792b3a816b9e5a5e222cfb6ed75 legacy-trunk +31641 7e649138312b3ff4dd82db1cd4f5df65c7434dab legacy-trunk +31642 54b35da9879e98805cfe13b54dc363bab6ca20bf legacy-trunk +31643 ab27183c8927f6509651499b54f39bb4727b34c1 legacy-trunk +31644 f4e72a1a9f13e86c262ef453c55202755157a1e2 legacy-trunk +31645 5e5eefa25f3ad1bf5968d0c42721b870f82af5f9 legacy-trunk +31646 bf866ab39dff2a578746b7138845bf4127f45922 legacy-trunk +31647 2f3cd3f540ad1aa50d8cee31b0b189f20e6fe842 legacy-trunk +31648 d9b487b9034a493f6749c7ca2864269628d2ca88 legacy-trunk +31649 15773e758fc73abc49574c9d8dd9e40cf5743841 legacy-trunk +31650 98d1071362f040d438e57ab5a8e73fbe3901efd5 legacy-trunk +31651 dd6a62578bc8640644f9ba1471bc41a6b1fa3d72 legacy-trunk +31652 d36dd41e890f2ba196c380e176ee46f81df24bf8 legacy-trunk +31653 7a2f683395e7282c8b33dfe276a860ddd940d968 legacy-trunk +31654 2c8c2c6b2ab79b1e4f26208979a0f53cb8ad271a legacy-trunk +31655 62888a7edf0b554f3cdd205186d976eba8d7a5ad legacy-trunk +31656 14463f4782402268aad366b3e91745900238dac1 legacy-trunk +31657 2fc52be77999134d70f256f527f82ff5d4d7d2c3 legacy-trunk +31658 9378f6e551ae7216a1d0bf50e2a80e52c232b61f legacy-trunk +31659 9b4eed4bb3e2e4a18339c529887e61761c4a4422 legacy-trunk +31660 4f4f2a1544784955ae318a2fcbcb56e73ebd8f11 release22-maint +31661 869695cba2cd37e63ad5d4cb92ca55aae58b45df legacy-trunk +31662 d24564e7e999cddcc9aa3d257484ec0558657cfb legacy-trunk +31663 c24a23b1f198af0b535719cba7a68682ff6ce57d legacy-trunk +31664 39cb917b5f7ab4bae9242b60ae18812fcb16c90b legacy-trunk +31665 f1981ee98223ce5ab250e70063a8048d0d30f035 release22-maint +31666 88e58e3d580773e704e16195db61fdb962a3e491 legacy-trunk +31667 f469a6d077f1e9508e7b44eddd5a4bda75d88f51 legacy-trunk +31668 4cccef9b4d545757be2a314356f8c597eea90d27 legacy-trunk +31669 5f923165319d5cb68c959b86368febfdfd73761d legacy-trunk +31670 87913529f248098f9e547d2b6b5937728ea0b9ed legacy-trunk +31671 a24aabcf5ea28186b85d6a3c160893e3a6b26574 legacy-trunk +31672 b009c3ef27b51c5379b03b739381aa37f0093749 legacy-trunk +31673 50ea8ded29d017f372539d8c5390753473a553aa legacy-trunk +31674 047b5d000aaa5164dd78be5d11606777865afe84 folding-reimpl-branch +31675 1d662342e19a64b3699c4bd77e09a8a77112c79a folding-reimpl-branch +31676 97b97e57190cff73998fd19e23a9f48466ea958a legacy-trunk +31677 f9f3010fc86f76a91bc2f54019984ba3c5d1e5d4 folding-reimpl-branch +31678 9ca4a67b99736fbea07d8a0962440f093b3588ba legacy-trunk +31679 cde444184336fbdc7b656a50cc3297f747e3fc76 legacy-trunk +31680 b53455a51b78095f53d0766e6cf006680d9d0388 legacy-trunk +31681 655a08557a43ec1624ab65b22266c1708b64638e legacy-trunk +31682 789b24d65d42045778678bbf87f4463f4e268ee7 legacy-trunk +31683 eb15de6a4a4cd06d20eba08fa73020a418917717 legacy-trunk +31684 b20a3685d23e1d1a6e35cf41ef5bbcfc58a2425d legacy-trunk +31685 f9db9dc456ab5703817ce74d4a32297b067f7cbb legacy-trunk +31686 7d04bd8976618745a01c8ff4f43273d3a05d04c5 folding-reimpl-branch +31687 41a9a072c68176af6cc8d520edd977979a9a5921 folding-reimpl-branch +31688 2cc19a325d667640e9329cfd4a738c72bbdbb460 folding-reimpl-branch +31689 dbf3ebeca7b1da62e622956e5529206e62386623 folding-reimpl-branch +31690 377961d766105fee37f408212780e2ddd87d1fb7 folding-reimpl-branch +31691 3992ca700e65803134f661c68727ba96721d5966 folding-reimpl-branch +31692 a3cf07bac37369f2a65d52655868203cc35f9421 legacy-trunk +31693 524e5f9f85e6af0337ca3b8956c58f0d36cb4f7f legacy-trunk +31694 8889654c0dd5d099f05858f05d89b1c5886094a0 legacy-trunk +31695 843d5c78952a822ea01927f02b5ab0043fc5e5e6 legacy-trunk +31696 898ce4e96f592b0c5b065c1564c09d451b71530f legacy-trunk +31697 f9b702c52daea29962ce0392a375a06e05d143b3 legacy-trunk +31698 2815c1a9f735834be7612b06bc269a1cc40e79d5 legacy-trunk +31699 9e737d63f3801e74dbedf30c252dfacc3506cc30 legacy-trunk +31700 44c31236743a07815210d04ae10597a57bf4b3ad folding-reimpl-branch +31701 2947459b078923293d768bad0709baeb2f38bf46 folding-reimpl-branch +31702 902fcfd5d65d098ae8ab011097a3990eea75083b folding-reimpl-branch +31703 76d0618f3fe0d8792b842e75543236112e6e143f folding-reimpl-branch +31704 a8361bca1c5cc77e46a111db4cd0d8c782c98ec7 folding-reimpl-branch +31705 5c0db41d38f93609b8326fadea12bc4bb90e62fc folding-reimpl-branch +31706 95abf3fc2b2d3344c4715f67d68b0c83640098c7 legacy-trunk +31707 12d4df71bdaa35df42ee64471edb56f6b1ba81a1 legacy-trunk +31708 bda490fc2691eb98774dbf94d8dbd556136f014d legacy-trunk +31709 0d8552408fcde18a75dbb062cd273e6848cae955 legacy-trunk +31710 e9fc2c1416089eb87019f79307b61f177e3bc612 legacy-trunk +31711 6d78c6bf31f7d2c8fcfac177264f59d230cc266f legacy-trunk +31712 178d19cff1638132fc7303fdb3af7b37d4122843 legacy-trunk +31713 3fe72a994103b35cd3d3e19e936e593b6141b333 legacy-trunk +31714 8a71301afc2da602b6794ccc18adff8489db0ead legacy-trunk +31715 43c7d8a084fbc39d9e2e5ec75aa0399a286eff11 release22-maint +31716 e405929c223e57cb2d8a4b3fd2c67e02bcb8d60e legacy-trunk +31717 29d80340fd414f8433630c70ed5b80b96923a1e2 legacy-trunk +31718 01aed72e309e52c1dbe60bc0dd7cc4724c98a820 legacy-trunk +31719 ba1bd6f6e6edc5608dc661255e874eadd627899b legacy-trunk +31720 ac965a502d1b77c5da6b981ddd0ae2f4163d05b9 legacy-trunk +31721 ab85c756c5df3c61bc63344804e2af23b07ddaec legacy-trunk +31722 89137be25e7ad7ee4fa0d0c88c0a4db906777940 release22-maint +31723 87704f89ea3f5cf39a15a83949cd1d5c3cb8b2e3 legacy-trunk +31724 37cde078b9332bd2928fde94f9618b052373dc58 legacy-trunk +31725 3030d67fb4a56697d5443f8417adf44e5e3ea68e legacy-trunk +31726 bc2d07230934d4ceeeff1ba1df3ff8af385a4333 legacy-trunk +31727 ce3760e8e6406a775b2404fa22f0f35308955a69 legacy-trunk +31728 24fe023901b07b5bbc2a42e099fc765e39951c73 legacy-trunk +31729 a6cd9d6d5ca3a490c3d017634c5ea63e9c2fe94e legacy-trunk +31730 5776fd188f205458682c3e166a72ab7d606e3127 legacy-trunk +31731 3f90d21debe96e1822594240a2c3f9e1f3252d32 legacy-trunk +31732 395eb561ece13676c0f2ed08ffad6949845a937b legacy-trunk +31733 48a5113dfef9812b62ed5f770fff57203837040c legacy-trunk +31734 59ca3200b6e5034e23e0af24122911a742d68fb0 legacy-trunk +31735 0a8e8632c6318b8c5f0f4385993280fd785747b4 legacy-trunk +31736 04df965d675b7d7d3cb0737b5eebf278f86c48e2 legacy-trunk +31737 5852352d95222bae690a7c0f508be2281c607806 legacy-trunk +31738 cd21be82f50bbcbbe78fe635636d40dddd901a1a legacy-trunk +31739 a1b8e654d5fe15f99f3c992f47259860b1d03417 legacy-trunk +31740 92f1d02e28f0a9a4f59c7523c075459f06771a59 legacy-trunk +31741 736ad73df5b48effc67e0608616b8268125eafb0 legacy-trunk +31742 46a81bd8ca0cd03114d6c787fabf6da2f46b6852 legacy-trunk +31743 29dddc01b5ec3769df34c953fc187bb7e8071d0c legacy-trunk +31744 8e607185689a4d6aaa2e00d27660fadc0b4363c5 legacy-trunk +31745 17e6e814d094e9db3fb7a7eba434bce196fabf7f legacy-trunk +31746 e48fb5fbfdf4da7bae2efba86a8bb918ae082fbe legacy-trunk +31747 149a5772dd0c462b644d484665860fc1d74f2a43 legacy-trunk +31748 fcbc824b6e38094c7fd54b4b75e3ec2952bf2546 legacy-trunk +31749 027dc213c57e72dae3c6a42b98c00e6b15beeb73 legacy-trunk +31750 5ca650a9005fa4b2c8704c73fbd5281e7c7528d6 legacy-trunk +31751 8f008b7cb97b3c4249348ecf6ff47e7ad8588a4e legacy-trunk +31752 2abd8a5af6ddb118ba86f48ae26783cce00618a7 legacy-trunk +31753 b7c29dc8afa0f305b916021b4f52fda4ee6e296d legacy-trunk +31754 efe249d069ba41b80579c6aa09209bf8459f45a6 legacy-trunk +31755 81415048b2aef0010451f4e3ab207564b8670c37 legacy-trunk +31756 8b7d9eb49758c5612b83a4512a679b19f32f772c legacy-trunk +31757 0749787994dbf383ff74c566f6015655be40d4a8 legacy-trunk +31758 f57d30d50648ed800fb7931bc7a80645a798f238 release22-maint +31759 a7f01302b16d2b147e55448a7d548f95e3c38ddc legacy-trunk +31760 0ab454593b53a15f5acc73371ea23fef11fb2eac legacy-trunk +31761 05575b7e67140843eb0e15205078f4124f9b9c27 legacy-trunk +31762 a382263df01d5a27f30d67c4414723445fd8c7d8 legacy-trunk +31763 bad915645fa22dfe965fd1c373841a62a4c61453 legacy-trunk +31764 771961e45314f02c1c10d44fb8499684b169eb6b legacy-trunk +31765 439101d4705bb05ebc1f7c147eb10c4fbedf7883 legacy-trunk +31766 2c3ef46359ef4605cb578b93aa852b8d6def7c61 legacy-trunk +31767 fb8f76df64ff40555d3da552b5f31e553661f516 legacy-trunk +31768 92e3b611dc9f920720b72b60adcd87401740cb31 legacy-trunk +31769 008a26c353af97094ccc81f6b7af8198dff692a8 legacy-trunk +31770 c03be22fdd24c1e57d231445165535e4ab87d317 legacy-trunk +31771 d4b262fbd04a207e65fce6dabcf0b80ad0a17483 legacy-trunk +31772 f2bd0f4d85750b8cee43c695844bbbfa65fc0d75 legacy-trunk +31773 b3c1587b2b8e322cd72714c2de801d6520ff4db3 legacy-trunk +31774 73b0dc28c91a7ae8c054a735bf4bb39410305d52 legacy-trunk +31775 9070404f24fad5874fee0cf6d166ecfc82609216 legacy-trunk +31776 7c8e8807aed29c6f2dfed93c2a4cd2fcfb81b5ed legacy-trunk +31777 997d481ea40910a14c4cd2fa395d5d209e01f9a9 legacy-trunk +31778 dc9475ec79855cc908896cc6cf9d639287c8b5e7 legacy-trunk +31779 eca697e06a07cc294b16e5a75b7bb39abad5df7a legacy-trunk +31780 733aebb57fb009c0ca304373e52ee2cfa8d93e7d legacy-trunk +31781 a2d79b93b50a0a93ebb7dea0433bbb59dd152895 legacy-trunk +31782 27addea33e0cad48aa71a49432291fff690a0a29 legacy-trunk +31783 cdea5b1b8280cf9ef91616d7723ab9e780702682 legacy-trunk +31784 43066f67c5dba7417008f5938f236bc44896844e legacy-trunk +31785 b84e6b4e18c8599cfd3975184ffe81b29acc044d legacy-trunk +31786 6e49ba3f60be556009e56e3c85a1167d67c3f0f1 legacy-trunk +31787 a2e68adde8b0f4ca0948b049cf3e3e8680ff73c3 legacy-trunk +31788 4cafa514101252d5917d9160640c83fe45b21665 legacy-trunk +31789 47cb85cdd5f31de8b5ff7e1e3a97b52878a0cc48 legacy-trunk +31790 d44f9cc27290555532e1feee823cba12e3f9c5d8 legacy-trunk +31791 271baa88424be29a883a5219ddb79331aaacaa71 legacy-trunk +31792 6273a158fb0acd71c75b7818e2e8126f6231109b legacy-trunk +31793 b5d6c38eb1636fe63908032c71adcc7fc3cbb60f legacy-trunk +31794 48a61a4b73a10be158000ba9c4fa06731fd98ad2 legacy-trunk +31795 30fa1f61b231a7ed6b83b4a80aeb6ce2eb361362 legacy-trunk +31796 8f23d39a9a3387a6287dbc886b34611bf4868aa0 legacy-trunk +31797 ea70032a24b102421fdc3324ab331afcf2064458 legacy-trunk +31798 00892affb60ae84f60d8cd9f745336d71a3684f7 legacy-trunk +31799 fe1d571c3f803e373f099d6edce030ee6d4035c0 legacy-trunk +31800 f13adc00c16520347a90d0a8b62c9652f5288f57 legacy-trunk +31801 0574326c78bbae46b7efd876ec7754263a30a0fb legacy-trunk +31802 5855915b00f5e5147130db1907d8f4f92ba43e31 legacy-trunk +31803 5c3acbf22a26f672fb0d814769b1f3a9b60b9f97 legacy-trunk +31804 6269eaadd41ef4bb3b8b303936fc33d1434999a1 legacy-trunk +31805 f95dfb33d76293c8089114e9a6718f73b3fa62ce legacy-trunk +31806 a59d8e4cb903867bf1e70200201ece39f5b8ad69 legacy-trunk +31807 4f679aa623c2f6c2563d4fddf078974150561ebe legacy-trunk +31808 4b6d7c75698ac7bf31f674c04680584cc2a13a9c legacy-trunk +31809 6ee8d5a30cbc2224a1d412bc58dbd72637bbe5a5 legacy-trunk +31810 3655e91b3deacff2cfc1a5e45763314147dfd8f9 legacy-trunk +31811 4b1fef37ac7bd7aa8c1b75ff689dfb171f9eef8a legacy-trunk +31812 d76301858941c90b8e76d98e82ab222d7c71edc5 legacy-trunk +31813 b246ca033e3ee7d8425daf3c6164fd5dadd985cb legacy-trunk +31814 03d3fa3e1d4e5ca4fc5755eba2a25b02e4137523 legacy-trunk +31815 fa18df746ec525d7726a5bcb5ae5e015c5cbaf79 legacy-trunk +31816 5c46c9587a2fa3178ef1c0bef7360cd893f3e497 legacy-trunk +31817 927a9833f83b79ae1ba9872bfca8fa3ae12a1926 legacy-trunk +31818 6c0667ac939edd3f5c06fc7a2c9c23fa07d9b1f8 legacy-trunk +31819 92b9301300c396805ea1fd42961ba7df2c119294 legacy-trunk +31820 2751c5ef98be6cc97933d084ad8feee7d4eb6d19 legacy-trunk +31821 a4e7edc69054d503bf230abe685470be0991bb84 legacy-trunk +31822 156911dba306c127832c7d79c4fe72f8be8f58ee legacy-trunk +31823 bea3d1fda3dcb021121f7bf6bddceeed75baa449 legacy-trunk +31824 b78d8bb5ebd71474da799d0857b6efde00722814 legacy-trunk +31825 e28b48fc900bfdaad33121f1be8be84f8d73e9b3 legacy-trunk +31826 fc929d71a450f438d8823c3c14e84ad39d8c0d24 legacy-trunk +31827 65b72267382909737db3f563098fd7f8fdd6eebd legacy-trunk +31828 fd9b882be07975bffd5bb27498e447f0123cddd3 legacy-trunk +31829 7f0bfbec987fa0df27eed06a0a0cfdd9a1cf15e9 legacy-trunk +31830 3365664b82942bac665c9731203e1bdc9d6e01a8 legacy-trunk +31831 4c644a60c30d93855df1a8bd403dc1fec7fa79ba legacy-trunk +31832 b1356dbaab9a2b96efb6a81182816c8d01c36e55 legacy-trunk +31833 fbae20a2e116deef7af0944d4e4e5d611f8036b7 legacy-trunk +31834 1028dc6807a5f9805cba9b6270c13ab01d9c2bdc legacy-trunk +31835 459c4291f759630d7a15e933746ecf8501b575ce legacy-trunk +31836 6a2d9ae430bea6c1f352081865a624b206a6f694 legacy-trunk +31837 a2957ffcb59865d2f60774e0d4f8be6e5e1b0863 legacy-trunk +31838 ef525c99b4eed66850cd3c6d4842a34fbe7468aa legacy-trunk +31839 51c74b795e9e9494c09fd7716fd006d3cadc659f legacy-trunk +31840 162ed2a9cc0c8a27e6836313e9fa5fc100e015fc legacy-trunk +31841 7fc3e64d14241532ce63d283dfd6338a11cac3d4 legacy-trunk +31842 73814cb5827f8c5d234b379428fe78928e28aabd legacy-trunk +31843 8d10f68d7c3b0af291c15b81e526668d06c68f2a legacy-trunk +31845 a8d24b97c813b20ddc4a6364fcbd6dfc228ecc26 legacy-trunk +31846 b972be806477f131aecad1a966eed5b7115d27f5 legacy-trunk +31847 c9fc35d0a3ebabf0d4c01485ab4a27523b22169d legacy-trunk +31848 22897ca10288dd1c2d566a1597ea99565b5574a0 legacy-trunk +31849 5a4c7e6f008e212f3f060cc548b7e1ee04c8e646 release22-maint +31850 e40527769864cb29d691bb1ce39b27803cdd91bb release22-maint +31851 171f1862dea957354e41c1f6893c9480b82f4ed7 release22-maint +31852 65dd9612a748080161107b6447bfd55cd938233d legacy-trunk +31854 0ba17e93f139f574fe3a5b30232d75385cea86d6 legacy-trunk +31855 7654c24decc4edb9c442be79dc1899015a468dea legacy-trunk +31856 2c22b5c09a58dc6193e2a74e7a03d713c5bec892 legacy-trunk +31857 abfe4b380305ed8c2a917be093ca233b9b224ed5 legacy-trunk +31858 14316df1c298b71653dc754b51d084026b272ce0 legacy-trunk +31859 9602c664ed7a2cbe681f2019edadb675977612a1 legacy-trunk +31860 73434fa9d2852b79c999d2787c4ce1a39bbf6fc0 legacy-trunk +31861 8c082936daafdaee323957acd9dec5f6cada8b38 legacy-trunk +31862 470504ef578b205366858aa47a0209d9aa64a1ff legacy-trunk +31863 b14d6741f49651b86f620001ed3b6600fb9359c3 legacy-trunk +31864 702e547f31e0d525df554cb3ea04587f0801970b legacy-trunk +31865 226c5bdd160b95ae7c70fdb81afa9863452068ca legacy-trunk +31866 00bda56f5433063cfbec1a5571203f3ba72b8d33 legacy-trunk +31867 9c3572a5575f9973224d9051ba8744ffcb2d2eed legacy-trunk +31868 5c9dcdc7fe8d69b3b2f4c3e7a1da18af7bd3844c legacy-trunk +31869 4f47df20415c71eb990961dce614ff336f368321 legacy-trunk +31870 2489d22228dbbc97dd101a18db6c7b1f06a9b81f legacy-trunk +31871 ef55f2232a10d731bdeae07efdc48c860ffabac0 legacy-trunk +31872 90f7fbcb3706957ef7698d86480b4c023dab2f03 release22-maint +31873 9188cb8e191b488ca530bdfc50e30e57f795409e legacy-trunk +31874 9278b1c80a67f0cfcead295d4cb4957226538efc legacy-trunk +31875 3e19e3b72d9b1b976dcc4716553002950cea18bf legacy-trunk +31876 023d3b50e597974eb3d41c2a7bad3d4ce6332b7f legacy-trunk +31877 bc370b8753f1260a0f4d669b16bb4df5c13bf164 release22-maint +31878 360a57805676dd23ab9a640eaf84884df28d10f9 legacy-trunk +31879 fd5ef7003469a63186458ca17e1aba2cac4beef6 legacy-trunk +31880 92daf8b06abc1862f5efe68c51078e046f2e9a9b legacy-trunk +31881 9ebc61b9e8bdba65a39152ec52555215031e77d2 legacy-trunk +31882 67b22fa4a8fe5f464efbfcbbcd934befcda6fe04 legacy-trunk +31883 4e221368af707b4b153abf7a86fe79fd040f05b0 legacy-trunk +31884 850626d475749d46deeb74658ba2fc894c4d7f69 legacy-trunk +31885 3358dfb1b18b422e0a9bec84016d70bdcc26622e legacy-trunk +31886 1858bcb6170682c3b77e3b4e8b8712bb997a5286 legacy-trunk +31887 cdd5d0cfa6dce358d926b9ee8361c0eb1be74ca7 legacy-trunk +31888 62df17e501dc683a3624889f0e5d5280679e0070 release22-maint +31889 02ce22830ab960979a02685d020c6e89febcb671 legacy-trunk +31890 b91a81d680680e01fd614173ab155ff6c6792172 legacy-trunk +31891 291b9d866ecf2a9c8d7f3efddb79859cb81d0bc2 release22-maint +31892 eec3fd164a7db8dd4c7fe88c19e2240dfe7431d0 release22-maint +31893 9f287e5eb03775249ee1d48a23997b4123dedd89 legacy-trunk +31894 70003b0cb8379520d680241cfe80695149f3e62e legacy-trunk +31895 b56d10ed33c5e85af2eedf3ca5a00ba1952b4169 legacy-trunk +31896 90f17c374f592728e89e499a06647c324d420e9b legacy-trunk +31897 3434d1b9206a5bd8de974c1a500ba7f958447d83 release22-maint +31898 cc35ed2b26a8b2b50433544c30d326c52fe55231 legacy-trunk +31899 5cf1f2f30dbd6cc4065b34d5e59c6fdc5bb6f7af legacy-trunk +31900 797909492c3867204437d1be5ab1c9fcc4df638d legacy-trunk +31901 26808ac7ee51ae992a9a0a7ef7bde740336f35d0 legacy-trunk +31902 980d6e0112ce1e4643d4dd1ac2c97fcfc5b7f84e legacy-trunk +31903 61b0ff98d95dd381e1cd73da9f30492bc4d6e687 legacy-trunk +31904 143915776cbc2ff31762e3a57924a01325f5479e legacy-trunk +31905 f5c97b65f9e8568579cb93259b74417ae178c45d legacy-trunk +31906 1fc1a305e3999a4410830cd47e205a6cb491b34b legacy-trunk +31907 b7340b09555d30be8bd34df5eeee820b506b9429 legacy-trunk +31908 3096899f774feac9283aa9b658c3e397f1b111d4 legacy-trunk +31909 e36ff492cbb1623c0dd7c16308bd2754df3a8ecb legacy-trunk +31910 d57421623449b7ab092a9ef10bc24a9b327175f1 legacy-trunk +31911 45054bf592e5e03ed61713f5bcd23364ca51ee5e legacy-trunk +31912 dd83a9a53dbfb91f89539151e86e9bb2442418f1 legacy-trunk +31913 d34bcb3cb216ea969693afb7c6e1c88b35dd9f3e legacy-trunk +31914 eddf59f5cc5841477de6222e8e71b45d2da0e703 legacy-trunk +31915 3ffbbb4f48da633f2ea43723ab25e133f5490821 legacy-trunk +31916 8d7ffe4caad9acac841c58e8d2d31aadd549a2a0 legacy-trunk +31917 34e22cdfaad246385380481768123a928381a9f1 legacy-trunk +31918 c7ceb9560eb0e1baa197fec00cb22f8959a03826 legacy-trunk +31919 72247ee2265374cc55b90c8825f9190cc6cbde66 legacy-trunk +31920 6fddcdd11f49fadc0c78ae4902f58f1a80bcbb57 legacy-trunk +31921 31a511f74b2816b10bcb81f93d3b28168b4e4ee3 legacy-trunk +31922 bab2b2863a6e04c038f433dfb53051fb5cc7165f legacy-trunk +31923 8e2473ad7c0cbab3f6cb00d9bf613ad7b14fd463 legacy-trunk +31924 c97c104c2d2496c8b1d15d5c733f96bc8930c91b legacy-trunk +31925 9aac870f03a29902c1f83bb15d87062dfa00a7ad legacy-trunk +31926 de013276584aebee49c670c77bd4005e5f4ac653 legacy-trunk +31927 ff78c3c3ebc466d0290f91aa9a95d05612b8b8b5 legacy-trunk +31928 eb48278c2e1025cb086735b7b66cd402818970ad legacy-trunk +31929 7f981dd7fa8d2dca45c9957383fdbd9c03333861 legacy-trunk +31930 fbae645513d74734f1bbb57b828059d53b4a4e8b legacy-trunk +31931 770892d78f2bb7986a1e27571434371aa3f056c7 legacy-trunk +31933 45854fc707d649942b681020b1ad4fbd48b3cd14 release22-maint +31934 30748c15a481af771631ffc3b45a0783159f0bf0 legacy-trunk +31935 e333d765f41ee1f395aa39971bac4430d0ad8843 release22-maint +31936 d877ffa4f7f22ac5fe6ee49a1455a342c6500729 legacy-trunk +31937 ce4b928c8340a1228aa904796e7d5d55c58d7aee legacy-trunk +31938 795d6144d2ee4cd843039f550e7b11ba7e30b695 legacy-trunk +31939 7da2ee3a9c43b3b9f24382adcc22d34b9b4a595a legacy-trunk +31940 ca43abb07638687930d7f0f81450eec72dc6e889 legacy-trunk +31941 e0ebfa2fb9369dbc8c746421f1fab33436f2f9f2 release22-maint +31942 f6bf781731d42564db8e6cd737ef83d9ea051c58 legacy-trunk +31943 f99cf9bfbbaf5beeff3c629a71c389d4192e68a5 legacy-trunk +31944 b872297406aa9c9fb86ec164c6cfd8e7b5737129 legacy-trunk +31945 b23434211d01dd800f21fd9163eb9f6197ede9d7 legacy-trunk +31946 94601d8fa51db68d8b42f9ab24845d57de0e77a0 legacy-trunk +31947 983e9291a7b461e2ad66a40757610d8ccfccc4d7 legacy-trunk +31948 f81239c12c60f80622319e6ae5858e6b16ec5ee4 legacy-trunk +31949 4ede57a42c620b2d1e00e54bf6329d3519c73255 legacy-trunk +31950 33319458fe995bedbe5f286e79392c9066872d69 legacy-trunk +31951 07617d0904a63f3617eb19ab4ed4a5bebff87b69 legacy-trunk +31952 5ee29f1364f3357815f28c24ba1d689e57ac0792 legacy-trunk +31953 16aa72a8c281ef20a51db7a8cb3f04d28c317d61 legacy-trunk +31954 bc9076b0169498aa53b374476f08554c740fceff release22-maint +31955 1e0e679471758b59f0657e4f65f4acc5fc27f98c release22-maint +31956 d56282c28a1efcdf5eccd011934540a102d44ddc legacy-trunk +31957 4f038d3a8878cbf7495b724a51deabb257405226 legacy-trunk +31958 a2110cb165f111bffe945b44c3172f517007c8f0 legacy-trunk +31959 664212a6e283e2a2bb8134a125d5bc7b9cf38d53 legacy-trunk +31960 ee94a98cf396c0445a38ba976f6aae7209a4c5fd legacy-trunk +31961 c6c2f26df65b04ecddf71722fe7f58e56cfe6215 legacy-trunk +31962 5f5364ac4adbc47c0dc81494fd2fa6bdfc55547d legacy-trunk +31963 f00cd693d4e02d327a16a47506e53ccbb5f42b67 ast-branch +31964 e53043bdb8f23ad4d918d8ad338eaae0a126b998 ast-branch +31965 cb8d427afd211572cd6c817cfc4ad05fdc236972 ast-branch +31966 fa35c8b45b2456d532a4f00b196bcc4f0648d80c ast-branch +31967 d1d60c2e0ae993a6c18a09e614d37932c7a2971a ast-branch +31968 305c17511a869c96e723b094816c8d639e5d57d0 ast-branch +31969 55d0e998bc46c4750ebe68b887e84bf4d28b3c2b ast-branch +31970 7365f130f1583da6fc4b7980172cd82d8651377a ast-branch +31971 9073f8ff72562ac7971a831e988fd4ce024c63c7 ast-branch +31972 63ed85290413360988980ef336f7bb04ee382341 legacy-trunk +31973 5ef6132f3cabc9dde1a80c205f4471f4b40ba51c cache-attr-branch +31975 ec803cc5718517e26598e53ae0f1a7a8e7de9437 ast-branch +31976 5b152aac813d7db0be0efa5f92cd540a50f6aed1 ast-branch +31977 8fffa6d1544a8435e400a18cb3519e92112c87dc ast-branch +31978 dcdc451740fab4b9542299d1b29fa7919efe2803 legacy-trunk +31979 f362c9aedf134a5aa45699628258d9d35515a050 ast-branch +31980 7367a384a745558a7070026169097a0e8fa62ead ast-branch +31981 11d827d9390429b8b166f4b79e42dca0654dd4e9 ast-branch +31982 633a4bbd797e17ee89e641cfba8d5026cf95b7a3 ast-branch +31983 756f987c359013b9661c37b30969135d7d5bdf54 ast-branch +31984 350ea26e7fd95e9e813a2b49e6d6a79642673421 ast-branch +31985 230ccb9e5000ea32a88f4c18236b2ba28a1b4deb ast-branch +31986 07f3fa639d8ec6d5e64e3d91e84fc6527d981b7e ast-branch +31987 b09db0b96a76bc28be65d0ecd8c45f72b74f877d legacy-trunk +31988 2da14fc9e72bcac8b87d6ced6ea960468e431679 ast-branch +31989 c25bb913a2363bf6972e27eead3cc592211ad1d2 ast-branch +31990 8e67bef429a408dd089ab943be00becf208195b1 ast-branch +31991 25a3cc376572a6790bfe3e0ed31f2295f08773ed ast-branch +31992 909fbe243f902667c9430baf5138d866d425ff06 ast-branch +31993 6ea20b86ac8dcf648b7d9c42cdb3ff8a39612910 ast-branch +31994 f6a11920146eb583caff196b10cce53294482560 ast-branch +31995 4bcda63e10541c5761ccfb49151e17f1aaf9a94d cache-attr-branch +31996 f84e1f4d438eb08e757e0a3deeb17ca165db1df5 ast-branch +31997 44962021959f28d1234663ff73a3e6b13f8b0054 ast-branch +31998 63ac3d63b9fe7ada940cc4f6180d87c489aa1f56 ast-branch +31999 13e567af94d8a9c233724cd12716bcd0cbd2d261 cache-attr-branch +32000 bc7657ac46bbe7eaf8a8a42fe627f3d1b567d7dc ast-branch +32001 41b1f22fcb01756e301c608571bcff03b7342bb3 ast-branch +32002 1456621800d4596554a0c5270addb85000d082f9 ast-branch +32003 8e8a9113fa2d85d2740a60ecd1f96d538e6f7dba ast-branch +32004 364bfe79478f4cb56d76ec5e24bdd36a5a474a04 cache-attr-branch +32005 af1764887aa23c59ce0f90de60dc108dc8b493c5 ast-branch +32006 3efd834d0fc52bf1ae180c6a71054b25c77ccb0c cache-attr-branch +32007 733729261c41a226605410ae23a15c7d9b790071 legacy-trunk +32008 b0ccc5b5f7e2f2e84f7a4445afe49fbd60ed7cc8 cache-attr-branch +32009 632a6cae0be6f164ce08db9fdb1f2c9e8231dafb legacy-trunk +32010 ac721ed619144fbcbdcb9f1fdb51fafc860b6306 legacy-trunk +32011 e06c540dc2e2f13aa75bb9e77202f17a72d70789 legacy-trunk +32012 fea29292b931b6769777a7383fcc0ef0a130c420 legacy-trunk +32013 f3d4cc2996d2c86183bf3055892737c7bfdf635d legacy-trunk +32014 f529decd821feff48b4bd3727b18360547073cef legacy-trunk +32015 ed3c7008f90e8c5e44f271b9ba620997f3d6f52e legacy-trunk +32016 0cf4e32403807e0c9f06578605f511c40ad68dd0 legacy-trunk +32017 5496b861c89ab9276731505eb68c1f3093a3282d legacy-trunk +32018 70bd8d8c877bc3d30522420da897627f4374c37c legacy-trunk +32019 0c802eea561578a928c65515121d4250098aa9d3 ast-branch +32020 b6e62cbbdf3ded28a53f041a37db620076f59078 ast-branch +32021 b451a9e6d94090faf4016569d54d9d5965e7303e ast-branch +32022 33928a51f2f112bf38b3cfd2c24576356e11bbe8 ast-branch +32023 1a2fd109f6b696194711c1e8429c52a1411fd251 legacy-trunk +32024 b57546b33cb1367f054631a14d13a42f09879021 ast-branch +32025 ec6221e9b79acc46f2a2fc3b37c9cadbfcfd2911 legacy-trunk +32026 a9351270385aa04a1c0267a2ea308decb93e72b1 legacy-trunk +32027 30d1c848d2b016858ff08d26e3a14c2d0c11ff04 legacy-trunk +32028 d6553d0827ab968c7908d35b1dd31ebfee257a43 ast-branch +32029 84b163523cd4da1cd8729a0a202453e90df0d980 ast-branch +32030 152baf4e355551e71abc5492a580d4792800992d legacy-trunk +32031 721e9e4eec1ef08e11270dde01ae12938a61f78f legacy-trunk +32032 fa795f4e6dc774bd6349cee1bdffc527a823a6da ast-branch +32033 e5c0089553811126cd524314f047ceefce301ae9 legacy-trunk +32034 a8ec73d13d033c5afdaf1fdaee50927f58eba84f ast-branch +32035 bb85be8376b8ebb907c963b934dd1289699f532e ast-branch +32036 8ade90af614c38c2deed3809df3241effe7d05f3 legacy-trunk +32037 2ed7c1c457b93fff7bb478ab6101bf0fa85496c4 legacy-trunk +32038 6c64616d17edbc9bf6763ca21ca27ef490bcccfb legacy-trunk +32039 9d3a25e99075b03314a52c997ffcc59d5cbde51f legacy-trunk +32040 1b1d99dda2a1d641ad1fead52b83d0c611517d18 release22-maint +32041 4459cdcbf538427ebba590e2a6bb72a59e997aef legacy-trunk +32042 cb332d4491716e238706fb0b3c2fe715dd1d705e legacy-trunk +32043 cd55887624b325f91e4d3ae562c4f943c618bc43 legacy-trunk +32044 21143486ce40b37777684b910010f743012aa9c8 legacy-trunk +32045 04182e5a60b1122c20763f43b65271e5d748971c legacy-trunk +32046 2e20692dd2868136fe95314411651ca630acca38 legacy-trunk +32047 ee1c709050b24946057b0befdd395a7d1ebc910e legacy-trunk +32048 630409f41cc3f59afbea833be618b620581e2065 release22-maint +32049 871da703e4c0a5c27c1a2dcf11b84f8b379b2606 legacy-trunk +32050 5ddbc979c6559518308a635c3670551a8da694d9 ast-branch +32051 d7001fadfefc3775eb425d84a00bdf09e195616b legacy-trunk +32052 d93a845ce5c0903fdd1c1f2e19be102a31c4a9b3 legacy-trunk +32053 934dbeb40b3171575f7da1d31adabe2cbc8b6f7a release22-maint +32054 f2580c2e74dd79668e3a7b39ad61c1dd74d53907 legacy-trunk +32055 0092b69f7f99aa4ada4ef010c8bf38e1363a113d legacy-trunk +32056 161b8bd8a226fcf9da58e90a8f3ec55248797286 legacy-trunk +32057 2405371be34c9668e520ef30da5fc0b828c1a7b7 legacy-trunk +32058 3fc5764273d96f0aa38f441ea377575c26f573be legacy-trunk +32059 500f545a24f07f7f172b64bb3d3f004d77aede82 legacy-trunk +32060 f0ad8fa88d7ccef2d44c306b4f91a6340cc6e669 legacy-trunk +32061 0a3ce306b11a5d4a9f81c7fcbd402a9d6baa41dc legacy-trunk +32062 157c872e6892b9b3d6e565f0f9d62ce19604ca19 legacy-trunk +32063 37eb8929f0cb4030f2a22c85e6ba5580695e5d13 legacy-trunk +32064 56d9bbbae6f810ce011998092669b80c0d1c00a7 legacy-trunk +32065 05443430d7ed3dd4d6fa6c231052060cc6c38714 release22-maint +32066 df9b7cee1339516bb857fecbb069c9a94eb175d4 legacy-trunk +32067 f3078654a5c02fdf89b5da61a98f9e8f403f3ca8 legacy-trunk +32068 235d543e0b84971135f4e1394fc071ec26404235 release22-maint +32069 7a3f72983a7ed577efc2c104874e9232eff76d69 legacy-trunk +32070 804473cf71215440504f01d08cb0182345a14911 release22-maint +32071 d8f98dc6e7e04a17eedc0bcd7e5e157fceb92f09 legacy-trunk +32072 076c867b916e2306a43a2f34141884e25faef986 legacy-trunk +32073 df65b0217dd7f08e681ed9f29367b7f004d90870 legacy-trunk +32075 af05f88b964135965aef4c444ed9c0bbd3033a7d legacy-trunk +32076 a8d6576b95afacb1d1532a6e41519e900cbb30db release22-maint +32077 9c6209253615ff40bace439a478d46cdab8f71e9 ast-branch +32078 5fbd8801fa2625eb2a89429297398a33d2b3cfb2 legacy-trunk +32079 1592ea36a702327e5b6b6356d2526ba97a366171 legacy-trunk +32080 ad42cbea2258a772294a5fb81cf9bee6a8b6b7c0 legacy-trunk +32081 c7f10a900d6328883a92ae5ae89475f0c69e561c ast-branch +32082 b87095fbb05168d1ce2e1706298ad56de0a5cfd2 legacy-trunk +32083 fc841535180c984bcd86e51bd180c52de297f2a1 legacy-trunk +32084 7140a6236c3a88c982a42b1ff5e1fe440d61dee0 legacy-trunk +32085 751d7ce9b4b23a84c8d7c14bf4b8af961697c4aa legacy-trunk +32086 b66a2e41da3ee9915ff5df645b4c738155ceb19e release22-maint +32087 04c1ba51efdbcbbc99f532b288d49cf8e7bacf09 legacy-trunk +32088 852aae84c981373e02ac4ef5d870babb8bcb77e6 legacy-trunk +32089 0f558eede6c577a58cc139b5bcfd3e2fde14ffbc legacy-trunk +32090 505e8c0fa92fe2ca2c2b764878b2582e304f4677 legacy-trunk +32091 bbb748f6814d640a649df35441ae3abeb2315ebd legacy-trunk +32092 f3add416628dc741436fa5cf47419ed80a85e07a release22-maint +32093 b1fbb83e5139149e9b765952ac45955fe5d86744 release22-maint +32094 8802de0da53391160fd3e35d7b9523742251912d legacy-trunk +32095 e13a7e1fdb9e5b7c28c12cf27d2bbe939511962a legacy-trunk +32096 86a4cea70973abeb4732863555c448e4f4460ed7 legacy-trunk +32097 12dad2081e2e823fe921956445f81e09933e7be7 ast-branch +32098 4aebacc7867bb1e0faacf22031c8e8308bbaed07 ast-branch +32099 f1154473dac8a70df435fafeaf8707f97d43ed43 release22-maint +32100 afd5c2e4b4af6dc1ece08205c4b631b27df80618 release22-maint +32101 287daa6a7f4f220de8108f8f56074e2e3812d4a0 release22-maint +32102 8efe9445495b0b76d406a5aa5cec945dcdf7b664 release22-maint +32103 5550f5a9d70ca76202ed30772af0e3f5b059c187 legacy-trunk +32104 a8e5ec070433f5aca2bbde7891f3345f355e175a legacy-trunk +32105 36222d3823f129860341066564cff11d7d63f952 release22-maint +32106 973f9d35cf1d0f1524d734eb5d79a273a5c202ed legacy-trunk +32107 ab2a543e855bc988ebbb2c93b523b36369f90747 legacy-trunk +32108 f38ca9e1b683bf7a8b6b84cb5dc5992487617c29 ast-branch +32109 0c4335f10c67a2d3a7839f7b4b02b227a2ebe6ff ast-branch +32110 4308e8a6c480de00be2f60895d833028db88f60a ast-branch +32111 dc890a4c0528055ed31fb023b3c3d5050dcca8e0 legacy-trunk +32112 b85a205631a45c038a5fda332f8ebd9e7a5cc902 legacy-trunk +32113 f311b5d21ef564b10db85a3db68d87e0cd570ab1 legacy-trunk +32114 4f8f17af3487bab14b00b46b9787bbac3c4f3d52 ast-branch +32115 738e378fa0cc1718c10faf1c68dc48a826c271f3 legacy-trunk +32116 32bea41fef68d048a26ccbaca59496c3ab5ab84c legacy-trunk +32117 d7d7af5f3231f012d58f53d470c4a6bad6be8bcc legacy-trunk +32118 492028e4726f1575503ae5a3c58e79c18a45cbaa ast-branch +32119 81bcc0f57d570fbdf5f0cdb2360271995933892b ast-branch +32120 ceb7bb7913533663005fe3d6edb798c4bddb7fd3 ast-branch +32121 ed21d8b37e33d55f5f8ea39052343ae16f653435 legacy-trunk +32122 3d8c1214a1c79ba78140b3f74ad428a25e66dd52 ast-branch +32123 ed73d658725aa78da6fcedf3d00a7f9610bdc96b ast-branch +32124 40d9659b56c946c57151ed5b20fa2ceb0b44325a legacy-trunk +32125 3e399a8618db35b47bd51b82abc27d12448cd20d legacy-trunk +32126 42dfa0891b3326611708d2735956cae90e385668 release22-maint +32127 cba0aeee0d651531b9aa555f4c8b03a093845356 legacy-trunk +32128 00a56fbea69fb0a70ab70e614d440483862221c4 release22-maint +32129 0fcf9ae25cfebe73c10b81210e8928e9c314c5de release22-maint +32130 4b6e20f0ba4cda539c63c90018efff772ba6d88c release22-maint +32131 cb5db5561cdca9d34d2b06646275b06a3cd8e8e4 legacy-trunk +32132 849dfea182ca377339ddbec4d9b1446b46035e50 legacy-trunk +32133 117ace8521a1d2967ad1e36c21ac989aa6d71158 legacy-trunk +32134 a0503bdb0c242cd88df3f26e67b03600eed1f763 legacy-trunk +32135 8233a0294c41e3de005744c0dda16108f9c10682 legacy-trunk +32136 375fdb82a3cae328a582727f483defbd32a7be51 legacy-trunk +32137 0de0ded19968ec4722187f6d972ccac0665a2431 legacy-trunk +32138 acf3596fcc28d504ffb8157a17ec048366041192 legacy-trunk +32139 174ce4cdec4726d91184c7c7fd89c4300e436843 legacy-trunk +32140 90c77b8af1a4974460f26fb2b37d75dccd54abb2 legacy-trunk +32141 9400504cb0b261e033eddf288c26192cfdd51c31 legacy-trunk +32142 4c596dd60c22d30d4debf8674e144a934b4da388 legacy-trunk +32143 78f846fb570a0632a76e7be28d5029bcfb39843e legacy-trunk +32144 368bebe327433901c667efef1b58559371c67720 legacy-trunk +32145 25e7467871c5872b9b71cf847c9c352b5655a3d8 legacy-trunk +32146 2a3095a415b10ba103573481a71a4b04372632ff legacy-trunk +32147 6653a56002ef9d8316db8a3fa4d60490149bd0a3 legacy-trunk +32148 964bd97ac1f5bd3d9537eb04396041892423d7d6 legacy-trunk +32149 487df294d32810c8eaf150f2f5f77bfedd22066c legacy-trunk +32150 c01fdc3a918042d941ed5ec70d6eb47fb87da461 legacy-trunk +32151 4ff611b16484933f0234fd08c61f9a27c149d70d legacy-trunk +32152 92d01f102ca0993eb144b5b7c3677014c8d3c13c release22-maint +32153 b5b3e6f3f317ed8d4396a77a4518ad1c1f2ce3ef legacy-trunk +32154 5b5462ae314ddd3573e274b2cdeea0098306e6e4 legacy-trunk +32155 5fa8344d6e6f01d52ac09462ff9a96e832274f36 release22-maint +32156 8bf084c4ad9f74b8a3510422ef53f7bdc6f2cfa5 release22-maint +32157 ba716224974e9769f87c296b22303b2044709eff release22-maint +32158 1639f635d983b9fc470a77349ef8949e0f762309 legacy-trunk +32159 878366b0e97ac715a2ac3508b5e8275d678c2b2e legacy-trunk +32160 f213ee6ce55ee8fa3c14b6590efe86e58228f92e legacy-trunk +32161 b9064ea0593ea1d73472bf66fdac109dd849a0f2 legacy-trunk +32162 ae0aeb0d631bc5c5ca3f0fe35213c529b367c508 legacy-trunk +32163 469fb6ce969351fb3076ff83a8590bf1b8973923 release22-maint +32164 c7bb254ab890e1b9524ce4b75c98bfc8a55c4d57 legacy-trunk +32165 71103df9d64b07dc3c1075c199b5966a417fbbb3 legacy-trunk +32166 bbed7e12b8422c091eee2174957a36f33e7d0a1d legacy-trunk +32167 8984df2dc27b270d8c290331573085e29adfca82 legacy-trunk +32168 b61a9e21a66dca59fe18acdfe8892f06ecc0d0d5 legacy-trunk +32169 34483769078b33370adfdf7820db73fe17642be6 legacy-trunk +32170 e930bebec8c0f5dd3c40f90cf3b35c961b407913 legacy-trunk +32171 ee8853cc8ca1f69a897386a9cfb61c18ef46a77c legacy-trunk +32172 017d2e3ea2ae4ba6dd4275f525526ebe9125a627 legacy-trunk +32173 fd434beb5f56079b349d322f7c90763f3f02c6e4 legacy-trunk +32174 6aa1c0826a39be68344299f1dd07fcfe6252540f legacy-trunk +32175 d10dbb94c9ee1bff9c14e6c5f0878157312f6594 legacy-trunk +32176 2d4c1e4e5b36b54499216656b65f73302ba92425 release22-maint +32177 db4799ca2021bcf55d927afe34823423d47b8dd6 legacy-trunk +32178 9acdc6c4416ac522882578ef84f23b10ede565a0 legacy-trunk +32179 b37b2982086bc333118962213aa166138dd0b043 legacy-trunk +32180 62e883e2d51711f008f13983e0e149bc928f9cff legacy-trunk +32181 e6bf08dadd5c217605ee9dfcb1413fe11b09fe3f release22-maint +32182 b4487a3b5f1a1d1bf34420f9add34acf5ef97758 release22-maint +32183 78395e5b4782cc3492884fc3e9c55d09775df1b3 legacy-trunk +32184 ba2d8921a8da019b8f20322722fb6ef46f5ca831 legacy-trunk +32185 84acba22795424cfde5c14383d32093584bee83e legacy-trunk +32186 aff080f2efb4868bf8aa6763f6497bdf3d32f6fa legacy-trunk +32187 e92c25d428b87f022bddc1ba0d31788ed64d54e2 legacy-trunk +32188 21f7cff1790fdc8d59e51c7c3b8a79e7e1ab0a60 legacy-trunk +32189 cd501121715b068a358c2c052f117c9aa9064f53 legacy-trunk +32190 7a6281493d2c671047c1dfd55850b4bc70940c10 legacy-trunk +32191 f21cd079d10835f414143cde41f895a1050adb8b legacy-trunk +32192 6e7efd6c2510a2b2d1cd1b5fb7b0ea3065c1c88e legacy-trunk +32193 9ddc498b7013b86e71b88ab600392fb9518803d5 legacy-trunk +32194 bc8923fdd83b588fbacdf54d2a83c92b9ce7b5b1 legacy-trunk +32195 d08d7b4be532013212ffbb00a5e799dc0bddf55a legacy-trunk +32196 75113759252c788c1627729f7356c58a3e2478f5 legacy-trunk +32197 bfc7a9fa34d6db234e891823109cb41705dd1199 legacy-trunk +32198 5fbdcaef9ddaa2325a7454e59346efb2c2122249 legacy-trunk +32199 faeb708bacc421667f60a3a4f6705cb911207272 release22-maint +32200 da74bdd93441bd40246b9cd96164bd9414b6ea46 legacy-trunk +32201 be2ecafb15ad0ea026fa96bc21acf5c1d533d619 legacy-trunk +32202 215f1f4851a4639aecf642197e73dfceaf77e242 legacy-trunk +32203 1bd50c28203fcf27e30dbc5d3e03a8539b52b477 legacy-trunk +32204 f301eaedde858bda7d002c88fe569cfdeb2d8130 legacy-trunk +32205 8b49445c0a0e0390bf05bb13699414d9c1ad6069 legacy-trunk +32206 981032e647362f081a891d911ca47486bc193cba legacy-trunk +32207 a5c5da546c2928c7df15868239ca0d1ed12c6711 legacy-trunk +32208 c2ad62f4ea9b30b5ae03e7a31c5a08c8b0c0bca2 release22-maint +32209 03bb0c408d57318ca5be8e9f952fc915e31a4272 legacy-trunk +32210 a0c0020505265a8e3897dd6244c62d9db5f1a1a9 legacy-trunk +32211 c36bd1c836b8c80cdf6d87999ab2004bbf664ce6 legacy-trunk +32212 0d268c6ef00acde6a0180f0d8fe6b3241333b5ec legacy-trunk +32213 94a9865aa1c64419c3bb49c83bd0a153bec85e05 legacy-trunk +32214 8c93075b9cb5510ba93a918323e05cf41d8383aa legacy-trunk +32215 02c87f348edb22f8e5c123f48e2f9cb81b33e81a legacy-trunk +32216 a57ee7b2a879de02bb557ed8dd5ca2a3431bc85c legacy-trunk +32217 95b6dd04da8fdc1d8dad8657636c6a7bd2c210bb legacy-trunk +32218 883a694795f5703cb41ecfb5ca92f600bbedc278 legacy-trunk +32219 ef05f981bc4b8dab1bbd89baa51cf4526ea88c5d legacy-trunk +32220 6f13adde1b51bb492946aae0da26cc234f3370a7 legacy-trunk +32221 de50934e1145bf6d90b65959f6ce186f2e05290d legacy-trunk +32222 22afde26b3d166ac0f26a6a459fffc6f2f3e2fc1 legacy-trunk +32223 9fede7003c65f6f6e1b195785869472eeb987409 legacy-trunk +32224 d2d232e2427bf74eeffdc54b2c7f1cec93bae93a legacy-trunk +32225 3cf26b9f96f7e646408720b3add5c0dd33aad6cc legacy-trunk +32226 11660f4361f8a3689759acaa5601cff8cc0436f9 legacy-trunk +32227 1aead0c845077e080754722af290287cd7223fd3 legacy-trunk +32228 58db5fbd9c282a4975d745aea0f706e78b6690c7 legacy-trunk +32229 20ee68cb0bc47c673d0e992f247b4578820746a0 legacy-trunk +32230 7fe33c1541dffaf81a93f9f26d10b71ea2fa022f legacy-trunk +32231 eee4969adbae0d1642fa1a2c446c5073ed6b76fd legacy-trunk +32232 9441694a70c7ed39836607642df433ca2dae474f legacy-trunk +32233 436d812f2b94b7dab7aad2c9705317d1eabefce3 legacy-trunk +32234 f3b24a2f6f4da86a9270e9aa4b514a3561022f53 legacy-trunk +32235 8322077d234cfab80ae986c366103516397c348e legacy-trunk +32236 6952373e8fe5c872e63791480262298ec238b5fa legacy-trunk +32237 67d36f4dfea124ae85c0c10d28b833833ab72b2d legacy-trunk +32238 c71b9ba1f04c14829fa9654d9dd53d0bb379d1eb legacy-trunk +32239 0792caa6371c9d1d25d04bb0c7575816243ccfee legacy-trunk +32240 b1671550c7e1dc7828172bb0b462a691c7678eb1 legacy-trunk +32241 4c6585253e6f1324d213af4b9fa46d1f849e14c0 legacy-trunk +32242 b4b8fe2a632c3bcb452bc040da8d238ca8738a9e legacy-trunk +32243 4f0b7acffc7d4c4c7eb42d3c0b08cca29f57b59a legacy-trunk +32244 d5357aade4b7306470caf84fa0f1eb292f0dd2ac legacy-trunk +32245 9fdfa736578d736d708a474e53c65dc8f07ae594 legacy-trunk +32246 eb55188f163acee7a3c9ae7912e9330e2642dd37 legacy-trunk +32247 ddd906effd9c3b65d0e13c9d855fc5363c13ce2b legacy-trunk +32248 824dc28f922d299c176bb736927264323fd75ee8 legacy-trunk +32249 6c00046909418b721bcad411f98b91e7a4e2c610 legacy-trunk +32250 81e5bf623ecf758bc25c62cbb1ebd4ec120ded92 legacy-trunk +32251 e80f18a49cc9ac8e311f41d8d6071314fb04799e legacy-trunk +32252 07d8e0eab3af49d58e3202b9e82694e19985be0c legacy-trunk +32253 2cfd916dd31249df2d4558ae3b9bd3e93bafcd13 legacy-trunk +32254 3c39195dab9a40ef31908f64d0fe84dde38aa3b0 legacy-trunk +32255 3d93c3039c871cce91978ffc7b48e6731dadd77b legacy-trunk +32256 8ab752db4775d553f731afd3d031209ddb7f8051 legacy-trunk +32257 fa82f86eaa09940a66ce3934b85675564b3f5797 legacy-trunk +32258 3392f38bd114b8e159a21e202df00c4f4cec0eb4 legacy-trunk +32259 947c2937c09e2213e155b035fdb943baf09a1d2c legacy-trunk +32260 a26b6b275fb72d9897ce1c9979b210e6f5bf185e legacy-trunk +32261 36e9ba40549259f3ee1e74e2f4583d868bcfde53 legacy-trunk +32262 c629ed8a9dbb3a84cc35fe9c3dab27a4ff5c9ee2 release22-maint +32263 11f7f118072b64ff01ff2362429169edc45aeea1 legacy-trunk +32264 acfa0ff8c5a4016b59ef0561d2b9a4c161e72f41 legacy-trunk +32265 9be4103807f5c745ff9b25064fc6f2f768c4d1b9 legacy-trunk +32266 be0d4ec6bf5a9b80e91ca53fb3d273afc66bc08f legacy-trunk +32267 4824aab12549bb0c37ca802a33e1c70017801fe6 legacy-trunk +32268 a8e640b477f66d5b61522bd79c9c580720f4a404 legacy-trunk +32269 cfece1822e942371f7f99b4b23d2f6665ed1238a legacy-trunk +32270 ca2482012b3c600f865d3af9f89418edeb8f2fff legacy-trunk +32271 8e541b078edb509b6cdef0c207610dc4983c29bd legacy-trunk +32272 b9745cd791bfdda78006f0bd7b23e3c864833790 legacy-trunk +32273 193b8aec00ce1be2f03aa9699a5d6f6516cf7930 legacy-trunk +32274 9d4e138494fb312ce28a8524e91b05d264f8d387 legacy-trunk +32275 0e8416be208e0eb604cfffe7cb570f636b3c03d1 legacy-trunk +32276 04b1728432929812148cb1c68d85de876e59081f legacy-trunk +32277 d8a8f744a3e508b5e130737626fc4564d9565ab2 legacy-trunk +32278 7fda09f751ad5b1c9b478f93d70b3676771d683d legacy-trunk +32279 28a2975514cd61d43600c853efc8d792f6da3bc5 legacy-trunk +32280 56006d97bcef0be50c7bbf8a2bb65d36908d0ea4 legacy-trunk +32281 1e9004553e1d905b4109cd736699fdbb8d5bd518 legacy-trunk +32282 16f47bd431c48792cece754b0c0d4da0934cf1da legacy-trunk +32283 2fae5f7631ef4aae7a0c1bdab6c4537252bd6d91 getargs_mask_mods +32284 4d2259cb77a0e1cd7d854dd0d50d582ee73f2b78 legacy-trunk +32285 7fa14f20aea42232b64a6ae06424170512c7a650 legacy-trunk +32286 8836529e9e6670a55f745717ec29a5655a43e612 legacy-trunk +32287 ee165fe1b42f634c6c960b1f26e5621a9f526c50 legacy-trunk +32288 5f1ef1882b25188ee06e2a84becc87ad889dcb42 legacy-trunk +32289 7e665c160583fb66378d3ec5f9f844063772ed9f legacy-trunk +32290 ee6df2c668eaccdd9c03a2d24677ae70142e067f legacy-trunk +32291 12d4409e59e303a3978f5d0b433a7e8d67567946 release22-maint +32292 e33fedb581f4b07a9f8457e80188989bc2688e1c legacy-trunk +32293 239429dc029fc8d557ac680cc82423b5c2ccd1ec legacy-trunk +32294 a938b13e029112382af405f8da2b21fc207e4bd5 legacy-trunk +32295 5bfdbc0fd1722a8433c3938dffd437504b29e7c5 legacy-trunk +32296 046bc9d7fb0e433c45f17772674716ffe22a141f legacy-trunk +32297 0d8d4c8dc68bb889be4d3a5cef6f176ef2539ba5 legacy-trunk +32298 c555cd02b0f963ce041e6dcc2fee6454565b7f13 legacy-trunk +32299 1925413431a6ec28fc86a9f6799cd682ac32e1fa getargs_mask_mods +32300 fda2f7d783c24af3aac3539150852cb7cdb1c702 getargs_mask_mods +32301 d41d8de9768f37f171e73a07ae57b465b17db9ed legacy-trunk +32302 2a23fc83720fa1264c3c5da56a3263303257e853 legacy-trunk +32303 c1ba50790c838485bbdbd3e85fb1f395dc5a0e13 legacy-trunk +32304 9eb6964b4b6c988d86ece4ad1377e65c28304bbb release22-maint +32305 1556a38d52781541d99a4070b42fb943c3c891ef legacy-trunk +32306 5ff1f2f9fc3493f3baca2357d5467a9fb52e9ded legacy-trunk +32307 1815166e8097875e26c2643ca7e93a462d40eb13 legacy-trunk +32308 31cb8e0260db5102b0ab506c4aee39c9d12428ae legacy-trunk +32309 ab0c067fe286fbd303acec1688374274b5896627 legacy-trunk +32310 276352bfcb42b41aae96614fab3de32161ce3f82 legacy-trunk +32311 ca64c1be230bace4a3be2b103c930408b212187c legacy-trunk +32312 cf45ad3ca4b75ddcdbc512d72b93b3fc0d5414b0 legacy-trunk +32313 462a4c3118bbc06829caf1d0c28afcf4a36714dd legacy-trunk +32314 8bd34dd58a92aa33473f9f97eb274cb7cb166b37 legacy-trunk +32315 c5bd8a8452239f36be2318a6344c56d7859977a2 legacy-trunk +32316 70d6f8b0fc6945e71f4438ce07b4a91ca130c318 legacy-trunk +32317 40d287c3d90620a77653015889ded5bbb8464d6a legacy-trunk +32318 d0ae620afbd4d41b8a65f125052ac90e24e7d6f5 release22-maint +32319 ed5ecd63c1cf9b7f4f299c812b868de85a0e730d legacy-trunk +32320 9642fb4cda2fe4af56e0b8c98c8df5c553226223 release22-maint +32321 c9925fa29ea37e5588486d9752659dbdccfa3d46 legacy-trunk +32322 06d137a427e9611d3fb260a213df418fcae9c77e legacy-trunk +32323 7922d5f438543a5765de64f80229ce3171d20347 legacy-trunk +32324 a4154dd5939aa6bb3a1128939e9074d6b1383d15 legacy-trunk +32325 d6afe196ef82083ff222620c9aa595efcc539fb3 legacy-trunk +32326 658b10c5ba2a3d6be167f2f4d7a11e3a7b61660d legacy-trunk +32327 018170a4a2d7ac250aedf077fb968e6ac968c87e legacy-trunk +32328 aef01a076ef967ae793c4d63c72440b5132dc13d legacy-trunk +32329 97890134c9c44393bb36a3827c07b556ab205396 legacy-trunk +32330 41f458b8da20a334eec67818edd9868279a5e446 legacy-trunk +32331 42de50e192df5b9e480633a23c8698fffcc009f5 legacy-trunk +32332 d6e13d1210c6b5850fa15181d40db9b80895f069 legacy-trunk +32333 2ce39a7be79d9a5b17e8dcd7d08712bf74aa82b5 legacy-trunk +32334 fa7874ec6a71ee8c99c322c2b84da110c2a506c0 legacy-trunk +32335 be14970a995522fedaa89fbc475fb147825d0b5d legacy-trunk +32336 52930be9dfea5a55b4cd821b04ae8a63f786dddd legacy-trunk +32337 de76905275843e79a64ba51572e95ba70a8ca377 legacy-trunk +32338 edcfdb2a852e9af3ed9f7ae955224758a4e900b4 legacy-trunk +32339 29f3b2375049ef06827e53b1c30d577fe6131539 legacy-trunk +32340 149bd0ef94fb84de9bca2a0005db6c74a7e2d6ab legacy-trunk +32341 820d9570edebc3c2bd8ffd05d9414d80e4a91fe1 legacy-trunk +32342 d3127b671d36c38d8d7bcd4bd58ced54f4eec771 legacy-trunk +32343 d08d15a702950b57ad2b5dcc7fd2ac9225f630a1 legacy-trunk +32344 ec2a0f15c14cd19d44943ccffa9b82a79fdc671a legacy-trunk +32345 1d8e84d96ddec6df1706d88a3b587c8bd870ea8d legacy-trunk +32346 ab4fbf8ebab3b0b5806a6b41ddcc2892a94bfcdf legacy-trunk +32347 13d0a3c4e46575bc72def38c449745c854167f7d legacy-trunk +32348 16ef5b9bc789cb9a38540d5121ec2824d40d4736 legacy-trunk +32349 5e6ffa65546234cb28a15a64dcd8310b3336e443 legacy-trunk +32350 03af46d1ac2840567551dcd8a122dc30b3345901 legacy-trunk +32351 4649f318fcb02dafbee2f6199473f081a6954fca legacy-trunk +32352 8160bc78c93ab1a622eb875f9a204734d210a5df legacy-trunk +32353 89205f5bb440bfcab5df0f9bc2a41805c9006c00 legacy-trunk +32354 9ea0ccddbead3694ff3208d8b721525fdda1c2ed legacy-trunk +32355 de6d1e7e98257242dce44212da57ecad641b44fe legacy-trunk +32356 ac8dbbe62432b94f3d6006e98b98c1a2eca0950b legacy-trunk +32357 051a4f12cc4625717853d835c310fc5149b36ba3 legacy-trunk +32358 f968e93e3ce018717698ad14c426cd135d0683ac legacy-trunk +32359 31cbd46f0c7d68db0ec39704c833dfb8cdbd1f54 legacy-trunk +32360 ac58608cd23ce86e5bbc5325d635199632e3ac19 legacy-trunk +32361 86f4933fa4295e1edd3b00f605b31cbac3345196 legacy-trunk +32362 ba909236eb13b108e0522f66e808ac2e44bf88fb legacy-trunk +32363 43d32f4f8913847489f3600efcfcde25e1aabd4b legacy-trunk +32364 5c886e03b43e41cb71f64f2d6cb060bcef41ffca legacy-trunk +32365 7bba3e2be54e7eaa5002f6903bf07046026bbc7a legacy-trunk +32366 aa634adb41a900ad8c97601e420cf495adb490ef legacy-trunk +32367 d792544ab111f442c96ed4b0a177bcc49552b370 legacy-trunk +32368 52f3d90c17e83de53454d88152669baa77bc6b64 legacy-trunk +32369 cec9d13c43ff7db82ab80d630acb36c584d29fdd legacy-trunk +32370 d3297e298211b8c7ba516f69333c00d29c59d3b6 legacy-trunk +32371 66cceb7562b56a934ff60ea1ef312f3d4c41b577 legacy-trunk +32372 bd678e65f784320f43bc3dc2be8898c6f4ad297e legacy-trunk +32373 6e2e5985375c6247ec6be05da40044f937d3ccc9 legacy-trunk +32374 014cfaa7a784fba0a262fd343b4213a9ae0e0c8c legacy-trunk +32375 1f96049a79d4cf9f2929903037d8b171e8449e16 legacy-trunk +32376 c0a26c5a7936470e19c2b75437323584938ed500 legacy-trunk +32377 563baa3e428f69465bc4d1899143308a3d23b7e9 release22-maint +32378 b49ff04c18de7ed0e4d7ef59dd3b297db441e7f3 legacy-trunk +32379 89dc32674554eed00563613344a27edec2d64abb legacy-trunk +32380 756512fbb5278d251d45b2997242f8dd2c0b7b33 legacy-trunk +32381 a1d7ccd95a5e83d6148980caa8cb8a34d03d86b8 release22-maint +32382 0ad7453a9f827750306efe73bd20a6818eaf4239 legacy-trunk +32383 085f68009cad818ceb4d331370e25978d12ed1ab legacy-trunk +32384 9c7ad1e455960cce746237abc3affabfe7700981 release22-maint +32385 dd022d423b8a0886def61346718a7039efdd26cd legacy-trunk +32386 0717242295b11cb37faa08ab1d2bca767cf606b9 legacy-trunk +32387 99e82dbaf0ccd82987764ad7adcbc905413116c8 legacy-trunk +32388 7f23667d3cfc4addb421737220c85d7180bdec82 release22-maint +32389 3df0cf16defc228f7c382decbb2723bc80d2a0f1 legacy-trunk +32390 22d177682ae14ff17fa16f6f6f12657fbf2e2340 legacy-trunk +32391 171dbddf0a021670b538cf53455924652d2653ba legacy-trunk +32392 6503ad8dca8817dc104ace8bc5891707b186a90c legacy-trunk +32393 6348b85bcb9de80b5886e1b47e063ea45f64d212 legacy-trunk +32394 9c0ad694e3e20a3f26fef0a3c8b422138070895d legacy-trunk +32395 2c7447efc2a8d0e16e0fd46e38bdd54edd4ff9d9 legacy-trunk +32396 75382d102749cce940dd30b34170335e43589c1a legacy-trunk +32397 60eacbea71992c1671e61391a86ce8d04848eaf2 legacy-trunk +32398 9b79605171ebd4f5568829174a93a8af69bf2f3f release22-maint +32399 9466b6e248332e5a26ba998ad0da05ac8f86b54c legacy-trunk +32400 00b89472620d7e4ba884ea95c23d412c6b307e4d legacy-trunk +32401 29b6a48f4c450cffa774807bba0eff0fd051258e legacy-trunk +32402 0ea5991f6edbc4c273ce58d65137af4177de6280 legacy-trunk +32403 e06f2bf56b4068374c92fb32786d265c3f568f8f legacy-trunk +32404 c9bee11eaa8b9e5c9c2bcb3d0d215ad39dafa880 legacy-trunk +32405 bc4231eb2758416f653140ed9dd6f0af065968d6 legacy-trunk +32406 211c02fb6570afe1c2ed0409a99ab11828d17995 legacy-trunk +32407 3ebb4bcebdd7ed647061962d2906f58c09308783 legacy-trunk +32408 0d53029b79497a61d871dbaa06211322301f88b6 release22-maint +32409 708aea82ade870ab2b3f22fea7f034f0aac4b560 legacy-trunk +32410 51ed9f5e36a18c772463d50ea36bc37d0cb5bf33 legacy-trunk +32411 787d665e1cdc7303cba9e3e292d7865e649d1182 legacy-trunk +32412 395f2b99c752f906a7c352f284b163e09e7ea51f legacy-trunk +32413 2c5bf097daf855a0daee9e1ca7da08c6121283ae legacy-trunk +32414 749819f8b2adca73f5decebedf2a1c52dedb130f legacy-trunk +32415 63eb0c987de7db4029121bc97b0b1ae35fbd51f9 legacy-trunk +32416 8a6e4c92bd7f2bd127e23141928845fe761edb2b legacy-trunk +32417 6816719f439c59fd726e59211e9405e112df9730 legacy-trunk +32418 558689b6d7f0eb52ef1f61abb536ad088600f585 legacy-trunk +32419 015d891f3873dc0348472d9b0100ceba0935dc98 legacy-trunk +32420 24d2a05f41cca1802a7af8acabf802915cb6e656 legacy-trunk +32421 64d7b876722fd8794616f107afc9da575040d22a legacy-trunk +32422 8094c0db95f8b6a94868360a2cf2599fedf4b211 legacy-trunk +32423 803bca224c8fa7d21720802273840c151dcbd7f6 legacy-trunk +32425 a76a3683012bc37c40002d150b280c12ae208037 ast-branch +32426 05e57388cb8fdcee8c8a99743384deb3321c656d legacy-trunk +32427 725b281ccead38bf712163b62d1d4f25799e62b2 legacy-trunk +32428 f874a4d29ca4178eb512930ae8fe8ac1049d52af legacy-trunk +32429 21633e9df8cc46c86451218422d84881f34b92b8 legacy-trunk +32430 112540160b652e6ac22b7e9dc10a12b736887b8a legacy-trunk +32431 46d26afa8b9563fd125adb3722079d828de2f159 legacy-trunk +32432 72db7575f97000c97b269a1ac6df709fedee0b9c legacy-trunk +32433 a9b56c78e0d64ecde434c9ac33838582ccac9b61 legacy-trunk +32434 25c8cee4457e6ad0aff21287e0007132ea0e12e5 legacy-trunk +32435 c34cf9ce952f9fa282ba6618a6fffb62286f6aef legacy-trunk +32436 0c950e3323ee4ee637062b9eaafa50ec3cfa06c1 legacy-trunk +32437 ca4bdaf5c7575859eae3eb499c5b9ee6834d6088 legacy-trunk +32438 102f9e358f52138ecf4c4140674758cdf17037e6 legacy-trunk +32439 c0a1efe1028473ccbf1fd25d8c8233f39510b3eb legacy-trunk +32440 2ba20fc9f4953c08ba95ab4776b8ffd80970ed68 legacy-trunk +32441 28a09767a24ffa791c6713e4235ee25bffaea93a legacy-trunk +32442 a5e1b1662ec01191ed397b0f9bc9e524c6d70733 legacy-trunk +32443 2af93fdff60888e5476d58ef4965a568ea72b1cd legacy-trunk +32444 113c3188875561466d11ec35e114739aa7c7f0c3 legacy-trunk +32445 ed74ac21c133220fc2c64e46750a3c320a2e95dc release22-maint +32446 b316293356355eff7654fd4da1fca3bf2f17f0e1 release22-maint +32447 73dce893eb4b38028d3beb6b32840494036698f2 release22-maint +32448 6bd28abd31a7f0d3e6a92d0f76a6a9e8f83c5936 release22-maint +32449 91130a4cc1ce0ef46d29cf842c3b6f409d306746 release22-maint +32450 57e61588571b20b12b0052c6ece968430f9c9b31 legacy-trunk +32451 045bd14f746825b2048ed6ef45a477ffe35aad2a legacy-trunk +32452 60e722384d62c6f8067d2df21a6d03ae815c093f legacy-trunk +32453 64cb657b0338444d2e38ef7db9714259adea8ccf legacy-trunk +32454 def09ec0bc3172c54f75b129a2151381f8d69bec legacy-trunk +32455 7296cd3f45c7f473de7b2a5d96ce28a43ac46fd9 legacy-trunk +32456 0cd8d570c591139bc4ac61e13c0cb76d2601e8ac legacy-trunk +32457 2fad548391ded6ed4bd01a6087877c9bd8b9566c legacy-trunk +32458 9c785ab1eff03a271188df3c9c0c5b479280260b legacy-trunk +32459 dc4e47e6f00235dbbb640242a79b245b01f52f15 legacy-trunk +32460 b37af21b77be315c820d7e1de9ca6cab9c064e32 legacy-trunk +32461 e06aad90c0ae24d98fdbb18b2f929219a71811e1 legacy-trunk +32462 1c5ad936038ef26c29d60f5653c9441be7c51ef5 legacy-trunk +32463 7012ca64bc7495c73bd07a39c6d521e7d96aeb25 legacy-trunk +32464 e4a5f38ff0089bf0c2b6efb08ff87e7c41661e86 legacy-trunk +32465 fa159fef273004df5af6d11481f427b9ab4e4e84 legacy-trunk +32466 45c4a2f157b38ebbcf6225a493dae674a159ebef legacy-trunk +32467 98e31cfd26dc261bb4ff200e45f90bf658eddd72 legacy-trunk +32468 d822388082bad4714962c65009ab64c9ced5c79b legacy-trunk +32469 c2a05e0785f148fae9777982fc5a9568947e0ef7 legacy-trunk +32470 27af37dd5a0bf521845a832b4c7b0562235e6a8d legacy-trunk +32471 39d82d038878941ac1280f20f6f85e2757856715 release22-maint +32472 490af00fb1830c354b3688973f68a304c4bfbe4c legacy-trunk +32473 ef079defd2cc11f5a2889bf8379428f48130c90e legacy-trunk +32474 ee815a6b11e202beb2655288df5863ace6906b7a legacy-trunk +32475 86511b96d980c7ccce68061ce95f5a1212eaed2f legacy-trunk +32476 cd82253f20b70c3679a7fc2b62c0aeda695e8f15 legacy-trunk +32477 feb35954b03868d12dc1e1b5d56ad9c8993b3bbe legacy-trunk +32478 4c53b694afa6982482ff6265c27bf8d057037ee8 legacy-trunk +32479 f351fab73897dddb8b3b82c5956868ad63cbdf9a legacy-trunk +32480 1bef3eca20ce0991f3034f17f2de60526b2d51c0 legacy-trunk +32481 ae17fc819308b3ab66f71b4f6e93220163667dc8 legacy-trunk +32483 736bbdecaa1df9d4bf8b61de45d03c90a9259887 legacy-trunk +32484 545faec790c473260c652baa3bcba111b9cef134 r23b1-branch +32486 5ccb5536fefebbb64a3291756a5638bc279b2b6e r23b1-branch +32487 5cdb7280c3266d9548ccd8a6b3d406a21f38c9ca r23b1-branch +32487 5fc60e0b883680207cfb100865c42ca3a2b16637 r23b1-branch +32489 576fa17ff07cc173d2b277e45e4a4deab46abd2b release22-maint +32490 171ecfff26579b759f88b9eac5a15e3537dad69b legacy-trunk +32491 bdcf37be904dbd2e353f1c7faef3162ba61a0281 legacy-trunk +32492 3030d94a9c0590be41720b9c7caed15214e7c83e legacy-trunk +32493 b62d8781697695412d686ed0043ffd71ed1a414f legacy-trunk +32494 98f5bfb19c868b363fd4004f332feb846c5c94ee release22-maint +32495 68c6186dc1a11bb412ee03aeb9d1ebadd7c3bf17 legacy-trunk +32496 b67f5c395a688e5905836804892fdb36e6ce6248 legacy-trunk +32497 103faa0c2e1e6f6fb4b47b7ed2454250a00a7122 legacy-trunk +32498 db9845907e8bed0396465a3bd73bce6e2ef78615 release22-maint +32499 64230ee8eea595be2e404e3e31db9c3cdb4e0f2a legacy-trunk +32500 f50d0d0f29a2d0b527a5a28f137ab4d3bb7e1f41 legacy-trunk +32501 6d852ebff36ff63b7986e68e23a6b0699c5a9610 legacy-trunk +32502 16374052cb5db3c8c6c2424b653b75b332ab2ea4 legacy-trunk +32503 53ff23bb3248fb847280700bda67cce548077219 legacy-trunk +32504 743ae9cb3a83dbff23101c468a5e11d91b8bb52b legacy-trunk +32505 1a0b7fc4625b8803e3383bd309a6f36709f424f1 legacy-trunk +32506 3a8b8aede100d8c8eda9d658a8ec1289cf6bc467 legacy-trunk +32507 a53529095e954094384f73a7ce6f59743896a18b legacy-trunk +32508 5f3e8bcc8c7ebca64bcf016e6d3b7b739c0ee209 ast-branch +32509 b1bc9e171c62e829aeccaf80098ac89719937f80 r23b1-branch +32510 1d97f52bc84fb0dbb9533d3a1447ee0054c365de ast-branch +32511 71e191b83d0465bcd1714677c78cde9017e984d7 ast-branch +32512 b846121829bdb007cf5477929f7fe39dfdc7ce47 ast-branch +32513 a61330a3d59c21cd6249577f164f1d0e4098131a legacy-trunk +32514 f55b553a0b34999f60506a888014b51bc16e8b08 legacy-trunk +32515 6392e843758881312073558b6a3e2e966b9d0db2 legacy-trunk +32516 c6d6ad862a8c33113ee74b2c3a40b05899211272 ast-branch +32517 65f720fa6200fdaff40ad29803184303d26607bf legacy-trunk +32518 240071a2b466e4f2a33d82e93449b7c380785879 legacy-trunk +32519 85f0e60954ca7b00076668c1fc346685dc67d5e3 release22-maint +32520 9eb5be937990a892e5a73aab618a621f50798d38 legacy-trunk +32521 0f0f6234f2ff4efdcc73f3ca631780a9b37c8f7c legacy-trunk +32521 67ce4ee4a29d1e7ce357ef8d1c00c69d557c10b2 idlefork-merge-branch +32522 e2d29569996d80d605da66e17bd42941e03e1c97 legacy-trunk +32523 2318a9e16ab0a9dc988dfffe71583aa3fccd7473 idlefork-merge-branch +32524 75c1ced93bb52c2abca06bfd1211e474281e3435 legacy-trunk +32525 6c417552f4735c08c8db5661342eeab3bbcbda01 idlefork-merge-branch +32526 6e9862066e296ec84868ca7a0203d046937f5c3b r23b1-branch +32527 99881b6ea9f7d980b141758f2b0b869da6634864 r23b1-branch +32528 a341976ff476d8d4cd11da3bb421075385def00e r23b1-branch +32529 b18d2f2db18d090c6190b3332e0150a1a7d43dd3 release22-maint +32530 89e35cdbeccc0cf192ccf9b2c8d0aedc640711fe legacy-trunk +32531 6873379b8d8c5a071525ac5e35c88322723f0d2f release22-maint +32532 ea7772732da19c3147fbe0e891daacf1dec3ed83 legacy-trunk +32533 49486c544acdd56172add46e8cd27b2094e6b0d2 legacy-trunk +32534 671e4e2eec4ba73e84a8587c882cd0e168baca30 legacy-trunk +32535 af53729d3cdd64119522547063970032fc5ae90c legacy-trunk +32536 e4eabe5b3da13d4faa3d271c3a038e5ab9de7f26 legacy-trunk +32537 d3164a304598b14f14da93ba1da4afe80f7e5655 legacy-trunk +32538 96b6cc5d408b84d25f1ef2601ad4ffe201af7447 legacy-trunk +32539 39f4b97ce82819dc2f1103a05a47dd2d43df8816 legacy-trunk +32540 d5e291f0ae3955caa7d7001b73018ee6982f55c3 legacy-trunk +32541 35c90d9cc31357506a8d8676276a7dc784bb409e legacy-trunk +32542 d30a6a574979c8b6f165acd2c58aade9a235e4df r23b1-branch +32543 bc135d7b7df16fb7ac1da0605b0fe8f3b1742397 r23b1-branch +32544 eddcb790ed8d8bd51f19076669c0c634236656d8 legacy-trunk +32545 2d069c16c8b2d191285777694104c45b53d97a35 r23b1-branch +32547 d1cde3daf9a9e61667ef76fc984d88f423395746 legacy-trunk +32548 f4238036000c4556c439bdc1894726281076258d legacy-trunk +32549 b9a3073f93928c1b801124bf47b6e8355840e3e5 legacy-trunk +32550 81d373e589838c339e032e6ec1711d8ec1677685 legacy-trunk +32551 237f97c71691bf3f840f6fcd24cee5e4eb86865a legacy-trunk +32552 081ef7b6be04376837fb245a2722e7db8741ab96 legacy-trunk +32553 0e35c159741b571de53106b5df5ae7087636ce8c legacy-trunk +32554 aab0dbe3c0081fbd84a9dfedd6cb281ba680627b legacy-trunk +32555 039ab31e10347796b4b8068caac4f2202c4aca81 legacy-trunk +32556 4528cc0edb6da54f9630331f87f9e84fe5e312d8 legacy-trunk +32557 1d1a85f0e5e999857c103f7289f3dc499d123723 legacy-trunk +32558 fa5950fbe73674d6e00c5fa197ee3b76066153e8 legacy-trunk +32559 1eac1a35b370429e6bf6a6a1d37ed2feb427e403 legacy-trunk +32560 e4e72fa4c91412f3626826e30e1dd875e3a74768 legacy-trunk +32561 ce9e2ae8d59d66416aee9a3e526bf3d74be99e9f release22-maint +32562 06abfc9c68e7727efc0c78e677bf51fea9a7fd28 legacy-trunk +32563 6a51d11fb1e915f76ad48a424c9c3f7e3a312715 release22-maint +32564 96eee7d04d88407d739666e84d9ca3cb1ed3ad06 legacy-trunk +32565 4ef108f8181f30c54e592869f33c78e865da2182 legacy-trunk +32566 b04c074586aa426634ae4c31da4b93424f9a23e4 legacy-trunk +32567 33475661823d373d65ca93517c27a57d62fdbacc legacy-trunk +32568 fa006392851817c308fa262f7f616411923594fe legacy-trunk +32569 39ad76143288ba2aadc29c354ccecb2bd4165867 legacy-trunk +32570 1741af48fd9f3e69fa3559283cde67e6ca921a7a legacy-trunk +32571 9287278916e3c5f1f1e7d8d3ea2f4e5c557198f8 legacy-trunk +32572 f2c74cfea0512474adb23638f88e52e4537ce479 legacy-trunk +32573 00fc138d8556587749bb7a526581f94bb7f47905 legacy-trunk +32574 888a3118e0d42288aeb1732d5f3f17b2fd4f9e9d legacy-trunk +32575 114950ee9aa733ee2c01ffc3ec880b459863d916 legacy-trunk +32576 83533016c2897165cb4f7a66acc0d6626b1b4a49 legacy-trunk +32577 b3b284436c24a20a3829f970b667d3440f5537bc legacy-trunk +32578 a769e079bb12ff83ec97ef3807131173677eddcb legacy-trunk +32579 783ddde3792b6694864e944ae6db184ee93f5642 legacy-trunk +32580 0a180ee2473bd99ec4cd6fbe4abf3a5d8db63c79 legacy-trunk +32581 c798d28dee46b19d161260e7b41430a463e70f88 legacy-trunk +32582 92a1e585abf763ac351642aa2dbcbc6f52c5a757 legacy-trunk +32583 18082b2d2ebdf15b3fd3b9fb547d803bd8733636 legacy-trunk +32584 a40b5671a563921d29d057dfb7a20d45caf7fe2d legacy-trunk +32585 6a3117df5e131259ae42f9e2800a1112b96033c6 legacy-trunk +32586 d91821d9d4709672c0bc69551cf4434ae0b0960d legacy-trunk +32587 99cf3368d687ea89e7fa673c845176645009ea55 legacy-trunk +32588 a114ee74267c73130b5870d962b52669aeca6ce5 legacy-trunk +32589 2eee9655d71b0f896d6bac9bee78b20736097389 legacy-trunk +32590 c5f18db1c9661d58072533699578b2fbc4dff85d legacy-trunk +32591 5d4d4ebfd3171e7535c94187c85c7a887c7cad0b legacy-trunk +32592 4756fa5385606fb122f5e9a7d167d9df3f557f19 legacy-trunk +32593 fa057824c9b4b427d094a39e548160ca744eb42a legacy-trunk +32594 05da7726c027e47f1109b17c9b7ed54c838ee0b8 legacy-trunk +32595 393429a6fa16d1d904857eb5da60964e61a4eb20 legacy-trunk +32596 e059a8b11b9eccb10072f7699e4ea49dea35c26b legacy-trunk +32597 faf2cb5070b4c8d13b7ac59a5f98cf7416bf2f4c legacy-trunk +32598 001a905557808a15e8439b583c1fec6989ae72f9 legacy-trunk +32599 dbdeb734ff9799da816c5936c5c436c431fdac11 legacy-trunk +32600 8df897f14fb86026f34479b2e0969c80f4bc4dbd legacy-trunk +32601 33598e8e49b20ba4b5a799d2a1bc28202b983882 legacy-trunk +32602 ac487a7f7f2c77097578bed1c8b89fcc7c3a5460 legacy-trunk +32603 3a9f5f0c512eb4980ec1ac809faf6674afed56b0 legacy-trunk +32604 1964012f6fb0d23bf8d7ba399bb5e8574a261c20 legacy-trunk +32605 6c4a04ce965c258f3a9bb0f94d91ec0cad7b95ec legacy-trunk +32606 09422c3018265b85a80f00893e16a27d5e36c9a4 legacy-trunk +32607 9d5a7591697109580c58def62c917e07e651e15c legacy-trunk +32608 1763d9d3fd9dfeecd6d6e27bdb567fa14c86be9c legacy-trunk +32609 9b4ff4bf033b81647826aee9fcb17c7e1256cf5a release22-maint +32610 baea318be499cdfc49b557add11ce8398b9432d1 legacy-trunk +32611 25b2218da09b59f96b896ee6b410a68a28001197 legacy-trunk +32612 35a4d74b5b8ed99bd17051f097db1923c6616b9d legacy-trunk +32613 6ca94aeb292ac4779a30f76bbadc35e60792a869 legacy-trunk +32614 ac29015ff6a81ef0418da196d859db4f9380c9f9 legacy-trunk +32615 189fdae8f492bf6ced3d5ae0b14a32c29f4a6513 legacy-trunk +32616 25e660e70dcd061e9982b0378abf36f0367c0aa2 legacy-trunk +32617 2e9956d01de332f7d12f2184eb0e91a65470236c legacy-trunk +32618 4ba763bc5a560dc57dd180b2d75d56e96b57b782 legacy-trunk +32619 350ee31aab0c0242473d50ac90fe33fafe04afec legacy-trunk +32620 9959d8fa4ddf0f8c040960ef10acce6cc9aae0ed legacy-trunk +32621 b174d0927f0e257949c9c13bff7f435c2c04537b legacy-trunk +32622 c9c6ba7952a8227aa8d3b2b9259bdabdeaec962e legacy-trunk +32623 9f9022c210562349f4701875189365e67b6441e0 legacy-trunk +32624 65bf69f7c1489d8848ab246be3bc5ad264daaebb legacy-trunk +32625 c92412d634b10b3002887f42350c884a3f2e0286 release22-maint +32626 68f042fafb7dd09bdfc26fb346fe464cc5e0e0d6 legacy-trunk +32627 bb17709a37a3ac0749ec12a41017401cb21b1b2f release22-maint +32628 3e88cff05822f2c1b58a5cc0748fbcf98b91e3f1 legacy-trunk +32629 4bf86518d9ae50182070f5ecf008803e57cc5442 legacy-trunk +32630 4c139168648c6ade3c301aa889c2969733430e4e legacy-trunk +32631 83fe0f5c93597cc6c16a56a0321e826fc561bd51 legacy-trunk +32632 cfcc45f18515a0da7eedaa93bb66e7f0d522ed40 legacy-trunk +32633 5892c1e515b4da9e1074957954366f464648a105 legacy-trunk +32634 815ff0ab24e728c1cb6dc0093dbc13373c2c9108 legacy-trunk +32635 312f1186aa394581b5b14501745a2d041f835358 legacy-trunk +32636 a5dd5747cdfe268d4a56c5f1bf6193e91e98e497 legacy-trunk +32637 17bfa786075adcb3010886e4c04281e5b47a83cb legacy-trunk +32638 b54a84d29c00016dea8bff20358c9581bcd308d4 legacy-trunk +32639 41388e84261b242a62bfd0504a8121d3309cec5c legacy-trunk +32640 222c3d2fe431b1372bc97009f278d63da1078065 legacy-trunk +32641 82fe3a9ac371d4346acf6efeaf647dbc736452a2 legacy-trunk +32642 61d3f8e66d8fc06008dd79540eb25a384aee118d legacy-trunk +32643 493fd7e52206a1ae5a044107c16455054988ac5d legacy-trunk +32644 ce6c3cc422ab5162846abdb4ffeb264f217e4a9a legacy-trunk +32645 b3702b683f2ad2be6b20ac7cea2e17697cc54e16 legacy-trunk +32646 f1fcac4cabad86fca9100c0731a1c9e790273f84 legacy-trunk +32647 d54610f4f261dcb9e16946afc91b5a8285d39c22 legacy-trunk +32648 6b07f369cf03dad8426cf5d7b023372010ff1965 legacy-trunk +32649 380a9a5afaa0bdb2f5f68cad99702a4d6a148c02 legacy-trunk +32650 ed4b098c7bca1d98af5bf66a4a95dbf064cdfd4f legacy-trunk +32651 6fca6e07c2fa9a6f5a6a3391b88a9b56394b07cc legacy-trunk +32652 e107c921b8f3311621af65d731da2a5c8ab300f3 legacy-trunk +32653 5095378394246affb0274a7f27bdc0f79c634e46 legacy-trunk +32654 6c40b73c70457efbce168f9cd5730818f75018c8 legacy-trunk +32655 50841898cc19c0ac357d501f20614747edda1b9b legacy-trunk +32656 013d95c346d2355432e8d17c6f563c0636a3553a legacy-trunk +32657 a07def0dc7851ea48c5b16d4a92fce8777e49cb8 legacy-trunk +32658 3055c9bdff5f5119a6028ddc6cdb76306ce22df8 legacy-trunk +32659 f9e6f9fb8df0c5f205240ddabc17d7a7d8d2f13d legacy-trunk +32660 a3b2610b5041a92aae7d251cd5fafecda8b0cc47 legacy-trunk +32661 c27a64b387627f1bbdda432fd5e614cf131f43c5 legacy-trunk +32662 d2afa00c20e3c4fe72520fa4f7a98716747a0f4d legacy-trunk +32663 9b7164cc0c9266ed6e21c5d37f1122e5e289c621 legacy-trunk +32664 04613161a32b6baffac06f173ed066c78c1ae9f1 legacy-trunk +32665 e6968886a97da190f85d129b1fcba90e94689962 release22-maint +32666 157a29e19eb9ec78c25a309d35e5c6b306c037c4 legacy-trunk +32667 067a982329acc3386a807b36072da1236772f130 legacy-trunk +32668 eeedac49e86b388fb23c1513571716d74a5757e2 release22-maint +32669 109810a1ada8606f28030b3cd7439d3cd787eae0 legacy-trunk +32670 d4f6544f79ace441da7eb747dc67a331c9b38652 legacy-trunk +32671 13d8f29737e5de2682766bdbefa5ff217c542c86 legacy-trunk +32672 dc3f3f3038a8cfa94f18ae2afa5277139dbe1ee4 legacy-trunk +32673 089f2421eb18a0baa824e89728b0faca4f01355f legacy-trunk +32674 2f652a59ebb01f82df31ee77521c1ca9514722eb legacy-trunk +32675 2f743de8c5e2a2bf73c7d140a2681d8ca786c33a legacy-trunk +32676 cb832c2cd54d4aa797736a5ab586231cb67f992b legacy-trunk +32677 3f70d75cd28dacbc4c6348468919fe72ea3e3dfe legacy-trunk +32678 4de02f18a41b42ebaecb764fe420205ba1764780 legacy-trunk +32679 574b9551cfc9e619fbe15334402feae00373beef legacy-trunk +32680 6bba48d1ce3bb0697b8ed7d0e8c368f1ccad63c6 legacy-trunk +32681 1c2e603fee0230ed75f68b7876acbe2d53b7d629 legacy-trunk +32682 4aeacade66009b186fb719b3b0fbe430b5a55e56 legacy-trunk +32684 d5e487362d3add4965056ddf22c06fdd6955cb28 release22-maint +32685 fb117d7f5950c64b4ecc02578ef570098dff1e7a legacy-trunk +32686 3f214c264f63d5bc40064723f5416a5ffae0b721 legacy-trunk +32687 13db5b7de0dde7523ea15a406773f568ce01af68 legacy-trunk +32688 656493534cc7766aa61f697236426c73fabbba73 legacy-trunk +32689 e1d5ca8ab7dc82c726398211938a27b72b5eb6f4 legacy-trunk +32690 ccf7e138a126dd30fcf2c60f62a37fa600751bba legacy-trunk +32691 db90843b00fcdb83428d949e37b0b3a40dd49311 legacy-trunk +32692 d3c1a03a51308904f35389b2b7c4f70f13bc3669 legacy-trunk +32693 59b1b3e2a23b5e94c027ad98f7214ed53277021b legacy-trunk +32694 eff86cf8f3bb3e7edbe0b48cb923290c832164ea legacy-trunk +32695 81088df0b1df3640e89b4d5cd9645f3bd82f9fd1 legacy-trunk +32696 0559877ada5cf309a603dcd946585f28c39f1024 legacy-trunk +32697 8e79dc3731bffc26b9ca8da36a0335353f9fa9a2 legacy-trunk +32698 43002233cc2cda0143d94a63187fbc194a6263a4 legacy-trunk +32699 de564a8733d22753fe83092d2bedd7d44e2fd442 legacy-trunk +32700 58c8e28451a977e0fa4a6710c3a352b4c29f4a80 legacy-trunk +32701 d06adb5a3cc96dffe3bb90a99679bba4d7fd756b legacy-trunk +32702 54f1ffa37429eac7a50198c159fcae9d977d7bce legacy-trunk +32703 064419773956b7098bd4c397318c27daa7aeab61 legacy-trunk +32704 f278b27ef105d34ef446a40dfa0bacd6351824e9 legacy-trunk +32705 7750b8462a8fc4086f7f97e3f8d54e57077a12df legacy-trunk +32706 143fff8d21899d093ffc862e28baa7212bddf71a legacy-trunk +32707 cffb517f4e15f9d6c850c7ce4df6685fb248398c legacy-trunk +32708 2b0c0bda5cca7b6ea735315edf0edfe3eecb6c70 legacy-trunk +32709 6dc82dcf55892602d24fb83d77abdd3e53b572bf legacy-trunk +32710 45bfa6d591f7ca4a52ad49700b0269c167c18c92 legacy-trunk +32711 bae67e414a13a42f09defc6753cfa0e03c3304b0 release22-maint +32712 e09399e3b2c090df49ec3bda64c45014dabc7d96 legacy-trunk +32713 92ebd3daf5072ef31ab5db5fd6796d988e38c328 legacy-trunk +32714 9835b41133ac06e6968ae25d8ae4fdbe941f6b2c legacy-trunk +32715 1babbb4919a7f17d2fdbe9af703aa64502698fc3 legacy-trunk +32716 c019aa827f86056976d29100ee00281f7f2d9383 legacy-trunk +32717 ab7dc538f6f72d28a21b92eec046c55873b0b1a4 legacy-trunk +32718 8e92f2e2bda9f5b0c0fb0b8e050ea3295698ed8c legacy-trunk +32719 bf1634b023d5aeceb848d9a717a238e8ba9ab847 legacy-trunk +32720 90342f395721df64e190c6ed81f956f5cd4f5199 legacy-trunk +32721 04065c4a1c6b5afe5398a09a913e0367bee97049 legacy-trunk +32722 1c848e9f6166231c07ecdaf85140cc32803f967a legacy-trunk +32723 5648970c665f17f38d88ee28b532eb3fd7c99cd4 legacy-trunk +32724 b10a7facc1e886de842329c1bc3a63fe14fbcad7 legacy-trunk +32725 85f1a94af374226f49440940e60f5ccbb4b7e6a7 legacy-trunk +32726 cd48903e41befcde161667f6ab3f17083cd6db56 legacy-trunk +32727 c4e8c6721e456653ad17cb8ad6bbed00db0ef12e legacy-trunk +32728 988b3e8070436de23b567669cf84870652cdce86 legacy-trunk +32729 35a09dc8084c9d0aef922914a531120bf0399331 legacy-trunk +32730 ad84fe58ec2f8ad77b644a918c93a4a9652dd9c3 legacy-trunk +32731 754c41bcc81a2c813ace580a2ecae2ceed48858b legacy-trunk +32732 78efbad53dd86b77ba39f78a978ad5b53e923032 legacy-trunk +32733 f57751ffd6e78abeccfda3e65a0558c20464215b legacy-trunk +32734 437bcd52cc045cf63660cbda8f09570653bcf386 legacy-trunk +32735 ff136fef7231c47f44f021e5d0b6c5e2139d4bbd legacy-trunk +32736 540a772028d26a539c4cbc3d0e37adda5f922c4a release22-maint +32737 707e5f89c211b0d5ef1efab6aa5fbbfd62522a47 legacy-trunk +32738 ce1d7e10f49e9d0ca6632ae2fcb2a30c48f90b9f legacy-trunk +32739 5a0bb6eaa7761880a9d11a49865146b16a50988c legacy-trunk +32740 432add84e062dca97bcbe701b9ae9e5faec81abc legacy-trunk +32741 526f37fb380d864704f45a28fb0e8164ac28ec51 legacy-trunk +32742 4b2e05c1754e6d334b70b21b16937858a11d4d65 release22-maint +32743 a571a9d6257a2ad1ad057e1354bf31e362b6f2cf legacy-trunk +32744 5bf96186db31c53982e4282942a9e921e1d55663 legacy-trunk +32745 22060004b94aeefa08a59596e11f20acdad1ca13 legacy-trunk +32746 4ae3c2d98890bd897461dcb87b58fa00c8676944 legacy-trunk +32747 a1d56319ef0eb38407313e3408b228a167e6c488 legacy-trunk +32748 22b890d157f7db1b66fc3b5b79f8f7775b3a603b legacy-trunk +32749 c5e9655ebed72b90ed52fb7d4bb688289c3dc99e legacy-trunk +32750 3cd5aec59ed23da5ec64d4017618fea78ab2be6d legacy-trunk +32751 e8b5709052e25a2d010fbed505b39daf2ec5107d legacy-trunk +32752 248096a45732c1a051535730f44e109154a843ba legacy-trunk +32753 5ce6296421559e1d62b0eac8dbb2bda9a06a86ef legacy-trunk +32754 34d63b8c275bb9c30407d55fdb9c7b9a03feba6c legacy-trunk +32755 32e70ad79f66d0cf87b48fb235505bb21f65d7d5 legacy-trunk +32756 7a1ae475e0dad5ffa9b8e6d4f994fabd64cb7b48 legacy-trunk +32757 64a9e1be32513d589fa4018d5463f1134168855b legacy-trunk +32758 a5e99e7e7ff033db85c5eccb5cc8124a2d136f44 legacy-trunk +32759 19c414186b9e505b1725f807a11e0faa714f91e8 legacy-trunk +32760 91de3a0924a298ad9528b4f354ad289685e01cf5 legacy-trunk +32761 93c92f20b6bfb6dd0256305fc32ce8087950e65a legacy-trunk +32762 cb0025451482bc367bae3a9e00e808e4151f9f18 legacy-trunk +32763 c06bf6b2b19d902cf8ab9efaee1c2bae91ab7877 legacy-trunk +32764 d6ba819a2f9013b58aeb851fe7c1a9924b44fe0f legacy-trunk +32765 f4d406acf1ca0bd54db8d78f3becca743a8ed619 legacy-trunk +32766 85406045f014dd9dde285e58722c23687fa407d9 legacy-trunk +32767 52372dc190fcfbfa075e75452cac3c0e65888c6c legacy-trunk +32768 4b0220260f62e1f4b64940a9cee5c286451944ff legacy-trunk +32769 4f87a84e9bebb29fb0dd876fd79c54bc003e07cc legacy-trunk +32770 24786c3130ca876dc4a59cedca896983f5985ab7 legacy-trunk +32771 6ac0a672b08213fee708589740b618fffe941d86 legacy-trunk +32772 d7ac1a640d8f9c00ca62224dfbea8635cc017ee8 legacy-trunk +32773 7875fcaae7a3712f1e4bff8e378ebdf71f18b9ce legacy-trunk +32774 addd437be74921627dca989365a672363160198c legacy-trunk +32775 29f19460f067855c6dad74a52e80d92849ef08d6 legacy-trunk +32776 c7dfda993b2faeda32c079eb1692eac44b749e5e legacy-trunk +32777 cff6b8f422d17a660ca2175d171db8a92fc919b9 legacy-trunk +32778 7f59dce8f8c0d4249131a028db97dbf2434bcfe4 legacy-trunk +32779 92e53c8e7a7243b2143fa87acdee3170ba3aac79 legacy-trunk +32780 6d933307761c01559f9c0a420b6b8a06e1d2187f legacy-trunk +32781 e6691ce91b9fd9e59897f4ded25af1c04dd00605 release22-maint +32782 52aebc1400687d34668affe9c4765895d882614c legacy-trunk +32783 cf338633b0746c0aebcfa0156b0a787d09961a83 legacy-trunk +32784 4cbf77edeed52792b117331b33d05f4dc055f8d4 legacy-trunk +32785 9876b18edcab40608aaae67b3c24395dda9c5f78 legacy-trunk +32786 66aa105c8d1798b197b3c7622d6a9ac9e7d2be24 legacy-trunk +32787 60e73c505cf2c1c29b617e56c2e184f7967d0117 legacy-trunk +32788 53dd8c4263fd31dfa99e2e6a551d759812540dbb legacy-trunk +32789 2c3592d12d694e3ab835196a215d2121ed3326bd legacy-trunk +32790 c1e83b8d5b70fede52b57321b99832df9655afd9 legacy-trunk +32791 e9f9a196fdefe4f72e8760bab041960f46247de6 release22-maint +32792 c310f9ddfdcbdb1a7b553b1f28093e5c29a39438 legacy-trunk +32793 ae04a73bf8fc1be713059700c014f1d86068be11 legacy-trunk +32794 e57e22aa56a48677035d4c0582245b4a34ad86a1 legacy-trunk +32795 f93512f1e20ff16e55c438ba590c6a38f8b2499d legacy-trunk +32796 5da198480b6a76fe38a1a66a61a3d02795debbe5 legacy-trunk +32797 4332f20533fcdf3ea94f260c7b3c8004379acda2 legacy-trunk +32798 693155cdae03f8210b4985d893a471205d809a54 release22-maint +32799 e6e100efbc7d31ea41a41b407bbfda13f1cf6b6c legacy-trunk +32800 2bf28904a8ecaa530a15732c2f132d396f436abc legacy-trunk +32801 b6191ca8ed8071592bbc8e32e041d771bf2bee23 legacy-trunk +32802 bc52168963b321d0ce8abe1355b79e055e64e8ff legacy-trunk +32803 ef3ef88e3614f6a1270bc3c0849276d7dd1dbe0c legacy-trunk +32804 6c30bb3e332577c43e85dac5dbe166646f038217 release22-maint +32805 8be9a316eb9de165c5428f7c1aad656927998c96 legacy-trunk +32806 2982e61825661ef1b9b96c10b92ca1da6f50d0ef legacy-trunk +32807 16721d73ad293bd9271fe6ba68615702116a55a9 legacy-trunk +32808 5e6d0dcf155f8734e8e0f24a27ea612132be4e4f legacy-trunk +32809 46fc3f8e9eee339c5fc82373f02ff5917c200cd3 legacy-trunk +32810 9d8de565e5deacdc7c5359aee912c90b42b7c1a1 legacy-trunk +32811 7f0074ee8ab995329781792f9cf49328cf42af01 legacy-trunk +32812 001d3c7e96370c65ca83ddaa7cf01aafacb3d5a4 legacy-trunk +32813 532de19332a479310779b3988fb9f5e49df0c099 legacy-trunk +32814 4c1d1b359f0669c8a5fc5180bd9210d44107eb3a legacy-trunk +32815 1d4ec52b316c0b80d2a725fa3f8e0eaf68a2b653 legacy-trunk +32816 384bda343725a0ded0dcdf28017d46dacf8cfeb4 legacy-trunk +32817 2bb5ceef9ac3c2d22147fbbb07bb1c6842a6c09f legacy-trunk +32818 4d9017ef7b5f3110899c9d44a3b4f163f106de72 legacy-trunk +32819 3f9aa6f1aef08c4d22e62182f65998889c7e6f4f legacy-trunk +32820 89b4e8e2c230cbe85f06441d4bd0a6b07d451cf3 release22-maint +32821 643f3ac430be87dc4e10b9447398fac36a156583 release22-maint +32822 6545e7498635ec219db0b0f68e07afc6da2e581d legacy-trunk +32823 434ef174f478623829b6993a057a877501044270 legacy-trunk +32824 f0b67731e545b5b94473c4ad37c3b2d24ba180c7 legacy-trunk +32825 9cf09f92b198bedcef8427aa08fc7c711003df33 legacy-trunk +32826 9ae17b3779bbb02d0f24a9b4b93f2fbe0c42134a legacy-trunk +32827 421ffd7c57afeea738023adc152ae128fc272700 legacy-trunk +32828 efe5dd60cee88abf7cf586dca2b41ea08d9a20e9 release22-maint +32829 45f7de7f1052c8b01cf6adce340202d861f7360c release22-maint +32830 570a7b8aa154216565c72ef3579b51826c64a1ac release22-maint +32831 4f531cdf242e8ac2f91ecb9e73daf083436adc52 legacy-trunk +32832 1dc7c0a020d3d7e35b72a11b048edfa474874bfd legacy-trunk +32833 6e95add92c99bab8f3c0fd72118740d02be73c1a legacy-trunk +32834 46300b9af02b94dadce5214bd9e6d27ad4d2f6f8 legacy-trunk +32835 f475bec3169551445c7eb5d8e409643bbeb039d5 release22-maint +32836 054d9bc0d8608ab7344d06ad601ad716c0da95e8 release22-maint +32837 f39c271a9a8e6c228a41094042d44c4dbb1adeb8 legacy-trunk +32838 9aa06cbd9cc1a307c4c9c92dc9f30168c65657dc legacy-trunk +32839 c7f6f73743b08b48b33fa47c4a879dab02759acd release22-maint +32840 2aaa39edc511e7d300ba21346377dc188d3e17bf legacy-trunk +32841 896bbd0806e8f3f20bbd5781b72ff2aff39da23c legacy-trunk +32842 bee3d1a1b9a9a3cb155b76615828cb51e68bf823 legacy-trunk +32843 4b1c150d07d8c5b041bb35d5adb7103af8a46c11 legacy-trunk +32844 227c6646cc6bb5b1a2b4beb15b1eb8d6b1e7be33 legacy-trunk +32845 1297d405155bd36d157e6a1dcca7b971193de5f2 legacy-trunk +32846 9b242506d6dc7d47f3db8d675be732763432dd9a legacy-trunk +32847 d665c6b98cd241ba67daaa62afa5b537d7591739 release22-maint +32848 81296a80a15f2e205b7c9d37b7b4e0e343715097 release22-maint +32849 6d6bda2549b6bd460d5b34f0e4efb25b89469002 release22-maint +32850 a9210bec3b5af92749166724fcc130893acbf458 release22-maint +32851 0a97adc6a47eb245cc9a7ec22b4e294773fafa32 release22-maint +32852 b9762f003f308d1752731ae3fbbef30f1cf1f97f legacy-trunk +32853 cd1c826c98a2bfbce4aaedb5b1f009cb3bdb075d legacy-trunk +32854 361fad63332dd24905d22839f0fb662cdddd9f69 release22-maint +32855 754fd34ad9784e2c77e71679b5c466fe3f920a6c legacy-trunk +32856 f6e91ca56a498c7f60b59fd7820c21cdcb88171b legacy-trunk +32857 315a747277bfe76d58395378e9e104b59aa0b476 legacy-trunk +32858 b1f643690a887ce21ede68b2f2e9c174bbaff156 legacy-trunk +32859 56ffca02c8243b351fe742432f195d68fee67396 legacy-trunk +32860 e70943933739efca69064e1ed2b008250d9fb46b release22-maint +32861 5ecc48ad6634000e7ed63c405b1f5b6fc0363e61 release22-maint +32862 ff9ba3d1e280cc62173c48ae2e6bbedc41add676 legacy-trunk +32863 da2c5d9dd60e07e3334382832ea771c62180c0d1 release22-maint +32864 35b2769b02b63409986521722149bb02493c984f release22-maint +32865 e5aff06037b794e6eea867b1ad3ed178d959c065 release22-maint +32866 d9cf536c5340cedde7f57e7fef42adaeceaf2589 legacy-trunk +32867 584dc46ca066da0383c2dde64880e2018058a8bf legacy-trunk +32868 6462216fe3a87abc0ad595196ae2bc93de16836e release22-maint +32869 4bac4d0d3e3ed1b28877b79536cc0f53c7dbf8cd release22-maint +32870 699746633246c7296e522d6edc04432fb7e3c265 legacy-trunk +32871 f05bae412b71b245707f037121e1a71c9a1c62a7 release22-maint +32872 98567065064b7bb597b23108d08c20c66fe6e249 release22-maint +32873 0523f09bb3486756b7ee9e320b4821565669beec legacy-trunk +32874 8560b146f41f1d07c26724234991b65520f1879a release22-maint +32875 f15626c764186739e714db9d11af62ed31d96899 legacy-trunk +32876 27ec1471dcb6a92f2a119115a586065fac636f2c release22-maint +32877 ea2958bd4271ff166362fea9d5f8d60c735aa801 legacy-trunk +32878 858d568ebf7631107a1ed18b40b3b10bfa5be1da legacy-trunk +32879 f3f306457b430ea19d7de7946b7b7bb851450f09 legacy-trunk +32880 3aaf24b949dfb620915c69053c8d67cc7dc51358 release22-maint +32881 052c6263df269a264c2184fd838cb6da43e26391 legacy-trunk +32882 108a1006a9053a4fc36c11205be6815361705dac release22-maint +32883 f7dfaeaa4ab988a546aee2a8db1afeeb37f967d0 release22-maint +32884 bd82161b61e556946b248a20936ca759c6ce6e71 legacy-trunk +32885 67d560d608ced76afe1e1b4572dbe236d96a6a2d release22-maint +32886 856c81f71213da23e9604fbc8ef9fae91d9b7020 release22-maint +32887 eaf90e850d12e9ff107b5fb2d45434f79f7fbe20 release22-maint +32888 377a29f6d68793d687b197ef7e32bd183647023f release22-maint +32889 f3d1ed1411882d58e1c992915720095876816ad1 release22-maint +32889 ac77b91342534d09b1e432e1dc3b70dbbec3a919 release22-maint +32891 068529a909926d4f603cf0b6d6a0d4a3344addff legacy-trunk +32892 752fc5ea16b9bd13fb16401d2620af55990935bc legacy-trunk +32893 35d700d9015e05888cb0cd9b676b84abb6e5f6f9 legacy-trunk +32894 e721025cca0939fa65e2c36dc26404ff40dfe69f legacy-trunk +32895 387d7c2216a169b6c66d84f8e41b2348cfa630ca release22-maint +32896 d72ad07c739ea2c8e35601f9762f932c5e97652b legacy-trunk +32897 64227f8de7dac1058404456cdfe4ce113f4516f2 legacy-trunk +32898 23ad8b5d7b4a0ef368974d306e16e9e4f05b48d6 legacy-trunk +32899 ca0c8137de84455eafe192485321667d71b0cdda legacy-trunk +32900 39b87167846753d22550310e8e5b987dde26c006 legacy-trunk +32901 1c32d4207404a86445f190e044f171b759f56b85 release22-maint +32902 2f42875d937f24d54d799af77329d317e1acdccd legacy-trunk +32903 893ae526677653f30a35edaeb5734458be01538c legacy-trunk +32904 34609fa35b11c17fb53a5349f220e0409fbf7898 legacy-trunk +32905 3a8b1d16b7c6cdcdb552ad14dcfeac70865eb3f1 legacy-trunk +32906 0b76679bf3f98b7741cfa8e8652d6957566342f8 legacy-trunk +32907 b4c92e9803a621234db6eb49c6f24dc73f6b206a legacy-trunk +32908 be70b8477f43d08a68279818af8a0b68f4fe6ee6 legacy-trunk +32909 3689b0055c2db2296a9e9a997ac2a505192dcff3 legacy-trunk +32910 b909fdf0edf8dde0c6782857709a2c0327f1d5ea legacy-trunk +32911 dea38116c373526dc466e1c7298615071db7ca66 legacy-trunk +32912 18c020463965d029df7c103fe30d4c8df49d6976 legacy-trunk +32913 f1e56748519448bc9c04c202a4f3bcf6629cfacf legacy-trunk +32914 161f05f4680d9d3d82775fc9c91a12f0467e8f67 legacy-trunk +32915 34f42e3450b4d62c3952e968eefb88fae92b2b6b legacy-trunk +32916 7ea550ecf43d74ed433b5298dad52bcc02fd5b5b legacy-trunk +32917 45c6be35733fdd6af8bcad5c7699e70a138aa7bc legacy-trunk +32918 a9d778bd965368833f297cdcfd8aac69f107c649 legacy-trunk +32919 74da4d2eaad3679bee75a4765b14000b1129defd legacy-trunk +32920 d23e9320d35002d68a985af11321800e4515b486 legacy-trunk +32921 3c4d95a4ce177e7bbd9d8006d85757a63d7ee04f legacy-trunk +32922 7887fe3a9a8ff6a9a7ad821940f56f565e3bd648 legacy-trunk +32923 c56338e087cacaf8c041f6bd0b01e2a20e354411 legacy-trunk +32924 08630919bf52b2ec934c1096ee1184b6b1b4097b legacy-trunk +32925 8f73df0999673402a3bc00c1e8eb8637d6c0fd5d legacy-trunk +32926 b7cd1ff0019b9adedc3296a26588f3e632e9f466 legacy-trunk +32927 897812318ff41d49702d8578c00887d2d737d303 legacy-trunk +32928 df80a5b6957b5ee5a7263cbcf68b34122722a123 legacy-trunk +32929 a043af608e94cc73112798595a3a39cfcf80192d legacy-trunk +32930 fec7f33b697c185a68e8421cfb2f7b5b5ea831ff legacy-trunk +32931 6673053edad3f3d98eb31290a0843ba40cf6980a release22-maint +32932 cfba76f7764358ff2491d5135572bd50d3b4b35c legacy-trunk +32933 b372b903d10e7add3293a977c0e918735484df3a legacy-trunk +32934 8f2c5cf61763906c32fc8d68deea6bd70d519bda legacy-trunk +32935 4992c60d422b28d1feb6b33abb8f5acd166554a5 legacy-trunk +32936 c325e8f20d6e94095f30e07a5080ea52314bc7c9 legacy-trunk +32937 7f130a4370c9e34c65fe9e16aed3effd1a8c9d1a legacy-trunk +32938 8eeb1df69f35751743ae07a14e87068296480d67 legacy-trunk +32939 949f41829f36f4f7d3faf7d94c5326fa48882422 legacy-trunk +32940 a5c8eca54aeb01f3306e9bded82175fa5827d8bd legacy-trunk +32941 de41f3cd647445214fcf3fbb7992c31b96fa38d3 legacy-trunk +32942 0437cf4b9eec1e2f023342c9ae6e7b3cb4ed1a7e legacy-trunk +32943 811ad5f2f7014c11feca57b2c973905c27dbc740 legacy-trunk +32944 b5badd3a8d4f3918fc8ac5e03068952f8ba7987b legacy-trunk +32945 70626c573ed71dd9b6c1ce25df7f445fe30d1518 legacy-trunk +32946 21451f76059631cca95f2e5f7ad9d9a7b858723d legacy-trunk +32947 e8c4c15f459e35ec0c88c55b652f4ce71432da29 legacy-trunk +32948 bd349999cb0828898d80eb1dcb5ddeeb8a0d625d release22-maint +32949 d46459d82a79278e593846af922067d2cf1e7266 legacy-trunk +32950 7f7a078046fb5c10bf3177275347490472d163b5 legacy-trunk +32951 c1e80f2f1c471a23cd766b6163e7793fc5862e3c legacy-trunk +32952 b5478d1dd67edd9d66e8ad0e9d9f64cbdc2b702e legacy-trunk +32953 0beb1a6514435802d03134ca07b50ab09327057e legacy-trunk +32954 732836666000323fef52377521a66de16925bb14 legacy-trunk +32955 98affdbc416c410994d558d5066771b7e5c0d5c3 legacy-trunk +32956 08a1cbdd0367fd01b2738ce3ec5be5a0768872f1 legacy-trunk +32957 e3aefeba411609a22c75f937015a4b1eacc8eecc legacy-trunk +32958 98d81599eca74ec33ebfdabfed97e30efb287415 legacy-trunk +32959 c3a02074cbee9b6ae83879806295b086077f7bca release22-maint +32960 e6f8e2687c6fd57524ea6d5d8ba69c1153293a20 legacy-trunk +32961 6468f0e1f4a85bbedbf4c53952cbfe7b2aeb1ffb release22-maint +32962 ad1e67ac567b872994cba9e6c8c4a0da93512c36 legacy-trunk +32963 46294eddba5513bbb5415b32ae8781553b8b4140 legacy-trunk +32964 671e9c3af4f385fb88ede7e667ce1bd64e755e72 release22-maint +32965 ed70779f64021c90efbfc0387522a5ce22251cdb legacy-trunk +32966 b1792a618e6dbcbe11e40763daed2ebd8ef01139 release22-maint +32967 dbce556cfc96e90709f4463407446280138db2e5 release22-maint +32968 51ce69bdf4186e820147941de4712925a504cc43 release22-maint +32969 c291ca2949e92641e6cfae2c5d68f07cfcbe80fd release22-maint +32970 272c75b1d22ebb05fc7be2b0577ea08946edbd70 release22-maint +32971 f44fbf74eb61dc28c17ff8450335269afb886d07 release22-maint +32972 f7f46d673c61c72cc8cd093c017fe0ffd74f2e20 release22-maint +32973 65f7efd35f11901c70f5c97b2a9fdd73f3a003a5 release22-maint +32974 b31c84ba1f3144f5047565af43711bd3a0a6c42c release22-maint +32975 7746269b951cdd62cf6908bca4b1275805f7e103 legacy-trunk +32977 bf2dc0d17148827d60a6fd2c69ff5bbdf4836bcf legacy-trunk +32978 12f9ea32f23a52970bb459ef26699a73bde30fe8 release22-maint +32979 008cd101269df68296804f3174bc952c70b4c020 legacy-trunk +32980 7bec628998fe9e757267e56abde3dba68065fe8c legacy-trunk +32981 e950abc329227ab68005747100dcea6750904264 legacy-trunk +32982 3682aa27141b4422ce6aef9efe9c9bf7469e44c5 legacy-trunk +32983 8700a1c7016b10f0988d9baf3641afbddcd8752e legacy-trunk +32984 63ab50ec4a46615af0d4695716fc88a2ac4653da release22-maint +32985 e4583d166cbcd7986ba1b4e2a2108128e19ec082 release22-maint +32986 29ab1c923f75710a2b94df381a7a23074e0fc2a7 legacy-trunk +32987 47c725a32b0ec10f8aae7e707c1a67f9a43bd5ba release22-maint +32988 c001bb0005580d2a569ab2e72eda227a6d5fc07d release22-maint +32989 83a2e7133b010553b54756057cc7831183dca5a2 release22-maint +32990 890cd7a2223efb9688462bee4b4cd68bfbf59f75 release22-maint +32990 f4f134ad46abd0bc973d3f6094ea56e62ac5c492 release22-maint +32992 f9495815c18f319d9629df4b7456259d646b7e03 legacy-trunk +32993 f409b33c29ce49200e3198173c37525035341704 release22-maint +32994 fc286e28556f7d86dff8ffbc205fb37ee85e3721 legacy-trunk +32995 c69ad9227afd4f931b74ca56602feeed217dfc9a legacy-trunk +32996 6abcb690b47b54a7a8b585bb214c94a07c8355f1 legacy-trunk +32997 d89c0837f8f4183155d2545fd55d80264ee8b4c1 legacy-trunk +32998 e4f70e602598d48ba2b429d575bedf2302b7b7bb legacy-trunk +32999 97fd1f49f026aa504c5caf7a08679ce669e3108f legacy-trunk +33000 b3455c4c17988778d78ca5b98cb8d6c95948ea13 legacy-trunk +33001 75494aea47ca7265491ea2417a3c0829daeb5483 legacy-trunk +33002 4585ab0da00377baf0e9ca0feceb0fe36d5503ae legacy-trunk +33003 f5891459b813ee244e5d53fa6b0893da49a04d8b legacy-trunk +33004 2f731c57cdc68f5940d03f9908c8bc9486ce4a7a legacy-trunk +33005 27bd4cd02bb87e377153b3ee2470cf03201904c8 legacy-trunk +33006 fb84e0eabad4e4b3d1680343b5c6da298017ec70 legacy-trunk +33007 1ae8b674090652065cdd8aee9140bcca4053c964 legacy-trunk +33008 b1395014714ad7f06ce2fade61d8ef4a159feba7 legacy-trunk +33009 b52e0ad30585880e92666a24770f37dad46abbb9 legacy-trunk +33011 53d9b4eec4ce0a284fbc50fd252e3ab5562ec7a0 legacy-trunk +33012 a369336224dda49539a1dcd64597d8124c5d56a7 legacy-trunk +33013 20894dbc7f6a8a571244253aea17158183f46f27 legacy-trunk +33014 b1eb2a4756bcc3293e91bf271ca959750fabb44d legacy-trunk +33015 ed949b82f95d9c8a4b1974a4400cc181e1036666 legacy-trunk +33016 3f10a29e0e6a1ae005c5f205f095c38392e569d7 legacy-trunk +33017 fdac9b4d37172513299748afa3b79432f7e43f3c legacy-trunk +33018 f82b6d2b73f111370a8c84d293a883d992c360fc legacy-trunk +33019 c66100c09ea11627d49009f252102957651a4da6 legacy-trunk +33020 e0f071b476fd16fddd7ab85ab93da6386fd7a1a6 legacy-trunk +33021 72ce7cc03f27fd2622ee724ff170ac2155ff2165 legacy-trunk +33022 2616fe5eeee178d363c425023edcd61d1f82ad36 legacy-trunk +33023 ca20c3cbc956ea323bb98dc90799cce925683fca legacy-trunk +33024 1219021c4865ae807f33140a05b54a268f35ff84 legacy-trunk +33025 58c1ad417ee7caed428aa2226865498f08b815b5 legacy-trunk +33026 c01edc35ffd676ba4a66b0d1dc0b5d952e81d04a legacy-trunk +33027 8c6d4da5ccd3f89d5e57eb192690bd8faffb99f0 legacy-trunk +33028 20e1ad3ae8bb0ca1a23ff06538efca461933e1b3 legacy-trunk +33029 9e7d22930daa12f27a57c2c0b064d2f595252678 release22-maint +33030 23f6101cc87ef1513a942975cdba1e34fb78ea4f legacy-trunk +33031 2e2dd6143943977ed7e734050609f938fa2ecae4 release22-maint +33032 4081b490d54cacf2101f271ea762e7961588eb2c release22-maint +33033 c055979300f178052271066ac4bffe23ccb8b0d4 legacy-trunk +33034 24e74d6879800bbbb333e079af475a783adc0660 legacy-trunk +33035 347e7b6dfd53ad9d71778ff14f299cda28c01165 legacy-trunk +33036 24fff32ed065c33dae039c59f79814bcb0e66c82 legacy-trunk +33037 15f1dc5b7ddc1cf614b6b2d5b004db27cf1ba2cd legacy-trunk +33038 585e303a9491350c806908ca42e767ec26a40ba2 legacy-trunk +33039 0d588fadc1f82ffaf55e555251523743a55b2a70 legacy-trunk +33040 2d39ec0e55aa5fa4dbc3c23876a897c9e60813ab legacy-trunk +33041 bae6ce6d1e5a37d26dc10a673eca589601fdfd16 legacy-trunk +33042 cd5ecc5b38eb8597f6636154067773b6fa95d013 legacy-trunk +33043 eff33334ca6737d20617419fa5001d14ef0d48b0 legacy-trunk +33044 db46cedaf7ce20b21440913a4756c78ac146c55f legacy-trunk +33046 857428cb418c7c8e3fa69194a36c77f02e15856d legacy-trunk +33047 654908847eef8bf60da656fdc0f043dc72e7b090 legacy-trunk +33048 3b2e2b14681c02e0bb2339c137b3c60a7d20bb9b legacy-trunk +33049 9e1f8fc5e71d334722b61377f7300deb5456b77f legacy-trunk +33050 26e07a684890cbcc974bf668a2d81a29befdd1d8 legacy-trunk +33051 ce25b4d746ea10067e0ca35fc5c1a7ea346b7bc3 legacy-trunk +33052 92ffe502112819f33c6711b1ce391fbc7e32668e legacy-trunk +33053 fa604af0cdbfb631bf4b14fff85e6e3725c25f5d legacy-trunk +33054 61e966c9ece8d908dafc5c0324ea51d0561dde8d legacy-trunk +33055 e6b0a406dc31ef42effd861e75cbf8dfe5f76788 legacy-trunk +33056 525766817eb68b62dae100c4af76bc51c08c65ff legacy-trunk +33057 b0a7eac6c651101b7fb703597d97daae1a557672 legacy-trunk +33058 83236f58e68121e3652ee9b1f5a2d82524dfa1ec anthony-parser-branch +33060 cf0baaf16e0d7f521deb00e1f95cdddfb4404205 legacy-trunk +33061 a2d4c64f5b8b314b53e4ada067b96a75defb7c6d legacy-trunk +33062 d1a8c732359e7d9412b20adcc94f723149fe7283 release22-maint +33063 8c5a6853a02adb81bd67ea8a08f4c26f5172b8d7 legacy-trunk +33064 beffc73666fd20ca38b63d4a3b46124cf3eccb61 legacy-trunk +33065 3b54dff133101ee29b948ba0817c946edd4eeb40 legacy-trunk +33066 9bb6f3c5b04a3ef8cec14f0e30f774aa2aef8a8b legacy-trunk +33067 31b2cba64b399bf5931723e166391bcc2783155c legacy-trunk +33068 29760056884a9e71521eae50fdc6a36b1b329e35 legacy-trunk +33069 f2df9c9f0fcb609b6e9684699820260c0ab6c3ab legacy-trunk +33070 bac2c0e7c20a12225000ae699dd7fa8c2f7a1ca7 legacy-trunk +33071 356bb59c5486b2e5eb2b1f5a2a29edeb66b9580c legacy-trunk +33072 64386464f71691177e9a42d71ba4489a1eace1aa legacy-trunk +33073 0a40c687af5ec968008032e74de2b1540326a803 legacy-trunk +33074 88951a5fd2a9eec03f47159ac178b50b44f6084f legacy-trunk +33075 ab1d85f98485687550b126c43f25b18b77017c28 legacy-trunk +33076 9e1d7809a99816ad9a07952866009a6bd22b8e17 legacy-trunk +33077 19f4f48bb02a7e6e014c3d3f29fad514b2362f36 legacy-trunk +33078 5a8fd5b3e4c40510b05780acd39f5e61ba878507 legacy-trunk +33079 f87fcd0870bf2c986dd1d8053021e343d244b700 legacy-trunk +33080 2ba5ec6b3cda2fb0e7eda5479640ba3e70766545 legacy-trunk +33081 cf8ae3b0dcdc970aa894e2fd0dd016006c1267af legacy-trunk +33082 7c49831d23c59b07b66360d7478329082d9d7fcc legacy-trunk +33083 fc392dabe2e30f0ea8e90eb3c2d2a8086538bd06 legacy-trunk +33084 b6c271ba03e18144365a38721f6f36ea00c394ce anthony-parser-branch +33085 089fbe3a114ef9bec64ab59d6d77053d2dbb600c anthony-parser-branch +33086 0d61a27c38969e06846ae9cfa91b2c12e7f5b4ea anthony-parser-branch +33087 ffd02baab259320e7326c09763791b7f677c943b legacy-trunk +33088 70d625ff562b5d69c359b74c4c2d46d3bb2ded3e anthony-parser-branch +33089 923e6fb855ff4f7a3732b3ae440c1b355bbcb155 legacy-trunk +33090 edcfef944e2f406c827ab116f80fb4a643be95d0 legacy-trunk +33091 5c56bf3cb2055085292984b2e28859a117edfb73 release22-maint +33092 c481c686275a785a593045f0da0995c5a86c6a60 legacy-trunk +33093 b80a22250e4f11a4b47b5a01cd280c855db5cc54 legacy-trunk +33094 efed68973a3bef34082273605b2cdc7dcdb7cba3 legacy-trunk +33095 e2f2410c096e03f3d420f7a0307ddae5e8aec26d legacy-trunk +33096 193397c44ae5164f2ec0783f3e04095eddda3844 legacy-trunk +33097 e69e54552d108db674447bdff8839d97e2c5a6c2 legacy-trunk +33098 0ba7c101648ac828340c8e4e7354fbb8581fe5df legacy-trunk +33099 fa48a90eda125aeb2e848b1e096a3fe6f10f7c94 release22-maint +33100 179d5452bb9d9f6114a4308dfad73a81f872d686 legacy-trunk +33101 b40902b42290db694efe33bc2366306e6109cf7e legacy-trunk +33102 7b7004393b5b26f253e6f1c1e157eea45cb17c04 legacy-trunk +33103 52baaec7e5cf089f3516568d6158b2af8d65ad2d legacy-trunk +33104 17431ba8cc4bfada32684aaef471625ca5715f19 legacy-trunk +33105 6fecc99afa69ffd480a292e620d501ee6e75473f legacy-trunk +33106 bb19134e0a4d0b9e44332bd85ea97c30d43daef3 legacy-trunk +33107 8d160095eb6683e3c22a5897639fdd677307d842 legacy-trunk +33108 e5d03360571d97cafded423cc868a9e62e06334a legacy-trunk +33109 e9953b399d553d5cc8df0ae9a790742f42c32136 legacy-trunk +33110 2cb969ffe1bf28e54b09fcc6477a5bef65abf926 legacy-trunk +33111 5c762752782c293828d0912cd54fcc470539e4c2 legacy-trunk +33112 2d69a707c492985492a31f3b57753b9b2d255a75 legacy-trunk +33113 56343816b5897f8af702f25a0d1580e8696d3255 legacy-trunk +33114 05058d8134418d48858453e114bf09b4dfcc2896 legacy-trunk +33115 3016a19e320e6451706f9e0f57c2c41b7942d3d2 legacy-trunk +33116 efad59f39564bcd948179717cbdf86b0b6fd8d1c legacy-trunk +33117 9b72558a1eb9f40bb2c0a4be171981aa765a3188 legacy-trunk +33118 6d160ee37196559e3dc6237a77775461530ce38b release22-maint +33119 1f334198e6d763c6c0ab78d8082aa479da671d33 legacy-trunk +33120 b822c2a8e08f4305fea4a67f2a5addd5bd5ec292 release22-maint +33121 8bed55203559f8dd5c5ac391b76ac7f241b79ed8 legacy-trunk +33122 21bfcb7c976db5e43c8770cb561f52af5da39a5d release22-maint +33123 9883cf8ff217c9ed88253dc4e41a12db7ba29daf legacy-trunk +33124 8b1766c8ad3bab4e9cb150f240b828d76bf918ef legacy-trunk +33125 062e342ccff58b6295354cdbf10f1d45a243b001 release22-maint +33126 74a28f2e94cf9e292eeed81085f956555fb5f6ec legacy-trunk +33127 2cb8930ce2259926ae4a79a7b9cd3b9cfda9622e legacy-trunk +33128 1e2e54821785f9a4ebed6ef87fb44d85d7c2c973 legacy-trunk +33129 3523ba92450ce641606c897d2d8ce4d09e8123e6 legacy-trunk +33130 0415af63412258be1aa45d691dc65636cd8a235a release22-maint +33131 5c5b587464866dd3d7337cb95a13fb4e9bca526c release21-maint +33132 0cf1ec58e220ba6862a1499b5678a74b54bef05e legacy-trunk +33133 a721b094f7bc2dbfd7112556be60fe5441a054d5 legacy-trunk +33134 4f076fc0195ac2624aea478f8ba562df443d31bd legacy-trunk +33135 1ab9978123becea145f090fa1fa0a11b4162cd3a legacy-trunk +33136 14a1547129fbf5ebb228bc829bf00a0f192f32b3 legacy-trunk +33137 331af45dfa0dc0178d8af3ca251a77f918901390 legacy-trunk +33138 4874614cc7a3570392d3ec9fafd7e66cd2f69955 legacy-trunk +33139 51060b169b3237a4178061f9cac1fe3703108d85 legacy-trunk +33140 892dfc9e72567fdb779f9722e0a410440d848ace legacy-trunk +33141 deb9715bc8ae7c00e6c462e9395260e11a3ce5ea legacy-trunk +33142 834cd1218f1b4d24585e8000399d3bbef56c9fcd legacy-trunk +33143 086bd9e7d2442a0ba6c35ead473d686bdbe318eb legacy-trunk +33144 06f28adea6d2c091ac887f3b7ef1946d2db65630 legacy-trunk +33145 bdff965d2603299ac661ec334328e809ad7317db legacy-trunk +33146 23e7b2577a468805bf6260cb1fa65464b0899e0d legacy-trunk +33147 3133b50e99f3265f9935941e44d28b3a5cb9caed legacy-trunk +33148 87a253aaa0d52137cd75136a65c476333770c44e legacy-trunk +33149 81e70f12d62fc84779b52d256c3d87bfb589a119 legacy-trunk +33150 1386f86c5095f47594634eafa1481cb5001d7f56 legacy-trunk +33151 5143cfe7cc75cc044f09f50df0c18b2fd8399284 legacy-trunk +33152 60daba93775c523603659d565b33bcb435b1b6f5 legacy-trunk +33153 9718df849da92102db5d0684e693f26e2261c75a legacy-trunk +33154 08904660127065929e9b42ab3d25c86d60a33006 legacy-trunk +33155 5220474660ce81d268848cb78be6d12f1848fb87 legacy-trunk +33156 abc2a20dc3a334c2cf4a85c2caddba2ed272f59e legacy-trunk +33157 40c5f1c08ec8aab0d1f8cae0520af683197d2461 legacy-trunk +33158 100708eb8c82d2c787b9d75e7d3b89948a94df60 legacy-trunk +33159 94f9107d9a63a9d9a2e9225733005ab47285a727 legacy-trunk +33160 6531c76b604dcafe2c254cb4c55f18b93dbeddb7 legacy-trunk +33161 1402f265e48f613baf9eb374c50440d010bb19ce legacy-trunk +33162 d0d4d696ab24e8d6283e95c32a1476769e35b9d7 legacy-trunk +33163 aa84ede1c364ebdcf52ef3656bee1943924d3052 legacy-trunk +33164 6c6b321d1d10efd1f040d5151acf700387e6febc legacy-trunk +33165 71c06bc5a73ea1b6e653926db126955744143940 legacy-trunk +33166 7e3363a7661d2551cc65e68d3d241bc949438808 legacy-trunk +33167 d72b3f0a57a9dd2c740484bcede2a8fd83ddc608 release22-maint +33168 5f01d5158d1f86e233cdb3049cfaf33b3bbf4c9c release22-maint +33169 db43129474940d80479bf01e911b7949adabae20 legacy-trunk +33170 11518b6ce5ec03d39f51bc866bcbfe166aa4146d legacy-trunk +33171 53554688e5a22e8fa250ead53cbbdf22fe9643b4 legacy-trunk +33172 29eee5c1dd42fc8a4103801c282530faba37eb79 legacy-trunk +33173 01e925371d7c94088ca818923e1d1fde01064fdc legacy-trunk +33174 d1acf89d1c49a6d60115fef34fa488b6030dbfac legacy-trunk +33175 6444ea3dc83c44e15821847269b10f4bf6465dbf legacy-trunk +33176 e54e2de46bc3d58737f4f73bc92189d50f242bea legacy-trunk +33177 ca9e3598ccfb5ec81b3fdbc9f9f264da632e5010 legacy-trunk +33178 231a3510e246fe0c943e56ab04cae88765f867f1 legacy-trunk +33179 d761ff55b3bef41fe52fa3e95a67c8b19c16d808 legacy-trunk +33180 94ac1d42a4204f2d0b86cb48a48cc04881b35a2a legacy-trunk +33181 05fb51d07adaf5bf314a8785ec850a2e0429f988 legacy-trunk +33182 c6eb569e4b79309b850a8c8b2520bc94e208cb6a legacy-trunk +33183 5d11fdfa7c008475005421b3c1d450c0004bb72c legacy-trunk +33184 b74e0cc21cb044fabca55e2a885ed9b4fbf9bd68 legacy-trunk +33185 70e649fa3fcd13916a8ab254cea605cae770eefd legacy-trunk +33186 87f30fcfad48881a23a37bc61bf7710397952e42 legacy-trunk +33187 b1aa1d439cba355eed902e1e2f167d04591d555b legacy-trunk +33188 fb332a0949b74f56315f743673693a627bbbf08e release22-maint +33189 f6d503de45bde0f9f1a4388cb38502b6475e300d legacy-trunk +33190 f67e4c5aea937dc3814408448b576e83d2d36056 legacy-trunk +33191 7aee6ef596ddbde6383a965d51863a50e49ed45c legacy-trunk +33192 f48bb94f328958328726e838dcc24b854ffdc91e legacy-trunk +33193 f175f779be890b7f9f1d0b08a510b79c15b60174 legacy-trunk +33194 ea77d43e203d1f56f50c15b94efe112237fc929c legacy-trunk +33195 2fbd256a1db25626bbff41da6c90f86980ce0b10 legacy-trunk +33196 0b5322b853d2f751b60310bd6b21050fa4dd38eb legacy-trunk +33197 8b0300e7f1dcb199019c69f38b0f06dbd11dd2ed release22-maint +33198 c64687cd5b371d232383923f7b08f55468a3f6d7 legacy-trunk +33199 34c040ddf9e8ead2445a21d7b2bd0a915f57e84d legacy-trunk +33200 cd62b3359e9560e5f8745158426cc0e3dd483b38 legacy-trunk +33201 dc6c21dc8684e06397cc016d22c7057e849af8f7 legacy-trunk +33202 fafb6eb0f97e8e4c694235330e3bdebf097ea635 legacy-trunk +33203 c3bc7ed9d31599e0e0f9bd3884e6e64bddeca1b6 legacy-trunk +33204 2d4027efbc12e22fda2785eac3cb3e8060af11aa legacy-trunk +33205 69bc7ca5cc1a8f501f93682a00f908c21be569c1 legacy-trunk +33206 e228336aaf08d7c357a3d066f8aa2c970abf56a8 release22-maint +33207 9197285a39335e04b2e444ce49b328a3f3b404f0 legacy-trunk +33208 32592f1a6f22b499a212c6868fc399f880654689 legacy-trunk +33209 6fe023690d7f10d3cc506bba5f16bb37700859e0 legacy-trunk +33210 944f602b78fe4889a124c2af3bec089d9e02720c legacy-trunk +33211 8780a49d8ef2c143fb65812c5143135fc5265d21 legacy-trunk +33212 7c7f4045ba3671a0209064df69e5ff255f4f27ed legacy-trunk +33213 4d1fa9c5cb2cf25d90cca71623bfb77e97c6a065 legacy-trunk +33214 e973ded8a92a88285e0291002bbf18b2c68ec55b release22-maint +33215 5200287889bd2a4104ee38b27d1d53cd13128eb4 legacy-trunk +33216 6a5e95c67d321c10589d93d9e2d0264866e42858 legacy-trunk +33217 1a49869223577203e2435bdb4f0d07026adc1680 release22-maint +33218 4b86dcac2201076d6396ee0f20f1a80145b43901 release22-maint +33219 de3d49e0f64913c03891a0e1b67ab41d514e21a8 legacy-trunk +33220 4272322b92e5e9e82566d222dc66859a602bc867 legacy-trunk +33221 e5d3b1d89c401800d04d7ad405fcfa29ff3aaa27 legacy-trunk +33222 958b40d80b331830d033bacc2aa00a0cde8437c0 legacy-trunk +33223 a296214d2ebba3170d191808ca83efce11335d97 legacy-trunk +33224 71d3da115838f331ae0f4b58dc8b979f970dccb1 legacy-trunk +33225 448c1441964fd60e9bdc57d8894dc13d715b65a6 legacy-trunk +33226 756468307e6179fe84f1d8d345709d25db5612fd legacy-trunk +33227 91259ae35e29946723991ca6986b33d81994742e legacy-trunk +33228 8e92cc04b64b0004c22af74025abb1d489822b77 legacy-trunk +33229 d15e2b7d991cc90b1554bc864db27b7f13d9cf78 legacy-trunk +33230 ed45a995131268b24ce0c717cd3947dfcbd48d48 legacy-trunk +33231 ad02a38a96ea9edea1e272fdd37a46cec7337186 legacy-trunk +33232 f26d13236ce84a809ec27b651cf7103c2ce16c58 legacy-trunk +33233 1aa9057c38b4ed7a8b525a1caa0113acc7216b1b legacy-trunk +33234 eed7430b7af14a7f59e3c5e54984d7ab380168b9 legacy-trunk +33235 5c8737bd4ce6d4fba52513de6f5fb3cd1a124dab legacy-trunk +33236 e2f7834880248d4c325fbc389de89db8e2819eb0 legacy-trunk +33237 cdc75de2f5c1a64f3adff0b47a3f082d80bcf46b legacy-trunk +33238 b8b57bdbfcedf4c8f14604024315f0990c94642c legacy-trunk +33239 f93b919e57290ed26d52721a2c2f6e1dc489c421 legacy-trunk +33240 169e01ec359659fce3a63a410e440a65e37d44be release22-maint +33241 5623f9e2b555f0e97006ca8a0c21ecd4466e2609 release22-maint +33242 60ce73ea9c92f342f552f6755ece14ad0ec6a1db legacy-trunk +33243 a9a93fc50b8d8ae7878b61c5ddf105a2ffc40636 legacy-trunk +33244 312fb76b73cc7c74d1916dfa723e5e36254f2cf1 legacy-trunk +33245 ee14e5b06ed136b12383dab61d1629ebbac7779c legacy-trunk +33246 7fe4e9f166347b641fa4ded6d3cdd4d6cd2145f8 legacy-trunk +33247 da0248fcfc5251bcd710cab1517d2078c204855b legacy-trunk +33248 9df1f3d89e600c4187e33d9514b638c11412233f legacy-trunk +33249 8b163370372ddad0e03406488d05b0c5991ba6c8 legacy-trunk +33250 7f79ead712f58d471df7a44306735097123434f8 legacy-trunk +33251 9965ebcdd172f92f4108f3530a5a590f4d8aca60 legacy-trunk +33252 b78d63dae03076e9cda7d5f7f634ad953ed0cf82 legacy-trunk +33253 8807e901c526cb44bb9a660e36978acd2c76317a legacy-trunk +33254 4a3ef38078e55157d37ed4b928085484907f16a5 legacy-trunk +33255 9a3044e5781eaac5884c6bccbe18e622a03fa936 legacy-trunk +33256 a40cf1d0a887fdfb7c6e329b3d712b7fffc4b4fe legacy-trunk +33257 eaa062fdd46ab0265616c84054d839b2a1ee8bb6 legacy-trunk +33258 8911ca88981af862e63e4aaae9cb24ca7c5b7a8e legacy-trunk +33259 b35ff9b5914931c38880d92709f4e69522fec43a legacy-trunk +33260 466b579e00882262bfb12a2ae31158a319ba4e78 legacy-trunk +33261 201ceaf959751f442a3a609b765bfd2ffc205e87 legacy-trunk +33262 2b13b58ae3a8e7637af843ccf724855092669e57 legacy-trunk +33263 ea384b1d0d13dbb677cc196f46214c01e258239e legacy-trunk +33264 7b519ea7501aabf28ab3a91e81581fe429c5195c legacy-trunk +33265 caa8c120e2cb2b296d607cfe3dbd09c993dc88bc legacy-trunk +33266 fea8dee27332ffcf52f595e1fe9d8412623b3b76 legacy-trunk +33267 8a2916c433d94fdb2c94773695d5aa49861a4118 legacy-trunk +33268 e43126c470a76ea9fbd3b92e7e8b78af631ff795 legacy-trunk +33269 2d16c3efe147e7bd44b7d78f4ffcd3f4f5a986a7 legacy-trunk +33270 60b53db14aa3cc41a2ceec847c850fbf5f8c2d47 legacy-trunk +33271 be620007ec1f52652018601bfbe2f58054156a65 legacy-trunk +33272 0169acdf2b5bc2697e17ae02d2656fcdc8563aed legacy-trunk +33273 cd3f9b170c37fcbc192a7c0e5098eeb622dea03c release22-maint +33274 cac855387b567b69670ac8dbe689763b8f630ebb legacy-trunk +33275 86342fa8920dafe30bf1d3f995bd6140791dee61 legacy-trunk +33276 0bdb4aced6e20d866cc35f87f7ccc8451521d59c legacy-trunk +33277 cd093a99238d723647d92e24c7d559f236a3b48a release22-maint +33278 4481c5bda1966ad860a169e3001ce6970099c469 legacy-trunk +33279 1ba90d51497ba685700d8f004dfef09f441db01e release22-maint +33280 badcd158d81ca23f6179a496cd1173e212edd1ce legacy-trunk +33281 58251e0a8b787bce3b34f5f5fbc09bb384df00eb legacy-trunk +33282 f8069f7edd4a29bf6c504cdfdc4a9549014fbb55 legacy-trunk +33283 77eda0fb0e149d47200e2b8481e98bb2d1a3f686 legacy-trunk +33284 ded9abcb9174aa774d2a7552d41ecd1e599a3202 legacy-trunk +33285 7d30585a593405515f514c4835e4ee868dad1900 release22-maint +33286 853e6a2b9068ee64321431711304d5ffae9d3b1a legacy-trunk +33287 a464020f15d6753887f62a74b1c099d6789840df legacy-trunk +33288 7d41785fb60c6e4827ed6ba5cfe4b5d77ce42b5c legacy-trunk +33289 ba12d2b4b31ddbb6ad492324fba185e86b1ffe8e legacy-trunk +33290 e1fa07bf8548885b0929944ee0cddd6943fd813b legacy-trunk +33291 bc1215f7dba386b5dbf4df1a2099b3a744180b3e legacy-trunk +33292 a4d6bc71f091c27c9e4ae92b71bff9cef70de38c legacy-trunk +33293 410b3c2222114c985b73aae1263bfc087dc4428a legacy-trunk +33294 f883db25d3444bdeaa33ec039dfb0e9c02b307bb legacy-trunk +33295 676aa62830d0e9952bad0ea71519930a31e78422 legacy-trunk +33296 5304bff25e1834a62769fcaf77c1bac53bfc110a legacy-trunk +33297 6aa972a21ac4c172d652d56f8ced9647cb2f9fa8 legacy-trunk +33298 1ecdb94a18522f89ef7ca101e678119e22c26d7a legacy-trunk +33299 9de82dbc3bd02b7bbe87b91f338b106f64f5da46 legacy-trunk +33300 973b1e2e27263815d28bde80ec00f8a8ba3d8568 legacy-trunk +33301 5d7e6e8282187f5d3417a3c24c1de87fc44e2358 legacy-trunk +33302 7d5a9c1a019708460c1a6efd3ee6f45ae5061b3c legacy-trunk +33303 ad2dca5cfe81a7707e8608109e8a36c3774f42d9 legacy-trunk +33304 4909aa64405fb1c206f0d74e5d22272860fd5702 legacy-trunk +33305 58f141d1ccca2995c1392218bfdd47b57769882f legacy-trunk +33306 fa97293533a91f4dc69286bda69358dfee17d319 legacy-trunk +33307 a63ea7c475cc5e2801d01f8dbe7edf89df1ebe5e legacy-trunk +33308 61f98ed4b6b58d3bfcc26f84d887bf065f135098 legacy-trunk +33309 0509a7652167f48af3fea15dd3d58fc645c41d64 legacy-trunk +33310 d668a8336774781cd7fa06fe9d92d39cccd154cc legacy-trunk +33311 462de9333251ca801404716bd64410292fd5c70c legacy-trunk +33312 8bd2580e0155521dde3476313c162998a2c5bc9b legacy-trunk +33313 3881883b940ec0e430b486342115adaf56614bb1 legacy-trunk +33314 0a3751df41952b54f90649c901686fd98ae2d9c2 legacy-trunk +33315 604542e591fa681c648879bb6c746f6fe77cd0fb legacy-trunk +33316 16eed2e98fd935468dad2ca618c9d022660a5339 legacy-trunk +33317 66b6d1ce42fe61e20394936baec9c7bf9da0d765 legacy-trunk +33318 f9b8d4bf08fb9ad8a986180e110882db4f37c7fd legacy-trunk +33319 582887ba7a68dd7cd426fcc98d87d7ba9fee8498 legacy-trunk +33320 5b105a9503348fb2edaeb5b4022d0c732c96ac50 legacy-trunk +33321 9551cdaf6e7e1a884223abd6ff357e176e011951 legacy-trunk +33322 69619542a916e343d2b370141f02702c147981a4 legacy-trunk +33323 9a4bcfddbfa12f15453bc2b75f96a5cc5dff06c1 legacy-trunk +33324 79303de9a05a6ef3c8932e6e652118dcd7fb3cc0 legacy-trunk +33325 1308d7ec99535099e3ebfff5e01d4066880a09e6 legacy-trunk +33326 cb93b862532f49031c2d2627a5508ad303e65c70 legacy-trunk +33327 3cb18212521d3489b05fc5da8410fa52706de0b0 legacy-trunk +33328 d7626b80de951694af644eeaff2138eb90ac22aa legacy-trunk +33329 710c09f4c05a23f4e324a6a7778bb24f595d3d68 legacy-trunk +33330 ba75af7ab136f31a9d8bc8dbdf6e2a4f532f07f1 legacy-trunk +33331 36a17904a3ed0060e4a1cc97fd78ae88f8d95076 legacy-trunk +33332 96ecaab4cba68138c5c578905e97561a9d1e8cc0 legacy-trunk +33333 be99f597068890cbfce27c03e92d74ce0d456040 release22-maint +33334 66dc0501047d4c26097ac66bbc895a58e04ced19 legacy-trunk +33335 4ff83c0b45e92522b18cd59fd50222157775fd88 legacy-trunk +33336 51397edd2bd4d5d36a8573259823ac5578eceb13 legacy-trunk +33337 f081147c0c8afab5484dd38ce77f558a68b25ce5 legacy-trunk +33338 2692b1c92e8d91a362c5209c2e417f9323250743 legacy-trunk +33339 052bfcbabb7b9d92f1ac96ce35f2d7ab7f64d795 legacy-trunk +33340 364027a815b8cf2531e25c291875114d9aab31bb legacy-trunk +33341 280fbe5f4e16ecc6ceb653beda55cffbbd267df6 legacy-trunk +33342 d0f15977f37f4752c5a8761c469966b3d2a9380b legacy-trunk +33343 4e1a47f5204cbe4198654e3351552c68a90ab30a legacy-trunk +33344 c149dd4cfd66df1af1a79330118dbaad98b95618 legacy-trunk +33345 920777640d2898d770d97cc7ffabf33813c8b139 legacy-trunk +33346 d3880c237627fac5c57e4d5774bad801f0b8eb9e legacy-trunk +33347 6d9ed54a482190c7352bc0d1ce196033bbf53ca8 legacy-trunk +33348 eb0b67e3c04ec567a29a7e7415714778a3d9e9ab legacy-trunk +33349 371092ce5c2bc33cd5f83097b8c94df3d27fd434 legacy-trunk +33350 c5bb31e45c66876b008456338a5b1752195e401e legacy-trunk +33351 9fe67f7f3459ab56798a5bea7e4b7a0a1c79d581 legacy-trunk +33352 7a2766c9a7b58c8768f3b49297741801a7415986 r23b2-branch +33354 f4e2e5a5ec622b117b8b6c8b16947087766a753a legacy-trunk +33355 25b9fd6d8e300b40455295ab1f6cd8490c31a5b3 r23b2-branch +33356 72dcc63f4dea6b6f0e1f555d6fb32df1ba58c497 legacy-trunk +33357 842d9e30db9c3726f08c439a0b7c466d7e1566f6 r23b2-branch +33358 ef7a1d2857714947b6543b6b255dfd7bbbc8de52 r23b2-branch +33359 f4f11ed3ae4409e76bfd6204eaff12b9e3954845 r23b2-branch +33359 dc1b1c7a6b9e64f7a211ea9e8a7da483c2bba167 r23b2-branch +33361 537c8b1aef7fac8866e6dbbbe43dcb27336f42d2 legacy-trunk +33362 c4f9ff291229bc8846b15c66426394db45d2d19c legacy-trunk +33363 d7164fbec7ce140391bba68efc0289632e0597bf legacy-trunk +33364 26ba71aa5b215556a73f56b5afc6be7ab8b1d859 legacy-trunk +33365 d0dc956467bf1b6cc6f94b0e090a6a8b1447e932 legacy-trunk +33366 3ed2c9a76965683352eeed166fe60f12f953829d legacy-trunk +33367 1d763862d1a1d702d901362d79d7f10c771ebdc9 legacy-trunk +33368 f1c279d700a6d6f0cfe76138f34606990c2ef8c4 legacy-trunk +33369 8dbc4ec5720dbd5f3d99c5a5646bacfc4b77e60f legacy-trunk +33370 6483eeaead82c0ebcfe26db56248d74037054350 legacy-trunk +33371 7b6fa7bb24f064684f380530d5446ec7bd44518a legacy-trunk +33372 8ff040e9d5669512a2c7e29775f1d97ac4b5102f release22-maint +33373 d677424c9ca7105931724a27e7773e6037109a73 legacy-trunk +33374 891e5502ec9e3b118db822ee681bd380ea2b3117 legacy-trunk +33375 1536941b547f06d3c8b27e7de871bc5f968bf5a4 legacy-trunk +33376 a4fead0e24f8aefcbb9447c1d3fe19cd79ff18dd legacy-trunk +33377 762e2a297ab97a21bd7e5b60ded73c0850c19404 legacy-trunk +33378 e38164aa5be513b7db8b18cb732efc1bb73693a3 legacy-trunk +33379 1f3547d4939fdc86e72a828e253b651a9dfa6396 release22-maint +33380 4d26547ebfc3884c634b2c97a4c57da89f587aca legacy-trunk +33381 d8d197551a1edbeefeae2d8e5a433f213848b021 ast-branch +33382 b7528dae76567b1f5f116fa69df621066a384203 ast-branch +33383 58132c813d7be945ea76d8af8a7e89218cb518f3 legacy-trunk +33384 8ed2ed7786941652e28c471585f38d8b588e3fe0 legacy-trunk +33385 292e84466e78195d4f5637c73fb2f5e374357fa7 legacy-trunk +33386 bf0634cc0f17508fe8cc7bec79dfa9893f0be3c5 legacy-trunk +33387 e9531ee5f1889f98d154228ab1be2efca8ce05aa legacy-trunk +33388 9d33dd2ccfe6a6e976ff11e4365ee51457c594ab legacy-trunk +33389 2a5e6ce3f3a157520a5c40b0506285e312b4588e legacy-trunk +33390 724f2ed79da9b3d36dbe46e8935143d8846a2137 legacy-trunk +33391 fa4cf878c538448c880669bd295fc18b998d7c8f legacy-trunk +33392 052fe96684eab6d86d962f547d89e99b31dcb24e legacy-trunk +33393 09e42f79f830bdf249d28383c4dc5abd4cc12c95 release22-maint +33394 a44d267f01629fa4c330943861f06db4203b601c legacy-trunk +33395 cdb217a8eb0445dc9837bddc29d2ac68bcf53b3e legacy-trunk +33396 3b7b4fd5f7cad56be7f0aa1ad1e529c164afa301 legacy-trunk +33397 7d0af4561eed1de06d537427e0f8d710825fcc6b legacy-trunk +33398 85e52ec8562997670c19c5a8d8e6513e115f9ac6 legacy-trunk +33399 962f443ae1d91b3844f7ac5c4f2d5fe297ad0987 legacy-trunk +33400 4c90a631d632edfe4e61001d89d2b37568487810 legacy-trunk +33401 37216e1c674724e0d05f4ad031b30e8421521cf6 legacy-trunk +33402 0e131e2946625e75cf782d0fcd63129a545aed61 release22-maint +33403 452e33a08d5570a06f8f3f8e8df94d4e66158d6b release22-maint +33404 1247f84aa6a6c03c91585b40e58a15f13672e138 legacy-trunk +33405 39be5b262792c9800dddfc1f582dc469e27cbeae release22-maint +33406 f43296cbc9850134e4abfc10e4005e766af1e7d9 legacy-trunk +33407 e850cc51c28fd88f7f5f9446a2e080a390788026 legacy-trunk +33408 65e52c2475ce513594ed9bb6cc45f72d78f4ad5a legacy-trunk +33409 a5e7336c008d38adb89e217dd7ba14230fa9444f legacy-trunk +33410 d5f27e67e1aae8cccce6191918bc6faaeae23b5d legacy-trunk +33411 3ad898b8f813ac55f1531b84f0e8471c8fa549ff legacy-trunk +33412 4c9ef2a62864d5ab891fa764f8b7e603273ee45e legacy-trunk +33413 8ca9ce36a206ffd1a843b74f8d080db484f1e305 legacy-trunk +33414 68835bf101ecb13cc9574efcd88d996e6dfc1b02 legacy-trunk +33415 b9c40fda609dbf766bcbced08cc6d394cd69910a legacy-trunk +33416 4f9293ca2de612b0351a59fa72ba87c7bb7f2d4f legacy-trunk +33417 32f96bac2113cf1d68bfa40c85103b3cdc8ba260 legacy-trunk +33418 61fb996eba6e0eb00b593ba2b30f2ee385b12f8d legacy-trunk +33419 eb828c64fcc7baeca007effe8dff9244c1668363 legacy-trunk +33420 5af89037ceba0815f709ed3a30a5771235fb1e64 legacy-trunk +33421 ac9a1f0a33dc8ee7a80c95f734163af85c725392 legacy-trunk +33422 b86446f0350ff018d87820b1102272d841286c22 legacy-trunk +33423 b5821e1764538012b5118956bc9cd74ce9fc16db legacy-trunk +33424 9a442f4a6443dd1d61452b8b92ec322fc656653a legacy-trunk +33425 b44deeec5c5ec8fc2b0723cee97c3b068a356c94 legacy-trunk +33426 075b29ad97c321d57d6357b02d71f64156924251 legacy-trunk +33427 59da5b57c61bacd229ed7c51c549b246cee7406c legacy-trunk +33428 3c1f78340b65e862f0063eb82cb7151b03d616e5 legacy-trunk +33429 b493a7e75d977fa2a2a43cb01ede356e90e75122 legacy-trunk +33430 0591fd956b9d2857bb221df40ec4af2cc30ae182 legacy-trunk +33431 4ec880c53e2a307de0c16dcb4cf5598d3689cdc9 legacy-trunk +33432 9eb6dced16e6be077658857c040b1edccdd5caca legacy-trunk +33433 78c5109ffada06319b790933722fae60e4fa540e legacy-trunk +33434 005765a56ec39b22602a63f188726480d73a9f01 legacy-trunk +33435 b84cc3c7808f82397f9a7a99c4e9935e44099ba2 release22-maint +33436 fe5eb17800f9c31b47d455be3dce622c1097446e legacy-trunk +33437 e9e5832d706ff1a09308501d2cd11033fa4edf2d legacy-trunk +33438 7a478d13f27da3369c6e9b6f66e64971c4b2a7a3 legacy-trunk +33439 7770b7881346d2e5ff27759cd016b165f9983fb3 legacy-trunk +33440 eda5d015e11c1863778f38c9d822352c3c51663c legacy-trunk +33441 28cfa546f1ec764de23106667ebc8e52ae3ade0b legacy-trunk +33442 070345ad8d71ccbaad27eab4e888b7c53452ef15 legacy-trunk +33443 32efe54d0e8ffd18f0371d4f0b1ba4d38a21f92e legacy-trunk +33444 ddc247404dab3ef0f9566f1acea3c1e6217bfdca legacy-trunk +33445 8e27e5cde59aed193d7813b3746ad77ac5f55604 release22-maint +33446 9396134684cf59c9340faee1fab2b22cf372ab36 legacy-trunk +33447 e6f9f6b5d8d7e71013bbe67e91a34525cab86fab legacy-trunk +33448 f733bac78f87e4efe8543001234b14fbc63fd791 release22-maint +33449 7056cc5c8167fc2e4a333fd8dc436fe423c0de6a legacy-trunk +33450 ce988394c75478fde1a7b7e9395b63e181663778 legacy-trunk +33451 2fcde32a8a5799e5843876b0e978d9dcaf4747ad legacy-trunk +33452 dc6a467318606f98586da97759fc199e6f68c0d6 release22-maint +33453 d7afcdc69ed491ccb575e6b61a78aa29b8134ab6 legacy-trunk +33454 c73faf5de1bd3d143bfadac526cebce90b485d7b legacy-trunk +33455 466a540cc229fab2984ca4799f7c57c8e976504d legacy-trunk +33456 4fc56cae4eb8c165dc20274731dcbb1d8e758357 legacy-trunk +33457 31d92354f72f09deb9c67f09d18166663686b9ae legacy-trunk +33458 c8fb4af96de0e5bee20d09c501880263afafadce legacy-trunk +33459 4baffe14c8874a12d93af289e029acead773888a legacy-trunk +33460 2e84fdb4fe30d7b9fd84c32c8b55430ec6b729a2 ast-branch +33461 9035fe768689d89e2a05ad077f738b47b1c1ded7 legacy-trunk +33462 defa1d825b08cd624bf0b1fd96afddce609f5423 legacy-trunk +33463 1037feacb54fc998ac8726cc18611084acc39fdf legacy-trunk +33464 c70063c3aeeb8df745fa2edf783ae4b54befd49b legacy-trunk +33465 cfaedde50bd643268ec7cf0ba0fe58c71edbf2aa legacy-trunk +33467 e6a78dd425c8e0aaf90373091655293bd29e0ed6 legacy-trunk +33468 94e5d1b8f696989777da5ee2cf7e081fba57a803 legacy-trunk +33469 d7e1a1bd4880b761a701bf56f8725a294aa42913 legacy-trunk +33470 c449663fa27de39ba76fa89785c814ec983c62c8 legacy-trunk +33471 bbc36e0e10a157929081d1394721cd7c9327e70b legacy-trunk +33472 57b93c94830a34e20abf170aad1bdf6cf680b5c1 legacy-trunk +33473 e5b99e60592615d2cd0120007c97d56fb4e29984 legacy-trunk +33474 1272f79547ba916119d86c691652562aa734e0af legacy-trunk +33475 bab89e406f30e245b9d7a29142d4f77556445db8 legacy-trunk +33476 d283b1733c0d7a577cd6f2b9b7b4cfb0f47d03ae legacy-trunk +33477 ac0fc0893aacf337539dc79764f97ff16fe6ea55 legacy-trunk +33478 0df11b2bfca518aa6a5ff9fcbedc13938957b70d legacy-trunk +33479 3280355329dd39bb4920045697552801ee1b25e7 legacy-trunk +33480 5b21c70039745e6492236cb6d00b9959025cb5b7 legacy-trunk +33481 c9c6e2c9ec975c85b48e41f0610fcf5d8353fd3e legacy-trunk +33482 2b17ad668666e5e8ca60a8321c006c4b8a52c3c8 legacy-trunk +33483 9916b59261d76335add8ae8336fc3e21150d8157 legacy-trunk +33484 e02a5d1849f8d87cbb78195ffdf78d0728729c42 legacy-trunk +33485 6443a0fee7e1014303c2b00adb2b240e32432e70 legacy-trunk +33486 3b41c633d7696b96f546a2894d15fff3eb9d0b45 legacy-trunk +33487 7be24cc6c28d7ba55c8b3cf0cc401055a2623684 legacy-trunk +33488 cb3ce7cec2612f193f6ebf8b8c043784dd6d34c4 legacy-trunk +33489 4837bf216ae5f50d700e392917a3c4d4a675f85d legacy-trunk +33490 ed43155b1d3c9079655e8adfe366589413a11357 legacy-trunk +33491 d4ffb0490ac27dd4b19e2f43e04b97ff91b3a91e legacy-trunk +33492 071501824bbd8d9307455e781cf8133473e040e4 release22-maint +33493 859cbd7c9b48140f2597d82f70076da07b42b6ba legacy-trunk +33494 1dc158652e5b373a42ffe5a66618ec807099ef4b legacy-trunk +33495 e1a6bf4565cde4e47fc6b2161fd706752fa236f0 legacy-trunk +33496 456912ada69ff91dfcd1bf9c6afb525b98505c40 legacy-trunk +33497 ba5f0b8081927b4622890f4496b6d71c89c54158 legacy-trunk +33498 37bc23c6cf6c92212e4bfa5f4d5bbb5e613af5ce release22-maint +33499 a37106ac7c8cc017e90f091b2889536c535322ed legacy-trunk +33500 e6edb040a77d4ace981162f24885ba46ee40d264 release22-maint +33501 2ec2f62087cb8ebbc224dbd7fb9c7335f86e204b legacy-trunk +33502 5e81d92bf67db006f4a6667fd36680dce7e158bd legacy-trunk +33503 09da9e56555d80cc2e58a13276056a875d2d3d19 legacy-trunk +33504 4029a726faa65503682fe8fbf2c25dfe91e1e916 legacy-trunk +33505 92f1eeaeb41d751932731d1e59ffc42ee87805dd legacy-trunk +33506 b9827c05460f38f8c19a228d6402bccf2eb498ce legacy-trunk +33507 d45d317fda351adb546e4ae71bbaaee0bb5dc7a2 legacy-trunk +33508 778b21520db8b94eaf19c27191ff1fada9fb5ded legacy-trunk +33509 8d45a4cea93437e7c54144db1ba08d4d2e1d7bf3 legacy-trunk +33510 e57a9bbeec5b277cdf1d026c14cce84198eb33c2 legacy-trunk +33511 64194e775b0bc28c2750e067aa7ef44e60e6625a legacy-trunk +33512 fe79a5ab392b85905a8384b3ad8d02bb9d16dd1f legacy-trunk +33513 2d5becd900eeb5666a2870f39d1f9714846de4a3 release22-maint +33514 06cca327bacdfab7552b10b3bd70f9e02cacc777 legacy-trunk +33515 dd8ca083ea6678802417559d17a39c2fa3a1705f legacy-trunk +33516 014cc362aa912360aba6c96967c637d7dba114b5 legacy-trunk +33517 e686765236774c53c56f8890e24d85f918523cdf legacy-trunk +33518 7fba33ff21358a305bc8fd2010a6aa2e9bccef15 release22-maint +33519 b85f8bb5c3754c68a7116e1d3c1d161aae7847db release22-maint +33520 57adf827d4c7ad64741cb41f8bc7a5e4288679a3 legacy-trunk +33521 2bb523ad9b765b896bee36fc7df9802137298e2d legacy-trunk +33522 7052c3e5af026fbfaebfc7253da89dde536176bb legacy-trunk +33523 42e8263d39ac661f755bf93833e88b8cccfdc7eb legacy-trunk +33524 45dc3343332356dd398e17e946dbae1d12402837 legacy-trunk +33525 cdab25d2f84292e8b9fdfc50a1578c1c84b94c49 legacy-trunk +33526 84835846eeab114d19d30833cf4421e128b199de legacy-trunk +33527 9c57eb5337b721804f487019985c00ec7e45622a legacy-trunk +33528 8eb1cae1a77bd957ba61ff09b4301d7431b8cca9 legacy-trunk +33529 421d805c11f33e33249b4955898a9011584a6c37 legacy-trunk +33530 bf00b56c14a982eb11d435b7983ab1ddd773179f legacy-trunk +33531 5777c834f55ce92c4b57efcb1f8b82ae73234acc release22-maint +33532 56c01c45092c09282d42e5eaa3ebc50272e68e66 legacy-trunk +33533 cd0bcaa0bd81fe4015b415b9f1838ff0c96dc576 legacy-trunk +33534 1bae78c83be94bec261b8831ae9120bf2159b08e legacy-trunk +33535 1c3b8158760c3d023e101d2c71f1fc109c975167 legacy-trunk +33536 f339f29b06cbb792525defdf9352137fab3dfd2d legacy-trunk +33537 98c59bbdd8ec47942f29ffe7caad6d7d3f968244 legacy-trunk +33538 84bccbeab5fac5812f185f3ce9f7ff7eefc74aa3 legacy-trunk +33539 b766152c79045c5c9b8539e348cad4692819c10c legacy-trunk +33540 b44eb51931d0f13445974b09c1a2b4388aa999bb release22-maint +33541 199cd78d6d78d36a6ef0fba232c7bea83f414adf legacy-trunk +33542 604d93823ec1d0128970125edd894d8813bfaf5e legacy-trunk +33543 3442e7cdace86e39c659d7ded9e4479e32892d04 legacy-trunk +33544 030227de80518aac7aea9d58542c03d5a77f1284 legacy-trunk +33545 954717e6fdb50b45db87d1ceb1e431f7c50428f8 legacy-trunk +33546 1a42b128c5814a8af389becd705df5e217d86f70 legacy-trunk +33547 fee1776e61c7056114a9703332dbde7d6a6ab55f legacy-trunk +33548 47501184b5435f7e06012b0b019767b968002f40 legacy-trunk +33549 62f3063a1a0f876bb762f7919d5141b76003ef33 legacy-trunk +33550 a0a7231c6fe0e34f4c3030b4acf1be69ff875035 legacy-trunk +33551 72cbc41ccc2f380e3652ac750f77edd161fb1124 legacy-trunk +33552 2c5194baa9944f9ac5e4b04c5d7e7f9b672dcea0 legacy-trunk +33553 ed8709b1a3efb13a7cc4f66475f8628e676c6fce legacy-trunk +33554 3f214b39b4df95497f41136160101cceba13dd4a legacy-trunk +33555 19511a490e7c05113515097d3bc1dd25240bc7aa legacy-trunk +33556 92a5fe57838038fda0e6f79ff9dc5de30fef7bcb legacy-trunk +33557 d37d1590e1a7d1a1f91d6f38cfb9da285fe05cb8 legacy-trunk +33558 88b93e07a1f80af7c258b9fa89502a07272785b6 legacy-trunk +33559 f89d545505c715454bc8595b1fdfc690f2929756 legacy-trunk +33560 b68fb4a43d0fecdb94dfea4f34fd4a840a746879 legacy-trunk +33561 22bca28236856861b0e9e2eae706cffdf82796ab legacy-trunk +33562 4e05c55514e1d63161f357e047921edee937597c legacy-trunk +33563 e2b40312757ee11ff02b29da911b02bdc0688cf6 legacy-trunk +33564 da7eae44f487b4bca295bc4d4d0b37b56b598a1c legacy-trunk +33565 9ca291865f9c1f2a027e2fd55951ec346b548c78 legacy-trunk +33566 79ec7e302d535776b69d0f506eb8692dc17b1072 legacy-trunk +33567 e9dddfd2a62f0cea25cc792e5ecdc325b6a6ddb5 legacy-trunk +33568 ac84f179bb841339c9a2f86b5c52baf66cdae08d legacy-trunk +33569 994b6be48e2879af6867fd1f2cb720d0367ff81f legacy-trunk +33570 b47a7274ce5c15838a5c6b049bb65a7765cc6b16 legacy-trunk +33571 dbae05c29e938544b9862dc7326731e28831befc legacy-trunk +33572 d1aa5751fbcfdba3c1fead90cbb1ce39c0bf2813 legacy-trunk +33573 434b6cda4fa5af7017cb6c509a59ef76ceabbb95 legacy-trunk +33574 9deac1aa421db69fa55e4387ee64ecac3f2edff6 legacy-trunk +33575 a23106dfc94d3ebf6fdc37f6cc63e285445b700d legacy-trunk +33576 9f60c3ee985a2ae10fed9cb97df5c148a07edf4f legacy-trunk +33577 80ed4d97f1baea0de9958df7a1b96f1dd88c94b8 legacy-trunk +33578 716395c19586e2a106692c259278da7d11eb146c legacy-trunk +33579 8b155e4a10a25d2b87161070a74b15e8325cbcab legacy-trunk +33580 1e2e1c79316e12fbd5fac40bf1a37cf16636b57b legacy-trunk +33581 5a944ac8525c1f61d5daa3feecc905091bdb7e8f legacy-trunk +33582 451b7e8393fc41eb143fea2349f1d384225c6593 legacy-trunk +33583 d59e58bac3923750b143d92457a990c91b019b4a legacy-trunk +33584 0e2215b8226d2ae3aba63f07a862d11dbb98d9d5 legacy-trunk +33585 4e613ddf2a1bd1656c4ef74ddbb2a10cd2353061 legacy-trunk +33586 416d9458ee97cb3f2e3a1c304363854c39589b8a legacy-trunk +33587 52760751c61ee72ce90a1fe38c89b11b600bf31b legacy-trunk +33588 f773b568b2e73d829ea192c210355927b262f6b6 legacy-trunk +33589 fcf6680b6a6fb771c8b598acac68567199f3cc99 legacy-trunk +33590 df9ea749409a3ee453c4f713450d3734533d2511 legacy-trunk +33591 564a49eea414e1009316946aefc292414dda0f68 legacy-trunk +33592 ec9f186154856a90af59044fbeca290708dc1397 legacy-trunk +33593 7b16cf70ebd89e424d5a242cbe9e8c352f282aaf legacy-trunk +33594 0b3422b621191196c33e76a76bdc29b98f49a0c2 legacy-trunk +33595 2a40ca06a22c88d92f7715bdc082f9af78423080 legacy-trunk +33596 96bab7c82e2cfc96c100690390442b8a09e6628a legacy-trunk +33597 c86b1354ac6f6f74da300ac8d8c53cf04e68dce4 legacy-trunk +33598 1bc2559229db1dff379e6866020c1e6853ffbde0 legacy-trunk +33599 7fd20ae44142f0c9df05af032d7df049ce75bb0c legacy-trunk +33600 8dec0fb142854f36b5d22cec260cf173433ba836 legacy-trunk +33601 a73c28deef6dffe73493605faf0b575b2e371e2f legacy-trunk +33602 86c476a425a7dc52736b288b63e986fac8411722 legacy-trunk +33603 08d2636b8e58443d1750f678a8d1eb688d48a546 legacy-trunk +33604 25800a724011fb2544563a356a6e81acc8e6b240 legacy-trunk +33605 cfad54283e0004764124452d018412076d695183 legacy-trunk +33606 722d7c7a77e2b47f3aa8959d6ca82786b29f56f1 legacy-trunk +33607 60e3d299fc8678f44261680065ef2b9eb915d5ca legacy-trunk +33608 bb8cc72915f56892c3b53133daf07af1915c6b29 legacy-trunk +33609 ee7e223dbcacf069cb77e50a56d8391adbf76719 legacy-trunk +33610 b84645c3195e484d6726ca5b9759145a647d1756 legacy-trunk +33611 4d4417df63f4e808bf320953a8d4f35f768601ad legacy-trunk +33612 03153fd2d3f214c1a7a02c207914120bce564fea release22-maint +33613 628dcf90bf9e2e201d22c36dabf856a493ab4973 legacy-trunk +33614 407c0dec2f4adc92c61ea8244075a8cb1e607160 legacy-trunk +33615 29a63c5cfbafb94415b2e8af84d01499ae497d68 legacy-trunk +33616 da0c90c6afd01fcb6ff8b73afda58db894ef12e1 legacy-trunk +33617 9013d3c1d655064c800a796357fdec70b2d36500 legacy-trunk +33617 d054c29647f90bccb8345bd779bca1eecf2dd7f2 legacy-trunk +33620 8a293449829d7bad082be8b05bc6d67fd41daa47 legacy-trunk +33621 da3592962a7af079979bb40b29ab6b5d78d9e374 legacy-trunk +33622 108aa964857321058a42ff66228139b9db82f65f legacy-trunk +33623 9a6f5b37e81d2d9a8251d3b83b2d207413ea045a legacy-trunk +33624 ce8b138f4473adadd0b6a164d52a40306a2e5137 r23c1-branch +33625 337d44010907378e4fdb78a4b656199fd66194f6 r23c1-branch +33626 ad09687aaaa0a7552685f274fc603da0dbfe7a24 legacy-trunk +33627 2b8a564e1fd3d026a1246860986322bbbe10e1b8 legacy-trunk +33628 a9c899739f4822bb6d8b9a9b268dc364ae539a64 legacy-trunk +33629 1cbc6b7836dcb8a6f19e22bcc5911a45877414d5 legacy-trunk +33630 3225f1d428835a2755a654e8706f51bfda016d4d r23c1-branch +33631 2c483f7bea4bcf8671547234281f638fbadd5100 legacy-trunk +33632 baf2241070bfd717a236c331f7e42cd083f5c487 legacy-trunk +33633 09c459851264146eb327c86ba74dc5dcd49992d2 legacy-trunk +33634 5faee7cdc5aab24766b97cbeb3a172dad0a1d907 legacy-trunk +33635 cea7f8af8e0bb82e4d9a94be342ca3a04936e546 legacy-trunk +33636 4bfcfed64ecb968c98285dbaca8630b39b28770e legacy-trunk +33637 4c143ceef419c672d0c0268c03d37b263f71dd26 legacy-trunk +33638 a550af711aba4a22b46af3178fbb43bafcfe9106 legacy-trunk +33639 950b2500a1422214acd3c05500506af916b79647 legacy-trunk +33640 668dd336e306f15bb8e0a8abcce2f200b58f0aa6 legacy-trunk +33641 c42a7317c887abb7b9f386012321170e33d8e9d4 legacy-trunk +33642 317f1ee24f1849b78e70c7445db9b9ad7eb49ab0 legacy-trunk +33643 4cf2bfffa56410f8e82101202cbe9c2f6354dea4 legacy-trunk +33644 fe499bc7381fb903bfdfeee32ad64dd597019957 legacy-trunk +33645 a4abe17a5feb91f46224e8a968ad50a3747bdda8 legacy-trunk +33646 13c75fa780c8c2222225a50d22274bffaeb0349b legacy-trunk +33647 303f5fda1a2840ba02f89972dabe2ce2d27dade8 indexing-cleanup-branch +33648 a77aaab0146de696e6d66e993b5c64ec59a5ddf4 indexing-cleanup-branch +33649 5addcca3f4333482fae344ff48add5fabdd27bf9 legacy-trunk +33650 e339ad250af0f41fc34b8a64cd9b8356e1018a00 legacy-trunk +33651 82ee1fae38194b810990723707bbef51ac99f36e legacy-trunk +33652 a408ac5527c34578728f5f313080c97e3321d2c8 legacy-trunk +33653 b9d0a0ee2206a72a9a957703d6dfd697029c7f88 legacy-trunk +33654 d37f13199d95297b411146d36772a29ab9145aab legacy-trunk +33655 6149f0a0b8f584222897b61d35b9d298bc07d19f ast-branch +33656 21edce091069f9acd2dca2a89193b64b07afc48c legacy-trunk +33657 2c1e73b2fca1107b71741160f9ed152a9a4e3136 legacy-trunk +33658 118809b1ef206129b620dea2a36c77c1b26e6344 legacy-trunk +33659 27395c844e23b7ad40aac5fd85b4a656ebffbdfb legacy-trunk +33660 6549d2e408f0c63bfc66e84096b020a58214930d legacy-trunk +33661 5ad439632de54ac19e3bbf0bbf737d31a06cf3c2 legacy-trunk +33662 17ce12369477a7c86dc867fbc0f20b7964492b01 legacy-trunk +33663 21187097854c90e522b014e8496520b9ef813480 legacy-trunk +33664 1bd6e62fb06f77937cdaf74d6b211c19d8bebfc0 legacy-trunk +33665 7ba42c96294cc693c084e99633b4baa1c7febab4 release22-maint +33666 f2708ef60169b192d9e066d3cf6a264fe4d002ef legacy-trunk +33667 2da05b5b5c65055a36716c3c71a6258f8c7d45e0 legacy-trunk +33668 29f07adc3019d075c9b32a853db146d14c6eb4b1 legacy-trunk +33669 8f306d3d6d56ed8de37426d4d1ab1d438832c566 release22-maint +33670 0009a03832225a675c9053907a0133829424fee5 release22-maint +33671 b5949591d9d574e045e21d0581c22cdaa0084707 release22-maint +33672 86e4725a9dbd4b954df8d429ef720a9c271c5f09 indexing-cleanup-branch +33673 b33c60fcce74f9df0d1f6015b4cdd5935e12833c legacy-trunk +33674 35ccfc140cac0c2f3cad9eb6813aa4769abc8c1c legacy-trunk +33675 730abfcf2610e9c71cb0055b29be6341c2f551b2 legacy-trunk +33676 673bced99180fd5ac75254e9a269e0b26cdf8755 legacy-trunk +33677 aa44e0688896a045385298a3fa580c7f9d1e8dd1 legacy-trunk +33678 02e5b4b67a66303c49a97d96af0a8c696bd3bfa5 legacy-trunk +33679 095469c7abe72702002cbc3ebbfa4792e75c927c legacy-trunk +33679 fce5c9e9abc722394cb2e909b7e2a39080d4448e legacy-trunk +33681 e1bb1262f0bc14623d646b00cb5475bd01988100 indexing-cleanup-branch +33682 83e06fe124a193a534e448899b5b59755504e4dd legacy-trunk +33683 53b760b027b7712b067d24ebc03d517edf810cae ast-branch +33684 96fa8f0b9eeba7fcd2af051c94bf7a24e885dcb0 ast-branch +33685 cfbb7b82692d70f0971e37df57507e3005273a89 ast-branch +33686 f82eb160440bda49ec22894ff7c59296e81ec8e0 legacy-trunk +33687 52dd548d3be9a97ad779bb1651cba4c4166642d6 legacy-trunk +33688 3adda81a0e0bd0524a7cbb1a4939949b78df943f legacy-trunk +33689 35dea10dcdc45e85c1ae49722f7b25545a017c00 legacy-trunk +33690 1fbaa05b35c1bf0ec15b59e1164a1f4cbfcd4f60 release22-maint +33691 8cd94d117f8778927c44b29aefa0fe1db4482c9a legacy-trunk +33692 37ccf1bc54e044fbdc6b2445be59901bb8d4a860 legacy-trunk +33693 15fc83c505e31497026b0a9f576f078af49cde87 legacy-trunk +33694 cfa9f049c204c68aa2f2224dc4899099e731904b legacy-trunk +33695 4b5702306c581b3ef6bcdbdceea5e89ff7bdaf42 legacy-trunk +33696 efa1bb656b2b6e519a723bc562845d1019a4c938 legacy-trunk +33697 a13152b25fe8df93d0a161fc53de6343d9cd6edc legacy-trunk +33698 de7d9a2b5fac30832406fecd80cf269a37e3858c legacy-trunk +33699 ee8bacc6f068d6174b3bc3068324da09eb3253e9 legacy-trunk +33700 29094016397d6260d4ef94d611d8f78adafe0c28 legacy-trunk +33701 674cf5a24147ebb6833ca275d3339f63d0ef1b37 legacy-trunk +33702 12a7f21564815417cd8c64b0e80a41ac6dc40d3f release22-maint +33703 74a5ce49a92fc832ad4405808342c40f97d6df0f release22-maint +33704 0d79dc854ac4690ed415c80c582a17aa4e359802 legacy-trunk +33705 a62153d9c8d6517251dda7aa2fb9a0576976b432 release23-branch +33707 21b81399b628420a68c86b98025bcbe67c57510f release23-branch +33708 a5203614caa96d6b9cc2e4e31f1e95020dd754d2 release23-branch +33708 18edc7d57dffb56be8374f35e47f39329f5e9d31 release23-branch +33710 ecd8573204cd24b1ff1f84b77da8210b85f45816 release23-branch +33711 43b0a404d4a01cc1798e413558559fee80aa2fe1 release23-branch +33712 c3e69f376f29b191143414e2ed029904b379dec6 legacy-trunk +33713 3fe82d57d0d17f1d8d395eb52b004381a33956ff legacy-trunk +33714 1d63e153989f03546ae8b2ad0d70b2d3b7bb3247 legacy-trunk +33715 b7e2d7380cb2097c71a4ae2c08fe6c761ea632cd legacy-trunk +33716 702aa6eb11f9b3d0d37e4ef4b8e12a337837e872 legacy-trunk +33719 b82ea0b07b0ab8b5b4372d47d9238ee1ff8e56c2 release23-branch +33720 c340b27d739b112fa560789ec551d4ad78213ebc release23-branch +33721 02529fb18815a088cb91596b9cab1162becd8bed release23-branch +33722 e59a36a1805ed6cbea408c9a69fdc5fda66d43f6 legacy-trunk +33723 e4ee986af1a07f7d48e25f0b53be2329572c4e67 legacy-trunk +33724 e148296d8a9388efed90793295f175261be10841 release23-branch +33725 18731d24e3d103771b2b5dce0f20820e1cd5f88a legacy-trunk +33726 2f03f83984b071c90013c8548ebf7207f9d88e26 legacy-trunk +33727 6784a241633150a98590d91785a7c12c1d871d85 legacy-trunk +33728 e621a97bfa16b1ddf5f0f30a23fc49fdf5fe75f9 legacy-trunk +33729 e213cfe17a624d3a6081b8c27f323e2d8b7cc12d legacy-trunk +33730 d72547c915d5a64ef5cb4d08cc660babee0c3cc0 legacy-trunk +33731 677038873a22b94ded48d36167dee5ea7ae6d8e3 legacy-trunk +33732 08f38dafc98a7064c4b6e70c53b7ff2ba7092cc7 release23-branch +33733 8d8cdee344ad566786d314d7400f239c6c2f9f5e release23-branch +33734 9e0d39a2d37e49dec3a1b62621e42727dd40817e release23-branch +33735 0406875ca7fd3b613ce61613f51ae3f32cf677ba release23-branch +33736 6f6de761ef9b7adb8cb51c36503f2363362d82ee release23-branch +33737 24e73798ed04e4ed7af1e056e3269bd99d2af23b release23-branch +33738 7058dcf733d466c002abad24a14f0d1aa89015da legacy-trunk +33739 43c9771e0be10aa50d8662e721caa78d21dec832 legacy-trunk +33740 ce185034b3807dd835ffd9d0ada08094e6864681 legacy-trunk +33741 69c8e39f6ee6c56a26ecc2a53deb6e6099d8fb52 legacy-trunk +33742 0504ba8efbb6cdd11f1a47caf0b424fca433295c legacy-trunk +33743 0c621801409af2862bbad1b19aa7bc839d9e0231 legacy-trunk +33744 d8c8fe0c73edeed83d36dc6c8ba254b3c102bbd9 legacy-trunk +33745 643ffb7db18fd05f9fe278b712198221505c8abf legacy-trunk +33746 d09944cee3a4fe4ed141dec431cf61530d4c1420 legacy-trunk +33747 526c12ab36af3982f704bf252e7d8a6462b4e5ab release23-branch +33749 d738a07a293a35f4033bc79dc49b9e380cba765d release23-maint +33750 c9a00590b901dddbe66ac9176b8522b34f7fcd73 release23-maint +33751 8014fb80d144539b74df328dcea1d16d1835bf23 release23-maint +33752 db9d630237a65765823c75ee9f63a8eb58e9ef1f release23-maint +33753 d8e52bce2cf903b47acac440401b710e95c446ab legacy-trunk +33754 5a2a91b97810a1cb343c9e4ced287a9c40b1d828 legacy-trunk +33755 2cfaca62a99073dac04d0af1dce8d5648323b947 legacy-trunk +33756 ae8485867d30711ab98a7d4700d5f5ab337fdd82 legacy-trunk +33757 494b07a5e2e57cbc23883d55af8d9d13c8adc690 legacy-trunk +33758 7801b13c52c94612c7426290da6cbbea17b4bd96 legacy-trunk +33759 0cfc6cabce884a530cceb58db87a1c332d1bebe8 legacy-trunk +33760 a0300ea638ddb4130190967f2180fa16e75a2af6 release23-maint +33761 b24e9d71fa3cdbc7c910ee78067a1406d6ad2f0c legacy-trunk +33762 1d5be6981d57edd872c4c533e496a19f80d5e4b4 release23-maint +33763 e477b599924da83f557380a6450019850997983a legacy-trunk +33764 aab1089f0f85deebbd545f9cc23f4f4a20298c66 release23-maint +33765 4adfd76466bc6c06e484b52fe4a2386bdb8276ed release23-maint +33766 200165d11a94622acebb021f963584a816943446 legacy-trunk +33767 f2619bd683db3db1bb78b0f055616b7ff7ee14ee release23-maint +33768 354c7ee438bf4ea0174f93a7296c7eda0e017672 legacy-trunk +33769 7aea1b5cdebba2f76ffc8b38f87d1160d775b0ad release23-maint +33770 589d5545af4116302644071a87d1403c18bb7d78 legacy-trunk +33771 0e64240800dd13c71d9d47ac5a5034d1331b8d56 release22-maint +33772 98e6ac1d837971963f4518e2a389bf719a8b3f8b legacy-trunk +33773 ae0242e3459eeaa9523f3e7467391bd08d418c75 legacy-trunk +33774 9bd5c052b308b78a72ea2976aed07cfbe73a437c legacy-trunk +33775 171814f5dcc63210b621a43b4a7f95d3d911435d legacy-trunk +33776 ab10c0c25c0304ad4a39810330da97636d43b319 legacy-trunk +33777 061d86fc11bb3834db597e72775344badca7a279 legacy-trunk +33778 735ec08694923feb6061cafa0e10e7783e5a5dae legacy-trunk +33779 7bd40205094cc4823baf3b9544ab840306984830 release23-maint +33780 36c277381d78b3bb637705df51031ab37febddd3 release23-maint +33781 8cc80002fb903708ce41540c8a8f8289149c91be legacy-trunk +33782 2b14c9827d9cd73ba677e357da17efd0d3309573 release23-maint +33783 5b1ddc4b49b9bb1f962ac33efe73ac15026add55 release23-maint +33784 8b7e37b5f1ee451d24918a93a5ef0f6fdcc4004b release23-maint +33785 762e1b2088e5188dfee63069949bb7983aeb21c5 release23-maint +33786 59ff77b0ac724ab12a56e656c8867037bd34de9c release23-maint +33787 8f93b09b2bb5f34c24510ccfced79cf67d858264 release23-maint +33788 7f5489184d94330abeb4f3606377cef653b58be3 legacy-trunk +33789 6216e74b88efbe36859d99a3a642f94cd466ca85 release23-maint +33790 1c45194d124d89524f4b6cd8900a9cc40dc08163 legacy-trunk +33791 b076f69c5dac312c86c8ba5bbeec02117b859757 release23-branch +33792 d05d0ed465d80165dead18ff9f918ec2c5908ce8 legacy-trunk +33793 dbde3dd3106852efd21f38b7289b4338e314fc74 release23-maint +33794 8ebb9b3576d13c9d03474d251a82e11eaa89b496 release23-branch +33795 53c2ff1d81d1698ad09b3b5f34a4c47ac846e892 release23-maint +33796 bfcc98de7fcc25048b899d58c348a050b51bf860 release23-maint +33797 40f5f0b44cc447f78e602301ea7ca2340374e478 release23-maint +33798 ba48e571a4d5ce9f6341f5c79fbd8411d706a347 legacy-trunk +33799 5c8b2a6666c36fc632d2ffe0e45d0aced8cd6ffb legacy-trunk +33800 afde402e3a55a99b257c9d2bfc68bf9ca09c7cb5 release23-maint +33801 d4cce553478a810d04a92352ced8dafe3c602c06 legacy-trunk +33802 0ac4396b1894a0e29d8c0b1cd590a4d1e6cefbc4 legacy-trunk +33803 74ef8b8e006174a53c0b5a645c89130d96c1e2b2 release23-maint +33804 e3c9b48de60ae274068b6848d023b6dfd140438e legacy-trunk +33805 06016d5d81d7d4e1d480a3800a57878d493c0092 legacy-trunk +33806 1c4d19b9baac653ff0c3ab9d75b859802115d6cc release23-maint +33807 d6379620fb08d14a706d3756e7236acaccbffb21 legacy-trunk +33808 3dc8f2b4248c2b83ed3a44cfb9dbf56af9b2977a release23-maint +33809 09a2cdeab8c0ae83e29a0676f7cb3159560063ed legacy-trunk +33810 530e23bf9e193eeacf88fdccc8eec65401740763 legacy-trunk +33811 900327095b051403fa6a884024ab71e79815a7b5 release23-maint +33812 528437a3f5f7a75c191088a797bca2bef40f3033 legacy-trunk +33813 665f8a6f437db46bce837f741dc6928000db891b release23-maint +33814 4353f04422e321fd124b1ec02c2c6cd877ca445b legacy-trunk +33815 265079883668738f6df4c675f6edb5b95f4947b6 legacy-trunk +33816 616a8c0cc91706abe041577ca9567b274db5f52b release23-maint +33817 a88e6dfbfd6d34f107bd360fb5fcee7ebe645f54 legacy-trunk +33818 fb2abca2d2d559c61d6d882bce17aeb5d4338403 release23-maint +33819 92d68083a0fd67bfabefce744a994755f6b9641b legacy-trunk +33819 8e63c5a33f470f7c363e38a7c162d249edcb2bb6 release23-maint +33820 461030e6bd676c5b7d997bc716b44a829fd9b391 release23-maint +33821 67a91f750c6312cc4f78933aa235b0304efbb7c5 release23-maint +33822 9f6e2dee1892f73b9206eaa2c6c5651a6cc29d23 legacy-trunk +33823 7b906571dc68b4f03a06411a4249932949387c6d release23-maint +33824 fe057bea885669cd5d0ec9a051cbf0b7a5417ad3 release23-maint +33825 40aa4a10f49b6a5bff203cb41ec149895e61e722 legacy-trunk +33826 3779eb483e6bd5da43f213c9a52e34321b5e7747 legacy-trunk +33827 720f44c6d11c2d14f05dcea54eec67d452219ea1 release23-maint +33828 19c0f817cb47575c065e4745536e281bf8c9261c legacy-trunk +33829 998b06730c9fb0e59cd1852a4b92af37d617e9e4 release23-maint +33830 210676ec9d5f17ee64ff3ad73888e65ffa66c055 legacy-trunk +33831 1598fbe693f99c85265320e12283a8db3cedfe24 release23-maint +33832 29032f37dc8f827f3595e182ec6668a89a73f443 legacy-trunk +33833 4b46d5449d4995722bc47743a49ee486eee56dc3 legacy-trunk +33834 6842ceb39a14416d4ec770d59049253acac828de legacy-trunk +33835 2c6f92cddbad9a9a2fa458fb56ffb521c898377f legacy-trunk +33836 53f9069fc650eeacfbd8ff5ee65fff9a3abdb2e2 legacy-trunk +33837 b8623b2c9bce6ab96f32d90f6c47ee19059b7828 legacy-trunk +33838 82a1d3f210adf08a0b6610fb76de73ec9b888b14 legacy-trunk +33839 c33d3689ed5b6ca0b039205906fdf7c3df926a02 legacy-trunk +33840 de28d992885556dae814ef93d6fa6123554c7db3 legacy-trunk +33841 5d0c87b9570d3acb7b19b3e05ba1b6986ca45e29 release23-maint +33842 523c3d61dbdde734a0f56dbdb94a08032b230017 legacy-trunk +33842 304b5a365576114218b8bc3daff86d13a24906e3 release23-maint +33843 18b67ae9cf4582436763a58d8da5904e6ec35fd2 legacy-trunk +33844 df654861ccf6a109f41352c3604e6f4f895c7e02 legacy-trunk +33845 f746d5690ad6d839df5b4a77361ed2a1fba801a8 legacy-trunk +33846 aa5cb8e3b9ea5b7d4d01e5f18d13a9ffc0db0ea1 release23-maint +33847 f3654c5ada9448ca15145913b5acbda11f259b2c legacy-trunk +33848 46bcab2b74e924849be6c1e6d29e3088cc646443 legacy-trunk +33849 4505a0b9724cf17d05487fbec7161ab15ccdf7c4 release23-branch +33850 05673b16bdb8c1e9a929239c3bf05f7be502d79f legacy-trunk +33851 f4b4bf7e87d7e0be5e4fe4aebfda0fb386f6f268 release23-maint +33852 d9f027dc676dd9cd551c6a0aa418fe63481f7342 legacy-trunk +33853 7cc0a33946a30416f48e58292cee6469504d2f2f legacy-trunk +33854 f0dfbc14148336b8fc6c087d74afdedeb28f0256 release23-maint +33855 590d8ccabac7bd0c0525d5858a7caa673d1143d2 legacy-trunk +33856 6d74f006f84ace84c69a901836dfc5f856b6e722 release23-maint +33857 59bad7efff021694702c84b324b83199c8c7dc75 legacy-trunk +33858 5686ca297f55f4f9279cc7d4603be3f8ad6f4a4b release23-maint +33859 9f53e53f388023a10438d129ed2a261d39c1f534 legacy-trunk +33860 0813b33610cc35c39c8513ff7ac819122b4ab39a legacy-trunk +33861 e373630bfeab7640ebf15835199b56ee1493c161 release23-maint +33862 a49c1b76106ce4ac8af54cd62e0ea3ebdad3221b legacy-trunk +33863 e3281b0df6a41c5965a8b4175f0457f18ed4aea4 legacy-trunk +33864 b698209b982788354d30d4a00f27c72c9e2d90e6 legacy-trunk +33865 9b8916631eb69ec32e5c9c420552b6ef9a9d6dea release23-maint +33866 4460979deebf5ec6553262d72beaf7868157462b legacy-trunk +33867 941d49a65f06f121fc6a3262f6b6eb6f78b28c36 legacy-trunk +33868 3329b058db2012ec6dc97b0d5d5a222a88d79be6 legacy-trunk +33869 54617ed2d83087022966ff413c17c4f2d86aca6b release23-maint +33870 443533d08783dc78d6f7487645e1201992db9f17 legacy-trunk +33871 29b1d0763790af70c6a4578d21f2a0d49d25e7ae release23-maint +33872 7cb4ad5932e626dfe5d78ca44b8d364589f5596a legacy-trunk +33873 4708fa086121f23d274788be8e99bde6e8ee2f0e release23-maint +33874 ef21681a9c7fb609928783ee8995867781b40031 release23-maint +33875 dc4249dd9e353a8225def12adc711240ddf3e402 legacy-trunk +33876 8e2ef27f688b5396062f69020011376896ebe4de release21-maint +33877 2d274da09274769f0b12d3d1421ab72617dad0f6 legacy-trunk +33878 942ceebe9671af86543c8b57ca94601ce2ae3d3b release23-maint +33879 3dda53c312a5aab23cd094e635c32b59154e9d93 legacy-trunk +33880 a332dcc7902b960aa026a9bc3827c3c04a256b68 legacy-trunk +33881 9414886f5c7adc6199499e7c8b57d7a80ce8da11 legacy-trunk +33882 2a941ff0a13665e02fea168741400ab15bffc54c legacy-trunk +33883 b55d4a3f41e86e39875044b4a94b5b1d65be5d4b release23-maint +33884 3db50d31340d93c18b3556244d33729201d59173 legacy-trunk +33885 4ff38572d036e4fa3fa2f4c7aa59b56808aed6c0 legacy-trunk +33886 71dfd1e1f2eccd218cb8562181d8966a420479ff release23-maint +33887 60aae8a1e23726a453a4ef81af8522539433744d release23-maint +33888 94665291ab1bd331dd273dd0f45a1b3d8e4b085b legacy-trunk +33889 ccb40da8c412c601873588602807f75597ed4981 release23-maint +33890 7bc772527e44db8c903dabcf818398e737b529e4 legacy-trunk +33891 af5535b0e009e66830b00a9f8d348b62835765ae release23-maint +33892 3ea52bc74d171f3be8ce8d9c0a32941d5ed1b1ee legacy-trunk +33893 d279c40bd7b36bce3108e2a77a67b30f816a157d legacy-trunk +33894 a55feea3f921db5a10c04c8ae13d7eb85f20034e legacy-trunk +33895 fd824d574a8fdd1005478a8124cc60d3f2e38395 legacy-trunk +33896 131c54f202fd8446243b57d2f35fad378f7a7b57 legacy-trunk +33897 0fa99d31fb48120e461caa4ce4e1c5558f01745f legacy-trunk +33898 c10a1cdce62b51b79a4f4f9384b6ef101793dbd2 legacy-trunk +33899 9a5d6eb81cfaaf376bd04539dc5d9f24cb55afdc release23-maint +33900 3b9074ad723e4bf2a5697cf7f2532a11c2f0949a release23-maint +33901 39e928d00b64398c77b48879896d0d8520a5556d release22-maint +33902 d78779187c7df0493738dabd3e02600c1b354253 release23-maint +33902 ef1f2973fad80908243313bd56ffe9f5f07ae8a0 release22-maint +33903 5c54a78f1d5152b15dc10a743f7de79fce4a4b27 release22-maint +33904 bc69e0dfd2a034497b56ecd03907fcb0ff8d5b73 legacy-trunk +33905 669568899309fdb88c8845e6d31cb2ec0d997f15 legacy-trunk +33906 251fa07fc5d1f5f2c000f72a31ef463f7ae93171 release23-maint +33907 4c0af22a8f3d126db7a8ed47e2659f98852ea97f legacy-trunk +33908 41b6a5367ee5646b8ed6ab56505656c6467f1966 legacy-trunk +33909 dc01ce2f85582dc24549e1c5908fe31622fd6e9c release23-maint +33910 756b65c79f400245c1db3d9a2a19879d5846c42e release23-maint +33911 0aac07663448e300d5b08382af96e32856bcaab3 legacy-trunk +33912 f8ebade2e724dc61fc2b6f73b78787081f73c6f9 release23-maint +33913 d2e4c94efbaab310d0c4877eda95957568f75ca7 legacy-trunk +33914 ac86b0717ad19463de379478df2053317813f4fe legacy-trunk +33915 0fe60fa617d8dc7041d75fa9982ee1a7efd48bc8 release23-maint +33916 2db8c63e69cd64f2b9a2d0d79539c95a16cad497 legacy-trunk +33917 6c1e47d54a7a301d83e3b7ce89e52913b3ae5143 legacy-trunk +33918 a380610eeb5ac795da399e29a9604a67ab40f642 release23-maint +33919 d15d44d9d6f5cdd5d8a1bf87a181639c01bb0c8b release23-maint +33920 5e93a4f6d9a99fa23a2593466b490ca02b3325e4 legacy-trunk +33921 b519035006c71980c05365313ff9739bfc557817 ast-branch +33922 e4ff0db3b0886d03df47db81b65be6f31043c53a ast-branch +33923 ac0db034dd14bd7f0d450473561463cb9c12edc2 legacy-trunk +33924 8481c9baf785d5d2d702295ef1f3ce07c922b8c1 release23-maint +33925 7ab1a41f16dab1530036c1267a64e7f10fcc02e0 legacy-trunk +33926 21d3b06df793cb1ac68591c6b65fb6db056a8dc2 release23-maint +33927 8287f522bea1784cdd531a6f3f25b1f5b7b61865 legacy-trunk +33928 df8cbde5c588298b5fce9b0573f0809ed932e49d release23-maint +33929 056f16a7abb03496995672223b6ae34ba67cb0c5 release22-maint +33930 4000cc6da9252207ab89fdb9f8584f2fc5d35307 release23-maint +33931 a5f606f9ca0571a24ee3f081ddec90364b25c9f1 legacy-trunk +33932 c06dffb6a98229141f3420de41d320bf41d458ab legacy-trunk +33933 e8173542393fc4735e161eff27a09594bb7a41af release23-maint +33934 24341cb21fd5cb18f3f3e7cde5a3af03f022e6e6 legacy-trunk +33935 806179400f354edbc1ec333f9ceb68c8c41409de legacy-trunk +33936 c30ed13d358209a3b84b210822f7a71fbb4faa36 legacy-trunk +33937 a0f53a069470353aa58241cce49d110fb4d269fc legacy-trunk +33938 109d63f7037c93a3fdd11ababb0d7992d41c9aeb release23-maint +33939 496968f3649e8c138448bf13117daa975397dc71 legacy-trunk +33940 dd451a63f89e59a16187390bb73ca4ed7e5a229c legacy-trunk +33941 b940ab9a2abf44f3e998454ce374fa0272c55b23 release23-branch +33942 dfbd28112e097cda65bb220070ce246b30c1882f legacy-trunk +33943 d8b7687804b237d86630a147a8bcc3ad3d17ce8f release23-branch +33944 c47f5ac8b06dd3ddea6de5731108075bd97efe62 legacy-trunk +33945 3d4a5503e46d912c3873a0299136712bc05a361d legacy-trunk +33946 7f34652d71612aecead8365c287268f2fec29f95 legacy-trunk +33947 c45358935ed3fff8fa09e17aea73434b182e1ceb legacy-trunk +33948 4214714abacbf2394f6bdf7c1af28f7cc59005e2 release23-maint +33949 a570bb9f133f709284fcf5ac9e3cd6e481004f98 legacy-trunk +33950 e83575bb29da90685f088c1c672cb7fc2c660fe1 release23-maint +33951 f1ea311127cf159790b989be058e706a517a89e0 legacy-trunk +33952 3fb3747ce304c19173e001502369f49952fd6cb5 release23-maint +33953 7f660fa288aabfe99314a80722ad6a67b79d6df8 release23-maint +33954 53a322c6de522a909049c44b00b012ac0523c071 legacy-trunk +33955 9e3d51bec53a27e96ad9fabeddac818479dcfa5f legacy-trunk +33956 4976594505348ea4964bcccc4536599093ab913c release23-maint +33957 97f3d66558fb8ea714a7bc17a21d877fc3b032df release23-maint +33958 95695cc45cdd2ead5dcc622582b02e9de20da1b3 legacy-trunk +33959 9951b6e9a3ea57be4b83f533cb982e16a7cfb1fb legacy-trunk +33960 bf2aa7de437d346ae98609b701604937ac3d22f0 release23-maint +33961 830c0cd8fdb220221fdea0d92f420c7f70c71991 legacy-trunk +33962 0dfafaa10401c15c94b26563a1b72d724b30a3b1 release23-maint +33963 66654ac69622f1b198daaf42fc7f6814b523d040 legacy-trunk +33964 3a50f8369ad564e368c2e7182c83b1225f412c75 release23-maint +33965 718e1488871d403151c0540d2bc79ce6d311fca5 legacy-trunk +33966 f9624f94061a7e50e6e2ca7ad53488f0bba05883 release23-maint +33967 da1b191b0a6a2d95093a4e22e262a370290090f1 legacy-trunk +33968 a55eb54a56d0bc57cdfe3f678b7557a9789b7024 release23-maint +33969 37a4502f161074f6d6f5ebe1f8b9bf45d6c4e7d1 legacy-trunk +33970 9dc5e71596f7fc132026e0b91c9aa8df16ef2307 release23-maint +33971 ebb83f266fa4f2d48c7622db3b27f69a81036502 legacy-trunk +33972 270052f6f0e1ee0f0e71fd9f64d4c131d1294472 release23-maint +33973 7b577377d546fe6773e24f9624bb7810b625153b legacy-trunk +33974 948fd34eb05096c038201f3e417b268dba940be4 release23-maint +33975 114d693a5b893ef3589db3a406fc591324905302 release23-maint +33976 51744279458fb0049a452e9f6b051e57c14f4e2d legacy-trunk +33977 57951ba5e9b10799dd049138cad9bc2b2e22261d legacy-trunk +33977 0c13ba5359182f2a469ab1e010fb8f866edbbb8b release23-maint +33978 436d5772b87fff9e823d8801318ef48490ef898b legacy-trunk +33979 0f26af7c3b52b1ec961f8bccffb5efdb34dd2feb legacy-trunk +33979 5c0a704e1be4d7edd23e3c047c4aad13c0c5701f release23-maint +33980 a4051ad7666e5d5f3efc7963e742e9f1a8df09f5 legacy-trunk +33981 89375a13a18c8ae97cd184d4a84a738eab3e3488 release23-maint +33982 244b55c90e0f3066e2d338932b202aceb9fead04 legacy-trunk +33983 7d232981d3e38c46f093b7685bf9235ed1ebc449 release23-maint +33984 ff805a147b6a918988f35404e639308509165708 legacy-trunk +33985 b177c96ee3503ba89a2cba8c3a2ffca7026de23e release23-maint +33986 66ba0e0ec202698e033fccdc1718ecc14cca630a legacy-trunk +33987 a74b463bf76da7f31c8fbff9547c00e21195c949 legacy-trunk +33988 84988e7bc7b7bba954c2ed7fff5808587328e28c release23-maint +33989 717cc2c9fd60ec79009f9e57f2d23674d59e7511 legacy-trunk +33989 5ed40f2f65fb5aded8267450501b4fccddb09991 release23-maint +33990 9a0aa1dbf351470c192d45ca5d0e30999ddd0269 legacy-trunk +33991 63100cc3f15af40afa712a1d4647453b3cf5e5cd release23-maint +33992 cc2d9ea4ebd50fc648fd5ac4e5ca6cd9a27a5d42 release23-maint +33993 df0093a5985c3cb18e1bfb8f2544eb7d5e34ff08 release23-maint +33994 22502f795b49c8376e617188852840bafce187e3 legacy-trunk +33995 4a59122a6646a1cb060c27d2db260c820e5c1a5d release23-maint +33996 1d6d6fb7f10b77bceb1c25a2c682799476188e93 legacy-trunk +33997 8091bd92ee015bc60dc9feb070e474d507d617d4 release23-maint +33998 4b4b581b3b2c83144df72c890c7387d193293908 legacy-trunk +33999 26d3f5b87ad3dfae787dc88820e50e6f3e65eb3e release23-branch +34000 2905646a2af3757b09163f6c80015e0c8a71612c legacy-trunk +34001 79b1a9ec52231012e2a4f673af773f86695002d7 legacy-trunk +34002 646f0f11c519b56a31378e636a5daee12d3526f1 legacy-trunk +34003 115fac9d90456b9b58595f9ddea4d2cd78f96af7 legacy-trunk +34004 52f4f2a8cce79da37cd8a8c08df81433d312a954 release23-maint +34005 55a4a417273ed12077c24670af277b41342326b7 release23-maint +34006 dde594f70d6ce4c1da8d772a446bd86523098fb0 legacy-trunk +34007 bfc974def47401c1319616688c3ed1f2c7d833a3 legacy-trunk +34008 700c0ca429efcd494ea35bc654f1fb938f8af408 legacy-trunk +34009 6dd9c7c5aa13d43fb4e03d70df2c0585dbd2c7f0 release22-maint +34010 da434b5376649284bfb131197f838b152982830b release22-maint +34011 77da9f873a4fe41717dc684767e81035d4d00a80 release22-maint +34012 f4295559ea836ab571b3f4ed8ec43780846fe0dd release23-maint +34013 cb281538373cad16216a05340622e016b5c34948 release23-maint +34014 24c62f53a1c92914ab0480eb70f8df7a8fae4c51 release23-maint +34015 41ff2c13ea4a98a79e78915fb462105e829c8a92 legacy-trunk +34016 1793b65a6230fe46abb33cb017b93641592c65c8 release23-maint +34017 c16c553860c2defb487391eae5d5866fa33abed2 legacy-trunk +34018 fed6501188da427da6efff26c49ecad985fa23a4 release23-maint +34019 74bc3493ce0352bfb78d6b031a3180ccd38d8963 legacy-trunk +34020 f003e48f562dd45accb4d694e18bbab7ae32f4a5 legacy-trunk +34021 7e3a1d3c90f530ae0343e1f9e5a74843bfc649d8 legacy-trunk +34022 6790cf785f8c5c3eab134c0f5814119f1e2978e8 release23-maint +34023 33dd12b2ebe6d6670620009caaf6df18adefb9c8 legacy-trunk +34024 13a914e0c5c144c67953e6b7a9bfbce68aa1d6e1 release23-maint +34025 19611d101d23129a1fb1968bfe3cad561a348eac legacy-trunk +34026 c2507fe2e69e1188026d790476084bf17a1a24f7 release23-maint +34027 770fe83bf89f656d9f6b99b97ce1f6b0fef57768 legacy-trunk +34028 16c592d316c2a94d0cf1022bc8b55e0917aa2594 release23-maint +34029 521d026a8048c93efd3f44d7879bbe5b9c038e60 legacy-trunk +34030 214df62bcf13a8f9f034397320ace183b21c0944 release23-maint +34031 963c680ed9b20b62fdccc58cfc8662448e5de584 legacy-trunk +34032 0bea9d38929dc394482f3f03819cf8affc7fe8ab legacy-trunk +34033 06075f1bd945b65360520c5ad696d1aef3f9397c legacy-trunk +34034 d5a6b6367bb1c1f6494f5dcdede2555e78385c10 legacy-trunk +34035 a640bfeeb9b5635297bf468963b61b4ee052207f legacy-trunk +34036 78bab8fc8ed5cff206cebb3e7137bb248b637c2c legacy-trunk +34037 2a82914b08c5e0e26d074e12e24504166bd869b4 legacy-trunk +34038 7dcc454a70c3b077e53b325b1d7ecb450b1470a4 legacy-trunk +34039 2ec92febcd1a8f6d8438148d24ea1224ea1e2aaa legacy-trunk +34040 16ce7e947a3442b152d2db0cd6a0bf21624030da legacy-trunk +34041 6b84802c952424ceb04fa3e79e0f3d175c82fc1f legacy-trunk +34042 b533224f1373f7357708cb95a78fe3abfa6e7df2 release23-maint +34043 3afbc339756a6b7be67f9dd7f5671ba9d89ae43a legacy-trunk +34044 387a9e184074aaf8b5f11dee0c535a3f28120018 legacy-trunk +34045 c42944ea9743e67bff4a230bbd8696c0a2a5f371 legacy-trunk +34046 562089a8678f28026309af343daf33010b6a497e legacy-trunk +34047 05a8509cfb3cb195a8032f870dd1d55b79aaf078 release23-maint +34048 63df74305d7bf4b9306b3f1a67b4205fe53cc769 release23-maint +34049 a11e1cb306445683cd526a3f0afe6fe8382ca2a0 legacy-trunk +34050 8ed0ce62b82f195d139918cface45605be1e600d legacy-trunk +34051 d5dabd151753a54000b16ead436d2b7a269dd27d release23-maint +34052 205cc918f1aca8efb57e7ba9c2bae4b860b157f6 release22-maint +34053 d59eca2efa6a0d44ed7a7c4659fdc44421bcbd8d legacy-trunk +34054 00453a0508dfe767b5f5569b56ac049d0c486c1f legacy-trunk +34055 aaf6b6a8510bea0be78784ddfe279bb6e2c17eaa legacy-trunk +34056 f6fc6d0cf1e5ae73b864591b39a4b4240682b442 legacy-trunk +34057 804d1cd1b06deb44c4a49b1a9458c58de532aed8 release23-maint +34058 d6153603472e3c2d52c18cd02a098cb858d487ed legacy-trunk +34059 f86d863687c60635142664027a8a3ce17c8b56b4 release23-maint +34060 0891d22adf4f4b8c5097ccde05f408fcbcc4957d legacy-trunk +34061 1de1da3ee3e87dd2bbe05621cf24c0629beea452 release23-maint +34062 8b9a8c4de28e6b5b749813bbe2661b53f35318dc legacy-trunk +34063 06eaef7d02f21e3441e8f240123d869dda91eae4 release23-maint +34064 e5bd50c7e19336b44a30336d45cc63249e103d01 legacy-trunk +34065 7504812fdb7eb1c9e2294bfe1de8b71586db0136 legacy-trunk +34066 f14e251369b2d5c88ce7d1e63d822c13fa6835e9 release23-maint +34067 85e642543ddaa6c2997b41461b3ba0a5f03870fd legacy-trunk +34068 4454736c6a82ea63b4c19bb4a22518d9501eb68c release23-maint +34069 be9582734b56ae1f1a61343e6bbe1b78330cb2b8 legacy-trunk +34070 38e8753534b7974000368a90fc4a11c5e2d736f8 legacy-trunk +34071 21b2a2159046dbcffe5e22cf046d25a1314032c5 release23-maint +34072 8dc94bd9b83ae0645dcaf4d72a3b7a57a4dca3ce release23-maint +34073 80a4b8f6ae0e52c4612099d5cf18ab3eaef55b60 legacy-trunk +34074 46bdb66adcdb762029dbc675129b516ecaae2746 legacy-trunk +34075 05e8b503cd414e2b36a7f14019f3d91c68764fbc legacy-trunk +34076 4ae8b65caba8889ed69a1a1ecdad2225076aa396 release23-maint +34077 c3b2cd6ef27f88d99d1bfe0a1ca71e84604981a7 release23-maint +34078 e4cc232ed5830db25e2bc9fd01e8359cecee230a legacy-trunk +34079 3b793cf748c5690578be298dc90527c2eed13657 release23-maint +34080 dc51abc3f1746d518b901e5474ebefbfb8710f77 release23-maint +34081 db31d25b137a433685d62ddbd5df9cd671aa8ae4 release23-maint +34082 cf7fad9d6fcc34a8875dbb37aa19ec395fde85d5 legacy-trunk +34082 d05af1562c64f19816b26d958db9f4c8f0d42207 release23-maint +34083 4aa84a8b1fe497d72456cc649fd681346e646aa6 legacy-trunk +34084 3edcce0efc54b8c2546a7b4c1c20f5570aec5ce9 release23-maint +34085 5155b38502d4831a3ed516f131fdc815c54053dd legacy-trunk +34086 35f9249650e6b5c9d79b8f39d82baf1e6c1a65cf release23-maint +34087 0c368ec0cccb44de65cd7cc8cc22729d16aa926d release23-maint +34088 accc251cdc4a9ec0ac6f2805261a1653fd03d419 legacy-trunk +34089 a52a074e8ae5db154f9ec00da5391cdb0bbe7d74 legacy-trunk +34090 1987b855cd3a0c3e21582fe74d16f138fbd45d3b release23-maint +34091 fe1cd3795a7a93ae6ead7d0262c4d15e4a01e466 legacy-trunk +34092 993e3ca346560c1e1be2832c299b5ea9301d88b4 release23-maint +34093 f15a11cf853163ceea1cb54f20aa7402afc894d9 legacy-trunk +34094 280b0a1e31e3641c49f4f9742a3f411281aed785 release23-maint +34095 1e86f2f712f2193f86120d6f0208e63ca033fb93 legacy-trunk +34096 58ffb6b9f6c572e517b97444ad8ec5f9267288f6 legacy-trunk +34097 c972d9e431688e4463156cfcc4488c88b0286921 release23-maint +34098 6a9101471ad371b811e7c73a3cda0658fad5b685 legacy-trunk +34099 aa787e3612bbc6fa5f7294bf0a2885b6fd467525 release23-maint +34100 0039928a0f8439bb3eb0d14037b649b6185782a2 legacy-trunk +34101 e38ec4cb87e9c16427bf53e33882a837e7ee5c8e release23-maint +34102 d039b1bb1ea97f5211d960fd267a4bd703f42ad5 legacy-trunk +34103 62153e82564ba313d7c69343be575ad43a401b44 release23-maint +34104 e44a359c898e0c150307916a4b8b7b994ce90781 legacy-trunk +34105 10ba6567852fd068ff700fc5e4300aae7912d21f legacy-trunk +34106 94f252833e1314f0e965254c121d65e101ff5363 release23-maint +34107 fd16018407e7e5344479d8719dd663be4fdfb6d9 legacy-trunk +34108 96756948d1c92494b90268465c4124607ab81a66 release23-maint +34109 11c32095c30561c1041d32511aa53f49fa97a551 legacy-trunk +34110 a430be683a7ad33b5b5d20997c2a8bccd7c2a4d1 legacy-trunk +34111 a6877ffd9582d8ae03344775f16be430330f27ce legacy-trunk +34112 54ab1955d242e349d78213763db7bcc666b72b7f legacy-trunk +34113 dd98f29cfc986330d29ba277cf0ffe7863793fca legacy-trunk +34114 7773ea7b1c67491d853eda43bd39c127df94ea04 release23-maint +34115 b8737a31050ca3cc5d0bc3734b645c0aa5466096 legacy-trunk +34116 62ae219144c4f62ce5afbec011d6f9e53ec1465b legacy-trunk +34117 045174f6a79db33bb107434a615f3a72d76a571e legacy-trunk +34118 41bbbb489764c8c6f7db39e22817ce1cf2fb66e0 legacy-trunk +34119 34bd5c198caf87249068df29292d48480e971540 legacy-trunk +34120 68e1f86056bc349b7ecc3b82542ed87cbad2fd51 legacy-trunk +34121 53f1c32ee69d75c26f54b31ea1e58c36cf83771b legacy-trunk +34122 e17c44c79b03e71987510c1a52147dae7d23bf88 release23-maint +34123 37f0e0b14003855b90a0abbe7ffa2277c1cf7684 legacy-trunk +34124 20d97885e5c8934d49d04ce3d3f38a23adc20c02 legacy-trunk +34125 23921bc8124bbc5c067924e06c202adc1e61c8f3 release23-maint +34126 c68eb4d4b7879e20482d331accd2bd474082833e legacy-trunk +34127 f44d8addd3e86a1ee072dcd9dae181db3695c832 legacy-trunk +34128 13ec8c479ff103b49b370211343131a89b8d3103 legacy-trunk +34129 39be99c677d5e27852615139fa21419d71729569 release23-maint +34130 4d204fc3ad32f0a384dd6c2bc9fd10e63144823b legacy-trunk +34131 7433e7c9e2ca45335c1fb656421b1f9d496f9a47 legacy-trunk +34132 4627c16849aedc9b55be05fedbf701ce34f03d2b ast-branch +34133 a274b9035d1eae2390a8d72f9b59d40891347e9f ast-branch +34134 1edb5473809e6b8f4e62105dcfc5e66ec591f497 ast-branch +34135 95ab55d14256f680292060a758d92b093053be7e legacy-trunk +34136 d864f3168cacfcb5d0ba66abf6c5775fa489e715 legacy-trunk +34137 2f5822d0f8e15c0bba5d5c903f0e70c76137d4f9 release23-branch +34138 79919c550dfeddae7850917bdb519388ab34cc98 release23-maint +34139 0a150ea8cbea28f4cb80c35e7f4b253c8a02afd3 legacy-trunk +34140 c2c10f1eb8e2b74bbc84ca476d100e1934b7ff27 legacy-trunk +34141 c9cc35249322d78f113356b27d441f58e8e8dc95 legacy-trunk +34142 a8f04cbf659cb026cc2b81c3e4cd0b4a2ac4af11 legacy-trunk +34143 cd0c3f916b34ccf269e56d2e8c46ed2413748c61 legacy-trunk +34144 e8147f841a4ab2da3e7db1c6e098b1671f6ee062 legacy-trunk +34145 c9f9eb13eac9305eba134d811d84560edb68f2f1 release23-maint +34146 1725470d0d43cab2c8d1700fa0cf989fa17a09a5 legacy-trunk +34147 ed8b3c028174b0526baa3bfdba3f52cb713e8da2 release23-maint +34148 6bfb82bfbb56cddfc31a221d318f114e10bc9364 release23-maint +34149 41c2e1723cddd7ac17c7ddad06f0f43688862f54 legacy-trunk +34150 ef4a71f5af2238ebb6ab48cc09d9a5d2fb1c8307 release23-maint +34151 30e495efe90a365d205324afb69b45a515d2fb95 legacy-trunk +34152 784e38abed820316eb086316f63f0d2f702518f6 release23-maint +34153 76e998aee6446585f18a34f4b70d817895daa0fc legacy-trunk +34154 59b0a48a5644507b3c693a8bf74d9602996b6958 release23-maint +34155 f89ab79853a70c39e19f53f3e9f588394e2793c4 legacy-trunk +34156 0b0ad7d1ddd6a98530f4c8a4c8c1de47f3c5875b legacy-trunk +34157 72bfc786a4f892d513f305f07f01618a41c4cbc9 release23-maint +34158 a8a1bef407eb26cc8be4b314c9f5c5a6b75b439e release23-maint +34159 662233e66d282eca07f76bf162eba971b6431048 release22-maint +34160 7cb6745be525c0a84ec0b19b14446a0034243bc3 legacy-trunk +34161 2a49709c0d563e4bdc24655081a1417e76228652 legacy-trunk +34162 834bb9a15419b0f61d91b7f73e9df1b33fe3e4c0 release23-maint +34163 b39cb9212f5c88cc23e849a2e75b910034b1693a legacy-trunk +34164 ba1e03cd2f40fa12c319efac745d48f829c3dceb release23-maint +34165 a85a7012ddda73cef5d0fd6ff255fca37715350a release23-maint +34166 0cad9094e23e9cb712790eae9262fe587c53e322 release23-maint +34167 bba7e1e0f1c753a82200dd03e0d4fb12df21f7e1 legacy-trunk +34168 91ff72703ed35aadf65d4daa9f41770c7cb00aaa release23-maint +34169 9233ad0eaa9846aab7e588655ec2b0fe707abe4c legacy-trunk +34170 61dba0aa9e374df22950fad493127bea1388e8be legacy-trunk +34171 1d63106e7dfa4883c1c0a4f801a353b6f3196277 release23-maint +34172 d5c45b8daa52bc18fd095d72db7eb9573ada5b47 legacy-trunk +34173 8d21fb2e26b069397349b8309142815fa962b628 release23-maint +34174 65bac59a3928068e7f9385b7dd29c9c3d36c3970 legacy-trunk +34175 cb72369920acac16b1431ad4259c3098100fcce4 release23-maint +34176 d7f13a49e5ef68a2b548ad3609de85d0bc92a7cc legacy-trunk +34177 5f92d6607b9f0ba245698d56d625eab616648fe2 release23-maint +34178 1a817694ecbd7e49fc915a5eba9dd56c19f9bb4d legacy-trunk +34179 518ccc064cb9f32b6a61f49c62d00eb23c62a704 legacy-trunk +34180 a37b23714d3dddb596e1efc15e193544dfae32e7 release23-maint +34181 55857aebc24f23f2f2e0e8852d44ed2049f6d730 legacy-trunk +34182 1e1e685d69ef78bdb9917670981ea7ffa2fdd4bc legacy-trunk +34183 94d829367473703b18d9daa54b03d03ea0531ff5 legacy-trunk +34184 084408fee9614e5483efef0e6f592e5c0a037682 legacy-trunk +34185 425bf07ea70b8c2d1e6a1ba91fc9bb3b2512e0f9 legacy-trunk +34186 8dd07f7d093b7a0052fa73dd62513b70c193850c legacy-trunk +34188 185c5f6b6157840b0541ac01b2785e76b5c395e5 legacy-trunk +34190 dba6ef304aa4408806f2ada308b7fd9b224d9825 ast-branch +34191 76d9d18ef3e495ab0b0f6e382c21d9974d449c40 release23-maint +34192 07e640c4016dfe38d225aa42bd868ec091d8615d release23-maint +34193 b2919a4c558c6f408a23cb6a3a9f6e54b106bba1 legacy-trunk +34194 2f3f56f1280fcecdac09fc1315f8d91d1067cb78 release23-maint +34195 9df9bd430c36d2c838c16ca5a0816f7bf6bcdd67 release23-maint +34196 77ac45580c408d5862f46ffb0e2ae6c765e45b4d release23-maint +34197 51e85e8bfa4732ac980669b314db2627d63a89c7 legacy-trunk +34198 c48a2cc93780f41a77aafceb7a0a811634703079 legacy-trunk +34199 1a792f36b69e36a4c5befa61a237fbf5be80b7a5 release23-maint +34200 02257f6a682a78317ef46f95ff13bd6ce145c889 legacy-trunk +34201 1bc6ef1f6bdb4791a98451f3e8ba27a5e293bb75 release23-maint +34202 d7bf1232a86d144d4ba170b507b6d2b0f8194fee release23-maint +34203 b0c3d986f63f75835310d67db93194c3a81384d7 legacy-trunk +34204 a7c4aa81eb85c010a7b859d37333110a16b507c8 release23-maint +34205 76979afc785bd63d00661bfd5dc12eb03db6e97d release22-maint +34206 ad253c06baf1d4af2a321397cd6476cf2413bfd2 release23-maint +34207 0967cb90534cc6a7ee1863b880e0a30c43e047a1 legacy-trunk +34208 e2b9d436f8f7af9cabf10da69ee0643de8bf4f05 release23-maint +34209 3f28964f8eccc94013e868d230c71ee5cd28e2db legacy-trunk +34210 871776d38213a9067c6d9baf8918eadbc17d389f legacy-trunk +34211 177658785feb8d26315a91dce897c6b958e25207 legacy-trunk +34212 8360c74d053bad5bbe0339fc3cb9e41c88ca6536 release23-maint +34213 5c5adb5443cce89814bde0ed730380ced3565138 release23-maint +34214 d6f4dd5a5006b9f13667654d393855f7ad129fba release23-maint +34215 339c8804f804a8ee451eb85bb2c33377e835b3d5 legacy-trunk +34216 58f01cc0f300ab18f1481ec4066cf379c23d64e9 legacy-trunk +34217 58f96a00d38dc002ade8188e4f4ee640afbe0f0c release23-maint +34218 254bd3e891f6d9591c91e0f8bb1983104f6502c2 legacy-trunk +34219 0ed1eace2a60baea74dcd5e16bd39dccce6c9912 release23-maint +34220 f4a01c405a44b61705a13cf7596e5e9bdf229571 release23-maint +34221 ce8d1f951e192fec8f467e3504abd4655749cd35 legacy-trunk +34222 d75592f6e2f7cfe0ebd879301432421519657182 legacy-trunk +34223 954b609b84cd0996fb4fd3fb4e807da75bf37290 release23-maint +34224 774a9f21edb97d448e6a559a63526711a9da9041 release23-maint +34225 e97230e5c1ca90f77ca275268ceff48af927491a release23-maint +34226 931e888991bab741108b0f86f98a016a819d78be legacy-trunk +34227 f3ce19d961dda6e53fe477b60885050653b8aa27 release23-maint +34228 5383d562a38d81be2e8fba40e7e53d99141419d4 legacy-trunk +34229 6e1f7dbecd84d53b49fd80437b0350dced96ad31 release23-maint +34230 c97008ee7166074b049982d893d62dd7da090a8e release23-maint +34231 b2728c87df9fbf233478a3f75689690e69cadc1f release23-maint +34232 26cc5865a836633bf3f0ffc3f7c3594189d645ed release23-maint +34233 a1b965e1bbe9d8f4d86b4e9d8c17b358534ecb13 release23-maint +34234 816d4867f21065e1b392a8a9868d17f4fd004486 release23-maint +34235 7e60d82730fd8ad4163719c625dc9adfbf9608f9 legacy-trunk +34236 0182cec508aab4ff9e819a2d77e140506f148258 legacy-trunk +34237 db63cb0fc7da179a4a32a24bc2a4e7fa1010fb6d legacy-trunk +34238 9c2eb415130f34d3fe5ed747f7532f1d22852470 release23-maint +34239 7389ff57787390b3473211d7fd5690a18be4203d release23-maint +34240 b92b37b01ffb1608334ed9ae26c32005cc5708d2 release23-maint +34241 e5bacb9597f7b44aa7dc0d2d420a958db674cc25 legacy-trunk +34242 fbad3efa40bbdcf6d4b96a39e052d616ca4ab072 legacy-trunk +34243 62c6afe37d123aa3a84a017c90bf7779d2153fce legacy-trunk +34244 929e548174c5fae93bc90f50b621a0fabade197b release23-maint +34245 dbe8391ed06f239b439d5ce12b2bbb97047a8078 release23-maint +34245 fa65f6527fe134aa97e03e1b2af365d443b67dc7 release23-maint +34247 da9b7407e56c2aae9d2466c0c4a65d00ba9e4ae8 legacy-trunk +34248 a15b1c3c236a4b24c9692850e0a453d55358e611 legacy-trunk +34249 717024dbbbac7d87cdc4823c60d99ca8a6177414 legacy-trunk +34250 2a165ddf222dc429b758e27712560748268de967 legacy-trunk +34251 5290a4936170dc88fc38f8f7362a2a4c583e0201 legacy-trunk +34252 bb82511d1906a2798b2058d592f6b6e88a0151ed legacy-trunk +34253 693d17dfb8fd48d52264abd980567487db8965a9 legacy-trunk +34254 56390891d988c8759ea10c904d314571e1820bd8 legacy-trunk +34255 9cd4f4ae7a4c2b8cdce3aa64a7c14770f9f66c6e legacy-trunk +34256 5ec4233edcedc47255a4d11c7f0d86622efbb205 legacy-trunk +34257 703782d901613c608aa69523c2bf5e5709b2c83b legacy-trunk +34258 5d2ba437e1bd3b34ad575ca73e89fdbe3c1f906a release23-maint +34259 e2f50a7cc494f90749281f33b38cebbdd6ef3583 legacy-trunk +34260 2ce9f89c4bbc9b57b4f97d7672aaf914c9918c01 release22-maint +34261 dde276a88c88a0d4ba2569314797dceab4c86c0b legacy-trunk +34262 361b50a0d27fad7b4cfecffb86f21ee569c669f9 release23-maint +34263 332bff275b218c4e8d1d783ad22f373a413e8d8a release23-maint +34264 ad18f5b8d6f4c61b2aa7786c5475f21485a43efa release23-maint +34265 8c9f48ba50fa1651286d86d71705a369392a3db4 release23-maint +34266 0457049f25e0a0a177c3e5160043f8c577bb4148 legacy-trunk +34267 b7a2135fc156aa61a7102e60619ca945ca7cde2b legacy-trunk +34268 032b9258885b718293e4c7eb39c407b34dedb0c2 release23-maint +34269 a5671aecf39013c6c690504c74856a96a62a07e8 legacy-trunk +34270 a566c49b70faf9f674b47f24f13d4e498f01876a release23-maint +34271 8529eac5065d21697fe7f75a2b1910b34afa7178 legacy-trunk +34272 d96e7f82d3999994ba8e56a44085456100446190 release23-maint +34273 e1baa249b3f23d92249e5bcb40dfedf04338cde5 release23-maint +34274 6f3343de65b22c7316a76c666876c0fc8ff039b1 release23-maint +34275 12da34ef8854fb134df1f88767af37bbf8961528 legacy-trunk +34276 7f48e89439e0bedc33ca6a91752d5364286ccb4e legacy-trunk +34277 dd4485943f23f485aa8070f89ca7fd9709a38fb6 release23-maint +34278 94b4fce7a998b2382bd926a1c3bea7ee52fcf1cd release23-maint +34279 6c0402dafb18cc58ab7e99bfb18524877631dcad release23-maint +34280 63ae1b91a86855addc4aef45922840c24907ca91 legacy-trunk +34281 035c9783a4ddbafa174e607d254b768f760ac94a release23-maint +34282 8540712d6e2d3175c81a911d07e662b9aaf9f221 legacy-trunk +34283 e18c10ca74082868daef62eab32ac8b5cc3131dd release23-maint +34284 59b851b6ad33a57f51056c7316b70f732e0d296e legacy-trunk +34285 a53eabe02729847cae48b845cff8e803e2e78aa5 release23-maint +34286 7bc51be75febfd7227e82a90763446b2f188aa6a legacy-trunk +34287 3d1ae1c86fd393671754e328e0ca73093c3b4749 release23-maint +34288 e6cea77abee36ff1ef1971448c4e1619ee2f8a14 legacy-trunk +34289 06164c6dc509f14c3da9c4015eaef40676f86317 legacy-trunk +34290 bd4c4b6e09a1724476b1b19bed1ecce54a242a50 legacy-trunk +34291 0c9aa7e554157c58cd81f6cdd24d1e059d22e904 release23-maint +34292 fc7ef4fde27a1edfdfc07d54566df5175d4e5987 release23-maint +34293 b957976cd8e7db4605f5dc02f4f5d302827bdc58 release23-maint +34294 58b98f988a0819a0d3155bba7d88df84cb4296a5 release23-maint +34295 3ef87a0bbbad0526224022ac5dfa5287409cd256 legacy-trunk +34296 ab3e770c3a99bfb771721027722c3e84c8effa11 legacy-trunk +34297 98a6b60152299632e8481e3b93cf7ab6d2e8b518 legacy-trunk +34298 d34b6f92dd325d6bdc6eb8ee7610fbdc2396da28 legacy-trunk +34299 daf8c932786d2984f5e929752449bd41eba086fd legacy-trunk +34300 34175e94081ca96aef8c22d5cea8f446b6e9c57d legacy-trunk +34301 c951f9c306f324f77c84411f1c6351b3ae77623d release23-maint +34302 cddb7c8db36791513e997bb27e3ea896b5c0ce94 legacy-trunk +34303 67cd3e7d0eacd89c851d29a64bb2babe2d758ecb legacy-trunk +34304 b6c0f908beb809f1c7d5da0e22047ba875fff6ac legacy-trunk +34305 741f79f1012a0eb433495d2b6a4294dc1d90f1e1 release23-maint +34306 207124f6a8d7b2d4c153526e5a557928968a7a37 release23-maint +34307 fd540220ffc4f0801ef69bd4428f86ef1dd22bf7 release23-maint +34308 3e1bf751064110de318aaae55bf1528ac861968e release23-maint +34309 c876ac4d0337195f8cac7d37e4f4b87aed2605d6 legacy-trunk +34310 63c64088ff498005657214e1c4626a5b34a23e76 legacy-trunk +34311 0028ef45a50ea55aca7cbd3ea77b8908db8ce7c3 release23-maint +34312 6d75383274342f0035f0e3f8834494502a45ba88 release23-maint +34312 7d7362a71253bff4fc1b0c825c14569778db8c36 release23-maint +34314 1b9c3a8c49db68bfec8aa65661c05471b036c37c release23-maint +34315 0c6fe58af7d12479723863111ceab1bbece516d0 legacy-trunk +34316 6f9782cc2750d286ee9c66f0a048ba8c095c5bbb release23-maint +34317 6cfd97d7fe98d78262335ac621628c1411bfbb0c release23-maint +34318 fbf6ee5769d42a0df83e8a944638dbf298b2d613 legacy-trunk +34319 d3fb75bc6356e9cd5510a3fc3fbdfdf072dbdfc5 legacy-trunk +34320 de8552f0acc57643dd61c2891dc432cd15076020 legacy-trunk +34321 bbe63a87969fdbf6617f571f5a3b3a6686dde267 release23-maint +34322 c983022252920d34930c0f9d9e4d87fd49b494d4 release23-maint +34323 82700a7e9fa4b40de2085ca27564d211fdff955e release23-maint +34324 a673d85f5ad0a55a5d90853c9bd45feee645db9a legacy-trunk +34325 66fd827fe1d84ba6839bd4417495fa09f0adbae7 release23-maint +34326 9e6164198c45723b3577a6b031db9a6bf81e1c62 legacy-trunk +34327 c73f16225a71adf010c22616317db8b982d30d47 legacy-trunk +34328 7bd6c6b53f87170aeac03bd7b3df6de040f86ea6 legacy-trunk +34329 b1c5696ad47585844a2a85f9c346d0b0965da5db release23-maint +34330 27959a02d39de9c1a2e8ce8fe7ee5a6ed48efafe release23-maint +34331 1079be587baa07962c3413e39d8890048d6166c8 release23-maint +34332 d47cc6f71f32a32c167ac9626a4eb79560e853b8 legacy-trunk +34333 b7d01effe89950a8342f6ffa7b396c92f71e6bdc legacy-trunk +34334 84731eea6db90fe29cf8fdb3fc99c9cab914393e release23-maint +34335 f29f108ab49eeb5da2f352da46d396bbd2748280 release23-maint +34336 5ff24d5d9e922b02eb881115b92197a12f960ccd legacy-trunk +34337 e73f3a0327636ad8d66c8235e9e43be67ef0bc71 release23-maint +34338 573a40bec07042a661563fc2faa3e19c4a048a24 legacy-trunk +34339 f4dee015bf84c2c6c320758be43f3d4a1f1fe4ae release23-maint +34339 be2533fb10a587c8da89b18c5f381f478d720593 release23-maint +34341 e5e60892c3e357e5e743cb64ec70c3459625d7c4 legacy-trunk +34342 18e239f23029d80e873149a1913eb497eb337ef6 legacy-trunk +34343 c4e3a6cacfcabfaebacd8efa73eeb8f9e97ffafd release23-maint +34344 2ef8d62dcc0910610dcffa94273830179f9d1358 release23-maint +34345 9200712d31e790ec19c964c961a861fe305e670a legacy-trunk +34346 817b6e0f48d1ba87433393c385e6433b9914c58e legacy-trunk +34347 f9dfdcb897bb664a41a8f3747a5fbda4d394e7e4 legacy-trunk +34348 c1a672ee1530352ea160059a3358129eafc18c60 legacy-trunk +34349 7fd553fb4315037c6a11af909bc4e77f3b2185a7 legacy-trunk +34350 0471c67f61bd797651158bafe2524fa8cc803ec0 release23-maint +34351 0d401784621b4f498523508bb57874d7e93d7f4b legacy-trunk +34352 a3015bba3999bdc03f317f3f123f550cea6e690a release23-maint +34353 39e635da2326a57ee80d4bfa91fa3828cc9a8656 legacy-trunk +34354 5ea0fd26bd36462dd65ba547f87918ef84d25bf3 legacy-trunk +34355 1543a840fc7f3a0acc8a9befb6a861f7574cb640 legacy-trunk +34356 71757cea257f369f0d12a03f344b78ed59f81f91 release23-maint +34357 044798d8bbfc7b4845ca030ca058e73b037e7011 release23-maint +34358 8630dd8b5cb46731eda7c7d3eaa5fde348b5fc81 release23-maint +34359 205a293f3de0802e70dcd2fd4ffac264dd4c7d7b legacy-trunk +34360 d0b8c83c2a6b69d204f33d256295597cfbda4a9f release23-maint +34361 a6fb6822814aaaf61c6806a822e5f646ea66af1d legacy-trunk +34362 1eade77ea9ea79fac1cf45e0dc124bcb6c76394e release23-maint +34363 d79bb29ff96cc0947639aa1bd6006d94cde92db9 legacy-trunk +34364 8841d34a2c37eb98929d33d586ed4adacb859ec7 legacy-trunk +34365 ca030320963f5fd5012774ab8fff117aeb0dc41c legacy-trunk +34366 6fdee3f9ece3ab7cf96bab664f5dd36fcc27cfb4 release23-maint +34367 ad6306d35ce3a195d69f6181850a7277b3c71526 release23-maint +34368 3b47d60571517ec207ac65b176733d279a46227f legacy-trunk +34369 055a80881e96d936f1445304b239ceec8cd10bf8 legacy-trunk +34370 0e0ba929550c03c7a1cf1489d0301eb250533a09 release23-maint +34371 8141eead19073f4aa9141970ab7bcbba035bef6b legacy-trunk +34372 144bc8fd911ee94cd009eff8f2b7104d9a512d11 legacy-trunk +34373 f00a32ec41393004c53de95c4db48f9eba9f9d13 release23-maint +34374 acef4e16ceae4830a6b7ad04a28b6a481f5e999e legacy-trunk +34375 36992ca918a34933c7138b0eaaac8b0fe97b2911 legacy-trunk +34376 bb3ce6aee693ecc4ebb4152abc1b8830672b467a legacy-trunk +34377 6ef2451360389af97770f8e7e0d367e2dee38fae release23-maint +34378 5c0174e2e14f451f5f860789f135d9993db1c7de legacy-trunk +34379 298888e395ce0c05f374fbcc4c102a8e2055eb42 legacy-trunk +34380 4776a05e630b5fc38f01e8d983c3b7f3d487444d release23-maint +34381 58fe64f7fb193aeb8f200a319641c3f919157d37 legacy-trunk +34382 400674958025e9e4816480bfbc462d709eacd08b legacy-trunk +34383 062c255b57a8e22e973625f91dd873043e295f9a legacy-trunk +34384 d5c3231ba5baa41632039c8cfa749d92b1422817 legacy-trunk +34385 7f6134f8bd06fd3fc6828cdede2ed97ac9427e35 legacy-trunk +34386 adc60015670ae8c23db3e3e18e940e3957535151 legacy-trunk +34387 41b7d1f0500f0e4c1504e2d6f99e13297b02c6f4 legacy-trunk +34388 604830f1caa65526ca89d18ab80ce2bd9db64257 release23-maint +34389 a742821d9e75dc7aeaad8f067de383f679cafadd legacy-trunk +34390 fce80ad8347709f1c1a67dd1b4a6cc65e3a930b7 legacy-trunk +34391 fdf0a97bab600d595db0c09261065a6099647ad7 legacy-trunk +34392 cf02c17d7f449bc5f2a8a4bf85490d597639ea65 legacy-trunk +34393 837ea18637bc190fe59786f72693ebe0e817d6ef legacy-trunk +34394 4a0c89e5e05677be78d43f73a1fd889a9b8ecce5 legacy-trunk +34395 c226f84d7a66e2aa81665e30ec6dc02f991bc32f legacy-trunk +34396 9691cc64416007bdddc177bd1bea6824d7d70a65 legacy-trunk +34397 473f4e2959a8043d9bcbd7443ecbc314c1965bea legacy-trunk +34398 3b59fa5d25b13b5c65e09607949ac06af9086dd6 legacy-trunk +34399 0ddecaf8b75cbeca0066004df1c3dc31e51abdf2 legacy-trunk +34400 6c38406c3fad84128e5fbb75752a8ec87a45cb1a release23-maint +34401 0060157844d87be2ace7e95326d752007a0a29be legacy-trunk +34402 8ea832603e4feb17e19e83805d77acaa4448947c release23-maint +34403 b491bbf17dde8a18456e34cc2b7fc4ff02924f16 legacy-trunk +34404 501a79346784ae626a8b4f0cd0498dea07ca158a release23-maint +34405 fd052c4f884f4430c2838022ea5bcd8995ab1e52 legacy-trunk +34406 04f418af680d07f4b40e4961af41b0d8fa306ccc release23-maint +34407 a3e86665f245ac5d7e5ebfb722bdebfbdc15c8f6 legacy-trunk +34408 4388bbad0bc37ae948c23a0ba4e31e247a6627d3 legacy-trunk +34409 5a1d3bc6cc1802e00835576af07d571250d5abd5 legacy-trunk +34410 2cb4f321798cd6f0418c4119e1259f7a6460dd79 release23-maint +34411 3429b1d38b400c60e0b850f018d6d1934d244a36 release23-maint +34412 f1c30bfb0cc12617e2ee0a341b9fb745e9eaf966 ast-branch +34413 79897ed53f036f179515b55340d4a57368a9337d ast-branch +34414 1345c23a059160503bb53bb8fa9465c74dcec6a2 legacy-trunk +34415 3e3fd56ce5958cd47ee60e67a82e20679efd3316 legacy-trunk +34416 efed489df5459a801b0cb993534e4887bda80da6 legacy-trunk +34417 5201f66c92ef3cdeeb2a378c3c52dbcf428e3a7a release23-maint +34418 c3dfdb60b988f8389c96ba3e2f0bb0913356581f legacy-trunk +34419 c8b8821e872d1c8e917698d7e8e32dc88b8e6d98 release23-maint +34420 8282aa1f93437c666c30d1c46fbe8df3446ff261 legacy-trunk +34421 04bcfdcf290a1509cc75c836b89bbb06a18e69bb release23-maint +34422 3ff03446f362aeefc9fa9070e6c88801d25abd4b legacy-trunk +34423 be0ca26ad5740ec6437a7063b750d6aedc97d720 release23-maint +34424 9e21e56bf5f3ce18fc1fd6c7181bb35630d73c13 legacy-trunk +34425 3a99294c8e5b5e38d1a174019fe60c1f5640e1a6 legacy-trunk +34426 1d5d72436f2a7c42ba388ca682607875fe9e091e legacy-trunk +34427 a234daf19810ab3a879c86f36bdce80b8b44242d release23-maint +34428 6877f797cf36151a1b432ebc010c34664cb6a44c release23-maint +34429 a6634309d70ee6ebac993640e969b4f3505b8630 legacy-trunk +34430 9c7e0227c83568f3d80c5432cd6630cd6bd4c416 legacy-trunk +34431 b11d973abecacbbdc0cd85374962b7e7c8d8b346 release23-maint +34432 c12d4f1853bc002b3d6307922b37bf09d151ca95 legacy-trunk +34433 07a0a0726649946710e9ac5dcd1ffba31af1aafd legacy-trunk +34434 12e549295f7f5dffc2419c582b85e17e7d9ef65b release23-maint +34435 a28a830031a9ab322ef95a1cbc4940f1136484b4 legacy-trunk +34436 7dfdf9e8d95d370110877a6f7cfa8b3d79743d5b legacy-trunk +34437 2bc79b3a953dfd87ea48a4088ad17f352dda4176 legacy-trunk +34438 f80d8377840f2ed5130e2299d66cb0f62f56fec2 legacy-trunk +34439 651fc8d98d99b50f7d9aaed7b5ca7b6ccea3b5ca legacy-trunk +34440 6f15e73b59f2e3a03f3178745355cf7ed268f594 release23-maint +34441 95df600ab9bdeb51c10189b3a1faa7a180a598d0 legacy-trunk +34442 e87d6d76e36575c12950d7bd7a62dcb708d6b875 release23-maint +34443 1024c5bf7fee91294159192cce3c1a7ef2a92cb2 release23-maint +34444 ad5822977152fe7362045db769439d083d843dba legacy-trunk +34445 977efaa8634e61f4b9e86251b973c18486d2bc8c legacy-trunk +34446 b108c442a3744154b17de8c7627cae79c26f62bd legacy-trunk +34447 0ea41048b2d4752588802e798a4670a1dc80e2f8 legacy-trunk +34448 f0da0cad5cd51f47ffa3cfa5266f373a839496fe legacy-trunk +34449 44f98002181fb2906932f87bacef135f4f187342 legacy-trunk +34450 9455deff1c7c0ef9e02ee34c78e5d3b5e1c7cad6 legacy-trunk +34451 916f782ed6d50c6bf9028ef85e23977969dc5109 release23-maint +34452 42445172928f1faf51aca15c8a445fe6c3fec215 legacy-trunk +34453 0e8077cb3dd5a167bf7285af3252f3a291c31f1e release23-maint +34454 38b0b7d41936b17fff2f094a045e57dd3e09aa8e legacy-trunk +34455 903b31d7721a1d56c00c7390c3147a1725164154 legacy-trunk +34456 38b94c05b85b92e76c19cd6f11613ee40e592e60 legacy-trunk +34457 494d5cf0bbe3e2113642352e3bd65ba9d245e15e legacy-trunk +34458 bc8f22c5342ca37ce4f2fdbf18913c0638591330 legacy-trunk +34459 a810bab85fbc4d0a4aedbe24cb6386205214e555 legacy-trunk +34460 f874243ee39ba26e71c831e2f5ed8ad29c140852 release23-maint +34461 001209b818a67c9191d0c856520501267f72c0d7 legacy-trunk +34462 dbe788223ce968ef5ec96fe3a68022de9dd6b589 release23-maint +34463 0c62c1ac9684db3178578a53ee947ae456c62483 release23-maint +34464 77d5308bedae1144b49c7b9ebefe0c7ca3de8a44 release23-maint +34465 6248dd5d192a805dcb964b592f3807409d77d1f5 release23-maint +34466 fae3435761af9f589deb9480e61689cbe98772c9 release23-maint +34467 1d92ecdf2bb14cd914cc60cf68cafb3dd3c9b462 legacy-trunk +34468 6fdde96a72227a2c6e5808da76d141a66db9511e release23-maint +34469 d770dc264212de7ce56b9a1bb0b22e0a11bbe382 legacy-trunk +34470 6914b5e2076f224b77da5c2c59f52756debddaf7 legacy-trunk +34471 8b2eadfb8f0cddc32bdda99687be466fff00f2c7 legacy-trunk +34472 4d79e8490c76e6e6948cb9f7948b06e00249fc2e legacy-trunk +34473 b6902c0a75782edbce975eda22f1a0e988eb803f legacy-trunk +34474 e0ec644f5b36c45e3a5cfe9ed0c93a41c7f44c49 legacy-trunk +34475 26bc01944ae8ec9e441de33b295a0ff87b75f12d release23-maint +34476 f772d3403ca7d24842f329e0d43bf4ba706fad49 legacy-trunk +34477 a0545e32dae788413aa7dafa1afe87071b8778a9 release23-maint +34478 0fe30710da8060b08ff639a05e4f4951783f59e7 legacy-trunk +34479 8fbb0623b8578d969bb389f7a65f8c0ac8466f62 legacy-trunk +34480 48b9cc51742b9bf3e97c42b39f6990930cfd836f legacy-trunk +34481 b948e775a79ee0bc425b6fe6751846b1725f6218 legacy-trunk +34482 fe3f5592305dcf4f61f430ca2da92f0a79ebbf11 legacy-trunk +34483 982e3e40bf1e5864946947fed62d8469c21a47f0 release23-maint +34484 790ed5c599c3f42fadbf4a2011f381ce500dcd22 legacy-trunk +34485 279736990a14be34e7ef71a73490f3f6b383d0d8 legacy-trunk +34486 2bc95d49fc7a60f99ffb2c9dabacbc02cb9cad0c release23-maint +34487 e0841b5cf2fd1c1be8d020b6b5a461c4c2b1db0d legacy-trunk +34488 a6879d1733d7bc2d3472b890a84c22564daabf34 legacy-trunk +34489 897afcacba0072d7aa1779c43511e45e2bb1c2e1 legacy-trunk +34490 95fd55545cac2698416e6f1fc1c4df30febbb77b legacy-trunk +34491 2d98710f272ece6bd06c6fb1c118d945df8bc559 legacy-trunk +34492 062857f6927f793b1f24c8647a9f5835c76cd856 release23-maint +34493 df9d8f7e4c9c353008072047d1a57208d1fdb959 legacy-trunk +34494 65bbfda246c9308c5fa41275c23681628dadc3c7 release23-maint +34495 3e3d53963c8881b07c92976f9ba5e46e7abb2318 legacy-trunk +34496 eee07f30ef068c10c93ba30ac31cf11b78e6ab79 legacy-trunk +34497 f2e61d99095e7316f4f3b2119ce0f8b11c4be23f release23-maint +34498 74747f62f286a861ba1ec5d5b7f7497e4f988a7c legacy-trunk +34499 f51dc9026e4df9beeceb058ee5b98871c5bd5825 legacy-trunk +34500 4833a9cd377ef1fad1ba6076686ee8d46d7050c2 release23-maint +34501 37285a0346c14ceac29a651cc05759e36a795e5c legacy-trunk +34502 d996e2dcbd3a7e57fea7ab52d552a903ba2403fc legacy-trunk +34503 225d848a5f968c88d96cf775a810dccd9f03ed4c legacy-trunk +34504 ea058504104cd726d08c0e7a8abfec1e8311f9ee legacy-trunk +34505 c2ae91a87a48ac65993aa45dc962eaab18c0105f legacy-trunk +34506 84ff13bcc7502f0b071f86a5adae20ae8e6ef633 legacy-trunk +34507 a6008b70c93934b78e5754fcc2b6bad4c492c72f release23-maint +34508 4c9a67cf2833a9fef171d274de7a156a6fe47832 legacy-trunk +34509 7bbee99422a02ec77f759b1c5165e1e10b910548 release23-maint +34510 ac985d776650171090efc666a8de72ec7f20c259 legacy-trunk +34511 4139b45acfed017ce7561e7d6635ab99ca37c57d legacy-trunk +34512 9da537167b7497bff3f5e2de06397724281f1773 release23-maint +34513 8eb898814fb917449cedcb4781523d1c18462250 legacy-trunk +34514 7e9314926dbe2cc5b586f552cfb19c2dc4f40204 legacy-trunk +34515 7ede772f03d3bc1b74694ca3e9746dd1b0b02576 legacy-trunk +34516 034ae49f9b7aeaf9130e573e76c63757921c0c4e release23-maint +34517 af443d820a506772c7a90c2ca947c9c5f555f5a6 legacy-trunk +34518 c42c40034536cc9c26f1205cfed48d679986533a legacy-trunk +34519 b4b945c5da4d745a3e510ba0bdfb0b8b47859c18 legacy-trunk +34520 aecbba0294bb506378eb4be80b8804a1dab1fff8 legacy-trunk +34521 ac8c7716a85dafbf2b678cef36380be60f8dbd44 legacy-trunk +34522 6a87ed63967c259f8407dec20cbf811f9fe8f1ef legacy-trunk +34523 631118b9aec62adc4696fc47ea8886795df62f01 legacy-trunk +34524 7ba43efd0ceb32a49867ed668e8f588dba99d14d release23-maint +34525 832f3a989058a6fc4f88847eb44949016081b2a9 legacy-trunk +34526 8db64abf856f8c44a75eb5991a7ebedd0ce6d6f9 release23-maint +34527 2cba0de70df62beb85c68706a32e398ea98f6f52 legacy-trunk +34528 1fbfe9dc0ba8b92ac1cec8f90a92efa1eb2cb8c6 legacy-trunk +34529 7863ebcff121f1576389cbaa88406245ace17775 legacy-trunk +34530 a0d2978562d5e12f9523e1a3e73f8346758f2238 legacy-trunk +34531 5652849fbe2960211e4530697a2500dd66a2a2a1 release22-maint +34532 c8041b0eeb3cb32b658789c7f81b840d5b449bd9 release23-maint +34533 07e7a02061d87c574e4016948ec0f0e1460db7eb legacy-trunk +34534 1510244beb5e0e683edd1d394f99f46eff907e36 legacy-trunk +34535 44e9abd07eb31e2736cf09805f31735d56dc5577 release23-maint +34536 9d8acdb58f9c38892f0176fd52c9edc20f8f4c58 legacy-trunk +34537 528cc0fdda41cd1f3cb9045245efab0bb10fa755 release23-maint +34538 ec1a4a29d25da4588c1310bf421a57f623461b78 legacy-trunk +34539 8cd691b73845272cda210bf8ae6d22cdf6e5e9a7 legacy-trunk +34540 98c8576b8da7d24002d80760005efc316eb03df9 legacy-trunk +34541 6422a39500401bf77d9980e1d92a0c702a2b083d release22-maint +34542 d1533ca78d8cca85c1cef8fc8a7850ce6a8ec77f release23-maint +34543 fac8c63c78381ab6f04daf73f6b0f37fa5bdb6ac legacy-trunk +34544 b5f64be5b21fdcee7d6e8888a6b8a463640fc4b6 release23-maint +34545 e59ab708bbb0ca8bcfb7dad946ce67127faa8b30 legacy-trunk +34546 9833aa5bdf387c83cbae174229b08daa072222ff legacy-trunk +34547 cbbe3f8bdef6f283ae8b038400f4801bec65764a release23-maint +34548 827d01df61a716a8c33d10e31117d297b6530103 release23-maint +34549 89dc069aad2c79377a7c100ee144c4c147f76f26 release23-maint +34550 3cd9206dfb792906445f9d8445a73d8ff07e568d release23-maint +34551 d6c09a9d7241d6e605ddd023a348d4e6ef344d07 release23-maint +34552 562143c1c7aedadf5840b01add23348a2540bc3b legacy-trunk +34553 522a3d7e0a96229dcaaeb24a07c2201bac2ba55b legacy-trunk +34554 e676c95e4844870e5e5a5e68f7985d9cbf5cd097 legacy-trunk +34555 19bb1b2fb2338df1d0769b9da8658a8096818513 legacy-trunk +34556 feec44f19ecc78dcb8920a1c6f50ba8008358b6c legacy-trunk +34557 fef6fdec5292523f0c88d9027bb98878d9a0f50a release23-maint +34558 a997614b35dc975c3856ceb2b4d4633726576e4d release23-maint +34559 fe9a5a2dd2c1514de623cefe2270873c5ddc44da release23-maint +34560 08c02a265dbd0dd9a1510e00618e043e367b33d6 release23-maint +34561 4e56fba98f1e4508b6fe26b602439dbf18b7ce20 release23-maint +34562 57f743fa3207e09a56308fe7c6762a0bab89384f release23-maint +34563 3be43af992a6d72b9c6dcfcae11b8f56ddebcdd0 release23-maint +34564 e5d221f8d410b371ddc61839dd95eb4b42c0bee0 release23-maint +34565 931a58f27ebb085fe39e9377ce846b5dd1cb63bc legacy-trunk +34566 262823a12ca75332805e3d9420c59945ad0ccca4 legacy-trunk +34567 ed058bdad2adf6e2d73662b98f5818858a23a8ae legacy-trunk +34568 dcae62d3588493472f551c6e2a9a4991cba5d471 release23-branch +34569 080df0edb0a4bcac41787886585c9d9496e41bc3 release23-maint +34570 af731846ff72827c305a68e115e10450049ee5e4 release23-maint +34571 8a75f9ba9babb100a9c026c6cded27178b3c701b legacy-trunk +34572 4e19a2ff376a05f9d445bfb6b4a6b06cb9c5aa04 release23-maint +34573 ade97b60535245f776ef2ea159c45be8b6350726 release23-maint +34574 7135c7ca9842b0dcf0ae1201d8e1da2f54d52740 release23-maint +34575 776a77150620c293ee8be3cad0ce3b75533550d4 release23-maint +34576 c31eadb6977914ee489fa408f077a64333a1ecef release23-maint +34577 9f5dd302bd915338fe86689577b959e1c2e72f08 release23-maint +34578 820d1d043d3accf4f62a138e9037fed7c581ffbb release23-maint +34579 c89fd7eaf87547688251088dcbeac271d1bcd867 legacy-trunk +34580 d45f8981fdea91fc8e229e7a2807492126f46dba legacy-trunk +34581 070c89eda80bdb5435cc7e20d05f5fc5ae1b0a34 release23-maint +34582 67606f9c2d113dde1773b84e60a5c5438e3f8042 release23-maint +34583 41c4e143e6e6e18e4131a1ed8958ac4481a53e71 legacy-trunk +34584 fe5cea51a3fffff029c2656c82a6fd4d7da9074a release23-maint +34585 04ca4d1f751f2a8a0252eb16c925e3d6a5fb0754 legacy-trunk +34586 da5056a3b152841cd16596080d4d470c43e87eb4 release23-maint +34587 0acb95ad19dc867fbc59f5bec9220bec5c08e3fe legacy-trunk +34588 e468b2451d54b0513327e3b49f614c6ec7feeb29 legacy-trunk +34589 9d7b7ee04470e19e0aa60b2f703457d79d0a204e legacy-trunk +34590 e7091d5754aec0154eb8e945a42546b0db026877 release23-maint +34591 1db0de4c8454323bfb087556e0cc3821fe8f7d2a release22-maint +34592 682d1b67c7b55247872513af19c67b1e2dcd7ed7 legacy-trunk +34593 2acd28bd4d0f1fe614e310f26f7ac439128f7f89 legacy-trunk +34594 e2a9a7fef18a33f80d4ae71c9710e1a2ec0896b6 legacy-trunk +34595 3fa9538ac496727d020f0e9330b8909e17c9d910 legacy-trunk +34596 f0161327a902678410d9f910b0e24ab163d5fd92 release23-maint +34597 4ed40b3f880235e75caf97a0e0af9d658f9ce97d legacy-trunk +34598 d338983d071947d6917ce9be47aaf9ca3b4753cb legacy-trunk +34599 2e497840c45880d5d0223f1f46734ca7ab42dff1 legacy-trunk +34600 72d70dcc4af2c7f7320557ba061b2e1f0a89a9d9 legacy-trunk +34601 2f0e60d4233a665be2f01fa5104cb0d14be7ef85 legacy-trunk +34602 cbd93cf32effeae9d763d4a692ee5eeaa59f88f0 legacy-trunk +34603 e614083ab20c8f1d2cc399a112299e52c6d15384 legacy-trunk +34604 e48c61fa2f983e1e0d266d2a8a2e2ca7bb50b5f3 legacy-trunk +34605 3ae82928b1131cbb105af3ae89990237ac9032ab legacy-trunk +34606 7db778cb7e08a448d3eaf7f83446ec680b8d111e legacy-trunk +34607 ceec69d240f019ebb77b0aee20f816087ef8fd0b legacy-trunk +34608 1997a14f6b088e1a651e1fdb8c3cac7f5f1bfc36 legacy-trunk +34609 89ecfa2545283b17ff1970abaafd55f2ecb2429a legacy-trunk +34610 f08a5e95c37cf3db726d9bdda9b0bb671e961c24 legacy-trunk +34611 1e6863ddd84b9e83e7b3a17571ceb4e6ee99c93e legacy-trunk +34612 543713919499e66131d34d9768e2fbdde41601e2 legacy-trunk +34613 2ed36833853aacbb4ef9dacc422e8a397e4d31a9 release23-maint +34614 a0a8f15401db0fb1374c9b2ba22eb75bdd866cd5 legacy-trunk +34615 c5e5208cdbb720e0382513ff6c7b6f5e743aebd8 legacy-trunk +34616 37c7763fa83dfa643f3e7cc3a370438b2214b626 legacy-trunk +34617 96170f75e3e9fefd82a35ed50f566b636bbb5d73 legacy-trunk +34618 3096fab2a19c054b594bc2b5689330d12e19a558 legacy-trunk +34619 85f3836518fe5d16697fd1f3f87b945fe6be7784 legacy-trunk +34620 6037040a2cce47124c553d13afc9cdf71c35bf50 release23-maint +34621 b136353adde6a6cfa5f8266ab0c64a795a7447c9 legacy-trunk +34622 510bd7eea925fe10fc792d6fed9bb5b1e5ebd521 legacy-trunk +34623 d261839ecf87cf83e20e4f9763179b0b61634a5a legacy-trunk +34624 39fa7b8fcc077aca714f28038b2bc7f56aa064b4 legacy-trunk +34625 3d9b36d6ab898b2aa0915da511e2af3f1003f1bc legacy-trunk +34626 cd7624b025a0fe82e2e36bf2c7c555c7ffe77aeb release23-maint +34627 e3ebd740d1efb4868bffd183c753a40c9720d21f release23-maint +34628 a29a585b03d960f3114a9b7e4802a0f3d9e2a348 legacy-trunk +34629 4320cca4ed843837720984a9cb6a1c95c4b9b97d legacy-trunk +34630 d432f82b986fbf1b47d18b1bb8f5359108f64076 legacy-trunk +34631 567fa0649e835e81cc4eb69f98346695ea18bea3 release23-maint +34632 f648c7f1e8b8598b3022a82806e5106b50a02ad5 legacy-trunk +34633 8081643c373ffbae21568e08bf67c785ee2b3371 legacy-trunk +34634 81733c7a95c8dde611f070d13bc6c26fd2d9bf45 release23-maint +34635 12c22d6b1ec068b03bca67b73dbef2c0d5ad2423 legacy-trunk +34636 8aa9237f6dd6aa108e49bc78eb7d6f51922927cb legacy-trunk +34637 a18198f494f4478dde21b8338e7a91b610f50c54 release23-maint +34638 3213aaa82c7b796b3c9fb1c336ac2eb214181ab9 release23-maint +34639 0468f9ddc069d6ff0f3fa769635d315e6e048d88 legacy-trunk +34640 a0ecae3332a8b6b1bd31081ea259a0038a02d366 legacy-trunk +34641 7a6b1c9fb89e540edce6c842da0d93f36537c980 release23-maint +34642 87c0422cde708c368ea266490663187cea44d305 release23-maint +34643 526682456a8d5a6917f1164d0217af989b848c0d legacy-trunk +34644 9654e5f2473e4f949702120e9cb7d3007631b840 legacy-trunk +34645 5c4cff8fa6ecf91c4d4990e7c626adec72038559 legacy-trunk +34646 c00b5f179633cebede088a0943b2ec4329f8ecb3 release23-maint +34647 54ff68e973eebae0d990e1be5306b374b0f4842f legacy-trunk +34648 287200af946fb7bd51733889a8958c6ab0c15be8 legacy-trunk +34649 fa6e8d4f88c678282e716de0d59439f62520f245 legacy-trunk +34650 7f695c5982873b91ec7e5d4b5a7b8d2d3843cc3e legacy-trunk +34651 19ff972434b3d261bfc3c33c8d3fb1b7932d009b legacy-trunk +34652 4effcbf80b45c6e40f451780de41ca944a2c0063 legacy-trunk +34653 5d2b0e9062d5337d06979b221323b6312d8c5376 legacy-trunk +34654 8941f2ee90949f03e114592b4c129c63e1995240 release23-maint +34655 51ebf5474f3dc984f1cc8ca9b0959fd9d17bb61d legacy-trunk +34656 813a6d9c58882907a8991f7205ca33dd1b39c415 release23-maint +34657 b24995a9664bd54840aff3894cc1f5f88393249e legacy-trunk +34658 bf1319581dc479f9cba0a2017d6bfd8f62b722da release23-maint +34659 cb7d5e23dbc77f104141f60f0586d9c504b4d1d3 legacy-trunk +34660 701880d266eccb481304cbbe467d6d78455d2b5a legacy-trunk +34661 6ca0dbd6ccc98a196eebf7a9d26cb5337e71ea82 legacy-trunk +34662 62517cc4c4e7920301f285f1971b09d25c699c3f release23-maint +34663 7be45f7a718f356944134b30eec7bc700a3df78e legacy-trunk +34664 f729c4d53048ac22432725ee9d43f18396169972 release23-maint +34665 5f49fc231b4c885f1050511e6360ea89d85a667e legacy-trunk +34666 23382a134d5ab61a80d58d8be94cda80dd11e12a release23-maint +34667 1da39a75ed384a8a13da493997375da35143e2ba release23-maint +34668 38e72f4f3df5e9810eeffe85ff3f2a266859fe3a legacy-trunk +34669 11636e7987b637fec1bb6a14db96e09848e48b56 legacy-trunk +34670 45f70728dbac48080e4ae059814e48b208a1a6fe legacy-trunk +34671 3313571c65743a9ec43cb96b2c84e11350c6e4f8 legacy-trunk +34672 8fa3c5869f51a7b5edb8efc153e69e8efce8250d legacy-trunk +34673 07d3c8668f8b471c8aae1a2e609b4e34866f837c legacy-trunk +34674 53d2813395f4ef8069e44d8187438ce2071f3d67 release23-maint +34675 7aaa40bc2b17c94df2c057edf3813a127da2304f legacy-trunk +34676 46b9fdd27ec21fbfa7dabad30a726bfbfc700441 legacy-trunk +34677 1904d8b038b668d9e98db6bdbd740de146a0d828 legacy-trunk +34678 8afecd36fb8e35157703d4490c13b9d4138b0c24 legacy-trunk +34679 317fcc5a184d48b894955aed5e8daec010241bd5 legacy-trunk +34680 22107c5a176e31338db8726366b5d759436f7b62 legacy-trunk +34681 f19625f3c198eef4a02431edfefc16246c3cc5aa legacy-trunk +34682 5bce9589ef0b036a97218b78c25cc81470d6f0bb legacy-trunk +34683 4edabc2976f73fc51328b2547cef13270175006c legacy-trunk +34684 dd6a510ae0d9c099443470b17c14bd694d7fad68 legacy-trunk +34685 3c1c81d642e0877ec900549a19d0d72d5ce48016 legacy-trunk +34686 b6c139544c16d6ab7a241258dc154adb0467f08a legacy-trunk +34687 e4f9e74ba56dc857ccaf68943d92358b4aecad01 legacy-trunk +34688 16c682e3e57f9ef280233c2126d204fd578fda02 legacy-trunk +34689 4b2c9e14b446b646de90be8a633e0e28b9b4e340 legacy-trunk +34690 ce96bdc6fbb8d4096cc2bdd20ee9741b64fb4099 legacy-trunk +34691 53e4b7fe0969c146932fdc903e2267b7efceb7c6 legacy-trunk +34692 d12f07c1c3a0707308119039825d827192d56919 legacy-trunk +34693 4ce30d9a1e0419bdf93d9a96ed7c72c240537be7 legacy-trunk +34694 ead4c61219d0f0c1761a27c76207656839824a80 legacy-trunk +34695 7fe201801c1499f885158d8697544ca26973ee70 legacy-trunk +34696 4c8160088b34754ae72aaba392e3e3f41c53d2c6 legacy-trunk +34697 86fdf8fe7f1720d10615b5ebc5c51dbd20ae71c0 legacy-trunk +34698 890f3c2c118300597b6b725684bd63b27ca016c9 legacy-trunk +34699 eb04265fb65b86b666a4fda25422c76b27516d2d legacy-trunk +34700 e543b3f0d90602e265e2acc4bf8b1a65232aaf50 legacy-trunk +34701 334edcd1e5ac61252f300e8d81ae5d60f02cf273 legacy-trunk +34702 830e5ffc6d25c704f8eda0b984eca59d1863bbf4 legacy-trunk +34703 fdc8a88a9a5a4344e4abf5d08ed9168057d3d9c8 release23-maint +34704 96001a70c5057f0b6f915158855ea427523fa70b legacy-trunk +34705 d99e022966c9438c588fc682860d8cca4b6fa5c8 legacy-trunk +34706 caa1a48da4ccdfcf0b6d10f3e633faf9b6e1f44b legacy-trunk +34707 4f6382d2809df4ae8c2363f7234c06a72bb618f7 legacy-trunk +34708 8326f64244c25abfc7ea5c10fbc04830c8a82175 release23-maint +34709 14d321466a0692f149c3c5af36f3ec001c03e6bd release23-maint +34710 d401790176395d59ea5406b38dd8a0a627409e89 legacy-trunk +34711 52de58087b2f3a45ecbcfd5315115492b7fad289 legacy-trunk +34712 632b223cb8e838788c934137dd5793927afb2470 legacy-trunk +34713 d4826e097a3febf284b8f29a5bebd091bad73256 legacy-trunk +34714 9fc5341fa6956a833bcba27482c8865566d1994e release23-maint +34715 e0a75a7570b40289f8c54f382f01b0a73804f8d0 legacy-trunk +34716 18df203b8e985482a4eb7f30e9c6ea19e3aaff72 legacy-trunk +34717 4da99f73a1df84d12362a8d27fffc08a062a38e5 release23-maint +34718 22bed2fdffea6b96584a32d96746dfbc0e671b05 release23-maint +34719 d90158df39c45312fdfe0ab508d76e6d872e417c release23-maint +34720 622a76bc02376939b0aa78791e872bb95d02bcd4 legacy-trunk +34721 278976b19dcca6f8473c84cfb3c52460d683a581 legacy-trunk +34722 5b77bc4d25b1b9df59f7f90c0c77b953788cabbb legacy-trunk +34723 4696c4b7f792b2a7aff3a2864d514a37b69e89cf release23-maint +34724 1fd81894cb973f2fe425bfba4d06eec84b37283c legacy-trunk +34725 753d72bd214b2c5d2f886b16527314447853fb7c release23-maint +34726 4224d807911c4a09f02eca1a24ddd9876f1349b1 legacy-trunk +34727 70f32f0d8ecf0659b5f1dcad94a785fe8c71f878 legacy-trunk +34728 2ddb1cba18d64396d27a4895699a88f3edf1ae0c legacy-trunk +34729 9628bb54a9e074ca22a28568212e07cfe7a93153 release23-maint +34730 46de3db9a5db5344b0d1ab050833813d7c64bd49 legacy-trunk +34731 32c2c799c9248e3a3d60a5a1bd8793040e678ed5 ast-branch +34732 270d59e346e6af89497aaa81a10ee2237d1b42e6 legacy-trunk +34733 c411a762d5dd6a2ea6f6aecdfe8fcf47c09e4f97 legacy-trunk +34734 8d413578eb1ac0a8e63971de902d61f07ab22acc legacy-trunk +34735 a4b913f937cdc917ac13d6269df109c960a12669 legacy-trunk +34736 17aa5302e08b217d0751e54467adcb5c65195781 release23-maint +34737 bcc7873c707e52eafe15f86e5d61017291e287de legacy-trunk +34738 b2fd7af17186906f33e4db81f4ddb462fec056ba legacy-trunk +34739 d2eaa53ceabee2a3cccc7ded01c6937ade0593e6 legacy-trunk +34740 21a10c3600b5c4d47924b98ca80e56bdf377e9ea legacy-trunk +34741 845f19b145a8fa0f2cd4f0f3594af6e1e7cc8ba7 legacy-trunk +34742 85cabe7b216b7bd05531a74724228e27da6d821c legacy-trunk +34743 0ac409dff3909159a972662395236fff96ff49b3 legacy-trunk +34744 2b6a10e0672738bea2d634fcafd9f0ab2d25a1a7 legacy-trunk +34745 024b4799a41d52517455ce85fec8924dd469cb00 legacy-trunk +34746 bf038986cb8fdf126fadf5356e081c7fbc2f14a7 legacy-trunk +34747 f967589df75125a78986ef9cdd514abd7c747055 release23-maint +34748 ce07118ee5d277dcd35fde63b30920c479ca6194 legacy-trunk +34749 7c55ebec48f577a5dbba80c5d56bd60eb3b5467a release23-maint +34750 da1578cfae182e54bb266b90f205f5146c372cbb release23-maint +34751 6d3e0e6d7be6159984125d85b56b16ce3352ec01 legacy-trunk +34752 4b6c7e5cb889b33d811ec403ee8438d013ee9cd3 legacy-trunk +34753 2c3a75c5483349b84cf340838ab8c3eb643a9892 legacy-trunk +34754 fadca17164c06c62243b32e8e037ae6a86edb79b release23-maint +34755 44ab242c9b8cf5aef5c83d8348d6960397543ef1 legacy-trunk +34756 2d690a95e4fd1e01ea481a96fd8f6a9fb571b587 release23-maint +34757 f71a21679436a510ccc465298855bbfed8c99716 release23-maint +34758 6cf09be0491de86be83367f03ef7587ff09c783c legacy-trunk +34759 4009b3992616a0d60c358a025d485c810311c40e release23-maint +34760 6f01700c180898dec3ed137d604f1a70cfde2b95 legacy-trunk +34761 9c846c3df6f3e024e0eaab4dda5b9a388bbedf4a legacy-trunk +34762 73d5213305d376d5049c848d58b37c310efe1fb5 legacy-trunk +34763 6dc19e48347a0b78f26b4476b26f928c6d7bcf08 release23-maint +34764 dd5707f71526ace94ba8558ba1a0baf09be8b5e2 legacy-trunk +34765 0ff69259b005f473f4f7956b20ed407c515ee2c1 release23-maint +34766 fd87ce1819fa378b225db1a176b40a98fd4be0c2 legacy-trunk +34767 d50e26f20f1084f9fdf1f526c19c1b0970914155 release23-maint +34768 f5eab628328664fa83034b7a60577a9dff2fa0f0 release23-maint +34769 3548f234831e099f190511b782869f61dd390636 legacy-trunk +34770 d3ae324f6c895fa0bfa90bbc204480e7092483e3 legacy-trunk +34771 456e274f86026266c061fd6942fff4bc1872e189 legacy-trunk +34772 5dea73dc968b8427df9e0e7b192b6c0583b4b616 legacy-trunk +34773 3d1f0df75a80c6cb5fd2b0f38ae314597a83c195 legacy-trunk +34774 38338c970f7d0799d379ee6111a4928013f5b1b2 release23-maint +34775 251717566e912f8bfafe25b2a63099bf943daa2f legacy-trunk +34776 f69589179c559c058f1ee596e50cf173b1f94571 legacy-trunk +34777 bf7df48012cb2a6813ded413212dab1081e82eca release23-maint +34778 4e11250564cbd3f0635a4c94094fe014b47431a6 ast-branch +34779 d6c7e5596247eb089b4331f8fef06785e2a318e0 release23-maint +34780 4a361bbb5278ca57e2b3c8b77a1c8436e0a27794 ast-branch +34781 f0a197dd212d539442bc7a6006c06cdce68708ce ast-branch +34782 f1433d3c6447d77c66963ae9f2efabb815a37552 ast-branch +34783 b0bccb9fb70a8b3a5c63f8ddfd11c537e117c233 ast-branch +34784 64ddda2559524ad813ac136b3a29c5ebde07b407 legacy-trunk +34785 4e31c261a66895c4d4066b91106d36a28bd75ff6 legacy-trunk +34786 0ac98878cc32b5c87c7a22995a0727b33145dbbe legacy-trunk +34787 e05fe177552064e319861d078606a5c6ac98137d legacy-trunk +34788 eb509fc47f0750868af9cd6110542dd18cc512d3 legacy-trunk +34789 41f4ce6c4e504e3241d2c2da6271eef9e9afe489 legacy-trunk +34790 a102da91640e346a9f9dfc82f59b7900432d3ca4 legacy-trunk +34791 0ec4d3ebd4337f1d8e798f0e9f7343af92933a85 legacy-trunk +34792 9314be0bbb64019b8d97bc594e68106bcfc06cd8 release23-maint +34793 5a0658c00879aa35f33c8a4188b3d4c5a2935b3a release23-maint +34794 783694d4d4cf0cfddbd245be30b8d57aa87b5ac9 release23-maint +34795 d4514ce14b967f7d96798a31f58e25cb663a6e19 release23-maint +34796 da14d806e89c752f6a7294a3e4a69bb074ec4670 release23-maint +34797 de2855b3f4136bf1ca0b77b02885b7d54c8ba1e9 legacy-trunk +34798 48695c839d98b3a272c609310495ea11e62a846a release23-maint +34799 5b515cc90b5a43efe42f46312b6bae10ef0093c4 legacy-trunk +34800 a52d74948dd4f4e3fb8ef112bbf542ecd1df249b release23-maint +34801 2a6fc4d261f8e68dab948a7d665fda52d4fac881 legacy-trunk +34802 2ba9a86965602d8e054e0f2d1c8442fa2dc30bb2 legacy-trunk +34803 622991cc1e3c58b51c5521a32a819cd9e1bead89 legacy-trunk +34804 36062d645fbb95635ebeb5015827f2ae6d7cfd7b legacy-trunk +34805 6eb473d680424c54486f9c13fe37834f6f349d39 release23-maint +34806 1f09819f508b25d454cb7fefaa1830b3da3c7357 legacy-trunk +34807 d00f01207837b67225f4e9abb82988ea8424c882 release23-maint +34808 e3025fe70d8bd04f722e73792f88c4dd6def78f7 legacy-trunk +34809 a2f6c6a67f2414099cc70193bb6038f75b6076f2 legacy-trunk +34810 b24d6a71b01f126598f06ef04782210b9e6633b5 legacy-trunk +34811 8dd159279576a5747e3f2ce7d57d81b8ed99eaaa legacy-trunk +34812 870615bfaedfb9e4b2e9c3fd5946bc9bf8c8ce4f legacy-trunk +34813 2f796c7596eca23f18c194d8a6c107d93f6cadbc legacy-trunk +34814 0a7f1a53c773b4ac1f5c8d52b2375a1e544888d3 legacy-trunk +34815 3861eb467c29e07ba6b3669760ddf72cb33b448c legacy-trunk +34816 de391e9d70ea167f1e81ba57a0ab3c6867731ad0 legacy-trunk +34817 f2e7646f7763161bbdddf276d747f56ff6f4f310 legacy-trunk +34818 9ca9d318af78b7d5f83f95637ea19d9bb2dd6227 legacy-trunk +34819 30382ab06cd1c2c0b904263d0f40440c7a1f8668 release23-maint +34820 d35f8799cf122205df5f8466a3eb32062b786cb6 legacy-trunk +34821 03f43d619ff4b8a550a6d1ec3386aa5f7b8b8297 legacy-trunk +34822 bdf60bea4177a78042c0f09231838c44c2dc7a93 release23-maint +34823 759214f1ec69107141f9a0042496fc62deb5c758 release23-maint +34824 113eafe8848ff587141c37a2b5adf107c42e1eff release23-maint +34825 61b70eb8d160b31951804f3b5c6465c694e98058 release23-maint +34826 86cf2b810f3a2be77b4088e1a9673a1f06d1f6c6 legacy-trunk +34827 c23a86215d9f7e1750f9b5ae4ded4e86007bee22 release23-maint +34828 2014f9c636fbe756a944ae37d804b41a06a6478a release23-maint +34829 0a63d4d015cf950f188fbcdf91ba55457d468acc release23-maint +34830 915aa0e69485989e77e9460894b0c737cdad6fe7 release23-maint +34831 a096d7b8ec8a29e12036a58e572b66c7794d4a1d release23-maint +34832 972e7fa1d5986a5b177166d3a15a891de6e9daa9 release23-maint +34833 45cb284b84d3ab265aa6f2447a9e7fac6d54ba20 release23-maint +34834 d7630ce7aa9fd5b1235a652f399ca7f93f0a5ad0 legacy-trunk +34835 9d626688ca7bceb062baf1c4cae1b9a14f65165e release23-maint +34836 7403e38a2f107c9a9a824ee677c0aa793453c5ca release23-maint +34836 d21d4ba2f973467d30794a3d2ac493658180e503 release23-maint +34838 5663519cf06ff43fd242e4c5f5b39754b64fa792 release23-maint +34839 e96e39cd2d142b1fc3b589818855c094dd8f259b legacy-trunk +34840 ba886ae322ec169fdfd3f1dbd44c09bbe9d23af3 release23-maint +34841 60e5d8b7e964e6ca914bcfe4b8ebe06027d76481 legacy-trunk +34842 835b79eac812ce908f3b60fdfa348b618389bbdd release23-maint +34843 8e80f551b0e9681c45bcf85c8bb8d8831a8e0ba9 release23-maint +34844 38beccf4a0bbf7770f0ed5b8b9e459bc817a3eea release23-maint +34845 b77fd469ee3541fa8f7bf9d80a0cab5b1a15cdc5 release23-maint +34846 69de5aee1fbb510d1d56e4ea1fa0ad195f9d3cb3 legacy-trunk +34847 7c8dc640423a5148e17b34137a765c4136d68d35 release23-maint +34848 5352a6ebad9ac4009c30bc9fe8471cc221aaab26 legacy-trunk +34849 17e6e9829c7e50bf1627299e780387214d5a0044 release23-maint +34850 f108db59eb76a26b7a15a94276c107e408e29b87 release23-maint +34851 b028fd54194198a9e3123453dfb5d217cda8db06 release23-maint +34852 9395cd92d2cd7e5b6996fc3bab6946d45f76b45d legacy-trunk +34853 be9ef9b92d6138c0b70fc7d019432e6c39c9d9e9 legacy-trunk +34854 21aeb9832c1d328042c4ff6cd2da117c93e9e688 legacy-trunk +34855 415ef5521a8afd85298f035bbf6b16c2e0157842 legacy-trunk +34856 c953fdb51cdd7ef8813ab20b958d5ed0c70f0690 legacy-trunk +34857 c6f16504c8c2f5ade96379097e1a9c657e889430 legacy-trunk +34858 75b63e5f03f21216251b41dd8c473e49c1d58f8d legacy-trunk +34859 89d26e03c65302b015ea35184bfb239d9461ae50 legacy-trunk +34860 fde74fadf780c9a8139bcc1feef3c683c2b1bdd8 legacy-trunk +34861 7aad24caddb5d0a8f9596dd2d92375caf2217740 legacy-trunk +34862 5088a8234117ecde2c644312f3bc7728ed17602a legacy-trunk +34863 eb127e401c6449d3701301ddfe11a2165af79b4d legacy-trunk +34864 97ebd1b2f468557d03b3ada26841e9497ed65772 legacy-trunk +34865 e9f3b822ce02ec986cdf529422044cfa5a5429c1 release23-maint +34866 9e750753010ad82cbbb6d32d01ebd7fa92001937 release23-maint +34867 052e4c5722615e1f4993f4b543e7dd2506fd4ca4 release23-maint +34868 017048565936b832ab5c4916bf7f2cc1c42c698a release23-maint +34869 d362273d468bd13e8135b7f97d1f7906ba96daf0 legacy-trunk +34870 9ed7525594777ee4fd5403dfc47b9296777f8b20 legacy-trunk +34871 381ae326ee6555e74df7447fb0b97298925db22c release23-maint +34872 dcf5be0f0a1f9aa05834955fd185a029669bc6f6 release23-maint +34873 8518c4681771f704042fb8839d650a6266626216 legacy-trunk +34874 94c1bd7a55aef5448fc695f28c53f1e5680d7384 release23-maint +34875 60bc11e300682ba4ad091e4d4a4904c2b3e89124 legacy-trunk +34876 614ad5388c9de00038a541739a1dda59604faf20 legacy-trunk +34877 d1d28cca42c197f1eb77c9055ad2a7c237c1b712 release23-maint +34878 1ddc86b58040062bc5cd9f7cade0baae1b4ca8b2 legacy-trunk +34879 26efa8a53925943b3fbbfbb4340b9c790bb8a708 legacy-trunk +34880 94dff4a02ca30677b6cd038df533eb5d8f21f8df legacy-trunk +34881 9f8c05587213e1d88515c0f5a3f53015ac055822 release23-maint +34882 4eb5f0cab09e4ad1e65c9d171d43b75030adf879 legacy-trunk +34883 e1f1fb74451b9c0d0166611ee6865d914ff34343 legacy-trunk +34884 2a0782cc151f840417cf1592b8769b7f6efe485a legacy-trunk +34885 4a12d91af8c3f95f1487896aa307b1144f3b1213 legacy-trunk +34886 c727ad003fdbacd2be8f4dc40a396961ddb78718 legacy-trunk +34887 03673773308447dc936de699e5e8bba2358d9eee legacy-trunk +34888 aab3612f2c352b0a1a49081e0b26ba0c903e60e8 legacy-trunk +34889 885dbf1578bcb06bc5ae123ad26fe026e631d9d8 legacy-trunk +34890 063b7d225e8ab8476b6d27f3783a4bb50d5d3e98 legacy-trunk +34891 45cabe9cd9c9261f277fb788f1860fc775eefb17 legacy-trunk +34892 48702f19ccfb3eb0bf54b7d6d9ae3db332913da5 legacy-trunk +34893 4cc16615b07245fa4715e80673c47e7899b21539 release23-maint +34894 c22eec807224742d3b138378cccc38aebc8450b4 legacy-trunk +34895 ca8a69969f038f50616205b9ae5383235559cd54 legacy-trunk +34896 e4fb6164158c784d93dc78e3245262a762ebd52f legacy-trunk +34897 c9bbc967ac9f609f91d687576f7b6ae31eb45dec legacy-trunk +34898 88e80a04328a3847ce0fa95d5b98c6e623312276 legacy-trunk +34899 5cc1a400a02c311a4f1c598978cdf5f3eaf37c34 legacy-trunk +34900 381140e7e9d7715cfe71ff7b49f517cfbd7e4235 legacy-trunk +34901 eeaa3660671cb6ad696c03bbc38b28c3951e8a5e legacy-trunk +34902 1bbc2085f213b0ba641285b9f1a6a55d16fa30df legacy-trunk +34903 21a27c21a2c57ae3b670f1f79154d9686c9d5049 legacy-trunk +34904 4942a0b63c8ccf1fc5d11e7cbc97b6c17c0ce620 legacy-trunk +34905 e5d97ab710a225d3e4cf16b8cff9e3cde70c965f legacy-trunk +34906 c99620cd9c6552959dfcd864959f0c484539575f legacy-trunk +34907 10c4cc352d13a5be482608f3e159fbe7cd22d127 legacy-trunk +34908 47eaa38b29cbf65579e0bc9e7965139b50ef8a68 legacy-trunk +34909 74c154708b0ca19cadf765c0511883b65bc9c603 legacy-trunk +34910 f28982060b20c0863a0549fe4f15a2e8799853b8 legacy-trunk +34911 f2e0d630cf39fe74bb75e2fe2e4ecd6a136f5350 legacy-trunk +34912 b2a0cd2e9d551128d3db8afb3d55ca1c06eb2d88 legacy-trunk +34913 c85a9ec5796cd09c96ab61f53caa521860db4da3 legacy-trunk +34914 292ad135cef14620ab4b8f508cc0ca2626f79b77 legacy-trunk +34915 e4682af7aea9ec52d322986e2ff9f834bf0a369d legacy-trunk +34916 22f09ab0bae946bbaebbe93892c34f616f3a73a5 legacy-trunk +34917 1ad0df87ed6c2e50088254050359caf207cd3470 release23-maint +34918 7a6d0814b561ed1adfefe1987c9cd04c67bf8286 release23-maint +34919 229bb9f2e96f3fe15a11a51e3be455aa547ca71a release23-maint +34920 d6cea228fb259ba923520bbf34293b69dbbefde1 release23-maint +34921 6845697353a31525a8a025180ee8164f253aa610 release23-maint +34922 d9811759e7debde01a2a184fc18b96ff5d61e071 legacy-trunk +34923 504943c89193da0dc13fc07f660dbdf981f4529f legacy-trunk +34924 63cc9fcd285e4b3fa54109cf3b4a96c0c72955ba legacy-trunk +34925 e50658b3df0e712b4f967971338b87d7dc77e827 legacy-trunk +34926 02ebe345659531813cbd6968dd2f8ee06e590e2e legacy-trunk +34927 bfa0369d6760b228b439aa2815ca5a30bc0529d8 legacy-trunk +34928 dd789072d949030e56d5327c556eed0c8bebb0f5 release23-maint +34929 cbbfd4127e24754e6c57fc2cf7665eda10f6ad12 legacy-trunk +34930 3771ff99d5f28ad012a2202e7387e92d34fad6da legacy-trunk +34931 f388e83f8e4338e175f2753ec8ee5c9103fd7d92 legacy-trunk +34932 9493dd222fbb9b086b03e989bbb5aa605473b13f legacy-trunk +34933 5e97757d87e73037f0762c3d1a8386b0a9f6ebc0 legacy-trunk +34934 c06b570adf122bbe8c21085e161997cc3624d173 legacy-trunk +34935 4d0756a13f6b9e4c8edb71b627dea4a397a41de5 legacy-trunk +34936 5b035e6e44dc68aeacdd6e1d0698522871a70b7e legacy-trunk +34937 3607f23352b98598b6580be0d6d2947bee4189b8 legacy-trunk +34938 def27527728061a419d0e898a7c79a88c7434854 release23-maint +34939 89767c18c61608b6eb9df4fbc023f91b9b07e5e4 release23-maint +34940 88e00021acff6eb8bcfeba081ab36063bc935a20 legacy-trunk +34941 97062d3658fe7c70792bc24affbf87c664561289 legacy-trunk +34942 0f709cea43c716f1898e65b9329761bb1b4893f3 release23-maint +34943 ea3c6f6e46791c6fb2e796d72c0fb0b16e06f867 release23-maint +34944 ede518b0b9da79f8542e8eeaaafc3e82d14fd4e5 release23-maint +34945 c2967ce7c01e45268462a05e79ef3040f2e8e4cd release23-maint +34946 955cb9697767fe299517e5f1784f55f4e3354558 legacy-trunk +34947 1a988a06bd336b76566e06d941f4830d4cd5ffce release23-maint +34948 b80a3b82dcf9e2e427d5fd843039ddd1fe869656 release23-maint +34949 395082dc219429891dd716458fad18cc851f2cc1 legacy-trunk +34950 64166eaf62124b010ccfe924fbfc9e506bcca232 release23-maint +34951 a5922b9d0379a07685043c21393f08ee04f4bbb3 legacy-trunk +34952 38855fda428a68d612974222ba457a6d71a28d94 legacy-trunk +34953 2b0c785ab30a6e227d9d0560af49ad6b2359d921 release23-maint +34954 67b9de62ecb86927701c1fc3330709979dd9a51f release23-maint +34955 9a3a16b82dcbbe4a0ba8262a5e6ea0ad3fb5c131 release23-maint +34956 fb759e281a2f230085241d4aeb3647b338f88dda release23-maint +34957 d099ed932993f93d9185a1652a604ae8e9d6915b release23-maint +34958 5dc5757b118abf3ccf67a579bbef7bf0eea5b1b2 release23-maint +34959 b220b590e2ea8ea740cc7bf9f31cba7d52ab05e1 legacy-trunk +34960 acbc7563a8e7edf735c6f468308f471c4d602678 legacy-trunk +34961 a6f34fba93706987c7aa90be77ac04a044d591e3 legacy-trunk +34962 4edf200a81185a47fb7461f43ec9bc4367ae76bb legacy-trunk +34963 f0ae313a2ac86472d44b0864b8d1a58a7a53b0fe release23-maint +34964 3c4c087494e0cb8841904282069a8b2fe64e1634 release23-maint +34964 a8f1286f217129cdb53e320ee125d2c2c80e1377 release23-maint +34966 28eb0046ce8a763a8d3addefb3daf3b4afc174fc legacy-trunk +34967 df8e879c8d76d50ceddf12cbc1de7768b29cf4bd release23-maint +34968 9c6a51d87930294466fea866ec239ccb3f0bd689 release23-maint +34969 1cb87dad263d77dd40c2ce4e9864cdd9195d9cdc legacy-trunk +34970 8ea3a82f913f6ca3c09275b4b5f94358a51053fa legacy-trunk +34971 ce165be8c6b8986bd1f125e1f4d28db7ec1e2e69 legacy-trunk +34972 353a16033f6a4ed695890e5196e95c271b91d277 legacy-trunk +34973 35393a92acd1d3711342321551ad7842eefb36d5 legacy-trunk +34974 dfd0114cf9ece7c620d412f76635dad273bfcb53 legacy-trunk +34975 e118e4e8e2248e4d65b3d73be58a91e5742a66e8 legacy-trunk +34976 892116a886e0051a8d32afc3a2332d6a03a4b92c legacy-trunk +34977 c1402176e1a655b235f05c9d03315fa094193956 legacy-trunk +34978 f6064f8c14604e3cbf7833e91156c930a38501ac legacy-trunk +34979 a807726df4b7f954ddedb1f3af666fb5a5f41ce4 legacy-trunk +34980 552a5355d8a8f635d17a28657eb7373ef1e6f547 release23-maint +34981 706c96e151a089f248f0f27cfe6deeac90324759 legacy-trunk +34982 2a8f5eb8d83e1302d54c5abf366a3fe02b1d0ff5 legacy-trunk +34983 be882a9a3d5b5220ddce023ab01130470fea575c legacy-trunk +34984 91b59f2fee7c1f116ea364ec6d12de722635d2e6 legacy-trunk +34985 47129152cb7010a7cb6675470e4911051e1277d3 legacy-trunk +34986 ee53280546ce7d3349f931684be31dca4594d737 legacy-trunk +34987 1e16cb8b02219e6369ad8accfb534c47421fc355 release22-maint +34988 cc7f29ac2e981641fa6879a08174ef7f9c094527 legacy-trunk +34989 90560a9cf3e8b9a1f70f523ec536ad2894599d6a legacy-trunk +34990 0be925d16e293fdff1d3bdb2679f647d156a69b4 legacy-trunk +34991 53ae1c3d4a7c18565a9844442dd27fcea4990003 legacy-trunk +34992 0ffb626d78881fe42419769250feeca9a9947ba4 legacy-trunk +34993 a8e3bb23f5a8b7c620c5b7ea2b1fc2c3261917df legacy-trunk +34994 e26fda9de67f28944841f2060fbd62cbcdbb26b5 legacy-trunk +34995 7ab080bbd60a685c317ff7f7941a54a6a1add1de ast-branch +34996 55d42aaeb0eef86635969503575c9dccbe9a9a70 ast-branch +34997 7cc11127273e7e94c74ba798c614895e26dd45ca ast-branch +34998 ea6b19a10a016402787db01a04c835f5517c6e80 legacy-trunk +34999 29c1b7b6fd7e5792578ebf9225ab38581739e47a release23-maint +35000 25519d6c97b86e7368f5802f8595745012ae631f legacy-trunk +35001 802d937f596abeb04b32e91fc7efa1e1566bdbc8 ast-branch +35002 1ae267994fa0350aa5865c52af014f713772f6f3 ast-branch +35003 6a11695fe698eb2c844a2671a6b77e820e59c568 ast-branch +35004 090816bd8bac001d652bc9d7a9c4364c433fb8bd ast-branch +35005 24d34ab4ef7549c2a7c1526a2f2e531d58bee744 legacy-trunk +35006 8c13ab69ba4f147a5cdef04d5fdf7c61ae3bfff0 legacy-trunk +35007 1dc2659ed9fc39ccee49e8b458d6702f359962d9 legacy-trunk +35008 6c3c3b771abcfc9e7bdfcd8e2511accd41af2466 legacy-trunk +35009 31a2809024f521b4a6407d51c02a371e5bcb6654 legacy-trunk +35010 57553157c1966c279bd23a11d29861b7910c22c9 legacy-trunk +35011 3158dc1532fa173ce1a2c09e4476c356df29806e legacy-trunk +35012 b87d1998ef0004d3e54d6b6959234e2eb04465d2 legacy-trunk +35013 8b62f4194a7e79369890bc565e4cf4eefd969624 legacy-trunk +35014 d6d1efdcc5fdd44b270a2d8563b0c66398f6e659 legacy-trunk +35015 139a6b6c150a59fb87f4d3a12ff2bf777e39e487 legacy-trunk +35016 7366875a3cd707cfadf4f21d3d205e48d44799bb legacy-trunk +35017 3894654b4848e1756e221a80a7e8d649a70dba74 legacy-trunk +35018 1c0e4a52673aa5838d2a72177b4de97a031df048 legacy-trunk +35019 fd4cbbeace79ecc41edd31b3316b2a5793577789 legacy-trunk +35020 2cd96629fe8d1480d21387025fc7ff628a89b94c legacy-trunk +35021 ec4a99d14ca4604d242f759653434e7ce6b38745 legacy-trunk +35022 868cace2219ff72f8ee5ca66b9fed00ba5d545dc legacy-trunk +35023 8e70892a9f25cb740b2c8524ce23503603df9a5a legacy-trunk +35024 c854a1f2d19b8142274e0da78a080b68b8ccee5c legacy-trunk +35025 2c1ba241b3c07a28c0456533707f9afb857635e3 legacy-trunk +35026 28d00b1a844760640e58bddb7207ba25984da1ac legacy-trunk +35027 284db2a5f620b085ff1a4318c8e321221d982f3a legacy-trunk +35028 26eca708b6dd675240f2181592185a018e9f371f legacy-trunk +35029 ad3faf52e19e403adeb10002a10e23e0b28a7d4d legacy-trunk +35030 7ea067d749a006604b430ce19583b42b628e8c3f legacy-trunk +35031 bf8402a56fa427b2551f313de0233c361bda3761 legacy-trunk +35032 74c073ba6c3b2a42010af9f2106932a0a8054a11 ast-branch +35033 e401c0f29f50d88be40d42878975fa4ba2108ae2 legacy-trunk +35034 38b23e6d4c4b964fecf66f628952d549b8396278 ast-branch +35035 e3474ed80a5ef7a0053eec0071dd33530a363140 legacy-trunk +35036 6d418801f142dff1931ee4a452ad268663d231c4 release23-maint +35037 744323b768f0d4ae99135f08b8b5465b65b6daf7 legacy-trunk +35038 c53daf35bbccc0a95ac37a3d470bf498a4305cb0 legacy-trunk +35039 8737bb44e22fa8dbf63dc7b6cc1a78da79f757e1 release23-maint +35040 061effabafcbd7f451425c39f29a4326c5fb1923 legacy-trunk +35041 dcd743e79ce356ed7094b41952802ecaa9fbf99c legacy-trunk +35042 3368a4d25f177dee618e74c58153680298c5f7d2 release23-maint +35043 583d5aa8101ce3a8750b6940c668c1ea4859c9bf legacy-trunk +35044 5eb9e25e63fd5ed8640aec1594a5ba9c0c17f000 legacy-trunk +35045 0ea8ebeb6aa2b8a58e68ed40130882cc03c525ab legacy-trunk +35046 809978c304be4b96c68731bb6bc2bd665280c6bc legacy-trunk +35047 fff1e85d195c17550b3e54144a0e0c4c6027d657 legacy-trunk +35048 cd7b70a4c440210a0506ef05e6770114547bbbe4 legacy-trunk +35049 a53190b38727b770640038261ac115f5ee7ba5f7 legacy-trunk +35050 b674ab5808baffb2607ab9caee894e61cc39d702 legacy-trunk +35051 099a4a2f1f77caf9be9ebfbe541f91d3cca65a70 legacy-trunk +35052 33294206d539f59f2b156464b1d7b7e8d1ca38d4 legacy-trunk +35053 ca4374662632475be7cc2c394ed02bd14148289c legacy-trunk +35054 ed689d0c63c13b1b4ab4081f81f2a3ba6e6c21e2 legacy-trunk +35055 96722377d412c214556ab4f77d06994dfa7a8eb3 legacy-trunk +35056 c6701d84a3fa1b3f7e0ff4a434f603703a7fc1da legacy-trunk +35057 af946db67afc44d4ba6ae25d60cfb14372c6167c legacy-trunk +35058 b4532c246a3a0ec413ccfff8888f63d39f81c632 legacy-trunk +35059 3cc0d8fd4e2b681acc8183f635ca26027e445fc0 legacy-trunk +35060 8c7090908cecff69024f5ee528f2883506ab5b91 legacy-trunk +35061 477f0a252150d75b3e517b1a8bedfdc3d84f56b3 legacy-trunk +35062 a6bc131ab6188c87c562e96246285e927e5f19ea legacy-trunk +35063 b67ca3f688f78ba202201c2e63819086fe71447a legacy-trunk +35064 38514882a5c4c45d0d04fee18e8ff7d4a26689ca legacy-trunk +35065 f66939f385235d664b68599876bc4d6df3913b7c legacy-trunk +35066 0baa2660a568bf1f70bb93b8a1bebd69ee74429f legacy-trunk +35067 416a5d25cba68d2a1767c6664890fe0ec0667642 legacy-trunk +35068 76ed8a78839185737a143400e8b58597096906f7 legacy-trunk +35069 4727c81db9499087efb967f30e6a5856fbbf274e legacy-trunk +35070 6ea5ccf065be042ac63edf06565e8d0da4f67a4d legacy-trunk +35071 4ac6a0221f7d4b87dc9789945f79bf3ef62d1223 legacy-trunk +35072 05423c3261d415f5867140ca1465e913caebaf61 release23-maint +35073 e8dff11e93587965df49944c88de5ab3b6a040e7 legacy-trunk +35074 4915fbec608f4f0355dc1864aebe8c0628d027af legacy-trunk +35075 fd6497cf7228e82698db48d47ea7183f050a2424 legacy-trunk +35076 0c1d2062dee3539144acb87b2c2ca19a8eb697f1 legacy-trunk +35077 a0ae2d9de69111d0607fdccaacdca4d110c7bc77 legacy-trunk +35078 bb3c3c98cc1baba1290633735aa6696e52a3bd1b legacy-trunk +35079 f0e2a8536759fdc120e434e761e69cbe227d815c legacy-trunk +35080 a0b17732835a20b248ac85efca9491aa5779f705 legacy-trunk +35081 a340c50e924a374ca1831bbd90ace61165d22044 legacy-trunk +35082 55412a43d2d3e1c42106a0e974c3825768322cb6 legacy-trunk +35083 eaa1a4b743287bbcfb6c48a752e23586dee81b22 legacy-trunk +35084 a32aa7906251495c41b2842ee9a62ce0aed95452 legacy-trunk +35085 efe07528979350ef5a07e0530f210a055847ea62 legacy-trunk +35086 ed20259a1ea557dda518d6cd290e1fd2503c1c10 legacy-trunk +35087 796c99f0fa2c62cc791ec34b0ca8e1af1cfbf891 legacy-trunk +35088 d8c2db782bdf5ff35211a015578c8351f378eb27 legacy-trunk +35089 9140ece3db0363392386288eec9960baa754da8c legacy-trunk +35090 c088584f55339e9aa4a54fac6b0fac4d36685d86 legacy-trunk +35091 586a49c2c641e538e547f0229a3a480b40440a32 release23-maint +35092 17ca347303d3f13e2c1ca3d55fa823c844024766 legacy-trunk +35093 0f394f439ad6a04f63117c575d563a369f6dbc96 legacy-trunk +35094 ec75ff8c7721219d3c42aaead8ffa8abfe79990f release23-maint +35095 f166911f778b8571cd131e0aae5dafb2a81c4242 release23-maint +35096 f7a05ab50d3b4e226720ae6db52a028f9cd0a6fb legacy-trunk +35097 b2a820e329a90a33e56c87e6b46e7edff57e4ddc legacy-trunk +35098 57bacb119a976825a2daad18a3d08223a8d1c5dc legacy-trunk +35099 99891b888cfd29e9f0eb50186c38877b78e9ce01 legacy-trunk +35100 1df5b6a1dbf6a540142c1e36134eb0bb84785bfc legacy-trunk +35101 b3d65326ca66b456da9c09f7b0c35a322d87df4c legacy-trunk +35102 bf36c11633307fd196cb29f8d66e8030e3572cd5 legacy-trunk +35103 6a8b122aeb2ff7a46b201924395dfae57c73daa2 release23-branch +35104 a6284e9f30a2e6eb299e1b1217d50309dba21620 legacy-trunk +35105 f84d2bc6831d4866f9af45face8df7800cc00a02 legacy-trunk +35107 4e40eff1ad186ea289c8bd86d931395b475fc656 legacy-trunk +35108 d3258f43d484bf1e264d2e54d859c8c7a93f5784 legacy-trunk +35109 631ce23f88d6ae597eeedbc7ef75ad2a1a3a315b legacy-trunk +35110 f38bd393e95475b329e2b5970e71c04d02aff4b2 legacy-trunk +35111 9da94e569d48bbf8099995e5d67e1d36c1575003 legacy-trunk +35112 fc57200f70f24dee4a1e9a966ca2d06b267e7107 legacy-trunk +35113 64ae832131e14074cc1f757b7d14155e7a6e8e74 legacy-trunk +35114 4055375dc05ea2198d2eabc4027d8372239a67ee legacy-trunk +35115 67a1eead72bab4bb87cd5cd3bca9e90dcd64bcb4 legacy-trunk +35116 e20fc1b802051a02012dcd4c0a0f8111dc73469f legacy-trunk +35117 46ad21b5bd334c496374e35c879f7db9da0bc136 legacy-trunk +35118 0aa6441c7fe6d8bfe9fec4b6e68d9808ff581871 legacy-trunk +35119 5bbec8f1bf6d650ceffcdfc6e54100e835ec7ea1 legacy-trunk +35120 cb9231ef3bb93eae31df3eb40050205f86910e53 legacy-trunk +35121 887ce39f95f2ae9818fdc59f9daf7b963b90e3bb legacy-trunk +35122 4067bf48154d374b190473e0f00bc9d9e82ef7db legacy-trunk +35123 ec0c906210bfa3205396ca33e1aa5e88025dc621 legacy-trunk +35124 aca1ce1b4b6144202d6ccf59d69148b6e2e4c180 legacy-trunk +35125 9169d79ed3048e0811728ed02da318e949549e70 legacy-trunk +35126 cef613d904957cfbed8f498b0d4bfe6a5f0d972c legacy-trunk +35127 c9bed200500e4f7704ea04d9680ed33da872cd0d legacy-trunk +35128 c87a7e813a99f63defee7c7b8754f4ae19c38a80 legacy-trunk +35129 38dcec2f7b03444a50338df95b163d92afb68e66 legacy-trunk +35130 3aa20a82de867f6055134eb0052c79235c30335b legacy-trunk +35131 40d725077dcb0d48f9dd14b490042c851a7545f1 legacy-trunk +35132 b9057a6763d7d013c8b468e7ead9f4cc83299654 legacy-trunk +35133 b3d7ebc13d7d5eee0e58f78e22396a4b95be4f66 legacy-trunk +35134 0fce5b173a7402eeb0e6603bbd379c941749608e legacy-trunk +35135 25a80164cc7afef4aaee4a4d2bcf22789dbaf213 legacy-trunk +35136 897de9208199b96dd6b11cd30155db4811a6cffb legacy-trunk +35137 12cc336828e9b271956f58baed9e1e156e6e68c4 legacy-trunk +35138 9005f2662a70eab22ca5093d6ed50297e4fc2f6e legacy-trunk +35139 7407a246dbe02f80c9186ef080944be1aa89997e release23-maint +35140 ff9a54953c0bfea77e52d0439051e4950523c99c release23-maint +35141 69a365e47ac0a20965c805747d2e1f782275c8fb legacy-trunk +35142 1dc54225a4c22899a696594264164b5e33f67548 legacy-trunk +35143 e7124e26925f64b5db31ac492ff91e3dbc1a657c legacy-trunk +35144 690105fea59d38feb34031a9ba694d4b98a1e922 release23-maint +35145 6e3758ed1ef412a92e16d15fbfe6060b29fba99f legacy-trunk +35146 bbc944e1feccb611a947bc89cd8be1f1ea068426 release23-maint +35147 266f226f471d0465259870b938dec083be02262e legacy-trunk +35148 ec8a4685b360666871eeed78f7585eb561d81d92 legacy-trunk +35149 14dea6f8b0c344fea5c91e767f8677c32000a873 legacy-trunk +35150 c380dc29304ae1b31b8839539cbcaf7dbfb17b99 legacy-trunk +35151 f7f42f3c3fb4757eb46190eb5e4b7b529174f8b9 ast-branch +35152 a15115290e13b28fc8a634180ac5bfba7d24e036 release23-maint +35153 7fcb35552d53a34a087ac2c3b215be834b60be3d ast-branch +35154 0380878f3db5493149ae4c7291a5a15c73381081 ast-branch +35155 603a9eaa74e155d8dfa69b357e10e50ce9dcc832 legacy-trunk +35156 ac4a7ba54792904ad827f2e98673f9cf809ff410 legacy-trunk +35157 b1dc5e1148ea34efa5cf7b7a8fb2e6e4efd5ecff legacy-trunk +35158 be56fc485e270d6e246feed8179ff2318c5fc3e1 legacy-trunk +35159 7be5538059493e63fa8d16d559b7dbf8ea7661f2 ast-branch +35160 561fe7f66515e09f90121024ca60e8b8790f97c7 ast-branch +35161 c4d3e7a1ff869f0fa65ebd0b0cca9ceaaa3366ef ast-branch +35162 61a20df4b0ef5fd793fa98a0c9502183083463d4 ast-branch +35163 b81480f7cffe619a9417e7df08fb33d9cd284f13 legacy-trunk +35164 186319cff4b224e4037385d5f5f6e08dff081c0d ast-branch +35165 7c88a069a1439a09e3f5def277864894e6b8654c ast-branch +35166 8b6084848da189a0c679bff4409c424f0e4490c3 legacy-trunk +35167 66a4230f945b148eb3c735e0d4d761ac99b95466 legacy-trunk +35168 8f47281fea7bea4c955f811485bbf03bd06c2940 release23-maint +35169 46224690a3655a43ddb9af34ad6a4f621303cf17 legacy-trunk +35170 f2fd4e5ddf195ac2335d0253833d3a6ea7b459db legacy-trunk +35171 e4d73ee8d4e16ba4c4a81966b603a7af719328a3 legacy-trunk +35172 8d06c192f0e6d3ec9d70baa09d0b465f1234c94e legacy-trunk +35173 adb6dffd8dd5314b453146158074559bb62c527e legacy-trunk +35174 1ebd0626d176108329b7015724fb87fd22ef84db legacy-trunk +35175 2880ceb8119dc1b525e35053d97318e30def5b7e legacy-trunk +35176 e8b96b2bfa7b20fcd817747a132837ccdbc8da1d ast-branch +35177 8f8bba0a75b4cd0826a5a5783e393261e4dd4caa legacy-trunk +35178 4e7cc50b30a16438f714b4b36dacb6efab4a4ab9 ast-branch +35179 501daaccbfe0cb64cba0a94c3fcda0f00c0c44f7 ast-branch +35180 d667e33e02523fb7b0d9db31208d06f1fb85a3fe ast-branch +35181 65778352066bf94f08880eafca74c8f31819e8bb legacy-trunk +35182 374697478b5ac02e60abb583a8ed6f0524fd8875 legacy-trunk +35183 f76feb73a0e47169a3615b928d60d06d908ddc64 ast-branch +35184 6308adf172f480350724efa0756fb1c39dc4bb00 ast-branch +35185 952517798cb5d30366f4953b1126f0eb779036df legacy-trunk +35186 63fa60f2d61ca836b5e2d0959ded1c0028194aed legacy-trunk +35187 4a9e56368c6904c39251c82ba701eb80003f6fce legacy-trunk +35188 3c57a1c3a87aef1388564f9059cb4a87f1623c78 legacy-trunk +35189 3c2677c4a2bf369e81fb6faf8b13dc64d2444fb2 legacy-trunk +35190 16b315df13ce48f7b3acbd5ccd6eebe0ef84c532 legacy-trunk +35191 49370769267194b769199854a7f5d816f1daf8e2 legacy-trunk +35192 a2fe1a35800a06d477d250c24363d9800fac71ad legacy-trunk +35193 afb4c9726d1a45a231d4fced9d5773db15dfe293 legacy-trunk +35194 a282801b06b648df0c8cc46012285a7abffbc69e legacy-trunk +35195 1219f1162d1d1a95897134f5e649651dbfe2e8f0 legacy-trunk +35196 97bcf2e88ceb8916ac8c5038988729ecb3905cde legacy-trunk +35197 16d269866a4daf7bb2bea31f215e1f6f8971b604 legacy-trunk +35198 dfc1819b4eb4732f9a1487655a283458d1c30a02 legacy-trunk +35199 b4bc83f2fd04d9d211bf72b81b0082f7d7858b3a release23-maint +35200 92565ccce92b80cad7a35fc476e30fb97890d7a1 release23-maint +35201 66a550e9b2fb75c2e212361ee0984e98fdc50b8e release23-maint +35202 bb7146d117fbd390ba48a21afc7075fae1764ee8 legacy-trunk +35203 3cc3cb79043f721800bfbb13722d7abc1197c018 release23-maint +35204 d4165d12f73c19f9651eb9aea8fc78f54b9d2d95 legacy-trunk +35205 37d501b9e2d5bb0f824b6a75c8e9f3b684bf10ba legacy-trunk +35206 566737bfaec95054bdf45f2206927647e69e8180 release23-maint +35207 8ae88db7843c1f0c0a6e18a02b8083ecb92f5b09 legacy-trunk +35208 c5824c8c6ba7227577ca2e9591340ebb23d496f5 release23-maint +35209 032cb17ac2d6cbfb7ffe4d365219b795c4b40ea4 legacy-trunk +35210 cc10b010f40ba1e4e2594efc45f5c5b77ea370db legacy-trunk +35211 42003c8600f4d3e37d17ff48705bf8c0fa6ca5be legacy-trunk +35212 d5c047807c697b341ccc3515703d4813f7c09602 legacy-trunk +35213 a577410e5a60fde7042bfe72950adf63490b3497 release23-maint +35214 aabd9b54e469ef88101c55e872fa24fdbd989788 legacy-trunk +35215 85f4932d8ffd9970055743bd161e4a84e1eec685 legacy-trunk +35216 f04ccc288542b6db62385f5661ba61648582683a legacy-trunk +35217 44d4438ed57a5a6e8ce0394b4581fdddfd6ce954 legacy-trunk +35218 de2ed800fa50fa556733c9e025d331fa1b53eab5 legacy-trunk +35219 8495b027bce366099254a27b1bd8d24555bb80bc legacy-trunk +35220 66e43f25046da5e7053bc0c69b00b4f8d198649b legacy-trunk +35221 1dc96d87974eb688b20e12dbb41795702582bb26 legacy-trunk +35222 174dcf171df52c3f53241a053bf5b0b2b481da74 legacy-trunk +35223 7b34d849c2290065d093cae983d7bc7024ee9680 legacy-trunk +35224 3ce4ffac27ab44c2a19e0a5e31bc2d87e604ee98 legacy-trunk +35225 308c193f51e317856cb1bad42b6ed0a4f44e18f2 legacy-trunk +35226 25b30439fe229f0026e4d7d6323e6efc10188156 legacy-trunk +35227 ba9aaddeb956847ad064ec36c2468dbd0aea3d71 legacy-trunk +35228 f30aaac00195e876532f353a2ee1d93d8f51452a legacy-trunk +35229 573b089fab71d3e625be91c8263233dfe38a4c85 legacy-trunk +35230 91af65b932d622887bdb0d6a1d048289cea1354b legacy-trunk +35231 d5b4c44c76ce06a84cd52dcdc2e2e2e7a43a7cb4 legacy-trunk +35232 d984b3bd1ceb1a0d2acacbd0c734188156c436a2 release23-maint +35233 65d28fff1172e15f77f8457faa74fecd71f56da4 legacy-trunk +35234 53dff60f55089bac3fdbdd727dd6eb4588546a92 release23-maint +35235 e178eb43efddee9b9b31d32ae202de1f8e7a2115 legacy-trunk +35236 727120fb03652dc2811a65bda5be6debe9ca1a06 release23-maint +35237 f57f5ce22c8dc8d2135b9798d79b7afc4a982204 legacy-trunk +35238 08ec4db5064eb6a25d4e82b25bd769bc78335887 legacy-trunk +35239 89f9070dc1bc0bc109291b335e63c363755a5ae7 release23-maint +35240 fd2d64af2640ab613c810ab3310d73bd6bd27132 legacy-trunk +35241 db4da93f0ba0ee4be0e17a1b2ed548440e4aefd4 release23-maint +35242 8e218cc8edab2bddfe193d03b9eb815289343a09 legacy-trunk +35243 feabe2ff0e1e09d2a3d2ebc730f38b270a7e7e55 release23-maint +35244 6a8e8a13c7455fcf7a905035cb56c0dc3b93a19c release23-maint +35245 4c12d3b0166fcb02139ca77241312a5c90eef015 release23-maint +35246 fef9f2a41c34c03760f6f3dd379a3fc0eca70ceb legacy-trunk +35247 2b7e08dcacb14c9678331eb81fa147ab6cd3d27c legacy-trunk +35248 51c3d452af2f2cfb8a404d87318241a4708d295b legacy-trunk +35249 75dcf2666d54460938b57d1a7485a723d6246935 legacy-trunk +35250 5d9a3d76c94e60362fe4a52014b914c364b8f002 ast-branch +35251 8f06320098dd60413a30c613a8a92af7d2ecc4b9 release23-maint +35252 14f860b03be273aa9cac25f1a1263dbce64f1000 legacy-trunk +35253 59538d3b7cd2d5d3d2e13b52646f7cc8ef9b1f24 legacy-trunk +35254 eb48b2503f201d44b4ade64fc6d3a2084eb5a969 legacy-trunk +35255 2abc52c3d4c2fceac365a1d8956e8fdfe89bda20 legacy-trunk +35256 1f5f6cca2f210d108c7fd18819ad8e4b6ea7303e legacy-trunk +35257 eb69eecab4c7b6c0a144151b9062307ad1395ba7 release23-maint +35258 3541291438094cfceb0cd6748d97458be39ba57a legacy-trunk +35259 71864820402d6569de4ec7dc77d621a283e8e5ee legacy-trunk +35260 ce58d1cc6f405f3319148fb70639741d2dbbc1af ast-branch +35260 cdc66292e55d369e74b4b3226bcdd8271ce708a3 release23-maint +35261 22199ef64ffa0452aff2b69af799eac7946efb34 ast-branch +35262 106fa94b42de0c905a0ffc4b005bc5b282b1a282 legacy-trunk +35263 5a45b5c2371e885154cb78191c4413918ab448f1 release23-maint +35264 eaeea587f90a29556fd3241e02b641bfb02cebd6 release23-maint +35265 5bedba55ba037fe2c2f38b5abd04cd6a72bd608c legacy-trunk +35266 545229dfd9098587d43b341a7ecaa80a1b026ff5 legacy-trunk +35267 71a294bd79509cd42097797e39d6026ef9030581 legacy-trunk +35268 9b3daecaaf2544d9c1e0f0c585c35890c631a699 jim-modulator +35269 15600a237492a3fdd516a0997215f3d60c6580ce legacy-trunk +35270 ee44be8e19fcc94a262f14317a76d206c961b250 legacy-trunk +35271 2e62fc978d8ae97c3ec56250dfe1ffdeaa00235a legacy-trunk +35272 bd0acc42829efe4397ac82da47fc2852d8cea8e9 legacy-trunk +35273 58d5ede5f4ce2d9787c45053c284b571c7f1f0a6 legacy-trunk +35274 6b7b2c62ab12608841f2590ee9eb313232072ed6 legacy-trunk +35275 239443933324b023f7ce19d6fc9dbe4e968e0c5b legacy-trunk +35276 76c813894ee6f30555eee9f5c569b90791dc0541 legacy-trunk +35277 3d927e1c78c884d167c6f2c24a5524bf5ebbd7f8 legacy-trunk +35278 4ef568c653d9c6bcd8daf6074ec9b986be140643 legacy-trunk +35279 ce0106df6a6a6325e34a9fd1e8b3ef2a29569786 legacy-trunk +35280 27bf05b2a4f9e3b64da2a23cca71c40af643b167 legacy-trunk +35281 1233bd95da1a93f9e2fceedc1faf4a45badad9f4 legacy-trunk +35282 bfb40a03cc0c01fdc80ae1a9d8798f455e1e6b1e legacy-trunk +35283 95a32c78672db3e2cbf809721618faa0e84df7ce ast-branch +35284 35495d36ec957ac6403fa3030b708a8558fa7195 ast-branch +35285 8d49c29e9ac1e81a117e45b9bd9c6081dff71b6c ast-branch +35286 3ba4ea8fce3e501f311faefc0061f3514fdaf626 ast-branch +35287 fa981350976cbeee5e6c889aa0657b38887a2f23 ast-branch +35288 25a35d8f40837c03bff51186de131384505eae20 legacy-trunk +35289 78362aaa491dffe7a2eca7a1e9787e82d8c07adb legacy-trunk +35290 427e8baa70574be2e19a02afaa45b34eabac19c9 release23-maint +35291 35c0ac8e087135f5c5596d660923d26bc0c3bf8d release23-maint +35292 5eeed51e82c4db1c2fa25ef1a03d6993135e731f legacy-trunk +35293 f6d8cfe7c000996d2295d44ede6eb8d33369702d release23-maint +35294 7c052be401693b6e372cc15a89b2c18ad5032cf1 legacy-trunk +35295 64c08db8dce4460ea0bd748ae134c9a243786765 release23-maint +35296 79bc56bf9220747f7e99b60ccc64cd048d1af02f legacy-trunk +35297 b0c6f7c5ade65a4f45e507a832508cc80da2e999 legacy-trunk +35298 9f45a2d3666de7ddad41b0d78cd3a969896c6a05 release23-maint +35299 0a334b226f3a311d7b318724c2b5f99f98b73a4e ast-branch +35300 ec6232ed911525be444a74eddd5d9c023a68b1af legacy-trunk +35301 d98d0255bb0ffd8e4e037c751bcc72f9902b939f ast-branch +35302 ab339d80c9c9af7db916c6c8f88c6ee0b56cc983 legacy-trunk +35303 a5457b62022658a9ef8d8916baa2a3af1ce3cfd7 legacy-trunk +35304 72e970c0accc1225d8456f30c81ae1dbc0f18d39 legacy-trunk +35305 391011840a03f767386d07435a56d952c5ba5ba5 legacy-trunk +35306 2c8a43063d82c8dcdbf5313ec14c603a238c749a legacy-trunk +35307 470f95ad67507db4f5cb4c39407252a3e982c748 legacy-trunk +35308 97ebe4014edc9ce09a7f9ae1a709c444654f9998 legacy-trunk +35309 3da6c2adad343cc6090d527eb196027e581851bf legacy-trunk +35310 bdf006dee6986b805efcb9c801b57dff88486b26 legacy-trunk +35311 a157cc20f1b7db5e7faae6fded7b2f100ab48496 legacy-trunk +35312 2263250d7b2fd302567a4d51cf8bb442ed24272c release23-maint +35313 a6d8d5ace6a78d55c7790cf84bbcb0d858c39ede legacy-trunk +35314 3828339adf867cae6f1be2683c5fcb4af41bdcb4 legacy-trunk +35315 119d0182bd5e43364c09442fcd8bd48c306b490f legacy-trunk +35316 c303ec019cb2c8d104301a607738257174a06a22 legacy-trunk +35317 9cac9d0b19e3131e8580058ee3eae5ec6091c2a1 legacy-trunk +35318 cc7943189a5bcac13c027d6d0cd0a92d1e9e6745 release23-maint +35319 c75a4edd1e527f06d4cb0b962bff605a60f0726f release23-maint +35320 f1e0a7c48f360339db83743aee9f9f1ce372ad10 release23-maint +35321 6dd38e4586fffd8a675c044c18135873b3e617d8 legacy-trunk +35322 f457f18f5922139fa72571b007fea43318a49fc3 legacy-trunk +35323 475bf4e7920edfcc69843eb900a4b3343aa35ffa legacy-trunk +35324 7a761cad7513d37d9aa3062b9fdbbffc8deec403 legacy-trunk +35325 911b3215d0dc46d0b0438058ed0db3f1d97b7ffb legacy-trunk +35326 1c0663716db357db4279a8f02623bef90b3e07b1 legacy-trunk +35327 8a39a98c878024c3df1aeb30cd0707e6414bb919 legacy-trunk +35328 4632fcc5544a146ccd43c81cff0cbf6ebed6f8eb legacy-trunk +35329 83502e31e06e19d05e8aab69b01971ea4d77b297 legacy-trunk +35330 7e4e3137b2527a29ff1dc729a06a694efe3b596d legacy-trunk +35331 78f758abc79f29e33a65db13a3c400afa170b206 legacy-trunk +35332 8ec3aa879eeea0ff90347a0a3130446f87b0859b release22-maint +35333 3c9b4fc3ef147c099cc20d7064cc8013cc2bd935 release23-maint +35334 c37c407faf52ed92c12fd74d9b763c8e1bb2b618 legacy-trunk +35335 19b6fec2e52d28b240cb5e410dd6182f5e28eda4 legacy-trunk +35336 650ef009e08c196fa46bd7274d13eec8524e5f46 legacy-trunk +35337 688228ab05aeb5742510c1bdf79f32ec6c7a8525 legacy-trunk +35338 8183dd1a4fe6bbcf2fe964e908d4e2f24f318831 legacy-trunk +35339 a9fd47644c0f798ce5c23c86420731114954d691 release23-maint +35340 f2d94ff15ac8f4279f19cf3a8cc4f1b9bd4b2ba7 legacy-trunk +35341 5e7455fb8db6b5fe4ab5f5fda2fdbf4a5500eb3f legacy-trunk +35342 2221f960180df72ea48fffb410b228c40a9ea275 release23-maint +35343 0b13761820b0c1d8898ee5ccbdb2e618dfb996cd legacy-trunk +35344 7abf42479880e5f595af6ea3d7b725bb89216baa legacy-trunk +35345 2c6123d925fee96fed5037c2fcc5e141352fc496 legacy-trunk +35346 54685d9ffb876ba4bf97a2f88fa913b0cd7aa48d legacy-trunk +35347 4b2d6d130061999a99dad8ffcdf20322db049393 legacy-trunk +35348 69ac672b49b3ec7aed33db6df58e9612588f5e59 release23-maint +35349 ca3c998afa555fd33ddc551b0dd64afda0d83d5c legacy-trunk +35350 c723b0c1a7e1db4aeca28e53c200f44bd51576e0 legacy-trunk +35351 26a80f0af9f3ae75a22d0607106656de1f337c9b legacy-trunk +35352 c6753db9c6af8e2ed04fb06909574243a7bf34f4 legacy-trunk +35353 706d6d11ee3638193ea6cb3e2939af956457b02d legacy-trunk +35354 123718d0dc09e488537dc7b22b552ee104efedc9 legacy-trunk +35355 65c502b60b4d19c122718d01a4c4cadd03b74b2e legacy-trunk +35356 af25ccc75feacb9e64b76826a19c78db85962fab legacy-trunk +35357 05e1c27c0a74d81b50c426e50926cd329a79306f legacy-trunk +35358 cd87ff6ea8140ef3e21d7f98477bca67aa4a2322 legacy-trunk +35359 f1d0fa698b737b8c3622af509b9da4625b51aa06 legacy-trunk +35360 d7ff05137cea3df565233b23a112aa95b4cc54b4 legacy-trunk +35361 f3cb4cad585e669498f70cd201fad67013aa053d release23-maint +35362 06d824f5f2c98ff55fbf8d2203dade56a3c36929 release23-maint +35363 15553a1b7a17a102741014cf77230b49221e67d4 legacy-trunk +35364 071ee0ff74678968c2cc8865303e994f30d8bcd8 legacy-trunk +35365 2fed331de014a4c2cf9e6703d901d0b875645345 legacy-trunk +35366 fd2103ae6f29a1e06b3ff8cf548adb64fca2d4a2 legacy-trunk +35367 8ecee8f47108c8b5a75cdedcdc2d765f061cdebd legacy-trunk +35368 ae8dbf500172a1ac1b9354b18e1950cce170c42c legacy-trunk +35369 80bd2b85ed8a1e9979a8e69a43e7ee68bbf5cd79 release23-maint +35370 dfdbc0058d8590e21859ca036765aa4ebfd7ef96 legacy-trunk +35371 0979fa062debfe7d6c5f054c287cbb2fbab43ef8 legacy-trunk +35372 248beb99a304c93eba4640dda828e03b30e4630c legacy-trunk +35373 46df08eb0839e9cf56a80f0870c9a619127b520c legacy-trunk +35374 c2df8a5c357e00e601d3be0ac14506536fdf310c legacy-trunk +35375 739ab9de2a1baad5fe11b8780b3a6eaca2112c20 legacy-trunk +35376 5b3898d9ba5977ac6804bcbb8cf1caaac01ba59e legacy-trunk +35377 ebba5582dc0db5361f4b42c030ef4e252638a1db legacy-trunk +35378 bc006682acb21a1e1edce1c0128f5c505a8d13d7 legacy-trunk +35379 8f60217a7547599da20a5f240ea7c3f5b515cd8e legacy-trunk +35380 47890c395ebaa20e4be1cb7f754c4fb4cbcbf45c legacy-trunk +35381 635eebc473b065c754c8fce43d7a3236a43011e5 legacy-trunk +35382 7080a0210cf187f209c2333b36c5893b3a054161 legacy-trunk +35383 d34e7eaf4cd6a747e836fed61ca90aae68c03c5f legacy-trunk +35384 b795433e0bd91941d8d7c0a916ad11b93a3ed9c9 legacy-trunk +35385 1b02c77cdcfe135c0c327824ff89fce229c6128b legacy-trunk +35386 1543afab1b672b1247b1be8605b18747a19d92c7 legacy-trunk +35387 7e4dd93f4b27131266061940a4a888d4d1ea4d36 legacy-trunk +35388 72e38bd94e5698f6e309af320209f239d379130c legacy-trunk +35389 31577c2815de51d97a2846ef74931df578ae5b35 legacy-trunk +35390 b4e4dbd24fe77fc4e2eb6a8a6cf2c098c90f5734 legacy-trunk +35391 228d264c5fbbd9d8ab1536457fa289dbd2cd779a legacy-trunk +35392 dd69e3f5225bafe508981ac2dd6df1b9ef5f2aa1 legacy-trunk +35393 5bd455638c7a8a49d4df329a8a2c4a17390f30bd legacy-trunk +35394 ec6ba03ba9627deb8f346a064c01cc4fc7ef8f82 legacy-trunk +35395 04eb2ebb46e27a1f26fb87705ef9a847d9f90262 legacy-trunk +35396 95bfb653fffba012089a23ed4a8f359e96892c67 legacy-trunk +35397 1253f6e20cdee05b4d6d77f52c778948b81cdc6a legacy-trunk +35398 0d53ecf22d91523da50364fc3be31e3a6e864fa6 legacy-trunk +35399 047148089c35d59e7acbafbc51af7328c7719cb8 legacy-trunk +35400 42f8820686c9eba7d99a90db843b0d1ba0a84000 legacy-trunk +35401 eea674bf7b59a86ae21596f899335923d4f4d4f8 legacy-trunk +35402 30e305bfdddbdc488d7751bce561f8ad0652fa44 legacy-trunk +35403 a0fb27b44d78383a38bff7b22f2038c5bcb5739f legacy-trunk +35404 df06479c6e7cd11d2d4717d6fc60b3bda1d031e5 legacy-trunk +35405 5760b4dd3a224e477e1f1ae56a5ffc54693bf03a legacy-trunk +35406 83b0382e0d3625aa9d74b07463974beea15c8112 legacy-trunk +35407 d10c778af167a0f3cef5fe054d378a02073064ac legacy-trunk +35408 76944084e756a16b8d581c904e164ff8f86e45f9 legacy-trunk +35409 243642bbd03f35e45e1c6a8e3974ed31340711cb legacy-trunk +35410 be782d07c518d28b25816fa8406abddeb5194e2a legacy-trunk +35411 35cb8114b45c25b0e93a2240c7942f643abf0f42 legacy-trunk +35412 ef06c2124cb06e1f5093d53cdcd3760fa725e9c5 legacy-trunk +35413 f2600448e85c9506577c6075b00921a8f92dafd1 release23-maint +35414 7fffdb94a172da45d21c1e6d6f8f5825905b06dc legacy-trunk +35415 f26d8286a43e9e45c4ff0a920ff97034aeba2f15 legacy-trunk +35416 03693af46afbcebe66e89909f690a6047e3f57d2 legacy-trunk +35417 26cf2586f2fd299e20769d084e348ac547a0a166 legacy-trunk +35418 b8992e781840a085a342c5051328fa685df5047a legacy-trunk +35419 206d8575f64419fa66d396a18b3961759bf1c247 legacy-trunk +35420 35f56e08727f959533c96b53ccc054f90032d29c legacy-trunk +35421 152adaf765eb2f05f05218903ae6821d4f32b8f5 legacy-trunk +35422 88e9c0444d4dda7ec7863b272c58708db76ab7ac legacy-trunk +35423 3f693a772694e23119708f84de84268878cabf9a legacy-trunk +35424 ba98996b4d50a81cbb60e59eceb15848d9e5bc7b legacy-trunk +35425 9a4c49c5ac03ca8b0ed1711e415b2e3db518992d legacy-trunk +35426 ae6037a3adce99556c52035eddec8efd8c7ecdab legacy-trunk +35427 a3830ae294ae683db21c41a47fe7484dc54d26c0 release23-maint +35428 ae6fda960d39bc3049da054029b29d1ecd47002e legacy-trunk +35429 606f0473a96687f489f5fc3c38021495344e4163 legacy-trunk +35430 6bcca47918499b5def10884bc8c1aace415ba42a legacy-trunk +35431 08c3b4905961df6032db644d7a91358230777b49 legacy-trunk +35432 a6bcf4df1a8576dba9dded57e5e901a1547e6985 release23-maint +35433 530a0de3517aaf0e983783e9a75ab591915f4528 legacy-trunk +35434 2830d8e1af185a59dc9235881bf69afa24500bdd legacy-trunk +35435 f7374e3b279a88c73221f00dc9945db10bdc777e legacy-trunk +35436 2bfc8866ea993868ec229f714b5143b440efd193 legacy-trunk +35437 7bb030066ea4b650973114eede8a48dc666530d0 legacy-trunk +35438 c0a542a1fc1c8b9b7bca0ae65d5077174a2a9ce8 legacy-trunk +35439 da78b96b6aabeb03e58f9ac235f9ab60a3887e87 legacy-trunk +35440 bb3bccb3b77d5aa000f511628c36a527aa70823b legacy-trunk +35441 ce83ab07ea07308864f61d9dc0f8f3d3e3f3d92b legacy-trunk +35442 6b75060464f44627f77d9859ee95793aca666b8d legacy-trunk +35443 c32381f4dc6f2e5447d56db2d0b35347c3c9d94e legacy-trunk +35444 016f006d71cc3fbc0fe4efe393d65989a619e0c1 legacy-trunk +35445 aafe5fef58bab7c123b3dd9769471bf79779d532 legacy-trunk +35446 823279ae43eb10af96f0445d9fdfdee5607710c6 legacy-trunk +35447 a885e4d64ad0b89947209219f7a0499a92679723 legacy-trunk +35448 ce70f1446f399e12e722b98a0227e973e75a07ad legacy-trunk +35449 0fb5066fc2a7fd468f0e5b5a9708ef171280f47d legacy-trunk +35450 12bf37a58015af9369b89a77bdcb34e2275692a6 legacy-trunk +35451 5e8c6f38e15b5ace15ca579700d1f8aa4a7fcd1a legacy-trunk +35452 f7bfd8f91c2b90c74231cfc2d353f0b12e4ee700 release23-maint +35453 6d8a14148159b1bd62a22163b7621b3016543492 legacy-trunk +35454 ad5c6085023e2493139e16c101d9a37a473d82ba legacy-trunk +35455 332d3ffadf287eb24a4ecfccd109218c47f05d60 legacy-trunk +35456 507422eaa763593e7b95990cc8e380e1d7c9c3b2 legacy-trunk +35457 92d402209e90f977ef35b8f27ce2947f0352de02 release23-maint +35458 d087726417ea8a13ed539e5c41a7f1e222f1a634 ast-branch +35459 03b0fd1cd722584aab7b6d969df726e4d360bce8 legacy-trunk +35460 6bf87985aa1e98e0a84e1b765eedce4ca68b2749 legacy-trunk +35461 5e63c2e9b79253137022adada2683e54a970f619 ast-branch +35462 ceb6aaddabcc5d9a6f41dbc5b2f1ac769b2b8edc legacy-trunk +35463 5b2247b95323c327d50b3aa84fb762fd8ae5cf18 release23-maint +35464 36a2d0e8a99335049d262973ac31cb2a32047d51 legacy-trunk +35465 93fb4081d107fb4e99b52582183cfb2619d7d52e ast-branch +35466 ffae2f1fdd46c8c6d1899e13c5e93b57635226ea legacy-trunk +35467 490eb64bc5c97bb5b08a62afd3b557b32da8fd57 legacy-trunk +35468 179e04307ecd3da8af21e41223f8b0db31b2e715 legacy-trunk +35469 ceaadbd7f19a7e26f45ea851b17b2e5691cee36b legacy-trunk +35470 d948dee6f4a1bed9be19585898e319b1d3d67e08 legacy-trunk +35471 0b0086d53b8e87957616c49ab046815ef3fccb27 legacy-trunk +35472 c4ebf7ca1bdd01fdd6f50a50f3435ca2ab9e3e47 release23-maint +35473 65b0c7b561daf42f67cf154597668495b920d7f4 release23-maint +35474 52ba1a22cc2e1b0f82229ee54df8c8bdcf454839 ast-branch +35475 cd4766b0637ea1d22b2f6b051f86216b9abac540 legacy-trunk +35476 d63c562ebbe5742d3916cc7fa10dc14dfe2177d8 legacy-trunk +35477 91260fb3c814763771eaff44bc7f80972377a16d legacy-trunk +35478 cc7a9fe80b1b7560f7768f5c36e1de668425d4d3 legacy-trunk +35479 820bb818d6984c59b6b27c2b385076acbdb7862b legacy-trunk +35480 660fc242a7669b06bceec83871a6c9cb2044fe16 release23-maint +35481 fd26f29e7eab8f2fe1a41d57b96eea0e9f67f0f1 legacy-trunk +35482 0420d3cfe4a4aafdc13d8fbad3f5389ae14a472a legacy-trunk +35483 8ea45cfe17fc6038fbd0afb243efee11728e5dbb release23-maint +35484 c83795324042742c63cfcd388c462be20326f612 legacy-trunk +35485 faffd9572d8d3239a02518f653355260fee5c3b4 release23-maint +35486 c75876432fc6b5ab6df113607aeb635e259a6fee ast-branch +35487 284669409beb46abd1c5adbd36957328c8339595 release23-maint +35488 d69fb35f1eaea438a75cd82ca978eb6d940d20d4 legacy-trunk +35489 7a434f493c3ea8b89edc94e3ce61bafbef808f14 legacy-trunk +35490 63865611ed2fe3524502cf057b8dad36f2836b57 release23-maint +35491 26d0fd03d5b30edaf6913aca192b961d6d442061 legacy-trunk +35492 c4d9a96be2ddca4535b437e9713feedd431ae502 legacy-trunk +35493 6509354e78769db9a2a76e337e9664c87e781ea0 legacy-trunk +35494 1ec3d6984b0f10877628e2da762a638a81893a2e legacy-trunk +35495 b967627a2f4fe9c9ad54fbd0406b033278ea3037 legacy-trunk +35496 ce68d7c0629cc381670eaba176afdee9e5c88fbe legacy-trunk +35497 e8312402c813d8e8d308216befa999d86e473a3c legacy-trunk +35498 c023501c38d783e9a340efb3a7c92061710a4cfe legacy-trunk +35499 920ad4465aaea5a35415fbaf9fb79f932c7df20f ast-branch +35500 d898232dcddbba805822fbd3cd01408377c816f4 legacy-trunk +35501 ee0ba00b277cdd2385935c66aaf20f4d8c43ed74 legacy-trunk +35502 6fcbf6ac699a89029689a178e0ace33c5225b0b9 legacy-trunk +35503 57965b2db20c6dad9c9790628f3e69e77498039e legacy-trunk +35504 07a2b4c5d50341772fbc2aee5e3c2886f8294132 ast-branch +35505 dba8db412e354996b183850dc35e6842ab215e80 legacy-trunk +35506 49ec0d8f08ecd3f705741e210bfffb10eee7a38c legacy-trunk +35507 ae00d2d127d1d0a7d795e6b49ce2d9296e7f1c5d legacy-trunk +35508 1f806cbe2ce0481c77eaa3583b88b27d3d431fd8 release23-branch +35509 4eb458c3941d5e85e733506fe12d17e3b714119b legacy-trunk +35510 3101c00f7547f01ece49ad4e2881aacb09e7a409 ast-branch +35511 c061f25f74e0cdeba7f26ebf7053599eb9ab7ab0 legacy-trunk +35512 907450e4bc6757da1a4a7bd88446cfa62afea6c0 legacy-trunk +35513 3475e45684710958887ab834a6e7cf014daa7b23 legacy-trunk +35514 8bf163d06d29af8aee9cfae757fcebfd2bb44edd legacy-trunk +35515 7b6c8229799bae9bf1bbba6bc5585bccb69ad4a1 ast-branch +35516 671adee6a3e3b11dd7eca2b4f86d3c9790cbe13d legacy-trunk +35517 f54cdb01a1ad5df44f09ad1893313efd6fb9d1f3 ast-branch +35518 14f8c933f88c099c006966118f7b9224a1e2a4f7 legacy-trunk +35519 fe5541aae2d8f874f713cb76233781a9f4e6435c legacy-trunk +35520 1d3e48ccad573a541c31e3d79bb42365a705772d legacy-trunk +35521 45144cdb7794a4a65c97a363831b7d84403fe7dc release23-maint +35522 ef180856df761918fd8bddf0cc7cf6057e814a4b legacy-trunk +35523 c2b01aa490e147b5b73cbcb8cd3821663b8e428e legacy-trunk +35524 2eb3175fc59b72f2ce9accce6fc88e8e8db7c297 legacy-trunk +35525 8a714fecd059bdd837d87a6385f90d230f41e756 legacy-trunk +35526 a5bd8b4f3e55f1329536618a50f6710e769abf08 ast-branch +35527 555dc846226dd2861322569db694b9bb4ee0cc9f ast-branch +35528 b39fdc9c807e65b32893743707a6d93475faf71f legacy-trunk +35529 1407484836120b5334ff81d0012dcec73d9baae7 ast-branch +35530 a737f7a0f2b8bada4d38f0b7821d168f70b270de legacy-trunk +35531 16bf484b38649474831e60db6ccd5a3331785f24 legacy-trunk +35532 3e49eb32470bb787aacd4cb6ad5e14414c5c0772 legacy-trunk +35533 be5d2a07bc269badb14a7c7f46cb75056ee1b5a7 legacy-trunk +35534 9536b297d83c2d78e8d631463879b04ad4271004 legacy-trunk +35535 f4a4ac7331ec91e84d8fd4e9b663f85471e025fd legacy-trunk +35536 6426b37bb2a0fda8232e7c6c1a4e06caee01b1be legacy-trunk +35537 3473dea3aa4c0508777a679b38acc4343ef9c28e legacy-trunk +35538 5e916d46a3fb6926203d2d1e195077fdfa8ed8b4 legacy-trunk +35539 24e070e95bf8a1d15373e42d45e36e8efe857d44 legacy-trunk +35540 75a91fd8b50cfb0681cd4e3f0248ffbe511d3192 legacy-trunk +35541 12019251603392c303a84ad3d44393f2d491b9a5 legacy-trunk +35542 9817dee5d9df085c42c1c6ac6800c4099bfcf8c7 legacy-trunk +35543 7f464dd680aac08e4adbb7ea2cbf75a738d8f29f legacy-trunk +35544 ef591e7c34fd8e09f55fdddaefef61e8b8b1eacc legacy-trunk +35545 76053a1dd45244dc1aa8d36de2c78b93faf71a09 legacy-trunk +35546 fb557ac5bb9a25b1455a99a03f500609006d299e release23-maint +35547 9d84ced64d10c9ae68ee56ed4439f3b80b0f24ab release23-maint +35548 164ce1bcab6e1e320fbaf01cad8a50d729fe9f30 release23-maint +35549 33d48df9a93783454778acd9de4e06e5a25fc35b legacy-trunk +35550 29be729b32c3fe941679addd7253f22d13de6cd0 legacy-trunk +35551 cc47c1eaf80ab723909ef46ae3177a3521ea798a legacy-trunk +35552 c4bae089bfc8f115ba93b54e58a44bcb2f3663f3 legacy-trunk +35553 ec37cb1c0ed8887ce4c7bea1f9871926c7c28ef9 release23-maint +35554 d448cc261f69f4b08275ec0de709ed0d2edf07be legacy-trunk +35555 ce1e0b494ca7024c273889af326750d05a9926a7 legacy-trunk +35556 6a15056133584bee358d6a3514701a4b72cf7e5a legacy-trunk +35557 23e5cc34a9812e434cd0303cc7b8d88941ee9bf1 legacy-trunk +35558 835b690d7ed3a5072d9e4f5b54f0144e115da985 legacy-trunk +35559 dc5bd8422d526acbbd27ea3814262215d0f53d27 legacy-trunk +35560 a4eaeed4098b4d8306620ab86fda46d974f8a1f6 legacy-trunk +35561 fe94335f38e24974d1779b520360dd2b0ef037bf legacy-trunk +35562 2024b4e6e38da8352591b9be16fa83df706c31b5 legacy-trunk +35563 befb1ea6c88eb2bd8102bb19956503dc16887bc5 legacy-trunk +35564 29da8bdfeb4e3192b3b9a595a47461e1439f4a11 legacy-trunk +35565 858697db1e4bedc7ff08d6242a5142b0e132eafe legacy-trunk +35566 52c172289add1a3a38710d24010bf821242626f6 legacy-trunk +35567 4ce098f005f002f7c43bab0ffca62d9f6a734903 release23-maint +35568 f1d44295ebf7d9e91558e7bc9d5508d1a65e534d legacy-trunk +35569 bf37429f6d9f0513cb25f3f10ac930191099e8ce legacy-trunk +35570 1c117dbb2def4f93a60b932b71579853e4e7189c legacy-trunk +35571 846b3ee7e106f122f8d7e3c17867ab93c85400d4 legacy-trunk +35572 c76606f372d134b97cbf75cd28c84065832bfd7f legacy-trunk +35573 e6379bda91d7968ae2a960fb01aba299a133ce5e legacy-trunk +35574 37dc8c80ca7ed921fe92831442bab84b284e6018 legacy-trunk +35575 277b5a2f08f5c9f4091da20e2067a8fc151a27ce release23-maint +35576 59fe09824363b0e4fabfca60ca4d05e5acefdb9d legacy-trunk +35577 c051dc6ab374387ba261be6df15bafbc9b3482aa release23-maint +35578 0261e38011f6de42a47695dc7d95d0343dc5cf83 legacy-trunk +35579 cebda23aaadbc69133702b0a5131c010c3a53c2d legacy-trunk +35580 078032444ecc89c30caeb46eaaf26b20364b453f legacy-trunk +35581 bc6ec95f57923d7f94f45d05a16fa95f2de90d61 legacy-trunk +35582 6c6910fd013a626551e84578fe88bcfaf611ef8d legacy-trunk +35583 f98215daa35fc257054d05e1794898187879607b legacy-trunk +35584 7a120400888aef6a827e2bac5be2685ee74349b0 legacy-trunk +35585 1be5499f378e99700bb198bf695d31b96e28629d legacy-trunk +35586 4db95872918eb9289f13c78b218c03919207d799 legacy-trunk +35587 8184c677713fd61e0105509291729fc10ee053dc legacy-trunk +35588 9a11a236154745df31a9a582110844e58636eb9a legacy-trunk +35589 4b0930b56565fd20fe29d776514e52768ec554f9 legacy-trunk +35590 75e2f758ec5a06b6da3a0df513371ad26f1f93c0 legacy-trunk +35591 948996f699d2e292ad3d20ac315904ab4cfbc176 release23-maint +35592 6b1858d12f8ca9ebb2e5f71814a75d80c2808e54 legacy-trunk +35593 168dacfbee65aa7c9fcba151c7cfdfc01b26a564 legacy-trunk +35594 8170aadc9eca74edf83e525db53a07aee9d2c84d release23-maint +35595 b082b4d481c2562ddd31c3c82404b789389352c3 legacy-trunk +35596 a4aa7d61e4af196ef60b409f86aeca1dd19a4ce0 legacy-trunk +35597 a2e80fa7359b5500080d771c2bb972f82b99f7ca legacy-trunk +35598 331de8b9d1ed55c45fba39ef57958a0748202c89 legacy-trunk +35599 34d5eb1e507dc27af1b6c697e63d9d41e60f570c legacy-trunk +35600 d0788391c13bcf230572b788f5fffb0ea14b99c6 ast-branch +35601 aada91c5d6d9c7256cacb636ab7dcf342a43fac7 ast-branch +35602 2290853ab40a62d79504582fe3324fc4a20bda23 release23-maint +35603 5932469dcb35933277ceac759b1059d334fe878e legacy-trunk +35604 3ef58884bdd521a16edb54c92acbe22eae215817 ast-branch +35605 f4e5f9c2e2b3b90c7c930035ce4a3cd3891b25ee legacy-trunk +35606 a76ad83a413f0e12150bd41374f82ef71f8b801f legacy-trunk +35607 9b17f3cc23edcef6c24ba9444894a988d8a761ff legacy-trunk +35608 e261e0c2c72d75fd3713fa84a1b38de3dc9e46a5 legacy-trunk +35609 64e2f7ec5576b3a5842faf4579ae46aee169ca4b legacy-trunk +35610 a910b822b12cb3fc4fce19637929578fe844cb87 legacy-trunk +35611 739128c67c30ef8d987e79f61ce41efbcdd837ea legacy-trunk +35612 433642f93d59dbad4c8a2fba4c1704dfe7643b4b legacy-trunk +35613 e42cbaff8027d91faab9cdfb51b44f8667b6ac93 legacy-trunk +35614 81117923ae8f0c45c1ea7e236b983809e6f3c559 legacy-trunk +35615 677c0bf05735e8c1863fed24d9e105f3bf0d26c8 release23-maint +35616 4c06f4faed877bab19b3cdb5794c6bddc924cd30 release23-maint +35617 d20cb6357f5ea161b35a10424c425117a2e0bf3d legacy-trunk +35618 b1ea2f3f467ef78562dfd76d181f8e6b0b981f4f legacy-trunk +35619 faa714dd86d3f105d3a8c0bae2aa16bf0261f5b5 release23-maint +35620 f4c1c3e627df8fe86631e2429cec11349801431f release23-maint +35621 814cc9f83faab8de259e654cf8a3f9dd244461cb legacy-trunk +35622 64cc163eeaf12135136d722a0ca5a7737e86e727 legacy-trunk +35623 92552467145ea7d8f26b4897a02db2fe6c20565a legacy-trunk +35624 c57cfa8328d43aa99ce6803434c53145687b8539 release23-maint +35625 c4c7f0f39fe9b8371e8652cf12866542701f0795 release23-maint +35626 8d382ab99bdba9e9d2eb5c676d41689c4cd35ad4 legacy-trunk +35627 696f4ba9ddf7b16d4d9ea8a79e4a7095dc8c38cf legacy-trunk +35628 adb42a71169604d3609ac2fbdb64cf8cd1c7250b legacy-trunk +35629 2cfe14275a04408b63f0d6298e0dc7c83d8987ef release23-maint +35630 3ad42b7d4660ac3c1952153276d573f4dca983f0 release23-maint +35631 f8b28e4ac435a977894e0237a4ffded64a8a526d release23-maint +35632 5f60b226019e9f3b413af0ef80fdbc2aa98aa14c legacy-trunk +35633 8bcb121c54111bfba1736325d5255511b3eaf900 release23-maint +35634 05989b4d6ce8157d6f252ebc24abb659e7893984 release23-maint +35635 0d8ee28bf6f03ffccaa40fec28f5933ccbb9c6ab legacy-trunk +35636 5765d656e0efd87d1cc278764678933ed9f32693 release23-maint +35637 50128ff199658b14769ecac0c48efbbf8f8c1fbe legacy-trunk +35638 d04d786ab4581379510dfa5f6cc962ac59e34fe1 legacy-trunk +35639 dbd3fc214b666a3683a0cd9fe484c53c77ea8f66 legacy-trunk +35640 0071d6eb80a1fa20939e868959715b0487aeb59c release23-maint +35641 a40d79fe2a69e2afec537336961b8fc776e8d3b7 legacy-trunk +35642 b4ec9299560d8089b240557d67f40617b56e2fb0 release23-maint +35643 552044b5058d018d22d20743e6cbf1b1d739deb1 legacy-trunk +35644 51aaceeaabe11eafe74d62cb3427c7b846f70b80 legacy-trunk +35645 156037be355d98460766d0f03dad8baafcbbc3a5 release23-maint +35646 5a36e4d5aa8f0d40585f45deb403ce908abe4fd6 release23-maint +35647 c7f9fca946d16b704c23b6028536eb936fbdfd03 legacy-trunk +35648 020dc5dfd5c5d88dd0f4572695dc4cfc8c4052ce legacy-trunk +35649 9f5fe6b23e5920e579d3a6bacc3ddd01eba7d48f legacy-trunk +35650 227cb7402c6e9bf67a00a0235754687201fe5ac4 legacy-trunk +35651 c88d4610f283cb6d162b9583cf47ffd0d2e14cfc legacy-trunk +35652 1fb2313ac3cee58fe7d3952e21a7b679e735242d legacy-trunk +35653 c906bb2a1824551fc89fc14fc867e11f46df2b53 legacy-trunk +35654 a2fb167841e838c26bd4779cfed9161c9e4ecc48 legacy-trunk +35655 26ee1b3eb3451a70b47642cdf12edf4ffe849534 legacy-trunk +35656 1a3a48cbb1628d4340abd5b2e83af61e1d7bfcd0 legacy-trunk +35657 4c6fdeb8e2e0217f356bf1ae0ad94c5cf7436107 legacy-trunk +35658 f35b4acc594f90a9f6298ba45d1815e2f575f379 legacy-trunk +35659 69970653ecbfac94ce75815ecab2357b8c55e54e legacy-trunk +35660 f9cd79926ff77881a213c9095c090b4d1b59c23f legacy-trunk +35661 986594c3e4d9dc103462cec523cfd6134b267820 release23-maint +35662 8c26420d1f2353a03cccbe336e72c8baab5905de release23-maint +35663 7b817119bb660b531a3333b7bdc5626e9f8f0329 ast-branch +35664 c681d95cf79ec50c5b859345fe0c11ff7bc5a6ba ast-branch +35665 c370aae982321636db9cceadab52246d01b4ccce ast-branch +35666 b4684234bf0701f08a749b1ad2c37c01635ca7c1 legacy-trunk +35667 2e52c20dea4f61da8daf0a27ebda287680ea5ad4 legacy-trunk +35668 dd93a32ac33eff3cb86d27679968504db04c2612 legacy-trunk +35669 dfc8c5f66959582144dab6ed9cc16a52e9c3ca92 release23-maint +35670 848bce2215d35b6dffa9d85fa12ca664762807a9 legacy-trunk +35671 c70bb32227cb3bfe6a0e833fdbe97ff413e63f36 legacy-trunk +35672 081972ae2f84421fd64a3206a4426644e690d479 legacy-trunk +35673 241089e437e029e9ca0f20e39907cda08029eece legacy-trunk +35674 310dd98ea064619cb9883d80e9c1cf0b6dcc411d legacy-trunk +35675 c56ea60cb3bf7763d95b3df0c0a029c7911b3042 legacy-trunk +35676 ca2fb5cf2fd575c729be1252a646835bbb3a630e legacy-trunk +35677 2794f627ebaa0015f887438985d24aea0df97413 legacy-trunk +35678 64fcff121f7b5dedc677e078f2c45cda45a76621 release23-maint +35679 6e54c592853c64c77ea85e4606cd5d06cf0d35ce release23-maint +35680 0265bf9912ea2910d5831e71fbb1de0b65313324 legacy-trunk +35681 355473534c706810f67466809d23b08dc4693cfa legacy-trunk +35682 c4888a8fcf7061b646a1f64e62102df14ef86306 legacy-trunk +35683 e97518c66acc08156d72f37e759d3c6881fbf5dd legacy-trunk +35684 8975defbf3a8b0ab4aef113d8f12b5d8805f5d71 legacy-trunk +35685 e76092d4902cd44dcd6fc75135ba220f216b6119 legacy-trunk +35686 f39c56f8ccc2be48645af9de40360b6fa56cd3b0 legacy-trunk +35687 88d625d928acdba07e05ebcff3735975f2162d8d legacy-trunk +35688 058821d8aefdc50cd47f9bdc7d337152f45e390c legacy-trunk +35689 6b236994684af929c460013e621e8f423f2c7552 legacy-trunk +35690 cec740f92fa42250035507967f6e1661e5de05ed ast-branch +35691 b33ddb48b7e04e156d821e4ca511bb6197969f34 ast-branch +35692 eb6f58c3d9725f050d3dafc04abeb1c6c620a4a5 ast-branch +35693 16e753ff31b2268c855663bbb60f803a8fa76b0f ast-branch +35694 4a543306dffa168f0c5a841fee646d5fd07db50b ast-branch +35695 f7f413c654f4fc3b4e747677c485280b902f87c3 ast-branch +35696 55ca97e7bd0fa36d07b12a7c825de386f4185e7a ast-branch +35697 b242b4d7e177428b0350f42c22c6f0c03383271d ast-branch +35698 e1140e601e72284e7d71affac08cc378ab8b8372 ast-branch +35699 73486ff6b552f3887d8888667ea7794ac120f372 legacy-trunk +35700 9df5185fc5cabe1a774c9f02e908be54d17ce86f release23-maint +35701 a586f752b2bdccef5f2d1054e0791f312cf1f024 release23-maint +35702 7038977cea8de61321ab69bfbc45bc4adedc6cbb legacy-trunk +35703 08a391fde68daf375c86e8f3d8771556eb2220d0 release23-maint +35704 56fed09d01f37ed4372eed82a81ec82d2fc4f07f release23-maint +35705 4bc620f47fb42eee0f59db05ec89c82f059be656 legacy-trunk +35706 81619dcbfae7b556466bc52eab8d6674824d141c legacy-trunk +35707 3c796413f05e729de340364a02efcc9f331088ab legacy-trunk +35708 39c36526d1b08223e58ceacbe4b69aa21de70929 legacy-trunk +35709 d03b54e60a676b1f7d2ecddce41d2f26a6aee6e8 release23-maint +35710 4db0c84f5c6a359acf9024b675082be973893dd2 legacy-trunk +35711 3c618c6939e3342772e0a53ea71d48d42f8633d8 legacy-trunk +35712 fbcbcda14b92ec323519ed3693b50fdb23793435 legacy-trunk +35713 22a55028a78d3ea806539439db27e236b05170d5 release23-maint +35714 5184d69c24dcb9c62107d44ad2ce4dd34a218b96 release23-maint +35715 09800ba2a65348a33bcf107610072a646eac35f7 release23-maint +35716 93917dd8a87c210cfc49d9ed81811909b7f64b55 legacy-trunk +35717 608028f388c5c49c77778ec2ab3efd774a541088 release23-maint +35718 886d66f51105c47369d7cb80733c390804b6bd58 release23-maint +35719 f8c0ac5bef028cc15cecaa535ec3cd9f91355de8 legacy-trunk +35720 63b68cb2b442f4e664ffa58d598697941ae24893 legacy-trunk +35721 1f2934a318b781ba59f44192cddd270235c99325 legacy-trunk +35722 10ba2416239110e8af7b0454d8090d39af2989b1 legacy-trunk +35723 fdabb6808d52fbfa254b0e1821da62af7379992b release23-maint +35724 01ea03e7b265f8b78f5978ebc90a8b439403a322 legacy-trunk +35725 01e316489d67992243660d1d80e7bca3bf68b1eb release23-maint +35726 66368118a19bc0358b3a91fdd8d29837c8377c07 ast-branch +35727 f1fd1ae42136a023e4f347eabd59370edbe89250 ast-branch +35728 c9214382665f4cf9b3bb7e6acef533d8de07bc69 ast-branch +35729 06014f71f1636a9cf0454e73efa649069780c756 ast-branch +35730 7673bff741228b83495dd751253ff161097dacac ast-branch +35731 4c34ac9da93d4246597bdd1ce1baf8698f4f97da ast-branch +35732 7c7a2981455ca8b3bcb75887230b14c7bb0911a1 ast-branch +35733 ff5a31a71d9a6b0ecc558320f7374fbbc74da343 legacy-trunk +35734 ff258c671d3ccd512d1a9229d299029046751a3d ast-branch +35735 db8c45b9e8186ec2e52e37dfeff67b6fa4741982 legacy-trunk +35736 9d1633e6c42eb9d38aaf5b9011dfeec1ecbcc89b legacy-trunk +35737 059740d52ae5c4e8f3d9c4d2ee645fae06d720c9 legacy-trunk +35738 320354b766e72d304dc30629da3bb334b70883ce legacy-trunk +35739 126d815546d3379fb362acbe738259c749987c18 release23-maint +35740 228ea75770e3de832a417d8f6147c4cd4d70fb6b legacy-trunk +35741 30ea0b352fc02fdb2d31088aae07ea3ae23b6765 ast-branch +35742 3b4403360775f04223332e1cef3339f2e4f6fd54 ast-branch +35743 ab49e6fd7746500e0a2ad97da48b88fa203743ae ast-branch +35744 20b5e9a6ef6b0a5a7abe2e1742e144cc6418c14a ast-branch +35745 2822ed956309fe8d95df08e333b71757ab735df8 ast-branch +35746 aab776d41b4f5184ac45dc5bdcdeb6a7678cedf3 ast-branch +35747 b61e5f93ebe0a13340088f1ed68164b9bf7b8608 ast-branch +35748 ce76a9d6e65308f004a2e7dc1c18f53dd0534d87 ast-branch +35749 061108a89516f11f45a5d2fbd925a1d8bf1db314 ast-branch +35750 2448f684ce9e9c4e9bf6ba7e2d3041fc077e8b1a ast-branch +35751 4f0a1e7ad69ca159c7cfe2fd8c34a4563e0f95aa legacy-trunk +35752 8f1ce7b0e423e329609c0a3ccb84c80e48f66b61 release23-maint +35753 69c1ab6b2602141b0a7ca45a4136eb1f448af774 ast-branch +35754 54ae9de38f0c2ddc0027d4a4a606d63160b34f5b ast-branch +35755 020443a10c20258d38061b7f252798d573d485c7 ast-branch +35756 bb255f855999e9f60e53fda7ec404568eb2c95eb ast-branch +35757 182295381f147efd835952e6155b6c5840f76d5c ast-branch +35758 5465a2cb0aea7e773a6dd586a608a7677e726e30 legacy-trunk +35759 0c66761243089a43b984512468365dc8f155c96f ast-branch +35760 765fe16f665b88d31dd349d394a2f0a9e278a800 legacy-trunk +35761 4be8e010bdb9e9c02ce2b765770232af7b5899d8 ast-branch +35762 200bf79c0159609d3c75bad56a4915d797dbbfcb ast-branch +35763 56f9b31ac69fa40f92e563dc64419ad16bf31a68 ast-branch +35764 340e49e01576647b7939fb508f3055871fca6602 ast-branch +35765 0aecc07e35d9fc625ea588007280ef47bfc75b7a ast-branch +35767 f950ef309d7512f5ecab4e80971f39b8438c5f95 legacy-trunk +35768 3838cdee1a201b3c2e59bf2ab6c087a1414787b3 legacy-trunk +35769 6167e78a17a826a838f544b9fcd8961e302acb7e legacy-trunk +35770 0e9e0c5349a0deeb0e14b9ce9ea8ba2a394e72f3 legacy-trunk +35771 90e0894aec5bed38d332c18e7493023f29d4085d release23-maint +35772 583178518bd0cd307e81a6db61ad43886d731525 legacy-trunk +35773 cfafaea93d9095dc4a9f7a75e96c445a754be184 release23-maint +35774 ea9ee9b746729cb544ec4641136dc14ac432f0c4 legacy-trunk +35775 f2cea16a1f382d4b9733d90f98203d01f45f8d18 legacy-trunk +35776 47ed7bcdf08646b4cfbd93d32087a2ebf8eb2cf6 release23-maint +35777 338577afdab6d8bd12238608f557d5b98992073e legacy-trunk +35778 1ca3a62a009ad4c5dd3d4cbe268bca125b93b8af legacy-trunk +35779 f9faf55717202d33c4ea82453e9fa80b56ba003f legacy-trunk +35780 faa7eeb118cf47ada5e8bd9426056a300a680618 legacy-trunk +35781 a48e608ba605fa1be7449389d8bcef9edd6c0b0e release23-maint +35782 5ca103c37d5e0bdd80b6d64c5c74527a88d3c27e release23-maint +35783 5ab812cd0db75622654805d726326573ff8adb95 legacy-trunk +35784 ef34dec004cddf79c7825ab5167b4103a37041d6 legacy-trunk +35785 204b7bcead4c98efbcee8e1766626e3d17819c85 legacy-trunk +35786 3d046d063a84a9ba01341668892373389c8778c5 legacy-trunk +35787 2276de891fe2ef4dcfdadcb16b6434fdc79577ca release23-maint +35788 0c76a9e5c8382c3bd63a2a03fb9c16330d29c50d legacy-trunk +35789 5c35b3ca5ba93d96a7b6a4e3852debb224b9c95f legacy-trunk +35790 0e9fdb76ac855f9b3cbda907fc5d5cf4ad12937e legacy-trunk +35791 51e1b6dcff61e922c73a7b59f0965d6c88ca9ce9 release23-maint +35792 7a7499fbc4529966144a52ebc4ea6c1b821c36db release23-maint +35793 6c12a3bad7d539af95decdab2717c948b3e236d1 legacy-trunk +35794 630e4fbcdea265e7e802d3d4c33605706c5679b1 release23-maint +35795 c5a552578344f5ca7f449deda73c65239eeae259 legacy-trunk +35796 9b2b7d3b42f3a61dc90b66db1a2f7b6d9bdee58c legacy-trunk +35797 687b0c8254faa45d29d68f21ac33895f104028b7 release23-maint +35798 6667a1d8afb1048d0aea44cd3d90da0c69b78275 legacy-trunk +35799 a46264b91a518f954eedcc1dcda251a14caaad37 legacy-trunk +35800 b61fe828b73886f26fbfc7ec5fa7eed68d3dbae4 release23-maint +35801 51a5fb60934d752375c27fbae2f9704719715868 legacy-trunk +35802 222908dfbf58be980374530aacfd051fa655fafb legacy-trunk +35803 8615f278da5f35681bf6b2e6b5a59f371ed09193 legacy-trunk +35804 9f8bfd54251f7442899a1129a908ab061038978f legacy-trunk +35805 8b2a429af42ff16415cf6a58af3174c1e50e7707 release23-maint +35806 ab680c4acd35af813d02cec65749263ba6d21ab8 release23-maint +35807 5eb7a8e2f34539816aba46607128e36d662e40c3 legacy-trunk +35808 b9f09196526eab40048090fc88e3f60798603b61 release23-maint +35809 cbbacda84480ae2bd85d1c6126be763c9f711899 legacy-trunk +35810 a142e4e97f131a0d98f66f7b81200b4965ec0852 legacy-trunk +35811 e8a31ab7a8748e61460fbae7462edfa7d52f73a2 release23-maint +35812 4dee58315cc41fb04d7b5711e9edf7be898f8cb9 legacy-trunk +35813 646cb0146942e1f57d03aba736d55c3bfa57a1f7 release23-maint +35814 82bc69961022dc9cc9c2cbced33f8df2caff95cb legacy-trunk +35815 f793a046ed981426ea2632d61007786106b6ffee legacy-trunk +35816 ebfa5cd8cba4d23e5cc841b18f9779c84a65f553 legacy-trunk +35817 26839f32e70d071bbfd0bf5b9c2b06b1ea30c69f release23-maint +35818 64084f9baba1ec046cf8b9869b47b94dfae71ffa legacy-trunk +35819 4eb574b1225faab7f4489a37e1441b2b62860c59 release23-maint +35820 2cc7149774793416e07fb9d85beed4c6180a2078 legacy-trunk +35821 984b289992c0693c35d7c1b4f290f5481e23c0df release23-maint +35822 c249305bfcac8a54ec367e734c08c95b69ccf051 legacy-trunk +35823 e4f52e2e38000b4645c517027e640d7b9200858b legacy-trunk +35824 ec09a71849cc63adb26a6fb6156e07dd3740ad35 release23-maint +35825 e2a0ef87d4d40dc44ddd48fc46c56ed0b212e14b legacy-trunk +35826 14f7f9b89da9c5dd3fefc04064578f7b4b6216b7 release23-maint +35827 6e078f7613ad7ac11c24f68658898ed7e0c091f6 legacy-trunk +35828 42e2b5afa7157353cd726ee8b4cf5ff30654681e legacy-trunk +35829 544f2172363d21f7e48629b6f48dbe991a674467 legacy-trunk +35830 50708b8f0d28782f7169d1012924b84158618e16 release23-maint +35831 a29bac0ae905b94abfaba01d014047a81c544296 release23-maint +35832 26e090ccbb64c37d0b719bc224549f8c3e74c8a3 release23-maint +35833 582dca02e60f657a90518638b9edef70f12eb56f legacy-trunk +35834 2d7b0ca0c26c9603663791f128e3916b4121f7ce legacy-trunk +35835 e90269fc19365b12ac75dfca7cd04ad036384f3e legacy-trunk +35836 37121c8b691da08a0bfea5e3563b94d6154a1e6a legacy-trunk +35837 98a80788835c0660e6bc4e855077e6b9b1481b4c legacy-trunk +35838 4c82558b15fb3b6409f316267f8f23724222145e legacy-trunk +35839 a1b374ff0184164a4985551094c507986b5b5a25 legacy-trunk +35840 c13bb7f4bcd188a70e3bfff6ad99fc8ad91e5c66 legacy-trunk +35841 635ef110658ef8d3c89750d58764b6f054af40b3 legacy-trunk +35842 db6a6d391a998f52e325aa8e5a764d96650f41ea legacy-trunk +35843 b5594d7279df69e35bd1a7e4456fb5bce9cc37e6 legacy-trunk +35844 f4376f7674a222e86fe597523c95abccbbc4eed3 legacy-trunk +35845 b9c658ac0e20cd6b6bf54d07fbcfd0d1971d83cf legacy-trunk +35846 696d92eff022fe4f8598dff5a0a1b2f97a8667ab legacy-trunk +35847 33f6a15dbf6cf01d8a37886533eea22de331c57f release23-maint +35848 00eea28135f8fb71b1a800f69a3e0bc8536d111c release23-maint +35849 383109433a97284f7041064c37c336bab8f2a2b0 release23-maint +35850 ba31216e37c8f21a572c6bbc0e29ebc8ba3d4ae6 legacy-trunk +35851 0b33e3737b4cbd7c3767e9d7c4d3e7b580d8407f legacy-trunk +35852 dcbe042b892df5bba9f553b2a7766c5485a66630 release23-maint +35853 22b0802aba7437f26ead6107dc055ddfe80863f2 legacy-trunk +35854 91f76cf4073a2ae94e958a5bcc8e99c2aaa00b37 legacy-trunk +35855 3586a7801bdaf36c485b645cdb668ef0728dfb68 legacy-trunk +35856 c36ea07949201e751708bac40a87f09e32190740 legacy-trunk +35857 d803afce8ac4e7f8f3a2ace1eb93f69c25328c45 release23-maint +35858 136efbb1117debb3a04383b9981e8786659b293c legacy-trunk +35859 955e206e53dc35e049c5ad504513a7547d967b69 legacy-trunk +35860 6db48c5bdb27abeeb6c1f24d931e66832327ca70 release23-maint +35861 50d8a27214e6f8538a1db2f3149f15d6e16a6688 legacy-trunk +35862 66ede0387f3674284a36c4a0c4bfabbd6079143f release23-maint +35863 9f6d45f3c023d5719fc6443f11070ad9ddaac5f2 legacy-trunk +35864 c38a39d38489b1264b22a85ab7f067baa82fd591 legacy-trunk +35865 5a22465fda24f9d6f9abdb0184201cc5eb694511 release23-maint +35866 e85355cf175aae0851d1b0af383fb7ce60056f3a legacy-trunk +35867 d09bafb9769f7e5c7830f13b8c14d01a8b206651 release23-maint +35868 8fe1a2662aaa538800fcc89704564af1b3581feb release23-maint +35869 c79cc0403acfef39d4b06df81968cafdf4bd47b7 legacy-trunk +35870 c680080f900c16c6020836b3aee9d0f5bc29e236 legacy-trunk +35871 e9bce837c1c38c9ddb5e690bb0d55dde6ef11078 release23-maint +35872 8601c785c683dea22c58cc7848d387c42c53b802 release23-maint +35873 cf392b936a2e4942220ae7dbced21ccd001829dd legacy-trunk +35874 17bf95ed7562c98106a601ce093b3aa2285ed8b9 release23-maint +35875 1538a8cfb0dda54a424f231e4c1d5144c941365b legacy-trunk +35876 53abd9ad19098f93e577530c58d181678cc41e6b release23-maint +35877 f63dd299a60b27359aa9c73361e20fafc8ae9d19 release23-maint +35878 7afeb836f66c56fe76f091ae923cbc1f948df9ff legacy-trunk +35879 a38cd63d17a74e4eb35a3377d7c1809d3f28135e release23-maint +35880 6758b630acb7ef861448e0b151ce46fb301335b6 legacy-trunk +35881 69433fc1c816cb22a16fe9631c7b51c91cf48dea legacy-trunk +35882 469dcb0ad738bd4d02089bb78c54606f4de7f18f legacy-trunk +35883 61b26b95eb33ecc474929063ccf1e287d61cf66f legacy-trunk +35884 121aaa4ba92358fec1905e1e4dfb1fdd2dd37eee legacy-trunk +35885 1c2381d797c0f758dac85f1bc98e7a24f854fd61 legacy-trunk +35886 27da87c9318f5334d2f583933d7cb496ebaf4fd1 legacy-trunk +35887 02f769d7e4a8e174d5784ef7e09ab6f18e1b2df3 legacy-trunk +35888 24c46001416e1a052478a9ed2b049a105de408d9 release23-maint +35889 b319db3869d822a622c2d9d4b81af7f695e9f39f legacy-trunk +35890 630a0915a3101bec7a085441c1a2d6be3e2ca1ca release23-maint +35891 c7010760e8ad19abfed0cec06d572095b1c45cfb legacy-trunk +35892 ab0c8ddb2c92528f441a09e23ba607f0c7fde8bb legacy-trunk +35893 d6589c88d23b7a5cc6843ee4750e25313ff762b7 legacy-trunk +35894 318bf698e425b5ddd79035e49817f20a74ec6f67 release23-maint +35895 606aae95f128922f8ef185f5a2ae40c2a9d90bde release23-maint +35896 657fb2a50e8ed33704ef2d6e274fab6291d0a23d legacy-trunk +35897 52e140ca146c5ece527b5219739bf9b384bcc804 release23-maint +35898 45ba2c69c31fddb72cacb019b066cfbe92907ea7 release23-maint +35899 5e17d0533ad364197e734b24bd38b8a5d8bdda66 release23-maint +35900 02f89d12f036f6a8321dd2aff7be1f78a93dce61 release23-maint +35901 20653c903d1cafda2d012a752e2f3285e267604b release23-maint +35902 f78d938d7bb0804a76b8a04b6a96f6d9f9167c6d legacy-trunk +35903 245835ed8de8df377383d1b865d9b3a93a5b57f6 legacy-trunk +35904 7afb13c2d526f48373edbb936718b1b341338ce5 legacy-trunk +35905 0593158d14f2d5d1253bc8bdf061f2ef658ceda1 release23-maint +35906 ace3f13c1836f790ba6f52a67721cf932e0995b9 release23-maint +35908 52fe93b656cf593d49966306e2f665750c847b62 legacy-trunk +35909 a4b526b50c1220e91f884418f45201c9d549edb4 release23-maint +35909 3639861d02646af1da3123c25560c4db3d7edbce release23-maint +35911 ee7fcde5636ea170f808342449aab7b5063ceaa1 release23-maint +35912 9fe45797c097f4388060fac1c3b79f04fc9f9d06 legacy-trunk +35913 282dbd9b1ed6b7a692516395eaf7dbe2f0f70f18 release23-maint +35914 6772391083c9b751e43cd4544bd7d8cebd6e48bf legacy-trunk +35915 d6deae8bf79bb052abdb3aa1308332213bf23956 legacy-trunk +35916 00949bc67e49bde8fbc1ea9f667e435280fd26d5 legacy-trunk +35917 8bd32c51545e3df814b1435cebff9fda53ddb570 legacy-trunk +35918 3edf8db6f8bfd9597fed1029009509e83b1dab65 legacy-trunk +35919 9d5847b8f3011b6fb12e2512cd6726339b18e06c legacy-trunk +35920 d3ca6bdcbf3c4637673e98748fac440b9daffbe8 release23-maint +35921 16386cbcab99c1ac17bfb568bb97a80a6d78ab53 release23-maint +35922 2d34585c3b9947e648dea38118a3178812920679 release23-maint +35923 37538a36b6e2b2ac80ce0e4033d9e776b6c3fcf3 release23-maint +35925 b5255552aa6da49fb63f83cafe4476ad3e14a373 legacy-trunk +35926 96b62699b218f9df9dde0063e8812808a1887861 legacy-trunk +35927 6672f73093da333c86c1f4a0fa9ee26b9bae8550 release23-maint +35928 7e3a2c274b3683ff269960d6b3873a50c8401325 legacy-trunk +35929 4a7f7e8016fc26b5d58435d36bf7b20390b5853f release23-maint +35930 94b4845e4da8c4964e6a246ca5d879450ce812be legacy-trunk +35931 300d5d462387215e2029e7fa27d69c84b5d12835 legacy-trunk +35932 3ae01a11080122fa47c55ce1632b90f4a0239a03 release23-maint +35933 fa753c16c6333bf3f992e43fc2ee5a753035a1a6 legacy-trunk +35934 1d13574906efcc719c001aaba34b59daca186370 legacy-trunk +35935 70023af2085ab50ec3239c84ff96529cf58fddaf legacy-trunk +35936 84dfa9a67da146183231a097070720db4eac8bbb legacy-trunk +35937 b6e4bf336db8a2477154a70d947891ee8d2870c9 legacy-trunk +35938 29a59f662dd104912eee3e2a43ec05c32f035957 legacy-trunk +35939 0da44ea099f568e1ee418cd52bf92227ecb340ac legacy-trunk +35940 dd1e55deaf52f8db3b9b3343f92dd00d3f3d4111 legacy-trunk +35941 c25a8c04de3e61509460f0c18ed5f93d4316f54b release23-maint +35942 302d399cfd37eeb1b97dbbc819e661d3317832c1 legacy-trunk +35943 95577b635bb4192822e34895697b99752b1a49a6 release23-maint +35944 5f4f2f536f961ab200dfe732e4d28e8c420d1c80 legacy-trunk +35945 d1a9874c09b694dac0bc87fb0ab065e1f69266af release23-maint +35946 b9edd3418a31d91648d3eafa4e7caf46f2c2e14f legacy-trunk +35947 b1664a80348adaf8ad1b0ef00ace7ea18a096eb6 legacy-trunk +35948 bda066c96e4f1a238d3b1fbdfebca06173d3528a legacy-trunk +35949 b5e40f5d000b6a730b0d105f0ed47405214995fa legacy-trunk +35950 aff69f80f998254934fe950bdd9b65cd71a8322c legacy-trunk +35951 b5a1e3673e5be159146c5150e93d4fca34da75d0 legacy-trunk +35952 9e4d145bb5cc464144f6945d5135e01111ed52ba legacy-trunk +35953 277d483f5968962db1dcba6ada84deaa92b97b49 legacy-trunk +35954 b58d30f116e2a824ce376704aa73364332371722 legacy-trunk +35955 31bdbec8f282c06b1f2b3d9bbe8d14857fd6b3e1 legacy-trunk +35956 4e5b978e6b78036d11d6171fd65ca623aa3e5d9a legacy-trunk +35957 c1cfc5e4834d193e75a250cb2dae9ffe6449cfcf legacy-trunk +35958 e0803407e3774e73c156be99594cb7365735d41b legacy-trunk +35959 c39527e28010fc1ef71b8712ffff15e7357c04f2 legacy-trunk +35960 b056bbb4edf994db07b36646a8f6be349ece25d8 legacy-trunk +35961 899a1f88cc5f242e8cc4c809e44f1a397391f51c legacy-trunk +35962 304a37c2cb4257b6ed3e17bbd909fd32710e81ba legacy-trunk +35963 aa23306a3f26996a1ea7c1939e9ae5f03a0e2499 release23-maint +35964 ce3c2777b222ff59ab7c100d80661116a25998d0 release23-maint +35965 37cac068f03fd46e01de9f86a78f05fd43019e86 release23-maint +35966 59aa53458a93b624b0dd6c54c61f982b0cf9b0cb release23-maint +35967 a104aa549a022a06e239b2187fedd70d878a71c3 release23-maint +35968 5cb24db8fc95b359c6225ace91b0c262cd37434f legacy-trunk +35969 baedf5ffb26b4d2b506351f270ef220815a97b29 legacy-trunk +35970 092ac13a4c40a2fa2d11250715885c260913abb8 legacy-trunk +35971 65f9ad9bc829dc8b58efeb855ea5479695e9f28b legacy-trunk +35972 0afa81db4cb7d24ff2d99af93ed579275a8f90b1 release23-maint +35973 266884b048bd127cd3940a0a9ff8def83c51312a release23-maint +35973 a74f9081c6970878cabe151f969617587915400c release23-maint +35975 8536598cf04d6369d35d1e6cd4d2c1e02801eceb legacy-trunk +35976 efb84ed7377ddd6c395d4f0c0175f73535c74ab3 legacy-trunk +35977 56a4ec066621da39040c27770ec01795f18cfa17 legacy-trunk +35978 2862bf9ef913ef05b392398b277db561ea464558 legacy-trunk +35979 679e5c8effae2112ca8a48376087be3eb1c6ea9c legacy-trunk +35980 2c169ca5fa69b849ad3dfe4511b16fd1574a85fa legacy-trunk +35981 aec9c98a47d2e9536624f87e2d8be1754bf4060e legacy-trunk +35982 c65855c5d56b1d1471b6fdcdf29f95458f1fd222 legacy-trunk +35983 e53162252fbe5378a50e6eea5a7287644748ca2e legacy-trunk +35984 fad52ffd889243ba1d0c5a1da37469ce1cfe0d32 legacy-trunk +35985 18d6a8f998238614ae8f586ff0a2612cc50fc47e legacy-trunk +35986 44828cc136e0c0bd5df2e54cfe25107f021e9191 legacy-trunk +35987 f9d54e9b30bc819f6531ee1d117b8381d5c5328d legacy-trunk +35988 d087a95e803231902b28c10e0e20b4a2e73ddbf5 release23-maint +35989 60ef1db10cefbb08211664b80c294d2750695666 legacy-trunk +35990 f8ffa3e6c4f2dd8d0074374ea31a558f5d1c9d5e legacy-trunk +35991 aca445a6beb791a7a532fa6a6f33074c91d46f93 legacy-trunk +35992 97b908a9971a64f0d1cb13d1eeef70d18895c239 legacy-trunk +35993 747b2dc8244fea31db391797d69a66a1886dc969 legacy-trunk +35994 c79befb3c314d5f5ae1c27da6328138a6252d6e2 release23-maint +35995 e2b81f2c8a70da25e79a230134938f04807b4856 release23-maint +35996 8ee5a56b80312bcca2d5bf1b344a72542fd6be59 legacy-trunk +35997 eba6baeea4eaaf89b98a82e1704b79194521fd34 legacy-trunk +35998 d361c135fa74e8d8ff530d5baf480b649980bd25 legacy-trunk +35999 041f89c98c35bee901e38fc4e06cb06b6f7751d2 legacy-trunk +36000 275a77f9a50066434145cdd8eb7f9cdaf5626bbf legacy-trunk +36001 59bb3b1d6059d3260384d54ca5664bdceea3eb17 legacy-trunk +36002 f3d0568c9432f0baae8f4c1e56a8c920ad7b5f60 release23-maint +36003 22662589c4e20989c2f00d583fbbafd2d3ab4217 legacy-trunk +36004 a799b0d1c5687e8699d67ffde384f43b3dba5ebf legacy-trunk +36005 f159b15f1f5cbafef899fc5b43d1c8df1399ec5f release23-maint +36006 7c461aee741bea1b656c9f159235c5841d8b4093 legacy-trunk +36007 aa39fac2a9fdf9fa7a0e4f8c13f0ab36b0428f36 release23-maint +36008 df9bd127730adc9e82b678cba926803e02cee5b3 legacy-trunk +36009 730a03f5d8b4de2d204df7141bca654dcf31e88f release23-maint +36010 c7d9be73c7ddb335a85f493998ab0bbda3ecf312 legacy-trunk +36011 185f5d6a3a88a9a13a57fb223c2ac55a8e448b07 legacy-trunk +36012 03c895839979c3dcfa312fd295ff024d9775ce14 release23-maint +36013 ab5c08257ad7b4e779c5d22a548c6c9401cfbbd5 legacy-trunk +36014 b3c981ee9ae95581fa6602e4f63fd03df363d751 release23-maint +36015 d3aad377a5a90d9ff0ba8c135a90431a4e2a4bbb legacy-trunk +36016 88071d208b34aa4ec432bda43e20df0c53f4376d legacy-trunk +36017 ab519de176bb948f455c9102ed00f17dd7d7067f legacy-trunk +36018 3a84e23b042f45e05c78c832b6ae2bdd54d0dd5a legacy-trunk +36019 6f265f2ccb33cab7e3f33e271644bade61364c92 legacy-trunk +36020 6822026d3c3b419a8bdd1376761970a6d08a1091 legacy-trunk +36021 22fdae7bba1af7051122f93cbacc472eecaa9936 legacy-trunk +36022 e621e2a1ab3102d3d7320210cc4490b57bc1c1ad legacy-trunk +36023 e5b047765285b37285b735688114380ec83467e6 legacy-trunk +36024 abd4b79551d2ea91fa9ba918f14b6b7aaf2d1d20 legacy-trunk +36025 9a3901bf6222f9919c206a6c997e782e5c2016c4 legacy-trunk +36026 6ffdda4cc22215bc36ba1f8b8afa14b06015de7a legacy-trunk +36027 5d942bedd28f93b6b3b229f0cf1d1d675b5465ff legacy-trunk +36028 b9d3aa3cde8a5c1a4037bc263b2ee67cee87360c release23-maint +36029 3771ea9a93aada72ed009e4f6da92f61be33b099 release23-maint +36030 84e8fe912440d4b1b974bf44bbf7566539744f0a release23-maint +36031 eb41a489cc2f78d1d41227cfdfa19e2cee1a9cd6 legacy-trunk +36032 01057e4f0a62d0d1fede6c2ec29cf0149f8e7c91 legacy-trunk +36033 eb0f87268d70ae1b2876603672af29119c56ca48 legacy-trunk +36034 70dee2b193f7d531165645ad6dcf49ce260aab3e legacy-trunk +36035 6478eb6ae3c01e84691d954a94119cd21b6fe474 legacy-trunk +36036 b00b26cbc303afe1a1f72ab693f2c49b10eacaef release23-maint +36037 c086366479b1e00b6d10eec1fe58891c185622f8 legacy-trunk +36038 91eae1e925781b54c235d2d341d453978c2090f2 legacy-trunk +36039 fdf75eef6a5c33a8ff2ac7baaf4eb04e3652b090 legacy-trunk +36040 2cc7ff42b9a3d116283969fd6c50e2fa58f125b6 legacy-trunk +36041 3c2158876194a1acca2c2d626d95dda7d159a4d4 release23-maint +36042 ed228e8a139fb90897cb1f9d78d37b7996db39f5 legacy-trunk +36043 efca51ef789daf5a4ca0dfef415c3495b2970e35 legacy-trunk +36044 b1087e1d447963aceb9973146e87acac20de7d97 release23-maint +36045 ff68d6a5a441f6bd2f5953357c433795f0235352 legacy-trunk +36046 1954b7edbfe700036eb6f543f1d137a1bcc818b9 legacy-trunk +36047 99424604d36a377d291dd117987b866e4a95230a legacy-trunk +36048 b791f6554d28f2eeacd2d1f03d506ec9ee9c3c8b legacy-trunk +36049 3bfe2f42b8f9383d605afa54ea85bee98f7f3724 release23-maint +36050 27967fbba48f31d4a8254b8600021dfaf674e7da legacy-trunk +36051 6fc8827c403c163418b0eb4883c3221e98c9c17f release23-maint +36052 525abc66bcc28c0fb9432c9be8b34797f4a648b2 legacy-trunk +36053 09012c6b206805c3f35c4798d9acff406c5abf1f legacy-trunk +36054 ed3746dad705a2b966e53baeb1a756cff1d87b41 legacy-trunk +36055 6c28ad8047f2dfba918ee3e4c5ee472eadbbbb3b release23-maint +36056 8c407906170858c5e75adb955d1bcb61405e94f6 legacy-trunk +36057 d244b53ecfbebe0c5e6e70ecb9d3b97780ac0537 release23-maint +36058 9689da001197fa9eee8b4bc5d97d11a196c1be42 legacy-trunk +36059 e8b4f54f7d19ec67688b802047ff704774d67204 legacy-trunk +36060 300db81e2e4acbec221ca3c380108d97e1ac31f8 legacy-trunk +36061 a6e04847280a26dea5e698943e84f98bb89f8693 legacy-trunk +36062 b9345c355f04b7197734e30e926f116e49e72063 legacy-trunk +36063 0bdb49a5a8fa633652c4094db8b43730120cda5e legacy-trunk +36064 694528e85a04d1fba63e5eff6aa1e3f5b3576343 legacy-trunk +36065 c8a22b5cf58a58baa2a6854972542e4dfc647208 legacy-trunk +36066 3d6424c038882ed5962e216a812bcdf041a5b27c release23-maint +36067 70cfe065eac592646a2aebba325b3dc2286093c4 legacy-trunk +36068 a98f50e50befa1e52b05301efd34a83c7d2ff797 legacy-trunk +36069 df4943d24cb6ddde4772066ccf38bbfc908aa1d5 legacy-trunk +36070 7409c0c370e213258df83c65d0ad89efc2698632 legacy-trunk +36071 efca353e7fd675f71178ad8c116ad2f9818c79a6 release23-maint +36072 29f87932c7c78bca367bb757a9545a5943bb76ce release23-maint +36073 a72bc425733651eb61495ee35ecf24b2ff7bc8e0 legacy-trunk +36074 ec6f9a190831931cfadd5573964d8381009d45da legacy-trunk +36075 10a01ce3ea0ae01dc355f27efe11cfb2927671a7 release23-maint +36076 3634418a858e8273b4a00af759fd38a392457c7d legacy-trunk +36077 2f5f38f4bc2b90089b956739af186d109c5168d1 legacy-trunk +36078 8c0394aec6dcd40fdc3e813aa8aef055d665c4b7 legacy-trunk +36079 3dfe81ac0e7cd0df4e233fbd14b1a6bb7c39cbb6 legacy-trunk +36080 a80ee2004e6ca492b0b9a2ee8e4c939497d09652 legacy-trunk +36081 cdad005bc030775fef7bac673c392d6569436ce8 legacy-trunk +36082 cb957e65f4449b8698b4940dedb6a6207b0e4c22 release23-maint +36083 36798f1c8e9a1a66fdd77805ef976c1a148830f8 legacy-trunk +36084 b9c9e7e8be7d54fb81a2195ba88075f52ce25732 legacy-trunk +36085 ac4d420cc799e5d266a7f46a7df5a75d7372fa82 release23-maint +36086 bdf2387989499edf067496d90ce0fdcc80006a01 legacy-trunk +36087 a89cc535b4c5755aac86bb1ea4750a4d44cf0dde legacy-trunk +36088 eeaa7fb2f16f7a0ed3fa32bedf41a33dba0b2d7f release23-maint +36089 8e5958c93c88215d458792a6af58e2a83efd4301 legacy-trunk +36090 8eab7655601fed121000dc0ec44afc60babb1224 legacy-trunk +36091 42bb1dcdf16e41bd332e01d0726df36357d59c15 release23-maint +36092 47d64cb018205ebed41bc9a2c5f23ea96082ae7c legacy-trunk +36093 014b0d84422f7b631e003f279d040389e3cf6bee legacy-trunk +36094 95287cddbc1eca56c96ce78001b2d998e7732a14 legacy-trunk +36095 61af47213fe6674c836267198da6fe434c2c0353 legacy-trunk +36096 1eeaa5093fc0411160402a7d00b41540b51e4d88 legacy-trunk +36097 adb59d89b099160563a4873dd95ca959b05f1626 release23-maint +36098 7e7273c8d21eb7b6773736da03bdbd49705bafe3 release23-maint +36099 c2bc248d3e9c70b565bf630d2868948951ceb363 legacy-trunk +36100 c0d1261da848d61edc71dd886ad6f86b2c526514 legacy-trunk +36101 cbfa042855290a2381c101cfb2fbb2d12360df1d legacy-trunk +36102 b60fc5eff15594d77504d0fe30d739ecc5ab6f19 legacy-trunk +36103 fd52b68079248cb19907839e612877db3b0509ec legacy-trunk +36104 6dbfee2ded8956e6f79563fed9ba655394f0ef86 legacy-trunk +36105 94b841adf485bc98aae8da4f44d6ee3f986c7eba legacy-trunk +36106 91388c845b1695fe4630b65382564a5307a817bc legacy-trunk +36107 882cf11372a3e4bde466453e6595d14a16f38561 release23-maint +36108 854a2417d35eb518adaec66e5104e44fdd4cb7d8 legacy-trunk +36109 a018ae386f99e1a49d174c15f63bd1cc3868c8da legacy-trunk +36110 5c79b4f13b26f82900da9ef183674f69ffece577 legacy-trunk +36111 71b3d2bbe63bfa78547692bfe78d89dea839e25b legacy-trunk +36112 40c524c1c0fefea67eddfe8e4d57d43da0aa6608 legacy-trunk +36113 e1345ce275f79d83472885ebfa239ad355b4264b legacy-trunk +36114 6d7d00bf1aae596ef6695ab2051fd2c748d7ccbe release23-maint +36115 82fe6832e505deb24a77b4ea45bab7ded24ded2b legacy-trunk +36116 8acf4241ee94f5cc11f2bf660def7d6c6d572c51 legacy-trunk +36117 aa0c84d1f0677868fc7bd5dd195f26c295936047 release23-maint +36118 cf84dbc6a881c7b31c27b6217990b3074007af04 legacy-trunk +36119 29d761c5103e77b5112bb80f8de1b37981d29ae1 legacy-trunk +36120 92f597a055815ee3eaec3a39e24429f2669d8076 release23-maint +36121 c84fd6be5a14f44361adfa4d0c03b32258d1b04f legacy-trunk +36122 41c59d80bbc5f6fbcbb2c2b38bc6ca5ba7c2727a legacy-trunk +36123 e196b823e6c5bad1faaaea087c99bf8ef3fc138a legacy-trunk +36124 a0d8b14568193166c86a4b36d7863963b604968a legacy-trunk +36125 16acc61d33c02d6cc861e637210b3092e6bb5fc4 legacy-trunk +36126 13656d58d450140594cf7da78958db0869b12fe0 legacy-trunk +36127 cedc95459636d532d75e051aee041e5910ea4f1d legacy-trunk +36128 ec88f278a1ad49909e886b161ff0bc8d76588a36 legacy-trunk +36129 32197375128e226588c232d27ff5f42ce9d65618 legacy-trunk +36130 fc6a73905e6f38c9d47a29ea15858318c7e6fece legacy-trunk +36131 1918887d387b0104e3f3c3b3a79356e94975a95c release23-maint +36132 bcd21abaa5b4f15b878b1297c217202a7e94ad24 release23-maint +36133 4301ecbeb3adfa4136c09834c8f41734bcfd7163 release23-maint +36134 fc4762ebbe2cf673472d6ba9afd405b42b5377f3 release23-maint +36135 439e71a4e5546854c54cf89cb5d3aa2c75eab850 legacy-trunk +36136 49e7413cd91c0e588639f26ce485587025ec3e0a legacy-trunk +36137 9e5af45cefcb5f412ac1697fc0148c4207d880c3 legacy-trunk +36138 d69c8068eae61ced8e714c503a77414d00944b11 legacy-trunk +36139 418a0c6bdc7d4a0edfa42d3b3cfda95b989d2567 legacy-trunk +36140 b9de6b6652736d6015cb78ac740018adde7758ff legacy-trunk +36141 87302ac072552435192a48b0bf5ee3745fb94562 legacy-trunk +36142 b0f454f558e5eb2fa6dc6f0841f4509b5c5126db legacy-trunk +36143 50f3a550b4fe6aef33fd2a77cc00e573ef9994ab legacy-trunk +36144 c1fbbc3eed39e5fec669735fb9f3e20f2f3c48dd legacy-trunk +36145 b054cff7bb86d6f127c06e3408d520ccc2886c8e release23-maint +36146 cf28f4a6e67618a5a77fcf3f8c5c523dfa65169b legacy-trunk +36147 7a198d9c92612d2443563d5d31bf5523abdeb95f legacy-trunk +36148 3152b747a2e4611b33fff25bd5165bbaed17e741 legacy-trunk +36149 f49471953689a3bf8b4f646e8514344d5fa63409 legacy-trunk +36150 6fead5ea4bba237262f0b084e1f6faa1e0c8672c legacy-trunk +36151 541327cb8f8bf6b557154c28a237425d2cd2ca8b legacy-trunk +36152 2253a8c2ea62dc5d3ffe576e8176ede60ebcb85a legacy-trunk +36153 f0eb7778a183083f0feda8ff326cc615978c6503 legacy-trunk +36154 63e9e5a2160b5dc9bbafb98374a016d484470c54 legacy-trunk +36155 444fa5d50c14d20e0a8e2bd7a6e54120c611c703 release23-maint +36156 c7dcb09745d35b49bbeab9157abb6dd540cbc644 legacy-trunk +36157 6e4fe5560d81d48ac41c3b0c8bd291a8ca01e440 legacy-trunk +36158 bc9ae44b2ce41fc3db5f922ef293ba363f3c17e6 legacy-trunk +36159 a627d9493149533999d1f45e3ababca14b941e05 legacy-trunk +36160 408a40e65247cd0a772e4f993b5567e2fd9841ef legacy-trunk +36161 c7da6990c4ed9b887e3479c33cb6df2637c2a78a legacy-trunk +36162 5d27269c9e33c6a28d833fd6bb1f0647f375b6b6 legacy-trunk +36163 c9db793caa80a254948da79ad615b05c8e8131ec legacy-trunk +36164 54b257e55f99150155948dd3dffbd41f5810cc46 legacy-trunk +36165 748129e6e1082f33df1e78a5cb61f18c1383cf7f legacy-trunk +36166 8b2df9a07cd704dd6ff6c7959de79d196e98869c legacy-trunk +36167 0413005fc0b2ccbb1bce89867198814f862c2d5c legacy-trunk +36168 e950bfe1856e20f4271030291db590aa9674d27b legacy-trunk +36169 9d8655b475db48d048c3f1a9e6ab2b208d8abd0f legacy-trunk +36170 44e8e84f12808252d4e9a51466f29c3a740c6eab legacy-trunk +36171 11c31a98dfd690a85945b97fde68023b0c94f529 legacy-trunk +36172 13ce447845bcbd47bfebed8bd6e00abe279577a4 legacy-trunk +36173 348db77a07e918c8c56b8f5b1707ea9a859084d5 legacy-trunk +36174 40acb68ad224773b9f857ba20a6c7ad23efdd87d legacy-trunk +36175 581a8a128e11ca15369a1d17621b5005e929b238 legacy-trunk +36176 12f24cb27383c971b7c0267f15b4112e7005d5c2 legacy-trunk +36177 61180c31d4bdb3eaa5055dd415e38e6ac311b23e legacy-trunk +36178 a46bde9e0c74bb761dce68454798e226839b5a3e legacy-trunk +36179 6ab5e0526a32abd40173e453794a38e34aad0a44 legacy-trunk +36180 e5bc947c44caebc029174bc8e2c8cf071b1e3989 legacy-trunk +36181 86f5962fd9b7ec6cb78402fa76074390b69c0d30 legacy-trunk +36182 55ba51bef0a81a04294ee2e260a00f1703d743b6 legacy-trunk +36183 a7d6fc17f257552762945bc250edfb8728bc093c legacy-trunk +36184 b8fce2258c2006a339bd2a9372c2f1bad3b66c8b legacy-trunk +36185 f4a4810f982ed5e854ac63ed5625203e54f54e4d legacy-trunk +36186 331e5d8b296f76a3dda891f2e5aa1db74266c0fe legacy-trunk +36187 509072c3fa26b92a251e5f547b3b02930d2bf0fa legacy-trunk +36188 1fd3aa4bc123ad1319e97834b74648f3a061ca81 legacy-trunk +36189 b99a552738bfae379323a288d79c9561527b5fac release23-maint +36190 391173c68bb3c9077dfcab2aa646bf6d9c8e856b legacy-trunk +36191 963d23557020f2229951431ca58b60e820714238 legacy-trunk +36192 11982da98792c4767f14eccf66103f517601fb50 legacy-trunk +36193 e43da4f99941567c3ab9050cd879dcf30f039e24 legacy-trunk +36194 0af41543c9b65f71f0dac87856ea953be8acfaa4 legacy-trunk +36195 f539a9b94f79457444cb9bd1dcbdd2dbb2b59970 legacy-trunk +36196 6384078e7edf976bef3b14a9fa7355abbc1fc496 legacy-trunk +36197 434d3f2cb832828e1eabfc18f12a6830011896e6 legacy-trunk +36198 f73a63dd328856766ea126c1533d6582efe0925d legacy-trunk +36199 a9a4b0df512ad4f94da7fdb66db604ae69879dfc legacy-trunk +36200 5bfc7543d7efa0fd00e356e09b874c8a57ec9dfc legacy-trunk +36201 c6ab0f88895a5c58ea50636b0e12eb838e2d96a8 legacy-trunk +36202 763277378114c3d05afea452f9ba79f80e4ff3f6 release23-maint +36203 cde2feab7fe0ab70d21c8b515530ae6c5d758f05 legacy-trunk +36204 27e712c8e1a3649e55a7c7669de4b800777f7f90 legacy-trunk +36205 ec64a6be32f717dbde7f322e873e189ccd3e3297 legacy-trunk +36206 d0a6ceb846464706d63ae01e5262954f0320a50c legacy-trunk +36207 686e5d38be421abcd828578a542735ebf24574ff legacy-trunk +36208 0819508aae3ac3e15c765967a2d883f2c84297c7 release23-maint +36209 5cf507b64f31a0d023dcc13cda23f8c22ec67384 legacy-trunk +36210 f9569526e8d40d1b1680c6066874cdfe1b17fa2e legacy-trunk +36211 4c71bcfacde2f2a3e3812c16df04ecbc853860b4 legacy-trunk +36212 6fc02915f637b0244d20a645c1cf6bd9f861f755 legacy-trunk +36213 98e4632721200b080777ddb68866382ced60f2dc release23-maint +36214 e5df8c8faa099bd324ab9f1343e0b1758cfe4648 legacy-trunk +36215 1d584ca56b30495f13916668f96ea01c3675f37d legacy-trunk +36216 6bc6abba8659eaa49a28c82bd25ba8538b7017b9 legacy-trunk +36217 2f76e72ad190cb59394ab1ae5b760a20132850ac legacy-trunk +36218 75861d8c58715a2dbf04e4b18afb15c2401a61e3 legacy-trunk +36219 014d87c732102a7f11668188d1dc37d66cf0dd8f legacy-trunk +36220 472023d0a10d64287e26b9cd6125a2624d73e540 legacy-trunk +36221 6ce67f7b0430a8fedc90906fb14618c6b1d5db1c legacy-trunk +36222 cd47f6221d8d1f5618260e8c8b659101aea01bea legacy-trunk +36223 1c2baae14828239779c69273cb0b60e6176832ad legacy-trunk +36224 8ccd8ec63cc20c2b4a20f9890cb23f9686a69304 legacy-trunk +36225 75e5d1e8b6171a2a9f7d2a6de8cc7d7a08cdcfb7 legacy-trunk +36226 7b6ed35c5850e6f57005e9973447ac1ffacfced8 legacy-trunk +36226 d99b5bed007884b25f1276e2bafb9ad061f2a959 release23-maint +36227 aaf9295ed45b006ec70ca1dc23f95694eaf7f696 legacy-trunk +36228 e0a7c461311b3dcaf6fa356ca8dea134114854f1 legacy-trunk +36229 77913be294b9211467b45837edafc2beea261a6e legacy-trunk +36230 8444849c9448edeab644df544d6ac3ab33527910 legacy-trunk +36231 8101e8d24f0528c411300a645736d57b70e3bef4 release23-maint +36232 393c15c0c5a48f65eb4a1ce4563749efe0917d18 legacy-trunk +36233 d7110bb6c13dc439f4af3ee2e6abf9b19e2492d2 legacy-trunk +36234 fcfb2d4220b0e573e327ed85730d0b689371bf09 legacy-trunk +36235 b1e71b392799aa5714d47e06806f566bb8c26e25 legacy-trunk +36236 950cf69c69b61dc3e7fb3d6cb5eeaf00617d6cc7 legacy-trunk +36237 27e22f6bd3ae772fea4fe79241b7cdaa291c2aa4 legacy-trunk +36238 255a71f2d215a8f70c1d5db7a79fa2b7c0fdd990 legacy-trunk +36239 84e5b585d201b884a95fc0a4b2a9d20ebe5db03c legacy-trunk +36240 a4bc2ffd8e716a914784e7d1d8c53aa7a6ca24b2 legacy-trunk +36241 485d2ef43419d1900170aebbea9d6b682c5cb917 legacy-trunk +36242 3df36e2e5ddc1149af8eb52e20bc225d806236d4 legacy-trunk +36243 64534fb3afcd9400bc30cf7421fef83e3928dc31 legacy-trunk +36244 3ddc7a23176b62831d40a8364f5fb772fb4face8 legacy-trunk +36245 e371183d0e190ce7e0e724bf1ad58874ef059178 legacy-trunk +36246 f8d61ed2f0d3a0e1836e764a6159c5c253858adc legacy-trunk +36247 915b0e833b5bfd2ba25f5392ea5a42a666d4db3d legacy-trunk +36248 1c69f909c5a61378da27f0261e42bb0137469bf9 legacy-trunk +36249 d8abf582f89306eae73e43f1ac4339bf9ddf5772 legacy-trunk +36250 48ca27ada81e65fd755d09ae276c4a502f3d59f1 legacy-trunk +36251 c7d2b24eeff99d606518dab29a67639019415aa0 legacy-trunk +36252 20adb7ce1b085f421b2e3ecb69394a3b248ac268 legacy-trunk +36253 da7c3c61d40e0050fb0adab0eee423ecad8b2338 legacy-trunk +36254 5ec78e2dc4bec96ede78238b56957de1ec03d448 legacy-trunk +36255 ff6b97cdd864f4f50bfcd31decb0fe03cd523b12 legacy-trunk +36256 3a7e34dc6ae26de8b1fd8a1fcaa6ff3453efa99c release23-maint +36257 f47ce2304cbb2359031524a8b75f7a8a771a42c7 legacy-trunk +36258 38f883403e9f8cb77af24e90d44a51eb3f634c7d legacy-trunk +36259 7333be092eec0ce935d8407205b17655955c2276 legacy-trunk +36260 ee38896e0d24173e05dbabb0c575cc8b671bc4c4 legacy-trunk +36261 53f274f02f698059dcf3aa80fe260d1d98373a06 legacy-trunk +36262 1edc0687213fe3fdc41835b69df4ff5b0ac816fa legacy-trunk +36263 b18f480c37a076813cde26f196fcfc9d41ea20e3 legacy-trunk +36264 c56168fabf8e33ed9b29ebc741e06362cbc2d33f legacy-trunk +36265 5adca58149ff49df05e73cd1adbf45f3fa35f4da legacy-trunk +36266 464c808d0dcda38bb82a06e2f6b93db2b5666ad8 legacy-trunk +36267 7db4c586e1d6ce27f67784e7b15691c89f4e0ca6 legacy-trunk +36268 256b496af4c4a075d66f8c14c2f42db410678d70 legacy-trunk +36269 bb00e12e774160577a9f2ee8d0529cba2befb163 legacy-trunk +36270 0e28fd6fea00c2bfc32c19b034b0511383776291 legacy-trunk +36271 d2c1c7ae7cf432365bceca7128b41859bca71e18 legacy-trunk +36272 67fbc23dcfdd4b926ff2249fffb418260fe3c671 legacy-trunk +36273 0f56ead968176552b98079bc1d5a5d4da52c1826 legacy-trunk +36274 73154ab8563a5c116056f81bb1e7ffa1a125411b legacy-trunk +36275 d500f72fb1acf1b938c72e4926cafcfbeddbf5d3 legacy-trunk +36276 50068b17f41eaa1ab4fc9988d9abd4fc9d41635f legacy-trunk +36277 6c16612fb118381580dafa10f1e0f063580ef1d1 legacy-trunk +36278 b73ab309ada7fb2b7a4f1e37b9c68fff9ef9a86b legacy-trunk +36279 6b1ea5c07ff73eec5dbd360c44bf820af40c40ae legacy-trunk +36280 c423e018a29e03ef2766a7934e9805e6b3372cb4 legacy-trunk +36281 e3f82df54c88e0835bcb7ccdd48e46e7f91d1176 legacy-trunk +36282 1b9da5fe905394bea2f517c5dd5c6d51062a80da legacy-trunk +36283 d4a59230e93a96a71ab57d29e731422bf0884293 legacy-trunk +36284 757ab200d47a6ba7df0df0644c09a982c4a3368d release23-maint +36285 b5743e447309120ccc1f0aef244408bf99e65dfb legacy-trunk +36286 3c5036b3e8e675b38879b220b2bc13757f96dd97 release23-maint +36287 df13ffb8f498637ed06aa34ad24a477c47f2dbfe release23-maint +36288 18916ce41c260f2be1a8c23ffb0490934aa48a13 release23-maint +36289 b8710e6d8d780df97cb3db1f30a3d54b3f23bfe9 legacy-trunk +36290 05f12bc1e5b302235deb8be0066f3ccdb07a3195 legacy-trunk +36291 2ffcd836817eabc5079416b72dcfd7372f4471d5 legacy-trunk +36292 4383db77b19a9b802588747ac61aca77f063ba0d legacy-trunk +36293 14b4155d8b0a452124ff7cfe75ea172b037b3bdc legacy-trunk +36294 9e8f7df4a6fe760116db18a243f4b649907beb06 legacy-trunk +36295 796ccb9082ef356c34978344af65665c9abb97cd legacy-trunk +36296 fa78ac56830998448baecd2e3d773c3cb636292b legacy-trunk +36297 bc586db9945a0ec04f49a7cfee2c3e5a747450b9 legacy-trunk +36298 50e844a4eed90f68ffe0e1fa44c6223606b42555 legacy-trunk +36299 fe80f772bfa12920ba1f46cf912a221927ef8824 legacy-trunk +36300 77df1cb415332e276a9473d1773722c2a6788503 legacy-trunk +36301 b835d5c61d8649f44bfeab14dab4824a9b5d6147 legacy-trunk +36302 eccd0fbe0cd5c28c139242ce5e2cd88f3432c36b legacy-trunk +36303 c6acf261d61479d18683c01da430fb6c43921c4f release23-maint +36304 f3cb95cd413f49f44485790029c4b9ada9477ab9 legacy-trunk +36305 002ac6259c2cb9d22fea3fa09812926781c3444f legacy-trunk +36306 91cce7bba37269648595cd020e85d091f0f8375a legacy-trunk +36307 fa23a9b189676176b7083af351bca60fdf54b91d legacy-trunk +36308 3923dc90eb8ebf70a05383a1e48d998d864d9063 legacy-trunk +36309 ab0a2b74ddfd969ea1f8647800a2d4a313d47bfc legacy-trunk +36310 79df4f87d67e7aafa0e37f883aa54bd1a21f1dda legacy-trunk +36311 db503a263b433cbab8fc4c7fe210c024a3e304e6 legacy-trunk +36312 99fdf80706adae6e3a1bca0750786b27fe7a19ce legacy-trunk +36313 202ae0578ebeb15ce98fd248b4984ef1558e03ac release23-maint +36314 f56503a8dba3c41d046f9a1cf218dbfdf5c20777 legacy-trunk +36315 6ca122f2736ab89e151fb37bbfbdaec069e4f19e legacy-trunk +36316 9c87518faf6b6c4e74ac5804555b4c6d19e5d42b legacy-trunk +36317 054ede01e3d3057e0794aa019a69ad1c7acf847c legacy-trunk +36318 51eb67a8568ea1b5e7f20cdf41b6daf45125e620 legacy-trunk +36319 6fe2d241008a829c869ac356a6ac3f14307a5e6e legacy-trunk +36320 fbbd6727401b6162c38b1ac5b5e7f156f91df2dd legacy-trunk +36321 0db63a765a7701e9ec78f5fe8f121bc05011c08b legacy-trunk +36322 f04f081ff231109e1154ef7826e5e2b8a85b1006 legacy-trunk +36323 87401658eb45729698cd08c4199d9739f74b9714 legacy-trunk +36324 c4eeffea196038b17ee6e774d193336e8048bf9e legacy-trunk +36325 191796b7a05456d544fb2f05a29424f7d4cb2ab7 legacy-trunk +36326 f5f04ce2516357616846ad2072d230f17a90b2ea legacy-trunk +36327 682f740886028fded1f93fcc39f04559320853b2 legacy-trunk +36328 8e768c3af015d712957457b349014ac24db34f06 legacy-trunk +36329 3d689e715db244a925463f536b4e6678d5a89c2f legacy-trunk +36330 61f9034a10f71f1de9a60ab2843921a9372397e5 release23-maint +36331 8e7c91de949196172103798759f2e6cef7674a21 legacy-trunk +36332 c4ed14fab12a36b75d6d212835e626ca12e165d2 legacy-trunk +36333 ec928ed01acc55e26910b146c27af5cc87eb18a4 legacy-trunk +36334 b61c41d197787088d5465d8db01774705c42751a legacy-trunk +36335 329ee4830b041214cab95fb0c4f8a0ecdfac34c8 legacy-trunk +36336 4549e75a62434e482b25031e68af242e3ba43db1 legacy-trunk +36337 5e41cbec04653ff51c1536d3f1c76a7779e63ee9 legacy-trunk +36338 f58cc334d15c462c565d6a833575908fecfc4f3c legacy-trunk +36339 10e75ea596054833aa7d966386db2891405dd736 release23-maint +36340 4bf8fb11894f4b81faf74db036355dc31c834f6d legacy-trunk +36341 737e892a2c2cf686058ba11a88ebd31a1f4ad922 legacy-trunk +36342 cafd134fc1cd44b699ce42c8806c40d83aac7c57 legacy-trunk +36343 da63e2d6eb8a3d1f0eb352eb4a59ae96f3facb04 legacy-trunk +36344 987e36afb879d2667751ebac2448df7bc4dd23eb release23-maint +36345 ec5d0e8739641852c81c007cb2dfc8e9710e5e78 legacy-trunk +36346 78bd25b42d463142c840d01f0ccac3ea3a16a9e5 legacy-trunk +36347 0da660e05e690dca108bf681db2cc9267e8b58ac legacy-trunk +36348 67539cfcf09fe8b534ae40ebd9fa6fd301e6a4f0 legacy-trunk +36349 2476a8334286b7a0bfe10acccc39e7e321f31115 legacy-trunk +36350 2451c9572edf5c009522ce707462fffb93a89dcb legacy-trunk +36351 87d196e1c2d01d58f087bebdb4454ad07cf6515d legacy-trunk +36352 92820ea5ae8cbe13da0b023e7ab6bd0ab47e72fd legacy-trunk +36353 201986d6d9d6350cfb2a658cdc6c3972bdec7c6b legacy-trunk +36354 1634f601188859959a178ad777e59e36cb4ce958 legacy-trunk +36355 32455db9713576c297eb8cece5bd30e75578f573 legacy-trunk +36356 43b809815c7d759c1ced9c767cb4ce73713e2db7 legacy-trunk +36357 7fd6f87e5d1fceba158fe1dcf547b0965b031495 legacy-trunk +36358 4fab4a5cce2f5d440e4ee505a963ebb926c316bf legacy-trunk +36360 7e44f3a8b5687cfa612e2c45c81850bcd7415509 legacy-trunk +36361 7ad68587c9acb625345afe77820b39b173300008 legacy-trunk +36362 7759704e78729251a954df70d9a5150c51104a45 legacy-trunk +36363 ec8e4ed2b157cc9cb73257001d81722d21c54eff legacy-trunk +36364 c4d54c4ba5543ea82cf5744b14599ea5e58969f5 legacy-trunk +36365 4693fa19e22bdca2ba96356408cf5d8472de5f49 legacy-trunk +36366 d1fb4bd48936073c2842b07e7e86c4422990f5e0 legacy-trunk +36367 d42749db9339252ca37078608df688eaa9273807 legacy-trunk +36368 9288d524d757997225aba9693ea493e5c80ab80c legacy-trunk +36368 92ca658fd420095b6284c9ce6e9082a80285ec9c legacy-trunk +36370 be1a12d0b895d251692025ab3948d7aa79b6455e legacy-trunk +36371 f3f11d863a02f613af7d573f56d4b127e2c8c767 legacy-trunk +36372 f46d49e2e0f0b18fd93259f676b55c8554d97211 legacy-trunk +36373 3706a3704aeac02a52d864a135e413ad4c1bc9f8 legacy-trunk +36374 c099aa767952d98a6d7a2681d530187b3430f113 legacy-trunk +36375 74c3b713e35a6afd55847a7becc554752e6e1d47 legacy-trunk +36376 d909a0ddd1932de0fbbe21944b79ff27a3c79221 legacy-trunk +36377 ec28563b052e8fd6b9f4a74167322463d8431f4e legacy-trunk +36378 029dffb63f4bf1cacb797113eb30348ee88a3207 legacy-trunk +36379 7f4b66dc43762da8ceff78fb6919a4597731b5df legacy-trunk +36380 ec1b56b43af0465d4be37a58f26ece714f4a1b4e legacy-trunk +36381 e4b96c3a3e1229daa783cfcf9d930ea2626051b0 legacy-trunk +36382 6f351b1bcf534c8caab024a1a8419fe2fd528e14 legacy-trunk +36383 a160b9669db1e320ce2ca3ffdda7ea7cce4ceb99 legacy-trunk +36384 69bb241b056c96f152423aacebe44e51963c9545 legacy-trunk +36385 cf138c55d41be6bc6edcf2c9743f357fa7301f35 legacy-trunk +36386 1118683cd4d1cf5c05f6c7e0d0a11463f96ef9a7 legacy-trunk +36387 3aadfc3fc4e6fdb807fc6aa5b70cd53c349fadd4 legacy-trunk +36388 0064f55bafa7c968733898b24d93dcd400fdc008 legacy-trunk +36389 844d99c888bba14f65308b316cde65bac4113ea7 legacy-trunk +36390 5c25ca6ffaf9e59556ea674ae6c30855e3355343 legacy-trunk +36391 70b1504e17ffcf6a0d99709cfdb3c33d9061f0d3 legacy-trunk +36392 bec0c761862541e58965c0686f53c53a33457c6b legacy-trunk +36393 8ea2cb1ec5988d9a312c164ba6b22382b4ab5a46 legacy-trunk +36394 153c517bc6e96e74fc213130dd89979874749cf4 legacy-trunk +36395 228323895271e046e675c044c2c39ee2fe8c0608 legacy-trunk +36396 511ffc62b298a7f11b361f1534ab09561526c47f legacy-trunk +36397 83cbc025bfc74e4e18a88711181b876c49346601 legacy-trunk +36398 fef7911a5705caef705938a379fe18e1f31df22d legacy-trunk +36399 21fd6e62cd276b27279260747891a99c48feb1e6 legacy-trunk +36400 492dc8b8e58ec15e7167aa267df6c943490f4e20 legacy-trunk +36401 230397bc7e32046cab5b07d85f4541d04fc0c56d legacy-trunk +36402 0dd473a8e53c09227a1e9d9116bc199ee3c85ddb legacy-trunk +36403 4d2f4a39ec5ed274904c17279d30fa9d3c25611b release23-branch +36404 7362e372c8970d1630f82cda3546fd35ba6385cc legacy-trunk +36405 f2f0c5fd9b6c9d3f31fc17d3e7bbe4b173b811fe legacy-trunk +36406 a64bae5c33b7e76a08461afe8d2283b5c8381e42 release23-branch +36407 de326d7e74e8b83799851138d74a1e65ab705816 legacy-trunk +36408 a03bca1654d0a2ff8037ce299342edfc1e20fe5f legacy-trunk +36409 67a84a33d0f8c343c0f2e00592d469afadbd6264 legacy-trunk +36410 4be4c63673eb15c931bdac3ab504a7191ed40bf9 legacy-trunk +36411 3e925959fa01acedc687738167dfef37f010c425 legacy-trunk +36412 c78fcdd0246446df13345c481d2f2ef6c8483686 legacy-trunk +36413 f3f4765efe668338e23d3c352a51cece95e9c2c0 legacy-trunk +36414 5b25c6446aeb33f73644dc9d4c1e2b4845822d0e legacy-trunk +36415 6d7ab0cad72de16cfc1d792f324450f058872e89 release23-maint +36416 fdb9377513e42b299554cfd428854a853db61cf5 legacy-trunk +36417 f6b45d1cb0a2bf67b11ab6f66156a607ff3dcd18 legacy-trunk +36418 b527cb1b2b9eb4ad9466c98665927e50f96bf0a2 legacy-trunk +36419 1c5ed81ffa235db890f27188c19982963e4c8cb3 release23-maint +36420 c16b03ba1c22be4043f4059abd713dfd1760cdbb release23-maint +36421 90d5cee7e66e47a949806d2eaa4978b94afbf508 legacy-trunk +36422 598a5ce63322fae3ace6b48e01978261a5ab52e5 legacy-trunk +36423 50745d99fbf16088d3d12dfa6f27875269b41120 legacy-trunk +36424 5e1f55ec17d6c710a20376f36859a2f3f4b9201c legacy-trunk +36425 ab979ff8b02aeca54798acc166a59c41458a511b legacy-trunk +36426 799bcdff2cdc0561b62865512f382293c5871d9d legacy-trunk +36427 08d90460ab4d624870ba7afab0cf294387fbe8c0 legacy-trunk +36428 57d21c5e0eb8af0b2ba35623244c3f564e379c01 legacy-trunk +36429 cc1f74d19fcbb7cb1916a8e44e615d4a7ec0b7b8 legacy-trunk +36430 c4316df2fed46885c233c5dd2c8ea41893cfbdb2 legacy-trunk +36431 6e9c182958f9170fb29eb3e97276be2289a49632 release23-maint +36432 2b10e2b5e81ef23e6a57f72f9deff51efde5075b legacy-trunk +36433 4f2483abb623af6408d85ddeba561b9963c76a72 legacy-trunk +36434 8b3288f607e1f824070cd57088b1a3ede63eabc9 legacy-trunk +36435 5546c7ae24f70d7f5cdd8774cab0959c940f3199 legacy-trunk +36436 31b65d8371af8d26aef0e18429787371f8ca7319 legacy-trunk +36437 f081f3a568fa887e15bfadfaf3ad592e4315a4ae legacy-trunk +36438 09eaee72973c50ebeec8ffa083bfbdfb3694bb0d legacy-trunk +36439 c538a7644ffa6cb78ced3cb6e384509b025a8be0 legacy-trunk +36440 e6f7ef7073c679620d998dbe04a661fad33ec368 legacy-trunk +36441 afb403383f5d07a2fd7ea6f8e755383094ce4551 legacy-trunk +36442 f603e5e96a4f7c8094cdefae6793a3fc2db16e96 legacy-trunk +36443 2fd69240729aae53f9d34c48a77fd071a86cbce2 legacy-trunk +36444 6aba6d075899a6187d83f67741323f54538d21bd legacy-trunk +36445 1446095a971ab8a356f5e6cc8eba62fb0b419bcd release23-maint +36446 f86bfc03e7636546642aec9e29d067363bf04278 legacy-trunk +36447 73016bd01a714afac4ca9043fe3dab68c0b13ed1 legacy-trunk +36448 d42efc2b45e95c68fb46131c331e1f1d975e3a28 legacy-trunk +36449 f9ad5d202e8ef44231175aea0578ff710b65efd6 legacy-trunk +36450 457fd41c961d2ff8a3167e77ae44997b9d8f21ba legacy-trunk +36451 5139892ade621cd8c67760ac4fcee050c59ccbda legacy-trunk +36452 6173d97b829e6e4c12d295e0417a54b68dd3fd7a legacy-trunk +36453 059dae06585befbeaee2993a3c99d32603514624 legacy-trunk +36454 ce33967a4ab0f33638e511aa6beac6dcf1206949 legacy-trunk +36455 cf0c9e15f6f4d6484fed4a9109d735192ddf786e release23-maint +36456 c9869a18e62132d3f8a53f37fbb18f59433f1e35 legacy-trunk +36457 ab18ef83f5a62ac4a61fd185c7919bbdacd76e8b legacy-trunk +36458 9b5c63802bf9e2ab68645c25fa35b34423ee27b8 legacy-trunk +36459 6f36e02b1f697d0cc3466cd34ebfe196d7291eb7 legacy-trunk +36460 99ac530e8b3f57b42f815c48c7ff8ee11a0067f9 legacy-trunk +36461 ef2394014d245e51a432383eff0247b91c6ec5a7 legacy-trunk +36462 2dbf596e0524e959100f33a82aaf9ac8f332ef11 legacy-trunk +36463 fde4327cd4724d4a08699dd606ed887e7d519e97 jim-modulator +36464 da18210e311c2c20e2c24580eef8ce31d96c0288 legacy-trunk +36465 d8f317ca80bd30cbf6c7fd2c6603c6fc0d76cd71 release23-maint +36466 db994849cdf3fc4136f156fa46160949526c781f legacy-trunk +36467 cf0baefe8d40130a32878e6ceb9acf62d5931347 legacy-trunk +36468 fbb901d6297b55dc3e3e7937632d43efd29dee70 legacy-trunk +36469 ff59ad58568e1f5ca355c7a9d3dcf41ddfcdcd35 legacy-trunk +36470 e899060b1f051ef14bad60999621ce1b1aeb7fc8 legacy-trunk +36471 dc32e0a8a0edb15f2cfc2835b6502988025b73bd release23-maint +36472 9bc2eec1478b6ba55f0b07e68912e85fee532810 legacy-trunk +36473 9c348526a699407bcf31134558a8291aae8a3a34 legacy-trunk +36474 6c1c5957fed5f9e0fdc982b6735fd02c91f1e5ff release23-maint +36475 3c2d9e7ac5a1f99f88cca0c5b82855a1a8fa6acd legacy-trunk +36476 7bd04a4d28b931f189a6394edd90c585b4bb4345 legacy-trunk +36477 929444ca22d8f6dfec9edea399c8e7cefee2cbca release23-maint +36478 f725a1910d0d07733b7d516b355c79fdda7589f3 legacy-trunk +36479 463bf5ebf8a33ab4333f44d976677f693c4a712f release23-maint +36480 391937571065ae1264aa5a48cbf8796385c72d98 legacy-trunk +36481 be1427cb0406f629f73a144e12431b8e1ca18753 legacy-trunk +36482 3cca28ab385442158b0c92dff5a2faaf3e2c55b8 release23-maint +36483 ca2aa43ba38b7aef237314ea6ee2cf115a599118 release23-maint +36484 58843f186e80fdefe491a349ac95f47c4b7edb7c release23-maint +36485 c131c788a06fac818533dd7bac3681ebefcd278c release23-maint +36486 e4d9d840ce6e559cc3ee5c3f5ce1cf5de8fed608 legacy-trunk +36487 6c5f01ec2f75b6e1479f45151a4b114d8bb3ddb8 legacy-trunk +36488 8bd67bad143cdc562de60d9685e97c131f5779cc release23-maint +36489 3eb6d25360a37a0229b9fd50101c144ef6400715 legacy-trunk +36490 c13d911ae05bc0f365a970031896280fe8cc46c0 legacy-trunk +36491 941c239cb6d2968c03208b7f0480759d1c8524a4 legacy-trunk +36492 594996caff10d13b66d1272dbe8416ba8d53cc7a legacy-trunk +36493 272ab5a54b9ebc9c61ed1a72fc8515960541c82d legacy-trunk +36494 a1a9776fab53ea2f64024ec9610c05b4f90bdfad legacy-trunk +36495 52beafd936c80e58e533fe76b34463f58aba053b legacy-trunk +36496 d2e66eaa5f74e81e7889c911bbdce8b9f4412ec4 legacy-trunk +36497 97768d87394a441072573dc2c3576cfb8d670704 legacy-trunk +36498 3479610fb288d9992bc84b848bcdd8b7f025648f legacy-trunk +36499 949473fa48285e5c86bf2bc42a79b73d78b21a65 legacy-trunk +36500 88f5405761af7634c714114c15cabeddc535fed6 legacy-trunk +36501 687d2ecfa6485e8b758b2fa19ed5149303bab699 legacy-trunk +36502 cada2e9b685c89e9b870f687eb19a65f7013f188 legacy-trunk +36503 5581d68b3ae9e72384df51aff6925022f1d4027d legacy-trunk +36504 d3d426483d71043b3b597fca5f07850ffe61a9f5 legacy-trunk +36505 104a7fc06bdfa2a4ded4d5e7990e28d800f88d12 legacy-trunk +36506 bc4dd31c73fdf4f85685e149ddc686efe80ee954 legacy-trunk +36507 8fcf2052d16e2062292a87d0c8a96c56763a79ec legacy-trunk +36508 d64dcfb495b2b715fdd16cc3fdea20658c76d0b7 legacy-trunk +36509 35d40ff69eb6264e9b91e86206347c3fbb6294cf legacy-trunk +36510 9a3b4219bcbedeba49c51bff799cf9bba05366b0 legacy-trunk +36511 fae460794d3d39f60a940cd978e75cee5dd7b28a legacy-trunk +36512 1399dc616720f4b03b3cdc22acd6193fbcea3a05 release23-maint +36513 577a9e4c82fb71e26bec9e922a488f3cbf7959ca legacy-trunk +36514 2bf869d31f0ce615e7c3385cc083d615f4ae0236 legacy-trunk +36515 5fb78a2d94f0ade0d9a52aa573a2dcf3caff64b2 legacy-trunk +36516 211db67ccd09ed9434e7f092eff2a6d777e94c5d release23-maint +36517 780a33787458ece213b3667cb87d8109eea196a9 legacy-trunk +36518 3c382d90f302d3e5628ff7631df7fb9c4eb503bb legacy-trunk +36519 ff26714bf86dc4c22b4e158c16735b6614c9880f legacy-trunk +36520 be6f2e1a78b763c26bb12d35b973c6962a549367 legacy-trunk +36521 49baad7b032e0b0c4dabfdfae44064ab44a631e8 legacy-trunk +36522 7742f85a37238e2c5eb0bc08d2cc430ec1b65169 legacy-trunk +36523 dc2fe77dd167edc8651f53024a05267af78c418f legacy-trunk +36524 0729d1db5118380dd0703208c26e698df4ffc4da legacy-trunk +36525 ed36621b126a1e798544d3d2aa15110b4dfd0ee4 legacy-trunk +36526 df4e6cc6661d045889949c70ee57c70c43d3ea57 release23-maint +36527 4be28093e480eac15ac3497427b9772e3a9a590b release23-maint +36528 ab0b2a5888f9e70d11f6b7c9f0c757b59587c717 legacy-trunk +36529 5069f5bd66f3f6d6b70fd1134619d6f0b614d1da release23-maint +36530 d1ef86f8785f93df48cda06fd4611bba8f3faec0 release23-maint +36531 f08529879db1ad3d5ca457efdc6bc941807ad94c legacy-trunk +36532 abe04e77a4b0fd7a7e8786fd242f7d3f33dc68ee legacy-trunk +36533 846ace57389c92a9dd7e4f8806d131eba031a231 legacy-trunk +36534 df88fadba2f56cbfe441922e7894933c19ce0dfe legacy-trunk +36535 c7c9b68ddda29c561dc8283707fb9acc227206ba legacy-trunk +36536 255ae23c78fb6193bfc5f538c6f6c237979be3e8 legacy-trunk +36537 38ad9c6e717c8b0b8bc972f61f3382f2a087537a legacy-trunk +36538 17406543f15b27e8abcb98e3f3709afbe0e6c83a legacy-trunk +36539 5b0c87de6d05096ed418104c6b7c6dc775460e13 legacy-trunk +36540 f79cf13a9a7d10a832abe02265d7e11555dcc4c2 legacy-trunk +36541 0e890ac1c0f265f447f27ff37fcf032f838bbe96 legacy-trunk +36542 1bd3383bad985036480365bed3391ff966724740 legacy-trunk +36543 109550f5a829630a8eff21082c0e0ebf0f082e3a legacy-trunk +36544 cbb25fda95a580f2c67f4aa9bd44078882e6b46c legacy-trunk +36545 d09da71413ca04fcb6cf33facfa23c5a40afebde legacy-trunk +36546 4d43b0abc22a8b61fe2ac50ceae996fce7a63492 legacy-trunk +36547 efca55bbba0ab12a04f976d469639b50502c372f legacy-trunk +36548 6acd7070ed66f7ad65310db01a2f8cbaa8f7c3a6 legacy-trunk +36549 7559c7eb47802743498626968c63b8441a560c15 legacy-trunk +36550 e4cc78884fc426c26d2192b216559f45a269e059 legacy-trunk +36551 69dadc2ca14dfcbf62ae1a16be2903fb03805c2c legacy-trunk +36552 81784f666789b9024f876e51cb99fdd86c5c557d legacy-trunk +36553 e135e82cf6e48916f6b9d465ca9ca57bfffafe08 legacy-trunk +36554 07b48eaf2b01ebc48c4fa407b6b6371e8533c6c8 legacy-trunk +36555 bebcb79f37cbc94983976413d04492faca873731 legacy-trunk +36556 dc3f04afef7570b6831e0ac45244443e52c96248 legacy-trunk +36557 977f267b00f93ec62919d76a513b3f133c419055 legacy-trunk +36558 b1d142d714828998704606daffdf165c7d47e90d legacy-trunk +36559 2bc66f1df7cc7c823fda3ee64b2cce20ea77e89a legacy-trunk +36560 c3a096bfbd6be9395990e7908c5f887c3537a867 legacy-trunk +36561 282927f7bde242da7cc3959a33fe8fb564a8033e legacy-trunk +36562 8bdd794a4197e8971136111ba1ec1b93fca514f9 legacy-trunk +36563 c1bd1c8e64b4574859c91e3b37f9738bd767f7d8 legacy-trunk +36564 b6f1252b681c51cc083c4ff7369d0475a7560820 legacy-trunk +36565 f97099f9ff1c31f849fa7a5df59127360829422c legacy-trunk +36566 3377a72373fbf85d5658c966fc062075160f1406 legacy-trunk +36567 4e07eacb1bdfd8d754a38510898bcd7fc8033da1 legacy-trunk +36568 d1436c28dca32ee2e677735219eea41466faabab legacy-trunk +36569 db1a27b6d7750ec276b973bd1d9cd9b6806435c7 legacy-trunk +36570 c1824d68d10eac43c983c19f817fbc11916f5430 legacy-trunk +36571 e4575519ec2623a0fd5593977b9fe1c12dc3616b legacy-trunk +36572 05ca2232efcbdbd396899c6f89735918deb6ad5a release23-maint +36573 b7951e1f5ddf29b0b4403043a43598ff61610132 legacy-trunk +36574 5d9f72d0843eea9d8ece3cbdbce7b6e100e43fc3 legacy-trunk +36575 95eb6e18a54273d35cf8969cb3afad54643eb237 legacy-trunk +36576 dbd3a04eb0c648958736f40896a37261025a3380 legacy-trunk +36577 b5459bf482624ba1ef2d54b8bcfc2f23f236cb5c legacy-trunk +36578 938dc32ddbc41f1458d2d6b745c3660f61cf1645 legacy-trunk +36579 257563dcb442344faaf987cc823c4ab9e4e80722 legacy-trunk +36580 db26b3dbe8027cc9b050ec34c6cc8a5e178b53e1 legacy-trunk +36581 26cb058907f21b78164a9b22940bed2b76a58d98 legacy-trunk +36582 859ea8612eb0dc528b4a14d17f0b23f0b3dc2937 legacy-trunk +36583 d1777f51923bb6181540ac1f1e6b7229c5d79f35 legacy-trunk +36584 dcc5c2d58f325ffbc811bf207a217a35c5f7aa8f release23-maint +36585 61be904a1d4e3553d7a2d71d2905b293bc5f73b2 legacy-trunk +36586 76ad814bc67c94eeffb97806e953f8aa160d01a8 legacy-trunk +36587 8ad5a1620092e4d0ee61543ef3058f7e47c115a2 legacy-trunk +36588 ecb0c97f1e4260daa727a711f3ff4cd28e9162e0 legacy-trunk +36589 50ece3d4ff3722878b206e523a12da53789a2175 legacy-trunk +36590 d15517f2abe8bcf28a59074ba539ccbf055c27cb legacy-trunk +36591 a91e7a45f14241f696ef91504a0ffae5e8e9ebbe legacy-trunk +36592 ffa8ab0081f213c4957478f1b0040b8211396024 legacy-trunk +36593 983a91b50f6e7875025205b60ad5429439230132 legacy-trunk +36594 a3b1d6c99e4621be4f7d4947413b2dfccb55e682 legacy-trunk +36595 62f843fcb823797bcc9a59aa1cf63f4f8ed7973e legacy-trunk +36596 2ec451230b8ebcb326565aa924e8fe2e7ec70ea9 legacy-trunk +36597 b301e5dee938c238a010d8242b1bef6cddb52793 legacy-trunk +36598 8a91cd7d7e8254dd5c1d27552a7044502940271c legacy-trunk +36599 826069b725db269ea1cdc44f4a69aa733b254af5 legacy-trunk +36600 6875cf0882e0123cb6462ab7be0dcd314704ddf2 release23-maint +36601 13d20322787d5a32ab017718c3ef3f1bb38a4b59 legacy-trunk +36602 7af695bc54809265aa28c814c533550cb2b8c529 legacy-trunk +36603 31938a463f287e8f6746446debb3f2d7cab86a85 release23-maint +36604 517e00af13a1a7831152d1915206d5f680420cc2 release23-maint +36605 caaef302f1e33c59433f98f842d6280fab90d1d6 legacy-trunk +36606 7917fd2c4298381f2e241135159547f592d02fc8 legacy-trunk +36607 d6e73e52880e47797ecca7fed33c8bd225b432a3 legacy-trunk +36608 e6b847b07553f3cee668aca336cf6a43ea369601 legacy-trunk +36609 034b3b92c5e0313904c06a1e3fb77252bdbf5dda release23-maint +36610 4f4b7956287cab6893a67c49c41505220769ab6c legacy-trunk +36611 807fbe8d3584013e6507302bed9d8787c3488c71 release23-maint +36612 00892420e0df5e0865ceda760f3a9b37ce3b37ff legacy-trunk +36613 6df9322d6ab823789f8b31ec7e6254dcd347ce35 legacy-trunk +36614 a940b6c07e5775eba3bed7419f9a06a106d15cb7 legacy-trunk +36615 55f73c82e304bb89dc8e6491fe0f5847d0d76746 release23-maint +36616 73045143be63e8cffbc6fe0dd7c9d151559d9f17 legacy-trunk +36617 1e2187f506317157c36093f371dedff5282c8e97 legacy-trunk +36618 0f9c39b3e5f02f48554f927ad4c5af109dde7047 legacy-trunk +36619 46e0431c9701cac0ba30ff8da19dad4168582185 legacy-trunk +36620 fa49c1e2d2c1070ce964c34b98f5f42952820d80 legacy-trunk +36621 ea54fdb86530ece54d4ad943113a6b3b4a950544 legacy-trunk +36622 9267aeb72985d0524bebaed9dcd125262fc253da legacy-trunk +36623 eaa8a37e1e850ce666fb4b4755bc32f6be2ab591 legacy-trunk +36624 fe4145ba39bffba6178237af5b5846f268906489 release23-maint +36625 16de4f90ef4468cb6f9e739f3b7761d52a4c9631 legacy-trunk +36626 d30d51b2efe012a8fd5c1186d87192ca9cff4512 legacy-trunk +36627 dac28136d59b0ac57b961a475f138b38202737aa legacy-trunk +36628 cdad62533094f0ca1b7457b47784de47c55a8256 legacy-trunk +36629 b8bc59578a475630879c5d90810215d15c0ed7ec legacy-trunk +36630 3e04233852d4fadfdc0082401b2895f9b16dfb1f legacy-trunk +36631 4a51cdcf861533668b0efcbb89f6237f89380093 legacy-trunk +36632 edbaf610227b9f316245e9fd2dc4f5c59b5c467b legacy-trunk +36633 b2879a72b34661e90b2273f903169696beaaf956 legacy-trunk +36634 623ae12930ea16ad6948c1d3857cddb042ec02b7 legacy-trunk +36635 6e79dea85189afa944f722559ef710bda5a28381 legacy-trunk +36636 d5c97d69dfc7c171c5f0298c7081c9832282f888 legacy-trunk +36637 9582fa2e5e0da2a06fe180e8035a4f89ac366a31 legacy-trunk +36638 f616d65359933063c94cd8497d35ea1df530847b release23-maint +36639 ee7b841011604f499f1480632a148049e5f34293 legacy-trunk +36640 d2adba4781d5b0798ae6841ebd224fd22df7c8ed release23-maint +36641 bf686ef92cb0bd242e627b8c34cd47ca7f936e7c legacy-trunk +36642 bf6a2069080c6b1f6cb7e263cb7963111883fdb2 legacy-trunk +36643 d1ccd2f45da34175c89fefd1b6b846c860781aca release23-maint +36644 80acab9c3c176177e8cd55e81371979480c100e2 release23-maint +36645 b358d2f44a7402dc4709b449e329e2e0b0e60ed8 release23-maint +36646 3835dff2efdb5ad02b89ea4db8c3bdc408382cd9 legacy-trunk +36647 fbb2d34f75a3bf70125f21d753e179b026f01b04 release23-maint +36648 71633d37e98e92cf9659baa9018bfeba4685b8d0 release23-maint +36649 c6c58b61f6b5a8f034a6011dc6e90a96522d927f legacy-trunk +36650 d956820895050b4959ca28de2200f9028f5e5204 legacy-trunk +36651 37a75b2b4c2940717596689b109de4334b225575 legacy-trunk +36652 07a57d89b1e0dfe8c9e73bfc11c75af19f669d16 legacy-trunk +36653 cbd4ae74890d3c104ed6b235cfc171a066860eed legacy-trunk +36654 060de504ebbeafc07683bba804a1691c9f8c0d71 legacy-trunk +36655 4353ffc437f19fd88145dded835808cf7920c341 legacy-trunk +36656 fa4c7063a736a5c9e3428e988750f681a49ff568 legacy-trunk +36657 dac9d0664fc393345085750298c9489aaed9c64d legacy-trunk +36658 718305112f9fd611c090409165dbda161c3b68d8 legacy-trunk +36659 b58cf6b5fc914380d50d2ebc61e34a63cb02fdc9 legacy-trunk +36660 1dd3cc927d377f5e939f3d55e8f74214a3c3fc31 legacy-trunk +36661 70e8f634a589029bf8de651b89a0aff27ddd72fa legacy-trunk +36662 24dd1d07afdbc0689f244b29c158ba99fcffb52f legacy-trunk +36663 7b44c2782793e9c634963e44bf2107ea7c35d168 legacy-trunk +36664 21318d7695f9cd3f562c77f9834ec606e183dc8f legacy-trunk +36665 0856d98e2a683da6b3f75f3368871bf218428cab legacy-trunk +36666 d5b76a167323aa1530b9f964c7d28929995f63df legacy-trunk +36667 dab3f08668df23ae356eec0930189421d21dd225 legacy-trunk +36668 a4f18c89865fb8d0d2ab2b82ee9f187a66fa1812 legacy-trunk +36669 db21081f5bc1b16188121bda9a0e0f384874d9c6 legacy-trunk +36670 865513112f7a0e7918fc33015d13f1759259e22e release23-maint +36671 5e480a5c647da73449bf3e982fa2f5e20f2aba76 legacy-trunk +36672 e3a35fbce8ec22176d389328563e3042d11efdda legacy-trunk +36673 e7cc74152c55297c3ca9f8d6dcff198e204e849f release23-maint +36674 09e633c5273079ad9c45ac55c1d28ce8d56a14e2 legacy-trunk +36675 052a43aa35ecf72ed228851cad20bc5d7af13143 legacy-trunk +36676 0f94f4886bf55a8a550f1b06958f01a05b58b662 legacy-trunk +36677 1682201f05b2a8450e65bb693b33e635ddc0ff5d legacy-trunk +36678 dcb241c89f42972c7120adb055772a15866b31f4 legacy-trunk +36679 96d991477a829ca77d12d9c835ce02902fad7d5f legacy-trunk +36680 06a63c35df9e3c65cdb2ae886605ab358f0df45d legacy-trunk +36681 724fb26ea05f24c9a23c87acd3ac4ea862627b58 legacy-trunk +36682 fa0526c30da805f810f7e8708355e7edba8b2d47 legacy-trunk +36683 45f3222b84ee0ee31f27b2bcd261685a31bc9588 legacy-trunk +36684 48eae20d70c58b86c4e3f073c0eef9d01dcb1811 legacy-trunk +36685 fc3687a627b4343c09e950d6195392aba5357ddf legacy-trunk +36686 9a00b65aecdcc8437e230705bbee450190800bbf legacy-trunk +36687 6ea32b0e9507fa26f1fd5c2b8b2158043a93a9be legacy-trunk +36688 60a708bf351ae11e9792cb11295603d44593767e release23-maint +36689 c57010db123eeac187cb4be7c0e30aa499e3735a legacy-trunk +36690 a53b5cefa60d7d0524f8403a2f1e629a3b0b33dd legacy-trunk +36691 8d25835f88ae4450e9d329bd8d18b1f09f365ab2 legacy-trunk +36692 bd46e6f80623bf9d22968455dc2d095443935e0b legacy-trunk +36693 ca6efc54b19ff719cf3682014c8f7bdea192e396 legacy-trunk +36694 195655299ed364874ad61563d2f41cad8830c16a legacy-trunk +36695 6be894014a8c3bfd6f617d916e354c68db4e773f legacy-trunk +36696 d013393c7d982f4a6c24b631314bc04779909cf5 legacy-trunk +36697 ef08f48b63a1ce54e1b3f473d1e2e666208edb36 legacy-trunk +36698 62c53b8e4aeb31b6f04171965f312e1ef6defddf legacy-trunk +36699 b390cd91c76b11f5862f54e3ec0a11dbc44f858b legacy-trunk +36700 018c43045b53e638ec89c7999555c02202bf7489 legacy-trunk +36701 2929fc54b49a5d47b85bb4fab5d848cd7272a2ad legacy-trunk +36702 ca1aeb8ab3802cb27ca8ca2d98d2d47f332a4294 legacy-trunk +36703 d3d609d657fd269fdc77952f167a82dcd40faa5f legacy-trunk +36704 510e9e2b081746110e962d0a94c647c478736c40 legacy-trunk +36705 26b306894b9eb4610c9f48941a8399b780fa4655 legacy-trunk +36706 331e60d8ce6da19b168849418776fea0940787ec legacy-trunk +36707 e28b8733a66d7deaea58c50a767031845cbaea86 legacy-trunk +36708 88a1d86d442e8114b9774713ebf4db8dbca903a8 legacy-trunk +36709 2aa7aef4e4033c340c9f987e0122eb3c53698381 legacy-trunk +36710 b323bdbac7e4772b8ac76f62735fa57b5bd84e32 legacy-trunk +36711 1be4033f84980891d4eb1e7fc1c6423172a82681 legacy-trunk +36712 c7e03cf8333e5a3a8ccfe9a0ee85946763307e01 legacy-trunk +36713 2095cb59818834eb9eb4603373bbcc0c710afcab legacy-trunk +36714 b8c2aa2be19a31441b25552f8ed2e519f09169a4 legacy-trunk +36715 a9b25c230732729f2cfbb932bd9915c3fa54d884 legacy-trunk +36716 685a948b3bc9cb5d594d6ceb288288c3ed54d8a4 legacy-trunk +36717 51d7a12244af31381fed75d9414281f09059cce3 legacy-trunk +36718 d049a1fe26763fad706a443123ef714161ffbe00 legacy-trunk +36719 63ad6f6925c568d4faaf93a9e9d9b6bcf29425d3 legacy-trunk +36720 a75815e315451264abcdd9b2c35c1e5fab841cdf legacy-trunk +36721 0dc8ffaac036453e69fe3b05ced8a875a1a73df7 legacy-trunk +36722 daec2d311def3a03330078da2be9e18aab00e818 legacy-trunk +36723 84efa005419aae27ce8126cb05940ded374b2200 legacy-trunk +36724 b8e10acb4efb622260ede789d88d51ec09232256 tim-doctest-branch +36725 ac73f6662e117c2a44fdff7f7689f2e6ef797bf4 legacy-trunk +36726 30d86e356bf24f714b10fdce3e6953917b318429 legacy-trunk +36727 79c4e82ee997c8f4100d93fb85e4097b045a082a release23-maint +36728 33b8ce66202ec9197bcbff0acf2dae177644710d legacy-trunk +36729 9146e2ea3bd50cd561d22ce351f8bc48f0c66fa3 legacy-trunk +36730 f412fa2b3fdef7c93ddd3af57832ea453fdd9f65 legacy-trunk +36731 d4dd7b82cc75bb6b5b9a558d3ca83464c6988e0e legacy-trunk +36732 65f11a8d7c8b39e7412e22e80208dc0b1008accf tim-doctest-branch +36733 e22574be87649a47f5aea64adbda6e617cfe5087 tim-doctest-branch +36734 4cce00047f9749806f335edd2053efe4dccf24fb legacy-trunk +36735 d674d78d8da6642fe183dcb7787222f6ced54a22 tim-doctest-branch +36736 6d16b07addc3a6d3f4201f8e2145e9c69f5e0655 tim-doctest-branch +36737 54671736a29e4e74d0cd408ad4691daaf970c8bc tim-doctest-branch +36738 f53b901c8afe8bf215de477761f2be964ecc2ca6 legacy-trunk +36739 65319607bed8a186aad2697a16f2aab1a44ddf45 legacy-trunk +36740 66c556f091637d19eacc1f722e5935a3bfa9674e legacy-trunk +36741 1533719c613839e42a7e95d4895376949dd24a90 legacy-trunk +36742 329d4906c33fc7d3882392f7190c56667526ae8c legacy-trunk +36743 89159a1268ccde5c1eb6a4e299eff6b6bcdfc42f legacy-trunk +36744 cac5c8f3e990f2e796ffc67ebeda89d520ffe1b8 release23-maint +36745 a9856e73e32d42d17d45f6999fecf60c89a9a874 legacy-trunk +36746 ff77727555ae510429e05b6ca4b9ad089c24b67c legacy-trunk +36747 41facc3ccdd339c94ce2be6b8f18754bba3b77ea legacy-trunk +36748 7e7457a69b4d81ddeeb8d0403289834eafb5cb45 legacy-trunk +36749 25b669f4b56cf62c3b0c3f640bc673fdfe0b46d6 legacy-trunk +36750 bda98304deb5d94f852509b9dd6945c6c8ebbdbe legacy-trunk +36751 3824fa29be49cc1c1b78dc33653732921c564907 legacy-trunk +36752 69370253115ba77bd7e6490467b8a2ec49df82a6 legacy-trunk +36753 f1bbf147810b294635a6f0a3ce9cb03fa424532d legacy-trunk +36754 936712b31bedc8a325525379b4d8eb3a938e471c legacy-trunk +36755 663ad349534b0084d7bddc08e9abbef339938612 legacy-trunk +36756 5f58fcd7accf62214f314dbcd85e92191412bb96 legacy-trunk +36757 c31d8f38fd7f6f1fd4ad4bf00d44c67b841228e6 release23-maint +36758 ce488aa04f24ea368ddf9c11a4006f9e338f408f legacy-trunk +36759 8ac4faa282e0b9cf29144f677b25ac7ad1754218 legacy-trunk +36760 5c2149f36c3eab6ca0551c3e510910c00b6d12af legacy-trunk +36761 ec71ae3bc2ddaf5ee883cc197e0280312d010ce5 release23-maint +36762 bd3dd6b3ff972688286ff515dd037b0b86d58c15 legacy-trunk +36763 45a170c4ca56ced26ffcfa4797d5c4a51d2d44c5 legacy-trunk +36764 91fa80a67811bcde50eb9006c1d05998b04b903e legacy-trunk +36765 2c2f5cfefa605683ef7d146aaba822d482aba6e2 tim-doctest-branch +36766 dfde085228eea50b46fad657d5eb68cde7fe4819 legacy-trunk +36767 f071a553aae58a453f66394696d637f50f8c93bc tim-doctest-branch +36768 473cb0ef82d24346fc511c84901e226aadcd1fd0 legacy-trunk +36769 2663b4f535b7cc58a5a3cdb418aa71c55be5061b tim-doctest-branch +36770 651188a6638dc3fc47e1b126f70db49e106be5de legacy-trunk +36771 8ce344f6c954eec8cf1108e9d5cdca21596911b3 legacy-trunk +36772 5aa85097cb2cdcc96a84f4d4ae41d487e1061d45 tim-doctest-branch +36773 582eb51b849214506b01fcd30c81954adcd62c17 legacy-trunk +36774 22ded309648bcba33932547c9920b277e9fcd3bd legacy-trunk +36775 66dc211bf50721ad01f713efedc0589b8ae8a762 legacy-trunk +36776 84b4757999182e0fcc9a511e246bffc337a2bcd7 tim-doctest-branch +36777 63df4cb492a16c6afa9fd573d933fbb0d208196b legacy-trunk +36778 9fb5138f58dd81b918d26e334cf3f2aa4533af72 legacy-trunk +36779 f63d45fd3fce74489492ff2180f68520c06ff55f tim-doctest-branch +36780 e027921122889ae8dbfb8f8c866a30dd6eefa98b release23-maint +36781 9f8a7ba21055ebe0da0d6033698b350750f503e4 tim-doctest-branch +36782 8b390df7af873732d9cd65f8fba06f5bd0993dce tim-doctest-branch +36783 e4feedb205f2d6b8fd0064f6308107e29bfff256 tim-doctest-branch +36784 314422a28e3fb858b5f5e9638cce301d5172be79 tim-doctest-branch +36785 d741cb377f8295ff10630edf8124d09f045d8a80 tim-doctest-branch +36786 fcd690c8b2ca6d8455e3291378c6c77c54ce6bff tim-doctest-branch +36787 cafd7e4e77ad0782b3e00a8646808ef5b0319d97 tim-doctest-branch +36788 fbb5428ebf4109e6aa78c25057eb2dc1f0a4aaf4 legacy-trunk +36789 db38c1e839652d1ef59a561df0945ee10377e844 legacy-trunk +36790 b639cb45b17313def20c717185c8928999aa6153 legacy-trunk +36791 953ce5af10a31b2935d339a994447f820031e904 legacy-trunk +36792 9ebd405683cd8572415f92b99ab75eecf11cc239 legacy-trunk +36793 adfe7d39a049d6a3c93b42ff9fb92695782daee7 legacy-trunk +36794 024ff0ab458803355a3d3676c075419af3ea1043 legacy-trunk +36795 b56481a90519e5a20a18d533aa3fa25314ed624b legacy-trunk +36796 971e51413447c2e8bd3c6ac5b1670e2f64addde1 legacy-trunk +36797 2bcbf3fb7021efb64305da74caabcff70b694636 legacy-trunk +36798 e2fea22e0c513d61bc98a5691319c4023da3d3a3 legacy-trunk +36799 071d3381753b60d22766d17fb8728a5499602fd6 legacy-trunk +36800 a9d59197b1631dd4a3bea0ee068aae0ab978cbc8 legacy-trunk +36801 156ac6de9625c47df15bb1124d20d44e5ee36667 tim-doctest-branch +36802 0bf0f4bea1441689b81a3413c4c68a090123e0e2 tim-doctest-branch +36804 e9c6414dbdb61537353998e86767057fe154d7fd legacy-trunk +36805 2bc332616cd6f9fe1ac742f2521a98105a687dc7 legacy-trunk +36806 7aaa852fa856fa3384526c5343d5e0ffd66b9090 legacy-trunk +36807 5e8e309c0bb06973d97bba618e607081cc654b0e legacy-trunk +36808 341b7adba9447a18bce3851df43e2fd06f0ca5da legacy-trunk +36809 9f66259aece3165cc2c70e0a3354423bc40dbe0e legacy-trunk +36810 9ac643544629b04977b7a9c08a87bae937ebe7df legacy-trunk +36811 ea338baab8599d7157f02f40dbfb0cd8affbc541 legacy-trunk +36812 9821e388b59d93f396b7377fd7eef58e9f9448ee legacy-trunk +36813 ffaa175d0aa337f8842847471acbda59eceb24a8 legacy-trunk +36813 055fc6955f3c6522bfeb7ed4c671c97d5baaaac2 legacy-trunk +36815 e6d009276c547961a430b98bba134bbd488a1968 legacy-trunk +36816 3e909c54e30c91dd277be75de19e97c4f3e79676 legacy-trunk +36817 ceb1c3f1ac8abb461c50edd99817154cfee5f008 legacy-trunk +36818 5f4bfbe26a4dc464efd6f1301fbafa0fd6546d31 tim-doctest-branch +36819 84410a0d6ea9413401ea596b4c3efffeeee5c13b tim-doctest-branch +36820 ea87553e25609f8afb06831af603460064aff123 tim-doctest-branch +36821 bd413667ac16b67dd2d33955477e98ffcc326094 tim-doctest-branch +36822 2e67c27086708b11ba88f621375dcc8404748c82 tim-doctest-branch +36823 b6890ea5fde0f6e0529cfa72d7628b0a9b58cc51 tim-doctest-branch +36824 79600658be6892a90573ceb717b96d7f1fa96ca6 tim-doctest-branch +36825 be584cda547d642c89bd9cf5a5751c4e8c236c2f legacy-trunk +36826 f7d50e91bef39edd4a2e6e2c5e479658a933e9f1 tim-doctest-branch +36827 197517d8099e47e000543b549aedddeb57055cfc legacy-trunk +36828 4c9efb3a6bb3f60c420a85537c93a9653c92d8d4 tim-doctest-branch +36829 c26a4fd69744adc4ccefec71dd197aee30b5d810 tim-doctest-branch +36830 fb6ffd290cfb39d21aff1d72082df6cc3ffce1e9 legacy-trunk +36831 aacdd0eca1eb562e365da525fabf04ce2af8b102 tim-doctest-branch +36832 9b188158181f7f1367545dd2856af95c52a133b7 legacy-trunk +36833 4f01894ab458dc77abe169354978f41bb2420e62 legacy-trunk +36834 40c3a51cb71cd354761218fa51d1c20ebcd1acd2 legacy-trunk +36835 360040d3d4fad8217c11678f7ff856ea1d9cea6d tim-doctest-branch +36836 5cab33618293004b5c552d9ed06879ce8b1792f4 tim-doctest-branch +36838 678d40fce0b14a99e7630f511b8ce07ca30917ae release23-maint +36839 5cc55d36bb1dcf9b085d3c5a9eb1b05b706b2b7f legacy-trunk +36840 e89ef0bfa1ff8cd4b10a42e8142a1a2770ebc9e7 legacy-trunk +36841 50c122bc7aaca3882c747f8e55d7298ea6068664 legacy-trunk +36842 ae8772d15a5fa7160a366029e7c0a194e5f5d27f legacy-trunk +36843 726db585474614f1140014e48b62f6cd38f87cdf legacy-trunk +36844 4b3f8dd9269ae07192a9b746b54a2fb422241657 legacy-trunk +36845 f519896cf5dcbde39d543761788938a7a13d2fbb legacy-trunk +36846 61c01715775683445faddbfa1e3dbeafad2368e6 legacy-trunk +36847 8f87440c6e80cd12ef9a78b36165b2fc13c73f1a legacy-trunk +36848 a8a486339d80646f5c4d3d2f7f5d059c137205b9 legacy-trunk +36849 2ea09662a2d40b5cc13127b97da8296689a61ab4 legacy-trunk +36850 44450129ce356e5f0e9de99635a06bfd49d72ae7 legacy-trunk +36851 c9ae95d77a427f98f481fca5a9e8cfe85f4c1494 legacy-trunk +36852 b34a8dc3ccaecf2c5871f44a89f67349a1e3692e legacy-trunk +36853 4e2c66021bf380d243262637abd025034b2714d0 legacy-trunk +36854 43fbf29dd83a978c814bc4de0aa6ffb1262e80bc release23-branch +36855 252c65469114695c6aff7f49afca05cd5bdd5e50 legacy-trunk +36856 1aa40a08982fa55eff208ad62a7900592c3a8223 legacy-trunk +36857 30025965324a581e071c17e4ec5d0cad71893d0b legacy-trunk +36858 309bebedfc97a1cc231cb27c86fd6e3d9c4fc569 legacy-trunk +36859 2c116e7ff1636be0caf3c0d7f87ebaa42c9c1bc6 legacy-trunk +36860 441ab3ad6d01a0cb62c638880587dcc9329d083e legacy-trunk +36861 4bf6854db656ed980c335fdfe8d378faa567d381 legacy-trunk +36862 4fd59651fe3f9a626c9eabe21856e2ec8795e667 legacy-trunk +36863 396d011f8348ba67a12b59e542fe10aa0cdb798d legacy-trunk +36864 b5dcfe7a415960ab0fb3c32e05ef798927bdef98 legacy-trunk +36865 867fef2b5060ac8201c916d8bb9f0e633daba764 legacy-trunk +36866 fa3d01f0fc442152d52b406f79ec7f140b4452ce legacy-trunk +36867 8d707d49cb9bc7f8bd6d9760a43dca7ece9540b0 legacy-trunk +36868 9fb2e30f26bee5ee1e856166fadb28634cb8e483 legacy-trunk +36869 367ce516ad054bd8ee72804ab0f4a80a40664d91 legacy-trunk +36870 48cb4ed494a65810212a3955719dc26d3937b022 legacy-trunk +36871 8f6d205d531bc97eccc0df2e1c8319e1fa09d5ca legacy-trunk +36872 ff17624b264292619f240d2f8213b89a5cd7711e legacy-trunk +36873 b0e0a53870b6f9f8097027f414f722655afdd2eb legacy-trunk +36874 8ca8febc0a0d750090c43b9e336ed3c117c4ee56 legacy-trunk +36875 0beb756965df9cd4657cd2e93e0ce30a091d3151 legacy-trunk +36876 e5b9e872a7d3ba285426981ed11ad30c566a5d64 release23-branch +36877 6aa31d75c4f990d95b8e6d5cce6ca2f7d48c57a7 legacy-trunk +36878 5c940f98e46559c922eb8a15ebbcdf20d11ddccd legacy-trunk +36879 ab93aff4c90a84bf0c0153099445e2fb430045f8 legacy-trunk +36880 1f358a6b4bc336e5704514b2827ea1859bb5d2f3 release23-branch +36881 204d29acba2801010affa7f38bd61a3ada8f2163 legacy-trunk +36882 5218bff564494f6f10a5b2ad2316294c5ad24509 legacy-trunk +36883 ad818338f8c3306569cbc6366924fd67173f1c17 legacy-trunk +36884 530c02b83eea5ad165b6c8c8406602f1ac613cb3 legacy-trunk +36885 2c93fceee42d13daf054e66f740fb066085c8fa3 legacy-trunk +36886 4f588f57a93b035ad03b8d0460839fedcb7fa587 legacy-trunk +36887 8897e77cd79a841bfe775c571c16d20c5508afff legacy-trunk +36888 9464415a1f89499199257d907940533269bb378e legacy-trunk +36889 49b8083203e6bbc1f979611c81734c3dfe15b8ba legacy-trunk +36890 9ddfa74cb250f496f81432aa75d9f49540370e49 legacy-trunk +36891 85002cf4e23bf50d8a81ed57a956a3fe15636cac legacy-trunk +36892 2e7b78032702c7b6ba6d567ed187eef7811928c8 legacy-trunk +36893 8607ac2f81c83920dd42a49d07cc224e4f3b3797 legacy-trunk +36894 26752df939139033fab6c3873b0c49e5f6db752c legacy-trunk +36895 1660a68fa6a407a73dc7cac7916c9bc1eeb3d2d0 legacy-trunk +36896 7c3d569522c492aef7e3993b554985918e12b67b legacy-trunk +36897 b669a6097ba89c826d40b03ac61e811bca434847 legacy-trunk +36898 ee3aaa79184292d802f5bde9751176fc5608613f legacy-trunk +36899 f6b2f192e03b53fb338b1546294ca293a15caf20 release23-branch +36900 ce2a196203c5ece927becf04e2918e8e575479f2 legacy-trunk +36901 233c223858f77bbac52ddb58591cb5744d5f255a legacy-trunk +36902 fee2038b8fa9dc82b066d23e3b033447f333b26f legacy-trunk +36903 420488408e0e3d6433c7d0953434281e45228435 legacy-trunk +36904 5a4d77b6efa65ea8ae18677ab2635277297ef03b legacy-trunk +36905 3045f4f34ef247bd5438f20a0a1a5b1407a9155e legacy-trunk +36906 17fc88a1b8735784c42cc3ddd30b445bf9e49f91 legacy-trunk +36907 1dbd0f345a78860c49a62783667f348662e1c664 legacy-trunk +36908 2749334d71a47143e01557757920e7f9aed8b683 legacy-trunk +36909 163621517b98254ca8558ec99ec6346ed73e0da8 legacy-trunk +36910 67d25217bc7f0c47421c3cafa5829b30291bbab9 legacy-trunk +36911 c81ed079576f2a5e7e71c457b1ae829eceed97b3 legacy-trunk +36912 c3487ef3a69c4d28a01da5e1d706f3c1ce2ae760 legacy-trunk +36913 d0eb098be2648f25776bac9ce71c8c5012270858 legacy-trunk +36914 c478a71c2384042b82c7b77bfcc444ab79582fc0 legacy-trunk +36915 455667146d4b99ecb5c45c48e3ea1a22b1b3b3cc legacy-trunk +36916 985375aca9707310f0754625fee1cd4e8b93a73f legacy-trunk +36917 1af3ad49d06fe0e2211b36f3c100fe75a47bb71c legacy-trunk +36918 27ada25509ff26268cf185b915bc7726d3d980ff legacy-trunk +36919 fbea2be355628be23f44a6c72d7c05d01d6323bd legacy-trunk +36920 29fa9d6afea01fd8faa70b5ae50e42e9cfb3c4c5 legacy-trunk +36921 f0a6ef3a874ef8dc5a8dc93f33058fb53f965955 legacy-trunk +36922 5e69f7c80ef427334385f6512ed4c769c9aa9e1a legacy-trunk +36923 6f38e3b64ef4726efe9d4ec5c60fc15909c0fdeb legacy-trunk +36924 31ccea9e98a746fa0ba91a9791f247df1842f980 legacy-trunk +36925 ee43ca4a2c238e41e732330cdd946b94c1d1fc41 legacy-trunk +36926 764d28fc3d3698ea8fbfc0139a57faa6f4b2f7f2 legacy-trunk +36927 90da7098640723974c8ab88c0ec9eb9111a1e764 legacy-trunk +36928 03043b288b287586002e07d81b59d067fc3bcc85 legacy-trunk +36929 45329d9fdb8d545471e40a711837f86c9927a474 legacy-trunk +36930 cda0455bd0a031890069942fdb8740bd12934819 legacy-trunk +36931 2a8c3758c4a1906be31da3aed9253f7fc19192bd legacy-trunk +36932 451dd49df53109cd62abbd91abb0cd166b34f0b4 legacy-trunk +36933 821c557ca6124b5fb2057dc36f3b89f8f9ffacef legacy-trunk +36934 4e6f4e9ec9b3d3a566dae894cf40703e413b0bf3 legacy-trunk +36935 04d9fde11330948e2a3d0cb7be0e567162e14e7c legacy-trunk +36936 4dd1815b44efaaf98567e53dc57f76d4be2145c0 legacy-trunk +36937 bfcc4e39fc452b35326676346ac811d1e7d3745d legacy-trunk +36938 981fff7363b92e8e74df17954af22169dcb01d80 legacy-trunk +36939 01cc5e3f6375221a1b7c974220ab3dbe8d361f8a legacy-trunk +36940 836e77266f97791314110f3b470a77fee4a3e022 legacy-trunk +36941 743abac9f9fe33ecbced9739c15c0ff9d7d7ff31 legacy-trunk +36942 d075cba851fd86fd96096379a27868c6337d16e1 legacy-trunk +36943 058e851e793eafbb11482b958ac318d61dd7020f legacy-trunk +36944 a7928726dd8f5bd44e84e9b45ec3d06f76f2d92c legacy-trunk +36945 5eae4ce105fcf4c5649f97db9df0ab8ef3442f8e legacy-trunk +36946 240eafae3ea74da7354a9f5e2dfdc18d8ccb391e legacy-trunk +36947 5f33507cb55982371efa3922e28af8633a67de8c release23-maint +36948 abecbd66a6280c7d99cde3ca51937b8c5168df21 legacy-trunk +36949 44457cb8f97014972d933c494082854e7558908a legacy-trunk +36950 afd54126e9a190fa040af4f4ced66ab541435666 legacy-trunk +36951 5347da31f076c6cf27d4401c0aace9ee92006621 legacy-trunk +36952 9937d0e63ca325f47d0b3ce0a63e1b9ce31cd7c6 legacy-trunk +36953 4fd18505fc35fdd7b32fc63e7d17f9dd72c1b702 legacy-trunk +36954 4b0a0fc1baea31df93ee256d50d175b3e0f9fe09 legacy-trunk +36955 48100a01ac7c053a4175a861ed67ba693e2424a1 release23-maint +36956 dfc25e1b96058348c9d24435be4716b15c6d7e8e legacy-trunk +36957 20e90e50797de8f5d064ac7a2e923d7d8a0183ee release23-maint +36958 b166ae2f77321437e8fd536f95b7323b2df6792a release23-maint +36959 ddd24d72ad6aac569f8106778e745ab1db98208e legacy-trunk +36960 01a3855a4b03e8297cde93409b10e91482ac8467 release23-maint +36961 c70c33f69a44c9463075ad6c458ebcd5d4223a32 legacy-trunk +36962 3b5d37f7cb5ad1e77ff2008c6dbd28e31480d401 legacy-trunk +36963 ce016d0ec7015534a250dc485210df17e279c32c legacy-trunk +36964 356887410bde74b998751f133376201914307b91 legacy-trunk +36965 81efec0e9d2936be86cc2cf0c32955acbcf8f097 legacy-trunk +36966 f27935b46985ac61e0bd56930033714e7262febc legacy-trunk +36967 6b8e499687d62586ea75b7ac268de4894c445c68 legacy-trunk +36968 f455bbe7ea7e2b16d47961511e6b64055070c606 legacy-trunk +36969 e5f6c3f50846653ca293b4bca721fd9126f31e3d legacy-trunk +36970 babd11eecd883acebcae274174c534acc9e55854 legacy-trunk +36971 c9ac9be95af9e2e8a9b8b0f567955f26b580912e legacy-trunk +36972 ddc0304c151fe4f6ee11de21f3afd650b52a115b legacy-trunk +36973 450f5e21eac8dc24a0dca269b9f5677704fc59d1 legacy-trunk +36974 0a0c247f0584456e15174392cfe3c882dee1b68e legacy-trunk +36975 7de7c1910ac9ca40e9ed4a300b14e41b15ca48aa legacy-trunk +36976 a77c0372a1d7b52cd1c3b55482323eb0e7c8711c legacy-trunk +36977 28e877ff74cf7067336389e9a78bf23fc67e26c1 legacy-trunk +36978 e4a73efa4d234befe3c222ba55528ab6fc881acc legacy-trunk +36979 dfd3803ee0c1813d8a70fbbb64094aba5157f5fc legacy-trunk +36980 3a4e73a5e4347f1d15aa1754fc8dc98cc26e30e5 legacy-trunk +36981 bf69fc3bd067e4e5ecc1c28f07ae7ac7a6144e21 legacy-trunk +36982 f6ac417b5eb08b73f1c03820542c9e01a3e3de37 legacy-trunk +36983 1cf9de3a8503a43978578b0ad8e961027ff5b314 legacy-trunk +36984 d7fcdf9776c4dfa4b7d23bfb626eb9ee72ffdc5e legacy-trunk +36985 920f5f64f2f0fc8038a27d4e2da8c196bba39441 legacy-trunk +36986 0140785befdb36d0c1b042e634eee4a55829154e legacy-trunk +36987 6c16ab4214af8e8e50a803370d9bd4fc8f2b17d7 legacy-trunk +36988 dc647df539217a595cecb190539cfd62cb8972a3 legacy-trunk +36989 3a7f82e60cb2292428502714ab077f821f9cdc72 legacy-trunk +36990 ccd02bd344b38b0e9e2624237768ea12b28b17ee legacy-trunk +36991 eddb37d702b5e05223606ee1fc4285583ecff7d9 legacy-trunk +36992 c2384601a241117d1e77fd5482f3f4040ba84149 legacy-trunk +36993 ae9b47a8d6484856f0c8de130c447b1f4235ea6f legacy-trunk +36994 8a282797895f3f125d3595ed54834f19ba600c87 legacy-trunk +36995 846ba2972d7c1bdd4c4da638521245034fa6c808 legacy-trunk +36996 e4992e930cb2e5961801a44190461bdecdd8227b legacy-trunk +36997 3db9a932775e60a6af7dc273d46c5ceff220b88e legacy-trunk +36998 fc1637fc45889fbc92d752363063b1b3566bfb69 legacy-trunk +36999 7375ae5f9dc4d5f59edf09747e5c51b4a26eaef3 legacy-trunk +37000 1d9835082be5aeca6a5f7ec26600759c24a4c5f2 legacy-trunk +37001 ad268a8408f4f6beb572bed30f592abf5debf5c0 legacy-trunk +37002 a35e4d35d142512cd28d6285144f4614f0a9ba9a release23-maint +37003 3beb54f9d2bbe8827fea76cd4dab6669e4da4bc7 legacy-trunk +37004 2893dc9b4ef4dad045295f156885a6eb3732d20c legacy-trunk +37005 22fa96c413aec3a15878a66e0c4d40051934c9d6 legacy-trunk +37006 951ccd8f342886ebb60ac82b18089a242bd54b43 legacy-trunk +37007 8779c8c4d181af4752cb91d815b72004941904f0 legacy-trunk +37008 9c841caa0e814ae6f4965db5c94d982d5fbcd4c4 legacy-trunk +37009 28a205ecb4dd80564762334617f1ffbfbd0dbd1b legacy-trunk +37010 8e87a6834942e4efa7612b19c59a2d91ea9d3194 legacy-trunk +37011 8c0b08b2477bfd3a851c65bb37948edd9998852c release23-maint +37012 612de268ed4be0be33b5493e3969ea9a02f5562e release23-maint +37013 fd92ea8b5b51bd1a646ee4973891e4b8c61f7caf release23-maint +37014 7aae06b1f1ddcb3679b4175b1d83a32213ba58ea legacy-trunk +37015 ff9d5a72d54b720800f88c5488e700d2adee4451 legacy-trunk +37016 b55dbccecc715066601dec3aed131113934a5e1c legacy-trunk +37017 4b5b6e861fcf6eb3b98126afb7c8f96cb3bacb1e legacy-trunk +37018 933548fe7b97b0a2b6371aee7cf273d923a205e7 legacy-trunk +37019 a362016e950d50c52c8f9e44782f1df929e11f60 legacy-trunk +37020 2b8bdb069e0aebdd6fc09352e871fe0a78a51549 legacy-trunk +37021 b2f427db228b146f521e8edaf5849a293e288752 legacy-trunk +37022 3f9d21ec504b4fbfda70fd149006c673b5ad86fc legacy-trunk +37023 a059301a4cde3d411ebf2d6783a2224f09abdb76 legacy-trunk +37024 ae4cb2947400eb2af39c3be94cd4db2fc5ae7920 legacy-trunk +37025 bfb291f858715a77ee0a27e5a2d81b4980c47310 legacy-trunk +37026 208fe719c749b51eb27f88b3b9c0ff5fba003087 legacy-trunk +37027 6f09b520c01c590fc8a1030d7787274fb2b7b1b5 legacy-trunk +37028 1d6eefbcbb3747e0d2b909bd70ec0793ca6e219e legacy-trunk +37029 357b24c346bb0d668eaf6e56de104f94ef749e20 legacy-trunk +37030 2e8d2bdd33decdb68e84b958e3f5707b09968f3b legacy-trunk +37031 96bf402488c70a61530d4f3a83c5bf851c23bb2a legacy-trunk +37032 bed45a6b993ba94ab3f1799dcd8860763eff9eec legacy-trunk +37033 5778f6331334ce36c3d8fee2dc32eeb35d7b9362 legacy-trunk +37034 a5769e8f1c6fde752be0845b0e806b747dc93065 legacy-trunk +37035 4cd77de551e745b1ae10ce0066fbc285a63ed657 legacy-trunk +37036 1f9522238c863217b15a49cf6f092acdc5aeb58d legacy-trunk +37037 e05e9d05830d091c3f8f9431f3ca47f6c93e2f92 legacy-trunk +37038 f6fa649fc4af74d3fd3a3675d2f20f1ca82ecd49 legacy-trunk +37039 a6c80170fc5382f939281228b68c4099b69d5fcf release23-maint +37040 4536b03151577b954efca110c27aca81c3201134 legacy-trunk +37041 17973f2e3e0e897c749dbb291c9e5643f19c87d7 legacy-trunk +37042 666557c2924dfcfb16d2b5ac4a3f4a1312ac3aa1 release23-maint +37043 a2514e2d1c74e06d97b6f75715a027232301fd94 legacy-trunk +37044 aad1186435988b2ab9cb6de8e990f8c6031b74f2 legacy-trunk +37045 0d1627c447690cafd3bbe06e31d871a3ee251e87 legacy-trunk +37046 2965ae94a23fe341cb7c0d95e82e7cf5a755e416 legacy-trunk +37047 4401dea724f0afc16526afe011c64576aeb5077d legacy-trunk +37048 8e917b9e70e7d7c81e3d925cf8d53101a9da3e40 legacy-trunk +37049 feb5247ba0c80b22682e58a72a87e27a37a62f29 legacy-trunk +37050 4c78fcb60df3091c1880465cd746160c6219777f legacy-trunk +37051 35bb62ac55feda4c2c57e3fee262433505c562ad legacy-trunk +37052 0feccf19b16d5c4c0da41836c73f342ad9e4dfd9 legacy-trunk +37053 de804edf8bcd57ee9d03e24c1522a93284103a01 legacy-trunk +37054 b0f2681bcf7fa740dd15cdcb75aeb921b4fdd0b9 legacy-trunk +37055 edb853ed6c78b3505266938c1bdda2f4721b112e legacy-trunk +37056 bbe68474e5220d76f9d3cd537972056fe5ca8532 legacy-trunk +37057 d2883c42c204c04f2467fef87d89012ece7d0d18 legacy-trunk +37058 096de45827c7b674bfefe6e3527cb027d039756e legacy-trunk +37059 7f57b3c7ebbffcb5e8e8de413ba3eefaea008e8f legacy-trunk +37060 934a5db9b95b61229fd8fa7ab8b2b4da0b6b9ba1 legacy-trunk +37061 7da9201bc8b532c6dc36997a2667215da5e388cc legacy-trunk +37062 017227e47c3def31b8c018166d8f2acf7f32cae9 legacy-trunk +37063 ea4874e021e80eace64f812fdea87539fb1c4452 legacy-trunk +37064 26563204660cbcb8e244493d79bf02cdef0d30c7 legacy-trunk +37065 347d71c0e018dd179150534a37b083f7c03933c3 legacy-trunk +37066 1d0f4c0357d004f29efb15b65a86fee8b4118a6e legacy-trunk +37067 eab21fbf9a70f970dd9d0b1d064838fd80149a10 legacy-trunk +37068 c18aca7e81cb5f77768ea9c4b4e8f1f655211c05 legacy-trunk +37069 90569ae3e3f3f1cde10d7afd57d87afc39f425a1 legacy-trunk +37070 69700687e30f515a644a42c09a170b6b1411dd67 legacy-trunk +37071 bed62f399dac0bf5471e2689ecc328ea3fe99877 release23-maint +37072 04864c39b006333f32ac249ea18e276385b99354 legacy-trunk +37073 34a8d75edd2b03a51a7b14181187414f6cb1b44a legacy-trunk +37074 16dff30e66ec0e5d8c8b778dacdd0ee7ae30b077 legacy-trunk +37075 c9b99308b0e8cbf90f586f02c8ca191454622441 legacy-trunk +37076 94230f6b5ebe52f632d12732df54ead708b08a8e legacy-trunk +37077 db1bafa9b656136b87ce7bc13040519374268932 legacy-trunk +37078 d9765eb59edd7855cb664cd3c243725a0f2a07a4 legacy-trunk +37079 8d77134aab82f408e26b8ea780964ee326f97487 legacy-trunk +37080 6b743cbc41710e6264e8cfcb424cbf915bf330fe legacy-trunk +37081 8252e989cbb15bf476b7aa52f2f0544cfacb18e7 legacy-trunk +37082 066c7890cd615530aaad3aa198595c23b1061df8 legacy-trunk +37083 d861aa8745255887e1a63a81c95fcccbb70ffe82 legacy-trunk +37084 3235e739bda12ef18977c08cbb18510382f842f3 legacy-trunk +37085 acd9bf2e3bcf5159bffed79927945fbbe1f958f1 legacy-trunk +37086 e6304d66d945b56979d387b89a61436cb998dab3 release23-maint +37087 8abd322a013ab68cdcaa6de3104b93eadb3f7503 legacy-trunk +37088 84931080e05cc3f9998b754bc8921ee991778613 legacy-trunk +37089 57a66d700c7cfbaa66a3b47cdc6eda2a3b609889 legacy-trunk +37090 0a8d39aca98c5feccdf7c91761e74047f080e4a1 release23-maint +37091 a1cf4a29ac3007087ea898fe996256f11382303d legacy-trunk +37092 40b5aee20b83172ed34b41a816fba7ca629b2291 legacy-trunk +37093 7fec0662cf4aa2ddfe4db7fa0a5498dae7c01747 legacy-trunk +37094 9c570af5356e7e1b76d91aae403bc03ce638a7cf legacy-trunk +37095 dea98eed8cf0c8aff36284117c583247f893dba8 legacy-trunk +37096 69976cf591495fe84aeca9e5bf565214efd84045 legacy-trunk +37097 77d3642eb87be7a87396f14131bb2758b730637b legacy-trunk +37098 ab34980ffa1690a953bf3210e3ba73af55addac8 legacy-trunk +37099 f9f4b19dd755d901ab195767955971cf3b15c41b release23-maint +37100 22b63ed2d5b2273fbe9ea0cb09804e75871fd1e8 legacy-trunk +37101 2e0966dbd678b28ea85d9f388189d9119a38a0eb legacy-trunk +37102 f98e59f2f89d091e40aef56dc4b63509836073fd legacy-trunk +37103 fb9869044bba9f721789acecfedfe8c7cf064640 legacy-trunk +37104 71427915796edc1c3352889e0cbe5e8aa58909db legacy-trunk +37105 2caa6f19a2e66cece8db1bb0a8aa291b447453f8 legacy-trunk +37106 561702350e09807b3c528cf9ba02990abbf55809 legacy-trunk +37107 cd2a95cfc7eb48aaf5ffa43fb3407ed17056087e legacy-trunk +37108 395bb3746d1d4e066478258f750b40c250282b7a legacy-trunk +37109 84acc77c06b888a86fa491a002ee15ca5410907a legacy-trunk +37110 03440272028c79734b981f2e51b2af5701f81643 legacy-trunk +37111 98db09fd443cf67b5aeb3e6a08c2c3a2a7dfb52e legacy-trunk +37112 1f9b9c226b43ed20cb61e6d21aea6cb966e8bcd3 legacy-trunk +37113 c654334dc9618ee05cff2583731b1d05e65f6a09 legacy-trunk +37114 12ef56f88a90be5368c25c53733738ae74f07bcf legacy-trunk +37115 95744a4208a270c05b9c9548c111659bb0d8323a legacy-trunk +37116 377c518d848343976b9294790132f63a38f1c6f2 release23-maint +37117 8dd35f5c79282a722b69584e18f06f3972024170 release23-maint +37118 b4cb49829d3eeedb0f4b1c2770684ed5d8f5d80c legacy-trunk +37119 3fbd2d1ca5bb60d3a6709b17eb9c1af066a81d33 legacy-trunk +37120 6641d05425927f2afa6c100e0f428e35521c9b1d legacy-trunk +37121 11a4fbc88a800c5e1a348b7f5fd4961b623b354a legacy-trunk +37122 993fd8acc90f284733a088a5da0d8da34ac5e6eb legacy-trunk +37123 b63b30821ef478d90eb8aae707423e3b3287c07e legacy-trunk +37124 965e96e1529905637e7bd5f2f17b9b834c2739c2 legacy-trunk +37125 1cf7d7225a996387c70656818145fc1522cc9e97 legacy-trunk +37126 7a1fb316e65522d16c7674a7fbf2f805ce2bba3a release23-maint +37127 8cd57796a9cf810bbed8e17541fe143b068d0506 legacy-trunk +37128 f1072a30bb58108e8d776e7fa10cd3d3db77ffa6 release23-maint +37129 b045070172cb2f759e35ca43d3ca3f5f1f591a99 legacy-trunk +37130 4e9ecbf47b6ba97c8b75c2ae1e354d07cd8183c9 legacy-trunk +37131 d675e3e0fe7968ec17064488332fcbead731313e legacy-trunk +37132 a47f3d2ffd22154ff78df95fb628f8bd063d2c80 legacy-trunk +37133 0ed4fd7a0e2e0f503f2decb73dccc424b775de6f legacy-trunk +37134 3016471ae5489bbf9879c1d73cec2fb0c03c26e4 legacy-trunk +37135 3dbdbd572d9412927e8836520310e066135ed913 legacy-trunk +37136 bac997b79b1925d6b892d3f8b4cf980b8327e5f1 legacy-trunk +37137 4ca9fa2353bfa43b386edbed2bd94804f5be3025 legacy-trunk +37138 2727718e9e8f4264fb6d17a17df198e2ba1cf3d0 legacy-trunk +37139 a12d984bd962d952dca07fa64b49b3db9d494b0e legacy-trunk +37140 8d1b4cd8a12454ef6caa0a9c501cd5e5e2ecdb5d legacy-trunk +37141 0c734932c6f41ed2d50fe3c067c20b7db7d27a45 legacy-trunk +37142 2b136441035c833ee4bb25caa78c2c01ec78db9c legacy-trunk +37143 b25cb2045dacb097dd113ee8add7c110ae6796a7 legacy-trunk +37144 826ad896a7a5c35ba04b53727c52ba7d11f26d53 legacy-trunk +37145 4aff1fbce7524f1c48f8d12b171b0f974ff7132f legacy-trunk +37146 eff766e29c5525a0705f2bde6c5dbe7e992e6240 legacy-trunk +37147 2747dbd5938b56f8d97500eedf46a01ba7695ff5 legacy-trunk +37148 345fac66daa9b173dfed2d8a391abc15c5574894 legacy-trunk +37149 ee703a094dfbdf100a9dbd9c35037dce6932f3e4 legacy-trunk +37150 e586cbecdeba629033d785d01533515467946b1d legacy-trunk +37151 449141aa011c9a436137dc9998317bb951295907 legacy-trunk +37152 8aad5296fec960347095e1c475f804cf20f46789 legacy-trunk +37153 ff88da400778589c329382b9effdef2e176c9f2e legacy-trunk +37154 8d276551cea972a0b7e1c17426a642338e651f84 legacy-trunk +37155 4b00ae1efdd86dc3934534904f5cf26498e80089 legacy-trunk +37156 8a4c3054a36c946f48138dc6ae8b5f3deb7bac35 legacy-trunk +37157 5fab4f43b94f7371b5c00da96bc7e88644aba208 legacy-trunk +37158 67fbbeb1e2181e002e410a84bb98f891f255e991 legacy-trunk +37159 e07a6234b73b1f477580fbcb27da25158c602f03 legacy-trunk +37160 3e25d6e3da19485b9ff8b0491e82719e3a6777ad legacy-trunk +37161 96d538488aeeac3bfe6639a79414b670741f9de8 legacy-trunk +37162 a37ae7dba814b73fa5301867a5c46ebbf7243297 legacy-trunk +37163 b2910e479f07b11031434b11544672cbbfe03d2f legacy-trunk +37164 77de38534d2632876463d5beaa9796389033097a legacy-trunk +37165 b1c26e89c464d6a89c67baceee1598e594ca00e3 legacy-trunk +37166 e19b00975d5e862f0aec9815f2536c35997ec397 legacy-trunk +37167 521b8795df9be4881002a1779ba3e55061bcb873 legacy-trunk +37168 4b32489c34a7a11d5bca895a66f174475082fed3 legacy-trunk +37169 78b578c46770e50e6028fcbbe7f542672c98065d legacy-trunk +37170 7f617025565e80f07555ee937772cc6ad74b36a2 legacy-trunk +37171 cd15642309478ed5e0da6d3524695d3813f528a5 legacy-trunk +37172 f28072e64f8176743dc038bc3ad4be512b91d0fe legacy-trunk +37173 598050017b5e401d020210a1aa40e3b538798d51 legacy-trunk +37174 8579859f198c78ac143ee67cccf92a769d9eb525 legacy-trunk +37175 59bd121eeeb71c75cef8a3c8853f788f250872a9 legacy-trunk +37176 bf0ef5fc49f1e8772a7fcd3d5f99195a0fd2338f legacy-trunk +37177 542a5efa4883ba2668d5a04447f407b346234216 legacy-trunk +37178 2f52df17395295b64263038a0bc78e91f0f7afe1 legacy-trunk +37179 96bb46691e860632d23394b3bbcb38005a0643d5 legacy-trunk +37180 0b181bf230c93f6617bb503fb4b05b178755ed74 legacy-trunk +37181 cf0ea19869af5ea6497d3588a8d3aab4bc146b57 legacy-trunk +37182 b57612f61ba3f3ede1a92e275bf0725d15ef304a legacy-trunk +37183 6d3bdd19beeb39946bc690828278ac3756c2b9cb legacy-trunk +37184 d5b097608c9decac5d2083c8d67f812bd0039f6b legacy-trunk +37185 3ee5dec0ca07ccc35fe12d19540ac6a3a8bb8584 release23-maint +37186 1ba7469a3b49b4d0d4f2ff1d721e7a2a9b78b13e legacy-trunk +37187 00b89ab44cfd7cf40ef0e41a4d104d9ed31416d6 legacy-trunk +37188 a25af68d71fc6d4d747b102af114c4f294eb75f8 legacy-trunk +37189 1768aff92864d68c8bde9785dec6c3221309e9c3 legacy-trunk +37190 787fff51bf2aad2833a63ee9f77836062a270436 legacy-trunk +37191 5452d4ecddd0c47ffdb32504edc3874101aa1fc0 legacy-trunk +37192 fee592fb56436d929199881cd809375a86618084 legacy-trunk +37193 97fca735c8da6f9db1a8e78ff2a956e931cfa3d2 legacy-trunk +37194 20881505c1427390d7dfaa7597777a025b2a83df legacy-trunk +37195 d538ecf0bc6984adcefb8171466460701b2e7221 legacy-trunk +37196 062177de86858a7e0fae95c2109df5afa580a59d legacy-trunk +37197 fc0b45755743276511857aed3e509a7e3245e50d legacy-trunk +37198 04245ef53949c1bd311166d49d9e2ec1bc39d721 legacy-trunk +37199 505c9063850e4c43b0af41677719e3b6473fdbed legacy-trunk +37200 84fbaaa20358a70ef12e3267024c4a4dca675be1 legacy-trunk +37201 05c125c987672075b569a3fd2642de1568b59c54 legacy-trunk +37202 00e619851a569748ad47ba26036c45277243d3d6 legacy-trunk +37203 b7acb970f536513d3e4f12318dbd0a6ece0e22c1 legacy-trunk +37204 f30993d058908eb0b7ae3e19a79f5b958bd0dcce legacy-trunk +37205 68e68ed46f0e9af742ba031df4edace4228e0502 legacy-trunk +37206 d9e03938a333bdb9542df5325d7819c937d63e01 legacy-trunk +37207 d5c34dbc36182f9fe54fa9d0bb23cbde86ddbc0b legacy-trunk +37208 0a79d7a9040c769afc5eb9344d0c0eeb991869af legacy-trunk +37209 e5b4fe97f74d1586b1905f65eac8e757060bea0e legacy-trunk +37210 1a54fcf48fe4e644fe18ab1a567b42d48780452e legacy-trunk +37211 dad827794745cbccd411ce8480f55234894fcf71 legacy-trunk +37212 adc66d314c78ed16dea11e445e8aba3366b52506 legacy-trunk +37213 ddba154c0e000ac456b0e73e55988c475fba989b legacy-trunk +37214 c44f083465f9c5aee1aa3c62068effac750d6e5a legacy-trunk +37215 cfa72a8de143990caaebaeacd426d9ae3e8e3530 legacy-trunk +37216 128d528457da565f96d9dcf1f644a4b3365eb1cc legacy-trunk +37217 f7474d31ba3fa9bf0c50799446f9bf2719bf4d6c legacy-trunk +37218 23df6cf29650d45aae1c6b62a7f9ee55bb2b82d4 legacy-trunk +37219 999d31ca8a19f7de0716b3f7b83bb30e0517760b legacy-trunk +37220 e56192e9fd7e7e493fb0025a6be1e2e7e16f9f8c legacy-trunk +37221 1dfc97e2acdfe4ed070f9a28cdfd37751c1a24e2 legacy-trunk +37222 96040250694072bb97d80ec489b2aa9295b0d027 legacy-trunk +37223 c9a82e9b7b4d18516ea2cc0d24e8c5c9ccb4bf34 legacy-trunk +37224 a6eac3fe542f930c8e6131593b4f3ecab0ce7bfc legacy-trunk +37225 03be06bca160fbc9c9b58a8313be15346294cd93 legacy-trunk +37226 268c5f83fb877aa41703eb3bed5888b8e484a239 legacy-trunk +37227 26e4211865ed7b390f4e9411289a6ffd566e73cb release23-maint +37228 0f53ba159e54e21ef557c04684c8e66fef746f04 legacy-trunk +37229 b10b7b7afc00d9b08ce83393bd4204a05694534a legacy-trunk +37230 3540e10525a1aec67bb1603bf88a1c5887bb1722 legacy-trunk +37231 d0c01e0fe2496757dcb6ff0b85aee1c3c987bd3e legacy-trunk +37232 d41256a6f2ceccecd20314bb344dd5312f677493 legacy-trunk +37233 5f0c7f5ca6f9f1194111b87975837332b2acb280 legacy-trunk +37234 af65004f622fa0d88eca0337fad70625a0613c19 legacy-trunk +37235 ad43df19784c5e44d174e1379af6c76da03e9e17 legacy-trunk +37236 b20d455586536d342cf7a2e7156840f79f5b4f75 legacy-trunk +37237 76a9bda3028e86da48aafc55803859c2a90f25d6 legacy-trunk +37238 ada2a66b86a4a17b851c1ed04a59613b34a9e103 legacy-trunk +37239 1246422203e878652c500da90b41e649da4376ec legacy-trunk +37240 9465fe6782226643d6c57ed515b2c5d97efe7671 legacy-trunk +37241 aee2ee745f2c5d98d86c06273e69bbf973131ade legacy-trunk +37242 7551c725fe96a01a24069286d2c9ce86f9dffa43 legacy-trunk +37243 fb61403180a85c47690a5db5497479f0603304e2 legacy-trunk +37244 bffd494354ee702a1b69943336f9422e446461ca legacy-trunk +37245 f0053a6a2bedddb9963d97d9c644a0ebbd95f441 legacy-trunk +37246 3e062897d2e7a91073462d3cc0976aecb68f16e2 legacy-trunk +37247 df4770b7caefb47b999814c1bbf7c9aafbafadc5 legacy-trunk +37248 43852c9631604149271d4474496419fbb39cb3c0 legacy-trunk +37249 9f2ddde93a6395d62dc723d5cfc62085ac63a6c6 legacy-trunk +37250 c2c49ee727d0dd3477b88d9ad05b4d9987140e4e legacy-trunk +37251 943c22a7c701b2730bb5ea9e26ca8ac65de3c18a legacy-trunk +37252 1100605870feb8c7a8c124c0187814a03859ef08 legacy-trunk +37253 c9168e79ef4cc2db2ed1f80fd7af0198ab362770 legacy-trunk +37254 d113c613567a9e52c07c489db68f3c6050503623 legacy-trunk +37255 2281140d20c75c3e2d0877fac3e7ea4686914e9d release23-maint +37256 f83c5a8579f848b7a059c35b166b16e441c1bc52 legacy-trunk +37257 eb9b380253c99d2035bfaf0259f159107d7fec5e legacy-trunk +37257 186b72550e53533ef6175f6411f932c1298193d7 legacy-trunk +37259 b14f7ee25d50a934fd52cf15b98ade6786d9b80d legacy-trunk +37260 534693bb010bc2f9be67c0d102b31e75cff6182a legacy-trunk +37261 98c8017e8535b927ee1c6ab396ad82add020fd42 legacy-trunk +37262 d1f8c632b605a5fb60a0c4c7e783195490309865 legacy-trunk +37263 3fa79cc9da5da290e1042744aa97e5464965ae4f legacy-trunk +37264 b9945335da272c28631de5b9f0b3b55923c0dc9d legacy-trunk +37265 4745f847cfa14514551d828e34b633a7a6cfc13b legacy-trunk +37266 df1cd4072177dd2e56fea114f139078286da294c release23-maint +37267 5ed56493f0b0160353b2c57a47efe976bd4705f3 legacy-trunk +37268 97c207db90a1d07db69ebb84f592b404e001fa0b legacy-trunk +37269 21c79340ded5de0038ebb78db30cb0f19d9877bf legacy-trunk +37270 483c0b4b63328f29e79e795bc8e981831bdb7145 legacy-trunk +37271 6ff1a5bcdf22d4304e59ee13f50c191bbca6538b legacy-trunk +37272 07845568287572e08ffa6708a7a5a4cc042d7f66 legacy-trunk +37273 8e23bd3d5b1a70faaec083a7edfedff0921f9488 legacy-trunk +37274 fc2ce580216c8dceedae80ad7a2ce27d2f45f035 legacy-trunk +37275 136b388569a0c460c638892aaec920792d6f9abd legacy-trunk +37276 c09318b0090d6b97b55b204c2698d4a1440f3c98 legacy-trunk +37277 e1ab2c12cd5ef25f0d189d0c0b6018b7650d45f3 legacy-trunk +37278 8381d073ad386b313c48144e2ae8ae8320f0fac6 legacy-trunk +37279 dc97f581f23341164348e4ab3df06529b7300813 legacy-trunk +37280 5b6fba6454a09aa870ceb88e36eaf3053810de6e release23-maint +37281 ad00f7c0ad07426ed322b07bae231d5680439afa release23-maint +37282 767a38dcb3009446feef3bfcc54e8d689a2f6230 legacy-trunk +37283 d9a33ecbc7f28aaab07167a9b21a591a8de52a0a legacy-trunk +37284 30e273841bae0b38d068e2bb0fe5cde8c5566426 legacy-trunk +37285 b6e875aa508bf8201d753f3585b933174ee72cb4 legacy-trunk +37286 71083a1725cbe787cbe5b20c84455883790c3f69 legacy-trunk +37287 b5f6118317d0d015da591da74478e97132759c9d legacy-trunk +37288 6932943de6b1f59bf765f965d7f78accd9550021 legacy-trunk +37289 3afb67d9742b7dcf6245f171a194bf7e4e3c978b legacy-trunk +37290 ab62f76ca8e2cc3865fcefbefebf9695b6d5e996 legacy-trunk +37291 8480b72aa624da338823574a3313b8eba6380e99 legacy-trunk +37292 57478a13fbf644d503da66b29111db2f960c29b3 legacy-trunk +37293 21383fb1a8f291ccb97d132971f747ac7bae2d07 legacy-trunk +37294 96d3efb940cf343c21b3958204cf286b877081d7 legacy-trunk +37295 cd070ffc892d140029dd62b51c0358d251a8800f legacy-trunk +37296 4b708fa0a60ab5d172b87b513f63a250ee511922 legacy-trunk +37297 06abdcd57fa8d39c08cd3799ccb7f3c41d236447 legacy-trunk +37298 68538e124ee0a9b3fe6318f6b0d6c51418724f94 legacy-trunk +37299 30697f446286d091e99eff88ceb2405e9a86c3c4 legacy-trunk +37300 897a363f0e86faa7c05fbec90015080e99deecea legacy-trunk +37301 fac2a53906f1705065a9fd086317adc1b8c9a587 legacy-trunk +37302 a243296786ce7840120e53773d144eb5a6418c6c legacy-trunk +37303 629200d880ea28bacdc175df216aafb591eb47ed legacy-trunk +37304 5b31b4c3b7bac5d41c0a130a955370165c39e59f legacy-trunk +37305 e4489d56f10902074728c5bf4f08f19a294598c5 legacy-trunk +37306 4daa7c725a798eeca878832c6fa26c4552fe9d00 legacy-trunk +37307 f24a7fa38f4f91befb78ee4f4894defb0c230ebb legacy-trunk +37308 7bf43be829f7e7a4de449beaed817fd9e6bfa72c legacy-trunk +37309 cadcbf962a1fd67a42c16ad73c4759c7f2c74fa6 legacy-trunk +37310 688d981c6234b13455a669a8ffe545d346678f0f legacy-trunk +37311 64d4e796b3df126e6433f28a0565ff5e68b117bd legacy-trunk +37312 5570fae1f01cd053a2d71cbedcd77c7e19e6e971 legacy-trunk +37313 324693ef320a587645b12588ab3ca2a1a1158b7e legacy-trunk +37314 81618a7d490e71d819d4fb8e0fe9677e9b45946e legacy-trunk +37315 25fb9e5f5f45333307ab9ea4545c3873af4c10ec legacy-trunk +37316 e83093abc958d04fc5e393955341f2d5e4f2debe release23-maint +37317 7a7516e6feb2f5f13ab6ef8970515f8b22247287 release22-maint +37318 3daa6633f017ef47f68fb008cd05d15f3d06e733 legacy-trunk +37319 9e3c52ca3a04d3f121f2b3fdcb743ea5354b64f3 legacy-trunk +37320 487280cf71b95d0219a835559a403dc8c83cb18b legacy-trunk +37321 016d7016c6c63d505f9190845512e883234aa3d9 legacy-trunk +37322 91c87cea77671160da9033d763c9a1da6f6e1706 legacy-trunk +37323 9497c58126be400afaa7d27fda9a6dd61ba75bf1 legacy-trunk +37324 dce624933c387ec33b9cff37ef4659fe2686a4c6 legacy-trunk +37325 c8825a74e421f1fb3ec9acad0d383d55e69bc080 legacy-trunk +37326 5876636ca8c6ccfb14024535a8225fb80b7ed6a9 legacy-trunk +37327 28ef5fe0b8b5de31898444a872dde11b560ebd96 legacy-trunk +37328 d8a261a770283b0314ad78ecd80d4b93b386127b legacy-trunk +37329 eb51728ed11f0e308ff055cc7b921e5b95ecfc95 legacy-trunk +37330 477cd0f622b9edaeb1d14e7289e218c382f4e481 legacy-trunk +37331 e23ca94ed8edb1f1d73138bb00dcb1184a0ba3d9 legacy-trunk +37332 a04515a98831592e208e567ed6bf112c114bbb20 legacy-trunk +37333 925cf9b3285bfb8a3917c976ffeb70e28ec76210 legacy-trunk +37334 7473a195d2231223820d4930b2b7d444c2c98063 legacy-trunk +37335 41dbee5ed29586cb9843f0c10d8ec47096d9345d legacy-trunk +37336 36767fe24252b14da14c05319a53304172c5bf79 legacy-trunk +37337 3f86f2bb9b56e8473c4820423d225fe5be66995c legacy-trunk +37338 7fd22ecdc9db090350d24d8769a0f2606587e609 legacy-trunk +37339 4d16785ba5dc1c4bfd7b1a521355cd236e70ca78 legacy-trunk +37340 e808cd31fbdc6a09ea1f31ff11b7e6534b1c4f96 legacy-trunk +37341 a220073536d69a752e7ada825c33ed49601a1ebb legacy-trunk +37342 1b3ac674a57cbffb33dc66897821a9f1209a7aac legacy-trunk +37343 b87eaa46c9cbf1de5576a01d77ee64d170e2ffbf legacy-trunk +37344 5373a5aeb80022b3ed30eb30828364815bca7bb5 legacy-trunk +37345 eacdc29606d814492e783bbd69e17b8f8e54decd legacy-trunk +37346 2623668c5ff5b4d6086faf8bf72398c90f2e8692 legacy-trunk +37347 c93d2bec68bec48c5da6227deb09abf4770606fc legacy-trunk +37348 18c7c17ccf86315754fff69dd876d068ee10b720 legacy-trunk +37349 823d645b32bfe3f36f4c9670e781e4ca1bc220aa legacy-trunk +37350 53c1357c9c63d54e82bbb50fc49f9034f22fb119 legacy-trunk +37351 cfb2f5e0974093667724ff65381db08c460184eb legacy-trunk +37352 71ed4b35fdc48876d1abe9139c8e86e71e99f400 legacy-trunk +37353 4cb1016525b7def5bd669f720bacab5edb80fe70 legacy-trunk +37354 7385ba2680eb71bf79fc585c2911c556ec93e232 legacy-trunk +37355 0c299cabf4f06c847da5243b64eb2b50270c17db legacy-trunk +37356 294d370e43d14dd9154bc7ee291b9db44d58784a legacy-trunk +37357 433606e9546c35b8e6b83e86c6898f1c24d85e78 legacy-trunk +37358 d984cb7e235236fa7ff6e60628530a01d54a4f24 legacy-trunk +37359 2d6e1854082e94854009403cd5619be07f98cbf2 legacy-trunk +37360 9e2b94a3b5dcc0f18fb93d5dd0fb445d9816bd35 legacy-trunk +37361 c3ab6f40b6e8bb2aa33186448195ea19dfb227e7 legacy-trunk +37362 abbdbba56a8b73d035f840b5c773693f56103d7b legacy-trunk +37363 a4d3673bcd66473068b2eea46347192fb0f0df16 legacy-trunk +37364 da1da331f64ef8edbf95be71a3594d66f6c39d6a release23-maint +37365 af9bedd5a8e721067e264fcba274e0d9a88fbc4d legacy-trunk +37366 a70b3ee2e30b89f59b088308b5b4aaa4c012a500 legacy-trunk +37367 45c5742c1e13ca4b3eb4fca981c3d60d9f40c1fe legacy-trunk +37368 78c1c03779637fc64062dbfd203fb967d7fe0b46 legacy-trunk +37369 cc0ae03743b8e2da3924508f052f99a38db1c818 legacy-trunk +37370 4b8198a7487312b89534bfebf9d8540a5a1e1581 legacy-trunk +37371 725c44421a42f59b79e3826b2a03f4dfc88dd51f legacy-trunk +37372 94f500ebf60a45f6e58cd115e4d9d8017fcb6dfe legacy-trunk +37373 1f540bf9a9b4027bd82ccd62005e5d4de0d4a350 release23-maint +37374 322184ef7622d67f3a2108d27d02c49f74b7312a release23-maint +37375 03edb63ae0718f4f5aab09d3f58f9c1534e79b2d legacy-trunk +37376 11d4500be6fa418e59f02b5a5ccc4c0a320c026f legacy-trunk +37377 f4640815e5bb500ad3378157c517448797ff08e2 release23-maint +37378 6b3da47bddd68a445a1727dd4753b2982d0c6704 legacy-trunk +37379 a77257e54996aaf5ec2e012a8adebe9c6870c399 legacy-trunk +37380 e9e65ef946ecad26d78770beca26ede806ce5b85 legacy-trunk +37381 301265b80c41442cbe28b0f06c13e54641a0401a legacy-trunk +37382 d5296159f11cf4da50f45f3e61a36b1793c888c6 legacy-trunk +37383 139a4012beadafc9383e059226519a6b7468b4bd legacy-trunk +37384 3e17aed2324c317c01dfe802af4e15bc47fafae9 legacy-trunk +37385 55eca7cd3531dc6a28d6478f4973bbe873ec0172 legacy-trunk +37386 06f28238df31159c26a8ca4e5580aa0017e83b12 legacy-trunk +37387 d83670f24d5cc2c3b4a42819fb94652f89e73ea0 legacy-trunk +37388 30d428f992f9a970a1a5ba1c260c6ce894619c49 legacy-trunk +37389 d3d6d42009a8c47a58992b58c1c6178ca0fb5fd5 legacy-trunk +37390 175eee09cb98180ab899aa80cda4f61148e13c0b legacy-trunk +37391 1809abd393426378004d91347205c2fc95d1c6b8 legacy-trunk +37392 a3fb5ebca30d71d63fa6c7945a0e554f3527ccff legacy-trunk +37393 25e07c44e5d05b18ed80dde08ca458331b9449f4 legacy-trunk +37394 8f64a84fa8e6bef72ca8febfebed4f55ace3fe20 legacy-trunk +37395 5ac8afd8d904065698f1d85f08b1b41deeebd9be legacy-trunk +37396 695e5bb08382393d93550717223ba0fc3ae7d21b legacy-trunk +37397 e7fa7b5c9441c39d28cce5dcfe54a3f8ef121b8a legacy-trunk +37398 fe242f69a9d32822af3e035e2ef422e9bcf05d36 release23-maint +37399 ecd654daaec9f00b2a490c27b8812d4f255d1d50 legacy-trunk +37400 92dca98cd434314f5f492c2a9ec20e325545a02e legacy-trunk +37401 526427e883e8241cce19f7c47a278bfa8e2c0caa legacy-trunk +37402 bd13a478e8d61dfdd397bf0b9a171c527fc9bf38 legacy-trunk +37403 2b49b4a85d9eb4a4cfa9f29c21d649c383945671 legacy-trunk +37404 f6789b7eab4e30bccb851c42eb3c89b5580499e7 legacy-trunk +37405 781aef97446388b38ff43d47410278e96bd8dcf8 legacy-trunk +37406 d74ddcff07244776654e23a0c91fcc4dbf9cc8b6 legacy-trunk +37407 a3d78d6bca51924237c2d49cc77416c59f3ea78d release23-maint +37408 d6071a05ba84af9bf7803cb63aadbb4022e2fce2 legacy-trunk +37409 6d055a275b4bd395a306f6423702ef7d9618a7ae legacy-trunk +37410 bf687316507986bd23b3476637a0a617d04c7aa6 legacy-trunk +37411 702367da2c72bf42e5fa393808356798f5c7cf04 legacy-trunk +37412 d376fe862b18854d72db8405e14250ad0b1b3d1c legacy-trunk +37413 ecaf0e8fa7379e91dc3870f3753b78b9cf92cdf8 legacy-trunk +37414 66b56d56e680d4b055d85f6b63e3f98c0773744c legacy-trunk +37415 7d7ac404c8049f93202c98fd79c0a7dc1b00023b legacy-trunk +37416 bf9f917ee4f9f1400d1f55d2d04b0391b75de5fc legacy-trunk +37417 a6dc176c5d1292022b1718c890130383ad6365ed legacy-trunk +37418 a57713fded23b35bbd4df4f661332d5301644d29 legacy-trunk +37419 15a7cc00c5a141d7b98077d6220d10df68755573 legacy-trunk +37420 fd934778f4b451ed0ef29b2060540639d3ff7eaf legacy-trunk +37421 e12ca5cdf74105dd514f0a399baabe4b12cb0c87 legacy-trunk +37422 f2a2ced1fd5dcb03d16b246bdd623b47950470c9 legacy-trunk +37423 be8cff4a1ecadc7254433c8463e8b4c4378f26e3 legacy-trunk +37424 97cb9eea212e237badd69e5636266a401e83af1c legacy-trunk +37425 a76126003992519e3607b3ab43f60ce4d72a7c11 legacy-trunk +37426 c39f83fdd4d0323d074ec8c8e952c887dcef8a95 legacy-trunk +37427 8c6fc877126042111f42d480bba0b88d8d7bcaf5 legacy-trunk +37428 59841c819f4c975d031fce4ec091003916f61e9b legacy-trunk +37429 f246d7464b5c8a4316a9514ce984615e7ea3a5f0 legacy-trunk +37430 9692af01c1a835ac045a4d2441b3d55145e09a25 legacy-trunk +37431 c4eac6e901614b6727aeac6f4088055e4df3c755 legacy-trunk +37432 85da088e7a8bfd8f7e1cf60ffd9e22a7744c2e42 legacy-trunk +37433 3bd93b814031977ba3385678bf47c45758f0e056 legacy-trunk +37434 c37e2074a8c54859e675277f07caaad41e77f5ad legacy-trunk +37435 a5682bc73e04f6076c576984db26497c65820a62 legacy-trunk +37436 986a5b569adedfdf87a411e467436eb7334963d8 legacy-trunk +37437 50b6f94a38a776736ffb31ddfd629980a4cf1713 legacy-trunk +37438 e478ebe1cb316c84d834a40b141f07ad1e52398f legacy-trunk +37439 f27584d113af3e380423eebad41f4f2e6ea4734f legacy-trunk +37440 c28ffbfb0ae9092925c50fb4a5640fc5ecc9b01a legacy-trunk +37441 31bc5f0f4cfcc9fbce4f049baa1c45ed8ed896bb legacy-trunk +37442 325a88c6ee7d5cd767fc90fe10db9de4943852f3 legacy-trunk +37443 8a5c87f685cde9ca1473c90ddb12f263222e53b5 legacy-trunk +37444 77660eaef24dc4a1caf53976e5c566151179e3e8 legacy-trunk +37445 613a5533854a0d41b36b4abd58e43b75532910ba legacy-trunk +37446 808428c56096876432107584be04c3c6fdaa44ff legacy-trunk +37447 1b6b1042cf456956558d0e6c82868e1d764d5757 legacy-trunk +37448 2bc2353263160a48a052a8a76a5d4bcb779d1a6f legacy-trunk +37449 dbdc45564d24038a905770fa2559c4583994dbc3 release23-maint +37450 7919cadeb91dd7f4afa93a124fa57b979bbf30d8 release23-maint +37451 14081ea656b2c0a17c001a67eea36345110ba18b legacy-trunk +37452 68d11e439a0b5a431bef8a85a75b3902c0b0ae04 legacy-trunk +37453 23036c7af6876ee21983a89fa257a08664ed3a5a legacy-trunk +37454 8f4bed970ff951456bb4fcad323811c5db724951 legacy-trunk +37455 077954d41c5325b3dd3c996572b05871c4bc883e legacy-trunk +37456 2f6419d007a9cb864037822596e7ee18a400b53f legacy-trunk +37457 b48474bad76fce9c913a6be12a0ab7b588434e30 legacy-trunk +37458 e9370bcf02adbf3b26356a63521ab4324b127457 legacy-trunk +37459 a7895aef1ee801d887aca24737dcb5fcf7e3a475 legacy-trunk +37460 0c32f01ccd997e8f455fbffe4a1e4e23560aea54 legacy-trunk +37461 355b15e4a4da2329bb8ff68d945cd9f68b6bfbad legacy-trunk +37462 cf1aaa7e40055d9c85d1d7adf5bae0f25bd2546c legacy-trunk +37463 32df1d05cb2d963855860a3ddcee396a1e13f73d legacy-trunk +37464 4b5416b184664fea8de92f679e33204621a3e35b legacy-trunk +37465 7511585f2e6a46a6c89be5a2e3d7fb9114308a20 legacy-trunk +37466 7d6679ee39f90bb66b81666a791d0449543f7bb3 legacy-trunk +37467 fc3e89643888902eccad2b2a223536b7a61fead4 legacy-trunk +37468 641152fb7d88296d2ba3de3a81ce16e25028385b legacy-trunk +37469 b3408a85c89c9d3929c00b1a93fb0d1051c339ba legacy-trunk +37470 4d7b0d206bc73adeb65ea033951903765ed278fb legacy-trunk +37471 54c33d095e7e49bcdfe24804e4775b34dd10c443 legacy-trunk +37472 db6f21ee61359725416f963eb1da3287c159b829 legacy-trunk +37473 084988c20b75ce5d192a44ccf82375f68559f2a8 legacy-trunk +37474 b8922a36f08383f98c037d0243dab5d216ff618e legacy-trunk +37475 c7c39b79e5b7e8a5af37b6f5ad4509d838deb4f7 legacy-trunk +37476 4ee48e2efb6879745a1389f135fc2658cfa45896 legacy-trunk +37477 7664e8bae19e21b5497a263f024db932b1a40840 legacy-trunk +37478 831319f100d0a9f0dc2321acf3622742de1c9a37 legacy-trunk +37479 b11f9162ed0dd547934effa33393d39894568fbb legacy-trunk +37480 31b08670ebddb501af048785cce7fcadf94db48f legacy-trunk +37481 2b9c19872b01760fa5dea394a4596a199c6c2610 release23-maint +37482 8e20ee2ecc0c9e6e006ace3a2b50f90196ee5da9 legacy-trunk +37483 e631805c71b072f60d594991be12f04b62e5d20b legacy-trunk +37484 27aa0e119330a37eb5ad7647ff7d20d470ea1297 legacy-trunk +37485 34b07008aa78be799421c2f9121a7b7a414628c4 legacy-trunk +37486 63fc0522a95b5355f91ec99944120fa838d1fd84 legacy-trunk +37487 8e9dcfe14d8162e4da509cc878698604a7591b0d legacy-trunk +37488 5730f77e37e41b6341b9f6e9a37e57a2c177f190 legacy-trunk +37489 f074db0c14a853f9032e6ac0917f472d2841a7fc legacy-trunk +37490 cd58a9b4ba6638643764d7442a002981ad55244e legacy-trunk +37491 0ae0bef10014e5fb85271b7b2624b91e98dd1d93 legacy-trunk +37492 83a3e2d1914a90a4d3037ec1b4726063ee79f92c legacy-trunk +37493 c84dbe717d49cd864ebff47a8addc1a55fbf6144 legacy-trunk +37494 0f0ddb4cb0437344801e3e2a595b266d6b7ecf09 legacy-trunk +37495 655f74ea0f31f561a0e85c2ef4ca26cfcc7ec91b legacy-trunk +37496 23444cbdea5550a4a50e14f93f364f289edf3212 legacy-trunk +37497 279f01e71071bf5635357380836631fafb28aa7b legacy-trunk +37498 6bd4a1056716b772a4739481c245d9acb6bb8a4e legacy-trunk +37499 836e92cc5c4fbdb6a9ab0bb7607e8f243f37d811 legacy-trunk +37500 e5de698ecd4b4e059d5ebebe97a11d4eb2f00f20 legacy-trunk +37501 6f4bcb3bd202e430fc74881392282f2f20f0a78d legacy-trunk +37502 5e19fd3642f073e2d3498fb2e136f9ad2db01d4f legacy-trunk +37503 40350fbe665dff1b2da8c6af0dd538dd931ccda1 legacy-trunk +37504 30cb200d418cdfeea8569c51176693447a44eaae legacy-trunk +37505 cd70f1ac3c25d6860a96e3b7fb49911111160d43 legacy-trunk +37506 4fb8c89f66a0b97625a6b00e484dfabf1f83c9f0 legacy-trunk +37507 91634f3ba213a52b9030a4ed52fd0e8ad298e373 legacy-trunk +37508 00c36e1bc50bc6b2c876fa802edc8e60de0dd185 legacy-trunk +37509 0c4f095863b9ed2ab7c2399fbeb2ab07c278b9a5 legacy-trunk +37510 3d8d782175999d9d5822b25ad16d753e63a11198 legacy-trunk +37511 5a292a03ea41677370310847478fdcaebc4c0b49 legacy-trunk +37512 7c50cde1e4fd05e4884d3731ad7ba395dc29c34e legacy-trunk +37513 7450bb93c395cb064a19c379b46d83736dc3fd08 legacy-trunk +37514 486e9c40cfb93fe4f06022e0980097b102d7d7e8 legacy-trunk +37515 946612f64a832e467a51e194d385c0a7df6e9d93 legacy-trunk +37516 c591fa1d435df075874b1bff7b46e7de29189fa0 legacy-trunk +37517 7e42a8ebb3eff117cbba7796c8b1e2ddd7c48684 legacy-trunk +37518 c81925b613dab063616256491b81d3c5595d21bf legacy-trunk +37519 c097abdb55663e3e4cbfa7e8901b0d5fc8220033 legacy-trunk +37520 0b7e318ef0926558acbc8ab58e152583ade6f508 legacy-trunk +37521 45b1988e26924fbacb318c5a5fa5bf290f706ba9 legacy-trunk +37522 ce813a57d44d3aae88c490da6ccb95eb0ed2bfeb legacy-trunk +37523 9189946838eeccd9d5bc6a44f5044ac9f5255e7b legacy-trunk +37524 0bfd35a76a44f812cca6de6dfcea96ee2674cad1 legacy-trunk +37525 63a0389bd5fca9960568d3f5c117473c3f354740 legacy-trunk +37526 cc4684051c4633530503af25620f0bec219d013d legacy-trunk +37527 5412096d0f95de08c926cc3c6b25b4dbf4a99d9d legacy-trunk +37528 e12976e98f613f430f0bb80b10c4012bc9fd13b0 legacy-trunk +37529 5def66f2c9abee5f08eaa2844674eff0494f7b4d legacy-trunk +37530 ab588ce9e71fbfe0c23785650dabaced65e06a56 legacy-trunk +37531 118b6f69e3f153b7879e34ac6dcdb0b50a2703d6 legacy-trunk +37532 ecf1e853406b7cd2eda6933262d12c889edb5fb9 legacy-trunk +37533 60bf2afd73122546efaf1a7a69ed004fe0b95b18 legacy-trunk +37534 89faacd9ec76955231a6835ec5140cd5509f5d21 legacy-trunk +37535 22ee91643b3f34b947d01490f2adfe6d459a912e release23-maint +37536 b0f3a693b854b7ff82661e661c6198c828795e03 legacy-trunk +37537 d8e74a0b46775db684a893ea87a65fbe3ed3cc0c legacy-trunk +37538 d99de65f5425827bb5cb769192f63d8527b606d1 legacy-trunk +37539 ba8e1854a84baacf94ea16862fba13ed4e09dbce release23-maint +37540 5ae3a1c80e3fe7589cca10fa928b39ee16782384 legacy-trunk +37541 262e1cf41d34bc75f9ce87bf4c4c86c60482460e legacy-trunk +37542 b31a5120677485823c6e414d7a091d64cab8222f legacy-trunk +37543 55fba88930bc7b81669d0152942a1310e404cdb8 legacy-trunk +37544 bcafb68ad9858800a52627fc910e63652c76e148 legacy-trunk +37545 4784bfc99a41be03507dfff98bfb2b4b5acd891d legacy-trunk +37546 37c65a6b2ef7f4812de111f7b4ce7891b8a9c960 legacy-trunk +37547 fda36af226fb2bd947f816017ce581a65273ca61 legacy-trunk +37548 3e6f56e8104a2bdc3da2c613f7d2dfe53d103d99 legacy-trunk +37549 9a38625fa2b08d46e54ac7f639649cf12a035878 legacy-trunk +37550 1701dae6474e1482f06521391e4b1cbbca5b5417 legacy-trunk +37551 683a2f8f771dc718dc757bb245a929a4d33260fd legacy-trunk +37552 af300403edb820f4d11abe2f63d40268804ec5b5 legacy-trunk +37553 a5c88f2e86a3f467f73dcf9c3e6e238bcd499554 legacy-trunk +37554 3617d1ee2797fbe62e4fb86c233c3fe578f1ec3b legacy-trunk +37555 d8fff706a9c25cef81443f22cefd73cfe5d25b05 legacy-trunk +37556 ba9bcf2141a2329b577833027d34997c4d1e408d release23-maint +37557 962fa3e23215be8f1b2849811a10dc28974e2c40 legacy-trunk +37558 ba9fdc44c7782566c357624c7686972977ad3817 release23-maint +37559 924bb2aad4f481b8b14a0289e855867ef585247b legacy-trunk +37560 dc3a6767e9608427fa77131206d99de2ecb7668e legacy-trunk +37561 aac4cc6618b54bb8ebcb6706e6524cdf6bc119e1 legacy-trunk +37562 090ffcb83f0aae46ddb1bdcbe3d0ad77fa1d6ae8 legacy-trunk +37563 0c26db381673e2405732faeb30a0540ab085c2db legacy-trunk +37564 66327419eb0044bfdc53486d3b4258d26faa3782 release23-maint +37565 08b767470663e35690823345811a67fb530866d5 legacy-trunk +37566 3271ea60b82dc321cdb07ad6e5d10aa5db617420 release23-maint +37567 54e6527f315089810c669a411a1ea3b4473b49ea release23-maint +37568 295bd8c55a788c303f17fbbeebb9df59a0929741 legacy-trunk +37569 891042c94aed01f44feb1227250c13796b6721c5 legacy-trunk +37570 4981ba54f43d81812162833940e89fc577ab176f legacy-trunk +37571 742fdac3d5ae2ff435eb0d1e25dbec370117e7f8 legacy-trunk +37572 4013f0a5383510f81247c2b4ebfd19ab79f620fc legacy-trunk +37573 e7c7b3af616468a302c7f6cbc1b559d758c7d3ce legacy-trunk +37574 461444de7b1fd0a132c0547c0570ffbe496ee588 legacy-trunk +37575 664b18aa6fc124b255f0b095609c9a8691de1c1d legacy-trunk +37576 baa2653f7a76d94b83890142c84aa25191f55339 legacy-trunk +37577 517e4ec0df89cc5299cc564eb87de6a08244425f legacy-trunk +37578 635dd8a9ebd93c12118ba10a3fa78c3726c4aade legacy-trunk +37579 a46b76eb9053c83d3f87a282fcd8c2e73518f0b2 legacy-trunk +37580 c552446b7bb2f4b9ef37b982bd1768c0ec3db201 legacy-trunk +37581 f8cb8f0ac8f13a35379364ce7212cbbd0b67d6ac legacy-trunk +37582 e6f1ae13be84df2f6d73be26e2db00506203a0ca legacy-trunk +37583 f234be1728000e9ce2364bb1710d31c04b2f73a7 legacy-trunk +37584 c2ae482ff42d63debb4f29305e44e7ec7ff8dddc legacy-trunk +37585 2c79b50afbab5e3d8350f1b12de76df5bc1621bf legacy-trunk +37586 74a57e6684f391cd3368f90e45dc3e333dd3cf28 legacy-trunk +37587 76641824cf05357bfb74cc21067d14dd78e1ca25 legacy-trunk +37588 c7fe2277d171d4fa8a5b70dac23e6db3ed2cbb69 legacy-trunk +37589 c9b1f2694e98aafdf93a4c29a07491d3416aed46 legacy-trunk +37590 acc191b714b997357e9c384d19d52fcee39424af legacy-trunk +37591 0236b6530c4631c3e0d33531a40908a6b5ab15d7 legacy-trunk +37592 a01be350ed61581b4273b6320a62f2dd4e0faf17 legacy-trunk +37593 0d6d56b2164b7ce8c900b282754764efa0e798e0 legacy-trunk +37594 44cdac9bf7859eb77ce6ad6834d203d3d5f4f51b legacy-trunk +37595 53c468d0955baa08d1e9dbeebf6c3a3e4e33731e legacy-trunk +37596 d9404db29bc6577bd409a995b3e770d9e67dd110 legacy-trunk +37597 39a13e39d24eb9de0f0bf2079c141e939833b2a4 legacy-trunk +37598 eb3d6030d9501070dc92720b82e5cb3e4d81f4b2 legacy-trunk +37599 1383c4692af74dca787856ed1f59a597fc23e241 legacy-trunk +37600 a804280e34f90fe214e07ad6c403275f450d7948 legacy-trunk +37601 e4f7d3b0c5d4fe47fdb27bcf37a87e0acf534622 legacy-trunk +37602 a4f747e721381cf7dfe7634f1a914d157e1600a8 legacy-trunk +37603 76355363101b0a115501875a0479844045505c93 legacy-trunk +37604 44e176cca33721ad8d83f5073bf1744bfa85a660 legacy-trunk +37605 d1f0c7079b82879a55939766e8ba5a9c0765bc87 legacy-trunk +37606 179e42ea2e9c97198817128616809333cc40024f legacy-trunk +37607 4683983e84b355d1ae04392395dd2d106cd53766 legacy-trunk +37608 99caba8145654ca395c34f57d53fb22a0ca21882 legacy-trunk +37609 74ceb6fcb4327dd8c85e100d888b36d5f9defb35 legacy-trunk +37610 a27b0271711bd05bb035eef2bb9418e5707ebdf8 legacy-trunk +37611 b0ec4c9d595b00b266bd1a939e7cbf7200d9b893 legacy-trunk +37612 b86c7c4774edfd832eb68fc94987e18cdb181d8a legacy-trunk +37613 2cc107c9646e2bdb03f2d0a25bd979f6e4ee345a legacy-trunk +37614 ec993b7266057288de953b7949263801471661c6 legacy-trunk +37615 aa2d6060495a07bb4f37ada8eac9748c13410f59 legacy-trunk +37616 ddc2d6e547c15394f83dee604bbfa15da46c9680 legacy-trunk +37617 92e05b63499786906b41d5a53a27f5f7be3a592e legacy-trunk +37618 10b25414628cdb82c80d260f193e63a173143890 legacy-trunk +37619 4f8db55ce124a2ea7f8bc103425787831c1f9411 legacy-trunk +37620 1977752cf807bc789d900b93fc1682e5bb13ea1b legacy-trunk +37621 8a5061bcd4179f82480085c016d46f4ea4b5f8db legacy-trunk +37622 fb273a83c75fd92571978905af58c8024ed49a15 legacy-trunk +37623 11d01fc650dc052afd49c744c950e9355e97ea96 legacy-trunk +37624 46217d05a4766a461bf42c880aa8ad1070ac2321 legacy-trunk +37625 d1228127d29425f644ec79143b22606bbefac2a8 legacy-trunk +37626 26fd00b368f1d452e74b641e66ca162d5844908e legacy-trunk +37627 166bd339d3bfd619c4d7055ad8612401ef8380a6 legacy-trunk +37628 26bedf63e4a89c53f8f8fb35ee196d4bc9409fdc legacy-trunk +37629 b308e15bd7fba925f17773116f985db2c0cb1297 legacy-trunk +37630 1907ad54d351ce77fa822a5e3aa32071bf7cb1df legacy-trunk +37631 55482e9deb6638364c2032b0b1eec88164d1aaac legacy-trunk +37631 53cff04283855adf88ed0c0fd3698827ca843637 legacy-trunk +37633 72c5131d4c4af0db37ab4152878b58de000eb61d legacy-trunk +37634 c6aac03474c5e238286acdb42f14dedc7ded1f94 legacy-trunk +37635 88bf48c069f9c362495bd4f6a65d263fec6b2085 legacy-trunk +37636 ba75fda9220c2a154d6652e300bf5fdeca72d7ec legacy-trunk +37637 ab09daac5691b78c49bb447252e220de665732db legacy-trunk +37638 fbacbb26278949819e0b68c5050c0b3e0a9a33d8 legacy-trunk +37639 e15c15a4fbe88151119ae33bd15c4334b3d469cc legacy-trunk +37640 c5d951a0e0c3e90a625e572e68b4d13a9699b084 legacy-trunk +37641 e4b7c923ed5f2737f66156a88f6601e14c6557b5 legacy-trunk +37642 f1c048e743e2d8060aa8940f32a68a11adb8c184 release23-maint +37643 c66e6c9ffc2dbd3d019a74d3b1bf68a081154fab legacy-trunk +37644 4688d2a273d90b86fbcc3023e778ea9f361a0ea5 legacy-trunk +37645 d9d3b475ceb258663b13121d7479e7eead562630 release23-maint +37646 a52de911b2848147182169cbfc322c6f52f90100 legacy-trunk +37647 3fdd96f0ce866c5af6921f36848158fafc0bf3a6 legacy-trunk +37648 f175c98383736d587f43617760b61254a9c3a54c legacy-trunk +37649 817c241bffff8df4f1188fba632d4cf8b29d1566 legacy-trunk +37650 bd1888e9299f735ce7119649c98c7ad4f9fcf1b7 legacy-trunk +37651 b8778cf7d0e373871fef039972649273a7787840 release23-maint +37652 3342bc2300c3ac2e6cca5e7f72b7a650792c0b56 legacy-trunk +37653 8d8b39234de9e6f0be978272cff523aa417f6c7b legacy-trunk +37654 83a01912899f604600adae7aff113628cb88b628 legacy-trunk +37655 6dffdc33fc6c5c01f01cc96ef7a5aba83460b724 legacy-trunk +37656 d063e4de567600ea6c7b7ead88b37bf13d488861 release23-maint +37657 223d82260452aac25c858807121a41ee0d450430 legacy-trunk +37658 a2243d66d40bda1e31985c693cd8c9f400065f22 legacy-trunk +37659 69c96881aaadb48482d0294959c3fa4582c50d9d release23-maint +37660 6819ba0236676fe03c62b0105e8e1eafecb6f4eb legacy-trunk +37661 aeb6ff308848c875d5e4a3b52330d7026b33e2e5 legacy-trunk +37662 4fedc529ad32db957044c1fe81c65a2335474456 release23-maint +37663 b1a9ea6e8ae20a33ac0e6ccec3c047f28f7678b9 legacy-trunk +37664 199dace024ba044d450ddf38bef6d79aff5172b3 legacy-trunk +37665 d485e78a43d6584bbb928e36164d42d4eefe9bce release23-maint +37666 5c862496a9f6aa831da9f87e82a9610afdb59148 legacy-trunk +37667 d2e95940482692b8e8ba61723c27af7858e2434e legacy-trunk +37668 e9cbe0adb28ae7fa7ac23189afeb8c2ef3234127 legacy-trunk +37669 a9e60514007477f20cf488276dd1586d14293f8b legacy-trunk +37670 a3dfd801533b61841ed71c8ba9a914fabc47a93a legacy-trunk +37671 47b38451977575606de2dbdda57565c135c68b7b legacy-trunk +37672 59e0ff0cd3d4c91e2bfcd39ea60f6865ec90cab4 legacy-trunk +37673 d443505e7eec18b9467b492df6d52ba250ee584c legacy-trunk +37674 3ff252715d93b04efed6f52ea1a288310a127cf2 legacy-trunk +37675 1c676e891b3f9a8372a13f6f3269ca1d30615e2a release23-maint +37676 ad90888b17bc02345891e1ef6d2a6a9fa67d8de5 release23-maint +37677 f54868855b1ccdaa2a78150bffc6b97d80dcc204 legacy-trunk +37678 82142a24e845c33bd9cf010419aeefde3866ab0a legacy-trunk +37679 0afb2530e986aa06dd60fb3702f4574231542929 legacy-trunk +37680 b0f0c57b1e0557020b22a1900c5d2d2c02e3bea0 legacy-trunk +37681 ed041e0e451ef11cbe91882e90478fb76f25fa31 legacy-trunk +37682 b3a30e2842b9675bd3eca39f1a4706d4823dea8c release23-maint +37683 8d38f2f2151cca5aa219800ea5c0e26a969e80a9 legacy-trunk +37684 2a15318c4038c3047dc9c1c8a2aa493ce21d36a2 legacy-trunk +37685 f14329a7898191215056e3f59de8c23b88de9c42 legacy-trunk +37686 bf18caca07304371704dda26a553df6f31cab383 legacy-trunk +37687 db8710f1365088ebd00f9bc2ce1c6ed253add5a8 legacy-trunk +37688 29b945bc0a17f1c9a9b1a6dd8cb621af6ebbd19a legacy-trunk +37689 aed2526da1fc7ed9343d64c9c83a6e34b9868723 legacy-trunk +37690 28ef0a3f57f6cd7848a76fb2fa9631b6d34062cc legacy-trunk +37691 d938b9ed32ffecae8c404945c3ce62b89bb4ad9b legacy-trunk +37692 17d8661e7d13aae46cc40c5c9184264153828b65 legacy-trunk +37693 6c41695284f6ff7c949774f56154d14dbf0c247e legacy-trunk +37694 317101cffb729345527bdfb3813b0dd3e26bd0e9 legacy-trunk +37695 9ffc344891a626edaa2601fcae4059b641b31f19 legacy-trunk +37696 627f77e3ceb651ba1d0aad60c4f56b98cb690558 release23-maint +37697 10512ceba30c55ce64d5a26a7d90f9e0db648102 legacy-trunk +37698 ef149ea594a4c0f4a8138fd4b99f8a7ff11836ca legacy-trunk +37699 991d3490f698eb2af8d380562532d727a51e296e legacy-trunk +37700 dc8ecf724488c26f75d9023bf4ae2655136f45ca legacy-trunk +37701 bd558211ba552c7149a836c8d6f2bb988ccaeb00 legacy-trunk +37702 fdce3d39bec14d4d470401552e7ac667660cbf2c legacy-trunk +37703 4dd97c37c2cc2c3378f2c916a37cd1fea7ad899c legacy-trunk +37704 6fc10306bf312bac993c7521f65371c92c5c1072 legacy-trunk +37705 105bfe1769b796c427f5e2fdc6a30037cdf70e4f legacy-trunk +37706 993b128d4e294a51709354fbb00fb4d2d138f12b legacy-trunk +37707 ac4fa942f92e78a6cbddd6a8d7dbfd84d73e0128 legacy-trunk +37708 ed13937079df17cac26c970672ba42eca23af3d0 legacy-trunk +37709 032f342efcd24f24c66ce6bfb0ec138077a45eda legacy-trunk +37710 79bcad14e96aaa775896d4fe44847533bd8e9276 legacy-trunk +37711 5510995ea26fb5d948a04df9619f705c7ddecb4d legacy-trunk +37712 3398c5ce8b7a096074e4f1b918004f8a08e65328 legacy-trunk +37713 d83998a721a0a2ef1e437f3d6d8a0491b1aa7233 legacy-trunk +37714 2625537a6dfadd53608cc783298ff9c538c49ce9 legacy-trunk +37715 2ee0301b483ce2a84f7e39b98dbadc7fb2ba3ef9 legacy-trunk +37716 943862b2b4dfe56e58dc52e6eb0d08541d9d7a0c legacy-trunk +37717 d41ac11e9c604a6596c3cf14e3db83343e8d1192 legacy-trunk +37718 eec317ee5c35b8f872125a31f50b54c158f2b9d9 release23-maint +37719 1cd19daaa9d42fab722320a8d9afcc32e929b0b4 legacy-trunk +37720 60c60dc75c77264b9e2c2f5f4bd6c61fe3cfb1a8 legacy-trunk +37721 6da07873a0ee375495db9b85fd297badb3a180ca legacy-trunk +37722 0ddae8b0fb19a38323b42bc5b8463cdf19ad8db3 legacy-trunk +37723 30732434107b6cfe6d928b4400d322e7207cab80 legacy-trunk +37724 3467288089a1e25863e5d3d7441a56f43c4e53b2 legacy-trunk +37725 4a3eaa1aa3afd2f5b94ce2ed0b2e9db7dac20ec7 legacy-trunk +37726 facb5a2f4b53e97d312db319099eb79d491513ac legacy-trunk +37727 b585bccfb250543a66bb8ef4e45d10a334107edd release23-maint +37728 6b61af083493313b538e5154d276f1f58767557b legacy-trunk +37729 f196716ea0db45d63767f2d3b77eca41fc13824e legacy-trunk +37730 2632f43409f4965aceb712530995e4d4420ceecb legacy-trunk +37731 07d94a162cf8951efadf6835148b36738e7720ff legacy-trunk +37732 308e8ef2d3edf5f551bfb12198a25b505b9e3f7e release23-maint +37733 223d20afc8b5e1eb8c93fa6a1da1998c3418fce9 legacy-trunk +37734 80ca1a8b232162e09d7d52663a5216aedb5217ab legacy-trunk +37735 5afa5277fcd9793ae0bf1c8c169f7ad3060fcf5b legacy-trunk +37736 180dc829efff81751efb812cf0da04bafbf5f08b legacy-trunk +37737 bf2d03dfc38e28f1c4c491f97930b22b929d5337 release23-maint +37738 0dc3f9705577073ac050d9e0e10139fc34744756 legacy-trunk +37739 24fc3eaa19e0b5dd9acf79dd9d487cd2bf0f17a8 legacy-trunk +37740 633cadebf68d4dd8cf0c919ff5214376bebc8c49 legacy-trunk +37741 a8c979cc4fa658d826d21048fd781a520b03b26b legacy-trunk +37742 ef5030bc5f671c4b0481c88cba91315849cadb6e legacy-trunk +37743 687362fa471c3c093170566f59e49b3f6b3fdc12 legacy-trunk +37744 8a09c82e42610b0d496fd3185794fd7fb34858e8 legacy-trunk +37745 bc0421b9657a0058aa950cace8c3b05e7585bad5 legacy-trunk +37746 a6f97e0e6318964c26c8fbae0d4056c13a535ec0 legacy-trunk +37747 5eca248f639e42f4072c9c7df9abf9cd3f4d3f71 release23-maint +37748 c19e81112059316a68243d70d38f02b02775e394 legacy-trunk +37749 a576cf1ac6a04e782f7a7127332b5ac886f18d67 release23-maint +37750 9768624f035fa238fe9553f7c635c403e4525358 legacy-trunk +37750 0cb1ba92241ba29575505828eee241cd126d4693 release23-maint +37751 0d6dbebd8b4a2d043398a24c19e01685f72e9647 legacy-trunk +37752 53aa019370db50a3e029c5745212bb51069e14e8 legacy-trunk +37753 c308c6ba002f5b5b2489714808b4343ffa588fa0 legacy-trunk +37754 feb4017cbad42a745c25b1c773dc4a6611e8776e legacy-trunk +37755 786d3b8b9beedbac44cfb8b44f35ea14e1ea220d legacy-trunk +37755 7e387a9dcc79954a77695adef8b593da35be1214 legacy-trunk +37757 85db016e8dac63ee959aed455e9186b3f082e155 legacy-trunk +37758 d783d51718119e41068c3896c5bc95e86e9acc90 release23-maint +37759 710b7e8d2ff2a60b86573e93eb30eb0697a6e8e0 legacy-trunk +37760 dfb7b07dcdedd0092a5bcacf620ed6b31d2d2fcd legacy-trunk +37761 a5129d6ab1cc6a5385e9621f8d7b7f4c24b90cc6 legacy-trunk +37762 eb979c3f14ba963d9542e3390fafe278f9b09649 legacy-trunk +37763 5cc383401294fb4c54a3d7274cf550cfe8e2c239 legacy-trunk +37764 ab6b108a8cec89a20db0577c44639b0b8a71806d legacy-trunk +37765 20873295e91607574eb4f1067c599cb08a5fe629 legacy-trunk +37766 19c2dccfaf653d9677ade78e1cb6ab5d96d86924 release23-maint +37767 13289a7442c37f5b49cd5628c98651e966519e2d release23-maint +37768 36024fa3bf4f4ea4193ec6d29affb76ccda9f6cb legacy-trunk +37769 8f8c89bbe439d0e184e4ee1dd8dae07a591e48b1 legacy-trunk +37770 5ed1d97b49a12459a0b6bca70dbe90fc8f9bd114 legacy-trunk +37771 7ed899b61182806c9b16d16d06709a62e29f8fb9 legacy-trunk +37772 2fa872784eb6201b21ea73bf6c91daf0ab5a6b25 legacy-trunk +37773 b3ffa64ff4c647023a253792a15f502dd4c177db legacy-trunk +37774 99b9201863671b8d690ee2650fd1750067940104 legacy-trunk +37775 9a862425a98a146cad69a1293553e292f284b9a8 release23-maint +37776 9ce5764019aef0446170d134a121059ecd3a5cc1 release23-maint +37777 ea6ef40dc9220f4757c4bf0ce150d1ed9e78002b legacy-trunk +37778 7e88c0437ecc620ea7ae3b8811f7b67d467e7553 legacy-trunk +37779 02016d5a4dc6a83569dbbb1826c2e6bef8bec54c legacy-trunk +37780 25714e0fc89db13cdd7bc880b7c31d3768631a46 legacy-trunk +37781 8e91a7eaa7b7995b656e1a36c07cf580dc0a60e5 legacy-trunk +37782 8698653e05fc1091b5910228b726d2364c5e720d legacy-trunk +37783 d82fa932b41bc0391658116bc3e97b8c53a93cf3 legacy-trunk +37784 7fd4d350ff8262b8d585097dd7956a1b0babbd15 legacy-trunk +37785 9173b9e0ab773497040ebbb742307291c1a35c5a legacy-trunk +37786 018dcc7ef887debc7a78fd9dcc6fe929ff8afeef legacy-trunk +37787 662c155106e425c105f9ef2f9f8b0f68492c4fa1 legacy-trunk +37788 e4404046e552f86d75a1dbf1de6f6acef9a39faf legacy-trunk +37789 8390f939dcc1f3cb830828af9fe4137535edae1c legacy-trunk +37790 829ee325a18e5387ff78937b2c34c389f8c74ff4 legacy-trunk +37791 0d4ecc31cfd83db5d4ad6c478fc19af46c29e479 legacy-trunk +37792 66223a9ebe486359c1f577b8e86edabf2e43813c legacy-trunk +37793 4fa1df3b062f497a23c48b4116b58f469d57a828 legacy-trunk +37794 548f38a56669e22f7cdb383b11ead8b1cb1e233e legacy-trunk +37795 59c43fd8ba73f0788d1adf67137527ee9fe0fdf2 legacy-trunk +37796 eb231544c1ad5e6050b97a02df96d8b46f871178 legacy-trunk +37797 0ae28c3a8d2406838f28633fc246b91bdb1c4266 legacy-trunk +37798 ab73217730db232e3e09d26a79f885d9e429b9f7 legacy-trunk +37799 e4e23e3a7844bceef0eca3e13f569879d455a3a3 legacy-trunk +37800 4de354c78a7efbc0485bdd8a25dc1822f386db8d legacy-trunk +37801 81cbf031549a1f9e0b109d232235d69c6e193f9f legacy-trunk +37802 5fbbe8233b763336ba1ea1c880e8ca66721bf4bc legacy-trunk +37803 dfd07b7be4072f7933f11af15139f286d52ee85a legacy-trunk +37804 463a03a5ca2283e6ab903e033020b33192e44e5f legacy-trunk +37805 82d02564123dfc2c5168263f21303690a7b52841 legacy-trunk +37806 359ebc56093e7eb2f4495cf42f7445b1d8ac4853 legacy-trunk +37807 96179c096d65adca3a964007c191557327fdc2fe legacy-trunk +37808 904771bef3f47fdbd1f92713b0d85ed8c5ce178e legacy-trunk +37809 afee3c33ae6d8c75590a814e2071e84f74bcd7eb legacy-trunk +37810 8b2a2f7c13b80dc744ab8615be39712dc9fed2fa legacy-trunk +37811 f2ce15b02ba3febbdfec218093ba06860d4b60c9 legacy-trunk +37812 b9819b9a0dad542117eee4ed670603542da308ff legacy-trunk +37813 633be43bed17d037bfc9a36b5de30563b5acaa35 release23-maint +37814 eb344e03cc712562ee1282ef60c43043934fa117 legacy-trunk +37815 b4f0ad8159c734df91b90592862457b368f06189 legacy-trunk +37816 e1f1402609478af78644b53070e2e5248ef671ef legacy-trunk +37817 0fe8a16a336aea8a4681b0dc2badd97b690991a9 legacy-trunk +37818 77b1c15174b44dbf1211765d75e26fda47303e3b legacy-trunk +37819 942f8743adf0278b7882e0e7e70a73dfc5d7bb0c legacy-trunk +37820 4f7456d03cb9de6239850a69e69d64d5f7f8e6be legacy-trunk +37821 c871ef96655c8d38bdc944329d049253bad24f88 legacy-trunk +37822 dc80476b782b790ecda4276083bafabe0fed3915 legacy-trunk +37823 cadd3e8d349f09d3ebb921e4b2a0a754b60922c4 legacy-trunk +37824 958dc8b7a826a1805f95af5ff0ef3cc2802b5741 legacy-trunk +37825 4375006e5f079f72b6c9c95b38f44c3220d4734c legacy-trunk +37826 fbf30646cd13641fb799b58f33e47dbb5466dbce legacy-trunk +37827 a91e92b982acaff038b7d580109cce672df7a146 legacy-trunk +37828 893d46576737abba8ccc3cd564b0c34d06ae6e7f legacy-trunk +37829 06ee53a76f0173ac040cb9425a23a10c550e7b39 legacy-trunk +37830 9bd983cfbe81bc865b4f9da9943742c6b250313e legacy-trunk +37831 0739f36ad54419a41314ed0dbf54e7c897589e2c legacy-trunk +37832 feff4e4f345ca5e336f7b00ec80917d45947e27d legacy-trunk +37833 0238013323955eb4ba2a4125079f7f439e6da3b7 legacy-trunk +37834 23b103abb8f7fa7a796fe3895018617c1f088fb9 release23-maint +37835 53b3f53d7a0d32a9f550b993b2b72fa0406e5ddc legacy-trunk +37836 4cb7b923681e47aeb6e3e51bf449dfe9edb57044 legacy-trunk +37837 d25615ef5d8f605951603a6d5cffb209893b1b60 legacy-trunk +37838 2213cdb3cae793cb0dd6ead28f24d98bac80f17c legacy-trunk +37839 4394463510fb2db9e09d8d4b7d684d450e0ef564 legacy-trunk +37840 dcda06cb078a3ef96987be24a5884b80450cdcef legacy-trunk +37841 33a846b777a891a93bc3eb3ceaf7f2d096375a62 legacy-trunk +37842 f92616f8c33c74511198288c05e1a2922d6d8be6 legacy-trunk +37843 4005f79d281ad0df29fd83298bd414972eed1d23 legacy-trunk +37844 ec29955b85435bf81602831d97d8ab0ab48aedf8 legacy-trunk +37845 468a10ebbcd501a084ffff4c3d28b0bf2ca27971 legacy-trunk +37846 6525e028afb3c9c726e849849e0fa612f49009c3 legacy-trunk +37847 7010a99b5e6124176ece421688aed908595bbf73 legacy-trunk +37848 32ed2861c97f18ddc77c58fa5ca6bb17a86666b1 legacy-trunk +37849 49b6e966e57f08846e27f62f2223a6d7e225d096 legacy-trunk +37850 489656dbdf5a7f3113f8cff02d52db82e26e7e66 legacy-trunk +37851 a05085a63dec8364b174e9b283c1e2f9d8a94934 legacy-trunk +37852 4f2bbd471a21c58138d0ca61a124be24c7c0b558 legacy-trunk +37853 71372449582d326856473ad6076ec56f1b2c64a8 legacy-trunk +37854 f13ce0bb606c02d9448524332932a3ae0af2b174 legacy-trunk +37855 a8de2195efd66bdd840fd6c024c56880e8e03b1e legacy-trunk +37856 6771e1840bbcbf03c187b029380328c1159f9fba legacy-trunk +37857 b4adb10211030ab2508c5ca290be1636d1fe5822 legacy-trunk +37858 b871b94f07b6d6f3faac96c14ef4bf45f8255d6d legacy-trunk +37859 365638dce5f3436029f29110d040c7bede1cef5d legacy-trunk +37860 e01a17bcdf28ee87ccbf96ad6c3b2c1ccb2ca3a1 legacy-trunk +37861 f5311303a357002d61f61fd0c2f0c9a69b0a4d4d legacy-trunk +37862 b48ca96eb4408dccdfc5069ad8b68f9bba79ceaf legacy-trunk +37863 9a1309a90b5df6d0e4ff0524b53cda96835a79ec legacy-trunk +37864 bae1919f85481dbf60f09badf4544cdf581890cd legacy-trunk +37865 a00cd670341ba7fecf89835d691475aa282077dc legacy-trunk +37866 ea957d9b369cd8ddc370fce3268e1b89cc5ced65 legacy-trunk +37867 31e4da1664b7ef60567a15804581b040e5626cc8 legacy-trunk +37868 d5ba4f3050b5870e29ea57c1b6a2e09a43ef3f48 legacy-trunk +37869 78738a89b22311db7125f227b0facde10d2f1963 legacy-trunk +37869 ff80d8bbef6e13426c8a85d7f9d837b8f8f89834 legacy-trunk +37871 209550256a7441601fabb17bca9326da42d8153c legacy-trunk +37872 ef7a02b18ecca3998706aa46a712027a89ac955c legacy-trunk +37873 8204a4d2012cb72df42cafb4e04c809e6f88a4d4 legacy-trunk +37874 71930d7b3b8a24f247788cf1b376f7281b0ada0b legacy-trunk +37875 96f62c6798e81b1113f3e33bf0c9b9258307c3bd legacy-trunk +37876 9b0c5bf4700c08430e5475c1ec9dffcd8b3f6fe5 legacy-trunk +37877 8daa5a448403a9fd58e60c88658c580618e05cdd legacy-trunk +37878 2b9c2ed5a76bff7e3ab030b4359fefb91aed5cc1 legacy-trunk +37879 264e45baacd5331c1845a5a2263399a208f09143 legacy-trunk +37880 e9599d9d91c6e707c22b1bcb8045f2cbb54c361e legacy-trunk +37881 6bd8021f741cb8981e6cc00498455db1cf237417 legacy-trunk +37882 bdd14ab6c5cf15bfe7c190db1b574e32b78d0c6d legacy-trunk +37883 be370abb020f9c975bda56fab94298157f3bc488 legacy-trunk +37884 c10adbad44fab98c27f223bb1aca3cb33f08c16d legacy-trunk +37885 1576e845c57bdadec77d4538f3a36459d0785200 legacy-trunk +37886 a8ff6ed856e893b47f3474d4725892e9638b1577 legacy-trunk +37887 c1483f0e800d02e8ec0109060049abb690996f61 legacy-trunk +37888 7f95fe98d8216d2168e84c3db8c7b6c98fd19183 legacy-trunk +37889 71358f6575b6afe0efd1534c757e530ea288e0fe legacy-trunk +37890 7e99b0680adf113212db8cc87e28ecbe81e0584d legacy-trunk +37891 8da57c28b910f5138291b8874397ecb06aed764c legacy-trunk +37892 81a1f754d32cd208f73501ebae430e8ddfa04634 legacy-trunk +37893 c88d18418053b54b345030dcad2ad6bd0e3f4289 legacy-trunk +37894 5be31a207d86d7f4ec15b1d47c748804e9c81b85 legacy-trunk +37895 7a5a56a173775926e9d3be35e875b5664bb521cd legacy-trunk +37896 163409a601bef41cbd78923b063db3e14c97b69c legacy-trunk +37897 2c83b622a3ee68c5a99d26f94f97d26bf90bc35b legacy-trunk +37898 c9c7794060b0e6edb9317d028dba40074d0a1a98 legacy-trunk +37899 7e955e987d69ca7d7230b52950f2bb2b9fcead05 legacy-trunk +37900 d33b3a2b094cb83c8c9d08da66c4d72a11ba5c5a legacy-trunk +37901 d0716ab03d9ddc4507b871147334229f6c6b03f3 legacy-trunk +37902 6a806fda668d6c5f4ae239088893c8f4832daba4 legacy-trunk +37903 2830e6cb415765b153e63bea7f13d6aa33ec8e5b legacy-trunk +37904 fbea714802b3da9620a51106d0efb356940af3f7 legacy-trunk +37905 7a12904438d6ca7971071e52ea5d34bfd6d85e8a legacy-trunk +37905 f31e18d313c7a4fc66914b2d27e130a0f72c0b69 legacy-trunk +37907 716307f7e617c418513af0b9ca11bdada78095b1 legacy-trunk +37909 63afc2d1b0da3722e3058fff62296e0a80460182 legacy-trunk +37910 cf3f8bee7f7ab12a93be47243a652a3e805c11d6 release24-maint +37911 2ecdc83fa86cd2b93b11e50e03d1872bdf89578e release24-maint +37912 38432ad11c2a4226ae6f328f5395f0ab3c6e6ffc legacy-trunk +37913 aed1fed37ad5865673fca069c5c3c8fae2f779e5 legacy-trunk +37914 fd1be494c31b63e611015d5ae4b51d7c4341a992 legacy-trunk +37915 8cecb8dc43a3807bcf3ae956559b483484ff6d87 release24-maint +37916 79d2ae0a62efeb740d64fdf204eb6e2504ec7d5e legacy-trunk +37917 a6e251de5e41bdd82d8567f751563eb69d6d4d5b release24-maint +37918 7026d03850811720bacd5b6af025cd93f632cb08 legacy-trunk +37919 1c4dbe4a06bd0549c0b4359c49152257dcbad01c release24-maint +37920 217d741049c0d626f47aa53271ad7fb7d566679f legacy-trunk +37921 c87261ce7ac932754c6e9e7e7f3a4bd51566b4e4 legacy-trunk +37922 8eaf808fd980c107ed4478dfbb9cf9590a7eedc6 legacy-trunk +37923 e43532b848d75d803aeed6eb47d346fa78781c77 legacy-trunk +37924 7e6482ab9455da1777534e20c4197b5bf6015e8a legacy-trunk +37925 6bfb0ab883f20f76bcf43e203d7f660d549b991e legacy-trunk +37926 da967fb7a7fb4f43a158a9d9483a9ba76979a62b legacy-trunk +37927 172b47ff2e4bb380bef7aaeebe24f26db14b8a90 release24-maint +37928 cec31edea414fef4e9207ebafce56a6571f48adb legacy-trunk +37929 4e254f028b76fc1bac4cd8c80acbadd746d89747 release23-maint +37930 33f748e5d1421c80357218188cae5ef2a8daa32d legacy-trunk +37931 8c8022b81f020a6ecbcf1e3900d093054590f57e legacy-trunk +37932 abe3ee5fc6c37da0c86e3c3826bd2b29c318ff99 legacy-trunk +37933 f18a4d937142a052e80cd765e5524ea0114725bd legacy-trunk +37934 8bf765b480b80f9a0bd0ae091b79b4449539fc26 legacy-trunk +37935 50e0c345d49b3bb7bf09724308fcc4861b4ae8e9 legacy-trunk +37936 4c8106c358ce0b8d8a63e023248e4aa506b63f05 legacy-trunk +37937 157fae769536e633a64bf691c41eb1928aa5b807 release24-maint +37938 611561cce740ffc8f87fcc9d2eb0b9193e95bdf1 legacy-trunk +37939 fbf6e04def69024c24449195ae53109b279d5b93 legacy-trunk +37940 43c00f0e63055577e70853404d0442f4cb90e1a7 legacy-trunk +37941 f7328096832279081b88a70ee3660224c3645e6e legacy-trunk +37942 4b601bd346a4f43b138c3e8bd9fdb840b7596e13 release24-maint +37943 c4b13fa18a103da17f858b36546fc825c8a008bc legacy-trunk +37944 609bcdae108a657831b25297eef9092f4a427eea legacy-trunk +37945 2399632fd9e0e27f70a88f94c999ee273b60524a release24-maint +37946 d2f26eaace2c1f320115a23a1626f25decf201eb legacy-trunk +37947 d6203fbda2517d3894268fb7db9bc1f7262d3e78 legacy-trunk +37948 6e0db07fbf9185d91c0e8472131cc230925352e4 release24-maint +37949 cc9ce6837ea9b73ec48036bc1eed71cc5349535b legacy-trunk +37950 95d276d4f9e465796aedab4dc1d150521ad87f43 legacy-trunk +37951 624e9635c3ad11d729c52860add31e230c679b2c legacy-trunk +37952 f02cd0d4a2a05a7c9469c86c264878290bd1d9f4 legacy-trunk +37953 edc20d539a1815d58394d83fe85aca18c7650da7 legacy-trunk +37954 175f6125549cad71b8ab52a14d065dc13fc4aefb legacy-trunk +37955 0ec344663f6a9ecf88b32b97cdd1066f54e68468 legacy-trunk +37956 8cd3176fd6f030b60421ad048efad5c1322241e7 legacy-trunk +37957 8f929513993c91dfc646aee0772e0e73c8efca8d legacy-trunk +37958 24f0da92001044e8249b3497b0c07d864dc1dc12 legacy-trunk +37959 5172c28c0b3c8c982507d61212e2a52199029972 release24-maint +37960 cf555ec698ebce4fd6dccc63bbaa51582370e7c4 legacy-trunk +37961 53c6a959f9cfd5ed8f03adbc5622d28235f5a1f2 legacy-trunk +37962 0dfe608eecfac20cf699bb84ad697b79d43b26e9 release24-maint +37963 b966aade548cf8b13a70e4605e190378e85a7b7e legacy-trunk +37964 8fd766bb76c9e48e102d544d1d289ea0e29a9da0 legacy-trunk +37965 f409d4c6dc6041eb54f4acb33c9f1605f3d66c8c legacy-trunk +37966 cddd016ae06acfe9cc394c30388845476824acd7 legacy-trunk +37967 0f56a6655ebfa28301a6f2013f5c04ff6266e302 legacy-trunk +37968 ef6d1e5eb4d329e3f92cd6f1fdb528f1e06052b3 legacy-trunk +37969 25571ea5eca62f085b8a017725f04d01ac08489f release24-maint +37970 6989092cd96d5cd933149065b3d5a4e117fdd55e release24-maint +37971 421a5df508b87703f27ea8ec6b88f3f49ec84e17 release23-maint +37972 1d1d6377acb123d18c82c169a73377085ace3338 legacy-trunk +37973 957429c46bbf8d750e76a8c90f78ae056b1a2b83 legacy-trunk +37974 05f8a4fec3562946faffe553da59635a65e87548 release24-maint +37975 73b09c2b788b8a2212d4e265fee8ab99ff955fbb legacy-trunk +37976 1d04936a6456a04a9ff10c25955a9c80aee4a3a2 legacy-trunk +37977 9c1eb33fe110bccd3d9e494111686f2b2699eae9 legacy-trunk +37978 96721a03ae30024d6ef1bb815e12de2771facafc release24-maint +37979 ab8b0b731717a58030cb81a939a583ecdf78bf6f release23-maint +37980 f0fc6befb0607a31a78a26a95436de3583e32352 legacy-trunk +37981 ccc50e0b466d4ecd8d200c4ae0c106412d98d81a release24-maint +37982 4979a44345434096f090ef4e2aeac80399868835 legacy-trunk +37983 60d482e8f845017c0ad55a97cd8175361d400a3e legacy-trunk +37984 1531b25ebdcd3bf36076d4f665157b7a2f7878bf release24-maint +37985 e46f98e73e5272ac0816ffb7475b93ca800e5e1a legacy-trunk +37986 fed5a734465d364f77505e7a8e06f95798ef7f9c release23-maint +37987 4e8fb12f8378722aba0689aad6cf8fd66c1f1931 legacy-trunk +37988 4e38ecd1912e4a6560a32a43bea193fb9984783f legacy-trunk +37989 1a938f456053851102c783a9cd95db5fb2bdc8fa legacy-trunk +37990 79066ea38c50313d21db460658f3506ed9a62894 legacy-trunk +37991 4dcd78f3b5d1ba16b9e31dd090917428a69f9651 legacy-trunk +37992 710b0b0e07eed72a24077431462535804dc1dea1 legacy-trunk +37993 015b892c98ee2466a8b43dc2ad7822028022a354 legacy-trunk +37994 ce4bfbd9a16cd588a0b7fe8deb341704aaa53075 legacy-trunk +37995 5912b4181584619e7c5c7a9daf5a086e7804d062 legacy-trunk +37996 a857c25a37b968f5fa1b56665f5e87cd6bcc95b9 legacy-trunk +37997 0a6dd3f2abc7d38c9fa7303574e386ba000c6b29 release24-maint +37998 afe90e9e4b484d879abf237437b1a848a4faed78 release24-maint +37999 492653857782fe63acabff7b1f36c777aa77ec22 legacy-trunk +38000 21abeceaabad6d61b9ca5a089384b0b97890db0d legacy-trunk +38001 f05dd1816c1f7cdf5a468ed181308d3910504bbe legacy-trunk +38002 d0a09c79740964e20f19722ef683667cc67a77c3 release24-maint +38003 db8f699ff7825f7f17f5dd6fda71cb00622ad37e legacy-trunk +38004 b132ba9259ab14f5a4ee7e935546975c007d7155 release24-maint +38005 71d710e336dfcab99565262b522fc7043b3116a8 release23-maint +38006 bedb340f12f970a028034d21f86964d2d81f5330 legacy-trunk +38007 752fa86f06d25c30358fd442f90f292e2fab5c11 legacy-trunk +38008 c2eba04e304151083bfae9d384849dd4f4e6c57c release24-maint +38009 75f3a51a4e33db65fd93cf542eef6d7a872a3dcf release24-maint +38010 16803b03964e4d52a5660dcb6ea950f799862777 release23-maint +38011 6574c515e03566ba8b63793a39561eecbd126cd4 release23-maint +38012 be450a335e9696e3db1dffa690d373692ce33ef1 legacy-trunk +38013 a659b0cecb92f7de368184a760a078a9db82a982 legacy-trunk +38014 e692e77cad5d5a43d5ce79b91bfd5851f8e28ba1 release24-maint +38015 de4701fc176f9e4008f5036f42f14db12de62c65 legacy-trunk +38016 bbdaacc44f6f4a0b3f9ce83a35fdfe16baba8859 legacy-trunk +38017 a86866bac366b8d8acd459ca85e0c409fdf3c3aa release24-maint +38018 51b0d18da447b735313177adfcc320dd21c553df legacy-trunk +38019 c294b11323d17a47d231f68f51c8ca8e23954d80 legacy-trunk +38020 258560adc43b31b5ef80e529e1e1aa437ff10e48 legacy-trunk +38021 f1edb47ce4fab46b9d8ec04186c731addbff3460 legacy-trunk +38022 3626db433104e071d3391ef4fa4421d003fdde50 legacy-trunk +38023 0f00727a27b30be992071e5bdbaa21df060300f3 legacy-trunk +38024 69611c7cd23bdf47c4066500eaf1c4fb8ad715fc release24-maint +38025 ca2ca1aeb08053b697f2cddf7f8489692aa495af release24-maint +38026 8b1144ba734efae1ffbc540fcacdeb7e650f82ef release24-maint +38027 cb54f1153b9354e982ee9bf42a0b0693e9642aa1 legacy-trunk +38028 5ea025c421d7bb8777d5326101d967d213003b6d legacy-trunk +38029 c20f5b38fa20964ad72df5cbe18ceac60834f6b7 release24-maint +38030 e53693a02cf055d0df92626fa6ec892764a2476c legacy-trunk +38031 fdecba26fc87dbfed9ef452243271f46bd533125 release24-maint +38032 b3afc01c05a05a56a3b460dabeca094b82da6fc5 legacy-trunk +38033 db9b64939d45c728edc44d9acbc70bf3034075de release24-maint +38034 80f01fdbedebc498b297b219df30e78c42be18c5 legacy-trunk +38036 6c02ff902f820d62d8534b530b0c1af0727ca8a3 release24-maint +38037 13021d35135863d5cf167dcc78dcd5e9236b710c legacy-trunk +38038 2144a352aa37fc0b1ca771301b56ff1a2c299b59 legacy-trunk +38039 30b97c1bb12ddf32f9eab43d6f7a9b9f0604f39c legacy-trunk +38040 9c3a64c281e1b35a01fa3f0ac825c3379418d952 legacy-trunk +38041 05bc8acaf0bb4c6bc21e982c31d2b062ab6ed975 legacy-trunk +38042 e89b1a240ff7ed152b57a58290f4f775dd32b685 release24-maint +38043 c139a4997d9f14c4388f1b30c36f1a907ad5748c release24-maint +38044 8fdaa97a8ac3435eeea6c4deaa07b2408640bfa5 release23-maint +38045 11db28e9209fed3e31501e194a4fa3a60ac0bf5d release24-maint +38046 0efcc16f5a0d1658ae8c586ffaf233fe2e8a64fe legacy-trunk +38047 4714aff4bf75287ff31aaf4398906540b614484d legacy-trunk +38048 9e8195e21da69eb2c23e80c0cf6496a58ba3ad23 legacy-trunk +38049 36cf94f574151f4bdb35bb136f9650da4fb2b923 release24-maint +38050 6f4a6e9ad6f33abbfa2a3598a16fba5c130768ce release24-maint +38051 521bec60eb302fcbc35200509064f05ef02f57a8 legacy-trunk +38052 0470d75417ff155a743048e7f2193c47ca07b354 legacy-trunk +38053 d04701e59872847977ed1c6a78e39a7454b899a0 release24-maint +38054 44ebf98a5868203d36b4ef5742783405d82f8ae6 release23-maint +38055 a4bd5d21c8b26cb2af1b1325f059c4e2c3e833a4 legacy-trunk +38056 cd4dd6dd9721bda70e2b01780194287ebdf1396e release24-maint +38057 98d79b469e74d31fd72f806e92e57819832938a8 legacy-trunk +38058 1285ca1345d5c3131db7473112d7685506414370 release24-maint +38059 a234284f9e0602f1c5d4db0ece5ff93e9ed87de6 legacy-trunk +38060 46fa0e20cbcfe4086f876ef73b25adfd4a920014 release24-maint +38061 1990f7ec0d9ad0b0a792130215d2e596c3bc4594 release24-maint +38062 dabd43bf0dddfeed5fe89dfc3ef7052eed8a277a release23-maint +38063 be976ddf0ff70721ce40a34174eb6001adbd9e5e release23-maint +38064 d4702e67e1197fb293c9018907d44b573e989323 release23-maint +38065 7fb67ae93128e195165795f420fd91b20bc52f2e legacy-trunk +38066 a0c7df52ba415731a92d66456d8833a926b3d00e release24-maint +38067 9cb8c687f3d67ffa7bb6c58e8d2238b1d3d128f2 legacy-trunk +38068 308efd7268c26ceaa1ee7fa96ea9958bd77adeb7 release24-maint +38069 7d5d6bdc4f979d5a85a8068313d810af60217acf legacy-trunk +38070 ea340006c1f30b86e11827f60a983dc259cb3b5f release24-maint +38071 86a60d4fa87a356acb6740de0fe7b50c3a6caf12 legacy-trunk +38072 19286994f74f32a316081afede5665a73d9e107b release24-maint +38073 7c413d3a40a52ba0ce2aca3ab57d97708ef605ef legacy-trunk +38074 02fcb5eb84cb6a1fbc6ff68618e1e50d35f67c54 release24-maint +38075 034c611b2e844e0ce5aecc6e0e465ae7173be74b legacy-trunk +38076 98654bfa80ea5ddb2433893507513a49842907a9 release24-maint +38077 1e8b033f91dc3baa99f98bf64b2cbc5feeb73729 legacy-trunk +38078 a6ba28d1d806aa83148532b0d1ab5ac9e2a6c3fc legacy-trunk +38079 abe3145dde4e7cf687f9c217f027bfdcad44a7a1 release24-maint +38080 b6619423c196101952018f832b5f3d6677af89fb legacy-trunk +38081 c1b440eacbb180bfd9dd944a1a836e65cd72d3b1 legacy-trunk +38082 99e3ddb3a74aad79fc1fc3827c0beea6929561cc release24-maint +38083 8d60077e9951490a8e284e5809bf06ffd490f34f release24-maint +38084 6719369083c1eb9219e4682fdef3ddb90189105a legacy-trunk +38085 9dc96ac94342382ddcfb2454b10601fd0d21289b release24-maint +38086 2aa96ee3fcb5c90b72d2500241294338ef2f6ebb legacy-trunk +38087 4a0c1e517e6bb0f58fd7339b8dc5660fe0e039d4 release24-maint +38088 3911726aecb9001e7195d7c65f855119db0f0ced release24-maint +38089 642db1fb3481b33dad0697657550e8479d5459c5 release24-maint +38090 bbdc1d7310f497a78b5316b2e488ba46b5b5ca34 legacy-trunk +38091 ec1925f07ec97e02c3d176b83b31f7b745165feb legacy-trunk +38092 e2088ae0d67fd667ffb3b42a633a0bafa0e55689 legacy-trunk +38093 57b23e575ffc630c29c44ff02a2c428dced5d86c release23-maint +38094 95bbe991fcc3319f8f99664d16059054b1cf2da5 release23-maint +38095 cfdbfa54dc6a701cb5900e33f7c8c968e16b8bec release23-maint +38096 a7ffdc09f00267d7648f4bccda60a77de9d38544 release23-maint +38097 694670f65251d5cf80fd133dd75315aa4a972ee0 release23-maint +38098 93b1b0beba59f9036247a65760c1c215e86d0b6a release24-maint +38099 ab1a17c633aebe9704a499ecd8f587fa2a05a5e1 release24-maint +38100 a4d869ecef338beb32ef221cdc47e1aae7ba17b9 release24-maint +38101 c0cc6601ddada2ea520e51ae5d221f6c224640cb release24-maint +38102 90cd24a1ee124961024cbef3e61e10ca4eef8556 release24-maint +38103 aea2237b388ff72fe968fc113ed73884b531baf3 legacy-trunk +38104 2920691f63f0687cbc500ac320253852ff2ba0f8 legacy-trunk +38105 914534f6ef6126a462f3f6ce5a81a871b75fa503 legacy-trunk +38106 a15fa059f9f03007d17356e55f400e832a5b6c09 release23-maint +38107 c9e5d1d1e887cc03ac5fe8809c1489830315f2f5 release24-maint +38108 df0c2f3acc7c961b097049eb4a808931e0b237dd release23-maint +38109 b044735c927b10426127867a1518028407eb4ea0 legacy-trunk +38110 46353568e40d99d3ceb531f712b6f288e5c75d2e legacy-trunk +38111 99ebec2be0312921f836bbc5a873259172928694 legacy-trunk +38112 aaba1ce4b3ca05fd920d6cd72f624d95dcdaf994 release24-maint +38113 86c3a7c6b00a1ab2802b25559ad12d92db152f8a legacy-trunk +38114 f54e14000d6bd0e2af1a3cc9b5f2c193859e433d legacy-trunk +38115 e82d183258f9c1064a8fe5d367311ef7347d5ffa release24-maint +38116 5798aa654ec640d8da995313163bc084fb4a7617 release23-maint +38117 28891dc25580caac87b0c0c2ab0ff2939269b81b legacy-trunk +38118 584023dac406915b56872d1c88a35a7ae28b1249 release24-maint +38119 4ec006ca2b91bea7e52d18245a3d015b153ad7e4 release24-maint +38120 e81152152433fb18add4e9ad0297d70ad8807737 legacy-trunk +38121 c702390a8e1222e979007e1ca53a9d6484c4e899 legacy-trunk +38122 0d9163da61a3bb0035497bd000ac3c6d9055d8b4 legacy-trunk +38123 646195b5920577d4f5b62ec58feab2dede8a2544 legacy-trunk +38124 74a91e4559ca5b2532035355b8d80cc684396f9d legacy-trunk +38125 321bc2d49a5a2e10fec4e43dc0dbe850c1882925 legacy-trunk +38126 586a76f96b09dd4f24bc39e7874038dff64edcaf legacy-trunk +38127 58981fe90befa4e7008478c9f2d8d6224b0209c8 release23-maint +38128 1914c4db4b2860c96563e50b8a8b8dd7340e3217 legacy-trunk +38129 b2ecda4dd70fdf68c050bed8acfd8b22d9e86eb3 release24-maint +38130 af01336ff19db3068296a8a6832b629baf6fc046 release23-maint +38131 04427174cf6ab13f7ef9bf8a17512214b793af3c release23-maint +38132 055dd7f90b1ea8b6ee6cf855beb8c5ffd5d0cced legacy-trunk +38133 a9a0336829ba0403ec7c13fba8c05d32c5f55d6f legacy-trunk +38134 0006b2dd37c23691d621eb4b305334d9f36788ba release23-maint +38135 00562dabfd4f37b83087c65b4537933c4e6be28a release24-maint +38136 4acf7abe582577ee6eead718dc796862ffd4b284 legacy-trunk +38137 a13d944ca76c9764ec1eb1db4eeb107cd523349a legacy-trunk +38138 21dd524be036aca4ffbadbb6c85e9555e8db924e release24-maint +38139 72cd93f463b5ad19a0b47096081a9da578556fd3 legacy-trunk +38140 93772b716e3f9178cc6dc7c0436a613be71098ef release24-maint +38141 d8ec4afa1ffb0af2fc09148b59794d7b97de020a release24-maint +38142 e9cede91d3c32f6cd1bee47299bfee894d6a9209 legacy-trunk +38143 afd9b82e68f1f8da54615c3bbfbec17168f0b827 release24-maint +38144 b3af7c6db1c60ddd71735bb0386452021da5dcea legacy-trunk +38145 ba8c3eaa43a59726bb4172d9ab54c5c95f2410c5 legacy-trunk +38146 b2c9981983049c7821eadacf453112bb6ffe7cdb release24-maint +38147 eab174d0ed031ad5cf544df75eed63b5ee952a9c release23-maint +38148 a8a4afe18b6134a3034357ef73322f98e33c4540 legacy-trunk +38149 e221d9954626895ae5008b3b9df0cefa0579498d release24-maint +38150 f75ac86bcef44ef4f80f457699eaec4c9e7a485f release23-maint +38151 57bfeb53f2fa34b223fd7e550038171406cf56f9 legacy-trunk +38152 3ec54c5f708148cb262dd21c8a351da53d7425b2 release24-maint +38153 5dc274e15822766bbcb136ee9bd69224354cb0f4 legacy-trunk +38154 1810dfd615ae7dfd8af17f98d9579d8ae1697fe4 release24-maint +38155 7622909651c53d78bc9f7aec2afc687611e77d6f release23-maint +38156 5368d2b7d66a0a57e9faaab19a7b5683f43b4e0f release24-maint +38157 4d383b998bb48f4769420a1e77561c1db3a77479 legacy-trunk +38158 cd517701fd93c9448c582371427aa84f057158a6 legacy-trunk +38159 3e9a4d531e563dd94d836ab9481383d040569c4b legacy-trunk +38160 40725f304e18d73d948ae1a0ee90504d6a3a344c legacy-trunk +38161 67f2190e1f6d9b6505519012aa99043205aa3db6 release24-maint +38163 56e610327b816c5be7b9df94dd716a0ac59bef50 legacy-trunk +38164 dc9d0a9ede8864d3bb67936db4e714ad97ab0c10 release24-maint +38165 df380e196c4b5aa3445a0671d23283ef95196f46 legacy-trunk +38166 1d625daed5944282369b85eb80e5129a632daf9a release24-maint +38167 1f7cf8521bb5886b5a0f82423b4dc40f2c3a497a release24-maint +38168 998fb1e1c8e9a6d23ca2e6632b33ee5cd7cb6943 legacy-trunk +38169 cb30cfcb39e744572a4287cfbb3e3f0a842c6e95 legacy-trunk +38170 991041f764478c905aefb3930e7396b8433206b0 legacy-trunk +38171 0c326327e722391b6c64cc35c5bf71e47cfb0ddf legacy-trunk +38172 f1c35da64d554d3d6a5c054a81444312af819888 legacy-trunk +38173 f00bc273ae70d1e9dbae1cc4d49d1a40d360685f release23-maint +38174 e8bf62083ac4446f326f19349cf1c0fc5cb64a02 release23-maint +38175 60a4b064a2480a7097c6d2d26aaf57515436d14d release23-maint +38176 bbcd8127b326829465bb44ab0e3dbce9820751e9 release23-maint +38177 6127c089a06c9e22b5e4cde7901a3cd7a3406dd7 legacy-trunk +38178 79ade2ddd306881d144a2515d75c649467c5654e legacy-trunk +38179 72417fa21c7fcd75e95b7a9b5f50546e35e9ef08 legacy-trunk +38180 32163a8c3b69d3870b5fdf443cfc2b67c98461fb release23-maint +38181 e58ce04066cd822a0cdea4b32ee615f742c7c80d release24-maint +38182 a6c81ad1f44cb7430bcfa0649d9302ae86294fc0 release23-maint +38183 ad8f9e75f61d24208f54eef3e827985a468c4276 legacy-trunk +38184 2bbc8b4b5b9375c234b85ba3510b80e5e58b110a release24-maint +38185 0974376349689bb261658f22cbec57cdd638a42a release23-maint +38186 f1ae41e8abf3891e96a676bec958884dc27bdb28 release23-maint +38187 b647edd3b96b81f5c5cd774aa1fd7b82672bf8ab release23-maint +38188 41ca7b768b4ff4efe584f7e448769b75a1d898cb legacy-trunk +38189 3a950f1afc55ff376b78bcc5de6f71f1ee310a41 release24-maint +38190 9dd87ba61795501a079467555b394c1324c6214f release23-maint +38191 ee808e08dd6fb89955c054da665615e6aefc2844 legacy-trunk +38192 06643f071335093049bfaa29ef24274814d2fa96 legacy-trunk +38193 4e5f06c4f9579cbc7bbd56f4c415fc89272c88b7 legacy-trunk +38194 ffe7542f8f1f7a784547bc1637240f6b9edf5ea6 legacy-trunk +38195 9caf9cd5453d9e962561e5d27bd2551a3e1aad65 legacy-trunk +38197 44611e5499e7c27e76ed62218c3410654cd7bd18 release24-maint +38198 3fc8ece9d2b80a400aaf088b0132f2e9bbda236a legacy-trunk +38199 a62b3b4ff52cb91897905424ac10d97c6b57bee2 release24-maint +38200 aec59665029234426cf0234f68fb7104ff6091b7 release24-maint +38201 d926b8a5ef6e34a243fc0ef4256ba40c3ec70d60 release24-maint +38202 84f43d3a15354a244854cc4fbdba9d5e305cc19a legacy-trunk +38203 e6bf2e72941ee0eef351b0750f1daccc3b894eb9 release24-maint +38204 e15cb62b3ffbde0b27a0d124f39a3ff174f3887e legacy-trunk +38205 ba24a0324a033aecd37d606775eeb626dba1d912 legacy-trunk +38206 df95a41515c4144caac5ac98029510a08557b3de release24-maint +38207 be4929e5179bc0b329b1149d402ce1bc2e1949ca legacy-trunk +38208 f80bb8aff4192fcd22443d6c5a4158914cd4c981 legacy-trunk +38209 8f8f560cec97ec5bbb8d184109f2505c2c701de5 ast-branch +38210 2080c8c4772977d8985bf36b5960a00915d64552 ast-branch +38212 f42a7c335a5b9ab00c034213aec2160843a39a90 legacy-trunk +38213 8243e51a22deefe6524c3b03f5d9ae8aa400b977 legacy-trunk +38214 a0c0cd3e81fd477b8cf5e0e076a5165827a6304b legacy-trunk +38215 baeb09f60c828265aed0d5c3a838fee1a6ee9d17 legacy-trunk +38216 3fee7c9116c91fd950bc6f66305a5077f65ec97b release23-maint +38217 26cccf3e84829626f5b021b75daecd35a991559d release24-maint +38218 a8ecd4a968256951f990c47cc04bec600e9137b9 legacy-trunk +38219 63f3445f2f597350778c8d744d077aef01b9bbc9 release24-maint +38220 56e0cc437b8b505f22a4cf46208aaa139dc0dfe1 release24-maint +38221 6800600279ed63e1c5feaa5dda6cecdcce75f6a7 legacy-trunk +38222 f263f943ef7b20aa0f75e4ca4f1b5c196ac01850 release24-maint +38223 a123fb4d45bf4a67d4502532e764d8510393face release23-maint +38224 ca7f4315b2126f7c64f23532314dfe42a2e23268 release24-maint +38225 e51a821628464f25cbab67b4a09658b7305015e0 legacy-trunk +38226 b2d3879004cd06dc315b5def207a65816afba66c release23-maint +38227 b7bcbe398baa689adf2845b7d2408c08015d2840 release24-maint +38228 b1a84233d8557d3e219fdd06a52e7ec3bce35111 legacy-trunk +38229 f0db9b186f3ddc0e1c71db0ca9717bb0df02d447 ast-branch +38230 d81b6173f050bf98cd281642a15ed26f5ccf104d legacy-trunk +38231 23366889c6b94c2abb7b5d78a0507f34f9e3fe0b legacy-trunk +38232 8618168dca270545bb5eafb00dade3c7e18d413b legacy-trunk +38233 cc27b249755de6eeda5056dae309c5507982c54c legacy-trunk +38234 35f31790c6f96bafa9168550170516ed61bb649e legacy-trunk +38235 19e61a2a56320c65061f446589b1c87229581048 legacy-trunk +38236 aa246b9f6184fb9a8fefdd1b9b023190cb6c26b3 legacy-trunk +38237 b22ebfc488f3024f0d381dcbc352da8c31b24557 legacy-trunk +38238 5cd4fffaf9105af83466a8d913293947b9253670 legacy-trunk +38239 dbbe83c3294a3e31b0a097d767df1b5c6adc1c48 legacy-trunk +38240 ff73e15a3fb923a1992a674609c5a8440a4e2fac legacy-trunk +38241 ce232072eae6493bd174fc456acd24040776547d legacy-trunk +38242 8a8d844767b6662f055722ae9993edb164ed2f3a legacy-trunk +38243 cdaa1686960855ddd8875a63e5922c20840f0ede legacy-trunk +38244 b8988134837535d912ec1a75ac332305eb43c5c8 legacy-trunk +38245 9e30d9e2b433639255766a7b591c666f78099c99 release24-maint +38246 c5975433aa6877f9d824bfca537eed9a1ba2d0b5 legacy-trunk +38247 2b485974b4715bc626abe83a3f379eff2dff722f legacy-trunk +38248 a94da2c6a626e4d34d9b6915f8ecaedf42baa6cb release24-maint +38249 a0bc4419663c3105ea1438f21a6533171744773e legacy-trunk +38250 287e71f44d79698d26535901d0dd6f0130f8156b release24-maint +38251 1aea81551a222f6bfb229fd5ddfd7b64c50e9046 ast-branch +38252 ba6e17271c628916911215de075763e1bcc0f76c legacy-trunk +38253 4bd180d171cc034485710ef3e49cddd41593e3fb legacy-trunk +38254 a31681a6cf88728783ff0049b6199202f3edebc7 legacy-trunk +38255 18cff3ed74d3d96df9cf096aaba6c9a0e3c7e9f3 release24-maint +38256 a216003cef04402d80e155daf5a30070db7f4a26 legacy-trunk +38257 3533e3cb7b97a57e932395fd4a4c571610018584 legacy-trunk +38258 91d55a30382cbb081479f238645ebe4048778bfa legacy-trunk +38259 f25dcd7f3e4880c0487b18002152dd27fca5f8f9 release24-maint +38260 598d16fa02c19912148c4d32e7f995710da6a58a legacy-trunk +38261 7391e18b0a7cddef6447496abc7e3351e50b014c legacy-trunk +38262 28f84938468dea1e53c1a3f40b33bc87923ff33c legacy-trunk +38263 0a1608a5eb05aee49a483957043a62f8a214051c legacy-trunk +38264 e2c1097d7e8fb0be517833d39ebc7bcaa0b9fdaa legacy-trunk +38265 b6ec1b3b9fce79c77df172675856fee667f04a28 legacy-trunk +38266 b480abaf1f6f6e6ab7d2a53a2176cfda956d5c85 legacy-trunk +38267 6c02bb3fcca6790980982e0f1d09d13e655a90d5 legacy-trunk +38268 7059fb8b9eb3934e5ef51706d7ccac35d005c388 legacy-trunk +38269 c4db992f840f304edca60a2732c924294f3a6f4f release23-maint +38270 45a320f38c48901f35bc4cfe21355fe5e7dbc482 legacy-trunk +38271 d7968621d28d2e7cd195ae8c1322ce103a033224 release24-maint +38272 8bb46fdce8fd38441ea7c245528d662a95663489 legacy-trunk +38273 a99f5ad29eac64a2bf047babf9da45d289fb6430 release24-maint +38274 8eca8d980260ded25a2cce1887b1ce35cbce18e7 legacy-trunk +38275 13a85806ba48c9793310a72847fd34b816c39473 legacy-trunk +38276 a8599c788218d8885227ae39ff5c89c9c9c93b9d legacy-trunk +38277 4282f882b285956e3bead7b10b3c4bdbd688516b legacy-trunk +38278 b93845ce445495e3b485cb6b39aed5f183b70110 legacy-trunk +38279 c88ab292bf0528aa95a6712d0f1259a021285d41 legacy-trunk +38280 72fd373cd0f95a1c2f6ed45c6a1970a69f220fce legacy-trunk +38281 1d866c02a8cab205bb1a402ba9770ae45ea4a943 legacy-trunk +38282 a70dd8767b071b34266ddbb062e5c6322f4f888e legacy-trunk +38283 02f398fbb0f06d17c45b3ab06e428bc8c158e073 legacy-trunk +38284 b32ae0eecdee71ad0fc4b7849ecbe72f49dfe746 legacy-trunk +38285 8f5730a3bc4abf727e94373466945d69820663d8 legacy-trunk +38286 347392c8eb8b36c53cb5eea20b211366dc336333 legacy-trunk +38287 8fc030c5c70abe29191245464fc88e3a9b93eed0 release24-maint +38288 563cbf4d6be46565f45f0405bed83e21d75e0949 legacy-trunk +38289 fe7a1547f2faea448feabe6e516c3be4673ad11e legacy-trunk +38290 fa65e3425a4c5ad6d1a0ed6071d4e1c058905a25 legacy-trunk +38291 652b85d35a75dda10e2d331a576e93a0f73707ed legacy-trunk +38292 269a2c14bc57084d36d83cbd1cec9832abffed12 legacy-trunk +38293 3316aa540e68c807284191ee962ff1b62d44977c legacy-trunk +38294 13934343a53b832632427158be5ac8a460dec5e8 legacy-trunk +38295 5449b7f806fb7df2c22ef3801eec157da41fe3a1 legacy-trunk +38296 5bd2b3e4fdcc4f57130920cbe505530cbf620ee2 legacy-trunk +38297 8436a295591b68ca80a9041f6f64d49fea5d9a6a legacy-trunk +38298 4b8fa8b0af916ee5d042f2ae2ab7fbcf3ff01d72 legacy-trunk +38299 dc09cc9b2ee6c78d284d53ea533e0e01f7923a0a ast-branch +38300 689c23385e4f9dd123d792c711377ba9b70ada09 ast-branch +38301 4af3bffe56203aed22cce1458cb48d125878b98f legacy-trunk +38302 728edefb1e17356e8f7d62bc07a65bc26cde6b8b legacy-trunk +38303 e1305894bf096a8c9c96ecab7983e08424392557 ast-branch +38304 49017d9ef6c986b68738f4f1e81c6aa88af2023f ast-branch +38305 4b74ff079652bf5db0291a97f7f3316223985f70 legacy-trunk +38306 69b68f91cc776690cb6323b49e4300b810ca1456 legacy-trunk +38307 f56463494bfd94ee5a7d09703ed9c18e669e5153 release24-maint +38308 039807e1e4d1282b971f918fa7114e2ac1a0bca5 release24-maint +38309 e1a7eb832cb51abf8b7df52b5fff0270f0d5221b release23-maint +38310 4aa554b00cb0b556d0283c139804b5878188ecd3 release23-maint +38311 2246ab922eb48e400037af1847b29b03fd9d2351 release23-maint +38312 955da080b0cf3680cb9d97b672617d91525b3ea3 release23-maint +38313 7d99981b2ece32ed7a8720ccc69d90cda871f473 release23-maint +38314 6fdbc4e833e20ff94672696fcf83f0ea34bf6a5c release23-maint +38315 775a72b9d52cdc768a29e8511afe9bb99a2f6c70 legacy-trunk +38316 ed4dc05ea4b8c126aa707ab0e36919888b7cb659 legacy-trunk +38317 18f6cebe47aaae73599d2e3eca9c461eb3aab01a legacy-trunk +38318 683719e04218182b02ed6a3cd840a77c70b5c53f legacy-trunk +38319 cd6b54ba272fb4774bf7d9dc4b94f70fbb1937d6 legacy-trunk +38320 d93b68a99f96e3815642fe36413befee42d8f967 release23-maint +38321 6cf399aafc668e44263c0c11c27b8416f3987db1 legacy-trunk +38322 21dd733eb118c3bafe79f878cf60cc7c77df4c31 release24-maint +38323 8c0e3c0a233cac3ac47f0a573ab4f1ce8d1689b0 release23-maint +38324 a063f0d6db280e4e45fdb9a48c66634214520996 legacy-trunk +38325 af630eb26d59b7f1cd948cfb61de818d2d5c2d1e release24-maint +38326 2931f6504af5c3d60ae2bea6bcc0c5c6e212dedb release23-maint +38327 2eee90ef32abc7275a7d66858a67ff247e2c8c59 release23-maint +38328 ad126054ade57500c9e479983f66f01de037d3be release24-maint +38329 670de301b887f101baf945e23842d229fa60dd1f legacy-trunk +38330 59523eb35c1d7126c017f1d2448fc4d923ccce37 legacy-trunk +38331 a093aebf1b40e7d116c7df3486eb7c731e3f6bc4 release24-maint +38332 6605e12bc16d713e3792602310dd94141e142924 release23-maint +38333 51a0f0ad46ac0d9c317c5f829aea5eee7847eda4 legacy-trunk +38334 70a0449755e261db83bfcbb895bd7d8af4c469af release23-maint +38335 1f5c2351605a157dce1c9b87202b64f962242e6d ast-branch +38336 3298ae6f366587c0578e318519c414f951214e78 ast-branch +38337 8b6548f5f279dd94a0d8eaa6355a12594e9786a2 release23-maint +38338 cc3bd4e4d9f0a563153e1b4cba4779e7014530e7 release24-maint +38339 0133b022626eb2cb45fe67b6baee57b02112c09c release24-maint +38340 d5ddd06d55fc9da3f1f4a0487fc02f3ade5f9f42 release23-maint +38341 9d763937a25b4b48af4800c26cadb4a29b0d8aac release24-maint +38342 ff53d14717c528135a4544467ed543fdf9a9df39 release23-maint +38343 7df077f4705690d25cd7a57dd18f90868c88dd05 legacy-trunk +38344 d5ce88ebdbbd0d750198c447dd00cc5cbafebee9 release23-maint +38345 83c975b4a2c3722a06d2b59339822e6c83530e50 release24-maint +38346 c4413307a2f310bcb7675e26a572192b1ab3a1ec legacy-trunk +38347 f738d64c827d30871806fb704623340fad9b3656 release24-maint +38348 63fcd67e3329ab3c1206e3d1c02d3852ea264522 release24-maint +38349 2b258f0cbc31cb95d1f12cab09187441bde8c4cd legacy-trunk +38350 0f41fe3fadf45e1f89cb4b02a0d776148c08f189 release24-maint +38351 f246e4485637a94e441080e65b595dd7970c286b release23-maint +38352 7f52417e530b34db29069bc28a254e9cb1d33228 legacy-trunk +38353 2369dfe2dad469ea5c9d0f28972919a3da3c0d31 release24-maint +38354 9724174262247a3aae7070dd5dd4169f21b6acbc release23-maint +38355 b745595d41d1f16341800dbd0ec43fbd64498b15 release24-maint +38356 e3d74830ed2fa7d5f3bc62c97908281378d0254a release23-maint +38357 b9bc49b53f4d625d5c943e66c1f9572aded36d44 legacy-trunk +38358 36abdd478e0741f240b499d6792298b32c769967 legacy-trunk +38359 9c62e7d690a52aa985d0bbb6f788761d4f95ea82 legacy-trunk +38360 e852cf6ab5b55217a985295f06c8ab39030e6622 legacy-trunk +38361 4a1fefdfc7930463331f83ef786584d32fac17b8 release24-maint +38362 8c9e3ed594fed2c86619c29aef549e0ac39815a7 release23-maint +38363 bb0654cf5e5205e3738df3dcecd661c913bdcd47 legacy-trunk +38364 4d29eb3a3ddbf2c33a0e3cc4166ad875f2ee6ec6 legacy-trunk +38365 41f29e26f68f44808d37e62b2c15543acbca484a legacy-trunk +38366 4209ec1706aba1757c41afc23b71a8696cd167db legacy-trunk +38367 a72ee63c6c8490216c972cceacea289534c995b5 ast-branch +38368 fc580ff00f6f570c9dc1e70fb7b7bacbfb59f739 ast-branch +38369 6b1c7b18f59d87b581cb23747efcb45ca8cf1d30 release23-maint +38370 6e7033c74c70b7c08e9dc46e31e5f8fd95c06484 legacy-trunk +38371 68020bd1b9e2e2ec9314f3b7d7952d749e38e4c1 release24-maint +38372 6b6e6b982ac857bf75ba7acc0468435c0feaf95b release23-maint +38373 08e3ca8fb071f59a7c02c710e97f1968ee58e91e legacy-trunk +38374 4da46258bff8cec961f166c267e62db76c26d0c7 release24-maint +38375 c9337c9d2f2a94661d1e0ac082d7a7ee2c3b0d59 release23-maint +38376 8f609eaac3f002a30c05fdd140a444e42d7a98b1 release23-maint +38377 516ca0b92971b7039edb5f6042333e2b805fdbcb release23-maint +38378 abb3c1ad00a7bb51c3cef555743e07f7fb8b0618 release23-maint +38379 ae73286897a34a39e01a9f163328e2272fa8f929 release23-maint +38380 c1641eeda7c9285507269acbfeb1ca468ed7f1f7 release23-maint +38381 440c25bd99df85c494a961ce4badf2a6083f461b release23-maint +38382 87224f2c5e10002da4d0dbd43bd64921fe7ca828 release23-maint +38383 c4f76ed2eafa3f7a5b7dfd8b292a3bf97178e960 release23-maint +38384 e949d463572ce6611c3173446363e8f66dcb4e8a release23-maint +38384 2639b10daa985b20b3cabec45169d523cac29d68 release23-maint +38386 bda933873758e54e3cd689374251ad3f31d85ba1 legacy-trunk +38387 18ba085cc8bbbf5fead3b8c56d5a6ba1328a4104 legacy-trunk +38388 13176ed52e65c484dbcf4f81fb8e7845f3a31ffe release24-maint +38389 6f2dd081fe0512668206102bfdbd8201b3b4f21d release23-maint +38390 1c349060ac08f370ba6c214c23507194edbf04fb legacy-trunk +38391 91038801eb45fc32babc8434b0a4f3753a7bcab3 release24-maint +38392 cb7896d77de522f24b91c705bedfe820bce30c4a legacy-trunk +38393 925d54df92be950bd5edb7e67b5b5694451f02cc release24-maint +38394 548134ba279fec29403ec784ff6a2727ee2f955b release23-maint +38395 e3074e94fb755e0d10affec3252a33a5fab3660e legacy-trunk +38396 6585127744681515121bb21fb3a3abbe5c1319d8 legacy-trunk +38397 9b4e318d6c72674edba9e176d959f23f1c1f5cd2 release24-maint +38398 6c90cb766e6ba40e23ed24a3ca93a9fbd85c6190 legacy-trunk +38399 88c29e51b029a18c292d28488ecb6bb7faa6d6bb release24-maint +38400 5fd5065163614ddfb2b20d5b36c813aae5f5ae06 legacy-trunk +38401 804c5673643e6ef5038eef2c2977f68f05424d9f legacy-trunk +38402 a4225cdc2047fd0d62a78bc722febd82a19ee4fc legacy-trunk +38403 f430718f8b430e555195052e361ceccfb556a005 legacy-trunk +38404 f0134232bd84db33287b1cdadb7de2c2be0b6ed4 legacy-trunk +38405 0be17259aac886c5c5d4b83728d3f0e1d14d482e release22-maint +38406 737649a6c935c9f0b08f56cc91b1b053da20399d release23-maint +38407 b846dd1b97510ae923baff8c08671c403c5d6acc release24-maint +38408 1c072615e5b86e36dfc944ba74310cc098ee0863 legacy-trunk +38409 cd74321ecdc47a713158b65efbd0c280d39bcb48 release23-maint +38410 69ed7e912b3d2970161e873857b0e9b45de6b4ec release24-maint +38411 ccf6272eedf484c574968a1622068d1db5ddd928 legacy-trunk +38412 1b78fc296fc895889a9df2b17e18d7fd6f799955 release24-maint +38413 c68be8659075bbc99ba885e757f61f71e967f795 legacy-trunk +38414 3d00b64255057ecc995708a00344f718cbd36ef4 legacy-trunk +38415 3d99adefbf3c050d56518ca914bbe6f70e2e47c4 release24-maint +38416 320c7643f8e9ef9934c4068be3b13e45e18531fe release24-maint +38417 4174f978e564732d4ea7e9a6b80950dc9bec0f44 legacy-trunk +38418 37b2f11c1a005f71dce9257c756ea63f2f166389 legacy-trunk +38419 8259ff3ee4936127a107c7a45461a22d3441313e legacy-trunk +38420 ca91799cecba0134bc39f8d25342893a2cbe956e legacy-trunk +38421 9ee99a35568d01fa8baf62a3f0e2d68f0502466e legacy-trunk +38422 46572442537009e37834f151a84753e0e61e3a89 release24-maint +38423 7e5103b4b289d7aba89b2efe95551bf0232345bf legacy-trunk +38424 f24117a3628aade603b018c6b61530e4766a0fb2 legacy-trunk +38425 9d66fba78444f1b217f664125dd1074033b11407 legacy-trunk +38426 7c8f3378f6f61aee9a74a7451e16a5e3a735ae1d release23-maint +38427 835b645a168f74c01a658787612cb2408f6fd2f5 legacy-trunk +38428 1c2943f95468639603ba0aff32c3e2b671d4b380 release23-maint +38429 6314e94d0d35d97ba2db83a573332a36676b52d1 release23-maint +38430 6858c24840108213102b0aeb60b90999487431c4 release24-maint +38431 028f92e44b48147fbf34576497160fc7fca9ffc1 legacy-trunk +38432 a24e70f4684b1d0bf69b90125e89c255ff7a5c2b legacy-trunk +38433 cd04f2d18a6fccf918240f880ba3058c88cf690a legacy-trunk +38434 c878bd01b81a16347f66a60c649d709d43b150ed legacy-trunk +38435 93f2665ead5e2dcdec1a069db7b1585cee3e5b6b release23-maint +38436 6a2440d05f50c3272e673f820764f5cd2b1e67ac release23-maint +38437 3c144a3c911a7be1bb49a3428dfac1f03c066b73 release23-maint +38438 e61aa86215bca79783fc121e98211b9ecd138b4c release23-maint +38439 bb7f36ac9f3a8788971e6e2e60f83edbe973b24a release24-maint +38440 29e6bd708fe75d3640f2a364e3d17d42899b4bde legacy-trunk +38441 4040aa216b8ab16fc09cc48d0f6c33adc7a7d794 legacy-trunk +38442 7a1277fad04e92657fc9783849e20b3b5600088a legacy-trunk +38443 f77966da6de5dbc2c8017fc787bb853607e9f5e3 release23-maint +38444 891c31dada4eb92511bbff1fec7780e3f31e27b7 release23-maint +38445 705b7fb90056caefc6b4de6a0226118dbcf3059f release23-maint +38446 37b6dd38856dde38842189ea3c5f902e97f463a5 release23-maint +38446 d228509424172f977edad4f7860a9c747cd655c8 release23-maint +38448 ff3ca656c281debfd360f37d0202f53d131c4c88 release24-maint +38449 89b8ccf14c0c015ee9c67973446d5861b9ad80c3 legacy-trunk +38450 9c66ab54c1ecff9ebdee601573b531e73f3f9f9f legacy-trunk +38451 e67b587fed779c211338f1859f2e039821f2c9af legacy-trunk +38452 3c172c826eed364d3c9f2c982487aa4d0c916f7e legacy-trunk +38453 19327db75d1c92e36c361bd1192b1ef5457599af release24-maint +38454 369e8e71ea3391678aadc084e2688a144fdbcdf6 legacy-trunk +38455 4545a154fac1583be41bc798882bc0e2bb6112f4 legacy-trunk +38456 3fdfbcb40130ce3a543d5e97cc09e460701a49a0 legacy-trunk +38457 77fa30e7f12b06d36c68e0ec3508857c6633997c release24-maint +38458 607c48b5efd7261550abd219f91ea9b6b720f4f4 legacy-trunk +38459 5c2608504967a2a1784c3c6d1433ebcc8dd35403 legacy-trunk +38460 ca7c18ef8bdc102cb64845258c1630f0fbf726b5 legacy-trunk +38461 cb47d622aa1e2fc119fcadcb49db3192ea23ac8d release24-maint +38462 0a6e779d347d6f175e29dccc07cc61071fd0c985 legacy-trunk +38463 86ab3a75ff086b96e4d7fab1cca26c6150a4bc74 release24-maint +38464 b94f2247388e92bd0e9a1737ee000cafc47e1335 legacy-trunk +38465 9f183a258bed0ee9f62b3a4053f26082b77446d8 legacy-trunk +38466 7e7e86f45255a9594820fade6bf79dd4fed4f797 release24-maint +38467 e9ec2ce340fdc4420d361f5382ebbfc151093bd7 legacy-trunk +38468 70cb0c3fe4a7475e2f9e9724e4cb349afecdda0d legacy-trunk +38469 a899d690f264074feb5a0be3e4ef20e7d2bda500 legacy-trunk +38470 ff3def77b1295f332698c6a2381a0bb19afcc611 legacy-trunk +38471 1ae2c3b66e57a34637f9e483aeb74126b6f72a03 legacy-trunk +38472 fa52f1ffc16115575069310895c0d25df9c86c6f legacy-trunk +38473 376a71f8979ba1d563c8d9ac8561bfa03216b7e4 legacy-trunk +38474 32b89606f0cda17ae64ecca645e1e3b147f764fe release24-maint +38475 7f7c3dfba985620c6c4900177e129d472ae39008 release24-maint +38476 1a98983e59630dcc0aee80390ccc31694e1ac9f2 legacy-trunk +38477 7fba5ccc961e14ad8f13b30eae7569252bcf46b0 legacy-trunk +38478 67937a3852fe4482ed36c9cec089c2f873d9cdc0 release24-maint +38479 5e7aded3251ed2bed9af5df3efe35643b3126639 legacy-trunk +38480 d804a50a20ab5279e708ecc28f22e620b0860957 legacy-trunk +38481 8098c7c270971e2d2a320b5bb6990e9f05ff980c release24-maint +38482 24a333741cec99a09c9e8e674572c680e51b8c56 release24-maint +38483 7dae1a81ced83805f2868dfb647fffd1de318f0f legacy-trunk +38484 77703ed543a10f2d1aaa2cb883895bcb031ecade legacy-trunk +38485 d439c748b45451cdb4762738ad90adf79a27bd3c release24-maint +38486 8b4dd2c1c2a063f03b700a7488e4f97fd079fe90 legacy-trunk +38487 4b1207cb01ea66fcc724fb657ce6cf5b0336b6d4 legacy-trunk +38488 813030e4d7b0a1dacde421a4639e6b2dd8cdf6b5 release24-maint +38489 c60fde8b0106b09892c54424db6eaffc37a1b7d9 legacy-trunk +38490 7c5732652a23cbd71e9bf6dca8b5ce573009d3ea legacy-trunk +38491 618cf24c329f99fd5b017bb3b07ca31abb3c9a87 legacy-trunk +38492 07cf1a1640da412349df47077c8b1253bc2313e9 legacy-trunk +38493 a4d13974f6eb7c4df90104102025b4e3b40dbea7 legacy-trunk +38494 ac6dfc67c77ff6d1d8aca61c139f6abc6f18d940 legacy-trunk +38495 a36c5fd30e2127ae12dd539f6694787e93a1f0e1 release24-maint +38496 9f02276d54cb4ec32ec39a528214b9995f2360c6 legacy-trunk +38497 0386cc1ee964e4d4878427ee3aafc787cf2e1e05 ast-branch +38498 e0f4eb64d00391e3c46b5f289058b29ff2fcacec ast-branch +38499 2676e05c01f21aa85ce1cbe5c7d5eb7edd0885d6 release24-maint +38500 c99ae8635f3b54db883904d3abcd730f128b8bf6 legacy-trunk +38501 0dd146fed9dda3ce3fb9acf951ed831216513598 legacy-trunk +38502 556f6f1056a8f6d5d03a28ebff4bc33f97453e7b legacy-trunk +38503 1edea4c2b011b53afbbb53c93c402029b329cc47 legacy-trunk +38504 516bb8fd75b4bd57981acf1a77fcce33178bb0fd legacy-trunk +38505 76c9ab85f5a887452467fb21532e4cd11ff2fa33 legacy-trunk +38506 5fde17b3547254baba64999d21019e64299ce5e1 legacy-trunk +38507 c5a498c10723598b9b4f1974c6aefce9a16e59d9 legacy-trunk +38508 fcacf9d4b8f0faeb7562f96ce868b181584f573c legacy-trunk +38509 d259984962065fe58b876f455820eddd0c04635c legacy-trunk +38510 3e7a20c297a60e6e7dde501bafc9f9e42e3db72a release24-maint +38511 080d8cfed9d4a7a54d5ccbeec7e0ac5602b2be1c legacy-trunk +38512 660419bdb4aef9bb5de285c765ae6dee142f0c97 legacy-trunk +38513 416b534e9cc968effebcaf1755be9e3cfe382f5d legacy-trunk +38514 77b57087fe45db247178f0e235e426f7e4d28f91 legacy-trunk +38515 4329a1a00469d163ca584b7e0803117b3e20df59 ast-branch +38516 89cf25e3679ae99a4902bac05015beb862777b70 ast-branch +38517 d1b35af292630b6097cf6b3ba20305dc1eddebc0 legacy-trunk +38518 a2b7cb73d9b1d70ebb48353d64ccecc82357d954 release24-maint +38519 5f26298811b7142a6f7308678d6d72bff86c1455 legacy-trunk +38520 3d0bb3b05d39f0bd14d9f8c69e17751841d474bf legacy-trunk +38521 1176f1bb4e1aea2ff5182720c46abbf60c1f1ac1 legacy-trunk +38522 4a0c202ee789a373f647dd00934864ee2979b277 legacy-trunk +38523 d3ce7a94616e917cfedbe0036b4f10fb1cb806f9 legacy-trunk +38524 636d6d433b62637aed4efb18b3071bd4312d7624 legacy-trunk +38525 fd6d359ca266221b7aef9a63266df5aeef22372e legacy-trunk +38526 b5a25c56a8523d7f948ab06693f96c910c85a169 release24-maint +38527 6050ae842c8f1c88b9aaa235625ec4d83d9d5bc5 legacy-trunk +38528 c505cbb26cedcd050f46d0b7e51b5b40fbc45951 release24-maint +38529 fa3cdd4f9cd017a7eed97e157f24c8d7e679a98e legacy-trunk +38530 b4315e67edf510b92f6bb23e9954a236a4c3c648 legacy-trunk +38531 a9f161e36bf9041ee0da869e19f5a8e545b1e549 legacy-trunk +38532 d48fa0afdcbafd50e1433921b57dc829ec6ed443 legacy-trunk +38533 13a950a3624bcaa2b4d20b0d4d4d9f5966f2d3ff legacy-trunk +38534 11fcdbb279de92aefad893f6d621712f987bb7bc legacy-trunk +38535 d9927a65f5f92e276d92286e6c43d931c1116dd8 release24-maint +38536 cac31b4b5e78d4d25789da3505381e0dadf83f48 legacy-trunk +38537 861be9cd04d7ecd48fc3ec40cf7e4ceae8465090 release24-maint +38538 4aafb1c9a70d900e871eee3134077571b15cf87a legacy-trunk +38539 e48b5a61d80bd6ebd55fa8d1ffbfb97b62bc2e1f release24-maint +38540 a6d2315109a4f2ac9abf6db84517bca93225790e legacy-trunk +38541 2fd9b85ba65fdefcd5f2ff0d8d0cfd51cf4eac18 release24-maint +38542 e6422525c24031895cd4911a7990ea98ed0b40bb legacy-trunk +38543 75564530f50c1efb405dfb927668cfae6792fe02 release24-maint +38544 918bc6d56d26f66125ff54f6924a51cc7179c3f6 legacy-trunk +38545 9fa768a98c5ca361b808c262cba6f0e8721fc918 legacy-trunk +38546 b40586129bb0872b5e0c04bc11745e279006ee69 legacy-trunk +38547 9d608419cdf8d536cee9455d21af3a3ee949e54a legacy-trunk +38548 3785610ff76301f4df99b61dceef8616a8f0beeb legacy-trunk +38549 46300b1aa2f6825fdfc412d370987a663ec8a1f8 release24-maint +38550 4812f6a7f7355683b22b62ac73ab0ca5c81718ec legacy-trunk +38551 8c3563d08c623dea8cbfc79c2958a782fb98679c legacy-trunk +38552 9b3a2c4302aac06e09e9ae856fa42e321fe71ae0 release24-maint +38553 0d4108d3a3a8b77dff58e1351b0b16c34fd570e0 release24-maint +38554 4c66c17c4b2809b344e5c7f4ed29470416d58458 legacy-trunk +38555 db7a8310b19a94d617a95af0fe47519146ffadb3 legacy-trunk +38556 085bc27f92b7519af336a83d634331f68086fd33 legacy-trunk +38557 00e47eb136b2c095151bcb2574d37111f30efffe legacy-trunk +38558 7a1a8ec6dc5344c0d023b0387a67a2d9e6fb8f34 release24-maint +38559 8f0456425715815101d9014650208c6b4222155a legacy-trunk +38560 4abf21be17d354195c09a37330913ea7a37071df release24-maint +38561 e9ffad6d88228ec83dd79ee4d0d9e139321db2c2 legacy-trunk +38562 51afb6e7747408e6fe970e077f1ab1ed77b8b221 legacy-trunk +38563 81982584c61bc56246f59e6b625f76aa9155a8c9 release24-maint +38564 481397683eacef0e9b3a81a850dff496308f2ddb legacy-trunk +38565 ed6ec000a138897e5c17e65b7c58543cd47885e2 release24-maint +38566 903045a70c3eb6045bd8f0aebcc6fc0c5e286a3f release24-maint +38567 0c40803e5e4d408e2c7f172fba1c62fce9e8fc08 legacy-trunk +38568 f87a8d0df1252bb91548e1d4bb1ec0bd69bc3696 release24-maint +38569 49d7bb2e96d2f5cbccea1e7432730e943e30ee7f legacy-trunk +38570 ae061fc6318dce0729f3d95f42735379ec1842e1 legacy-trunk +38571 eac01cbcaada9bbd7bfd5503c2c054169d340eae release24-maint +38572 1ac24e9183e5177d6082a76ce5f3fa827f0b9baa legacy-trunk +38573 4ea9de01d31156da7277f2aa78f6f91091cc56e1 release24-maint +38574 c2b591d7f29efdf9f3bce560f1cf14e6f8b42d2f release24-maint +38575 0725f0d5a5c7588af09550d4d705e3488298816d legacy-trunk +38576 817e22506fa8f9c96ce5ce9b8c93ee503bed07ee legacy-trunk +38577 604ff98915ec818546b2dacebf01f26306d23421 legacy-trunk +38578 9f078d7668044477424725644a9c1ccabf2fc2a5 legacy-trunk +38579 c05178f41db390785b32713d93666ac75c0b9479 legacy-trunk +38580 a0d3f773543db281a7646487e91cd327f85e4719 legacy-trunk +38581 79302e50910eece20f2140650b422f3e69c8aa0b legacy-trunk +38582 a91a48c9de00c9aba9f2a66aebbd8325860c2a11 release24-maint +38583 41a9ca866038203644bafaa64208a119151636f9 release24-maint +38584 84859b4a62c6ecde56651801cf54265989dd3614 legacy-trunk +38585 5d0d76d7b31fd882e1b1e27e02bda84daa0e8060 release24-maint +38586 1309f69b4dbbde8b7c570651319d47a54689eb9e legacy-trunk +38587 7de76f34b3da2f09685a1f4f91dd8e57e2b73ab5 legacy-trunk +38588 f4da46b94570892235b1063ef89e3b84c92132f4 ast-branch +38589 95b66d9db2ee659a0c2a299d3c414a562e9600ca ast-branch +38590 3098efe42a0f2086c44058479439e540686b5f08 legacy-trunk +38591 7d2c8daa403b619cff70c8f570c68c390501e0f5 legacy-trunk +38592 d687a8a09a72d74d648d4b890ce67baa7a161587 legacy-trunk +38593 0d44d9071e97fbc10639ca645f4f337b1e1eca99 release24-maint +38594 f1fa7bb2bf9990f40ca09babde7348a3b0941681 release24-maint +38595 697b9eec55da82c4d7a0b3d6d965566abe2d9a43 legacy-trunk +38596 d5449f1f840ecd4e2652dd2624e89b34f8d50be1 release24-maint +38597 f29012181cf017b8fba5fb8e79aa2a25f247302f legacy-trunk +38598 e5d19031a295d77bd8600a4529efa856c43f9536 release24-maint +38599 6b6875edf607e32b588cfedede081cfbe2ce0488 release24-maint +38600 84713d4b19af136e4a4a3f56c05f80752e68b5e0 legacy-trunk +38601 44f148bfc6b88175ab67043e66efce9fcf5f2b90 release24-maint +38602 ddc2276c247e686f8f1a08481becfa6fabf3cc0a legacy-trunk +38603 516f155215984db3b6a494c487ec13b51d15d625 legacy-trunk +38604 b5433d3c6dc88476f22809fbac48d43155c935e1 release24-maint +38605 21e6577ff074e116df6a73232e8da9b63bde6181 legacy-trunk +38606 b122fd93a5b516e0190dfb362e7d0059330d0e97 release24-maint +38607 16cef09a8342daccafcb85819a2dbfe17141493b release24-maint +38608 9906e4da086fdccf44c7efe53956453a3d2c3c67 legacy-trunk +38609 52b651a9750d5db34ca021ea4c3ae7c646156909 release24-maint +38610 430356839d28591e622fa826fe36d860ab8378ec legacy-trunk +38611 2c73367f54eeec8962635a0d1664004f31801be1 legacy-trunk +38612 0349257e1ed52e1f792f860572a918bf76368705 release24-maint +38613 b1427cff2f83211b70aca32c1498a53c8945f3c8 release24-maint +38614 cfae4b1206f8ac9d50b0b4f762e67541230da543 release24-maint +38614 1195f9ba3439097cc5b5a367e3ae1b43f157b264 release24-maint +38616 0be05eba116d8184d86ea1c32988331e64beba24 legacy-trunk +38617 ea024a4b29b6d1112f6b917fdfdf25dfc580369d release24-maint +38618 1afefcf14f0638c3a55936913dd1e696df464db5 legacy-trunk +38619 e83309d43a82e99a7501b4987b2603207c490331 legacy-trunk +38620 d355da1d7c8fd19bb207db2caa3c78062f748290 legacy-trunk +38621 65e8aacb0e94b16239ced82b42113036c398bfef legacy-trunk +38622 81b5a13fa38a2490273da6611c0c0dedbee8b5b1 legacy-trunk +38623 8d8ba66780ed778502ce38b6674aee3fb1047aa1 release24-maint +38624 453d89eab73936fb915f989579c4ab2b2c3f2af7 legacy-trunk +38625 0c82a7ef9554dad9fac879288e0a77e7259e63f2 release24-maint +38626 3bb759498767d690fe6f2c29cbbdcc23825e1538 legacy-trunk +38627 fdf2f8fad8d45736386ca38569c007c82ba96306 release24-maint +38628 6f9b36fc111c9afdad42f985c3138fc2f82fa982 release24-maint +38629 b8d905ca9e999966d677ae6454764afba3a60625 legacy-trunk +38630 3d97eb3b7cecaff46fdee269005f67eda48c8e63 legacy-trunk +38631 72b9eb74226307bf2abb6c039d2b69a2da6d0024 legacy-trunk +38632 3fa34759548720b6f9626fc3a979e0a54797ea1b legacy-trunk +38633 5180cfcc87bfe72640e5286d03b13dcd67012301 release24-maint +38634 dfa097ccbc49da453706115eb7a93d432622db81 release24-maint +38635 218a76275932ed68d2a67978f28842f9bf967614 legacy-trunk +38636 679c161156131c9d4572a076710184d74574e82d legacy-trunk +38637 962800ee30ef5f42a325ea62be603cc4f50d531f release24-maint +38638 04baa644ff003391debfdc2a67a027dba4295ae1 legacy-trunk +38639 11b4350b58792da9f78176560c53c36c900696b0 release24-maint +38640 e5278331d9a9058fada7a4b4a106c2c3ecc5d872 legacy-trunk +38641 6f37d116026109928347a70b6df7920071530bc8 release24-maint +38642 7f7cbdb2c61137dacc4bb6eff6c481811e429c79 release24-maint +38643 5f893a4cde6fd8d6dde8b3382877137732ab1357 legacy-trunk +38644 50509ee96364c7e862b6c037ebfe428e235eacf8 legacy-trunk +38645 313ed2817d6809e33d447b9c0887a158e73f6f2c legacy-trunk +38646 4db5ea9577babdc7cb84bd94cc875f5e08d9f56f release24-maint +38647 07745166f5713ba56c1b8ae812b9af4fbc63888e legacy-trunk +38648 fcb507414c4148f41bea1e9bd9068a6e02d77f03 release24-maint +38649 23ca2630657c48509c35b6b3845a6b04b40b6727 legacy-trunk +38650 6a649816124a7ce45a5a13c69897ac4195c14a75 release24-maint +38651 bc159296d2535696d040851ad38b8e4c029f6edf ast-branch +38652 511e7a93a1e9f105e6422caa9355285b685f3a89 release24-maint +38653 84eb5e1855476166bf29ec7d0fb9fc9801faf7b0 release24-maint +38653 333cf303543b680ec5e3fdf7e8c9661f9488a50e release24-maint +38655 beb1cb785e1d5406cb035f52d52b4a34ecc67d81 legacy-trunk +38656 7d7404a6a5ea3d2437716cef19cb9a16bc6243f2 release24-maint +38657 719eb102ea44884ffb9962cee45a0b5b501997f1 legacy-trunk +38658 fb39f4eeaea476275c0184a70705d8c0adc3d778 legacy-trunk +38659 2ee575b9b60e5d2a950aad3d44b78ab6fd5b9912 legacy-trunk +38660 fde5a1c6a497e5456d6cf755f13934a801c9ab63 legacy-trunk +38661 9d80e63004cdc6c51978b22abcf029ec35d916b2 release24-maint +38662 a305fedca1bfff534b6b67658dd822472926ce11 release24-maint +38663 04fa132c9023dec04ae81cc3690607d64dceda51 release24-maint +38664 336fea406fcf06b88f3ffeab7153fc751c2e14bd release24-maint +38665 4bce2e50961e1cb80ddfb92f8a72d1be414ef62b legacy-trunk +38666 997b255e1ccc88bef9180cab9048732776971547 release24-maint +38667 76300c5fbcec8f5878f5f2b3b7126ebbafca3609 legacy-trunk +38668 fdee87b7037a3b6003ec82e20d0bba2e1cee8ede legacy-trunk +38669 0a6a4ccf5ccf9fdd0a9b637e9894d43f03aed6b6 legacy-trunk +38670 23e3dfc0c647a8f50eb6ac1945e2e55e92f7c30d legacy-trunk +38671 2b38ed66c67ff769e0f44d6d2d944b3de965f54b legacy-trunk +38672 dc6f315f1f7f15f96b95d34e999f50ac3ab55005 legacy-trunk +38673 13c1c3316c6fdee42a4deade6e44d9155597ba36 ast-branch +38674 cf4302c21e003db8a73cf71e3226e3ef7c2363e7 ast-branch +38675 6d1ee9db1543ef24006c7d2f72dc6d485e4b07e8 ast-branch +38676 9f454af17f7a38fb72650069130d9d134a9b9038 legacy-trunk +38677 3e2ee219727d100d62cfb137410b5047f9af1d71 legacy-trunk +38678 b14c8e6310e712e756dc23649752a252fc7c4be0 legacy-trunk +38679 9aea9f8bdb2c4781d9b45d56c6447fc2f733b492 ast-branch +38680 107e1e8c8fc7e5a0d143bb4234ff315fe0bb87f7 legacy-trunk +38681 23b3e7906e0f638fa8f92cbc2412c566de1da28f release24-maint +38682 c06c90bea7db07039fe2d6c9cab2e401909bddf5 release23-maint +38683 bbb60e269ce8dc5087cbb8e43dfce6710c4790e9 legacy-trunk +38684 3da21fdc2ee722355f0627dfee8ae20efdb23087 legacy-trunk +38685 f3f99acae59ff870fa1d043a4cc2b03713db4f16 legacy-trunk +38686 4c13b0146b3f6bb4246935a753b6285093835727 legacy-trunk +38687 6d2000baf3de9aaeb468d1afe1b674e090c9afd6 legacy-trunk +38688 f13f2cbdf4de29a5a6999ca00b37c6c6f2bce4d0 legacy-trunk +38689 0852d196b59043efd91a3c4e428f21414abbb349 legacy-trunk +38690 7933531d02b462142320b53addeb3292aaaeed74 legacy-trunk +38691 69e10e6357bd76f6cf59aa6e7528d93d15e26e0d legacy-trunk +38692 cebfbab017a6e6335029363dee4c2451b92ae669 legacy-trunk +38693 718b0b5a6419f8e5a801d39b65ab1ce420315cd5 legacy-trunk +38694 99c16e44e5d46f746c586678dd0588d0764c1ca5 legacy-trunk +38695 d55deae4310dc23d1a79812fd05c22b01a2db6ab legacy-trunk +38696 8f21ec3274f1c469bb16f83e01b6f95e177b3487 ast-branch +38697 b8ff9bc023e6759c7faf74dd5be53ad1241496f2 legacy-trunk +38698 4b9df4856f37a6306577be5660e90456450345b9 legacy-trunk +38699 2380f9d1ebab95ed4b0a49ce829dafb0869d4ef4 legacy-trunk +38700 5547f90301098345d2f9955e1bad1271129ffc8c ast-branch +38701 91523caee183905e646d06f9fb49d0d41e2f83a1 ast-branch +38702 e0f519853a9f2808610f93c0e08aa767dbde2f46 ast-branch +38703 57c6a6a802a083167cebb21d2f62ee5bc9e92bbc legacy-trunk +38704 3c7b19689479d8ac5d421aff21181f94da1ff206 legacy-trunk +38705 8fc8e7a6071c50416903c85263a55aafea130717 legacy-trunk +38706 49e30c6c91c8ce5afbfaeb2fc437a34ebb700363 legacy-trunk +38707 b016236dfbd9dd02cbe4cc3e45445412846f18c0 legacy-trunk +38708 26f3272d9e112ea1eaac30d63b428c7645048c14 release24-maint +38709 a412638950a13ad340da97a64bba7010399986b7 legacy-trunk +38710 721e60f454f3c890654c99c7d303527f78c9772a release24-maint +38711 2956df8e0a4045c0ff13c6dea42d2afbdcac1770 legacy-trunk +38712 07a4e8d8eb692212d90dd40324e911b09801799e legacy-trunk +38713 4eaab38566c94ff849f400b9cd68a1749abd7ebd legacy-trunk +38714 01ba3b40431f29fed629e7a210185062fa4018c4 ast-branch +38715 f1c6303321d70bc35ef5df7dadc65c27ec05b858 ast-branch +38716 d69fde40c719c95c6d50584b0607a972c81bcef9 ast-branch +38717 7611df21a59009d5340c1716ba4125799aba9fc9 ast-branch +38718 93caa7decee3606509341cbc31ac5ae40c6ed20f ast-branch +38719 ab81c83a9ac6ccaaac4e27ed16d836a8f3fa266b release24-maint +38720 653cc09fd9310162318daad96501be0b78aeb996 legacy-trunk +38721 47c5803aab4581b9877a10fbdb89eab38e34d4e3 legacy-trunk +38722 ec87a11640d002bc26f0e0a4c44c1748f277d861 release24-maint +38723 f92d845f8703334d88fa158be0d7bdbf29b01b3b legacy-trunk +38724 a50ffe65911b0d49880a6a1058ef05835e9dd28c release24-maint +38725 00ffdbfcd5a9278692ee6e71152d556bfa0e2a96 legacy-trunk +38726 5caf80f55c8638d8f9550747daa6645aaa8197a1 release24-maint +38727 985dd7f0642081ea94a34f994e9add9f2f1d3002 release24-maint +38728 4f0838b68bbbf1de29d766b3de3625c29691ac5e legacy-trunk +38729 b72df8aee56da8f9cd276e86cdb03ee9add0f09a legacy-trunk +38730 28892e6512ba6b9b73197606f3f2d8f4d98238f7 release24-maint +38731 33a9e40a58d52a020c2b52868079489532583a85 release24-maint +38732 ad2dd884137ff57038d4e05369c128016ab6c176 release24-maint +38733 bba039f2e0529b16a3ed5628b12bcb15cccf82ad release24-maint +38734 7cfda989886396831f52e3a58250b4eafd8cab86 legacy-trunk +38735 3bcdd446a13b9cb79d28c6e7e8d4d3b2c8ba9868 legacy-trunk +38736 306f7d4db5efccaf1784e7fc32d43d8cdbc75fb7 release24-maint +38737 a6c586266dea58fbc15a2125d8deb7debbd41b94 legacy-trunk +38738 7e2d8e17cf14a411b1e560548d780dcef2df38c6 legacy-trunk +38739 30b02c7ef8ba6702ebfa6e6b2169b5d3cd5385e9 release24-maint +38739 f9054d235870029afa33ef945bca7ece99616c10 release24-maint +38741 f31423c495d67f0243e134a5c75992e58af3f3d9 legacy-trunk +38742 de121899d021616340bf8674097b57cd1a3de730 legacy-trunk +38743 5dda1f9e62a736cfb5d0bb010a405c10bdd3bfc3 legacy-trunk +38744 0658e6effac7048f1e951e76dbb91c20782fafd1 legacy-trunk +38745 cd2c044f699d7c8ccef5116c814aab1bbb17e6a4 legacy-trunk +38746 13d5caa1e9d02aa999703e28d3375be8c6009658 legacy-trunk +38747 51ba8ce8d92afdf03b68a81102dcffc2ab275b42 release24-maint +38748 58f3f0d045f545adb9ac3f608efb7641aa434e45 legacy-trunk +38749 84453050847567f801729835f1bf5b300187cf34 release24-maint +38750 aef713de7a23c6451188ceda9046bc9e749abbf3 release24-maint +38751 ead5e73abb53c98f3c68a9d3b63d57c96b37fd4a release24-maint +38752 63c5d6ce07634d662e14e877d2bbd5dfb6274d98 legacy-trunk +38753 7e1a3133fff2ea592f3281997a682518f390e88b release24-maint +38754 6aff22600e15aa366af8e6a910011c0eb63fb1d5 release24-maint +38755 11fd2637e5bb744e3fddfd40a4dadba2da237dcc release24-maint +38756 eb6c2915badd35c348eb71a7ddc3ced590cf5739 release24-maint +38757 a9511c15124be5a58032ebefc17db50aaaab0a09 release24-maint +38758 2ea3d6915204103d99ca0dd0575a03e8134f2e94 legacy-trunk +38759 3936cd7f16f255f11c9c24389afd7439dc3ac13b legacy-trunk +38760 b85e810460efc5b42771a7585e75cb8744312ba2 release24-maint +38761 fe531b5dcfd6092b144400438f3a4eda7b59fc21 ast-branch +38762 80cc44eabdee259a0075018c26a63dd5fbaeb7ca ast-branch +38763 6b21dc9438ad5c1ef999627f8f8e542e9c6affd7 ast-branch +38764 ca4d8b4fbb05db31069a6e8075a1271199c8c159 ast-branch +38765 5c1ebb5ae52143968143839af7df913c946b03a4 ast-branch +38766 5e8c8cb11e5bdc2f3fb71cc76aba0f14672a68dc legacy-trunk +38767 ab5822f7515a5fec572f032ce991b3236cb22adb release24-maint +38768 71fd7ee4b7f50bc933f7114081af932de88abd2e legacy-trunk +38769 34cdfc5dd7ea34e5766d8898e24e01b1a8173c25 legacy-trunk +38770 b49d39111c486ced8391c79ca35f285aec8e16e7 legacy-trunk +38771 5535ce0ff7f9f6f5de98014268e00b575f880f02 legacy-trunk +38772 da460841b63cb83d617badf88fbdb12d8dadac9f release24-maint +38773 bc9fbc23cd4a59918db1271b0864d40b4dd956a3 legacy-trunk +38774 b649973d0962eb07b589bef3425fae63fdd99435 legacy-trunk +38775 6dd2d136e84661c07838d42339341405e9b2c455 legacy-trunk +38776 e762fea78cb2363be1635ee746fea2f8c914e54b legacy-trunk +38777 0143d990d60cc60120e46b4a11307a973cbc6c0c legacy-trunk +38778 18dc9158160d5b787947a30c76058f66033e17a3 legacy-trunk +38779 5a522225c4db359fb7d58385e34dc2c33609dc17 release24-maint +38780 20b3c723502ad4b39f38381b8e44c0becb1d8cdd legacy-trunk +38781 c2a9c3a184776fc6142656e500b23ce723cfa2d7 release24-maint +38782 9a7f46c4277314f74d59f6bc124dfa47b695d91c legacy-trunk +38783 b996747c08b689150206541db52c839a1e1bb49b release24-maint +38784 af5d48014b3e636586a866c5d51807b17a12f72e legacy-trunk +38785 5bc91bb244b1902ff431f715cbfb6b7f40b64364 legacy-trunk +38786 64bc5a922f5791b4b875cec0dae7b1857a757746 legacy-trunk +38787 143cda5a93481fdf0732ef4cc60184f694f0255e legacy-trunk +38788 03613097b9cb345410f547f460b0556b637000be legacy-trunk +38789 79201f820ed04a90daacdcad4616f5af09d8e2b2 legacy-trunk +38790 ad6aa2eecb569b145263ee9d10bb3a94cf283fbc legacy-trunk +38791 076a7c7fe28b810b5000059ed80c3d3b933f95e8 legacy-trunk +38792 7c2780c9e51bdf33a5eb1a9bf83546e507b2313d legacy-trunk +38793 862ebb621355109258ab9494ee717914272dd6a6 legacy-trunk +38794 9e659cb727ea68c9a5439e8c79667515d92b2008 legacy-trunk +38795 44468efb525ed5786db98827d21d9ae674c91a91 legacy-trunk +38796 48c71ff385782cc227253e2d0ce85c0b43e6da3b legacy-trunk +38797 1924a07f7f23af7e9bc9cb1510457f7906a38c1f legacy-trunk +38798 433d7378dfc2fc23100f0a6e91b1a3b7a90c1499 legacy-trunk +38799 61ec8b795641c4d2ea5432f3cbca27edc1817d76 legacy-trunk +38800 3bc28f63517a4d03c34605c03035dfeb1e61f5ed release24-maint +38801 d52074d894df2929487690dac26261e3446a6082 legacy-trunk +38802 fad1e8e09456d0d51eecc4956e404155e7d5a3f5 legacy-trunk +38803 fbcb1da480dd4b1af2b17d771ed7a51975c5e175 release24-maint +38804 1ac914d3bdc3948d345e56bb78c994cd25dceabd legacy-trunk +38805 dad2b62049745559ef8d6801bc5f8a3314ae8274 release24-maint +38806 34f9b2adae2c6bfb959adae384a687a02c287ce3 legacy-trunk +38807 38b6548369fae85c2e98f075cf209b7d7b4ccf7b legacy-trunk +38808 cd3b952708af0f9abe8809b6949408cd0caa0f0c ast-branch +38809 4e629ebd0e3e57b0f79747d096fd23bfe4498070 legacy-trunk +38810 020ed671aa6215ea91162fe5671f4da7f2d91e26 release24-maint +38811 d7a2117fca425350e288e151671365402bfb4dab ast-branch +38812 c60729a579325f431fd435db2fa042fb622752bc ast-branch +38813 8e6cd500c8fb5a540807bf733432e0473858bcf2 legacy-trunk +38814 fc442c2eb0cf6dbd8ada1db15e17bfdd867e35a8 legacy-trunk +38815 986d46c4faeb229098c7628e90c0e78a633f709a ast-branch +38816 c8afdd92715c3277514377e32f10d7d451942015 ast-branch +38817 60830ad6275e2c800e6677a447ebb969a81bf22f release24-maint +38818 a99ee250e10c1c5633b8c9d0737b73241324228e ast-branch +38819 30f37c0e159256c9c83661cfc539d11702bb64fd ast-branch +38820 a96b501498a808f022ceb83f0a6a602e93d520c7 ast-branch +38821 5c60cbb65330cfaa578b0544e9c1d318dd1d4b4f legacy-trunk +38822 7267fc40adac153b783e373720b1b838887c4f8c legacy-trunk +38823 d435d214a5924145207cd5b4122521cea2ed46a8 release24-maint +38824 87719ae9288cedbb9983ede51bcc651bd14d3d84 legacy-trunk +38825 0f3061f49a9e89ab68f80ca8a981949cf9459005 legacy-trunk +38826 af590f622c0bc3be6fe292132eb26494941c786f ast-branch +38827 d4ffc771e9ff9688dc41624d506596e444dbde92 ast-branch +38828 b477c4d7a20c1a6820c17cb92834b0e601bb985f release24-maint +38829 c4ea17cf521115643f1e3d9264cfadab1699a5e6 release24-maint +38830 8b03b09141d287171f1e963f06d67cd87162c288 legacy-trunk +38831 a13096b8598b9a67db53602267058b7ee8a687dc legacy-trunk +38832 6bdc3426d4113f125e0bca49e0111874e55a2f81 release24-maint +38833 f9e31db6c7036036ea5bc36f4417940b943f52c8 ast-branch +38834 fbb2f3bb8cccd15f41e8960c69d1bcae9d569c19 ast-branch +38835 2804aa0438cc8d36fc3de1c89d20f9e1a53f3090 legacy-trunk +38836 ae25d45f89876354bf843256fe37fb6ed731e95c legacy-trunk +38837 67a89b43dcc723a55b8f336b63cc4c11be072c39 legacy-trunk +38838 4c8e5243ca42531e438f9b1e090245ee970a8333 legacy-trunk +38839 d34bded319aae5cfff40b9acb3cf9ead5b7d318e legacy-trunk +38840 bc123b9cef7fa969c7b0229a1f1e23ab64ba3e62 legacy-trunk +38841 c66a7fbe16cf9e51c9b11049032c564900daa5c2 legacy-trunk +38842 1331c77996409362ddc7a694614800e9b01eb47a legacy-trunk +38843 7f72109dfb4fafc78e2113a2d264ad925e88318f release24-maint +38844 d055f94d0936a690f21f1d6ea75136d76212a598 release23-maint +38845 9857daa22807b739bb05a9edc56cc2e62d93f725 release24-maint +38846 3581840c82e701b4b41da390c59eff44270ecc83 ast-branch +38847 08e20e9c76fbf3ee37d8aa1831c1b5bb6edb6919 legacy-trunk +38848 294dabcb379b51be7cc41ac231e0b12725ebe22f legacy-trunk +38849 9a1b1e1ae653fc95631347322ab4f7b59c34557d legacy-trunk +38850 49c6dced08c21f443b6a54141edf1af166b37096 ast-branch +38851 c1a8c2d7e528bdb7970f52d58048ac925e5c7ec4 legacy-trunk +38852 aaeab249c86ad327ef1272c30ff7b0548698d157 release24-maint +38853 ec97e4c370563af97d26488446695f396e608468 legacy-trunk +38854 5ccc8777cea2715796e33d26c611ab8f641411be release24-maint +38855 a5185ac1e4ec6cafc7d2e54828e7526303c3af19 ast-branch +38856 10af16583b755589cc0f4624f74b29b4030b0d6f legacy-trunk +38857 daba85ef654a49abcab0a1476db2234f3474e6c9 release24-maint +38858 c0b4de741b383dfc385da8563dc1b6b79a6101b3 release23-maint +38860 a1293ee6e1db9a94c8fae92e21e6ab5bc6384aae legacy-trunk +38861 3c679d00879ebb1b513b18ef6aeb1412cd420f77 legacy-trunk +38862 475f8adcb032940e6f66e407d15ceec42781477b release24-maint +38863 7287b41145ae376a0fcea7012217605aeb706767 legacy-trunk +38864 2c7498c2ae707fda372cd744dd5f2fda9e8d862e legacy-trunk +38865 74c12c1f3692946193584384eb73b238f7bbf9f5 legacy-trunk +38866 9fe7801fc9a4a21893a9ca46e3227e44ee15a3e9 legacy-trunk +38867 a17001f8e1b4eb411d41ca2ea5c4192bdc129fc9 legacy-trunk +38868 9c9172be1f6975ebb5b424246a17b4e941f04160 release24-maint +38869 e4e0cff16bc7e97b9742e7cc3ff5888cdc1f9946 legacy-trunk +38870 75f51961097b9d9758d041839567852608b44fb8 legacy-trunk +38871 1e7a6a5c36143e4cf69e967b63bde3c3cc3dc48b release24-maint +38872 b116339ddf2785f341170f8bd95e379fb0ba8ab7 legacy-trunk +38873 3658a7e11c148d83c08ab83f09a3b5ec0ed70795 release24-maint +38874 ae5f27446f81924753ddde1bb2a4103bff6f8604 legacy-trunk +38875 f33007864243f0960668916078e800c4ca5056c6 release24-maint +38876 9339c99a29828107a7ac93efa82f4cdcac0b54e0 legacy-trunk +38877 404088503a780296a11d2d1210733490291cffa7 legacy-trunk +38878 3767cdaa6728248caeea16e94d236854da71fe4c legacy-trunk +38879 c91e5e31c5ff1c2afbb0c7f75836d070965aea26 legacy-trunk +38880 6ba293b7115b79ed21e9c76038159bd6e072172a legacy-trunk +38881 80fb2891b33bfcb113b0c43382597295d75567d6 legacy-trunk +38882 4a33c58c319c08b86183a5ea9218c804f793b398 legacy-trunk +38883 047434acb5a919d364061a6689377e266739de3b legacy-trunk +38884 50bed678edda2d7f2082b6c836557aa20a5a12a1 legacy-trunk +38885 1ea8077693292d0170e365ac9ebb703d780f1fe7 release24-maint +38886 f6af94301ebc275193dbe049ccbab2a34a90dde6 legacy-trunk +38887 145c03a85ea8387251e0c0953387a38db6ef42d9 release24-maint +38888 93629770a93f4679d4d6a7b948232b6d26763c96 legacy-trunk +38889 86f4b1817caa69c6aa0c541439cb6e46b0661a36 legacy-trunk +38890 672e5f65172c2f169a1bd48641e3c479bc6eb839 release24-maint +38891 d4515547997666c0af8ecf2be083c4e0c6cf4fb7 release24-maint +38892 0905812df4a5f14925d5117d42b297c2eb16e246 legacy-trunk +38893 1dd8a0d644321cbd03e58af49677f52081bdcaec legacy-trunk +38894 916516981261061fe0652ec46d661e5fe3bc2164 legacy-trunk +38895 38d04ed028d1ef5aff53113a323ac8e078edfc91 legacy-trunk +38896 5e511ddef48b2db5d6b90d3bc0998587e1cd5c85 release24-maint +38897 1873e8af5a8ac2154d52af058375f6fc764a15b8 legacy-trunk +38898 3caba807204bbc880bfb5f165e4d69eb3d9f18c8 legacy-trunk +38899 0b01ee86ccfd88fbf9ff55210eaa20fbffd6223d legacy-trunk +38900 a291ad9aa6a10c0181a8a815b39677020d71cf7c release24-maint +38901 9a07f6d4816ab1cdb18f3c152c4289637a95d43b release23-maint +38902 184f10e116fff943551e5ef5afb279249b3c0456 legacy-trunk +38903 ef930cae63a8e21be52d99b274aaa20056fdddd2 legacy-trunk +38904 66e0414cdfa6ab088c29e57066fecaafb144a8cb release24-maint +38905 1699dc51a5b5769c65985edd7a8e0041eb2ba793 legacy-trunk +38906 b141d57c4fca96c01854a4d97b6a7ee767cc3472 release24-maint +38907 9854472b921ba47b17a966395884c1a14037c858 legacy-trunk +38908 ef184562e8e03de961b1876aba8e9bf6202a2e46 legacy-trunk +38909 c095888fc543c80c950c030dcf910fb3d249f9d7 release24-maint +38910 b31736f625ba7f9c75280d51531b867130d545e6 ast-branch +38911 02f13e00e2ed1303588ea8d79e7fbf9d3c133fba ast-branch +38912 8b05a4732cf361a38753e09a04ddf9ba7204196f legacy-trunk +38913 00cd350cf7bf0c62d3fe2ed1c0ecc6bbd6cbe2f9 legacy-trunk +38914 c0ead2918cf74540241cfcc1c9de3465a94ce8c1 legacy-trunk +38915 f713e8abf14e3ca623f92c9886d4fe8dc57cff40 legacy-trunk +38916 a2b2227773e7fe94b7384326c23d99a3c2d1b521 release24-maint +38917 b423b427e17e8d61b1eaf60d138f41544b5a20e9 legacy-trunk +38918 7bcabbb6b4b7ef43dadb8a33163d76d7fd092ff4 release24-maint +38919 e3ac5f0ad3e3acb9ed2cc8ed16139093f82f6a5f legacy-trunk +38920 21251e221e562f0dcec2c19859e3b9c0d41dab91 release24-maint +38921 25a0e1faa8a5ed8f091fcf1a0e6a11be4c263974 legacy-trunk +38922 fcd2c38478699f231cc8efb641320f5bb7da608f legacy-trunk +38923 1cdc0334d877c71abff12fd4d67fe999f140f2ab legacy-trunk +38924 17aa28962b85daa393b1fcbab707e361906c4991 legacy-trunk +38925 1ca7ae48a93151b45efc5ef63ecdb4a7a7636685 release24-maint +38926 52fed2d0641a5bd8efa4d78a506d7628f102b78f release24-maint +38927 8880d91cdb09383a4fff3201797743acca21b04e legacy-trunk +38928 78d0a558b093834e867d3062f15c2e4d095eef7c release24-maint +38929 65c95ad672ae8fd57de344027a66bf5f5f763a0d legacy-trunk +38930 de76b343d9c82b2b6a72e8e0bbd8ce62b5c7eb1e release24-maint +38931 44e3f21f052590ddfabc12909af5188a4cd89d8c legacy-trunk +38932 1fb768ebd90e2b2c6f5d65b15a90d4cabe40afdb legacy-trunk +38933 8e9682fd57f8ea690ca4700e8a35dfc14eab2296 legacy-trunk +38934 b74a1a5129178a61f3244857bf1c37404be01a32 release24-maint +38935 e394f7e8a0c15f8704b27cd71084767845564750 release24-maint +38936 4a02a43176555baca3045d5552a6fc70aec228d4 legacy-trunk +38937 27584363052286e18c876032bfd0f2eeb1393229 legacy-trunk +38938 90fca08145d11497e65a0f66184bd4262f62bdf3 ast-branch +38939 62eac8d953cf1a0f061955938707f18d548c55c7 ast-branch +38940 bac898d39b538f1282f55bca1749d88b0bf94381 legacy-trunk +38941 b38c2aa66ee7b3e4a749fde20451cf948e0b4409 legacy-trunk +38942 75fd9a5154c461e1d87debeb6d761694e503d9e9 legacy-trunk +38943 40f7e1da1bdfe552e56f87435025636d9d2d1131 release24-maint +38944 ba4727da07e54eba4fa8e2f248cda6004507ee72 release24-maint +38945 cb2be4429a4cfd3ac8c19524e619dd6d4a37bc6b legacy-trunk +38946 ea5c2280f91574237f3d41aa188fe02b5b970263 legacy-trunk +38947 0df05eaa1e096eecbd02127f1e65b5934738413d legacy-trunk +38948 ac56d17bc3d170cb1bf6ee9a5b0f1e8719984c4e release24-maint +38949 fcf010c370cbceb77c35faa48b761f425128b208 legacy-trunk +38950 5a1a31d9e37e3c139de97b9bae4ae818e47156d3 legacy-trunk +38951 215b7885e10854c51997766c1e3acafb7a7924dd legacy-trunk +38952 329b28a859474a3507fa3f251bca256d9980d889 legacy-trunk +38953 e03714804845b929e8cce5f000a61d4e528210be legacy-trunk +38954 8bfebcf063637014511e1e4c0f79c780f70710a0 legacy-trunk +38955 a49b88e5030598f94323495f4cedf1a6a9fd7309 legacy-trunk +38956 b73f130c7b84058e67a35244e6b44f80dbaf5d1b legacy-trunk +38957 d4daababaa45a5fdf745df0fdffc82b871735999 legacy-trunk +38958 29d3def3a56ab5a2dc40a8835fe703b5532ea78f legacy-trunk +38959 f3b02222a80a204322ed7781da8f21f12f920155 legacy-trunk +38960 c55899863b9c79e9c0622799041b9741f3218231 legacy-trunk +38961 19a5091f2658064065078e058cfb2de54ef1ce39 release24-maint +38962 5554511b37254911a68641621a153f143858d1ff legacy-trunk +38963 087735f86701c19d4301ac0907c9203063768533 release24-maint +38964 d6047e55f7ad3d6ce1fcdccc92aa92112f765d84 legacy-trunk +38965 3b41bd878918d03098f341aae2d71f95895efcaf release24-maint +38966 1490f811f93a94a561109e66b0e0826ae3d6fcb5 legacy-trunk +38967 73f24f5c4e3f93258f0a3dff2f000aa8d1d095cd legacy-trunk +38968 c05e45e8724e2fe4a2ad405676e553833cc55562 release24-maint +38969 55545e023199fc06a5016cf3e294b907644450fb legacy-trunk +38970 56088749721a8ad7b7a87e7c9ce29735aafd63c9 release24-maint +38971 d430b29641ba40be4f3f7d176c71315c2f88ea23 legacy-trunk +38972 662488d4187db688a25250fea8b73e6807f1e273 release24-maint +38973 82373d2525ee0bdba4994d3c550fb807e89e3423 legacy-trunk +38974 5f763f9e50f9370de83b8b7b2d6d92120b92c68e ast-branch +38975 f23007f9217b135e10ebc8e4074db91d1d11bf26 ast-branch +38976 8ae8e64ca9bd4d8754c9efb991743f758b518093 legacy-trunk +38977 e79793a8eeeab5c9852f5cc6cc58ae0b4d2e416b legacy-trunk +38978 4fda4063cc8cc2c7ce5fe9d273ca031e721f726f release24-maint +38979 ec4c16fe7384ced565a9bcbcef8bcfab662f727b legacy-trunk +38980 5e45dcbf7cffd04c3e2ff431aa42751cb8b7472b legacy-trunk +38981 748c8e2d40eec05cd5fe19ac2898771f6726ebc8 legacy-trunk +38982 ca5ef7ee3f417ac311ccf10949bf471fa84faa33 legacy-trunk +38983 ee99db06c0ebcfd86ac5db93c662b4e3b10163d1 release24-maint +38984 c55510daebd252d417b4aa6b600a7f02fd02c094 legacy-trunk +38985 8076424d455d0eb37b71e243b4a7afdc9dc1f80c legacy-trunk +38986 078da474b302133a31c9f82d7ce9f3a906fad2d8 legacy-trunk +38987 2eb569b6ce234a86d69bfdda40e1d91246bb8f31 legacy-trunk +38988 924e0282b57e9835ec6a11f87fe480f1cbb1eb17 legacy-trunk +38989 92cd951cc4b18d8b2a3c89394da4b8f3eb2e07e3 release24-maint +38990 851458fffd34210f620eb380e11c6aa333496a3c legacy-trunk +38991 173e90e0d2e31d7d8b406660046c4663577eafd5 legacy-trunk +38992 aa1c5366607d6f5a94e9d327afdabd4a1cbf25c0 legacy-trunk +38993 a2b5045df4f85680bf0fd6d0038380bce8f8e595 release24-maint +38994 74a8458b227602f9b4d55f8d50aaca9afed9e951 release24-maint +38995 abe5a5e39ccc7dad23fdea89c767bf9be47995e9 legacy-trunk +38996 91b8cdbfd7b4659401f9af1748af4176bf6f5ba8 release24-maint +38997 1332f2e705b216ed1f45eb9b237c6a2b09a78ce3 legacy-trunk +38998 835ab06984a9c8d8f65a1c127453ade1f3c84147 legacy-trunk +38999 5fb2163231d335d59c15af645b71c0ad4e3b6d01 legacy-trunk +39000 db1676fdb5b91c06400c3724a82a6c24370bd453 legacy-trunk +39001 f89cbe69db63fa25bac8aea686db2af673307c69 release24-maint +39002 51fe24138486e954cc26bb94563e0b35e9c8c837 legacy-trunk +39003 c425cdc8ae8a7ca886c1a84d24a55588ea8a24cd release24-maint +39004 4f5d26f5e3e6452fd215333f449ae9573a903dad legacy-trunk +39005 4666b4574c9cb583ffa6503c2393a48a835fddb5 legacy-trunk +39006 696458240a65ec4c37d8056ec828193b89a3b964 release24-maint +39007 0a9a410bf74cbb038b546d79edf82b8c8c309a57 legacy-trunk +39008 2b5186b595b1adddda7f0522e92b045ae8415702 legacy-trunk +39009 27aa5eec54004d7c323e65762d933854b9f8f705 legacy-trunk +39010 d1bac20c0b9f4e12bfc1880f428eb5501ef730ab legacy-trunk +39011 abe9686325c38ba0836b3375e22ce0c5ae71ccb5 release24-maint +39012 2015d16d2647046b52fbff05e76c4f628ba91f98 legacy-trunk +39013 c6b7fadf0adae27fec556a0a431f211a6ba452ba legacy-trunk +39014 17ccac6954134000ac9939f48fdb94d7f1ee53c0 legacy-trunk +39015 4a5f181ac32408ad1feaf6bb96b358654c6e5895 release24-maint +39016 a53587295f20596596203ed1f9bef810ebee0106 legacy-trunk +39017 3238ae6d2b30423339f37139480c6d31a3fb6edc release24-maint +39018 4384e587912614199c1393d2a744d759755cc592 legacy-trunk +39019 68bce68c8f93278ff5bdedc2c5a0fb90518c6456 release24-maint +39020 b2bd05c01a351cf83b2b11b177f44015551ac638 legacy-trunk +39021 98179c8281cdb613260ac4d2b37d1b82c49869d3 release24-maint +39022 8341cefdecace8c32aafe992b218d0f3a416ed2f legacy-trunk +39023 f0ae1194db69ea5e5e17a3d81cd60a5fc8e275f1 release24-maint +39024 860d7f93e6b4c9aea45b3d20d01e90214e6020ea legacy-trunk +39025 56ac43d9d6258b1a606a5910f9f7c67e337de841 legacy-trunk +39026 1714c249928ef8a0d5a669850e379b9fd204b0a4 legacy-trunk +39027 2d0693b9f0bd8c794d49fa305d0b4972edc87992 legacy-trunk +39028 f5589fc3d9771483b3daf8269f7f028d053d046e legacy-trunk +39029 acf68f67b975c751acbbc60abd5d9cabb52433ad release24-maint +39030 234b22a2acf3b7962eaa0474b7c2e7e570057cb1 legacy-trunk +39031 2e9e642a58ced1f89b4e4d8784a8a928017b898b legacy-trunk +39032 4c2376201115d5aab924230c98d8fd3b7433898a legacy-trunk +39033 522c9a4904413c98935e1d277323e15bb3fb5f00 release24-maint +39034 09a910cb6c8ff03b8157b28979dd07c6dd9222d0 release24-maint +39035 973aa4ee16152ada37662ac6d0f6be525ec39907 legacy-trunk +39036 b6d2a9d1a933a7c0f8b353f34212740c32c33945 legacy-trunk +39037 f3d3151f84179f1ffb6edf1f521e051f50f90485 release24-maint +39038 ab83ab27c837b641c0a39c4b0e21b8e5c33edf8a legacy-trunk +39039 58632092e023270c9af341be43bb74c11bdc66e3 legacy-trunk +39040 adf189eb4f58a8e59737fff06e82c9411fc06550 legacy-trunk +39041 585059de2b404adfc9a9b9d2647f66bba8b2784d legacy-trunk +39042 bfc91d4af64532a0e1da857266f0f50e6513a50a legacy-trunk +39043 2fb0c76d0251a1a70265882fd8111576f583d996 legacy-trunk +39044 7ea2be2c0e1de0f7ac8bce8600cbd2b14471ecb6 legacy-trunk +39045 2d833123b1190638b88ccdf9202bd897785ed28f legacy-trunk +39046 04868959f1fe6832cc9949a3cbb5e3a3357a7bfc legacy-trunk +39047 da772007d34d8059d9623b2624e8ba603a7d8f62 release24-maint +39048 0ec71152c7e2be101e1592da7c6f931f8a41b00e legacy-trunk +39049 2ee63ff45970fde337022809cb9048fe5019fa57 legacy-trunk +39050 534f8ea57377ea8931d5b297b6c7cb5e749d3058 legacy-trunk +39051 db2cf759948af2512b5c203b0c6fe64a5d94db9f legacy-trunk +39052 cdec978b916ce25b71530aff205c8d83f8c658b3 legacy-trunk +39053 70681267a74a9a6376153155d787b59cce5c0878 legacy-trunk +39054 3e0dd62ee31bf7cd86445fcf3998f36c668fe0c6 legacy-trunk +39055 0087af0953f4dc5da9e275deb215e39bdd12c426 release24-maint +39056 5d33d83e8dec8a94a0d9ca39e6f3d72e68a1b245 legacy-trunk +39057 6e93442e26dd03f49b655bccdc6965271f48bab6 legacy-trunk +39058 012a0ada0d05fe82f4a31a82715685ea698ca9df release24-maint +39059 2cb62860005f600a409adbaf000c71574c3f61cc legacy-trunk +39060 86e9f61697d8afdf41575214de4e72ac5aa922a4 release24-maint +39061 77de21ccd210e4a2d269b3f2f4a69e26ddb84d66 legacy-trunk +39062 dc68de70376b407e9ae7104717b6aedabb7caef2 release24-maint +39063 39bb8a40a2c85e5d8ae0b24da0c08722569840b3 legacy-trunk +39064 829f66d56140c29f3f04dd2ec9a886434d374f04 release24-maint +39065 3dd8d41ec350302080402a6dca6987f4eab393dd legacy-trunk +39066 33a4d7e5c82f2bcbe4d5d45becc620f53f369273 release24-maint +39067 bbb84b5856fce4decb5f2fecae69055139efcb58 legacy-trunk +39068 fb2f5aa4d5ab01f5f56dcdb48f783954268634f7 release24-maint +39069 8dbb731baa60f0654abc4d88a631b6e0c4b80aaa legacy-trunk +39070 d60a50a90fd150ee82353c6fbabd7f1daa7e010c release24-maint +39071 3253dbd72b60acdaf862c57a76023b6acd81978e legacy-trunk +39072 e5f62e049c6fd9210b480c4488b8a59406704ba4 legacy-trunk +39073 910b5db4623e31ea0501ebfe1c382126d22741f5 legacy-trunk +39074 99309802d49048efcfe688df4d87bfddb8fe2e41 release24-maint +39075 2985fc6309a84a9e6cb2d9a13b4903f2bf099177 legacy-trunk +39076 f840f447032519d11545ccafd78bd4dbf94c52c1 legacy-trunk +39077 b84138d98cfa03fd90150361e8e3af2c4cfb7868 legacy-trunk +39078 728a0de88395c230f66a42a99f5044b3b692960e release24-maint +39079 06c762722892b8ccd2bf50552d8be0d06bec2ba1 legacy-trunk +39080 4d1da63612eb5c9de8744f5b7f8c426db804c949 release24-maint +39081 a31a770bb7785874e44711837a0e3a0b5c0c2a53 legacy-trunk +39082 f5473a762b5016b62aa53c86fb24cb8116973024 release24-maint +39083 3c6aed3f3a3102bbb1c32bdfe2732cabcd393521 legacy-trunk +39084 81ca35ad9199e881482d1af999efbf1f835841e3 legacy-trunk +39085 daebfde0e1cf1c43e8acb61d1b26fdb47d2c3ac7 release24-maint +39086 c82b746c428f8b3bb47a85fc4f02523c7b355878 legacy-trunk +39087 f7c088a8b5d3c819d39297927379fd9842bf4801 release24-maint +39088 b33a7264454f06019eb7197d9abff303f7f512c2 legacy-trunk +39089 c574282d50bfee40c3b4ee171754449c908dbffc release24-maint +39090 98f96f07d5498853813a039a64ac0d1a6a18aae8 legacy-trunk +39091 9a812eb8a0ab286e6c6b330fda24c0bb9f92d9b0 release24-maint +39092 739032be96d5d905fd38b015f5475fbebb2f8548 legacy-trunk +39093 6ad3f860346e993a2e273a3dc2897712ca68e0b9 release24-maint +39094 021a4abf7f274b3245364c9b7418448303d35387 legacy-trunk +39095 1a70cbf759cae5207a2d2a79c4195e4dbabf7c54 legacy-trunk +39096 d57428e858fc0d04fcf03a15c7918bb119d2227a release24-maint +39097 eafa13beef2646dc3a5a461a2d91dca8a6103c0c legacy-trunk +39098 d6a18a33bd6256f7223fa39d34728d27b5472862 legacy-trunk +39099 7990455e6ae0a0d6d3aa16093b39b95aab3b70f3 release24-maint +39100 9e49273a1334396a07f23b9f7871f52eb0e08f80 legacy-trunk +39101 12287efa8777f722a7a5221aead478c2ab8d0ed2 release24-maint +39102 0fc290026939a6c0d8307d915d4fc3e5931b5343 legacy-trunk +39103 8fc5d6bc35ffde223dd985a153898706694089e8 legacy-trunk +39104 27a718221e72e784f41a161876fecf296219eeb2 legacy-trunk +39105 cf7a849ce61fa605f941dadc4110171c4a9bd46e legacy-trunk +39106 695283cbe43fc90c3785547e2ce99c9ec439366c legacy-trunk +39107 16dfe152b9e6da5f423dc20fc543707e5df701df legacy-trunk +39108 30b13401c9125640883458971e8d434245567f31 release24-maint +39109 9e4bf29e6c2fcd3a8ae47f62b49ad40b74e7d577 legacy-trunk +39110 d7c5bd59698d0688f090187a3cc3d3cc34868813 legacy-trunk +39111 e6b075bd7855af54a565dc31a59c407b80310fba legacy-trunk +39112 b05cc12a2179f29417365441b0d4dc1a1f6d93f2 release24-maint +39113 a2043affd5433021145b979bccf485399563b849 legacy-trunk +39114 5d977d7cc33569714df07352ac05d5bb002703ef release24-maint +39115 18184d82daeaa19ab4887588104c8ff94930eee7 legacy-trunk +39116 9d1e46111d9a70825db4c0b96cdbb57e87faf196 release24-maint +39117 f8f15e6aef3a4aa938301ddf533e5d817f3bf419 legacy-trunk +39118 8f7e47a0aacab6c80529a0d847c9a4d0880ea0c4 release24-maint +39119 68266803c0134d4398b395404cf0328aaa264039 legacy-trunk +39120 d07e9c37bea09e1b80b0c4763f4ab44003211857 release24-maint +39121 210ca383abe7620d78f42235d7fa5907cab5fe1e legacy-trunk +39122 7804bbb264928edc04f0d25ccbab713c687b62a1 release24-maint +39123 47418502942a85ab6a3195eba80e611469aeeb22 legacy-trunk +39124 2f9cfeca27996cdffa2c71e2451239d63fb18282 release24-maint +39125 cd879ca84624486dc1da485703ef46f35bc6fe7b legacy-trunk +39126 726c9bc49c048aaf21ff9009b6ab99bd3ee0d3bb legacy-trunk +39127 5df1c692bb4166644ebc0ed91776fb7bfebc9221 legacy-trunk +39128 e02087ac4792680196f19251f6ad68f72d79a0f2 legacy-trunk +39129 3340536436f5a0e28255041a8d63fd7cf9f24313 release24-maint +39130 c5888413412b94ebcfc06e1ce238db89766dd556 legacy-trunk +39131 f94d5bfad078f81bc25486514394355a3a5ea240 release24-maint +39132 e2636d108d7d09a65d8e996faad03131ecbf9ba7 legacy-trunk +39133 89710805bc3defe8624fef12ac5ed24e2c47ab82 legacy-trunk +39134 d6c8761d7f31475e01d5d715d629efdc7bdda9e6 legacy-trunk +39135 666c0ed4fb9d480eeccb2cbf1e83533a4e3dfa10 legacy-trunk +39136 857871c71c3bb9076b0b39e37dee610ec3dad3c0 legacy-trunk +39137 c857070e97e8d1e3a7544948b8dfb67d81c943e4 legacy-trunk +39138 b3cb64289d2be247680fc2b1ad3fe60a18dd84e8 ast-branch +39139 2760a2d99238f121c1942f0771b18fb2792359a9 ast-branch +39140 5b23a5dcc6a3ff2b6f88e6ea09b24ed642be3702 legacy-trunk +39141 fdcde59dfa1bd89f26ff13cb5a3d0d16a6bb356c legacy-trunk +39142 73e6cb5f4039e6c0da595e83ed299a7f5675a640 legacy-trunk +39143 3b5f5466f105eaac2c7c395bd51246b2b9aef1b7 legacy-trunk +39144 734925b46ba7e47df7b8ea87a5e76ea2c591847a release24-maint +39145 9241218992c1e06716b3ff811ab40e3e215c1c7d release24-maint +39146 b86392f55b597ef43376017c980a21d6440daa5e legacy-trunk +39147 b8c9076d174e92c53da01e8261489112b84e2631 legacy-trunk +39148 58d5a6c7b6290fc0088ce19684cc793c3e109b37 release24-maint +39149 4bf99ef06d38db366170aa4d07f9c1795d39766f legacy-trunk +39150 31d955ab2232ec9ef61ca627b0f74491edefbfe9 legacy-trunk +39151 9c188ff63131976c28d4fd8775cb4038923445c3 ast-branch +39152 8127a55a57cb7bd780a54d14114d1877bc3b647e ast-branch +39153 9ecf03dfd5d6177b23d60fe2c7d05a7dad65fc0c ast-branch +39154 d25656ab3e1d03ae80bc359a6313b0d57034adf8 ast-branch +39155 aa2f2faef7d291da7dc0476f6bce7e8dab2cc33e ast-branch +39156 8d0d395c211ed796a92aa1e03d94587c3c3bd0d7 release24-maint +39157 e0598983f0a5f623978709a86ba2162525e07848 legacy-trunk +39158 e1f7fca784f3a6fa345227cc219656c1b6482643 release24-maint +39159 ddd78ea3519c51acbaab8473ab58e417397d243a legacy-trunk +39160 955d4baddbfc8659a287d6e18718c867fbcb492d legacy-trunk +39161 214c96e549050bac3aa9a0bf68a6edf32487ac47 release24-maint +39162 b6700b3de6955d51d2b609d4ef341ffa613e0201 legacy-trunk +39163 db76831299d00085f9dad724d322c11ba740b315 release24-maint +39164 35592bad345bded7a49c99aa953008c057bacbb9 legacy-trunk +39165 763e85b107b40dbba95651cc5da420e64e838518 legacy-trunk +39166 57a4d27466323846d973a5fa0a8076ccefd081f2 release24-maint +39167 847e58ddb7d9ee6f8d8c72beb2ed511c0a7fbe1b legacy-trunk +39168 ace7d836083fe7410173e63ce08bf4601ab5f006 legacy-trunk +39169 f9c5ae69c16ee2b5a1d28dd03b67201bdfea1eb2 legacy-trunk +39170 d0c6965b525ecbaee87b0eb3e16b7f757d497f92 legacy-trunk +39171 c088eca90a63509214acc4982c86a9e2fb121329 legacy-trunk +39172 526faaab00eb9519dfe7f0d9f98ececbc4ebbcc2 legacy-trunk +39173 1fdbca3514989d817d2fd492d0d4a23cf2bc5d48 ast-branch +39174 a0c31b70bd180f78f68385a2ee71615cad2ff63d ast-branch +39175 09e88fd7d55a68a1f10da4ae755c407b9ce9378a legacy-trunk +39176 b735eb4267e8f94cad9010d133f726c44128bc4a release24-maint +39177 7b6436d2344d1f45fb6cf3fce7088bf19b1735ca legacy-trunk +39178 74c371766121c8163e05964acf196bc0aaee641b release24-maint +39179 cd595a69dca5ca2d94866a21805b96c10bb57aff legacy-trunk +39180 919f2d131982b8b15de9f0452285a41ec14763a0 release24-maint +39181 558163cb70a9682f37397efbd0ec208a61aa24fc release24-maint +39182 62f8194832939be14f2beda7ab4d7f22be34ba6f legacy-trunk +39183 1949722f37874d236791e54420e9ae0676f2c5bb legacy-trunk +39184 8756973a6b99124c9cd095ebb172c26d12ff6031 release24-maint +39185 c6b69c6d01a377d4c9355c612ce6224cfbe834e8 release24-maint +39186 95a9ff47b11d039929799391586f2fe63ef2e1bb legacy-trunk +39187 a498dcaae9d78269b4450ae88a5e9de2a969bced legacy-trunk +39188 027e000d1f6df0e04113faa2ccc44c1c9152798a release24-maint +39189 32de7a8d886ccdf4c59eafc5e2d17e6573e3354f legacy-trunk +39190 07b01b3340f9c25426b9c20b4270b83f9bf6e757 ast-branch +39191 3a6eef31e95ae25507fc30312312f43a135a8546 ast-branch +39192 d61efcd87c8e3836cc651f28a33d1765e64d67df legacy-trunk +39193 d476e58cc7e745c9c0ba46390364f393535967de release24-maint +39194 92b37c71f935eabc461c070f2b802f948c4399d1 legacy-trunk +39195 74f8202d83150137c8c39ee110ad91ae9544d3f2 release24-maint +39196 c52cd1fd94fc54bb84ed256dd2dbe32fc2b8af5b legacy-trunk +39197 3f86f8cba05ed568902871a1776d3de16ae74a94 release24-maint +39198 7e1c1d6dea1c3169a3b0e1a84ad3596480dca1c1 legacy-trunk +39199 968d9422af787fe6ff1a7f330146895f83b66c14 release24-maint +39200 728f82bebc3ebd663f237218d5fd72d39a5547f3 legacy-trunk +39201 879c876bc57a3898363f5a71bf8d0716316c5feb release24-maint +39202 b431ed7bcdc2250af16d90345068fd864b1b13c4 legacy-trunk +39203 860e0fd2fee8ef69b94aca1f0726df7052af98ec release24-maint +39204 aeec39fed8c5c16f765ac39425d1f21f687211fa legacy-trunk +39205 faad096decf6ab4d1e4faeb10e3878469b1783a1 legacy-trunk +39206 9f43655123260241e0265a3566e7d6ebf4ab4037 release24-maint +39207 2b117eb18944d22449ccbc09b627f934d74d6298 legacy-trunk +39208 e789703fe4bee4aa2256872f8ad7bb7eff8592cb release24-maint +39209 a917e2c476f6618812dc5933d17ad42967245455 release24-maint +39210 1ac2c3a1c3ac3d39d4d7ddcf0ec015660b88a775 legacy-trunk +39211 9d838dd967b2b22aff1f33179f4d55ddbe7e84d4 release24-maint +39212 be6ab3d86c2925ad8ed07e6bd10862ad16b839c0 release24-maint +39213 53ab5163c1aaa1953ebb1ad1d1e7d11bf7ad0668 release24-maint +39214 4adbd331d3352eb5fafd72fcb589e512f4b35db2 legacy-trunk +39215 6ebc423f2d81ce90a44890e6fbf5a28ddca515f6 legacy-trunk +39216 9707ba2788941a03e3d692bf4b3b586026a8462a release24-maint +39217 52acbb8584eaeb461a7969a0e80c7f8a8238994c legacy-trunk +39218 ca66a16c379dc210739c102d5c05771b10edd6f1 release24-maint +39219 42cfe4603c30c00172935c6f99c8c9c59a137ca0 legacy-trunk +39220 edf25c1a4f608c4db38955e97e62ee242df89976 release24-maint +39221 f8e60a3f34409e9f81fbacc5276f56790f55fca7 legacy-trunk +39222 c8bd3b5230c425ca485bd8465fc97b9e4ea30a4e legacy-trunk +39223 b4e570337bf477e236d7d3f6ca25c90395259c52 ast-branch +39224 31447adb1b35ec0ba0934829acda9bcc043533f6 ast-branch +39225 1774fe7ec0c7c70d8509ac365b8b5490789af12a legacy-trunk +39226 85a35f8701b3bb69a157cd0e251f46f31dd1efa0 ast-branch +39227 298d3fa4ec39dd1802ef79c3a37b942c3091de34 legacy-trunk +39228 2feedf850789d0753e2f1dd40ab92b5b641ebbaa legacy-trunk +39229 636e5f1da733d7b747bda9c773d46754e17375e2 legacy-trunk +39230 7a50bd82df25f2be9e3faaa8222e7d775b5ffcf5 legacy-trunk +39231 349a0fd598e079d217cede9d2b82638bda665d0b release24-maint +39232 c6c24ff1e3da5928ac1f80c228851272a4840148 legacy-trunk +39233 35a698302c63c5b1f06859a78ad871c9838c4b16 legacy-trunk +39234 8fffb4c95487ee2373087b72368f990d1b9c343e legacy-trunk +39235 3f1b48f9ff0da9f347cd01154618ac4e8c952242 legacy-trunk +39236 f30ebdc3bddf79b1fcbb637f7f21c88ceca01b1d legacy-trunk +39237 d91964f5fe0d6bcb0d2ae40024e274d0e3a2a71c legacy-trunk +39238 26bf6c27e9cea5ef537e86eedafb1c5961de0501 legacy-trunk +39239 b2fe5f8fcfddc84b1a034c4245b7842c323a7f73 legacy-trunk +39240 5a9134fe5709060a23aa27be6a2958e5ee79ba93 legacy-trunk +39241 099128ffabe6319a007ffd422237b21406c6db83 legacy-trunk +39242 3086620db46b97fc2d082017e7bfccf7872449c6 legacy-trunk +39243 b48f0b2e0df6095df59cf8d8903ba5bfb6e9dea9 legacy-trunk +39244 b363a28ed24f9b103c54f94a0907408eea6d557e release24-maint +39245 abde217c5d90d1a651e654bacc89dece96bb6b4b legacy-trunk +39246 37600233db76881c8f89974edfba8cf84cf50385 legacy-trunk +39247 455c3b765dc3a8f1b91c8b198e1cb57ef317c270 legacy-trunk +39248 2590fa0ec7e881b2308ca0e1934c5ac44c2de94c release24-maint +39249 d533f08a9dfaac73f7f3dafe613003dfc2ea35f6 legacy-trunk +39250 5fe9ceeca1118814c44f4a66de1ebb1186f95d60 legacy-trunk +39251 f3996aa78cdea5b596f29da16169360b655071d7 legacy-trunk +39252 541bfbb10030bffaacccf2604c95176629a9e1f3 legacy-trunk +39253 8aa9bd80286b2201e75f1a3732413dc17f4b3473 legacy-trunk +39254 a689a20f58f763ada032dc7c9dacfd325ef9f6ce legacy-trunk +39255 1d8611d8555c5cafe00c8defa06fc318a91c61ef release24-maint +39256 a6cbfcd0e691ba0b1c5a57c9e4e0cb99f98d6e69 legacy-trunk +39257 ce0995e01d3c745743cea76eba49baa46e9c450e legacy-trunk +39258 fd00461861c9070645e26b69ff9f902a1876cf02 legacy-trunk +39259 2612e96b17bbc5bcaac72aea10f1df21e60532b4 legacy-trunk +39260 bd9af260e927942af5e0d98023273a31e8b3671f legacy-trunk +39261 fa95fe91cdf760be3db12042c7a79dc5f1271825 legacy-trunk +39262 bdcb01a9b60c579f716ab04b884463b748ad07f3 legacy-trunk +39263 b92a85c3bdc816aaf9277ce4dd9f2de3b285b58a release24-maint +39264 3fa58e5bddfb29a5c040f22d0586423d1e12055e legacy-trunk +39265 17e0444dd12daefe1cdecd818eda69f420b3a992 release24-maint +39266 ac9c0ee199fc96eea1e4bc3b32208e0834f1e00b legacy-trunk +39267 3094843e7b92cb103ae0fbe1b3b4648dbef2fc46 legacy-trunk +39268 6aa73a1f0cba845403c7f81669f444d3296d5c43 legacy-trunk +39269 0ef64a93f3f25e0d6381e83383008b7cb69fcc4a legacy-trunk +39270 300f3aaf853fb888a4dfc43efdc629d1b6812f07 legacy-trunk +39271 044a5ca2cdb82cdf67fe7a56c346fdd8b1835b80 release24-maint +39272 ef11cbc08daba0fda490c1967389e8dd55cd3b93 legacy-trunk +39273 fd02b84fb2db229be8d78bce2d9cdd86c641a0f2 legacy-trunk +39274 dc8ae499efcf3938697148a6f483325f1117de1d release24-maint +39275 725671db779a68182bd26c07c0f886ed75b768b2 legacy-trunk +39276 9b2227a60daecdf592d8d1efb4d0721c683516b3 legacy-trunk +39277 503c3697578f8c9e40d2de284a89c03bbfec6209 release24-maint +39278 def434e2a81afbdc4b0042d4cd799d84395079be legacy-trunk +39279 d6575cd1ab67fc6632b0e255d6449f9250e094e4 legacy-trunk +39280 028e94a6efc56a9877bb7f800179538670c334cd legacy-trunk +39281 b8c5d2222ed7583bde1075328a123b1ed47f1fa5 release24-maint +39282 f6b462d2a3a36c53636743ebcb1cbd058804e7f2 legacy-trunk +39283 3c3a45a9657721f0ca1066354cf1965986ec5235 legacy-trunk +39284 dd4357a5da7cb7d704797bb9fb33a5f67a23f5cd release24-maint +39285 c5499f256786b2821f82f1731e3abd45cb497f9a release24-maint +39286 700f08369092785820c8e36d8d23e5a4c3725b10 legacy-trunk +39287 dd2357953fe3871484d88b0cf474c86e8400e98d legacy-trunk +39288 39825ca346473ed5680546945d18b71cbf19bda9 legacy-trunk +39289 2f1bf64b837ef5f49e1cf46e35e7d2f2431dc5b1 legacy-trunk +39290 6f1cd28d6b875012d0340e50632adfa33badad00 legacy-trunk +39291 729be8cc0098bf5e17ea63f1c3b5f32c02c9e734 legacy-trunk +39292 c1d22d4c08655280ce37e3b51a704267dcad3dae legacy-trunk +39293 cd8d8e634ab806e010e6b7696ad0a81446b012af legacy-trunk +39294 e8806094d6448dff0de1f8bd6df19e006e6fca00 legacy-trunk +39295 de2d84e0447eeed861b54a9f5e356914eda48721 legacy-trunk +39296 4fd038737e21d2acb8ef1008f7175f7c5e85afed release24-maint +39297 3a2fff690558dc043be2be343123e2ea7dbcb781 legacy-trunk +39298 877916d632e07069b857757be8e505e1dbcef126 legacy-trunk +39299 20b18b7f8309578e0c5029c06a829a9421242d9a release24-maint +39300 c5bf5685267b8e8da6929610b9b419cf17837886 legacy-trunk +39301 d7f39e6208ba9ac885a48a6cc0fbc5e520d0e27c legacy-trunk +39302 66057d550628ae765bc7229aea89f563da3e0d92 legacy-trunk +39303 50283a4417d98870f8c9bcf9b96851a9a6912ebb legacy-trunk +39304 f2069195757811338d1e203578dd415f515fa258 release24-maint +39305 aeb8580a1af74898872cf1eafe2caaa1d0ed497e legacy-trunk +39306 8b07d731be603ded4823481b65e188b22d1ec2f3 release24-maint +39307 3ea8f58a8c8ec6434f04faee86675a8fed919afd legacy-trunk +39308 4e588725c3d758e7d11f3211e93de12b73381abb release24-maint +39309 cde27782a1692ad41cbd171f2aa92f46ab038d77 legacy-trunk +39310 f5713e30380c436ba8de12a8a6f4851d69635085 release24-maint +39311 7f9a430b8ce71ec97a78dcc7376640fcb3569c79 legacy-trunk +39312 ce12451220b40a927b62fe37b4e24b33bcea10e4 release24-maint +39313 76b2722806abc5d7953cad89e527cb8b84aa9676 legacy-trunk +39314 084d42df7bad4e940397c6cbb3a69809bbdd9c9d release24-maint +39315 797d82eec62521b6a68df9d36d8b2924c6c2a4be legacy-trunk +39316 624918e1c1b2efee9e4b7bee31ddb82212d11b33 legacy-trunk +39317 a46732571f2e8f05edcd5bba796df925c8ea6451 ast-branch +39318 f84cf853464aaaa67b31b3d14b3f59fc4f0fe7d0 ast-branch +39319 7c14c7d8b396ff611de979423eef075602a6755d ast-branch +39320 46800f2ad308a48887aea4e2befa67d8dcfcffef ast-branch +39321 0014596b840c6cfdbe8d566b38045f288b5dcaf3 ast-branch +39322 b463bb4825949bd42610a5ff38f73b6d90ddcf9f ast-branch +39323 e7ed0e6aed2f273944c317eeb36d17b760b2b8e6 legacy-trunk +39324 448c6fbff6413122a57e5ce206c0f3b003a36386 release24-maint +39325 9330080a3d41758e26a36fc7c3bb85f6523abc50 legacy-trunk +39326 926169fde5e633f1e2ba8827e65cc3cf0b03e4cc ast-branch +39327 fdeb4a8bcb4e25099a038a770cfa85a02ee9fd59 ast-branch +39328 43211be0de415fda1bd7c6a3f9ad900e9bea61f0 legacy-trunk +39329 d682790d5db0e24ab337dbc2f753bb1f7f2bb20d release24-maint +39330 0f1a231c2c7cab5d21dff93bf07ce992e494a66f legacy-trunk +39331 787478923e82f27e3bb056bc534798aca32dfac7 legacy-trunk +39332 04dd5b06d3c8ed53dbe98e96244be78530630fbc legacy-trunk +39333 34ff7ca4cef8527e3b1fbcbc950f7421650d9cb4 legacy-trunk +39334 a6e70004e9870cd87ef31b2dc0e34c20dbab527f legacy-trunk +39335 38824b6e36007c36951fcd51f39ef4f434ebf99c release24-maint +39336 0eb386ee940e30326c47bcaaba15b921f08e503c legacy-trunk +39337 07137286773caff6ef07590363892a857aa6289d release24-maint +39338 4acd30761bc2176303bf42c74bbb28e096fcc4f4 legacy-trunk +39339 6b37eabe2ac437bfd44849df0ad5e903e064faf7 legacy-trunk +39340 5f400fb2dd8a69b7cd69a31891cbbe644460860c release24-maint +39341 3973d63d26677c06746136f1b152657137811a5b release24-maint +39342 91d968b77579a5a3661bc46e01fea9a6d4b495d9 legacy-trunk +39343 43cf59e7a6145ac718fe953843f420acc83a1d7b release24-maint +39344 4da6d4e0c3d5628c0cf1def5ae350cef6eade1e6 legacy-trunk +39345 12a9bb24b6d9646607494d628eca89ec0faed8aa legacy-trunk +39346 bed93d0416dde82a3498e2de77c3993e7fb843a4 legacy-trunk +39347 7f16277666216c1e787b20177bbcdd0944a774b0 ast-branch +39348 01eff6079f90b6faafba7465df78906ab1b117a0 ast-branch +39349 1708479ade4d5bacd402dd6312e34e847516b708 legacy-trunk +39350 c9eb25fe39cbbe05d5ad2fd3c8f52bd49c205cd8 legacy-trunk +39351 9e05ea3b1bf3b85f3a299e4d342d4fb1947195d9 release24-maint +39352 5c7cca25472deffee46d75ca98c7152ffa15f83a legacy-trunk +39353 6c0865beaab731292080fa22de4aabba017f5433 release24-maint +39354 8837ddfaad45eaf83817ad81ad3175a9d7a62d25 legacy-trunk +39355 f96287d1b5f6f98be785c4b872c985b64be7270d release24-maint +39356 634ca4d8a306a222219d6aeeb2a6220fb0c6121c legacy-trunk +39357 b7097d91f04d1ebd56e47b0e7d201da57efd7b42 release24-maint +39358 5b1a2fb864a7626c1647a0b5319761d9acca8566 release24-maint +39359 3bb932801b6452f88b79bd2eec20fc59973eec6d legacy-trunk +39360 3745e3c6a3e1360168968425e49f057e5eef5fe3 legacy-trunk +39361 dde056a666ddef52ad32032da38e591d329af995 release24-maint +39362 3eec91038fbca9f439aa2da97465b9f55f43127a release24-maint +39363 0a6dbcb4e05662305cad388a3ab35324a06f6eb5 legacy-trunk +39364 4d05f9e7e6e294a9e417da57606fbf3310f52bdf legacy-trunk +39365 156abda4e4573a8e2f4f1fa07a906ed12508671e release24-maint +39366 ff2e66fc0a292904dc04d37202c88bdce05c1d3a legacy-trunk +39367 4896f8334bff24453268a5cb5880bdba9f519b45 release24-maint +39368 e48fcd4c358d497c07f6073b6b554b9c467d0178 legacy-trunk +39369 37fa7b6dca9bb89bab2d91ed1d65cf00f42aa4d3 release24-maint +39370 2a6b6942a7f7cb60406056bf90c9b42147e3ece8 legacy-trunk +39371 c4e5ed7a2ba37d65100441bf20eb3a5a1a54b014 legacy-trunk +39372 85f0a6e8380b5dd792cd587124b670d19823e228 legacy-trunk +39373 481463a5b20c896fd8f17766e4826b0691b2bcd4 legacy-trunk +39374 fe3235fcdd77252edae7ba141c50c74e3ee58e10 release24-maint +39375 7caabc74997567eea2814f69422f04146fc76699 legacy-trunk +39376 d5df5222fd6d542c9afb5cc68b5a91d4287cc020 legacy-trunk +39377 16520fcc060950cb0f6a3ea5804179e02baf09e8 legacy-trunk +39378 55e2759d021137249f1af4cc574687cf5a9dc971 release24-maint +39379 245e8f4cba1db2486a4a4bde3144bce497777c86 legacy-trunk +39380 e0bd6f324fd6a1d295c756063d608c85d978a03d legacy-trunk +39381 1b7c4fbee0b8be10f3088207f9aae2dd574b8304 release24-maint +39382 c1f0f170936d5572b4a6e75df467758be10bed3d legacy-trunk +39383 130b6ce9bbf3dc1276085df2fd1468ef50aa7125 legacy-trunk +39384 eddce40ed1b16e17d6270afbfb47d19d17fcebe5 release24-maint +39385 7d3e8c2ae339132e86cbadc9a744ffda9c743bfd legacy-trunk +39386 9d343bc81863816b5b61da57b2f1653f5c9cb1f4 legacy-trunk +39387 4a5077873cba0bba99ff8befcf6bad76358acbb9 release24-maint +39388 3d03d2cbe1ad16de594f196da9cdb5f67f20d8ec legacy-trunk +39389 65238c9a7a6601080d05a6860770602ef6237859 legacy-trunk +39390 1707c945d6c24dd08779d6f3ce819ac72d6a91d2 release24-maint +39391 595451c2c8ecdc99c406811377f1155eededdc7b legacy-trunk +39392 a17012345af6aa29f0c05cc0205ae48c080ebe6f legacy-trunk +39393 d0e86576f0b5df57989c8a629ccba8f2aee63f65 release24-maint +39394 44612593471c960b734f39e2e6866db9dce04c7e legacy-trunk +39395 cb499aee36e78acbfa7e2a85e2623b8edd1e99c9 release24-maint +39396 7a0d0b4c87d064511560992af8845d4a8cea2ebf legacy-trunk +39397 582c90deda9dfe30425ca6da05a65d5b2c533d1d release24-maint +39398 0999290c67588a1025acfca75b41169a16ed327a legacy-trunk +39399 531686854f086ea360edebd2e5bb24bd8224c425 release24-maint +39400 1fdfd0130e28192138efe0d327c967b166bd913b legacy-trunk +39401 97c97194e64bb8723e628309bdf01e7c171f6619 release24-maint +39402 36514b95002ab1d592f056bf9688dadf81acc209 legacy-trunk +39403 59a63b09a4c269e52675ae3357ab8e39b0b6ae79 release24-maint +39404 3855a960a6aa96ca9ec859fe9a1210791b62858a legacy-trunk +39405 9a837380c3c5f127a178db6d0622e8bc73000c06 legacy-trunk +39406 8a3d7f9f02cc2fe1d15f36e3ed043ff43b303347 release24-maint +39407 cfcc2641a910980d32b872ed8b3893b2faebf8c6 legacy-trunk +39408 9d41afa63b7953133e464ef0062b4f109875bfa0 release24-maint +39409 38e588d1d8853b8a49bd39eb560f6c6e93862aa1 release24-maint +39410 08528fbd48049fbcedd4ceb6f31a6548876e68fd release24-maint +39411 9be92fe8a7a810120e5504cd190d564efbe58976 legacy-trunk +39412 035409ef09011f55b56deeb2e9670c4397ace5ce legacy-trunk +39413 256e7384f24dbd333cb35d2bb9bbb90171681256 legacy-trunk +39414 1312946f32ab5ce1173a5e2af1b42864ec6d1bd0 release24-maint +39415 adeda9fb3485d674c70cd20267ee08a066dec6c3 legacy-trunk +39416 3e5c07faab111399b2402ce9ce5bcb771ea6c568 legacy-trunk +39417 5233d19ff87f277f1d2648542f5c5198ea3ee6dc ast-branch +39418 72d3ad08b2c620baa660cdb1f4a9c4ccacfb383d ast-branch +39419 69eab85174fba3d862cf606b928a576b78994dfa ast-branch +39420 33f662f6795f33a1e19c794706fb02d6c38e267d ast-branch +39421 713ccff71fdfe4b703233ef2fcf6058e39684229 ast-branch +39422 85960ca4fc089e9a16f4ba93b660509cf913c35d legacy-trunk +39423 dba1e2dfd8dea7845ebb9cd72cd365836afdd267 release24-maint +39424 200e2ef4dbdc643c47f454f6911375cd3b427128 release24-maint +39424 0f405a1c53405494264f97b4dde82ee1a68904c1 legacy-trunk +39425 aaa3646f4567126b00b44212fdb8cd92d621725e legacy-trunk +39426 0234c84a7d8da826a25174d8216596d19bc6fff9 ast-branch +39427 e52ed878c5ee0ade207cd29e94f44630b468b1f3 ast-branch +39428 496d29b0ba5bbaf6396cb229c9a10da0b986900f legacy-trunk +39429 11e15f7ab9406eec5c62ad1c46f2a5a31591d3f5 release24-maint +39430 d92f0ed6a7f2f9d7eeb5b7c35b0356e8dc2d204c legacy-trunk +39431 a84cdabb8af06dabd97e93948a14afb63c729f5c legacy-trunk +39432 89e8a5ec3da0577b72b14da4c3d27f980e1a78c1 release24-maint +39433 6763c91fcfef4099e9c46bf5ffc2e42e954fd4b0 legacy-trunk +39434 baed8b7deb56d1c95ad940c55b901cc3e907ac9c legacy-trunk +39435 9b2104011f7026a5cc961e0f5ee128b12d6112b4 release24-maint +39436 bb677079f827ce20165aa0ccf310ddc6b30fa0de legacy-trunk +39437 0e8964f53732bdc920c6cf10ee29a9c1bb9c5f33 ast-branch +39438 516ed60a8f9caf670f3d097183fee4150458eba3 ast-branch +39439 6061aaa44ebc535e49b6b8372b391481454ccc76 ast-branch +39440 d332b2168cb247269a46fc6a5fabacfd736a4358 ast-branch +39441 cd7d6c6f2db21754e2b203977b2457e249ea3ef3 ast-branch +39442 e158f1e17ab4b7159ac1fef61a56826ff95b7cfd ast-branch +39443 06efeec74d59a521249887a8eb7d73f5002ef11a ast-branch +39444 3438eeba58c38a8fd36634ced603b35e4be69e3e legacy-trunk +39445 81a06a9a1ac47c497b9c8c86315047a830364f5f legacy-trunk +39446 ab3ddbbd0862c8f43ef713c84f07268ca9d6ff65 legacy-trunk +39447 bbf8157d03984e96a9a8678898805fea27199359 release24-maint +39448 4fc7a7edcb4b6afbc9424196a1302d0f515d01a8 legacy-trunk +39449 6b8c55877755c7fdee05434a6e9891c186bb5f04 release24-maint +39450 1a3cf96c8d464bd5454892d64750e1f1e623a6d1 release24-maint +39451 bcd9811235d4962be04fb6d87599599c88797ba1 ast-branch +39452 a159584db65c134157d56128b0f033781b55ae8a ast-branch +39453 ba844bd7a32b6bb6510531a63ab0dc002908d668 ast-branch +39454 4681a8fa46d06ecfc7a4c67744fd3580ccdc458f legacy-trunk +39455 ce5b7532520a87d9467403961f6b988b3a449749 legacy-trunk +39456 0eae5219f3b824d0fe627a1d7da4737abe488845 legacy-trunk +39457 3e6212113e82a0dcbb09e9e09595722f65515042 release24-maint +39458 a185d69630b38a278cc74650312cd1bda8b8deee release23-maint +39459 c353c2782ae1595d5e47547982d044922735afdd release23-maint +39460 97dc8f06c4fab7d954ab53d6200004d9370a6305 release23-maint +39461 0bcb303b341b664b9e1654c4d5a8ac5e0c3e14fe legacy-trunk +39462 0fe8117b761d74ad1a2ef72048ff51ab34cacd3e legacy-trunk +39463 fe0ca6048267027722cb16d817a38fd8ab3cf8cb ast-branch +39464 07956d4a8e4abbdd75c1f6ac3f38ced7d51f5f84 ast-branch +39465 129ab22c4b19a9ca4d19e7ce295e79bd53f1c797 ast-branch +39466 f54e50c53a72d39c6add7f63b9b3157488652523 legacy-trunk +39467 c893caeb11370579ca6364838e31e2158843a261 legacy-trunk +39468 22a4093b5151c69b87395cec269ac06f6faccccc ast-branch +39469 daf338ecdccc6bf610a3f64682c730d44626e114 ast-branch +39470 b720104b7db9165a038a55378b1e7f453ffad25a legacy-trunk +39471 ba44e9e2b554729f720cdd7cccef9ea00cb239a3 release24-maint +39472 8fa83a9ebc6eccecebb9d095a1591af70bde64c5 legacy-trunk +39473 ed65e0ad221595b7829644f42959d93a1d4db58f legacy-trunk +39474 771847cbe3b6cb68602447ad07afc0bb8a1c5ea5 release24-maint +39475 f63e6960c5cfbe26b1b59af1aa2219bfa8eaedc2 legacy-trunk +39476 0b7fa6f0552abe9051ee4f4c33cdcf6479e61172 legacy-trunk +39477 26ba3d4f4fc41557fd26e3dfec2d3f6afa8c197e legacy-trunk +39478 a578002c8f6599220d0baa0b60388bfc7eb8ace9 legacy-trunk +39479 15a8975f7fa93d5a068f7e2bfb4b264a47b09546 release24-maint +39480 1f2af259968b455d40b35ad7c4514ece438ce796 legacy-trunk +39481 0a28d48636c8643fdfcfc8b7205175190cca3360 release24-maint +39482 5d58443f489b4fd2910a40f01da356a5b10bf170 legacy-trunk +39483 e7fd85550bc0b59b8f966ea2ef5e9ae433e20941 legacy-trunk +39484 9516ba54b9df44757de4828bbfa27b406b000860 legacy-trunk +39485 5db27315edcffa5a68eb7a19ce15d83f4e814794 legacy-trunk +39486 4abaf6923437194dbc6320af6a512eef434feec2 release24-maint +39487 ceac0277852349be6589c13dacbb0eeca0995c5a release24-maint +39488 de1c5d17fde6c630e9f50aaa5f461edef30639ec legacy-trunk +39489 436be2c891402f4dced3fd96627051e9f4959db1 release24-maint +39490 7dd431750bd365fd5d3711d437063e7753a1b083 legacy-trunk +39491 ecd61c92adf3162e6310273ff8ee367719383097 release24-maint +39492 9521e380380f0ea3ec433e2fbb5efd9aca56526c legacy-trunk +39493 6bde6cd23954c71257354ab3232a7981e08a9d0b legacy-trunk +39494 17b1dfd3cbbbd33fec166b9e984721ce640ef6ff release24-maint +39495 cc9416ee58e19f282abd4c11c2581a72c8c13484 legacy-trunk +39496 f7378e97b66a24787cd67b7da5fbd5a2d9b804b0 release24-maint +39497 e73accf3eddb4a32f9cc65150a8afd24604d37b7 legacy-trunk +39498 336b664a2210e92d94be1d96b3338a1b70f5a7b9 legacy-trunk +39499 5824130b7ac350ff27ddada590aa1743f3817411 legacy-trunk +39500 a7cccc391228022a82b72103f9ec468d60ea4e68 legacy-trunk +39501 dc8538845b0c890ea792754b4f52db4c9949072a legacy-trunk +39502 363e6dd079fcac397f3e9d136bb353cb27e3406c legacy-trunk +39503 39dbe3be327aaafc7ba4c9848a8fa525283d8d3d legacy-trunk +39504 d504a302bf53e3a3dacb4ced94c7108e0ecf91e7 legacy-trunk +39505 f17ed3b62adab15669478378b0d081ccad4d29f3 legacy-trunk +39506 ea53e7d98b006aa239f933431735825afde35697 release24-maint +39507 fa73765e8ef51d857369af1c3759fc10d284fa7f legacy-trunk +39508 46f0a44f49e643fe7ca2c2ad35e750dfe6908cc6 legacy-trunk +39509 966deac15a890df73a0e6e50bb586278bf8cb84e legacy-trunk +39510 875739d72fc1c7b986ee605de5c795b40e2a1aa8 legacy-trunk +39511 c0d6bae35b4e78fa20f77f31637df2ab754cd0ad release24-maint +39512 e41fda9f0fd1033cf191a8adefb4b127a2017148 legacy-trunk +39513 7d0a5ac24669ab6be470ad99ac71db8a0a14ffa0 legacy-trunk +39514 81259009ba2c8f024111c7308bc77476e5470845 legacy-trunk +39515 25378bdb1b3a0da8cddcef420807cf94e06f9e38 release24-maint +39516 acfc0e22cd8fc58e6b2226a66de0dea1279a2ec2 legacy-trunk +39517 76e295ea5152c9846f1e09673ae472779b668a64 release24-maint +39518 11a2650e8568dc0a751bda6b84d7d056f013028c release24-maint +39519 bbbb7dda32f3ee0859b86233bf6f37f57cb25ad1 legacy-trunk +39520 d79af065115506fbd3083eb0832341f3eb595e05 legacy-trunk +39521 b19cf73c54a78001d6d6d5a13dfb05d97a71b2a1 release24-maint +39522 724bbd489ad4727e9052c69b56341b2b5b2cd2a9 legacy-trunk +39523 57f630a9de2619616f2b20ae1c357fb43e012852 release24-maint +39524 9b7d117eb4bc96dcca74c6c8cee8abc91849192e legacy-trunk +39525 11744f7bb47a82d78b369f9be37e6f7300c29eae release24-maint +39526 68ad52b0445bdb7f228aec771cf7838b51333947 legacy-trunk +39527 41413f23345b4f75e045671480b809cd2a3d96ca release24-maint +39528 8a6c99f865ebd39cfe79c50eadf8415994f1db5d legacy-trunk +39529 8ad9a2fa8eb2a6078f96af30c83e2c559dab1eed release24-maint +39530 bfbe2c9b121598b6e5a3fc15827f2041440e741c legacy-trunk +39531 f235e8ef0d56904fe204adaba7375dd7272a62fc release24-maint +39532 07eaf60f75650b170f35d39b93ae5f1da29adbe0 legacy-trunk +39533 b8d1b45292071163368b57cce71b40c3e37930e1 release24-maint +39534 ac88044cde486b00a3e478d7785b7fd7ad32bdf8 legacy-trunk +39535 dfabf0c7f1adfd17c4526cf2bd9ca3dcb802fb87 release24-maint +39536 c8655885e4065d355338349090913f85caffdf35 release24-maint +39537 6dbfbee585cc83fe33232646c6d78a8ca84bb5be release24-maint +39538 152ae7193c9a77ea2ba0c87c4c74760d80be6059 release24-maint +39539 fa0881fd49b7a9505e176965cfa7a7c864704926 legacy-trunk +39540 8bad1bfc331992c8e1f349ed52ba9e1645f99b11 release24-maint +39541 2691cbdae59bf35617f1a336805063edfaf4c27f release24-maint +39542 90930d2d0c191076a2a027d59dd7f27ef33495bf legacy-trunk +39543 35c43674083a9a34133e7a0fa24f31227441b1d3 release24-maint +39544 1b25fe8834aefd7ecbecdb9003c4268497b59abc legacy-trunk +39545 fd51ce8d35ab4fd42af5eff61d02dcc270b443c1 release24-maint +39546 cd31027a7167a37548f285679c5c967a0bbeac6e legacy-trunk +39547 d3ae7930cb939533fcffd44d1695d9362ed0a4c7 release24-maint +39548 73fe2163f0b30d33a026c8ba6d25290ea5259062 release24-maint +39549 5a6c483ed689f41058784288207eb990da31046c release24-maint +39550 c28d0ed86ff058b98100e6b771304d42d1151698 legacy-trunk +39551 8ef500c4506c72b74bf9fa0500a959fdd3d50ff5 legacy-trunk +39552 f4c2c61cb560959529941272e180de463261e25c release24-maint +39553 37859c6ad5bb5f7ebad19a169d98dea426c12152 legacy-trunk +39554 52c65d73fb74019f6f9ab547c0fb185109b2b0bf legacy-trunk +39555 098ea1e18e8d97604d8f6f18d0af9da1a8a35b90 release24-maint +39556 0ae3072127550ae24b742f1b32bcd1c4152b12fb release24-maint +39557 0da3975fb0bbfcf782d8c0f67e65e502b106a747 release24-maint +39558 e6119d577cd35fd8d5385e50cc1fdabe4cbe4795 legacy-trunk +39559 02a8c0643f5bce266beab750ab91c7036ef7817c legacy-trunk +39560 1cf17037a2ca8c758177cb7daa141a038a461823 release24-maint +39561 5f2785722cbad03941a21677167c796f73f3fea2 legacy-trunk +39562 4806cb009a9ce623cef8c1a11aa98013d341a602 release24-maint +39563 9a2e20318c9f5fbdb78a91944af088d9efccd3ad release24-maint +39564 620992aa0a9ef583d36bf93c4c119cdc282ea097 legacy-trunk +39565 b68b135b455261d28299707c66e530cf908749d6 release24-maint +39566 bcd05cf2d61ba80ce9b574b9387a2db32553f6e7 legacy-trunk +39567 8ccad732315f892db53b3db519d77e8d004e4acf legacy-trunk +39568 afdadd56919705c1e191951f2bd4cb54a3b70717 release24-maint +39569 5c0c06e226ec06ea64f4a906d3691e6070808a7b legacy-trunk +39570 40ddf366f5a152f6bd20e9820921929bd92cf341 legacy-trunk +39571 9b994c67e909c086f0261711b99b64a774b9101f legacy-trunk +39572 873a1b2efdc736576da0484814cf656089c01ced legacy-trunk +39573 2c280e4661d0a069444ca21014b5a4ad566ff7ba release24-maint +39574 39eb6a221cf3124221a14b38e63d4991cf0cd8fb release24-maint +39575 21bc6262eb9920ac8c2e57ea1e3f0bfc7de6a0a8 release24-maint +39576 89cf2e3fe728a68f4bc66fca9c0af79e0e085a9a legacy-trunk +39577 f86cd27786ab319b7365510b560503f665a0faa6 release24-maint +39578 77571f71b3e67b0bf3f5d89a463cbe30502b930a release24-maint +39579 5a8bf8e7d0102c0e0b1efdd81ad00b72071f21be legacy-trunk +39580 a670a5dd1fc6aa917bb62ad45604c3fcb683f49a legacy-trunk +39581 23dda92de9938a28ff555ec8138f94460b312051 legacy-trunk +39582 1f236e598ae97631d4db4472302500ff33841c3b legacy-trunk +39583 af3a06625a6e59c2dbf92b40eabb74bc2d45681b legacy-trunk +39584 35a99eccaca679326f5e5c990b3b9f6a694cf9bd legacy-trunk +39585 ecb78863a4ee7f31432b79fcc1436149c0550dc1 release24-maint +39586 7b2b8db9813633507ce5965df387d2455b7e04b2 release24-maint +39587 c6d7f1fe9d1ebe91a6abb8f325e0b8ce5920d8ff legacy-trunk +39588 90bb71122257c1123cec89b5509b7b9281efcf46 release24-maint +39589 4d1bd9d0c006db663ece579c8a240ee6ba37b073 release24-maint +39589 d02d387554e200befceec999b788f4593b434b49 release24-maint +39591 70927c799a21e26b3b5cd0f6fc105cbaf971cdf4 legacy-trunk +39592 8ffeedb606d330cdd3a4d16ba676a1a6ea30b4cc release24-maint +39593 6f3d209555eb55ff48f55a1d945d4eff0aa21e48 legacy-trunk +39594 72660c0866a19f0036e72081798bebb8f6e1ef1a legacy-trunk +39595 774bf9a38b2ab94666c5fb654da4e24e24a5ca36 legacy-trunk +39596 17a82ba45452ac1b5a12de9ddd433cfa639a375d release24-maint +39597 399c41176bb79a2f2485c9d4a3807a8c2095d4a5 release24-maint +39598 a95765f6928251d86f0d1357eb46641ac4833912 legacy-trunk +39599 4e0d2a7f5f15441bdc152fb1e0ca4e00affc05f7 release24-maint +39600 777b29d913a622a2e99f83a7eea23eafb0f6709a release24-maint +39601 495e7ffad7e8cc0647bfe2dc304e90ccdefa3fc0 legacy-trunk +39602 687faa9cf6eb08c162ee392f5504f488bc326630 release24-maint +39603 c260d3b7d5829830403d15fbd54a744896048c89 release24-maint +39604 03cfdcbc4d1f3a353dc38507fa40c2ff73d2a0a1 legacy-trunk +39605 45aaa436b945126063124220bbd518ec88837cbd legacy-trunk +39606 3028e30aa83559035cef272b47dbb0b7dbb07100 release24-maint +39607 27e1426b7f31d642e4114a2fbf613d8df6484f24 legacy-trunk +39608 e22334b1da67fb2916e686d3c4df9ce63b5c97f7 legacy-trunk +39609 7dd4e6cb9d275283ec580ab71cfa3c619e10afed legacy-trunk +39610 68dbcbf0516c57658620793e28463a7822089965 release24-maint +39611 e31564c7bdbf7a26b3d831ae808acfac56171860 legacy-trunk +39612 1e7b755194a4ddb7495e4081cea677a9f5131436 legacy-trunk +39613 407ac499a5a391f660e4cd65a3de3e9f192a2592 legacy-trunk +39614 e0a9f66b70146716b6c174effe16438dfda9e472 release24-maint +39615 ae536e66e86f5f01c18cd425e02dff67df771c31 release24-maint +39616 b64639cea3ed87fff4ec0e4a92b6e4315bbb7ccd legacy-trunk +39617 f5bd7ead16c472371d55aa19ae240368d9ed1f6d release24-maint +39618 4ae7daaf0a661188449ab83dfa9a376cdad98a81 release24-maint +39618 8d37276fdf077d6d23d963d3f7f95381d00f1926 release24-maint +39620 6b42eeb5214da8a0322d3162e53fee3192b97cc4 legacy-trunk +39621 8f2bf18674cbe932820f3e9d40d2a283a1dc9bbb release24-maint +39622 d33f4fc84d4af2b19e63f603235a914978becc92 legacy-trunk +39623 c3783a12a1bc19d3d0eb28124877e21bec28a32a release24-maint +39624 ca844517c84952c456430bd55b604b0370fef574 ast-branch +39625 6a20831d357d57cd624bab90de3733e51eb51313 legacy-trunk +39626 9ef25c89d0d6c3069cd80ab9597c0a2700e16157 release24-maint +39627 b5a01282dadafc99cca4ea6112344053db86781a legacy-trunk +39628 8eb75c28ed941c432f5d13dc150fc37cdb561082 release24-maint +39629 a2cf25642c8ecdf96a886f423fd862ab7351b8ee legacy-trunk +39630 cba10c6d34e38593e66d6a968d51e0b87be010b8 release24-maint +39631 a83e8df1349862af3184a6219de547efa7fef7f0 legacy-trunk +39632 1d4d85c735e7c4f8a19e60eda62bcb5114fd2c67 release24-maint +39633 6d04cb2cdd4afccaf588c4eae4aad124e5bfe99f release24-maint +39634 85651eb3d9a90d121a0f42a5b04b7412f1536e0d legacy-trunk +39635 67848c871768b559c3f234a94f96bb4ffc2d87d6 release24-maint +39636 5611db451a39ba2ef7b8a50bc2aa245860cbb5ef legacy-trunk +39637 0be00775a80c451c051601a9c405d764aff3c431 release24-maint +39638 dc5d706283d62febc4587abd9b9c292be2202f3c legacy-trunk +39639 b8e571e6de2e3e5767eb0eabd650a2b9654e7e62 legacy-trunk +39640 e454d6c1b3c1f3fc3c31700b870bac343c4e7b1d ast-branch +39641 630ff5440dfc6e943cd43135c6e85b7d96924777 ast-branch +39642 753457879425590a413596088032a1d8bf5f0c11 ast-branch +39643 6c3d0a0c19560087b54353d2546dae41ec8cbd8c release24-maint +39644 84541731b166a6c4553aa8cfbc9df797f01f9728 legacy-trunk +39645 f6a209b6950cab73aa022b99b57b252ccbfa95f8 legacy-trunk +39646 ceed33eac43616812a2671eea65d83eaf8f97f46 legacy-trunk +39647 5d5236eae8bd3d60df8038cf597e060634415d4b legacy-trunk +39648 412d21e30c130e2276b9847089a617548fe87ce3 release24-maint +39649 612a12178e47b7084c6e103d5095e0f1ef46912d legacy-trunk +39650 d14813e78a500fb2b91ac54ce5ca1d4d31903d67 release24-maint +39651 9d43381c184cbbbc7dacc2a26ed5e0085a409a9a release24-maint +39652 e1df48f2847ad8e8ddf602b7f29409a68ec9af9b release24-maint +39653 e9bae2febac800e03bcbceb7b4e48aaa3d097250 legacy-trunk +39654 f0951fdaed37c0af33858da0a7fd406eb146ad44 legacy-trunk +39655 172fcd9c1952615c81fd0ca81d8e10e55506fcd5 release24-maint +39656 8bdd8c2c6c495f8a6f58a41fd54a6d63216d49a7 legacy-trunk +39657 3e0bb7f75ab765a9c8a57b9011b8219a7f615c09 release24-maint +39658 e466c0a550b88cb87ba42a51bb37becde287b196 legacy-trunk +39659 02fe5d496fce99246c63b5230a272f2dddbfb4ee release24-maint +39660 6907e471bdace400d230a094c6f630676e4a24e7 legacy-trunk +39661 3be835350082862b5ae6883deb400f2dcc3e0eba legacy-trunk +39662 f9879237895417b7dd8528119bcf4867d8a85e58 legacy-trunk +39663 2985e42eb2d2b091cad18a62f3dfebb4b995f474 release24-maint +39664 330c2307505419106f716736e01231500ff1bc2c legacy-trunk +39665 2fda7b174794d9c0078e9b6575fe08fd41fc99d4 release24-maint +39666 548bad215429f39af93737ea195b95dda02a82b3 legacy-trunk +39667 e2995563610f71794eedc5f9abcad021ce08b8b5 legacy-trunk +39668 7a7e879b2aa1b2e0591eb544f98a4c6b8efffbfb IDLE-syntax-branch +39670 b61cdd4f888bf9f6128f3662251358f11130db14 legacy-trunk +39671 08a551e7561cc2b463dc7725afa28bd2feb384d3 legacy-trunk +39672 95c0dd11afa78d2a5fe18c642564bcab744f1546 legacy-trunk +39673 586b48e3cb98a033a3d731120abb016ef80a461c release24-maint +39674 921afd08a5dcbd42012987e8b2b7cde39f0d8192 release24-maint +39675 d0af7b098a99d62eeb2e67f6173bc28706b09c4b legacy-trunk +39676 923723a9c43cb96e818532e032a19570f515cbce legacy-trunk +39677 3572249c1e7710294288d1cd5996323336e4a173 legacy-trunk +39678 d43dfe695d08a4a743b6de251779a2348a94797d release24-maint +39679 e16b6bdf3f899a7f76b8173db5db793d9e4a4e3d legacy-trunk +39680 22a720b35314d01299adaea6b2fa0511a3b332c2 legacy-trunk +39681 e78e84f1a82487fcc453ec3e44d1ebcfc5b829a9 ast-branch +39682 76635ab7b7074d856351bbb87d34df97fc19eb08 legacy-trunk +39683 a64be138f0f6c48060d643de894f92814bde5305 release24-maint +39684 6e04a557ae20cd6efc2dcb6818c7b147088e0cdb ast-branch +39685 4e398837373c9ad6e3751f59d8a347409057170c legacy-trunk +39686 aae37430f525963477a0c5aac3a13bfa60d634b4 ast-branch +39687 8567eb23e65deb4f3b136bc1957ed0db3c93c632 ast-branch +39688 0e69078cad900fd37a2553b7e87b09b33ada4081 release24-maint +39689 5685ec59f35b8413021f143d8e846396d1cfe560 legacy-trunk +39690 aab1d5fdf64df656edf3a25f363e2d127875201f legacy-trunk +39691 8e86dbad8c714e988c8a0921b8b1f7fe13aaa1b8 legacy-trunk +39692 59c4a65642c567ad80a38c5547d5ac02847869a9 legacy-trunk +39693 6e70ed6dfad67579709b22197b7e09910e6f6a4d IDLE-syntax-branch +39694 e9e30d92871e9a27aa3a6744502aaf72f6ac0889 ast-branch +39695 7b35c29040c992fabe9424e347edfdfcec31e167 legacy-trunk +39696 7b7eb3e7620df9100188b3b9ca318a6623051346 release24-maint +39697 72febee58e7b9e3680805ab6b19a43de2ce232a3 legacy-trunk +39698 c38e4ec7b7f11d56e3cca3436c62c054a90af0af release24-maint +39699 7e7989b6ac36c4b915597a8bceaf43f0d3c0a03a legacy-trunk +39700 5a62686f7dfdf64eb6c13ef33ea2dbe35efff7a4 release24-maint +39701 307b7eee3e3d922073a66c7be48c9e8ec3ea15af ast-branch +39702 d947fbec35d3f04f148de4f0af4ff826f905bb3a release24-maint +39703 72595a615571b40671e933d2331e72c6c172fb41 legacy-trunk +39704 c3d64bc7f6962286d4a40b08c75343bf357744f2 ast-branch +39705 57f62e5a392166600e4c076b605f7899e6ac1b2f ast-branch +39706 c7a7e3d1bfa70a4208dd09781bc591a709073265 ast-branch +39707 ac7f5407246f40fd3fad48d5069ef5916aba5e63 ast-branch +39708 ef7cddeb327cc8c4cd70555d45014ecd3b7e3379 ast-branch +39709 b1081c495d46733bbfa7d2bca3b132080dda47dd ast-branch +39710 1745c2edc514d9232ce54f951e97428d0eeafafa legacy-trunk +39711 a4429b7787d44e5b9b2f861251e20d1c6eecfedd release24-maint +39712 2342cdb926956b2d8d8df3053c575f0e6c41feb8 ast-branch +39713 ece5eb6f2b5a33dd28a9165df2b11564dbc64fe2 ast-branch +39714 3bd74824a3acd0a1e406b539dcbfbda37b06ed49 ast-branch +39715 d2044e5a06c7e638a2ca3ab70f7d0251e9b34bc2 ast-branch +39716 a4bec7b6b6405b3eaac28e45f215e84dc92a51c3 ast-branch +39717 30e88a175fdc90c797518d69dc9c3ebf67d46994 ast-branch +39718 525dac0d285bf2e248800c523decbd2d0d606a7e IDLE-syntax-branch +39719 76b91acad5e88ccf724c4af144e36e48b1ace037 ast-branch +39720 bc7f6deab340ae75738462ee7cbaddaf94e9befd ast-branch +39721 dd29261cb43820ebd9be860c5a4e75328bccce78 ast-branch +39722 9eb441a707246bda1e7af1db38101ea61930f15f ast-branch +39723 cda87357185fb93cf0a7930ccc8c171f3b2d7d95 legacy-trunk +39725 5669307c131c53846656ace9a6f29c1a1699694b release24-maint +39726 42d3a4400d3866ca8645c0fdd6463e23d8ef7d1a ast-branch +39727 21611ff558a502383b569ebab924db5c9a50f473 ast-branch +39728 ae539af4afc501d4396d12ef60cb4439b44dd004 legacy-trunk +39729 60dfe2f55c0f53fc649168a751edf3ff499b181a release24-maint +39730 66792a2ef3dbd043ca4e96d3741b47ac64f43945 ast-branch +39731 06ad6345649fddb6a48aab627c8ddb05ca99e72c ast-branch +39732 d7f40709e158540dafa756180913b4ee5f492ef1 ast-branch +39733 bb5ba54359e5bcd382f9989720074a50ba4d1423 ast-branch +39734 496eb5ded5e45b3ec824d332f24df94ecc09d9f9 ast-branch +39735 c9fa85b4053b75b792494688cb53639c626583fa legacy-trunk +39736 eb2c09d87870183f79f7449eb64c33ed6c8b0d86 legacy-trunk +39737 fe10373cf8a271ddabd7d59fb1b8e4ffa33909fd ast-branch +39738 83f245f72832e391f8fea4a2d4d7023daa6398b2 ast-branch +39739 536590c32311852a33a188fcd71ed6dcc8d6c9c2 legacy-trunk +39740 5747ced35424a6f1065a20972d221eb7bb10c806 ast-branch +39741 cb5cc48b5c295af082a9775047fe5fe4ec97e2c7 ast-branch +39742 bc7ca16334bab54ad8811bb0059871de59dccdd8 ast-branch +39743 9ed43e637ae7b5aed5b1adc8dcf9b8fcf7b113b7 legacy-trunk +39744 6913abb7047aeff18a820b33338e105db9abc6b2 legacy-trunk +39745 8bec120dbb16a67944eb3defb4a6623943fd9114 legacy-trunk +39746 0b8268e0d70e778299aa2f2f9c884c478aba1f6e release24-maint +39747 4f2843dfa23c79ac27a8ea60235a814e0d2e88d8 legacy-trunk +39748 d1201fae06a850073e153a3e7ceb56918a03552b legacy-trunk +39749 dfb8fc377b58e68de60d78da297b0e7744d12e99 release24-maint +39750 ea6808ba1637bc2787afbe3d02f5e6d59233affd legacy-trunk +39751 7ed87050e1697466c2214d58edcf30e35e2aa229 release24-maint +39752 5390ddc77eb866dff372d1aea2d2b51be74b329a legacy-trunk +39753 e018fce14f1006541e10b8413149cb0920d38dbd legacy-trunk +39755 d0399379d0cb264c382313030c343275e43ad6ca legacy-trunk +39756 b32a39091aedcb6b069cf0cdde6e9304cdc01cf7 release24-maint +39757 3716051830c2cc5ab0d5c1c8229e05051d4dc9f7 legacy-trunk +39758 1c4d192f1568df8cae2d35141a729247564a3cfe legacy-trunk +39759 05b715822ba596e2755555c515c8d372c08043f0 legacy-trunk +39760 e7815495bb279b192ec14de53acd9aa99d3e585c legacy-trunk +39761 407c3dacbd7c305fc674230286a27bab239e1dca legacy-trunk +39762 718e9de22ea725e25b40fb5785baede30dbec1b5 legacy-trunk +39763 fdcb58cbff4df0d6d02176fee9d5fd2084160612 legacy-trunk +39764 25ba2f3313c91cc4e79f6773beb2b57894c26a74 legacy-trunk +39765 17828a00a4544fa3fb42065bb51d60be8f56513f legacy-trunk +39766 a7a493db62313d033bdbc4c65a8877f34b956edd release24-maint +39767 e56144704808d7ce6c305c0b4f0514e1ebbdba51 legacy-trunk +39768 47496e7dbf2fcd3060c7901a123fc61b1c2762fe legacy-trunk +39769 81ebd6e177a3f8a904357d8c070a707a3b83004e legacy-trunk +39770 14409b820933fc77bd5cab9b11a3aef25a16567e legacy-trunk +39771 c28c1a37b86ae180081963099264685add54c865 legacy-trunk +39772 b72b3e517a4de7a24de9b233e7f5c659b54740e6 legacy-trunk +39773 eb15cdd4a2f1001792074ca0789026989452ff82 legacy-trunk +39774 e0e320f36c9363f6d5f8bfc4073dd6c527944f99 legacy-trunk +39775 d91ed7107fd2da03d356acbc5243a68d0b505851 legacy-trunk +39776 79c5b817fedc1157930b90e01f23fb9606ca35ce legacy-trunk +39777 7a5ac203154aaa2d7575a1bd925d8843d7e6e202 legacy-trunk +39778 3f63341d9312f69221d6670d5cfe593d97147aa9 legacy-trunk +39779 528e038839a2aae7d3dea2e57b8f454e76a98e02 legacy-trunk +39780 4aaf506a7d0992b8c154a50ab56438d3fdf2f1e7 legacy-trunk +39781 f376221bbb76c1d272e423840c348a1c5c23dbb9 legacy-trunk +39782 34ef9f138c303b762ad8682a0ba4850b05b9336e legacy-trunk +39783 7ee6880cb16f2852e07f0df513d72d4e2e175eda legacy-trunk +39784 576b9a9ce5797cf7c672a97456d6921da102da94 legacy-trunk +39785 7d065435e86c1b882cffab0cf4dc90cf87277f38 legacy-trunk +39786 9a7c2d1e56de31daea20fa349b21ed0049decd29 release24-maint +39787 044d8e0f65f2fb9e361157ad1b38253171c25fd3 legacy-trunk +39788 f64fb284ed154d487295a890ca5f2824822243fc legacy-trunk +39789 0aef351223daed984c385d258d6a6ef95cd764bf legacy-trunk +39790 66b9075d142b8ec53b46a34fed98d76a47c16a3a legacy-trunk +39791 144b52535434fd35e18d7981c71d8e63b2e39149 legacy-trunk +39792 893be94c889182a9091b7920adb4e3d1d377247e legacy-trunk +39793 efe60730a1eeab6d2622a0f2a85d66fbdcf7f9b6 legacy-trunk +39794 95d0a857ae51fa15a59ec019cef98033f32ba754 legacy-trunk +39795 19d796bd740f4a097496621c2a83910a572a0080 legacy-trunk +39796 72cb041ccde3ac7beb296d49bfc203a5e43af7d1 legacy-trunk +39797 31d36dd5959ce9d9e624bfa22ae2d50d6d2eba53 legacy-trunk +39798 aae411352fbd6a4c30b9745a723bf7868bc0fad5 legacy-trunk +39799 b1a0e1a2b28facbbeea7bb7986d08d0954953171 legacy-trunk +39800 c6dbf88e4b14b86d0216f4c775c5248e3f43d514 legacy-trunk +39801 dca70f4ec77b674294803069fab50b71f7800794 legacy-trunk +39802 a0bb0fd5e143a9c84869008a2174058413843b12 legacy-trunk +39803 1661e73c07aba399998d830b57879754bcbf1020 legacy-trunk +39804 db9e2dea4c113d6be9fbc7180a0f982b89295082 release24-maint +39805 19a37a9f4ef94b26c1670294edb7751ebba9beab legacy-trunk +39806 f7b0cbea905b5b348d10b727952d2af3cc90ee3c legacy-trunk +39807 1ac9ed1b5a03c19353d76bb7d87d4bb4b1ff9b67 legacy-trunk +39808 b8b13b1ffe7571b4af5f5bc8b79af13d02823e2e legacy-trunk +39809 914ec0afa51c215b1087988b23c9277b459b344d legacy-trunk +39810 39f3630a7124d90f7b579f49624662b38f54c79a legacy-trunk +39811 dbc988bea55d6f6c5145651db6c597baddd6a821 legacy-trunk +39812 fd630042aad43decf50af64224b6a07d134c0be1 legacy-trunk +39813 3778083fe2c862c40d93ed23c6711b342316c0ee legacy-trunk +39814 857f68fba27544daca328b09d3ccdb67c3a71e2f legacy-trunk +39815 842caa245917d885cd9c360f10c8dd13802789ad legacy-trunk +39816 4bf6459c8e3bb9643326d5ab9d61724387fb934b legacy-trunk +39817 e17a307b1216940905db3f1cc33290a7d096bb02 legacy-trunk +39818 8daefe84994934de3e6584fcff30538d05f31c8f legacy-trunk +41338 193305c9dbdb3549ad5963f5f82da747a62c554a legacy-trunk +41340 76a6e908624d7c5cdb7e77f77abc7fe64cd67d95 legacy-trunk +41341 52f65898874a68885b327b7f7d864c69c3df52c6 release24-maint +41342 44fe157255bc4cd8a05f7f0600c8fe278f2e03ac legacy-trunk +41346 dfb1139edc55a1b0f7f272ed7735cf54a40046df legacy-trunk +41347 c2a98ba371c8a90c0bdc1a42c7273992288279ae legacy-trunk +41352 88523017414c1873dcf3c2c158159f9dc66fbf19 legacy-trunk +41353 39b1e74ba17c55471896e1a4404512698620ce82 legacy-trunk +41354 9b0dd1f53ae2186d9f28ef2085da2d6bc02ca732 release24-maint +41354 abbfe91787319b7f94543f40ea7ba15d99ad6e0b legacy-trunk +41355 2e25e98323a7f651fa925c54074cda92088be5d6 legacy-trunk +41356 13deec5281efcb20a5d424300aa48a0e4164c63b release24-maint +41357 eb9a39c1a78bb73edf3f1e3d94f4a051ccee81e5 legacy-trunk +41358 a000f322dd05dbfabc5d661f355ee769325b15fb legacy-trunk +41359 ed247f6e6f0754df80cce593c9e187d568f26e10 release24-maint +41360 20bb7ff1695277bccda6e503af1642307527857c legacy-trunk +41361 a497e10b23e470cc76b36f27ee704ae50882cc2c release24-maint +41366 69034a08e5a3a34f9f9e72a84a77407764dc60a9 legacy-trunk +41367 b652f535201d6fcdf74b088934e3044248202737 legacy-trunk +41368 6cd110743bd2089f0d653aa96f29d4d57ad3acab release24-maint +41369 8b02d8a5e707f26f0242f967c3ff1505d1aecf5f legacy-trunk +41370 f9e50ff96ff85ebf76b4cd6ac8b367121d5e06e3 release24-maint +41371 cc17a582518aefd42a33760e958fd0341760db27 legacy-trunk +41372 0ecbffbadc0056823e593f217aff3524fd8425cc legacy-trunk +41373 ab3d1e6a0237270e2b015276b237d9f3224e8baf legacy-trunk +41374 bffae2f812f74aed75b020a23cfb2a48d5bda392 legacy-trunk +41375 f3caf80bd66d21ba8294a064932434c9b1250c8d release24-maint +41376 029b6c5f258e5ab46be2d20799967368c30269ea legacy-trunk +41385 646ba76115acb4350cc30f5ec5a0d78ad67ada54 release24-maint +41386 7bf48400f24a8e7d9144cf2e6ddfcc1170812051 legacy-trunk +41387 9b1efb0ed63592de12d5befc6745b629ac15db7e release24-maint +41388 418a61ead11b85debce3fa51a2dcf24f2aa09e21 legacy-trunk +41389 20aa1d5b3b08327ea643a2e793183b13b620ee18 legacy-trunk +41390 fd08918394f9c3b11192f658fa46bef166064c96 release24-maint +41399 a8649869cb60bbea095dff5641acdddd595e7522 legacy-trunk +41400 49baf8b04681255af45c0196e14099e57c645e8d legacy-trunk +41403 de090bf67a5989dbff25daa55deca1eb85c58ea4 legacy-trunk +41404 ecf9f4ed109e5cd00dea622b3447787ec7674863 legacy-trunk +41405 6e2b282434d49510944fcd14292c984bb1779be2 legacy-trunk +41406 f85dc31f1f3e4fe0f86485d3dbcbbaaff5f34a22 legacy-trunk +41407 d812e39ae907a7d5991f865fea702c93660ade73 legacy-trunk +41412 caea0cc09a42f91c9166c47976d7c1c219fca299 legacy-trunk +41413 1d1957f55626790dec8ed0c1cb831b7b21d4f77a release24-maint +41414 fa1d56947301307faa67086e4293cc33e0fa3a4b legacy-trunk +41415 f0e3355235a5e525c82fee672d61a519e1e8e93b release24-maint +41416 5f71a50289a2556bad7cdad0798bbdef49fe9f69 legacy-trunk +41417 aef8526fc9bba6f9d3ec0e925bcb048d7384b609 release24-maint +41418 f6d8b0de134a20138e495fb2de0fb2dd7757d426 legacy-trunk +41419 413c68b314871ea41a955358bd5d01e30fbccb62 legacy-trunk +41422 ee3e0ee1edca7d3482c919b0729b500af79781fa legacy-trunk +41423 2a92d5ce0c0d8c48f7ca1dc0515261df1ebe7591 legacy-trunk +41424 7f37ccf698cf5b014632d68c16da9f262a32005c release24-maint +41425 6888ddf1ea9d53d44faa59174eee02158d23bf3e IDLE-syntax-branch +41426 429f537cf6d6b7e592796f14251412ba3bf1e7e0 legacy-trunk +41427 4462871a6dcec013db287bfe0850108dc63dfb97 legacy-trunk +41428 87e2210e07f49ad5d50e5be9cfd64d20fdd0e085 legacy-trunk +41429 6a018d8c59c91e046cb671d465982966859e603c legacy-trunk +41430 6015df136b00d1bccc412cdbe2088b1c04556e43 legacy-trunk +41432 9b885c934144b7055e36bd617a0e0ac8e1207d14 legacy-trunk +41433 3e634e41b6ec3c79701a2acf2bb16bfc36d0b660 legacy-trunk +41434 6867995a18a7da900e79d220765fd18aa5cf25ba legacy-trunk +41435 79f2ce3201925c9d63ecb16448876f5dfabefa9d legacy-trunk +41436 dbc93ee53e2feffcbfb9eee4157784b3e93506db legacy-trunk +41437 600bbba56f9bab382bd805c54057857aaef0933f legacy-trunk +41438 9f73dc0953d20204a549c8c781a4c4884b222cea legacy-trunk +41440 f4842f42700bdb7f73db88c7af633b117f4a893b legacy-trunk +41441 37da969ad116c5ba9b7355c23f3bdffa070fef08 legacy-trunk +41442 9003836a036f13352b5bab1b2ec7372a20d8e24d legacy-trunk +41443 f531c05cd240866e460eeecdd1001b86eefdbe56 legacy-trunk +41444 947656630b128dfe8ee207c76d6ff44a2156a1e2 jim-doctest +41445 3acb6b341075c9a6e834626dd7891b0bb94e7ab2 jim-doctest +41446 4ac3fa158927902307eec2f90934766413e4bf7d legacy-trunk +41447 583ce9c0c664ebba98d2b71a3053328b548d6693 legacy-trunk +41448 76ed7fdc9d85bdf58291224c0592df2c1028b6fa legacy-trunk +41449 44d63eedfacaf0470f3254269e1a9b35db8c04ac legacy-trunk +41450 086caccfff0e766ac3c7598c0ee9e3451ec28ade legacy-trunk +41451 f334efe76f6a5462025bf9229f2e21712fd845b4 legacy-trunk +41452 6d8ce5570cb7020cdcbc030971b6d1845258b4ee jim-doctest +41453 40f3d79b21250a415f799d24112fefdd21bc4631 legacy-trunk +41454 94a409da4bd40b7326f71aa6d865453f556a955b legacy-trunk +41455 1f9d4ac35010282312b9af388939fe50efc38eb1 legacy-trunk +41456 0d1e2e73c3ec03377a91e6f1c9c4fc5606746f18 legacy-trunk +41457 29420bd3b5cbb18a4e892064c8103f0efbb1a00b legacy-trunk +41461 3236b5fb1fb70f30972329f9ab6f715388514694 legacy-trunk +41462 e716483cb3f914cb196fad626b4c168a5d4e7cd5 legacy-trunk +41463 03867fc6fd8078cc3b4b569ac372c30f95e6fcc3 release24-maint +41464 5b82120cb49d6122dd0aa6e3bff48a2f161796a7 legacy-trunk +41465 f99d6cb88f6f208be961f658aec91102947582d8 release24-maint +41466 3956d620af09ba00d067ed101c33890e9b881dac legacy-trunk +41467 4789e75a6fe7d062062d22a593bd2882157c061b release24-maint +41468 e2473c4f2ee0d7fd7edc2bce12d1676719e6586c legacy-trunk +41478 f414ff287823b60ff327221fe5451ea1cc9a62a0 legacy-trunk +41480 8fd46b660e66950b69b6a49d6e357b1f610518ae legacy-trunk +41481 71ea6b7f58ce38d2250509a7c54adc7fc7ae1d07 legacy-trunk +41484 825655bfdf2064500eaf062f7ef25adfd1964b90 legacy-trunk +41485 044542d705c2caeeda9fb5774fb415e4d31b7320 legacy-trunk +41486 fe4c627b20965e9059643ecf9b97178f269035ae legacy-trunk +41487 e4a5a84e5ebb13973dd350fb01ef283801bf45a8 release24-maint +41488 ce9ba01eb7ed5ffd13be21a357674ec8daf6d702 legacy-trunk +41489 d72db82a70cd7adecc6b503451cd6049be366849 legacy-trunk +41490 df5928558a57b40fecd691b86faf8fa28336ad21 release24-maint +41491 e9be9e6188f4d4e326d7c14eab4e72e0e737575d legacy-trunk +41492 2b0cf50e77ec98a154e75f8f97cc084753bb7d11 legacy-trunk +41493 9fd0cd362affc7092fd6d14e2c1d8e77dd13a12f legacy-trunk +41494 800f48a14a8a38112fa11038673cd91c154fced9 legacy-trunk +41495 a6bf7caed13570564e2c6e5eefc7cc6f08a04283 legacy-trunk +41496 1dfd5d62d764edec5c72b26f7f1e53bb0b85ee9c legacy-trunk +41497 f937387f4df121f8f3d1f90e8bc0708e66895b8a legacy-trunk +41498 4d1d277178a57ad3c5372b5dffcc0c6b28092a80 legacy-trunk +41499 4e5e16a3be0d3c3885d92795ded9c2c65e35ca72 legacy-trunk +41500 11a1bc352917a3edf1aae2ca52d01673c521c823 legacy-trunk +41501 8feaed07fccd714526bba893035cebc6777c2d5e release24-maint +41502 cf15714c9c8aa353f6d9237437bdfdcd9f74c85f legacy-trunk +41503 68b398a85a3874bd42e6e8c80dc3165c6e40bc0d legacy-trunk +41504 12f222b617b89f6ce10332ecf0a59a53e3611670 legacy-trunk +41505 3fd97de0a79083e48811eb57d2a163bf8701a51f legacy-trunk +41506 f13fc0c9a6b3a56846bb5a2e0d192e234ba56af7 release24-maint +41507 51f4ee4f97ea1abf972f83e9f40386db2bb28f24 legacy-trunk +41508 1faa306993c05af5188d5821f18eff66ff4ce32d release24-maint +41509 9fc6bf655f9cb0294b7d6cac05f88b5fe74c5b81 legacy-trunk +41510 d4a6d2591cf58a118f05a00f11c2c4e7e1728aca release24-maint +41511 e11323189c84912e0ee26e91331c9cd532936bbf legacy-trunk +41512 74e561a7e82cad7ae38d85c327e76dcfd69d67e0 legacy-trunk +41513 c94268277de9383685be863cce018a2a76dd7117 release24-maint +41514 1f7745292e50ed84d38e27b6d50798c22e0cb56d legacy-trunk +41515 f2605f5a6d46f83a79dee09fbb2a8dd06c9b00a0 release24-maint +41517 c2bba5f46ab6eae177a6e49856cf2125e8a62f86 legacy-trunk +41518 fab37136dd6da53a8a09a2990a9151e3051612d5 release24-maint +41519 9f6852ff3d191e48a4c1011dc4e2b741ef27336c legacy-trunk +41520 1e1c3f55328a08614047e2b701218bc15ab0db29 release24-maint +41521 72d5c60fa45d9edc395bd9b7d81a80282c4092c6 legacy-trunk +41522 9e630cc1d3090b9ec20e5fd77b0eba0a29403d7a release24-maint +41523 cf2b4c8ad1ad4e46f6f2e6fa5c678af6a8ae217d legacy-trunk +41524 b7c6c461a808180b0bbfb7141235092060c17975 legacy-trunk +41525 e0ddea881f4abf71c4eca4e813370b209bf9b0bb release24-maint +41526 1fdebbd60d7ddda0ee0ca3c7cf3ab3d49ee85c0b legacy-trunk +41527 7c8800b81c50c9f659acd741a88feaad48b4791c legacy-trunk +41528 2150af84a185e908d5ec58fa4a5bb57cdc4ced56 release24-maint +41529 e6d31cbf2ed38c5c1c29c6f5502b429b3e00a910 legacy-trunk +41530 bb80b8f393eff1d2e19ddc19e40f5f5200107dbc legacy-trunk +41531 79374eb6db516cca9a84bdf96b47a1785888fd17 legacy-trunk +41532 cb1ff2a85e3ddd22815864992b1e7179f17f4c99 legacy-trunk +41533 033bb4db5ae8c1a624b8b1e381d1b6baedb36d11 legacy-trunk +41534 6d6c7cd452989e5818a0ba0ebc7a7a3061dff754 legacy-trunk +41535 5c8dc5d218d8d70f2f03c898037609d113fc794c legacy-trunk +41536 b46dc6d1098675431da0afd12cce98075e22f8d6 legacy-trunk +41537 e80a1af67623f0f5729c1cdac3a71fa7a06eefc9 legacy-trunk +41538 b2eb1589c22b5137ee131dfa2807f7fd522a96ca legacy-trunk +41539 4572fb4dfbb3f0fb6ad4573296d78cb658799ee7 legacy-trunk +41540 ef608b58bfd8ad5c13d95ecaeaa52d5970fe3797 legacy-trunk +41541 f8056328f01a163dcd0e53766d2acad60bf9813e legacy-trunk +41542 b9c682ed910cdc62b37694ce0740e77247421e9c release24-maint +41543 90797233208efe0fa1658f570857c65706939ca5 legacy-trunk +41544 48353cf513403a1dc6126b345f3cae7f0f5782bd release24-maint +41545 d7f63ede495e85e2551eb71ad5943c224be056b1 legacy-trunk +41546 d7f52fc422458a16597abdd2ade19c788c0b3f72 release24-maint +41547 d9d8b2e2e60adf06ee08c38e20c715e66b884390 release24-maint +41548 75a79cc4cf7b6906c5203bbbee8e81449ea21c8f legacy-trunk +41549 9fc7dfe86f9663605be8f650ffff3143d90c993f release24-maint +41551 1d8effde82f1b43ef5c8e596157df624969b6b25 legacy-trunk +41552 fca7337710fd7b3417e474367ecf850bed55dba9 legacy-trunk +41553 658444baeba37efc8e495af7b1a2314dd5c15bb3 legacy-trunk +41554 72555a967d6a85cb37cc1f13f1b2b169c3555ba8 legacy-trunk +41555 73ebdc62bf8f0d1c913b164f310a130e6fbe07f0 legacy-trunk +41556 4d06162ad209c82a5dbce46bb4e15af91fd4e7fe release24-maint +41559 d172cba964b781ba3e7eb460e8f79ee855539910 legacy-trunk +41560 9d9e4ee4da89fefc4a670b93400ad07436bfa7d1 legacy-trunk +41561 9c4765e9dc927236525535d5da6db0e24ea6fb97 legacy-trunk +41562 f997213836bb290d61d4d1f9a38f7bfddc37c77b legacy-trunk +41563 a1b6e6784ca580e5a304a56316d5ce28cda52e44 legacy-trunk +41564 15cc6016795e03466ce815b401d3685ba376f400 legacy-trunk +41565 74e9fe068c4dd21843f4cf15e1c3dc6a4950790c release24-maint +41566 4eaa72ba19a2e727bd30b52d49d70c3829e10af5 release24-maint +41567 a17ccfc372e99a98404feb3433501e0a871e542c ast-objects +41568 e675fd295b4b9e265131c44ab393fc72808f513f ast-objects +41569 ccd8a0d28950966d853f5862a64e675bfed69423 ast-objects +41570 5b0f5d9763258f9af87fd167952f1db9bb6c2989 legacy-trunk +41571 a5d8f05baf98cf2c50d8ff5736f3a74e974e50cb ast-objects +41574 96a4e806425e41855e75cf5332ccc4abe1a50753 legacy-trunk +41575 46501490252db7aaa31dc8ca798c981918740032 ast-objects +41576 eb66eae9c2c8c34204201f3cb3a53bdbfb2c3c1d ast-objects +41577 8507d5825354af795bb5b5fe6a04691b6838d354 ast-objects +41578 9c0490997e66200ce38cfe9007409d864ad28c88 ast-objects +41579 abfeab73c8f19ccef72e8440a51de7727704be02 legacy-trunk +41580 80563dc134875f0faafc896554e9de1ce5a49428 release24-maint +41581 6f4610f692e0eab855bbe83e2da43a73fc4003a1 ast-objects +41583 7aaa09f1a04724331c3f5f55a4424b3b1e378211 ast-objects +41584 c593f33643ddf50bed50cb1ee6e07853bb459fc2 ast-objects +41585 81c944c3d13a058f5ff5c7ecec71e640202f98e9 legacy-trunk +41586 191b59909ded8d4038c37a631ae8ee8d068af438 legacy-trunk +41587 e72bc5dafe16ebeee9afb55e13d5e7ebc008900d legacy-trunk +41588 5d96a536bbf3e65d23da802f3996754ab6555d87 legacy-trunk +41589 ad0f0385c6f398fc4daeb9a20af04fe34118536a legacy-trunk +41590 cf31b2c8e85460f0d4849ded0d07448ec8f8ad49 legacy-trunk +41591 03ae0b8eb6cbfb4b1cbaef54842084f7a2ad8878 legacy-trunk +41592 e26dc3348909bf7005275486e69d7cb7867c37a5 legacy-trunk +41593 16e03cfb9a022ae1d393b6eb7ca393fea0ecf8a9 ast-objects +41594 75d536b247eaa9c18bba502f235e3520ad913364 legacy-trunk +41595 a087e7bf50f1de3784401aed04601a425da9bdad ast-objects +41596 509956a54f376176186d63763b7867fa0fb10f06 ast-objects +41597 3a4214bfb6e44b005ee12bd815ff57516ff1ca4e legacy-trunk +41598 52251224cb995e1bd7896ed98085864009f132e6 ast-arena +41599 5ba920eef0160438139057ac7966d0443b4024cd legacy-trunk +41601 8eda1a58a490370a26f2249fede4a5722519fd2d legacy-trunk +41602 f020a7ade6b5d5eec7db483cfe450cdd42b61e0a legacy-trunk +41603 1e1287b6f6526f59cb3f1d0940a7921633167346 legacy-trunk +41604 cb3ae7cea10666249c3f2a031ef4fbb2a3edc0d7 ast-arena +41605 5d031bd22307bcb4586caca95e07f2fa175c35f0 ast-arena +41606 3c21d5bd15be63ff5fdd3d48df63e86590241c6a ast-arena +41607 c89707daa011449c4159a3b5fcea2c50f226c081 legacy-trunk +41608 01bd146dc5207f7d7c17be22c34c7acbebbc6344 ast-objects +41609 c8009bd6114fa65b086bec8d18c860f971c61c4a ast-arena +41610 ee55430e5cfe778dcca66736c07c527f141c5008 ast-arena +41611 551d58b3d0cd3c76c530fafdd586386303566e9a ast-arena +41612 aa5d8e4a00a8a48638645d85440a8c8e65727a1d ast-arena +41613 c1e678e7bb12839bba38f1e874ee21ce43f5b4b8 ast-arena +41614 a29dc58a99f3894ea49e3de395bc42b4eeb5fe6b ast-arena +41618 11ee982f8c8d0e460f4f1a4d0daffaccaf9fda33 legacy-trunk +41619 d47abf9758c9feae7597c6fc4b82ee9a9eb62ef0 ast-arena +41620 c6298125039e4dfb1387bb0911eab097f2ea9d1b ast-objects +41621 c0c12aa757e709f09c76bd3176230777f2a5e2fd legacy-trunk +41622 abe1b332eaa00f70740932c1f69860c6a637a9c4 ast-objects +41623 c236eb6d99345275f9d4fdaeaf376e0aa9ddcb63 ast-arena +41624 1e69e63ae3a08b49f98eb75f013a938ad9abd5fc ast-arena +41625 ab8ab9be6f4b47ca0bb1ae69a9810c43b4ae98e2 ast-objects +41626 a29c89b4e8c63095c72c14e25ee81939990aed37 legacy-trunk +41627 8ad319f3a935ec5d4afa0f1c5e28f9ce86802d60 ast-arena +41628 51e3a838aebe7401dc8628c82166c002d9cf202e ast-arena +41629 ab431b324a4bd43997322faf9ad3b563817522f8 legacy-trunk +41631 b77edcee888ca3451a705bbf341d098d2d3f05fb legacy-trunk +41632 dbcc8912a24dec44d6eca3d09029d7c38caa6d71 legacy-trunk +41636 649c34180a0f50e005504bdf94e042fc8ac7016a legacy-trunk +41637 96d1fa36964d4e11a0273b49e4f06dc12fb957c4 legacy-trunk +41638 9541369b0dcaf048f1bd986a28c96ffeee37f808 legacy-trunk +41641 cc3261597136c6256f91ca7630ddc6c932907f3d legacy-trunk +41642 6321669f2f4d10c6bce5be35e91c17d992355160 legacy-trunk +41643 0eb6ef92c56e25796b3b29cdcc19048d13ceb3b9 legacy-trunk +41644 52f1d57f237dbbdc5d83744df6d13f464bda6131 legacy-trunk +41646 e4b621e1eda662205650ddc1146f5aa5154552cd legacy-trunk +41647 32e7fe9c23b91cb2f51188fb82851b87aa6b7266 release24-maint +41647 f6e734b1f261c546d80e9849038054bf097ff84e legacy-trunk +41651 6f502d35fc775be67b831d4db3e5a59941a10861 legacy-trunk +41652 102140c3a3614db3e9325ab021245714e1ddd16f legacy-trunk +41655 a5ad76a78f4b29a8aa7f747ddb6f16a82dce38fd legacy-trunk +41657 522e0073d9c9e8bb7517bfc69c2eb3bc3bd9f245 legacy-trunk +41658 f94418715e5531299f3ab7ccdc215c0a2c30cb37 legacy-trunk +41659 07fdb4d2b8f62337d39364a5693596f4f1ad104f legacy-trunk +41660 07ce938857e1ba2f185c58d3a2dea9761e1277c0 legacy-trunk +41661 16470b722f209c012543e8a900ed9bd714664d90 legacy-trunk +41662 40367874f8616ac70457a833f1debdbd2c3b94f2 legacy-trunk +41663 377df39bcda1f26fd33f7bf777b3bc243316040b legacy-trunk +41664 ed347c436d58966cbfd84febc140c53093acefbc legacy-trunk +41665 c253e993df8ace82161eb2dd7329ecda07c76d6a legacy-trunk +41666 68817315b74ca969a4c76e530d677b182c5e6030 legacy-trunk +41667 bfd6a6fc70eaf53d6c10be0cb412ed4ba4abfbf6 legacy-trunk +41668 cf88636cdf4be99d6bee9ceb254e9f28d33c34da legacy-trunk +41669 a14a7f614a96da4bb9bf46045928e9a078afb8a8 legacy-trunk +41671 bec9fac9f77c730341dab6788ddbdd7ef86a8f96 legacy-trunk +41672 27df2fbe270664ca2285fdd72ae3001d6d29955e legacy-trunk +41674 db1c0aabc405a02ea55adcbeac66ac17ac949af4 legacy-trunk +41677 e01d8524b6f642cbb390941ad473fd580bc3baeb legacy-trunk +41682 cd8b5b31e02aa4bb8ac97fcf9677ac6d147572a0 legacy-trunk +41683 9301a7c0312ac03b769539b02933e79332c33991 legacy-trunk +41684 35fe90325f5b7a22cfa4b124236ac0059c690f56 legacy-trunk +41687 f0a5330f2b3e11b1f570cfe4abc4d4353f850964 legacy-trunk +41688 635e0d909645ef65a3132a380caf339f7a959f48 legacy-trunk +41691 6d7d1a996a023a8da35efd99aa616c4abae1463c legacy-trunk +41695 249ffe13caf8a54c6fd6bc00dbc93c8494426f3d legacy-trunk +41696 fdf0ac36eb74612fa468b31e58497fc6d438fb58 legacy-trunk +41700 4bfcd5dcd0bfa250a59903522b36d2b51fc08c74 legacy-trunk +41702 7548d7656d89864b3ae0b3f1dfce9adfbf0a36f2 legacy-trunk +41703 de69a524f4edbc6c3b125e988784451c51a8467d legacy-trunk +41704 64c6ab5671e7d7729698b0918b17e64c481523c2 release24-maint +41705 de0c2fea65c21bc9acbed38d8a001a7e4050a268 legacy-trunk +41706 c691fd63eb3c095c6ed0bb8968946af358d9d3f9 release24-maint +41707 18d27c4447d1136cdc3b13e006ea303df66b65fb legacy-trunk +41708 c11513693cb9703ce69a614211f1329e99fd1af2 legacy-trunk +41710 98653d9f9cc39c3e593b414bbecbb8da143c4c83 legacy-trunk +41711 652bd5e5b7782f86c07c3a1521366ea109fe0744 release24-maint +41712 18f09ac619e892f2e9d5b0c835058e2297edb41e legacy-trunk +41713 a55831d32915a05f61a1cf9edac3a8a916890757 release24-maint +41714 4db17a00bdcd35307f36872011d5bd35c63c4ed3 legacy-trunk +41715 dee253a3116c456f9b86cd7781e25dd3514b5556 release24-maint +41722 4ec60111090613761e990feb6e3dcd3c8b7165f8 legacy-trunk +41723 6586cd9920e7e3ff6b1ce049a45943d01d4f887c legacy-trunk +41724 9b897fb7ac6a2216d6898cec08dd3b5106790342 legacy-trunk +41725 f893d403a98c1f819c0216a63f529393a1c5ffb0 legacy-trunk +41726 fa08c697a2758db3fecfd0d8f89220bb5d1a7513 legacy-trunk +41727 ade678687d3b32805c42699fa8cfa3b220698717 legacy-trunk +41728 321efd037859ccce83de663d9c367c2ffbdd2f2e release24-maint +41728 f1ae11457d34bc3b0c67f7cc0343e89ecd5296c1 legacy-trunk +41729 877b5d4ca368172134fa70b2144f4b0a7e9ab379 legacy-trunk +41730 731032d10159fbc0d5242453d682779e1467f579 ssize_t +41731 27919cf84dc3ddf0cdb30ec1134cd6c7c8a922c2 ssize_t +41732 cec9c2c14e28d44f40606527ce8112a4c678caa0 legacy-trunk +41733 9ec5b165fea0814a27baa8b965f1529109d11a3f release24-maint +41734 796310cbffeb2324e946ff59e2ee2e5126260623 legacy-trunk +41735 4c15a8e91ae74fec5bd0ac530dc66ff31f1fa935 release24-maint +41736 81d5995951fd410ca86dc3f74d50df16365d0df5 legacy-trunk +41737 980561958f1d3933fd621351f9add3ed299c0c46 release24-maint +41738 fb6e64eb86c038f302ce28f3d9f6f72c9789116a legacy-trunk +41739 ea083efdc96c73a992043efec7dce27771e3d1dc legacy-trunk +41740 719ba02d2e2ca63d15122b446dc3f293ffed4c63 legacy-trunk +41741 7bfb097f95976f4ebc76a3795ce3007525df1898 legacy-trunk +41742 3d1baf717c5af5d9ef89186f5037594e726b9a0f legacy-trunk +41743 d0214bb1fd512b67f1ce4ebb0ce23fc1e1196f29 legacy-trunk +41744 9697eeeaf246632ec4093a776a86a70061279a8e legacy-trunk +41745 45f7b7383a4e20a9710f52d9cd96e583726f6576 legacy-trunk +41746 de16a85c3b4cf38e2e56a78836fc7571bdd21f29 legacy-trunk +41748 15b58e45f1a1316acc15b74d17e3800e9df7f0e5 legacy-trunk +41749 da0bab5dd74089f727b86ffc72923d1ee72f73dc legacy-trunk +41750 f67c4ab304ecea81aa8a43943af5a32673080957 legacy-trunk +41751 aa7d7df853d57059066d3d5e5a9fa713d3a2233c legacy-trunk +41752 3b90258fec9f6b2e6b3c983940bca01484d6d757 legacy-trunk +41753 1ff4790b7605018c641fccc459692147a53d0152 legacy-trunk +41754 8ebe34eb3eb74802a49f2d7710f7e4d644a64d41 legacy-trunk +41755 10440bcfa061719c7b7e9eff75d21e747019ee2e legacy-trunk +41756 19d96c2d7df54e29f0ef584313aeb1bde9a11f50 legacy-trunk +41757 3f358afbb3d3f37af20323c6a70784c13b7e02c8 legacy-trunk +41758 4cbf2a010d945b6bcd955fa05187c2579970eb00 ast-objects +41759 e3eca65ae144f5dc840b846546dd4de65991069a legacy-trunk +41760 301fb0a9937144ec97b323a5b8f453eb8b5be755 legacy-trunk +41762 fa69f0fa36fef9b2e9c6a6217ce4d1334c4b3d11 legacy-trunk +41763 e14f479647481e4fd9c51836162f298c73276a9d legacy-trunk +41764 49a0493f245e3fb84e55df19e19a2e90733fbda0 legacy-trunk +41765 a9d4fb8607d29fe9f0008d47eedcdcc74e974a38 legacy-trunk +41766 ec3452840b966e6d8de2d3cfbfa4bc70f70ac20a ssize_t +41767 4aa01879a8f5a9bce8339151392f5721d5b7c47f legacy-trunk +41768 8cb686dd6e6458ff49e6f83ee5487b9c599f13db legacy-trunk +41769 7c4d5b38c55e662a64108864a34b9e4e6b099775 legacy-trunk +41770 b70b3e5b3cd1c96b7299bbb4af06a2c2d34cbe99 legacy-trunk +41771 b8b3782b2dc075be27946ba5bd0674dfc738796a legacy-trunk +41772 e90e7d9e989109a10197902cb2385d7f0714ea22 legacy-trunk +41773 35596307e786021b10b4c2ffa17b495a40acde02 ssize_t +41774 963d749c977640c19ec4e72fa89a1276d45bb021 ssize_t +41775 5a87644a39000f55c169866b2e7e6434e250b1f4 ssize_t +41778 8dd35dd6b0e89cce592c711e7b291212cbead883 ssize_t +41779 3ba230c77d40003103c9e13dc0586c354a251a52 ssize_t +41781 16e3eeb85206fda2f0bd1babb777a7fa6b382ef0 ssize_t +41782 4d1f3ec4ead5968a72e5cd94e6c5159ed77ea9f4 ssize_t +41783 d6ea1530da3004355b637e3a8838f3176add29fb ssize_t +41784 42acf33aa3c8a28f0e4803c0d316ea58d7e22219 ssize_t +41785 08e80a2bf40cf855d3f3f7e9fa50dbb01111c9ae legacy-trunk +41786 988fdf0252b794d706cd5a022073ebc290971dce ssize_t +41787 61706e581ef9ca449914c73b9f29465969f9c369 legacy-trunk +41788 f2fa40e883630b63ece3e495a54ab661e652cde4 release24-maint +41789 913a80f458e687479a6b88d529c7768dc2d3f39b legacy-trunk +41790 c80897bb5053ceed878f31ab63e340e7c023c7b9 release24-maint +41791 2a5e6009a4452703215c845df104c729150256ae legacy-trunk +41792 50fa58a24e60f4170e779596bb55e96d80c1fed4 release24-maint +41793 0cf3248e27e658a6ea48129c0a24654b46de2581 legacy-trunk +41794 3ed5a4acbe7cb3b9cbffa7f2adebfbc914ec121d legacy-trunk +41795 a93be519f9ec40724c7a0bb1814c097816d23ae0 legacy-trunk +41796 7ecc40d2058641fc7cb331fbe6c8e35861937191 legacy-trunk +41797 74bedfd0bd6b2ffca1eaa3293a14adafcdf9c6bf legacy-trunk +41798 5ce47103f847949e359d21a5016666fc49701de1 legacy-trunk +41799 3a39431a54a53ab7633cb8a92291ad72099b2058 legacy-trunk +41800 34a5154e611cc1069707b8a788095595378d6f51 release24-maint +41801 f011253d3c470d3391e0ec703078249efb0997d4 legacy-trunk +41802 630d01fecfec641e4fcac04a2c7883a8d2b6bfdd legacy-trunk +41803 56ddf3aa12b11ccbaa3cee9d915dc312bacc30e4 legacy-trunk +41804 98e2595d737f01c3399b2a26de702878c2c203e5 legacy-trunk +41805 e9a10f74cf88ac7e37c28e0978a4f1d14d4acde7 legacy-trunk +41806 03dbec0d95046e1a1f9136ca2c587dfa3f49d86b legacy-trunk +41807 76741e73bb64978c967a80fc28ac002a3c243dab legacy-trunk +41808 7d6ab9f39996ccfa2970ab0faf841a5e39303f53 legacy-trunk +41809 044d35ca34247b6e7921d8e2adb7d8a375e3dfff legacy-trunk +41810 6cb5739b71ce0b84cce171913ffc737bc7574115 legacy-trunk +41811 43bc7ca2d9dfb879bbe034ac8667f967ad74853f legacy-trunk +41812 686306a67e9b24625faf50fcc98216e0cc1ccb33 legacy-trunk +41813 cadc778aec796f235447c45557d1fcf2f5d89168 legacy-trunk +41814 6f0638e7bd23688a486c05e9300e0f809d1599fc legacy-trunk +41816 536f24e16af246802197baeef3b134685871c9ae legacy-trunk +41817 16277718ceb9ae6631f297557f5c8199bbdc5aad release24-maint +41818 23eb8677bdad138ff6ded7b389618c3733e8998f legacy-trunk +41819 76d51197261627788ad44c63feb1b642492c1852 release24-maint +41820 e4316da19cfc1d94ae8b6fd552c655b79189aaee legacy-trunk +41821 2143371bb91fc237e3f9d5c97c4a53902d620b50 release24-maint +41822 156df77f992ebefdf6e88e1ede4ad12ec036e3da legacy-trunk +41823 59a89b588c3096a36be690f4f18bdbc73d5b46a9 release24-maint +41824 e06df5e13db9db71737ecd793340a61d6b9cdf3c legacy-trunk +41825 730f84c2fddb5b11649d879aaa40b6a6ec2addf4 release24-maint +41826 49d63f377fe72d7195f1922bbced3aea9d9c8b93 legacy-trunk +41827 14f002cd0371b4a87e2faf987303489f14862d72 legacy-trunk +41828 c886cb16a15646568d22b6bad694df12bf8d9488 release24-maint +41829 f39bdbf4b0c1b7fb4a998fa7db9eebbc5abf35ad legacy-trunk +41830 a6ae102a6e119ef317c64d77cf02f62aae6a7478 release24-maint +41831 b540b6076fd9915ed8d8ae3e625084b5355b4edb release24-maint +41832 7cc215f0c09b3bf1ec27d416ba02d3ab64e0bdc1 legacy-trunk +41833 233975da247e22ae68c0f7d93f6443e183e9ca18 release24-maint +41834 8e438bf76cbbf25062a554ac8579dc696686d614 legacy-trunk +41835 101b61a9eed2e518c8c3a5f09b3ac860d33aef68 release24-maint +41836 82a52a464aa256cbab77e65df7b4939518d4b247 legacy-trunk +41837 74d16eb2cabdd2ea43d3b1711111e640e4b65de9 release24-maint +41838 22dbf5818b0b294e41f47459e9007cd10c16febc legacy-trunk +41839 850f7d1e4ca27645f3095b68a3e65bc158475339 release24-maint +41840 aa707041505d899c334287711acc9bbf5d410c7f legacy-trunk +41841 e44a833eca4335d85122a2667f3cad7c2c66b097 legacy-trunk +41842 2eb78f5d14500e4652f3bcd5738c6cf3e44d4cba legacy-trunk +41843 73da591f9bdbdd5ce978072615aaa7a1df7b0142 legacy-trunk +41844 f9281283b109a49bd427bf67721bdbd09aa5c873 legacy-trunk +41845 042eb3d1ce3f338ae61e35f3c5ebf74da50a52ef legacy-trunk +41846 963a98d8fe2e4d2cff27d68725434e72413d7ed1 legacy-trunk +41847 fe9bd21f27f2289d50ee26143717455d48ca5387 legacy-trunk +41848 c71ca1cd363b75f348ea764bff4b73a41b9d5a6e legacy-trunk +41849 96eb2a5cfbef623eefd0b611adf38715c839796b legacy-trunk +41850 3451b109a24c563e91ac98084aec82f523708650 ssize_t +41851 298fc3269310be9d7a1797e95d6fa55b25f2c75b ssize_t +41852 26107c5d057c1ff8c891e745486a0378f708b58b legacy-trunk +41853 f4507774d4e41ffe4ee9540a1024e4020b813315 release24-maint +41854 d993a3ee891ed82a41c537d6ff4808bbfad6698f legacy-trunk +41855 cfd1e1f4fdddb1276975fb8fd29fd622eb275e9a release24-maint +41858 1e595b6c924e1708f5bb2cf0bfc9f26b191bfe7f legacy-trunk +41859 bb51d6c6a3e03a393ec8366e046dc033a0d55b09 legacy-trunk +41860 50886d42b444e40d7e9363c1ab62a24029129072 legacy-trunk +41861 147c35f435a0b5ad0817208c6faed66557d93f1a release24-maint +41862 6f25029de9db4368471952996f98b71db4f6c22b legacy-trunk +41863 834dd664aefca9fe3532f091502dcb543f465fb5 release24-maint +41864 8a2ab5f51932fea3a122a6e3892daa9667a53402 legacy-trunk +41865 652429c4f2a492f73ce5a89a40481fa8fc782e60 legacy-trunk +41866 266bbdf91bb53e72b22fc5de97efd36f908c6da0 legacy-trunk +41867 00df05fa81614ae60921df431390b2bb2a7a8cda release24-maint +41868 09ed6c9bdbd9a295c5c2c8e0093ac076ab8e1db8 ssize_t +41869 c18504cef2ba65ac3251352139f4391f4b731f0e ssize_t +41870 c3adc77eb2891e204f2bced7ef3140fde2ff247f ssize_t +41871 f5443bdf9b0df8c193faa76acff8b6546a10faf2 ssize_t +41872 12484b659fa867a844833a26cec268f429293b91 ssize_t +41873 46ff5c586d8639710eb33d1a32b629a6983607f5 ssize_t +41874 a227ef26a18dbd42d892b70465d48cea8d02c9ef ssize_t +41875 50a47521b40f430e5ebea47b8c983c220a5176f2 ssize_t +41876 c88a830d831c1bf37260f451050a97ec6d8ae3ab ssize_t +41877 292435a732e8c249f91e9cbfb3a30b4ad230c859 legacy-trunk +41878 ade46371f04b05c9a0f662039631a79a0458ddd6 legacy-trunk +41879 6dd62542b6e5dbf8e1f0de34c1a3f839f50ec5be ssize_t +41880 85b2d804ac0abc789947996cfc543f9935ddc1d9 legacy-trunk +41881 b9086544382e2208235f749ce171e8e28442f729 legacy-trunk +41882 f321be34b85d5f55847ef3b50997728a9cd83bbe release24-maint +41883 03a0b18a75bf5ddc804df29ef80435b94351a554 legacy-trunk +41884 a811eba30fa4df3afb770281ed891de88f176afd legacy-trunk +41885 9b9ced4d7921f6ca135e4240dd38d1983fd182b8 legacy-trunk +41886 3f62d31d5985ab28d16f0160fa0ba8813767c3c5 legacy-trunk +41887 431d6e87b9fe0bf4ba4ced9ab366ce1ec0669746 legacy-trunk +41888 b2648ca231e802532d40260ae535b93d4bbc42ce legacy-trunk +41889 7970e02fc847b85160b7e6fef9f96fd3936be15d legacy-trunk +41890 c82975e91e9985c9fdf513af682b4432ea95c466 legacy-trunk +41891 bf7eef5072b691693b361c2dfb76932240f25b39 release24-maint +41894 81fa47d2d477bd9bf8e6948159a59851877a4fe6 legacy-trunk +41895 ee984fe981b4efba9e3b291b05d2a6e6213d7978 legacy-trunk +41896 f80ee142727a862d2dea9b575cddcc5cfd39e5dc legacy-trunk +41897 dee92ecb8a113cf28b5259640bcf34152d8d4763 legacy-trunk +41898 aa45644926603b04c5152e77e6f246678d71779c legacy-trunk +41899 79e70fa8c212fec7020ea2eca3125e1076b173f8 ssize_t +41900 ceefcace6f2499db50143662fde86fb0bc523aca ssize_t +41902 6c8145fe495edc9058c8c147eea1196c03aad5ea ssize_t +41903 ef2d7b9fde7cf9e4d95ac1a20fec0aa28fa9ce4b ssize_t +41904 691ee524f02754a9bdd278b159eef1532c88a49c ssize_t +41905 7654da36fe9cca869e03d1a16053063fe3367a8f ssize_t +41906 f06133bcc05e667b0535c909177d16a87524472b ssize_t +41907 52a74a3236820677ce112759f318465a718f099c legacy-trunk +41910 6149483f7a3d5543c8c5d77301de7e56648f9237 legacy-trunk +41912 ecfed1f7478ccdb87921242e97928aad91552472 release24-maint +41913 9208a79f5683cdbb4958c927599c6a5731d42af9 legacy-trunk +41915 03608d66e59f0c544001bfd8e7eb8f5cebc3dae2 legacy-trunk +41916 0b10e855dadf64820e36a1eb6ede1aa20c6e3fd7 release24-maint +41917 ea6cd1be9837b5289534bc517c61d010d5c8886a legacy-trunk +41918 26be8b1d1853017dc485d9bf35393f62acfe44e7 release24-maint +41919 92ef56c97cdf4210ed63e6c4ae0102ab7fed3d6a legacy-trunk +41920 b3482164a10038145b18e7ff0f1bc5893ee8e1ae legacy-trunk +41921 44f0760e24a169edab83f445e2b79fbcf70adf47 release24-maint +41922 38b0fe51b0b4f995e5c9d5fd4e80bbcc70de2948 release24-maint +41923 44cfca6136c6382a6e9abba930b1cc12099b1073 legacy-trunk +41924 032924e75c24ba00dbf161bf8bc6b6699d1ab3eb legacy-trunk +41925 01cbed5e8731070b17f3488f5d50c5aa7c029a8d legacy-trunk +41926 8791e8c448b31e30074c317782789300c1b50b47 release24-maint +41929 825a041813fbee078a3bff3f113def3a4eae9274 legacy-trunk +41930 21531e392116a061fea3185589d456fce3be1170 legacy-trunk +41931 03a5741cfea9f60abef3cce7fbab3fbae72b9826 legacy-trunk +41932 83364763c7b2c6a83921125539c599b75380c341 legacy-trunk +41933 6d743e5baf147ae4b51c42b92bf24609bff241cf legacy-trunk +41934 cee05980f1fd1c523f34237165ff98842a23c197 legacy-trunk +41935 9b8885c9e551c39ca438980a7243f0f6d1843603 legacy-trunk +41936 c9da08d482c36affa99165b2ce5457f47be8660b legacy-trunk +41937 241078ee6e87ae863e3eb114fde15f337848c459 release24-maint +41938 65df25674d1aef72d2171672326d84402b9206a4 release24-maint +41939 77b4aaad6903ebb8fde1ce94b431ff342f5331b2 legacy-trunk +41940 f723e19fa3b71a20b21fde7402f9eb588bbdaff0 legacy-trunk +41943 b139c999665d99792689fc3b2ccece04a42452d5 ssize_t +41944 122058dfba768a93d92fdba19a859c5987541d3f release24-maint +41945 6e17968d4de92b1632a83ff8625f382f2442d2d7 legacy-trunk +41946 a1b1e451d82e85e794facf92e72ad1bf33f769f7 legacy-trunk +41947 4c8a74a2022783483c8c2b738a4c9bcb20e304cb legacy-trunk +41948 cf69e319121828b4a752abd81ffb9bc325c6ab01 legacy-trunk +41949 1685dcd2f92993cf51e5e33c9efc0243ff73ae6d legacy-trunk +41950 56ad9f275bec193d2963c0ba2256a0a583267680 legacy-trunk +41951 bb6fa4a31f152976039e3b67e1a387ac086db61e legacy-trunk +41952 026ae1b8a7e3ba05e14cab10e0f1ff6bca13bdb9 legacy-trunk +41953 e7c96c1d144ba74285438e13761ce5ee80d2a6f4 legacy-trunk +41954 e8dec78cfa2e3e6f4f328cf12c4f774ddc4ef17a legacy-trunk +41955 ded4a497eb76fb87bdec82ec92b99a51d8fc54b0 legacy-trunk +41956 d3f4c467e439a257853ee5e289829da0923e3182 legacy-trunk +41957 a77e5b046a50876338e8c177ee7fd0aa32fd59e3 legacy-trunk +41958 b9dd481b3972dd64013b5cb6cc9eeac1ce849695 legacy-trunk +41959 e94ee59a2d461d9504ac7fe911c3eeb92737ce9a legacy-trunk +41960 9f66bdd5a061239241c87f05f639ca82ee1c655b legacy-trunk +41961 ecd423718a327df56d9963b8f3e8c165c75f28ee legacy-trunk +41962 8ab78fb4d17ed4ac19e6d7e95859c1f30084be59 legacy-trunk +41963 0f8c5546d3bf44b754f3e0fd8ad0274dd9e0fdc2 legacy-trunk +41964 92e2468bdb4a6a40317cdebe38e57378689d4dfa legacy-trunk +41965 00bdc08a507dec9da0c6de63a114cc4f35fe63c7 ssize_t +41966 af7d484208e9271a4cbabe45825e663b79661e57 legacy-trunk +41967 d2224c8d45492625493c9627a92cf8c05176d9e2 ssize_t +41968 557e9b6ee7e11e6f7ea5ea0427bfb047b0e5474e legacy-trunk +41969 0f51896072640ae116792b1460ffcbb3d91c7eff legacy-trunk +41970 60a5a1aa1682b670e23e7fdd09bbd93c31ed6659 ssize_t +41971 a9abdb14cf3b78a47a9ebc34ceb6ba1c1fbc7e52 ssize_t +41972 a2643253ac796294b3c68d919d94e8ff6f141fc3 ssize_t +41973 0968f062f3506988b886a4f9c1b52e4c267f1e30 legacy-trunk +41974 e7880f4f53a40d313c7a047d504252336224a8b9 legacy-trunk +41975 d3e68cb739fb2575fa59a4cd48b38e15a1af5217 legacy-trunk +41976 591df54d2d30f14e061245c679854a452880eda9 release24-maint +41977 3ba9ff79bb29b947eb97e8f9935091d853d16fe5 legacy-trunk +41978 811d644d19176771054761a27dfae8150d716bd0 legacy-trunk +41979 4ac9b8fcd63ea8d85312699449354e2ded7ad59a legacy-trunk +41981 f09e6091a7629eeffb76165b0798b30e3d232314 legacy-trunk +41982 8df194294c90dc4a11df90bb5d2ee32259585b4f legacy-trunk +41983 d434b3c7390160f35220943d5c43ed86deace8ba release24-maint +41984 27bdc1e27eedb7ec459bcb9e3b0434c8efd6eb9f legacy-trunk +41985 c3b42b7bd6d9daadc4a97686febd847ecbd8064f release24-maint +41986 3c15976ff61872b5b902bc2bd3ebedaa06a23864 legacy-trunk +41987 6cf7d04dcc1f57e67337d1609ef7e6e5410cefbf legacy-trunk +41988 09c21a6be60418478c7bc99dfc15c6303415b298 legacy-trunk +41989 9f6edc874541cd29c2442e491140b9b60ea96bc3 legacy-trunk +41990 26e78b196c17278a8609f3eea06f08232864dbec legacy-trunk +41991 cad591d921ecb02d401dd933934762b479f0381c legacy-trunk +41996 303dea84763904fb854ccc8b8e6f7714e1f5abd5 legacy-trunk +41997 76a1c20e830e55c021a25d37b8fa8aa03204bcf4 release24-maint +41998 3c030edff985a6bc999bf3f72c776aa326b73ada legacy-trunk +41999 9df39c960bf1c680bb34f17fcfbee603be98f6be release24-maint +42000 790f8d9e498898116802a72fe7504fbf2b01f92d legacy-trunk +42003 41ef2910dd498b0f84e8f4cba3a81e3dd3a55898 legacy-trunk +42004 35df6dd809110c7b4eda321fb77c87babae1b32a legacy-trunk +42007 0d5335387ba732c84df8e59a1632c51fcf9f8874 legacy-trunk +42008 475b645e12f5ec058c3280bf402586ad54c6e13a release24-maint +42009 8747bf4b95422cb23cf05512151c8224df338b84 legacy-trunk +42010 21e178b93030d1bfa2bac63c9dc0b074ac235a45 legacy-trunk +42011 84ba299e2b5fef411b0a71fb816ed5472606cc3f legacy-trunk +42012 d0104364f6d1c8408277184ebbdb0a32b23e950d legacy-trunk +42019 5d816928a2245e174531ed73dac7065605ece84b legacy-trunk +42020 e1fd7bd2895b07d48ffe3af904a0d659116e30e6 release24-maint +42021 192e83894e898cac4036485dc06d7813dae7412c ssize_t +42022 8b8f1a51468ad248112a65d4cff7d96504c0d3b7 ssize_t +42023 0fe75a046c005480f24b09b5b4ad4e617eb90db5 ssize_t +42024 4f9507be58579b42cd29670a56b1c50793b48064 ssize_t +42025 662c63954df294b74844001668ed6d47f4d594da ssize_t +42026 fd1b12d3abb69c39afc891c7b31811488ee6d985 legacy-trunk +42028 5277770bc9d1ba6abb7b480a05b4449b0a157b90 legacy-trunk +42029 ab130d5669319e8ea83e6d0c75e00f0d0ff95e76 release24-maint +42030 5e2a58c867f72c371bfbbcb5f66b4906029bd5da legacy-trunk +42031 da0995ca1f307e787c24f81cc09d66511fb62eae release24-maint +42041 78a69759547ebe8013fed00e93ff6e917746d566 release24-maint +42042 21d30f8e41ffde678cc440e22a9a1b9dba904e35 release24-maint +42043 e609fea92d1e18a5fee1faeeb04caa941437b3fe legacy-trunk +42044 0b231c05a7edac166d47b427c9b0da103c6e32a9 legacy-trunk +42045 8697776bb42037c2325315847db5d7ecd25e1b27 legacy-trunk +42046 ae44809350160e583329166532a8ee1ea7cda9c2 legacy-trunk +42048 c128000213969931d5da14df5e7248053fd293ac legacy-trunk +42049 c9ea5570dac7e6c1f4c0f9419fa1eb8eeb2d0eff legacy-trunk +42052 7ca51cb70c2e24da629f99f238be02b3ad62c380 legacy-trunk +42053 b94ee92a6d6b5eb59e84c8e49948eb3fc6ee0493 legacy-trunk +42054 07fbd34f1f6ed131afcb46e46f2cf31738ff93a7 release24-maint +42055 ef1d8d6ac6befb6e487ae4190f17e32635371228 legacy-trunk +42056 ef3b43578a5ffa7714373b5f0e9a2e9cf718ed4b legacy-trunk +42057 a21253fb08c972d0061a245b71ab1bc5a771ae64 legacy-trunk +42058 e7033dffd60cae8349561767c30dfe323e07e0e1 legacy-trunk +42059 c7cfea1ebb323419e29afdcb1ded75db5b2c4ecc legacy-trunk +42060 6d2be3b76f2e28365734574dcc63afccbc1ed4e0 legacy-trunk +42062 9eeaa33f9640633c61628bd7adf5996e50c6ccc4 legacy-trunk +42063 b0d7d28cd7461f2f1c34d35690c128dfae03d8c9 legacy-trunk +42064 388ebc6e3de11797331507d2292b8ab11164e13b legacy-trunk +42065 e8fc60c4faad7e3a77e2f869faf3802f3e6e41eb release24-maint +42066 405ab0dc9cbc3913f8849e90315251ebc0fbdea2 legacy-trunk +42067 43b16eeff226b2eedccd4350292c6dfe1ac821a6 release24-maint +42068 2afbaae6b88e0bacd2f027df9074af3c3e0cf4d4 legacy-trunk +42069 2c8630b6bc359958b2a07e657f3c8c5464500d1e legacy-trunk +42070 0294e6662749ad4c53eeaa9ff7fa04d4dda2692c release24-maint +42072 beceb8e66b0ba04ad0d309c14bd689763e34eee6 legacy-trunk +42073 2f7b54022b3b1ee3c6cd43d7a8a53a05492600ae legacy-trunk +42074 4dba61e49037febc9086755eb64f2d579d602e3d legacy-trunk +42075 20f21dc7396f23de9c7f0b10927cb7763a767639 release23-maint +42076 3709ce37fe1c4f1ed6a1dac53f651728f3f4c98e legacy-trunk +42077 65fe9aced002bc8a50c691dd8f99ba64586ad0c7 release24-maint +42078 bc183b5f8bc19defe71fe3a84aa95d48c5b5ccb7 release23-maint +42079 e3648ba918ee400805ecd3f46d63929e34194f65 legacy-trunk +42080 2ae416aacb887757dd94e957736af6208e64f784 legacy-trunk +42081 7bb64aceadd7c8c693cf3b194929ab25c5feb42a release24-maint +42082 c4c93bde185c7ff4451b0281082e8d0b10bc452e release24-maint +42083 1ef5063a0c6d954ef3fec28ef1d57afecbdd76e2 legacy-trunk +42084 f62d7d2c50deed34f8b6e43055d4f1511ae04508 release24-maint +42085 4966a361f93642465fbd7da2ce58b1fbebb2bf1f ssize_t +42089 85b5a2cdbac107bff17405f4728f822a36c88f45 legacy-trunk +42090 ae07b0e7d70a89a077c045003956aad7428a6acc legacy-trunk +42091 c583214d4c51094c8a46d97d9c1c8415c25ed34c legacy-trunk +42092 d79f043284bd506fca8f0c3c7fe649afbb37e101 legacy-trunk +42093 1af7f719ed28f27775b1aac99a858d018aab2279 legacy-trunk +42094 3ef1380fd83c2eb57792fa0ddc1f11cca2b9fa22 legacy-trunk +42095 2e151bc820f7184098e1a7ff97394accdd72ff4b legacy-trunk +42096 212bc23632ab5d47493cd15fda312a9b9f31eba6 legacy-trunk +42097 2d3a1c3c93056913b2bc60ff35b222ce88dab0f8 legacy-trunk +42098 6874f2693eb8a0eef9d68cecebe138a9916cd956 legacy-trunk +42099 a530176185865ef9ebb04229f1f12c6100f67dd2 release24-maint +42100 b587610e2069a4d9c4b679ae94eb4ce7541c1731 legacy-trunk +42101 1d764638abdd803176a05c13237b54acae5aa329 release24-maint +42102 ea6a46d8c51ec0abc94f2bfe4fa2c542cbd7fa02 legacy-trunk +42103 98faac1df5bbedf5eb0ff5f270415419469854d4 release24-maint +42104 070bb421a303bce200273419b0f12a824dab9b5a legacy-trunk +42105 928de4a3be6f549a10b804c6839c6895b021c58a release24-maint +42106 5e8af242357506341b7223d896ed3f94e46a6a74 legacy-trunk +42107 fda912fe8b9adc4078b16d2a7fb6bae738568429 release24-maint +42108 76aba3fa4e2f817b5e531f3397dd8dd1501139ae legacy-trunk +42109 17f099479e6b73dcee5d672560c7e72b98782851 release24-maint +42110 4bcf5fe54d8340aad74ce3b25cc603db2c42b9d9 legacy-trunk +42111 9eae32bdf801b6701bc7b9f8e9d8d23035099fcc release24-maint +42112 aa7ac9087a1c30632abfd7950208647501ab671e legacy-trunk +42113 c2b1497310d10159bc3c53485ea70a94ca1e1353 release24-maint +42114 aed32ce35b82dffad7e5b29ca6bb2e133a806dcc legacy-trunk +42115 d48f4a4a306f593ef0a114dc15c360e17005e513 legacy-trunk +42116 58251c9904e189270446e6335ea30b255da7a794 release24-maint +42117 eb4a47b819424ccf369811cd6b322aa80a6b7d50 legacy-trunk +42118 b0a9a8d14ab22244c0ab04a3c5308ea2bb0ff813 legacy-trunk +42119 315f4407ab12d577e007e8a7c73c6a70bb824a56 legacy-trunk +42120 f8fccae6a0f5dc8287f06ea77652ac4e0b2dbbb5 legacy-trunk +42121 6e12707371a130eed42db120200e8e6f6e61285d legacy-trunk +42122 18a2d75a3c69644f713c2559bc3e99587f5b11be release24-maint +42123 3a92e56547485ad88dfd6b8dcb1e4ac75a904aa3 release24-maint +42124 ba160464a8c6c19ca13398dcfe6ce9c78b05c0fc release24-maint +42125 04a96cc88583ec3c21f90f3af4c7d1d30fb31e17 legacy-trunk +42126 24456338026c04f2d5df8203aced524589e9f2d7 release24-maint +42127 1e8f4673e447473bac4c4e141d9f66826cd67ab4 legacy-trunk +42128 b05c4ca859434db761ff3cf5010c9d7ee8972d0e release24-maint +42129 4746fab3401244ffbf4bf8cc6cbb374fd46095ab legacy-trunk +42130 ac02f655b31e3808e2faa77b9fedc52bdaa77218 release24-maint +42131 ca6c800ad5a02c119bb0c3a39dd70aef6ca13b65 legacy-trunk +42132 6fcb5405074e7a5e5849dbf4a0f37f7e7637232b legacy-trunk +42133 97885adf73b5471ac7da3a432f3df81d02ccf7aa legacy-trunk +42134 78702a5028a41f85ab80f4ec70c1d5f81a502d40 legacy-trunk +42136 9f7ce2846c30959c545d91146f81749553a933d8 legacy-trunk +42137 61b8e3e3d64183acc280644eb64991c64bd4b9c4 legacy-trunk +42138 280650792ef72b7cee8b938983b1af074ae03b84 release24-maint +42139 f94991d5dd2069cbdabff9d4859af05db43446fc release24-maint +42140 fdf1be9cfedf2b30196032d9333f9a574f336973 legacy-trunk +42141 00ee2171537f75de7a70958fb798547e4d945366 release24-maint +42142 f01543e15f85a4991e32011d1a2b5a13e41c165e legacy-trunk +42143 4315c53f51bca60429da56db3e5b31637d064a49 release24-maint +42144 4d2a09a6485d3e9c98cb9a1a6f65975f131282d3 legacy-trunk +42145 3b63bc904d92e7b5b525043e066192d70dd90050 release24-maint +42146 4f11b23e361f454d9e9a9eb77a94e4a6649848fb legacy-trunk +42147 446cb5fc3d280bf7fc46f2d6dad2c812602985c8 release24-maint +42149 a17b73826f9783a80168e5478e7b34c4450d87f2 legacy-trunk +42150 c83c022a3491eb16fe1aff5a78e41ece69733dc0 release24-maint +42151 8140f000e9d459ef34f329d35b59f0cc2c0cec1a legacy-trunk +42152 604fe87ad47c7c0c1924eb39f9daa7ca8582e0e7 legacy-trunk +42153 99d491faa65c2b9df7e14880971a6d110652bcf1 legacy-trunk +42154 7b3d915b6e9d00123e8fc7e5cf8ad472a264fb6a legacy-trunk +42155 4f90c7c05364f424b63d62d4d12b13fcd271682c legacy-trunk +42158 838b5f5924ee17141467e918815a3d53e0de3813 legacy-trunk +42159 3b4b4454fe8664bc4beaf15cc8e1c1973e83063b legacy-trunk +42160 5ee46bbed1f9fe0469e16e2dd443f4cd65e61908 legacy-trunk +42161 5c487cb63295078db3f339eae3c670e6b6d827a6 legacy-trunk +42162 7f05974c8b80317f287069218e2000e10a7c50c9 legacy-trunk +42163 0006ae10b7f0c92c91a3e090274c2a8fa4025039 release24-maint +42164 78bd78a1ce74b461f258b56b554b5fbfe07cb716 legacy-trunk +42165 2012c548ce698cbf40bb9e45c6a83810ad0a719c release24-maint +42166 3114eb060d0aed2ea7865e2f3b42d18ea998fe63 legacy-trunk +42167 74a598964c9628d0a47f9cdde4a8e442b652a816 legacy-trunk +42168 a29cc23bb89c4c5f77bee20c3094b98756ece38f release24-maint +42169 0372e25e430ecc572f2f8a92f69e81b85a42285c legacy-trunk +42170 a50f5635a4949c956fe7cfb0ab12f786b42c023a release24-maint +42171 d68f73f96f31f72e34439c5fbf4f8b95976ffd46 legacy-trunk +42172 6ab82c4706338f1e465b2b5a1bb980f2fb545464 legacy-trunk +42173 055fcdc652dd4356cfa8c4850fc76b0c4d0292e3 legacy-trunk +42174 1b9eb9632c89b8a094b31ba0719dab4cc4207f12 legacy-trunk +42175 bfb247d7bc3f7252f33991891f43d4c865c9979a legacy-trunk +42176 d5734dc07d4abd995e1e95dfbc451a70ad6f4057 legacy-trunk +42177 5123453690e51a18886fea1ed5144833ed3ad7b4 legacy-trunk +42178 d62da36aae155125acfac3ac95a9d777ff62eaf9 release24-maint +42179 e7f19ed1ea2dc0ca1bc20009d43fc7d7cb2bc138 legacy-trunk +42180 c01d2272e6c3a6fb4974f8e5e2e48b4bf83b0b70 release24-maint +42181 3df63461b116d379d7ee8637c0c37273e1221396 legacy-trunk +42182 e0289fba6ff1ea9391b6ca374fb600cfd4639b4d release24-maint +42183 040d7fb4eb56847adde10d8bf3b6a3ba66d9d36b release24-maint +42184 e97818bc291944af6d09e1d67b2b04d7b7b8b3c5 release24-maint +42185 1359605f3713fb59239effc0fa2537b1d1927573 legacy-trunk +42187 af684d73f3a673df9731a7310eb06feca8c89aca release24-maint +42188 c3b6728d886b877cbd41fa40dc2fe68f2f6a3428 release24-maint +42189 cde6ea091aaafce45e3152b94c9ba53aea528d96 legacy-trunk +42192 0602887dadf5f5741f355476d6b0181901d566de legacy-trunk +42193 f0ada6f0f67899293a9c4219741124e4092a11c7 legacy-trunk +42194 a625e887640703818e23f30360fe5467e3b83073 legacy-trunk +42197 950e3e3843bbf00477c31e2e4496b0f602bdf53b legacy-trunk +42198 0004a9d04d036657146a2e21f4f5ab38d69441e1 release24-maint +42199 22899502117fe6891f6921c7ac109098861aa422 legacy-trunk +42200 fc12cca73c35d0bcd16fbd80c94c71b41d7b68ad legacy-trunk +42201 29bfbb588d93f887717ab61e113e10fee723d04b legacy-trunk +42202 23fe47e9337d8f9c68412a1a65f4f52d3b2709f2 legacy-trunk +42203 bfa227267f4814e82e9fbacea9a321e6a11afc94 legacy-trunk +42204 0f2d82003a0fb74d4d2ae49b71b357bef29957e8 legacy-trunk +42205 280d6019cf426c0a0366128cda76b34a87129bf5 legacy-trunk +42206 38a94e58a6956c6aa9708c8ef7e283c053115076 legacy-trunk +42212 16bfe9386068cfbe18a35ee9c2992e61ceb9b6f8 legacy-trunk +42221 81942fc9a20d1669e87269fa6a6bf268194df954 legacy-trunk +42226 d680fa52551226c40f254c9b4f6b1288f751c600 legacy-trunk +42227 6a8d5e054e971d3db4df0a9ccc2f9dba9c9d7473 release23-maint +42228 f2366108bcb281c6d6cf6b9eb343f93f733c3fc0 legacy-trunk +42229 bd44c7c0977f576729165f7a540f104e21dbd712 release24-maint +42230 26e0f68de86e6bab10008a3334e5ff6db17c88e8 legacy-trunk +42232 655fa22606798463f3ff153a0ad9c7c79713d880 legacy-trunk +42233 e66228580ea264848a8cfa3447d368e02b42279b release24-maint +42235 94d27e01833da479bdf8ef58b6e217d17e3bc9d4 legacy-trunk +42236 cb0dbae72a8e761b19894c929b17180c8f68b1d2 release24-maint +42237 5e2acf7441bd69bcfcde5bb1e4b372057b01b66a legacy-trunk +42238 dc32463015f1bcd8426ea0a32b458ade5bd07c06 legacy-trunk +42239 8e23a7ccf615d194bc4cb33b60a3d326dd97b0bd release24-maint +42240 9a4ff6d6e7246413c87a1e5ebb179beaca626630 release23-maint +42241 a07fb2ef52ae7599c6af43c86259bf617126ebad ast-objects +42242 d1ef23a16760c23134b89d56a13d4a426d854cad legacy-trunk +42243 a3046d43eb52f2f1cafc8b99e56b48c6e455ce3b legacy-trunk +42244 02f0744a9cd02dd801368045286c5af32bb7f903 legacy-trunk +42245 3edb1bcd434d4da1b9cb39cb2f1fa7f225bf2059 release24-maint +42246 388a583e7a6344d5e0de5a09e23c3c6cea42b919 legacy-trunk +42250 4ed30eaa0256125a4210c0b253a0b52c1a3c2d89 legacy-trunk +42251 c193283e63bcb761253ad9a8835ae21fe74756ed legacy-trunk +42252 8404c9efdc35ebff7015d552e68c7eeef77c5d41 legacy-trunk +42253 7789cc557e1efa54c08ea9d36a30bd168b485163 legacy-trunk +42254 af67b6265af6ae0bdfd5aefc369d6eae82519459 release24-maint +42255 002f9b8fec21e70b6efd5010a5c9d2f48896925b legacy-trunk +42257 0a2a4f14110b94a841dcedc1a0aa9df4ff0ae3b7 legacy-trunk +42258 51f760288104529aa7d045f85f695decd35b1fd1 legacy-trunk +42261 f38b635263d3a1fff6aed4d7041d797b1a8164b5 legacy-trunk +42268 cd4459d08ee2368e6ce8d0e2b76bb20260294d3f legacy-trunk +42269 3abf332641463361d8f9b8ef0a2cc5a9ac71f2d7 legacy-trunk +42270 ea54eaf92016031885dbcfb57a1ea1c12e33ec9e release23-maint +42271 d59619a371c2179c320fe7d6d60557babdac2b46 legacy-trunk +42272 fdacf72d4976302c92b45519da459456ba023c97 release24-maint +42273 552464d81e1b216961ea2a76aee5815b92a5bd4c legacy-trunk +42279 8416fb320403919a6dd066f0286d95be8c2ab5df release23-maint +42280 397f639f7e6b8afd0b83206a0c8fd9d1803631bb release24-maint +42284 4c2d6eb8d5e9c3c627eaa8f9be5af39474c66cd5 legacy-trunk +42290 89f1da1342ca47df8abbda300947355da19f7eed legacy-trunk +42291 3cf8a9ed446b3e4b105911594d13125b25ff3fc2 legacy-trunk +42292 93efa59b3297cffac7f906ee9a9391377ec50d15 legacy-trunk +42293 05e314ee26f770885dd7796673869e66903f9068 legacy-trunk +42303 165389b14d6ba719bcc1519fe4174f50f503c4d6 legacy-trunk +42304 81f44d12bef7a18e38f66e5914d0335f8cb937aa legacy-trunk +42307 7b19a533ce9bad95df857b3ca4add8ace79c0dbf legacy-trunk +42311 0c5ae8924104ee6417db0d45c05b7518fdae8bf8 legacy-trunk +42313 1c3b15df67a2939ff301db8df0c7e6aa17673d42 legacy-trunk +42314 c073dffbe70ec95c23bb40e40e08b0a999c43a3c legacy-trunk +42318 d21875d3592b64974b26b0a001ec143f4c7e31c8 legacy-trunk +42319 e2d4608f5c1d6d0f8f455ef847a8ee0a77925999 release24-maint +42320 d496c0764ad614a7e58da983b77c4fdc1ec86efd legacy-trunk +42321 ae1da51243824a8d7ca37ec702773ffa78fdb3a5 release24-maint +42322 6c6b429a7030c65009d8fdf18f7ce61e9de014ca release24-maint +42323 51297831b5f8909ee364f4b82a97ca1fb625b46a legacy-trunk +42325 b48a04729cc498b0bd3e8da33f86ad538ee318ab legacy-trunk +42326 20f75d5e79e953be46fa15f2bbca4209a61246e8 legacy-trunk +42328 c0070d76c0db3e05531e2a97962f6c07d32a4ac2 ssize_t +42330 36eae3fc373d501052ad4f2f1cac093a2d993873 ssize_t +42332 71530921ce93b3e37e5bd4ba99dd86a7257a9e97 ssize_t +42334 2a3231fe72e298ad9f9913fd97cdcfba7ef5832b ssize_t +42335 99dfdcc6d613dde44b89a8146c39e62cd0791620 legacy-trunk +42338 c46de1e5b9a032018085cad6f46d5c01fe74bd01 ssize_t +42339 65ae730b623143a9b5ce2a1bf15392c77be9c8cb release24-maint +42342 07ba8aae3dc671a861901920ba2d4eeeec46e78b legacy-trunk +42343 a2b6ddab66d78a0b899fb879487dcb7f8612598d release24-maint +42344 e471f1df2d031f10668829988af18a52d42c1074 legacy-trunk +42354 74b2533b59b8beb47dab27554ca7c12c4d6fe3e4 legacy-trunk +42355 c7ab417c59bc8b03d86695b4c2b887e751a0311e release24-maint +42356 acd702e306fb414b9dae8b6012ba6e276f695d54 legacy-trunk +42357 574c25fe60284520ed253e334c2759f89ce23c99 legacy-trunk +42362 344754497cb3f588e65875812456db0a1905df7b legacy-trunk +42365 220497e089ce8deb5b0c9637f1131e407c3734ee legacy-trunk +42368 db2fca9ea2640628186e361d0a55328ea376330a legacy-trunk +42371 c0c36bbd5e0c1943768b0b3993b6c5194acde219 release24-maint +42372 17ec17dd2ab3d7fc4664124fb4718d33eb0efcbf ast-objects +42376 96685f112709444452d4104437f6fd68d74ce1bc legacy-trunk +42377 35de8bccfd0ed728b99bc41acfb5e2229e508346 legacy-trunk +42378 98f7b743d91b035bef25a4966d913045de5d2f41 release24-maint +42379 c034cdd7960cec6144ea2bf65a44def0f81989be ast-objects +42380 3625c8b143d9cccd5928cf90cfe1bcaa70af8fb9 ssize_t +42382 7fdc639bc5b4d3c092cb3fd7d87f73db3d47ba27 legacy-trunk +42384 b8e73c2d1f17b2750c65371f2772599d83517ca6 legacy-trunk +42385 7998d85649c9e000b37bc0d1f016df4663c768fe legacy-trunk +42388 da93f9f2d6e8a81fddbd53a0a95166fe9d3a79b6 legacy-trunk +42389 5825c6ace28b60eb57a5d5425593cef3be1c062a legacy-trunk +42390 775defba4ee74b561bf438dfd71e42bc3418cdf7 legacy-trunk +42394 767adc0984161bf6330524360ab307c6b525179e legacy-trunk +42395 7322dccba22428a42ac899d50ed94e8d95f24162 legacy-trunk +42400 13e98e369abd9f86aec74bb34c33c15c878a736b legacy-trunk +42401 0f3894bb2adaac8a9a5a56dc104ca01de69fc3dd legacy-trunk +42403 1596ff5c79b502e1b3c4c8f2c38528b5ea2bbac3 legacy-trunk +42404 3350f85c889fd80bd3fbeba78f9512d02d1c62e7 release24-maint +42405 445c0aa811ca70dd9d7b807826c46a1c6254c3d6 legacy-trunk +42406 914f5b0da54ee1f402313e5911341584914048b2 legacy-trunk +42407 7c9cfd3b5d0fa6f1d44e5cf34c1c859ffb9eea4c legacy-trunk +42409 7dc1fe77713f2d20cc94155fb919f8f02ac10a70 legacy-trunk +42410 91331a88718e02be211b4973412fce8fb68e76b7 legacy-trunk +42411 9f3f87e920a6d1e195577191a1b519c9b1d695e6 legacy-trunk +42412 d6d415df0df0aac2a1ca7f31b4958f9643e01871 legacy-trunk +42413 26470cdeea3d6fbeca0c337dd5e7cf148c573299 legacy-trunk +42414 30aef3ce2b26c0919caf7cf6bbafafadba5944d4 legacy-trunk +42415 2791676b38259007630d977b1446a9462bf36057 legacy-trunk +42416 672c30bf95e69a7de18c1d77bc5bf3d579266d1d legacy-trunk +42417 4c8606191c0cf322e9e7851784009d7f2e2d7220 legacy-trunk +42418 2297b270fcf68d960ff21ca05496e430017224d8 legacy-trunk +42419 00f9c6e150ba2587c68f32f1ce856771d7efb8fc legacy-trunk +42420 9df61b96aa4264bd9425993ac2b8e78a360e19a7 legacy-trunk +42421 76ce880dce49e1113de6e30f5266771b97cdf84b legacy-trunk +42422 442c0fb3c4ed1118d8b1d2b5f0ddccebaf57e0da legacy-trunk +42423 92aff97417c46a1aaa06d63092d1f3b36c6cc702 legacy-trunk +42424 71e6f6b415a4c263294d2c2407df86fc49a8df38 legacy-trunk +42425 0c096be270003dacaa3e5c68617a04251e93b675 legacy-trunk +42426 ed07c1a5e24c627639a2e101ec7784b8995f4d68 legacy-trunk +42427 862493ceae4b32378d3a30c5260ae3f56fdcc005 legacy-trunk +42428 26cac371d7b6ef9afb91d6aa581cb2e675bb6df5 legacy-trunk +42429 c06ee0c9120957a77261baf977c78b32a458f354 legacy-trunk +42430 fdabdf148336205ee562ed40a5ab9d936a0149dc legacy-trunk +42431 316938b4f8d00283c9ba1bc3626536f2e4f60bd6 legacy-trunk +42432 0d489128441af6b976c839ce418a289e5ebf719e legacy-trunk +42433 7db3cb9e839fae35ad2872cc06785e3e7d7abb45 legacy-trunk +42434 f7f0d2a5b20b825f270f6adbd0e8ebb36874fc0b legacy-trunk +42435 97c81dc03dddbe763f8cb01e2ab2871f700c767c ast-objects +42436 056e5b4606da4331a7d7f96e9ba2e9bb362b1c8b release24-maint +42437 36325caeff9c65b14b1c5468e60d0b9d6e804de1 legacy-trunk +42438 23e23e15e7e7c1401bda17226850a2c9f464479e legacy-trunk +42439 1232e87cb81607994c388ddaded6fe612024e4d1 legacy-trunk +42440 5bd02da037bfc3cf63b162df299ca6da92dc3f89 release24-maint +42441 c9187912b59e9917f340d21d7b30d00243651377 legacy-trunk +42442 693da8678946b6563193197c27a25b0c2ec31103 legacy-trunk +42443 ad3c4b2c17300942cb5fdb9038fafdcebcc4280b release24-maint +42444 bce3f356cd7b9d1b238b3f6e5f333a5606aafaef legacy-trunk +42445 a9f9db9fa974ac82468e7330ee84897942ad0255 legacy-trunk +42446 c5650dbf936ec0c1161c2232f4191ae604856471 legacy-trunk +42447 5b39614817a3e9c35326354c4018a99652d5f121 release24-maint +42448 bc47f1a6acb99e5ba56570a4afb6c3455c03652d legacy-trunk +42450 4668df450672c2efb99305c2c9e4048fd4e6d012 legacy-trunk +42451 1576f9beb503bc48ecda9a20ecec13ea9b0e7350 legacy-trunk +42453 787febae30dbf3c6a3e484c29efdb2b7a7fd0147 legacy-trunk +42454 d3685f9b7b71b9757ae907ecb9dad7967ab6aa90 legacy-trunk +42455 09230357f9279118778e14406d2b1d997aaf8624 legacy-trunk +42456 9a8396f460affcbdb92095c62587ff97c3069610 legacy-trunk +42457 6bf78d2b53b435fceffdb611e455276f9383bccd legacy-trunk +42458 a1232602262cbfad155d92c7eb6322dd741a91bd legacy-trunk +42459 b9381a5623e2be76ca1b6a0d6126d19ad6e6784d legacy-trunk +42460 8de58246fef8e0c4f19b0e48dd86e0f28fa097c8 legacy-trunk +42461 941786e63ac8e6a5c75af3b56d860620dfb0e3d7 legacy-trunk +42462 0ef7cf5222b08ad7c18c1b6496fb8eb6c6cff6eb legacy-trunk +42464 9d29daecb9faae8af4b4afe2248b82ec6db6b39d legacy-trunk +42465 5ce32a5bd240a7492c067b8ec558c9295e186db4 release24-maint +42466 2386c105a894364132c6a6b83a4e4b06622a2f5f legacy-trunk +42467 3e1d8d3b4b6ed8932220e553596ac99b3e21d009 release24-maint +42468 18458711ebed86c5bc248e40e68e33357d292cde legacy-trunk +42469 8b4cb225b497578889c2066b13daa0cade41cb70 release24-maint +42470 59b532ab337692320aedf521320bf5f192c17f9e legacy-trunk +42471 5729b4bc9b8d3969a9e436e64b45cc0999bbc5ae legacy-trunk +42472 b60c50b16126b5dce7076ea837b3a24bf864e0af release24-maint +42473 33adc5dd2bf2198b76e7bf472408cc3ff3bcb9d3 legacy-trunk +42474 92004913b4122063ab8bff5c6a270a1b04d6c950 legacy-trunk +42475 81ffdeea1d06601fcf4b9bf745c84b16a3e99a2d legacy-trunk +42476 02a0eb1a2b21bb949c11c78f72d64a0ccb8a4d24 legacy-trunk +42477 8e13236243dd34cfed39a60482b2dbab00c063aa legacy-trunk +42478 dc6dec15686982d59325bc4048af564873b04321 release24-maint +42479 a6450f988aa44572e8fc38ac8985015000e10a11 legacy-trunk +42480 0f1fc8efb70b582ac124e16f0c4e6f2964674bc7 legacy-trunk +42481 989aa285edb9bddf57417eb005e29436736bead3 legacy-trunk +42483 18f272f53699128a5b209f50737cebb2eadfc14e legacy-trunk +42484 2475fe95782d00565ef94892cdada45a2897f65a legacy-trunk +42485 82bbd5de02f1c88698b7b43dd55467611b278ecd legacy-trunk +42487 c6bd01c7a568c506ce09352023b423992a952539 legacy-trunk +42488 210cfe9d307741286f1bfdf9131b93019d18d9b6 release24-maint +42489 0d5f8077bd24195a08bc155387a4e44340c316e1 legacy-trunk +42490 a1b30fcd9e28eb845f1ca34b6ed1affe6859c4a5 release24-maint +42491 05ee06b7b5473700ddac579f8fb981e74b02feae release24-maint +42492 bd7f2d8e8deabbe0425d3d414a0fcab8345bde8a legacy-trunk +42493 781654be55ef0c8de3a5983b19cfde108124f44f legacy-trunk +42494 c6fba456227b973fd25c6aa0dacf39c3b1008c5a legacy-trunk +42495 e57377f0a167f146d3c2ec23538afdaaa82a8c7c legacy-trunk +42496 38f4b098ea690c95c7f6305664db0129af3ab544 legacy-trunk +42497 9d97c8338d4c24c3021a5b623573f46143d9edb8 legacy-trunk +42498 c58e79b2ca05eb9446a37ccd1318e621f63056d7 legacy-trunk +42499 e8a49eb8519c35659b8128d08cf18ebbe5cb4d0b legacy-trunk +42500 2c1870abb6ce56dd5ccf23af97a8567fdf044d4f legacy-trunk +42501 9c0fd586475c1706442708fa8efb761fbeff9092 legacy-trunk +42502 946cf6d58fd115957737c7b0dec3aaf334892980 legacy-trunk +42503 fe4ae0c417c7b29666da6a6524dc13bcd7715fb4 legacy-trunk +42504 cab36aaee2e3d57a52915f88b9ee45f735e0a8bb legacy-trunk +42505 f6d6e5220823e16a4f60a5930e16a0c15afc2cd8 legacy-trunk +42506 1a98798a4b1da7219c53489114049d04e442f291 legacy-trunk +42507 3a5f71d6bbee94111e785704c020bee90305e0b2 legacy-trunk +42508 46ec948cbde8f7969f2778c746866e7ff6d2510e legacy-trunk +42509 0671f3c462d50068e4df289b427484e6947e9349 legacy-trunk +42510 4d7653e5cb3bcaaaa296e1a03640cd32f35b1e54 release24-maint +42511 9523a9415e1810e12d69f32d085a4c8b4829043d release24-maint +42512 dcf62113c2e32c1c513e9b76ee4034ad4dad6309 legacy-trunk +42513 7d292cbc713ab0fe99e9062db9e2129fe1865101 legacy-trunk +42514 361c658a55e6e31a30aeafda26df8ebca4912c91 release24-maint +42515 c36e37a18f1a39694b251e93b5ef089b448c42c0 legacy-trunk +42516 a9d6b1aec0963b4ccd8e3ca9c24b6f94dba456be legacy-trunk +42517 6d3ba004d5e5971b0e468d59c6fbc8ee114a7092 release24-maint +42518 b766ed03d4256a6ef4f7d49d2c1c4024aa79bccb legacy-trunk +42519 c6fde8a3b9df8a05eba66b12addc34747c18d041 legacy-trunk +42520 4b4ea38da98ed319846630b9ff1af1f719b8e305 legacy-trunk +42521 d0080750573b63cdc776f93e0cd2c632961b2bb0 release24-maint +42522 d112da7964d629a2a28592a622c6b23985dac1b1 legacy-trunk +42523 ff9afeb05b342674da78bd2495c26faaf39a5399 release24-maint +42524 bddc13d57b882d2fee2b30b5333d8a0c458fb567 legacy-trunk +42525 1e3968fcac6819ee46501c117619cfaab43bb934 legacy-trunk +42526 8a6faed0af04b5c973152901d2b4d999e7436771 release24-maint +42527 d4e1762b8e15340ffca1e97f5df712d49e2f5960 legacy-trunk +42528 28413c082c08762e0b58a51855b6038a1e8d01c8 release24-maint +42529 eb0977932e2de865ef52b74e7de57c0a8b2c534b legacy-trunk +42531 49d9c120357ad1015f9b1fb5e1efcc3ee743f279 legacy-trunk +42532 4d988dda6478644b91d61f3da3c9abb225996eab legacy-trunk +42536 20c8fa1e066838f059adddd58b9a9fe4611bcfaf legacy-trunk +42537 98f6b59a6e0a09da6b6f7861c44ef8fb102b264b release24-maint +42538 145d5fc9a6a51a2643f5de121b5a080e70b20e1d legacy-trunk +42539 4e50aa7bb1b52d1c13e035545eaf2b6adacfe51c legacy-trunk +42540 d0ebcb4f603139b34039a5e2edd3e1052c08ae65 legacy-trunk +42541 69c0bec1100ac83c798385a1b5182b227a03786e legacy-trunk +42543 5f2cb445e1c549edd9d5c2e6b7f2b6d3d09c1047 legacy-trunk +42544 e0c2abd581c5b0b55e426cff9b408e41ebf3849b legacy-trunk +42545 36ae3d929832d4ff8cae73c6946bf54add9cc58b legacy-trunk +42546 2c8dc3581b70f2d11a44ec49a4f213429c0fc7dd legacy-trunk +42550 09d1937f2da895fe8dc40c57dfcab623215531d7 legacy-trunk +42551 81f1b0ddc8a16f1aa3e62e0afcacc0cbd605a451 legacy-trunk +42552 5a836986206dd390daa6a154e0e8837b07a3b8ba legacy-trunk +42553 2162216139b95695432e174879afb8998546ba64 legacy-trunk +42559 911c7fa495b2404706f8aa45ccce0a9a14f8aaa0 tim-obmalloc +42560 143c348ff71769d60b0daf4bef207419fe3325e5 tim-obmalloc +42561 4127614f752a1f436c99ec79aa84ac695627cb0a legacy-trunk +42562 95800875bd12594b30482c9f8b32079adc69f16a legacy-trunk +42563 e1c3ffe926c11562dacc476808c0349ce40da8cd legacy-trunk +42564 5d828703c6a1732add44201d3f3e42d87052b482 legacy-trunk +42568 62564dc7bd7262d1010841c150eb066ba7073bcf legacy-trunk +42569 8db985b4086e18cee73d6c91740e0350b39f2a17 legacy-trunk +42570 2fda4d150c3db46f647029bb717501ed5a18a5a3 legacy-trunk +42571 6b42920accc9264f7cabff5c386172c224f345e7 legacy-trunk +42572 c6506442dfe01522ed8bdc186b3a9131aee018f3 release24-maint +42573 92ce8bb8b12a7eb5f4a932d6a43bdf9e2ed8e486 legacy-trunk +42574 c996a12234c259c0fca0f35288ac9a4a405dc944 legacy-trunk +42575 3924afcf95e7fd9b513c1c570cb7215e572ac913 ast-objects +42576 c9fbb067c2a6c90e30ab917c1c860fe225489ea5 legacy-trunk +42578 bb48115e6dab3353096c2a3764210be4e9e34d63 legacy-trunk +42579 3c0b26113df6ed5b36a60649d2fd31262e8681a7 legacy-trunk +42581 710cbdd478a851b340acf4ef3810e970ecd5c633 legacy-trunk +42582 2ab9270ef19aeaf7f0ea8f48c451066b26d54444 legacy-trunk +42583 5788e0a689e2577e8a5e306f488d6d08b63bc746 legacy-trunk +42584 7bfbfb2ef4e2145a5934383bdde8602101d500a9 legacy-trunk +42585 58a8451ff79587e3e78b25460b5d0befe0d47194 legacy-trunk +42586 6165927431d6a685508fde4086e671e5cacd82d2 legacy-trunk +42587 db571f9cad6f87bf0d90d316bda332b20740f8b2 legacy-trunk +42588 8410f06ad36e1885958949d19758df4760867bbf legacy-trunk +42589 9504f7ac3669c281ce214e1879da6fc0e5959db3 legacy-trunk +42590 296cda9b3e2f809f458888a3de97943ad31b93a0 legacy-trunk +42591 584637d831e3fcbecdaed2483e2e0eeff0b26797 legacy-trunk +42592 6c0b6c1cd1f469d594943a255c402eeda8e70b59 legacy-trunk +42593 2ddea5535f08649e565cb742208d4e77b12d529a legacy-trunk +42595 780b7afe61785af7c147a9b7185b024fc561ab38 legacy-trunk +42596 dba6494735d02a55392e5cea16902844170d27db legacy-trunk +42597 67c74efad8c23f7fca47f487482e004cfdb0c01f legacy-trunk +42598 5230c4c29ebb278643e7ec2067624ed82ea81ffc legacy-trunk +42599 ac498953ce578faa9027223c7e2325efb4f2c34c legacy-trunk +42600 e1391910b02652d834e118460394c60e8e9b75ac legacy-trunk +42602 54eb5b1fb3632ec8bac3cc4e14446f49e49fa775 legacy-trunk +42603 e9f0db429f2bbae3be1650f7acf22e8fbdc1b14f legacy-trunk +42606 52cbc447e1c9fbee7af502fd2ce760d45d64a104 legacy-trunk +42607 da2a1049215d6318bf3f7f21d2148d48253bc779 legacy-trunk +42609 0bebeb393045433d0afc4152908081e72b6f8a01 legacy-trunk +42610 b873ec6785605136c3c64e4395da9e480351276b release24-maint +42611 8611f39cd82bfc2af3d48c19d143e64bf12e4446 legacy-trunk +42613 7d0f12340c9e4f58b61c068e91c9a40e0469ec88 release24-maint +42614 e0feadc7affb72bf81cd5a1ad1854581626f97c3 release24-maint +42616 11484a72d966fd88ebff9a77eb4ce6aeed1032ef legacy-trunk +42617 acaa79e731333e52d0a0e542d04bc5b6d1fb3f5a legacy-trunk +42618 dd3e5a945962c1ec9d811562dce64ecf76f03a8c legacy-trunk +42619 301710535d15027481c0cbcdd07d8b1aa4733c31 legacy-trunk +42620 180dbfcf3bed0650598563279443072c6713e7b8 legacy-trunk +42622 0151a02374a82e253a35f5422e8cab8210525dc2 tim-obmalloc +42623 dfab22ae48e367f40939e3510324e1b6d0c0deb8 legacy-trunk +42624 b6d2f6fd3e116b9b9fe95bc982ac763c359ff103 legacy-trunk +42625 7b58fbde5e5dfc1bdd39810c675ed40ac401d3f5 tim-obmalloc +42626 e0a77010d033bc9322a77cdd0ee25ba7d2715825 legacy-trunk +42627 78de5f6b2f67b3e8539388b77cae0e324ea7841a legacy-trunk +42628 30567be90c851311e92ad100bc190cdfc48ea9ba legacy-trunk +42629 aa040410fb9a2df99d0a383b38db6f7eb545682d release24-maint +42630 2a2d46d1929a406afe65b13e3d7ac38c2360ed40 legacy-trunk +42631 e3248f1fc54db718a942384279bf48d56be525f9 legacy-trunk +42632 35dbbc1ab4487dff876498781f3889c42a934392 legacy-trunk +42633 c3e28409686cbe2c3a67900ebb0db781df5ceec3 tim-obmalloc +42634 6645db094943dd2b444fc1e01d481876783b83f2 tim-obmalloc +42635 9f3e58dbea631bc66535940753a5288968d62521 legacy-trunk +42636 3d68f352c2ff01f207d6a91ccf4c70c0b736cc9f legacy-trunk +42637 8ff28fcf872e0a9b95c6c9aab05a07743cf68a11 legacy-trunk +42638 b6b1c44d911052853c7cdf1f743e83e7bddff544 legacy-trunk +42639 cd847e7268372e4e7ebbdb041f019d60cda279b9 legacy-trunk +42640 81be15b84244539826aef1e6bbbc3670048167b8 legacy-trunk +42641 bea94754441b1a70b713feeeec81e6c6ee99e427 legacy-trunk +42642 258990242898e6c603e7364fa5814c728a84bf47 tim-obmalloc +42643 3c07b6c5cf788b7bd0c8fea8a994a4c6c9150803 legacy-trunk +42644 f15302d8b2de59f1a141241dea803cb2deda1db7 legacy-trunk +42649 5c36c222e7ca5310e5cc8b8db283bd669d1e24d4 legacy-trunk +42650 97ee7b53366481780b6f331550d664ac863f6682 legacy-trunk +42653 c3445b1cf1bf1ed04dbd1c2df5a8151b4102d179 legacy-trunk +42654 4292b42683c5fcc7554338bbfd847bb53e91ac52 legacy-trunk +42655 71d873054d29edbd22032c8c915cf0eecbb8b5c3 legacy-trunk +42656 ae39fce0f9a16ec0a588d71899dd46b77d514610 legacy-trunk +42657 45e6f901902ca5857eee91aba048df7dd5601864 legacy-trunk +42658 66fc5b262868bee7d231c759846c1fed3cd5edec tim-obmalloc +42659 942ae25cb39150409102d4d666e37314895a42d1 legacy-trunk +42660 402de0fef116d8e7c14c02c56dde0cfeb5f74b5d tim-obmalloc +42661 115960640f25de5b01d229b322b79e75f8b20aa6 legacy-trunk +42662 f7b4726ada6c509c039f6762fe0aa1ab316b3bf2 legacy-trunk +42663 c40a33ca65b9163b9d82dc93eb9b172f36c3bbee legacy-trunk +42664 e580c8b0dceab40ebf29f85869a465c48e0c6aff legacy-trunk +42665 5f3822c2e73104bbe4f9d7ca081bb0b30385243a legacy-trunk +42666 99066bea17f8f032e8078d5ad78c6aceb74fc0d4 legacy-trunk +42667 bbf16fd024df7bcebc0f6fe882b7cc8cf9760b56 legacy-trunk +42668 c06613e53fadf3749b891e8fcfd4acfce8e29c46 legacy-trunk +42669 f2a895d33a5cae913f6edc83a0515a0b97581257 legacy-trunk +42671 d6cbc71b80109099d2d3678bba6e8e92a632b28b legacy-trunk +42672 87706438dc3c41ba27c7dc94dd1356221177f10d legacy-trunk +42673 fd5497b64209c24117a47c86e3e87958fdd98c9c legacy-trunk +42675 8a2a5f71b8b3d7e27006a120474024c99f399b8d legacy-trunk +42676 6583c868817aaa4c9b9ce37c35dc13efb7e12ed5 legacy-trunk +42677 4a4e0c58d437e87f0c3159995cd7eb58e0a803d5 legacy-trunk +42678 4178150623378a1e91525cacc4d9aa776254ccb0 legacy-trunk +42685 bbce8ec2ff81d0dcf9837161f168fbe20475dead legacy-trunk +42687 8b6851382e275358fa8b28c52ef7fec7922bc446 tim-obmalloc +42688 fa92fe15251a0510857b2029e6fd2b75c1959662 legacy-trunk +42689 43b9d5f0901be6628445f5aa5308c73cd9a080ce tim-obmalloc +42690 43c70460ccd590d0b5948f458dbb4c81adfc31f9 legacy-trunk +42691 796d150e45a94bff120587420233497b7c70b7de legacy-trunk +42692 a3e4bd475ad7f7485840e13a4832fb4dd229a120 legacy-trunk +42693 c0982b8155c62d3ff45a821fd6ad315b5723be0f legacy-trunk +42694 658f8ff2a442d018156e5581acb19778c6f0e463 legacy-trunk +42695 31051a70b2972d8f2ce40e489cedea94946400db tim-obmalloc +42696 dbf9cc6c36ebd71cbbd92337fc23beb69b883170 legacy-trunk +42698 a2138dfb5965264945526e012c7f5e281ec297f7 legacy-trunk +42699 3ffc1e1d2f576f64f6d7181a63365326e0aceff0 legacy-trunk +42702 922539dbdc4e5d9c86c50f538bf033fb7d7631d1 tim-obmalloc +42703 e821b936f3fa756a1768ce63fa45acbe0b89c860 tim-obmalloc +42704 8df55014c8fb0cd2714a33da3b41b0833aeebba9 tim-obmalloc +42705 ef5246ce8fe65600f0dfa5aa9af4aeaff4618be2 legacy-trunk +42706 dba77092d46ebaf2bb8f242bc2ad03d877b4f579 legacy-trunk +42707 0f7284c491a317bd7ff649e76ceabf81150a762b tim-obmalloc +42708 c2942cdd88b32507f55a39444bb8d80198f26066 legacy-trunk +42709 0b5e9ace2e87b3868250f3dd3514385c9a2e3d22 legacy-trunk +42710 92ba72484ff3845248ee997b169fd3a6e065057e legacy-trunk +42711 8e04de2480e49ea84676c18ab3fd65f7ac64d9a2 legacy-trunk +42712 7b66b2dcc5e96a64a18df21d13ba9f2af11b48d5 legacy-trunk +42713 1e83f182b5f9af811d4748ed91aeafd36b451314 legacy-trunk +42715 2f19b981ac247c323d040419eb617cf32ea7a5e0 legacy-trunk +42716 32e2b8bda535b8a68715d1725437f39a362febe0 legacy-trunk +42717 d0ca6302dd3c98ccf071d83c61bbb7c7d834dce3 legacy-trunk +42719 c4138ad1e09a0e39c782304ed2dc9e80bd6e1fa2 legacy-trunk +42720 3e19271efc46e692638cbd361d7e10ea52a14651 legacy-trunk +42721 83b860acfe95e6f017ccd620293f7543803e469a legacy-trunk +42722 a366dfc7035fd1920c1aa03b27f3547af19e48da legacy-trunk +42723 3dd92d97a67ff821df2e37819b3cd86e928baa74 legacy-trunk +42724 22c51632b459d7702e4ac85615afa2fb0662b720 legacy-trunk +42725 5e463ae707076dd28708d767d3ef2b2c34b4486d legacy-trunk +42727 95a92b2b53ee49ac63786eea731bd2c8a592983a legacy-trunk +42728 0674796b696cc5a2060cba23396bf3d39723a611 legacy-trunk +42729 1daa199b784be4a63f50c805f6ab43a9c6796edf legacy-trunk +42730 e364bc76bdc8d463f64fb723b6c0350014dc7875 legacy-trunk +42731 d6c30ce3868b13d7c9ddd337e9659ffae7b2d031 legacy-trunk +42732 ab1b53d54901a8da7167fea24cf90978cc6e465b legacy-trunk +42734 623763457a4e8f757016348b1b4655538e965242 legacy-trunk +42735 4cc95fce65da7639679fe5aba9a72392242aee65 tim-obmalloc +42737 f8ffa7cbf9605de58cc4cf787e77a5df52a498e9 legacy-trunk +42738 af9f9b593a536d728d2c478de66f0586cd501448 legacy-trunk +42739 64ff3b225d48516154d451cfee8c4f04d73d20ea legacy-trunk +42740 35612a131ac62481499825ddac2101b9d2af83a4 legacy-trunk +42741 a54948180a3de229e5e1cf835ac03c5bcbd6be0f release24-maint +42742 1aea3aeca535a630cad634d845b246becc5bdf5e legacy-trunk +42743 1211a68b28dd371779dc42a58326c47af2e4d3d0 legacy-trunk +42744 cd7d2919178c75763777e0953be119de53c74ea7 legacy-trunk +42745 a7b3632d0e051525bf5871ff6f6841bd22186f0d legacy-trunk +42746 a00a9eef6063ace997fd3e378cf5c59f9ea06de5 tim-obmalloc +42747 376792bfb57ef9b8340f4ba47f9f325e2f5a2d12 legacy-trunk +42748 25f8e6dde4a3b096b05ab30736a1dc6346156abb legacy-trunk +42749 2b659268a73aa3e68451689ef420d7e96aed2e1d legacy-trunk +42750 965bb4a54096632bf1441dadc813696008754b67 legacy-trunk +42751 d853bc06847e66da4a5da7d2f604ffa5d611ed9c legacy-trunk +42752 6e285c69efc05b7f8bdbb0990aea7b0c93bf8d56 legacy-trunk +42753 57322cb2ca1117b7f0d2b4c0dd54601e0bbd2faa legacy-trunk +42754 0cc58dbd87febe1820ab3649d53621bdbf396554 legacy-trunk +42755 c3c5d06faa01ecd1f67bea515a3f2b68ab45d65f tim-obmalloc +42756 f666bc9f617d8702c458228fc642aff8213b1e62 legacy-trunk +42757 09d17430f4c25ac4942adf6b16371aa725f0a0b1 tim-obmalloc +42758 0e2cd94c53a98a0843fef7bfb21bd1195fd4726c legacy-trunk +42759 48a28b35dd645565ea2c24a34a4cd350ec23a4b4 legacy-trunk +42760 02d9b4769a88e86edec2a83107bd7f78a39a2514 tim-obmalloc +42761 604a126f83c214f4095d1958d60fa2a16629d792 legacy-trunk +42763 688795873ff1cea1408f4f2bf8ad243298665a4a legacy-trunk +42765 1e8cb47beaaa48df856f7dfbc673f34846b5c832 legacy-trunk +42766 df843b07f5fe0a8c324e410526bd623cc8e18403 legacy-trunk +42769 89d69d9212a2dcb90fc84f2a00e5cd7a0c6f8289 legacy-trunk +42770 047471cb9e4d97b573873c70a480ac0d879e83bb legacy-trunk +42771 7285c37d7633e4de3db57b4d9f8d52134c2b3543 legacy-trunk +42772 8ddcaaa08fdded3f1f81e2e5cb56d4cecfd77ce3 legacy-trunk +42773 42487d8cf338008f814731ec3dd3bcab372b11b9 legacy-trunk +42774 04d18bcf7519f82daae59d8ed2bf92d8367e8650 legacy-trunk +42775 515ef7dd16bd97d6725e67c2464fec504ac53523 legacy-trunk +42776 88dfd3281f71d7cad51680796cdbc8084e563fff tim-obmalloc +42777 bd0641d62462537ed49ef3e878838875411df096 legacy-trunk +42778 8eaf9531a2ded296d01b64587db59eca7907caf9 legacy-trunk +42779 6582a4490d1aab15c5ac4e76730bd0b3700d3eea tim-obmalloc +42780 c552f2275782cf62b8ab4cc8187f17bb54c63864 legacy-trunk +42782 e01f17c27ef30c9f4c83733626315705b144c038 tim-obmalloc +42784 a00bd3cdb7287aafb36c4bb485ec0c8affe6d240 legacy-trunk +42785 d5e5a5d9fe7c02547f198d9f393d2381ffe8cc6e tim-obmalloc +42787 7099f6e68183eca649f8100c39af1c2f03c3d532 legacy-trunk +42794 de4816d344eea4858e6f4c722d3a3eb4aa014c80 legacy-trunk +42797 b1a3c2238f97e1a6552f95d048e534672ff99bad legacy-trunk +42798 2c2dffe070df2836128408cfb22b574c85c96909 legacy-trunk +42799 ef8779d455ec5cc964e9ab7a5dc5c7667cb9c3e9 legacy-trunk +42800 aba73b46803c7790b1bc95b2496149209b522f18 legacy-trunk +42801 1d055ebd83229fa770bbd6d61a13d9850a614b42 legacy-trunk +42802 54754f0d25c72f7a5f1a9ef95a5b46cdd132d7ff legacy-trunk +42805 7a30dc2af3293858105d4516968576092304b2ea legacy-trunk +42806 6b7ca3b201f3efdfacd87ec7eee74cc2a373eb40 legacy-trunk +42807 4f2af56d8ebe4d027e1333da99e03a1e6532cf0d legacy-trunk +42808 bc0797b06a99ebc6ea675b5170832bdeb7c586e0 legacy-trunk +42810 d38ab5cad945b354c31f10114034b65f0a080208 legacy-trunk +42811 bb5e30467fe4d1762e508183955ed8a734152a82 legacy-trunk +42812 c1c46210b4b7e40ecc5f537376514269c281dbf8 legacy-trunk +42813 12bcd16c31ade6fd453ca94406cb3fba6f4c10bd legacy-trunk +42814 d02b4cfefa0a0be60cdefb0720364a8a0853ab80 legacy-trunk +42815 7a6b174ddef2f18e30d7efc794545c31d8fa9b08 legacy-trunk +42816 07f330ad1b475e2ab756bc73200f2ab240df9495 legacy-trunk +42818 9b9d8391b671cc5f0e5650b293ae4b80029488d8 legacy-trunk +42820 db6131c5ae5abf208fde1b384f9ea70c5c01e0ae legacy-trunk +42821 b2416fab13fe6d3fd3d57e3a34a1bae2a20339c5 release24-maint +42825 1f584164e0131761a5ac2c1aef151d7f321f5dc8 legacy-trunk +42826 653d8585f080a01796179bf54f86082125ca871e legacy-trunk +42830 74701e4fcdad0f94859205a111143b72ef1ff659 legacy-trunk +42831 bac6bd343a1247b8075b21c27df755c6f6c31ff1 legacy-trunk +42833 3c519a612bdb7eca2432137196842d77e72f3e9f legacy-trunk +42834 9e81788b0d4b5912d32f9a05967737244ff52096 legacy-trunk +42835 0b7809660456f7922d06306715b675d5915de969 legacy-trunk +42836 9109b1a0d265e1aefc6fb283d67ef828dca98e03 legacy-trunk +42837 01bc8ee3d2ff846c4f7a33a619e0b286b5b25d1a legacy-trunk +42838 3a3aed49b2456e917d8b6620638d625179f8be3e legacy-trunk +42839 dedc2c94d112624418562ced03c04c9bc51b6f7d legacy-trunk +42840 7c1aca8e3d7d7a5ab9255bf31e4954b5e5d52d7a legacy-trunk +42842 b1929e8d15f999944a52a7caf67941e7b45ec17c legacy-trunk +42843 d3d0dd92c731ab7e0ac47bf2ad41a7e524edc962 legacy-trunk +42844 a969bd15788f51405177f9432baf6135bcd72c35 legacy-trunk +42845 1848d75bbdb38bd5c44bd276000e9ec1e49112eb legacy-trunk +42846 4284b3324ce2e4b641d0a278c47346d9b0cf9c99 legacy-trunk +42847 391f74c9c26368097036fc4dd409045c332caaa7 legacy-trunk +42848 adbaa9eba97543d7a11d3e95657e3c1deb08934a legacy-trunk +42849 4ccef47881f79d938f912598818928a0493ed10f legacy-trunk +42850 2d1df24e33df710e4d367c882f1c67b07a6e1d09 legacy-trunk +42851 3b675ac9a9254e1205d025046773720598bc4898 legacy-trunk +42852 8cd152746398797d86d0e76aa06607283729daa6 legacy-trunk +42859 6aaadbab3530155ec19d81cda3bdabb3061fc6f1 release24-maint +42868 f80ca713bb4bea3539390c21137567aebed019c5 legacy-trunk +42870 9b13da647a5ebb552bb87f08a59e03c6cd93618a legacy-trunk +42871 8e0f0fb14d358b7bfc25acbaffff3c3e4a56511f legacy-trunk +42872 204c307b01ce57ec37feb1bff3ddc632ee6afd3f legacy-trunk +42873 fe0736ccba75518072346373b9f32c5871989e4e release24-maint +42874 cd72eb55d5f8d8cca71b90b4524c4a65059683eb legacy-trunk +42875 7fac5d79d043bfae97111f0574bc9a70b0db4c2b legacy-trunk +42876 4f628ecc30cb2eb4e23e945ec025c27c97001d6b legacy-trunk +42877 8ebf7997c6cd56e83c83d6f30e485a70e53cc546 legacy-trunk +42878 895074e5ed3ab80a463b10e6ba98cd0658faf1a2 legacy-trunk +42879 1e043a125be683f5b410478835471c7be87e63c3 legacy-trunk +42880 2d24f3a37a1b35f5343e0a0111685d13beca636f legacy-trunk +42881 1e191392ec5c6182ec66cce16393628c8500a573 legacy-trunk +42882 15d33295615f6f0a44a9ff87807313f0a79190c0 release24-maint +42883 9eb24f92a784bf0cea66cc2bcc66c1edef2a4f0e legacy-trunk +42884 a735df552f02d9fa199632b2440486e09eb56b94 legacy-trunk +42885 e62767e64de8196c5212f84bfc19f9f128a2c254 legacy-trunk +42886 c91215642dcd45de00e27cd73f1e53b9483f82ac release24-maint +42887 455672a8f87761c70eb64b03f88d08f8c08d8114 legacy-trunk +42888 257ad89d92df8452236b8fed67eb80ae4256b0fa legacy-trunk +42889 b16e504413c3b8346c58a15fb8f15a318c840a4f release24-maint +42890 78c9acbb463c33af3ad56b96841006415159b17a legacy-trunk +42891 9bb590a0b7fb04a6560c73e37ee2c8b31b6cadd9 legacy-trunk +42892 68a0943dbbe533db28cb26b7cfd1715adfb78c41 release24-maint +42893 ca4bbcbbd0d5950f1011bc91d660dd616d0218eb legacy-trunk +42894 e9a7a2784e17efbba2308e1acad667fcbbefd283 legacy-trunk +42895 accfb156f9cc641eaf4c23a39ee74a12cd925e23 release24-maint +42896 8d41ddc31e61e63b22e127f2a5beddd881646fb1 legacy-trunk +42897 b22c48fe62a4b286438da744a2a3552822febe26 release24-maint +42898 4706b7a1256c29c7497e94b86b7b749537193c2e legacy-trunk +42899 6a9c7165b17bdb7b85136e1ee13158dac280647f legacy-trunk +42900 b17da5e0a697a0ffd191d5f80e816e649186a493 legacy-trunk +42902 cde7573354929fbb965e50bf362174e1100468b3 legacy-trunk +42903 db56f570b0ca1205f3e44bef0cdc1cac3306e8a2 legacy-trunk +42904 d342b0dc493414fb234c599223829124e9bf3731 legacy-trunk +42905 13b98d0a7baa8b6efbe2d3f1bde30141afa84294 legacy-trunk +42906 7cf5d9ba5f97eaa3a4867a03b9cbf2940b7e9dfa legacy-trunk +42907 b48ba7cf4576eb5ca28992e828808041723147ea legacy-trunk +42908 f6b7e0c384da9fddc30f50209988cd8746615b75 legacy-trunk +42910 a9697de5e18bff42013be04888ba89f33045c73e legacy-trunk +42911 632a4daa8d4afe15373d33c32cd939fe942df199 release24-maint +42912 4b347c654635f6a5e52fc2ebd13079f7d3f4336d legacy-trunk +42913 552dd5fdb9d84fc78115f4bbed2c5340d0f7ab22 release24-maint +42914 fd735596f69c1cbc3806ce083997b13954f7eb83 legacy-trunk +42916 435f7f3c8b6da475eae5d469e2cd962323321e8a legacy-trunk +42918 6f2eda495d9de6b68f1852e0eb446034b3781530 legacy-trunk +42919 27905ebaddab5ddac5fe029551a4e67c7545bdfe legacy-trunk +42920 0023c0cf8febc0b9af3c1251650142017eb9e979 legacy-trunk +42921 9227ae3db7ed1e2a4af43b2c7c2871721bf3161f legacy-trunk +42923 12b08123ecbccd82e18648c980e50bb05dd8c221 legacy-trunk +42924 4dedc05ad6b4764aa52bd5044987ee44ded1b7e2 release24-maint +42925 21033bb7ecbe19a114e75e36a751b2fcfec30491 legacy-trunk +42926 56a4cf2b02fddcfdd766f35c762ad3e601f096f3 legacy-trunk +42927 ca29dda563b7a46a4fce327c58eb3142a1c2a1fe legacy-trunk +42928 902ef1dc2979b6cbf82817e35a380d4a718d740a legacy-trunk +42929 69eb6d1b99f56d6a644952cd08276aab5c5df475 legacy-trunk +42930 3e2b5747038fffd4657f34c9970b3bd1d477c743 legacy-trunk +42931 0bf53639014a94bb3e083fd4199b9033440268c0 legacy-trunk +42932 91a9e2e31e930d4616ebf07b2e933aa5b57c277b legacy-trunk +42934 b4e89d29bea8c45cf2baaacc9d1f10b8dc2e1374 legacy-trunk +42936 b2184d910a00f8169636428de6924210020c8190 legacy-trunk +42937 0e36e7c66b8e8a5a3fe29fb109a03dc794fa8ddc legacy-trunk +42938 f1eaae7f962d3f7a1aad31294ac552a012531157 legacy-trunk +42939 18f911dde3e2400ddeb0bdd02ecceeafcc4bd865 legacy-trunk +42940 502a68887783999baf5848410350a8c20d3e83cd legacy-trunk +42941 d40b48df83e794d9a2c0400a958501ff0b30cb0a legacy-trunk +42944 6e9b368789df0ce5663e31a52393fd2dfec26918 legacy-trunk +42945 3652b5128b707de8331140b6ed723a316d8bbc8b legacy-trunk +42946 79d5b7f77ac4594f337e644c0fc8fa9310c5f788 legacy-trunk +42947 97d38797b8bc097ab3f0a3b731be1e09ad925c80 legacy-trunk +42948 d3d2f9ffdc06540c6b9eaa8386a71a919a5c8408 legacy-trunk +42949 805800181e0e19fe6ca2cc01cba89e7bef6c1dff legacy-trunk +42950 48e0a5e39403ba1ff0e47c3dc711f95768b51fb5 legacy-trunk +42951 7c17e9221f941f6a1cdd4071dcecfa2bdd62301e legacy-trunk +42952 fc10ff322df1b793ed85fc82425a5b3492d38ff6 legacy-trunk +42954 3266a020a0dab7f0a7294bae981f6e44b8afa21f legacy-trunk +42955 11f8b5b8ce20187869a9e97a2ba0776ef75fd4c7 legacy-trunk +42956 fab44c5c8df42b95311e757e305f7911b8e5d705 legacy-trunk +42957 2a9056f4c1647663466091627c2d6fdd14edc0e3 legacy-trunk +42958 db4650493c2b8e392c992ac523244fdf6e1bdf47 legacy-trunk +42959 ae59fced2e142d4abfd22c7b19747235eb3b7790 legacy-trunk +42960 ebeba73538947df32700f837c85d45c2018319ee legacy-trunk +42961 f120f740abe41e677a61af38097fc5cfee83bcbd release24-maint +42962 06e3f627ad9958989b56ed89a0dced653aa461ba release24-maint +42963 e256b5302b55c38471e3c25733c971fbe0092b8c legacy-trunk +42964 df43c04d25545ed4bbde5c03de94d29cb41b07d5 legacy-trunk +42966 1dd65204c09fe7d791f619feb5b54cad11670969 release24-maint +42967 03ef987043ce00e904490fcf9f64292874418d8f legacy-trunk +42968 e4465d2737c4e75dd6e41c06135a6e4eaaedc7fd legacy-trunk +42969 671877d22a1cc8828f273df22b1c4c10e62361c4 legacy-trunk +42970 4b867e654a8a4cc0731ebc35faf1f535855196aa legacy-trunk +42971 f06125a9d40635715d96852e3bf39cd853336ee0 legacy-trunk +42972 7351aab87e6de0fb3bec7e4d9eb85df70fa5c097 legacy-trunk +42973 0f19a6fc975607a60a4026df8b3b93c011f33e03 legacy-trunk +42974 fdb05c8ad5333a3917807e586ef44a5a83ad2bdc legacy-trunk +42975 40256b54c79060b604d603dc123b0a87768b6971 release24-maint +42976 6913eba78d407910c2fe6e9d91f287917abef61c release24-maint +42977 c77ece66709d17e5749552e21820932343a53c63 legacy-trunk +42978 ab00319c3744861054cb10b9efba2afc791f0e6d release24-maint +42979 97fed618b5e723a4fa3ace4369b19e0ced8593f4 release24-maint +42980 1a8465baf07dd4f729abe24fed7586574abfd582 legacy-trunk +42981 c9e49138f659b1e149907c2ae5264836bb0b3523 release24-maint +42982 db5e720b0cef9e28fbcc23e7fc2475a0d2fcae46 legacy-trunk +42984 958425007ea6a8a6935d6a45883fd13234f67e77 legacy-trunk +42985 3be2425d77400d88727e498671cf31b98a3050af release24-maint +42986 cb984a8b11342f0be161eb48dd937a296ffc941c release24-maint +42987 4309b3fb5b435eea9021a1159c428e009a4754c7 release24-maint +42988 32b868a49659309c959319c20bf89955a936f88f legacy-trunk +42989 3ad42f99a6dbb7fdc047e0c9065b5136bb9697ec legacy-trunk +42991 dda4241f9abc7ea1edd29f875b5a12eb214e9b62 release24-maint +42992 3d7adf8874ac58b8386fcf93abdf753f90781d08 legacy-trunk +42993 8292e3e6ecfea97ad29e17fcc00036b1ca00a360 legacy-trunk +42994 7eb2c0f0d0fd665126d1a5e28df5a7cb4a5bc173 legacy-trunk +42998 9a08724110d0beb96db81c3296b686620a0cf3ee legacy-trunk +43000 32103c5dbefac3e2bcdbfd46928092b0730fa14f release24-maint +43001 a8fd91cd317acbb89108ce4657275103158e65e4 release24-maint +43002 15a458171eb00890635a911da64c62dd9ec06225 legacy-trunk +43003 0c0408352ee69cafedcaa465cfa1c027e3e3f6be legacy-trunk +43009 035cc84147fb04e489fa07ad92b1aecc46419bf2 legacy-trunk +43010 85188e5b4912f54b710048bbc60209927f599b12 legacy-trunk +43011 b5a13570592ddc94707c6c8f2abba5d812c918c0 legacy-trunk +43012 6b1b32a85f47601d8fc96a97803a09ed64d13e63 legacy-trunk +43013 29e6e7a107de39205c540a2867c4c26c868798d4 legacy-trunk +43014 bdafca2192d37eb1f1af30095f8555be39b4dad9 legacy-trunk +43015 8c1bf799952cf1d0345b072bc0db42b3adb77323 release24-maint +43022 95469e97fd9000ab28c70f9964b7279fe1b2018a legacy-trunk +43023 4808ee62b156a619a59c2a825486512a19bdeabb release24-maint +43024 b3c3640d92f84a12e05e298458155c070f346133 release24-maint +43025 c8ffc913d0143057c75033cfce123c024b5c6753 legacy-trunk +43026 ff3024259d91d72bae7a7c3c7cede223220e893b legacy-trunk +43027 e2ab755ae68580e0c02338b58918eb9103be7f1f legacy-trunk +43028 22fff1f3c78ae5451881d071965a323a9396cecc legacy-trunk +43029 cde58cd07e7d85043bee5f32b68c8e478272bd6d legacy-trunk +43030 4a896fc1238427241939bf80dd40bc0fa042d4bd p3yk +43031 570c616acf0c14ec7a8ef27437e1436f3b29bc20 legacy-trunk +43033 375ce1c04e66b59b1f713d5a5436d4d4ce5b0873 legacy-trunk +43035 49c6eb688906b1dddabf578f08129e6729d6151f p3yk +43037 aba814aa4c6a7bd82d1a33f0c4c08e1c8119dff5 legacy-trunk +43038 69cbe0fb7a6d204b019f2bc3267334e91234b181 release24-maint +43039 8e8d0e03f076a242c2b407cf795d1e530e83fa85 legacy-trunk +43040 251f921cc81dcc1d9a55f25fb1c641ff606bb21c legacy-trunk +43041 5fb54ed8543bb073bbf8934d305fd8861b45e13a legacy-trunk +43042 d969e339ac1e537ffc645c0bbd2815a90b6b11d0 legacy-trunk +43043 f914630f419c1c4e68122fb6dc7ca574ed24a257 legacy-trunk +43045 7fa4c29d703015a798179e2d81bf960c9a109982 legacy-trunk +43046 9d3a2cde0dbd30f9c705e108336f63d7b4b02215 legacy-trunk +43047 451da3a5291316da1e88759f62aa4995edebb500 legacy-trunk +43048 179084899d969b379556dfe60cecd3270733d603 legacy-trunk +43049 86f13301c3db414cfadca459be1cc03e7c89765f legacy-trunk +43050 55e4f4765763ecf6620ac3cb9d729b2f5ec95d35 legacy-trunk +43051 5b38dc551f86f8c5beb233a070c4ee8cbfe091cc legacy-trunk +43052 4f44412e9f6c127cb5a200de17e8bb89d725f4a1 legacy-trunk +43053 3bf23061d86cd9435f56c4942c338b03fa7e2a65 legacy-trunk +43054 6738f7b282f65c5c91c05c425bff094a1f24809c legacy-trunk +43055 354e22f3dac6f322dac846f869d2e6b3573d7f19 legacy-trunk +43057 1ddf0d81d6c590ccdcb335207fe3a487730c4ca7 legacy-trunk +43058 614d80dffc1f88e200fc9706a8e77b19fffa4ee8 tim-obmalloc +43059 685849bd905c4ab3d3bc62520350340aba932513 legacy-trunk +43061 9787f830d025b585c4ac744e8cc73872770ef984 legacy-trunk +43062 62409a1bc4db32e4fe0c94fe90fff62b0db0f4e7 release24-maint +43063 ab17da68426ba854240a0e9f915285d33f7ea8c4 legacy-trunk +43064 5d2ab4823f3cc7fe2f7a72fde17bf0986f74d45d release24-maint +43065 f0b0aa357d49e4349af5b45d9ad7f0d5e95eea3f p3yk +43066 25007c155668dd74e3d12cd62ffe944801badc71 p3yk +43067 560ac1ba99274fbed987da2fc603eb162ed4b831 legacy-trunk +43068 4ae0bbfc6866e195477798af73a7164bad24f311 legacy-trunk +43069 d68344d932c458f8767911a528e0a45006c5678c legacy-trunk +43070 85eaf0ca64f2e4ff6c3d64b31076adacee6819fb legacy-trunk +43071 7dad83ca702db2b09dfe27c2917d6c1167e22429 legacy-trunk +43072 4920bd492d986b5aad02a1ed6d685299db87a6c2 legacy-trunk +43073 4727f260f6f8d96935e0dc9c75cf4596b00c3603 legacy-trunk +43075 0f6b4ceea580538c83864a06327f6c22df4f7caf legacy-trunk +43076 495344fed255b5ab8d1b33aba9ea18f7302e5dca legacy-trunk +43077 f70c036489ec4317808a84124d084548eb5d9911 legacy-trunk +43078 03894a7a32ecd3fff4397fa3da0c221d4d1fe39a legacy-trunk +43079 a2a604931ff68047fc606ca2880801da2ac19192 legacy-trunk +43080 30203e2b97d732d5dff6095b9be8a61b741d5cbf release24-maint +43081 92be2e1170331958c55dbb02ff08a29986f99419 legacy-trunk +43082 82f700fc4de20de58b7edbbcec6e43da2a6dc772 release24-maint +43083 a253958bfa4c42b302ddde4c89a65f7d34e2b012 legacy-trunk +43084 e721d68dbf6f12837d8c6edb7b5ff36d2e8438a4 legacy-trunk +43085 3b30720fa57a114b2f0a082cd4a142967c75b2a2 legacy-trunk +43086 c0aeb10654b2f669ce3e3a1e2d0f1b53022da52b legacy-trunk +43087 fff4eecdef45f6418de49d81ec0de1c711df7dd5 legacy-trunk +43088 bce5c7ae659a52523ec06ba07750686d25e8961b legacy-trunk +43089 c449944068d228f6e3447963c4e1b3d934e8f7ee legacy-trunk +43090 bfb74a420ac8eb35152d0762d9537d40b40f7acc legacy-trunk +43091 e415f1a874b109efb47203f570ca59f24e7b120c legacy-trunk +43092 a9c3c93824653e068921f70bc3815ffb7563b640 legacy-trunk +43093 53c806f7a25086c243f7e97c9ed2fa4b3aee5cd9 legacy-trunk +43094 bd3715353a09b5626679452b44030196e71d97f6 p3yk +43095 7ada16a14968674623143d2d08116590526ced7c p3yk +43096 cd1818ee7ea9a8ce839bf1b76101fdbfcab7a5c4 p3yk +43097 ff381b388cff42c9754487f6fea6fa66bb6c217d p3yk +43098 081b4f0e81b7baa680254a30b72c45451d71b78d p3yk +43099 3342b3b586304053a76a0f63dd950e512b6ceaec p3yk +43100 3e1ee6e16c81f912f691c244af1466a0db517b9a legacy-trunk +43101 c048a09d06ff8674e0509494a5e586aace273c04 p3yk +43102 11839776c66c324366a77c20891cd1fc0060786a p3yk +43103 40511bf59297983e49674bef9a2711edfb86990e p3yk +43104 a01672a96d47270463660bf55709f85f9d965853 p3yk +43105 ce267f68065e22092f178ec176364a7fc32ac44c p3yk +43106 9ef3fac5d2c0a2a949622e54f99310e090b0104e p3yk +43107 ea5b66af6245a409e2c23d766215f87d4e83509f p3yk +43108 fdc05b167236e757217dc58d1593e70d1fc8a5dd legacy-trunk +43109 5aecedc98af6559e04539ac593541e7e0e454e2e p3yk +43110 f7fd11a75a6a4dcb8a23b0f60b3cb476bd32b114 p3yk +43111 c2c12814f854abf0e080a115fbaa45808fb7c663 p3yk +43112 2b04b9c7b58eb2d006e5b76119e35f51d318362a legacy-trunk +43113 f02a03254b91e77ca7402c58f5773180f04b7506 legacy-trunk +43115 203c06fbb07544743c2d6dd4addcb535241a932f legacy-trunk +43116 d7d12d7fcc392f9796ac7f8de979380b855410d0 legacy-trunk +43117 23045f1e39f2f91c8fd1fa453e340182ed3864b3 legacy-trunk +43118 64c83e0f683e566ac6de0096e2b624cdf6e23bbe legacy-trunk +43121 b01c80d88267fe50afbb34674bcf3cb370c5f981 legacy-trunk +43123 4c804ab87eadac0aac6024f6bcb3c643b52afed3 legacy-trunk +43124 1f4549865aadbe554aed42595aed8aed1b256a42 legacy-trunk +43125 e43d5d2ca50abcebf4c67ef6af806473a731205c release24-maint +43126 dd49847a60d300d1760f1607c5044da2651de72d legacy-trunk +43128 b33d9166869615cf2974dc87e892b6991856cc63 legacy-trunk +43129 994931b6b87548929bc3612cd8c655d26512d60d legacy-trunk +43130 43c393b2fe9fa479d07db4b79ced01ea558c354d release24-maint +43131 81d0e93208d9e8105d270dc6642ded4a62f15cce legacy-trunk +43132 d13430a8bd2ce259ee95285e3d8a85aba650b88c legacy-trunk +43133 b55f53041965359644cabdc9fbbc52384085d4ea legacy-trunk +43134 685e2123864d3f6af04b867cc9069a9231855865 legacy-trunk +43135 38400b66240475a2959d210b2e0f052026b143c7 legacy-trunk +43136 3f90a93ff5d0ea918824c51f080ac67ced3a1ee4 legacy-trunk +43137 92cb4a7fc554effa6916b71abd225a6db9f4fea5 legacy-trunk +43138 6771f0e08b60a236f216e667feb4130b108f9d80 legacy-trunk +43139 92952ac8e8911f067f56bebc49aced8d9574cafe legacy-trunk +43140 bb491e55fb4c2433a51ccb4e1eeff56078944f1d legacy-trunk +43142 843928c6b24cddf6db8c2587cd279cfd838acf03 legacy-trunk +43143 6c3ec3736c514df7ac1dd0801f574a08b9a9b906 legacy-trunk +43144 9910ff69af973be339c2a75798b0b0e345b1aeab release24-maint +43145 3b7b295cca902bf710ffb733dedde5071a6c9b67 legacy-trunk +43146 c011af4a2b01fd2517eee8e3d2a23e65a92de955 legacy-trunk +43147 07ab557625b9ceefefc7ae6438d5a396ea597f7a legacy-trunk +43148 23357b88c03eafa6be2985ddf556ce1505e35ad7 legacy-trunk +43149 1d3081cb3ea6735bb2ce6ca8a957befba164737a release24-maint +43150 7c22b5aa343871db94d5ee631f4e0af3a7764dbc release24-maint +43151 8d42f661fec8029e1a20c343dbbd7b18a7c6990f legacy-trunk +43152 775cd69f8a237dafedb94729e6a12f65890793a5 p3yk +43153 6b516f321d8524cbbee14d1e66179842c8f9b1b9 legacy-trunk +43154 b31b7ec5a6b43940cb8e9010bbe9c32a5888e81f legacy-trunk +43155 3dabd9bb496e9a68cd6cd94b7622973fc766405a legacy-trunk +43156 b4d0f8d95179a46bccb49d80dd5613d05ae0c24d release24-maint +43157 de8f5d1cdf4d95824aed3b0e33d78d72f3b9b506 legacy-trunk +43158 d62b13488943d78c9c8d81732293232a84b79047 legacy-trunk +43159 852de33ed427d6a430f61cd89d3622d9a3905a8a legacy-trunk +43160 2dc63cdb09cf0da83bf149ff35070a2d43337298 legacy-trunk +43161 db986be2c00c5d03a5de545ae631ed82c05cbd78 legacy-trunk +43162 e80fdb3a0f40a9639b481faf8f68fd21abaf42c2 legacy-trunk +43163 79e4dbe4bdc6a638804c6f55cd94bb32be7d76ff legacy-trunk +43164 a06c9fd251208cad2deadbb59e945c0d83bde8b9 legacy-trunk +43165 d860311f8a971e72a9eb332528ffe394cddc6058 legacy-trunk +43166 3605218d03fa0437ae4f3b33eda11a5d152bafb1 legacy-trunk +43167 de2b942f37f948e0cc6af6db4be9b91b3ddf519f legacy-trunk +43168 5a7750db09778e0227fea1ef21b8aa9f06d4fea3 legacy-trunk +43169 a0ac77259b99ce7fc69a027fdcf63822e271c524 legacy-trunk +43171 d8592276b13745a91b8b34d3481d6d27425b664c release24-maint +43172 4907fb879cd9c7a6388aa379bf76782056a07ded release24-maint +43173 6412ed6975deee8fa8d99eeab558f39f1c36ad54 legacy-trunk +43174 87ed1f3d272e4ec3200f0f958ef275159e9f2c32 legacy-trunk +43175 82aeb54b0baab3f1d681a707c3342bf005b52ccd legacy-trunk +43176 136b457b543ab65796bb6fa641e1b3dd1c094fb9 legacy-trunk +43181 f7993dc6bf264f8bb3094881d7f03e5b2ee10d7c legacy-trunk +43182 db317e4357ad54e6c770ce2f675cf7767679aa20 legacy-trunk +43184 db297b9442e40ca56657af125cc024835a3c7611 legacy-trunk +43191 e73b35d81617beb1dd2801249c866ada8062de6b legacy-trunk +43194 8dc44e9d5c939b82d62411f4c21ce4d35dda66f4 p3yk +43195 a9c1e52addf28bbad801c94f74717067f22bf54d p3yk +43196 251ecec04f1bffd635b570f1d6e8d83ffd68b838 legacy-trunk +43197 e34506e44e67682b7d3323350de54fc8a74f63c0 p3yk +43198 52dd45db1e85047abbcc0e56f788e2abe8121313 p3yk +43199 baf65dc639c14fe0e3952f7b504ce7af00936b5e p3yk +43200 08cf8b9ec2087237b4b23187864a0917bf902980 legacy-trunk +43203 2f4a4f96acd1e6f4829c188328467984d6c8cde5 p3yk +43204 aa039de891c987fe6fe045e598935fa4931b95a7 legacy-trunk +43205 0bb7700593f75a21e7a7c56a5781b96bff700201 p3yk +43206 6e929238e3ac47b1829f31590efeeb1027e52b75 legacy-trunk +43207 c9ee32b793e78846ed2c6468d2b2739d2dcfd597 legacy-trunk +43208 e72d1c7c85548909c2fcfe9fdd1fc82b599b6c7c p3yk +43209 3f824141eeb99ebd834add31172ea1a4e7c9cee5 legacy-trunk +43210 7dadd3fc5efac6bb0c9da99103f19848c577b6ff legacy-trunk +43211 71c5694e3423b245f24c825580e785bc22ceffb6 legacy-trunk +43213 617743114600bb4f3bbc9b91694f5f287e091f4d release24-maint +43215 767e6be589a040dbe546d76ae60940fd5b541f70 legacy-trunk +43216 dbaf0bce8d4602d20a551ad416a4fb15415fa59e p3yk +43217 7eac23c8e4e9893e074fe59626a1400ac79bb338 legacy-trunk +43218 4ef99695f7bbbeed995b3d831c1e1ad9513c4ac1 p3yk +43219 7049dc0c621a3d2b02b321c8556774ad8465b234 legacy-trunk +43220 5217c703a94f8abea518dca3561ac0870a5fbb83 p3yk +43221 91dd4d44d3bc70da6f574f8ad4c291ffecbcdcdf p3yk +43222 d7513f38b22f99ebd48459f94255ed34b207893e p3yk +43224 691dd0591691717c7f6c5f279c838c3fa0b03bdc legacy-trunk +43225 0057862a3bdbdaf61ea88da218b3961f24bf9aa7 legacy-trunk +43226 2d92ab7f5e89e0d8bbf4a2996f99fd7831a140f5 legacy-trunk +43227 4d80607033fb315de56f02272b41cd0a42a6d8d2 release24-maint +43228 10cce3f6517029aaa971cf4b525c070a0a8aeafd legacy-trunk +43229 3545811239b40ba39de47b3115f6c130977957b1 release24-maint +43230 16b8859b07605ab6d1f9bd1d50086c5fee71d195 release24-maint +43231 9ad0e517527ff41b773717aa4033391615c90c19 release24-maint +43232 8149d0a424a55e00550e19263fcc029469612935 release24-maint +43233 1af245fac90a6b6faef88aff004d953430d24ae3 release24-maint +43234 c1e702d28cf287fc64af6a3ff41ce87919bb42e0 release24-maint +43235 a950450ef4eb9287264aff18c9c7a903d046d9bb release24-maint +43236 d1170e9aa789b3a4ad0153dda2d073c2ce4db35e release24-maint +43237 7c5be7c0fdfdbbc0ac1d91c07038bc81412da412 release24-maint +43238 3e09c8566df1afd70a554db06052bf3571474d83 release24-maint +43242 b2e6d6aa86d1c1b322ac3504f920cccb3459dbe5 legacy-trunk +43243 b4d92ef2f3380dedb29e30fff42803201afbd6d4 legacy-trunk +43244 0c602938ed8e879783a1d6425b94c3ed64ed09a7 legacy-trunk +43245 2b7ece78e293147777643865f73c17a7e6ac0bf3 legacy-trunk +43246 45dd938b7feb20fd908ccdf002b616d90de80dc6 legacy-trunk +43247 027c6fceee0daf980e3e4e8362542739cf4a5e26 legacy-trunk +43248 41d70578578a381160f48f9b2f223f08ce048014 legacy-trunk +43249 4f97b6a229ce0315f43923aa52eada70bec1474d legacy-trunk +43255 066c9ce48c3002beed4e3b6ffe6e59037aec6369 legacy-trunk +43256 29df4fe128a0abeabf01706f94de0e42d507b1c7 legacy-trunk +43260 72a720dd64fb4b709ff6415ec23044f41709b72a release24-maint +43261 1ed7b8dc777acfd5f6ef53bfadf4993fbb49bd1f legacy-trunk +43262 97357fe342227bd9bea0e078a9ffdcebe79df231 release24-maint +43263 7e3bf8492c03a6965fef552e6fe527acdd050757 legacy-trunk +43269 a18aa3fbdd4ab0d81e72526913ff82722d908ccf legacy-trunk +43270 fb481e0f5786e51ee3e1e2655a16335498a9c990 release24-maint +43271 a8de0b9600275bc46830491134a5579a594a1c56 p3yk +43272 231d604ded846e0a41b4c3c11bdfe31691c64c96 p3yk +43273 520e55bd76d6c23c9be619338c0cc89482bbe929 p3yk +43274 64ae32b078299a240b61f3264b7066f2e558f0bc legacy-trunk +43275 caa9aff085a6663d23d904a993200cf1f4ed88c1 p3yk +43276 f9f04115fbb5f5003db1c049270ad3e6cc4af071 p3yk +43277 b2a05ea7eac1ad2dc56484de787df2e99cf04f1d legacy-trunk +43278 868ab2a65c730eeb4960fc343622c4d02b91e2cd p3yk +43279 668a5ba77dc6f3dce758c277c84685a18ea285ce p3yk +43280 35cc5e180aa3e664e7c7cb34f9ce96ba461a8f2d p3yk +43281 63c61db553a8696dc3d318b84b61531df792fe8a p3yk +43282 760ffb0fba3737d4eeb0e4f1d32f23618b9da1d2 legacy-trunk +43283 b8567b84c53137f476aa4101ae628558f72cda81 p3yk +43284 0ad387fb6314323cb5df593ef35a46fbc595677e p3yk +43285 4bfe8afe8f65ed133e121333395113bd805e9c93 p3yk +43286 593e8fb9a3cafe5c477cd5637a1dc27a75724573 legacy-trunk +43287 7f322ef684387da1a79f4db8950e90b3ea5fff81 legacy-trunk +43288 e38ff21191de51e9526efa85a94238615ffb637c p3yk +43289 24363301a299c5107efe5eab036943c3a7c5d5d7 legacy-trunk +43292 c1a6ba7ecb234a95e08ca47f4202034baac46efb legacy-trunk +43294 64317c71ed6d39361e07365133ecec364eec34a7 legacy-trunk +43298 bed3f52f0dc63f7f2a0ca0a247958c41b9a4a93b legacy-trunk +43299 1b72d0e4f4aa0ada9f39fd8d69bcd5d694602945 legacy-trunk +43300 8ab01a9c140b702a297fa2f4ed94569832209fa8 legacy-trunk +43301 395ad0d5423d60a41cd62c0cdb8a4b06672ecc6b legacy-trunk +43302 f5cd3091d99f9acf11e7cbade3963d23e9aa9d79 legacy-trunk +43304 b39c3d7a5ad450cdb16abeb13993661eb4f31db7 legacy-trunk +43305 6425a43bf3c6e9ef58fb366aaef713a75397a769 legacy-trunk +43306 49622d65c29d2af1780f65b964c040ca234e84ac legacy-trunk +43308 51df994885e978f364a46e5f695a0072f43ce163 legacy-trunk +43309 96e4d53128c9e73e85831a1f03d9652cc9d9a928 legacy-trunk +43310 a82ee3298e1ad2b6428e0f7746228f2d7b791e29 legacy-trunk +43311 c844305aa8ed1f22e080c5e9eb191f292e670c1b legacy-trunk +43312 69c358bf6a3456d538cda310320ab2416b657f1f legacy-trunk +43313 2c1fe761f019419980b2e504eb4fa906a13c5f01 release24-maint +43314 06d7613a352319c2956f485720360f104a8a8b03 legacy-trunk +43315 515118c0e338b83ca5992ee86960be15c0f9c816 legacy-trunk +43316 b34440419b679e7e1137e0eaa10598db09b6be29 legacy-trunk +43317 30fabb87fbcc30ffdf17dd648813cc67593935b1 release24-maint +43318 54aa5aa8f2cb26a7da93ab2a4cc5d7924d184d35 legacy-trunk +43319 46176ffc8bf5ddcdfc1cffd1e54e9bb5a44740b1 release24-maint +43320 e234ff8beaa2021b2e12f49e77543942f485a386 legacy-trunk +43321 d7a6ec9de88755813d9e25fc54228bb0236c882d legacy-trunk +43322 5bbf7227ad6e9b93c3125973ebef78fa57779435 legacy-trunk +43323 f19890a86c4332c5ed36d4527e089da707fb75bb release24-maint +43324 4163487484604489aa0f41fd2a16367e88ad2bf2 legacy-trunk +43325 c0818f21f65a2dabafcd950dba9a0eeaec96c714 legacy-trunk +43326 9238f04eeaa6ce8544959bab70be2c5c75d682cd legacy-trunk +43327 8addc313ab0fc72032a7417f969ec98bda5a71c9 legacy-trunk +43328 799b40c4a2c61ba9a15901e7894e46e850502f77 legacy-trunk +43329 8d57d25e654879c869dd9fece909d274aa057272 legacy-trunk +43330 8f7c03acadddbc7629219c7a6907e62a8c6315a2 legacy-trunk +43331 6e1a899cac8ee6dd23fab66a5e5e352ed9ed212f legacy-trunk +43332 a4d2f7b847b1e8289582fc24484b73de589fed5e legacy-trunk +43333 94f54ec62d1438b043076397eb9bdf0e7b353591 legacy-trunk +43337 e5cfd4a3e65c6172abe91266722101d9771fb0d7 legacy-trunk +43338 0098e7264eaac54a3efaf8e2be382136bdec228f legacy-trunk +43339 34f20ab44cefd4909aa0fe25b53cf28fceab3829 legacy-trunk +43341 9d8b33aff60c100e5529fa05b5b62cdff92b1542 legacy-trunk +43342 b052247b1809ffec573b9296807d20468df695a4 legacy-trunk +43343 ee36c16d8d2bb15e9d43cd0a8a914e2b281bc353 legacy-trunk +43344 c041b362bb04d8cf1753c47bbb26ade416da8658 legacy-trunk +43345 dc1835fb9e7c3b28a5acc6197e6e7662a54b08d4 legacy-trunk +43346 43452f1fea6934b9438299ef647d28da806e9b3c legacy-trunk +43347 373f7fe0e733f4babd10446830bb71bcb7118a28 release24-maint +43348 22345d1e6852703d7f45ee825ab99cf8d8c8054b legacy-trunk +43349 261116f6889c2c4c7a94daaeeac63af38f973056 legacy-trunk +43354 3b61e4aa7ede1a7ac0b29f0fa3225ed28ee4eda9 legacy-trunk +43355 6eb9b16d6e215863d23aa9bb1d90769b13059e81 legacy-trunk +43356 41a2d78d43c697ccc028531feb745f67840bfd79 legacy-trunk +43357 049004d79fefb1802b6e5c828c581bf14d00acc6 legacy-trunk +43358 00e9d59c23b4e39a2552295c305ca2680bdaa167 legacy-trunk +43359 3520f9714e8c1042d18a5bc60c19f797e30c2db7 legacy-trunk +43360 c8f87f08fe0bddf08d1d25411adedf0e51a1715c release24-maint +43361 c11fe2e2984d9b3758988c4a27c19ddd0a65cb4d legacy-trunk +43362 52debbc3cc08a2ea370eb2d49ef978704c0288aa release24-maint +43363 93344da76acd0e5f410a23ff7fbf18c74357b3c5 legacy-trunk +43364 a7818c28749f4aa726ef2a82d75b17a951267cee legacy-trunk +43365 f4ca03b87160be6ddd4d8128dfe1764261379e24 legacy-trunk +43366 94f1613b87d5b2baf09a99227ae2b839d6fa6eb9 legacy-trunk +43367 034c0cf5007b28424feb61295bf9c4da6733417f legacy-trunk +43368 7b52480c12c62befc65f6d9e396e29c85b4ad99d legacy-trunk +43369 af24eb3bbfceb7dee71ca0478c00265eff72c936 legacy-trunk +43373 e12e493b5244454af82e7a609c24c4a9d13dcc9f legacy-trunk +43374 bc5161f292b771301938a956e5f9f45c7ea65089 release24-maint +43375 5a3f228087afde3ab369f053124c732e7a7fcdae legacy-trunk +43376 b75440cbfd34f15e9f5c58e14cec2bd7128f5e2d release24-maint +43377 61461eebd58f7e3bc40cb81a7e0b6f073f184c57 release24-maint +43378 a2847bb328c0e6e2e53aba91d2405aa239d94bb2 release24-maint +43379 5d625f589f2a7cc7f8941eeade9ca75b26a6f90b legacy-trunk +43380 d8de7500291dd45761c1fa316f4813f338c67524 release24-maint +43382 a7834844dcf610168cadee33da32efe344b291fa legacy-trunk +43383 badaa7e91d9a7e70dae6331431a8f87438a4f1a1 legacy-trunk +43384 a03c955ffed10ffeb3614d8c9e4b5f2b6e855f33 release24-maint +43385 80c4fc03ff9b7d68bfef63d1b8342549a41e9f86 legacy-trunk +43386 dcd459b036706c74724bf2d43b9a742a34de74cb legacy-trunk +43387 b9426093d7ea67ad199ce9c194331ff1f6a2e67b release24-maint +43389 63c4422667056b6c1c11ae6d6e97a49771f40a05 release24-maint +43390 8cca2492626ce408cd567110811c0692fd1d37dd release24-maint +43391 762e5b8d189daea07df14e9770ab5e89dadeb9e0 legacy-trunk +43393 efd141cbf6cb37694010860420a4b42414c245a3 legacy-trunk +43394 bb1b485161317fec0a2b27090d0fd107520a3404 legacy-trunk +43395 4e1aff0e20d18fb748280ca3da7ffa77d12d482e legacy-trunk +43396 ccbdcfc40c81c468b82d7504673a220fa6a0114f legacy-trunk +43397 ee4a60c71357127f7e5814627abbe9f7d190e831 legacy-trunk +43399 9c69378516ab0fbb5882b78e9931e1907c9c75b3 legacy-trunk +43400 5203376f15892cbde94fa01e89f77f86a25cd362 legacy-trunk +43404 ef8059f87fd2f92ebd411378116776588832e2c7 legacy-trunk +43405 a157f5a69d35c60908ea063f9a7b09dea6927417 legacy-trunk +43407 ab3efbca5c9209841868740e9767189b9488b106 legacy-trunk +43408 e49455e94bee288f094f793492824e35da0d7fbd legacy-trunk +43409 1f61aa46fee5b3d3022801454e99b11477a096a0 legacy-trunk +43410 437d276c732c7bda7935da80628ced3f7f5656f3 legacy-trunk +43411 89142cadcfb9e74769138ce579ec7e479459ef81 legacy-trunk +43414 93ba15619f5aac9278ef4f4829200cef31aa61bf release24-maint +43420 60be3f39a72bdf858a18084c1975de47633b55d2 release24-maint +43421 1ca012ce427e3364ac50eb61f5747e2fed5cadab legacy-trunk +43435 b85ad2166c01be7ad0ee20e4c3442a63e51d0a97 legacy-trunk +43436 b8d1a45a3057329638efb42bb832b11b61496c51 legacy-trunk +43437 81d6119dbc66b57daa933c040a0298dfd0133860 release24-maint +43438 efb09dbaa40e67db9962d4add5c0d790615d0539 legacy-trunk +43439 acce040e0a1aabb0cbf40020c7eaaa527d70de9a legacy-trunk +43441 44e6fc8d02e1c1fc8f7920f0c811709c4c882e20 legacy-trunk +43443 24347e4656a4fd25d3b1ef20483c82f7a3a8cbb6 sqlite-integration +43444 e9e8098f657248e61b3a824a1801cf9066825108 legacy-trunk +43445 f284e854fe72ec47c30a568d40f8d5dd9c4581e3 legacy-trunk +43446 e156c5814fccbc5065ae43e13c8cd4f2b0eb6020 sqlite-integration +43447 08bf1122c1440f275b3acd0f9bef443155cdbaa7 sqlite-integration +43448 fb7b52c4116c363ff912227a33f66ed10a29b839 legacy-trunk +43449 133d4bb61bab2f3a11390f0444dd3c303ff35e01 sqlite-integration +43450 955a86f8a140c02680d190df4a2d5a1e9f54c3cb sqlite-integration +43451 78cac20f9642d72d610c2c4add6fb03166badd9b sqlite-integration +43452 69187799a9f6be7df80f62c5b5e9cc9217fbb683 legacy-trunk +43453 79a0f080f898c254bca999b9d3c3373d1c89f4ba legacy-trunk +43454 5e1b6f55376313c5ac5ba8a25e412bc60877c66b legacy-trunk +43455 84967a1962cbb2a5c7427a3ea44a7f53253cd257 sqlite-integration +43456 ce56c5e3cb2050eaed0aaf451e82b1cf88ec8655 legacy-trunk +43457 e58a71a8550e7c937b620adc388cda5c71c2fe4e legacy-trunk +43458 aaa04bfafc5855a1fd5f4473345addca6162c042 legacy-trunk +43459 235f635ac45a04870bda888092dd468117d2db7a p3yk +43460 36190d7fd8ab2eaac98a645c31012f3f6407fa50 legacy-trunk +43461 0899a804a594ccf928bbe692e59831e7fe9cee5d legacy-trunk +43462 61452bd125e5e106ad946a182592e33f40dff839 legacy-trunk +43463 228e25c93a9793b6895cc436c34ed21962c7a6d0 legacy-trunk +43464 c72bc8470f6c9eb824f7c9059864a129c7602655 legacy-trunk +43465 19059df45cfe902f0e0909861d1d3961950ce54b legacy-trunk +43466 049606933328e890821e133290bc9974d5357046 legacy-trunk +43467 f5e792a93c431a4db0fff55568b8b802ee10992e legacy-trunk +43468 98f5c918a24acb931e1f77bebf30843906f44569 legacy-trunk +43469 202fe4aafcbb2c08230ca996bbc31a4ee7ee0c12 legacy-trunk +43470 d1993ee8ac411d1fc12176db428cd02a0fae8d5a legacy-trunk +43471 cb2645a554d882af7a2b7afd2cbe1273e5888c1e sqlite-integration +43472 0d3e5ac072b2a17b49e3730250590aca83763da9 legacy-trunk +43473 32e7676990014bd1a9541397557c1ca4afb620c6 legacy-trunk +43474 164f95e8e0ccb5068decd20d5acea00aaff7edc3 legacy-trunk +43476 c4988ac58999790e51ff43aea646867b109c2788 legacy-trunk +43477 d65a9c9c8a7a2ea3717346a4c4f1acf03b6eccf1 legacy-trunk +43478 59912b4812e6ad85ee4c6751cbee732e0a668586 release24-maint +43479 fb7d895a8897f53e36e884b3c4c9487563bdd9f9 legacy-trunk +43480 866da7f30e56860a61186c80a6e15ca1b98e4e10 legacy-trunk +43481 67192da3e69c985bb1272da932d7de6073033fad legacy-trunk +43482 c77115dddbe16df52fbf682249dfa2a3bc5b5588 legacy-trunk +43483 aac005e8bb8007903ed2e50e71f59fb989d56006 legacy-trunk +43484 b80b5f84ae54f2d452315cf688be41774c07cb3e legacy-trunk +43485 a7ec78f8d0866e6882f88d58f03bf800f1a6cc94 legacy-trunk +43486 a4950ea556b53439b958172abf9b916b070c46e4 legacy-trunk +43487 75f9eb011226e1f3ef7ae1c56aa60a611ff090ae legacy-trunk +43488 6c6b200443e36c7b44e09161cdc7b2855e561510 legacy-trunk +43489 c9a6273775b503c41f6dbc6d5f7c4c4027838ec6 legacy-trunk +43490 da770659f77b842f12ae4f6e0f8eb2c46e670b6d legacy-trunk +43491 6fef957712b906cf3cd2460f91406bfea02d6ccd legacy-trunk +43492 a61d3afdfc4b493c98304d77f46f1b925fa2acef release24-maint +43493 f330048d8bdf8202414a3364cad24f195120e6ee legacy-trunk +43494 d610fcdb89f7ebb1bf809f52220a5bcb6af9999a release24-maint +43495 fe3b93c224814f360eb60b35b10d1c98b6d2c8f1 legacy-trunk +43496 c6cf11acb41fb30be844f37e4a53af9ccad0a246 legacy-trunk +43497 e60c8b9b2b4f3eded5c90c031eaf30e1ee1bb7e0 legacy-trunk +43498 cc35d3a879ad494ce3158fc2bb654daf122abb45 legacy-trunk +43499 3850a443483a1fa2cfcdc05cc8e3f45166982c2c legacy-trunk +43500 37040459bf2e41a845081af79bfa1bc8637e31d8 release24-maint +43501 a24cbf94bb8e0cd45835286c2e4739eaaf538577 legacy-trunk +43502 bf664a160fc0adc743cdeb8cd8a94e9944ffbd5e release24-maint +43503 2914e7b4d25a40070fb5a80e3f8af9cf8637e2a9 legacy-trunk +43504 436b03ffa8a248fd62611ccdd96ec144c19e4452 legacy-trunk +43505 4a8ef70de212e42c2cea19fb66686c2c302e7ebe release24-maint +43506 016d3d23ff52dc4dbf0c413445af0b1722dc7e90 legacy-trunk +43507 a7f8b0be597e57384f1ef1f1a9321521cc4fbb2f release24-maint +43508 47fbba849a6c81973088a4f94bb19da5751be20a legacy-trunk +43509 8670a2701a0f96f2b86d595aa2615a4bb980cf53 release24-maint +43510 fab672c3dde6587432597cce09f85fedf3a0e484 legacy-trunk +43511 462c9d2a07bb37ca286cb2c46f45291f04eef057 release24-maint +43512 98251780236d7f44ab4b029a00c328b773ed11d9 legacy-trunk +43513 f05bd98d935d56f5ec18b555a05683ac149b5fc2 release24-maint +43514 e546274d6503ea22134580b576807b1b3fb24954 legacy-trunk +43515 59185ffa861da0f160e3a9c260df25f45c1752f4 legacy-trunk +43516 b47d8219ecd61fdaf90678760e833220fdd34535 legacy-trunk +43517 35cf91297693ef04fff6a44d52049668fb27d322 release24-maint +43518 b823f5fe980cc39f0b845121114fcef8249100fb legacy-trunk +43519 a533d5b5db84014e7385a2b32194732b5cf83781 release24-maint +43520 05914e8ded73edb99eaa34facd2334f503b8972e legacy-trunk +43521 858ae954f055876473379f9876a8628d6fb2bc1a legacy-trunk +43522 870d56a3a20be485a6cf2c07ad1f74d005771a66 release24-maint +43523 492044034a87bbb4ea45d95c7babc26f538ffea0 legacy-trunk +43524 42312e5f11fd115b3082251be1c522359dc712f2 release24-maint +43525 f64812b2b5c1cb4d19692ca826a325480750bbf7 legacy-trunk +43526 b068aee1dfb5b35624e018ce12ed844a3aecaff0 release24-maint +43527 6f0863bedcea32d1cf33dd4a82c7a8fce6c1fa0b legacy-trunk +43528 b0981f0c18feb6ec3e7f61e627454c01ef6188fb release24-maint +43529 8d0579d2b662792a3e905d03a631b3750eaf1b9b legacy-trunk +43530 823c48d6871ec793af3ab584b202ab5f991d4bb6 release24-maint +43531 2cce9bcdc9f64595ba51ca8efa872e3e693311d2 legacy-trunk +43532 5f357e60cddea59cf151db0927271e6c35d8461f legacy-trunk +43533 91e9fb5cfe14255b39638de77df1b0f42e3a8c37 legacy-trunk +43534 83988354b64d9a88bfaec30461c59d74cdd9d61f legacy-trunk +43535 b73174af26a9b5d7ea93f0fbf882f02ff813de97 release24-maint +43536 fab469361bbc0e4b998b5de12b1d0d650da10cdc legacy-trunk +43537 ace67e3bca6832e14ba4eac5a5ddbb0baa774efd release24-maint +43538 3a81dceaa9a8be413a7ef7e8c331b327752b5e55 legacy-trunk +43539 4ab8ec9e59dfaf3491c3405154ffe5c1ab8804c4 legacy-trunk +43540 0e4b3cad89fe6c226f0ab35676c2118b94815552 legacy-trunk +43542 3d4a3f4fc98e8b1faea43e1f067ce6fc10814cc2 legacy-trunk +43543 5e1cf21d4ab23190ea53da59fa6172a6b4401526 legacy-trunk +43544 4b65ab41c7717fd5ead3460d81f622e357b4cb46 legacy-trunk +43545 fe97c0016d4b13ffb757f8d92ce41b5415d87d6f legacy-trunk +43546 a6bce7aebe05bcfd3a113a650379a62bd9db4b8a legacy-trunk +43547 4a206fce5fe7a8428d9ab3d4370b5c2e3c8a7006 legacy-trunk +43548 5a6c7d6def0c9ce55c0e685dde792fa51383d009 legacy-trunk +43549 3aa0a4827888b2444e90f11bcf7ba69d0d5020fe legacy-trunk +43550 8068c22c3724e6cfe340849f4e72696d7d548b6c legacy-trunk +43551 53ef6c377271df8dc8db3a548e034cb7e102f139 release24-maint +43552 f4d88cfaec60ac520e76d22a524082159d65e1c2 legacy-trunk +43553 4837722a60f03d9656fa8e0474e7067eae6ff992 legacy-trunk +43554 cf10f2443542f6d2be4e6d9745c4ce7e785fc69e legacy-trunk +43555 2cf3b5c451d745b355c3b2ca6ba1821edab72857 legacy-trunk +43556 260ee391f908f23e2ee69706274c9c315acec849 legacy-trunk +43557 a06685f088867fa7bac7b87bcc83035643bece58 legacy-trunk +43558 e955284cd69402dab2587763ec1f0fe21f371e0f legacy-trunk +43559 85b26f4fa2a504fdb534c9a5126869eb02b7639c legacy-trunk +43560 2834ccf552f37f67ce7aadbe8629f7ce448fa427 legacy-trunk +43561 a60a9443e8dad9e2fd08864cf8baeadbb2a24988 legacy-trunk +43562 9c2a462d66bb73aac8a842d61ae953082dd4c866 legacy-trunk +43563 4020cf6c383e0606e685a495cbb0f02b9582192e legacy-trunk +43564 ea9a03b8b9f6b1ee60cf35f5214e063a6b0422b1 legacy-trunk +43565 dfc33ec7f73a85feab082908ca1a8079aff88c23 legacy-trunk +43566 7826049acb4b1d3ac112c8b5f7b0c2238f5caedd legacy-trunk +43567 501fda511b0abd4d7dad7f6f234f92f6494a4bb7 legacy-trunk +43568 09b8e5a12146cc98f997338fc8b45a303089193d legacy-trunk +43569 546b6319240062e9e64a7bac2c918d72d62f0229 legacy-trunk +43570 10040d187c2104f58fbbd4b46fd3520a8a1eda32 release24-maint +43572 cea54c9d921d57a98e494e3b3f1f4bedb47674bf legacy-trunk +43574 e82aa8041821a35933051a715c2df081a5efe2c1 legacy-trunk +43575 a3481871132ce655c144742255c7fd84d27bd7e0 legacy-trunk +43578 7986a5b131ed2c07d4982171a20073c1fefff9eb legacy-trunk +43579 e956e16e7444fb24bc8fd14267dda6aea53e5b4d legacy-trunk +43581 57b1ff138995e87019a55d5dc53d4e7bff206445 legacy-trunk +43582 3eea65bb896edc063f27abf05486799efb745a8f legacy-trunk +43583 5133b5b0b4a8458dd5e859750ba45176dff9f159 legacy-trunk +43584 e14255df7fd161e880b457aafd6f9b9009a9ccc5 legacy-trunk +43585 92a17a2821e04e169bac1459822108dc00d810d6 release24-maint +43586 eb69d2e3134ceb0a53d46f2b972e7a62a18a5064 legacy-trunk +43587 e814ad970fc6a9165d05f4138a324fff192bd434 legacy-trunk +43588 fbc62db97e439c5bff15215db68284b44ec7a65d legacy-trunk +43589 a8cd905fd96cd3ead2ee3b4b537d552cc89c882b legacy-trunk +43590 796acde70195411f1306c1f11ea18e12da3514ba legacy-trunk +43591 bdbe07d96b8ef4db35ca1a47b11c3cf395f642aa legacy-trunk +43592 01fd093b878cc77023f45a6d23392c10972a0f2f legacy-trunk +43593 bbe1cdc926051ad828c8045e30c03dbebaea2e6a legacy-trunk +43594 115428bb1d3f645be8f88780dec5956ea6ff5227 legacy-trunk +43595 5cc6d71537a31a95f3d390b1a6737dd044fd2ba6 legacy-trunk +43596 6d50fd364cf5cb596d3f0d42e7c5691785185bd9 legacy-trunk +43597 e457b24f98c51f73f8069ef1b4f292873abc7f8b release24-maint +43598 35c4b0933a8b7e59d164bbb43a5d3e7a651967b0 release24-maint +43599 f5ad3c7ec2cbf453bfe5b8a229b95f38c63ad31d release24-maint +43600 bc9d53c00dad6c363010478dd3041602d5a1b315 legacy-trunk +43601 e2b3a7d9aca918ad5c52627225f9f6f75ab95b73 release24-maint +43604 1049e9aeb38509feee1da53ba0d1bedc482b1e69 legacy-trunk +43606 a3830377e1a796219c124bfdcf290be3301251cb legacy-trunk +43607 2cd1e5b15e050de3bd6e4a3ca7c365b2a6e633ad legacy-trunk +43608 29a06a2f3f2d8f25837c67805d10e0f29dd94064 legacy-trunk +43609 60bed641b6d033004453f8b76942ced410f39c25 legacy-trunk +43610 5aa3cef4a8a7b4922ac83b9a453d5aaf07b812dd legacy-trunk +43611 6dbea911e8810a4a25325a66a804fad9c61defb7 legacy-trunk +43612 0f3b7afa187ae66bdc1760d0feedbbdac8236d8f release24-maint +43613 49dbedfb1d74830e6a155991736d9f33c1a4e94b legacy-trunk +43614 16a64e3946022fb8b31f6ac5242abaaee9ce9e2a legacy-trunk +43615 eff6c53483ff39a326463d47099d633f623ec226 legacy-trunk +43616 07e44fd06cf7639e7851952cc7e972dffa678cde legacy-trunk +43617 2f57da921aef7c1ea6799c799a72e54ac578b5cc legacy-trunk +43618 dcce81b7e64d03c855419c2207f41f7c9f7c14fe release24-maint +43620 d27058c409df3c695cdc507399730d6dced05894 legacy-trunk +43622 c1cef1d2dccf4b9841f6d0e448707c7a35f25af5 legacy-trunk +43623 d2697c52ccae59b92b00b73aeeaa062bbb90153e legacy-trunk +43624 6ab15fc85c2d0c68c77cc695f87cd26bcde9b7fc legacy-trunk +43626 b603307292fc74ae86af6a558ee10437adc8a3c5 legacy-trunk +43627 add007870bbdad390921d920a64d3d2a25826790 legacy-trunk +43628 d34516588272aee1c83b98e4db543bfa89fcda79 legacy-trunk +43629 2c38ee4bdd8ab295e499ab533744b2ecccc1cdc3 legacy-trunk +43630 c115b3ae1c1879a3b00bed0e57bb7aec97104a6f legacy-trunk +43631 1f109a4953c69a2391691144f668b11eb7f90efe legacy-trunk +43632 04afb365084760eacea6dd8adcfa2827fa04fb64 legacy-trunk +43633 a17b5294e993ca96fc101ce5b98df99c92213047 legacy-trunk +43634 9ecbce55a45465d8a04bbe4de9407f92726eb77b legacy-trunk +43635 8efdef2ecf3b19585d125bbd03226d64091f79b1 legacy-trunk +43636 f8fc30c0fc7c3452193a1f8c3f3b1e9b8a86b779 legacy-trunk +43638 20ffc2ca03e0ca51baf89660d8fb9c3e69662011 legacy-trunk +43639 62567bbe7d88da58b014e9039c0cbec473e7f805 legacy-trunk +43640 58b8d2982144f88d365cb4992db9aafa94463660 legacy-trunk +43641 e6582905eeba6b56bc7f25a3adb86414888ab728 legacy-trunk +43642 903e3162099e290f88b1be517188e1cc9e803fdd legacy-trunk +43644 852f1c1a89b4d34e617987148162db7a92d00d31 legacy-trunk +43645 e709e62886e6039452395205035913dfaa257bd1 legacy-trunk +43646 d6ecba596e1e6891d04a6a1bd8e679f39ae7b0df legacy-trunk +43647 296392c710690e60dd14d3d4ebb113c37d5f9361 legacy-trunk +43648 4a999c6e00c02fda5ae01355e58c5d26d8967f36 legacy-trunk +43649 a982b02bec0bf1845062bf585a4fd1a6a1a515a6 legacy-trunk +43650 105a8dd018516653bd015f666b783aae3c790684 legacy-trunk +43651 896f9fead17e720ec4a21de3ac214518da84845f legacy-trunk +43653 a0f2c38d85f453ac96e596eff27e0c041330c9b5 legacy-trunk +43659 395b1f5c9751493cae71b4e84140cadf19294668 legacy-trunk +43660 4b761a63399c427bb78b53d2f8762f2c847fa408 legacy-trunk +43661 69f79517761d12a63eef06ddded79100a1f51a1f legacy-trunk +43662 dbf5b2f2a42916870174276d1a8c65f03643145a legacy-trunk +43663 653338aa69f2d7dc0d16bf71fee698c222b1e922 release24-maint +43665 09990661226dbaa5c30de14c947db4d60105ade3 legacy-trunk +43666 ed6fe7291083998e56c359ff672194c0710e432b legacy-trunk +43667 976c01091b385ded90452e1bf5f58482535ae8a3 legacy-trunk +43668 d3969aeba777d1006cdf99db460a8dc8a40e3872 legacy-trunk +43669 4898f196a24debced5b485875608745a383aa4d4 legacy-trunk +43670 3d4f353c3d4fb2694962b2564d79ed977b20b2ae legacy-trunk +43671 48d12def32b3c8ceb99447f00f7fabb6de7a3e7f legacy-trunk +43675 97bc348dbc5df2d9d86190caa341966109e4ebc2 legacy-trunk +43678 5ec8883a2ef9a1642b6c07fcbd768f407d7154f7 legacy-trunk +43679 f6635f304695e66bf595938df773c209ed9c4db0 legacy-trunk +43680 48cde2f8d50e1f139321d44cf3ff778bfca47ff8 release24-maint +43681 369bb5f67ef6857d3150b40b3b57aea83a2208b9 legacy-trunk +43682 960bf6aa854dd665ccfab9db388a8b110e6086f1 legacy-trunk +43684 fc8c90a44e68b793279b3f50dfc33b7d1cc6bdc2 legacy-trunk +43685 1daf4f7b30216a11dbb21c169ce2a613ddffd3ae release24-maint +43686 5b119f256cde5eb11a6df2a21bf6a0f5b4ebf567 legacy-trunk +43687 d5cb772322bf67c3334c31058e38e0513f911511 release24-maint +43688 3f095c55c2d9b1d4d7c17e17ae491838b0140a4b legacy-trunk +43689 4284879a18ead863eff4cd7128730273485e3a65 release24-maint +43690 ad4f7550d8a406258ae8c6b9cdd0b195828e6412 legacy-trunk +43691 d1dda1148f10969b8e125f147a4000fa7228f37e legacy-trunk +43692 d03201f2f9c24a593b898864f3864cc992ed72d9 legacy-trunk +43693 2b0a5eec028b07dfcdaa0b6c07e87dc2142482cd legacy-trunk +43694 c16b752ee93bc2ada61f51e337228eb7f4ee6143 legacy-trunk +43695 7cd3bf2399e620a6342bfbeba920ed40ff93f0e8 legacy-trunk +43696 ce4af5416d765eb5fa897dfe18a5e4c3cf85c088 legacy-trunk +43697 79d3c4ad93109b799a9b9fe10f01e1fe8a2fdfe7 legacy-trunk +43698 ff7187dca2f1af411a3e3e03369495762515c4f7 legacy-trunk +43699 21141037a1233bd94ee28bd040d3ffec32c870ad legacy-trunk +43700 7c4048ec0c688c5e56a449da06e7547497c1a853 release24-maint +43701 5556ce99f20c4846f78d56aa7354aa477197ed46 legacy-trunk +43702 0a014884017cdcc63e1e533a05040c381ac4f568 release24-maint +43704 01845a247c8b155e6a660304fecdeb9c82fea29e legacy-trunk +43705 8c78288d0dbbb14b81f108844f36efb68c8e96c6 release24-maint +43707 b43db87a9752397eb15f5b85505471a71aff8a39 legacy-trunk +43708 0ae1faf411fff22415ac8ee4d961b332e12c5631 legacy-trunk +43709 0a45cb30b64e0bec093a6d7891f9f58affc23f9b legacy-trunk +43714 a9df9b0ba4165e4c8a5e0ef195b3c9d1b85f0eb6 legacy-trunk +43715 3c7ea50518be2215cc3b12196fbf9d88f1d07b8d legacy-trunk +43716 d22cb14da67143e7808a8226123b600585a51c87 legacy-trunk +43717 1583d3fdddcd76a8029b8ec3c8dbbd66f9f82bd1 legacy-trunk +43718 a9470eb637f194880771c80154c13eacc9d9cca4 legacy-trunk +43719 869f3c9d7401400ee10c4a95bf5cbf3d48ba0c95 legacy-trunk +43720 f8c4aa5413dba0f6d8c237abb5019d5aab0d7a02 legacy-trunk +43721 9bed30df7a4aea94836e96ec55cd993002499cf2 legacy-trunk +43722 5bc2b4e3ffc1645f2be3ca1dcfadcac64a91adaa legacy-trunk +43729 9006f9223d80b5c46d6e54ace46f1712cc4c252f legacy-trunk +43730 149fe684e4016096bd6a52d1f77be83b5fdc1eec release24-maint +43731 b3666c5ddd8a0a8bc8cb2ee58b3e443b68a146a2 legacy-trunk +43732 70731252da34693065463cc4c0df87ae06097f85 release24-maint +43734 c17c52193169ee44c75221f392f7030e043110a9 legacy-trunk +43735 a7d688ebe3e1a20328f944ea85e6ceacca523e60 release24-maint +43736 431613bc935e95a368fe12ee0e7cba232721c056 release24-maint +43737 70926626c6a0a34000e44f2ae6cdc328ff79e9c1 stdlib-cleanup +43738 ba8f2764aa4ac09001fe899318bf404176fb8564 stdlib-cleanup +43739 a8d4928292d8b2b228ab0e5a2a958b2a8d2008fb legacy-trunk +43740 edc6a0cc8466be61ef4e1881115e1da28e042919 legacy-trunk +43741 48311401a20ea366a5e15fba753b0d90ada77e77 legacy-trunk +43742 f1c4406bf481ead23459a2a7eb3a258fab16d0b0 legacy-trunk +43743 b0528e8c6b7844d95367e27bd7163ef423e9b989 legacy-trunk +43744 0342c5f0f4ff65c36f2f85db0df67257091b3965 legacy-trunk +43746 046e6e3483817695427b24d8390d7f80b86f6d3c legacy-trunk +43747 2cdf527b58f6a29abbf61632193dffc14bbc4610 release24-maint +43748 3959810bc549132692c3f43a2d4a3cd47c13f1b6 legacy-trunk +45221 36bcb83ecbad53eb63e23da43404994c8f096014 legacy-trunk +45223 231e42d0362ed267d3b3532584a6f7495989ab4a legacy-trunk +45224 9bda5ba41677cf6b31403d5eb4f9589db580f8e8 legacy-trunk +45225 6ae4adefc573b8eb06c9daa558e49ed89b76d834 legacy-trunk +45226 286c81689826cabb15772f2a1921a86508441a46 legacy-trunk +45227 a78bc0bb345962e69029ce3c0990888b14adca79 legacy-trunk +45229 eb0b9927fffd025276a96ddc240aae2848a8c48e legacy-trunk +45232 bd375777932d91a3fb009492b208fddaf97ea709 legacy-trunk +45233 0f2e86d08d8aff22f0929c7d9917b6d90d215e9a legacy-trunk +45234 42023f5b7d6d1dd73b1e491e7f97321d8a28dfb7 legacy-trunk +45235 c782cf6b516e42e87714a9d7c5ff6547bf3a07d8 legacy-trunk +45236 8094cc0c98d7a642ca39aa709d0cb884597a4d34 legacy-trunk +45237 33423b845554096b2021a3e1ff8a84c08c400d7c legacy-trunk +45238 3d60151392c2257d6b6a579da299f7016f3cffda legacy-trunk +45239 213c4198fe23d9bd58585e61f38c472771a64ccc legacy-trunk +45240 b7440ab5cd706f490fac87047b3f27bb999aaa86 legacy-trunk +45241 5b351dd7d0815de0e218b67f8e5d0c9befef38e0 legacy-trunk +45242 0bc3f74a4a4718419eb2ce960fad2ee7cdbb1a20 legacy-trunk +45243 2e234f4fd763990736de6d49d436209807f4a76c legacy-trunk +45245 f6a1f55d3e5ce6bb93dc88e588b17e843626eca7 legacy-trunk +45246 dd085c13c49a75e84bf756abe4db0e6da2c6614e legacy-trunk +45247 dc9a36c8b4730abc8f935feda6a63134b4d41d3c legacy-trunk +45248 d11366f7e1e7a586921260a0a5fcab9d391c58c0 legacy-trunk +45249 7cb6a304460fc00ab0b948d6986e2b7c75a7b448 legacy-trunk +45250 e29cdf8678fe98e2df0de170e37b9c5bcc22986f legacy-trunk +45251 00bf8f00ec632757186c5920aa593dcbe8e15362 legacy-trunk +45252 072050615fc0c166cb7d50d764ce793fe7c56bbc legacy-trunk +45253 b112d8c7988c317c0dfa9b6962500eb1bda38186 legacy-trunk +45254 0af7f18087a1fffaf4278ac36b50ce1177340256 legacy-trunk +45255 1a3e799d06341b4139512a010695c6ab133470aa legacy-trunk +45256 3b4fdc75be12ce71aa4e1195bc6807c9d6526ff1 legacy-trunk +45257 292854c43b99b9f3591acf3cef2d7fa8a7a60a2a legacy-trunk +45258 1ced79f080509c444dd51411547b713131809a27 legacy-trunk +45259 a8416ad1a5c59c340773e5a78537f1bb06c7d0a8 legacy-trunk +45260 13dd30974ad6912e9d1869019bbed7c3d60bf22d release24-maint +45261 aeee85b6a5dd88ad1ec81523dfea2daadb94e160 legacy-trunk +45262 f77dbc0f98e343521fbd84633ed0fdc7d78d9660 legacy-trunk +45263 adde9de10287ad45d972b586cd7c643c7e96d5ec release24-maint +45264 924504b0019649041fd53ef27429c80d7d9de0fe legacy-trunk +45265 aed1c3c35b8363e83587e910132a1c1df31a5cc6 legacy-trunk +45266 6dd0d8b4bac574ce4d068529da9db14a922e0778 legacy-trunk +45267 0591d0322f04c24da5fb8b7318c27edcdfb815a0 legacy-trunk +45269 1b078493d5382b83f533367fc2ac5bed9a7e4cf7 legacy-trunk +45270 2b2e9c388fbbe22556c98ef9707d0316fbe69a41 legacy-trunk +45271 56e00c9b501173464920b4cf5e7bff4c1b626f60 legacy-trunk +45272 44fb03a6a52497087e0ed2b66cb873096c026fb9 legacy-trunk +45273 c4c5eeb07739ab41055376eae57e374671f3405a legacy-trunk +45274 f76b5d987314d7447580f55e7ae9eaeae0e8595b legacy-trunk +45275 ca95ad5b0fbc61f9ed115ee60086da2727e7a387 legacy-trunk +45276 38acb91824fcc57354f3c7bfb5dc8f85d3663f16 legacy-trunk +45277 c732f66c913fd362baba1c5b1a4c05d826428126 legacy-trunk +45278 e070c316eb4559a8fe89934e03c6b75606b75d24 legacy-trunk +45279 f448d0075691f952d7cd4bf8b090acfe4cc09dd0 legacy-trunk +45280 480a5625e2869201744702145d265e49998b0af6 legacy-trunk +45281 b74d3adbf8885efbda24fe928d31c16cd997ebb9 legacy-trunk +45282 e60b31647a6b31d07a1751596579e3adf6d85642 legacy-trunk +45283 7ed0f003ba63136a1588203187bd61e31e8ccb04 legacy-trunk +45284 7afaa752c77208e33f7d0d5f765960a6a8838c8d legacy-trunk +45285 cd195e073dd465d0f5a00fbe2b88610646ee45ec legacy-trunk +45286 0ca5112e3e129a3d084508d0e57a77e4dc42cd0f legacy-trunk +45287 72ceb1b30d4bbc22aeedc55702374373f174b889 legacy-trunk +45288 19d99b31555cebcf0e8cf460ea3f67d88a4555c0 legacy-trunk +45289 1e9d7e66c1bcfa6baccfdf258510481ad0cb0ed7 legacy-trunk +45290 8968b1242f18994b39d3114a5bf51b65ab19c9cb legacy-trunk +45291 6fbc11a03bcc2a3b68497fc502298d7feea11b5e legacy-trunk +45292 f19addd69ad939f20a45342b7dcb7efbc2895041 legacy-trunk +45293 b43a9702647903f524592d83df9ae4f51d28808d legacy-trunk +45294 157179d2a4c3522e2f477761a59aa38047016bf1 legacy-trunk +45296 8a188036b713b4acf801a9e86d7c1423e68d4f7c legacy-trunk +45297 2fd6ad5822032fba8ae6d52d008aa5793999a31b legacy-trunk +45298 e808e2af91f6349bd3dfcf1bb706ac4753e1ea23 legacy-trunk +45299 c8a09fd4f10da7ee103bd19b3bbffb196967d9f9 legacy-trunk +45300 c26f5e206de79d5489c4518d4dddfb096afb960b legacy-trunk +45301 a5392bb0744029cf15b171746e317321de7b311a release24-maint +45302 0dd32a6b2964e23421081c3796e23e5fdb46e2ec legacy-trunk +45303 289116a52bb1e8e67a1d722534181ec4e12b5f1e legacy-trunk +45304 1e12ec49df9b4db98430448487c0d2b51d706659 release24-maint +45305 399a9a72095f930a2323a6683e77af8e39fedb1f legacy-trunk +45306 17f8adcc73ed86b8f58c2d7dba6303085ca2d59a legacy-trunk +45307 af056b63ce5360430c101f81f587e5c06617fb05 legacy-trunk +45308 8831fd822b605ddabeb8c8443b0421fb3be82710 legacy-trunk +45309 769c6261355e939a2be06c30a2967b64a5460451 legacy-trunk +45310 2e8ab797ceaf9d748d85ced2aa5dcb7d464a44bc legacy-trunk +45311 9a6a0375ef2295eaf91d20346aac228ad2757edc release24-maint +45312 65ecb83ea7ddfd232ee80e1b49449c3ec4a755ca legacy-trunk +45313 bc4fbbb2db3009f0ab7c0fa089f6709d5250dabb release24-maint +45314 fed297c2062d928a00465099b71de5633b91236c legacy-trunk +45315 36e1762ead86b80b0acf96d7b285642226988db8 legacy-trunk +45316 22f2c92a1da7f965fafccef662cb666b0e9cdca8 legacy-trunk +45317 ad486e4875c6e183b50f31d774bd186f14f3e6f6 legacy-trunk +45318 c6e11f804d00f763f4015f882a35e359acc7593b legacy-trunk +45319 2c06588ae69e6282effde5c6630ea699e4f6cc6f legacy-trunk +45320 422cdd24af46c474e43974e267764143d129628c release24-maint +45321 10e47f27ea39fa07686b0d60b65a09cd184277ec legacy-trunk +45322 4551da847651acc261a33bf2cfee7ea581004a00 release24-maint +45324 21fcc86e482082bec6bd8d3d19d5315c02540628 legacy-trunk +45325 8c998c7601910ed4eca53e8a0320ebb8a0a8d1c6 legacy-trunk +45326 74d04838cd11274fa615380208bc36ba7c887d0a release24-maint +45327 b5f899c187d4c5ce7a17da169d9a5b30559947f6 legacy-trunk +45328 12567189ef2571fdfa962df385b2a27146a16f92 legacy-trunk +45329 dec259e4d8916c65d0005ae240f0378cac5b7e28 legacy-trunk +45330 2f3f2e32dfd9d76e719863ee15beb011991abcd6 legacy-trunk +45331 7df0c44f398623698dcf30fb8e737041c79e861d legacy-trunk +45332 b6319a699daba1d59ee9602b94900a32408d5057 legacy-trunk +45333 2c084d81c951401dd09e03ead821f2f5bf2dfc39 legacy-trunk +45334 054acedf3c0d90c14419b9de01480a18d44bb92b legacy-trunk +45335 f45bc241e2000b2ea2c7e36161ca2154ee715ed9 legacy-trunk +45336 b1c6a3864b1e8c16908ea730c9dfacd0322e748d legacy-trunk +45337 0678ce9fb6b2b1110fb6b6693e2396ab15c65f0e legacy-trunk +45338 a840e9baff96cc97256dac2e5f4d01d2661ff681 legacy-trunk +45339 d13ded9165ec44141f080a1691954006b2e3b4fa legacy-trunk +45340 66676a8ecb52ce4c0320d05ce48686bf32addfc2 release24-maint +45341 5a9fcd676b3fe9ed10871dcebe1f233fe917b1d0 legacy-trunk +45342 b1724e926e07c4695f4d0e55b4d988f4cc0046ba legacy-trunk +45343 4342e441b11ccb55028a5b3cf200073c2f3eb637 legacy-trunk +45344 b93c05960a15fab6c7f86acfffef24582c35b348 legacy-trunk +45345 36bfe46c5c6a63cba91f633d90c1d33db0c788c3 legacy-trunk +45346 3f9739de66033353c3845c2781b13b84af418126 legacy-trunk +45347 0a28f157875e2c1144f89216b613c34ce95290f2 legacy-trunk +45348 606818c33e50fe67230830dd755b484deffff802 legacy-trunk +45349 a4231aa3201ae1a394ee643c5a47c7c194f684ca legacy-trunk +45350 86db6df2417448daac0a42fb5d8b86ea00099b3f legacy-trunk +45351 3a39ed597b68aaf7603008b3d4862be893aafb1c legacy-trunk +45352 e795d6c86a5ede9841a0aaa4cf973acc1e879e4b legacy-trunk +45353 30d6b9eaf02db8e29f3faf63ea9b29cdc235eac1 legacy-trunk +45354 58640983fd66c69e79be9313725e57e975675ed5 legacy-trunk +45355 fe88e01ff6de8b4927bd872e991eeddf2a9c1dd0 legacy-trunk +45356 23edf290b676f20b8d5500788eb9ad2a97707dd6 legacy-trunk +45357 5a4b9641232f85ffc50899b17094a3e73666b67e release24-maint +45358 4133e841f0cb91dd18524f4ef7a1a5e39af890eb legacy-trunk +45359 399b119c058a1b96ce426beb49eab0416234cbb9 legacy-trunk +45360 5e72b0c74100d750d3a9de9f05895170d53ab244 legacy-trunk +45361 953eb3dc18e5431f104657239eb9973a7536f569 legacy-trunk +45362 99751289ea03bad35f599e815eaba068785871a7 legacy-trunk +45363 b350e9d791e6e2ef730ef277ee47299364b75de9 legacy-trunk +45364 1b5b16cdbe0e1a0bcbb37426d62fcc5349cd6363 legacy-trunk +45367 751f7c79b5fd14594258c5c013d663be5559616e legacy-trunk +45368 eac83feeb11f6c8cb42280ae9805bec2817b0b1b legacy-trunk +45369 4d7b2237fa07f371f89fe959075f60f63eb1f994 release24-maint +45370 308e2e8ed67661a22c89b9a1459e2c299c36ecab legacy-trunk +45371 91aec47462185de437428a32e34cbc91804e90e7 legacy-trunk +45372 ac79e9037e06cf36d2f93dbb694370de1ae514ac legacy-trunk +45373 7204748c29215d8cf4d65bbd6785381e755b2da5 legacy-trunk +45374 7ee4068e2c62a250e2a9eec2bf98bb0923dd6d0a legacy-trunk +45375 254cccb7ef17699d9c831600bca87e9c7cdba491 legacy-trunk +45376 e057af2dffcec318e07e1c011370961bf630f728 legacy-trunk +45377 fbcdf7c0cc74d3135cbe3e485d28cde77154a6c4 legacy-trunk +45378 0a0d89d710a4df15be62c5fded1189e0501aa133 legacy-trunk +45379 9b22d8b7bcaac43356180e60f6d9752a26f4998c legacy-trunk +45380 ee57349744f3711ab3de0e0c6faec2d89639c92c legacy-trunk +45381 bb3f9076d079c5f443eec1d572c08629e6ccf115 p3yk +45382 9150e260c4174a75994083ad5e5afa46ed58674f legacy-trunk +45384 d71f26e64489eb1f7ed394fa87afc5ade023560e legacy-trunk +45385 786d0356de513a2fb34f1e0248970aedfa71057a legacy-trunk +45386 230fff6e0618d241b1ec276b68ee7f7230b8ea0f legacy-trunk +45387 37a8eb74c50465136c5546a99adfc6f93d8e7a81 legacy-trunk +45388 ccb3af49bcb301c725fa8591a351b2619edd2ebc legacy-trunk +45389 233b10ecfcef662eeb9f1ca94a52bc2267e571d4 legacy-trunk +45390 9bef1debcbaa7f77695324a2915e222bb3a99c69 legacy-trunk +45391 91d16a87cbe8ea76e72825b97f03db8f3dcac13f legacy-trunk +45392 ec986aabe1fdef27103afa51783a9d9efb76a110 legacy-trunk +45393 afe56b9b664b241776c54538ebae2f8d1c050907 legacy-trunk +45394 1d5a4c82061e68da3cd1d8d8291392a8872957b0 legacy-trunk +45395 d7dc0085dd85c8c464500733ab3c980f922a0e48 legacy-trunk +45396 af47da5e9ce14db4ace220ab9fda08e048ae3098 legacy-trunk +45401 cf71c3814b0b3177c9c0290941ac2b9bbea0064a legacy-trunk +45402 1366bfa084ee7171a4f02781bbe979ba89dde5c5 legacy-trunk +45406 856bee1500bbcdeac0166a6309e37f3817af07f6 legacy-trunk +45407 6441f6fa6571a7d2ba2650f3f34e6e91380ec363 legacy-trunk +45408 b940ac4f95586abc0a784aa35a42c9eeae2d6e9f legacy-trunk +45409 31929da0b05afa12954617e410e385e66bf48e53 legacy-trunk +45410 6e9ab87c608cd905537a9fcb07dd521969660266 legacy-trunk +45411 27a639c4471a4e0073b609d0f6fe91ee65c33136 legacy-trunk +45412 62c9038a578a8a9227e72c0be112c79a421c42f3 legacy-trunk +45413 588f97b24bf9e1ff656704ad439d2523ff65d390 legacy-trunk +45414 c6df5e795423039c3848eabc5791126615b0cba0 legacy-trunk +45417 5304059e7de3b1b33b2402fd909122dd9cda8df3 legacy-trunk +45418 9b16e8161df777d10186eb98635885cba2c20052 release24-maint +45419 bfc48ad81e804cb25d65932946720f5885c72d86 legacy-trunk +45420 9f82103254fa4ebec5178c40abea0360a1335326 release24-maint +45421 4c6d4698a115dc7774502ef1a5272594d802bbfa legacy-trunk +45422 05af39a9075435dfb1fba466a909c0f3c930d50f p3yk +45423 b0270c68042ed4784acec7ae01f108667b84916a p3yk +45424 0a13a96585c3d367629062debeda20c7224f7877 p3yk +45425 4cc34af019d2c263b760fa1e879562b6f4751513 p3yk +45426 fb2aff1862e46f18d2ccbb02ade55556bc85e6cf p3yk +45427 8daae7ba078a55453abc4808511b8583533513b1 p3yk +45428 a67f2158d61b1aeaff9bc378a57a759ee36622b7 p3yk +45429 c47cccca0bf4386f85e06d8545004c39bfe4aeef p3yk +45430 7cae622edcc978d41d318c3b9732ba60cd0829d4 p3yk +45431 a5c977e6f5da148be7836c9d8f5d5c00bdbd841c p3yk +45432 353fe06dab5b3725c7a504fc5eca3cbdd76c424c legacy-trunk +45433 636ca80a8cbedc705be6c47fd0158d1893fe29ed legacy-trunk +45434 a5902e0ec07c8ba869e9b775c794c510d5818129 legacy-trunk +45435 d1547426ab6106ecad2d3bb0ef360f47f6c744a9 legacy-trunk +45436 240098935cd5ebd18dda30d1ff49d8e2b8d1eec7 legacy-trunk +45437 63145c06deeeb483f34bf9281c09c4a1d6a6d0ea legacy-trunk +45438 1d02374f4c7e1a5a46221c06d1e86751d99f7480 legacy-trunk +45439 7f72791f0aec32f6904787a72b973a779b7d6627 legacy-trunk +45440 abf82461e6b4df51f5117f1253631852f16c85a3 legacy-trunk +45441 9e382f2f439d977523066e6f5ad7a810b7fcd11c legacy-trunk +45442 b7373bc3b09f3392bba3262d12cef70a5e714446 legacy-trunk +45443 7b2e436a4a211c2e57bf4a84be21f1a5cacac9b9 legacy-trunk +45444 e1388aba989623ca016c679f4b4c6a6c75f34f6d legacy-trunk +45445 9b78dc07b170cc665059496014df103602314df7 legacy-trunk +45446 353b59651e450e142624094140e4a44332f4242f legacy-trunk +45447 9eb4dc1cc83e7a63124ab8cc82c8fcb0393723e6 legacy-trunk +45448 833f384ebd41b6302f2b71dd376d6280f864c591 legacy-trunk +45449 a39cc84ff1856c7acc5bc781c67862b70c703ffd legacy-trunk +45450 b7a3972e9915727e973a84684f20ccad5e4da395 legacy-trunk +45451 96addaa2586970b08098f8dea5d2273e0765f07d legacy-trunk +45452 0a54c15aa143c4d600208136d01e776b9867a658 legacy-trunk +45453 f1c9853df0f7d4ae6a4db497c2ebaaf7bbd00f6a legacy-trunk +45454 7cc31516f8258ff162880107ddbd3ac6ea7471f9 legacy-trunk +45455 38d17d51ea95d44875041b89c050167f2c75160b legacy-trunk +45456 01e51f5db881b85ba1e7ac9dd13659138459eac4 legacy-trunk +45457 31dcc3111133be7018dc04f2d21f7a8ab61bccd7 legacy-trunk +45458 084d188e7dbef7aed699ab27b0c708fb697965be legacy-trunk +45459 b90a7c6021bcc42382da688f4f5ad0b442683147 legacy-trunk +45460 604c9bcb306c6d26bd31b22b96679f208acd0b2b legacy-trunk +45461 5bb6e54f9408f6176c9059d7f3b9d6edb69d251c legacy-trunk +45462 d8b23ba4a274ecf4ed76ddc58ef0039142f2ba78 legacy-trunk +45465 b0044bb4df2aedcfbf311df5991d9cdb5d52bab7 legacy-trunk +45466 d4ae5a26157882e1d10f79a4266d9f5f919b05d8 release24-maint +45467 be238cb26d325e35832d7e9e1ae50dcc1853a472 legacy-trunk +45468 7bbb9b5f7adcfd8e1994465541b78478f8e62c39 legacy-trunk +45469 b95b5c33cb3a5331bea7c5ac5f7e319300a5dac3 legacy-trunk +45470 300bf1c4deede7c1d3eaf7c75fe92f3588daf619 legacy-trunk +45471 ddf8c9145f1363e82f8c43c7b0a09fbdd3a90ae8 legacy-trunk +45472 b5fcef158133a976f61fabe652f3831b546d3f92 legacy-trunk +45473 e239d745c6474037600ca1483da2c65f1c8a7d53 legacy-trunk +45474 2c76f71b223de75a88caf9fce6712e2f2d925336 legacy-trunk +45475 5c453302d5f6a0ec42149aa66e7c5d4e4218cc0a legacy-trunk +45476 ec00b798ab569eae847eb6f6ac87f178b0d58eba legacy-trunk +45477 335223422199ce4332868806f2a82fdd0115b833 legacy-trunk +45478 dda7cc88c05aabc061b9b95fc819abf4158311dd legacy-trunk +45479 c04136a8062a1dbd525f83b6aea61bdc70c8b28b legacy-trunk +45480 384e91202578f91705dd10a9832ec342f4729f6c legacy-trunk +45481 e819b86a1506a0373513e326b2c292aff91989b3 legacy-trunk +45482 c94d7705085a545c3f81d76a55e8fb2aca8d8541 legacy-trunk +45483 19c1bac15bdea148730d49cba3054bc973d5a040 legacy-trunk +45484 b374140e467d2e9a3fa1b259e785acfaf4194d75 legacy-trunk +45485 f7991ce431e52ef6707a5e9cb5ab029f50dcf627 p3yk +45486 6f35f7be36c3d45f7938136ee7742194519d68a0 legacy-trunk +45487 81bf4d378b9e679d7043b6b37fb8a2ad2ac0d77d legacy-trunk +45488 702d597f2f689c2cfd4a9bef80717c11f77930bb legacy-trunk +45489 f117a5fde4e59bdaeca20e4820d4bde47da015d1 legacy-trunk +45490 4d82093e2e1978367166d2e38873072a8926485a legacy-trunk +45491 fbbc0beffff778fa9a38a8b906aa98ef94bb408f legacy-trunk +45492 19d2477c1283168b81351c9e95960db38f525806 legacy-trunk +45493 6cfe48e672c4e08b84af479f9d053c74b623ab22 legacy-trunk +45494 efe749225bae2c652f8198c55880bf07ac35df48 legacy-trunk +45495 df9ecacb0bf67c0a53842ca46fd6ebf8bb7ac2fd legacy-trunk +45496 5f457f426d916c199dabf1cb522db3679ea1e942 legacy-trunk +45497 ccc0b5412799ea911a936d7a9364837c062b685c legacy-trunk +45498 086d8434c7f7dc2488296d0c87041d341daa150a legacy-trunk +45499 5997d7ced17d7dff378fb3212f8167c8f02dffe1 release24-maint +45500 6d8e3e65947f2a259bc1e0d96cc6cbd6f53de7f6 p3yk +45501 9274879f048428b8ce685692b1e131dacc697038 p3yk +45502 85695de6049e013d04af9de3b11e598f7c1a34a0 legacy-trunk +45503 8625e4a5ce4d0bda4521789147bac604c174f224 legacy-trunk +45504 20cb13bdf1f009d5e9cf7d62a7d7081213066442 legacy-trunk +45505 acb61836f7faad9d136c8d041f16020f3195e871 legacy-trunk +45506 cc9192505b405bc9c7226fdbd256af5ec2753fb2 legacy-trunk +45507 2e3276dc231f7605e3db33d143e2ed50c8e459bf legacy-trunk +45508 61ac1e322da76d97ee307d149e7fb22066500def legacy-trunk +45509 6eb86a71f5c81673cad27ff295bf985453de4d65 legacy-trunk +45510 3135648026c4aed521f2ddd4fba3c7ba2f7c7cc2 legacy-trunk +45511 3ede175ead37a8996d54d2902d4cbe0ee9cfb30a legacy-trunk +45512 a5e87987cae63ea8c0b413b7cf1903d6de053f42 legacy-trunk +45513 e254b922c4f34ef0d1b9d40360f3bfe41cc8061c legacy-trunk +45516 fc5897418f31bd4d66dbda6fe7de82d860dc9d3c legacy-trunk +45518 f5831ff7cfbd2baf48f64748a07120a02f878eb8 release24-maint +45520 4577b243b981378dfca324108e480d7fd2e78fec legacy-trunk +45523 be2a7ec462fe4179f2d43133edbd93c2f574c0f8 legacy-trunk +45525 f048116aade0578cd2cd87e88acc258e2de3806d legacy-trunk +45526 e892b544283508aed546d1ae29c5f1b662e54f4a legacy-trunk +45527 d82dced6f1fa7407a3ea131b63481e8499777561 legacy-trunk +45528 174062f7c1be0068a9bf578b8a5b32812b2f60fc legacy-trunk +45529 ee90ab26086aa4353986dbbb77af247fd19b3276 legacy-trunk +45530 31b0cda11a6d6ec9217a265e0fcc85530c9591f9 legacy-trunk +45531 d488244df2884b145df3802a8a248bbfe5afeefa legacy-trunk +45532 638644458fc7529c6b389f7ebc7debef556e2408 legacy-trunk +45533 17ccca590ae93775e80b00b61ccec79c8b4fe0a6 legacy-trunk +45534 cc48985c3266c48d1373f55a168ce357e8900033 legacy-trunk +45535 913d3790fd99e91fa951b32004cf88e824633bb7 legacy-trunk +45537 e0a6031df7c0eddf351e6d7b26917b0997647f16 legacy-trunk +45539 0c0122bd0ea31d6c4e69f38f913c11ed13be02a2 legacy-trunk +45540 240fe495d18670a222bc263bfe5a797cae9f1ad6 release24-maint +45541 488fbb4ca8e514d6ff0cd8a493ae883c0470a3b7 legacy-trunk +45542 8725b907acbbfedfdff2d49b3aaf14270beaba3d legacy-trunk +45543 35f27bbd9ad8a2df5f77372bc592342f11572d97 legacy-trunk +45545 d64badac6cf31265c9ae6574fb186d5c979f9aaa legacy-trunk +45546 12ab20cd7c273a1c1c336ecd91e2a33ead4b3274 legacy-trunk +45547 dd4156c36703facd726dfb741f14e3de1c700be0 legacy-trunk +45548 41f13b56dc32bce8496f71501705842f93f9e99f legacy-trunk +45550 ebe59cd1827302dece80c09708ee647f29838126 p3yk +45551 19045c5f0ba2dac6385845aaa827911c6cdbe8c0 legacy-trunk +45553 80e00349647d0d3616b1060e734ae1bf4dfce757 legacy-trunk +45560 29257ef6abeb7e01d138be1b09f235f921367661 legacy-trunk +45562 b7d471e1204276af28e4ce288160e08b599df7b7 legacy-trunk +45563 dc8efd70ab5686810f1a66957517f431ba4fdff5 legacy-trunk +45564 acd8fba619430f81bed0af84a62b4d1e316cc695 legacy-trunk +45566 a4d5cefc2de40851c80722b8eb30569144094eed legacy-trunk +45567 74f459a289be9dd0b2f8840c527790d67fff09d6 legacy-trunk +45568 564ec97365f9d9facdc34f225f7d37eaa7dd5ab0 legacy-trunk +45573 d4ae9c0325b1a79fd939e26f443c2d710fc01e8d legacy-trunk +45574 e96d1cad468205a37c7c0bbb3bb2333185936b5f legacy-trunk +45575 47ac524db8a7c83e8de4a89a141f209f35a7f495 legacy-trunk +45576 477bf930f3e7f4ed11e5abbb4d00a9df9ddb214b legacy-trunk +45579 75e706c36c864a147f6e34cab62326ad4d0f32df legacy-trunk +45580 d3e5c956581ce2ece80674dd6b1176d0d092eb41 legacy-trunk +45581 b0f37f9fc63ff9b6704f3e8d8c0d890da3b030f1 legacy-trunk +45582 4c894552b9680f55b9c5a37ed2b7b65ea0920c72 legacy-trunk +45583 2fb16a62941578db0787f1fda6588509d3060652 p3yk +45587 ac127cd866a312f2a3bc71a31894c2e2e33364f9 legacy-trunk +45588 c4341e6c6a03de4b8edcfd39a58bdbe98f932e88 p3yk +45589 a47117fa3ca88c460b5ef29230b70ca6ee5f775e p3yk +45590 b0f88143dc5c950335b38ef20536a3f881609754 legacy-trunk +45591 d35db84ca072cf49ae23f97531494cbd64e819e9 legacy-trunk +45592 b9aad6a74452dc5b710eb5aebe38c5393538c86a p3yk +45593 a4c70f3968be7d9f80a63a2b268e375583123545 p3yk +45594 8df6079633558e42e197410713af020b375f2773 p3yk +45595 6a45f26ea619e570690370ff8558eadec85f02fd p3yk +45596 b68d21364916713b53cbf675f21537638880b214 legacy-trunk +45597 f731859e9b3b91264b312a82c3128d66a42d8ffc p3yk +45598 96aa5ce86445807be473fe9335059b1ef5bcd0c7 legacy-trunk +45599 702d85d9418a745603afa8500c043690bf6361ce p3yk +45600 b2724a12ddce4ffc6f3926596272c22fb4f7fdb2 p3yk +45601 72245159299e0153afe2bc197d77f11b52c88f3e p3yk +45602 b49843a3a1df4a4bf52d2257ea00944993ee8e95 legacy-trunk +45603 9bb6e35c1cc418b825b4579816b8d20c3d161065 release24-maint +45604 c28f74bed83bf84bda0f6c4c8090c68b5a393a78 legacy-trunk +45605 301c4ede49dd6e633f29dd7afe5102190e28ed5a legacy-trunk +45606 5bc915feed140a1fb81caa07cefc3a865f284af5 legacy-trunk +45607 8102557afdf1766e14fb199c7bca9c3354a6252c release24-maint +45608 749ad2a3693f22be7d0035b2bcb8ff112de4183a legacy-trunk +45609 d62c9f6466381e67d9a0c508516241692e06a5dc legacy-trunk +45610 bd7853394c7aa5fa296a0a122ce9ab4690da624c legacy-trunk +45611 d18a2c8666095a37eef8dd6f88e31c5428babf8b p3yk +45612 73d8e89777e330277ea483af40749d73d147d017 legacy-trunk +45613 91a0981ec4c2c1053e9683c38d2941de42aa545e p3yk +45614 f9eca133cf8869cc5823d7e75fff8f6ba05000e2 legacy-trunk +45615 a31202c9485daceb6d3df4142e4fba729203beed p3yk +45617 78140be5315bc7ffa40fb9ec6f4ae459a3915871 p3yk +45618 37c28a6ad5011c87e7fe4b8b77cb2c8d08389d6e legacy-trunk +45619 50e0bd2e458816a20efde659ba8b8e1e5aff2da1 p3yk +45620 fd6f190e26a8c119e80648c64bad1215192f571f legacy-trunk +45621 52551221a132d551792b9bda630be9f37c25f922 legacy-trunk +45622 56089faba056a0c07bee15155acd9402b047fcd1 legacy-trunk +45623 06dcdedfc98fa7fed4658fa737a4ac936a974a45 p3yk +45624 c2ae6db30572b384e675037a02619a62384f1ab5 legacy-trunk +45625 fd29ad0bef708395c4f7996467bcc71c23724958 legacy-trunk +45630 0e0e315b4202357ce3c54f0dbb30885e92732dce legacy-trunk +45631 c7ef92b9045c688a37a44c6664447a5d7667a3c0 legacy-trunk +45632 7204fbac579cc8ac45a2d30bc4d75d339e84df87 release24-maint +45633 6c634c6d77dd8d3a0018da8a0b3afbca4f585011 release24-maint +45634 3f1431a9edcb71e9696ebeb39f9144a5517e2cfb legacy-trunk +45636 628f41a8b1ce038380dd4b0f9f1fba01e718b2a4 legacy-trunk +45637 54f155369a9c129c31cf973b06a06e0c6e35f370 release24-maint +45638 fa6b49ba9ae9b518fbf175829313f52501724e2d legacy-trunk +45639 ce2ec8c835e935e90972905551aa7e5dd481a037 legacy-trunk +45640 de4a5f55e21de13a6ee481b00e8bb87d0dcc5e24 legacy-trunk +45641 fb1837e88e72b63b5bf34e4f2fdb7b0e25329e1a legacy-trunk +45642 10f241fc95939f9c9d7c8b2d1c2adc1e816d4771 legacy-trunk +45643 ab4e65c809e6ff300e6b49a98cb36a3ae815db9c legacy-trunk +45644 ce5585afc20f9214d478c20959e4bd06a5c6dc56 legacy-trunk +45645 5f9ea76e20724444e4d0656ba4f4f9584ee8eb72 legacy-trunk +45646 f49a2dda8e745686d457435c5f488987beb9762f release24-maint +45647 834fd9b3ceeec20208c71084a0a7061acbcd63c6 legacy-trunk +45648 9048d76bf01e6df49d994cb1b01b4b03879293d4 legacy-trunk +45649 7de28495888360516f02979b8b91dbec5404b65d legacy-trunk +45650 fd808ee68eb9855ee19b134a60b54e617026814b p3yk +45652 a7f3765ea46429b4f92dcbc5e8804499d6bf32c5 p3yk +45653 ae6f50600c46b3bf5774e7e638f9d7f526fde21b p3yk +45654 88da84776119291db8f4323d4d259b0334f74fcc legacy-trunk +45656 e1252cea439c65eb85d0efebe1644de241484206 p3yk +45657 d0e4ced487b367e424e52e6eeef721ed96c7df6f release24-maint +45658 a0aa911be96a31eac15c497bc9059fafaa9cb621 legacy-trunk +45659 bcf715a98774b04d87a2193c871c9504db6dffec release24-maint +45660 ea67628ddae56551f300dfb392522a69f0ccc94f legacy-trunk +45661 e3a8a8de355e3fb96a9a09c44e70e83a54698d77 legacy-trunk +45662 79959af0f9e0f31e6829d6eb2c98ddf588b53931 legacy-trunk +45663 977e7a7e155ad43946c1661c49b7fe8444c6ca96 legacy-trunk +45664 7da4af95ebada12d7cfd7fbe2eb77cb9fd0a8249 legacy-trunk +45666 7bbb07113b29fd1bac8a7b5767fee3e913ba69ac legacy-trunk +45667 222b47d67d432b418837f0678881f1da3a66928a legacy-trunk +45668 d6b1e2b3087f38403d240555457427f3ef34eece legacy-trunk +45669 c25dd75e06679eef1a9af28da3d19f4fe0123f44 legacy-trunk +45670 9910665764347a4561340b5dfda4f31411e5a1c0 legacy-trunk +45671 509b53171954a82de644e98a879863dee17dd1f6 legacy-trunk +45672 2fd477b614e3f62eb8f03f79b1f65a5a0364ded5 legacy-trunk +45673 847710e5d7e1661cfbcf9cd86af33f0cc10a8666 legacy-trunk +45674 1b192037b62f1fb9569e9b1dd4eb6e0ee94b6dc9 legacy-trunk +45675 58d10d7d0aa11cec83b7929e7d7dbb66248796b4 legacy-trunk +45676 b6d10dd3f99795d61097ca0da0e2315062f9b707 legacy-trunk +45677 6f4edd914c586a161f3f9416535112426e066f40 legacy-trunk +45678 7167c1c0e0131705fcd85565d78624b4af57263a release24-maint +45679 9c041c88eb6783785d43376ff34e674f93026438 legacy-trunk +45681 d60fbc54c0d4dfeb2a82657d017552d6147337dc legacy-trunk +45682 9acb55528680399e6820ecf1b1a8288b2b2699fd legacy-trunk +45683 adb10afda55b4eda340b64ffbdecdee4b89cdca9 legacy-trunk +45685 97e59d2e63df6377531c2818565b8514a55ef2f0 legacy-trunk +45686 dad9b33e78e53d91bada62834ce4e9e927a4e52c legacy-trunk +45687 c78d306aaccf9125153bdcf7dbd1756763ae0164 legacy-trunk +45688 2f4d17bcc9751a9c4fceba29c4d1ef4fe4ef27b8 legacy-trunk +45689 e0b7e34b5971331ba6551fec4221292ff43d0a4e p3yk +45690 8b0f0735b246ee1563e8230164cca1342b74479d legacy-trunk +45691 7e2d5d374e3a2f45ace92604cad6c61c3ec8ebad IDLE-syntax-branch +45693 92f218a6b20b844d35a30ce6d7a817e45e7ba0fe p3yk +45697 61228e55791f3ef700706c141a6d3d89182184ce legacy-trunk +45698 acd5e5559e3c278cd7ebb787182801332d215f91 legacy-trunk +45699 3015520d67ff1bbabfeeb1eddba5de20e06b346e release24-maint +45700 895b7daba2d6084ac04548f8fb4201b2d8ba5da8 legacy-trunk +45701 00dd1dae788b7d1182c2b9c4c9005312e51b59eb legacy-trunk +45702 f33e4ed550b8a4f7128578ce6442dff1cd70c191 legacy-trunk +45703 449d4ba3cd44247ab0d7c197b269e10f5ccc7424 legacy-trunk +45704 14cb2eecc6f8944d2eaa272abdf0a7e9773d6790 legacy-trunk +45706 af44db2a9523a053ae3e2daae45100cc7325fa6a legacy-trunk +45707 6c124276a1f0cafcdf4da5a5d5be6b7ceef8202b legacy-trunk +45708 45f84929b2aeb86524958b991c68ffd3b1ecc3ee legacy-trunk +45709 8e14148386ec04e960d20276949c57c6434a4f0e release24-maint +45710 a868c218a2131b6b66fe355fb71cf9a751b87ad5 legacy-trunk +45711 8863fed6c8d719d9a0f81471e665e4d00393d69e legacy-trunk +45712 1843710f32e8321367a845561d8515cadc63b49f legacy-trunk +45713 e5feb051c32fdc3ea64a0357db4bdc1e0011f2b6 legacy-trunk +45714 704b80529664ba4e9897c941d188de56e47d0558 legacy-trunk +45715 b535c191a44b0820821a3c7eda85dac2face6867 legacy-trunk +45716 783cab6933477c41c7441b07aa46007719bbf233 release24-maint +45717 68a7c015a547478401b98d1d06acd45cf2bed337 legacy-trunk +45718 269c62c7f66a53335fb1bc77dc35b509619ef0d8 legacy-trunk +45721 d8d900d0eb8a4684cfe73865ee35655d74fc7579 legacy-trunk +45722 09c425a5aa3af3cec19dd2a8859af0e5e24b64f9 legacy-trunk +45723 d5e6e49a38790aeaa17d40dc3f2c15f5abbe7707 legacy-trunk +45724 06c059b92d0bac77c3d10ad0e3d2a358237e5a83 legacy-trunk +45725 8839ea93b6d7042947927b5569dcec02a56af6c4 legacy-trunk +45727 f81cd7e9d001f0809cb5a7a65cbad98cdf0f1a59 legacy-trunk +45728 55644f0a401bb935f5f9d1b3bbb799185b9b29b7 legacy-trunk +45729 1649704a221a1a611756a1745dce20f48f94b8e3 legacy-trunk +45730 8dc2a4d8a22e0066f76490cc42b1d11c22c1aa14 legacy-trunk +45731 358662e2f273a2dba9060b4b0bf12374e62ecee5 legacy-trunk +45732 fed6e37ad03d1052e7b8861ba214ea58e408456a legacy-trunk +45733 9cc12bb0b70a86634b87fb5814ec3e42ae88da71 legacy-trunk +45734 22bb5c63862ec622a96f1692748f3daaf220aa74 legacy-trunk +45735 7c222ce51bd7fe0cf255a8d294fcb98442ea674b legacy-trunk +45737 85c9ca5e035adff82f7f73a4ce3cb0643877560f legacy-trunk +45738 ac068453a78a81261dcc8cf7ff1689d3f6bcdd85 legacy-trunk +45739 94d9e0de4e49e320e098422b601a27b51b203203 legacy-trunk +45740 0e809b7a84f178f849f7e7fbc5c50c84b648fc5a legacy-trunk +45741 26d0770f2b7ee289a39a3b55dcec1c1ee65849c5 legacy-trunk +45742 5085678573205e5e40be7fd8080d691864e011ea legacy-trunk +45749 09927f2f7478e63cdb4ab5808a50e5310b4fba4f legacy-trunk +45750 9233532ec8b3513582deb221cf82d9f94cb057ea legacy-trunk +45751 cd9ed273a6879633a2ee8fa602045d6f3cdebc4e legacy-trunk +45752 1e1b536c68b65605e311c7494a8402d6564779a9 release24-maint +45753 dfbd57f4a7112f92f74465c99d5f37cff32c7963 legacy-trunk +45754 a84a621ec5c24b9c7275adda4349dd9ac98f6ec8 legacy-trunk +45755 0913477bd24ea40b4498f078bf38f2ec3f80f3b9 release24-maint +45756 77fea06ebc10a0b7294a18a27a9235e8e0e95eda legacy-trunk +45757 788d8665ff58c544cc963f7f12385d2aad3b5bc7 legacy-trunk +45758 4da0f7621325c267a07810d5cec42025f0afa3a1 legacy-trunk +45766 af952bc7feb26159a6eeeda80bbdba51a4a94375 legacy-trunk +45767 940ce5a76c5ff85abff7843c805396aeb508d01e legacy-trunk +45768 d5514a7eaa4ccecef82bc78c9619f9f15c94a859 legacy-trunk +45769 0b8e782b8484b88dd3cee218f4cbf74c2e677c56 p3yk +45770 b5e7d5b3c442e79db1284abb3599aec2cb16db5a legacy-trunk +45771 3845f70e0bafda04afa8ca0b83b68bd902b234b4 legacy-trunk +45773 bb6c5c200a3f03bfc92dcdb6bcca00f08dc3f7a6 legacy-trunk +45774 b5e7183ad11225f9326141e9d576b9e53e64f5ff legacy-trunk +45775 3518e94aa66372194e57ce0edaff2497e45f3e79 legacy-trunk +45776 19ad3d35fac4a84a5f2295cfdf4b0ec42ec80c1e legacy-trunk +45777 8bc4a7e5fef84f718ba3a5bbd70cf742ba1112ed legacy-trunk +45778 61c7ec995adf57e1838a3aed3d27adf6df19739e legacy-trunk +45779 e9a70b1468578d8e460515e0f48d0183a76457b5 release24-maint +45780 34d696c1eebc68c14aeeba14df6e64efc248f078 legacy-trunk +45781 8e5b64a7b33f2a1e38a6db0e19c508c7ad8afe57 legacy-trunk +45782 39eb5b5225239cdec500df19c0a8300498e8abe8 release24-maint +45783 c1247169f3a166d8b05cfc378ac1af5cc1c4cdff legacy-trunk +45784 de2ee8dedce899ac22d868a8fc679148eaeaedba release24-maint +45785 565bffde8bf1830648ff3226f5487270578c119f legacy-trunk +45786 473f37de13a137f41f7444a8c2a015fa43d89b9a legacy-trunk +45787 2546c47734a015f8f95c675e7ea509667b7584d2 release24-maint +45788 8bdbed67adf786e8597fa2fd02c4c0fb64478712 legacy-trunk +45792 389e922a647c1102f5f1ff26a6d31b131a82864a legacy-trunk +45793 874d77eefce431c0d809efe39d105114f8961b41 release24-maint +45796 f2742aca2ad07f4424b4cbe9c7eb336301b3939c legacy-trunk +45799 f0809483b4d05f1b7f2f0ca2ee4bff57047a3bc2 release24-maint +45800 36c7a4422e3075945e8160e5d293c1c743796147 legacy-trunk +45801 57398eb978c254e670a702c98dacddd9fd93e812 legacy-trunk +45802 8469d3d8d4edb746f995f4f56e1a0dc26e1406d5 legacy-trunk +45803 8873d30a140f8440b796b7824c811e77935f3dde legacy-trunk +45808 5c2277a294ea45e3b4c0f21b0e1e8c601328d013 legacy-trunk +45809 51b6f8e042dfbf9bf59f39dc1ed6fbf9a31653da legacy-trunk +45810 3f51ffd5d8bf77aa92fbeb048d835b896624e308 legacy-trunk +45811 f626d52fabf044c3ad8903b07619e2610ad01d9d legacy-trunk +45812 465f5b3a023484a3358ced4a3d85ed41ef9cc269 p3yk +45813 acaf27639a411bfbcf0a4f5299736f9653dfc70f p3yk +45814 614c921707f954a6f24a85d941ffdaa70046afde legacy-trunk +45815 2a28915616d501baa5c591f38beb0e3707640099 legacy-trunk +45817 32a187f3d5ba936acc3f01c38952a252d7b490d5 legacy-trunk +45819 e4e848214d23851bd3eb4ecfbc35874cfc192fbe legacy-trunk +45820 ab53a378eda8f9b3733adf21dd5607cd7566dec6 release24-maint +45821 fcc61835c6ac8e6f39858c433887c5548ce78cbb legacy-trunk +45822 69f0457c17bb180857856bbce4cd01a93f86b31e legacy-trunk +45824 8f7abc2ba7d0a22d5f302a33766a3e836ce12ef6 legacy-trunk +45825 9abeab96af57236d3afddb17a37e0a64196ba3ba legacy-trunk +45826 7cc7c7a13697bcf02bfe252c0eb05c4757dbccec legacy-trunk +45827 81d91ff8003b9943b1c357a26390c07ec007fa50 legacy-trunk +45828 f8941044801cbfb3df432517d9fdb908a8345b24 legacy-trunk +45829 fc7b6181d09eae317d92dc43a00422fd385a537e release24-maint +45830 f62bd5118c78cf345b6838bc059428473d41b31f legacy-trunk +45831 0736b25c57c576813cf03e171332d5984b0d7ceb release23-maint +45832 135b177883c3425bea6eb4a51f155bdb1ef390cb legacy-trunk +45833 b8507ded4d15cc38a88735ccf688f5863fd18b87 legacy-trunk +45834 efeebc8770e5e621b1f425d810cc5656b28fa7be release24-maint +45836 ca6c91531a96787040571d4c45ffe380297ddd73 legacy-trunk +45837 cf19a123a5d9accc624f170ce5274bef9f5fab82 legacy-trunk +45838 9b75ad236f000080d6ac3bd08ea3d449928bc70d legacy-trunk +45839 d76b9aa7229fc69618623ddd4eb100b8f03cce1f legacy-trunk +45840 ee98ecf05773a707177d33551ffecb8f8e4952fc legacy-trunk +45841 6351cd0f7c285f9279add1b55da6fd07296711f3 legacy-trunk +45842 ed335e52d1705494fca70764326861aab09fab1d legacy-trunk +45843 7b83b68be8a67a45aadf6020d921821d470d4495 legacy-trunk +45844 128c0061b5bb26b29ebd536063f69f321ae1180f legacy-trunk +45850 c9202f1c56c274e3017772e2b85112d0c4d0a8e9 legacy-trunk +45852 b1cbc605bec9cdf9a46f03dde87c223495caf91b legacy-trunk +45853 728c16f162671f341b79c2ae75194f625de25721 legacy-trunk +45854 b8ec689cb2fbcc4f6acbd1c0d9e1c75c916dcf79 legacy-trunk +45855 b7b5f0b34d25ccdd7c1e1a1fc863730ad4a4c71e legacy-trunk +45856 9a17b82eafc94127a37fac9ff2cb2dcb2edba9c8 legacy-trunk +45858 bb3e0c8896325a513011a370602312348c4e1a14 legacy-trunk +45862 a812d0fae74a428a172ee0faa59e98bb9ac80653 legacy-trunk +45863 fe29398f48c98dfe0b8b76fb39cf18939c3e805e legacy-trunk +45864 ac72900e1919a1febeca66faca88373d0ba4483e legacy-trunk +45865 b706b100c8fc0a038513f105f686182ba0112677 legacy-trunk +45866 8aaf57bccbf8b5683a8adf786b3537a90e7da66e legacy-trunk +45867 66875b9c89f4545f548da30f3755e2349423ec4d legacy-trunk +45868 66f1b3ebaee3a219f2913323fe6e6f5f87cc9384 legacy-trunk +45869 6e0b053c6cf7b176ab5e1b6e2b6517cc1b12c3be legacy-trunk +45870 0fa3bad489dd477fc8f388a033a94fffac46c880 legacy-trunk +45871 bc48e6b1e65455c7ee900c80745c0202990a6312 legacy-trunk +45872 6a1469b39d737853bcd041448e8de5f479b3c7a1 legacy-trunk +45873 eb03562df4a796847ca3ccf046f9d15b880b5dbf legacy-trunk +45876 5457ab9f859917b04b1b39cf56fdc1d3d8dc74e2 legacy-trunk +45877 e5d11dfb2d08ec6c1f953a807bd17f76e8c14ede legacy-trunk +45879 23d4ac33ac16e74c21ded9d2b995ca50b2dd6c76 legacy-trunk +45880 c06a62f0589fba4a838647ac25516e905f542162 release24-maint +45881 4f72a49d70c805c0f97176e7b29bd3be97dc1082 legacy-trunk +45887 6bc1e83a97a69fb899aa4dea4709f484ec544256 legacy-trunk +45888 e92a8b8eec73b83cb565be9fa9423627a78c802b legacy-trunk +45889 a06b69f8c276a8941dbce2ee21e30e649ce2c5b9 legacy-trunk +45890 88b89f96b97ff07977f4cffc86bb57188131cc57 legacy-trunk +45891 8c383ef7819849a8c8b0bcfa1faf9c1fbf8452f0 legacy-trunk +45892 02518cf17a66ea7617a7c13dfd3496cb8ee1362d release24-maint +45893 29425086e9ab628b31924cf6cb322f5bdf2f63e9 legacy-trunk +45894 220ad20394df0b31a4de59f10292b829bab0fc4b legacy-trunk +45895 91a6436f0a584e12d4a6be384ed7bde850005e7f legacy-trunk +45896 ce2a7fadc2b04e2388e089466fe3018c9e56f7e2 release24-maint +45897 0e7d34aaea6131ed97a0c1b866b2e6197ea8c971 legacy-trunk +45898 be49645e398410a66b92ef9b129050a843e5bc03 legacy-trunk +45899 b58f750d52101fe37779517819c3d8db2f04cb82 legacy-trunk +45900 79c8a2a988cb394479aa2a06152fb00c2279c709 legacy-trunk +45905 a6a1359aab84df531d7d037a7842a81cc8aced8b p3yk +45909 be0cca70ccaadb31152e5525c71bbca0e8a78460 release24-maint +45910 57bd7c7d91e3abe021ae5b307b6a3611fe8d1fba p3yk +45913 3618126c6304c71a833813e1ef458b44d4f30046 legacy-trunk +45914 c01c337ad6188efe025a9162d11848e3ad9fef02 legacy-trunk +45915 a596ed93cf4264b27dcdf4662033be175dd75cf1 legacy-trunk +45916 741fb83b4eab47612d908a702199cc1ab9fb89bb legacy-trunk +45920 c3342d88aefd4cb6797b90d7583f5b3b9cac3dd0 legacy-trunk +45921 2c5e74c645e28c98dc658b3beccf8e29cc60508f release24-maint +45924 c3a36d456dea0bf33b4956be4aa5589013f93b4f legacy-trunk +45925 0d879bff25f66c720d7d8a79591faef77ed95966 legacy-trunk +45926 90dd57fcd24e12bad31d6306aa3d9456990cada7 legacy-trunk +45931 4c3918f2303b5a95bf7da8065ed882c78fd4f845 legacy-trunk +45932 e7035275245bae366f055ecda93d275c9f477821 legacy-trunk +45934 d0170276c5ded304bd4438f09602cc8f44db4389 legacy-trunk +45936 ddf0069f61f92d7ed5d8c6b61d64f68b7eec6753 legacy-trunk +45938 8225aee9190495093ad8586273ecbe97edf6306a legacy-trunk +45939 6d1e240c918c12f074cc8a433081ec44edff9469 legacy-trunk +45940 b44859f0b308bc8496132b044f779462e3cce600 legacy-trunk +45941 eb4879c085aaa87f2b96790f14814aa72ae2cc07 legacy-trunk +45943 ce0b47d3e5d10c70296aed98519c324809827e6f legacy-trunk +45944 0606b9c08ac24f1ddb7857e52fc3f6e8f97e3449 legacy-trunk +45945 f3a5e153c32949b81171682bfee485ad220bcb04 release24-maint +45946 4c9922d8dcdd107fc18987a86a6ea3c09a98545f release24-maint +45947 f1e24452dbba7b1aed469bfa05e58ba8d05fd35e legacy-trunk +45948 8da08d85fcb1e692e1027720007ebf26764fa3f8 legacy-trunk +45949 97db3d9b14580091c43e581b4b78c57c6743551f legacy-trunk +45950 8c86ca8f26828801d74496370c32a581467b8460 legacy-trunk +45951 eea176e67f22884c5569697d810a2eb5b66620ac release24-maint +45952 1457336d432fe459bea8c054b9d16790336cdb1c legacy-trunk +45953 42728cb18ea2560c1da65d76fe521433a6742b72 release24-maint +45954 f61c892cadac9774154a4d49fd61c948b70f819e legacy-trunk +45955 7fe49dbcbbdab1c9599e4e5d656397b822bb276e legacy-trunk +45956 f26fc3aeef96cb478eb8febede5a73004ed99cbd legacy-trunk +45957 6701309efa7686e602722cd3517437ade11f6b40 legacy-trunk +45958 86a051d2264d2a290582b4ef08a25f585eec1194 release24-maint +45960 9d4fcc390236e4ab5d81005d52dbeca74a2d32ad legacy-trunk +45963 9a637bf4df427aba3afca0762c3231e0d0e698d6 legacy-trunk +45964 e2ef60fec3dad91a6df1e4514b020e57f50a71a2 legacy-trunk +45965 4082d1a11917c10f2093d82a4788ddbbce34ea19 legacy-trunk +45966 8f408aa2a7efa47f4a5b07046d5af4e1085e9553 release24-maint +45967 2a9b45dc31141d9ebb4159f79ed06309ebae4bfb legacy-trunk +45968 b21be9d2341a9072974853fded95804a3aeaa13d legacy-trunk +45969 7fc93d9530bf60df85282602d354400426e0a1d3 legacy-trunk +45970 c4aa56d7a5c1063943675b938de4aa672d663a0c legacy-trunk +45974 5e3543b78337ba376b21a9cab8a62cb27c9572b7 legacy-trunk +45975 bf3735206871bd27e9da1c38ace086dc5700b9d5 legacy-trunk +45976 0795372a84abfe0dc625bc0a7debd39773c1f2e3 legacy-trunk +45977 7890f6b92c149cf9b1964aa91e0a25ad37c337c9 legacy-trunk +45978 4de3155e192bc9908f6fddc8c83f6bd172b9eb56 legacy-trunk +45979 cf78f9c4790ee1299a94cd3d513783f88eedabda release24-maint +45980 574ffc4d7bf6bc777405bf044af5cdf6bd1d2656 legacy-trunk +45981 bb6092995409935136a02c9d0e9fb83e817e1dae legacy-trunk +45982 a797efb4e7f83fef23533bb4c04775e67531b338 legacy-trunk +45987 85c828878188b35dbde04da574a82960cccc17ec legacy-trunk +45988 8b6017c937ac27f00893aa1e994a8e7f166b8dad legacy-trunk +45989 525624e94e78ae76da8e8532aa3971c2b4dbc8f7 release24-maint +45990 32472ea5f3cdb608f36702dfbb2dedb00e159b2c legacy-trunk +45992 380dad39559914f9d5476afdfd2f80844909aefe legacy-trunk +45993 ebd573210e25038ce44c05068e16985ff5d6bb7a legacy-trunk +45994 4bdf27bd73d22ad5e774b2620a7a3ee83f4a0981 legacy-trunk +45995 cdf8f53344269e9204d659ad767c14b81a48ed20 legacy-trunk +45996 676492a93c8a7bf7dec57b1f6a99d235f07b1730 legacy-trunk +45997 ef82c5d014607fbb58fc0c10a795f955b86457be legacy-trunk +45998 f252c6ae0c42643626c94625a5e7060754512ced legacy-trunk +45999 29b736f073a35c3fb8e40402167fab53ffa0f4b4 legacy-trunk +46000 ab704b99e150cf03759e7ea6efebcdcd68033bff legacy-trunk +46001 d8355cccff4acfc297c26082f2ccd3f621872ca7 legacy-trunk +46002 fea5d2fd9b8a483c711968c8b710f05a3984919f release24-maint +46003 e7d30d75dae7c2bfb4085884082636e74f84103c legacy-trunk +46005 ad8b76e99261052b1916d30273c673e895152d27 legacy-trunk +46007 ca10507a6afbf3cc7b6fbc3271a3baee618c5436 legacy-trunk +46009 0ae4bb74e781a834c3a4d923b261ed0e67bc8ace legacy-trunk +46010 3379ad66b0e073a45fc751eab559c3d075b1c136 legacy-trunk +46011 3b5cd7c66da09097875bdd97099c8d307f25142a release24-maint +46012 d6d879af36d34a5c70a21aaa7656eca5582e61bb legacy-trunk +46015 f8385d6c8f5ee160451e79ef993ebe91be705dec legacy-trunk +46016 6cf4662763a1a293c46446adbc701088a200ab99 legacy-trunk +46017 36563b13ce792a72bb0f80ae0d53a70cff33fa69 legacy-trunk +46018 f913505008346f43d16dcae2909f2a9cc0e5d0b6 legacy-trunk +46019 d6ea7d43ebfc0abc7602645e4e28ba29cfeb122a legacy-trunk +46020 ac506e2df04d5396a4967e4e7830a9f55f4bc888 legacy-trunk +46021 204ec383b445abf39bf752daed40bb27806dea24 legacy-trunk +46022 30188c523bc558dad077b35dcd28bc7a95126a25 legacy-trunk +46023 aae2ff33e27c38540daa74e71b392cdc70ae1158 legacy-trunk +46024 ab1dc7e23bfe5139e564571e9660b769eaadfd56 legacy-trunk +46025 7caa6d33a4c6798d4806341a2a770ec1cafac433 legacy-trunk +46026 bfb76ae82c9121be083a30a8bbe2550b02ac05db legacy-trunk +46027 c2e3b5c36de452bd0e4e7472ada30417a607f2f1 legacy-trunk +46028 fa3c4ea99d95ca6eded1a7f8e539c795386783b8 legacy-trunk +46029 0b4731049b71ce890bbbed339a7976bb92d3f147 legacy-trunk +46030 07abc6284899dfa1f0a3540f4020f64d34f19412 legacy-trunk +46032 b73f24e21b0ab64c5bb9d8d8f178abafb08a0bb3 legacy-trunk +46033 b286ed45439d660be0c9007702b234c7edd295c0 legacy-trunk +46034 b35cda55d60c6a1970957a8aab78f9689b46db0f legacy-trunk +46035 73c7ad5e87deba79f86dc804d13619966e13d4be legacy-trunk +46036 6feaa42eff69f4d51f12eb2e7b289696b0aa0880 legacy-trunk +46037 42d6bab88079ff60de21b17760bfd438dff8fa57 legacy-trunk +46038 81e385a641ef8b0703aeeb85f7f9d6f602d6f445 legacy-trunk +46039 4cb9dc0dc3f9ebd1b586bf60ed995d224a797cbe legacy-trunk +46040 c64cd271acea9afc456d577a5d14b0d6a7f71a81 legacy-trunk +46041 c07a5c2304f3fcf96970c71ddaff50adbd3790d7 legacy-trunk +46044 2195972f7391d4ec416bc8cd5a641e7a17daa5df legacy-trunk +46045 26fb563881c93d98bb5b40d5d56b28f17c865aca legacy-trunk +46046 cbf2d562e3229291040caa20ac82c909da7e21fb legacy-trunk +46047 c4907d990db5d70a8e3db7585223feada9c3b043 legacy-trunk +46050 28511554dff1ff4ebd529a640298453adbcdcead legacy-trunk +46052 b0ba4e8229f7751964714d765ab4040aea3b2d2f legacy-trunk +46054 accdf1124ba2edf3be2632df78019fb1a844a788 legacy-trunk +46055 109437c4cac4760973888812565feab11597fe84 legacy-trunk +46056 f9612177d08d1bb33194caa69ecf6e15dfe824be release24-maint +46057 cc0556adc2b0cbf117c4c5d3d0b455623a572bf3 legacy-trunk +46058 2d182fcfab6b98040dfaf0f0a8bedd6b4336fdce legacy-trunk +46059 b4bdbd7b1f5ee762728ca8a10e0381cdef6adc03 legacy-trunk +46061 ca1f1c2189e74fad0dbab45d16d19810195bb4c4 legacy-trunk +46062 a69ee5bad9b23c6eb869eb5b643c1ee6318d2677 legacy-trunk +46063 dae0e4c390e772145bfed5b88862b4e8b4182b6a legacy-trunk +46064 aa620856e8a3f75ca67ffe9d93bddd0561b516e3 legacy-trunk +46065 95910bc65f6b991f47c7ecc86729d9d9a734d69b legacy-trunk +46068 1055d626ed594d638f043312571da9ac1ad97556 rjones-funccall +46069 882b612a5fe9cb7a35c78fef34106dd314c505b9 rjones-funccall +46070 27c80058173e8a7af1a2c6f8400d83b2a421be71 legacy-trunk +46071 fb4f0fd7eba4ebe35758fddeb25e4307bc1e8f82 legacy-trunk +46072 51241cc95883eded5c8d75d3d899ca4c42721207 sreifschneider-64ints +46073 7e16fcce34a1353951a95c6eb247b6cc614ce061 legacy-trunk +46075 d710c2dba3e880c920cfe89d01f9013588c9c309 legacy-trunk +46076 feb00df9192206c444c42cb2945c65a8f877e278 legacy-trunk +46077 cced83a915778af7d20a32a1587f2031e88460bb rjones-funccall +46079 604af867c65fb81252483ef5dae4ad24aa48acea legacy-trunk +46080 cd34a08830536e3b1447a1539f9ed30a5993d1a2 rjones-funccall +46081 ec54c6df90402bfef1ba610195536980e2f32ea3 rjones-funccall +46082 02a0c6928c50a7c1c6921b9d0ed29a4f4ba28a5b steve-notracing +46084 0373a074004c2ea9a549f2eef1aa62d850d517c6 legacy-trunk +46085 5eaf8b9587d869941c48abd114d7032fa6bb6055 legacy-trunk +46086 872042a3b1343c9a522cde2f8e85bf8e16ed5337 rjones-funccall +46088 fb816dfcd0315430e2bffe74503b0bb8002c1f2e rjones-funccall +46089 4ceabb5414d5f2a2433f2a387649ac693f54fd2e rjones-funccall +46090 9a28bfa6f787c46373a8cbbb00ee742951b68441 blais-bytebuf +46093 00456fca37c4244cdeddb21b84553bf3e7e72ee3 rjones-funccall +46094 0de9a789de3904e5c698a09adcad6b1e2eae7cf9 legacy-trunk +46095 0ba711a496e6b0019d034447d2fd9ae4d9d26fa0 legacy-trunk +46096 a637c78bf1195efc7b5f4a947bf1e0fb189440a2 legacy-trunk +46098 6a6c5492b9ad2ead9aea8e30237777acf4587045 legacy-trunk +46101 ee2139935a1d3af52d5009b74719286402216fc2 legacy-trunk +46103 5b587190f4c68577a3252963c8576c4f43f8c164 legacy-trunk +46104 3078fdb7cf3df55c73f43afb53279527a99116fd legacy-trunk +46108 b7aaf21c4756403f01828a79bfcb26b72fa3ab94 legacy-trunk +46109 76bedf9ed22ff24e3d5437c64bf50b0e97600df8 legacy-trunk +46110 ca34521bb13c3837d651fca90c1df0c4bce29222 legacy-trunk +46113 75bdd44f85dcd4ada86ceb09e2f72c4477cf0edb legacy-trunk +46115 9a90753f6bfbb21a9d7bf213ec97b5f174447125 ../bippolito-newstruct +46117 667a2cae79e62696516b9120316f0f3fb96d4c76 ../bippolito-newstruct +46118 58317df4d30bbcb42dab03728955865b44d48ea3 blais-bytebuf +46123 4b0ff788e9fdae0a7dbb6edcd5255287fd4f325c runar-longslice-branch +46125 0f0f046a29fba48dc7f7e83aa38b4cce9da889aa rjones-funccall +46126 ff50ae13db9e68dff60b53d852a17193405da7fd rjones-funccall +46127 eaae6990e2d18d2a8db47d66ab09b6197e4978a5 rjones-funccall +46128 4bd299d00e4c6f173cbff35def9380f49394e9e8 legacy-trunk +46129 bf5fb6e7527c2ffe851a99d520dcebf3571abc88 legacy-trunk +46130 495a34e54d60a527852d8704a44afad3920fbaf3 legacy-trunk +46131 9efccf56d4e71f4d473ef02b483bdf1d3f45d9be legacy-trunk +46132 af46c7ed05eb791b1e4365b7808242ebfbe26844 legacy-trunk +46133 9fdd434216ef82edb2ef7a5fa7c267f8cf1ebdc2 legacy-trunk +46134 895da42480f1c3573708ac1288ddf46f8c1e459c legacy-trunk +46136 c1ce0b831636703d13d8107ee6d40531c0e4facc legacy-trunk +46141 27882a8e43a9e89b1033b22a37317a04aee9e98d legacy-trunk +46142 6b79fffbbe1f0433d1bd5ac150e84e6459355ba2 legacy-trunk +46144 efb7e8724eefa6ce76047aa95af44dccf1fd15f5 legacy-trunk +46148 33631b6b080147596e6205f53eb9a99a6841a86b legacy-trunk +46149 7d82cded8ab152eb19548ff9998937661850643e legacy-trunk +46150 74c82ebc4e44991cb5a5ad70ea9475f353f45f4d legacy-trunk +46151 cf5a9057ed3a9204eb8756db9c44d235ba70af39 legacy-trunk +46152 e07dc1348dad9d4c447f2f2201ed4c97f527d2fa legacy-trunk +46153 b8bef5a07df6ccfb5212de7fb7c1127fec0909e8 legacy-trunk +46155 1dc5657f17453c70a78be6ca76e263f34dcd855c legacy-trunk +46156 314d666c7adbd1d7ec2498b3160fd078618c9389 legacy-trunk +46157 de9f1a1406119372df9ef23a423d8b62a08695e7 legacy-trunk +46158 9ae69bcab9f72217bbc14ea9f9e538381f376109 legacy-trunk +46159 0691f3fb39caa1d0d9a48d4eee4ea87c15c68178 blais-bytebuf +46161 2d55e97900358bb7b4533dd096775d76c97f6ed4 legacy-trunk +46162 357b5403e81ad3c9f637233769e9ca7a4f61adfa blais-bytebuf +46164 042ed6f80847cc04bb3a401033a37ffc39d3da9d blais-bytebuf +46165 a589b74415c022f6e16e7014dc6f63a5a5420813 blais-bytebuf +46170 89b2ca51230723e2a8ea30d16442ae0a02c13690 rjones-prealloc +46171 0a954f4e3e36a2acc9767bd0fd2110943ec10544 rjones-prealloc +46173 43b1474b512bbb4cf008fadb8fc3fa199cd3ce4a legacy-trunk +46175 6da31c49eb0a686361e1a565cb888f3745ba6c0d rjones-prealloc +46176 22995c109efd67e5c066eca69cf3ca0d484f3ad1 sreifschneider-newnewexcept +46177 8ad9e14489fff1f1b558e1b8c446ac89f45ccd2f blais-bytebuf +46182 b5b256966fe92b415b74b7033d88854b0fbf4632 legacy-trunk +46184 b825e62273666e6d2b1138d5982e09f7839e0337 legacy-trunk +46186 c26b9fdb65fb3b576b635d5317b2f9a4157386a3 blais-bytebuf +46189 260d5a6ce30f4e2569ab8017c368775712d1fabe legacy-trunk +46190 fef496ad7f6cd2bdc1f25d7ac05b47999bfd3e7e blais-bytebuf +46192 51d6e271824368eeeaf2bbc68477393ccff0e408 blais-bytebuf +46193 aace3148f7ebaf022926d3d27878eac1c6a09245 sreifschneider-newnewexcept +46194 3cfae3a0e69591071d174b14c2baa273189f350c blais-bytebuf +46195 f7a7742aef83b85423074ebe19ee0cbd111a1ba5 sreifschneider-newnewexcept +46197 58d20feb6e039bba6f1618937f8e380e0ea79648 sreifschneider-newnewexcept +46198 6860c36f7db7514f5cad9be355b828ed86728836 legacy-trunk +46199 91fe1b0adbf2614f9eb0ba974f681b422153d7bf sreifschneider-newnewexcept +46200 32ba3a0c60409383d8dd33486b19ef7161c0e064 legacy-trunk +46201 b2491fd0a4dc6c67db4b29aa5ad9af23142b89b9 legacy-trunk +46202 1c5ee9631c6b8b8966be8579de159e65b09b2365 legacy-trunk +46203 88cc7e4f01ff4d0f57f3c2a0ad198a96d7ce63db legacy-trunk +46204 bcea74b35d1fede0f7917c143a3cbda551dcac1e legacy-trunk +46205 66322fca91b41bbbc3243ec0eb3b37c109f2ada3 legacy-trunk +46206 043e29a1e3985eccb0101fa653de6d7bacb14adf release24-maint +46207 45788128a1b15449ea6b2fcabd84b0877c12ce10 sreifschneider-newnewexcept +46208 698198cabbc5ab77751b5909c139fd28df946bff legacy-trunk +46209 8c5146c51e2df00e8d278d10f0b4cfd988c4c0bc legacy-trunk +46210 75e1cd22b56bddc4af0e8003f842a0ac42cfc020 legacy-trunk +46211 3de7064dfa56414ac45c9808c535045fafbc26ce legacy-trunk +46212 9bb4c19e56134c6891b90e8ad48ab7e094569b94 blais-bytebuf +46214 ad1e2438cfaa5bf45e48c99496e8eb0446594577 legacy-trunk +46215 7b3d4a81e94de5aaaac56dd83c74ea275fbb5033 blais-bytebuf +46216 e15b14c7fa14d5c440052af1105cb19181aee9cf legacy-trunk +46217 688f257571043313fa10af808cb1ebe08dfcd19e legacy-trunk +46219 41768de17ead9092c454adf9910f9d8dbb852ac7 legacy-trunk +46220 4c0c3ecffcac2b321843b197894f3013323ff22f legacy-trunk +46221 ba713d31d00c669921b3733cf4c9ed0511208aaa legacy-trunk +46222 29ccd7710413fefd9ea690820abb4eb0403b32ea legacy-trunk +46223 986bee16bb4451cb1d8235ab7eb5ec78e350b707 legacy-trunk +46224 ae6bbf2f2a412b6c41d1544c20e424373ed7d495 legacy-trunk +46226 41809406a35eba04f93afb4f454acc05ec98410a legacy-trunk +46227 dccbcbbd67208a078230ecc8a803a8d9490611ea legacy-trunk +46229 9c08a7bdbc310a7746084599f6dcc58ece3ac0fd legacy-trunk +46230 17eaa8b57e052f51465cb331fabfc3c5a337e71c legacy-trunk +46231 05496deeba64be704010bc61f3c8e5de2fd0b5ae legacy-trunk +46232 6fc1dc086459402597f78301b994d0d9f5ab7141 sreifschneider-newnewexcept +46233 3e6d77552be302beac2562d4d5279712e04d68f5 legacy-trunk +46234 c5d61965cad4219a8f7a02ce3ab2e3cacf7d87ea legacy-trunk +46235 5a63369056a7fe5fc3c0b5ff0de1087b19650718 legacy-trunk +46236 f279d031f0cea3cf8bc4f1018ad9fa9d25e8d866 blais-bytebuf +46238 74beb189fd7ee484cfc2d2338aea248abdbf5eb6 legacy-trunk +46239 2aa9409351d61f9317ce11da7752e0965d72db3b legacy-trunk +46240 850d4f7717b8dea0f9bdf5900e5023c150ad6ca2 legacy-trunk +46241 c9dc300eee682ace05f77b488d90353646edfff0 legacy-trunk +46242 05324aa444bde1c0b6f0d2994ba3ff5185518f82 legacy-trunk +46243 4a8c9f9b66e68ec9705c23dba5aec0a49fbd70da legacy-trunk +46244 1fdf29a88f0ee0b13b28921a5fbfb1751b5f0cf3 legacy-trunk +46245 91c6c94490b1c5644dab68f89e4c41ce4338e567 legacy-trunk +46246 2f16e27152235b7ff3cb87b1511355f7857c5a27 legacy-trunk +46247 ecf2bf4182adf4933f12d064c851b86f5a97010d sreifschneider-newnewexcept +46248 68a348c9868db8b358615bb40471baca25a5021c legacy-trunk +46249 c006c272116ffaa6a8327a39c4a03fdb4a828c05 legacy-trunk +46251 c3508a94156836596a03e8a9093264cc1dcd88bc sreifschneider-newnewexcept +46252 e16b4157686cb9a488852d4480f22752614f093b legacy-trunk +46253 3d477d158401c71b13843d707ffa6dbdc1ff7779 legacy-trunk +46254 ea0ad4d4ff8edf0acb98519e2fe5d30e15de2e8a legacy-trunk +46255 c77da2736fb265d6a4457ab0c2ce885368741764 legacy-trunk +46256 3587ee313b006102ae610a597e84e4e78296a0c5 legacy-trunk +46257 04f39ecbc73c76a55ae8cc1ef5b53df5b7efd0c3 legacy-trunk +46258 d33d8a8b545eeeb150d1b4c578c80e932f44fb47 sreifschneider-newnewexcept +46259 8a58aa40dcc05d58041a6b4be6f38d1641b30e2f legacy-trunk +46260 556620cd7b1de3c11865152d759db00cea5453d0 sreifschneider-newnewexcept +46261 9f884d34a0ecd4b99e7228d598f5b2957da84699 legacy-trunk +46262 e9eb526b7111580d183d8dfd7fced8b2be56fadb legacy-trunk +46263 ceebe6cc45704c8c18bfaa4d7a1d98a385de4975 legacy-trunk +46264 ab02218117717bb61b0a76c4c5b8661ba05332b5 legacy-trunk +46265 087287009658eec7099572af5b7e23df7d9dbda8 legacy-trunk +46266 7a6af4a143c62bc5f6e4ff890c99722e5e003464 legacy-trunk +46267 8a9cd999535d1797460ce6c0560f8b8cc7a243a2 sreifschneider-newnewexcept +46268 eb237a37ea02deb330e2fe5e1f4372972b089076 legacy-trunk +46269 ddc200afde1a831b1c2bda73f6a136a52473e91a sreifschneider-newnewexcept +46270 d6d553b9d46977fbdcced01ae21043e51df07c75 blais-bytebuf +46271 46d77bb32fb0da8b41a65c1b2501b4fa11ce19bc legacy-trunk +46272 5a147365527e53845a0f7ac1a3cf6ee698090bab legacy-trunk +46273 f9332ad4287a7f6d8624d9087cb021901d4735ac legacy-trunk +46274 82b680846df8897ff728bce7d6e65d803d49b383 legacy-trunk +46275 81b641da5c7952a7e0405f83b96e9af01a1e4074 release24-maint +46276 1035a2b31e6df2616c9a4208eeb1aa94e0fadf6d sreifschneider-newnewexcept +46278 958f91684209d00c33d7fefa68ce46e9d03a9cef legacy-trunk +46280 1670ff726e8fd7d747828615f1009a274525c475 legacy-trunk +46281 3091a75eb560c56de77f869fff7ff1819169702b sreifschneider-newnewexcept +46283 dd41731dee6d4bd2c8d05ab54e4445148d252ac5 sreifschneider-newnewexcept +46284 2f4fb6414e87208abc1831d35a656b02b57178e5 blais-bytebuf +46285 8a99cdef0c94acb581f53eb25cc21f14b96f59b8 legacy-trunk +46286 a654d61d36d5319671b10b0b1e521891b179ce74 legacy-trunk +46287 5382aaf3a0dac5fcf2e589d1f41fff0b29936e6e legacy-trunk +46288 c8e4b3b39774305fac8a7a5139776d97d9a3d5ff legacy-trunk +46289 835ea598a4060ba81b988dc1633de99dc292620f blais-bytebuf +46290 6610d4be8fbd902505403d92c0bfc3600793603e legacy-trunk +46291 fe653e22488c9a0b08331d054b8f0e9610a4b061 legacy-trunk +46292 92b0fc54d2300d058d02be704e2b702fe9e71482 legacy-trunk +46293 6d8615f9f1cca978385b79638bc812345bfc2276 legacy-trunk +46294 8d28e63e8f2166483f002e5df6496a85b1ce96fb legacy-trunk +46295 ad2e4de47d096365daed7e14cfbee4e17c089c83 legacy-trunk +46296 2f45ad66cd365058b00dfd21f66d6400b748e942 blais-bytebuf +46297 3bef24086ace51da32a21e655fae5525efddf77f legacy-trunk +46298 b7b7615ea5f5f2073f4fc12f8210f6e0e73d4cee legacy-trunk +46299 9f7b1b7adf010e2fbfdc578f8120871141d04f37 legacy-trunk +46300 36cd4a4ab8f7e8f72ba8020cb57d0a825a8a1857 legacy-trunk +46301 c07a96f6983962b4b2a5185f1b24a8fdfe09946e sreifschneider-newnewexcept +46302 957727f2ff09f39373727175d92e318d388ce4c4 legacy-trunk +46303 9883790144773082b0c5f15f19875a0d33f52b57 sreifschneider-newnewexcept +46304 378ba677b5797076fd34850dd272dca55b929240 sreifschneider-newnewexcept +46305 78c60e599afdb7badf61a4843a8c81e565e0b720 legacy-trunk +46306 31b9c78a07f369fd1dc10ee76882aba02ae1ca32 bippolito-newstruct +46307 05bbbddfce3f7a27b251539dedd7a97dc647c39f legacy-trunk +46308 be7415b0a31851a3c93bbbcf04bbab612015a2c7 legacy-trunk +46309 e3ee3eb18678dc6e837f3bee6b58dfbe0bc8655c legacy-trunk +46310 d2df4a359e352af77c0e383175ff5bd9d67acc42 sreifschneider-newnewexcept +46311 a4ee459ff288a42e892edd80a93543f6098519de blais-bytebuf +46313 88e9d86770066ecd0fbb1ca93f0b019296a1b62f legacy-trunk +46314 454bde7e416e49ba7bb0e97bb7dcc0b32b73aa2d legacy-trunk +46315 890f6161c98a5a9157f084315ba200ba29924845 sreifschneider-newnewexcept +46316 6533d8ae1fd9512ef17b94ea8901b603dc38a92a legacy-trunk +46317 a043c5d71eaa18b36afea50c777af8ae653f2d4b sreifschneider-newnewexcept +46318 76b301ac4a5e634186f84deffd4ee1f4b8125403 sreifschneider-newnewexcept +46319 8a38da8e128f7dbc640893e5442c93d301ed4670 release24-maint +46320 5213b606519796e900e55b7281f6cc8439347bac legacy-trunk +46325 1a113050690b741f3276c71de904e1ec6a2b996a legacy-trunk +46327 c0082705f2f2343a249299b4e4100adf5afe2768 legacy-trunk +46328 f743e3c6b9bf16a86770aeedb50a10d147486506 legacy-trunk +46329 2ed4b757c0cf263d89efe2375780743894164706 legacy-trunk +46330 79c8dcc277a5f263e3bacd89ae919e1b9a96ae3f legacy-trunk +46331 13e0f71a70d544e4aa9a4712643080f1449ba638 legacy-trunk +46332 09d2e968d0747293295a673a01de8fd5ec6685b2 sreifschneider-newnewexcept +46333 fa98b8df0fe2176841548efd27351abddb28f44c legacy-trunk +46335 a4e433c136da43b018d75ab212f3a52fc28e45a4 legacy-trunk +46336 31d4215480c69995907bf7c4ccce3b032c997521 sreifschneider-newnewexcept +46337 d2b38a61de713534e9a028319e293feff6739e48 sreifschneider-newnewexcept +46340 bef6aab5f9b3a3d018a52a50c28a37e3ff63ff50 sreifschneider-newnewexcept +46341 c0dbfea8c0fb5b9084677eb30437b5be1a43446d sreifschneider-newnewexcept +46342 d109b081d44be540689e019afc7b7922a23d4d7f sreifschneider-newnewexcept +46343 c14e0c89a8b0d07e580be6a4f200aa0955b981c2 legacy-trunk +46346 2e7a00ebc319260585e91ea438f497fac58e3490 sreifschneider-newnewexcept +46347 5e4dce78f23da9b330cdc7132e52928b74ab0c6b sreifschneider-newnewexcept +46348 624b4bb93d9026a2f58d2180d8a7d035f2fcd46a sreifschneider-newnewexcept +46350 43c86f349d4784c7d6477b58feec15aeed8e8d91 sreifschneider-newnewexcept +46352 4bfeab230e385d67d414b1d1291942a728c8a384 legacy-trunk +46354 1ba3e40e86496a2736bfaa938aa5ed93c5503da8 legacy-trunk +46355 52d1399e1c6d91c7ae1c6f530d0f7aa475dfd3c2 legacy-trunk +46356 a16948e9915eca56d830489fd5d971d6f4979a4f legacy-trunk +46357 0b8b28f0f30143b10757bda63528411a727965bf legacy-trunk +46358 729ff8008c9e5983074ce195bda4ab43b60cde94 legacy-trunk +46359 d37d5c5521e38646ea59a7ee466b731d8923e9ec legacy-trunk +46360 2e4a274e3108aeb362326b9ced29d50a7e62fe02 legacy-trunk +46361 a5f53fecfce66cb19d11b67a4eb7039469789ef0 sreifschneider-newnewexcept +46362 b32f9bb2e07727fa6d048e7d43ce1be33e332397 legacy-trunk +46363 f710edcaa675899ea4b7bf8a5d504d8aa4ccfe60 legacy-trunk +46364 05744917b7c39b2386d3437b3888c4d1911b5e02 legacy-trunk +46366 96415105c29e01eeae10011e5510724a7dd23226 legacy-trunk +46367 3890a3c792b90373ee178cf29062ed7d56680b3c legacy-trunk +46368 35f41731bee94e4baa45a489f83097318d746f1a legacy-trunk +46370 4d0abb99c9e548d3b9c0d74153cc7aaae71c35bd legacy-trunk +46371 2f71d1a692bf4a0bb161a021ebf79da63ac1c056 sreifschneider-newnewexcept +46372 d21896b2dd0ad71ef7b1523831a39e23a2b2404f legacy-trunk +46373 d85b360aa5f6f81d8a40ae8d2d7659d4bd103d8e legacy-trunk +46376 1ab32617daddf667b9064b116dbca0e8cae84c38 sreifschneider-newnewexcept +46377 76807902a2f505e57d0e529b26e1358a494b01a6 legacy-trunk +46378 23f78e5bd3e3ae5c740f07bf0898dea71e210dde sreifschneider-newnewexcept +46379 f70653c1e633b68a9d94249221de8282176fc58d sreifschneider-newnewexcept +46380 78771d673b4b7312625d52690be4947e68f033ba legacy-trunk +46381 816f8e60097a9da7d7d24d84182e2def49492815 legacy-trunk +46382 41f839e895325d36280f303fa1f095811ab4682f tim-exc_sanity +46383 0f61c3c62b8bf81918d3d453ef62338cbb8dc0c0 sreifschneider-newnewexcept +46384 cfc9a007e8ceb30a85bbf5f2e57875a59837d3c5 tim-exc_sanity +46387 b20e7cbda40912c834d79b755aab7884df30eb12 legacy-trunk +46388 d153d2f66884fc30185bc21b3b5895035c43cb1b legacy-trunk +46391 70c0ffd21bf0a7300e18ba9eb5328d3ab1c97933 legacy-trunk +46392 df04f192a2a27c4f009bbcdf4024f1b90f590497 legacy-trunk +46393 ac45eca8c35c246db86861271660a5b7b29099d2 p3yk +46395 b1896656f22e469063f294137106d730b67e5a4a p3yk +46397 dbb195c9dd88e2546629adf62e03bcdce98e4998 legacy-trunk +46398 33c328896f527eb5f0c765cbee48702b9f10b612 legacy-trunk +46400 adc214fc1e1c13c39806d3818f57f31b68190db4 legacy-trunk +46401 5ddbd20500fc50491f78b811ea2bf07a90539973 sreifschneider-newnewexcept +46403 6b03a47eb54df7edacca1e11356410ba90029633 legacy-trunk +46404 6d99df55606e24d0fce67b76ce6f4c01be3d7e6e legacy-trunk +46405 e83e1aaab1a3ae04613edeb65608923a461fb332 sreifschneider-newnewexcept +46406 52f2c9f74f5ad5a76b2b1f8ad962e45ef2a078c1 legacy-trunk +46407 3128cfada6b4a7cd8afeb23f459c741a43181564 legacy-trunk +46408 402f3ac4052ffafdd814b8d4a56de4dd9adfd065 sreifschneider-newnewexcept +46409 8f7c7aeac3a583a3b92fa8eae47bc8898c88666e legacy-trunk +46410 1db0d73749ed9eda5ede00b766ee9141fc6d385a sreifschneider-newnewexcept +46411 5607ab6c67dfdb0da6ae9d5a36523bb4f1b5996e legacy-trunk +46412 fa675b3d75ca8225ed947164854b457041d948f8 release24-maint +46415 e7af97e278c44a710db419e09707b8c931aad8d8 legacy-trunk +46416 4697d1958ccb05ba6d9fd314610da15348ea78cb legacy-trunk +46417 631b6648fdf41be2c4575953257dd89116846fcd legacy-trunk +46418 2bee150a0f75229a10cb907f9b24e5e30128b329 legacy-trunk +46419 fea6fb4557113bc6117262c91f3cf39b8ad69f55 sreifschneider-newnewexcept +46420 4dc61d7db3a29ff86acde5f2ecb095658a401d64 sreifschneider-newnewexcept +46421 8e2dc3e418011a6e25d7602ddaeecc10d60e77cf legacy-trunk +46422 0eebd9eeb717ca3133c7e1cd4eddf4c708bcb43d legacy-trunk +46423 ce638d4b4fc8cdaf0c4b63a164853a2763ef6e56 legacy-trunk +46424 90edaf0d906218218bb94bfccdde3e001ed1e9fe legacy-trunk +46425 e0e43e561512bc960410b7c7d126d21eaab6f01a legacy-trunk +46426 708eaf0896bf4544d4d54353832f330071caa658 legacy-trunk +46429 38e9af38f381c27ec6070b5c62a539c38f46d329 legacy-trunk +46430 499cf7c2f7773ef96fea4b424b3c934becc5d56d legacy-trunk +46431 4209a3d295e347eed6fe541028a89a13c3c43111 legacy-trunk +46432 dfbd457ca67ac6a8f09df3cdf595bdd0fc574e8d legacy-trunk +46433 68e1a02a5b291d89381bff8d9504e031350f64eb legacy-trunk +46434 10a5973e0c9a7374f1c1c9127a47021d7babfcd9 sreifschneider-newnewexcept +46436 3d81faf47af77dd09afdbed0f49b2c82315e03a9 legacy-trunk +46438 ca657e0bd09c03778f016c0d0cce47d5ca4d2fc8 legacy-trunk +46439 9f3375e33db95d08ec4c2d973a63e1254474f752 legacy-trunk +46440 99d061bc31431d1ffa1c621470fa59d015dde47b legacy-trunk +46441 8b4d2a9075af5b0c3f3a09aabf350d1dc3745243 sreifschneider-newnewexcept +46444 549cada4e36cc57a3e5f2ae419968cf1ef48d2b1 legacy-trunk +46445 3ff3d2f22012246fc18067522cde16a889f42da2 sreifschneider-newnewexcept +46446 32879d26109d969606d787a551553083aafac157 sreifschneider-newnewexcept +46448 16a1cad0f949992544bf8bca5c8b692ee9a49ae5 sreifschneider-newnewexcept +46449 ce3e3c63fe5adde30ed0f7963acd2e3c4ec43afc sreifschneider-newnewexcept +46450 003433511e4dd84afa4c041b2aa767e72e0bf76c legacy-trunk +46452 73426e71f67ab5762af30d90ba5a31dce812cc84 sreifschneider-newnewexcept +46453 a5d5e73b2edbb5fb3eb9979725e100bdd14602c0 sreifschneider-newnewexcept +46454 795d1cb1df013cdf345a926baf5065bd015a0b15 legacy-trunk +46456 4c0823f0a0a1574ea82c19de9d4c1e2a1a5609f5 legacy-trunk +46457 a56aa8ab489b70c45c527306e94df145d693347e legacy-trunk +46458 ceba8f2ea24eeba50875d443f46dfb971d6d29f6 legacy-trunk +46460 ccdc0bc11dcf2e28f6c4bc96440dff14fa6499f6 legacy-trunk +46461 6063e4e6ee20e17d949c217e3796232f67269233 legacy-trunk +46462 30e4ea42336909abce065dd5c48692c5d4397ad4 legacy-trunk +46463 781bd94cebad55e28f788dc922543f36fd944f78 legacy-trunk +46464 05305d3aa04d1db64382e80b8965455dea64f7d3 legacy-trunk +46465 506ef9130238b5eb9da2a793adcd6ed15e611768 legacy-trunk +46468 5b0753b9d16ac38768c065ee0d42485c5b7b95fc legacy-trunk +46469 72327f8f4a796fe56a47b90848b1beeac674cf9a legacy-trunk +46470 8038e41f46cc0d24341b0bfe8836212d59f5da54 legacy-trunk +46472 eae6de1b438380a55702fb30f1fbb01d10ed0774 legacy-trunk +46473 08bf0822c50a0d73f9ff9356dc2e44042542e106 legacy-trunk +46474 8daeb9af8422cbd47c29241205838b9bd3542798 legacy-trunk +46475 9a65fd4255a37cea72ed01380511e09e06c7d14a legacy-trunk +46477 807540cf7714c9894d29ab06def831b281efcb16 legacy-trunk +46478 e957155ae9bddc21ca6661ea25c011cc40af644a legacy-trunk +46482 038bb8d0058b2539572f19580d0e8c9aac43c422 release24-maint +46488 4556c2c930f4b025e79ab1a1eabd04aad1e2210e legacy-trunk +46489 3ded0908e952f646d400e9e55c6f8c68cb41f45b legacy-trunk +46490 0f2f7a0d9b7dd2015b4d704e13ee1915a0dec134 p3yk +46491 29ae5e0fc34828b5e63f184f30384611668dbefd p3yk +46495 631c207c36923d023f84cd0a92b289b6b70be6d0 legacy-trunk +46497 1a23706139ca0fc27868948325e2f42151abca48 legacy-trunk +46498 3fec3ce2041384adebd9dc73eee6329699245c25 p3yk +46499 551814e4b47117b32f6274c1e3908c464cf82144 legacy-trunk +46501 236725f64a341ffe90129b097903fe10a59394b1 legacy-trunk +46502 7fa7cb6d8be81e290aa2a6e8d024e38d74826d3a legacy-trunk +46503 0203a8af74a75a9abf60dfd69df8aeb327af3918 legacy-trunk +46504 6ba5678be7f2635446b9858f3d32fc6b81b7aa05 legacy-trunk +46505 f76d3e68d1ac37b00b1d95bdfbd8bad338407dfe legacy-trunk +46506 51255cc8a0dc04abe7305e54da3a30f5fc4c124e release24-maint +46507 e989ee5d404abe776214ab080e27620bedc27f0e legacy-trunk +46508 3204aa9e2b22596a962489905a735e86fc2cbc33 legacy-trunk +46509 71861c37809371361edd9ea19d91cae6ee6f7f90 legacy-trunk +46510 593accdde00ef333d3ebd59b8882acbe8652e56d legacy-trunk +46511 f17d37920f6a1bdfce0860927e17b857e638bebb legacy-trunk +46512 95fb2cd1d3bace475cd241584d1d008c826e179a legacy-trunk +46513 e0cea605417e45c551f276ac4d9ee53d677d77e2 legacy-trunk +46514 9268c30782c0aff71f4f3309baf350005b551617 legacy-trunk +46515 938c0fcd5bccb6c73cabc9ad3d6a33933074fd4f legacy-trunk +46516 d60c7f6c2aa004be3bb942b0da0a3187a83555f9 legacy-trunk +46517 bf326581c7422262a8a9f7b08745e6618a44c607 legacy-trunk +46518 9f3284c92eb30f10710c9b6b92c6d0076c7aeaea legacy-trunk +46519 d3383063491f5983cfc1c59f1638ea0de621e030 legacy-trunk +46520 aa065f82025246ba17eb23257c0d0186907b3f8c legacy-trunk +46522 58e99f2a64eca1de2a6aae58757b315c717264b2 legacy-trunk +46523 5531955993ed416406d5246647da12655e7cc976 legacy-trunk +46524 9b001ebeaa5e4867775d10dff49031f3b3c47b16 legacy-trunk +46525 3d1a99b39fca25aeb6141e5785f52b8c73c48270 legacy-trunk +46526 6743a6a06f156d1dbfe89e7953ad8253d3398e42 legacy-trunk +46527 fb56a3992604ba85976cdd11716784e0766b2211 legacy-trunk +46528 f64b13a00f33b28c8efaa558a030ca8077339339 legacy-trunk +46529 dcf92dd7408a3f0bd2af544949881a395f694528 legacy-trunk +46530 8ac603e570a0558f9a275714568261894a9171ab legacy-trunk +46531 5a12c0c5183e88a05fb9035cd8286a3c9b02b815 legacy-trunk +46532 48a6af87f3e862a8b337708235d1462022d58915 legacy-trunk +46533 3fe3ccdf015552163c4c91a1e946cb1116b6ab0b legacy-trunk +46534 a5298f371be7cd2ad919422230355050580f89b1 legacy-trunk +46535 c3f2c6676b061ca71289bddc7ce05232acd4cfb9 legacy-trunk +46536 d5bdfd120232708267addc646bee36a0e7fc80d3 legacy-trunk +46537 7d510e4f3c988505d06bc591c59098e054bb1362 legacy-trunk +46539 4e4e653a80bf4af64af099b16eb298f858b1a277 legacy-trunk +46540 1731fbdf029d209e76fa8b85288643feac26f58b legacy-trunk +46541 6d79acdc812d2010d0d2cedf0ffffaba73431f83 legacy-trunk +46542 a82fd7b044dc7a7d6d5d691a861a26bc8e2d0204 legacy-trunk +46543 8dfba087dc077a61f50f3af6a2834cca24dc34e2 legacy-trunk +46544 494cab563c117a139bda13894996f28cbe56d25b legacy-trunk +46545 9f862d9f7785dda7510e22abcd3bc89f7d514cdb legacy-trunk +46546 ec5dc8a49edfb657401db5c211693d7ca94b6eca legacy-trunk +46547 c4501fefd324fb4363c9456f7fbf72d2c9068413 legacy-trunk +46548 510682ac5e89dd5b65bd47b8ac8e0efc2c6435b3 legacy-trunk +46549 441711cbfe34171da67436eff185ca4631109ca2 legacy-trunk +46550 4f8586946c8f5632a465783e4a8f69eac38ff207 legacy-trunk +46551 0aba63ff7f73e38683da555fc8b4bcefece81c78 legacy-trunk +46552 d2008b31fd62a24d6a4fee1565b355ed04e02176 legacy-trunk +46553 99564e62aea92de140892e17832fe217a63ecab1 legacy-trunk +46554 e1158e1951da50f6eadf8824c4ee7077b242c96d legacy-trunk +46555 13fedd0d0f26c664ed5964e4eaa758e3d0459e86 legacy-trunk +46556 c747ad53e09e0f92944c546358c785404ed757e9 legacy-trunk +46557 168eb6e15b8c7c951dd121d93f8d71da96ae6474 legacy-trunk +46559 7f1f36b3c9f9aac3918ed6e86f3e3bf1e8914e8f legacy-trunk +46560 ecf7173e79ff566f4f958badc189e57b70f2860e legacy-trunk +46561 bb0d2b955439f32e4812370703f88e61e2246702 legacy-trunk +46562 2fe3233bd42612f4b1734c1ae93de2610f156588 legacy-trunk +46568 d2ae580880b4bbdd685ec7d90f4d39fbf9248ca6 legacy-trunk +46569 f9d1840fad34852540925ef7af9be9f9fad9715c legacy-trunk +46570 629ebf7d3b5caca59dbf0c13dc9a9f9af68cf55f release24-maint +46572 1a56da86c11a879fa71950cb42e2effa18c6393e legacy-trunk +46573 badc1737dc8019cf2b302d520005f035712a0ec7 legacy-trunk +46574 f0f291fa9b4691841edeee5ee538000ed8e2cedc legacy-trunk +46575 3fd8027845f802c9a0d8808ac66f74bd67086d9b legacy-trunk +46576 f50d3a51d646f33beff5b42bbe60586d4c4402e5 legacy-trunk +46577 d25e279c7ea9b257cdc5a1b12a3f735d49ab630c legacy-trunk +46578 f831e8bc6bd37899344758a85f6e02775095c500 legacy-trunk +46579 5f442f7bf419e4fc3c120980307d91b665c3e89f legacy-trunk +46580 e0997ffa3572468b9ea0ea0cf62b16817ca111f6 legacy-trunk +46581 a7f2295a78ac13950bffe8784bf8492f0b2cbb17 legacy-trunk +46582 447a94b039deb80ca1da9333ba3ac813b870c939 legacy-trunk +46584 428e9cbb43461e0eefff2f7430075a8475267feb legacy-trunk +46585 db2d8aa9fe3d4208b99287f053bf48d13faeb3f4 legacy-trunk +46586 3031a7110da9a8759732ff2602fc3992231af941 legacy-trunk +46587 b1eb4a674998054a6e751a16e3a7eaf3be72ac0d legacy-trunk +46588 cf677e978852fa6cebeb093a504e5d4b848b930f legacy-trunk +46589 175cbdf9a5fbd0657f8515860ec51083be40cb83 legacy-trunk +46590 995ecd231f7c598d5b4151303fd3264c8d072936 legacy-trunk +46591 c5d50872eff482a737e4914b2c6284167ba4418d legacy-trunk +46592 b9b036f02207e29b221534866d70d2ef29d4fd6b legacy-trunk +46594 d7dd528427c0d14aa43b0f8fad52eb555386e9de legacy-trunk +46599 f37e67bd4393184a1ebaaeec8d11b219d5517999 legacy-trunk +46600 2632bd55c29f2544bd987416cf2cd79e6358db25 legacy-trunk +46601 75d681159329d98f1655dbe0f27e5610d3fe8f94 legacy-trunk +46602 697dd848e1f13636e5543fda5fc61d507a43329d legacy-trunk +46603 21e8dd3e394577c58166b5150102e10abdfba388 legacy-trunk +46605 2eb8be0f873129716076d36947ee0aa53958522a legacy-trunk +46607 f9c301dc5fb74c8c2e18a5daf20dd08f82741d04 legacy-trunk +46608 383cd94c2a67d37f2ba1b1c172650a9cb6841775 legacy-trunk +46609 6f9b536e96f66353c1fe9e755238a9023e3e9c59 release24-maint +46610 966e7470fe237333b4e0ef1d54c795280409f7f8 legacy-trunk +46612 2b5a9dc4905c939bd4d3d642e0a77123f1bc75f4 legacy-trunk +46613 64b9379fa80db08841359d1ea4388c62e236a4db release24-maint +46614 464265c1d08b1ca67d456f88ec574c03c728781e legacy-trunk +46615 3473fcf0bcee8461f6f66fd66605fdbed87d6776 release24-maint +46616 aabc13602440af3e6f8b50cced2c4b5e9de03073 legacy-trunk +46617 855993b09fd92082b42a7d6555690f2be940aa3e legacy-trunk +46618 32f706fd4503e9890e7f11bc84481cf3bd37b53c release24-maint +46619 970526c1a7e2ff3644ef2c2456332cbfa472a3a8 legacy-trunk +46620 129ab846a71faff6123c355ed0562c7e32ef28cc release24-maint +46621 d4140f79f1c70798a301243f64aa06aa2d651e4d legacy-trunk +46622 f7d423c0bcd86a3b03bc9b596460002d333a4609 legacy-trunk +46623 f0f5dca299907a4823cb9b9fbc05492f3166337a legacy-trunk +46624 34714e40d4656df0276866614bdeb06b23084c01 legacy-trunk +46625 d1faca4f0b8026125b1f1d2291f759929094beac legacy-trunk +46626 a4654771e5b30144cb818e860d03848b050b6f95 legacy-trunk +46627 bef0236d7bfa6f136e3f578ef552d5dc0837d8d6 legacy-trunk +46628 4ec942cf8c92ed76e414aa83c2564a3671549168 legacy-trunk +46629 806f3e14119d77dc83fd76160a42248594fec5e8 legacy-trunk +46630 721a7eb23ebf9c09dca8b7c38302aa7118afe3de legacy-trunk +46631 16318249aa3324637320be345e6142f27d2dd518 legacy-trunk +46632 248d106f8952efd4fd71bc7b946667f48ffa08ed legacy-trunk +46633 07acf6fa5aa0edffeeb1e01b6e8b1ddfaf561748 legacy-trunk +46634 3aadc6dc4b1a642055aae8c04da071d51ff0ac99 legacy-trunk +46635 6f7404f3fc5765b37d2a51373243c68c7043357b legacy-trunk +46637 5722f112d5da54bd05b10b5ded4ae0f7e082d6e7 legacy-trunk +46638 82072a8f52674f0354f63854f5c0ef688e714718 legacy-trunk +46639 07e503e858efe27d4b083122f83dcc6c0e215f09 legacy-trunk +46640 0b2b076e5908ea3c1234bb7653538521ba4872ca legacy-trunk +46641 19430cdff2bd6aa91f29992cec08f146dbc00859 legacy-trunk +46642 a114003aa3d3eb07133443b1bbabbf971b0f12e6 legacy-trunk +46643 7239a1a80487900a3bf11d6ad802687f7a4bd5ba legacy-trunk +46644 4722d37faa14378b94ade3062bd285591a6273bc legacy-trunk +46645 e00e68dd1ddfa861a79f77525dc4df0bb4118f98 legacy-trunk +46646 5ec8973dd221391b9ac58ccb7e8097c995085b71 legacy-trunk +46647 db792977263acee6f04d58d1a4430587140dafc4 legacy-trunk +46648 9e0b050ce46f05c0e77e36598d750a8490522b85 legacy-trunk +46649 21969b71c36d0721cae8a362847a97c571818f73 legacy-trunk +46650 5dfb21a37f19faf90b5e5150cd677aea554eacc9 legacy-trunk +46651 7d31d031f8e133509aa117fe4ee5b2309c1d3ce8 legacy-trunk +46652 913e5e84fade76d64b3b998108ff513e414dc426 release24-maint +46654 f16d44d303cf84009e42904f5f850a0f9ce204b3 legacy-trunk +46655 c4587a5f5e94ee6c6acc1853beb44e11a9d9b66e legacy-trunk +46656 d0073c6f6f56e2d815353207f401cd4ac195986e legacy-trunk +46657 1c23e95a80a2ef894c439d7fbfe6786edeaaf8c3 legacy-trunk +46658 b00cbb08e0cc11bee0deab457a9fa4e3a4837aae legacy-trunk +46659 58de61beddfcef3ff2a3e3f19e0ca6edf809acf5 release24-maint +46660 c05ef08e1ba94d9ca17986930bbe40792b0c0d58 legacy-trunk +46661 237456062b80f736cb87221331c9352c4a0996fe legacy-trunk +46662 cb3f5138ecb5780a4fdb5c0aceb48e86f17da54b release24-maint +46663 c908aaa91eae1787c315347a55e4fd3a581f57db legacy-trunk +46664 1c9d8077ecfb21f9cfd767487962a159bd0a2667 legacy-trunk +46665 5adba709606b3a64d22ca9b2b8d3f51ee787f94f legacy-trunk +46666 990647e2abc4b2452b25e8778d93dcf304f3b33a legacy-trunk +46667 a4b58ab652023c5812905348c7cca1648ad2bfa9 legacy-trunk +46668 f3a679985e0d548df307a99a74a45f1b021775b7 legacy-trunk +46669 30605bf95ef8b8be7ab07c04bd14015c88e65647 release24-maint +46671 02d475405e3b5f290b604af03331110a5d3ef81b legacy-trunk +46672 6649b51e245f925dc7741101c097558627a96cc3 legacy-trunk +46673 2177aecd91fcbab3da8d7730a5a63a3a1976ca61 legacy-trunk +46674 0855da14a820c0f16a5e7bcb90a68514429aec10 legacy-trunk +46675 9639cb13b940530d1390a7ed461f710417e00865 legacy-trunk +46676 687aacd64be966961ad7471180360ae2e2bd779c legacy-trunk +46677 0dcb9228cb3fd8550240d9ad9447b1d140eb0207 legacy-trunk +46678 654f0383dbcb2e3ccae981c1382c5551721b4cdb release24-maint +46679 c4b44222a5994b07acd4e9e768ea3691dfd6ec54 legacy-trunk +46680 18de50b58fb1d78ffce7612151a87e761d9e300d legacy-trunk +46681 f00518bb5b4335775c06e269bd54f6c2232e8d2f legacy-trunk +46682 80a627340c9f23d798047fe38c5e81f3cf0f57bd legacy-trunk +46683 11f66731554dba780e5050547ac1c5a0cca7d299 release24-maint +46684 a60adf0cb2fd74fbc7d924d3368c230ef9e557f1 legacy-trunk +46685 7081e8d53298ef3c449fcd7a92431d6ea420b967 release24-maint +46686 6ae418e4b36a9a67ccde723bfda2095fdb46e695 legacy-trunk +46687 1e38ff81c8a952eebf7cbbf367257852a8c03ef2 legacy-trunk +46688 828c106d5ecc9fd74cd16f8bfd1a9286b16dc20a legacy-trunk +46689 5fbefb5c8a23e69cd02a6e39935c51c9c23981e1 legacy-trunk +46690 0dcb62d6d99a28a4807664aab2c3589a569507a7 legacy-trunk +46691 98e81af40007efd18ea666ec4da5d52ad16f4f67 legacy-trunk +46692 1c016f9ca5a74ad13736cb7013ddcfd2f1382ed5 aimacintyre-sf1454481 +46693 280b8eaee1c034dda05ac2d872b06a28c7b02adc legacy-trunk +46694 c989fafff3dc6c52dba2f148b2321121174d99c1 legacy-trunk +46695 311f751aca7a332d8815b05d140fb946c788c3dc legacy-trunk +46696 cb3b439c29ccfda9fe081f951976db1d62481fde legacy-trunk +46697 931ad06bec561969d144e5a903edd88eaf348ab3 legacy-trunk +46698 625c2d98a1f805d17937c36a839a559ed30730e9 legacy-trunk +46699 7bfafdeffee260956ec28afdd3bf1536ba7d2803 legacy-trunk +46700 1e8b59389e2e10b68268e99318f14a7b98a7bd36 legacy-trunk +46701 1e85657f04740d60b697df22b42cefecfc96e229 legacy-trunk +46702 3a36d5f5b10fd304e516f8c9888654b20fb2b790 legacy-trunk +46705 ea9966c8865742d28046a83f41879deb2f2bcf51 legacy-trunk +46706 0cd2273bc3b1756c88c3f6b6923c18ce96c55447 legacy-trunk +46708 defb2b993434ff1f661975d62983f7df0f1ca811 legacy-trunk +46709 a2cf871b7800e8ddc373a940eb6c35701b654edf legacy-trunk +46710 3fb38351dd39cb73e5d2bb3b467588f136375eab legacy-trunk +46716 2af5757de7b1e9ad647a992f2e6c73324c8286ee legacy-trunk +46717 1cb2ece4b9e1de0eabd39d6ae41a20fe493613f8 legacy-trunk +46718 a3668e94fc6d4d4772b4c34034be5153a2009f44 legacy-trunk +46719 1b47d030c3fae5c7f5ab3b06bdf76fb33a2e69a1 legacy-trunk +46720 7704f37541f4231febd602ce313293f562340d09 legacy-trunk +46723 872e991f9b7015409ef57a79f235b07762c8af62 legacy-trunk +46727 1100b52c55fdfe3645bf139e5604fcace7e7a470 legacy-trunk +46728 a0761ceb8633a81a34d84f90fd3c6c6d92ddc6a5 legacy-trunk +46729 0b4eac4050b80028bf2f55a0ec179041bf3a1018 legacy-trunk +46730 fc3bcd4e44b964ae7280269d2e912840f956e3c1 legacy-trunk +46731 0e7bafb1b82f9c1a19d27b8ea7f78c8d26d481cd legacy-trunk +46732 7d31b6692ab74801deb35c656104207afa021bb2 release24-maint +46735 e3c08f066eb80d7e81ed1d8990d038d105559f00 legacy-trunk +46736 fcbf63c9b4f6fceda6252587bc1edfef123bfd59 legacy-trunk +46737 4b0a3d0d85841b750f7f314b7e7d33d0e9c69b74 legacy-trunk +46738 1e0704cd9ee81aaa5880f5a8db023fa4c8b0e717 legacy-trunk +46739 5c58fda95aa5a2bfd421c7a1ed4cbce98c5434d4 legacy-trunk +46740 f28f9c15e2d0f8e02317e870e66c65d6690135c7 legacy-trunk +46741 3581d1dc4253372230596ec849a6bf0e6125d173 legacy-trunk +46742 1d239c7e8d6075a3186018ab6b4fa40dfdad1b32 release24-maint +46743 72c8f18e031183dbe9a7fce9fe6603111d96099b legacy-trunk +46744 7619216bbc194c3431f83709aab96f9a9afbabec release24-maint +46745 d3d961f388be2b03af64b148c73f02f4673cea7f legacy-trunk +46746 e2ba5ae4b813d9fd2c2d268d8baf6c2684255851 legacy-trunk +46747 e0d29586212a377edd9227368f4c3c6d70cf3215 release24-maint +46748 dee73fa8110f3ead4300f91645f65db8c8e3e45e legacy-trunk +46750 19fd6141940d5b0a7b4fb2c4138912abb0283d98 p3yk +46751 24930e3b60619aec319cdf33b2cf40bc9311826b legacy-trunk +46752 365ca04d08564a09d1cebaadae745b08a4776c68 legacy-trunk +46753 09997b2f63a2c3dab2e6cd7ea9cbfbff1bfa1b2f p3yk +46754 a19c20c5e5c75662157b1102e36c07d1e2c01ab9 p3yk +46755 6ba7d46679867bf9d4ab6ee98e155fcd0117cad5 legacy-trunk +46756 0e319667455c35c62224355b37293ede4e5023b8 release24-maint +46757 5bc7272b81e547dfccea0b0ffb80352097cf7556 legacy-trunk +46758 935ac22f0b3f026e53f8dbc7cb1bc9d65137162e release24-maint +46760 5f195443e00aa909c905fd151c39fce78edd8492 legacy-trunk +46762 4e798caa082e5cdd12a2d7e1f72fcee1b7bcc059 legacy-trunk +46763 c20384057a06c27b736255a0b82b84d19da56594 legacy-trunk +46764 c3c52f159999ae9460afddb4d637cc1221f90fa9 legacy-trunk +46765 eca4fe132940bd3c52aa6db110e89eb4235612c3 legacy-trunk +46766 2ea263b628972e45273fd9fdeb8be1ee9665b624 legacy-trunk +46767 debc8d783f869e5a8c8a7298f7240cac1cf9a277 legacy-trunk +46769 0a1bad32abfe39d9a0dc0bb26cc4c50f56eb80e1 legacy-trunk +46773 67f430d92b38e5ca44c22c763a6f4317f9aff834 legacy-trunk +46776 46599fc486e8fdaaf21f8bb83b9a88b4df204f05 release24-maint +46777 c57321c84226c916796a8ed5c07ec3b5ed16b26e release24-maint +46778 77b6589fadb97d85e0c645c815c989f34e5564bf legacy-trunk +46779 4ef1c685bcbdce4443b328ae07c9777039ff30f5 legacy-trunk +46783 05a49c8985fb09f475c7a2a9f43b9d183a969976 legacy-trunk +46784 ac25eee90254175121bcea157635e9edf1f92d76 legacy-trunk +46785 72e37ada417072fb1a130308ce8e30e3f0b7acac legacy-trunk +46787 70aac2b93e09a3a48900b25bd3bc8d5bbecec20d legacy-trunk +46792 6e8d997181700d41c22326fcd349828e6c1cb987 legacy-trunk +46794 135d1586b35d54bac81d71fa46e2d6a79848239c legacy-trunk +46795 1cafbcd7f55ccca91c4085b1f5a6ea5af9af2ae5 legacy-trunk +46798 76ad118ffe3b5f856286759f0edc753d48ef7b48 legacy-trunk +46799 5a74193429f064e125de9362cc1863644d8ba42a legacy-trunk +46800 07f24197b87cd70d21168af1a114c5f36cacfc40 legacy-trunk +46801 26a97e5bdf212151103a7b830a4537ea174691a1 legacy-trunk +46803 b129a50271adfec79206236cc2ec53944befce54 legacy-trunk +46804 1828af5dcc9944a2f7855b7fcb16864b78b3ba9d legacy-trunk +46805 ba6eebf7c719dfb58a5e3954a8ce5b24bfa38909 legacy-trunk +46806 16c798e8eae327b85a460cbba1cebfb441976390 legacy-trunk +46807 493fb577932f2d8831a43b5319c4ec97f28a17e9 release24-maint +46808 42fe6de24602fd40f42e393ed13441cf549a3ee7 legacy-trunk +46809 ad5d4735bedc846c6aef21c102ecdbcccea5c321 release24-maint +46812 67450db26f8167e78bbc3e0509708147d557cbe5 legacy-trunk +46813 e15fafa4107d20d6b0d419dfb7bf3dd9b2de85c3 release24-maint +46814 08b24c88d519010f5133b8394387c1276e484f5e release24-maint +46815 e7d084cf65bb9b40840cee933daf1bbc550ba438 release24-maint +46816 454aa0ec0eb7b3a6cb341cc2103046a3243ab6e1 release24-maint +46817 82331f11a1560bfe3cef41981bba94a4d5fde0ec legacy-trunk +46818 e2d2dc506528779bbd25d6950241add133a760a0 legacy-trunk +46819 42808526511c9bb4920b1e107221f8ead173eff6 legacy-trunk +46820 b23eeb802780523b65496e4bbf5ea6c8262b3ea6 legacy-trunk +46821 3125099b34971c30c769783ed3900a6e51cea216 legacy-trunk +46822 2dd1970146122adecec876926d248b55265aae81 release24-maint +46824 aa5a1bca28dd88ccc2dec14b59e43a4d81e670f8 legacy-trunk +46825 cd5f2c5bab653b55736e773eae385ab432c2f8d1 legacy-trunk +46826 538cf188f8a6cbc2208a52262eb9abdb9f260641 legacy-trunk +46827 bc091181b841395507a778021f4595f1b1e4b24c legacy-trunk +46828 0142536b52b64b3a836a6278077f6f05bce4bc19 release24-maint +46829 c5afd440a4d09d0de0c7737e5371cd2d35e72e7b release24-maint +46831 92440de868e93fef13b3383be9cc510e97fb4dfc legacy-trunk +46834 a1dd25ec2f5bc66558c3389dab55b0bf312e7987 legacy-trunk +46835 73665f6fec315aecf30dcf7e31af468ffa7d9b45 legacy-trunk +46837 7b318e96f80aa948daa40f1ca071e99e1b3a2ce8 legacy-trunk +46838 b8f22851c1ff1e59924c5e7b26580b93a9026556 legacy-trunk +46839 0b3fe2b734a1dff140655f13c30c83db5536e647 legacy-trunk +46840 bf4e485becf377622b0fc2bae9e2ebee7c2cd30e legacy-trunk +46841 195a0d3eecd45eb743ab204bf8a2e6307a1e6384 release24-maint +46844 9d8478f732d5adc91f1c7dc8cb29940eff1b477c legacy-trunk +46850 9a944676732a7db0e40bb65c8def665c3328289c legacy-trunk +46851 e80097bf73b60fad8e7f140f30365d13563aeccf legacy-trunk +46852 e615755ca8725fb0b9f8fcd715ccdd39cb56ebcb legacy-trunk +46853 0a8a392e1faecf30f81353e8317250d3938b56d7 legacy-trunk +46854 af1742a8049ec7886e84d5105eef893fc20f4b0d legacy-trunk +46855 501ee2a05fec4b8fd0df5b6c288eab72b35d8ee9 legacy-trunk +46856 adf20892d8cfbc0ceffdc97bdb177f1aac993abe legacy-trunk +46857 49026af9d1d79c41a0a7aa64b2febdbd13453fa4 legacy-trunk +46858 e8464afef4a41aa9a7b2f615c0cc31b880d70cbe legacy-trunk +46859 1b3b6b1982aacd0314888effb81bbed5c6516736 legacy-trunk +46860 ab253cd497d213767302bbeb6a25f88a2c0004a8 legacy-trunk +46861 fc4afee40c2b3b858a95974bc3417851937375aa legacy-trunk +46862 a789390d8ea7edde7d0634e7caa8455ab7a894c0 legacy-trunk +46863 b50ab288ae27ff489570be31b86a3368c3891df7 legacy-trunk +46864 d67ded7a2914e4cf3f9c15a182470ab431ade0f6 legacy-trunk +46865 fca1e424d0238f8952b0883f7eb9c774454d990f legacy-trunk +46866 cbf272f479d107b323eca40639632a099d88962d legacy-trunk +46867 5a994d26a3cf894ba9a16ea885fa0b7fc05a9965 legacy-trunk +46868 0acc52d3fbf1f435a3fc3be7b2bee187b79f8c8b legacy-trunk +46869 e6c800a463b13129d3c71802caa5d437d3161ff8 legacy-trunk +46870 8ba97ccbf93a83f6e6bfa8062e5dbbebbe856072 legacy-trunk +46871 66cbcce42278f22d214b68a6eb2efec759893a5e legacy-trunk +46872 1fa78fd1e93391474fc895317096e85e2e4472d1 legacy-trunk +46873 60d79a2bc997e8cc0c330408e317312b3b7c9912 legacy-trunk +46874 1a11a4a49fb85a3f96f4e34f270bfb0fdb07945f legacy-trunk +46875 3eee7bd9a0d072b43bdc6ed70c7f750e249a6d34 legacy-trunk +46876 41570f099a4c3e651f6b2d57d79c09b670766c1c legacy-trunk +46877 92d8cdc4b90c02c4d175fa6a470a737985126404 legacy-trunk +46878 f14ab70c320e48fd2b52e31fc7a87bc250705e6f legacy-trunk +46879 69e89c29044e2bdd0fb9b7553b0f9b5f932fa778 legacy-trunk +46880 47d8d19ccadc7052ba8c2b52469a01ec5307b4c9 legacy-trunk +46881 79983cf634c025ab4a5e71ee87d7c98f3480e8b0 legacy-trunk +46882 46f3eb474c842d0b00ae9291cb357f7611e29a4a legacy-trunk +46883 a91e739ce33325fa4aaf10024fcd8a38873d096e legacy-trunk +46884 189304c9d07eada4cd4c219172ab5ee590c2f490 legacy-trunk +46885 2ab0394e6e49b4f353b86b03cef963d5a53e6ed6 legacy-trunk +46886 618d088d96689cf7ddae783e2c4c8f9384cbbccd legacy-trunk +46887 1da8456ebd48719a4ebd787e4fbb3565c3030915 legacy-trunk +46888 d5771a389b8eb7a98578cd805edd3e1260fd53d9 legacy-trunk +46889 1703efda57742d181be045f20708d65d92db99d1 legacy-trunk +46890 51732e81c7961467f6832eb6fb8c03a87e3cf38f legacy-trunk +46891 8fe373fb21d430c4a64eb454d01ecbd2dfb5b946 legacy-trunk +46892 971abf3aecf41158cc70c1db793d1454f15ade18 legacy-trunk +46893 97b61d6f6b768162047a9c64861a17c50c533836 legacy-trunk +46894 4c74ec831a6c3bfee3f84493fc80bb9bb76eb42d legacy-trunk +46899 381a72ab5fb8394a2d3ea28bd70c100d636c7d1a legacy-trunk +46901 c8618473cdc6e816b69cb0cae0c8a5492d0d32db legacy-trunk +46902 51f3342b70d3cfa739ed20fdf7d445e0c22c6432 legacy-trunk +46903 765fb1ccc3d894dbdb1ada91d3fe94368b626dc7 legacy-trunk +46905 9b8507cfbe9501059f2770fced295d1c9b7a7bdb legacy-trunk +46906 a4552f08d53b34273ef4cc44657958e74593f187 legacy-trunk +46908 9c52efcaff651dee8592137f99c7f3c737454295 legacy-trunk +46909 70b166ca1c49e237885522e824d80fa9de8d4f4d legacy-trunk +46910 914da1036eed5db6b068a6c808ea8cfcd32e756c legacy-trunk +46911 936429e10b8796eb6bec31afd30950e249294bb2 legacy-trunk +46912 ea3723b2d46bd17804684bbad28811e10be6760b legacy-trunk +46913 6456092c1235a1701a764a7cedf967bd4421bbfe legacy-trunk +46914 e1b18479ce9307d3f5fa8124910a53d4d88c3cc9 aimacintyre-sf1454481 +46915 98122d2176f140a1f50277f9327f22625995d7a2 legacy-trunk +46916 5db1fa6e9681835f52d0cc974f84185e8dd2960f aimacintyre-sf1454481 +46917 992126a29e0fd38d4dfc04dd71410a11fe0a1d51 legacy-trunk +46918 4e74df959518a4b7383c6ed4eccd666a24df123f aimacintyre-sf1454481 +46919 f7d23bca599febcbd1e4e19c101fe81f1d3b4ec6 legacy-trunk +46920 a714f2f13e25f22704f17aa182440be5549a274e legacy-trunk +46921 3e96e5025d9f7aae4b04f365786cc576da5219ae legacy-trunk +46923 6f2f18f8638743d49ad47d1291e46a5ea2a5bc56 legacy-trunk +46924 6f30611f283dcbe72ef760906f705f183bef4797 legacy-trunk +46925 5d622e483fccfa62df57b44c34493e1c32568968 legacy-trunk +46926 51250766d6f5d2513202086b6fcb94b852c1ae74 aimacintyre-sf1454481 +46927 bb1f02e9711da5f53ead27b7223f5c4aa04baa04 legacy-trunk +46928 2167105123e4478baac753c149647abd99bb49af legacy-trunk +46929 6e0c0c7cf0689ad480cc5efe172a5fd20ea9c4b3 legacy-trunk +46930 70c2efa000078f29c4dced25f269951c52c8f23d legacy-trunk +46931 a2490f7931d31139eb5d7dfeb20f4ca991b4827d legacy-trunk +46932 bb684a0c22d9634a0cf0c3761b0f689f96f29476 legacy-trunk +46933 74bf573bff4c35e7a85e29e85118aac222da1c29 legacy-trunk +46934 0a5cf25945e2b675cd52dda19c094d3f2a5ab81b release24-maint +46936 3e5fd2b70e5a70d5e571394ff1521c314f764d9c legacy-trunk +46937 ece8a6751db7488b7b807f6e31818707967e2ee3 legacy-trunk +46938 6f7e64b72a5879ea6cdc801526fce7fe128e7d53 legacy-trunk +46939 4558916b841f1cfa7829919d73c5b2d58bd0b74b legacy-trunk +46940 62cf6d58bb53fb6bdeaa070a55be54c6e517e5b9 legacy-trunk +46941 5796acfbb6da16784bd8211650bfc04a5c90fe24 legacy-trunk +46942 b7a3620d3dbb76705d2972f63a446cf431c9b483 legacy-trunk +46943 6d8076d380597a669df4c12a21ac7faea5fe30ed legacy-trunk +46944 d857a32075d4bec0712983c3a3c39cdedbb1c183 legacy-trunk +46945 549c547700af8725e504ebdc095d1585f7dd195e legacy-trunk +46946 069ff3a70694104a43f1c61f491fb6dacc24b3ea legacy-trunk +46947 c959de64a8da187e1ee87e1763800c974652904e release24-maint +46948 4377b17ddb2cfe503dab82c5e748e3cc269b6e4d legacy-trunk +46949 069062859298c5242f1c9c6b5968735140559663 legacy-trunk +46950 c520eece01b039684b5c82b7a7a59c7aec8d4cb3 release24-maint +46951 d6877835791d7c642a3df092a5c86d94675e6796 legacy-trunk +46952 b7f4ba601df97af7ce5c3acc35f2200acfd1b048 legacy-trunk +46953 917beea55595d9bb0650e0ca97584dc69d6abffc release24-maint +46954 16e05c606275eb88ff5e837d8b9b7c8b7725ae99 legacy-trunk +46955 d1aec7b4dbb8693f43892ff7a6ab1812e261c5f5 legacy-trunk +46956 03c05cab5f21277a9e1b19bf7cdb48a5e8dc6a45 release24-maint +46957 0f76a56d506cc200c942db49aae101aaac01de37 legacy-trunk +46958 0cf2eb3cc50a73b6e746248367d168d6d0e9d475 legacy-trunk +46959 8680853e9ee409763fe18d0c31f08b425e8daeec legacy-trunk +46961 d15df02db1cc13f7ac4418a48a13f94c7a52b0e1 legacy-trunk +46962 d7bc6470e83835cbde0f2276fdf3d4242812cdfa legacy-trunk +46963 32adaad59fb37d79ab359954211825f16c097ca2 legacy-trunk +46964 0a8b851b0375229ebee063d613c1ce6c819fc074 legacy-trunk +46965 77b01c9333088afa6e4c1d47c4218333825c0807 legacy-trunk +46966 a9f9b5075bc0cf03cecbec95d391d5fbbcf51d5c legacy-trunk +46967 fd412a00a07df459c2ac34902421953049ec2383 legacy-trunk +46968 d4b1f9a31c2969850333d25d5e4fb4625b076115 legacy-trunk +46969 9937f09d76e3a0de8adfb9465c3accbe25865bde legacy-trunk +46970 793f026993bb29d6cc9159265329f206ed670bec legacy-trunk +46971 3b65eefbaf76e3dbd0fc7da8a2b1c27029887e4d legacy-trunk +46972 34b697041191ae71e2687b465e7534faaeb574d4 legacy-trunk +46974 c77be5c4063b31e4b87bd7f3b669a8e25f3b55a5 hoxworth-stdlib_logging-soc +46976 99387774eb1dda118e287f6b0118ee5a5b6a5386 hoxworth-stdlib_logging-soc +46977 54df35e9c698a7f8d85bb1ecbfa0a3c72c54b95a hoxworth-stdlib_logging-soc +46978 9e4828000cfa928ba119d0f5df1fda3c167d3e45 hoxworth-stdlib_logging-soc +46979 7dbbe786fdcd23dfa79b8a5c03805fec454cc69b hoxworth-stdlib_logging-soc +46980 373043a1bdfbb8501e945cf946610563b044cea4 hoxworth-stdlib_logging-soc +46981 92eb6ed03c2e1cc8501228485884f0867a7b0e7e legacy-trunk +46982 cacd47a61e796dfb3674417d4025cb3739f1014a legacy-trunk +46983 1f947f1341d1947b32abdf092d18ececa486bf09 legacy-trunk +46984 9a9d5782e4367b9a018dc6f429379e509de5406f legacy-trunk +46989 9e827fd831d77c848f764aaecbafb00ee0b83af1 hoxworth-stdlib_logging-soc +46990 b5efa23cc9488d7ad366afdb00f6472def6296cf legacy-trunk +46991 e76b6f3a44193935024393d051bb3810c7e92ed1 legacy-trunk +46992 6b4da4ee7146eb9066bb9e8ccdf8b6fdba74c27f legacy-trunk +46993 e0c3f5a4440fd4341bc7d46e425a0e55d742b3aa legacy-trunk +46995 557e62126cb1dc22eb85b0e596941a6edd060ee4 legacy-trunk +46996 b2a4be4737282300c4f0f5557df56e5f5b93da8b legacy-trunk +46998 8a50d8e9018c84795700aed8d9a7d8c28392f2a3 legacy-trunk +46999 f6dc55d32f702ce09ce648e4ba28a1b2e24bcfe8 legacy-trunk +47000 aff6629d1d1c411fff4642ca1d19299b9f4c8328 legacy-trunk +47003 03cf5dd7c90615bf87ffd8ed96e732a8dd247068 legacy-trunk +47004 a0b062ff2939c92ebe37cfb5da768d78bce4bc29 release24-maint +47005 c50267039088e02094d7d2cc3933afc801ecf2fc legacy-trunk +47006 02650a47ee8be39384268ff383b0ef9951354c10 release24-maint +47007 96e1b0c8ff9a8da1aa33382c31793534501c48bf legacy-trunk +47008 1258e93bb1d00594d4d102b7f4c00d7792918f8e legacy-trunk +47009 484d3d5ba7f9a5ab03301e4e2bd65fe04764ee39 legacy-trunk +47010 b9d1440c2dd1631d4d087607ca9479ce7d68d1ce legacy-trunk +47011 6a7f1f12eaaf7d44e8d3c9336e231d1f84446a03 legacy-trunk +47012 411d0a353a15c84fd7e2b0e5cfa67c66623c6c91 release24-maint +47013 30d2333852d50f01d3d38c9ee078626b1b68f668 legacy-trunk +47014 ad5add9e03696d3abdaf16c0331bdf6451157c77 legacy-trunk +47015 f4b44125646789f545910915d5d5af00885eccf1 legacy-trunk +47016 93cc3fc25099999eaa5e8f265229bd26038993ec legacy-trunk +47017 a3c61c648fc8194dc795bc6c179b8d8cb201b39c legacy-trunk +47018 805f41881e270e3812f91d4719eb9600cd0b34c1 legacy-trunk +47019 2843bf70a9cfd4f99e26393ff3caaca66776bebe legacy-trunk +47020 6729c27d01fe8db9f1452cc8d4f170bf4b7fb98b legacy-trunk +47021 118c650e2c9b3b44edd2c8c6e85106335288c0a2 legacy-trunk +47022 4a766024043aeee592a6c0937de2db4b15a0a672 legacy-trunk +47023 0b95a0aaaaef986ab4ece317c167a122f8a2c615 legacy-trunk +47024 0bf9e3099c57bc730fdb65b16f5b95a57e56d5b8 legacy-trunk +47025 c63d2b6263b58b7207137b664035b7bfe49b93b4 legacy-trunk +47026 4830d6147aaf099524d7c4abd0bda659f4112f6e legacy-trunk +47027 a746205f59759c7328d898e78b8cdbe98341bc30 legacy-trunk +47029 f0885fe14d42aeea1e79b748061773a5e29a5707 legacy-trunk +47030 408d2a596f9923456a72c69880360d859c78488a legacy-trunk +47032 5b987d21231bfb6546623600c365421a6d4fef05 legacy-trunk +47033 f19e877281e4903711f1577ffe636086c7c79d76 legacy-trunk +47034 d49b198f545cd82fbf735a22979c332b8a97eecb legacy-trunk +47038 52375f2032448fe47b06e59a62c29057be8aa0a8 legacy-trunk +47039 f8716b76a71ef7a07a07fd284585fb1d188c7475 legacy-trunk +47040 3af332fff5279a7ae564c9fc4ac9338be6b6eccb legacy-trunk +47041 fdccc6b14fad6eda559baa25396c4acaf874ab81 legacy-trunk +47042 26e4bf195ae292fd989431f0f32ac6d159c414d2 legacy-trunk +47043 a3ba1a37b53748bfa84444a0da9cd251f6ee4a06 legacy-trunk +47044 868126e3bcf6d02a54fb88514721ea8cae7123a0 legacy-trunk +47047 4fffe677f55296cb79abbc4ec2ba3867e87de686 legacy-trunk +47049 7023cedcc5ed04a45b99cf7f8e5a3eb17b32823b legacy-trunk +47053 051cc39a80084327dc0adcbfea6991e2ee457abb legacy-trunk +47054 53b04c19fe416cca90d8662257080f090378b8f7 legacy-trunk +47055 9b0f9430cbcbdbb4965ac602723bc41ef2c04282 legacy-trunk +47056 1491e52c85970d2538c8417f29ec5e0cafb56010 legacy-trunk +47057 e3ac739d4889555cfd45e8c96fb68d59234f294b legacy-trunk +47058 a4dd6b209b65a2a6e86aff2aa19bf0b004153e78 legacy-trunk +47059 69ef23fcf5f83f2a1e40138b8fb76e44fcc31dd2 legacy-trunk +47060 152ec22c4e695da116f8b8e1ab55694d194943eb legacy-trunk +47061 506c76847ec71625d6e349cec259817f39d20618 legacy-trunk +47062 3cdde45a468d59b3b7c94f2c4b369937e0cacd46 release24-maint +47064 cb7225e848056cc07f3515da0220973e52908b24 legacy-trunk +47065 aca36f7f3ae87ca0a37838ce04b4e190ae570091 legacy-trunk +47067 041ad0068570116fceb41d3b04121600d573465d legacy-trunk +47069 ebee5539308aee77924ad6558d9b103d0a16e990 legacy-trunk +47070 aed8094432053d174f1da91a5c99b9307b5a3511 legacy-trunk +47071 2114eb73aeb51727aba41bef99dfbaf950eac17e legacy-trunk +47072 58034084ef44ae45f2b817ef49e53aa4ea7a4446 legacy-trunk +47073 65353c4db8c21b93c95aac55b3f097d75866ac8b legacy-trunk +47074 afc475d0567869540f61ca7d6a38501d64d832d7 legacy-trunk +47075 afcb582d92d830484735dc9497d06b7c053a7290 legacy-trunk +47076 78816c5cff0508c4a28b585a67fddfcdcc00a397 legacy-trunk +47077 bceaa7720cc711cd53eedeb83a5a54f9ebafc234 legacy-trunk +47078 d84224320f828a0b6d28391d405c347f79f0095a release24-maint +47079 9b46a4f52d0c0315ff862684747addc4bc780708 legacy-trunk +47080 323da476f17ee17f28539fe07231f388bb930386 legacy-trunk +47081 bab0b1e6c6d41cbfe2e46a38ad08679b846a46d4 release24-maint +47085 64d1f66a239a609c4529faf8ff29c9580551f381 legacy-trunk +47086 6f042f5bf94de784692b339ade989bad5605094c legacy-trunk +47091 c7532856fd17592525eaf9d88a0e4bf11f068076 legacy-trunk +47092 1342dfd527339008eeed4083e80abf6b39ae1495 legacy-trunk +47093 09d1606e75249cc0120df12585985a03f4a65d8b legacy-trunk +47094 ad59491527116d3a0227a6ff57d717bd1b5b0e7f legacy-trunk +47097 b9a64b7a32612db629e98eb8dab8aa1552bca546 legacy-trunk +47098 b82c40dc08d82cd0140665a3beb252c3d6735c65 legacy-trunk +47099 8168d05f9b49e60c49e6344cb3c290ea05aeb1d6 legacy-trunk +47100 f2cc156eb928e3fdfff399740cf56cd83aafe9d9 legacy-trunk +47101 58f419d8c6461fb917b06ccc9c227297b4e68768 legacy-trunk +47103 35cf0f87983edeca80596d811db5f3b1f3432670 legacy-trunk +47106 f26613bd484d7de7d516468df3ff3b269ee57c71 legacy-trunk +47113 b8b22550acac0145720c53556eb267c4cc77997d legacy-trunk +47114 741313029d63d9694473b24e0fa5d01e4efa78f2 legacy-trunk +47115 225479ace9a70d279ad74f232e57de17aeed9892 legacy-trunk +47116 ceea8a986584477a30c94597c76deba681d43e0d legacy-trunk +47117 cb839996a386eda0177bc0ba8ebb6986218f8c3f legacy-trunk +47118 721cec7f01857477f56f36203e0eaef89946eb5e legacy-trunk +47119 4dea5f46ee9855424980c5a972d43bac8a52e2be release24-maint +47121 de410252b9fda3b8d58338bb511ee3d765431858 legacy-trunk +47122 52250eeaf791d6643df0b13732502c04ae8b452d release24-maint +47123 0602771b8b49b7c3340dd4d0ba436d7bdc29dd08 legacy-trunk +47125 095546ddb2f16c647347ccfc0f6b368a3a3e763f legacy-trunk +47128 7c8990cccf9b2ad9bcfd20828e6f01b3361748c6 legacy-trunk +47131 ac3d4b71bce2b26c9fa79bdd35a3fc431c7d0f92 legacy-trunk +47133 3cf218e8b4492573b228b3ea3192296a3108bb25 hoxworth-stdlib_logging-soc +47134 0388c7dce4d42666d1ef532cfadcfb0290573ee6 hoxworth-stdlib_logging-soc +47135 4b4ed2302d1cf56ef1619305415bb0de2d787124 hoxworth-stdlib_logging-soc +47136 851f378ab9cdc5b7564c47d2fd743075669a619e hoxworth-stdlib_logging-soc +47137 d74908e74d30720f5c10c3332b43b07bbd065d6b legacy-trunk +47139 56bf56f5c821476d5d67cb427790cf1a69095ee2 legacy-trunk +47140 a4263c4248cb67e7ad3bdc63bf4c717eaacdc79e release24-maint +47142 5b8079660ec45e4c8b260fcefa66fd8b513103cd legacy-trunk +47143 58270a690f43c5d19009de2060737ef6943be8a9 legacy-trunk +47147 f99fbfba89834601d44704c1b94c6609981bb688 legacy-trunk +47148 2ee5bda920a245ae0802ab6e1841c6f88236cf41 legacy-trunk +47151 1eab5ae3b1ffbaee72e59ffdb7e5cf8ee4491a9f legacy-trunk +47153 b3ef741e26171aff11fce11afb9c0e84b3454138 legacy-trunk +47154 3c9d3a313d81de53916847b3425cc2f0ba1b3e10 legacy-trunk +47155 17f82bd68878532fb29934181b6f54cdcefbf77c release24-maint +47156 29e43c5e118f7b0901423ff64e2972bda53a3336 legacy-trunk +47157 1b2df2ecbc636a2c8b72233e825ac60eb79d7389 release24-maint +47158 0a83dc3529d15af44934f5b3481c0cb8a033fc8c legacy-trunk +47159 f49cc2906cd00f604786d2d70ee2baaa83385048 legacy-trunk +47161 c6d04c9c3c4ae774c5a290016469311cecd692a4 legacy-trunk +47162 99b15c25b84016938aa695e29ff5d5e631f92db1 legacy-trunk +47163 15fe9dbc5d39ef128f9d8935e0aa8d4002c82207 legacy-trunk +47164 da22b905dfbebd9e9acd888c35416b8ffc82947b legacy-trunk +47166 a21e420a597cc9505171884fa243acf47f4b7cdd legacy-trunk +47170 d85708769ab1d94bcd2b40468f81a666e9eb9c69 legacy-trunk +47171 1392561d5dd7ae3de2b4bd5522d407886b22f6fb legacy-trunk +47175 272f195a284e7e014ca942ffb1858962affb713c legacy-trunk +47176 485056e53cdb99cf1568873b383e6cdf6693f58f legacy-trunk +47177 6b0c63a975147a94f69b3a038838c94e75504b76 legacy-trunk +47181 5d2c982abbb39e784261fc6100e1c22c2a150b21 legacy-trunk +47188 d4dbfbf3f2b90c5c23990fab7afafec5e3bd691d legacy-trunk +47189 b664a908bff350ed1b56b560f4f072d2a15b7460 legacy-trunk +47190 c547f6e91c584b9426205fb86a301ffe77d643ee legacy-trunk +47191 e076e3d76f7710a0001e1e38cf562dc4257a688c legacy-trunk +47197 5dd736268ff44023db665c6ba71c44cd6d18b209 legacy-trunk +47198 6975bd4884ebc2c8004bd968bad7bf430007957a legacy-trunk +47203 0f3ba3def1ad80aed1fc4b51ff47d583a636eae2 legacy-trunk +47204 c01230076859c1fe66ceaff3170084fe9889e998 legacy-trunk +47205 8894eefbb0a49fc5eaf549e557d9c1ab5e23f3df legacy-trunk +47206 638241ff87bddbbbe0e2206527709ae6b9572790 legacy-trunk +47207 27973962fc9fb62cf8f6caaf069b238756a50dde legacy-trunk +47208 b1614f674b3270435b98fd80c3ef33ec11e61493 legacy-trunk +47209 e61a938fe998d5f79974b376312f0baac02ab83d legacy-trunk +47210 2537deda351fa8912cefcfdb92bf220a84b1164a legacy-trunk +47211 b9470d67d96c2e2702e809d41f88d74a8706af10 legacy-trunk +47212 0e8a94ba21066da65df9d6608e7e48bba639371a legacy-trunk +47213 e9d39c5fcc274614bc2b6e3eb934e94ea731d02d legacy-trunk +47214 f116582f6622425e98cca99ebcb709257c3e2dac release24-maint +47215 093156899f75ab2cb06d090dd79894b7641f3e05 legacy-trunk +47216 16bf366483233b08dfbce3b9f99265255597df86 release24-maint +47217 8675a6084240f85571d40e90305c4354a0431344 release24-maint +47218 c5bebcbe45391a3cbb2f8b911a3ee64806219529 legacy-trunk +47219 81304c01463a2e9bd8a3e7ef86a153482a46d034 legacy-trunk +47220 63a319f0733ca0666b6f21a33b400d4fdcd90476 legacy-trunk +47222 01d4b06850676068109e2cd9ae9196e53761e130 release24-maint +47223 75bdb1eb0766595da316923bf1cb5b68dd8e39d8 legacy-trunk +47224 9c922e31b6a5c89104c46b20f070d693f32f3bcb legacy-trunk +47234 c82375d560b3fe8a28a277f919e6016294da4dce legacy-trunk +47236 41fc203a3e91f1615c14a6fb38083d018f4748ad legacy-trunk +47237 18989d09d584e6c3e84d405c66411aae8dfbef13 legacy-trunk +47241 6d9e22c330e4b7640300469ff39c59f63ad450e5 legacy-trunk +47242 0c4e5a0c1914f7b22dfb0b0e3cfdf8568573a336 release24-maint +47244 d9e78319a192938126714e6d7b37d032cb44d04f legacy-trunk +47245 755044713e97ca243ba6dabed6e7a8f9df5e1723 release24-maint +47248 b9155bb26b281e8e3311d36c7adf40e4acba1fa1 bcannon-sandboxing +47249 b0bd0bce9406eda4b10327498d954fbb6b13d32f bcannon-sandboxing +47251 9e821435a612d1e972b3596e248debea93699b5a legacy-trunk +47253 500ae952150b7668e30076549eed04049c0c338e legacy-trunk +47254 87e5b010b3b09d5b5b9c54f74e39088db3f041ce hoxworth-stdlib_logging-soc +47255 71eadc35f16372611669a8f64f9963d5420add4a hoxworth-stdlib_logging-soc +47257 41561b0014c8b6815648e5042081fa68d6aee83b legacy-trunk +47258 40f058673170b8a6a8adf03b6ae5c07cf1aa70ab legacy-trunk +47259 b851afcc1649656703a72d0efd5c2f9fa669bfca legacy-trunk +47260 e3cff61b777961af46f42e3c17eff848cce084e1 legacy-trunk +47261 4dd1a9383e477fc672c9544330125ac748057de1 legacy-trunk +47262 d8ce9bc405e41b69546a144d717cd5aa090ee5d0 legacy-trunk +47263 68c9e8a553683b2c2348ccf2799848f8fdb30d66 legacy-trunk +47264 2073f32cf71fc7ea44856eb5278d709cee04a93b legacy-trunk +47265 697d05480053d6fdefe645e089fcc146db1ca810 legacy-trunk +47267 f4e33b12bb57b100b34c2f9269052f432095104a legacy-trunk +47268 34a66e2f89598025ad1c73a49a4ab83d1ba5d573 legacy-trunk +47269 f68e51a673df73f2b1f4749e746cf39bc099f262 legacy-trunk +47271 34cb9a6ce12d87f6ae0316661075c88b09266110 legacy-trunk +47272 374c229d90e8f366e5955984c45615911e96765f legacy-trunk +47273 5a4ab382058a5f10f34ff2520a60543a04751460 legacy-trunk +47274 eebc95f958e48f377dfd995ce63cbaa4a067555e legacy-trunk +47275 238e0b2037fc248aa7e63de6edae415dc46632a2 legacy-trunk +47276 344251cd8d764409cc03c5967fb15f78c27d5426 legacy-trunk +47277 3fa790b0aa6815c1e1dae8f230ac85dabe8199d8 legacy-trunk +47278 f93dbfcc663b33073c82bedbfc3e585c1d40e7e1 legacy-trunk +47279 58c88a7c93263c48bbeb1eed3a2203c20500bc6b legacy-trunk +47280 8fefa99e87c0d3856448fc7673d27de8f8d106fd legacy-trunk +47284 ed43243c88605efc8e09ad44afc1a27f65664bf4 bcannon-sandboxing +47285 45247b93a5d9a1019207a1de22290ed65e060c16 bcannon-sandboxing +47287 b3c0e0759ac0980446092e45e7784d3f3b3adcad legacy-trunk +47289 da5983614fac22819caec095bfe238f01f637e58 legacy-trunk +50477 108dc2f1e7da32cf1a1c7e7ebf5ddfc4ea5e1c65 bcannon-sandboxing +50478 bb305026324422ae7ac45db3fd09e422be9e1955 bcannon-sandboxing +50479 b8a8efc00b1e25e2f4ad9d7cdc465a13ee681a04 bcannon-sandboxing +50480 903f9867654a17a39474ceae329316675d414438 bcannon-sandboxing +50486 35afe7c4677206cd35ba37a208757483e14e2388 bcannon-sandboxing +50487 b42812c774d0c949b0ba77cf5c3f6180701382ea bcannon-sandboxing +50489 066aa42ce5f240978c1656f5ecb606695eb82a05 legacy-trunk +50490 abb2c76a5e050cf8d06c26073cf2265b2f042bc2 legacy-trunk +50491 1c5bdbc7580ca18ce6992b18b72b462602b77539 legacy-trunk +50493 9f70f6ba7b69cbe6badd11fd290732493756aaf2 legacy-trunk +50494 bbc78f021007c0f04218d9ca26c0ba79bf0680b5 tim-current_frames +50495 64ccd745ea920be1b993891e49637d1f351c4494 legacy-trunk +50497 95f9e01845556f96128161da4eaef61b3bf56a2b legacy-trunk +50498 3f5561c5d95955b139cc64ee272fe3f09e395335 tim-current_frames +50500 ca3d9a67126bf8d914a7661b7da2001116d0d920 legacy-trunk +50501 8cc9784130a0e83d06277e597af0a64860e796ef legacy-trunk +50503 c02fa187e0f49cb2dca7a9c448db53618a66e691 legacy-trunk +50504 c67b23397f30649afe754e57307c8daf7876c562 legacy-trunk +50506 0fe08aedbd8c4fcbdfb60a3c23524680c12459c1 legacy-trunk +50509 c547645ab7364c2947566adaeb97b2303db61f77 legacy-trunk +50510 51428c378cc3e26f1fb2dc73fcac84c325a4cc6c legacy-trunk +50511 7e43d02ee21a61edf6ce374e45cb94ff714448d2 legacy-trunk +50512 c1f4bf8ff748c01f6c238573058e9243976473a8 legacy-trunk +50513 35c4fda47dfbd8f73085f121b39400b59141efbe legacy-trunk +50514 02598c57ca09cc0e8ea9240a235b3df085f8799a legacy-trunk +50516 f373646795018255899fbadb77e80665b09c701f legacy-trunk +50517 ae5645c76d5ea33ecb8ae5813a617e315efb1ffd legacy-trunk +50526 b978afe7cab66aecffda7c987374ecec0f6724b4 legacy-trunk +50527 8addc913171e88348c3f49779124bebf46e10a7c hoxworth-stdlib_logging-soc +50528 f2ac31fc369e62fe77fb5b5c8924710efb42c0b6 legacy-trunk +50537 3b38ab9c4b03695a3315851c9fbc8fc7250c604e legacy-trunk +50540 c84997e1ecc76925489bd301dce630d07cec3bec bcannon-sandboxing +50541 b6fd499e4343fb77790cfe4b73527f1338b2f204 legacy-trunk +50542 c361915df2913c61af790a0617f2a0e4417ced47 legacy-trunk +50548 fcbf46211903a4f2a0d76408687ebe1a8e4f8068 bcannon-sandboxing +50549 e40244f5feb94d0154d3e03b03b879c3bcc110e6 bcannon-sandboxing +50551 fa6ca3f5f226e580ebbdd69e11aff99b85a0ebc6 bcannon-sandboxing +50553 1ca015be70ae22f85aed70f8c9ed68f1e27b9ed4 legacy-trunk +50558 2d57e4b08ce68cf7b18b36d8f516b7a5b8dfd7a5 hoxworth-stdlib_logging-soc +50559 b286536220938302cce16eb52c0fc60cd07b4b54 bcannon-sandboxing +50560 e31edee5bc3f54e342662029789bc4e5ac64174d bcannon-sandboxing +50564 216a97a2ed36f259daeaf2f9115920324f12a747 bcannon-sandboxing +50565 daee8f8c035f96ae19d0830e72b12a1023a4209c bcannon-sandboxing +50566 e3f6066ce75f582d94d228079a0b7533771ac37c bcannon-sandboxing +50567 52a8738f5ab4d1e6800d33de0127cd6f626e4895 legacy-trunk +50568 03b6fe57cd6df5bb34ca19f4b760b943186cc806 legacy-trunk +50569 00f975ead344afb2cad14a2ce59519d98b1c6c5c legacy-trunk +50575 d6463e8ef9c47d3273d3e9055daad116939b0d0e legacy-trunk +50576 f50b9da5e361953ad40b3c243a0a6f4d7480f98c legacy-trunk +50579 ae0c328ac5bf91bf8e68c5d94121edd86bc7f335 legacy-trunk +50582 214b28d7a999334d041ac707f0fde9963a5806e5 legacy-trunk +50583 655229923d42f9f33b3c382104970ec7fbccd83b legacy-trunk +50585 c7dd6696ec8cb170a17c7ae2c702d1bae85af5dc bcannon-sandboxing +50586 6f69afb785d0bf9c5a0007d574cdd8914ae0528f bcannon-sandboxing +50594 e6f16b7a584f2366d11a78c7f0f7a53064beca29 bcannon-sandboxing +50595 933be3e0ac6cb056ea64a5012235bcb9f05f62f2 bcannon-sandboxing +50596 717a7887fd7a76d714b8c12d6ab908dc1b77dbcb bcannon-sandboxing +50597 7182c2775c1e4542cd7d426205c49d65b3d80bc5 legacy-trunk +50598 b1bb179a8ab057dbc2d745dc9066806213b069a2 legacy-trunk +50599 476cd83777f2ba72edc7efeca2556d6b8dd853a0 legacy-trunk +50600 2c3ec720aa7beb0da4002b847cc5ed7dc782566c legacy-trunk +50601 b095e8388b2e64525de2835c722ebbbd2c61595f legacy-trunk +50604 36c5d085b869207403cf41e61b7a22d4b71ec7d9 legacy-trunk +50607 c48b3a68f6962a695b29bd162b242899f63a8d7a legacy-trunk +50610 b562fd79500d1d370f697cde52de4097a6b64e8e hoxworth-stdlib_logging-soc +50611 2f30515cf66b96e91baa1c7b4699fc41434ef138 bcannon-sandboxing +50617 892b7ac26d3bb59008425cf36ea823876522219c legacy-trunk +50619 e4b6a4f2ce1437da614b9d21edff0589db5aaae1 legacy-trunk +50620 cd459c920f990c943f61061e2b2f301348a41d0a legacy-trunk +50621 a7768fef59b2cd1ebd2bc798b1397d7c64ab148e bcannon-sandboxing +50622 fc69fa6e54c86dc2e14d840518f31235753b978b legacy-trunk +50627 18b9796b7ba58c74eaa322e59f893e30321f7aa6 bcannon-sandboxing +50629 c870ee066c12548c8e97a38118dd7613dec8aef5 legacy-trunk +50630 f71f2843631fecfb3ba0954312326e3ba085879f legacy-trunk +50631 2a84b46ad64ca69fa4edcf5fe0e5ae3012b6f554 legacy-trunk +50632 16f3c02ede02531b1db780d4eefca845bf28cbd5 legacy-trunk +50633 0de58bce47ef32a30f1ee7c194aec2aaf03a5a90 legacy-trunk +50636 7dfc776dd81bcef68300376385299f481f24fcb9 legacy-trunk +50638 9f2c3de74856ddd13bfae6880b0571c04415c684 legacy-trunk +50640 85ffc0bfcc9829eaf06ffc40bf7d69ab13ddeafc legacy-trunk +50643 b63256349e7790051ac717744a2bf97a0ebf935e legacy-trunk +50647 7f40ef8717311146f704937b5eb539d662e725fb legacy-trunk +50655 6b1ed7b7048e5e8b9180b919978ed58472745ec7 legacy-trunk +50656 bf474f9d5225e7e7ea60c419e449a817ae1812e0 bcannon-sandboxing +50657 5ecf22a4e5dfc20445d347da0540d678c4cd5c3c hoxworth-stdlib_logging-soc +50660 0529a585064c4d74d465bb1dacdb6870a9308adc bcannon-sandboxing +50661 14671a80abef0907426c98de6cc762db6d0e55f3 bcannon-sandboxing +50664 2a76ec2f0b79d0d54a19c9ab0366523a4975da2c legacy-trunk +50665 0631641fdeff4ee450c2ff64f5113c3cabc68053 release24-maint +50667 00715353f82c5677f7f1302057c01796db68690c legacy-trunk +50671 c136ff4d426dfbcb7327d4e356096293d078dc52 legacy-trunk +50672 910a948e0290f1817178a48f887c34aed4bf5aae release24-maint +50673 756d57acda85bcba28f230e45d7148f8cfcceb99 legacy-trunk +50674 bda93b45ca413eb3a511d53bceea1dee5ce37b77 legacy-trunk +50675 3ddb59483f10335f165169c68a282af9c0ac6140 legacy-trunk +50676 aedb85ee4fec2eea70a992c565d72255892aaba1 legacy-trunk +50677 50b0b54fb17d7e3fbe5abc02d157daa45b230bf0 legacy-trunk +50678 775f85b98e65983963934a28d45d9fb02b418510 legacy-trunk +50679 90d5d1fea4f2c11567839aae7f5f9b72ff23d991 legacy-trunk +50680 35d50fbe0b889980ffb365de8ea03cf94503acd8 legacy-trunk +50681 934ba5be8f3f0c27122ad173523c7022a95c0667 legacy-trunk +50683 a55197bd7200de11323dadb8c95f16848f77b54a legacy-trunk +50684 6064cb301209c8ec737e7fb51b7e8bd56d6fd7bc legacy-trunk +50685 aa85791f59913f1a106d7a982a12ac3c27176b3a legacy-trunk +50686 d2bfcc1aac3d4fae9e2937b8708f27e3696d00cd legacy-trunk +50687 bb1707265de7e26824bb5c0089e270b845117481 legacy-trunk +50688 00894152180502dca64c744d5e0531ffa21595f1 legacy-trunk +50689 654a5b262717e27f29c2494f1d01cec6064aa736 legacy-trunk +50690 628b8510fefbb9789dd72f08b174600dd71f56ff legacy-trunk +50692 fda3cbd74c718efce6f7fad465ab117a51e5ae23 legacy-trunk +50693 ff539707a1ed347bbd97b095427af737ce26c935 legacy-trunk +50694 e7d0a75e314553f6051f5f12a174fed8058696b5 hoxworth-stdlib_logging-soc +50695 244fb524ddd41b544bf576bbf83c95e1d238f5cd legacy-trunk +50696 979e390e2bb4c565d068d3fce8169bf242107ee9 legacy-trunk +50697 9701633818b4bb2026bf4d72af8b3900b4183d11 legacy-trunk +50704 95fa8fc8a065c3704e838f6948372854836d4b2a legacy-trunk +50706 acff1c34cca3c35f710675d3af9b71d6cf23bb61 legacy-trunk +50708 85b23965ec4c0691b3a251538cf9952387560bd5 legacy-trunk +50710 08f35abecf980fda54e5cd9c6bac22bd545d0d07 bcannon-sandboxing +50713 c5759b5a57f0c690929a9970ab45fbf04f4f6feb legacy-trunk +50715 1d7da8608031bfd2f0c74a2d09b6ec8b9eb58099 legacy-trunk +50716 5ff5a583b12e9c64d50fbc513e2ffafe94677086 hoxworth-stdlib_logging-soc +50717 84e9166b7108f10d622452360bafe9a1e06003b2 bcannon-sandboxing +50718 3c5db2b3f893ada27dfac5d0c5ff04b09a6a2bcb bcannon-sandboxing +50719 5c903f6507199e3d62eb280f7056050a0a880fb5 legacy-trunk +50720 8fe6786f51445ba4b46071db61c60b4a13dc8160 legacy-trunk +50721 5ab76fbf23f3cf217bffde7a5a15c11ed7ae2319 legacy-trunk +50723 2a1fefb18764ca32d1f68b15c51d0e80de89e944 bcannon-sandboxing +50725 140531b124f85df57292741e25046bc95885d7ac bcannon-sandboxing +50730 be1734cc6dc02c574896a16026b590cb48ac2177 bcannon-sandboxing +50731 a32f20ecc024b7bcb9756c740c5a1ad55bc6ba4f legacy-trunk +50737 59769b534789e753a54206f05e918f21f712d143 bcannon-sandboxing +50738 eb440ec74a13ebf553132c7604fdaa7c25c425af bcannon-sandboxing +50739 06070a12a6b02b570ddf7978f7f5afe4217819a7 legacy-trunk +50740 3572faa9a29e078c3217f69f1cb840b928a47c1c legacy-trunk +50741 7f38173251bbc6b005ea0ae5357c0718fb71ba16 legacy-trunk +50742 af4a3a0d47ccfe6f6b747345c478c089b6f1e705 legacy-trunk +50743 f2031f15d99d8128adf1cb3a70bab71b97c0dea3 legacy-trunk +50745 baa54337c3d9e95fbad359615712d4a41bfa5278 legacy-trunk +50746 7c09b66f04bd1491b0367c9771a9421997fd7d4d legacy-trunk +50754 417cdede06880f1d549833d6bc478122d119b8e9 legacy-trunk +50759 d0a95654f80321ce23539c9ad2ba8c27f365cbb6 legacy-trunk +50771 079e42e0b826a890cf0f0354f4bb01bbe276c7da legacy-trunk +50772 f1a2777e5c8b3d6854c41c41b86f8a635441e812 bcannon-sandboxing +50773 12e973bdfeee298f9124b0501dbebfb877f6f1da legacy-trunk +50774 ee6ab3317581bf7845d84b5a6e977dbf89910508 legacy-trunk +50775 832fce50da9362ea44443fec9e6e2495e6a227e3 legacy-trunk +50776 7132f98ef07b32d9944933f2dbe7f8e7480ccc19 legacy-trunk +50777 75a7106662a3fd62729e3d222388df53262201c9 legacy-trunk +50778 1805e684dc925729754257f60beb11efd7e8e903 legacy-trunk +50779 bc5d831f1dda509cbf56bffec5e73670aaa9a827 legacy-trunk +50780 cdbb44c3de8715a10c0dcda8f08a9bbec69f3e85 legacy-trunk +50781 0e0a97ced8e91f92e23a8eaeddd2e6e47983a3ed legacy-trunk +50782 e9773fc27e9b36a595de513f75be3fdadf237870 legacy-trunk +50783 957bf311924784062285f2fbf9bf46d86ec8fce1 legacy-trunk +50784 9d18d968a58b331fe7f235e9616c012843963a7d legacy-trunk +50785 e3da5f87fe641d8b392eae751fca0ac3ff69f5df legacy-trunk +50786 54bb720632c42fd185ade8999e8c0e28823e6abb legacy-trunk +50787 0a4ad83fd65492253c287349815d60be8bdb60b0 legacy-trunk +50788 3ac8509437dfdbc24500968ca8d3d8149cdd7685 release24-maint +50789 b58f7952e38ae891d2a10354f9610339f4a317a3 legacy-trunk +50790 78643be3cf40bb3a9f4d4393572ee02232c63e9e release24-maint +50791 a3fda843234e48d1ca6c82b25e63ca4a44a993ca legacy-trunk +50792 f8819bd4e43797705dace0117e22c562ab44999b release24-maint +50793 53418cbad7fd4c362b9e748fc9d565b1348c1c3d release24-maint +50794 a4c4b7ea79c0a74f36913199b746783b1e1178db legacy-trunk +50795 832d5a34130fa5364570740de7510690a1bc3a5b legacy-trunk +50796 a4fc4e752634682527b7f0d1fee25bc328bd5b04 legacy-trunk +50797 63aea688b5bb26dfccdc40e565728db2aeec738d legacy-trunk +50798 1b1fd18b1ada5383c25e5624f861bf053d586128 release24-maint +50800 02fa1015cbcc4c934c840a3f9fd2fe62001e972c legacy-trunk +50802 caaf37e45d47d47ec4783586b9606e940e8d0188 legacy-trunk +50803 89e090fef9853021cab6996b7d8464be18db4131 legacy-trunk +50804 efde5ee88c9f7779f01ce5b3fc6328f17342f937 legacy-trunk +50805 0c00e2f509e0079347a3da5d3d8c514fbe718734 legacy-trunk +50806 7ce7ed2ecd9cad34f2677c84317745ccc2e2b48e hoxworth-stdlib_logging-soc +50807 d71d466974e587bb363957a099cfaceff87871f7 hoxworth-stdlib_logging-soc +50808 eaedccc0283d7910e49ff2e799afe9338251fb20 legacy-trunk +50809 07cee01a4fccc387f0fc1d928fa50fa81ee7ce11 legacy-trunk +50810 a5f8d1d255a979bc70f4f68c07439b6c3ed2d389 legacy-trunk +50811 99aa84224f1819d552726aa911ea85709454f47d legacy-trunk +50815 63a44c91a4d5ebce325fc0f822c2e8f82df12e27 legacy-trunk +50816 62282fdaac5a0a135659502bf3c34b85f74416f8 legacy-trunk +50817 790a782d983cc74464185402230bc8eb2179db97 legacy-trunk +50819 6621edfd296ab8de170f160988170c6707f0227a legacy-trunk +50822 2d4c9accb8fcc13c4286f1809ff207ee1c3e9226 release23-maint +50825 837f56950cea8b742a463d7469860163492feb2f legacy-trunk +50826 ff8e7c46e429801f056d11f0e314ac7e66c6f968 legacy-trunk +50827 95376752e67cf93bb13f54cffb382a9499dc17df bcannon-sandboxing +50828 903fdc38d5645e4c2e0189200f5f054cd9617a72 legacy-trunk +50829 f90f328627561c5d671a84ae38d122619d6af324 legacy-trunk +50830 b9151c8c79e8f53e9d339d05041067536cf02d2d legacy-trunk +50831 5d1162e6bc37f48d5f28f9baae4aef66e93c323a legacy-trunk +50832 40e8caef840ef249b5670ce081bb189a4bda6a6f legacy-trunk +50833 1490529e74ce3bab9283b85533bd33c96cc3a06d legacy-trunk +50834 b55bf2adfae5e9143abb8c99dc43df833c868ec4 legacy-trunk +50836 5f3312054cede61e835e484133e3e795544b07a8 release23-maint +50839 cfbf57572457dc035d08b14a475bc0194a231e08 legacy-trunk +50840 6b200b8c63d33266c3cb3fbc74eb99e8d09f8da1 legacy-trunk +50841 6d184fb8c535098d99a153afea66ff297f947b59 legacy-trunk +50842 7da6f81ad4d53e521a96cf575948964c4b22a736 legacy-trunk +50843 17d5671fffccc3ca98d8c6ac71a1c0e32f04c406 legacy-trunk +50844 9c6dc6d09b073623e31f881a35f1ae1c810cfa46 legacy-trunk +50845 9f3f1edd9c350638d19d03d9bf55453127563e6b legacy-trunk +50846 267065076f059def042015e85afd49e5f50587ef legacy-trunk +50847 271b2bb2fc923cf0df033ab5a510a15da6b095c8 legacy-trunk +50848 f292a2b14baf4812c343a79d8961cbab96524414 legacy-trunk +50849 acf600471369f43f4b3f72b34e48b4877fe69fc1 release24-maint +50850 f08c5bbb80421cd34be7b1b80fb20ef6bfcb9c38 legacy-trunk +50851 b81642e52287f36bf6a1e0f9cab1b1f52c9d49c7 legacy-trunk +50852 1e00ef07beb271984823b8d2f361804ace5d39c0 legacy-trunk +50853 185f4283a3b9cd4b670d9b0abdf1f2bbcc4162e1 hoxworth-stdlib_logging-soc +50854 29c2fee6c9848e8a27789d71a70bbd5348d1e9e2 legacy-trunk +50855 40b446ed3f1262d962e23e1afc3c19bbb00ee340 legacy-trunk +50856 5ee6d3da0e6456487d10683bf7569711258004c7 legacy-trunk +50857 bcefbc5e671afd7a168425caead32d08cfa7ede6 legacy-trunk +50858 0b0cc7a49682cc0af81ed4e403fe23d6bd1db571 legacy-trunk +50859 d765775ed79f8563a19955cf8e5b05aa8957ef85 legacy-trunk +50860 8ca3068ea343a24ae73aab0f41410a5108cf430e legacy-trunk +50861 025c27b812f68c424a66ebb68b181ddb429870ed legacy-trunk +50862 b011becf8c822c2bb5654c991d7a76d2001ed218 legacy-trunk +50863 c18a6694a066c7e95d15c67aac5b4f6669d07ec8 legacy-trunk +50864 00ace6e408b0371a0f2258815704c60ff924c252 legacy-trunk +50865 a110a4462189a20002b8d8d4f0742e654af4c70a legacy-trunk +50866 61c0fe48376a12d8a33c5b6435e1fc5c1954bb28 legacy-trunk +50867 60522dfe625990b045a40a411007d989ce03058f legacy-trunk +50868 72a52e6fc6f10e53f50b6f121f20642530448137 legacy-trunk +50869 879bd7510fea00d212697bae22c3975c86a8bf01 legacy-trunk +50870 6b3d4a0f2ac591578074d5fd3784eb42e6877944 legacy-trunk +50871 c4a7546a509f174c388de43456c3ebc06d0e86e2 release24-maint +50872 ce4dff2a9523800cb6507142eb099cfa64862cd1 legacy-trunk +50873 eea674211d32bc1d563e02d2efdd993e396274b1 legacy-trunk +50874 0d0d82e40b927e53dab863ef604db2a5c5515d89 legacy-trunk +50875 c6d4c0af2a122269a1910d4ab1a533ab0ffbd6d1 legacy-trunk +50876 ac01b6359b621588cd8fb3c4f731d3ad696a8208 legacy-trunk +50877 b0cdcbcc5f4578db64e4c7103804a6e4db8511fe p3yk +50878 a7530036f055cbd842180391966fa16a62f69b09 legacy-trunk +50879 e19da9b002da31c62f1883ada12d6a453ed96ee3 legacy-trunk +50880 6eb3757c2c991d3689eb58747b33a6821def93f2 legacy-trunk +50881 28cdd43e056902cffb7c0c02ec6ce62cc4627ee5 legacy-trunk +50882 078172eeaae53d61412307408484ba981a2bd2e3 legacy-trunk +50883 0b3fd04cdfb4885c73695d4671eaaaa26630dc7a legacy-trunk +50884 112f2188213b24cb2377a0de2e0cafdfe52ccbfe legacy-trunk +50885 40cebafae56ff603f81cdd9e0e2e252a1f74c6b7 legacy-trunk +50886 35043fba7aed801cdda53a8d270b728f38032ff5 release24-maint +50887 cd8f20d400c1c65a330d73e4cf497ba4d60bd2ba legacy-trunk +50888 ef1e7f3d9f9d82ec9cddb759dd038faad37b2aee legacy-trunk +50889 61c8b4104aefaea5211f6f9cf0c8541e87ec4ea9 legacy-trunk +50890 75431b0bfb0e7213b0b34b0960fee093a634177f release24-maint +50891 b9f353c2c023e5b986332d7868ed6acc320509af bcannon-sandboxing +50892 697ae362ed024152a108783c63967ea00117d714 bcannon-sandboxing +50893 4276d0b469afff24f2b7e27101e06e8b5f72bdbc release24-maint +50894 277d7af55c4945a780ab384d76ef23abe7453f79 release24-maint +50895 4a6ade9ce780db90557a36a1cd9c05296e54e435 legacy-trunk +50896 55865d7bc6ea491445acaa5311be199a58f1efc7 legacy-trunk +50897 bf1984c13e2f798644649dfcc080e81801a0d613 legacy-trunk +50898 6dacdc1a0054fa9369c73a958f5912a2ebc8669b legacy-trunk +50899 0e9a269a21890b1005e8b8090dc676f1760a128d legacy-trunk +50900 d1664a501da5cbde0e00107e8ffc9961e8abda36 legacy-trunk +50901 0de9d71444f6296eb58400716160a1463a3e5d76 legacy-trunk +50902 a9b2fd2d4c9617ca54340973e922461a663e4878 legacy-trunk +50903 c834cb95637acdb17d23dd16d6aac32da6a0d54e legacy-trunk +50904 c3bb4b23eb9b3fbaca262c9f81ec09fcaf69208e legacy-trunk +50905 406c1efe7beed3469f691e69b13cc9bc33db7055 legacy-trunk +50907 04df0a9721b2c74cbf301425c621eb953f4232f7 bcannon-sandboxing +50908 1b597c80157222c4329108d4c7348ff474044b9f bcannon-sandboxing +50909 9fdc6841c3eb69c72ea17fb34a01c543f23fa01a bcannon-sandboxing +50910 308ba643173a004f3fbcb9da4a56bb232837843a bcannon-sandboxing +50911 ec516baf8a30c5d59c25a21e2d82b644a3965463 release24-maint +50912 f3d540751ade07dd98cab10863ecd2fdab711715 legacy-trunk +50913 c4ac6ea497a105ed35443e4e6a24276c69d93b96 legacy-trunk +50914 87c9e331d5c8d6112c813de81a3df64abd85f267 bcannon-sandboxing +50915 6b96d8c923bec5b15ea4850b133729b815d4bf84 legacy-trunk +50916 3f4485b20e799e8cae27a0f7aa82cc27509488a4 legacy-trunk +50917 5e85eee335828d835d8a8049547953bedd8e0c81 legacy-trunk +50918 12cfa1bcf843d74bcbe13e8425271e3f4b3fd11f legacy-trunk +50919 8b9ccd5d931e0f2437b5af34347ee040c6b46198 bcannon-sandboxing +50920 925ab478299424970973e296fd2695439d9e2b24 bcannon-sandboxing +50922 a54ae2583b70100ca208fe1135e6b7837e500bea legacy-trunk +50923 e795e05d6d565c62b932a37c02b67285f289c009 release24-maint +50924 6c8bc7cd72a6c9fc7f481e03c03fee0a61e9a23d legacy-trunk +50925 fb6bccffbe310a4b088260fdc32dc470cc7babd9 legacy-trunk +50926 cdb4787226af3b55310ae805a949cf318a305115 legacy-trunk +50927 d453440b33c6e51733f1d3fb2bbaa00fa556a943 legacy-trunk +50928 1fad4f3e36ba4fb04439d469cf1b5418a71e7cec legacy-trunk +50929 ab3495df4ccecba6e1d628fd7a8c73fa4070e06e release24-maint +50930 bd26a1953c05be2eafd3a6de56d68380794baf85 legacy-trunk +50931 a995cff843b340e1f5ab8c977d224fafc0cc8b13 legacy-trunk +50932 3fed7fb6bc9644939cd7ef3c0172616a4a50e245 legacy-trunk +50933 5f21543c33dc4eca7ae3ea2531e746fbb091fd96 legacy-trunk +50934 2f3d871bf6ef22f39a257c666934b873e45cdcc8 legacy-trunk +50935 6ff72ad93ad2ba617c5151f14e1e184ca5b4cb9c legacy-trunk +50936 1c94f66237779b56baa971e171ffd5a0ebbd1288 legacy-trunk +50937 6a8995c2e8bc991d18cacc34060221f243860b1f legacy-trunk +50938 0691d901d89cbf3bac0d53ba5871faf7d2486d22 legacy-trunk +50939 0aba6b1f5a01c3bdf5df1da12b43bb5de177b3c0 legacy-trunk +50940 1a222f110aaaf99dd12182588564e11e11525913 legacy-trunk +50941 cb1e432b4919f1064406a68c8ef1608358bd6524 legacy-trunk +50942 4dd52ba52de83ee13c33ee774ea12fd476559a65 legacy-trunk +50943 3a2d3eda3e16e5d4d96d8fa5d557f4107bcbcf01 legacy-trunk +50944 34983c0b26bc2926629e212674c88f261f84107d legacy-trunk +50945 8069d73acbdf8b5e9d3b87c6ae921ab5f8b0b9d7 legacy-trunk +50947 35583f55c5a8a55a067a1be1cfb40ef1ae4d264f legacy-trunk +50948 7281429a01d67d4bb70986f2e577195d6bc432f4 legacy-trunk +50949 34c20d3f251064073dfd6eb3d290329b7814a012 legacy-trunk +50950 88db602f23a6d1e5d45a8412403c0ae9c5579594 legacy-trunk +50951 45a354f74d80d65409a0df2a5a2a592b6bdb446d release24-maint +50952 4db9d9533b163d179c0999c0b4be67b5791f6b53 legacy-trunk +50953 d8888c8b872b13a7374d463a3668870ddccfaf15 legacy-trunk +50954 6a5f79a4e68733e136f1256c0c1b911725f8ff56 legacy-trunk +50955 5ad6e2a72b2ac2a142397f42359c1e5fc9a81190 legacy-trunk +50957 6d1f673f05907c683b71946f70c1aa0e52474458 legacy-trunk +50958 805512cf14efca65ed8cbbe0aa0c92fb13f1f9e4 legacy-trunk +50959 4407e5193a4b0c917285f22fcc0847ec8e06c4c4 legacy-trunk +50960 4e3ad65f55e8ee27cea0121bbda964ecad2b3c45 legacy-trunk +50961 efbaec9674dfd1f998d065634322c7f1aae89e1a legacy-trunk +50962 dd51e56b6cb0a5d29e897bbc25a00e31649d49de legacy-trunk +50963 1523c38cd505ff21922b6f8b47de1d3d700ff269 legacy-trunk +50964 388b7d90bb8963e97e4bdceb1e6d1874fb2d883d legacy-trunk +50965 f69d91a7cf714894edd046ee57e314206ca3a785 legacy-trunk +50966 77f3653bfc1483f740b120c779a8e3fe3adb61b8 legacy-trunk +50967 aee9f0d5fd2b1672453adee9de520b63c73b6cc8 legacy-trunk +50968 b745b3fd66a649a5fa540bdf47971c26af0a959e legacy-trunk +50969 7dc5f3ede4cdc62bfefb1d70bd0baebcd9758364 legacy-trunk +50970 041eb6231cdc2416d9b95d065a82ecb1a1475552 legacy-trunk +50971 1b4e5eb21049fb5e59a3b24468bc8dc897020a99 legacy-trunk +50973 cebee1f852221911adb0bb0956b19758d4fac62c legacy-trunk +50974 1eb9215641a8844ea642c14778cd30305d3e32b9 legacy-trunk +50975 216877b86bc2865f75af1a3953ec988cc5229585 release24-maint +50977 9377c6604542ce6eabf5d0e62cd4435de6d1ec9e legacy-trunk +50978 361ef7ceef28d9f63eb3e5c7e557583f0a13543d legacy-trunk +50979 bde58a78fc712e2a9725d474581c14c9b30a1e37 legacy-trunk +50980 d93a04340e6bba5747ef0b2ff0998051e6fc91e3 release24-maint +50981 65e7b4223444f36c867d97012c40e94d4e32f131 release24-maint +50982 9b95809820355b6f1e487471bce1eb904d74070a legacy-trunk +50983 c98a2352983a496d14a98d09930e64e1ff7153fb release24-maint +50984 29c7635d0199ac5be2c979942ee102b09cb246e1 legacy-trunk +50985 7f44d634f377bd689b39dd4fb2afbfe8dfe092c9 legacy-trunk +50986 4aed4367add27ceebfbdd7d853f2b0250c06a992 legacy-trunk +50987 d0e6170704dee85096014b337ed041d32cb31aaf legacy-trunk +50988 c87a3951dfc50aa0718bfd8e20b09c6691f1d509 legacy-trunk +50989 4ed5d4c8e65424f4a811a057aa57701f2d9ee0a3 legacy-trunk +50990 395d15e8374a70a06a46dc4783280d33c0853e2e legacy-trunk +50991 aec6668c58d1e1f8902fe85d52067221d9c9eb52 release24-maint +50992 cf046e22d7dd59c4ca32d247343d68bd101a2fbd legacy-trunk +50993 930bb1eb8dd5d1cac5297415348814bf747d8520 legacy-trunk +50994 3dd4101cb7e9779fff44523c7ba9ada6cc759b8c legacy-trunk +50996 f7f10a8b96ee7d6014f76487dd7e0395ce5037f5 legacy-trunk +50997 7f04793fe135e5e884957a574f45e25a33842991 legacy-trunk +50998 910151524f5eeb0d315113caf5ca010e68aab35a legacy-trunk +50999 66281488e9023a822d697af95a79eec2ed702381 legacy-trunk +51000 b79b68b82a445c3311e25920c875577d8f49d541 legacy-trunk +51001 86e81defc2856e6020810f58ee77427a0de8bd9f legacy-trunk +51002 3b78957c77919984b013bb96db8053585138ac1b legacy-trunk +51003 f3e08915b87b443561b3c33b141a654cd18ca1f3 legacy-trunk +51004 86c3618a49c3f3a592458f5ee9b8473cd1e9985e legacy-trunk +51005 4966b17963b41e7e7e6061e4dee6e45d0caa049a legacy-trunk +51006 3de8a58ae0b9e8e12dee2413ab4b6fdb95ef3d28 legacy-trunk +51007 3938e6efa793d6b3176e65c03873023e4347c823 legacy-trunk +51008 315a66d2247a791d3b0cf40a7325442545081833 legacy-trunk +51009 ff223b95f207e09d33bc508d6e24e4da2fc8803e bcannon-sandboxing +51010 9d7c45d0d1bf7ec369fe783c147b99a2c2ad0297 bcannon-sandboxing +51011 ee2d46ac2f6e7b5b9f16e4777759d9f893a36046 bcannon-sandboxing +51012 1c0c12838e6253edf151188081d312296eb3fef8 bcannon-sandboxing +51013 82b6757ffff476b5614575e62f2e9b4b742591b6 legacy-trunk +51018 91ca6eeaeb4acc564e0faac39ea10b2733b4e5b1 legacy-trunk +51020 d39aee6cdd32cfabd1cbdea2b6177e2f1d6dbb78 legacy-trunk +51021 53d0552a7a8c5071513bb10675e92096ac46a50f legacy-trunk +51022 2915c0729f0a8ce6d318b313956c1f52c4bcb00f bcannon-sandboxing +51023 7e03183eb7a52a1c94b0dc575478fe050d8ad806 legacy-trunk +51025 1567c01cca73f9f684e3bf660fb9a9b366e4a518 legacy-trunk +51026 46377b05e18158915b64785e1a0e796cd6a81d7e bcannon-sandboxing +51027 2f221bdd9f44b8f8c9137c702e6134b59bf4981c legacy-trunk +51028 232d156beb82fc6ad42e289308e0e76aff595c37 legacy-trunk +51029 d20b9a2d8ee730204ba2ada7f14d9dffdeaea391 bcannon-sandboxing +51030 cd82ebfc66afd464f74efe22b83bb2aea85da7a3 bcannon-sandboxing +51031 bd50a42b7df0d0a6edf1251b27382abee27e36e7 legacy-trunk +51032 4f15abb120dc51632385b0ed02101c2112e3cfbe legacy-trunk +51033 7d6b971581805a750bef4f5b459259906db45d00 legacy-trunk +51034 fa2dac3926ffc159da1396d0a808050e4b0e083b legacy-trunk +51035 59762e7962812fa7864ed9421fed52a7ba25ec9c legacy-trunk +51036 12ffed927a3d45d1950adc50b69ffb66045c15d6 legacy-trunk +51037 344364b4920856886936e1ea5f8f4f903ff1d54e legacy-trunk +51038 00350cbe0a9e9487cb6f65805af5d89eb56821c1 legacy-trunk +51039 85fdcdfca85c1cba1b97bec6fe2cff8f25a328c6 legacy-trunk +51040 5f9fa0b863aee80f9923fef5e08e143e467ba28c legacy-trunk +51041 8b93174d501a4cb9b4e0dd801c37a400687850c1 legacy-trunk +51043 1ead41221bd880ec19ad1259b29f3a056a4d7d2b legacy-trunk +51045 ce10e3cc7aebe89f24b7478a508b708c3601179f legacy-trunk +51046 82f56207652f69cab2a9c23065567ec4071ec4d8 legacy-trunk +51049 c0abb18299b442e1160d2f958bce18f66850caa9 legacy-trunk +51065 cdcf2bcad624ea8bac636563dfb8193004740a7a bcannon-sandboxing +51066 c3898a73b38607875137f3f37da9d71bbd72888f legacy-trunk +51079 ec4f35d2a693ce19502f06d6ab4f4c5b5d18fef3 legacy-trunk +51080 b90a8b0395bd43fd193842451d0c49573b4d7166 legacy-trunk +51081 8ef3f8cf90e121a0b40a0e3fb7c3086bc0a91440 legacy-trunk +51082 75bf77367da320b12593989fe91ebecf7ebb24d9 legacy-trunk +51083 8296fb96cc184f64a007fa45f56f80eb7797180d release24-maint +51084 55f8301835326e6cbabff2a8f8777339c0a20157 legacy-trunk +51085 84974c6769031d0f57afce58187f725b7b8440aa legacy-trunk +51087 77cf18b8b1ce13300dc9d1f874c58f04773eb34c legacy-trunk +51104 1004a16b0f091bb783f2841951912b0fbefa7ca4 hoxworth-stdlib_logging-soc +51109 eb23d096d694689519476f6accca8ab6d12023fe legacy-trunk +51110 a9c742d6c888ee33531badbfee9fd4d73171f12c legacy-trunk +51111 0238166f07b7035dc66a240f123b675d6d53ad33 legacy-trunk +51112 40585fb387bbaa8239904a627a3af549de5e86a5 legacy-trunk +51113 465a078d2ca6b7a36d8913f34480326284f7ff32 legacy-trunk +51114 aa0cc755074eb89101c36d5a5004a7c046436a7b legacy-trunk +51115 efa80633309da8745c23dbcc6c76313ba4c49713 legacy-trunk +51116 6567c32ab881550e0e0c1523b2d0bde59d3426ed legacy-trunk +51117 999a4914d53cb41f7ddff340be90ef615c6c33ef release24-maint +51118 ff4b15780396833f5a94de9a4440c74900efe77b legacy-trunk +51119 9cb4565e60cab43211ac45bb0de54ba02d5af8b0 legacy-trunk +51123 fe44dcbe13f2c277babb2a4960eda20e806265e1 legacy-trunk +51126 3bfef3db32b392a4f60b0f1f39cf5b2d5a8b1335 legacy-trunk +51127 40415df5ba9de5eb674c74df7aa3b26a4e48d84a release24-maint +51128 b90fe4ae30083462d79fe286eaf4aa9f3bdab8a0 legacy-trunk +51129 5009de504f924021a4032ed967e8f4fe65e985ba legacy-trunk +51130 214e4a4384f12b12f42aaba4518d07c9523ae989 release24-maint +51131 2e630b2d5b4460ed9a662c8a08d310918904fe15 legacy-trunk +51132 72a3f723efd169720496b7a23534c5ce3f70b397 release24-maint +51133 fc101cc354a79fb650da5b159b287a93b80b1f9c legacy-trunk +51134 b7eab1c18e9d37bc7e383fe182b7d13188e69025 legacy-trunk +51135 5943296a518215d700367b522caff1e0b03e7730 release24-maint +51136 b50268f46fff9a760f305e9174ed84dcb7d8d202 release24-maint +51137 3350474f3433c99d2de0bf4012e0f7e0f6804773 legacy-trunk +51138 f5a7f4dd93e0d875d8a635b42ae765a9d07851de legacy-trunk +51139 997788de8667330ce9f22a16e9079f1c4f03ea83 legacy-trunk +51140 2485ef4c5d49d2be09b6332f6bff52777d361060 legacy-trunk +51141 0bc6cfb6b5fb21ad1568ceb834dfc4c02de4941a release24-maint +51147 9ed560b3513980d4c643cbe537dd5e09d8928859 legacy-trunk +51148 290c582a22d0439823616858f7c95eb9d785c725 legacy-trunk +51149 b67f522d76d78d80029e558c7336e91ff48e9684 legacy-trunk +51150 14c76948953d5c5f7c64d20e31a4a362c971b613 legacy-trunk +51151 2f031648e58784497ee25aa21911b03e6dc2d176 legacy-trunk +51152 d154260f46e8f7d777d9eda4df335245bec0a642 release24-maint +51153 56c0e2f596e76f1d30f33f01bdc362918c0c0a28 legacy-trunk +51154 8dc6be3e11e00a7c76e1eb8553822ae960b8b40e release24-maint +51155 de497c41e9adefc8b6d44cd11ceef05a96361fc7 legacy-trunk +51156 5691624269a5a60676fba5c5f68400c17f2dfadb legacy-trunk +51158 9d089aa58e2f4b5ce4cad9c4f51d391c3c2ab65c legacy-trunk +51159 8022927c17a8464685de52fb64af0b323545b984 release24-maint +51160 5b9692f6629f407ade94c9b7883eaf0c8f0601ef legacy-trunk +51168 6f77518b637db3b8ff9fe091b3ef39b579960863 legacy-trunk +51169 b95b9f4157a82213301218f55d4fdb76350298de legacy-trunk +51170 5c3d49385816d706f7a22d97a50888afb9acebe7 legacy-trunk +51171 199388b46c83a00bed2f18ff6b10ffc0b9642bef legacy-trunk +51172 9a8081cf4a70dab46ba0f106310cc2190cbb9d37 legacy-trunk +51173 0f3ad5b936a8572bfe7c07d8e37538673f228784 legacy-trunk +51178 74d23cd0442104ff975b85e1b74f5e4ea23d6e2b legacy-trunk +51180 7d6b2e04e439540600e98590a2831ad859f28810 legacy-trunk +51181 feee6582011f1776a6e1de895fb32b3ee90d7ca5 legacy-trunk +51182 9222d0daab3c6aedeb01a94751472527f861054b legacy-trunk +51183 156b28f0f2d35ac00e82c63d2a140182c9c7ec76 legacy-trunk +51184 ddea4d37c83ca451c3079cad855d04e589b831e9 legacy-trunk +51185 b8e37e0268f2cac042d92d162016a43c138f4861 legacy-trunk +51186 26a6bedd17e21db1069736de3252566c56de3ccd legacy-trunk +51187 3c2bf79526be89814cd02171040341878bbd3f58 legacy-trunk +51189 d8fa810cfd54dfd8f27eea3bc22a1518d03b01c0 legacy-trunk +51190 9f08516a4d0c9e99d7f4bd4e4792213e22a883a1 legacy-trunk +51191 ead48a822295c83e1f1e8141c79bbeaaac270c5c legacy-trunk +51192 e55f6d722404fa92b2a43c72ff21327d7a4714b2 legacy-trunk +51194 9b3260d83558795d1a1d31db95881b6267eecead legacy-trunk +51195 de9e1a5dca93661a7010e77601187b769d973b98 legacy-trunk +51196 8ed62db1905c4d3e38b75af71b5d913953f177fe legacy-trunk +51197 2aca4f040012ceb08acf05ce9a7dc2b386523739 legacy-trunk +51198 be107b04c2525b6b8112a21ba65412df30000509 legacy-trunk +51199 6aaf55f4d7a3b6d35fd9137053d395baa8424951 legacy-trunk +51202 6ab4c39fd7a383fd9d942fcd8f9b7be88458607d legacy-trunk +51204 864172515ee76a3b45df148f6682e9c39303b8f4 release24-maint +51205 48fd388734636da1ad023be884c344aaa613c342 legacy-trunk +51206 1087df00a6e87b91d66787252cd5a6bde00eac01 legacy-trunk +51207 e778757d3330720145e74fdc5db03e2a95faa005 release24-maint +51208 7790cd0cabd04c9d11d7e856fb365e7cc804eb94 release24-maint +51211 654c380cf8b9f079156e32111d162ad803c89319 p3yk +51212 f69be3c6a2d463649bc5684692882948a06c9456 legacy-trunk +51215 b995e2760da472c3b590d3693b8fd656914734e2 legacy-trunk +51218 e11caad7e029dc90b8a7d3b8694c82d94751d834 legacy-trunk +51219 9f390882a2c3a51e087d1c9158d92087894c6ae0 legacy-trunk +51220 71b0ac80a135e3e2baca3612b231b76e69cec796 legacy-trunk +51221 2179d9f14278173be95dab3de0baec705e7b7b63 legacy-trunk +51222 842bd6134e9d21a013da7f5913c5b6e558812bfc legacy-trunk +51223 a80df53306f0dcff79dc18d196abdb886397dec7 legacy-trunk +51224 6d536d43c1a0654c4664199340eae3b53f01a70d legacy-trunk +51225 81c6b0ed3188ddcc29d21e07cf636df74f216d08 legacy-trunk +51226 27f9b4fee14f7b6808c7af26a04fb2bed9cf671a legacy-trunk +51227 9a1288d8200f8cb3ce220a6f2d79d88aa2d27642 legacy-trunk +51228 ed65765eb679b5033164f0b4cb142ab9a5206306 legacy-trunk +51229 6a8f01660a3b2de4f08bb22c53c632b72be34869 legacy-trunk +51230 8b91ff698f4ff2f3df556be521d1201bd64d8c8c legacy-trunk +51231 deb748f33c1db52eb084f2bae3ec3d1cdc4b8d7f legacy-trunk +51232 ce11c6c1939db684f3067ea644b6d47bc91e45da legacy-trunk +51233 1510866c920eb82e62773b5b08b751c1881c3e53 legacy-trunk +51234 2dbad53de2b12717c0790bc641b0347bbfef1a51 legacy-trunk +51235 68bed5348454023ccebb402f5b3705ce82937a1e legacy-trunk +51236 6cafdc81cfde8698e6b83e682fa24a2698f621f8 legacy-trunk +51238 48f1dbc57845061faa50a5c232ec53ab1652e364 legacy-trunk +51240 ece97cfe60837b1786edf9372f9e2d9c7f2ca10c legacy-trunk +51245 c7ff02c1559fd866cc087aac065849b1cca03fbf legacy-trunk +51246 3be6627323b9d3a05ea70e13d8f6c1a2a22e1deb legacy-trunk +51247 57482176e1011663e3fc50923c44b388dd8bf9b8 legacy-trunk +51248 71baa06767ddc29f7d6911fa9c6e545fea7670b9 legacy-trunk +51250 daedaacf7e110a3cd1a2366890149b732b1c1ccc legacy-trunk +51251 531b364bbc0e0d815cfeec22f09e28163c47d18e legacy-trunk +51252 8158b4e0c7b9b5c3b7d1b990a7349ff87d0d1dfe legacy-trunk +51253 bc74afb8e4ef61d48bd8f19db566fd629b8e7241 legacy-trunk +51254 24d2cc33000cb185f51ef35e3ad4d13c7f089620 legacy-trunk +51255 249a59acb6efcf0204f0969e76f5656d4b3db4c1 legacy-trunk +51256 71231bc48622e36dee360117fc212795d40943ba legacy-trunk +51258 0356dd9cc274396186c5853adbb76e176a47f0c4 legacy-trunk +51259 317605f2cf6f99e1d16d5b09d7fee64ca2254219 legacy-trunk +51260 d5231ec6dac399d330d39b23a2bd5788b1d61fd5 release24-maint +51261 e7701b05fd9e23fd240474df9925f70672064bfc legacy-trunk +51262 df9478be06279a047a1da3a655976e5aad28243f legacy-trunk +51263 8c16cbef79326357020eaee6cdf1f6111b021117 legacy-trunk +51264 ab8539c07b1b3c6e9283b5e8e6791ea1fe6e3bc9 legacy-trunk +51265 c0a58a855ac0e38136a588e75186d9c300134011 legacy-trunk +51266 421826c94104f13aff74c907d15e8cd55f1f3093 legacy-trunk +51274 a6a6dff179356e2981fb552f392e444ec5374141 legacy-trunk +51276 635b09b1f542e291752976e3d97f12ec0bfe66f2 legacy-trunk +51277 a55369e23f0694a5e7933e2000eaa3fb6ce17d63 legacy-trunk +51278 4e5b83ba7c2a6af9ca01bcf8353250cb15e645f8 legacy-trunk +51279 64fb68dca89648b59d016371831ea820320b9636 legacy-trunk +51280 2312e178b34d97988cfd6e5bdd6584d89c83e1b0 legacy-trunk +51281 254a186937a9b499e97182e37c7becb47d793cce legacy-trunk +51282 160b83c71d7a0ac9607b8c9a096366453587ae21 legacy-trunk +51283 a95090281032121a002e76f41a6ba57adb722baf legacy-trunk +51284 14ec9cfd97600e2614666411fc3ad6b7f6560679 legacy-trunk +51285 352ffe77b71dd0e7ca8f667a9e6a2086daa3b060 legacy-trunk +51286 ea1f8a11a72b9a2a000a2544f87c11f7c6e34015 release24-maint +51287 9d64bd748320adb40c7e03bab904fc0854aaf09b legacy-trunk +51288 cd67e111e1b85b7e15eb1be4f59d19473396a1c5 release24-maint +51289 207e487f425dfe41c619909e6ad8df09e155e937 legacy-trunk +51290 e8c46cc99df5edd2b53233a883142f98f5d2ee37 legacy-trunk +51291 799bcf0ccbfd313ff59727b6aa97ce0e6adcbf70 legacy-trunk +51292 149de7256864cf9200d97232b6f23dc9d5d78d91 legacy-trunk +51293 84678f0750b844804708e4f0d74fd21d5dd4a9c9 legacy-trunk +51295 e90e7e768cb3527abf20b4b1187d4861f7741f48 legacy-trunk +51296 e6fc4f99a61be19aab7a3ebc1d92c1bf318eae9d legacy-trunk +51298 4f90c1d530d95c9c9068298d09b21c8a68ce5eb7 legacy-trunk +51300 64b33060ef09d5a470f42670a536713006c9d4cd legacy-trunk +51301 bf5bae1f00ad485e4320e2955843aa108681bb0b bcannon-objcap +51302 be90fa7aacda79cc73ddddfc3aba20989e29375f bcannon-objcap +51303 95f656690a000889cb7444b8ac7c348010f71ae7 legacy-trunk +51304 207e77c1433064b6cce271ea06a6643839966f1d legacy-trunk +51305 9097ecfeb3450c03b5a0a485f3b9e7c6a06720f1 legacy-trunk +51306 6e7b3dd58f987103bc75cf1640097e72e6346a4c legacy-trunk +51307 9133076c0bf971e96bedc2e4e8958df93cb9266e legacy-trunk +51308 2dfe1c624397a4da162669452801a1a68991e908 legacy-trunk +51309 371b9cd3af1560295d03dc57ee44e22c85fa6fa1 legacy-trunk +51310 798becab3903c4ac9ee42909ba7798647919f87d legacy-trunk +51311 24cab228b0396b70025cb9739424d76430343d9d legacy-trunk +51312 b5073b48c925f1a976303623b47e242ef738135a legacy-trunk +51313 da4be0408b6257296a6874dfe5e12b5ff34a173d legacy-trunk +51314 a27bd50eb0fd87b0ce3906bfb4e590627d8fdcb1 legacy-trunk +51315 c8ce39945df5f87579b0b69c233e0dad0d43da6a legacy-trunk +51316 a5d0f9fbcbf4b82425d0250cd0593ef1f79af544 legacy-trunk +51317 d23b667f04da2be1e6c1776deaea2154aa564cc2 legacy-trunk +51318 4bb34eb487367470d4cf26d2e9237aa5e9b9c5ee legacy-trunk +51319 1358404d6dd9ee9452fcc2948fc1a9b7c3acadf3 legacy-trunk +51320 ffe7d3ab35a8370d1630032222c4904277b2968a legacy-trunk +51321 fe80bb102ab6d51e0f94efe05ee45212841a6f8c legacy-trunk +51322 d822185548971ab7f8083332615387903b77af51 legacy-trunk +51324 edd83f162453aa30888a657e432ba6f240fa7959 legacy-trunk +51328 aafe1ad73ed749bffa63fea8bb2c7f5a228f3f47 legacy-trunk +51329 d9660f51b056b74f754beda2d1754458fa73378c legacy-trunk +51330 a6afe0eda711d996b726a548c05793ec55b6e8eb legacy-trunk +51333 2dc64d570e8d7a4498ab850108c85709c276df93 release25-maint +51334 a358af21a54a9bd39f506d7291df343879d17a80 release25-maint +51335 8e88ecbd408bfc9cd0bfd3561d76ddefa4f7ff48 p3yk +51336 8f5b9982beba048b4be56b06b87dbf13df3c6898 p3yk +51337 e4a6429c1214ede911caa55f0d8060058469c03f p3yk +51338 841e0c86e00e423f817092e2ff5cdafa4b810141 p3yk +51339 cb673ed507a794025beb4a37af87def16dd380ac p3yk +51340 b2fe36bac3a1644e25bd5d86a8d14157d5732bae release25-maint +51341 1a689be273297324c3fa3dd5d0b8099fa50ce9e6 release25-maint +51342 edb162100979b87927bdfed158cebb9644e057be legacy-trunk +51343 9bc0bc0ad1bfe6c9096e7b1cc2f478ca9a22c583 p3yk +51344 01034018e8b2f80d8fd5c82988d2382aa3dfb30b p3yk +51345 4abb46dd2b607f9eaa9dad5676eac8937669447d p3yk +51346 1edde2349f78466fbc009c417238673c28287deb p3yk +51347 f68269ed461e5d62098a329517f5898e95560d54 p3yk +51348 67e45704c07ea5a04af0e7b1bda02dd817de1313 p3yk +51349 3022cd5e010044c3bad1d6b8000a0153c63eb4ef p3yk +51350 5b6f82101c405b1756dc802ff2215394bea80f16 p3yk +51351 a8bb1ad7fc6fadc9144f61722c086061018b32d7 p3yk +51352 0a1f87a855b3e615b7c9822aee0c24710dc660d1 p3yk +51353 fa275845866c8a7d5e5e9b0fe723474a5055d9e9 release25-maint +51354 a87320ebd0e668964be8a74539530f86b4017fa6 legacy-trunk +51355 1ff93ba4045088370ddf04d4f23e3f63c99ab364 legacy-trunk +51356 31b9a4b42528ecfa51fa2cd6b50eb60aab8f5c70 legacy-trunk +51357 df87b60567ceb524ab9a2334e690b3dcfe3feb8d legacy-trunk +51358 045e20ff89ebb7093214127c65d73230840b0909 legacy-trunk +51359 89b730b71434f9cea4848abc866cc8e83c8cd4fb legacy-trunk +51360 210c5b5575cb5ca01d1a02c9b694dcbeb6aaac74 legacy-trunk +51362 b5d4f3a73de04f70e75a53df1784b87e9da2e56b legacy-trunk +51363 f3dee625fc483a63dfe5f47d5388382202ccabf1 release24-maint +51364 4c6f77b56452d6a48cf2aecb5903cfd847df6d40 legacy-trunk +51365 ca77de35db620a17507dd7390c3918aa87627c43 release25-maint +51366 7fb56aaf52bbcea55c23a5f7193018852d37936e legacy-trunk +51367 b87fe11fb7e28ae293ef8bda6ef8d7152887e51b legacy-trunk +51368 0ad7e85c8c04e8a67d71567e67c9e7a34938fb7e legacy-trunk +51369 79bbfa1dbd1bb0c6a1fbaff07120b59487211297 release24-maint +51370 1ac14d43ec6441e6cb220b318f2986739808789d release25-maint +51376 c4e7b4070f07547fdb134d5e6cb953b3269ce8ac release25-maint +51377 e7a5b287f27c1a9ee901d5211188456a2685e402 release24-maint +51378 cbb435c5c21c6703f197038e747f514897d9c38a legacy-trunk +51379 de4ef177278bff857f71163d470e1d7f0581be9d legacy-trunk +51388 2551eb5671a41d8a46b6813ff14893a941919898 p3yk +51390 63237fcefd99ee4f675722d5c2710659aa5dd8cb p3yk +51391 cfb38473ca1199d9832b3aebc2354ad6114aaa08 bcannon-objcap +51392 8452d5ee7b03bc2ec0649006608bd146c0945774 bcannon-objcap +51393 4c674a07b23c360ff9b188c81afaffefab5c9eb2 bcannon-objcap +51394 d23b7cb1700b50edabd45d0adef83aaf43621503 p3yk +51395 0b5d8eae3eca061b7ebde62ba3a803d6bf387ce7 p3yk +51396 c557d4474f0f4f07f9b0ec2ae79d582c2d8695e6 p3yk +51397 3ebf5604f6320e5b1ee2a3644295391d1dcdcb6d release25-maint +51398 b88b69f97acc0061aacd3a68b2096db36d5d12ef release25-maint +51399 7cbcb22c8b8b2c8a4b6360a05a2b74934070a5e0 release25-maint +51400 a745a2bd48af0b94b1fcced045f48f00568abe8c legacy-trunk +51401 0af4ffaba03c32b4ca4c04fa9c2e324c7d46ae6d legacy-trunk +51402 87d153ffbb98b5a83b5e68cf220e7bd76f20a523 legacy-trunk +51403 b0e0a5eb909f1979ba1145018dc953b8d31d86b9 legacy-trunk +51404 2c402676994549907cf81c5f22d82a49a3b938b6 legacy-trunk +51405 bbef2ecdee33ebb8190332095f8da947d3c06347 release24-maint +51406 bdee45888b640c9561ed3b8e4ecdc6b03f8d4f22 p3yk +51407 d240ce5696f9fe8f8561a55ff8d13dd28162639a p3yk +51408 12c42ff99437bf72ade6792670bd0b8ebde1872b p3yk +51409 82717b84888e046aab9ce31093f45f05f34354a5 p3yk +51410 0f135affabf2c7af416736c1b12487babed4479e p3yk +51412 599abc31f770ad75a76cf76b977e552cbeaf9f1c p3yk +51413 963496cbf3d3c0f1cce3f0ffde62f45006103a6c p3yk +51416 44622eb58a25b6af061880fcc057a1d458519b75 legacy-trunk +51417 5b2c1b65d35eea98e04a41883fe021b118dfc4ae release25-maint +51418 c33192e2c25b194fdcb872aa40d1df2b8aba654d p3yk +51419 154f256fff42995d9da13d7674b331c4ab28f121 p3yk +51420 22c2e25ed0e40becccd6da1f02918a2a1aece3c0 p3yk +51428 5e143944770b41cb24ed2c19d9e55e19640a3893 legacy-trunk +51429 eeda2704130ef50b073d9e8b608441ebed8521f5 legacy-trunk +51430 73a3291c58dc1eeb4ec6535f62fa40ec6b0232e7 p3yk +51431 40bbe669b089efa70d6a31d5c154d45939d7ca24 p3yk +51432 8dd57c53ccf6b293c34ddf81cd3380c05ecc89a8 legacy-trunk +51433 db42e87c9776f702473aa43b6e8d4484bb907f5f legacy-trunk +51434 2ffdee1c38844ab012b6f923d45524cecc7bd77a legacy-trunk +51435 6f10207430774f1386c06d667b554de995e80861 p3yk +51436 8dd7157d2a22a19102e543bbbd525961b1fa5ab7 release25-maint +51437 cf42a44c549eda0139bad45e9e22d518184a1023 release25-maint +51438 3674f20ac781f657c7fbe6ce43445b7fbc4514e6 p3yk +51439 17f1df1553c9ae425d2abc31594c25132fa80800 legacy-trunk +51440 511db71b5c1489a385ab61b2d467cd2c29c16de6 p3yk +51441 53914d540a6780186fc97ac71bb26d2c5a8ecc2f p3yk +51443 9dee81dcb9b419b9ca771aa44ede2b5b60a9c07c legacy-trunk +51444 783c5e2803f9580fc8276a0aca73e8847585264f release25-maint +51445 c40fe86563fc881cea9e221c0eaae1c15ec90713 p3yk +51446 ed0db0d6ca99381a2887c883534348c3915b2974 p3yk +51447 e61b22bf7ab4772570c971a8efa3e35335335a2f p3yk +51448 02bbeec2714f0491b051556d126c5805e640e577 release25-maint +51449 3982475c5144bbc99e1982b6ccca4de2f3c02005 p3yk +51450 e8a65bbd6a292c8748eb2045665653367204de72 legacy-trunk +51451 3cbed13c464d9c1de4c5e447cd3e9679caf8e100 p3yk +51452 e7b1a3db1fe3cdbc760e9df57bd1ccff03a59798 int_unification +51454 c6d9fa81f20fdcd02c343aa62024e015d513c620 p3yk +51455 f18d779c7ceb672ee37e783fd1fea4acedadece8 p3yk +51456 5fddddd516cb7cc3ca8bde63863ce438fddf2f6a legacy-trunk +51457 c8ff43802f314c7d6e8d28bd3937f40a37bba082 p3yk +51459 e86c0b29b4a26a42e4ce6469f2ca3e9bfcc3095a p3yk +51460 719c5db7bfad45a7fa917d15ba56331fa0553494 release25-maint +51461 9cc6a548dec4943ec2dc6266b07333bab842550a legacy-trunk +51466 2f6b42aead94f81ce2e60e3f2acefe8f34a98dbe release24-maint +51472 8d71f9a6c1c3a2eaf327813badf20e94b06ba5d8 p3yk +51473 d65e6dcfdcb57ebd010939fbe198a9a4cad301cc legacy-trunk +51474 9f278009026db3834b5e2f062d470fe7a485f2b6 release25-maint +51476 5ff696f2a7a5aa257776115d461377297e70328d int_unification +51477 44da3d2971079bbf7b16914c47ada850db9e5c7a int_unification +51478 d91585b2cdc1007978dbfbbb0545a1dce33bff63 p3yk +51482 3ea5275874131e082e12347edb05938f582ce38a p3yk-noslice +51486 f0f497a0504ccf525f22befd468009619eda67cf p3yk-noslice +51489 f8a90d1825ce002b811d154b44c7e8f941885e1a legacy-trunk +51490 53df3eff94e3e6182ee8a7dba8ae893dc464cd5b p3yk-noslice +51492 184f7b16d2036f6c4e456d4917925193920e17c1 int_unification +51494 a5f343f7247135fa183e852ca3e292d73c57e3f0 p3yk-noslice +51495 ce5e45e4c5d069cda0f433d38ed097888e3de928 int_unification +51497 a59bbfd808d9727086a1a0ada38b8ae26e5a21f1 legacy-trunk +51499 e6e1b403827e5e57944eed8bdf9380a5f23e32a6 hoxworth-stdlib_logging-soc +51500 8782cc0fb5e0fec0e8ac7dfd8fbfcaf17a3fe690 int_unification +51505 ac7f393fd29b342f036190139fcbbb54d3723f04 int_unification +51506 d1743b0827347144afe3845dd1cdb2bfa2f41947 int_unification +51507 bcc414378f3207ccd52d248b4329f8c51c3a495c int_unification +51508 6d435da8b79b3186ac04d617e9dc5ed94d9d6049 int_unification +51509 f28be5db5005ba92bd83e46ba31f5feff4e65325 int_unification +51511 050fb9a097cd7cf0ce08108fc464018cfa7816e4 int_unification +51513 472ca7006f70f2a3cae4a0962bf3459bd1a53ded p3yk +51515 449ba0efb6bd27911d9a5bbde9753b22825e088b legacy-trunk +51522 e28031afeff5f2fa8bbc560ae482d1a2952fcf2c int_unification +51525 d5fa4afd6620e6e67e01c55b4308b98efef6547b legacy-trunk +51526 5cce028874bc78e1230a94b42777d54b3491b531 legacy-trunk +51527 f45451819491b465eca7614895f0859f35b08a4a legacy-trunk +51528 aaa745fc7b767e97101e7e02819bd70a692c797b int_unification +51530 981181d2a4fe07557d3e87262328e190e513dd8b legacy-trunk +51531 3dd61ffd049e157e26296446f32e552e1d205e2b p3yk +51533 13d5e5f0e993ac7a64c37c923d47a44f98f2d789 p3yk +51535 8b9ec344bed2e570fd6e2a4822ac5cf106a9191d p3yk +51536 ce23d86732b0b89af2049fdbaeb089864c16a5e8 p3yk +51537 dceea41f4a6daea21285de8873db1899d235aa2a p3yk +51538 efe3f2c0da5e8ed52b6258db8bb3b015dda6c6fe p3yk +51539 7496f94754ff0eb182d66afb84e63a28d60b5440 p3yk +51540 69f61f90c4fc08a5564880760f9f0a586fe2c2f7 p3yk +51556 1a0f447e60a8afb3672ec0036d30d85f7444573b int_unification +51561 1cf5285c8ab947f585a5d3ded2574f33ceff1d82 p3yk +51562 51cdc398e0b063e865c83053838a2d7760381c2e int_unification +51563 317dcc590ffd8a26b6789aa928fa47eecca6cb7e int_unification +51564 e4deea938def082afded7086fa36b2bd5bccb31a p3yk +51565 a88bc3bad651b3afab68eccd4175bde34cf5057c legacy-trunk +51566 adbfd8d5851cc62b58b0132ec2344c951ca3be8d release24-maint +51567 280c6db31c5a3d2032f0a93e6cc5d9d56226fc22 p3yk +51568 9348ea63b02dfdec0372f9c6f6cda4adb651ed7a p3yk-noslice +51569 08005ba6ceb930dc737f4fb12a2ef7dba1da200f p3yk +51570 523e6cce4187150dd9a27b41a5ef7f9b5726afdb p3yk-noslice +51571 7ed5ce89f26ae7c495afae57e7883618a3da5347 p3yk-noslice +51572 ebad59c7233e3a805a69ac393d4c81775bfbbb99 p3yk +51573 7bc4192a5278c58bca95cfed540f3a3777705a60 int_unification +51574 84335788d9cb21262b757f421f10105dca4fa132 int_unification +51575 e5ec1adb061f5ab583d261aa76c8e773b1f93b58 p3yk-noslice +51576 bf42c81db806ef212f25a0a90edeb50c8f74b250 p3yk-noslice +51577 a5048c8d8f3332ab7d446acda8008b8c51a26194 p3yk +51578 a243a50da23ae2ef510b6cbd0e395ee7c5ae4f38 p3yk +51579 f9e7560fe00d218989635f075a56229ab37bc4e0 p3yk-noslice +51580 76a9a5131aaec96354a927a68ad9308adaf1e93e legacy-trunk +51581 44af4b37d5ff40a2e7cceedf1a954a2357dc4483 release25-maint +51582 26d295e79ae87163371884d1ae47fdae621e30c7 p3yk +51583 e684f97ae3fafb1480a08512dacff5c390af90ff p3yk +51584 f16a583c5b09045d8a2d3b43477d38969b2f0130 p3yk +51585 4a38cd1a16061b1f3e205cbe6cba971aa98b8f57 p3yk +51587 f51edbcd5cc0008b033a13525ee8c4a50cf756a2 p3yk +51589 92cf3974d32fbcee7619a3a03a5bb61d66b793cd legacy-trunk +51590 edec7962af287e8c0fae56eac1649ed12c837e9d p3yk +51591 e076cca4d9d7a0c9cc3cf9b4ef5345168a3f4ab8 p3yk +51592 dbb5954fddcccb03977537df4b606499b19813c6 p3yk +51593 f078e7e4b9a150622139acf67921dc112043f187 p3yk +51594 ff693a861b704fde1750ec9ddf21783ad79145fc p3yk +51595 f8115f686e4011c68c142a3f773081abaca36e03 p3yk +51596 6927acbfa01b47faba8442c200f2768508358c4f p3yk +51597 4e5c94d036493df70cd2f46900bc5efc8769e990 p3yk +51598 eb2f70fdbf3240b99d260506aee2aafa39df408e p3yk +51599 78564e269d230b2f53777e33bb7281947e2335d7 p3yk +51600 f87a3e61853d72b1d133992f991e397b31aac8e8 p3yk +51604 3bfc8bb4e726f0a736c9c502cb8a8a35a93ec969 legacy-trunk +51605 ca2b2cc2307e4413fa2bff5b6aab09273907fc79 legacy-trunk +51606 f497650a14906f27638dfc330db1ab305e6d3fea legacy-trunk +51608 916ae636a83e4b8002c0724bc68ac74d843862ec legacy-trunk +51616 bb073805fbaba0115377486927c25d01ca29a6ea hoxworth-stdlib_logging-soc +51617 9049582168131d989fa5c2ec61e36a7c0b0b757b legacy-trunk +51618 5542759254c0b280cdbfe6055b5a13829493020e legacy-trunk +51619 1b735a9d210710de4b8c4aab34020976cae9d477 legacy-trunk +51620 aca709f33a6a168b1998645dc17b4f88c1fd7884 p3yk +51621 3d7798feafc598f9ebbd7614b959c2158c74d97a p3yk +51622 6c184fa55170a2686e193230e7aea74e4d9ab065 hoxworth-stdlib_logging-soc +51623 ebeb34add4a62cdce6588d0491fc68a7b7438464 p3yk +51624 d0ed7dbaad56e0a0aea52fab689fd8bd6deacf0b legacy-trunk +51625 0cb9e57ec406478c7df3b6e05ad7571b23644604 p3yk +51626 c4d8c054616c009d0ac027953f81e5329ede6a17 p3yk +51627 c093633bebeccfe04e948325b6160c4cfcb1c1dc p3yk +51629 540c9592729e74d82ad331f6743ed49518ac2a71 hoxworth-stdlib_logging-soc +51631 d0b83c4630c0924df661063543f3c5478c8c35ac p3yk +51632 da3a9f4028860658ab79c6de36b3366b99a1472b p3yk +51633 4f76f63a32f36baaf17179aa6cbe94f2fb12f33f p3yk +51634 d14f10a4d9d4660dce13c874b59a621351d15ede p3yk +51635 05ac9c4928a48f1294cb9edfc98116d71650eae8 bcannon-objcap +51636 6e198c655eeaacf3559075172db483ff623b9ddb bcannon-objcap +51636 90a8ee6c3a8676cc5b943b2b1debc3ca0f17baf1 bcannon-sandboxing +51637 b563b12e4c0036392c4db81528e890ac6d8bba35 bcannon-objcap +51638 fef02dba9b5f326871e627545bc86f1d2e6cb030 bcannon-objcap +51639 ec48057a34b6018f57bbf4f49746520355f29734 p3yk +51640 07eb80264f61511def5728df5c6a757ed68d9bd6 p3yk +51641 f974890c6cd2a7c52d3007d1d6cb3168d4cf11af p3yk +51642 218b6e900a8d4425bd9d92a58205ae38833c776f legacy-trunk +51643 7591228151d702ec533bfbabb8a3835e6b9b09a1 p3yk +51645 893add5545419670800eb1176b8db4bcffd35007 p3yk +51646 aa59466ebd9c16161c51c1140047411df41321f9 p3yk +51647 754a729e97af5ac6485a5fa58ee4a89bdd9d42f0 legacy-trunk +51648 f0b8f71185f55d6fd8cc55e2ae99917079471a56 p3yk +51650 416107a351853d8eb33d5fa4fc96153395b78b0e bcannon-objcap +51651 16d486c7da8245c3560fc43e999d6aeb9b5cf25a bcannon-objcap +51652 8f7321ab8f40f737762ac032058ee31c58e37213 bcannon-objcap +51653 4d23e9a127103855d83379b401cc17f61ddf3dff bcannon-objcap +51655 f10fedbe6c13961b8fb63b0956175480075f07cb bcannon-objcap +51656 5b02eb5f65f1bff6a45f0886dd44818a7fc51c8d bcannon-objcap +51657 3554962d8b21d7e565695ab88d32c0d319c2633a bcannon-objcap +51663 e85d5b20ea60ed418126bb77a0d570f890d5e5b4 legacy-trunk +51664 a83957c91fdb9bb7717070f9b072b517a7635fa5 legacy-trunk +51665 1f170570589ea5fb5036036391bb133e9480c022 legacy-trunk +51667 60c11934709ec742784a3f2ad200ace1afa85a62 bcannon-objcap +51668 bccc915808d801ffaa8a528bef3ec5ce4705fedf bcannon-objcap +51669 dd514a177848ae6e515dd674190156cf124ace00 legacy-trunk +51670 89176e65add2c985b0035d92d6b0da9a5ab7e7da p3yk +51671 721c394eb0ba33e99d8029579086cca369e04e3a legacy-trunk +51672 5626b2ee8ce4cbc5c4138a597cf06d148cecf609 bcannon-objcap +51673 aa641fb17698ed327790390fcd35f91f793b13e3 bcannon-objcap +51674 82081ba9a5c507c049ab764188b5a0992cc87c05 legacy-trunk +51675 11f7053051ff9eadfccf5d6699c4067a206f3832 release25-maint +51676 4a7906d8de86107ca100c06d7322281cde4f9328 legacy-trunk +51677 71ea2be7d9126a8bcaae3bf69595317bf3ac915b legacy-trunk +51678 184c1dbf7194e4048a1b2b81158d5cfb1c10a83e release25-maint +51679 ba837545cc2faf078c3c9847fb7fdb99b5389ebe bcannon-objcap +51680 a666d75f3dffc3934e6ce5d2534db2acec284464 bcannon-objcap +51681 d1986d369fefb889b7588ccee93e675bc963c6a8 legacy-trunk +51682 8418f1b9090e87eeaa9d3efa3155739493ae4efc release25-maint +51683 e905f78eafca5721a6621ebf83c8ad03f0575c44 legacy-trunk +51684 1352ad9afcc0b8df3d20aa3b26db9e3157802163 legacy-trunk +51685 2f086d58ca10f7e11131c7d8c9cd06271d0308f3 legacy-trunk +51686 8fe168703348b74c9abbe09f568c55f6ff561f2d legacy-trunk +51688 7693b6993ddaf3f803017f883cba6e886474ff9f legacy-trunk +51690 314c4e7a36d3ef3c63f996deae281999aebc5a02 legacy-trunk +51691 1ec7ef0f3b8d04f4cbd1d4149caac39cf954188d legacy-trunk +51692 21197cbed51dac88f31d457f55ac454da8465ff0 release25-maint +51693 aa8fedf6bb248eddb3fd1f74cc33572ad6b4239c legacy-trunk +51694 8832b8c2fc499f47649714779e94913df17c020f legacy-trunk +51695 4cec45bd6663983ee2f76c4966def917c6e7d407 release25-maint +51696 06330d0b464af25335d7116d6d93bafadf36e4f4 release25-maint +51697 cb6642ded4e758132f6d595050768f6e3411405f legacy-trunk +51698 101e04a4f403aae5c5e7437c71e4214daca7266d hoxworth-stdlib_logging-soc +51702 c6fef944ad95deafd2af06807e7cc212a7fea927 release25-maint +51703 589980c780254608ad33ab454f9ae4b71178d9a8 release25-maint +51704 cfb77fff024021082ad811ad224af718dc12618f legacy-trunk +51710 abca4e626cb5f6a8b26299606caa3672165877f1 release25-maint +51711 f5e78ae8ec0cb8eccf1e8c83a64073d1af2e391d release25-maint +51712 00d2c93b88bfed57aeae1a2617ca13a7bba670d2 release25-maint +51713 c6d44a9749db486b668278bb370508d339f78e92 release25-maint +51714 9ca19db17faf79500319f5ab025cb77289ab4762 release25-maint +51715 244c734f1d8d1db80ce7ae69280aa4941837b98f release24-maint +51716 e1aa9a29ed151ffbdf16e44706b366bae6db2f97 legacy-trunk +51717 9957467faf47c3ce16c7a1b3f01789c0c717cd83 legacy-trunk +51718 d1b497ec190a1ab6ce934e3f41ba832e9988438a release25-maint +51719 b3514382c32747cc8141e8170dd4a1367d47b3a5 legacy-trunk +51720 08ca476f8a3424dc263a7e222ea8d8d34e720168 legacy-trunk +51721 97d3eab8cda2f920b50479a0e5834657b4862c45 legacy-trunk +51722 9d44792063bbfde9c63fb699a8f861c8228b2e26 release25-maint +51723 627a21ccf24fc403c8cb79a645354629798c36f7 release25-maint +51724 300fe506a0aa420b03cb6d22f0d40488d70ced79 legacy-trunk +51725 82639c055a6fa84753f42be45e531e0629746d25 legacy-trunk +51727 155cb1557b9750d49111b10e3189e79022885dbd release25-maint +51728 4c85ce70426e39f4aa190d14519c4b1ea83fcc2a legacy-trunk +51729 8dcb882ec3e1aac7d336a40aa64ec66561fc3dec legacy-trunk +51730 3300d7492f1a13ca604bfaa3fe297a4f3338d0f3 release25-maint +51731 c591d9954fb39330c2136b2266090884fa660a0b legacy-trunk +51732 3d968b5fcaf9bee78c6c8f0d7063d91bd16e01c9 legacy-trunk +51734 6a51cb8068f5ceee5a300056d68bf7800dd375c8 release25-maint +51735 5d6e96a2fe6e86dd5f8f6a1232399a26dd1796c7 release25-maint +51736 9f0b3f9c70da1c722fb9bd5496d49859f5f4f3d9 release25-maint +51737 15109781f0168ebd8513e4ec916ae27ddf20cf3a legacy-trunk +51738 ee0c757c4990abaab2049a937c62d0bd1d126cb2 legacy-trunk +51740 ded7b690c3063b0c7b39c404739f0cdac3647ee2 legacy-trunk +51741 ca95bd559e7167ef150ce5b95c2b78acbde9479f release25-maint +51742 6d7a8b5eb551fc5197136ae822d924e3716de237 legacy-trunk +51743 8fb597784f18551125d43d9c0dba213d78b323fe release25-maint +51744 71ac796a018c63199eb6936c34e0510c80f937a8 legacy-trunk +51745 7c5e29362803b1ff3ab9dfce1fa142dd858e5f4a legacy-trunk +51746 e8b68df90b84ed5ca5e62a30ae2a292336dc1478 release25-maint +51748 a52489980b5b493a5d89c99d73c125a25662bece bcannon-objcap +51751 e466fffdc9a91c53c6d884efa0beee7c4388e599 legacy-trunk +51755 1c425a890f6cca31579da0aff5554e82b1f058fd bcannon-objcap +51756 c9cc29be755878cb6ab600288f6b746687cea424 bcannon-objcap +51757 76b8a75dbe6a3d74e34bbf40298b49570c3b1d62 bcannon-objcap +51758 467c716e2f818bb4072abffb65c131721b4f9b75 legacy-trunk +51759 8a20c94d9d99e22b941315589741bb110af5e993 release25-maint +51760 2a730fb6f34b431a75bc4b87d3501b1a8a5923a2 legacy-trunk +51761 9deb08ef4ba1df350e5066b4b1f8e790bf84d691 release25-maint +51762 98cd7b1666fb48cf51f1e2d1f0e62d05d4783508 legacy-trunk +51763 6dcc64879341381bb13e6752ec0f318055f3a119 release24-maint +51764 ae5b8a8b911e29d9c0b3351b52c70f3664d3d903 release25-maint +51765 307a11c085b4610d86ef922d23e37f1b89611041 legacy-trunk +51766 8394d2e9bfd67af4eb043f82aa96e28c16f99a48 release25-maint +51767 b8fbd322760a9bb15a0a33f30e1ab41a0e0daa51 legacy-trunk +51769 d719fab79667876cd14565a427d76960fd28f59c release25-maint +51770 cb883e7e0b7e172cf7f1451df0489cf57cc9b25c legacy-trunk +51771 c94f37054f1970f6fc162b1251eef2540858e23c p3yk +51773 7a0ad110e91e791631df889c12f55f076b98f3be p3yk +51774 3b75edcc4a6f487dfc7caee11f7bfc5674e4f251 release25-maint +51785 dce17b5bd387ca3ba778e5d1b97664fd418bd44d legacy-trunk +51786 81b467fe92ee50964c528fdee0f09d375971e8b6 release24-maint +51787 4aa984141fefcfb67b98575e82d6b0de197d75be release25-maint +51788 2527a4835099293b9d902b655857971b91a25938 release25-maint +51789 cd3b7f25649d4f3794f000b7c0c4fcf1420a2119 legacy-trunk +51792 56e7d6952985155cbff5f0ded4594bdca285ee85 p3yk +51793 5e502de0cedacfd5eaaf93e65c710cff084fec99 release25-maint +51794 6d47c8bc051271b499490e9c7f781d1edc70eac0 release25-maint +51795 6e6baf1afb12c056026a8dd76fd703642cd6546f bcannon-objcap +51796 94204549b516093d73d9552d35d0115e4b47054f bcannon-objcap +51797 363ef804a096f5189bbf2c9caa796c44d1b2eee8 legacy-trunk +51798 ef0f42bf2a085350c9393b0305f364a234a95829 legacy-trunk +51799 c643b031d526c83575d1e7323478fc00f1c5ffeb hoxworth-stdlib_logging-soc +51800 e83722aa78dd47531479dc235d9a35c9f6215f87 release24-maint +51803 38ba9524783a1eabe8f677c007f6ce5797c4b091 legacy-trunk +51804 cf9d3b38251f92ad6bb06c347af723d1ce66441f release25-maint +51805 1eebb647310fb5ecfacc5deb75c6d51ebe173934 legacy-trunk +51811 405804192a682825df8372eaf3cff7c8a32e7ddd release25-maint +51813 c3a353a071468b58a721f9837c90151b068cbea7 release24-maint +51814 41c1e543b9e96976145d5225dc8515e7c22efe9b legacy-trunk +51815 4e81974f7e1403c74a74ef669c519d4bf9e5570f legacy-trunk +51816 d9673b62ce35d9d0d3bf30a62bd04ef77cc6518e legacy-trunk +51818 434afc728f6f74af9050314db12186e6ea038356 bcannon-objcap +51819 a065b55e1fb1d06f06dd55e7ffe93382dc2d2691 legacy-trunk +51820 d5c6fea252f0488265e77e82cfa4fe41a388d94f legacy-trunk +51821 ec6fd9cebda18587b606d65a16bf46d1a0b8f100 bcannon-objcap +51822 70108c63c6e50e837d69cda6f607470a1c90ddc3 hoxworth-stdlib_logging-soc +51823 3239f93cf4d23ed69fc8817294c282e0174efca4 hoxworth-stdlib_logging-soc +51824 2653f83358779387d1dd411ff676059e1daf92c6 hoxworth-stdlib_logging-soc +51825 891e332cd2d6a269c0ca2b1d490303c2fc1b113f release25-maint +51826 0298cc6c29cd6ecdacd54ec24e1170061e8c3fa0 release25-maint +51827 c0314c8936e5116d3bbbb2f7da5e00c666b9c1bf legacy-trunk +51828 d4e53e70cd78274d053863c8f56baa560a2b5e2d legacy-trunk +51829 7be30cbfc9b283aa388e074a08dffcb473b2fdd1 legacy-trunk +51830 527a3d0052c901121b58baab9608ecec381bedb4 legacy-trunk +51831 6a83b2740fc7ccda03d9610e3cd0b894293391c9 release25-maint +51832 40735d5f8acdbe77881df9cebd216fa7a859eeac legacy-trunk +51833 b5275882a3e0d4b0cc43147b333eb387426a9078 legacy-trunk +51834 a4a214bdf8eac0ea0e9c38d1a2c89474ad5c8b47 release25-maint +51835 6f6e55fd9b791c2a7dcad88561751e712af3510b legacy-trunk +51836 0eb3f0f54a2674fef680ab5291ade1b5fb96eab9 release25-maint +51837 c2fd978df3922425f5fe8791dd49da55d093307f legacy-trunk +51838 9e7dc6432a4465b635d771e6e82a6e18cc7114d7 release25-maint +51841 804d171c2cb7155c69322e7a96875228c117c06d int_unification +51847 0ffe7f92ab2fdefa2f885a2d199b8ee6458b6fad release25-maint +51848 3986b36b849523340d309c9c085cf065ad6c2bde release25-maint +51849 5ef0406e6d524c6ccf671b2840928d575539d694 release25-maint +51850 e4e8f0a4eda4fe28bc751acddae96c153a7d7b15 release25-maint +51851 54d4fd088385c7fdc1e41f6406cd5574cf21f2b1 release25-maint +51853 d06b2b42d138816feb892775085929a6ed3551f5 release24-maint +51854 15ad6ba2e1a542781beaba12403df7cb7401e2a7 legacy-trunk +51855 66d0357029b55ac6168f9a30183997e7f2578da9 legacy-trunk +51856 c0a071df4621a5794d45a92e4a59536d7cb3e56d legacy-trunk +51857 0f7ee9925b7c42962b61564bd0d449a33ca23fbb release25-maint +51858 0bac40e4d0c643a78c18b46fcb0f48c7871ad1fd legacy-trunk +51859 c5c9dbeeafa76a1dd4bf26f22601cad6fdd3724c release25-maint +51860 cc3cb3a8237ea545db917d84c49d8a0a5e175cc1 release25-maint +51861 7d40d37e4cc35d619194082d9f823914fc22f7b4 release25-maint +51862 249fdb59dc52f9b53a5292adeb3382d567b909aa release25-maint +51863 dc50d4ac95d91fc180018704041757e9f29d3568 bcannon-objcap +51864 95cf31e6933501f2d3f296dbb07d2651130b3f8a bcannon-objcap +51865 417501ee3e86ffacebdf0e6a8b2d1e974594f5cd legacy-trunk +51866 e57d8ae45669f4d7e2d4ce3d7f8a61eeaf2e16d9 legacy-trunk +51867 54b82bd25693e9d7f2df68a38f19ed529d9f8c86 legacy-trunk +51868 5044d069b53292ee030d163f163f0e82df68fab0 legacy-trunk +51874 10eb1f6b30809342627ca144e003abfdf24c39a3 bcannon-objcap +51875 0bc39c1319ddc037ab2ab40449ff3cf8292fcaad bcannon-objcap +51876 07a44bff967f5826c351081d6cedb7129d13236b release25-maint +51877 74e424c178f45c239f1959ae456d52ae57975627 legacy-trunk +51878 2b05ec5df777797d48ed31bb0d056838e5fe4e3d legacy-trunk +51879 a0235d435ed4e72d49c5a53f2c157ff8275b25d2 bcannon-objcap +51880 75179c2ecac1c5b0f35c467721429b029a5fdabb bcannon-objcap +51881 dada34b4d6b6a4e2d7a89f0ac03c00c3c745a224 bcannon-objcap +51882 34ab052745ec2a70e4a21cb760f5aa0453ae8f26 bcannon-objcap +51883 0ece28cb5b9e73e8cf0f65e23ea3a26955baf815 legacy-trunk +51884 899d4dc12c378dbe25b689c451eb545fd68c147e release25-maint +51885 b6733a36eecdf6556a838c17a43e7ef624d3f122 legacy-trunk +51886 873759b0b12616a804e01e9faaf473fbee2f6fdf release25-maint +51888 4f36c41596b18d0dff79ccc1d4f1c591bb4f4ac2 release25-maint +51889 2e995f244d6b62c940909ec021c77bdbdd9297af legacy-trunk +51890 2a3498d8741b42c51aa4b379d46a34a4a66ea438 release25-maint +51891 f9c9f8a05a894bd14062cb041dd502cd990133e1 legacy-trunk +51892 8d3b764359921acd73012f87c714cb872c513758 bcannon-objcap +51896 330bda2405ee6c682183dc5eaa5310b889230403 bcannon-objcap +51897 1660eaa0cc2663330c3138b2fcb2b1edbe228e48 legacy-trunk +51901 f5f4d2fdb62c29af94403a21b73f4b4c1a7e40be bcannon-objcap +51902 d43d9422b7ac79f3b6e1cffddbfcb4310753b970 release25-maint +51903 cedea9e23a955c7559c27ade32ec40fd0007de3c legacy-trunk +51904 bb9e914ede051fab00b22cf0288ff4cf716675f2 legacy-trunk +51905 590a98a70bf9d945da6c1f6c4ad53d4308da5c08 release25-maint +51906 6b01a9c455dbd265ddefb7a758bbe352c3f6c473 release25-maint +51907 767962f88834609f8e894827e88dfb44211a194a release25-maint +51908 c10a71cf16e471425e6d7564e3f7a648f14b702e release25-maint +51909 7f5f46b56611c153aec7b053c00f1d8903fa1eed bcannon-objcap +51910 20147415e97f9b0cd951c1ee5d68af29a23888d3 bcannon-objcap +51911 ce24778a649f1ae53f5d0075821445ba24915bf5 bcannon-objcap +51912 7752378077a537cb3cd2a4c0fa97527bc7106008 bcannon-objcap +51913 b4470a54993a387c579bf679b23a1c5467ed9d34 legacy-trunk +51914 783941a00e9e2952291c08c8427e69aecbf17d6b bcannon-objcap +51915 e70a7b7197b6841d78367080b6ef6301f0af5ad3 bcannon-objcap +51916 b6ee4d3541c0a5288121d288adfd23a981236680 bcannon-objcap +51917 094dae49abebb34da38c3b0643ba8076c79cbf28 bcannon-objcap +51918 e036fc9c68271477c965fa6923bb2eee812b3f8a release25-maint +51919 bc772fb5139295d158b7274546f8ad6dcfcb07d6 release24-maint +51920 71b80240ac3ddae4192a2c50a1cbc54db6cddfbb legacy-trunk +51926 0171108ab51558eb06b7ab4e73d06f51c83383f5 legacy-trunk +51927 4888d2d4d292ec38d5e3e943191393e07cf32cc7 legacy-trunk +51928 71e0f3fc57da778f4fe0849b64a65eaa611dd585 legacy-trunk +51929 b303d2c2c6c564343a0367e0ff8a6ace7ac59738 bcannon-objcap +51939 ea24a9c8eda258b93aef5913c2883dc4356dd12f bcannon-objcap +51940 0031fc2e05e286e2baf8937e7b33c72bee97e2ed bcannon-objcap +51941 0151c07c53e51062732c037e25645be23f0df7a6 bcannon-objcap +51942 de4924d03903f74c859fc2307ebb2db3bfe4c907 bcannon-objcap +51943 1f4897f5fb2beba6188f4e234e02f4b0f28e7da1 bcannon-objcap +51944 43baf6bb0f8b0b4e73d0e02e8ebe0fb3eed405b2 bcannon-objcap +51945 56f0ec50d7371748c989e61cd9b26b570e5239e3 bcannon-objcap +51949 936297047c179ed8779fc23b1e6b436f3246a25c legacy-trunk +51950 69530aa21b8a649ff7470ae14f981c3cad3c2a66 legacy-trunk +51951 35bf16e7f11cde16c45d6c07f38c5329caa852ae release25-maint +51952 eff88c6aaac37476dcbd9c9778ca611d852a4690 release25-maint +51953 de4866d44f13775c5fda32d3fb719cb3bb573154 legacy-trunk +51954 7f6b4fc67bb6b3f39179eb81b840a0a1599b31d4 release25-maint +51958 df98d9731390f1476817f94494485f7adc0a0ebc bcannon-objcap +51959 089ddf1877cc078d61466d142dda12d954a97ae0 bcannon-objcap +51971 24f9a13084b0174744392fd8c07bb63b788a685d legacy-trunk +51972 b8cb7201379c67950de11aefd3c03111144341cb legacy-trunk +51973 aea19c2a45bfc94ae1615793ba60ac9490f34d24 theller_modulefinder +51974 26618528fa3b764b08d6781b3b83351ba669d531 theller_modulefinder +51975 94a8cd5888e70b0703b56d64b1a11441343d438d legacy-trunk +51976 0b63c285934fa050fbfb4ab67b7f2fb122be99e7 theller_modulefinder +51977 69be015a4b51c03d2490a495743f3d88c9af5df4 theller_modulefinder +51978 c781c980c9a0dd880b931df1a5c8fec042b2369d theller_modulefinder +51979 079f9beb1d7fa35922b28680ccdca6751ea00b62 theller_modulefinder +51980 5872babff6384f46e53e53994d81dfebc2d6278f theller_modulefinder +51981 e3c5f3b59271f02eaf0c36c908877fdf63e8d24c theller_modulefinder +51982 e2743222581d28dbe9fa8fb1bf7f042000eb681e theller_modulefinder +51983 74397b0099141fcafd9ec22caf7ede79f5ec3615 theller_modulefinder +51984 b94278e1bcb3141a502d73635d43718a29663457 theller_modulefinder +51986 04c998ff28b7d41cd329764721e8560d4b4bf85f legacy-trunk +51987 cab056903b3dd26492f06ea9328fe5a33f940f37 legacy-trunk +51988 c20bd74ac9a67ddeb2275f0441805aba6eaa2765 release25-maint +51989 479e389cb462f8dcba885cebc9a0265eaa718647 legacy-trunk +51990 7f6ddf555c120bc935a829e750cdf11dd0fe3319 legacy-trunk +51991 d99753314453353ddeeb996fb7d07572299dd800 legacy-trunk +51992 b5292f967877cc349a143592a55bcf153a2f936e release25-maint +51993 25bcdf3cd19421d43447e4ef6b18489cb068df99 legacy-trunk +51994 3478c160207b79d6f8c185e4230c62e82502827c release25-maint +51995 ecaafc32c5000631449a601b8486141abaf6185a legacy-trunk +51996 ccddb22611dc6f0d5600ceb115cef9f0240a8722 release25-maint +51997 603cde5ed1ebc57f695919c279aa3834b3264ecb release25-maint +51998 3c7f1881e82a96ae465bc02af2cee9eb2f44a1a9 release25-maint +51999 dec7d993b68f24149ad88f19282eec2e1eab56b4 release25-maint +52000 f8a7dfbf81d08922b105f76de30358f606380047 legacy-trunk +52005 78c5a039fa3a6423ce080d049ab48a3405228845 bcannon-objcap +52010 78d4e5e470cf8243a9c67a07c85faeaab6bedbd7 bcannon-objcap +52011 b072228c95a204050107ea225984d1cd85ab10c6 legacy-trunk +52014 74dcfd36f7c4a39b2565a8a3f2d269d19b56c25d legacy-trunk +52015 e6a4e0678993ce86d0da7a8aff309d7aa60e2fb4 release24-maint +52016 9347c2b451bad9b1da3fba27ba645b2a8ff5130b release24-maint +52017 6fb46e87d5f94c60e548fc143c584a04da541a1c release24-maint +52018 3b70da9ee368759302e7dbc547a769e71550200f legacy-trunk +52019 a52142bc158f65d5e367cb6b7247e7d0075e8280 release24-maint +52020 68a56a15d7559336c6a5bfe5f310a7fa1464dddd release25-maint +52021 94dfbb9dac578b037dfbd284d81246d67453cfc2 release24-maint +52022 c49f02a50cadd6f801cb5e27d8eaa3bdceb65f6a bcannon-objcap +52028 1696d85ba0435645a2acf475424ed892958c8e16 release24-maint +52029 af3186c6409207c58ce7d2516191cd8d51fa6584 release24-maint +52030 884d1cb702215bb7d02d646671b853153196f8c5 release24-maint +52031 12869aae9f6d9edfbe8b68b422f01b0665fc8f45 bcannon-objcap +52032 f90ba306c287a48db010359d2cac9d91dbb8d393 legacy-trunk +52033 3507775f4ed41d56a2a7a878afed2868f7631fed bcannon-objcap +52035 fb289ee1cd607b379a01eac2608e9693a49e4ae0 release24-maint +52036 ab79ed0f928175e19075221a68bd19603bcceee5 release24-maint +52037 cc18fdad108b7d7200797eb05e1c50c379081106 release24-maint +52040 4f11745c7e5fce8881486cc8ff647fc35fc9b837 release24-maint +52041 c11cae2b9a75f2a8141d87a01650388017d49a7b release24-maint +52042 2632c9af64abb2527614b4ca16acb8928f6fc5c7 release24-maint +52043 15ddabe63d952c67b353ace3d22837830fbe56b5 release24-maint +52044 1e5f0b0466d8df0dba9c4f001614e5a6503b88b1 release24-maint +52045 9e0fb954791ec93492eca7ae22ff938ccb15325c release24-maint +52048 05861749eacd211afb2cf13ad9d0ad3ff807dff1 legacy-trunk +52049 01c03a711b15cb1ed01fd3f0d314d30053e66f8e release25-maint +52050 52cdbe4b7644d72aa92ca0fc654878614cc13d6e release25-maint +52051 0edf3999618ae28cf968a9b00edb0272cf1b13ab legacy-trunk +52052 1dc22cc20132f2ac059977a5c4c7fa2a8c308482 release24-maint +52053 de79f1870ae8f1d86d1f58518681d346efe35fea legacy-trunk +52054 5dffa35cc64302c2c3dda3ae1fcdbac8d6fc829b release24-maint +52055 d833806c7351a5917262c88900c52fc81dc65a64 release25-maint +52056 c477a0e2b06799daad89452d981c75dcc49c39d1 legacy-trunk +52057 2c824a8a1fb8cd56aa8eb6feff9ca56d3531fda6 release25-maint +52058 49fbddfb121701ddee164ac752b1321280fbcf68 legacy-trunk +52059 13cf344de8c98984f35f8d3819c18168441514c5 release24-maint +52060 52460b092b5a66d5a3593a16f2e4c7631b89d8f6 release25-maint +52061 e1ab4653ebc0932596b6b0642c2f0e89b192c13b legacy-trunk +52062 3986bfe53101db312922943a6c9313f7e99749cf release25-maint +52063 e7a58341b2e8f7535d77cd14c227b2a718d335e1 legacy-trunk +52064 1bf51d2f469d2d2faf783bc68f53cef9bf2846b9 release25-maint +52065 b9a2ef1302d47ccd5150d593a19c61e5a03b625d legacy-trunk +52066 99d1c93676794d2d4b583b648627bae6b4fce6b6 release24-maint +52067 330dbcadb93171f6237eb18d7aa81b9974def46a release25-maint +52068 ffb901374a382539a90657a54c89ccde08ff2cf5 legacy-trunk +52069 d91826bac6555cb0a6146b755c66cb45e3c4cf69 legacy-trunk +52070 95d2473f7770cb10c6f8935c02116cdb77d1436c release24-maint +52071 9caf5a9da554d0bab3ba1ac84962c46b0754bfc0 release25-maint +52072 b7ae8977d06e497d6fdadeaa0c86d336aedceacd legacy-trunk +52073 9be03226a7bf8da99edf1790ae55986232feba32 release24-maint +52074 cf58fb8450ba305d4fc059d9095a5eaa00297cce release25-maint +52075 40e2fee03a949225098bb87d4bfb428f7fcdcfba legacy-trunk +52076 5130b68b54e94a8b09223ad952caa170653f0f10 release24-maint +52077 dfd809dcf68000fe6a4a680a250c1f9eb98d2ec2 release25-maint +52078 c89a756c0965a90d35ca621b30b7d4521a26ee54 legacy-trunk +52079 90728dfc33e85884dccecb836e5b0145eaef8473 release25-maint +52080 d743381131d6c9f1b893e136a1684eee776189bb legacy-trunk +52081 bf47de6d9c918e206c3ab7fcdecf451d86fd1b18 release24-maint +52083 257daf39b08c68e62f4e70d55138d2269a808c21 legacy-trunk +52084 89e4aebbf31c46093b3cca7c81823c871dcb6ec9 legacy-trunk +52086 00af6987026a6d5c1e2d3e1645dd1f6a97b390a6 legacy-trunk +52087 1da04c8ee8ff0030887078a8bda68e245f6ad7ef release25-maint +52088 9fcaa8ee8c22fdb3ed63c33a3637908576ba5e13 release24-maint +52089 1697d0d4ef337a8822b59350a7baa015ae0947a7 legacy-trunk +52090 5c36ec5fd3c236eb6c0440cfbe5fd78e99f89846 release25-maint +52091 c0e71a4b71c746f0b8bdab5058c1b5a23ebff41f release24-maint +52092 cdc367ab3bbfcb11fdd4f5cccc2dee8714b16257 pep302_phase2 +52093 b1449a7e15edeead857f53cb80ff5de936ffcfdb pep302_phase2 +52094 b4553b12e25be9acf63bdb11a36c7f91f30f7e30 pep302_phase2 +52095 b22baa1541474f51fa2ccf52bc3229d929c96e2b pep302_phase2 +52096 84afa366eee7a2b06541e9db83a0a3418c712311 release24-maint +52097 45dbcb0e9fa9fd4f91863970214a90b06e08f4e8 release24-maint +52098 818118c3a340dfa127a2fea3cfdafe335272c146 release24-maint +52099 580f6a6951723975c5ec831f546e91f00f5e554b release24-maint +52100 2c89d616a9ed37c01f2bb567e80070544bea6a0a legacy-trunk +52101 2e1c49395b961f65554f9a1a6d6792954f7ff936 legacy-trunk +52102 4da4de954012b49f359b41b9e5457bf77ab896ea legacy-trunk +52103 f019e4f862877aa7b0b940962bca9db32ed67675 release24-maint +52104 28a94bf7f67f3c4b1b2c8ff0dde3b0ff72105b4d release24-maint +52105 de7c0cb5a87295c6a140367af0bb2ea4c4fd912d release24-maint +52106 b332e1ac66ccd7c6ef7f0fe663a07bcdbedb2cfd release24-maint +52107 06291eadde2db5a2ecd33a4b271841f35c36f4fb release24-maint +52108 443b873f9eb90855ee4c2fb5276e9d43ef8bfc0f release24-maint +52109 5dd6c90d4222cb9e6d76a3b6f8e42c7877a404ee release24-maint +52110 6b1c4d7d3a26c30545fff03d49e5ae5da395559a release24-maint +52111 b7e34fbc80ad69bcffcf8e0108ff848a2a62f18a release24-maint +52112 52e9964ef922d773048fba83f27c75608974ff84 release24-maint +52113 54d177ede8838802d69b0e981ec628fb64996bc6 release24-maint +52114 8c83fd79cee5be30646762134155419b0504b141 release24-maint +52115 ef09e26ef099a43915b08c9ea9a0831a946808f5 release24-maint +52116 2f238a2cd189dfc37d57b53a700e408bd358f71d release24-maint +52117 0b6b360e92179513116dd8e4e4eb74aad8194bcf release24-maint +52118 9e763bcd13cb9febbc3678654ba7dccde2864b4b release24-maint +52119 0d35b9f94b1516cf2f5ee26e1c1b1a5065e66ca7 release24-maint +52120 91679287cb96cf986c027243bd8010eade55bcc9 release24-maint +52121 47ab0c27dd1f922f4f60db37f04b5e57e9d2378c legacy-trunk +52122 360d0971a6eef1d878f0a0d534a5da355d13864c pep302_phase2 +52123 9e35b62ed4d2df97572591c4d1c5fa859286259d legacy-trunk +52124 fd14bb5831cdac4ccda5d7a942c0124a7eb9dc5f pep302_phase2 +52125 ada56b54db9a7934caac094321a377dfb0ba4502 pep302_phase2 +52126 660cd072080df3e8b0456d0210edf4a97e0e4317 release25-maint +52127 79b644bf011647a531d3efd2a63d57e58390d55d release24-maint +52128 db6ca3ea53e5b67ae41841e50e75cf20838553ba legacy-trunk +52129 f5d7de5031aa4e227dded227195838f62fe1f7b6 legacy-trunk +52130 ca887d55c59213d34de87834328aaf913d9202b9 legacy-trunk +52131 8a2853bf9ecad3b165fdf97ce8acd77456745595 release25-maint +52132 e039cf6b7d429ce5905a7a1a82c75a2100fd4d54 release24-maint +52133 1b61e82660ba9c9c012322f49d47281e04588fee release24-maint +52134 10bb7acbbdc837e29a9b11f1387a6b1b2ca045fb release24-maint +52135 2add44c0de6c7daa647e7d8d29361eb49e8a6547 legacy-trunk +52136 a9b1f404e88b59ce481f3bf827632ff103268c1a release24-maint +52137 0c8e9f9272d5f3e14471f550b0420b087d2674f4 release24-maint +52137 0c36410c39e8ddbb8951857dc4adf33f29fdc35a legacy-trunk +52137 4eb286e931a95dddb18d3ecc69ac9732475f4f3e release25-maint +52138 798935e1295e7fa3241098308e57502f515aeedf release25-maint +52139 6ba402b600418a568453fab9eee7f3cb8aa140a6 legacy-trunk +52142 bfac23388a224e798bc211f5a6fb56a79dd01699 release24-maint +52143 df7a5435ecbb5cffb560bf2093304ae985853520 release24-maint +52144 42abfb391300a2507657a9f55209ecb75221e2e4 release24-maint +52145 04ec391410cbe46eb92fd0903353240f77a786b7 release24-maint +52146 5270b1e36648ef04278aacd386af13668611c586 release24-maint +52147 4404a3981470641d317b899a5599091935f62615 legacy-trunk +52148 8aaa3d91eefa7f296cf2c7c3d791bfb7e3626642 legacy-trunk +52152 b1e7377ecf0446010437c24cbcfd6dd170c1f488 release24-maint +52153 e88c4267acd1c79174bd0a6a1382383f26c7ef62 release24-maint +52159 a4bbfca40c7cf76f01b5d824ad6b7003a2ce65ef release24-maint +52160 f6bbe8d6fa330355e2fa61a7de8322053a54e2ca release24-maint +52161 1f588a982cc56c75ebb80ae04d58914dd0909a6a release24-maint +52162 8017b3f21f62e6a04b798d3a622beba42741d33c release24-maint +52163 c27d8f89aa8915519c10fda7fd5b71a621f2bd1b release24-maint +52164 9819cdd2fcb1569adba93fc328ed050227b727ca release25-maint +52165 a9fee1f62f176067666c08f7a6faa88ef4054526 release24-maint +52166 ab13576374b1a95ff70d9e9a385d0ea22af0e561 release24-maint +52167 5e244994e42e534275de24bbf1a5b8493d5cab44 release24-maint +52168 5d93e5ccb31e74c783438ddc77948815578350bf release24-maint +52170 cd6ce666eff91bfa2126512904b45197c4d85a07 release24-maint +52171 e65836815791c7bf6ff001231f04081c248bc9e7 release24-maint +52173 3b57eecdc504a100b5fd34d16b4218a909550a68 release24-maint +52178 2a46b76beb9ebd9a256242edf06f7317a3522421 release24-maint +52186 4663ace23499ce67af0b4cb5829dfcaeb996fe3d release24-maint +52190 7bbff2e9a9c219c5f90ed51b4cbab1312c05fba2 release24-maint +52192 5bec4a67ff0da88dcd47382754f8087b8679ebb8 release24-maint +52193 45ac9ce0bb15716dc1cde4414994be19019928a2 release24-maint +52194 6bb375f559ce4674c1ce7c34303aae966639249e release24-maint +52196 e81ff9af641db25cbc3ca395cb9a0934ab311fe2 legacy-trunk +52197 6b1ddf387bd195e58ba3243ceab3d666635b30de pep302_phase2 +52198 5434ed4fe8622671e3abdd954c1594968b009df4 release24-maint +52199 4713d9900e9e9cb7160ad1a87ada13d8b83595e7 release25-maint +52200 77674c0f92141069756fd8683cd3f97273f4ffc9 legacy-trunk +52201 78d7bea3c1220ba25a7a3993e61093b99ff20773 release24-maint +52202 dd54bd6a6b1eca4c5f30766926dacf3cbcda632c release24-maint +52203 076c20ca5d7b6f359c3f95619a5c2c4be7fb8ea2 release25-maint +52204 26c2ff728027ff892e3aef136e56ad2b19861bcf legacy-trunk +52208 5aea8b1fd262540d84f8eb17d948f1c1bf8f6b24 legacy-trunk +52209 35714700cf87c54b0431ab8549ecbb25fb5f54e4 release25-maint +52211 0e9fdb164d20612d65b8628d5b555fd73eb3b523 legacy-trunk +52212 994ad750b0e3bc058c5893b1bd5ff91d172ac357 legacy-trunk +52213 5d83994cd8cdf40a4b335a83afadc65e14058a35 legacy-trunk +52214 d24eaaeda748c416f6726dcb82c84d8481383596 release24-maint +52215 9118ea781fd52af4da649441520650261d56dddb release24-maint +52216 2a05ee4a23e071d1ed25f8c80919903ad6026925 release24-maint +52218 7c34944d4c80be9758c00c6e2c66215dedff0a78 legacy-trunk +52219 a2f26f944b657179afe36d3e6d6ffe8a282b9344 release25-maint +52220 ed88d6b7c1f966903bd91d9a9ee7e0391ab2327a release25-maint +52221 16e2892e1e3c2a26915c2618e705c89abd642c99 legacy-trunk +52222 9e0431fd674a24f98db1bcab7acb3c61e902f8ba release25-maint +52223 347794391ce4340bb5c21b1e81c64622ad5eefa8 legacy-trunk +52224 d3c1947d1666531e1ba1b981f8126b3d5b00aec6 release24-maint +52225 93e2b3112d79e109ec5b640a0d433535b0f1265f release25-maint +52226 699cc6a5c86eb8a59ab05691d8095aef51ce5e60 release24-maint +52227 b9d3301e5f195e60d9937ba7a99e45bcc241b43a legacy-trunk +52228 deeea4da1f3549ef33adec6196049c74d474a82b release25-maint +52229 20474d9e75e14bdc204469dad406b8fe39778d69 legacy-trunk +52230 f805ccce2f564e052e6868c0bb6e27469823c7a4 release25-maint +52231 693ff5d7341251f96316ed165eb4eefc46d35d84 release24-maint +52232 0dc261d8c57fa84531f1d283e193a04b411f3b2a release24-maint +52233 83965977f34a1ae394750020c399d8836d07def4 legacy-trunk +52234 768894f33f1c347f4404de95dbf3bee3631aece2 release25-maint +52235 7117f6e5ac8398de71bafcd2563c0b831d60ee68 release25-maint +52236 91be96646407328aa77fd3c4802cbc88c9800e61 legacy-trunk +52237 20dd13aee23349122921acb22e7e3442cb841c65 release25-maint +52238 c339a1a16ec5b64156d260fc6190d3d6df13bf36 legacy-trunk +52239 475228ed2054c782ce523cda664468c94504303c release25-maint +52240 0ace3c80611412db8801e7a34078cb3790c692a7 release24-maint +52242 aeee9f5a0b3ec0e5c5b62bad364f82873b0b33a7 legacy-trunk +52243 de2b6a1c9b31111551c86e0db8a81a7140fed64e release25-maint +52244 a60495b36f38cb2ec4b5b10b4e8d58bf0eb612b5 release24-maint +52245 c3877b6430b5d89e2e09bc1a4e8746211b7f6719 legacy-trunk +52246 eda931f398c0d5efca0f48ed28b7c24c57e0c0a7 release24-maint +52247 ede05d34c5183fe316a4ebc00c74880f3da9c3c0 release24-maint +52249 4eefce8bc2f748a337da7fbc007bb224a19e08d7 release24-maint +52251 665d7798a1bc8a60b68bdf32eea03942ea4c63ed legacy-trunk +52252 bf6a02ada449e4a2c982e5363463845e8860a0b7 release25-maint +52253 38356951c19f98aa64ee44e67c145ec770b30ca5 release24-maint +52254 1e4e015c07c074de7db4980346d8d112539b4a69 release25-maint +52255 f46badc8dc2133982e328e460c9c083a226a2a20 legacy-trunk +52256 d33e4011e2029479aaa57ecb0bc09fde77c97984 release24-maint +52257 28db611014636eea1c88d0cd3fc2cdb14c88432d legacy-trunk +52258 8ca9a7b11a7d4261ba0c2b8e6a3ab07d36ea23e7 release25-maint +52259 52b65f28be17172031c33023855137e8a48eb5c4 release24-maint +52260 ce515032fce37aa1b0d8768d07762d71b2ee15f0 release24-maint +52266 30909e1caf79c8d54462d5d5932aa6afebaf9317 release24-maint +52267 0dac6de0fe78adfbf98fdeea43180ffe8838c6f5 release25-maint +52268 66b83d1ba2fc5f99f99257aa33f7d8063c7f1e43 legacy-trunk +52269 b2edd51241ae221a94cb1d14666d1f6f29357d15 release24-maint +52271 56b911dcc185ac60fae9be834ed563efbbf89d0b release24-maint +52272 f7fbdc562d7adf6897a3d68a7d1b8b423b181f41 release24-maint +52273 5bcab4ca66080497ebd7cccc77d92b80f2387575 release24-maint +52274 985126873740def55773bde540c6d26231cc46ac release24-maint +52275 a1c381c05ddec467708ef49d9ed2c0da8def597d release24-maint +52276 baaeea722b1c97ca03179e5a02a4717e7017ba2a release24-maint +52282 a0454f1f97c6cabb36c4faccc58938c9dbf0945a release24-maint +52293 ac650ad6c817be2a56687aa0c793d11d93438269 legacy-trunk +52294 68b4d0dab49ad1eed6b6386c8e620df69728f340 release25-maint +52295 70140cccd3da73bdd426398cfb5a10038118b038 legacy-trunk +52296 6670dda4b27d9f2d1220eb494e2bd8f16e84d0c5 release25-maint +52297 deb1a0b5dbcb8eab7d849bf214d517616bab4ce1 legacy-trunk +52298 c68fac1eb6cbe478b4c6583916e71c419093dbd5 release25-maint +52299 c0208195a558507563a8bdfc53702d33440d3749 legacy-trunk +52300 7640a57822a67ac6ad94192cdf4e7b34e9f67c7f release25-maint +52301 647598c1a9d9243bc6fdba067be48aa117332462 legacy-trunk +52302 6e6c220c2fa622ac268dd4f85715238bcb5c1f7b release25-maint +52303 d27e7632681987ae5699b51d87c2604b2714388d legacy-trunk +52304 17f417809e23983c03d6662fbce4c496ccb3f762 release25-maint +52305 4159386f8dbdfc0556d63076aef5e6da431a379d legacy-trunk +52306 a0bf7281bd20b65a584f4a6299cbece25956d834 release25-maint +52307 10abfcb66e67bdefa7d7c5709d957067fe24fe27 legacy-trunk +52308 cd5f7cd2098eb3f74abe8fb84ffa910b2f106eb6 release25-maint +52309 f4430bec3013e28f911145da5ae6c0d6917081cd legacy-trunk +52310 1a1a59f50b4ae228f961c9c2ddf3565c9e752102 release25-maint +52311 a24801da92ee0d52b61030fad7a70e5e6af1b8b6 legacy-trunk +52312 1e8e900d9f49d27b40b25b643a43cab95b967c9b release25-maint +52313 7fabbc4a0c4e86b66803e8462d77c498179e61f9 legacy-trunk +52314 3cfa88fb0f453978c0a6f20b03c266f82843412e release25-maint +52315 635438b29673fd611f2299bd7c869ef214bedb1f legacy-trunk +52316 c4c4eec64c1364bc6884ac0b54a6bf70868314e6 legacy-trunk +52319 c77d9a9fe7043692f3cce2cae12121794c1ad699 theller_modulefinder +52320 8e685b2389dceeaf3914a514609613485b4c6cdb theller_modulefinder +52327 39b991ba878f7905c684285453165ddf6fe81bdd legacy-trunk +52331 109f90c266fbc28736c435a5d99035ef307babca bcannon-objcap +52332 3985d7e2067db75f170e0891994b0fd70963e40b legacy-trunk +52333 b61a90e747e7c9290252983c656a4272c79f7f06 legacy-trunk +52334 84d3b72dc3392a6d10decf9bace0b5bb7ac121f9 release25-maint +52335 b94bcb7aed3dd3aa7a0c9e7a02dd8889ef8d200e legacy-trunk +52336 3bc4a9401a11617b565762fbd010ff53028d55ab legacy-trunk +52337 dae74a8094d90a3b0c5269fe661eaa005b2cfbb8 release25-maint +52338 bb35c55bc4670bd0deb29576e19c6f85ddf02f8d legacy-trunk +52339 0f505ec8b97aa21e0faa16d440f4690f73d51e25 legacy-trunk +52340 45efe4356b61eda030967f1199784a8ff4c09b9c release25-maint +52341 c006d227948deed49dc81e13b06356a2e0698c18 legacy-trunk +52342 05c0cd27abca08661340ca7ce80343cf7b9b8602 legacy-trunk +52343 de88c363d622362863328e26e2ba32ad8c2d2a23 legacy-trunk +52344 a29d100c78153c10a2a24ae70ba8a95ae89267c1 legacy-trunk +52345 5615eac8aa7976fce6662d88466c43abfc3c45e2 release25-maint +52346 2a1a5dc255adc92b71148681575a1abc1f491666 legacy-trunk +52347 1e555f048e3d4bbe0b630c9432c4365eb6b1e962 release25-maint +52354 fa96bff93bcad00ad73d692748f86839032e1e50 legacy-trunk +52356 bf8daf4a6e71a1ea2e5de51fc648df75e5aa8841 legacy-trunk +52357 469c2d6c8165b25675335aa5ea39e890c3970aae release25-maint +52358 850508391d46bde4e00172a49491c1ab29600a83 release24-maint +52359 e1cb32645f77e1f97ef9177cc10111d7180ea60e release24-maint +52360 7c7eb190b26630fc62e64e895509526db6c3f255 legacy-trunk +52361 a6511e8297f048c532a874956ceda55ff9586eca release25-maint +52362 fb5db12f026760219c8ac6344152c46169a45213 release25-maint +52363 14513db0d62d50ff22a23761e33b935877ff2efa legacy-trunk +52365 52fe0ecf55c1a18105ff5c2d779a871f7fcaf548 legacy-trunk +52367 4050f253a6f8a5f0279388cb6ea10799b679d3d7 release25-maint +52372 34555422dc45f88f5293fb9fba319b559e876aa9 bcannon-objcap +52377 498cf4b09d8ac03e45f3a0e26a73cb913fe76780 legacy-trunk +52378 6609f020649f0d0cf653e69e8a1906a86a3ca4d3 legacy-trunk +52379 a1a6791052886c890a0f119c525c3d2718f27c4c legacy-trunk +52380 b1d708c33eab4290262e96853cfb4345f9e0730a release24-maint +52381 fb0c6a67a939e8a2ea2779f79e32c3b7689c37e4 release25-maint +52382 ee66a15a903021ca2504a32324d3dcbc46ea8a9b release24-maint +52383 592ac93532efdfa9a40f47b96b1c1231d2eae0e5 release24-maint +52384 10434d1b42661b700188c82efc35071f824cc1e4 release24-maint +52387 410c1c78ed51e12dc3de957959f6b7970c37994a legacy-trunk +52388 e2df1356349f168baebb335e21c158333043d4df legacy-trunk +52389 0509ab14b2d97ceeefe25e96432f4e373eaab82e legacy-trunk +52390 18c12d34214382faf8c5fa5cb3c63649053842c6 legacy-trunk +52391 19de316492e738ceedecb8ec5808475136dc66c0 release25-maint +52394 3b85333428f986dd6d91d57f07ce50721b0185b5 release25-maint +52405 86ea88c5205bf50451a3230f6735dcc2f23c963a release25-maint +52414 826e8674a11d58957fbaeadde8c0964eec07f231 legacy-trunk +52415 a0d9fcf6f2153f5297a14be2e197db95a171989d legacy-trunk +52416 384ef87fcc2579ea6d5e9b778502a0c4ff8c5120 legacy-trunk +52417 c5442b424a869385e033ce7c28fe7aa6027dfa6c release25-maint +52418 5030fb4a400febb9ac8cd4792b8676b8e598d955 legacy-trunk +52419 e9c844c4d1a1c9587efd76d9e11b7ad797aaefcb release25-maint +52420 749d855ee3571ab7e57c2f4918d551021cfa63c1 legacy-trunk +52421 123c14ed308a15381d40b0839f537d08eefe8cb6 release25-maint +52423 4ecf1662449844e6e0cdc99b44817cd3d9d91cb0 release23-maint +52424 8cd0b7113a71a0551e3830cffffa58a01816a04f release23-maint +52425 b21427ff26475f9c7f4a701da324e951c2b162fe release23-maint +52426 cdd3476d1b06b3b4ecc89ed35d5b48b6dfb603a6 release23-maint +52431 e82e696c03dc8ad636a733175332f27c5c7c67b7 legacy-trunk +52432 050040cba26a45a81998bd795a2a6e2d0334f56a release25-maint +52446 9186598296cb09e15955a57d189a271f9d7e89ed legacy-trunk +52447 947366e131fdae2012d8f96b2d29ff961b628ca5 release25-maint +52448 d78a7a6056193968e8856cc827d83d1139f884e4 release24-maint +52449 1586fab3c848b944727e1c4fdd97afb3963b67e2 legacy-trunk +52452 0c1cb92dac97ef39e115f9c59ca334939e8bc8e8 legacy-trunk +52453 0e83f8c5d70aec34731b0b8e1fc5a70acfc62822 release25-maint +52454 c0f56f2461f5298fbc13914f79ea3c7146ff8769 legacy-trunk +52455 5dc47316508fb4e8bf26bd02fda55e0edaa01e46 release25-maint +52456 015f89a73929e4bb3cd2b47dd0021a22f35844ec legacy-trunk +52457 34dcbc746243e67c216cc9c9aa48aecbb0069b18 release25-maint +52458 e5cb4cb56541b97cb027edaa2ebb4dba36a73e64 legacy-trunk +52459 d3dbb326ffbac79a57c39f6b75ca954e4f64b5b3 legacy-trunk +52460 ad4c9ba1db57fd1e02c04d669791fb97e6b5f351 legacy-trunk +52461 5a106b4bcdd28f23ac3bf949fce190e00a97e196 legacy-trunk +52462 e5782e2a412ba18e32bb696c4ce8b11534cf179c legacy-trunk +52463 7af94a2723ecb134ffe0b0dbb03aea1ae9235f7a release25-maint +52464 0d5176e2bfe4b44a91e74b2361d2f393385c32a3 legacy-trunk +52465 ddb1db56560893c4b7a560e590355a9e5ce6e10b release25-maint +52466 e867b595079e927e4f2cedf9a0ba42b51179059c legacy-trunk +52467 b56b562e3a7b7c81f10e1696aface19d2052f2c6 release25-maint +52468 762dcad720b53eacf14a7c3706f72ee59c15d0bf release24-maint +52469 e2e80a0169452209a6e4d22bc9ccad2001ed47bb legacy-trunk +52470 c5a6ace3fc7fd254b238d7bc0b4a2299c412d196 release25-maint +52471 58db968d14482e7c9455bb2b776ff2d6e0d7925a release24-maint +52472 6b91c0dcea58a666b7911cf8df0c87c0f786d40c release24-maint +52473 8f9ad358136f0391429d41b5fbad366b6300c2b4 legacy-trunk +52474 29c01e62ce6bcae681690c26cd2a52e3cc181cfd release25-maint +52475 195559c5bacdf06c262f60dfeff4171387d8ae5a release24-maint +52476 e3b9c6397723482cd1aeb963dd43befbc205efe2 legacy-trunk +52477 f45b2f0c542fc3c2b8aea75e966e220f5f960ca6 release25-maint +52478 770c718bc97e02a2b3cb27e4db9cd350ae1dd63a legacy-trunk +52479 bb0db45f20ea2bc377fb46eab5476de25e2f1f23 release25-maint +52480 fb9a7b288dce2943556e25573d107a2a6b091cc4 legacy-trunk +52481 9d691d3755d0de4e1eb12749b9c31f7d9af697ad legacy-trunk +52482 b91166e8d38db0c71c3ed39e6cf9c9a433e7f37a release25-maint +52483 98e90049904341540cb29004d9d3e49954dcb6fb legacy-trunk +52484 8624909f5031f40d9255f7e677f8d7091129df13 legacy-trunk +52485 988d95ff1fdb72ad057c807f8706a7390b6f0a1f legacy-trunk +52486 18871a10ffc1fa54fcb209f82a59f165f2218218 release25-maint +52487 43a826467ad3ceabfb4144a74a052013e1bc950e legacy-trunk +52488 5d5f18443664d15722d2a76fd449012d4a915e59 legacy-trunk +52489 dc1e43617972822f27d17bbc27771a5f4faf77be release25-maint +52490 d0bd8a8afb0103c6c13c53c5f5fb8197c4a10914 p3yk +52491 1cce0526d9b0a53f4ff95713dde153dc70dae2dc p3yk +52492 21908c70d264bcf932738839c43f4a13d60b3756 legacy-trunk +52493 13b8ad679defc7434b1ba1c5e33a1fb2349808fc legacy-trunk +52494 51339d39a596aff02ad15c388467abd71b361056 legacy-trunk +52495 69728a7d231239cec5150eb7b15dbf6e8c75b512 legacy-trunk +52496 7d0bdd6e1c468b2b561a635543b8fe2fa7b3101c legacy-trunk +52497 c381fcf9d1081c655d8c66e952f9ffe297f890dc legacy-trunk +52498 2d5a5dedd9759681e9eb23b1b975d42879ff801e release25-maint +52500 4c53b243c3922a454315c3ee576c4f207dedd128 legacy-trunk +52501 c58d1b9698438e6ac0f8f4bd014be05a6a94e276 legacy-trunk +52502 796304efa268c05d2e3e97f88c6208dd576fc331 legacy-trunk +52503 61e4b59ada0c29ef924d11a862f0ef562333b114 legacy-trunk +52504 3608605a74d58e56ea8a2a9e3b1582b57877caa7 legacy-trunk +52505 c4e5e53ba73f358b989401cf3473bd416eef0475 legacy-trunk +52506 321c075f95cfdac7d1e18bb051ae380fdbbf225b legacy-trunk +52507 a1863833c4e6f70ac89286996598207e79cd1f7b release25-maint +52508 4c61f400ce30d0cb9f856c0b8f1434e8effad514 release25-maint +52509 380a35d78c60896b869f270e90cd191d1a0c54a8 release25-maint +52510 9acc1775d5714bbfe21903b14ef56fe2e33c1a35 release25-maint +52511 6a6469e294e72fcabc9a40a358eaca087f15ada4 release25-maint +52512 d020e2f708be829f3597c41e8862c294c1903f8c release25-maint +52513 de261f763b4cc04959047fcae4b9f602f5631fbb legacy-trunk +52514 481bba41f9f450e265f1a9172a0b46b6d449c236 legacy-trunk +52515 d21dd8cbc716167a0416c873694b3652ccc9dfe2 release25-maint +52517 7c4058681224955de6aea2faba4a1aaf233c19e4 legacy-trunk +52518 d245efc7ec890048aec71bec9ccf14214d83ea5e release25-maint +52519 6a860c81ab7d08398278c7ca6d6963be436d1ec9 legacy-trunk +52520 4d833fca36702cbeac473616023488d907d1e864 legacy-trunk +52521 2a1eae6c0eb862a5a84dbe500b20bdc52a84c17d legacy-trunk +52522 a72d970c384bd13594c56315b8a5e2ab3eaea479 legacy-trunk +52523 3d3f127d3e0c79be83fb50b2cff350f730fe0f7c release25-maint +52524 fd8a5f925d4d5139ce262372113bfdf13225a693 legacy-trunk +52525 ed22ca8f78ff03a530b0bfd50633fda4da90edcd release25-maint +52526 c7d778da162c920faaec2b3e13fb89ea3551311b legacy-trunk +52527 9663100c95ca2d261217154f74364a0e7c701aea legacy-trunk +52528 7c44144714f68f92a7ab74233d4451f699c4b8d5 release25-maint +52529 e16800ac1eea141f0d23e43c3203d53040ad809c legacy-trunk +52530 82695e736823f02846ecec0507ca18411892c7b6 release25-maint +52531 f49cb609042873b65df8eb35721c7c324af8a9f6 release25-maint +52532 da79c4e9a5bbfb574a2cf02dc7101dba38903311 legacy-trunk +52533 93667a785b834660f3e5ee2d50be3b125b5bf876 release25-maint +52534 c6774eb3a067365fc98964247cc98b8c2f992696 legacy-trunk +52535 9ab7a7736ca05d352ba998d25eb349bc0fae5b7f legacy-trunk +52536 bf78be63f20d56be4e803b72c841004fc32ad7e5 release25-maint +52537 d9a8d4f1d6514c7fe947376531b076ac422badee legacy-trunk +52538 f56b25168142c9454dd089e97759c8d08177a434 legacy-trunk +52539 7ce872bf00a3f9da14c05d546a155782fc8124cb legacy-trunk +52540 414ec262d608e4daa1cd38d540cdf101171a9f1c legacy-trunk +52541 8d6d315b2af3b95faa65d026573e3d6c3caba5bb legacy-trunk +52542 ca3d1d3c4d8c2cf32f4a77781133742b86f3cded legacy-trunk +52543 c3707da80aef39e947b8fdb1fd9b2f03305a631a legacy-trunk +52544 1007328f9db514eecd1b91ef6b8aafae3c41cddf legacy-trunk +52545 75506810cbbf4cc05acec78fbfe61b1b9b585ed8 legacy-trunk +52546 ffcc696e1da3c2428c6de1600143fedc84340619 legacy-trunk +52547 0d0ae84dd1b7aeaeb810f60dcf9314f1190f0c02 legacy-trunk +52548 1715e6a0aee9ad0fd79ff01343bf81689184d936 legacy-trunk +52549 c5a2f431c698ef30f48fc1fe649ce7b4bf6b9598 legacy-trunk +52550 a8a6e2b84bbaf68d47b9056bb94b9ad751eeeb22 legacy-trunk +52551 b8850aec0466ffed382c5febff61bad4233cc172 release25-maint +52552 bc8ffc3e3cdb4e9cf59bbd6dfca5301312239e86 legacy-trunk +52555 b820406852a0a9cd0be4d92b3dbf63e4e434c862 legacy-trunk +52556 33840c4072b747421fd749078f3ef79095eb733c legacy-trunk +52572 1abcfefea3eea6973182f31d36a8b95fc7be48f5 release23-maint +52573 3b6fb5439c1061a941401245076c315beafcc787 release23-maint +52574 b67553c14fbcae1e204b756dc4cc92e1d4adc7c4 release23-maint +52588 a3be40c072503037b6efff5a31ee8f10b36de424 legacy-trunk +52589 871b05d252be0aa11dafe18754ad18bcb26b0d67 release25-maint +52592 ae411fe1eec01b2a252712b241091d318b749ba9 legacy-trunk +52593 3e4e0be40f520938576e7676ff0457830b66b352 release25-maint +52598 ff678669aa6e131ecd2ae87f0231148ed0e5a475 legacy-trunk +52619 530d7eb0c6c48f1d50ad5440e5da0e35e80840ac legacy-trunk +52620 6df4a9143ddf8804ee958e367d5357d417b97d27 release25-maint +52621 ebaf347d42fb14d73b89bb9d2aa07191fc72dc26 legacy-trunk +52622 003d83da993262502b1887c0b73eb368f84eda5d release25-maint +52630 1f055fcb6ca660bd7a3d0d987bc1058115c7da5e legacy-trunk +52631 d785c29f534035be302b0bd256235f49096e306b legacy-trunk +52632 1a0f46883ea5f0f121213f323c558f6b37b59b65 release25-maint +52644 cbe133d72e3972d71d23ff0a5e7b4857a0c55f3c legacy-trunk +52645 5531f46232b7af4ba455d8a7af6402f5e9e64060 release25-maint +52646 24498d43126cb89d72ef7d3267255c95dd776dbe release24-maint +52647 ed2ac8084e04850d5c017be26e7218f6a6cef699 legacy-trunk +52651 1de5e739f9ff593de90a23e651393e881dd941e5 legacy-trunk +52653 3cc2eaf0e581499dbffb03947b9bbe06ee77bbde legacy-trunk +52654 f8862998270fbfba0806e88196e8433d7ce93dff release25-maint +52657 9633f538c98da6ef5dc348f33f0cc06e183666fa legacy-trunk +52658 8d68b224a8f058e31364ebd12ef9fd57a9e29169 release25-maint +52662 61cd8c87cfe2c37e4d3577caef57c1b0f2924ec8 legacy-trunk +52663 78c75b3d3d0bb142016f4a4649685cca78a9ca7f release25-maint +52664 fa9029a41ce8ab09c83988cddf90fa8dd21f6ab2 legacy-trunk +52665 bd1623d04bfc44e1791820f1ed5524f0d4b186d4 legacy-trunk +52666 4f8ebacec5f053628c8f24d1827227773c08f9e1 legacy-trunk +52667 02c366b2aac2cac65f307fdef8cea68af3531f13 release25-maint +52668 0dea37bcbeff4c00d21c7cc0033d573230079933 legacy-trunk +52669 7b851206d24ce34c3499ede3c2f35ee2831e138c release25-maint +52671 70c756aa9273c2086371c956f784a709730ea1c6 legacy-trunk +52672 357c99537e852dd339a2db0619f19d15584f9dee legacy-trunk +52673 57674212c37cf2c9560e6f24ed5b5818ba683032 legacy-trunk +52674 24a5dc7779316646e0d20bf312656a7b92b195a4 legacy-trunk +52686 526c9584f25278672676d0787575766f62e5e2cf legacy-trunk +52687 025b24a261314d10ea1deebe656ba0b7ab3c33a0 release25-maint +52688 07b29bcfc0135236911d315704bb5be218730528 legacy-trunk +52690 6d99762cd81881d7dcb43ee87eebe229f076e736 legacy-trunk +52691 6c0677273c5abb3b58bec6d50199238c8e58a9a4 release25-maint +52692 ad796fe472caefe4718fdee5a1fccce820618715 legacy-trunk +52695 7059df7c15df82316c189d9a356796940e60b7ef legacy-trunk +52696 c30c584cc6aa496b1a995e1186dc2e8bc5de44e7 release25-maint +52712 561ffa757dfb5a4c2261ab653ea0006ddcb3a439 legacy-trunk +52716 54f622dd3b26664a52a9e126122bbdab45c9176c legacy-trunk +52718 732425e3b9274b73f5f77e1fe65e043dcc30376d release25-maint +52719 d75cbe2b96019c92091bbc37851bf7ce837e16fc legacy-trunk +52720 0e5f2d0548eb6c966a72168ef089e12e38e44897 release25-maint +52725 6f2970922c44cd84fcc60c874e3b88d666244e67 legacy-trunk +52726 616a208f4b8051401c8ac4cb706cb17232fb1b73 release25-maint +52727 10a9774bb3e347e0ee7d0dda693deccc97b68b79 release25-maint +52731 4460ec24dac90f9c9ab69d0d2d0cf2e0e705c09c legacy-trunk +52732 35cf133ac7f8f013aa81a79aa723ea87ed4496f8 release25-maint +52733 2cf18f127663c781602e4948fb53b06445d5424d legacy-trunk +52734 633812e8ca1b6a9a5ad2f5ec046b419109343f8f release25-maint +52736 90d355829bbb786885893e1c0ea065cc398bf70e legacy-trunk +52737 9f7fc68a20aeddcee6b9ce95ee0676e6d44ccb78 legacy-trunk +52738 bf4d20476a8614e9a1bdb38e35a1ecc2a599d468 legacy-trunk +52739 ecbe91b5e46a535a85351981dd1cd7e40bdba94e legacy-trunk +52740 591daa5362b2d48a272135ddeea151f5593fa949 release25-maint +52741 d49e0de4019d1f55e01cc207c8e18ef69b908590 legacy-trunk +52742 eff11e435f4103a6e751713fce64bf3b665637a6 release25-maint +52753 7e0cf6e3650c8e93c415ce3afa886be34bed42cc legacy-trunk +52754 f91b6d85cab5622ca4eb102de0eab6e6f86ef411 legacy-trunk +52755 a1c0b514cb539a0783695389669fc8d25a3568e6 release25-maint +52762 b80a368853c75a760a6619f8f4e07bc5f6411cf5 legacy-trunk +52763 8a365fdcdc48dcee59689db20de5cb1599716129 release25-maint +52764 ba563ab7a57ae2d87f6edad97f07dad1ea53bb5b legacy-trunk +52765 2515ec4b5b3365651c58bf618891615a78ce954a legacy-trunk +52766 e26c5178073751cbc4c1b26d0e7cd41e358ffb17 release25-maint +52776 7cee9434981a2aa8fbe7d524b0e44fe63a57b56d legacy-trunk +52778 4c62c8290d4f582f4a4d321c03d55df5b54e5b8f release25-maint +52780 89f2e8da0f0f9edd61c8f5379b34c723a8fc76e6 legacy-trunk +52781 c1ac8bde5e176d34a8e2bdf9a3be99fabaac07d6 release25-maint +52782 5c08dcb7d2809f44cd43b4bce30b1135b22e6c7a legacy-trunk +52783 78c0e72f16d3d077f922e80133a488c0e2431dcb release25-maint +52784 320dfdee896897c5c72c47c38d0b16044e1f2ada legacy-trunk +52785 a0406e933a81737db5ad6f8f862fc44e08228167 release25-maint +52786 5fa5ef559a2f13b8f3a366ff48822fcb11312a53 legacy-trunk +52787 b871e7bd8355b2922dc9b723800e8631ec1a541c legacy-trunk +52788 0fdc2b8211f92e56619e6ebe17e389ef5a819345 legacy-trunk +52789 be2f5b2d53b3bd261c691732d28d07e9aba0c80d legacy-trunk +52790 40166e5011f8190a8b900718aefdb518c946eea0 legacy-trunk +52791 9fd1354da6db6b2be86b47a1959a52886c5bc5b9 release22-maint +52792 271133981e63e1bc78f89e77013d100a7c79912c legacy-trunk +52794 64e0ac8396a3d6ee23e0f354e0452885902ec27d legacy-trunk +52795 606e1f0e87bdad6cd243595e1bcb1408436fa380 legacy-trunk +52796 42eaed8d2b4542affcef01035b7a039529981672 release25-maint +52797 f3a63185754475cd55b08569b18ad56e3fffe21d release24-maint +52798 d7ac3b8f2139219ef8d266777dab5f18bd465c33 release23-maint +52799 8fda5c86cc16cea893114c5cf057af856ab1897d release22-maint +52800 cf0e68562604d9a2a3663bd30f2d3ca27337e978 legacy-trunk +52801 ce4ccf87f56e46394ebf0f3329ce65e147237154 release25-maint +52802 c7a8cb095c4851f8190ddc1747b05dc1f97ced92 release24-maint +52803 95ae741e287baf7b7091ba5e61c2bf00b2a659e7 release23-maint +52811 99cb38351ffc40bbc301f7c3cf13c55dbebd326b legacy-trunk +52812 ab1885f3443a7dab3a8e494dfb4f817abbe9d6a7 release25-maint +52813 a27ede2ca6068a5168b562dc4f9b65c07f1cb2e2 release25-maint +52814 61b069b84d0afcc510d25762ce632dc43188317c legacy-trunk +52815 b0c08ef1c3030907a66d87b7cdbe2e3c0230cbcf legacy-trunk +52816 6e1b9007bbdc6048b824e6dc9b2177efeb584a1e release25-maint +52817 d183d8124803d0272e5cdde43ea8afa9d0f0a890 legacy-trunk +52818 a037fa8f8458e31f31f2a71790e37b877c8edad1 release25-maint +52819 259d269008617cbc17d910f004f0491ab73f00a9 p3yk +52820 d75b0caa67db9de61210978bdbaf1e6aa4ebe4c1 p3yk +52821 93dbfc654b6a222fbd52ab8ff43beb7911fbf603 legacy-trunk +52823 7f33f24a7c4167c8279d68edca42ea9b6e3d3940 p3yk +52824 25cc6161472063bacc6a3fedd59eae02e6b36d01 release23-maint +52826 a3e0f1e11082888e93d0c8285eaff25968d85dee legacy-trunk +52827 b6b02593145133377de2831ead9a0b0e8cf98b80 release25-maint +52833 291e6336867b674f0f84fd4cc0f463621dcc6715 legacy-trunk +52834 cd3d6b98caead266b9002c8cd77195c6d8ebfde0 release25-maint +52835 00462ca48845480e9ca8423a4bf75b7047b22fc4 legacy-trunk +52839 e7070d67db8c7c9fe33f0c78b9fd564204f35f05 legacy-trunk +52840 193146e4d276c044ef7aa21b3f5ec4d3b78eec48 legacy-trunk +52841 96be9d74ad3675040d6021c3e79691d5e5e26446 legacy-trunk +52842 586dd8eedb75fef879a6cfb4fb50026d91447c3e release25-maint +52843 250835dc544aa6003d20366076a252e3d6532ec3 legacy-trunk +52844 20be431e75401afd9b76ff40a1f8cacd5bfa7384 release25-maint +52845 454eff2706d3b8bb271dcce147f5e79a8149f02a legacy-trunk +52846 a55d465d40cfd24de5d52c109cc267f1a6fe865d release25-maint +52850 ef15470167033c74ae505d7d42a0dfb6d3dd9eab legacy-trunk +52851 a1015302d7e4d42a0af1695c086d2efa827d08ef release25-maint +52853 88133417dfd05b4e156a6bce714d2af019c5cab8 p3yk +52855 78fb7990c5aa595bfbc4f17ca81d8fdc28a634b9 legacy-trunk +52856 a1fd93b5891210878ac3b4ac7e4f9066433e493f release25-maint +52857 02d513e871fe9572d22f16202649896e68e31891 p3yk +52862 4e368e82c70d6a1e3120842fbe241ab32965c2fc legacy-trunk +52863 39ad99dd67e4de5cfa9b315829432d112514546b release24-maint +52863 98a1eca3a93083ccf01f45d09a26096bde4106f9 release25-maint +52872 fef5b774818bdc4e6262a23004ea2fdd3b90455b legacy-trunk +52875 1e3f5020bb5558f027779a3e21a86bd35271f14d p3yk +52877 2e5011acb414d4b26788c0357a05b1aa54b70f72 p3yk +52878 b3ed053cc6a1f2b1f2acc01cae9534ef7919bd42 p3yk +52890 d800d673755641444a2fa6cc78bd862533929a1f legacy-trunk +52899 0e2a073cbbbfa7cf7dfaaf5d4fd1673caea4b476 release25-maint +52900 c7e7e7196a4ccf355fae912f1d9e924266642d2e legacy-trunk +52905 3ab12d1a17d2ee348fd8abf0edf5506a77fcb01f legacy-trunk +52906 c43787e6d7061d57fd708164d0ef02fc00d9a562 legacy-trunk +52907 26b713a19534f28e7de2aab9aedc69fe17c5cfb3 release25-maint +52908 3ee9d1a36d464309cf4cbc1528d65170f9a758e0 legacy-trunk +52909 a014692cfa668ded1c0bcba42be933c7ad119a59 release25-maint +52910 73f0fc2f8f27dc097af1a224a1804f5e22630a40 legacy-trunk +52915 c1a6d94b8027768f2363a01d86a1da43d3f3c696 legacy-trunk +52917 0cac3e531c5a15b1a293940e2df919450d728977 legacy-trunk +52918 f1a6ab3574efdbdd691e6f13ccd49e50c009a063 release25-maint +52938 eb30d30f22a18579efd1f05aa751322f7e37c677 legacy-trunk +52939 9ff2b7458c70d0abc7972423c3555df373e07454 release25-maint +52945 9fe5855b05dda8f7defd2069397c4dc5bfbe4eab legacy-trunk +52951 d55769712f73df5885c82a178a6c565885d2b112 legacy-trunk +52952 eef725a40a6678115b2e59ab050c3a2aebe7bb3c release25-maint +52962 e5ce5a053411696bd066a8061a22873c3d28435d legacy-trunk +52963 6e91fc88bf99cf850e1fe8fa1c204afb4f2088e1 legacy-trunk +52964 6b02fe1b382fdfc96e4a4ea79502a4dcb4a17b0a legacy-trunk +52966 a15bd81efdb636996d3174ad6522c4a7283f267a legacy-trunk +52967 fa280d7c7d5ed2b7118a221a5a794f149facba30 release25-maint +52969 ae92c8d0f08d594b5094e69e5867fcf55625eb34 release25-maint +52970 cf87c8f33f9f72f7f4f24e27d4cb3c0be1ac4703 legacy-trunk +52971 b87c5639bc3b80a490c2bd11904a1c937e57b7f4 release25-maint +52972 9d472555b90d7fa45544a7d9e76e355abb929a38 legacy-trunk +52973 68ef07d9c81e1c1551a0392df86770e558a7cd0e release25-maint +52974 d9b4efc4ebefffc8f857627396f990b544ad1b63 release25-maint +52975 d4eb67d1d9318e786eed4f240ec6e2f5b0f09779 legacy-trunk +52979 447ef0e74629971138931ccd5ed5e406744361aa release22-maint +52994 0c51b005c2144a4496797024a3c118ef9c34c511 legacy-trunk +52996 3d5b30772892aca6afa84a5e3ee23562ee20cd04 legacy-trunk +52997 04fdf9ffb1882e9bcfa08ebcfc500f4841ca6c8c release25-maint +52998 613072b8f8d09c3d6aec729c9bdf800cebc5861e legacy-trunk +52999 a311a10ba0bfd6f06f67e2de34d5bfa2cc5d163f release24-maint +53000 315c5a633b05bf254f3fc66a462fb8ecc93768d8 legacy-trunk +53001 b3332ec293f26d9b0cbb2a912144d482d8799e01 release24-maint +53012 810081812996d8fe7e25dbd35dab98033c2e3ca2 legacy-trunk +53017 cc992d75d5b3c992a9ed091e11892a113c1345e9 p3yk +53018 6482261b1092160a1ff498ec6dea02f478150d37 p3yk +53019 50ce56b24cbe313731b97df8deef46ac011cf6db p3yk +53023 1cb7b3ae414d05c2018a2a46ffa8fd07ba1b5fc1 legacy-trunk +53025 56e88bbad9a0e8db115f7c4f17e1cd5d89399e7e legacy-trunk +53026 480789b3294dc5bbcfb405ecaee2c84a1eb5aad6 legacy-trunk +53029 e4f2b92c757c95d64da4ac83075a684660128737 legacy-trunk +53030 ceeed02872168232fb00a4a6ed1ad61badbb2d11 release25-maint +53031 a910abe781590a554b7f1983039e073a165cba71 legacy-trunk +53032 9e39698afba56ca69f414696beba3c6284da3572 legacy-trunk +53033 ee5e41dea9492eb5996d0f49fe28262cdaa4838f release25-maint +53038 0ddd0593d40bee9240fb8d357900c0009f32577c p3yk-noslice +53039 fa9934626410442c1b28101a575b05cf2021259e p3yk-noslice +53040 467b38118b29a2b6ae8e3919f0b401e288e951f2 p3yk-noslice +53041 83384a6925a4c92cb183e559a8151ed1839d381c p3yk-noslice +53042 597fe895a958362f6efcaa0612bbddeb857b70bb legacy-trunk +53044 4f7f72bc340a7e5d301893895d4f47a900bb651c p3yk-noslice +53045 74573fde4f0ce771a0fe106638e074805f36ffd4 p3yk-noslice +53048 0d64f29ef273d2c2334b78f816f9b20678f618c9 legacy-trunk +53049 7d79fd1816a845d9708fcda11c937f7970aab0f7 release25-maint +53050 81ccfedc1c99e7d8d0f105bfff9b4c56afefbe2b legacy-trunk +53051 8e3f2b022f72771c70c5b06d6460d4709d343da4 legacy-trunk +53052 38aa1a010219eeac486e3452d9aacdee2368f7ba legacy-trunk +53053 56dc72c1a1f43deeac4261e4f4e3861a254f7a1d legacy-trunk +53054 cdf63513a8cdffc34382b2d5a851b7644d40a2e7 release25-maint +53056 add03a9d778b82819a1b299a2fff828cb539b699 release25-maint +53057 fe2a3c966c8eaf1a7684158a915f7636f46b6646 legacy-trunk +53063 eb3b239a4d07806166f2892d137f556e2b22f05c legacy-trunk +53064 9548ca0e6560ecd444ebda8498ed37a95839be16 p3yk +53065 21480d89b47f12d0cf519acefc1f071c5394f564 legacy-trunk +53066 b27d5d98a55676c6596415ffb40f64d667334a4a legacy-trunk +53067 17e74ce2bc35e79b654c21521d5bd9dc85cd8d6f legacy-trunk +53068 dcc40b93bfbecba3b045d44b7138ce7fd10acb13 legacy-trunk +53069 0b04cb751c1a22113da366990e3e6781eccf7eb0 release25-maint +53070 1644ba7dce1f05de06da49d309f9652a191a6c21 release25-maint +53071 f98340e36c3115ed763e1587c6d48fd0c7458160 legacy-trunk +53072 30f09776ed55600a0c4863d4734c208125812c8b release25-maint +53073 fe698d078cf97e7767aa1b2ca049336b11209b96 legacy-trunk +53074 a8fa26a3a2ca1c9daf3dd892a04f666e6964fc4d legacy-trunk +53075 6f864a91c612c9ed729f1106f945d75f31e520db release25-maint +53080 8565e3fea9b62a2bc387f70d6ac952a97010669b p3yk +53087 d4fcb56563162c275cf488f4919ddbcb9eb9ea7a p3yk +53089 f1a4ce1fe5b10b5d20867f486188f38241e45314 p3yk +53090 51395c0b5482f8c40fff07015cb6aa77308e1a81 legacy-trunk +53099 96d533efbe7dd4c7f07b54b5b97c5e698d6d46cc legacy-trunk +53100 fe9b5699089448ecf975bcc9b00c4ad10d449b28 release25-maint +53101 037f3cea265502c96f65e903ef3a17dcb97794ac release24-maint +53106 1250fe42ce5c7912407798b37addf1f8e3c53a3f legacy-trunk +53110 8fb33500e0670b858d5a2f8594b03e9dc7558ac8 legacy-trunk +53112 7909a4ee566b058342b1504fa53b7203be594fe1 legacy-trunk +53113 2d5ed267a40fa1acfd2999dc1a04839ab99f82f0 legacy-trunk +53114 83f5e80ce1f29c311a0760b24cf760eec45b9c9b release25-maint +53115 a8595dead54ad5d7fa9bec73c7b34728f5c46bb5 legacy-trunk +53116 22a57f4ffbcd3d4ee951a816145d58bd6cfeff28 release25-maint +53117 35c48f69bacec795827ff4815a6c0e3dc003294c legacy-trunk +53118 d2fa7daaa59bf3087089d20663df08843fa90f55 release25-maint +53120 3d6669adece4a64378abe6fec33d440a1f1eef7f legacy-trunk +53125 e8e23ed6b67f134cad1bfa43b3dd7a538b420f71 legacy-trunk +53126 fb5e3fc4227be822b3e7faaf898bff90be1d6a22 release25-maint +53129 94ebf4a2f738f011e59cc1f6624b9c32cda53b12 legacy-trunk +53131 f94e2b195189edc95673f8541ea0d84257fc64db legacy-trunk +53132 37e71feaea3d2fc204b92b7a16ba5aa6a5488468 release25-maint +53137 881625c13c206cb7251dae92cb34e94d329b4a50 legacy-trunk +53139 663c9f1ce3aabf8d84c3575b653e30a5355aa0f0 legacy-trunk +53140 2c504c62d4d8dd54180759115b5b755474ede5fd release25-maint +53141 2f84b6e81902a8417404862916e17f0350898ee1 legacy-trunk +53142 f926bbc2fd629277e6a3a3d7fc209062ea3e9ebc legacy-trunk +53145 5c67484c4cf5ee172c5705f9373c6390f7f37ba2 legacy-trunk +53146 92f3ef8fa4afa0806767dd19ec21e60ea948623e legacy-trunk +53147 09f4b460baeb7e5fb4c78447b1f98bba4f791f4c legacy-trunk +53148 ded99db70ca678dd09b3decacf867234ef0a80d9 release25-maint +53149 e4b0ff449215f25f2ad55dd4cd3d25316abb1dd2 legacy-trunk +53150 289819fde3af0ecf4964087b0b727a0ddd8c5698 legacy-trunk +53153 5c7ea9346f12745188e924f619642a9ea8bf29ad legacy-trunk +53154 ac8a9a4121d17aa71dbaf5aeda73bd6b16f3662e release25-maint +53155 6763e45c7f7d3483542e42b43b75be9c6ab89265 legacy-trunk +53156 ef4b8fcd14d72fe38bc002798093baf601a177da release25-maint +53159 1e1b9c2e2af0e322d3119021109c61cdd9550575 legacy-trunk +53160 12af6788d911559c9cef4e80c9ee478cc3a54f48 legacy-trunk +53161 e85ca3fd4bd63f380a0ab31b8eb412846daf85e0 legacy-trunk +53162 2676d8287a11b0e9a2fd921cff5f799865996dce release25-maint +53165 6f8c6f830b51ce65e25d8f554cebbd09405f5eee legacy-trunk +53166 4d77a2c6aa553373a6405ad8623977591e3bac3e release25-maint +53167 195f689af5aff4bcc065ff5f7488f65eb3b34698 p3yk +53168 bce7e4a926a91ba5b43b6eaa109bb455c9099f92 p3yk +53170 54cd47788811c03c5ed514aa0d0103d46a4fe181 p3yk +53171 7a35d3d1ac5a301ef3dc52f9140844f0422011a5 p3yk +53187 d63fa90df9ead8447cead3b7fe423c11ac1801b6 release25-maint +53188 a3222075f5c66a13cbcbd576c26b9e05a2b36504 legacy-trunk +53189 b19ed543d695a0305fa0281496438e419c864548 p3yk +53190 b9fca8fb0fb3518f191453bea9669cc5049f6c86 release25-maint +53197 94375d81487da8180b0bd983e1d76f42572d1695 release25-maint +53200 c1a4dc71cdd37601205fb664d49c422e2761cb19 legacy-trunk +53232 be8240ce52ff7f39ba1661fdb7ab965e35e048da legacy-trunk +53235 2b19b2adc5c1b8a871400e9010c4b02e8a8111c2 legacy-trunk +53236 7a13839c635dc55cde47e21fe993ed61d87d63f8 release25-maint +53243 9cc761b9e2ac560f48a4cc58924e691d3eab6f3f release25-maint +53244 dc7d4e5d8b497e2b01bbd86d2709e339818a56e1 legacy-trunk +53249 4203f8e6e86ab40bffd2c3b837a2f40eb78d3c0b legacy-trunk +53250 d9749c3e6326ae1623f9d1d4ae4bf48c971a645b release25-maint +53252 f9b27820798b7474f36cf341ab1722a186f57321 legacy-trunk +53253 69fe683ece566c8423077bf142d63527576cf2ae legacy-trunk +53254 afabffd562e94cbde24e1391d8f68af472e44d32 release25-maint +53255 45c73152b4ac58314553d105c634e67a84402cfb legacy-trunk +53256 ca295c270b1c3f2c155a952a9dcde2e371e34a52 release25-maint +53258 4274edfdce9818e54684cde20e7b817da4a4fa82 legacy-trunk +53259 30da06b225afac3bb18c08d175d97f3a13ca19da release25-maint +53260 96d76d09a4e9c2252dfa897fd6ca8f9eac744b79 legacy-trunk +53262 7f76996c7bf4b8ec74bf46a04d44d0f59651690b legacy-trunk +53263 90937d3174cbe5686ca91dde90c71f815c99d5ac release25-maint +53264 9334b0dc3a17d90e27ef457978897004364a5ccd legacy-trunk +53269 3a8fd3638f260a1c55e1a578baed5a2f3a773f4c release25-maint +53270 84acea8e072e66e31b40b75cee50cf6f11d798bc release25-maint +53273 f70279f00dfc80c0dfb9889f6e837961821fe675 release25-maint +53275 6845e0e62900fc219559b1a78a26cfbb4d27440c release25-maint +53279 167e7ba7475613c22680cab96bfafedbac057b14 legacy-trunk +53285 07c4702020dc92ade65b1f1a1fc8eddf2a91b3d9 legacy-trunk +53286 4105570da30ad2b21089cd015f1c5dab7c24931c legacy-trunk +53287 1520baaf27bf74e97979d7af075212fe84abff85 release25-maint +53288 6bd65cb5b952062e30ea2e236dc52159c0b9b0a0 p3yk +53289 995b7fcc296df5684ac739a21ce64a452b8704b3 p3yk +53291 cc949c605574da75dc8591b72f9fef5f4b18f91f legacy-trunk +53293 7a11a3abe64c1f6f7c5c2377bb8ceee5b25ee1eb legacy-trunk +53294 44c6220b1dc3ffa66dadfdf2990c583ffdd849fb release25-maint +53295 99093b527c01ca3ff590ea2c3980dfb15f2fec81 legacy-trunk +53296 03547a4cd30afa10a38ba8c22a685562c85f8a50 release25-maint +53297 940ff5c77f3a9107eecb1680ad72a3fcb9946de1 release25-maint +53298 8da6dda679f8b2a8e5ddf6b5eb39b25c04fe7df2 release25-maint +53299 4dc79e2832094d52a8273c82f8db533d89e55b31 release25-maint +53300 bd7e41de982f60e9f29808824cc3f5e5e5774665 legacy-trunk +53301 9afd2c7faede63a71795d31a657e8e84bdc6571f legacy-trunk +53302 1ed3ed9af348cfba4ce79317686c89ba40d613bf legacy-trunk +53303 de504024a6e77b459b09ea40687a069d56136838 legacy-trunk +53304 92dd2bb94ca9c8791407eb27b02034bf117f675f legacy-trunk +53305 5d431025c999a96e0d275768ac818157a0c09e0e legacy-trunk +53306 61d634a0bd6a23d90374138ca674cb771e2efdb1 legacy-trunk +53316 0d92caa2d0f42b2c392cddfc9161a823a4884ad2 legacy-trunk +53321 6ddb636f95c00944c68630ada2a2b78cea6cf25a release25-maint +53329 b81f4ee94b04cb96af4d19cafa322932666d51f5 bcannon-objcap +53331 49dc7fc66bee382a055c280f76ef849b50dba257 bcannon-objcap +53332 67287ca4e1e853fcda722f3b99396f2d4e889f6d p3yk +53333 bb1eea9ced70dab7844f33b4581e05bb918fca19 bcannon-objcap +53334 f31fee262b5145f043c5b38321860941268beb04 bcannon-objcap +53335 69bc806d9661653a36c2954e3c7738974c5ee992 p3yk +53336 0b797a7b531304f25090d99538c63fa452c45ba8 p3yk +53340 667bd027d80098d470b9ce88557d5d6d443179e2 legacy-trunk +53341 b4ba7249aba568311056d9f0da3b90152ed7af36 legacy-trunk +53342 6b18a095c2e7ab7c3e33a066c8a745925bef44ad p3yk +53349 4bab65fcca8e63699b0226242dfe08202459d988 p3yk +53357 ff71b82f6c956083b0cd28cb22c4868fed369d15 release25-maint +53358 13fc194204c4e74c6e43c66b5e417e3cd80f9e1f legacy-trunk +53360 468ae3e392a2a2b6480f4adf6b4788dadb1b1c0c release25-maint +53361 90946d5434aa32a7767be7c9959451349d3e0a2e legacy-trunk +53362 5f130271f38695ef499672d6cc638ea1c4f4b33d legacy-trunk +53363 7e2500226c436c65a1dd793368f8c85bef131a99 p3yk-noslice +53364 8c369346a4cc508c9dcd377c6127bf054e2cb5c8 p3yk-noslice +53369 e1e4493f6e8f247af259ae24164cc91aca1c83e4 release25-maint +53370 46fc75615da522bc808c534b56a04ec25a433bf2 legacy-trunk +53371 b60b42097b78b6aca4dbecbd1f37aa56e58d4963 release24-maint +53373 813dcc83e42c27dc06a3e0d43b841074b5958c2d release24-maint +53374 43c75e540e922fb6e8f7860724c8cf3fd17bbb71 release25-maint +53375 21119db5e096650d43ac55c4e7e15f921c8b9820 legacy-trunk +53380 26859900fa5de7e5da6b35e91eb12180ecd89094 release25-maint +53381 7da3dbc8145b84dbaa2e237d419ccb88b5106ee5 legacy-trunk +53383 be193af22f047eb0af763ccd3b3cd9e4bfe65ad1 release24-maint +53384 e18af28b49da9a59136af3c2a4651b10158b20a5 release24-maint +53385 53c0b09c48c11f4cc04a1f3fab077c40a197a6e0 bcannon-objcap +53387 1c4bbe63fdfc4877243aaa7aafee753271de5d33 bcannon-objcap +53388 7d8868cfba7c5e9df40f6cb4339c356fbbc5171a legacy-trunk +53389 a2e17b7515d3a363e2527020dd3d6bb6d27efd51 bcannon-objcap +53390 6899b740e8eae6ddd7dcdd8998bed254cb28a048 legacy-trunk +53391 78cd384d3fcf909ac852de3876a452e944d0fbdc bcannon-objcap +53393 c7bd892c0567d72d207c3e265c73109aed07daa8 legacy-trunk +53394 6d16ebc715695c090919f09853c3e99556dc505e release25-maint +53395 1802cf93254bf664545f0fd14b5d04d056fe8c9d release25-maint +53396 8bf68ecc7676af1fbd34b8ed3b0bc6af7cb56390 release25-maint +53397 2c571f6ce23ab27668c2ae12d4db642877b4ed6e legacy-trunk +53401 e8ade8a6e5cb9ca4a2135a1feb67af9bdd59c385 legacy-trunk +53402 cf8af6b7598bc535589d75d695b1dcb7330021fb legacy-trunk +53403 ca537e9ba7a7f1a61068f505c5f33e8561ae9081 legacy-trunk +53406 b303fb383fa469483752e3f3aa67f7beead80c91 legacy-trunk +53407 f27b8899b6135232a7a2ae9d63e314411ca6d829 legacy-trunk +53409 ed7acf1881a940fc65c7d2595c61f35cfd25d445 legacy-trunk +53410 2a476c94be200405a91e82539e2edafac3d23700 legacy-trunk +53411 68b41c2d66631aac4b414b2ca6c61fefee347cc6 legacy-trunk +53412 2df80e716e5c9d9266ffed0a9f23b8dd6f47a518 legacy-trunk +53413 1409e1f273b508513562c86390ed33e6b0215ba1 release25-maint +53414 73b93dc5e440ac08892635de0ea19c0c367f19ce legacy-trunk +53415 f328329471df571396a3bacc9daaf3f0c12fb75f legacy-trunk +53416 ca1b40cc6b74c3599a246cae9544575aafa8343e legacy-trunk +53417 426f1d373cdd65780f87798132cb49b9c13cb0a9 p3yk +53418 4ebf0b805ce84f7a79f00cb9d0163e2d4e86a57e int_unification +53420 b9d4ced2350621f668cff942fc4350230ebd9a82 legacy-trunk +53421 4aee3f672f77e0feaf02ccdabd01eed8b63236de p3yk +53422 dbfd86c3c7913aa1cd2427faf1946aebf5116a8e p3yk +53423 90c38271686b121314435b389fc2b17ec898b35f legacy-trunk +53424 a004c3b019ca1532250c52c5afaceb900ae4498f p3yk +53425 3d79bc6ed6ece72289a16bc8fa381ac0994e02c6 legacy-trunk +53433 98d5f90cb905afebcfcfd1cd37bc1e27381fe13e p3yk +53434 6efe3a4b10ac98ad2e257892822fa9541229fcf0 legacy-trunk +53438 db8c175d1283d7fb766203002ad60f170964407a p3yk +53439 8e2ca54449001ecb23ae5aa518774e10effe71fd p3yk +53440 cf98345b9d6b020af00e67770b0f3a7123bde69d legacy-trunk +53441 f37696e646fac5d53563d398798f4d8020e333a3 legacy-trunk +53442 cc5c071c842311e83f6cea0883f449b8877f5ef5 legacy-trunk +53443 86ce1df6a88e70c1a390a33a08db7de4288c0626 p3yk +53444 82b9b5b12256e45e0ca491d24bd6ec5da9c93e1d p3yk +53445 6f5b33947274e8b4d3fc51ec9453a2e21f2647e4 p3yk +53446 342532f4536e618489ac5280093f3973b5562d2b p3yk +53448 d02d29c5232a1cabcb2700347d84da98651d1e8a p3yk +53451 47f9efdc0855a8d1761a0a4247935762f42c35c3 p3yk +53452 1c26505c1de6eb50ea864a977028bdf69578a97c p3yk +53453 3f78274f2a349435b7452e2d242fb60a54736682 p3yk +53454 4a4bc5c76e4590bdc8e5e7ada2bc34f4ecc064cb legacy-trunk +53458 9be62c45f3a87940f1b0cde3b3b76dcddd8a9365 legacy-trunk +53459 e5b641e700f23545a394c0a8380fc0175200cfa8 legacy-trunk +53460 a4cdb9c8af25bd67a39b1492c38c1c3c1b25aef6 legacy-trunk +53462 379af418fc36752de95f4aa2bb7bdd5958be8111 bcannon-objcap +53464 48d38d7770249629eb5153b39060f1515d295f25 legacy-trunk +53465 03a5f2b068253fae05344a4bd2bc4a36dbde5ca1 legacy-trunk +53466 66782e5b992f57f4b721b1c9564a99c5448efa17 legacy-trunk +53467 4a97f3bfb55ce1e5bdccd93cf59f707f5a906819 release25-maint +53471 b7338f3b1b02245ea4cfc8690dc3461e0588b3f5 release25-maint +53472 091df436038d745ea9d627f88202b30840f4d5cb legacy-trunk +53473 191eaae5a29d2ec3f4a5f6329efb66c7d11fe552 release25-maint +53474 4d857da7e6c4f413287543f966e95f3a3db91104 release25-maint +53475 77329b127d4374e4168618f2d4f0b26fefe0f732 legacy-trunk +53476 94ca06d959306f82c5eb13381c4e30e6c2bcb47b release25-maint +53477 90160490c6d4052d3b47519d733537ec59b21184 legacy-trunk +53478 223ff35dcffc1b06ad40bf074545641de926236a release25-maint +53479 ee87eef957f359136327703407e3a139d14300e5 bcannon-objcap +53481 ca607d748f64e6604c8a5ae0602bfba45ecdc9f6 legacy-trunk +53482 9bdf34b3f72eb0fee3c2b19b39f2d889d5d367fb legacy-trunk +53483 3f1dfaf293fa1da0ef9b949079f688ff9f05504a legacy-trunk +53484 0bc42c156e9f5efee789c952a4d0e886f6e44ea0 release25-maint +53487 9fe92f18bb6a42a74693d6ae98083c61a7bd48e0 release25-maint +53488 b8acec4a4c89ca6bd3af859b7f67b42417c9eb4b legacy-trunk +53489 b051d197f7a4937fccefc67aaeb80c216a455275 legacy-trunk +53490 05a8986d9526737c924232c57dc532cb8074acf7 release25-maint +53496 680d17a6b15f0a0424a03d604d0d45231ee16d22 release25-maint +53497 39b3a5a3c645b89b80f5f3b5c0d4a34d1ae4d4db legacy-trunk +53498 60d31a12b150d509cfd70bf198d06bcaf65feba8 release25-maint +53499 2f80af674074afc2526ae001aad8c4b5e6384bbb legacy-trunk +53501 5bf4f05903b20c60f78ebc450660d2746ca7aea0 release25-maint +53502 59cf89e5f237edaa5160843131321f8f84ac8c42 release25-maint +53503 7b38f9955c64659401477571b71af9b993c58faf legacy-trunk +53504 10bffd19b535a448e482e29effeafc859d2b3f12 legacy-trunk +53505 3ae4f930bf27b4cdc0c77fe16bdf50416a879652 legacy-trunk +53506 ac4c2f5c3fc0e9934336468b3c9099279f989c92 legacy-trunk +53507 5f8a54c804ff6f0dd32b2c258192da93a9a6ed64 legacy-trunk +53508 0bffca64ccc4ba04e413088d0740ec82f4848119 legacy-trunk +53509 77e0f4718a7ca617787e70fb3a8f6fbde7ba05c6 legacy-trunk +53510 c86df311e62cece21006be6bc36209faef2b4b8c release25-maint +53511 2fa6e82b1f17b7aef876137972a73b7c2ffde777 legacy-trunk +53512 573a461761753952a0b052c2150423054d07540c release25-maint +53513 666faf8912e05f37fe3ab4d813da2492145bcdae release25-maint +53515 1679a4ada1712b0d8899a58fdac9ad0fcf9047df release25-maint +53516 3b6ac4f4b437240bdfa0f85340aecdc56bbb1839 release25-maint +53517 b23711be2b3e0342138f474ff31664848870fd4f legacy-trunk +53518 bb4c0bbba272f8d78f7526fd24c62082814008b8 legacy-trunk +53519 b16b4f976e70ad87f663972c2cafa40793f478c1 legacy-trunk +53520 ece2af764621d057e42564a4b44d341b96eca545 release25-maint +53521 de2bbdece83edafd2ae1da48918a43273586f205 release25-maint +53522 d7be03ebf466731cb7be61c474c651e951ff444f legacy-trunk +53523 9f2393e9eacabf438063fdaf28f2f4f17879e832 release25-maint +53524 081ca6080ff145304e4d34f118919964352cf515 legacy-trunk +53525 29b8b65bae3fab5e0f4b970bd96bfa3be030e210 release25-maint +53526 7f4065efa44ee23965111515f4c3072e25e2a33a legacy-trunk +53527 86ab2f20a33338dc0a2f010af0c929314eb6883b legacy-trunk +53528 d2e2edd07082c4fbede48b27b2feb3be765e38a4 legacy-trunk +53529 da30a26dfeb39cb501b5b0c285adedc5dde7bfa5 release25-maint +53530 6860ba88d67ea9d30f79ee81a293863f12732cd8 release24-maint +53531 df294bc5ce6e826987652167c12f389542bcf57f legacy-trunk +53532 0e95c77512f54a10c29c07380b02a71f05464916 release25-maint +53533 293311e63a732e21da7ef6630fff25d98008047f release25-maint +53534 03144c486782c1b13e1ba60878b59f48e0ff1601 release25-maint +53535 dbbdfc038dc947cd9240bc2975f82825e7f27cae legacy-trunk +53536 38d944efe600c6c4ef697efe3958f453f90b626c legacy-trunk +53543 4807a6abf90624c98b79c553b13bc0502e39b6ca bcannon-objcap +53545 0d096b146b4868b328b58003a756ec03db2c115f legacy-trunk +53546 4158ba7f46a035aa41cf2291dbfb76f4f77120e0 release25-maint +53556 a5b269ce079dedc6b0ff4c8b43194e05e090099d legacy-trunk +53558 656dd0095f52edc18dee95d23d69bacb19aabdc2 release25-maint +53563 e43816ddc4f05d318d5409e72aca9dc73dc7a9a8 legacy-trunk +53564 15deca39e0e6bbc79cc4816063dbce2200b23f2d legacy-trunk +53569 4fa9c80fb17ab86c19d4884a354fc5259239b3eb release25-maint +53570 1163f55dad95f80cf7f05ef18bb86de57f2e7c5d legacy-trunk +53572 2bbf17c1c69cb9d1bdcca14dc38447101d508169 release25-maint +53573 12855000e13bdeab4887c744c3e16599556759ac legacy-trunk +53575 2343c68ca1c87a3aff5023ab27d81b0e8cab5507 legacy-trunk +53576 1751ca3feffe96b448f6e362b4d162cc9fb7f295 release25-maint +53578 c9d7b86f9377cb18bbf136fcabf9caceaee10ae3 legacy-trunk +53579 2431f82a6a1756fa74ad22ce3b72017da4fa1ffb legacy-trunk +53580 ad936e0b6fcfd1bb2dbf9a7a3990f1ca37983722 release25-maint +53590 1782b622aac71b9b0e3aad913a8f65c91de06d99 legacy-trunk +53591 2d8239abfa60fae3c1be75ebc0dbc44c8e2d5b8c legacy-trunk +53594 5fc819c6c13e2ef9e7bd5d6e7060df6cbf0fa5b8 legacy-trunk +53596 d60ad914d833ee96cdbeb34cd5acc6b4acd10c62 legacy-trunk +53597 ab9c865196281afa2a7577cf6649e75778e7c206 legacy-trunk +53598 ffb9580f967baa6c962285d5d8366ef815e0a794 p3yk +53599 d5babb326a50d103b0154bec4d6c0b25108308ff p3yk +53600 a2644222805855c817df1d536c24827ff2c4169c p3yk +53601 5dae0d7f683ab379692fd4cb45a9191dd92ce20d legacy-trunk +53603 4b1001da399286a863ac659992215eaaba5d9814 legacy-trunk +53604 0aca0039cc1b5ed15f10a9df41e265847d037578 release25-maint +53605 bd3739a872595a0716d8f61777c30fb69fe84ba9 legacy-trunk +53606 037abca817b6383bdb48a776138446a9255e4086 release25-maint +53607 c147c6bc579f2818ad13132da0841ecd30aaf31f bcannon-objcap +53608 67ec4affbd14c0e4d8715d5aaf0db0620c453ffc bcannon-objcap +53609 0f20c3bc62706a22fc1ea1192d6eabb07a02ca19 bcannon-objcap +53610 6ebad2a6b990786ab6123bc96b616731517a2ba2 p3yk +53613 58389dea651cd6931e8a41ca371efe1aaea78ce4 bcannon-objcap +53616 72c0c6aec1ed185c636ce13f04a5a70635c22012 bcannon-objcap +53617 53a36db2c38764098be8f610af603b94a09d4d8b release25-maint +53618 2a8e9efb5d20c3bc5dcc719ee2714e689b03eac9 legacy-trunk +53624 ad8cdfb6987213ed0cd6d5d3de48f575c2080258 legacy-trunk +53627 8480968f4f4a14e9291ab5015599d1917f6aa919 p3yk +53634 f1701ba2452b40ea8db89c23b2c3a2c7c333a381 p3yk +53635 ccac636b152ce682fb4f252525be45dabdf8d683 legacy-trunk +53641 6d9ca90d8bf749d95bd980afd117dd02ca6bee58 legacy-trunk +53644 1af8fee33013c0e762b240a58434ee9e172ba32c legacy-trunk +53646 d3e88631f92bb6a07ba70e95d9ec23a1d05cbb1f legacy-trunk +53647 265c51ba391023149c69ad05c50a58c5616d6ee1 release25-maint +53648 09dcacc8a0bc2a1e30fd847a0367d7cad5854669 legacy-trunk +53649 0528d6f94eb6ee63f8e48c0d1af2707b39872f10 legacy-trunk +53650 6c41b0122747af59d51fe794ab0a58d7e1b9d24d legacy-trunk +53651 d594ec858fe974dc5d92c170136b0f23694d6f49 p3yk +53652 f83d6aa390f106b92fb8ff2dfe2da4eb8858d8df p3yk +53653 c7793345a0c544c24827ca5cba367d92deb6afee legacy-trunk +53654 499bf3040af7bf453bfd31de23e59b3bd5aa1b42 legacy-trunk +53655 56dbdb7b404a39be7a5c2833a6829d3dd394ed0d release25-maint +53656 078755498cfe3550bb6012dec0b56a35a27796f3 legacy-trunk +53657 d50994693c9256fd1e1bcbd70eeceac8951fe483 release25-maint +53658 487ef0f903e0158417c785b94d1c0398dca68c8c legacy-trunk +53659 8eb03b1181640f19e5499b22c2d3e24fbe23e4df release25-maint +53660 2900c7564055d62c2df80a67b27f7485f6266ef7 legacy-trunk +53661 3022778ee0cc6d36fb5486717387db3d0b13f425 release25-maint +53662 ffaaae02c6629cc55688ed8e36ee015159407fdd legacy-trunk +53663 a2d7f4c29e5b08913dfe7fc994398bfed58ee494 release25-maint +53664 c994c245d9ab5cf9657054844cc1038707d7e15d legacy-trunk +53665 d8fb0f6aaad43cb2f820388b203cb9b1dacec17b release25-maint +53666 1ad0568737f6101324a54752fda172b9ed756dbc legacy-trunk +53667 47bb2803eb1be369df38b9cf681c427aee11a90c release25-maint +53668 1f71a32f98d23bc03041ad6ea7660fa87901918e legacy-trunk +53669 a04c781546ed2a97b3f5b6bbc853d0c3b100d84d release25-maint +53670 9f5eaea3c795409bc3358fafb4f9edc6a911091c legacy-trunk +53671 e776c83a0c19e273e7208f1cfd2a961b0a44fb90 legacy-trunk +53672 7156cfdc3667e3bfd052d418bda36f92b5991c7b release25-maint +53679 f7e9071c3a1f00ed7124f1de0de0a28e1de6c8f7 legacy-trunk +53685 793e0323d4d65bfc89b40d78162cd771c575a18e p3yk +53686 4cdf21a0dbbce891e75a920d4faf4c0ecbdd8332 p3yk +53688 1d543a320346107305c4913d827d149f20a43487 p3yk +53689 f6f391d1d050fe36d0028fec2dce122bf30c44e9 legacy-trunk +53690 83efff4d5ae94258ec692cebfb182bfceef70c5b release25-maint +53691 4d91564646736df7107818a299adcab56c43983d legacy-trunk +53692 b7042bdf90a9bae414f414158a613781de68dff5 release25-maint +53693 984041e7446d31c6a3ba04b5c59a008c6eaad573 legacy-trunk +53694 d2fe893a48437257059703d0618e68b6fa337fee release25-maint +53697 266c1b0f9e16c6886646ab2937e0440b66e6c416 legacy-trunk +53698 be295878256aabcf3ee063dc0edb6be53da29577 release25-maint +53701 22760d53d4da5d2877f814fa19dd61bf7006aba6 p3yk +53702 0ce14c4ca1337d10683a469a77ac43ac88be4bda p3yk +53703 6917c676c92fbb49cd1b12522d93a73a38fd4e9a p3yk +53704 e9a6234b26afd1e025396325523acba3d1a3faf1 p3yk +53705 e8b2913f9297f47f942c15d3a93f1db00641229a p3yk +53706 8d9a0ec4d97600776398e996ddd2d28d0e0916bd p3yk +53707 9fd964088e0705f52e85057ea02eeb1753967d86 p3yk +53708 81e4034ad8837612026ff1eddf81ee355f19e462 p3yk +53709 c15cff2dd18f5ced959b45f117d3b1409231308a p3yk +53710 b7f89db9a1d05aa8645a578bb68a7a43cacee86c p3yk +53711 43e369cc02c55f473f6d4a756f5ffc8d4189372e p3yk +53712 c4be493dcb6f94b56bb6c5cdbfd71326e1765785 p3yk +53713 ffdc8d398e4911b7c41c8eccc772a7f9d5e6bcce p3yk +53714 72277e1967b2b6dfce2243cd7ee912f4be11b7d3 p3yk +53715 04f5cbc744241dbd464e493eeb0a85edaa0e93ca p3yk +53716 67525efc99c57f7a974b8e340f8251a58dfbf333 p3yk +53717 ae8ee9e5e815038fcf608c049d940519f930fef4 p3yk +53718 5622a13ad8ab11d7013e116baa3e6ff215b2a1f5 p3yk +53719 e2800e8dd9c484c4a9895fcba6958ad2f7bb8d4b p3yk +53721 435ed641a333f8339633ae7111129fbe1f3f82cb p3yk +53723 eaedf84eabcdf6838ddd849aa416c7b87bf7299f p3yk +53724 7da2ae1a4f709d0f14d3a9e58ad6fd8b2e71a9ea p3yk +53727 f229645d607dde3e90f133d348e0209d6cd99818 p3yk +53731 353c009f6c53852540facba0d31c653eca76dc98 legacy-trunk +53732 f340cb045bf92d0e7772385a7197e9b0af37f0a8 p3yk +53734 4a01f6e0201688641df5af9694d2981046edc5c1 p3yk +53735 5dbce2ea133c3c01e76b0c6d3a4941695abba91b legacy-trunk +53736 90536be093f7da5f9de6638b1d6511db03b77ccb release24-maint +53737 fcf6902f210ed3b06b95bc520451e749bebcffd8 release25-maint +53738 cb8123ab2a065d8a090d1423cfaa1213ccce3e42 p3yk +53739 5de7547a5a2371111386612a9a9a2fa623c064ed p3yk +53740 3d18d8f366b1184d619ba74950a3d7158d64d259 p3yk +53741 29d65741f6c896f2e1c193e020cf7ddb412729b1 legacy-trunk +53742 a84460e5316093d0030feb8c760ac1c3a9885724 p3yk +53743 5ef70c49d85a24335b43af43c3f09b6df63192a3 p3yk +53746 e6685c840ee3c11a91e0a33721a57b17cf51f837 p3yk +53747 429a4bc31c8e3670e7000fa5409c7e2b80f54750 p3yk +53748 dca9bc8830409658fb772a6d0b3053c6dd4345d5 p3yk +53749 50330d18d1cd7141bafc2c8a9980a8b8ca883d76 p3yk +53751 180d4e8996839069fca8819cf9f3ccc5ea2ea3e1 legacy-trunk +53752 ec1ebdf54eafd9abb142418dc65cba4a62dd300a legacy-trunk +53753 bbe6de3a9745006f4125aac3272cebc433f3e3ec release25-maint +53754 724e0b63a79b5d4b0cb167ab8f960ec51e6b3928 legacy-trunk +53755 7ad29e99eec8572620fcf098703aa55d604b9765 release25-maint +53757 32d46abaa8aba4c5e7a9ca82952523cdcd81d968 legacy-trunk +53759 9d253cd38b5b65a3d6c64c48f8caf345e55e426b p3yk +53760 28c4d9b7740ed01038573efac701fe70178cb045 bcannon-sandboxing +53761 35c0d38acdce0802f3bbd047d6c003ecc00c1489 bcannon-objcap +53762 d4a6a67a00a0ba35bc21b9ac3203e9b08580b0b4 pep302_phase2 +53763 81d68dd84aa05cf8d58df55af1746d81a999fb14 legacy-trunk +53764 1dba61c077034e1687a1ff615ac2db7baf0872ea release25-maint +53765 daf063527b97214c95e27327ddd992ec07e4d02e legacy-trunk +53766 d949933cd6b46c72cf7c40291412d2c6eb7af619 legacy-trunk +53767 bd24d3826cc83df0c9b58cddf1c7e2c4c73262f4 legacy-trunk +53768 177a7bee64e9eb2d3772ceff81d19c2c9a9aeda4 release25-maint +53769 3bbec91c5b8fe66ec34f0f8f1ab0884a14a8930e legacy-trunk +53770 885a77fd5c01c7dbf83a29d5dcbe99f596a09071 release25-maint +53771 3983ee0f6f964dbb228f5e1b152dbade98ac559d legacy-trunk +53772 d4768bff643ea813f66eb6d797215d2b52a5a2e8 legacy-trunk +53773 abfd95185ab991936941dadc40dadf5ad21f6bb4 p3yk +53774 90e22fea836344567dc55de8a9a8a0dab7ce83c9 legacy-trunk +53775 dc56789b29e9a63b4f5704f0d8145103971f189c legacy-trunk +53776 a6546c27369a6c4f130e6df10ec67a15bbfdf233 legacy-trunk +53777 0972c2176af9b9a90f8fcb0fc4ea5db41b2adac5 release25-maint +53778 a62184b03f0f1502d0ab8e7def92c9b666bfa682 legacy-trunk +53779 73481e077758a94193fb011fe966ac5978eedc91 p3yk +53780 502de079ab3a205203351a0ff502b8d840969602 p3yk +53781 1d53ea0fc23f15f5d2c60576e96c305bc0fa7267 p3yk +53782 48b6d015340ae69788b596934f043f3f1f572227 legacy-trunk +53783 7e4b635f1d31dba0d7eae1e13ab3e80cc4fa3a29 legacy-trunk +53784 99b0e04b2eb1ca011f8fa83b32ec47813d5c36b5 release25-maint +53785 2a2532883d80fb372db2e3eea8e27cee96d777d6 legacy-trunk +53786 914dd5059f38f322557a82443ce28f61f5cf02a3 release25-maint +53787 474977cd4d9c8441428a9143d37eaaa37163075b legacy-trunk +53788 29fb8dbd10b85f4b29f7989d045d96327d3b79af release25-maint +53800 bc2bd0f01d95b543496ffa16c5bbf6a4254a58e3 legacy-trunk +53801 b4b327840fb1510e97c5409406146614f5753bf0 legacy-trunk +53809 f4f695a75664af3bbf2f785d0533e3d6cdce5d4b legacy-trunk +53811 d795a55e9be41d6d9d520d273bf656dfc0db2669 release25-maint +53812 736f3d90e4e28486f7075cc0383740698d2ad253 release24-maint +53816 9e35645af40f682ecc2f91f69e40cd71dd584407 release25-maint +53817 35ae28257a2805b4a71e9eb13b1780f3ed1f08e0 release25-maint +53818 b0f8e9b0cc19928ccf973a5528ffa43b7777ffac legacy-trunk +53819 81b5df5798c27a5a4b0c98e1cef18ecffe5eb899 release25-maint +53820 36d7b3b6ee596fe8188180e892e6fedff06fd405 legacy-trunk +53821 d386b460993b73b86ffdacc082c5253eec45052b legacy-trunk +53822 df0204ca9739f1575ef03a9cbd3d230a9e56c96a legacy-trunk +53823 0cc450b89838916d1523bb47ce0e4bf85561ef20 legacy-trunk +53824 c9e413b1d5406a0a8bf7b9446c4f7bdbcb4e356a legacy-trunk +53825 577bf21b2c86dce05b003144699aa18c2701b2cc legacy-trunk +53826 53fd144a3f1ab3cb9f258302ab5f98a6be85467f legacy-trunk +53827 672b9075764713da8d560e798eba0ab037559d8b legacy-trunk +53828 c34bd6589e1eebcd3975317369cc72d6d9c874cb release25-maint +53829 d5a15f853db74de76ce926b5b5355f11b5ee68a2 legacy-trunk +53830 01d54b88bf586e3b8d0b4a6349e22d6746150b9b release25-maint +53837 6fa0d682e1e550aa01b3d33c1bd7216d2519691f legacy-trunk +53838 8128619e984de98cd6714054a8d2a6476d9957e6 legacy-trunk +53841 43797384115e598881e6116a03db077434d79c1f p3yk +53843 55deb1da4cb8de1635312e4fdd1fc9511ed77838 p3yk +53844 e68b48c39d8acb53f3f315f879f18ba3e39831c2 p3yk +53845 60883e614298f31a6ce69df444f88ec67624a451 p3yk +53852 3fbcd6e2bcb77ddd9cd0824824ac3add993b31a8 p3yk +53853 3427a97345fcfe748cd4c891a6394bbbe8df12b2 p3yk +53854 c164b0b7597160ef5224882213cbf44697e7575d p3yk +53855 12489a5dfb4ab02ef6373fb3dae8a10db515ecec p3yk +53856 909765eb381bdf5b784bca89cc5769a406795f90 p3yk +53857 29987244905dffd44ba3e5a07f312fc895acf8d7 p3yk +53858 c50e263301dabb51f0a76cfe14d6947d8b25d517 p3yk +53859 20e08a87915a55aa852bf6263561650e037d8f48 p3yk +53861 f3a59acca51ffe8724087c68d4d1500830386af2 legacy-trunk +53864 c93f92a7d9202e2a520b8144f0129e3532528f2b legacy-trunk +53866 32c4897b5d46c00eeecef1baec7dc21d0d1bb5c1 p3yk +53867 3bac49258a4a580f8d9950594f58cf7f195eee89 p3yk-noslice +53872 0ea24f4f2467afc493d134f558aa470cbe8047e8 p3yk +53873 bd1419e94773f08a0bed6114240fa3e239b19c47 p3yk +53874 b05790d066b4744e52d3c72d929bdf187cc160f4 p3yk +53875 583fe753e7212979101b4ee32e85e0d3d1531101 p3yk +53892 b58a4374ac21e45b1a062f0e7ffc00d033d85b99 p3yk +53897 42e79c59212d22d252a04f855b7f79b32b140369 p3yk +53898 93047ee486da4a09f4dda2d3c6a3d3d52152a45a p3yk +53899 2e4dac059cc54b3a40e237cdca598e387a573433 legacy-trunk +53900 65cd1f280e63c0b66e0e687a005768f9aaf8ebbd legacy-trunk +53901 882b9c14895c0cce5e8e3801c9f3c9feaa5034c1 legacy-trunk +53902 191c48ca8bf9c1268195428b8678eb862f353c91 legacy-trunk +53906 e854271495de1044caf6daaa0959f257313d7ab7 p3yk +53907 83088ad83a6b0f2da832acbad5d61fa2a8744309 release25-maint +53910 0c410c78531cf30233aa8175974cfe16efd59337 legacy-trunk +53911 d01bd37bf5ce526180d0aa31ca392f736978b47d legacy-trunk +53912 f2f0b41f270dae4c698f2cafa8e4530f1f39899e p3yk +53913 eaaee785eb86d78f242cf43ce1804fa6d5687b07 p3yk +53914 97c77b1e34bf243122543e2e41af85c0ce7207a6 p3yk +53915 a8c3aaab00ea2324a6f01806786d71e78e02616b p3yk +53916 19afb0302a06eb1e6abc755f24f53de22a7c74de twouters-dictviews-backport +53919 d842e35f5a310e546ee56a05bd10561e5dbcb70d legacy-trunk +53920 070b9a0b4c040407f37be29e4c3993fa5b36aaa9 release25-maint +53921 13f3931b9fc4692942e3ece62dd0fb9b69067097 release24-maint +53922 f5790f96acf3c39ddcc7d1fc17aeea2ce78961f8 p3yk +53926 5bd3a22ba496b1c4092c2d42a4050ddf4b14b547 p3yk +53928 1b972b7e352adf310529151270ed19a9891c95d5 p3yk +53929 40b17afc4aa7bf71b504c948766ffe40b8289768 p3yk +53930 0d2dc3611e3b3826ffd931565409e1c18bdeb00b p3yk +53931 610c7acc99828e62e1fd37fb0f67b86e4512a93f p3yk +53932 be41da66ce37f641f5b656dfa9e9f52b69b5f5c1 p3yk +53933 25a84900e2055c14c7660e4ce635b5648745ff11 p3yk +53934 03883acb650b808c69df461927fdacd350d17dce p3yk +53935 621443fc01bba1559d08bcbbb4fc562c263bb759 legacy-trunk +53936 9d1b0c295ebbc0fc178c62c41e9f61b130d35c48 release25-maint +53937 93f58280373304de219c8a05c66fe3910b4b9886 p3yk +53938 7bc7f740f69fdc9f92fd5488207a0f3b303fa149 p3yk +53939 c3451a77bfd164df5dfcd8370d50987d8993fd02 p3yk +53942 90c807ee8767b1bb65081b6bacbbd264917d56ab p3yk +53943 ece8a39fa282edc62e14fb769cb1383b6fd748fd legacy-trunk +53945 55d7e8fa5ea8d4fa8e7170730df556abd7d1d7a2 p3yk +53946 a2629be1b1d0159927192a3cade515dde521869a p3yk +53947 89ba93c701c8847396d82f965c675cad5ab5ed99 legacy-trunk +53949 45affae465e41192918142feff746f204f51ffe3 legacy-trunk +53951 0376f13a1af91307042dc4a5b2f587a3ed9bb2d3 legacy-trunk +53952 6aa1be5dd0098b3571f35ba7239972824e27d1df p3yk +53953 2c03d706835e460bbdc88811c540f9107834b002 twouters-dictviews-backport +53954 047ee23c0f878e933ec284821abffd973a4d9413 legacy-trunk +53955 c8c0673026599bcd640efaa9536d4d2936d699e0 legacy-trunk +53956 1853cf06e36ba312abd123e8c2d169898b477d28 p3yk +53957 2ca14d6a369b725b13d49b0ae377b33b253426db p3yk +53958 8647190db96cd1aa8b43b264f31b58bd8bc042e3 twouters-dictviews-backport +53959 fc23fc8639baf00de51b446517fee96a241d7102 twouters-dictviews-backport +53960 4b9d0dac79ccc09bc1f7b46212c702f1400435c3 p3yk +53961 c79e6234fb19ef6a34cea5a259cd0dd6bf6b34a0 p3yk +53962 bb73d3a0457e977d848960bdeec2e7958cee6627 p3yk +53963 7f7074d4f82cf70ca1d7098d3cd2386794f96f54 p3yk +53964 d976c9a631114a8fab1b0f51133bb4ca12082d49 p3yk +53965 b0826e8e45c78ef5488bf8a48b9cec8773619be8 p3yk +53966 3093ea9b4024972819dc07742ec003dbc068abe5 p3yk +53967 e759fd8d95ae7bccc46259e1e04d1a5afd84364b p3yk +53968 1e4e292486b68889862a8047c8010964010bdb38 twouters-dictviews-backport +53969 f3f0c697aa5b1632ed2e0c4af3dd90de23e338c9 legacy-trunk +53970 ee3602c7ae041474a8c75dad04dcbd3dfda0509e legacy-trunk +53971 430811bdbfef66bc9a85ec94ccb7ab69989aacde release25-maint +53972 94c4e36c31242b89e0260150b12aeb2c1fd12125 p3yk +53973 da73b5a0fd90aba32c4cb1d0934dd04a3d728d89 p3yk +53974 2ce229a7ba3f69ec547e79dc40a5b2d57f58f406 release25-maint +53975 c83acfb1a632f7946f346e722f70de791f3c2346 legacy-trunk +53976 fedb03eac6ad6d11045048d2896b1e7eb0af742e legacy-trunk +53977 aa195a1aa95528b885322dffabb4be30418a3711 twouters-dictviews-backport +53978 e5e9837da70b78600a80a52e7726fc23924e71ff p3yk +53979 0ea52558bdfec29af9cd9c98e0c05db2bd25a022 p3yk +53981 541a8b1b5da75d9af549434704b1ab563b720772 legacy-trunk +53982 e66ddb6e34e84467765a76de7cce3ceb3349d64c p3yk +53983 416292c8249ce8c9080c54111fa7884705faec85 p3yk +53984 c24e95d1175201b57470415abc3b0e2a0cb47aad p3yk +53985 d5546f09f20e7638b758248e5d54f1b876e2aad2 p3yk +53986 30e5cb3a55ac3147d9e92ea388f4f7945616e767 p3yk +53987 140f3524027f0e0b5a70ce2ff1594f31ba246c8d p3yk +53989 a9e6c73e0fa5b2132c1531c31aaef4cffe4d526b p3yk +53990 2d9d10702ec44e2fe4cf8149c6c6f25a434edc22 p3yk +53991 6c0d0be82b47baf29a5811841c58c882729abdef p3yk +53992 11777c887f7ce00e4bd7ceaec61369ff8b97e455 p3yk +53993 a2c9eb9ab609674b452f3dbb49991b2675c3616d legacy-trunk +53994 0b47446cc4084a0380db967718e47f71de4358e3 legacy-trunk +53995 46f771e267bc815828b6ed06e023cd5c3d4dcaa2 p3yk +53996 3cabbfa43984093b13d7cc4b3df94898c511e75a legacy-trunk +53997 d62805a993c50881982ff51ed016e41b69ac56dc legacy-trunk +53998 5ead32130f646e8b2e6afce0d97b3235d76101ae legacy-trunk +53999 4a4f6f026f1c58f499aaca8266ecf1172b2ce175 p3yk +54000 61fee1853ca88f3820bf7a3c63fbf45a72561d2b p3yk +54001 80e861e7fabe888586ecda27f68c499cc4f6ce38 p3yk +54002 c3b28ba918f83ebff2e4ce811654da7d4b3f2317 p3yk +54003 1f790da798409d91ce89cbd0b0d7efef4769a8b4 p3yk +54004 431b3238593eacbac65a59f14ccb4d99eb81576f p3yk +54008 762964f99871047bf0239194ca7254d1d32d46a5 p3yk +54009 c034470e3c0aeb9164741372a570d9eb14c07742 p3yk +54010 8beb75402e74bf5547d4ff497b7b8da00cf8d839 p3yk +54011 93031e7165ab0129fbbd8a109f6beab034e8f4d5 p3yk_no_args_on_exc +54012 ba92e9ade36f1178ad45647568338755b6b313c3 p3yk_no_args_on_exc +54013 6d91e74fcf55e52086d8ae3ff4b2c18251092bb1 p3yk_no_args_on_exc +54015 34a7c29e65d162af1a70850108eb74cc065db998 p3yk_no_args_on_exc +54016 e103b937d747510e4ee3120eafa3cd4de8962313 legacy-trunk +54017 a1aee810b739686060dff0dee271b2f934a0c4f0 p3yk_no_args_on_exc +54018 9533eb0e87cffcbf52f2cc6f10c2bfebd34a874d p3yk_no_args_on_exc +54019 f252468058507ec7d944d98436818305bbed0896 p3yk_no_args_on_exc +54020 bd3590b8c78ee591e041ec5eb363cdce27230970 p3yk_no_args_on_exc +54022 9dd86ead51c3776cd6a4aa1bc64b17baf01bd679 legacy-trunk +54023 165461ad38db8e05e18152bafb905e90e07c15b0 p3yk_no_args_on_exc +54024 83b8c70efd1e5f1bea58342726ac5c8db724f4bd p3yk_no_args_on_exc +54025 9eb60a07285a47ed34726b87a3bb6e1e7f374102 p3yk_no_args_on_exc +54026 a8c79b1e696ae7ed32b18545b3e325007b1be34f legacy-trunk +54027 165bbed3379d6d3f45be1edf2ae12f584728610f p3yk_no_args_on_exc +54028 2c6cd98db0b8f3e3e77c36c09d7f2269b637d78a p3yk_no_args_on_exc +54029 b35cfd8b4910614d2bdd70013ee082bc9e5152fb p3yk_no_args_on_exc +54030 ac0ebae4587222dca21dd1477eaf4c946a65793b p3yk_no_args_on_exc +54031 4c56fcefb283b7f6ba45b4e5afe393cb3b039abb p3yk_no_args_on_exc +54033 4087c0ec733bba54e8013727ed64f173b9a6175f legacy-trunk +54034 01ddecb778154263834e9b00b1cda2ad64090e5e p3yk_no_args_on_exc +54035 e476a5a78b2937e7672122f01ab66455db0a93cf p3yk +54036 56d51f5948653da2a1e9979efc4b11e2f6dad1f8 p3yk_no_args_on_exc +54037 7d7f322f2cb6787290bf673583f789315c72f459 p3yk_no_args_on_exc +54038 e2208d4f5a7fc9b86b3556d53bcc87022694f1b0 p3yk_no_args_on_exc +54039 7472f7b7d903446162b1a6b1ed3d2116ec845fce p3yk_no_args_on_exc +54040 1dce2502567921b252c93004f3cd285ee5ce1e8b p3yk_no_args_on_exc +54041 bdb52728b02ef4ab72d8970f48345c5fc73b9dfc p3yk_no_args_on_exc +54042 4555961c5a2f96aa93e82b97a449b362dcf5948d p3yk_no_args_on_exc +54043 e16268c273bb2664c6099eec502bfb5a4a5609eb p3yk +54044 4ae0490e1a0c0f349f6781c0645e229d46b11c75 p3yk_no_args_on_exc +54045 de2c9f9aea1ee76d59d3e0e52b7ef3bcf3aaa791 p3yk_no_args_on_exc +54046 69ca657a64e7edbf05eb2c3490cdfa55d24a1877 p3yk_no_args_on_exc +54047 4c1e2c33facd08ceeb670ec8c435c78b777cd1e3 p3yk_no_args_on_exc +54048 0c14b66aca702b4d1f9feadfc3a6226705cb64f5 p3yk_no_args_on_exc +54049 ee46217c87af7a873819aa3dcc733124f9659853 p3yk_no_args_on_exc +54050 27a2186f45cb4b237163e6e75b28d94ae601d31e p3yk_no_args_on_exc +54051 9185c70a1585e9a6fc0c2dfdef76581966ead903 p3yk_no_args_on_exc +54052 d9b1534ec79fe75043c00819651a49527192c8c8 p3yk_no_args_on_exc +54053 b46c6d27625e3e6c03969c36b649255d0247f286 legacy-trunk +54054 52e4530773c9701a06c11e11577ede9bb1df260d legacy-trunk +54060 be44bf2db350e4aa2c4256911f30216355eee10e release25-maint +54061 88884e7bac6dc2a28fa88b08614ac7e606232423 legacy-trunk +54062 52e95fb089017dab89f760c5c51a1adc9ce54586 p3yk_no_args_on_exc +54065 32a4e5ee2d98c14579bd51f52e86aaa035c98236 p3yk_no_args_on_exc +54080 1c58611c51d0ca6fa5982b5a1288cacfad073067 legacy-trunk +54085 be68da561dcd67870f965b164c9b27b67c25fe1a release25-maint +54086 4e3481961fbbc2ece165025cbcc089b216110edc legacy-trunk +54088 68a487d21c069a75c33ec86c5fc6f3902d5777ab legacy-trunk +54089 324a71a103ec2dfeccd3a5099e809ec22dde6d94 release25-maint +54114 2f2b8935a81e262026ba1f52bf1de84d8ea606dd legacy-trunk +54115 6def82b8cf20aa223ba7a5eaa99c4c899d4ec1d3 release25-maint +54124 fe9a9d39a3517fef589243e79fae57e970168254 legacy-trunk +54125 3b1efce358a36012730edc16b8dfbfd48701d10d legacy-trunk +54136 372070ba6fd31f4e389a90ccb3cb062fd817c7f8 legacy-trunk +54138 e1b000bed462f38bdd0f07cea175f53726cddad1 legacy-trunk +54139 6d3454c371dd43ac9f31b4a336f1442d46dbf948 legacy-trunk +54140 891c28d5356969b04925aaa6f45be61a8562ec6b release25-maint +54149 081b4e8b6f5b82165c305e27d7db238cc1681c28 legacy-trunk +54150 60585530f30b8bcda055a70a16e03d601c65167f legacy-trunk +54151 e422802202be0a205e050b34298410932bb302ec release25-maint +54152 f1e88c3502d9f1aaf80c45cfe9688fa6b8aba67a legacy-trunk +54154 48254739159ffaebb682dfbcab18d304c15ee17d legacy-trunk +54155 33b43debb97ee7677b6636ed5f10d6ad04e75056 release25-maint +54156 5c196aa6ecf48db9cd9e35dc8fef2b038b4e8134 legacy-trunk +54157 b6dcb77833857d99a946f5cc3fd7650dd4369719 release25-maint +54158 1080de49c81e8df564c8a0478bf60491d7541230 release25-maint +54159 5c08e6460dc554f88219eb14d5cc58d9da29b23f legacy-trunk +54160 b0f26a7813c9096f49d64deb533d2d89d375961f legacy-trunk +54161 f83e5822e6726be989067941e07b80f9d7b2d38d release25-maint +54162 09d08fcb8f7b9d222849fc770c9ed7666d4f622f legacy-trunk +54163 2ee366a2d2b891f7bfb79f6f3673ca0aab6ce5a9 release25-maint +54164 4e835df2b4ba88cb9ad185c89c5af9a95b45119c legacy-trunk +54165 963c0e442832114bafeb7b21b62220264d62e02c legacy-trunk +54166 06992e6b205a449614e6d8f4b25ce834a8404cc0 legacy-trunk +54167 3cfdb80bc68e874ce6ac382a458a6bb574e212b1 legacy-trunk +54168 1ea19f74504cbc60a1249eec4c6363626dcd34c8 release25-maint +54169 d4577215539ddd374190e9b561150fa754661003 legacy-trunk +54170 a6a095bf64585d0142f485262b7363a307167f54 legacy-trunk +54171 67cc0e95e8a578fb0a46ec2b63a65ff95c9faf59 legacy-trunk +54172 41ed94be6d5caa0fb19b4fcbe5e0c2d531a148d1 release25-maint +54173 6a599aee7ca40a12610280c2eb253f043d11a32d legacy-trunk +54174 614bcd37c6f3a4efd2e54514490b38c1ef0924c2 release25-maint +54175 6cd366e6beecc58fbe382fd381729c4367f67f54 legacy-trunk +54176 e66cfc725e8db0e10e1b92d169ef2afb024418b3 release25-maint +54177 6d8dcad12fd9bfb84c0e2e5ed956fbea23544c3c legacy-trunk +54178 8280b7c4055760228d93b272a27787cdb00a938e release25-maint +54179 efa0a761918c28c72f560207a8a9a2f6632dc7ca p3yk +54180 3ac24c0110e96f8a51d24252127be29ca504d554 legacy-trunk +54181 1c14b23b9c1bcf6971ebd04a8a70e86ee0bcadd1 release25-maint +54182 757e93a4096c524ba9e388851b5e6e01a9fe0697 legacy-trunk +54183 16c215e43bad0a3f41e2da0169b6d7bf27db3ba4 release25-maint +54188 728c60e85efa594fcd3b01544a1924bd6847272d legacy-trunk +54189 c8ed4aea6c58330d96a76495a0ee40ae0a721800 legacy-trunk +54190 21233c2e5d093994074dc8ab78ff74a2fe35280f p3yk +54192 f479b9c74b78199791d65770657650b53737024a legacy-trunk +54194 129ffff2ce6dc45f35206ef13fe5a2e4d40f0dd0 p3yk +54195 242de16a6d442c0d56759025f6c370612588daee legacy-trunk +54196 1a0c907928b401343b6716562afc43f77c62ac28 release25-maint +54197 850c32db27e6440656f28fa2341dc9e0d07cf330 legacy-trunk +54198 e1962ab12fce9aba8945fa73e6f973ac4c3d9d9d release25-maint +54199 7da23bf8949fc4a8eb88915bfbe2a10d664dc0c2 legacy-trunk +54200 81e486b3007885c05719451e326aa1de13fed0c9 release25-maint +54201 b092b2c83ab7e85967b33f76a35f5041345ddc54 legacy-trunk +54202 5102336ca343544cd65cf25e35797f4fdaa2c05c legacy-trunk +54203 423b364843cdc1cae0025cf889f0c82914aae9a7 release25-maint +54204 98bbc93bd55ba0a649f4b7c06b81a7778bd31965 legacy-trunk +54206 3b538acf7694e1318bcaf6419af4a1102c6139bc legacy-trunk +54207 46cfabb7d54463e69e2da3fab6c7555ab11851c5 legacy-trunk +54208 e42c63d7c230a880d7a67927dcd489f35417459a release25-maint +54209 baabef6c00d68e276756ad8c28d504d6de4d9762 legacy-trunk +54211 bfdbd3ec27d85a5ef434b4466fe4ad1385406ac3 release25-maint +54213 4a0e228c36e57f7221347ebe3345ca4325c0675e p3yk +54214 6e1cf4d28af34eb52d5c8b4b4c075c90dd78a8e0 p3yk +54215 157260ef677cad4cd4ee610c94678ebb8fa4a1f6 p3yk +54216 63af37c2d0c0ed289ba85ebf20eb68fe3b900a06 p3yk +54219 918edabaaa84e625b8399058639e0cdd59401d5b legacy-trunk +54220 c1a97b08213a9db534cf4912eb02b8d36f8ddc55 legacy-trunk +54221 32af9588a182ef448c0989548df7152a65930e48 release25-maint +54222 8aa7cb51d3584f8f93b2f9cb148b36adaa5b9d5a legacy-trunk +54223 2f5d84dcb6557dad35fd7a9a29d507cd137f81ec release25-maint +54224 d948a2c0fcfddd951208f0c0564381094acb8c66 release25-maint +54225 55659e64277be6cd40644906d0a8ae4aa902d9bd legacy-trunk +54226 9b56ead3532cd78e9c662e19ae14978e0dea4058 p3yk +54227 0bb969f15118a3880ec1be79bc3280b0074660da legacy-trunk +54228 83400df97379ae2f555738ece0b9ec417663ff1f release25-maint +54229 a7c8a4d1b9407d29b0580c8490068545efd9d23c release25-maint +54230 f2ba812f7200760b65bff75b31db003d74b5c8d1 legacy-trunk +54231 3be2175bbb00074d243c84bf9c9dcf56f69a9b17 p3yk +54232 ff0c46fb195a356a92f2d2dc6449c321eb70e0c8 legacy-trunk +54233 be1e2f745669dc095c7554c536ebb7fc114e3a46 legacy-trunk +54234 9cfc9cba6768b16fd6d52f939a930444c235dc73 legacy-trunk +54235 1a0f6a12874c2aac33f70645c3d906fdc23bd995 legacy-trunk +54236 e8310855fcc7a6744d81500057c9725db7fbd161 release25-maint +54237 f75457d7532ce0ce7b7d57d4703d9ac34571f97c legacy-trunk +54238 7f6d5390a11ab2dd75a2f836b7ad569a3ca5f0ab release25-maint +54239 7446ad6cb58bdcbfce818931da0bafc6dcd3b55b legacy-trunk +54240 09bfc0cdff9fee3be488dbe1b204c90db477c1dd legacy-trunk +54243 287779843c5d3994a21e5d32b0e3f8fada5e6658 legacy-trunk +54244 3717b1481d1b957379ab21b0ffbd69209c961541 legacy-trunk +54245 1fee9f42b1fadd97514a75914d41a024e276c42d legacy-trunk +54246 b1326aa04b2c3da24568a7f86f8a5da52936f145 release25-maint +54247 47ac1bfea3047c6ce80bf157924304f15a70b5f8 legacy-trunk +54248 fedd6ccc5e5b4f8647cb8a42ba050546b53ec582 legacy-trunk +54249 4aa9187b5159ccde35864104e5f6b3506ccb3185 release25-maint +54250 1af38af314f27273f849266d22323508e53ab267 legacy-trunk +54252 be0d49134e4fa2e85f6f06c3fd1572c95ebc1639 legacy-trunk +54253 1bbd688a6de16f57c99d64838a2e5a9f34326e82 legacy-trunk +54254 00237f514f06292a04b2179775aba1ea2dfcf6bd legacy-trunk +54255 01c8f3e3332caa18b92f950f5b875d8fff516090 release25-maint +54256 71809c089a26395e9e7010de17b758cd673a3b0c legacy-trunk +54257 d3a35fe13838a21967a76357dfafe77750286c1d legacy-trunk +54258 5978e07291fe7680d5e008eb8cad9be833bf3b5e release25-maint +54260 a3f311304ea632ebb1219c54b8f56ad628014bb0 legacy-trunk +54261 2b51b04b25454ca122830298e02d06f2f4ea18c4 release25-maint +54262 101a1ab573db4eb247515197cceb14cffa20d820 legacy-trunk +54265 cf452027073e28cce365bc6596162ced8e74e80e p3yk +54268 f118aadc11205c754cd6af222f996961bd014ad7 legacy-trunk +54269 c9b40b0aa303201d75fa8ae00fa4495de95a7346 release25-maint +54270 a8ae2c29c66ae2d60dda60000d749556f900580a legacy-trunk +54271 5ab7dc8e731a97aae281c8491b1812b5ef1bf7bc legacy-trunk +54272 d4ea068c38204d80d15d2c9bc71789aedbd7efcd release25-maint +54273 d7044465b743bf515a07c46d3c33e60e34168277 release25-maint +54274 60a35c07d32df341a4eb89f7799295e1fb6aff53 legacy-trunk +54275 5b6e1c008ca323dc7146af23f4783e7334725d61 release25-maint +54278 9a0ccdbbc568dce82b0935ae106fe0c1c5e4b2fb legacy-trunk +54279 72c5b55caa1db2e373d40429a4c9c8576e55e2c1 release25-maint +54280 d850bf56fdf6ca2fdd84f0f33edcaa448385a35e legacy-trunk +54281 dce940d9a8e9cdf0d6558d3382de5e6ac516b922 release25-maint +54282 47ede65e2efd8ffeb1098ce38abaf94c3bd710aa legacy-trunk +54283 adf612f706e4e9064bbde8e02ec12c792191b82d legacy-trunk +54284 a7daa0218cf0c063a5ee3d0c0967d50b044ee45b release25-maint +54285 3ee95fde7cfae4049423ad12346a76db85c1a92f legacy-trunk +54286 211201e6b045ed2c5115e0021359cbfdc2158f90 p3yk +54287 717bc2a4eee77b6f2df00d2fedc98fbacd0ae5d2 legacy-trunk +54288 a87bcc37bf0fea77ad299ca617a9e5a0b95743c9 legacy-trunk +54290 7100c59182ff316df877a44be51d563fee94ade7 legacy-trunk +54291 45ce388ec59a5d23be0b38a002b4c11232f817cc legacy-trunk +54292 2cb5fb7cd357e4b812e291c652f576a72a42d0ba legacy-trunk +54293 5be3d21773405df67b7b871611d684d25ba4f728 release25-maint +54294 66f265ac4ec4f90b5eb2680bb4ffa700d342b554 release25-maint +54295 1e12bed7a2fe5a46b2736cf588c8c75ce8b7a5d7 legacy-trunk +54296 01355124ce40515bc181c2de13b2a27bbec5bd37 legacy-trunk +54297 91a80e52d863ed5b2ace52e555a6e27e6e70d7c7 legacy-trunk +54315 91bd738a42067a13ac3ca53e227396cb581b6c61 legacy-trunk +54316 84478deb4ad96a9acde98e7d08a5b1d59cf0f0b3 legacy-trunk +54318 479dcbd79b57f15ef8a2e61a4fcec3b0017f589c legacy-trunk +54319 f9a26aa3d09c44c26d952ba76140b6b76c6728ba legacy-trunk +54321 9db3e325dd88d4b1774abf6344c31c35a6bf7a1d legacy-trunk +54322 7286d832ad2727145af443905b92046875c0ca2b legacy-trunk +54323 e2ceede20d8c29424c886d6520506cd7b001ea94 legacy-trunk +54324 16d7dcd7a69c42f75d7f3188f40c7c26680ac9c0 release25-maint +54325 bed57dff3db86e68f0fc9447e86491ea595b2118 legacy-trunk +54326 7a331c7f9404fcd001ac381f69b8528c518b46e9 legacy-trunk +54327 bbaf6c9356636fa537ade052486b6ffc9ddc5a99 legacy-trunk +54328 8fa4e980b5899fb9bd2153a8efa339a52018ca19 legacy-trunk +54329 b89437e3bc8ebd7d6b7e8a2a37c5c02b833b3174 legacy-trunk +54330 ade8d1c810093e5844f68526b52489aae5511b19 release25-maint +54331 b13e6128efa72a4e2667e0ce2897cba26c2099ac legacy-trunk +54332 b6c103845054f188d2ab5191b1ffe931bff98a8a release25-maint +54333 c6f415290f806cb055ff6a9b6bb59285338a5712 legacy-trunk +54334 7d30d62a901aa81f12409cfd6cac9973aeba6dd4 release25-maint +54335 5a3a1b02418afd0cb9f3a14cc653329e21f54237 legacy-trunk +54336 a4e0c79015d82fe2985a9df782c5aa58e7ffb95c legacy-trunk +54337 81e5c5d199887c95b02570c4e06511f9dc6d6f2c release25-maint +54338 a3419c6c0cfedf6afb17486dd0d6036bd024b235 legacy-trunk +54339 53ee2795287b44c6c96addd95a531928080b9e87 legacy-trunk +54341 1d80d84c77924975bcb393ed2ddd0c63cc82950e legacy-trunk +54342 b90d8b2e5ed07174c48ef6ac84a98b317def39be release23-maint +54343 0c122fe827d78a46e222f470eb84a5ef4dd00e8b legacy-trunk +54344 7b36a64dcb08d02662227b233d9ee47cd4ec80d0 legacy-trunk +54345 ac71db9fadc86b9ae169fe69d20a057eec61511d legacy-trunk +54346 28b0403f8c92b71dc3c43470c318e58d00b88ab1 legacy-trunk +54347 93e67d362a81a29a979f666894445068dadd1c22 legacy-trunk +54348 d96ebb20d3e1f6105c935c81d924ecd294657491 legacy-trunk +54352 4a79dd15ba59f65e391844af2d988ea616254730 legacy-trunk +54357 493cae705f9188c3bb709c7775fd963fe1eb4c98 legacy-trunk +54358 78686c7a23a7d503e8226c49ba675ffc5039815c legacy-trunk +54359 922b7708a80afe2096d8089d4cab519c20bb0065 legacy-trunk +54360 226d9fcf9d59cda477e290d01bd1b1edb3db506c legacy-trunk +54361 dba5a33a0e799528140229b53ccd64c0e61fcce4 legacy-trunk +54362 209d688f3ca5eec2e18611a1e7521caa9cb78d9b legacy-trunk +54363 eafbfa8a2b300c3aba91d5e6a452e3c177e07743 legacy-trunk +54364 f1f186460250a2f5308ee46400d0611358ac831f legacy-trunk +54365 ca338d563a7ad16ff8cd1c9be830a00feeb25431 legacy-trunk +54366 d311013a1638a94cb36ca116056c13036e8a7bd7 release25-maint +54367 5a1a0aa9a4bbae1976a47cb0158f30e161a15e6a legacy-trunk +54368 894691ca48353f0c41b8a5bea114132d4ef8d016 legacy-trunk +54369 1dcdbc25dea7c6598ecfb43d47a9147a387e8564 release25-maint +54370 52a69a064637a599537e4d352ac09a087724fd4c release25-maint +54371 de1d05c55b6fdf3cea225ee785194bd883d0377b legacy-trunk +54372 ff9d81e76a76f7d57e62e9d2dba534a09d7d31ba legacy-trunk +54373 bc2a5a54b5caf3f4e1f0f6daa63e061843295e23 legacy-trunk +54374 b500761b4b626dc1fb90c308e08f97aaa586422a release25-maint +54375 56b2b933baae2c45dfe526fe11c60c537fb87c22 release25-maint +54376 c301b5bcdfdc510dfb9a8b35452c88020a5fe609 legacy-trunk +54377 90e57e2c7a0333eb78ddc2c53644b5a78148d65d release25-maint +54378 2900ec04031d94c3af8d6a88993dfbe62c190a38 legacy-trunk +54379 fc5e045ceae438d23890d3f6569de260b560ab84 release25-maint +54383 514aeff63c9ffb551100997db4bba6ef3d0af78b release25-maint +54386 6280552c129723e37d7b388b4b582661a18bef3c legacy-trunk +54387 9943aea4f2d1df22c7a60ce33c9ab9dcda5364ff release25-maint +54389 bbce2d8ff73d54e0f97790a26ce38aae4da44248 legacy-trunk +54390 4eb4cfb6254ebb7b8f3f0ac249bd13f7a5dd64e8 legacy-trunk +54391 d155ae63672848eaa16be06dc57013a526c6b7dc legacy-trunk +54392 0a6c5135d2def498e82958711348c08cebe4179f legacy-trunk +54393 fc527eb98dce6855ca9397f6814d31053c2f64cd release25-maint +54394 376b4235dd444481b7864f35d866a2fb6363da5d legacy-trunk +54395 4acb45c297ed1fb6b8e29d536a0a3509a71cf36c release25-maint +54396 8d97dee6df6444416e3cc56f446fa0e2bf5a1cfc release25-maint +54397 4217f3850f0b8a5b6e7360059c60f7e36e46256b legacy-trunk +54398 52c339c0cb38bc69d6783e5daee6a4968f701b08 release25-maint +54400 a377f942ee0adc18985f94b9e4ec7b3e36f820a8 p3yk +54401 a312c276a5e79bcfb370b74999983223bdb37021 p3yk +54404 b43a52f71696a0653b29526799bc7aa7c0c6def0 legacy-trunk +54405 d835809f45ec44914f4bcd10819ff6edbc716856 release25-maint +54406 01951f6b819d13eab23b67e5aa14634d6cf80e34 legacy-trunk +54407 94205986ad5308a943df1783a62103a7ca7353f4 legacy-trunk +54408 2690de4beaa13da4acd96f10cf1227716aa94b24 legacy-trunk +54409 645070b839426bf1f93bc758820b524fd7fd89fb legacy-trunk +54410 a6979ac9533fae669876ac2ad9d145e10738a14e release25-maint +54412 c57cd546612dd83e87dec317ac4680996b659a7c legacy-trunk +54413 06cd60b0bd164c73e22a5d493529e75f47dee698 legacy-trunk +54414 d1ba8134528e28c0bab3c4e493635f3fb0242231 legacy-trunk +54415 72da48d96257fc30b032a2b4f5f9145bc211d580 legacy-trunk +54417 8bb570ae4c45c72e8ec22f99c688e7876eee6463 legacy-trunk +54418 7549c4b3aa36a01d38ed055fffeec513bf0c7e9a legacy-trunk +54419 f3d4274d063d30bcc8096020451337d52c818ef0 legacy-trunk +54421 ebe52dbc3553f7ee6089dc3ccea81a59eb7df259 legacy-trunk +54422 91268678d57f96d5100c2641515dbe9e7bd6be44 release25-maint +54423 1373a83083bb213a9fcc36ba1818c0166efc8e06 legacy-trunk +54424 a2ae24ffa60a903558518cb0ed2441ebd29dcc91 p3yk +54425 3c73a8a208395fc8f89a51a09f9728cca6d8378d p3yk +54426 e3ba60de3d842e1d74c2104b2763e66836996f06 legacy-trunk +54427 343be396bbd7c6129c4612f597e6c268edef15d7 release25-maint +54428 19f7ff443718f7a9da1aea9edbf00a135f860883 p3yk +54430 5e24f636ac7576e8b35fdd8d8793bb154a1ed083 p3yk +54432 071016c729392e553ca3c9f89d248b9380021eb0 legacy-trunk +54433 1f843890a4e61b4715d2c3a14a5ec2b15ddc01e4 p3yk +54434 b1a18c7ed5ca679aea88f07451318ec7d66abc58 p3yk +54435 16fe936f89b19a55112340ec5d4a88d077b78e80 p3yk +54437 8d799a99cf68f4d68e73a63fd15b9a161c18a184 p3yk +54438 037fe6a444d2fe98274ebaacee4c71d9059afd7d p3yk +54439 8d06c1121b331a53f2926030f40060f9e7928531 legacy-trunk +54440 6c8c33a43a1555b81ecec9110f5edf0d249590bb p3yk +54441 9f07d410c555469674259e26a78e4521db5507ac legacy-trunk +54451 c7c2754ff2d6ddb9a90f182770e7a3b9b22efaea p3yk +54452 f9973a6e1afe01e0fb3bc97d7a40fa01f7d179ef p3yk +54456 8d2978142593389fea46769a98ccb57960dbf79a legacy-trunk +54457 236af2161eb678ad44de41bd1c59f39cc0bc9a59 legacy-trunk +54458 6018194afbbde13e1fa3d24888d7c0478181af69 legacy-trunk +54459 c997e907c4c67060d8381a76a911535dcee57dba legacy-trunk +54460 307e5d4164f3a3bb12150b707baf198c6fd622c0 legacy-trunk +54461 5a771b4a8b78cc43d75620f597d22b7a6792c492 legacy-trunk +54462 45669c414db4556755246e9710bbec5554f7333d legacy-trunk +54463 b8b17a2face5aaf3cd7f7390cb7c38bebfdfaf9c legacy-trunk +54464 b43a2da832a70d7a89c2fb9caa6316cf46f5d072 release25-maint +54465 ec6fb091039b453c0c0e921fea46ec7f1f10bdcd legacy-trunk +54466 50a6b33c9d2c5c07131a09c1f8757ca666e9b123 release25-maint +54468 9d0c054117348314009e5898154021e8494e83ba legacy-trunk +54469 7f29be1cefba125634081c310bde2a083974e56a p3yk +54470 e12c504e466b5b6e9f2c860bc70720bbe3bb76ef p3yk +54472 f29f1a8b78692d1cff1936e0a042020a685538bc p3yk +54478 8812718669e19792213cea6868f334c44e037ba9 p3yk +54479 b752a1e0944b43608eb380194ed6fc6486c06e5b legacy-trunk +54480 9cf22c5eee3d7fa0001022380af7f39cca01863b legacy-trunk +54481 08d16183a9c150522ae6ae7c0f16a5bcf6547fb8 release25-maint +54482 1dc4c4ce2db9ff020f2b920399f46878c8ab1204 legacy-trunk +54483 d16abe5c92debf55516e90ae4f593caf58a0c97f legacy-trunk +54484 852c9896fe923651aae8fd560047f7fbc10a3603 release25-maint +54485 459e36b2ea451fcde220fc0fa263b6d5fc85ed61 legacy-trunk +54486 5b711632cae132ab8fdc3d5e5b52be4bdfa97777 release25-maint +54487 cb6eb132accf266894f0b1df2abd8e7ceba62cd1 legacy-trunk +54488 7393c710d4bbbedd9a207e2e692e19427410e4cd release25-maint +54489 e55bfb1ac1e7ccadea0636ad892976c1d4614cdb legacy-trunk +54490 5bd9663620bc978a127972a7ce7abc6f1647bbdb legacy-trunk +54491 b1e8bfdfe4b795a02dee6c785d14d94014fc9ec0 legacy-trunk +54492 ccc447a6d91648f71162115f45d0ad7799adecb1 legacy-trunk +54493 d25f7757486631e844b1a4f50e972e014a9b39a0 p3yk +54495 15a7e0b7e4256b5c90f8c2258aded69fcda57013 legacy-trunk +54496 f889f65a4861beb5fc01917cc2d5aa95653d54a0 release25-maint +54497 408dfc7e30184c215a06384a1d59f81c63c4b435 release25-maint +54502 d428e21d6eaf58064ef4caaf723d6f75c6796f1f p3yk +54510 bfc4e804610238b8b00c392e3dacb2736313f2b3 p3yk +54524 acf9a55c885d7912769e69cc682d92312ba8ed2b legacy-trunk +54525 52e2fcd53ad339663eebdaffcb139bb5803f184c release25-maint +54532 1757f80b5fdbae479ddf6043b70993975b6bf523 release25-maint +54533 afb1c6cb2c88422914e68afa01bd0e85ccd9f94f legacy-trunk +54537 fe1842b48b66ffec8a698648faae72fa1020f40a release25-maint +54538 42eb5bb7766157af350ba58023a8c4dfe8f26d87 legacy-trunk +54539 8debce2c4fb1b4e87294b5c6a365924e668ee369 legacy-trunk +54540 51fbf2a75548b1a6400878076a075fc0154e41e8 legacy-trunk +54541 8f1c9e8efbbbfd19f8f29bd1d553ddc6b39f4388 legacy-trunk +54542 d8748673fd9f9a5eaa6b7e791ebc610e5b5b79a1 release25-maint +54543 02574f485b15c3ebd9fc1d62b0e999bc6f59fbff legacy-trunk +54544 0ea5595d75dad8a3a3351a120cc95f128e097513 release25-maint +54545 12c70558074e7cd0eb329735e41b15e72f5d085f legacy-trunk +54546 a73aa0b821ca5884cb3f0625e248efd2cb8caa39 legacy-trunk +54547 3b56e7e894702e0ec0dc025e25a54179ce93ee2c legacy-trunk +54553 74d29b635416b89abc50cacbd0a502ab73a0372a legacy-trunk +54554 3ff6d3fa81229b90e62b39fdc618c21289a0ecf1 release25-maint +54555 18995bd8bc8b3aa6b958c8eb3da819ce2661f3bf legacy-trunk +54556 1c3e0d2c36dc97623f9a8cc1f53fce7ccce06894 legacy-trunk +54557 ef70cd4dba50b6574ad1a5b711de155ec4a55972 p3yk +54559 38a3da026d5e5743de67a5ed8b3592343dc05055 legacy-trunk +54560 e938e9ef434b82e61f8b85ce03223d270ab90484 release25-maint +54565 32f72e57618cc15b2ef612cd48b86c1f633f288b legacy-trunk +54566 8fc6396f076a5ecbb21a53c58f9c89576da3fbd3 legacy-trunk +54567 650ee179f3cec20a7bae6dff2244a38a3a5a231b legacy-trunk +54568 8258f25d43d79649034e5f36f5d71babdc1390fd legacy-trunk +54570 3c0913b65e8d6d55e7d614f9d8d399cd96add6ac legacy-trunk +54572 eb25c8e2b4a1ebe246a2e64abf623b294f2f112c legacy-trunk +54573 a07f98cffbdfef95136265e1d64edeadb8da9dd9 legacy-trunk +54580 2be133013b71cab283ef4093d77cad54e881f372 legacy-trunk +54581 8be744d5c5673892355bccd0f4d846e4fa20fd40 legacy-trunk +54582 03d5db8325f411a6b783a0a6d99b3de76e2324cb legacy-trunk +54583 a31b0b18cac62d8fe3735f45c217c074bcaeafab p3yk +54585 65326a3815f760ae88741999e470a82fd2ffbd34 legacy-trunk +54586 e4893ee9a88579640056f40214c01aba1ec6f07d legacy-trunk +54587 5095afee080f1009a5829c8ad7407e73adc26688 p3yk +54588 834da52eb2a4ebe6f80e059d113acf1b048d328a p3yk +54592 45a2761c9b16ce3b3e47b3e8d9bf8e92d0a2f29e p3yk +54594 d144f81574c085de15b8291c0b00bf5bccdab722 legacy-trunk +54595 d416d97171815ba628e457115aa243d1fd6bb855 amk-mailbox +54596 3e6d03217a02b0599f67e3a3968c4d4cf4381cb9 amk-mailbox +54597 46ad2193968efa7a28fcc58d06fc73600433dd87 amk-mailbox +54598 730545f24086dd981937658f1cd1700f72ea081d amk-mailbox +54599 2d29665679e674660346524536a3b4ed2051cb3d legacy-trunk +54600 efdce8d8db990028a412dc7718e84530abf118ab p3yk +54601 f9dfbb5d35c2f32e620f4d428a7a1cf5ca680c82 p3yk +54602 b897b77a004f7a58d86720e92523219aef03f453 p3yk +54603 39e4386d71f6525ab654078373a4567fa2980edf legacy-trunk +54604 f57e8e325475ec506638b046530e935495ddccdf legacy-trunk +54605 5a8ca9dd89db347cfe287fe5d93e06f6f721a36e legacy-trunk +54606 e3349d412681ee6f0f4182b1efecd05bcd972eed legacy-trunk +54607 fa2181bd27049bd8fa3c9124244f9dbc8c6bec55 release25-maint +54608 3fd8f06577fff9a510720a98ce2c276065a02331 legacy-trunk +54609 519e72d630d20873896e6e4d67a1a87170f5095f p3yk +54610 88c2ac590441c2e53cc606794cf48127042f390d p3yk +54613 ccdc5b3b9b117ac9dab4eda089df4da3a76cc12c legacy-trunk +54614 378b2f47e808f71311a06ae14dfcdb4d68f691ca legacy-trunk +54615 6f9e693d76a184848a4fc2d968442ebe485afaaf legacy-trunk +54617 8e3c7a5acbcdf00147f23ba20b324ea61b795730 legacy-trunk +54618 83e1b06117146c6df87b1a0a11f3a8431a9a553c legacy-trunk +54619 4e60e3a60f504cb3c1bd38b61d08bf50157da71b legacy-trunk +54620 a5075a5273df78d4b1978447281f2eace40c5d62 legacy-trunk +54621 cdb25798cf0ba05a4dd5ba8ef209c7fb24ba92c4 amk-mailbox +54622 58427e1e51bdc60689fd48d7a81b93c8b5debac1 release25-maint +54623 dc6e9f79cc4afbfc6804a6cc08d8ed79620061be legacy-trunk +54624 5026323d992883346358991547defba666429da3 legacy-trunk +54625 55ecc3a4568663872a79537a6fb5d9d77c3ad215 legacy-trunk +54629 c1f67e1eee58b6193127906153e8fc99f1243ee8 legacy-trunk +54630 38a861181fdd58c35d9e38431f940a9dc07d23bf legacy-trunk +54631 41db3f30a3f9f0d1c11c610d2f1aa58c7b4165ec legacy-trunk +54632 db9eadc0782642361bf463783a96697c5cd05f0f legacy-trunk +54633 f86557e503f3a7d13eafcadf00663c1f1558c4eb legacy-trunk +54634 93478744103879a85b431b2393245a66290a6732 legacy-trunk +54635 c2bf3d646effa2b32900f533a9d79c438adb68a1 release25-maint +54636 2ce8e80539cf79163bdaa0655a4d5e0dbcb49458 release25-maint +54637 fc7fbcf2ae5177afdf257cda63ad42822a8ef8d1 legacy-trunk +54641 f219bb7e74c92172a8a9b340be5e567d1ffe2895 release25-maint +54644 7dee7f7d29f08c9e8037ba30e270f4be4edb48a2 legacy-trunk +54645 221194249fa86e3c5d1316b1b6983ee4d34f4a24 release25-maint +54646 b5b750cf85c20956e6be6fc7253b8a2072ff6f29 legacy-trunk +54647 696a666dfe614169e657bf48025ea29e98c88021 legacy-trunk +54649 ea6f2c5d27492f2c55b5977308251a1966bc4af3 legacy-trunk +54650 e95d2bcfeb4631e632a03f440509decefafe3acc legacy-trunk +54651 acdb4f3c3d6322a3a97b9010a2d3c575998480c8 legacy-trunk +54652 1a5da078c435f2f7558005bd03fe2c379822cb86 legacy-trunk +54653 90c4c3f042056afbedbe4460a9dc90e42c9cfd76 legacy-trunk +54654 35bdc61ac8eade9f2bf04eb94925362e7a712c01 legacy-trunk +54655 47d05f1aebddfbdc2e00dc85e52ccd52a701f3b1 legacy-trunk +54657 81e58f0101db7a1214e91055072f8ac2fd104bf1 release25-maint +54658 f764a7552162efc30938b7ed88e51acdc31bca7a legacy-trunk +54660 12ff20948a0225737c524dda7225fac371b35781 amk-mailbox +54661 6760f38e9ed6761bdf68aa9100488dc0eca96132 amk-mailbox +54662 6a3dd1c4a7df01415541ad93bca96f73ac26c30e release25-maint +54663 4a03860ae08b5707def8c168f71ef9aea6961d42 legacy-trunk +54664 ef5d3e53938472205ceefe40abbc1c404ac35bb7 legacy-trunk +54665 99bf145558d35b2559c8e772e71b327519114c01 release25-maint +54666 48d8d5d317aee3aa2cc6648ecde61d40695a7143 legacy-trunk +54667 343eef3427773be0902320f3db91356eb51f25e8 release25-maint +54668 e685bfa6b4eab875024d42175bd54083f90a66d1 legacy-trunk +54669 f71feec7d54789f94a3ee99df9e379fd546f5558 legacy-trunk +54670 890bb9000ce55533fa6f55733fb60aae2a810b0b release25-maint +54671 22a167c4678c2a85ef7ba6dd9848c478a7ec3d03 legacy-trunk +54672 85112dd500595ee233df5336ca6219bba4691d62 legacy-trunk +54673 cfac64a02a3d83e163444a1dcce27363a09e46ea legacy-trunk +54674 c7381804447bc3d414b0f933c40a4e46379874c4 legacy-trunk +54675 ac255a42ec0e1a91432fadc1a9cdd7fd359316cc legacy-trunk +54676 d41d1ba209c942ae071a6752b3b411c20b830a44 legacy-trunk +54677 cb6cce4d4232bf428d240dcc5ede7ed1801475ff legacy-trunk +54678 e1ab25fd5bad81455f4c94c84be13443d46bb7ad legacy-trunk +54681 dd7c69bd0c52a135b31367435a7392f189c42312 legacy-trunk +54682 e7f78a37ae50b0b9f291338b1e8c9156ac78e012 legacy-trunk +54683 b7e378e9d02d55c3e8db2cdf9dbc836aa2bb512b legacy-trunk +54684 586a7e877500e20eddc26e5a7fd5cf9503dac404 legacy-trunk +54685 d8cd88f930980de0f86ecb0534a4c02ab9240bd8 legacy-trunk +54686 b001b65478fabe983610804ad899392517ffff29 release25-maint +54687 43250018285c2bb2199182cc14a10c6ac8c28cc5 legacy-trunk +54688 712a15efcf19b736912d3eaf00ea3be64afedc08 legacy-trunk +54689 512f56afa4a0513e70d406050ca8723bb5c801b6 legacy-trunk +54690 4c7ebc397d947c7126d76bdba20d7ea3c44f233d release25-maint +54691 812027f1eea535a3a3191d7e0ecd9afaf27f38c3 release25-maint +54692 28aec1358f594e14bf7be6d86b0dab52515fc2d6 release25-maint +54693 4777c4007b5b194423953d41b1e5e6adaaba6c5d release25-maint +54694 8170d44dd90488de0278e511c037db31b29dc5a6 release25-maint +54695 80ff75fa2754eb0f8b45c0472e4bf117d61c1c45 legacy-trunk +54697 9a50e2b6b685747f8f905754c927c1b85b6f9a42 legacy-trunk +54698 ea6fbf404c34d9631b83074ca416ceead7ba8efa legacy-trunk +54699 581d127e822b71946e164ec87b1a156691bd35ea legacy-trunk +54701 9120281241b82cec101eadca5a69b4c47151c576 p3yk +54702 bad5f832809fc2941913e40fc18d9b02ea00c0ea p3yk +54703 58d49cae887f2f9a3dfbd761241918dfa51c7d65 p3yk +54704 3b1396b012393820290fc30508e13e148f49ae16 legacy-trunk +54705 234869dd2784ed0f6ffbbacb2a5099ae328f95bf legacy-trunk +54706 9408dcd3ce88fdf02f1bf874417a71b23c976f65 legacy-trunk +54707 c7b830c86f42bbd381cff62f192c85442700f8b5 legacy-trunk +54708 020fd6de6525da34c06b01e2ecf17190f2f856fd p3yk +54709 c5660055b425ddbaad6fa4b7948ed170ec062cf6 p3yk +54710 d8b14994d870b68e4d0b759df1236c8f83b5caf6 p3yk +54711 80f5ee21e545587dd50bef3cef0b328584dc3677 legacy-trunk +54712 cc00bce6c59d37a3784930765e18618360f7312f legacy-trunk +54714 b9124c0ef17a3218de473c46b78e66cddd98ebac p3yk +54715 af511d24463693cf440d11c88639bbadfcd9f911 p3yk +54717 e29fa4a1cbd931b3fea725340ec67782117d9a5d p3yk +54718 a5707bf4f6d143392efb61c8c49809eac26a499d p3yk +54719 339015d98b786422577aff4b55553d00e957dd97 p3yk +54720 522b3f35d0eb7dbb637532da77f85e16bf5c0548 p3yk +54726 4d50fad957682062f44975140df94b66be0ef9cc legacy-trunk +54727 6573ec1e5dc0cdff4ab206f7b995862ac3fe1a76 legacy-trunk +54728 f4391abe5b02345f2156bc4357e593312c0a2f96 p3yk +54729 854399297f957e852512fa58e5b4b7a8589aa9ea legacy-trunk +54730 67f900d2f2e6214ec811c2577f06efcfe893ec59 legacy-trunk +54732 ae4ced28a83902bb21e9f32e52655799507952c8 legacy-trunk +54733 4f77016254bc84bf51fe2507baff2f65345f7900 p3yk +54737 c90d75a5e19114bc7aaec2a6caefb44b5843733d p3yk +54738 d4108aca876427a9aba5eb99d32cc32c45706fb8 p3yk +54740 ba31e71210d469d3361786f84736d8173300c6df p3yk +54741 e7d9791014308a87519a939b3b950cb881c5b666 legacy-trunk +54742 7c6972f37fe35320cc1fbcbc2f583b7fd4520b58 p3yk +54744 0486deaaade3e40e86aa5e318e63162a04f8aa8b p3yk +54745 4561f6da3b7d3947868f551fbc7edee98e6c6819 p3yk +54746 40110d06e82ae23b6793e6cd229c9a99178b4458 legacy-trunk +54747 15f34ad4681b88545a376a5eee6f376c0e7df87c legacy-trunk +54748 73c016696a82f84bec7c5d02f2dce6804c01b397 legacy-trunk +54749 26cbcd79a15310156503e499b281807b3a3c2e78 release25-maint +54750 28bc7ed265747305a5261247e5a2002f9ff10513 p3yk +54754 981a31ff1966df3259349d1ed76b05d1fce0b7aa p3yk +54755 00d9f50bdc31aa94cb15a26702c681c4206da4c6 p3yk +54756 f390793e75dec3d97a81f01b603201f37d69affa p3yk +54757 46d0f4057705b097e9a170871fd01a5b6211dd06 legacy-trunk +54760 0dfa2a5640760e688f547c4a4c0cac5c4ff3b01c legacy-trunk +54761 3667d1a8c916f1a3dc81a903e0cdbf8326a67aba p3yk +54762 a01cb3df38ddf34741b2482da73d997edd21084c legacy-trunk +54763 c4f403f450eda65e9a216c709a392f0940e040a2 legacy-trunk +54772 cedc8d7d1c7feb52b26febed9ecc79c275556140 legacy-trunk +54774 86c46dc6a774ae9745a5048e4428f80ae177f131 p3yk +54777 65cb6b1fa3951f345080d1c82ab737b79a74b7fc p3yk +54784 c34d705b884e4e9f073379b51fe0aca2e5fea5c9 legacy-trunk +54785 c0c4407d3531c6baf54cc085944dfeeccf7b9063 legacy-trunk +54786 8447314f500a97cc55c4fd8469abfac9fd1031b5 legacy-trunk +54787 953bdefd81ff556ae621d7ff86d11832924d525d p3yk +54788 3569587bef065eb903ccc8b36227fe28d37a3665 p3yk +54797 458c8db2e94616a2af33c47703712c9a8629f860 p3yk +54798 0a389b47f129e8f6d06ebb8d12dcef38186814be p3yk +54799 d1c3dd184e3882b994427436ebeaa4809ed36fde p3yk +54800 e2d7a4c39360a8f1c137b08a51a46dd966bbe029 p3yk +54801 3c339de8001056b6d2a074a2409831a8a678e122 p3yk +54802 35f9ffc6b510f8f9c66c662cfb228d6ee0352075 p3yk +54805 b822fbd85afeb3b7ab2477476590dc42b9727124 release25-maint +54806 5dfd2f4bc834b68333c5f196e010823355519450 p3yk +54807 534e4c707e91e6bda8cd325853f961025b690feb legacy-trunk +54808 bab9c38170926b376b1500bcce0335abe693e2d2 p3yk +54812 0d1e415ec36ccd369e406d1dbbe971440421fb8b legacy-trunk +54813 82f2791b7c022164af2d823b85bc3f406c2344a7 release25-maint +54814 ea3ca495f3211d3b1e85f6040db22bfdf830b4f6 legacy-trunk +54815 ed820239f8787606cfb8408b94b42670413163fa release25-maint +54816 8423772097c74a6cc0aded87ffe532b46f34f383 legacy-trunk +54825 5f8a87fb4df332d9f9b3e74be4bb9ce14e9ae51a legacy-trunk +54835 060c79f6d91967fed3c2795c8da091e44e2f2288 p3yk +54836 d67b5d953b4523b28bb61cc06a23956b38189ccc release25-maint +54837 bc75c523b9d817164e7f1d44ec3ae3e61ae078e3 release25-maint +54838 5623e233e9ccfd47be39678e117793a2720c1f06 release25-maint +54839 4579a274fd6e2a59ef6fb43c1c9799a6dc0e8a0a release25-maint +54840 2fe91d201b0522c1c31755ad26deb6d87d5c1d73 release25-maint +54841 31c92828aefb1b24e90055b1497e06d9edfba29f legacy-trunk +54842 3e5fdb93c95a7cc2e9d7600c6d4152b3467e756b p3yk +54844 cc707f1ae0b6eed3d3254274cb5ffc513e7219fe legacy-trunk +54845 a49859f44c430c654206c7e5cb48d005586511c9 p3yk +54846 b5a2e753b68231b0d1c3d564d842b95d840d5302 p3yk +54849 e0116966365e2b7f6d98fa436b535adfc056dff3 legacy-trunk +54850 c1cfd0af5f57327147c335d27e9e9ba847aba71c p3yk +54851 090972c20a472e9b2d5b9c1126b718e4527e2efe p3yk +54852 a30af833d389b828de3345bf41736698edb5fe40 p3yk +54853 9657395c25e58bcdee61bfd919570f34716c5b67 p3yk +54854 99027c2b3fd2de49a967ebe008da5422ca448da5 p3yk +54855 bea0a5592db3fde97f69db2fcc14520d55ddb929 p3yk +54856 a5e410639e24863558071cbd8bac4b42ad2311c7 p3yk +54857 61c28d778e37932b38aaa0bd7d3460b418f3309d release25-maint +54863 490d8c09abcb814950be7bb7a25c3ff2047c7eb5 release25-maint +54864 4e0e84f9d14e2b5d2864b1b3b1e152d20c12c05e release25-maint +54873 c32c4b3da93fd4bff6417d664098c4aa00e8aae9 legacy-trunk +54874 58527b9b242c7d4bd51980dd5a10a11ab6ebe974 legacy-trunk +54875 5a6d903ab7b5ba4ef0d1d91d2c1b0ed6b1aa489c legacy-trunk +54876 da403d2b886ab58bf0df1c11dc71ddc3da5897e5 legacy-trunk +54884 76fd3b98d007f6c48cae919b39bdc13e87cc3e0b legacy-trunk +54885 17e4363ef2b530f1aa9a0bc128418ee63f7c44e0 release25-maint +54886 0f675a629770aa1c2fbad0027c255907fb1ac981 decimal-branch +54889 01e6d84e3892452473236f23eeaef74ee99936ae release25-maint +54891 18795d49b8d2ac40bdd38890347b7400c4f45489 decimal-branch +54892 f43664e8a1fa4c9fdc450d05724e72d94ec4181e decimal-branch +54893 bfb6f1332fb4e33d5c724a6bbeaf546a509664e4 decimal-branch +54897 f777d1dd4dcdda2577d2faf42d146fbc4a9c9ca2 bcannon-objcap +54898 6b465cc025b3f75cbfbc6eb7d491653dc88e621a bcannon-objcap +54899 84b5aced53561388f31173493d8b90d5b0396577 bcannon-objcap +54900 af726fb681faaaeb8816624ac615ce7d499a25ed bcannon-objcap +54901 0b70830ed743fccad8eada340479e61ce3bf15d4 bcannon-objcap +54902 bb60b953983941e92264b27e1b3fa25674bead42 release25-maint +54903 8cd093274d57810d6d168a33d786a5d3c82d6d66 release25-maint +54904 1cc6bf2349e4e1e03cd075d6b9b88c952f2f50bf release25-maint +54905 9a8c3d9f405a8a5fc67d17ffd371fb1a3323c382 release25-maint +54906 6c6c8a8afb381e8aa445d8bf7700471accc8c569 release25-maint +54907 5a4619214043d016632ee842e08d5883c679a028 release25-maint +54908 aa3c7ba53f9d2f4696e0ef220dd323006a77f8e3 release25-maint +54909 0a6e537b8d96b367a944f641eff296a9c76cc502 release25-maint +54910 0c5019afc55b5e2aecd8d1d67b692790e0b3afd9 p3yk +54917 1e28c68b4e43fb2f956d882b0035da43f34bcd56 p3yk +54918 2804e48861ba627f488de566df13b8f9b8f5fd59 legacy-trunk +54919 45638b37b82c8138e5d66f5d9c501d361032b05e release25-maint +54920 3ccb4c143d3b8b253ef014eace1fbe112b76932e legacy-trunk +54922 3c267092f131e5ab76e57e5f5b91a29dd1abfe0d release25-maint +54924 f5526d2eb6547b1d8cabcca39ade29fe1592ec8c release25-maint +54925 55d761acdcbcd412d9ef14acf1979b97530f8a21 p3yk +54926 26df566f80f0dd78fc450fcceebf3104d59d0561 p3yk +54927 810d333a73a10dde0f603f5fafb52ac5ada0d00b legacy-trunk +54929 3c1205ca442b6bc8760cd8dd622d7a859e6a4b4f legacy-trunk +54930 fd0fbffd6d50f785cfd6099fdd40057a5fd71466 release25-maint +54931 09ddbade65feda3902cdce7ac6b66fbf2924e16f legacy-trunk +54932 91f312176eaf378f0785a7f3a993abf067f365b2 legacy-trunk +54933 f4461938f50e35be38664f8b1e54452f6517db92 release25-maint +54934 2f876a5ffa0d3d4f2c5fbeb0e6e39d385509e06f legacy-trunk +54935 d36a361c05fd027d3b78106b8a53c410e631d8d9 release25-maint +54938 f58c0d11a75c315396d8108e8c80c9d021fb95ce legacy-trunk +54939 8d5018d7508a2a7b3a6b187a4893efbc65e80818 legacy-trunk +54940 d05d9864b63c79ec61fa3966fff3b7b5ec4f9f05 release25-maint +54941 7ea5949714ad15b86e07eb57bfefe999e136d3d2 legacy-trunk +54942 abfa7055b8f309b2505a72537ed7087b5c15c25d release25-maint +54943 7e99af869c9176db4681abb354a8e1f0ba8b9df7 release25-maint +54944 519f2313453b71bd8251ddeaebc8ccdf804f6ef1 legacy-trunk +54945 b68272449df4b0311bd70c94a27a473536a355b5 legacy-trunk +54947 708c8c5fc173236acd28c08d9f4575e7a14f76e2 legacy-trunk +54948 1bb1fa7fd1741b37b1e789a3735841779db5b8d6 legacy-trunk +54949 47aeb24882bd79d5afb89d7e07649845ad74b1f4 legacy-trunk +54950 3ee849746c1bf5b5300aa19c922e8215693e5296 release25-maint +54951 3797b98092cea2da8fda692bd03e835f4b2cc62b legacy-trunk +54952 ca489804ae201063d42e22cb4f055b4879055e01 release25-maint +54953 4b9fa8092e827103bcd1b1b2f5f9676ced40a819 legacy-trunk +54954 7ded787e63116cc9c26b695cacc96e92ca04e2f8 release25-maint +54956 6c4d7678af5e2d1937fc8fb167f41a21061c6e93 legacy-trunk +54957 1002f42e10cdf2d2bb5e81fb7ccdc793b1f8382d legacy-trunk +54958 71b5c1e2c09c221f113337ec81c8c885eef2aedc legacy-trunk +54959 019904c64717c868738a8dbad7bbe73938872ab2 legacy-trunk +54960 1f1fb81888ae28e5db5d937b9723e46b23b11967 legacy-trunk +54961 761ce3946b86eb83631150ee4c0758029107ad5d legacy-trunk +54962 3f43ebfa92dcf23d564b07afac52d04f3ea66f5d release25-maint +54969 0f29a1a0972cdfa43ecd245fce494e75f0394622 legacy-trunk +54973 e616fa130c2fcc3d053cbe07e946d19b9845fea3 decimal-branch +54974 073d68c29049383b0fc3f5696134b5293f949d2f legacy-trunk +54979 b6e8adec054c7d7ccd3bea6d299464718d0177b9 legacy-trunk +54980 00bf147601e48d15fe94210192b5cf9c2961e6d1 p3yk +54981 f7663c6734bbe4e432aebf4bda8faef6e0057efa release25-maint +54982 d9a487c2fa96160106da8c594f43731953d736d1 legacy-trunk +54983 6877b78e810d0245629eeffbde094f56fdd19c8a legacy-trunk +54984 8905df617613e1c0e8bf18dfecd83f4f175520a4 legacy-trunk +54985 7cc31032e2063fe061384f8ec5af3f470f0c94c9 legacy-trunk +54995 938c5ae8dc314be29893dbe0be3ce422323876e5 legacy-trunk +55001 12649a734be6283e0abadf0c7d97e44a4408999f release25-maint +55002 cc9afeded23fca16704096180849aa5c546538fb legacy-trunk +55004 adfabc57361d37c9999fc15e4bcd5fbe3cb5a7cc p3yk +55005 06145fbc7ab93183404fed6f8c63ae4325f37824 p3yk +55007 270086994f484e9619530cb994a872b196cbb9a8 py3k-struni +55008 a6a436aaefdbeeee2858de50b78143ad6cf11ec1 release25-maint +55011 76e375ab75257406268156bfc0630a3a2fbd3f50 release25-maint +55013 29ae667f3239411647806c2765a17d2c5a328998 py3k-struni +55021 ad1d56c07423396f1bb6ed83f442989a0bbf4a27 legacy-trunk +55022 521160c9b369d04a9cf999456583c6150291499d release25-maint +55024 4f801a758936d4466442b1512c4f335904cc8646 legacy-trunk +55025 6a56aedbe2808a3a6b9810a162197873d5b9ef23 legacy-trunk +55026 873dfb52c334606a09bc27eaec9542f05d48306b release25-maint +55027 82e79983cb0c2998489d38e67085f449401dbecd legacy-trunk +55036 b86bd77d3d4040e3d15d463d1a700ff841b11aeb legacy-trunk +55037 bc7a0379d3b18eb3b4173c41c6a412bf7fbc10b3 release25-maint +55038 86a232ea8ba45dcebf4e3e1a7b34cb644367e266 legacy-trunk +55039 00fe4bb029364d7a1ae1eecb61a1bfb9e496f124 release25-maint +55041 2b2d57d6cc7eb805e58597a36b74b721619232a6 legacy-trunk +55042 d3df31d454571ba85bb8a6f5866b5617f6f608e1 legacy-trunk +55070 3769a5196035a3075084c389c773c1505f08a646 legacy-trunk +55072 e50d82c418a72fe451d7fe8821731eac44822ba7 release25-maint +55073 a3bf55a03f66f7bb2c433e23862acc264c196cc5 release25-maint +55074 39e953805184937d4a6ffb96601a8663b989e3d2 release25-maint +55077 eab295d93c8e6506930c24162016ce7d982bca71 p3yk +55079 beacf40b59607a62be9b67c98e2ba0952ca686f8 py3k-struni +55080 980ff0b1b9578554dfb3a41a454f54f6ca43e70a legacy-trunk +55081 3d72c1091e5a39baeeb8a808830fa83e250c1a91 release25-maint +55083 bc6a0fe323517ed4825e7e2e2adaf9fe5ecd3b00 legacy-trunk +55086 d70565457eabb04e82841a5e1870af0cb462306a bcannon-objcap +55087 7a4f174df8441094d38628cbaef395da9e1970ec legacy-trunk +55090 a68467cc06d3b4a052fd2ebe13e3d83f98a59f0e legacy-trunk +55092 e9bef5b42001554da0890d7913c85e420446368e legacy-trunk +55093 25cc1cee5e69041ad00a27c2b9a3517f21d289e5 legacy-trunk +55094 7b74a197609b86218607a8f59d4b566c500c4ed2 legacy-trunk +55095 c1f6f9848b17cc18e78a16484c564ce3a38ca762 release25-maint +55097 825d966338ea700061b3f5f8bd0b6ef44933792d py3k-struni +55099 368fed9af7617991157744a2c7308e63b6a74efb py3k-struni +55100 15b810e21fe9a90b414aa3799a640ca5d113b263 py3k-struni +55101 9b01dfd03c2949c0c964d36630515c5ccabbd2ac legacy-trunk +55102 37d82bee7a1615cc5afdcb3254bde41aa3c0459b legacy-trunk +55103 1c1705bf36b88b7d41b5831313681bcb4a15025b legacy-trunk +55104 a85d715009ecc1a80e53c5ea35dbef2dde415233 py3k-struni +55105 1e5a2a2b18eedb89cca7e831ea72676bfaa8642b py3k-struni +55106 dc5a1567af984d5e6fcc89cbabfbf20a8d225808 py3k-struni +55107 f6fa4708a4db4711f9c436e420b050471b63c0d7 legacy-trunk +55108 2c54763c450421d0bf3cab8a2eecf78da8bf8469 py3k-struni +55109 cfb3e0021b3bf8d32bfaf7617c2d80bbe0f61cde py3k-struni +55110 cb3c92062ec405e9d81870ebadf9f279dfd90c68 py3k-struni +55111 ca448c607b1401ce80b78dc5bdbfb268a6e5caed py3k-struni +55112 a14ff370b63d932b6a580c84de57ffe15888c893 py3k-struni +55113 ac16bece1e5fb7f5e4f211f700dd00b675fb46d9 py3k-struni +55114 b39abcbbbbba4b542ab5e5292561c5eed4d587b5 py3k-struni +55115 1de549471721c38a2287ad3a94aa372a76753431 legacy-trunk +55116 49686ed56ec7fe8717fbc8e24e3cfc35a168f74f py3k-struni +55117 5b8ef94bb810fd027d7c50de198ffb2213aa0c70 legacy-trunk +55118 1162502a09da76b1ed849a1b00a6394f4fba102a py3k-struni +55119 a3e3001b35bf0a15e2eb51ddaed7614750b2f0c6 py3k-struni +55120 7f36f96b6c76586f8382044a9d05e28e19d0a7c7 legacy-trunk +55121 052bf0dee6b854706480180f303f37acd8a0e420 legacy-trunk +55122 92ead87bf9843c41e71c77693c9e26b032810e3a py3k-struni +55123 e78e1b616c72fc82ceff61952e97f8dbf49ee204 py3k-struni +55124 a7323c72b5c71f903acd2e89494a355178275122 decimal-branch +55125 be9039b574d97cec9eff326bae9895d48da38e99 decimal-branch +55127 c48fe4dc34a9142306fa8561d0ba3e18f749ac9f py3k-struni +55129 2131e03721efdc9a7708b3f324ecbc7bde2be9dc legacy-trunk +55130 52b99a915faa5e797d828832af91d6c55213d338 py3k-struni +55131 8b743f55596108dc57916ac88d8a5889734247f6 legacy-trunk +55133 078b4f2fdfc9476a79a39568a3968561913d5a49 decimal-branch +55134 3b57f0b7eddff915ec84f9a052bf048f0c4d7f54 py3k-struni +55135 9e1dfc8558905bdb8780bec192b1276da8961cf4 decimal-branch +55136 e2b1d0222afecf251d91e239d4d1135904bce775 decimal-branch +55138 df46011c5936256fc4035206f787ac2b973786cc decimal-branch +55139 8680972ed8f036ebf27b2eec9f8a3ef6bc663512 release25-maint +55140 615795d52b9fd98a4fa21c647fab44726bd894d6 legacy-trunk +55142 be7eb3fd3776613071b6d3cac3809faff74ca35f p3yk +55143 266e12394b97d2fb334d1ee7f50c3dec0dc8c9d2 p3yk +55144 946fd54b457f5e426ad0e76011cbd193c0f9e007 release25-maint +55146 61acfb831633c8e72d33438a93b1172f13004a1d py3k-struni +55147 6b7d1782a5749970abf07e82b027f452d34eff7e py3k-struni +55148 838cab379376e7bfa01fa6b4b910c34d30539639 py3k-struni +55149 107aacb9c5958831cb207d1d73eb4a0e94cee140 py3k-struni +55150 6bc156d3c00ec253cb1c3812a55e14fbe93604aa py3k-struni +55151 e25dcd874b82799cec3c74be95b5281b02ccbd8e py3k-struni +55152 46b00c73e32ffb52ffb1d3d6d541c25136cf3e7a py3k-struni +55153 1440bbb67150a701fca26a28dc09ba95e0844a9b py3k-struni +55154 ea5ccee6b2854be2a58c83416692bb8029e58bb7 legacy-trunk +55155 2d377408a987bcc7ed38d64ed5586f26aa5b7574 release25-maint +55156 554ff27145e14afec6651d34acc1a524b75e95ed py3k-struni +55158 f3202fe7859819a4ae6b236676bb44f56d2e703b legacy-trunk +55162 8728cd012bd87e7642bf61cab71d29bd38443292 p3yk +55163 c791a5e2e09e8fe1d7e98403414cff0206b44e6e py3k-struni +55164 2dcc05a80905fee46ae56a99cdf8e2ce9a30cc13 p3yk +55165 0c3a3148208e0b964f565624b939d9d59c09fb71 legacy-trunk +55166 d4ba663277f8fbc27347eddd82f2f237a8022b3c p3yk +55167 c1075f06650a761eb529f0c883c20232976a3854 p3yk +55168 5d0969167f6db76d71f031db7b901b6383dad53b release25-maint +55169 54179538a3877255dc65a8af5af8ab65e2e954ef legacy-trunk +55170 443102bf58950547ab87babdea755e09c8c86b9c py3k-struni +55171 4110273a261109f24667098c07784a39c5325830 p3yk +55173 be1e708d5d3df15b8f3bff01981cfc5f48e110e5 release25-maint +55174 a5234f3c75511ed2bc0de42e8cfec2b3639eaa4b release25-maint +55175 843d0ccb0094df78ce7243b1937a668eaa346f38 release25-maint +55177 fdfdee191a612b94b33124a6419ec3130746463f release25-maint +55178 205871c9715db63c117ebcd0cd94afd8dd349ac6 release25-maint +55179 a153f214fa1b8408d545369ee540f5ded971c687 py3k-struni +55180 a6eb6acfe04ac2bf3044285aef552c0b7dfe4bea py3k-struni +55181 c6568550b1c610dc4b5f877e57d48a2beb06b0c1 py3k-struni +55182 8e7c60b1356b7383fb3cc984984301ad436c4e89 p3yk +55184 9cc4c3f0b58075a4383e2042ec3f806bbeeb7de5 py3k-struni +55185 70472c157bb9c005384e78db95db66b5b2ce7c22 py3k-struni +55186 8f77f96071138805c2fccd0fb31f6209b5fa4954 p3yk +55187 6a016f3e0051667c3e3245f1ef781d9fa8ac5785 py3k-struni +55188 c8400096d2d71c8f537bd1c8fdd0eff85c7ff798 py3k-struni +55189 bc6ad63cd5f1f6e0879b3d2e80ee7a0cd43874aa py3k-struni +55191 2d9e58c5ad343d441448b47139041d4e66c4f0bf py3k-struni +55193 23a8b3dfbe953710fdcc67f07e08d11d759a1fec py3k-struni +55194 44ebae4f61c4a2b000ec53e92498573f483adfaa py3k-struni +55195 050c98cd41c4f74acd2ce93c1b3a078c3f8e9d6a py3k-struni +55196 52533370f1ad403c233661f2fab005236459a3c1 py3k-struni +55197 370b91533c53d8c00859458e3859e9cf4d96ed95 legacy-trunk +55198 f0da1b7b8e5a2ae49ddb329aec7b81eaf69f03d8 legacy-trunk +55199 76e63e03335605dc63ad924b8e59ece69516fac2 release25-maint +55200 5c728534970c1e262a78dc0ec48048409c54bb70 release25-maint +55201 7fe6afcbd3f2a6a676d90228866cccb18f383180 py3k-struni +55202 650ff8d7cc380aa145edf68fadffe16ebe61d65f py3k-struni +55203 3a4f06bc254bb5eddb3886be6dd1515ad397d634 py3k-struni +55204 02e698988521a9957857ae392f12d58ba867758f p3yk +55205 9b14c1e589361bca3f7c2ce79469a94ae1e20dec legacy-trunk +55206 dd2d407dcfd0c47d1e1a0220ae59e85c4318fa4b release25-maint +55207 475c7c5437fc62b83d0d70e9836850bf5f681b3a py3k-struni +55208 a363cea32b9baaa02b0fc38b143a2553f925acac py3k-struni +55209 a3248fefc0dc8b6aee056c855246234e0934d578 py3k-struni +55210 85d51cb8ae5ed8527d63586e17983943029af180 py3k-struni +55211 4a9533e9365e0d978167412918350ce774048cdb py3k-struni +55212 b1bbe8011152893ccc518d676844edc25115bb6e py3k-struni +55213 d12811decf94d37d99dedee62184906a77935146 py3k-struni +55214 688e2bc20802638aed58835ebecb817a1490168d py3k-struni +55215 7a96c86405751bd9ec998d7efef02ccb5d7e0c94 py3k-struni +55216 dd3ac1cd1c9196f32d126ab0338ea2c1aa10e1b5 py3k-struni +55217 5f20286b0da9936298b1616b8ed4b554931c2903 py3k-struni +55218 248dfc1bd44c025bac902bfd73e10e12992518e5 py3k-struni +55219 297734f8a627acdf6ebad856f0b55a3dd24ecacd py3k-struni +55220 915d52455ffc4bfefc22b6d31e7e936044987911 py3k-struni +55221 c4a9993f2ce6ceaa2097f2865daa7d5b921b6044 p3yk +55222 991446ff6b15c08b0df2fccc4f4a24d73a1ee762 release25-maint +55223 775d44a54399550bd591e6a11c2a5413513c1205 release25-maint +55224 98709189d9e1c00ac94e619ae0bf98f5951c06e6 py3k-struni +55225 1040568f902ca2b1b85aaa36defd798597a51f4f py3k-struni +55226 1d334912a1040d9fe854fe48108c055ee1436901 py3k-struni +55227 7594709e631b3337ee4bc6feff6477e24853ac7b legacy-trunk +55228 8a8bf2c074e04f0bb32444ee488bb250b35e855c p3yk +55229 c5ebf9c219be4652060c4fa110262f7b7bb02a1a py3k-struni +55230 fb705f18bf3d7665f668c60b3b867f5e810735eb py3k-struni +55231 bab8a9c7f49eb620172fbce42758c2785f72063a py3k-struni +55238 a6e4f2cbefa9bd0b351aef4c6339b13e58327c0c p3yk +55241 4367b7af75319bd65f7e781b9e99feb4070e267b legacy-trunk +55242 8edd746291fefdee6fdec2d827756fe0d13da4b9 legacy-trunk +55243 02d2488fec60ca15cb9a65bf2c45e7c676e52480 release25-maint +55244 cf9dd7f0f4a20f026a2947e0bd25394078edc11c legacy-trunk +55245 6c4aa4611c881dc62ce5a9c4d678e58211015011 legacy-trunk +55246 cba8c6a5ecf0261674697c7f5df5e44f31800036 p3yk +55247 cf79fee8b71a10a8d699a5e323072d65dc852d9b legacy-trunk +55248 01127821af75614ea573a779ff060fe71b755d38 p3yk +55249 d231685e9ea7d54a2dc4f8bfd6c3f84b84e7a932 p3yk +55250 f223a44db13a68837fe8ff0e10a0d50b766e8460 p3yk +55251 9b9c53c1aa5c095f09fb9bba386d5a15e53b318d p3yk +55252 dc39bfc5c74e622bc548b2bd5ef445e1bf8501c0 p3yk +55253 81d9f5270e8752d47c1dae03c4565042626f1760 legacy-trunk +55254 3eee06cb15a3ee1bee34431f19a045fb49722c21 p3yk +55255 7d98c12a344dbb030c481496726c857a8fb02c8f p3yk +55256 d91cc8d49294e8af42e1348bc1be0e3ab1f13766 py3k-struni +55257 4548ceb31c94939915ef7cb4f14dccb07ea08e3b release25-maint +55258 cd2403d370e0f67c41b69fe27a01f37953bb896c legacy-trunk +55259 b8fa4ac6c5f07c609def73f6c84b3f4847d27655 legacy-trunk +55260 3fa40b59b9b68e2febbd05be472f2a447dce18fd release25-maint +55261 51c7412289583ffea14511a329a619c43985e557 p3yk +55262 bcf57a153b11a570fe0e54553dbe2072ba16a802 p3yk +55264 d7c7fe9b6e972e9258662a3dd642d7dacd2dbf6d p3yk +55265 915392d5f0b8646b16d5144bb9de7d376e98cd53 p3yk +55266 32673b888c244ce18ccf41ece0a59801159d1786 p3yk +55267 5a2f5920cf750fcd58cddbf25948e80259a32936 p3yk +55268 7d49038e99c9914812d9ce44568efbf2b6039ab9 py3k-struni +55269 ee47fd5c0e5d7467feb28eed1610f82500ec23cc p3yk +55270 e16c8e5c5ca4c111b65f91ae9a384a9d977f0c2c py3k-struni +55271 2719e17c928d366808b944b0cccde9d1e2309ef0 p3yk +55272 ddc4be2786fd25835df8e66e32423ba838bd90bb py3k-struni +55273 20b8b29593c0d98d4c819ff4d8fd2c1fd50eb1d1 legacy-trunk +55275 e06e196a05cff381bc46ec3660528742b7b4de77 py3k-struni +55280 9706f3b490670f318970c76ae151d5a87d751c1f p3yk +55282 7993f23ad46ca54f10fb9ac59501c3cdd765808e py3k-struni +55283 d237f47f293f29b9aa6050fb180a61a276df6bc5 py3k-struni +55284 917040dfec5838c7fd113e71d11c9f1b6d806be7 py3k-struni +55285 2617133c7afa27383488267e18ff317220147644 py3k-struni +55286 6026b8a26c05ff4d486c4e2325e851808ea0fcab py3k-struni +55287 482b5990d2fb3df68674543bdfffa5b0b2115fa3 legacy-trunk +55288 c17d760cb6d06f0960c13bddfa0bf8baa2c8f2af release25-maint +55290 7bbb97e14ad6ed12e7f1c4fb663010217868e788 legacy-trunk +55297 a4893c4802648b77ac269e55cf03c5a712b93c43 legacy-trunk +55298 92eb5ae4c18f151a58956aece273de4da8003eee legacy-trunk +55299 a160b437ff35fe16824fabbb67e2fcd4f557662e legacy-trunk +55301 b460084479933391f8198459fad3fe34b0da1561 p3yk +55303 b7e9136d4c838f8ecfba7aeb4632ed978f390ec8 p3yk +55305 7d24a68d0a1c6163622cf47460f044617b84375d p3yk +55306 65666ec83c2c00c713b209127eee8cdd8bd9512f p3yk +55307 aae549eba7075f546e7c8e211e76dfc0fa6233c8 p3yk +55320 c4d57dc60b019b5e3e8fb235c3165ca3cfe766cb legacy-trunk +55322 1523aa8271465e9f2659ceb5d6a8c96d66500424 p3yk +55325 f60c877d52c8a097a5d8113f9db3cfea3e2cb464 py3k-struni +55326 c7f54660ea17efaffbcdcc09240ffa6d6c87501b p3yk +55327 d6e6f982c637b69807d387441ee5617399fc8677 p3yk +55328 00c02c4488cef911e0e213405b8bae94e7463fba py3k-struni +55329 f3256c8c72ca8130de31a6c897cf525440fcdee3 p3yk +55331 bc43cb2316404089232acd6db0bae63201b28519 p3yk +55332 558518ff9d91ab62426d0ce764abd2e2c4726db7 p3yk +55333 6deb4bb10059f91cccb8bef1c526f2a01c66c25d p3yk +55334 1db31941e01391e796d87238edbf7714fdb8d176 p3yk +55335 b9c724dd72c818f1a1d372ce5f904a01f35ca4ba p3yk +55336 d813fc36b9701f524b4e7bee024a73b123e1e2bb p3yk +55337 1c9a299656be371a1a297cf5eb061d8e7aee7165 p3yk +55343 9ad84070b22d84f175a3b890367cf90692b6418c py3k-struni +55347 6ca3d5f3d1be131ff6697a79df0e84bca6c493ae py3k-struni +55348 3e1eb7af4ea0d21e7f1e9305df1750f177d956cf legacy-trunk +55349 2b7112a63571b2ee0c49478412a3b88887fc318e release25-maint +55350 26349a64ef7015bc20b993229f350c4fbe1f7d80 release24-maint +55351 d3cd2920beb687bf2171ef7961380d316bcd20d8 py3k-struni +55352 c9c52b87c30b5fb33ac3af949fc03d968411d007 py3k-struni +55353 a8b7a81599d048aaa1424d654514b3c2e0034318 py3k-struni +55354 d1146d4db54946844f4998af8a0892b9666b8850 py3k-struni +55355 20286eca474315a963b1f612241945637ae5551d py3k-struni +55356 430b6ed80148e9b0093e9d0cc97bb92319f92be8 py3k-struni +55357 6ea93700d77920706fca54f0b2d73ec609c1f6b3 py3k-struni +55358 2968597118c139c8bb7b37ed73b03e23c884d32a py3k-struni +55359 2937f537132ea3ffe435fe9534d6603d804fcd3e py3k-struni +55360 c7b155ad37911904e51c85fef4c82a106781cbd0 p3yk +55361 3787a3fbc458d8dbb9c97acb2bf279fa91d7d59a p3yk +55363 78d76435da9ac9ce3f2a00ec5ee79489a6466bc8 py3k-struni +55364 bbb099d4ec8024bf800e02c0635f28c79d17b185 py3k-struni +55367 052d55e8af7730a74f25082a7143d174386228fa p3yk +55369 92f719fa9b16e90cabb955a40c1565d442a67059 p3yk +55370 4e41b72da0fc6637241f7c3ea344b7d11f30cbf0 p3yk +55372 0ad6951c18f7c5782bcc627de4b64f9c697f8e33 legacy-trunk +55373 69e1f7ec0ce916f1f6e251394c6b61f5bc1ff19d release25-maint +55374 d0c076669732fd2f84f0ac838313d027285b7c42 p3yk +55377 0424a9fa4b0b4d4cfc368e8b06727fe1d11ebdf3 legacy-trunk +55379 b01546f36a226304c919583f3cb777c26f8bf13c p3yk +55380 07f0832297b1e72e5ffe6ae646984ef94e19119c legacy-trunk +55381 cca9e32ee5501bd8f8dd3dc1ac356f6af021f060 py3k-struni +55382 dc6b5f355d5a8cbb15f5c23b7a540fa20a68b2a0 py3k-struni +55383 9b8293bf8fec8bff9d398968317727bdd6373bc6 legacy-trunk +55384 7581ec16230ef183183aebaaec3da66a7792f986 release25-maint +55385 61c4c222a3270d83125dca25945006eb33db7ba8 bcannon-objcap +55386 6f1293ab3ac48e8366ea4fef2045daf1e6354aad legacy-trunk +55387 693b8d91477170809ae92b354d8cf459a404f8d1 release25-maint +55388 388e4f21e749e27dc03f8a04475ece642f887974 p3yk +55389 2ecc296443c32c3c112f36c71120a044c2a26b76 legacy-trunk +55394 756e1d404cb861b9e1daa0f4300d26894d28fcae legacy-trunk +55395 e3ea881b14fed2b53b68409a46230cddeac97bbe legacy-trunk +55396 79dd90787091dfe3d1e0c6465371add832bdfe04 legacy-trunk +55397 cc6f47f1e13a446dd532728f765121b3ebb9921c legacy-trunk +55398 6f0dba807734afc6af90f4723a1e0004f8e887da legacy-trunk +55406 c12a309787d3cc8f394305b2bd5cf5e3d6cf6b23 p3yk +55407 b085eb66b7f6da6e243723abd11baa3192036c60 py3k-struni +55409 41a1830eee16518dc326639802cf571f69f7121d py3k-struni +55410 eda9e60c9745478bc69f15cd185afc64be45e231 py3k-struni +55411 4d15ad41651e4c0f68eced3fdc58ef9a13462b76 release25-maint +55412 151189c72a372b9a2348fa87ed4f3be9a0cae212 legacy-trunk +55413 a6796a24481ce50133b7a30db47e974392e108ad p3yk +55414 689bae0767e20c1edbf6bf7f506b28f686313bac decimal-branch +55415 c2411bdb6286cfe1636100c11b07d8179b5228a1 py3k-struni +55416 60945bdb1b754856a19473c1244f9cdb9e17b2af py3k-struni +55417 b0b514badf0b0ba9fc9eca5ca76d7c1ee576142a py3k-struni +55420 13a6c6bef609701a775b2a6635663e5917ffedbe py3k-struni +55421 0ead1064ead002d7fdef98abc433861b4dc48b32 py3k-struni +55422 edb4c9028be002a3eae04445ad02235f97cea05a py3k-struni +55423 1a9cd76364e3d6a23cdff2269af3a54f3730e72d py3k-struni +55425 5d9dd1b8d908b78cc9bb420872298f5d3cdcf114 release25-maint +55426 47b159d640a454decf6a3b643cfdcfcc639abd20 release25-maint +55427 f43e9d1fabaa8b6fbe406566255806c73780047f legacy-trunk +55428 8fe98f60eb6e3797c354c4b9ced733dc0b604702 py3k-struni +55429 141e2aeffbaa43eb38ab170dbe38de8d4fd095b9 py3k-struni +55430 ce60f47b17a2541c9b4bd82c8009a6d2abb6caeb p3yk +55432 65c3b432f501b7ff3de6913f4234d1e94822357c p3yk +55433 d6aa7edf217a6520e6271808167c80866eaeefa0 py3k-struni +55434 47dc71605341d3a97dddd166f936b9eb824e7baa p3yk +55435 8ad1c88ce1ac6784d747adb8fc1b6921d29320c3 py3k-struni +55436 b592985a953ff90dd77f2799c121d549bdd699c3 py3k-struni +55438 b29d71d43c8091f325301f41ee39f28e9a090a21 py3k-struni +55441 651fa2c9c2abe5f343c1abf7dabefed4d6aa94f8 py3k-struni +55443 6d8d66050003f1f883eed9c062c37f6061b0b797 py3k-struni +55445 13641adba6ecc604df807fa18d4f59a1ec2fc7d1 py3k-struni +55446 f19e631be101b7af8228e472be3a88fd84426fda legacy-trunk +55448 4a3a63769d34a9340ddb950743887af15f903e88 legacy-trunk +55449 d4db626c2290766b8862bd50bd1b6957ea7d06ee legacy-trunk +55450 312c1119dc146a7a3b61affcb7ded7d5516d9d7f legacy-trunk +55451 299878d62e2f79e6184fda847e55ea7eec567eb0 release25-maint +55452 0f93b700c4c9f01f105ee53970b2b68c0c6671b2 legacy-trunk +55453 515e2564eca7fa81a9f7df3ad47b6ecc12c0255d legacy-trunk +55454 4a67f103833eb8c52ff5d622299d75c5da8c61eb release25-maint +55455 f14a5b005a1e2c4e38cd5f653bdec9b2cb3a5c4f legacy-trunk +55456 bee8d01ef42c7b12afa959862827650cc7db8a59 py3k-struni +55457 1326b0b2afa09153cbc89ef1be64a8800863439d release25-maint +55458 b7fb942b403e9e91b2adb56abe890f94c522b039 legacy-trunk +55460 c2d32b5ae90b3a313fd8ec76738edaf6c0472898 p3yk +55463 d1c38af065bf39c1948480744ec43110851f56d2 py3k-struni +55464 ecc685925b52d3c0435996faaaadb02df523f27a py3k-struni +55465 6d246ac631982da59ac2f35248fc9eeb7a1727bb legacy-trunk +55466 00413f70ce5c3ebc6962444663936a04e2792d26 py3k-struni +55467 779a210537778d54d0720251e57642ee4556f7d0 release25-maint +55468 c028b2775a9a4effa5da0663f92c02bfaee9b8b7 legacy-trunk +55469 5bef2c22bf85706e2b4ab4c20810cd52af43948d p3yk +55470 31029f6ebca2a87ee32ec778ad8c3922495a65c0 legacy-trunk +55471 67cb818360f0dc470b4431a4ca972691d916a3aa legacy-trunk +55472 62cf2cb74e351a6c17faf1c7f913eeee23f573d7 p3yk +55474 c0e89d0ee0e5ba82bbe9867448ebfb8bb4b0c82e legacy-trunk +55476 2c00a1910271cb57d42e1e5c7d77e04d1d7ebe63 legacy-trunk +55477 a58ba67faf1abf3894aa35633625969e383e6531 legacy-trunk +55479 e35f1ee22ab889318c0728c74d528a6bfe5a8eaa legacy-trunk +55481 ac8a6deef9740d8d52e4263a06fffab726ade6e5 legacy-trunk +55482 35e18a0d10f26bcf403480133af8eae07cadb672 legacy-trunk +55486 d24c9e432d524fb02c91ac8ef8445c3bf5462f7a p3yk +55487 2671e06baa4c07b3159904d5c4fa3e7be956a741 legacy-trunk +55488 993f8a9b8ab39974185f35f23105717d522313ee py3k-struni +55489 9457b9f5bdd10932fb2c12bc2868b6ad637f3efb legacy-trunk +55490 81b178f0b1ef3778edb5a5efc1b7b63573cd9e62 legacy-trunk +55491 3d3bf27409e6202bf8b475a00aafbe21d949d2f8 py3k-struni +55492 1446b9fca01dbd364eb9fc083f20cc5b4e9ff7d6 py3k-struni +55493 ebb0b6d6dada28021b8aaedbf7b9518625db61b2 py3k-struni +55494 ee2951444a89646416fc0308ce4c3e90682e8f63 py3k-struni +55495 a405732a262dc74f2fb50f6d7c31555c6c165f8a legacy-trunk +55496 d7f6d6f4562ee61e16f07db6cf5c154ada373de6 py3k-struni +55497 8e062e572ea4d6ae615779fcccf229e8609e7682 py3k-struni +55498 f9949b63eab3a1262198fa7557d82bbc3a46414c py3k-struni +55499 d07d34b53db5808c4848986112c8f30a3c050caa py3k-struni +55500 50dafa22b8a4e7b6b402a8f3774bc2b5eecde58c py3k-struni +55502 7c9ddd4a08146f6dc3c5cc7d03757c85728d47a1 legacy-trunk +55503 3d058587691dd49b8ab854e8b9520839ac7a3853 release25-maint +55504 a9227d7a34fa8e714076a7b72af1a9d7fc0361fb legacy-trunk +55505 ec83d21065aa36fb1ebb413de9a57f068dc0de15 legacy-trunk +55506 ea7ae891f93894cae0e3be11df868331e0abcdf4 p3yk +55507 c897559a89fc9465d4298e2129c2ac99f317730d legacy-trunk +55508 bfc73d849e28a9deb2006e5e78eb46821a49b870 py3k-struni +55509 db49a124739defe6334a427e6b4189ff1931ebda py3k-struni +55510 b5aca0295b792faa7909630fc94378c17ced9bf4 py3k-struni +55511 ae691227fd3437f9e7b4538fbbf789ef00bfeb4e py3k-struni +55512 98ef5ffcff2843b45a5848369477daf33efd99dc py3k-struni +55513 dd80a4c5f47d04d05a62447346407b8a5c766c33 py3k-struni +55514 24b60622b944d04dfe12fc682917cbe7b9069e37 py3k-struni +55515 843f7efc058f23c9ff121c3fc3f9dd87d14fa7b1 py3k-struni +55516 8c3e40b179bf414fab0b7bda28f792a5b31b60f7 py3k-struni +55517 eb45f85c4c79263be4a629551eb87f4769b0063e py3k-struni +55518 a7be148f7c5608064091ea12b6c8282fda1e2678 py3k-struni +55519 f7f2a49c1f2e54e3c5884d4157a57d621d2aabdd py3k-struni +55520 72d7c0f3bffee8f07f429cf36245ed27a559e0e9 py3k-struni +55522 ff7befe919b5b166b807987ec475bfba8df37156 legacy-trunk +55525 a0ee3b2ba361c3ee339481485727968a34fbea10 legacy-trunk +55526 4cbf949436eb57ad6efadf81bf94eaa02926b362 p3yk +55527 8c3578934df6da87c2616d103afd6d6a914fd442 legacy-trunk +55528 9a447514855f1171f461a943a8e9a5893966fbd5 legacy-trunk +55529 a6c92deeae27f2fffea003e156702abcc6edd5a5 cpy_merge +55531 814077e7adee3acf720182f29e86cb709386c6b4 py3k-struni +55532 709f82e2a55cb454c2d6db55a2394a44ab61f2eb py3k-struni +55533 ab39662e454bce4b0e490b04a65ca9f53c6e8d79 cpy_merge +55534 e240d20da3ec8fea85539407c3160b3e2483cf9c cpy_merge +55535 e8f624d48da2ddf1e84e4eb2ffe815f061297563 py3k-struni +55536 56e900728929530461cb157b7caa970cc814aa80 py3k-struni +55537 233237707ebc9979ca090d425037cdb681f63ae0 py3k-struni +55538 bfe953046d05b226fd896c907007ba39ada44bac py3k-struni +55539 523df1de0a5c2b8ec20660093b7f48f37c309b2e py3k-struni +55540 eb188d7fea5d98e46672bec3b2133fce55c34475 py3k-struni +55541 211dc9d63673b5dc7f8fc4fcbe46e5c295038cc2 cpy_merge +55542 129f9653b0a239f2d7f621a39924b719253b7b60 cpy_merge +55543 1f7891d84d93fe364ba8b222f1e43b832c67e57d py3k-struni +55544 4774a94d2e6d665e949f46f8c50cceccd06817cb p3yk +55545 82e5db4960edfb34b109195d33a4298239a4a7a6 py3k-struni +55546 9ce8fa0a0899727ba03a3730bad2341e624ab066 py3k-struni +55547 308e632702bfa4ae8d5c6da458ae97bdf51e601e py3k-struni +55548 21dc4629b7121458281ad8a07503379427fef4ed py3k-struni +55549 cf151967eea3cf01540d0d436a9b43d90a3dc323 legacy-trunk +55550 6f8f82280545dd93d0612161bd34dc1654e661cc legacy-trunk +55551 3979f9e2d026287f79010cdca98ff51927d3acb7 py3k-struni +55552 cf0891f1d60aa9db0558ce35c7e71958de9d3858 py3k-struni +55553 e63101faada68c21ec7890d72a3466583c12cca2 py3k-struni +55554 86a9d5f4330774423588744f3f4c2b8db0ba2ccc py3k-struni +55555 10426ad5a6e0b137e5160a61e95736b7194f7e32 legacy-trunk +55556 057a9c3d067d11346c7df41588bceb1dc17000bb py3k-struni +55557 41cfcfde08a99a745f7ab3eafbf43c50186ecf31 py3k-struni +55558 2f48c56c5e8169152d58bbe540a8573cdc980e64 py3k-struni +55559 98c66efc955333a5b32180e4a949b9e4670d77da py3k-struni +55560 e4e8b12770e406bb3e1a8de80dc59c4caa15496a py3k-struni +55561 e6fc67ad9c54bc1dddb21a6c3b25c3ab24d394bd py3k-struni +55562 969868df1938bc482fcc98ef4b674f7ab6bf817a py3k-struni +55563 46a94ead3d68de3b31cd7a3f605385511a50b997 legacy-trunk +55564 2490076795244d052dc1ef8c0469e2b7afd669be legacy-trunk +55565 99e33068c3347dc29eea2888e8fd77128b1e0779 py3k-struni +55567 cec2a9c200ba2ca2cb6ae587a25192d013177626 legacy-trunk +55568 522c4938bdf6818e98fb50f9f3d968c8acf08d4d legacy-trunk +55569 2c8ba3faaf40c059529368d114956392f5ae5d7a legacy-trunk +55570 6319271c232617d8aebd5597b7076cbbd63d0a87 legacy-trunk +55575 f57775c5d0b4236628c290011eca469675d15386 legacy-trunk +55576 1a385d0ae82ba0ea50b7402be77c50402917df11 legacy-trunk +55578 0e80fbd73005c6ecf6a914e5f0149b6732fbe4fa release24-maint +55579 cc0aeee58a4d8729daa30ca92b993749ec72c9a5 release25-maint +55580 cec6d96c084a1696df0850a8579d2d3c3dcc1f6b release24-maint +55581 34e8e03e921f7e477af6a0c50da06c38010d145a release24-maint +55582 2f4d920a56fc0f41e20cdb54ef33af96e31743e2 release25-maint +55583 dcb43f40390ba792d6e69b666d61683d7bfb708f py3k-struni +55584 1ec1afa2bdb58c38c409460df550b80967a98b17 py3k-struni +55585 089f449a20cda01934fd3e720f99bd87f566a371 py3k-struni +55587 85c935dbbef26bf40478172a551db2ce18ffb4a5 p3yk +55588 04786ae52dad42127d5b0d725e71b7334742d96d py3k-struni +55590 bedfbdcaf3557cd00fa4185596d4b59c8d3d5ebb py3k-struni +55591 9657c333c4ea8fc0d76c8adfa1ad11e555580542 bcannon-objcap +55592 3877f37c98610bcc6e67c324d48835fdbabfba14 legacy-trunk +55593 e746a06b3eafe9ba0919c00ca5d7f6f3563d8b8a bcannon-objcap +55596 00f94d35c61ce7ebb1d317115e9641f9b22c5256 bcannon-objcap +55597 1ea4b3cf9d9814e7549f19e5af6b88df7df44bdb bcannon-objcap +55598 5bc7f56f5c33def88af7ea5d7022313d90478b58 p3yk +55599 adbf681f1bb2eb75168905235671014340c5d759 p3yk +55600 1056530616ac3b2d833fa13481e08996b1f82823 py3k-struni +55601 e7162b6ca7a040d8acaf8e47e84e540d78f77dd4 legacy-trunk +55602 389077a54fce3ec89e7e7fa64781f1c46f4dd26f legacy-trunk +55603 fbf342bcb78465251ae913bad6ff935f282fc322 legacy-trunk +55604 ec3b8e94a35571e5955b579fa1f1232b30659a66 legacy-trunk +55605 f28bed264b02cb3202aa207d74cb5e00eee05c82 bcannon-objcap +55606 5e43c7367d545a86b2603b6ebacde0bdf6e4b446 legacy-trunk +55607 c36c8879a8dad9845719eadb6ef6804e6516620a bcannon-objcap +55608 aa73206c9ce6756ebb6347a25596d9829cadf5aa py3k-struni +55609 f6a9e034cc62824263eda478758d860ebc283fb5 py3k-struni +55610 249b525e1ac0e980b42a98cfc6ab4a97b0cae0cb py3k-struni +55611 b7cfb3fd8db05994df3a3d847958e942789b026f py3k-struni +55612 c3287e195a1d583eca2eff37085933af2443da74 py3k-struni +55613 9baec2f54509f68354ddb9a02e577ce5f19bb49d py3k-struni +55614 4caeeb4131862fea1c9ae7e63aa6efccce6b7863 py3k-struni +55615 3fda9e6a0b6d1ed3b7989cef7e57be51424d09c1 py3k-struni +55616 81d5b0071169ac3b143184c58b724089b0bb1271 py3k-struni +55617 9de87569181cb8f31fd1fa074f90cb80d20956a2 legacy-trunk +55618 ade7b0693e076c21393d12cb4665e9bf897064f0 legacy-trunk +55619 a9ebc504f69d8ccb928b22a3a7628b0154609f2b cpy_merge +55620 758666e27fbefb41645813cf5a07f8d943416a59 cpy_merge +55621 8b4fb71fff1d366371633008a180c9d2754d41df cpy_merge +55622 aecd78afa5a26e94387b704a4d2906997c98fa59 cpy_merge +55623 0e7c70d41a19b06e93d37da6c1c4041bea043dc1 cpy_merge +55624 489060e97d17fa874ce8a71b88cb8785410843eb cpy_merge +55625 8d637d816f75417b0991d7c2a7870fbc39bff5b8 cpy_merge +55626 370052dc8992f34515426cabf32985c826d9c381 cpy_merge +55627 6dd9767637bb43d7fb079eade786fe8510c4217d bcannon-objcap +55628 d5ad9149360bb94d61961eb925e9f929a8e10e45 bcannon-objcap +55629 37ca4dd8abef4693dc2e6f4286fa2ed2e3573fb6 p3yk +55630 de51aac46b1bc89453e864a0c796c4d621751f49 cpy_merge +55631 ba7eaee338227918b605a2c5a024620bdf6a51fa py3k-struni +55632 5ad2d7700d3c5050593a5dfb921c581d677ef72e bcannon-objcap +55633 5381b4e71a0406c922494f7d294b0877eaf4fa98 bcannon-objcap +55634 503f5a5646d17a09928b35a12ed174f2f8105c44 legacy-trunk +55635 e14ece777b8b45b8f992ef727301e73a2b6b23be legacy-trunk +55636 c7834971317cd49ba2b652e8133e8129d81af618 p3yk +55637 885d0ef90e0f441ce57b2a1fbb2b1255172799ae legacy-trunk +55638 06e6d6215c5b78bd13a91b59ee02ae305348c1ab legacy-trunk +55639 76887e3e8e57a6ad4d8aa2ca4a02e62186f23681 p3yk +55641 ae805798fa6782c6bd95cf06af79f008643fa227 p3yk +55642 67ee4696d149ab67b5dc90f7e9ae10fa7d680042 p3yk +55643 377b5dd6293da996625e9abbd694595b835899be p3yk +55645 a1ee256fbc8f84598aa25050c9449f7a7f194db5 bcannon-objcap +55646 2ae9975aca205e6a01b046fe728113bd0e2bd859 bcannon-objcap +55647 8b1cdf9321fd1360a100551a29b63150e37e0faf bcannon-objcap +55648 93862aa76f7c2a079625657d75ed991f99cf0d21 py3k-struni +55649 9b1ffce256b9aae686596b965d5c60c219ca424a py3k-struni +55650 6c2fa71dc459f38510e5a883c6fdb6998eb6331f py3k-struni +55651 492687695c66c83562fb643b086c7d506f5cc080 bcannon-objcap +55652 0982fb08e79b1d814350f6cd627f56342bf040ac bcannon-objcap +55653 003ce36dd202234908c5a77a20e9cecebc05fb2e bcannon-objcap +55654 188216b43ef6a74b371eb46f8bad92d15636b2fd py3k-struni +55655 37a2856d8f0e1d91ceb7316b88ef10868a487dff bcannon-objcap +55656 75b9ce1a7745f3cf41878c87f7a8731ddd6837e2 bcannon-objcap +55657 62e394d50aa06113396197338924f498a5429636 py3k-struni +55658 6796f0cb0bea481008de1145f1ab190829d5e5ad bcannon-objcap +55659 defe2513b78e1710547bff6d3e4f4d9f3ff01d42 bcannon-objcap +55660 cebaf7c3ab8c750a8161e9dee3de21d7c4ff7782 bcannon-objcap +55661 b6f04974d8a77ffd8a362f7a3d440b6b0affc084 bcannon-objcap +55662 562602c9101d9f1eeafcaaa6fa89a41c5417b37e bcannon-objcap +55663 36a05696be821809265cddbc3cb53891e90c73c4 py3k-struni +55664 f40ff2d738ea4264b30eb8794c39ec6829a95988 py3k-struni +55665 c40bfb37fa15424e904d3ad7318fdce8a26ecf91 p3yk +55666 418059994e47222cba9d489b26f27176a1eb1e2d p3yk +55668 aa4b72549a696827e0c434a17b08decfd20a967e p3yk +55669 d5bbf97570e3626dc18c1120ceb3115e34c61a09 bcannon-objcap +55670 e71de57513e1bd3b2cb5e5f9a79bc6311b838d62 cpy_merge +55671 0635a6ca19800220e7dd4649e228fb445d3ec375 legacy-trunk +55673 7d379c476007421453963779d566524f28e20545 p3yk +55674 3affce2ef782cbeac45dd3e63fa0f48d66a3ae45 p3yk +55675 dd3963540cf77094090a2944152bbb214a0e070d p3yk +55676 ddf0471a6de373b94c4fc6baffdff2e690f1dc5e legacy-trunk +55677 aaf3b6d82b63f36dd8758cf772bcb5ee466356f0 legacy-trunk +55678 275d87a47f6414fe69f34938401d5ac0071a3f46 release25-maint +55679 cdea094cf0451f670f642368fe53b2a2a07728fa p3yk +55680 394ab5ff1854e416ad3d2673993ff05fa63bc253 cpy_merge +55681 ba8b5ad8e76ebd7eca5d0ac28a5dd3d0063208aa cpy_merge +55682 5167857851c109d4b264aad7a09302551c1b202c cpy_merge +55683 41c7cd16b198c006da3401206c57bfd714132fb7 bcannon-objcap +55684 acd1e262499dd28cfa3b4df4429a68b7234cc617 bcannon-objcap +55685 a6042c7d7c55fa2c1b12eac078fb0f15e5cd7639 bcannon-objcap +55686 5c29411a05a5f59c5ef810c8d67e1e0c5a8476f8 legacy-trunk +55688 ad6c5b88b5c4b01970e0c1340aea86625570d934 p3yk +55690 c2dc4d17e98bc404d469476128bf57381587617a legacy-trunk +55692 17699931179e8f3056b954739da920f8cb182620 p3yk +55695 1200c0e09553765912db19db22393c5a6800fbff cpy_merge +55696 0e29bb80e2278ef62e5d23426923aa962be31b05 legacy-trunk +55698 8e7ecbd8aaab18768601731010168eb5836c865d bcannon-objcap +55699 0f424de456db460990ee7564d3b13fcb678e2a07 cpy_merge +55700 bb942b60b0fef2b62f597526322a8bb4264d90e2 cpy_merge +55701 dfce9a2635e96cf12a5352ba83e30b22b5059b01 cpy_merge +55702 df3f76ace2d74d73de903f058dcae85b3a86e3b2 cpy_merge +55703 af0ac83602b4786a2115e5bd136a5407ddeb9157 cpy_merge +55704 d8a6afa6e8c60ee75d5a0498f556472868997935 bcannon-objcap +55705 d0b4bbaafaae4c415b55f9b7b0f97f8852704a26 legacy-trunk +55706 dd4689d0ec85b6c103a5633d400c9669ce1f251f py3k-struni +55707 f287b88c3c21cfbc54425321eaae245a08ff0786 p3yk +55708 c4511150ef607120e6c39fe3d9f7c4db44e3dac4 p3yk +55709 71d861ee9ff0dbdae07ae3c40b32eec18a3066ba py3k-struni +55710 b8bef9a1cdf01cd81b4d6e751a6806f4b4bd3486 py3k-struni +55714 dbd2cf40527825fbf114e4a936a06e72fb6595d8 py3k-struni +55715 127f151f317b77ea61338d6767bd8406d90ea277 py3k-struni +55716 b380c9c49738aca05a153ed65ca6c7a38e6826ee legacy-trunk +55718 cef07db1caed1a0827e49bd9171e43b52aed98d9 py3k-struni +55719 91bb19813ca611fca21081df2c03e0d055d44578 legacy-trunk +55721 c61caaf561630a1ea70d4a504e8e78676a218e2e legacy-trunk +55723 667c1a7279c9f7cb487836a5769f7b1edbe23015 bcannon-objcap +55724 5ca7d170e4312f540b4d602b8ee22e8f23473aa0 p3yk +55726 ccf20992538369e7f982067c55410d3a8a03602f legacy-trunk +55727 96861a041f546cf478f769698634fd3797420a29 p3yk +55729 2934af05f8bfb092bcd1c05dafa74ea12bec8752 p3yk +55730 9acb394780df93619bdb04e6d23e1c5526aaef9c p3yk +55731 24efa2e448bce2fae10ab4c77fa1b834bbf67ade legacy-trunk +55732 90487a887be136fbe9241be77e1eacfe79a156e1 legacy-trunk +55733 fec1296544ab96c0ef5282bde4b24cd3cfc39c14 release25-maint +55734 f0121b215d38960313374d7cfb6ab159382be443 cpy_merge +55735 fbbf851e230a59e5fd639c4448498f8b78fea757 legacy-trunk +55736 da51f7f908cad8fe7fd91b921dc38f853745e197 release25-maint +55738 dff624b2a2491042e728b215e4a9225b2afc7fec p3yk +55739 f9f6000327e27bd2eb8d4ac5b11934bfd499374a legacy-trunk +55741 328e459eb67029611fdf8a38756033382ff151b1 p3yk +55742 7b3f64b3e739388ed43fd0b4daeea84c07999698 p3yk +55744 04f4b557d3c4511b3ce10e31a264dfa9a051f805 p3yk +55745 04186f52192ddb13e3e2ef3103155b8841d38394 p3yk +55746 7e0c220b55a64033c83d87b61adc993cc9e9e923 legacy-trunk +55747 b4f13c7fdfd88d168a15d5222db0a0d938373c6c release25-maint +55751 e31d2f95f2254d246d3e59f243bbc9e0e35fdd97 legacy-trunk +55752 e1997283417088dacb679c5af210c1df8c79be32 legacy-trunk +55753 82b93fa91dcf3413d02b97ff2ecd1909c36e1462 release25-maint +55754 abde083843cd2ca3219afee85472fedfdf9d8635 p3yk +55755 b8abdfa1c9afc1002d122950f3b29a55c40df03c p3yk +55756 f6fab1c707e909ffd05794cfe1f6df582a01ce7f cpy_merge +55759 5014f8daa57fad5786baa7df43a0d4654ce3ebfa py3k-struni +55760 e4ab08039c75f80fd8f8ee955f60177d5567dc06 py3k-struni +55761 73dd2da31d37ebd83efccbb50ca852235e27c50d py3k-struni +55762 8bcfc46e444b58266bdccb1f1aa60bfbfe139c59 py3k-struni +55763 53963a2f56529be8c165484e5de6cdfd89a8f417 py3k-struni +55764 5798a2fbab0304f1367bf158692b89c4dbf1471f py3k-struni +55765 71604d49a38639eca1472f17d76b8583911a77e5 cpy_merge +55766 c36ac67eef5b776a12c04753f708a5dc9acfbee0 legacy-trunk +55767 4b34faaa977de8969b2e2b9458e911569269012a cpy_merge +55770 b6c1a1a15a6cdb4501a058fe0d39608bc8991baa legacy-trunk +55771 e3fbdd7cb969ceb8b2c84396bdec88391f6ac027 cpy_merge +55772 76194e682e21cc6ad53fd4c430e3452c3dc8ed96 release24-maint +55774 c5cf9a4f4fa979cd17555919b6d2875143948b8d release25-maint +55775 35accedb5d03b48e01d79f824003f1f6bef90912 release24-maint +55775 cfbcff66e725ab428e3e9a2b15a2c77963896cae legacy-trunk +55775 01813841d64bfb4366ce0dd11a6e0f6828d2f60b release25-maint +55776 39a1a22f96cf63f13429d75aa420e782c0f8842d py3k-struni +55777 b3f61bae10c38cd8594a0ef3105b1b6fc7281ae2 cpy_merge +55778 ef37431ebf2c945e1e3ac813bfea42bf961dd7ba py3k-struni +55779 4c5fbe65b7de79359d4f157564f28d1686064875 py3k-struni +55780 b30c75d22f34b23970a4e8e38d2886c4fb45992d py3k-struni +55781 7015cccf29e3bbd75dc274762c209d3b4f23a0eb py3k-struni +55782 30e61ac1d66c62ccf5409a5546b5645080fad50c cpy_merge +55783 9af524e351f3250f31f0d64907877b8eb71a2c2b legacy-trunk +55784 f2277439dcdc9f8ad4a8839a497898c02c83bc81 release25-maint +55785 588686d4c2cf87eb9684b76dc5dd2919c07726c0 legacy-trunk +55786 6fd8d524d56b2e68eeb65423880e565142360880 legacy-trunk +55787 11930dcf9d4fb4dae6c94ef4b7c50e406161c47f py3k-struni +55788 7e52b5bec5a42699763565359feaca89ba6802a1 py3k-struni +55789 ce5af9a746cb208c3e2c36c0b2091c911d6290fb py3k-struni +55790 4596727f6c39bc58f81f17eb8b3d5b33a9ca9318 py3k-struni +55791 b05c6d42d4f721fb66bd9380932b64e17ab60bee py3k-struni +55792 f141c5f77860e30dc39686e4595e9454b590c15d legacy-trunk +55793 05879ab87e5b484c995b5e65e4431b495f668eef legacy-trunk +55794 7b37a437236163f8b43a966f83abbbce6af64ce4 p3yk +55795 9d02a4adf57481b60d2f975b6c579f1d6d1ad599 py3k-struni +55796 b3900a51346b52c4d11de996af0087bd8d794774 py3k-struni +55797 59b7e9346885cc60cbaed8f06c70adf84dbeef9a p3yk +55798 c639228cfe23d44a9ca159116b9377866cb25f68 p3yk +55799 a3261cde3a37e683b227104c5dec73f6660e3672 py3k-struni +55800 fee71c7af52f4f0e096edba5593c112b79a46bb9 py3k-struni +55801 942d8302f4d6f15439402406332a4c734f6c5f86 py3k-struni +55802 c8b0e3b8b456bc8f2ab59d455e679a31e4e474f3 legacy-trunk +55803 c2ac22c6f98d03fcd28469514b1707ba8a86a11b release25-maint +55804 1bc901ddb7dc21b3adda7e97f1020b6a8e6d04d0 legacy-trunk +55805 823c2f7591f502ea84e000c4353e893b1f9ac48d legacy-trunk +55806 8150d1f010aac566f23d02fa69e955c767e1e7e7 release25-maint +55807 14745b4fa718a59f5d51da44cf6e988c954972b4 py3k-struni +55808 827ec7680199534fc9cc4e9bdcfc4cdd2165cda5 py3k-struni +55809 cd8f165bd7e297a4a1fbbc6aa0ab292cd5011805 p3yk +55810 c6a0b75dbec228ff90752cf2b5e3d933dd298943 py3k-struni +55811 ef09cb01195964a3fdd621d7e15f81d2b0c9b2ff py3k-struni +55813 54ef645d08e4fbb6c39394b0a5dbc70918daecc2 py3k-struni +55814 c41fd572386096009714bc78f9488fef0a16e8c1 cpy_merge +55815 e420039368b79be2b192d402553ad02825c1bafc py3k-struni +55817 ae6ba6188d38d404e30aac7d512c6b0752330ec0 py3k-struni +55818 6464cc638faa0d148f67e170a6a32b81cef3fa14 py3k-struni +55819 e66dafa98403d6256446225805a8ed1333b95015 cpy_merge +55820 14ec9673f8947c73f32deedb7452bb8de7d2cd7a py3k-struni +55821 2453b937925e893fe86732d7950c799b789043b8 legacy-trunk +55822 29d1af220c3c7a5b5c4a8fd0e1cc0332f8d784db release25-maint +55823 e153ba352b513c5f8c78a8db71739ef8802f0aa3 py3k-struni +55824 f48c197f9c38fde6f64563bca33bb3798c148a41 py3k-struni +55825 58a13330dfde9967f938229efc5ecd19644eac48 py3k-struni +55826 0d81a656412a17d41aa8a757a672002752c14476 py3k-struni +55827 14b65de9b7985490a178b56b224a6cd8165f9475 py3k-struni +55828 522a4945def80e60c723e7b5f33935e05e4e51c0 legacy-trunk +55829 1bbcd392417dca573bdc0d2923242248f868aa44 legacy-trunk +55830 10f8a8a919e2a0d097b7a2c49c2b44d5312c0167 release25-maint +55831 7b84e8919b000c51324a4ba56eb74e4883caa75e legacy-trunk +55832 b4f4ee84c30d7aae812dccf86e0310d959f266ee legacy-trunk +55833 8691cc76d4419250ce52f2c88651abc030a0804c legacy-trunk +55834 0672dbed5f7a978e15663d2fa64f97a1e3b6ed82 legacy-trunk +55835 d60d0d0ee4f8c9c83729c3bd67abcb4dcbb10a72 release25-maint +55836 2bf4dc9d0647bcae5612438d663ab9d92fa3472f release25-maint +55837 0527ab943a4f222cf861812cb779230b88965d8a p3yk +55838 79f13bf8dd27a28578da9d6a097df8cc4cf30ef2 p3yk +55839 e62b606eff0b8366ef00f9af66c52687d954d801 legacy-trunk +55840 2bd9417dacd5c53abe7854eed64489c049b0df09 release25-maint +55841 16cee674a410e592625be460cc8cfa05f5716480 legacy-trunk +55842 e8413971212df945090a48ebedb654d0551e5586 legacy-trunk +55843 28805a720454002c8b36d7b58a6b0f95957312ab legacy-trunk +55844 7c9225da5f61159b4368f3482385ba7880778946 release25-maint +55845 e2c39a30e08dd6dc499f5b5c701d769e6ad20abb legacy-trunk +55846 731b699423178019f062f60acd610cebb53cfd4c release25-maint +55847 3dc507ca2e2bebb51034dddf429f9349b07c3f2a p3yk +55848 59c6f4cbb3268ec2a40783937b7f7ed5489fe216 py3k-struni +55849 02224da60fd183bfe15aae9dfaf1f56d0d8f83f0 p3yk +55850 cd125fe83051b4e508789db864471c6c2f2117f8 py3k-struni +55852 6443853ba314891e7cde7c1eb148915d171ad56b p3yk +55853 6beb75eee9c52f2b12c9b47cc1d18863e36b623d p3yk +55854 b1b8ee807bdade219f306c2e2318150bf7c85761 legacy-trunk +55855 3ddaaf6148044ab79e0677b22d5274b40b91fb5c legacy-trunk +55856 b239a2bcb24f353c18213774d40545864345884f legacy-trunk +55860 7eaccf53adbd14c3a8b70a18d1d8e9b1fef59f5e legacy-trunk +55861 7990bb2759cb3794c71e971c50c638e61b03d26e py3k-struni +55862 f5b65731bd6c9fb61adb6b56c74c3fd370a475ee py3k-struni +55864 6a4382ceb71e2c93cfeed2e45880d7edd2887579 p3yk +55865 0e9b0b8fc3e7cf1d6fbad5c148ae225cdeff78e8 p3yk +55866 b37a568fd441eb55a2ae9558639bb76ad0eb7c20 p3yk +55867 2d5e2365c7db05b830e5222d4f2bc44ced78f03d p3yk +55868 9e857b6c1e563e774f444323cd02ca584786d480 p3yk +55869 19fa9c7d3c4f09d4c238c44f7f6703dd9eacef52 legacy-trunk +55870 e1afe56ca6ba3080921322867f236d938c68d202 legacy-trunk +55871 b7f8ddd072b858fa34da9ac32920b4700c69e2dc p3yk +55872 59bc8da01c659cf81457f0ff0af019144ab853ab legacy-trunk +55873 dde7c37f45364d7661f380babd8bae0bdd0bce40 legacy-trunk +55874 b94f284805be70826e1a598c62717cdfc120cf21 legacy-trunk +55876 36b8d74deb9e92102c9ba5f8c46fcf1d7278933e py3k-struni +55877 75efe6bf8a3eced841fbefd6a47b9a60f15df31c release25-maint +55878 71f3192915e131e2f91a9d287fe1368e8bd0a477 release25-maint +55879 43322ff5e312c4a549045ce656d12644f19c1071 legacy-trunk +55880 c9e3c82838c33833cd40f75d863433c52ba02c2e p3yk +55881 73b6cebc6f727a1c9c4ac04efd7773e104b02bf4 legacy-trunk +55882 b356f8720941b2592a2b7d2c7e4526ad2153da03 legacy-trunk +55883 82178a6082eafbd15214ff46854f75937fa7f904 release25-maint +55884 6f3c335ef716ffe04d8d1cab2620496fdccc3d6a p3yk +55885 9b6c46946e02dd5cff2ad09c8201756e0501d6a1 legacy-trunk +55886 6449850c5759a50ac26e1362c823e12e9c9b5411 p3yk +55887 d1d79c71ff62caad88a4e3acc70a01cc109e0ac6 legacy-trunk +55888 9d405e133d0b24776ccf037d61e6c9c0f87845eb release25-maint +55889 9bbfd84567d50a409dbcf320cfa9c02ca5d99825 legacy-trunk +55890 d0e4a32f6b789512eb9446b5a94b5a81a812df36 decimal-branch +55891 160b7318a3cab6e2e2114b3db650f2f090213243 py3k-struni +55892 180846b8755f984fb19efaa4831c2a29ae46915a py3k-struni +55893 056627cb0e40a0fcfe51a4cc55460ee251e7c255 py3k-struni +55894 f83cc9b31a977bde9735ac2d36734b323bb1f764 py3k-struni +55895 96eefc7a67a0fc57e1bda45ed8ad0b9f1eef2a13 py3k-struni +55896 3e64d0eac7748ec8f5ee52592707419f621ce4ce legacy-trunk +55897 e0f927414dfa39a1626813eabb51234965546de7 py3k-struni +55898 61fd5444d95f80be14481f88d5c606a370fe1ce2 py3k-struni +55899 faa626d6e675172dab56d1bb47bf6e64a63c5e6b py3k-struni +55900 171f0e07367126accfbc27fd8d7a5db62ec7d660 py3k-struni +55901 95be6c3ade6e9c95e3e5018df5442fdf923ce8bf legacy-trunk +55902 d678ba0177dafa1d211ca5c26f171af63e0feaf4 py3k-struni +55903 3910533b66c7ad48387f386ec5ce1e514d6f8d7d py3k-struni +55904 3c3f615edcfff7a05b95ee08862e8b657d2d89cd py3k-struni +55905 c630e3a68883dc3490454ea7c2e38ccfb540f6a5 p3yk +55906 57c344149727f2e4f91ceebe92e6292121a4e707 p3yk +55907 02d3ed2cc347590022c08a7283f7557f276af590 p3yk +55908 190e2f069b181802a6310c1bcedd00720de67c14 p3yk +55910 5e14696868f97139f6294b10419e83b16feacc69 p3yk +55911 6f72208c643b5e4901ab124e57e80c5cbc6ca8e4 p3yk +55912 5c26fe07dedf5d8685bc1381350e064992a2de0b p3yk +55913 7bf8360980f1f3c1812438e571d18d0a98e15c90 p3yk +55914 8db0696762b4f17d73cc6aeb4a963cbd9c93c9c5 p3yk +55915 ca693f4fd05d0e29b080833d0c63a453e88e8512 py3k-struni +55916 8812162f0f82a698c11651764e7006126a5718ee py3k-struni +55917 881ab1d417ebe3fedb47b8f3b8ce4c20a5f99195 py3k-struni +55918 802c84f99aad15b660b4ef509332a942d2e803ca py3k-struni +55919 063530fcc32e9e145cef2ca33c3466f93fc50ea0 py3k-struni +55920 6d64721ecd268ce15e1e7fc68747c96701b8cab6 py3k-struni +55921 3faa8c8097026be5f1c0d6040e95a02777fab813 py3k-struni +55923 a99a96b5b3f5cc16277cdc4f50d9164c0971c0b7 p3yk +55924 172dce5faba1dbaa5472f801d5ee43ed7650beb9 p3yk +55925 3473a685e5e7f8e44e9b536aff2899c38fb17042 py3k-struni +55926 af2608004021d6edb207e4f5d1952d18f9cffccf legacy-trunk +55927 0459b88e14b4148372443062dc03dba00398962d legacy-trunk +55928 ba5d1a3977e93d10de2979e8bbd05afc389ae449 py3k-struni +55929 0bd75916ec581912ca0d3e3db76ac909b52ba58f legacy-trunk +55930 d0cfff8930e55aee70ea138e5bf8a07bf59d1090 legacy-trunk +55931 dc7a82c7ce9ecb585c28c0d58b8df2f1dec51486 legacy-trunk +55932 bc90fc9b70b762397a1f84a45464bcaafb808c8b py3k-struni +55933 4877008074a91b8044904ce54356e45b5d1fcba9 py3k-struni +55934 657fe79a6dfebb3a5076feb9d733fdf10b8237e6 legacy-trunk +55935 e8b2060ccb59c7ab509a08f5bfb9aab337881bd8 py3k-struni +55936 45bb97a4e8b671178b653d01150bbbfa6a8fee1c py3k-struni +55937 4fb85e6f82e5e2f0322c65b2275f6b34605d1acf legacy-trunk +55938 e9fb06b4446e0e9e94e964c5cbc6f24a1a8e6907 legacy-trunk +55939 5605719beee3caf5383cc5f58b08b175cd047c6c p3yk +55943 825041fc8e2c1ed4a3bff1764058b853efdf8419 py3k-struni +55944 ce63a5dcb0af13415f9bfa47551ca48789cb025f py3k-struni +55945 f833b43c275689eb244e6bd1d40852561f0e8ce8 py3k-struni +55946 fbabdb0d7dd22c4a616751e87e9170d370cfaa01 py3k-struni +55947 8ca1d3a7f4f0f9df7e842912ae778855f9363a90 py3k-struni +55948 de880381654af6f720efd433310ba1539e785f63 legacy-trunk +55949 0318a0f54520e4271a98c1b79016d1727a9bd02e release25-maint +55954 60be2761057bfdd3e4318ca503ae94dc896d960d p3yk +55956 b5391214df35dee7e65f69f9a4c48a60e1513812 legacy-trunk +55957 3d9e0efca5d3529643dbac9dd770f32a54483f8a legacy-trunk +55958 50bebedc614ed54d54439c5bf62e083cd5a1e216 legacy-trunk +55959 9e114b1fd94e83808ff50820cf4a89dad37126c2 p3yk +55960 05f1fd31344dd8be6808a4d0ee29effe12e92384 py3k-struni +55961 ffb1ae7233a22998f1991a50a38ce4b85f7da941 py3k-struni +55962 37189e375ec796ab1607c5d3f981933ca76e009d legacy-trunk +55963 229c28cb9afb2329c0f557badbd5af08b3462d73 py3k-struni +55964 53698f9a4eb76e548b2a0b676caa77853d6d0b0e py3k-struni +55965 5675f6c3ff83d1f307f129f02fd0cad0f8a8af7d py3k-struni +55966 973992a7440a1cc5821085258cc6636ed292ac37 py3k-struni +55967 b7e549857321597ba9d47d352e37cc4bda946559 py3k-struni +55968 0e010db122c71a2e23c62e050ae2defcda5c99b0 py3k-struni +55969 86937b0cd56a6c0aab9903436f175795485d6a2d py3k-struni +55970 72fc7d029d3d2b3c1d6f1083f6942bfa6f740640 py3k-struni +55971 d17a2724798630265ad0354d96464760bd9762a6 py3k-struni +55972 36567fe02ea5d1114d13aae537f95d470a11732f cpy_merge +55973 497fade1f87348246aa406d7c4e834c9c726fb77 cpy_merge +55974 2cf7ce41ec60359b29c0a97ae7d0efe310550884 cpy_merge +55975 fd8dd74470f959047ef934a99d5f034542599578 legacy-trunk +55976 44b44b0a9fe257c748f93751d57400ccb4eaec0b release25-maint +55977 271f686f621811dcc6328234935b41068ce989a4 cpy_merge +55978 f65672b8e7d1fee947e6fb91a85c923323c249fd py3k-struni +55984 85c446f4b19622cc88c8a7afb48e89143255585a legacy-trunk +55985 4f6ce98b060d1fc6c9456cbd6f54f1a65eb4a1d8 p3yk +55986 246324b39896b130bd72ed188c59a49a9f7f4f0c py3k-struni +55987 5838bec7c1158ae3005765e607e987d3b04e49c4 py3k-struni +55991 6727cc9ed09ff1f5b05db316b704949d9fc8bc36 py3k-struni +55995 487747d910c762c02ea3de7afd6d38fe1942926b release25-maint +55996 d6d1e86ad46c1e90d7e8e31470fa4e825a054c9e cpy_merge +56001 ed6c82da1a6ceeb1d95d1879cd0413d1fb6258b3 legacy-trunk +56002 9ba992f64e957f0786c05844605d2a3ab5f3bca6 cpy_merge +56003 e4e6a4d7c16e958ce4914025391c91b8ce22b955 p3yk +56004 7d7c480563e21ccfdc05b8a7ef183540ea3c58bf p3yk +56005 8e8609432e56c891fa3a81b57534b48b57a8508f legacy-trunk +56006 ced8db618e5b6bea9599681486474f124c90aded legacy-trunk +56007 41d45c22f147861d28995ec75fcc80d0e28a9a95 release25-maint +56009 853b8409315146f413243f0ece964a0346452157 legacy-trunk +56010 56ec347da8e42f4d648f759a2e5a0b22680653ad release25-maint +56011 a9aecbf5b13f023c7dc9872233388b4659202040 legacy-trunk +56012 02da63058d6b14e9a1064429896ebba46fdb5d98 legacy-trunk +56013 59497ec28caabe1342a645132a37015be41d23ca p3yk +56014 0805157734f8d9dc20f8c73d94954fb351304253 p3yk +56015 259de3874420602224679042e486928c3a7c9c00 p3yk +56016 82823e13b66cd9e60b0a6ab2ca498aa6d8308e14 p3yk +56017 0e204362329ede72954e03e9730646852ef92eae p3yk +56018 b4565e096131f1d1df04179857f7038c256b499b p3yk +56019 b2e7336feb826a76dbad96a816fae4bdbd636a36 legacy-trunk +56020 e4f649c4f45725edf6d9bbdc6e6618fbc7039666 py3k-struni +56021 32fe2b9e9f111433c7788211189e009c6c119383 py3k-struni +56022 ebc87b94e6eab5d103803099583bbbc322383fe6 py3k-struni +56023 a4ae62653a5cb169cde0f5aefd50ba14be0ac711 legacy-trunk +56037 7c892e73e8e49f50558a26091f2169aaf9b4c6e5 p3yk +56038 aab9080ac4c7ea369e2d78a0d164aa0ef95536d0 legacy-trunk +56039 66c8347a64ddaed05c1dd8586806b7e86689581c release25-maint +56040 04a4185bd4d3cc16535d06c91d965f5a6e34b57d legacy-trunk +56041 67f7097c34f3499828051fac6ed324493d0517e6 release25-maint +56043 70a0831feda690e44a529810f28bf298cbceb308 py3k-struni +56044 4db0a0cc57abee95411ce0d199374cef2f28d42d py3k-struni +56045 04139e30e64da951ef7fd588f3fa27b770c0669d decimal-branch +56046 842533477cea54449eb1777c6256211f55142526 py3k-struni +56047 1f06d5ee40bd7f2c1ac87a301f6b89523a05e299 py3k-struni +56048 6710f453cf4a8a2e95759b7bf3fe86277d20ff85 py3k-struni +56049 383c8907bea0448031dfb84f7ce5143ef8e427c6 py3k-struni +56058 6b325b065aedaef31dace5ba96e77cd3c1a190fe bcannon-objcap +56060 39eaa9c0246e4a2b20838d44c6ef2fb890c9b6bb p3yk +56069 e13d5b1053ef8319fe6f1e208763d842e2366d09 p3yk +56070 be9de05bb889cc2b9d11ed0578958346eaf88b80 p3yk +56071 95927684476be16bdb3fa07ef52e4a71db839b50 p3yk +56072 f97b66e9aa8f0d7b66f6ad2c0fb4a6f2ed9396b7 decimal-branch +56073 4590129e4c2b5df8d4d267da89e2dc6d031754f6 py3k-struni +56074 79c2656056f675eaa850a25b4e017ce52df7d493 py3k-struni +56075 8fc93215c0ccfbb0408814ca73ffef303fb86db7 py3k-struni +56078 c291d2f6d017f2515fcd7194cdc75e90cbf424a7 cpy_merge +56079 b9bf7c760a1025bbaec7c29144328ad0ddfe729d cpy_merge +56080 9b56c916253474aa76b14b7f68a3b994e0e7e0ef cpy_merge +56083 e876f6439dc7bc5c2b665edf868de44b57cea648 cpy_merge +56084 41e8ad2c9ba991c95a021394c9dc5bf284369d32 legacy-trunk +56085 d837b5846d414fcd80f69f5138fc0f638b01163e release25-maint +56089 9a6ac9a7e3a4ff9fc6913a292431322da68b681d p3yk +56090 db3208704ac0af9d493744a0dd26045cb15cc157 bcannon-objcap +56091 705bc73ee4331c8c30c8cc23f2081f0c3969bd65 legacy-trunk +56092 b0074fd92621c673c172be6392a0027bd3da8c47 release25-maint +56095 bf6eb8847a4244029db0fda53b68a5850955a881 bcannon-objcap +56096 159031db8e9f28573075e5ea5a6b2c75f319f89a bcannon-objcap +56097 633b04947ac4605c064b9bf89c2c0d76f9581cf1 cpy_merge +56098 bb09ead0484053ada95587072d813f2cbf0aff59 cpy_merge +56100 a200240dea8ab7639e5bcae45628d89fe001e85b bcannon-objcap +56101 3f589c564426d87c1d0572d302de60952351beb5 bcannon-objcap +56111 7a118ac149a0667003a5eff3dc26f39ae86ef3d6 bcannon-objcap +56112 50d32647b035652ab2752b7320086d27ec2c5eff bcannon-objcap +56123 5f148f6e0a46798eaeb255dbd28d1007a1a14129 cpy_merge +56124 314adc3b7bb47998b9de693d126a436afcf416ec p3yk +56125 7ff35ad466ec55e8db3bf33c70c9c7f61a86037c py3k-struni +56126 863ed7cd45dc8ed5661d3971cf0da762d070a0db py3k-struni +56127 4167680b3ae24f3f62c109bc4df6f2eb32b614c4 p3yk +56128 a8582e25748b72957fcd47d29da143bf42e6b631 py3k-struni +56129 da4cc67673a851b6896117c29a0400292eaa334d legacy-trunk +56130 c76a94322ccc88cfc44197afbdf52678eb8e18a0 release25-maint +56134 78bc078c7350e2f9ff621af43360e160f31ad886 py3k-struni +56135 83753599420dc938b2cb5e0514740d1510ad9dcf p3yk +56136 2899cf8ca5725f0a04199d28ae6b3d9be32c500a p3yk +56137 dccf14fe00ecd3cc1e647ae12310d729320f6ac0 legacy-trunk +56138 908580b9c8e10bf2b433cbe9fc4cc10ec7f70c81 release25-maint +56139 f5357124cefe54212d2042dd573adbc7cb2d5857 p3yk +56140 1f7b66a9ffb0d272b17b0d9d6090ab7d86a81380 py3k-struni +56141 e3bcb984b24c8e9d919a4ea669b7f215591be38f bcannon-objcap +56142 d4c4f89c777d4539adeeeb3cbc0080128971c2d6 p3yk +56143 407d174db6dec7ff77a4a7b0693463b747a2d01b legacy-trunk +56144 c3ea2779c6358a52535a2ce6462767bf8c06a3fc release25-maint +56147 604bfa63c11389fda93bab7df144fe998e01be57 p3yk +56148 21374369375c16598f7115bfc3c20be8bd44c87d cpy_merge +56149 ab74bdbf6daafdb7e1cf8f751067f7d38aec73ab cpy_merge +56150 eb2d525860175879fad59565f42fcc801369f7e7 cpy_merge +56151 feb276c089171c8df283a1d1d8bea6bb5be7c7e5 cpy_merge +56152 c2cc1203bd69c96ed9823b3abbe392c6a9f04d88 cpy_merge +56153 817cbff9fbeb4db445ea424524894bf6254030f4 cpy_merge +56154 8a17e4c42a35fb969b9a7e464f5b0489ec0ff574 cpy_merge +56155 5b1e74fc42b81fb506c154537909a1cd40f9c0a2 p3yk +56157 a53e48be6df9552c62fd613047c1c67c971d4590 py3k-struni +56158 0dc62647aff0ccdc79541bb49a6971d8290b6e94 py3k-struni +56159 ae870228d5f334e391727563dac98ecdc068ab13 py3k-struni +56160 31f477b088c9f623bbfa1e31c2e03c3303f51c30 cpy_merge +56161 8eeaa9923901f38845220977fdeb711735e9f359 py3k-struni +56162 0102f5e537039f626864677f8ee20e97ce43f772 py3k-struni +56164 5187ed68abe0b8d3e3e71a1add44e368275abd67 py3k-struni +56165 8a94ce502209b0955a41eb6275185d2411faccc2 py3k-struni +56166 e476997048a0ab513d57f221eea012ac0e80ac32 py3k-struni +56167 e6c5ffa6dc673814efc948d8298d9ea4019ce6a4 py3k-struni +56168 40a6b93f9e0be8a116dc6f6a8c9b1c14f6e1270c py3k-struni +56169 3f782781020be22f951b32cf42d6a0821476fce6 cpy_merge +56170 b0eaba8b9f029356233ae1b772bd8fa9a7b42070 legacy-trunk +56173 796c7962393836751c9620cd124c2a58cc4601c0 cpy_merge +56174 8b2febfda5f99a39ee763adf31e0fe896b418a9e cpy_merge +56175 c4044e47fc1afed0e74f59fbd4a8d25b730d2d45 cpy_merge +56176 9e5a39609a208dd1ed0a49edf4de702d202b9ada legacy-trunk +56177 d6362ed548b0b170dc523b9fb030e95b00ebc23d legacy-trunk +56181 7224e42081bd381bb988ac60b594699015b7140a cpy_merge +56182 dd89605126e585cdfd1d7d0688d4b8fc49498150 cpy_merge +56183 dbc753c02007362de7058c82aa2cd41dd3d71275 cpy_merge +56184 9c08d9169c1cd449214113131131c1783e75f1b9 cpy_merge +56185 37413f621120a28b0475b960897d4d6d438ff42d cpy_merge +56186 04e24b79218af2891d828d7d94d46fee9964610e cpy_merge +56193 e62e2b81136a22d967fa472cd428b2df5fc29326 cpy_merge +56194 b2ffc028585fb2d0fa84941ef9c49a02e12b32f1 cpy_merge +56195 4fa68387b6b359e9c050e62d7e15875209363bd2 cpy_merge +56196 aa30b2b0598e4807cbb495dcd5b7b829c5710299 cpy_merge +56202 537fe8db8334989d03117974fb62f2cc02979b1a p3yk +56203 74d11d4428985ca864d09ce8a431860afe0bb034 release25-maint +56204 782f4b3e4db08e360d2a0c2f9e5a361771014e51 legacy-trunk +56205 2638b974937147b8819c6a4cf9ff4b2bbf009031 release25-maint +56206 ec4b73cb2443947671b173d48b8771c229601250 release25-maint +56207 d89d900c5d782d6f041a220082b1f2fbf22518ea legacy-trunk +56208 bf222ebff0e54743c5c4b7c66acfa8fddb8575f0 py3k-struni +56209 0eb840f2dafa9d9a219e8c5a0dba2054859d0eda py3k-struni +56210 a62eccb53f301bb31b4fbf96d93f85882baf2ab0 py3k-struni +56211 bff9ebabfc155939c4527ead8621a35be67e892c py3k-struni +56213 16e83bf81de9889eb8cd02b191ec9da12398b2df py3k-struni +56215 dfb8858c06640dde46ff2aef7f2fe234619b0fc4 py3k-struni +56216 78203298b42b7944b5bacf9eebaca6ba1f318fe1 py3k-struni +56217 29ba6c3990901de6904dc570c6726210f58d0cf4 py3k-struni +56218 6b30bd130dc17d8c0e7d34440d59fddbf1f9a385 cpy_merge +56219 f4b99195662fdeb5f89917a23fb724bb50efa16b cpy_merge +56220 33506d13dd790ddb8c98745b03b94caa176b7919 cpy_merge +56221 d9d482d038d5db21d9857fc45d1e61b6b5b61dbb cpy_merge +56222 402a06ecc613106f2917483d4b5a897018b905ff cpy_merge +56225 f0979a86670f47c78d3de411b43099288623d52c py3k-struni +56226 e380475503834b68c2b41b305d1a2c20711145d9 py3k-struni +56230 acd1f642706f2c77789a44901f9a9364861f554e py3k-struni +56231 9d0d8cae1cc73afb225988f7bfd983f2eabb63cc py3k-struni +56232 3db0083f66837d012d860d6127c8458b061e8b8b py3k-struni +56233 91ade67ab230dc50cff8a9ee96d5dfff74f73140 py3k-struni +56234 f0a9613fcd933bacc459750aa8a12ce908077c3e py3k-struni +56235 8cfdad20467637971f8cd577bd6658027277ca02 py3k-struni +56236 ddb919dcb4820ff0522bfd205e1559b953087844 py3k-struni +56237 8d4b69e31581bd4d81226d717f14a862e684e4ae py3k-struni +56238 b2dc31718b03f26407dfd57df7026f92256114f1 py3k-struni +56239 f4a1b76a5a63d3aa4d6a433a7c37852191b1c13e py3k-struni +56240 56215071c742e7b509cc7b46d1662bc969c414e9 cpy_merge +56243 9f99ea4f81e92fc90596b4197a71ccb83c5025ba py3k-struni +56244 3641a20630f3c8c938f365139ca2a00dd81809cc py3k-struni +56245 0e4460803b4a8093547f29d7351f00679f49794b py3k-struni +56250 8b31607caa0cb1888f77fdecb873dee7a3bf046e py3k-struni +56251 9b38660421ee9b9fd451307650f5353b097f19ca p3yk +56252 bf5d04e0da4c75224d2c32a6c2e40b9fb774557a py3k-struni +56253 6228062909f347db0772a2e40019b40e5f76efcb py3k-struni +56254 747b1519a36cdfe06fef7cd397139fd13f689cd0 py3k-struni +56255 1dcf1f10862c02205bd5cf45169c05122f3764ed p3yk +56256 e9bfb24f96e063d504a578aed3a4d25403f0c49e p3yk +56257 90fcd082da0dcace87c5fcd3d4276c57a39d9247 py3k-struni +56258 81930eaae7158fa308b3b3a9174a1828a21e42ee py3k-struni +56259 e840a4cfb41f6e876130171cb37b995fac28a742 py3k-struni +56260 963f50ed2b4f8bc71b78b46706b6eecd8341604b py3k-struni +56261 c6a8a7df37ef65cd39009908c40d7bf0764e516d py3k-struni +56263 79082cc14bf144b24a0997a6e7bfd1fd540e3f48 p3yk +56264 1ac2c1b80324054a08f42631a73cbec72a2f2b85 py3k-struni +56266 090588a1749033bd2f531d5c82cb787d5504aa5f py3k-struni +56267 75d3caa46a936b10f5309f108b06ea09807c788e p3yk-noslice +56268 df47950c83708e9bc8c17c86b5c1d985029ccad0 py3k-struni +56269 bd4e372f47985404674d5e889e45e6e14bfdb8f9 py3k-struni +56270 a355359e47b45871a66ca156d2a1c6dc9c83f5da py3k-struni +56271 5b3931ae262fc7de074dd20f7149f45f41152b86 p3yk-noslice +56272 a838b8c6410363c8fb5440721f623c39362a8152 py3k-struni +56273 516dc723c89ebb696c7d785170b4950d3a3ab00a py3k-struni +56274 3befb5adb34ebe6caebb6966d742881a892e9361 p3yk +56279 c1a60b4b83d39b28d35e472273002e67557a5cad py3k-struni +56280 09bf35793bcdd59369369cfb7f39ac52decba9d4 legacy-trunk +56281 7a24fe70c16dbb4df6301a67046cb0c49002bf9f release25-maint +56282 854cc4d5a33d8afdc7cdb3afde26e6c7612ebd53 py3k-struni +56283 bbc094c328efd91d8e68414f880eed6b8c8c0b35 py3k-struni +56284 e5ccfeb11cd671199140b403189c3c3d3c551e28 py3k-struni +56285 9b72f06369864a03ba9bf2cd0af0d9ec005f7b6c py3k-struni +56286 d1c7c2543903b8d725f8af487593b7a4a1871ab8 py3k-struni +56287 7c6a795b525acf48f0c3be8c18fc4009cc693901 py3k-struni +56288 ca3cfb34e3c2635975d51ce1886a8e372712e5af py3k-struni +56289 23f1d2c36d12cf3852e38b548970b9f97affd2c4 p3yk-noslice +56290 a5c23422af6c68ba5ff4e6ca44350e837ab05a90 py3k-struni +56291 ca065b51a6166d573fa0187ceb760f10471c668a p3yk-noslice +56292 d5cf191699046273b7027b117ec3f58896c1559a py3k-struni +56293 255bd43ca78f79379f62a4804e5e36a344de77e7 legacy-trunk +56294 23ac8d140a8a2e95c4879ddddd326d7e6fa8f146 release25-maint +56295 196e5c6323a36b8feb29960523e3a9f79da59277 py3k-struni +56296 6319adb0041d6eefec20bcc62f3d0e46fba0fac7 legacy-trunk +56297 8b81580ad0c106074ea67d5b3d783865282193e1 release25-maint +56298 86d1dbfc58331b620533bd42df2056fb94f53250 legacy-trunk +56299 b43e5f3348aea952ac4c924bf5fb7bb5f7ae5b57 release25-maint +56300 293b83f9da9fdde676de94aa65dd4364f9493e74 p3yk-noslice +56301 7c3784bbfc09ae8bb0713b8c223b9d34842b1914 py3k-struni +56302 248a206990ae09b9bed1d9d8f3748323b2f510fe legacy-trunk +56303 10e9c90eaf03e6dfc9378c7b2cb78ef186a4690f release25-maint +56304 2c33df09c1c71f58d2136b721862404a25d764ba legacy-trunk +56305 c255c10dac6a691eb654c24df25fe2116602f1b6 py3k-struni +56306 4c49cd65b5f17052cca9324ec50972504867432d legacy-trunk +56307 2af3f067a43102dcb3a550706b67d61f16e03e29 release25-maint +56308 343b60b604bd93d0e66180aefe7e09758cbf313b legacy-trunk +56309 72c58338b22b639b8996ff4c590d9679559ab19a py3k-struni +56310 ec74084a8cba0a07a101a76e6784f7ff8507d403 py3k-struni +56311 6cb9efb5cbe5be876872355f2a9e80934f31995d py3k-struni +56312 3e06f2b901026412dfff8708a6f4ff78e0919ac1 py3k-struni +56313 3fd3553e258854ea38379a7bc1d064acfde87f42 py3k-struni +56314 58661a82338e82cf102e316e0178eb7cb22b3093 py3k-struni +56315 e715e20816371a147ee5fdb0bca1712c8b00ba87 py3k-struni +56316 0b8977411b07b4e6882587601826960b9528729c py3k-struni +56317 84a217579ae59d53848cdbe19d1e0fb5a7a489ee py3k-struni +56318 84229a9066e2f86600b52a4ccba2dcd0466d9287 py3k-struni +56319 0681233344d93fd0de9e5e3461c816054e117b67 py3k-struni +56322 b45c0f4448131dccb23d5817fe1f4e9d195e62e2 p3yk +56323 2acc6359d05d4055d62e6d083ef9d35b26dc1841 p3yk +56324 48c5a849a0c2fcefa5a7de310a6682716977b987 py3k-struni +56325 73846f9629c567ebafa0eb00ab1cbd0c97b98020 py3k-struni +56326 484a0096bae90f6619afc6916b3ff9ff062fb5e2 py3k-struni +56327 0494ae7350582b5818d0961a5fc054e8a87882ba p3yk +56328 fbae012ff295dcaf7bb4004c5d7535c34ab839da py3k-struni +56329 769e7078a2aa7f24d9e98f44403dd3f9a00ebdce py3k-struni +56330 7cc8496f23480c06bdf3a8cb24001871d6a8066f py3k-struni +56331 2fd1469723a0702eb09ed6561f67003bb9b9a83f py3k-struni +56332 afe871547b1a390f22b2a7fc11324822a8ee219c py3k-struni +56333 10de6a91da4da190cabf57483c5c03612d65586e py3k-struni +56334 6a097772ea86b5a401758781815fe2abf3cb72bc py3k-struni +56335 6e65f08f127628621ce16b689daeb89beafd4be5 py3k-struni +56336 1c3790c831fc16556af10e7baca78dc364b7570b py3k-struni +56337 8eaf03fc3f1295d6142c8a024f10b815e5941289 py3k-struni +56338 22d6584b87126c8fb8993838350b90b0c99ebbd2 py3k-struni +56339 5d16f478465a53558f26dd026ff9d4670cbabdd0 p3yk +56340 0c0d750ee75e4c2521f6a8d356663e874ea14ae5 legacy-trunk +56341 7bc4723f562face11dc9707be9847f72249db232 py3k-struni +56342 0980034adaa722b4648533d683ed83cf13f4f7ce py3k-struni +56343 693be27f626fbba96ca182f5536d6e33b46136f5 py3k-struni +56344 17bb3980483ecfbd2061cafd163d140afa3754d5 py3k-struni +56345 1089a4f57d2095b9fbd5ca3da1152ca708871424 legacy-trunk +56346 c280647c330cf2aad9247637465d4f4c6afa65d8 py3k-struni +56347 7c1c902d7000312d1d8904249c3de55f76e48278 py3k-struni +56348 76021bbb89c738376cb39aa7d79c47a31c8986e8 legacy-trunk +56349 cb865e399e84c65a9812e348b67fabdb3810cb38 legacy-trunk +56350 aead136ca49e299578971b9f2270b47136fd941a legacy-trunk +56351 0d62cdd3557d5adf86f7415986105ff0d8aecaed release25-maint +56352 b6eaa6916884cdcf1f82f43f8e3c4b7b49d3755a legacy-trunk +56353 f33658da06375462b70b67f0e95d7f5ed9e86063 release25-maint +56354 3f879d726d189814c014824c2aa4c8cf6433a784 release25-maint +56355 f8c75e849956094650667d180388891c8e189d76 legacy-trunk +56356 f01aa3d18c9d3ac006d13eb6a12fdfb1bd01e711 py3k-struni +56357 4cf045941085450d218866029fe374dacf10cd7b legacy-trunk +56358 599ea9e5c6c5d8e9a36586dca9fda1998d211a1b release25-maint +56359 d8bf4267233056d5a37f5828c3a9d1269acac85f release25-maint +56360 c29b0dbda3f6adf8a224c28b57e4b2da094f2df1 legacy-trunk +56361 0bff4b6b92be2b73ffa39cdd677395141474664c p3yk +56362 61412e25e61e30d1cada473c42f63f2d020e3e84 p3yk +56363 202c37835628b915ad4eadbe1436111b0e80e73d release25-maint +56364 8cc6507b0626bb4e10d389b892b7955710f2e3c9 legacy-trunk +56365 da2f8948cc18d208aa814d9dcf757662b172b801 release25-maint +56366 697c0a78d8c9005d9df01d5ebd1ce8a80abe311f legacy-trunk +56367 85d4a02d0abb0c67417a43efa31553c2979b2c69 release25-maint +56375 cf890e41ac1351f543a4b490af406aafdcea2412 py3k-struni +56376 5066b0025bf086501c9ac14fa9cdb14ab784d35e p3yk +56377 a5a3df49acf3029e42bf3fe5d40b606354d31ee7 p3yk +56378 2d225042830573895618ef78148f2a825400e941 cpy_merge +56379 09cd3e503235e65c6ea1f93e887b86cc72de8486 cpy_merge +56380 a5e8dd59960ddd99d15e1d08b41563256fc5c16f legacy-trunk +56381 45c7d4735da36c23ff149bda996f19845d76d4e9 release25-maint +56382 8af07e11f197e26134da1add3db5eb6a6ac285e3 legacy-trunk +56383 daae27fbb8166ede1d8f57d1edb88d88bc47818d release25-maint +56392 c23d8c27dc9222385070b7105353cf53f63586ae legacy-trunk +56395 18e5ae91bd2979e02d2619d2328babe1c2bb8771 py3k-struni +56396 ebe960d1d627eed6cfcb93287be130aba9c1bc82 py3k-struni +56397 f715bacdfd00f33bacd5d1f64ec332e26af77261 py3k-struni +56398 191999be6cf58efa6822dd09cbf03b3652cfe539 py3k-struni +56399 5ae774cc26ebdd70769700c9f967379f75b6b054 legacy-trunk +56400 d062f67c32604d420e4d3bf3563ec63e19e64d82 py3k-struni +56401 f5b5dacb9ae29bb12b4719622c69d90b425985bb py3k-struni +56402 3f24209f251e3ad113c46416807aa670fd4915a3 py3k-struni +56403 3772103200ec89bc88bb3b2f1b667fce50eb6993 py3k-struni +56404 8477fc388eeaee3e8f25a511daba883e4bf15be3 py3k-struni +56405 a8d43085a8570b0ce331a609578f25db02c0892c py3k-struni +56406 44bc49a07e524958e82a8b99478c419bf63698ee py3k-struni +56407 5337c3a4a273d9077d8be537065fea9bc47023d8 py3k-struni +56408 f51d3be435df68e3d1d525b14672c0585f5a66eb py3k-struni +56409 058abf878ad4df98fbc3306f7eecb9227d6bb404 py3k-struni +56410 3bea8fac3a7cf6d43d6f44dbab9d090e38d77af8 py3k-struni +56411 c4ab3ef6194f737214776e9b1b4ad3511329664d py3k-struni +56412 f6592146c7fa68f7a1594177f43bb2a4935b4bed legacy-trunk +56413 550141fd67c23de89535b5d292240d41a552999f p3yk +56414 c8e624579a4d63e6bd6eed35e9e24f8880ff8fad cpy_merge +56415 f940e470e55026e12d34d7143400ff2077b435f4 py3k-struni +56416 67b01b05a81b623487fa2f49fa05d62e9bbc77f8 py3k-struni +56417 a309cdb7cb330d10af1f8b93df8b9043b198d02d py3k-struni +56418 7d16b42fcdbde2cc513fcdb427756bc9f0cad351 py3k-struni +56438 d0719406b2c659e7db438962b6b5bc54c60bae6b py3k-struni +56439 7ced3e8519f1418891d303777f5d85f148f716ae legacy-trunk +56440 35eb72215630af1afe4fc1a0ac398375504fa4de py3k-struni +56441 6775ee6d89d3f9fdb2997face1c9f2f42552d4f1 legacy-trunk +56442 149815ba284ccdfd3d8bb1ccf5c416dae9b82bb1 p3yk +56443 bd6acfdb47d25a6cfec1fab0a3d90c1882853350 py3k-struni +56444 4c658377b9084754916e0af1893c4183982d4373 legacy-trunk +56445 c1e9eeeda34f9bf283a8fb5a0a600a06347402b7 cpy_merge +56446 1ae5f102fd3d6e2515fef858defea0d2887ed676 py3k-struni +56447 007ed6cdd1f7bc74be8d9311d219502ddf2669ea py3k-struni +56448 08642bd1be184ae12c2e37fd6786fccaa83a5597 py3k-struni +56449 dfacb51d138616121795c1312838209f56c77af9 py3k-struni +56450 bdc67dc1a95e2e40347e9c85dc059b19ac9468b1 cpy_merge +56451 d01ae698cb5838f75cb5078b6cbd64ae356c8339 legacy-trunk +56452 28af961038de826a507d685af8a6cd21371b8473 release25-maint +56454 37902ea41a17b432adb603b0a24ebad57f51f09f p3yk +56455 7f760db4e746baef18b354df09853e650f9c5787 p3yk +56456 c02a33788a8f5ebd322f96e5ac5b339634f9885f legacy-trunk +56457 3fb59666b2810a41d02e166466984813cd64dc3c p3yk +56460 4999a09473434acd43e440d96b2c886b1ad915f7 py3k-struni +56461 ac36f06a612b80e0b1145a3792e9b4efe576a82f py3k-struni +56462 63955e3cf993b61953210c840a1e1137c269c949 py3k-struni +56463 8c4a33079ca600d872b646279cf7904c896eaa3b legacy-trunk +56464 3e33215c66ede8ff2c5674b7a7b1acd1061f363d py3k-struni +56465 116251ada9058fe607e8c8225357af338013b784 py3k-struni +56466 60b718b6fc9b1633cc24a9ddf7f256363b7e78c8 p3yk +56467 4bbbe0c55fa2158fe216537c8fcdfb3ebad742b9 py3k-struni +56468 c46f0afb403c407eb99ee842de22057ea35bc52f py3k-struni +56469 964c4bf86d9a696757ee0d2344bb6394c8208a13 py3k-struni +56470 a2c5cebd0dc51f15b7b995abe90f5fdebbfd1598 py3k-struni +56471 57c62bd36b19bb81bdc941727a1e9a3518b60958 py3k-struni +56472 5a9e3d37f661f13efde171cbaea7184027e2831c py3k-struni +56473 333ff0584938c56339de7565b335cb679682bb49 py3k-struni +56474 7a0d1baa4a53ded42451b18092d6ab549591062d py3k-struni +56475 2be251dd2cbdf16133c4b549102211a2b79b8daf py3k-struni +56476 6620a510e9a95110db13912d665518ade7dd7d9d legacy-trunk +56477 e37171a4b147959f6f23ec2a08f22d4db67327d9 p3yk +56478 fd3458a92a8940dbd7a67511a23ffad98e77a974 p3yk +56479 4e89872f082e06b8fe892605a7e620c361289c8f p3yk +56480 531e181f5b530f9e45286054049b2644de737e22 p3yk +56482 12df906003ea9226f22ce318dfb1d90f3b9904c3 p3yk +56483 e70cdce0e8b2955c44008a448f0935b9de7d185e py3k-struni +56484 c8b850b5a066691fa88cfe52ed35e8b82a399ee8 py3k-struni +56485 03ab8c8bb0ae184ce8c82f06e581dec41fddc9b3 legacy-trunk +56486 23bfdb7571a7dad1ce85aa65eeb1645ac8be8236 p3yk +56487 88ee0a5562ee22190df71f0018cfe589d37e1922 p3yk +56488 38d1beb650bacfe2bdec32698a0ab8d259b24bfa legacy-trunk +56489 811c9aa6ed882e405751dc6f4e95b7194f5b103f p3yk +56490 278638cdc647aa284ea0faf3cfbdbbb0cf5cc6e2 p3yk +56491 61859a39a87e726451b71854a7e01c67f3845ffa p3yk +56492 7bfe9a107b29777203d64220667706e767dbaa64 py3k-struni +56493 c152c7fa17c4d02873c7f0664fc65442c15b7d4c py3k-struni +56494 f4af6f4b51cc3618ffb338d12e95706ef198fb71 py3k-struni +56495 14574101684882c7bddf50158f21d31d8acb760d py3k-struni +56496 60c76718e04a005fc776f077c1cec4c8dfba7c49 py3k-struni +56497 f32fbf9fa60b1c89408dc5db0810f6643669804a p3yk +56498 40998f18c5dccbc3017e0ba2553ac5cf89d81c39 py3k-struni +56499 83670c2f1ea84c711b1d790083e2c4ae4873b673 py3k-struni +56500 9ce54cf0dbe2a69ddaffdff0b8ed744b3823d340 py3k-struni +56501 36b67030ca472da34ba364fce93ae415a426b4d7 p3yk +56502 b590f4a06bf8647ca627d84177506685dbfd3817 py3k-struni +56503 5e66bb69c1e3e486e7bf745dc746dd0aa752cbd6 py3k-struni +56504 bfe041afafe690c0eb6850546a28dce43b3e8b7d py3k-struni +56509 3fe643d62ecc45eb04c04683ea03a826539c4b57 legacy-trunk +56510 fd670539c085d560226b9e3cfcde95ea8ecfb73c py3k-struni +56512 e50e33b7e0e0ccb7114052868b0cea3d5444bc5c py3k-struni +56513 640952df44314b4ba0dab59ed752e68dc7c2da19 py3k-struni +56514 959e52ae2627a089ad58b0ee8c5b53d1d2450db7 py3k-struni +56515 36fbcda80b1c457fb4ed9a2063da989cbedc13b8 py3k-struni +56516 5b9c8dce4edd7e8cd6be1c35aaf9e2e7787f7e93 py3k-struni +56519 d94d5b416a947af4f85e823f1d2fc6d929133401 legacy-trunk +56520 bc8e5e1571accf0eee78de4decacaf36d372d46c legacy-trunk +56523 30e112350e203a369f4cd5841e480e8e07f99605 legacy-trunk +56529 746a5021e1aa8711e5b489824a5767840bd21f57 py3k-struni +56533 0e2fa4c6a42835537220b7f9d5318ac15bda8a82 legacy-trunk +56536 1137724930a72b388d4e9474bf5d04873114a465 p3yk +56537 da62836dd99f773d64a1f81aa9004485ee735c5b p3yk +56538 2fda553ac6e163db14f288d338ba57ec743c6be6 legacy-trunk +56539 e9891d787edd82692d18b843f23b1a0ccb27faff legacy-trunk +56542 1205d303461c323b981454eaf63f8e29b398caf3 release25-maint +56543 27864a181f01b2392cc9f889af114f3a498287c3 legacy-trunk +56546 795a5dcdc98203032e522277b119a1d805ca2fcf py3k-struni +56547 d48acb284664c744b18f0f75972ede690594b1b2 py3k-buffer +56548 5f3f54c0c6c8eb20d6b813bfaf562abc714912c5 py3k-struni +56549 8ff89964156352f77aafe4d920bd6041d7a733e1 py3k-struni +56551 6fa7d8fb077318f8cfaebfc89db2845f4ebf5f4f legacy-trunk +56552 434ae66b7de04e9bccaf977817c8cf326f0e9f49 release25-maint +56553 64903ff76ede1a0969e8b166d81a54a16e454e07 legacy-trunk +56554 57facf34a718610c5693b4e9fe385a4390fb15df py3k-struni +56555 a5434fada9ff49c407e01e27277f60b78b4ef411 py3k-struni +56556 2acc8902768c447f033663889c865a95bba680a3 cpy_merge +56557 07a577b620ec69182c4853710096dbb69fa63838 release24-maint +56558 deec4126ffaceb06e26fade6a0a8fb8e27eb8ebb release25-maint +56559 b00bd08a09494912279b84979d52bdb34a1d80ca py3k-struni +56560 278c52134140f617dcff1caa07dcde8408ac8489 py3k-struni +56561 1071f7076e8e38c734fb58cfc34bfb9c10ee9fcb legacy-trunk +56562 20bd5be24ab56b9b985bc8abf1bd569006805bba legacy-trunk +56563 86285b397b4d104d497ea0dc4d4a20174359eca7 py3k-struni +56566 0546c115a9cf3c72b36051b8bebd03edff240953 legacy-trunk +56584 9e84b4868984681e8e1fcc1e7b83bcac30b0af77 py3k-struni +56585 90e42a0b2202cf856dc5a138093f5f22fbac7b4e py3k-struni +56586 f672071d82fb838dc8b65d665138704b8175c050 py3k-struni +56587 357cb8967e85ee0f78ccd9201c5637ce6179f058 py3k-struni +56588 e9916a4e06a4dd3a51c1b5e5a7e420c4ada2048c legacy-trunk +56600 7e7dce3089e37a9c10fbe21ab6326cf608c25dd3 release25-maint +56601 85b7f40e1c1cf0a5b55f663792a1671e61b6f432 legacy-trunk +56603 d3471ef6fe38a9c88ca516f2147df374a9f7a76e py3k-struni +56604 e31c48218b0cb91a0c8cd26a497b1a507f6c0094 legacy-trunk +56605 785de224995d5115af75d31f978ec9ecb385eeea py3k-struni +56606 e1dae8626c11a6de09f7c6f5f46ad6b01614f94f py3k-struni +56607 86c13ce60aade5d97873d3971bbee6969d68d5ff py3k-struni +56608 d52bef552aa407f1a622d2f92a32e9ba9a077531 py3k-struni +56609 3105b7cf35bea7077fba976e84adcacf6eccf336 py3k-struni +56610 b9adad5695a39ad1089a9480df1fd300bf47796d py3k-struni +56611 e94d5060b0c1c4a24f60725b10025e4c3acd26b6 legacy-trunk +56612 f1f1f5e1395c8b49eced073c25417723018f9506 release25-maint +56614 5cd5f32b4a2886488062e0163d5411ab79b18b46 legacy-trunk +56615 365e991a631b4c565d6550d7faa225a8929150b9 release25-maint +56617 8ad8a334be0f355fd047900f163733c550519051 legacy-trunk +56619 e598173f95e88041f950f15248b2f61b3a7fc236 release25-maint +56620 251033a1c2e3285da274d86cf6f45d32b5b7aca9 legacy-trunk +56621 7e8469617b1c3d256e7e9385f6132dc8523b906b py3k-struni +56623 0c300b29200c2289b5f95519f67a23537aa23ed3 py3k-struni +56624 ce7fc08d5f47853141640066362d831ae17af2a9 legacy-trunk +56625 48cfaaa828730de1a1a159ca545d21ccc21693fa py3k-struni +56626 468621569be8e95ecd933fc9c86ec6ba2163354f py3k-struni +56627 bd8456c9569ac253144aed781d0256ff8cc5387a p3yk +56628 8e69ac1bd042ccadfdb84c60fdb482ecebd4a5cb p3yk +56629 504084c04ac000cdd3cbcdd7fba92bb0b76fa4ea py3k-struni +56632 3a015355b07aa03504122834094e0ac2093ade24 legacy-trunk +56633 b6068dd6ae00c3e15789088d899216a75110ae93 legacy-trunk +56635 ef2dc62d27eb7d8f319925b31e30f28be33af766 release25-maint +56636 e1c0aa94c092f9c20e3d3d2adb4130f67fdaa8f4 legacy-trunk +56638 3f78acc01039815b6fbd9520251021e188612acb p3yk +56639 8b56a069614ef4a2150d2f08102369b279fa3400 py3k-buffer +56648 392f98221d13eeac48eee03924547693d271dba8 py3k-struni +56649 8c165d20709f63fc63b5f2dd0db8c8d383d49f57 py3k-struni +56650 a6d26a4d672dea3bd83f244a83ee46785d167da6 py3k-struni +56651 9898a66965bcd9878594ca62afba51df0015e396 py3k-struni +56652 d3a5c796c8ba00ff5f0131a2bbb12fddb8790ce1 py3k-struni +56653 67059b78bce475d3afa54f5d5aae026d5bd0d3c6 legacy-trunk +56654 801ad2f0d0b580597dc2c81f9045be06d094b787 decimal-branch +56655 07c2f81c267d619bc763daec9cc45151a2d48e8d decimal-branch +56656 cf459652c35234b783df439ebe67a598866c71bb decimal-branch +56659 6f2330e0909bec4b7b04b6d4bacbd3d04337e12d py3k-struni +56672 02c27177df7934bcca1d6cead3a7db6d5418afb8 py3k-struni +56679 0cbba4426cd3c4d2aa9eb80ac1f346dc0a00f7c4 release25-maint +56681 e21d64746bd3cc4f506ae95c216cb3a14a4cc305 legacy-trunk +56682 755e31dea47e596f30a6470a7420ea291a27b246 decimal-branch +56683 c33c37ba9cb3b59e07b1e999041ce1c84c77455a decimal-branch +56684 b1ff54f8f9d8313a51b94479c8844ed15561d949 release24-maint +56685 3adb0335de506cded219e076d9fd19adf9e475ac p3yk +56686 168d055160dc19f911174c93c02bdf0eb7032d87 p3yk +56689 723cb9e3fa500e750e0cf0deb2d458e62590d205 legacy-trunk +56703 7794da1334a01f7849e707a43c737efed91840a7 py3k-struni +56704 ae72bf5ae46518ca61d5b509b4f3c5d4a123eea4 py3k-struni +56706 46625e6122e99bfe0ca41f69f29fc62916db025c py3k-struni +56707 81ade0144247d7875d33d852d3241410c3b5021d py3k-struni +56708 b1bf1bab977966031510df5411013ac5bba0150f py3k-struni +56709 6c3fa43f1d1d251196cb1f942cf03965f4694f08 py3k-struni +56711 7401ff78eb29c03bca8d31137b81e0c79b23489b py3k-struni +56712 535dae04d6cd67464583c2e01cb583fffae78d23 py3k-struni +56713 e319d2d285ba3d675af6f017712f3560bf6a3956 py3k-struni +56714 c35140559f87e8da8ce618d697bbaae53e9ba441 py3k-struni +56715 f6cc76e4ca251bdac7f907f171de40dc4f9b9f0f py3k-struni +56716 3ed020e95b444e30e391e95f67035208aa139b60 py3k-struni +56717 3be2972a29cac5c70e9078187216f9d7faab0157 py3k-struni +56718 ade5d1ac1a2c8a5039ade06b50f4adc2376c200d py3k-struni +56719 71304efbc316a6d2f42d35b64a5ca1170d4bd828 py3k-struni +56720 05728e52b28320d180182f685dd287956d617e45 py3k-struni +56721 b6bdbb6326d2f0b9e197f4061b5fe35029b706ba py3k-struni +56722 0fa84ffba7698adeb285ceeea229eed1475e627a py3k-struni +56723 c6194480b1d5961d4edf34a8e12931f049ec9782 py3k-struni +56724 12dbaecfb44b9147e833986473f99557248a191e py3k-struni +56725 13335039872210a91dfd948ebd09e1a61b91f72f py3k-struni +56726 8d69a084e3655ca5530b59eae654d46005ba4937 py3k-struni +56727 3fe57daaa6081349678aac580e22b6bfd5db7da2 legacy-trunk +56728 ba64fcab52142a5fb87c9ea0d04ff3c55ef60301 release25-maint +56735 aa5ee65328fb6948a6381965a4c368abae818070 decimal-branch +56737 ed37542f473eae2865d72e0f416c1e786aba099d py3k-struni +56739 528a8d9ef202e54d637e6eb937aa74474210870c py3k-struni +56740 a40aeddc0c81bd8e47a9c28e58260862254c56fc py3k-struni +56742 f4409c5d7994d3a0fecfdcb6a18b726b95f54291 py3k-struni +56743 d2235aee2d25502cac1962db69cd0de430a3c8cf py3k-struni +56748 a84eadf6372e38b236cbfeb087d3fc4291b4a93c p3yk +56750 fdbed73e5da7f5cb110938a4a880fb87f8ab03e5 p3yk +56751 648577cc688af6ceb079729a57bfaf1e86641e4b legacy-trunk +56753 dd74e020a132386d41698fa872eced0ada21407f py3k-struni +56754 629185992aa2150b028d989caa45c24babf64441 py3k-struni +56755 080f2aa180158e72e9288b892fcea07b8fd41a9d py3k-struni +56757 49d51c1fc1778c12ef651586a9a69aaffa738d0a py3k-struni +56758 1780035d58123c77fce8b054a74667dc65efe5a8 decimal-branch +56759 88d7a3df5f79e5298ae6240aad4bb5f9c3e60caa decimal-branch +56760 b45005641bca6289d9145bf4ef670cee2aff6496 p3yk +56762 dbfc3cf1522d07a4e696c7ac2336ed19f75b63f3 legacy-trunk +56763 9b26ee6e6d0a45dfc9ab292d8380e1949abeee07 legacy-trunk +56764 258e2b7a78e4fe17478403eba9fcf214ea29a6fa legacy-trunk +56775 0adb7207e4beb7b4d3f0976e35bcff31bcf2618d decimal-branch +56777 8b45f2297dbd149b2921c2d6ec8ef473140f38a9 py3k-struni +56779 b10ba38e6b8081236a5903a2a19d6db91fe484a2 py3k-struni +56780 229361198e8d5ed83c659a4d08066db6d6d7845d py3k-struni +56781 440176f061479424061a87c26b2cb52d1610c6f8 py3k-struni +56782 3fc3cedc49ca3c6a85b18580714ed914a86f25b8 py3k-struni +56783 81a3803f43cf989ebd84fc37fecc7f3c51f9e433 py3k-struni +56784 f4c99cad8d2f64b27f936d53e398d59ecf017390 py3k-struni +56785 f8281dc2e68ded7f3b6ff77e1c64b7b887ba75ea py3k-buffer +56790 2ab18ffb401cf1b7ad0943f74da91849fe26ba8e py3k-struni +56791 2a113a8264b162106994c6974ed5a4d3332662e4 py3k-struni +56792 f3248c320dd03a1dc2c6e78fa67c22885ad55c4b py3k-buffer +56797 fe5a0621f918806dbfa12e2ba8873f6b98f1aff5 legacy-trunk +56798 7d078fa34bbf63bf2a2bae9d5504c6d084b772b9 release25-maint +56799 b22d9fd4a785adfaa32a57f49e80e6f2e1c7da18 py3k-struni +56800 6ba2e67580fc98b802d5034b9a99fdf95d18c52d py3k-struni +56801 345c812f33665edf32eec0faabcafc2fe28e7244 decimal-branch +56802 29735899ca15a0696a8593a12bfce2530d0426c8 py3k-struni +56803 6fdd1af63fa6a5ffb7a74544bde952b102e1cb0c py3k-struni +56804 e7fd327e0c19a288f0955d7578ca708958f31b7c py3k-struni +56805 49d4c4cdf0c86283c1bcebc5b796d701419f1d1c py3k-struni +56806 9f1848f596e0cc64d5c648d68d1a345adfdacd93 py3k-struni +56808 e1150aae0f64d6db964da39ba2e57e842841426f p3yk +56809 13dc836d4a99a85e07924813d7be0a0adfd7ed11 py3k-struni +56810 b20cc1c0cf10e4461e7641f13f66fd1fafa8f3b6 py3k-struni +56811 4dea3b68b013b0e8dd2c8071d938b3e99f1e0930 py3k-struni +56812 04a14df4073a4ef8e01facdcfc88f1da1c91b0a0 py3k-struni +56813 c1ed490bd26674dcd947747b783163c1060c1aaa py3k-struni +56814 b65f6ac52968c663474e5baf9e8d350fe5767a61 py3k-struni +56815 3f1fcd080ec4b5010b03797aaf73139800d4a739 py3k-struni +56816 c8a091b842d6edcf301b7ff7c3d5d1b8b3892a97 py3k-struni +56818 c96b4c38652c39e248333bd6fce03b9308cd8f36 py3k-struni +56819 668a5adcc87cf2cf97e5890ef3777ab8f2e94e2e py3k-struni +56820 b56a8d822f21b65a1e6573e7fc44320b857db2bd py3k-struni +56824 a8f13a43eaa1e53dc2f1d66ed552f9789f064c18 py3k-struni +56830 86fd39c2c6768dcf2aa93abe14240336ec5c5f85 legacy-trunk +56831 89c81fd7038e63173f41741cad6b48d15e4cd0d7 release25-maint +56833 3f6be12b953423fdbc15e67f0efd0233e7fa8446 legacy-trunk +56834 57cd070ad3042f12ed42033a8073e0fae62e79f6 release25-maint +56835 5f60c9e414403ae5a4f4a101f895348c085e67b9 p3yk +56836 f4e366c392be706ec3c91f7922e468fe2fcafe97 py3k-struni +56837 17cdbedbb15d454a3da75d7da34114b6f107bc53 py3k-struni +56838 95d3a65cb74c70f8bfa16c41dba8327c61a1b8ed py3k-struni +56839 96098abc8f8f6766c5cecf66fa670b004cae0429 py3k-struni +56840 c321c2b598f174809017aa9e5672e1ef90366fe8 py3k-struni +56841 f6069f9dd52dfa9c9b6f123bff6bab61e0479773 py3k-struni +56847 9edf30bfc2ebe0ad81308a67813aaef59a7cc3f7 p3yk +56848 9918989b733b5ec7f551737b78f3b39b590cbf38 py3k-struni +56849 23d963a756962ea10b40314b4a7dcd6a42e8abb2 py3k +56850 5fbd15c61b1250517ce1c6776fd990b9d3b446a0 p3yk +56851 3e1a15185f8cf9eec09c664b399b6fc8820a650f py3k +56852 26ca3d6f473ad6de567f0a1c7e097684219c9d6e py3k +56853 db259d141e7aec02f6ab7e8b8bc75dfc4832de3f py3k-struni +56854 4aaea35dcccf8d214ea8cd5083b3b51a91e62a14 p3yk +56860 0c89409bda7abc60f39dbdccfa2843067d106313 py3k +56862 df4cd92970981947a29f5d0fb1b0de651ecaf020 py3k +56871 4865b510cf54e8da1df3b63e6fe791d8102fc8fd py3k-struni +56872 3da0a4db21024de5b6750c33225a04de03b0da71 py3k-struni +56873 522a3e3a03a96ce19bb86a8c19e4f6272f6eb174 py3k +56874 043a102a170ee2ef3ba32eae45d0be6ee061a863 py3k +56875 dcf27385f12519020678a887d5e18bcc4c10308f py3k +56876 166c740536b5f73ab476e498cc835e66806b0855 legacy-trunk +56877 82a5c30c1786206adc5d1d244a4a1d7624ac46ab p3yk_no_args_on_exc +56878 be3fecd2d339429c385042f9f8a5aa881b917d73 py3k +56879 a24e27f05e4829cb87238fd968bda9d6ed29d4b5 py3k +56880 c0dbf45cc207298f4c070183dd05d59991be99e2 py3k +56882 0870e8e9e99f58f6adef646f7ab38dc1fee4f3a9 py3k +56883 f0cfed38b9d9e1f5485d606301828f16e2b76b4c py3k +56885 0e5aeba3c67db2a5c486b38bf72704ae0fb189b9 py3k +56886 507f5671e388628f5de816340375f79ed277d292 legacy-trunk +56890 0ab3421a090677c909b9d7f48f235bc1d53c7c7b py3k +56892 9d4e220224fb5dd7fc52730c52a354ee8601e001 py3k +56893 cc25d160f0f7ee10b0a372c0cbd9068957724e21 py3k-buffer +56894 eeb37c9793ea534368d049982197a47cee242cf0 py3k +56896 f37016d42729fbef9857edc929771df8202de7b3 py3k +56899 7703187c7c6f117cc9b015ee8974fffecc218c73 decimal-branch +56900 930736ee93d9490a93d28fa1cb362dc726ab6181 release25-maint +56901 346d0b84030b9df958faf8541afcd5392ecbdf74 py3k +56902 e64286053b25228515ff883cb054c99f9176e09f py3k +56903 d95b15a55f2c0630e0ce56060294f552775c9ee4 py3k +56904 3ec20c4c1a4fbc5133692ef06f62145fada7c1bd py3k +56905 affb1e87881a5f1af63f2fc3391775dbc80ff4f5 py3k +56906 81bd3e94cf0c31d8342b66a0c2b2fb03c61c2aab py3k +56907 3858d0b8b0ef76fbd0dabe1536d410ad9fbdae3b py3k +56908 3a1572d1ff1ad54fecdaea06cb15e8c884d30087 py3k +56910 f828f35014ae39bae5084d9181fe9f607af87849 py3k +56911 6a09423164fe624f567ca14b102a75541522770d py3k +56912 5f9e79d1e1584b59fe81ee9c91f76274096500de py3k +56913 8d6867cb8a8db7189518ed05c5b825fd730f7044 py3k +56914 6cddce4096a227e20ca95140483d48dbc703e3bc py3k +56915 74a3c6826683e4f749a218e3762779dc333462e6 py3k +56916 9c3e6440f54c323c6815216e4cb15922038dd782 py3k +56922 43e32b2b400481ca37b8638c3ac6cc6cb7ae91c1 py3k +56923 68ff9098b2dc836d5b0d0b4bd62311917547d696 decimal-branch +56924 aab687936ecd8274be48802893fc0d9abf0a7fb4 py3k +56925 0c9ad0b2fac54ab90a27fb343b2cebc02d998265 decimal-branch +56926 d1855d0e4e03c393761076728941fcb0bc08bc4b py3k +56927 cfadd7cc9c4577a56c91b7d524aee087257c9369 py3k +56928 a44c564026b831486055fb14ebc8c7d455f31264 py3k +56929 077c68186e2377d45aa27b2a6b5a6b860a98d531 py3k +56930 cf91377e2444e414a5ae4227be6e7b253f3abf15 decimal-branch +56931 421f9f358e4fbb4b957836a641a5eb9471082d86 decimal-branch +56932 0c0e355cf7407cd3ec4652f7a039dc91a1bbb8b9 py3k +56933 8447ecd1bf4581b89a53ff7f9f475516ab6d7ff9 py3k +56934 a8c7424253562cd4f4c318d411f6e1f198704d29 py3k +56935 e0f62286a9a454bd3f93efbae720e86961a63182 py3k +56936 65f1d419f63109fe771eb8adb7c84f86862f0c59 py3k +56937 276330f42e7936b46f0aac4dff7ac1fc49c80586 py3k +56938 b6625d2b378af12df3258bf198961e8e7fef9922 py3k +56940 ac192f89c1093ca201b21f132d5a6cf37d405704 py3k +56943 c69d122643d50d3d3b54b1f49a9d4ccb101f1078 py3k +56944 7abacc9e39958f08543bf63e0fc4ff1a5fab8c99 py3k +56945 3e682ae9d298ef118a592fec5770a61cc97c4ebb py3k +56946 b7b3f4e32533eb3ff0266a9455a3ceaef0ba2832 py3k +56947 fee5c6bbe144dab834eaef49b467b1d73dd4f3dd py3k-buffer +56948 4b4995c8e3fd676e1aac598732c0a6ed11b9cb7d py3k-buffer +56950 c3b34b0f8216ae39e3160f227fc1d1fa9645ce2b py3k +56951 346afa658e446038506539fab083c5a2e68b71d3 py3k +56952 e781085ac989e4c0c1a3f254fee2cc9d11443fd9 py3k +56954 7f949c17cc367bbcb34c5525f740909bed4fec8d py3k-buffer +56955 0fcc18aba385de4c9601db83d8f0f07bbaf0af08 py3k +56957 d020b9b1d98b6ad57a96096a60ef6776e1c7c6d7 py3k +56958 ae9cf48ed6f728fd7b03257a1f1848280caf8e4f py3k +56959 0d9953d7b82757cfc4932c9ec176aba5c12fe547 py3k +56960 15019eae39e827f4140a3a2eea3e03d5c9ef92c9 legacy-trunk +56961 1381046fe8945bd7c35803f443355c2ae97af710 py3k +56962 b90c220416351a5e6c5832ea70c041c6bc98b961 py3k +56971 eb2c0676c73f1b16df2a7875c58c1823e01a50da py3k +56973 d4ee54a884850bce6c862cfe23526e9669391fd6 py3k +56974 53b73c2711b6c682a4e12a9564268a9ae3562980 py3k +56975 54261634ad46d5e96f028d239843ef94cbe77489 py3k +56976 7a45e8b78d63ff44ee9d01accd9b90015b51f9f2 py3k +56978 a724279fc931a5f1a0fee6015ca56d0061f5497b py3k +56982 fb069eafaf89f531b2ca1f69ee1e17bf1974abe0 py3k +56983 4bce94d9ec31e4538c306ffe4c1789ce2d9bf5eb py3k +56984 6af6bb4824d5be61c0cf07cff77012d27bcbacce py3k +56985 47aaf3f4a038ce94ab84fb729db47e8247f6e255 py3k +56986 0ed3d182920b8f8d64bdf348a2b72730a333f4b2 py3k +56987 cf9b3b487fda1f65bd40a4631bc915ce5e6b2db0 py3k +56988 377b48381a49c0334ca2a57041ac429d26cb942e py3k +56989 5aeb261de0bdacc8f7b9ea6d45f5ea375a56ffeb py3k +56990 1e4936964776f57ff60921debcdaff707bc5d747 alex-py3k +56991 bbcef6de4674056db6aecc255bc6d6d5cbc20f56 alex-py3k +56995 d68a71c965ec1505b71f5e135cb9e80a2652ded2 py3k-buffer +56999 bfe202bffdf42fb444fe043fd3c0df1677e96ad7 legacy-trunk +57000 bdc40293d75efb8eb0f1fe34970b8e6c3445207e legacy-trunk +57004 9ccf9d67bb348c95c01d0e57792bc1791cd23ea8 py3k-buffer +57005 d3371fd4910245ec2a8a478ca09efbd1c2829fc8 legacy-trunk +57006 229d6345a73a1124530777dfe26f897cf3ae0d11 py3k-buffer +57007 67937fee75af6a270881a6d3e134ae7b1891cae6 legacy-trunk +57009 b623777f22b0da403c17b99ea9abffc90eb2e1e3 py3k +57010 3c1a20365a05bc1a04b1bddcacb357b0b750a9d7 py3k +57017 219fe39ede99f7e42318d4fb6983e865ffbebbe6 legacy-trunk +57019 274f3ae4dcc7803407585c36628ca5f2cdda0ab7 alex-py3k +57020 b7bd4a2689c16ce5d113c62b62db0a29d8ba6786 py3k +57021 86faf2113d36f58da7b205cba0619919ea7de24a decimal-branch +57024 a528f7f8f97a29c04f2dd3ce9d16e4f8948c2a7a py3k +57025 1b91faa0de2d1e36e8e1dabde8297aa93a74cc3f py3k +57026 9b02128521e2704aeed0b3b674b1cffec3e2daaf py3k +57027 30c0d59db0c648527fcdfc898d737a366cc6df16 legacy-trunk +57028 5391b5f8cd7a0e36af5a86afb8945ffbe31948dc py3k +57032 13b23addef41d820619637175852a3236c4ac117 decimal-branch +57038 3beef16d816713c1d7933f29acde9b4cc6b48319 decimal-branch +57039 7c66f1119e554e02093764d7f4b631c2699e7ae4 decimal-branch +57040 4ebea6afdc8711028c61cc91191903977f31ebdc alex-py3k +57041 ed989dd995d244212bc6465d826db89e4909284f alex-py3k +57042 ac5ce7c43ee759de495670816f1bba7ea0c4527e py3k +57043 f6af0b2598ca12c1dc534f638afee60d430a6ea9 py3k +57045 980308fbda29f9c890646b139b2344a8aa092695 py3k +57049 20477cbfd996780854a96d070ec3b562386bca0b py3k +57054 f68b6bf463661e2bde22dac0ae055e9616cb3ca7 py3k +57056 f828a95a9da6ba908c9ba0c2663dd22a3ba8d4c9 decimal-branch +57060 4620661e06afaf45193858603c4c1aef806cb61a legacy-trunk +57061 17be8fbec158c45b3720e51114e73f250e9edd30 py3k +57063 24497019c4073564d649ae1b2bdfcfd573a1b314 legacy-trunk +57064 717ffb16b5d1254f2793e35c64acdf0999424034 py3k +57065 c62f6669ae22b87795ba36494751631401aa5afc legacy-trunk +57066 9e1529bf044228b7f7b8a16c537db917856480ed py3k +57067 7261a91be0036830835f7e4acc2a976a8e9237ef decimal-branch +57068 b1abf846ce8152c3803031269a6da5a5ca7f4e25 legacy-trunk +57069 a3e76431705b263c8664b151bec05370184227dc legacy-trunk +57070 eab75ae3212bdb2d4cbf88efbebf98e43c954859 legacy-trunk +57071 3cc2cc795765fa984cadd83f743d7eab4d0b6f9c legacy-trunk +57073 d3362c4952960b4c23f0eec652b32abf89ebe710 legacy-trunk +57074 7926a8ca929042ea79178a7786278a6ce8119d35 legacy-trunk +57076 121213bbf358f86a91ddd17a9c9b7beea1ea71dd legacy-trunk +57082 4a487191fc54c0a1709ee0dc722894d7b476ef87 py3k-buffer +57083 66a58c1c283b3e59e765e98ae9c7a98073524251 legacy-trunk +57084 bbb4f4663cd3212c8d100c1adabab481b69b31f2 py3k +57085 7a562a00973ed4d3528d8274e1ae9b57a6164a69 legacy-trunk +57086 ced27b8f089ba5b0763d936b051393a8ae1f576a py3k +57087 cb8c1dd7ee32b027a6ec37c988521ed81b78ca5a py3k +57092 603dc53c471620e959a896bad7cc733f0e068a86 legacy-trunk +57093 135b3cd5e7232eeff2191fe0e45ea50779873a9e release24-maint +57094 d264107c7da6f6a1bd6345c94f055fd15be4b484 release24-maint +57095 a1768bbd76819edb4987e198d66950c4ac167950 release25-maint +57096 d97fd44777b2c12c88fe60c598132edeade96c58 legacy-trunk +57097 4d2aa4bfb2d6014be61a243e686e26cd45e86de3 py3k +57098 af180d546ec22028e3e14f31a6223f21b20284ea py3k +57099 8dbc981f040b8c4d6f5758088c6c56b8371d3d82 py3k +57100 124bd282493d556d33aaa5c91f8d540609571430 alex-py3k +57101 d3a89d9d2f5e06af17c5d9094a9979ddf7c9b62c alex-py3k +57102 45183d0b20a797d81fa3d4a2f2c9b91455841bcb py3k +57104 89a3cba1cd5242307f463d0fde724b21ed639af3 alex-py3k +57105 f1a2d51f1cab284f1678ffc752c0f4f751e13a37 py3k +57106 18104dba85e3373e8140bcd72024fb95adb517eb alex-py3k +57109 ecb7b2dd3af5803e8c0c338100e8132a9940294f alex-py3k +57110 34124613bc4ddabfa711209adbb3f2f3506b63b8 alex-py3k +57111 46f480e1166c84a7bfee3b13f93cda269d9fb37a py3k +57112 0debf9455cdc1775848d78904729a2ed33921d49 py3k +57113 a6c48925de53b0860daf878b53b401217ae0648a py3k +57114 20aec9f34598d353911d5d65c7f76b47a91955e1 py3k +57115 a2859ae89da91a1beb8ac77a606b3ea50ce23c7f py3k +57116 48a31b0bf5018b360f1c8f912575dc8ca8900527 py3k +57120 b7a5bc69d2ee5bb94371f9ff6f485e8d386cafdf py3k +57123 7b391a4ef89ce2d13c29d121296e53199a85f28f legacy-trunk +57124 12dd6377ff85bed79af1aa37475471f36fd3ad70 legacy-trunk +57125 281b518e4bcc28ca43e7ed64f08b8551e4296c9e py3k +57126 ff5adb3374adcdecc5575191668c288816c7fcdc py3k +57127 2056d8353a689b514fac021a4598645e835fa510 legacy-trunk +57128 2606aeaa86d4065d4b5ecd867c3dd0f2ba8d2026 py3k +57129 fcf6dc51af5431f42405eb1c003372d5e9409af3 py3k +57131 4c5ecc2ccabdd52c5ef39f47f34082bf90e83ebb legacy-trunk +57132 9fc21c8babb96c763dd914ce0bd9b2bcddae7c38 py3k +57133 6f492280341166a2a47acb303240fa7c03233ead legacy-trunk +57136 8610a1ca650b342aef801a43198e60d5c0cbab06 legacy-trunk +57142 a5e984eda45a20ce700388a5327532f672f86836 py3k +57143 e39449095cc5ab6af616ae091daad2748ebbdbd3 py3k +57144 cc7b5bc297c4ed52a7520ce7944bc49d2440b76e py3k +57145 a8ca14cec11cd68c6010d24bb6f04fbc31245f4e py3k +57146 c916731321c0b01e8399bd9632b35c660f0f42f7 legacy-trunk +57147 f2f0e95a797bc77fe2b0396cf6a742996665c75f legacy-trunk +57148 56d8c871dc86b39dbdeeec952f9685e0613e342e legacy-trunk +57150 9c4f5b1d6b9db5fadd28f1e716e94e56a053b0f3 legacy-trunk +57151 986776456791365e07b325fcb28eac5b806ada4e py3k +57152 74446509f0f276f02a65c00186def0a843e2d1e6 py3k +57153 92515b649b9227e144762765d67059499ff18e45 py3k +57154 1b4c95974a7da72df879c7da3258651ded9d4fc9 py3k-buffer +57155 1721ff5e2864d5c07b2113a1bc587882be5c5d7d legacy-trunk +57156 6876ae917fb1bac71bc29601b6eb80b468502e98 legacy-trunk +57157 ad06327e1f39a73ccdc939be0089afabade72a03 py3k-buffer +57158 bc31dfcf7dfa0d414c4d5a4fdd750fbbf22043de legacy-trunk +57159 37d70854d2552ce7fa9551128b0ace36a9a58e1c py3k-buffer +57160 38dfedf1d2aa8a56bf27e89ae361dd7b084d2656 legacy-trunk +57161 b80541251e0ed1efe392bb8bf2cdd96233ea23b3 alex-py3k +57162 d88592dd3a61092ac51e5843d0c2c141c0804e64 alex-py3k +57163 c59f9942682bb1dcece729c136e34c9cf3a2e42b alex-py3k +57165 dffbfe607774f073ffc89c7e86ccc76336a150e8 py3k +57169 e0cc833fdd3ebde97240be42026f046108f88cc6 py3k +57170 a54d866dc7b4efd2eb7a77908d4cc8f6ae310813 py3k +57171 af12a46df737ad16a6bc934ace191b6e3aacb9d5 py3k +57175 a931c6015b917a7fc67b03e2432b08742a550bf9 legacy-trunk +57178 69750b098ea247ed937646b73a7e2bfe71ed719c py3k-buffer +57179 06950bd04e69692c28d4f31936233617f4d43492 py3k-buffer +57180 ad4788df504e09641e395631b82a5ea898ed52a0 py3k-buffer +57181 85c22b4d44559b3c5f4269874eca6d73c75b8c56 py3k +57182 b3ca7f5b537c5d72bfa0f9fcf631cd93135d6974 legacy-trunk +57186 81b45c0da2c8b8a65b313f21271e3f25460d2729 py3k +57187 76e04973b15dfd0cf8206afdfa8c1003b312aa48 py3k +57189 ed97a9d1c34734412a244d274c9c05a757da78d5 alex-py3k +57190 0bc9cf1cf9591898295dbd6a0d52d7d3c5fcd61f alex-py3k +57191 8dce6e2870e8093e563fbf510c87ba5b8c1089a5 alex-py3k +57192 f78bf584279e6dd73772c5447ddfec6356363969 alex-py3k +57193 2c51be9904de1cce4682b702e9e5b380f45413f5 py3k +57194 7e5eff87d664a009f983e0afff58957d41993c67 py3k +57198 fca354160458518dc97822b657beb8f0f31aeb17 py3k +57199 6b530e029b3c3d83fb75faadd7f70c104dd2156a legacy-trunk +57200 95b37cae47c4f7ec1663398b4c527d223a9a6954 alex-py3k +57201 739d3105097fe022eb34a61493196d0d29573e4a alex-py3k +57202 692f57a5dc76a19a3f96bb187e394cdb8b6fe1d8 py3k +57203 d03eb774576a3e6e49192f38a39f690baaf97c97 alex-py3k +57211 7054615f37fe603a66c4f6f0082d347dffed6b4e legacy-trunk +57212 cd4591b754e011d36a8a259b7aaeecd8f3fcc93e py3k +57214 585d8bece8267d059986fcf7b0abb25d23efed3f py3k +57215 9a2f37941b2b05cb54101a5fc0792d71a5d8255c alex-py3k +57216 0f50e091a36fec6b7f564de20314c409d6d20b53 legacy-trunk +57217 15047b2acd3d554092983b9bde2fbe2187d77394 alex-py3k +57218 04993d96e7381630cb90fecddc4bf081842c63ca alex-py3k +57219 c23dcd94dcce01b604e2ad9c3ef326101a928b5f alex-py3k +57220 3645f0b94908bbadba73653b76390c1259fef3ae alex-py3k +57221 af6a7190cabcb3acf9c31b72ff7e8e01ab6b6302 py3k +57222 e71c3223810f245be0dd53ee6dd7a322c9dda81d py3k +57223 2f4679301132e85e48b6ee5d857294d48ffe7de4 py3k +57224 5aba96464b8797ea1203ef5887ae5c043f35783d py3k +57225 5c08472cfc345c8f6b50f83d22a289f0c692f254 alex-py3k +57226 9542e2e6ef02b2f8a7c73cf7d78571c4b3fa0d44 alex-py3k +57227 43b354a8f773cf527b2472c413947e97e9a48fbd legacy-trunk +57228 d0f3d29b708d308ba0e6432ac0e60abe83b384f1 alex-py3k +57229 ddff521ac7f1a911605583b5766c0f747b82ade2 legacy-trunk +57230 8d7fa8a5a7e38fe5b62c20cd537e5f991030d683 legacy-trunk +57232 2b4fee1d4861ac3cb81f8f3078814fadd64b897d alex-py3k +57237 4474ff10bb0a22b95abeec8ed54cbeef4e50d48b py3k +57244 ab7a6e74bbf23814699ecf43348cd4a036a57896 release25-maint +57245 4f11255958be9f24769c5d65b381b3bcba2762e1 alex-py3k +57251 c040dbb69df71c910b27142372a7641b5867ea50 alex-py3k +57253 ee9ebbf5f3dc8b02d25b9b47f474f09e6db6bc8b legacy-trunk +57254 62eee79de923ac7d4c116e4e9c35376c0f1e613d legacy-trunk +57255 1efe9b10c4a6f32aba6c54edce608c2b966dd558 legacy-trunk +57256 facdd74a0bdd1b74d3320c8220fb95ef68a7c241 legacy-trunk +57258 5bf68fc73923a96987b720fb4251d503f46ee718 py3k +57259 f3181e9fde4d7a0e5b4663e332b583e5ee50d391 legacy-trunk +57260 de6f30c627305437072d2a925de4dafc03b69641 alex-py3k +57261 d9e37d26f78e959235c83e2688bef17e3ac3a133 alex-py3k +57262 6d252838d2306397d1b07adc0e8912355a60c3a9 alex-py3k +57263 b93792ced9e80f166bad1d8ef02b67e02d24adce alex-py3k +57264 aecff9e0eeae4d9f8470367159f95ac0ab4b2243 alex-py3k +57265 6054d7d2349f046246a1f54141394fe214e6c199 alex-py3k +57266 2081116125cea9f5682dc0fec4b6f555f22b9a7f py3k +57269 e7696fce337610ba3de1a949a3fc327e264e6e09 py3k +57273 a03f378c3bf7bf2c81ce5d6a8930a556e418b747 alex-py3k +57275 c947a04768e45a2311dc0daa1d26146525ec9d6a py3k +57276 e31b387e6d775c105ab0dde901b3c9e48684e610 py3k +57277 0081dbacb7aa6122cc3e3568de60dbb1b6d533f6 py3k +57278 d800a9cdab7646413880d626f1d4f430970bc05e py3k +57279 3b4e39e83193212c3e5663a17d3908869c10acc0 legacy-trunk +57280 84c5c0524d3cef7dcd8261fb9cbdab32538c44f2 legacy-trunk +57281 2673cded88554510c00fbd153e97d7cf2b6a4ed8 py3k +57282 782370c935758e64334c4b3e209e1d080534b411 py3k +57283 8bad8722f0e6428d2ab7a09ce1c4a77964c12154 py3k +57284 092f02cf018f9d93790030228c428e6d2dec7a84 legacy-trunk +57285 1bf17855e8e85f1f3762e1b125bac556fadf8c8c py3k +57286 8b6400f9716fee3dbf94b822eb0156c040e1a7ea legacy-trunk +57287 5a20ee80581958b015c293fc9313d7577c366904 py3k +57289 0b06069660c22bec2e7d748595b89e49607b3e25 py3k +57290 9e81b22689d2d17dc3d215a4814bb68c67e26db0 py3k +57292 688cd4398f44685606a3426282fb81ab4b3fe616 py3k +57293 5098c68790916f4dc27ccb209613264ddb8a71eb py3k +57294 58917514e423ecf21f1ad6db7c622c7b34160e77 py3k +57296 aad17b1ab0c92db3ba81fbe7045fdeb353bfb18a py3k +57298 2ec16b6b4d044236b5898a47f83790450dfa2eb3 py3k +57299 e4ade16a694ff546e0a53ea58872e6ab3f74be1b py3k +57300 26b29f7b8ffd8ef9faac3a808f8513fbb27e70a9 py3k +57301 199504fb91c580e6c6afadf3ddc39fff5da4e6ab legacy-trunk +57302 7fe2848fd41d746cb89484f00b16b969d071e968 py3k +57303 ae83efb73506d257ec313aa700fe044835754442 py3k +57304 eae10d9c9c4eedb519812186b743ddb9ef51f2dd py3k +57305 506b917d2363a870fc601651ec789a09c0b56815 py3k +57308 3284307a73519a9d5bf45723b22835ed2f7462e8 py3k +57310 f3476e9bbe6ab3610603f39090262854dc6480d0 py3k +57311 7f4d93e0295cac5b5fd0ebce79cb0556f32b6336 release25-maint +57312 fa9a40ef0780dd77fccac7d7b8f818b5f5db9204 py3k +57313 06de62f33c377d633a1bfc406cc825daadba5065 py3k +57314 a9a4cf91cb7e7b5cfeab15dabb30afed313e2fe9 py3k +57315 80bc68850a0860db1c7efdc17a115e0df679d838 py3k +57320 2480b864be0397a605a9681295263a74c46a3304 legacy-trunk +57322 de1bace81e6ed2a4e53b88a3b6ce89618bf4899d decimal-branch +57324 8e87d9d6e81275c124f5a7b1608d2b512ae0b821 legacy-trunk +57325 7a75cd28b125d3b6eb993ac62f0969186f288046 py3k +57326 b348550a2bfc688d6abe7a47d36a209a8ec96ae8 legacy-trunk +57327 bcbdc95dfba9aa543f0413ee39735a96f6b0a296 release25-maint +57328 9087337f3a3f8991dfe12f714d8e3aabfce0378a legacy-trunk +57329 a911cd9d19893be8f4df8948d39cbc07da70c937 py3k +57330 ddefbdbdbcb51ce0ab187a5255f33914dcdce148 release25-maint +57331 adb83f4ac4cbe5e25c0a2acefac5c621c12d557b legacy-trunk +57332 729fe99b40a572dec9efacaf16c3c45a6a9f3efc decimal-branch +57334 4edfc59b72b2b4f1dc9c3c8e8d04fce724cfd003 decimal-branch +57335 af8fc46d4b56178eff3620330045462261c78a2e decimal-branch +57337 71c68de3b1c574d8aaaa6c7b01cf4605877e6822 py3k +57339 f53f1a1ac01640f8b3c3bb807c1d7e1d6f040cbd decimal-branch +57341 a2cc018f3700dd419fe3ab4f63c47c09eb03837a py3k +57343 9080cc76da98f0e108f1ee9ac8ff4e1a44f14563 legacy-trunk +57345 e1cdd6ee910e7db23f6b7a38f870169e6f537bc0 legacy-trunk +57346 00f8b2482764cf6cfcb8e22cb427677815a8dbfe decimal-branch +57347 0318abcfaf36a6fd684fb810af17614ecebe40cc legacy-trunk +57348 9520579cc30bfdca9a77397ec83721dee96a013f legacy-trunk +57349 81886e05fd4016abc4ebc0ea81dae4207578394e legacy-trunk +57350 a1565404599e5ed86f6809dee88ec0664b709469 decimal-branch +57351 26500ba09f70c6205784bc8a1c20c41c0dbfa4ac legacy-trunk +57352 e2042ec330a4555229a0f1a24eebc28ef125a9f2 legacy-trunk +57353 9a347ba17cab0e8f8adb2e009a1d2e858a51bd3b legacy-trunk +57354 3ed7814cca366d09f7e1e6b54ec46dcb831af077 legacy-trunk +57355 77cf2808eea637511e616f05026a9568560b41ea legacy-trunk +57356 ce52cd71a8d9a27c10c5a909e131d876be30e4a0 py3k +57357 2073ea3005a7879eb597049d47e7ddf6bb63ce52 legacy-trunk +57358 7923bff19212b039c35a78163ed156b445f17f8a py3k +57359 077fe7860cc9b186855f543f1a26e445dd7a7c30 py3k +57361 1c98b445d847099c2652a757d43514f70d8251f0 py3k +57363 42b39cb536d9e4b59f4959f69fed029eeb80d7ef py3k +57364 0b62539acfb8ded67251c7548c66ac8c6db34bb8 py3k +57365 e744a20ed8a6adbf04632b7b262cae509e26535f py3k +57366 f94c68fcf79dc5262ce5c4a3a008ee76e418d2c6 py3k +57367 273ace359e55e6cbb56708a4bb36d85499200ccf py3k +57368 e3e06b389406a90a34e59d7474fa56ea1bdd6779 py3k +57369 567c923cb1c61d92e5b748b9429854c76b55a96a py3k +57372 83c8448c6de4115ad921ed0dc828e556039ed4a7 py3k +57373 66f73ce97b32d714a098979899b6ad6ece766f61 py3k +57374 b626b84b507045101e2c21bf200cecc2af4dbe9b py3k +57375 19da41fc117a03ad7869ece97b1f7e3482a23103 py3k +57377 b197c1c04ba158692124452d9f8b0e6d18c4032d py3k +57378 05fe027e2d8098284dd8978b329a999511313740 legacy-trunk +57379 3141515f6c45a28ecd1c62e7a76c39619c19765e release25-maint +57380 2b9b2140265040d01b65445101e9d4811409c968 py3k +57381 d3baab20962649e2ef4239ad477ebf4989bd330f release25-maint +57382 7323331876dd4398dc2e1cda1c5553d05a3f7dfa legacy-trunk +57389 8901a7ce6c0745b2ecc8253af6c7275d1e9eddd5 legacy-trunk +57390 3fba14ec9aaeb483ca9a10b4dcb56aac2462bb8e release25-maint +57391 2c422a4972f1c95606ddfe6fcef00d13fbc3688c legacy-trunk +57392 d7517c30679145aa0ccf86f16e6d812d09a7443a py3k +57393 c3b53e074ed11b3b8add2e6da8e7ebfc01c3b815 py3k +57394 942860f8cd97e9c583a8eb91fba8f43d51e6bbd3 release25-maint +57395 58f35df0f6f4886d489a7104c88674bf581e7754 legacy-trunk +57396 4b7036dc76d55921978d6d062c311f7bf8b1794b py3k +57397 e2578f3042b2d527564cb755e85dc6a3c0d286dc legacy-trunk +57398 8b1b327254c0d35199dfd21b0b38ffb187f91be9 legacy-trunk +57399 256a4d3c581f72d64ed334e4d4e23a1eb956d422 legacy-trunk +57400 f798c366270c0fbce36d03b148c74831bb3183e9 legacy-trunk +57401 8c56956971ade3ed6568972e7c1283784f76681c legacy-trunk +57402 3025e676e66918381393e354e31a6a640313bf4b legacy-trunk +57403 066d39fad408e1d1d579e2bf38e534a082423c0b legacy-trunk +57404 48d91f1558a009d95e5a636f39f6965c01a1056c legacy-trunk +57405 c6d6321dc7f942c18ff64886f1145439bda471b7 py3k +57406 721c3ea13d84a3c059a1393a9e2a3a4443112eed legacy-trunk +57407 6124b2ef651201619e40d67ab39565514c60f6c0 py3k +57408 a6e5b3868f3d82424230c4a72ca3f5df07f07caf legacy-trunk +57409 e42e7d03173b3143b75e5d03387e25707ab408cd legacy-trunk +57411 61fb597917d1cf976beab00e07b9eacea7293ca0 py3k +57412 84618b2064c16ac363e58925a42b7c10113c820d py3k +57414 6cf6b831ab36ce06e0c54ffb18b1735c2ad36789 decimal-branch +57415 cf2b37b90c66f54947c6bf1114be7d0099820201 legacy-trunk +57416 e1a36559d8b68978ad66c2803b546ebd97ccc730 py3k +57417 8e97711fadc1470072054160c3c0bb799ac581ae decimal-branch +57419 383620e62ee64c4e4a07cc2ba5200779bc17c782 py3k +57421 b0a71bffa0a1f7136f3ec870d0983681bcfa9c76 py3k +57422 d02610b0a9f3acdc5e62972278948e9d38332e65 py3k +57424 8e61727db529b5b168d73ea11608124a4b3809b0 py3k +57425 41da49c97a59ec6f827161da6fcb7e55eaf54c6a py3k +57426 01ee6311ba4694c2c57cd38ee12b8f4345ae0755 py3k +57427 0994958ffd4fd4d728c11f5fb52bfbbc9f992cd3 py3k +57428 69b8e29765565a7431ddb9b7865c2e94d8bf2af9 py3k +57432 3cd60f744f8e93b600d47983338d005543605428 py3k +57433 3cb5def1865da6580ee2bb8777cd2a588e160144 py3k +57434 78f7ed7d80649c114ae07607b079d34fec5a0ed3 py3k +57435 599514289226e1a4990aa8c6e5eacb0a02b6d35d py3k +57436 00e128b5272f55eaf67238d24c079847716a5367 py3k +57437 776b8bd68b301a066b503bfe9d24840563308275 py3k +57438 2c2e905894a380c656889a662d5221a02c46c3c2 py3k +57439 a99ec4befda8adff526eac040c7dd9fbde6a629e py3k +57440 74b993a8ad6fef731943659a19c10b8151047997 py3k +57441 3d5d09b451b66a2f85e4c72dc71a1fdbbadfb860 py3k +57442 f81d94c05a0ecda41de0d98ac4e79a26b9f9837c py3k +57443 872c7c3f0af35400efc506fb42f02ca03aad080f py3k +57444 5355337709e10950bc6e256f85c43c88214ab87e py3k +57446 fb58fb3bddc19b9dd69271e8597365580db3bbbb py3k +57455 1b420e6e00eb164a5fd0047ad30320950e3232fe legacy-trunk +57456 22bbafa6933bd9fcd00279e7850f31164fc9a6cd legacy-trunk +57457 bb288e04b8e58846c9c3b13af78c5699c7469b53 py3k +57458 302aeee32da83a49fc748ed1206a67d7245215be py3k +57459 bd93ac30c77952bf9d237671608eb8ca78cf7a81 py3k +57460 184f800fdbf6785fcdd465fd7ff5a0f2ad7850c3 py3k +57461 543f2ba97fab9d7d1e64fe163e6602b25ef9095a legacy-trunk +57462 78340ccea14be42e70f37320a12fc07f99b56c5f py3k +57463 6d13e18f706ae3969dfe9695c0a0985c61ba5cbe py3k +57464 08b6278aa1f409fcab0cbcccdf3f183959127fac legacy-trunk +57465 24105373973332463ad134daefbde3c4b8462171 legacy-trunk +57466 bb336a68a47f253446bd73789b6d0d128b281965 legacy-trunk +57467 4cd11e825644809e1b6618fee0b574a3094e3356 legacy-trunk +57468 cafe1f653db36b631d46673f32773f6000e84b97 py3k +57469 6a181abfc8a4070cf3f3140995256f02d3eb4ad8 py3k +57470 20e1cc74e8ca51f25886c9f4653e6992ff5ea044 py3k +57471 5a9b7c2f3589d9510538765f05f90175730703cf py3k +57472 78cf2bda88571882fc5ec0a5c1b87612f2e0e16c py3k +57473 effeea7cf8984851b5282588462b4b6d5d2bc7a6 legacy-trunk +57474 d8a63b6327412f8dcff409abaff1fba2f9354b0d py3k +57475 c31c207b8c86d5577c679035d76170a9daa175eb py3k +57477 0548df7810a0cb833c12ae5e842846b627fe5707 py3k +57480 3a689f88c8385e11d30e894a1aad8555cd80271b cpy_merge +57481 a9b3ce0665c3a35d32f91c530238bdb8c4f80dcc cpy_merge +57482 673cbc85d8c40bc20fe0147b191e8009eb4b202a legacy-trunk +57483 eb19f2faeea12b22d753463c9ebedc3b65c833c0 legacy-trunk +57484 34e6fa78b64328852a19295a3c0558bb434be2d1 legacy-trunk +57485 6e73591067181a33253916372829fc0ad911fb7a py3k +57486 3152df70517a6f12147a61c4797cedccebf8f1ab py3k +57487 b55e7c53253c0d11493c91e6957a2d6b07d7e982 py3k +57488 7ffaddd1de3050c4dfc547434ee433de9ea472e7 py3k +57489 ed1d35118ed8f0f418e64183cb69b0956fc63dd3 py3k +57490 bbc44326b53d699e0cc8b478cc2b7aec1bc77c32 py3k +57492 027c7d044cfd7cd8d43467f2882487bd12e42408 py3k +57493 6380f88e3deedb32d3aca96745d5f7bb31f31bb6 py3k +57494 fed4f72b04cb9d98269785132afd5630f3a7194b py3k +57495 1390c11e640b1a6ccdd486e770c0c88bca3793f9 py3k +57496 824b9d52e006bcac9be5ead272c0c7d9c83c47df py3k +57497 d5b52d56bebafbded46f6fd063e719fbd1b1c373 py3k +57498 f3b3ffd139549eaa1936ca5bf9949cf09f985d22 py3k +57499 ef56281f03b45d458b1effd195930d7e5dfd26d5 py3k +57500 1547de16fec951a6bc23cf9cff3ed8e444927382 py3k +57501 036598de4660d624f9dc98759ccb9c4496804433 py3k +57502 bf1a53cc6e651f7d50e63aa1b7ba9fda4d4452cd py3k +57503 78e00a0f6015e5a1b0743186a634eef20fe0e114 legacy-trunk +57504 ed1594a16bdb7cc3078844a23a947f8e90a2feb9 py3k +57505 84fa947ff696602ad9891fc9890dbf1fd2a75a45 py3k +57506 1b1f7ca3fd49305de2952d7adf2a70f478fb7df3 py3k +57508 a09728b89530232d02870299a35b6091aaa85102 alex-py3k +57509 3eb5ddadfbf78beb91073175d980986ca483acc3 py3k +57510 d6d493b617e3e51bcaa73bdd0e335fb3d3510441 legacy-trunk +57511 403ebd1458affb5dfafc8e6714ef7dffee147e04 alex-py3k +57512 6dedb33d2da3849baaf9d098e99f89f9e5301ded py3k +57513 bab75e4c647f6f41fd84ee697fcb0fefe5383bd2 legacy-trunk +57515 3895c129e4862237114da8106682811f14e02d80 py3k +57518 c2c76a0446fab268536baf51c13572893d55ebe4 legacy-trunk +57519 a13485a3b40783f4c86b3d882482b17272e16134 py3k +57522 ff3c0be71dc2b37c142197a206e4655d15f84713 legacy-trunk +57523 d8ad29c68763eab42a3642675419c5a11afec819 py3k +57524 85eaecf9d678341c63cc2f4ce542a80381bc282c legacy-trunk +57526 5fd65e25084355eb5ca3e2c3603f4c8a0d3bf0d6 py3k +57527 56bbd17670575f30a332aa5538647b7c74fdfa13 py3k +57528 a40dfb51df9154b09874405c2cf5dc0f2c364f4a py3k +57529 426adbff491dd56b281e9f435836aae174abaf71 py3k +57530 d9115a450f1c69c5b54ab8223401b9c041ec85d9 py3k +57531 80365dd455fa688994fddb980e1e9ee115c6d2e5 py3k +57532 4c78c048c3ba04dba45d0743c74dee39884b0311 py3k +57534 2519751532af76b67a4036fc4357dae2ca54cae3 py3k +57536 19dc2eeacbc11a37e69d63705eda4c01bba1f4b3 legacy-trunk +57537 8e12d56dd603eacafd43b9894407a407ffaecdc2 legacy-trunk +57538 bb62492b584eb6f556f2a3e2978c0ab4fb3e8c4e legacy-trunk +57539 e648485cf3afe26757326e397405cf06ad98e024 legacy-trunk +57540 d5fbb843b0a9dd029a6d974ebb88f6faccd66e52 py3k +57541 e946100bb9fd9cf3b3ebb6430efde8b5d27f2b53 py3k +57546 dd0670c601d9abab465b5a3daf09e99be8b1b76a py3k +57547 904697be68ccb5857370c1375ac59478e55e5fb6 release25-maint +57548 252a84280b732aea8ef48a180acd1f7695b57a67 py3k +57549 9b294846d20d0baf97acf01eb5cec7a385044ebd py3k +57552 2c02ba72714b944e6de054366d3ca3bf3744160c py3k +57554 6b4781dc81fffcccc9a42753deda3e4b5fabcf90 py3k +57555 594f89ec060779e2790126ee49e7edc50ec8c49f py3k +57556 7bf8f2339ec69bfc2df68961b791c7937594f899 py3k +57557 e2ffa0cd97b97bfc755cae2b545e82bb6f988d57 py3k +57558 0020bc784c769f8b0ebda033b46745535b560b7b py3k +57559 a49665f8d2f4d07232cc59caa2667e221a5ca0c1 py3k +57560 19196cce143130b213fe890ba31f08419c7f9cfc py3k +57561 c09c3264a900950c7ecf58bad4116d9b7ea22e1c legacy-trunk +57562 62874b34d95d99c72d3ba1484f02709da459b357 py3k +57563 fb326fd9d1842d3cd871afe81609c5d01e29ca66 py3k +57564 cd235027e64c37bf2e4e60ff015c4f6577dc3b39 py3k +57565 7ea8a6ccdc42dd14e61e44b076faee421f372458 py3k +57566 b97fa40553438dd64347daa240cf202bbd8913bb py3k +57567 0170418dadeabb3eec7fe24185033a854a9870ed py3k +57568 5805fe17cb2dc6041edabd33ffd4acc7dd7a8a39 legacy-trunk +57569 7a62c2469dea2e4e9c3f69465f392fe667ee02cc py3k +57570 24a05325678b13ae3d1ac1f5b4b9d086819c3d0b legacy-trunk +57572 cb28e14ee8080d528e01a943a62b19cd3479dc9d py3k +57573 044b6285815f18b231d1353a798e6cb8a8b1568b py3k +57574 79731040217b5f65ef5be4543ae15025f9c12836 legacy-trunk +57575 e20d5b64189c943ff0d1941da3960978d9d7476c legacy-trunk +57576 3f0f1c775d9d42fa180c3d5ba1d292917e00e2ee py3k +57577 9fb8331cec2cfe73de7534f57d75f9690a6911cd py3k +57578 8e01f26262cf9e4d00a8bb7d431edc673c791c0b py3k +57580 9220931e4741bf04f9675aaf48be0b422363712d py3k +57581 c72a3cc21ef73e132352c29f323c9e21a42b5704 py3k +57582 aecbf56787045c09683181d485953472fa4062f7 py3k +57583 8717b4f8e1e5ed8330441bbdb2559c017be6b01e py3k +57584 b110bac9df409023b74b20b6f64c5bb8b2c5335b py3k +57585 384f9d9c75a02ffe867a0142b12426a6bcbe919f py3k +57586 b4b14c4beb82cab87e3a365b53ac9d0bc397e531 py3k +57587 00cbb33cb8640f8fdd796833fece0cd8370dbdca py3k +57588 fd1fcba5e16b05632e0052c62c1c650bec0a6a75 py3k +57589 f3b0ac4e684f9ddca9458df0b5b34b74f306c3c4 py3k +57590 7be0e00b0366d9ddcac7ed838fa59760b455fd3b py3k +57592 11ec4097fafe7154a1d3bbf242bb45af5afa2cd2 py3k +57593 cbd50ece3b612c08a669d20cfe3d835a255b3973 py3k +57594 aee21e0c9a70f390603ddecb5fcf1ffea87a674b py3k +57595 aa3950f111d9f12a4ad0c0b374c154eb96935ee9 py3k +57596 b8465f02fcb1ee6fc246552ed002055491fc7e6d py3k +57601 fdef32bbbcb84079afc93bf76e30385062799e8c py3k +57602 49dce3da0e803cf3a2ec3966bb8f2c959e275e91 py3k +57603 e0b6b6287c6b23f7b3964f14862a5158c9f5c43e py3k +57604 bc98af972678d88eb738bb3daf9c45c677c43a95 py3k +57605 e836c12c54c2f4460f93f2b9257ae81b52fa97c2 py3k +57606 83c131dfdd84c18894ccc831ddb268ac8f885140 py3k +57607 1dfe685b8576bfea184a5de5ebf58472b4e1e165 py3k +57608 171b9f15c223a4bd9e88ed1a17b095d5aedc8428 py3k +57609 324320d946102f10b9b1f9cac794557a3b7084ca py3k +57610 72afaf9ab30ba79be541725a8009eb7ceeb1897e py3k +57611 8b06f51474458619f3aabd43a11e841b4cc620dd legacy-trunk +57612 68fe3509075928188124f647871af4ba20da12e2 legacy-trunk +57613 9a13e8fb1a3b6cc9c78d6496db8fce1004e2f87e py3k +57614 96da1b9dee8db2c19669739cb2d0c7042ef13cde legacy-trunk +57615 4ecbae07481f214a11dd53994712087edf43bbd2 py3k +57616 3bf2cad8f22a9ce101772eda7f59e0b021a1922d legacy-trunk +57617 66e36ce5a56c6f262aa210d104e310f2d432d1a4 release25-maint +57619 9620134010a5ad2e57f9ae1bd76fc3ce2b7a2f47 legacy-trunk +57620 d1789d4ff00c6ec66e0cf39ef3a4fbe78bd5e7ac legacy-trunk +57621 caad35e8213b8a7efd74f19b55b6251131cc53d5 alex-py3k +57622 1edc6e17ae185d420d72c672d181a571f836c4c9 legacy-trunk +57623 25a893d67c64184305969cd1607c5fec559aadd6 decimal-branch +57624 27f0289b68351ce8c42fbb2170e1aa1b078c246b py3k +57625 30511068d3d482e914e6d65543926b72834a8b5e py3k +57626 e6a9fcd1b44e8154fb25ad9ea7a84096b8fdd99c legacy-trunk +57627 533fb5321d6bc1d4c08ec0c0c363614767f21f61 release25-maint +57628 8bb1fe1a72a4a32b5e80bfe4e4a674cac1b67920 legacy-trunk +57629 89c4ff97fd893eca075acaca124559f111e687eb alex-py3k +57630 d69d80600cf17217665dd42430460c6aa4982cf3 alex-py3k +57631 fb2cf6e8cd8611539739c867923516fdcab94fac legacy-trunk +57632 dec2ec826874117ab0934199f64ac8b097d0ce48 py3k +57633 1a230cb77f05cbec6d550da767ffe8030d2afb79 legacy-trunk +57634 b92fb24c5d4b5061b629d8c15d03e9b58009bfda release25-maint +57635 b2df44b9c251348d7f18e84a8bfd5eab3e8a127a py3k +57636 a7951abb8534b3102b96057b8aac636ff10a0b72 py3k +57637 d1a17cd26a4b02cfef05cdd07534b31f4faed811 py3k +57638 37beae09fcb0fd5fea9b3dc78a1374fc935ef7ff py3k +57639 50b787cba8f1cd6d75a6f697aca855e3af65debe py3k +57640 713fba34d66b88b411dfe679de190711689cfac6 py3k +57641 0e510aff5e9ae1542b83d0ff3cb52da08339a395 py3k +57642 cb5ae020a060eba76b890ee29705b4487aa460d0 py3k +57643 9f74b699056a4656d77dc23e75c0d28b77883757 py3k +57644 05c4738f8a43c7330d729836121be998aecc84fb py3k +57645 1ce89f2578cf81dfbc6013761d0115a72a5455d5 py3k +57646 0e906510262d1a98e498b185d6910b898f8a8d18 py3k +57647 71cd5598b74d6d0b800a812b49e0be088e7bc6b9 py3k +57648 6b3e8aa54dd9d918799d41f7ab17cb5cebe39333 py3k +57649 542b9b111915ced640b596f02cecef60b089dc07 py3k +57650 df8ef9c8371a4550290849e2a547039d1bc8db7c legacy-trunk +57651 82602315eaeb9e710eee1150a2f9e9f47bacdfce legacy-trunk +57652 9df911d654afcbc4b295c8a3ef748d0be1e00c6e py3k +57653 0f82fc42fd681af92494b1c1d1ff8eef557f29e3 py3k +57654 7fde6edf2b920128265a8d5bdf1cbcc38c05519b py3k +57655 79191bdfa23b52c29aad68199895414a02120661 py3k +57656 3a56e73ae91957459a1339b4595830c58dc4ce77 py3k +57657 f4851dc0df04174576f1201d61b0eea5ac14c0f6 py3k +57658 7073f48147bdafc0b0b48f8e41e7b32996a686e0 py3k +57659 4bebb22817cfeedb3f250669cf5d4aa2bbf93d28 py3k +57660 0d28a520c9b18ea196c170b3a7d29b2201a49459 py3k +57661 172245925ae603d1612daeedba09416c1d56fcdd py3k +57662 a03532607d1ca7a83d15a0ce78f19c97a53b6bbb py3k +57663 33e87f970a22c0323952d8f89d1fa452f2a3e6e9 py3k +57664 ecda33051739d96e9aefda6a233b3ead6603461b py3k +57665 98854c7629c8e033f3f8c34592f58da063924afc py3k +57666 abea565304049965c8a8822df0943c807e9866e1 py3k +57667 250a9d07c2cc2b6f383335f2e27a90d8d685fe27 py3k +57668 4d6c1344340c2c72a0bf3420af861a588862b635 py3k +57669 b9226cad9dfdb08bdbc7b41d9e30c8b53095597c py3k +57670 dcd285c078135c59938580d3820d312745f3bb23 py3k +57671 dc0f0ffd425728e7207864193b6cf45365cff615 py3k +57672 96bde0882e5f4a4784806b5c72593f3010430ef5 py3k +57673 eafc8b23589d13a00850b813ee5e2bb644104925 py3k +57674 e142cd4b57101c5c234fd2963656eee9a5497b9d py3k +57675 cd80eb9897283f3583a6d2b766ec8e0ab10037e5 py3k +57676 aa57cee116313f6afe1195526f7293b03227c062 py3k +57677 b754c0908897ebb26392d41e833b8bda50190058 py3k +57678 ac8b389f0025d737b44cd4287907679d9f248b1b py3k +57679 5fde5d6964d7cd71945ef367e568b7530b71a959 py3k +57680 4771639fc0499639fcf971198f084e7de5160ab9 legacy-trunk +57681 07d67a9725a78e1b1676039ee8041275f1c19dfc py3k +57682 ab89e130d64a84fadf31d61999277979cf7d8055 py3k +57683 6e35c7c17604e6af28f0e27d96b5c53154b8b2bd py3k +57684 0dcd7f08739ac807274524ffd8b31d06a7c57b62 py3k +57685 88bb459fdbf57c72861f9000130bd60da0167b18 py3k +57686 9834301a2fd3e017872ff13fa9fc12b587e43884 py3k +57687 0cd401bf2aa7ddaa74bf01e32513ee02bcaae4e9 py3k +57688 950848117397d724d440ca1a9aa76dbb500e7cd4 py3k +57689 0104d799dd44542b258122cb014fdd5c2bfaae28 py3k +57690 165934bc4429610460742493f9a3b60fea9d8a47 py3k +57691 d5f3c2f416f2a88b3e4c668cc11702e89aa8012f py3k +57692 907a45df12953a58aca8b44de607b075f3bdaa61 py3k +57693 a34644a657f5a26ff6d52c654fed429e9f254c30 py3k +57695 3918a8a51bd197e8cfc531db4ad0605ef2c44774 py3k +57696 952bf6a44c277f7039ef8e0f4a630651462e3a91 py3k +57697 1321ba0b670f10102074e7e05764dc78bbe07dab py3k +57698 b96ca350891d1da2f2ef3b9d930a57bffc643f75 py3k +57699 a6d3930b561380aa6db3c18cbd265044ea95c5bc py3k +57700 9075712dee8fd486e0757b157c00f882c7da186c py3k +57701 8077ee49fadfdcd36b1e03fd339588b92e49266c py3k +57702 708033ed9515948d013eb96cec5d183c44382495 py3k +57703 cc0fe056babdf5a96f41a38e291a29fd68911a24 py3k +57704 ac2d5d346252a24474970eff542bfbd1729de7e4 py3k +57705 b5d9c195a0c53a97b25dd53338be27d6ed33c267 py3k +57706 e093ca559c23cebfee7653adfb87edc37d78d122 py3k +57707 8ccf6f4c7f125685704e7f54ab5d0508449ff338 py3k +57708 42754208a6544ca19364f447ccda8c94f3f9a454 py3k +57709 e82c80a0448d5b565c6fc35a06515c02877a949a py3k +57710 cc7e914a22d9cc740f6c299f838ddd4639ae0584 py3k +57711 6e1013b923e3c1c82ac05eb1c1b966d1c589fedf py3k +57713 ffa4233de866227ada0d274da4d454a9981abe96 py3k +57714 9624832f3156f36f777c1cdf7c810dc4dad95b1b legacy-trunk +57715 a11367317ca0fccfae94d219d26463b94eb981a3 py3k +57716 8b0b1146d90805de54b89d1fd6f1bd69a1acf9f8 legacy-trunk +57717 113220dace646bb310b753cba37de407de82a80e legacy-trunk +57718 39d9e5000e7cf4c2ca45b0d03da05ec581058dd2 py3k +57719 df53c576c531ece1d47bc051d94766763893c007 py3k +57720 b6e33b5eac40fae052e1ac070df9c73aa896d0ac py3k +57721 08f7a6b25c8f2bd4660572ed5a78ff5e7290d785 py3k +57722 6500c8bd7feab7050187f597528792f51c7bfd17 py3k +57723 3a7bdb0a59482ba0131aa58e63343812374a8e27 legacy-trunk +57724 56afdd6d6cf78e91a266c02acfb08f6254bedcd4 py3k +57725 227ccdd0f8db7af28bff3f7ca76590c71c9e2562 py3k +57726 973da2ebc2d0f37d0ad05789eb226df3809cf249 legacy-trunk +57727 6fcb873f396c6889dec59a7aa4a79081d7471720 legacy-trunk +57728 d83c2b21ac26ec2ecf42e8cc45c7a263bcd9cfdb py3k +57729 7ea6888562d1d3847033c1166c315e0c84f697be py3k +57730 3bf1b8b3408032d907caf9f54c6522b9fa204de6 legacy-trunk +57731 7dfed1cfe762c54e6445a0d1641feffd66b21059 py3k +57732 5b7aafadf2230194de4e57eeb244858bcd50c391 py3k +57733 0a38c129717a3155e76a9bc426cded0c38c0216f py3k +57734 d60367a1316f4390d77825282e3a4d6e0438c96b py3k +57735 783ea6821e0471a3577c8a94a9a7f9d85f605b74 py3k +57736 1a901b1c7cd3186152725a61cb17d3a54c5ee3d5 py3k +57738 e7a390a36ec8f73bc04811c8d4e2795067654169 py3k +57739 02d1b5e7bef568fca2baf530066ff9bf8bb71959 py3k +57742 093fd84fa77c45493da17c29385a7e13b6458f3d py3k +57743 6c203b7b1e0a1197cfd1a7673ef1eec63de61bf4 legacy-trunk +57744 6bbecc028bce266a0723c7977705e66ba7ea12e3 py3k +57745 a55324c9602d621fae3d111b55c7fe612b61df18 py3k +57747 beaf6630814884fce7387a7a618d6391d716efad legacy-trunk +57748 66a5c4ba938eacadf4455fe1b2e671e340c775b8 legacy-trunk +57749 c4a96de5e44e59f8b789619685fdd78bf52c9afb py3k +57750 ff918fcc57d2aa3931033da86d5e15056e5ff641 legacy-trunk +57751 23364496df31374c25111362dd6570e172cd6d02 py3k +57752 db9a176190d360d78951d2decfb0fa2b0b2de36d py3k +57753 504c15f05df3544a39f6e8331c2c73a35247aabc py3k +57754 0fd1b4e2f4ee58aeddddc7ca06319a24a34d85b4 release25-maint +57755 dcedd32f06de3711d0d51d4e429178dd31bec433 py3k +57756 3e3bc84122d7bf7cf4d1eebdcbe83a62951239ad py3k +57757 bf11ed40b1058db4a025d744473e0f7dde8ded07 py3k +57758 87a0fdcaa84a6449df2df180282f951be8b577fe py3k +57759 ae90420d26355e27181e914d72b706d3ee48c56b release25-maint +57760 68f8b239324377e2fbd510113023c14d1e9abc71 legacy-trunk +57761 afbf6fd7798079de26dc216f1fbaafbe1649e991 py3k +57762 20d8d11c9b21381f5c869a55a8fb2ebe19a4cd70 legacy-trunk +57763 cb250b0473fcb6f76992cc6b06f0b32fbadb6ff9 py3k +57764 5d314c3e98ede5685f046d00a8996466e4652ccd legacy-trunk +57765 8dfd18083540d90bea8f98e43c5c97bf1686ebe2 release25-maint +57766 1bcdea1dc8c750f7dc73d0aeeafd40b88df5df77 py3k +57767 2e3c02c625deac3705a3b7126f0c2b080847595a py3k +57768 8c89b8c48b6cb90fe1d58df1085a21a8e96691a9 py3k +57769 a6bd3dab3eb8c4ec4a0b6c965f92af0386c22bac legacy-trunk +57770 92e47d33884e47e89f3a6b1367805f384110009b py3k +57771 1d57fb7efb15b0dba4b6740c173560f895176159 legacy-trunk +57772 dd0688740d243db8639fc8b7dc808407a8197d2c py3k +57773 4a07a288f5c49af4e3ae8a1824bb7b2f041da1e1 py3k +57774 698906c2f469130abb09faede7dfa818cf4512cf py3k +57775 a9acc06da57ab444096c75e3a07caddbd0906f5c py3k +57776 54def18eb31fdfd16a5711d753635f68e6b25245 legacy-trunk +57778 4441c387650d9c863203583f8d9958a5d152d9ca py3k +57779 4e6b4ba60c3b28420ba4e2c5bf16fe238e124350 py3k +57780 3c4329431bbc4882bf9ee3c381f14309d7bf0c8c py3k +57781 32f6dd95d1ba7ca7f2b26201d00a27504e80dadf decimal-branch +57782 e91d2bf71fded87ac3d131cbc4b5a0a9b24f0f5d decimal-branch +57783 981ecc52670303d7d231ff7aa955def2718d5578 py3k +57784 d2e9dadedcc6d9ac8a27e53e30d76d3bbbb4fe23 decimal-branch +57788 dee4c78ea910c84bd18ab16d9693114bdd43e2b9 py3k +57789 691b5ccef0c811bbfb1d45967569564a7ea7707d decimal-branch +57790 dd6cf00c179494a7eccc7928ae231586bfb9bdfb py3k +57791 9fb0327b3110093c9a42353d2584a177ebc539ad py3k +57792 eed15ec6b75995bce5065eb55cf961dd45b7dfbf py3k +57793 a89d469e1ff77716914ce1a4244fa529a71ce68a py3k +57794 57e3f6f0a588c02f2612ee3099245a9228d5b8db py3k +57795 0135f0e676bd01b4113aaa46c3cedfde5a57dd52 decimal-branch +57796 eee5bdd37158784092e4c2e7f2f380963462b017 py3k +57797 cdb7b9f82cc456087f81c594a8046beca6618922 py3k +57798 7b0237cbd0ed1194640f8e0f81539407a5a6afec py3k +57799 90c715bc7d305da3d17373a67f954f7a7fe9971f py3k +57800 7ec04cb262d21e24de43be84dca4d202d80081b3 py3k +57801 8454a2bfae04456f0f450b9e0ae3320716f69201 py3k +57802 95d6fe2e8e0e91f1c936a3dbf309a8463a9ef269 py3k +57803 0cf7004641776d7237df4141b146d64f8fcaa1de py3k +57804 7ea1367ba27588b42bdece07c4e7fd6070f6b63d py3k +57805 88aaa380f0917c270074d0ab8e2e79b87e50967b py3k +57806 14ee670557cf000801550c176af440f1f50ae99c py3k +57807 fec2c0299a8cbad21b2def93fa861b879fe7f491 py3k +57808 8834e65683e7b41287d6d784fbbcb8b442ebc043 py3k +57809 3424803337a370d699cf216bfcbcdb139e2ca512 py3k +57810 85a6785799831418b6bfbb73781091edf6fea820 py3k +57811 727539865f0465ccb9855809818b66d7aab4916d py3k +57812 ea8b8e3d8c93287e1052eb94b6434802b4143ae4 py3k +57813 34491dc143e7cd846cb3d7d03e8caa5e1600edc0 py3k +57814 e14055e82db991eb75769adb50091efcfdadb486 py3k +57815 221ffadc1a4c269500896a16ea32b7d33b1adb86 py3k +57816 c92d426eee751b41dd1d18b59fa799f2c11d4c18 py3k +57817 47290caf7e8e83d187b14a5a7a4ad56098a1f7c7 py3k +57818 d15d9c6beda7a104a46eaee19b390c52e25a25fa py3k +57820 5fa5b2133febd8a4758dee4dda10b8508f04364c legacy-trunk +57822 bc18acf8b6182da198992de3c694493961301266 py3k +57823 43077c279d17c866e3d9e65a9244abe924c3c4dd py3k +57824 d67b94f49dfcccf03a588a31bb6105c37d1a4d3c py3k +57827 998d757f3fb0ae8b5217cccb32004d1e5332fd4d legacy-trunk +57828 958c4cc5993e1e6a104d17f8020c8f627b69f55a py3k +57829 a12a02b9f649dacc796a3471899ce4b47247f60b py3k +57830 1126e7e85f18045886a159c08d0c3ed5bceb096f py3k +57831 b5f06e57a24f4985bead226872693c21e3a6b13f py3k +57832 f7f944374438c03c37683fd62c73bfb1cc9a13d4 release25-maint +57833 711252402b2f5673a6f37aa905f75e26c6e2b2fe legacy-trunk +57834 77000f2641ee91697a2215cd36bc2cf075c9cafd py3k +57835 5c30f15a6b87997bb9354295d67ea975c9019e84 py3k +57836 2361aaeafcbcc859e6ce5d2144942d35b347b4cf py3k +57837 082cef3be29b339f3a55dab71bdbda6951f06bb1 py3k +57838 06dc4321a56a0b399e130727998b9b264c6bd406 py3k +57839 a7d5440353c35d439f8c3c082d25f7bbed9df99b py3k +57840 ffb100be0310da584f68f763d4020afafe0c9e81 py3k +57841 1bb63a32a6c8d91af966ea2c9359de5b5d5ae176 py3k +57842 42314d7d6083d4feaf3031b9b831a286016ca5aa py3k +57843 a6f3bc216c370bc68ae830f84c00c18c21f3fef0 py3k +57844 b5e0f7721014a6c4e19d4b12fe29e65b9889416d py3k +57844 cd3f783cd08a16781e236c0b9cb5717d1d995fa9 py3k +57846 335ef86a8c5cac98c8819522ebe12e0643e1461e py3k +57847 9ff1126f096c2a758279e3fe6abf61e5b4c30d89 py3k +57850 8c1c2d5bed3226f5d035ad7c2b633f1bb7511327 py3k +57851 1d0f4b3eefab3772c400362a677dbea1199bd9dc py3k +57852 20abdb916ce323e1953dbeacae90cc9afcd7495c py3k +57853 275f894dbf121c404960a3083f34b9dd5f509edf py3k +57854 9cfad9a5c83b380e2dce84ee4e7eb4e25e6c6721 legacy-trunk +57855 9af9c8a71bfe83d2fa88951d3b47a110ba4d4030 legacy-trunk +57856 47c880e48bf6b2e92ced4c798dc8d853aef04a76 legacy-trunk +57857 e9b6736c1632085b6d66d138276f436edcc53246 py3k +57858 66c751e81c90e6d44965a30a96fd574ffe722b1b py3k +57859 51afc1d565f832bfd1d3ed8f32bf8d65ea366206 legacy-trunk +57860 bd99feaff9958cb60b10afa5bd17004e47abfa93 release25-maint +57861 620dca675137a164d0d4a625f4a20f9d765a97a8 py3k +57862 ee1b3eb7a0136dcc126933b5d4e3ca722b92c376 py3k +57863 0a0b822657062282b38e73fc6b1165f387fd2615 py3k +57865 bed0f50ec70b7f9ef45ae68f6811f9ac9cbe13d8 legacy-trunk +57866 d842457e4b0e39fb2b132e14f22cdedca45fe406 py3k +57867 bf3c94213d5d1e2435937e2c85ef8a8d14885773 py3k +57868 583e41d1294b4a53a020f7bc7a01cd766cc42095 py3k +57869 da285d3b065ac2ad0ab097f4ed5b8276f66a82ce py3k +57870 808f32a0d99c2e02c4ccb738aefe3833b81fae6b py3k +57871 b7bfa780a8828ec665d208394d7f95448e63ec63 py3k +57872 f4d2ed50de859d91d9404c722fa35b32acbc95fd py3k +57873 c4f63bb4d38a2c43f665969f7ea7966891b4b40d py3k +57875 acace8eb0bd826d030c90b572e20491373d96b6d py3k +57876 9eba689ecf287dc773e3f95b955db12947ec04f1 legacy-trunk +57877 320c6bef8d30c29a969de4990fb74c21c5d86659 py3k +57878 caf0d7e3b29a5f6f8dc7bee150c16e88f51f8f74 legacy-trunk +57879 ad3d5acacf03de70bf538ce4c87b96ee74af4529 legacy-trunk +57880 9b1833fc5c7b207b2cc61045ece6ad66c484fc1f legacy-trunk +57881 ce3a071351fccd50da77ece9653a89c7ac208443 py3k +57882 14e9b87b753b279b372259bfb2879a557c17128e py3k +57886 386c22d93ab65b63b05cad8939400059f67987eb py3k +57887 d442984f290b9c25e0de287cd13e893f514d0f56 py3k +57888 3ac237bca5ee5379c35febf81a54ec4db4ed5db5 py3k +57889 d86672bde6406565adeec530e180e5f4ad637c5b legacy-trunk +57890 ea184513660b5d2816a7fa782d5d2c1b43fa661e py3k +57891 279b956a3a9635df1b641b8986d8919418fff8db py3k +57892 1478688f456587a50edf59918473d1548e235be8 legacy-trunk +57895 36f56a3ef36f80901c0650bb39883af526b7752b legacy-trunk +57896 b7516a346f0f39884314c3b60d114d0264d27f0d legacy-trunk +57903 1b0d15444ca5d426df8a101ca4b910a603fcffcd py3k +57904 ce0cb2d869199df8b72b5d8935f8f5cf2b7ae0bd legacy-trunk +57905 1b5b0546a7dd2d9cd5b1b28c4c6a0f9fe563c959 release25-maint +57906 463b341a9d631ec4df23848723f6f8d15a1ca2e8 py3k +57923 4902671dd67852789a0e61fd2740ffded1e529c4 py3k +57925 7c6e7d19ff53bc4ed8268661abbc61062c22e37a legacy-trunk +57926 b5f535cf135fc9dc420ec9134ff918a9219b6ce0 py3k +57927 b51ac2d2d538bda0f6f57dd1eea03c88ce701022 py3k +57928 564ae56bd2da61c8f245e3999a0fbc591748bd27 py3k +57929 f4fb74f638067f3d0c49137c3f64d3244144463d py3k +57931 dd0c653ba29f2308f262c68f6358f979f8432333 py3k +57932 578b17461f6b6b9aba17b03dc921854ffcc1b37e py3k +57933 11993bcb0ba3d1d9a46ba9393496a0339fbde381 py3k +57934 43597778ef2cbc51334da1b9b2f57dbd980ca188 decimal-branch +57935 7eb954351a4fd7dd477f0b506fc4ccf26ee9fe3e release25-maint +57936 c48cd6e06aca539d05290767604538bc0fca0f7b legacy-trunk +57938 a9fb65c8eacb381ee248c1553b93c50ef7bdebf4 py3k +57939 48ee639a75dd72fedad194ab43ee5806ad70d5fb py3k +57940 e253b204525069feec4fc3b21ba06642f6ff7b79 py3k +57941 3cbb4f9220f41925b108ffb7aaa324cd7a6a5e7a py3k +57947 a311ab2fc1a7005150a4bff451acd007c81ce3cd py3k +57948 3436daf45516ae78c8b22ff35050d7ab45e2799e py3k +57949 428d921804fa43cd8e61c4c418b8f3266e8814d6 py3k +57950 655071bf6c45c6d865b443d4a5c9d113562a1c2d py3k +57951 a1cc9b589e222ef299c15f763186059954f2a559 py3k +57952 bbd4d296f74ace8f28e2b694f4ad8fbf86214586 py3k +57953 978c42b538d1c9b4e9287c7e1c71ecb12b8d79ad py3k +57954 2052f54ced49660b289f4c29188fe8e42e764b25 legacy-trunk +57956 0294bb2e95de329bf59079d626b2bebf63ea63dd py3k +57957 38f3f9ef193d2aa4493c281cc4c1cb24373b5326 py3k +57958 47d92db7cd10222cd7fb126778be912b37773d77 legacy-trunk +57959 c9ac5b8e4a81695edfc1ac8e4208351829293238 py3k +57960 1a0c73580665ef6d415ba366c9b52c53ceb690eb legacy-trunk +57961 6a048ff30488878a2fd238d2d92e24e062ed05a6 legacy-trunk +57962 425127c1d113c4faaaf3ab3bef009e12b8794992 release25-maint +57963 8e70fd6a7dcb09523ef04ef4f1e565d965cd397e py3k +57966 081e362325da68e3b37713ce2540f88cc242d413 py3k +57968 34bc638ac7076ec15ba173fff5e5e9578629e001 py3k +57969 49d6fa98dc7817f5105c079eee44d56e7fdac381 py3k +57970 7904fbafab3de508654ff911cb039477e39a2a21 py3k +57971 3484350a4f69df37642264d2b2cb18dbbddf5a45 py3k +57972 80ffcc161b30c8f68b28998f5bf5c9bac98cdb56 legacy-trunk +57973 53b8fc079077f48beab1b8c2cfcc0f3593598fb4 legacy-trunk +57974 c6b1123e0e6ca4be1d0520f02620b194f04e61b7 py3k +57975 294e35452d25798528e4b4ba5662c9158c3be7c6 legacy-trunk +57976 e946073dee38b065d6ade7060c106324288cb71f py3k +57977 e6de9add7c075bc970fc5a2df42ab6f443fdfc1d release25-maint +57980 e2b4fc960830fc22be1f7a845739ddc04294e389 legacy-trunk +57982 79080c4889bc27e95d8cc9b21a76abdbe8f283e5 py3k +57983 cc44427545105e323a11732a85ea97b887dfe288 py3k +57984 d31047a1ce197684f2f55296c89715ee2bf202be release25-maint +57985 4531220e50ba8c14fb17aa0333bb96bf2e71194c legacy-trunk +57986 5fd0451e740609fc6a9fba970e57c591e4ab2bbe release25-maint +57987 7fb9cd91e64861d3de8935e6a3dd4688b2cc783e legacy-trunk +57988 71c3e5b69e14e71de3345d555037897388a34f3e py3k +57990 3c2a4f6accd56add439fe6ac5645d4dedb0bdc9b release25-maint +57991 58af6675019862dab449ab6459f8f5a89cbe9d97 legacy-trunk +57992 08e10554e4303807036a91849359859e0f37ba37 py3k +57993 91c99011d06944a6170183eabc8fdaf2d0468ca8 legacy-trunk +57995 72a96e6a7c2fbc5bb8de184adeeab0c601da3bc8 py3k +57997 885813ccbf454cc0d93f5966e04f215b07d6dc2a py3k +57998 a4bd8a4805a80247716f181bf8ef7a5eabb0c2f0 py3k +58004 0a31d1c45a892ba9d0dd3d531efd717c749f13ab legacy-trunk +58005 887e1feabdbde6ac9a16a502817068eb0e120e8f release25-maint +58006 fdc675cb5e8aec0378778ad944fa3960fdf7ee61 legacy-trunk +58007 be8f7d3cd7cc13b2f6df6d19ddf78cff750cc2fa py3k +58008 fcb02cb96ca201c172557311b7355038ec8a027e py3k +58011 b4a2f10b39d20f1222557b7181c0fc6155297084 py3k +58012 79dda568f425a390984ac29e2f140e3a60683ed7 py3k +58013 ac3fc2ae4abcff0de1d2207bbe0c77cee70f48f4 legacy-trunk +58016 c76aca4e100de1162f427fd71c16549c74ece646 py3k +58017 7c2f5c62f8ca0d93733f650278379749e05dc801 py3k +58018 edfbcf1ff73407510e6fd637d5026b9fac9764a7 bcannon-objcap +58019 c9c6165f7c0d1e04cc6b748d5c2c435858ce86a7 bcannon-objcap +58020 e7fd1fd91c53fab6da854d28de6c805439146fdb release25-maint +58021 2dba5ac8ce159f1e07ba2a43681a05e534fa1003 legacy-trunk +58022 ba08f7f36e8ed4c07f7434bc10eb79625c576419 legacy-trunk +58023 556569ab3f9dd85550d8f71631abc1a924f119e0 legacy-trunk +58024 16cb85fefc5d025e304e51c2d44bd5c528507079 release25-maint +58025 1bc4a8d57b312985f4f29cd557ed7e2047bc1f28 py3k +58026 7052593574bf47b443367759002fb503ae6207f2 py3k +58031 57eabb051cfdcacec8f77a8a59f11558906a33b7 legacy-trunk +58032 3bc3f12cae28f02b3572aa2be7fcb25025ef07e5 legacy-trunk +58033 80d2daec61cc8cac5aacd9dd0f56825e49b25477 py3k +58034 28716dd14bc5fa27142ca579ecae7b78f29ae699 legacy-trunk +58035 7dadd21fa87c12b029a956d6903ebf3aade4cc06 legacy-trunk +58036 f62857533cbeaa2b94aaabb8031b865da80d9fbc legacy-trunk +58037 4b2134e4730c22d5d17212e3a85c44ee70352406 legacy-trunk +58038 06f6682b2166e307c2aa1f2a7b198de64b8e8b91 py3k +58039 fc470bbe8d242b87b280e583621da8ba36dc1253 py3k +58040 1f9eee08ab35e957ff565ffa52bb026f52129b86 py3k +58041 755fa5187d1bc12e9d40b95309c36cc60c415774 py3k +58042 885fb17c5e3196825ffe476fabc93f86d62a3afa py3k +58043 fa55d42c8d9c8d2e57a67266fc7b89557809a2c0 legacy-trunk +58044 b8a8206c08492505f3dd835817d454179854a6fd release25-maint +58045 b367d6e422315a904be45d86f677b25ead0f0743 decimal-branch +58046 1f6227365c36dababaa1818a63c6af070e7af4c4 decimal-branch +58047 e85faa02191c47c950c1972b337e17f872e31ab0 py3k +58048 0881abab9373841e8d647f00aaaff0af90f9922f decimal-branch +58049 ffa0747a7cb7a206147083248fdb328095eddff6 legacy-trunk +58053 2ae6db0bc7ebcbbbc7312db6e03aa0f5576425d7 py3k +58054 876b7ef4775d8fbb9e4a5da3f44f09a831879c6b py3k +58058 baeb66ce7b51ddb3672c4556c7304fbda34dd4cb py3k +58059 78f1c329c983713a41f31a85a40e8836fc4c1f23 py3k +58061 a09ea2cfe76a305b037129c1cd81495d1f6372e6 legacy-trunk +58062 75cd548632509a2eaca7f0c30f7387a6b5b3dec7 py3k +58063 76c1cc670c633efed9817aa03092bb60ee0f773c py3k +58064 a11b4885b445f2780cb8063502e65b24c1e1579e legacy-trunk +58067 e8aa724da90584d342bc873bfce50520fa84e27e legacy-trunk +58068 b355d2dba9b6e25a39a7e2f9f952b2ec7a57686d py3k +58069 807adc0306535151fc81f0361e9685f887f2faac py3k +58070 3d1496489f5851c60f5e5709e557ea756d87b729 py3k +58071 9176a53b4b6250eac8536d0cf0b18a1adf8e0c40 py3k +58072 f8a5fba35eb36af34a9b02ff38cb2929c8d3b990 py3k +58073 75b265c08c910be5a85bc443085a21338f446130 py3k +58074 9f7f3147031c2686da26cd40a1209ac076623f06 py3k +58075 875052c2b7b346fcdfb3c643fd0daf7a51dd3287 py3k +58076 b27d349162bdeeed16ddc36e0833cff5ec552dd9 py3k +58077 09287f2055ab5d8df164ec794cb83abbdc388018 py3k +58078 87d411ebbae0e2427a9aecabb57ddb828f4a766c py3k +58079 099ab823b84c4a1ea4ae10a75e3158bd6771e8b0 py3k +58080 fa02cd2cc33b8b39358bfe7c0536d5053f606d03 alex-py3k +58081 a7db9ebed28ad129e0d7b0d2a5f9d6996604d277 alex-py3k +58082 d9fc928db1faf5644b58f09d57d46564bf381963 alex-py3k +58083 a66897419a34efa978acaa1c3be3ad2cf8d1a60d alex-py3k +58084 5a51d1b6562995da1e2a19a81f9ceabecbeb8179 legacy-trunk +58085 d1552c150e914d7bcac20b6dab42ff27a8bfc0bc py3k +58086 60fb98612a9e7dacd62b45c461c9587649cf9d00 legacy-trunk +58087 cea6a80bffb29b0f83f28bf5d46c5b3f7220d6ca legacy-trunk +58088 34b50001dd2c357726b9d4d3f0593672489ba2f8 legacy-trunk +58089 862ae43cfb2b2e216ce80c6adc96e21dd9000b14 legacy-trunk +58090 78a7b99d9f42a0fc313bf4afab6182f34ab65920 legacy-trunk +58091 ced24ccc49dd6bb37e6c80ed4599e6f293ec7c47 legacy-trunk +58092 ac198fbd37004fca8194c55e0068e63764618e70 py3k +58093 282e2d0c29371c113413aa717fc0ac9501f71fd8 py3k +58094 5bffb6c79c0611240cc6ce39fba2611528fb27f9 py3k +58095 26ae210969c05e7bf54a14337a1924749afb673d py3k +58096 4a6c788226f5c2fd8111a03307e35cd67db48f72 legacy-trunk +58097 193020bf52dc356c9f68be4be5673e9b7c2e0668 legacy-trunk +58098 1dad58e00c3a50ad7f9673e071614bbd4f023b40 legacy-trunk +58099 33817da53fd743a94e96a76549fce8a6d81b4db5 legacy-trunk +58100 20a80b83a6c52696ffda3fac393904ed047d6d23 legacy-trunk +58101 b3a4a14d8ac3123195b90937177eca0b1b67acb3 legacy-trunk +58102 ebdf2c09c189908742fa944662d77344a0ea590a legacy-trunk +58103 bfe18b907d8735e51a97639c89e40b3994a96ddd legacy-trunk +58105 18d5aa5135ca3a533ddab0338fd43bfcf638db7f py3k +58106 3ff2498cf548a77172a9ccc49f91cde0ae04d486 legacy-trunk +58107 e82876a621b5f4382240eb72703ecaa878687301 py3k +58108 c5b6ae9440b5dff41d5e2ea1774e8709081354a2 legacy-trunk +58109 ead7c3c6be1b9a8d909abbb9077b709919e9a411 release25-maint +58110 274fe4bbe3e070d8c42627476156703e29fb2704 decimal-branch +58112 25ea4e66f9a00480c51b5347ad70f88180a04a55 legacy-trunk +58113 637bfb0c5dae85cfb704df1efa6740d4194ae4e8 py3k +58114 ca06c4a3091ee74b5ca22862ac93f3de94419d5a legacy-trunk +58115 5553f8b4dec0de080784cc027d28c24442a149e0 legacy-trunk +58116 b5795da7dd263a51512423d6daff0871a475b5aa release25-maint +58117 08588876e4a74cf5811564e5af6c44f025b72daa legacy-trunk +58118 20398b55266c96b5f1fb167fa37a7e907ae9c808 release25-maint +58119 840ff58d1e9efa48f03387f469743789a2518ef5 legacy-trunk +58120 756a7b7cdc4e5ad9960bfc14d504bccf9e378ea3 release25-maint +58121 9007154a7c491576f3a8ad8fb4ef6e239cca025e legacy-trunk +58122 06efe835804a2d2a6a54650d5b9b5c406b87892a legacy-trunk +58123 c38e353e8761e840046b647c676edcff5aa7a3c5 release25-maint +58124 1e3f57e73e04c3af36e6b6ed06c42eaa99878df9 py3k +58125 a0d2012ff4c15b5ecc9cc15b0b94be6374534797 legacy-trunk +58126 84dc86f211964b7374e11c7815cfae051e19e07a py3k +58127 5ab5a5c73668fdb9be5d2ced42b8728f86cd52a4 py3k +58131 942fa1c4a9d0ef01266d5f763aa84df5a5092582 py3k +58132 bf2d8b79493aa20172c2a40f6883535eccbad26b py3k +58133 7107f39c2f66c20e430ba7a55894b4da4b00a5c9 legacy-trunk +58134 39ebcf0a98b4d1347e77f6be289bc6d920034abd legacy-trunk +58135 e100371a3f62de53ae2f0a5c8255b0d61a7a5092 legacy-trunk +58136 949a35b27d2042dfbdc9e0d5034be0b2b46aef6e py3k +58137 b2dcd757a6a375ecfee2a65ef669cf0ac0d729ca decimal-branch +58138 527c44ef26ccd2e383b21ed3969c76176fd920cd decimal-branch +58139 c79a2f0a70342d44c2f877cb7edd0d8ef52eb405 legacy-trunk +58140 c67851130fc4c6e9acfc85da27cbe349fb8b2b9b decimal-branch +58141 f14fb7b03dca1eb7696561213b50fbd0860751b7 decimal-branch +58142 98ba5c2211986cc2ab9ff49f3067dd37fc482bbf decimal-branch +58143 63f3154c731d022cbb0989938ec667d1c6c8d371 legacy-trunk +58144 63c95763a43be4e91944daf19ea0f038e775cb65 release25-maint +58145 c8c7a947a64197b86efe9445dd3f887093eeb9f4 legacy-trunk +58147 2f8b3ea62a2e1eacab4ed90239874089b1294944 legacy-trunk +58148 df8d32d5e44410d66a12e243f86e169bfba0459b legacy-trunk +58149 62c3c104ca012039b69f7d9425b59f16a9c79a0d legacy-trunk +58150 eb98f223d6eaead45fb187537bbcc73c44c6ab3b legacy-trunk +58151 8b6dc66e0eb54ec7af6fea146b31eb355d3105ec release25-maint +58152 e0f5af14c9883ca4005fbcc013072068ede6c0a4 release25-maint +58153 e51edde2807f1ea11e1b73690aa7a47afc47ec70 py3k +58154 05d7c3d0b77a228aee4b81e3e620d2cdf85493c3 legacy-trunk +58155 fdff48f87f35e907578df0ae74a9f35d277d552a legacy-trunk +58158 13391f9d20ea499262fccf457ae691fdb96b560a release25-maint +58159 e0023395e539328b98190d177bbebbdef7e7d871 legacy-trunk +58160 73f2c9d16cf4d75c4cea4d7f662c1cb95e58811c legacy-trunk +58164 9041965a92f2ef66f05ed0518746b54e25aa1244 legacy-trunk +58173 1b66e2a5796f18c9475a6fc6c4800d82e1ec5a1c legacy-trunk +58175 2e7dd201ea1d2c7ea9e8628a7be51a475ceade35 legacy-trunk +58176 7630248b593cdfd203072072c70e5595c554e671 legacy-trunk +58177 ae982293c1ae089cb7f163d933f1c8ad6b9168d6 legacy-trunk +58178 e313795ea1742ddfae1c56bc6bf803178a2e5350 release25-maint +58179 9cc132c8461ec64571f4226777900684a499ab09 release25-maint +58180 e01dd2bf099a5ada0a572313c8315d377118ef46 legacy-trunk +58181 8890be9386b7ac47a60879dcbf5ee65d79a98ef3 legacy-trunk +58182 4e57c36f6d2e36622832e43ff98821869557726b py3k +58183 5d3428ff7ffa1823daf222510d9fc22f9cf0a577 legacy-trunk +58184 363203d75d69f3df873696be04b3405da80580aa release25-maint +58185 c5490a9eaae2f7efc3ec3b03405753d3e59695b0 legacy-trunk +58186 2fdff0b5beb6ab7c6f1c78c517c6e45b58ad7122 legacy-trunk +58187 4e543fae0ded89f8a210c874db9be7575bf9fa45 py3k +58188 5335f89df081bae487ad4218a6a060e9caeffe35 py3k-importlib +58189 e395a636ee4a7cee63ee78f91c1496cb721b3bef py3k-importlib +58190 641d4cac9756d8a7173cad97ced507ea91fc9c1a py3k-importlib +58191 c1bcb633935774a098fce5ac55ae70e22111204e py3k-importlib +58192 5975a7316c065322e89e5c1c1c7473c388c8fec8 legacy-trunk +58193 b9236a75a6e5aed4a997c0c17bcb2ca67f5e0920 legacy-trunk +58194 ef223546b4bd6de3388cdce6138a4a68c8525fd8 py3k +58195 6a0ea065a99a2f98e8120e41caa296b00ce67e71 py3k +58196 f192442f44d81d8a4c2f16719bebe63e34e33e2e py3k +58197 b29582bdc93cd6ccbaeaf146ddddc67281d977fc legacy-trunk +58198 7ddd40503e1a1d00269296a4e5c0ffcc23e57ca1 legacy-trunk +58199 75e6bfa2d4d220e7c1abe6bcecb25a98bd6a328b legacy-trunk +58200 3ed2f77163fc30f8f927bef4fcee9f70a1e073bb release25-maint +58201 f2ef8ae0bc18752955472e80fffd863fb800bd13 py3k +58202 1bac386c17cc69b99d3315b9faa150526c9ff617 py3k +58203 eb396de82c030fc70afbe1c476621b0e7e41a80d py3k +58204 8e13d3eacaccb4be7cbaf6eac77a31095beced36 legacy-trunk +58205 692493771ae322c5d6880658755652b1183c48b4 release25-maint +58206 d1fa820b2dca0d1ead775713dc3d029da4a57443 legacy-trunk +58207 c19ec9515a3367625ba463807afb20c5a9e482f8 legacy-trunk +58208 357f54015a2d3ba10cdf131c83436ca3b4e22f5c legacy-trunk +58209 44aa4ffdc1ac96f881b6273d2348b0f6c6739331 legacy-trunk +58210 81478465fef3b14738459fb7f85331e5edafcb45 legacy-trunk +58211 357cf07a23fe366bf6ab6debb5613b970488fd3b legacy-trunk +58213 b06b191b7cfa0b87aeefe8cfd432e3c75e52a37a py3k +58214 a5d37cdcd316173a135d3c7b8ec7322dfe16b52e py3k +58215 521bf87cebbd9e08afdcc17c4efe0385b908cece py3k-importlib +58216 ef17218361782a081874fd2992599614360e7f69 legacy-trunk +58217 409091b28c7e9d68346b42cd1885a4fe9b5c0886 legacy-trunk +58218 7d14a31888501dc1d901879356640ea85e32ef6f legacy-trunk +58219 e1c09fa6fc0f5d26fe32b299089b99d76e5375da legacy-trunk +58220 dc39dddea330045e94546631c91b67d7bfb7698e legacy-trunk +58221 46c467dee65938e73e9b43a2d7374a195f2f0d33 legacy-trunk +58222 0c8fec76111c7faec621ca89c4ee99608e424707 py3k +58223 da9519797c61058a19aa0ec29e48799751e6bbda py3k-importlib +58224 1837cae90e52e550fbac4e556471eaef21fc7496 py3k-importlib +58225 ec846ebab2efa0c575161c10daf4c8d7f089b87b legacy-trunk +58226 0ff41b163f5ba1f5d289992d6aa144cea5f5b6ce py3k +58227 f31d415554cdbfc5b549dd376e2afdda1906bced py3k +58228 f6cbab75928f68649c456c09d162eb97f0d5be43 py3k-importlib +58230 73d26cd8e0b564f10832b7befb5992ad30268422 py3k-importlib +58232 fc0336f447aeaf0b5ff3ed644eaba42f150ea328 legacy-trunk +58233 37ffbb7a1962930f72a5d4b0f95e20ef22da6cb5 py3k-importlib +58236 0476a2cc56587443cf46fdebcf885110611c88ff py3k +58238 cef2ed8292b6cfdbb854612985a2a6e957304530 py3k +58239 5f7338a4d1dddd26181f60adaaad496c701bf874 py3k +58240 55a66316c89ed2cb1614c27a5560fbd45bdf1466 py3k +58241 a4de3122157847f308dbd62b3a1b01f3514fc50a py3k +58242 b4e688fd6602a56901503e2646a97ed72ad98167 legacy-trunk +58243 98ff9b2ff757651d5d2a6fb3638e1055b0672c97 release25-maint +58244 b93ed043f2721b5bcfce0e002fa848f81ca36eee release25-maint +58245 e98e11d7768c65b68218272ddae3a3d5101eca42 legacy-trunk +58246 b70edb5a7688491c73f558515bc5a7227fff83cf py3k +58247 773e976bab3afb5149d24a3e1d14cf131cc5ef4e legacy-trunk +58249 0b614fd2dc2ae056b6e0901a697081f649c00ce2 legacy-trunk +58250 9463dda1916013af8dc75aa28d44ef6ccfd8019a legacy-trunk +58251 53f7c92b4024755f620d93712019207487ca8783 legacy-trunk +58253 2dc0e6e3ad200e6aaec3ca98fca407447a7867d9 py3k +58254 f81e39c4373da583dc45338c53a51b9b888ba81d py3k +58255 79b0db0356d31c9a64a5d88caa4ab53c439cf58e py3k +58256 8d7e93b47cabd53f73c3778d8a6f8f6848d57527 py3k +58260 1a79a45003f5db94268090ace63da0adc15b8870 py3k-importlib +58268 b90286ab8629af0241381c040b37e8417be9c155 legacy-trunk +58269 856f8ea922df512942dbfd43bd293a221afb9c23 legacy-trunk +58270 f5300598b11cad1311e308b2c0511c71bbab5507 legacy-trunk +58271 1944f79db8ad344fe5ed1ee95779d5ee85e9475c legacy-trunk +58272 13baada2a60171e422a487bca9d1f26784ae0059 legacy-trunk +58276 a7c48ab809ec4881c91bcb834d78e87f935cd5e4 py3k +58278 0ff46ef946b13dc523353226677b23c10fd78d55 py3k +58279 9bc985582cb285670c198c47aeb4cf07b74ff968 py3k +58281 7fcd9945d1bfe38477637dbea8228509db3dbd29 py3k +58282 e88f83c3b25e8c9e523aa2d50adb6ecaa9e8b20f py3k +58285 866717269ca382351344c8b89399d5d308f91d47 py3k-importlib +58287 880b0b22c15a9f71bcf2de682c02a0212d7c44f1 py3k-importlib +58288 381ed41003e767af2984cea57748a277563621dd legacy-trunk +58289 106a71c5147751bbfe056bb12794ee20fbb83dcc legacy-trunk +58293 a1ca4ea41e7e9fd5809792bc32461513811cb789 py3k +58294 9d6d9ac95ae1760d0103af8b4f7bf61b3001f58d legacy-trunk +58295 7943262e5fc43767d0495bdc5951d2dc02eaec98 legacy-trunk +58299 c9bf6e70308e7641acbb73da1acdc8d3757c76a5 legacy-trunk +58304 b12cf467b05cc2d3772f04269aa8359812c2275a legacy-trunk +58305 333b052e9da9a0a20cdcb3bf5f46f09237b4be7e legacy-trunk +58306 cd281c12836dc4f087c54c0674571873ee08359c legacy-trunk +58307 732ca27a678cfec1ef44e5cebd2b329614f7edd7 legacy-trunk +58308 1b1a5652fed8f776f8e41b70e3c8e47fbd4ba755 legacy-trunk +58309 9ae4e8a5348662deca02d6dfab59a8fd3b741a8f legacy-trunk +58310 176b6131b0baf4103dff41286cedb23c67e0f3b6 legacy-trunk +58311 65b3654c67f631c67e4360a0f6faf98ea5065aba legacy-trunk +58325 5b5249dd16b45079b18c0cf4eb077b6cc0062434 legacy-trunk +58326 73f49656420bca771572fa2214fa639b2e12588b legacy-trunk +58327 e8694ab53a5eca3f21fa63d80d1defc89fcada79 legacy-trunk +58328 c0abdd579eb26aff4871fcc52d52f75b8ebdb42b release25-maint +58329 f2c9f24a0f5a89d4d8de3ba22a39250a6387a112 legacy-trunk +58330 995677219a65582a8486dc27f46423a130b03ee6 legacy-trunk +58331 275115999b58121fd31d6ad98e813728259d5e2e release25-maint +58332 1bea6fafcc5057109653f1e5eb262da4e8797965 legacy-trunk +58333 a543006308bb9bd940eb5b18bb9fb949f79b95fd release25-maint +58334 e841197c1d17f55f0b27e9b393f39b0b655c59ed legacy-trunk +58338 17b07370a782901adf18268885c066b14a0c4a04 legacy-trunk +58343 68fc107ddb50b98afd136816e9b6a5b6033a6f4d legacy-trunk +58344 f7353595b7fa819f96eccec6331dad2309fc9b4c legacy-trunk +58345 acdac41f710972a922515e628a5e93cacd1a0d1b release25-maint +58346 ed499e348a119d277ddfe2189361779f84b30043 py3k +58347 ae2a99fc73da6d2beb1a2bb09d1e2da237859b78 py3k +58348 f36d0f7077fcbf5f9763e274386174b7402403d9 legacy-trunk +58349 ad366e316e3064f3b467ff3a3317b2fd37528bee release25-maint +58350 39f4c506cd718b0437f80fb001caf54e77919a27 release25-maint +58351 3cd1463c938d6f7c83280f796e3124f6889848d8 legacy-trunk +58352 074130a073b6682aed8e81edeabe342ed99254cd py3k +58353 23192b1b71e27554de6df30643dec1cff9ef81f2 py3k +58355 14addda833443375e291edc5aa671524b3042583 py3k-importlib +58356 f5c79f43bbf69586e2faacc06b9f085b9ab3c934 alex-py3k +58357 a3bad694c2839da3ef7df5e5558eefc778be3367 alex-py3k +58358 94e536c364493fc8ac62625c5da7a69c3baf2bc2 alex-py3k +58359 304d2cea137835b74d129531042cc1f9b57f5793 alex-py3k +58360 8c10aac37037925dccb7bbdfb4b714b61bfb3ffb py3k +58362 8ba5300cb4b3b5d6b38071c7561965dd45aee316 py3k +58363 767e0c310a6aafa7f09bcdd7b57bdec44bcc5491 py3k +58364 f6143c41171356501e46aecaa7daf04e97f85d8e alex-py3k +58365 f6061c71a4d236b6e8d53b8cc37f7ebd61902683 alex-py3k +58366 fab4089dab9f9f0d175ede9b9404c728dc363440 py3k +58367 de41e979aebeb898cb66a9a2de6a25ed51f5158c py3k +58368 045952ff08f743b23163529c7ee2a3cbd5901467 legacy-trunk +58369 9e6020bb23522b31c8e972d00a4c354592998f4d legacy-trunk +58370 4db5dab7f23589dac78443dab4ecb40e0ab7cf23 legacy-trunk +58371 ff4bbe6823fc9b930a2a9e1d199371683ffe0d15 legacy-trunk +58372 91904f3e7be1ba4e78e31197e5aa32cef25156cb legacy-trunk +58375 6614d42d7f0a335d9b1d41ea051cad39555ea0d3 py3k +58376 0ba38100cda9032515a77b8b19cc0fa7262331f2 legacy-trunk +58377 8bd910036c97f740b70b49c11a8c997bac9c8f88 alex-py3k +58378 5713b176ddb698487ee8db064a5e1351893e91aa py3k +58379 27af45249a803d15c601f772445aa8b1a8df9133 alex-py3k +58380 65987b38df2e358cd332cee2d84ef7203518f8de legacy-trunk +58381 965e7154177c695059381085612bce955f8a53c5 legacy-trunk +58382 ebf2a5cf13fbde1e45df0e26f087f5182ee5a9ac legacy-trunk +58383 98f6180b9b3330b101f4c1063621de6083fe0d8b py3k +58384 33021e403f3c659da33c7061ab4a66d27138b73b legacy-trunk +58385 9c3015fc5bf4599702da7acf0a93ef39a53c3664 legacy-trunk +58386 c48f9381ddf130f6747c2b4ff85ecfa01cab6cd2 legacy-trunk +58387 dc6e2adf8dd2a306e986b7f6ff353160fb226800 release25-maint +58388 a1b76757d62ee0fb061756b33f412af510c7d6c1 ../ctypes-branch +58389 24d111809480094b3713b09e4b771717245a4d32 ../ctypes-branch +58390 47c02791ec6b2c6bf160ccb7767b7d38cd41804a py3k +58392 4a72fc5dfb79b3d20a77f5acc10e32ceb425fe36 py3k +58393 c94da84765ee30252ab86f8a088033927e9b61a2 ctypes-branch +58394 fa93dd4e34bc230467b1900cbc69632fef891eb0 legacy-trunk +58395 bc25bafa33b1fc46f8d81a370e8a2be2f9877d18 py3k +58396 37d8270ac8d961b483b859f8a001d8814493a5fc legacy-trunk +58397 340e6fd5d75f0555528846c468df708c0935cad3 py3k +58398 415b1bacfed7af00cd35565c0e33d00f6063bcdb py3k +58399 8c5e60ddaa827b5f0173515a3b1118fdd1ddaf22 legacy-trunk +58400 8d40c5348ca9d93d02d880ab7681d41c62fe4d56 py3k +58401 da52b4c776a454fa1a0d90a5630a3bdc7512b246 legacy-trunk +58402 06ba42c2c0d0746a56d5f6c3fd1933615f2adf95 py3k +58403 e5d6893dbb36ef44e9028bb6fc335b61e3a1d39e legacy-trunk +58404 1d52e783842da1a80671081a9e837c959d01a8b4 legacy-trunk +58405 9f7de18431fe950d5391e5774eed1cd045810999 ctypes-branch +58406 ffec49d3d215471fbdfead7b11de6a2ccf8fbbc5 ctypes-branch +58407 4f9ecea8177cbed97b9a6c18f5212fad8bda0c86 py3k +58408 b4d8f71459e949bcd057253213acd4097a6dfe6a py3k +58409 4c189c7144b794b467b34aac8ce45e6d318f0732 py3k +58410 2f30bfb7c7385f38d0477dbd8e85cdfa459a0831 py3k +58411 b9d19d51de36975a5e7c45705d965560d4311c13 py3k +58412 6e60f65ff3647c9f1708c5b54af66ce167635902 py3k +58413 2b746f28b399a710697d8a310ac20caad6e92d8d py3k +58414 99371bd2ca8f87d9b5bbc4ce40eec5c8317b8765 py3k +58415 02710b89701e0837531715c64d9015288f7e9f66 legacy-trunk +58416 39c9b5612451a272738463a810ad0c256cc0e495 py3k-importlib +58417 39cb5d96ce77004e97274a41ef0906a6b2fbebe0 py3k-importlib +58418 8c5a433a9d90e7da351ec554132cf4761ce4883d py3k +58419 bf1014448c417d94856eb3c137dcc2c3cd49e4ba legacy-trunk +58420 b6378fa6e16490a72a4f6fd56fdcc4c0db70137a legacy-trunk +58421 ca9b08e7dc23da010b0f1d1a7effa24d5ad1488a legacy-trunk +58422 e49ae998080822e3471a9d4acab7b950f866a6d3 legacy-trunk +58423 16d4b904851fe0a1b1746246e7f236e667e4e61a legacy-trunk +58424 cda0b625275a61b1a6b1dce24a4e8c26faec2651 legacy-trunk +58425 9b6a473cfa228b2d72e64fd6c9bc0eb06313fa09 legacy-trunk +58426 a44e4cc33f5e03dcee59cd24c31cacdd5e9261fe release25-maint +58427 a262178c1c0af452cc719ff3f8ef25092ed3e2e8 release25-maint +58429 a3fd6e59ba836ecf4713808066c2e78c69857c79 py3k-importlib +58430 81f598a76f59fa34280e66a0496c108c85d758a1 legacy-trunk +58431 fc048b72bf3d08aba4684965bbd732ee479d9f97 release25-maint +58432 d0ba39de7ab7e50c810030af68db20db4df3129d release25-maint +58433 fb310b8620ece1d165c5760550a9acd26e25d0ed legacy-trunk +58434 9603221bba902ab032d0eb460c22c67f2000dbfb legacy-trunk +58435 104d2f29f886b8c92eb7553224ea5f51f32ebbf5 release25-maint +58438 6a97f7260cad0985f38f0de4b2be1cfdb76feb7f py3k +58439 833b0e781506dad0a29245cc3aa671bed1fdc385 py3k +58441 fb9d5306f4c72240bcfd4d243c423326ceca17e9 py3k +58442 993e24c724b8c7d32bcb93d15eacb18fe554414b py3k +58443 4ea945cbbb6d49d1e41351328cbe949ce8f0e059 py3k +58444 483cb41a5691bb556af5229d77dc5957dd2df603 release25-maint +58445 3586631d8d21c59367583d7f278a6aaa45877890 legacy-trunk +58446 9f0366260cfbb4873708ef1a05e24334d031fb12 py3k +58447 644e28ea9b22a460ffc0c572cb4673b39ba38f69 py3k +58448 8e72dacf7f3a527b125a689895aa07ecab861b0e py3k +58450 02a33dca4001a58fc9d5aef2780d46bff71cf866 legacy-trunk +58451 c3a25820f51235cd4be7d4261d9a5bace737f91d release25-maint +58452 9925ce1fd7be7dfb467984713023e1afa13f6482 py3k +58453 306d5395dfa2998099e4953d5a1f5d8cf67e9f9d legacy-trunk +58455 ac62eb267206e15d39944b663a77b609e98d602a py3k +58456 0015572d11bcf9863f1106268d21a2eabac78206 py3k +58457 9fbf733a0639bea77d9105bec1a87ddb97aec2ec py3k +58459 4e05c24e26f8a534b64b69fea1a34da3007e8ca3 legacy-trunk +58460 7e27d50c86721e61ffffe9704bd663ae8367b7cc legacy-trunk +58461 b4035d3665bb830220b1c35d57dffd56cbef62f7 py3k +58463 126d2fb735b5a264c06a5f81536a633123d20ae8 py3k +58464 5ad578ae9873e6174678083d3ea303373b227e10 py3k +58465 90294d80a3c5bcfde6a239904522152c2cb986ea py3k +58466 19319e70fc3edbb45b2d007161c1b3a1de094181 py3k +58468 a5a4b786bb215b6b0a8ba940b846c11e14cf4d67 legacy-trunk +58470 2195d1f179583af6f0c3ee85ff597ce6fbdedd67 py3k +58471 697400fce7c5c04b5b17de8ec70de7dc228c35ea legacy-trunk +58472 50599bbb0c6723992ce74247aff6fbe890988494 py3k +58481 16e237ece27d39d478154ec8ea0b05602144cded py3k-importlib +58485 c9e61d66ff6518281ec640d3e3370d6ddfac5c54 py3k-importlib +58486 6cb6397d221af2a8a373d7f6eb3a03c192932b3c py3k +58488 d71384cb56044da1991afeff3b7e76a16c47eb4c py3k-importlib +58491 e72ad4d256e840bb7d9845055073f0b3800c977c py3k +58493 697cc31a83f65e920d2f223ecdcddb92688ed27d py3k +58495 ace45b361e873e0e17d822096bba33465914a51b py3k +58500 4060047b3f1d3b20cf014872da111b41c6f39545 legacy-trunk +58506 046edaa1566a7b885d68b584aceccdc81c62c20a legacy-trunk +58507 7ca0bc0ad96035bccd051ab24b2447e932cf8541 legacy-trunk +58508 016da8e2f94b8cc383c0d94461617f15f92bc743 legacy-trunk +58509 c8ee260730503e991f21aaf4e00cfea1796b727c legacy-trunk +58522 6157e0d27eef61394afdd6c83ad4ed1c890f104d legacy-trunk +58530 da44334ebea2452cb2302b838eaf8ce0616e17dd legacy-trunk +58531 f1f701c224c1c0b9e4bdd69e4b5eb60021fb0b72 legacy-trunk +58532 27a4d224ea1b909aacb8acf8980a9c996eba79ab legacy-trunk +58533 b83346f3bfafda4c3f17192a31f7e116b3ffede1 legacy-trunk +58534 143acbbfafd7c706eccf879c99604a2826865ea1 legacy-trunk +58535 6db7bbe8f27ce67242e96f02b67a0ebb54aaec13 py3k +58536 d2165dc1b08dfc065196df4f8d0d276db2ab29f8 release25-maint +58537 cc15836b6808b998fbed94196f6790eb287a1c0a legacy-trunk +58538 e9af70638888dfd0fd09c1bf1e751838f38b7d3a legacy-trunk +58539 f2677843047004de6360342be6dd9b677f82b142 legacy-trunk +58540 44507c4dec2b5f284487ced30614815f83470bf5 py3k +58541 d37c0051406e66e483f952bac82a9c644eb3f094 release25-maint +58542 548d06e98f5645cf7064505425ef5049ad242c8b legacy-trunk +58543 bb5cb89efe18ae8c0e4554dbe7d31061fb60296e release25-maint +58544 96af41e50e56117cd6eac7e7e269973fc163f4b0 legacy-trunk +58545 bdd92425180f4bdf33bac2a420f2e75905da55a2 legacy-trunk +58546 2320cd4f68b58ba7feb126897113ca19ba2f8674 release25-maint +58548 8a0167416223205925df5c5460bb42e915366636 legacy-trunk +58550 80744c8d34d8b14cc52cf21940620fe1543f786d legacy-trunk +58551 dd03aa741f56889c512628f626f51f12ffbeca3d py3k +58552 b18f6092f6e0177ed27ed8ef6cf2368bd935e88f py3k +58553 a2bb76d11d66b313e4a958fde5028197cfc78149 py3k +58554 57f3f126f3f7012cb2cee142785e4c5734b5373a py3k +58555 7593436058dd5310142ff452c0e4bb9bffa34ed2 py3k +58556 f0bcc11ca965659d431c928c2a7beab78881fb25 py3k +58557 d378acdc30eed22ce8d68b5bf78fa5f3976d4bef py3k +58559 65fe195518cb2fd0bffa4819377572fbba3218f2 legacy-trunk +58561 cb94ebd9afa7a1acf6f955d4fffaae07ec00ff61 legacy-trunk +58562 a2140eb5fc6acef14e8ddc9797741af14a7757b0 legacy-trunk +58564 3cb678628af38e856cee3d36b806c83dd10be4c7 legacy-trunk +58567 252b9d22ca555c70c2b8f20c044bbd69d740e046 legacy-trunk +58568 d7279c321bb7cc8e24dc3ca5ffa50b79307add51 legacy-trunk +58569 201dd09499990ef129aa0ee5b48c66d5a8cb2267 legacy-trunk +58570 c4cc3c2489a0482950b981d1f17898c72dc8aa5a legacy-trunk +58571 88997f0821749ad0fe156c7151b20f37ad77065d legacy-trunk +58572 5e42117f9cbcc0105350b14b299347d0eb50494d legacy-trunk +58573 25296ec02b19c51fd2d1f46ee4c5760ab1f24e08 legacy-trunk +58574 5cba14a564fddfaed80016d7561ebd301d4e23b1 legacy-trunk +58575 8fe226931ee721ae3dca115ad4c87a6f26c7d6f8 py3k +58576 7c35a5931755fd65d00f809094c613b125a90a51 legacy-trunk +58577 1bf476239f3959e20bc0d0595d53733934262569 legacy-trunk +58578 a57635100dc3946b166d2ae7d80ceb58ad4fb6ef legacy-trunk +58579 48220d644c8e109a2c013a402f9e773fc1b94708 legacy-trunk +58580 faf5de69e9771e6766a0840af52310678aa92092 legacy-trunk +58581 c5c97d7ae90ce8f4f5e7e48e7e671a25fcf8b396 legacy-trunk +58582 4f662ba09f1fbe3861fcd5ae85c0c3526de1be33 legacy-trunk +58583 6df985744d9678fa8b08f29a9dc9f86a472a6989 legacy-trunk +58584 03056365a1b662caf2876c43ad3fe5e8be738b22 legacy-trunk +58587 0067a6ab4854e71657a5bb92b72ae2717f26a26d py3k +58588 902125b594cc899f88e7057979ee9d94505a555d legacy-trunk +58590 1782583f1158bf35903597f94bfe28dbeede2501 py3k +58592 a58f31937daf9cdcda7dc93efeb41a72eaff6cd1 py3k +58593 e82d9a88ed9e42852c5adef1d4c35ae7a78a0a37 py3k +58594 b6a29a0ea307d3939de784e09eb20b957ba8b9f2 legacy-trunk +58596 b10544827af70b35703c2a4ff3fb4393a3ba8776 py3k +58597 a32e7ec93394e1525deccfab21e969fb1c9c227e py3k +58598 04088abf4e4fd03e7885456fe38d17fc3f844b6c legacy-trunk +58599 53ee8943d1658daac3a80ff81971750288baf4fb release25-maint +58600 dc81bcfc351ae01ba37e3f3b677744087fa77c69 release25-maint +58601 eb908a19c05a24e0803066b865c7538c8b3da150 legacy-trunk +58602 95d8c913e8bf36112ec77ba636c711bb1dd1413d py3k +58603 99526c40147b145b4bc20a0179dabddbb6cabaa0 py3k +58607 cd5b383a397e6e212df6ffb5d326bdd2a2cacb26 py3k +58609 441d609d096b5df6603e14f748cba4796286249d legacy-trunk +58610 634c3d4048e7d7d70e651963b1c5d8aede81c9c9 py3k +58611 f9b7954d788d60cd04d524ef226f6fdada874b1b ctypes-branch +58612 da8230faf2aebbfa3180b488aac5389bb2f2ae63 py3k +58613 c9f28697e1995b9300d2066db55eabe74e3394b7 py3k +58614 79904e841df380c60dbac70f8986b4c1ba3e4f00 ctypes-branch +58615 34792b9e4b428deb14d6699afc1b7a4fd8454f37 ctypes-branch +58617 003d35215ef2ac6267efd1ca4c5ca5d71ff9d3ee py3k +58618 0ca1d29b83c2b6da9daae9d2b170b8da98defcfa legacy-trunk +58619 0c76e53c1d652e137883d19a75f51c7968dbd48e py3k +58620 a0983f55c9575cecffe0d04f956aeee41c32beb3 legacy-trunk +58621 a760c1a07d26f0a8f11565f7ba3e7ce82c173b7c legacy-trunk +58622 36b2aaf457b4ae2b842cdf1eed184783ab562ac3 legacy-trunk +58623 08ee256a9bd119164230326fc256a99f77fabfe7 legacy-trunk +58624 7408e1ae98c4a075bca8abeca7a786a175b4a03b legacy-trunk +58625 974e64cc083dca926cd431c3505464952690e1fb release25-maint +58628 3a14c904da2327c0410dd20a47bfa39b422a312b legacy-trunk +58629 732275c4026b520ba4e164e6cdc90cd52302e800 release25-maint +58630 e53d95c3c0c4db14e99eba3acc1699f2b6564e3e release24-maint +58639 3df5c7461603cfa9a55bec79dd0f157cb74e5817 py3k +58640 33efbfc28d2b379b53c52d277cc2e6b47cefee9d py3k +58641 590a1beeef89d1dac1dcb124bef33cac7d6a37c8 legacy-trunk +58642 7c7b42f64f41d418d83584d87e64b2bc7ac952c6 py3k +58643 bac343adffd9d2732f7ba41ec6df12f3bc324307 legacy-trunk +58645 3e6348bc9a2837491049ebc69a7bb18d85292119 legacy-trunk +58646 8dea59979ba2e988baed52ee5a23fdb749a943ea py3k +58647 57c0d08843064859ee1dfcb6a7e1ccedba87bb2b release25-maint +58648 51ba12e0a1d50e273311e746e12e62e1e8d850e1 py3k +58649 8fe24e5eeeffb99d3bacc495b9b0607c978e3c3e py3k +58650 d66018ed3ded590ba1f6c66705ec3ab004037dec py3k +58651 900ef0eb3f94b5012501f4028f9aedf115960095 legacy-trunk +58652 35da915adedcacc1a032a8a84b5c17e7587ef15f legacy-trunk +58653 823772f1d2be908b5c5492e0b74b38bbdb992b9e legacy-trunk +58654 fed64314d944983fb3ffb833809499b7ba722b85 release25-maint +58655 530573cd4f7a778168bd061dfaca8a200fe9827d legacy-trunk +58656 509a736ebdb97062066a1da5720b4fe9b2930f65 legacy-trunk +58657 a8818ffe24d11f10145c351e4c68a95c75808924 py3k +58658 7075d464d938453fb38642946765faf51dbe3c9e py3k +58659 06bdb8439e2984c276476082950039e9c8e317ab py3k +58660 d3bf009fbba98d3b7c322dcf1eceade63b868f7f legacy-trunk +58662 4bb6a0c353ab686e765712f25b164ed8ae1d19df py3k +58663 5b12b0bd81880e98f00e9c97362afdb57e35d4a1 py3k +58664 1998ee0eff2c1266a9075f80c2fd2141a3577c48 py3k +58665 6ab64f6b4c0317e710aba79e05c1c8a6fa3ee370 py3k +58673 06531848a3946eae8993a4c4edac089110bd0a90 py3k +58674 64ce3bf3a6a9d38dc850c61a1d267e3c24bee63e py3k +58675 fc6ba088bd77cab18d0928a729872d929192d4ee legacy-trunk +58676 5a4e8bdadb8504cb7a17ad1172ae0bced1564979 py3k +58677 50a3475db466b7d9d3ba1ddca7271a60365d8e30 py3k +58678 0502a8c64ef20eff8bb89c55579ccd6a7494126b py3k +58679 7fb868023d75aef85fb21e1e3420ae82aeec2476 py3k-pep3137 +58680 1726a4c916f013143db0c809ec6bedf8c97aa9cd py3k-pep3137 +58681 fa7cd8eab2d2c3e07ebaad03d3aa29c7fe6a1ba0 py3k-pep3137 +58682 b102b8361d5e93cef541f799eae33da3c9fd110a py3k +58683 040f522fee11238f206c8a061b0dea7af6d0f54f py3k +58684 23e6ec1b5f350d6f5654ca796debf33e147c1b0d py3k +58685 ffaa6ce4bfb4789becfb9f6f7967fa6b335d0926 py3k +58686 d46a31f5c5df26b0913d62e3ad8e33e6b06b2930 py3k +58687 fd4d10e993b79c438eb1b2c670ea7d585a657b69 py3k +58688 97e2e89c65912f2d622a5590339cd33aa450ea79 py3k-pep3137 +58689 e189d32b3719068baf6bf27edb6470266d4a027c py3k-pep3137 +58690 61bc82df35ff906a734dd2b3f7a5c835ca084502 py3k-pep3137 +58691 5d0be97f17040cf3e4bdc70d1407b548972448c8 py3k-pep3137 +58692 2e9edcdddd443a53cd8fd5a75365da65f39fc03c py3k-pep3137 +58693 dacc730c7298d5902619183c127ab66b7ddb881d py3k-pep3137 +58694 8fd3db653318ebedd80687bf0dc644af4af26d39 py3k +58695 dc98162ef844f0a6f1d2de069012265155a00890 py3k-pep3137 +58696 f5bc9481f883fca64b95e3af27df6813e23ed710 legacy-trunk +58697 608ee4b820afa720cda3813bee8fcba021da4723 legacy-trunk +58698 365913d7af7d65d48bdf48f67e1312685fab7b07 legacy-trunk +58699 91fd65045eee68adbf84eff3d6606d641977c00a py3k-pep3137 +58700 7360c12bd81d49ed8bac51d0f77593c224608e41 legacy-trunk +58701 51a7374105ac4c3f5cb53187028fbb0f69bcee17 py3k +58702 3f467accecd2e462b0d7b5bdf8ea5b6dfca89542 py3k +58703 12d20fdfea62f51974c505c99b2253b2966c5ff5 py3k-pep3137 +58704 d8f7442b8cae866fa8fa512f97300881948f517f py3k +58705 c34720777cb66ff34aa4bde8edb07adc746970db py3k +58706 40e3a2db5d9e303dd7a9ee054180c1809c23354e legacy-trunk +58707 32354870dfb2bb8ff6126a6cc1e35a5df4373e73 py3k-pep3137 +58708 76a55f7b50600752a1a27a51fbd8753a67316f2b py3k-pep3137 +58709 124cbf1a0e3ea4805192e9e87c5ce8be7c5b447e legacy-trunk +58710 a5dd278b0c1fba40dd79f4cc478e46048954ebaa legacy-trunk +58711 00b136b7da844d32de88d2eaa5d921a2fa93da8d py3k +58712 47c553eb75d91d26ba26275463da991f024b424f ctypes-branch +58713 8f7f6c850dbd262b69c2b53c84f209ce2e9c6d65 py3k-pep3137 +58714 26fe7089f14af1ebd237dbfe71ddbd35d023cdd8 py3k +58715 33480765f669301fb421fb50a1d7d30c033fd118 legacy-trunk +58716 e2fe58604cb1cebf78eb464a00b791f42512bf8d legacy-trunk +58717 8edeb5168bf5166414673fd8b7ab7893c5d5b10e py3k +58718 c1214bd6ed16052e99ee1ece015469854388d2fa py3k +58719 e510b716bd80b7a769cfd5b9bc13466aa6a88924 py3k +58720 04682687817eb944af09948b57b1cf1dca8765f5 py3k +58721 e91506b4b85f8abd03ef8f753ba44bce80304e65 py3k-pep3137 +58728 78a8aea6cb0ae51e32d5fc262a09d63f5054d2f4 legacy-trunk +58729 e234d976b5d47b70017c9b43f72f77d5963e64b9 ctypes-branch +58730 e3a01f493e94f3583808a9cdb5b460c0472ce582 py3k-pep3137 +58731 431c5a1a6290110d10ee9a30cdbd000b54d1adb2 legacy-trunk +58732 bcf629e43082783b252ee0b35011ab8fe1318d68 py3k +58733 52531b4f535d3b94969ec074f909e092a39a1126 py3k +58734 eeb372818959557f3ffd4ce8830001d836f7f4ae py3k +58735 fe570cd5b18f1f2d6670d57b95c8ad453b12062c py3k-pep3137 +58736 d47a04a2e0bb45e5e9167915a545b6d2a9c6bb52 py3k +58737 ea65011342868c422b9e728e99599651b704c410 legacy-trunk +58738 60d96120460b1c472ea9df4328f00e5ae77489c0 release25-maint +58739 e420aa7f50cb50db354548c92f900e950d8b8f43 legacy-trunk +58740 3e738e52a3ceb11bbea4573425f577702a6606fb release25-maint +58741 bef88da821a4c2c72669a0e4cd536fd5f3f6e3e7 py3k-pep3137 +58742 a2f9e6cef02f78a7a6e4870ff5855b323dbde9b2 py3k-pep3137 +58744 fbc6fc6dc4ffe1b2c2747c7250ab55817a7598a8 py3k-pep3137 +58745 431bc909401955a2103cd0cd6dae3a6a393b1906 legacy-trunk +58746 021cee189f9e1abe5b7c200072219c05003c0fa5 release25-maint +58747 fd685d7e859aa10dbd4d6e3945c848b77922a969 py3k +58748 f87dc6a04ceaba307c208bf2c1b02cba0858889e py3k +58749 3e5edf19d5f05d2ffa1d021da781615fd2d85f04 py3k +58750 bd2f8bb11bcc36251b1f0c440b55688617996717 legacy-trunk +58751 e8d003b3870f03e16d529f8e3e0fff86d425f982 legacy-trunk +58752 3d866579117da708978dd79a7d2bea59e0a98361 py3k +58753 79f5ca9ee1549c15f5588ca3e7d3a0113b4cd9f6 legacy-trunk +58754 0f741c89d803aa38e277aafd54d9a36adbd3c3d9 py3k +58755 c00dc75867143e798903db92f5c615d75d89d62b py3k +58756 2b7aadbcea34f65e48353ae69e9d8c86291febf0 py3k +58757 157bb02892bc94f709b46aee0d8e3e773deaa48f legacy-trunk +58758 5a1cd3ca0b391cb7e45e41d6f559a55b51f22a21 legacy-trunk +58759 c19b6849411c0324087639e4c08795b5bb9f5437 legacy-trunk +58760 ed3c2aaa002a2a7b09b141f0db7561bf3829e2ba release25-maint +58761 99ff9dcf3760e128d989f97d3b4b99fe28074264 py3k +58762 e5eb93a0a20e05231e828a5a52a5594f80f5b992 py3k +58763 32767b4b7921a9c9e9c6c2b9c432c5af63e3bdc2 py3k-pep3137 +58764 8ac284b65e37e068b982a722e2c445250de01cae py3k-pep3137 +58765 8a40b831ab6899c504939447597f5796b8ec2799 legacy-trunk +58766 c4624dc0d41b107bbaae08d9380408bdb7b035f9 legacy-trunk +58767 5890d510aa6f74651891e46d95ef110e9f8acfb1 py3k-pep3137 +58768 8948f881e403fb2d51e5a8cb407d29d567137ce2 py3k-pep3137 +58769 27486a02ae64fd5a89537502e8129a7c0965c4fb py3k-pep3137 +58770 870f70560c8f2891b340e918ed079484dfac3ef1 py3k-pep3137 +58771 b6c8a669c79ca36608f081f40fea2838354cbdc7 py3k-pep3137 +58772 04be89fa7497c29e2a3b051cff6812b263091042 py3k-pep3137 +58773 d7ab5af3c98ea965e56f0ef01489240bd89961d0 py3k-pep3137 +58774 b4e8e523b882ee26d6e174f045c3a65e2cf18827 py3k +58775 5b3be4ab2fe1d11e33adc1e5034d1e409d1cd195 py3k-pep3137 +58777 ee1bc834d8c6fcd6505356c8f80f6f6d0783edf7 ctypes-branch +58778 c50e6f92419f3a02f0d1769c104ed0772e6f67e8 ctypes-branch +58779 11c2fde78d5771b73c2ad93faca4789ed0d779aa py3k-pep3137 +58780 8904a0bcbf4ff9226ac9c681e3e4976334b230fc py3k-pep3137 +58781 2a9394fb50ac16c7967b609c51d451ad8e8c990e py3k-pep3137 +58783 8c7daac0d4b0b3f446bc72d6a83db25b33d9168b py3k-pep3137 +58784 5fcb6602c49a9c5dc114dc8f2eb67a01a644c505 legacy-trunk +58785 a7f95e2b935824cb1bbcfb27c4c29ee220bdd74f legacy-trunk +58786 b61083774c08c4054cc3cc8a64dab2678c2c0860 py3k-pep3137 +58787 06046d1790b930b94d5299e9a9b287d6d4389192 py3k-pep3137 +58788 90d5d84ca27d81f4bba89ffd4937afb306da0cc2 py3k-pep3137 +58789 a98234451669e852321e0df3178f6a2fdf9f44b5 py3k-pep3137 +58790 6da90a5ae9faa038baf195263ef0e092c55af3ff py3k-pep3137 +58791 4264a07a39d13f694659db268385a5227eb082d6 py3k-pep3137 +58794 a030ecea4c24b75caaf8edc318e9a17e524b4adb py3k-pep3137 +58795 2803e96cc64af8c4170cd3d00f04a760bffa4a0e py3k-pep3137 +58796 4b3623568e6cf84c89b53685d2095a7553b5a26b legacy-trunk +58800 844ac2cdf7a8e05911dc4a69d2d8915ec382a32b py3k-pep3137 +58801 7c43f4dcc7c7c0b8609e42ab4ca87b99d52b7ea7 py3k-pep3137 +58802 6d46feb164b6bdf67cb835cf0b0c1d40c5334302 py3k-pep3137 +58803 00c98466615b23af5683e6f09b319ef333b92432 py3k-pep3137 +58804 8bb3e7768ca68ff238ffdfdf36fe733932501db0 py3k-pep3137 +58805 ad8c3f9ec1b297862a643f9029f794531a7cbd54 py3k-pep3137 +58806 7edbf258cad0011932395826c0ca52f6f1d68955 py3k-pep3137 +58807 119f841bb8164adfb7c0dec9979e413358e73093 py3k-pep3137 +58808 01135ddd726dca9e19ffb64cab1bd5921388d849 py3k-pep3137 +58809 35752848574353282cef2fb1d1b3bb6638a4db72 py3k-pep3137 +58810 b49b3107e42030cbdf7bfeb8094a5978c1adba32 py3k-pep3137 +58811 a8e7cb9e37c945d12f03804e4d9a174de00e4fee py3k-pep3137 +58812 142f26947aba7d842119b07c4661d5b7c1a65db7 py3k-pep3137 +58813 d249545ba79224a4cb268fd72de4f59498b170d5 py3k-pep3137 +58814 cfcfad87eb7d0f4e1276b1db7b8044d13ee7cf7a release25-maint +58815 704e6711e50dce5e61a27500dd72435ea7804ee8 py3k +58816 d2ba2bf4e76bada584a5f518695393027016439a py3k-pep3137 +58817 317ba53cd45c8e6eb0ba5f742409e682790f73d5 py3k +58818 522bbb9005a417dcd17eda9c6274df15e6134f47 py3k-pep3137 +58819 2ff0e81e68fca2306e50b7a3c757a10317f53852 py3k +58820 a4140a28c3e761cb23f7ec15d1ee5b9466be9e3d py3k-pep3137 +58821 87d38f42d163440ca42c46bf68d5cf0f5d3a5c5f py3k-pep3137 +58822 6e491d12765c5f7b4cf251b21b534f49ad63f9fc legacy-trunk +58823 4490f335bbcd38bb720f6982849b754e2c8a3a07 py3k-pep3137 +58824 6adc99a6888fded0d27c3550c9fdafdf8fdea906 py3k +58825 8fd694d0f902b8647b4cc0e034d529b3b4448e13 py3k-pep3137 +58826 0c517179cb8c405c56801c6b8abbfafc3ecac2a8 py3k-pep3137 +58827 921af7f27600f7c49439ce6a052e748d1c76a259 py3k-pep3137 +58828 9de07275b0087a66ee6623a91f9c778e76b8a47b py3k-pep3137 +58829 fd1c10d21c9ee433d51e8258597097536599d1c1 py3k-pep3137 +58830 3cbc78c3a4035495e4b2f047387db8d77d49431a py3k-pep3137 +58831 f61a0ee7476fac61234bea0730cc86b4b67674db py3k-pep3137 +58832 48e77922411d9c5a58ccdc5a3433cb9a460e4266 py3k-pep3137 +58833 b3f86c41d0a3a0725c88c24318357d36aeb1c04f py3k-pep3137 +58834 f7b4529d09842a3d6da918337df401abc5a1637e py3k-pep3137 +58835 14dfe2f135823299e7890a3562c8cadb06243138 py3k-pep3137 +58836 e90065e17212020786b251d36c4ae410bf4b2d76 py3k +58837 658cd34a8c5dbe1968cc8e7acabfc92057d62387 py3k +58838 de3b63f8b17b6cde64a1f1017415eb192a9cec9c py3k +58839 03c3a54072d91ef431bbc5781264032549e28a7f py3k-pep3137 +58840 1891257dfd113da68224173bf37b6719581e3a57 legacy-trunk +58841 09f922c4f88725e6ad7e95914f8f6aaa4de7b6b8 release25-maint +58842 ef1d3e87296f36589105977cef24e7de9df87150 py3k-pep3137 +58843 f1fdd6b7015f005c52af11f22ce89322f280a2e8 py3k-pep3137 +58844 585ad7713efefee420a26521795704891b870b90 legacy-trunk +58845 447d2a4501cb72a65c1e78f4768bdb689c6c1ad3 py3k-pep3137 +58846 50423f44e6dcffc5d21b17067b784d6d9b22d03d py3k-pep3137 +58847 71f8435751baa5c71fe083ecd33d9587b29859b0 py3k-pep3137 +58848 153c0c7441aaf6fe114081b966a88c06cd4df942 py3k-pep3137 +58849 5acd9df271085283f7c287905354d9e65689bd07 py3k-pep3137 +58850 51a0de9bab3746af1a5d7f9631cb6ee8a5d68276 legacy-trunk +58851 8d4e9c4f0350a1e0b4ca1c367803431e86e9de4a legacy-trunk +58852 37423c76e2085868a96dd8ab005ac3f6c3614a6e legacy-trunk +58853 0fd1caa85225faca259fe388016e36d6e06004df legacy-trunk +58854 37156945ca3516e5b7b8a6559c738edd09a6d878 legacy-trunk +58855 01e6333f3b6cef23878bfcd01008483f3c87b84f py3k-pep3137 +58856 1987dbe7eb6e7d717c7084a4b0105c95c092e96f py3k-pep3137 +58857 08ee3c73b6becac1625505d6b86f88f16dc99733 legacy-trunk +58858 70ef0b6a8345f122a959850b169e2570f6c50de2 py3k-pep3137 +58859 fe9c2233cd04f8328f91946f7b78296cfe04ddc8 py3k-pep3137 +58860 30788146f0a6c07ab13826da04417829077a2f1d py3k-pep3137 +58861 778823c0ffb6399b3ac78aeb06c50e21d92823fa py3k-pep3137 +58862 f3c337e9d1e597c3ad4a393a1b3ec7eb114a86ab py3k +58863 f9d401f1e1ef0b0c7bfc59ad93ab18bd12e2e7fe py3k-pep3137 +58864 c490ae08d608b0160838bb6339760e81771a1dd5 py3k-pep3137 +58865 c155f1deda65d847aadfc22f5b8e9ca00fcd589f py3k-pep3137 +58866 79fe7d06206c18f440c4e581adae1bedd2d3741e py3k-pep3137 +58867 53af046cc2c52e2e83e7492a75d27d5ff75b4560 py3k-pep3137 +58868 d7db467cd9407aa0964047a4b2d5b3dea64e9d39 legacy-trunk +58869 a494a91512ec9ee4582ea6c6a5fdf186fed70e7d py3k-pep3137 +58870 8d31a36f0caae5089de0cf9348c14ead4aa5cbe4 release25-maint +58871 d24852b86d70bc264e91c9740b6a772da112634e py3k-pep3137 +58872 29a598e6938260f8670917b9c21c120a53301514 py3k-pep3137 +58873 87178f35d7007495796a8c5b151b2d9369c5e9af py3k-pep3137 +58874 5531384809185365f61af8b6af90eabaeaa72063 py3k-pep3137 +58875 cc65b640198946e4bfba3275a0012916fe808eed py3k +58876 0b206790feb643ece3cf8e10db53afed92670306 py3k-pep3137 +58877 d824c315fcac28e45daf4bb36a6575659ab8c119 py3k-pep3137 +58878 de973926a35cfd2532388f8ed94d2d555a3418ee py3k-pep3137 +58879 c93ad6c417df251bfaa6b23dc29ad9a475df5bd4 py3k-pep3137 +58880 91ba1698a01186c2d6b7c5aa95d2d9a22e820a19 py3k-pep3137 +58881 6db380852f63fe1cef2ba6b2d525cf587bf11bb8 py3k-pep3137 +58882 930c60f8aaffa72898f094201247158acf2186c1 py3k-pep3137 +58883 fc3bec20ec153888b16d6045a0eda48d28cceba3 py3k-pep3137 +58884 02257ec54d7913cf782af41680c64402233c0f6e py3k-pep3137 +58885 cb8ef2551d0d0e34fc93c8ee540ffcc6e2f4b585 py3k-pep3137 +58886 b310fd2b01847a0c91d07a8fab0785c272e1d0ec py3k +58887 90d0c3766e928a32b60bca63feadf3a3a95b3b95 py3k-pep3137 +58888 0d462d789b18ec6a59ebe2116688d5b6985c215d py3k +58890 cfe8fced8a1226aff0f144b0f9b94f23f8745028 py3k +58891 c5f708bc4cb7fc029a7629373011a43d9fd581e4 py3k +58892 7347f75b9c3442bd633adae532698f24c2a2be07 legacy-trunk +58893 da58cf9bcb01b5a726bc3665e1ca4035647b89b1 legacy-trunk +58894 06bb810747e1d36071feea2dbdb1d9d4b8b9ec0e release25-maint +58895 9f17a9a5b5aeed74b2be1ef0bb6b81d9e8b6a913 legacy-trunk +58896 8fcc3f46c69de173f28737be5793853ae00c3fe7 legacy-trunk +58897 fa82ec9c80cd67867ffed22395572a99b5dbf4e6 release25-maint +58900 de63ef186c1ec50018815f431fe6ff1cd2d43a40 legacy-trunk +58901 f474de97340478eac71178a9276acbed1ab10991 release25-maint +58902 7bd72c56f6a40d2d4341bf182c8cc9941f4c08cc py3k +58903 1247d24b287b8c6dd20e35f389a4daf4d2251c41 py3k +58904 dba2491cf717625b1ad69fc5d9a09e89b94ca4f8 py3k +58905 dfb460004cfe2df703986aa13bf8ac3d9083f5d9 legacy-trunk +58906 2f04abd133944de3137f00d6b6ad40ba1f5b2195 legacy-trunk +58907 2d8d6855a602419ea9a996e76d83fe2cc7fee58a py3k +58908 2b3abe3d3ae6ea33d2b39f29834880cb508421ed legacy-trunk +58909 66d275f29ac550eaf5b7f2a61fcba88ed4823ca3 py3k +58910 7022affd7bd09cf11553c22f8e0afd437a3edcfc py3k +58912 6ac61882f9370cfffbdafb4fcf8ce6282bc4483d py3k +58913 6d347779521b5b252271eea075f9c81c84eb599e py3k +58914 360df641244d9e811efd89ad0622ad46ba66feff py3k +58915 b22f27e0701148eb63b21ef2c39154c03fec15b2 legacy-trunk +58916 2f7c401cb62e049731db36b9e5b012e5c9259ad4 py3k +58917 3c1f8593a14e4c55e7c006480c36ed41ab784f96 py3k +58918 ade5663e88868a31c0445cb995f5a70428ddeee3 py3k +58919 d5c25bf2692eeacfe9cd9b1dbb100ff039a6b7b5 py3k +58920 83c05d2e10decd063304ee57ee9e7cc485edaca7 legacy-trunk +58921 81e33bde6ee20ac44a016961aa816e9c90fb8daf legacy-trunk +58922 ddc7d14be1e9939418b34327839b48169634826f release25-maint +58923 c1f8831155de0e58b8233bb15f489ef735db6d9f legacy-trunk +58924 aaeee50a06401671bf5a079336229631a6da5af8 legacy-trunk +58925 ac12ac88aeea93a106bb68e758fb19bcfc1cec4c legacy-trunk +58926 20dc6786f9acfe9ff07d3344c2ac8eaeabc1930a py3k +58927 f82a20dda465ef20d81971c9f1007f175361e1ab legacy-trunk +58928 1561763cda72dec6cc21936945ac4aa48128fc12 py3k +58929 197ffb996fb889599b7bf2e5bb3bdf9317020d50 legacy-trunk +58930 85cf334b32c3ac21ebc41c51561d6e3b7f6cb121 py3k +58931 487f3737eaefd0213b0e191103be963369049fd2 legacy-trunk +58932 1adf066f1879a4b937aa89f1e1a4e4628aeecb10 legacy-trunk +58933 5a169de36de78cbb759f5cedbaf52c68bfdc8c5b py3k +58934 068655054b0d0d1362aa72b1c0cd7ddc3cfe260b py3k +58935 d2f9e20120f9e935749eee87915850c3a642ad17 legacy-trunk +58936 01a5bdc2820a011fa7c6089388c79648b8fe73dd legacy-trunk +58937 c4e2936d1307523246509c03f1da6ce6d37c1b81 release25-maint +58938 55cbd0c7aacfc387420bf29357e4621c6af3fd13 legacy-trunk +58939 4ed16ca4d98008da1007aab73e85f160a44f322a py3k +58940 29bece14789391df1b3484310fc8ee539d27fa9f legacy-trunk +58941 ade58eb7c8c75c5becc3b5a129cd83854d68a8d3 legacy-trunk +58942 af3428fae15fd833908eaa092667eda055d0ed54 legacy-trunk +58943 00e6165f44829deabf075f3bfee5ef9dc5839c09 release25-maint +58947 7bc4cc972b0b3c61ee446ac0def00bb4516b4eff py3k +58948 8ed3a95ca114fb1c2d24020576feaa9c5e4c3e7d py3k +58949 164a6ac94d3c81f422778faefad0f3cee0477c83 py3k +58950 5912b66ccc2d5ff75b6adbca7a2094839eaef4da release25-maint +58951 ce77d91ea1d0bbdffa1bfcd46a430f0c93a66f87 py3k +58952 d7e9bec1feaa9a5d60753154def0bdedbe864213 legacy-trunk +58953 a2213060d9ddb048d1da217992cf14c61b2d9de7 py3k +58954 1d6db9dd3e77a7cc8d89fc8f84ea087c4bafdcfd py3k +58955 b31f61d7f8b0ee014ebb09ac7eb64b2a8680184d release25-maint +58956 1e0ea1f03058b5a251df13fd38af17f24c3ab047 legacy-trunk +58957 0811182a9ce9ac1dd2a09eefa4dd8275938348cc py3k +58958 73c8e27eb9cef402facf8a9cc31ef931f8fda04e py3k +58959 ccceaec11442f94a8930333c3a6e998610b0d609 py3k +58960 241281123fd8351d10e0218d3239a5bf1f10eff3 py3k +58961 a060b3cc2c62b1296e1c5ce915546ba2a067699b release25-maint +58962 2c97e24b16cfca93348a8852031b489a5c8ff04c py3k +58963 76844a0a579f992e2b048ba87cbb3d63f42d0dd5 legacy-trunk +58964 d5fc6e96091fb6fed237a49243f8230099f3dc63 release25-maint +58965 0377ba9bc3591752b7713bf48b47a3731e9b90a5 py3k +58966 e162e881ea5f4e3da5c41d2392cb2dac17a401d2 py3k +58968 24c84d58cb8010b18e623e793da72fbda187a7fe legacy-trunk +58969 53fc0f41f68d7f1666c069196ce9365610f94639 py3k +58970 9a1281391c46e9c53136766abde0360afefea1fb py3k +58971 8999893a6e22150c89897ae41b386fc5b29f22c0 legacy-trunk +58972 03ad1db7c80e45d6de6695ea81bd0c6527f88da1 legacy-trunk +58973 3c29d73c77694e6c73574ce6072c8fb6e225e187 py3k +58974 ee081609cee8cd3453191242763bd2e341ce8a27 py3k +58975 98795738b4c2793f0cd8cd8a82195fc1c495da65 legacy-trunk +58976 0ae9078786b402e3f2bd7f619746c5a0d910d729 legacy-trunk +58977 019829803848e6f11efe018c3ff834a6a60a969b legacy-trunk +58978 dd3c4dd3ecfd14cdda87b4f8cdc92aeb244d78b1 legacy-trunk +58985 1791865a668b9f2db4a0d8c7cf89c1ac651fbc18 py3k +58986 fa6cdf55de58f36a27420aa69090da9331724adf py3k +58987 d4f9706cb46b3c2b121e3e438731ca0fce5b11c8 py3k +58989 516041d52656d481b1575e1e941aa222b6825ba8 py3k +58990 f4a3b4e155c259374c9dc95d3c095fd4ba4b7fd9 py3k +58991 9a35e9266379bcaa95b36256db550be0f77655cb release25-maint +58992 8ed0280c2ab674853ea17e0b2e2aebbbbc311444 py3k +58993 f444e259341a96e39c54781c6d34e3d3a6d763bc py3k +58996 de6b126a8d37495b69a2938fb28282876805ea53 py3k +58997 b59825d9db8f99e660aea1ba57a8bc58d9353ab3 py3k +58998 c78db4938482c7b6bc0cb863b166a1616255804b legacy-trunk +58999 590930e17e0c98f87ebd5057cced3d4275a085c5 py3k +59000 d4193330d1beeaf92b201b26287dbe95386a00ca legacy-trunk +59001 1739869cbc6e7e3540a645417b78fcbce36c8f9f py3k +59002 6b012f01a88909329a7f05ffe54397829166a8bc py3k +59003 e20203d0331cc298f152b1b4db416e9d00b91254 py3k +59004 17aaf95af909a162e3aab2e4569cef0bc3b57785 legacy-trunk +59005 1165d261fb05db573f82cecdcffa098a0cd81db4 py3k +59006 c31594fb1ed44f036aa8d45f983bfbc633329369 py3k +59007 5590157f4fc6175497fdeb4046661695b18bcdf0 py3k +59008 4a6a7aea57f4fd8864e826b63536642847e48be8 py3k +59009 70cfc7b504c286362441022354c1a0f37682d40f py3k +59010 f6cca4b2260cabfc82a13007b5f774cc939a3e8f py3k +59011 dc2256e301a92392c9c55fb33084eb86b9abb560 py3k +59012 71e74562fb6412858eed3b4b056d0e3055f452ba py3k +59016 a99da893f20c1eadfa02b37e7f33432e28c4b926 py3k +59020 25a5f6a302925d574921d65321c3288e06467ed1 legacy-trunk +59021 2df53f05392cc1ae784c8ed53653095853fd28bd legacy-trunk +59022 1fb353776dfb4e8608bf09667c5ab0dc038d1b98 legacy-trunk +59024 1494bde510ff94ed96ad50ca2c423f004ddaea39 legacy-trunk +59033 995d25aac16aaa92bc953b7607f23c9be556b12b legacy-trunk +59035 38f63419abd6473a44e9c88b7f3a271d84a91753 py3k +59036 d50c7099d4aa4c0cd44f7badf66f1a6a6ce65014 py3k +59037 483e958d13c76b664de16b37642b5954eb6aa324 py3k +59038 1332450bc9521d038e74e36d29caac7ef9a0ec63 py3k +59039 4cec0c6392c13ad5ba689a06ea057480ba1bd769 legacy-trunk +59040 520e2ed94bcc530d5dd4d270920fa5535ecaaf9c py3k +59041 41f7c13ef1611c5bd2011dfec9a65ace5e284322 py3k +59042 b91fd74f32d8e9c4cc18cfc6aa5d6daa7750a318 py3k +59043 fcd76339fe1fe6f74f9a92437cabbad5004585d0 py3k +59044 3a730f4908e3f2db3e8f3e903fa9d6bc4ecde75d legacy-trunk +59045 70ddbe67d3c460a1c8e45abcb0385b100a31f525 py3k +59046 19f996553184806b9c796c6c3780680173eab4e9 py3k +59047 6aa8e135d9f84df401d2219cc796ff2925c3e672 legacy-trunk +59048 49681d436df9236a634dd60286d10435515615e8 release25-maint +59049 0e897905ee943d942242ab09c8a248b5c0ed2d60 legacy-trunk +59050 e5d48fbe16462c40dc22f70f0ebfab4455b1f922 release25-maint +59051 780c728406e675f2b4fc99ec6ed2ed9ecb32171a legacy-trunk +59052 da8dcd5cf5a01a3430570819d5a74e3965df3d0b py3k +59053 1ae9224f4ee7f01a5a407cfda44e8f58060a244e legacy-trunk +59054 54b973f0f55b5b5d6c056a2ce3328e176f364a0f legacy-trunk +59055 b6f5781f5c3f0f55cf75215f96ec6c0b8ef615ce legacy-trunk +59056 4747ef9640ae8b13752170234802c4604cd7620a py3k +59057 61ef90a1b35e257cb1a074e5e887e14cd34c1099 py3k +59058 40dfc485b0be37ebaa31c6e891069e8705b5aa50 py3k +59059 69699cfdd26ed0e53bcf035ef8d41e6f453abe1f release25-maint +59060 b1bcd599671f05181dc95156240b4a7448d0fa6a py3k +59061 a915f2b135c095dfe94929f83b6ad320a499339a py3k +59062 146ba97ffe1ab2c9af436b023c63fb983861feb1 py3k +59063 8ea7f59dff6bc63ac8fc50b2e670319af76b01bc py3k +59064 fdf14170337ad78c5ddc43e80b10540de83b17de legacy-trunk +59065 2a3d73495f184dcb1fd26ec6a68bcd7624b2420d py3k +59066 32d457a7885bdf3826bebddea499414e94c061cd legacy-trunk +59067 d3cb16b321d55c3fbfd7a8524fa4f9ad6c68811f py3k +59068 74f22954f1899db4c49d0cf96ddad25c16899c7a legacy-trunk +59069 6ca004475aa0fc84378b048284c028bd6cbde628 py3k +59070 2de7d00fbf192ac3a6ffc1983fa285c85c134e4f py3k +59071 557614c4ff00f30987b6679003acd40e73684265 py3k +59072 29b0f4975d9f31e2d106ebb4f3564f1249897958 py3k +59073 7ab49064d430aa5c93046358a1110ab2d432d8af legacy-trunk +59074 f54ecf494cb71105026082e839949c8f734083d1 py3k +59075 8b7d4313ebc0569cac92fe3740d337b5add3215e py3k +59076 e8ac1ae4503cd7a82807228295d4559e7a0e21a4 legacy-trunk +59077 9c4bf18e5d30e6334cc344584b0febec38800d04 py3k +59078 71a17d4d3afa0da41688671e0cc40e1bee819515 legacy-trunk +59079 2ba5ab3868c90fb1f47d946ed5cf4a29d91ffd6b py3k +59080 38b1deb4e4ebdf839f7c916f869a4b9762ccc90f release25-maint +59081 883884fdaae8e1143cfa298c95300aa1692a15f5 legacy-trunk +59082 8636dcb801ce0603e47a65fbd46f496396c8efa4 legacy-trunk +59083 25d9ce283b394f1aed69f793ff3c5dd04369247a py3k +59084 3fb7ed5c23dd690d4440bdd66d79514ec41162ea legacy-trunk +59085 3b04894116fe222f8214355dfbd6ec6afef5458d release25-maint +59088 782cb40378f44f87a14c6aba517ad04fa45ce722 legacy-trunk +59089 2dbcd390b6f1537883c19d3c41dcd4c8a87d2b5f legacy-trunk +59090 b099d39c3482d95caff72ef2e84cf233a2c1d1de py3k +59091 2fd7c9111632a2500a10f82667f3df35571bd9e5 legacy-trunk +59092 6c967c26841a914552bd06e1f5c7e963acf9c6ef py3k +59094 cbc8b3bd315781e53afb89026e54d01fc06d133b py3k +59096 8e0c4c710375f2dc918b2436fb2645ecf081e77a py3k +59097 ea9884f145459885bb514f1ce085d7919b298125 py3k +59098 2a3ca90008fffec1ecc301cda7a48af6a5928d69 py3k +59099 32bff7f2975d810a99d69d9b3dab9e15d8da67a1 py3k +59100 6f149526e864c41046e4ddea3b53f2e57c45a2c0 py3k +59101 ddbc5e2c689a7a411102d8a59062a91c94301df6 py3k +59102 092b5306983f720bbe01eb3e1bef9772219588cd py3k +59103 75364364408b6931d83d89bc505f1d2e52fedb45 py3k +59104 fe5b2edffae769acca505b28f33a807deab44566 py3k +59105 23befe540d0d546dd169e7b554bd9bc60680d678 py3k +59106 103b7f955036ea36f5fec5d3bd6680a56cbec7b2 legacy-trunk +59107 1209970612dfe1811606014d1ea7384dce4fa95c py3k +59108 98b4966649d51b093e19197e1c92a6dba4c1232a py3k +59109 b231bda653a4f9b35f61dcd2653dead8adad68bf py3k +59110 259e8a2d6f8c27059450e82dd78ef2fab63e8bbf py3k +59111 14c4bb3c65a7c7eef7ebbf1901e1f8c9299fca70 py3k +59112 2655d1131232c1cfd25cb209354936932c1c31cf release25-maint +59113 41b2f26c7b3dbc508861bec4143a195e6b061703 py3k +59114 d23829a9db21193c6e4f15c4b96c3b14e4aa3a5a py3k +59115 8d1eef3919f051e79d579b698a660a7727c2f0f0 py3k +59116 d9bcd94e5935e6b5f91a4b21adac8f1416fba632 release25-maint +59117 8bcbf322c2b5c2790e7c09fc5f55708e3b7b73e6 py3k +59118 4a7553b176b6a1a3cd4c301a265d2caf4cf24924 py3k +59119 72962abd90a16ab856ba69e23ef0f2edbf5c7fc4 py3k +59120 a8dd8874ff2d51ebb740a343915c00c85f0031e2 legacy-trunk +59121 f632720d81027ce89f2461a4507253cd6e241a84 py3k +59123 da478471f1b6b868577fc86d397aaa478bde6bb0 py3k +59124 6d6b609e457c80752ac5de0571c531ce1f700b78 py3k +59125 8744e41daf545cd186c125e5cc12c80e5ac3b878 py3k +59126 3c725a43ac8cd8e67312a464eaca806ee6425646 legacy-trunk +59127 9350e425e5f3bb7e5b64fff0fbd8a95a4b4205ff release25-maint +59128 49cefeccf93ebf5ab52feaa1e6d78d067f5d3639 py3k +59130 6ff68505199ae1851fd6bb67adaa4fe936efceb8 py3k +59131 62cf08a64bc231404193e7d80b7422347a3415bc legacy-trunk +59132 5f6a8e2b9e9ca6dd446272e9bb9e1c5261f3618c legacy-trunk +59133 e725166c8c8184f80ffd6fdecec946750cd41e11 legacy-trunk +59134 af360380aa16ff37e660ef1f5a422353c9efcb81 legacy-trunk +59135 2230f16e402b105133d4b8d17a8f6adb5d55b578 legacy-trunk +59136 ed29b9162ae9e9a738baaf30713e1771ae22e056 legacy-trunk +59137 b481adb04699ac3d627e5982e4fefb578304c0b5 legacy-trunk +59138 4d0fe7da4cd5f6f20f4dd1128be7c2bb9e57ba67 release25-maint +59139 3586a66348bf84ca0dc906b737054aef2ab74546 legacy-trunk +59140 4e1a19ba3d4a638f5adcd348e06cd6fdf3c124c4 release25-maint +59142 68caa47f5e153e3557308b337661abf5f4802605 py3k +59143 11e3e2ae23643d221c601326f49e7901cc0f11ef py3k +59144 a4a14048669103df2cabeb3b379300611f684633 legacy-trunk +59146 55fafb46fa455f5bca6e0aac0d467085e731d47e legacy-trunk +59154 a9cf780f6396a72e9cff807fa95b3f86485e1f7f py3k +59155 b86e6bf7438f88f339cbc5b7e47a19e88656c33d py3k +59156 17479a09ec7ccd55190572a84ce7229e82d5dbeb legacy-trunk +59157 bb1e15bb7b59ec859b94569328da53986f1e916b py3k +59158 b9b94785b2c72fc5c8bc74a9082f9262b8cb12e0 legacy-trunk +59159 155e9725da2f934759552fcd1dbb20eadcbd797b legacy-trunk +59160 cf6038df9d5269c8e1eda774c9e1288369905645 release25-maint +59161 49a7c7dba8caff4da9f0703b8f492a4598081f7f release25-maint +59162 0b5357cc416b8f35824bf3341120f2fe12f87f39 legacy-trunk +59163 2bed841585a9ca65b0b74b7726e474ddbbf9594e py3k +59164 d3be6e615f8c46daa65af8287fc2658ef6677d95 legacy-trunk +59165 edb75c098a4b059d84207694857354ed612612c3 legacy-trunk +59166 6d614b8c512532ecf807110314c73df20fdd0b0a legacy-trunk +59168 cf2205960cbbaad6e45cd7354a5bfd8ad5628b56 py3k +59169 2068bf77891d0b4240924cc8c84575d131bde881 legacy-trunk +59170 2183d72abfaacfcde5ca3ff9f34d85a6e20c53aa legacy-trunk +59171 4cf9bb9cef91f503fc619dac7023749528016a26 release25-maint +59172 d5601ebe15a9470d1dd33e85d73527c5634d3a06 legacy-trunk +59173 14aa3e4e73759b7a667bc7beff163f23ffc57b10 legacy-trunk +59174 e0465ba0e95d68bf162951ffd42bb6a34a4eae5d release25-maint +59176 7dd7961e0eff3ff4c7fc22fed63cd19b6049a816 legacy-trunk +59178 22e09905e4000ae7cff486cbfc67521bec429fd6 py3k +59179 7b4e94a7b92e9ee01aaf779e45dd87880ec327c8 py3k +59180 a7c18b924236a07e9a63f5183d1d828ab51c2aec py3k +59181 7b30111247f672007c26ec7e342994df33089cea py3k +59182 e6165e389c5022b46873a5f29de827910802aa5e py3k +59183 ff5df1fc0fcc4a6df338a8cec5f184d0994e709c py3k +59184 52bbe3365c72c270f75d173c0c698eb4ce601604 release25-maint +59185 73f83899eb9d9ec00e622cdb00e17d8265b976c8 py3k +59186 e4b1e05ce26352755c02d33d9119f7a4ef315156 legacy-trunk +59187 ebc7389297d691c6e159c59999e7e0285f0d566d py3k +59189 48af6375207e708db41c19b60373bc61df03feb0 py3k +59190 f48d2ef72e7e39424b04aa2558b9bf60ba09bca2 legacy-trunk +59191 0476457ffb391fd2f0468c722e7bc5e637541560 py3k +59192 e7fed7a595768dce293e5d063e60df8c820bca18 py3k +59193 b4da71a88fc015ed428a7feecda1838f095599cc py3k +59195 f2e2479afdf0b3308f275ba68ffe768561f43926 legacy-trunk +59198 8f92b4ee6fc4cf595489bbc5b8b92b2d5d1f2a10 py3k +59199 ba3056119b283c0d39438d2e59310634f14c3655 legacy-trunk +59200 5d1049d4c3c658470de03713bdc2e6bc9fdd13de legacy-trunk +59201 bfe037e3fd55ff2fb87db605fff9e6a83154fbb0 legacy-trunk +59202 45ced6ab066d5bc613d18efe9701c0fef640e48a py3k +59203 60e6eaa378d9f91be2b498d662a56d5ecabda197 legacy-trunk +59204 d44fffda2cd08757ded59b73ac4297b3851716a2 legacy-trunk +59205 12e728035e2c6cf2bfd1333866ff49d631b0a6a3 py3k +59206 71f47f864691e844f36c481be3be761b0af7cf3a legacy-trunk +59208 7e8e8797f9d0a8518b56b13289b1536afefd8d1f legacy-trunk +59210 918bbee3a5458800f2be1ef1bfb38f6760159b85 py3k +59211 1f024a95e9d916a39453e3d639fe07ec5505980e py3k +59212 53b08fd88bf475bb4f679991e114dc04c211c0ab py3k +59213 530fb9852c5043fec0bd373bb3d2e25ee135dd92 py3k +59214 4c39029e3fb030a67f755f7c618fc3ce9088214b py3k +59215 429cadbc5b1093cd807ec88165d58a7c1cd9c15b py3k +59216 41b7f80265db19b3984857543fb3c1a6cbba6459 py3k +59217 15649aef2db55e12700941a3ca3f0157e39ee93a py3k +59218 eccb197044dd495d7d6104f076757f6d68b28e88 legacy-trunk +59219 c024b894d929ced4cb6ec5390f884b8943a6a7c3 legacy-trunk +59220 e6ca92b18cf4da42ec5907debd4365ccfe1e75b1 py3k +59221 f2385d98282aba0d910d0099b79aecab61cb5d06 py3k +59222 c4a6d3ec42c12492671c78779a9f064c30d75682 release25-maint +59223 6ed77fda8b91480ab9bf519ac66943011b25d4c6 legacy-trunk +59224 b6b5b6cdd202a90ed5de3201c79eba6a03ba435a legacy-trunk +59225 9ef85724f4b1f5237a332a4e3ee1357d41c8ca23 release25-maint +59226 49ac587e22e91f017eb1d02300a4b38e7fde5ae8 py3k +59227 295cf05fdd2c328c7501c43c06561e594c7688f9 py3k +59228 d639458c7e0245cb3c04c10ba30c13dd3e91dfcb legacy-trunk +59229 0cc552ab76bd39c3f05c332820444cc5019a7ba7 py3k +59230 894fee279dbcef161bc11e7ea4fee1672984217f legacy-trunk +59231 4417ab5b351e6cd84cdd03fbe7e0b5cb95298702 legacy-trunk +59232 00048fedbaa0e22e3ff56b8b9c20a4725b9ffac7 py3k +59233 3ef6dbc43531a1cbf284a6ecedbf08ce4c74e367 py3k +59234 28c80283725233d1f45646cec7117c44c72537ab py3k +59236 3cebde478cc4dfe33775c9413436de145a94b9a2 py3k +59237 53113106febb5955a4115b99c306696fbad1320f legacy-trunk +59238 3aa110f680ab3e0a08172984e088ad57f6dfaacd legacy-trunk +59239 f564405c81041dfb8e6b0558b6f8eba35478d098 py3k +59240 b44059e0f0759ed12caae5359e1c3af85640cba7 legacy-trunk +59241 2f47b228ba0654a0a0c15b58a102eb5eb65a3c04 legacy-trunk +59242 7577b99ec53b592bcbe9bf4591d4b71b7c2c49a9 legacy-trunk +59243 c5f2c97893135fbf873a06d9294bdb474038fc21 py3k +59244 f4e7c729b3a24ec2b85beffcb4e578deb6630c93 release25-maint +59245 165e527c399aee5286504f0e32dee2e229b611f4 legacy-trunk +59246 51c1eaeb8786a692d53646bc3cbc9857efac7f82 py3k +59247 664b0bc92b96fde9e75e60879a0b17f9daf9a561 py3k +59248 dcc4bc58af52b7ec6f050512a46bc43ea3e36599 py3k +59249 80b42db2eac92be89ed140b69e423f741b10f6ea legacy-trunk +59250 2baabee40702f8460c1be71efa29d0354089f37d py3k +59251 4cb95fc4129e0e135841f072f44e5510f60bf396 py3k +59252 351b7bd786e4aeed33d96ffaa4d60dbeece3e963 py3k +59253 2b21f158ab9ff31508638e82abbc1883145b3028 legacy-trunk +59254 c218d1ac916e5fe43bdd3d5a5ad58e3620e2b247 legacy-trunk +59255 110ff614ec28addef63f1fcbf60dc658d60d0509 py3k +59256 944ae345e9ffb41a9a18aef218ac92076350ded9 legacy-trunk +59257 86a735b42a8fced9fbbe0c5bb5f635de73d1959b py3k +59258 21321dcf0ab5d9f76f061cccfe00ee3f789d7d18 legacy-trunk +59259 6d7fd95ef14ae97d26317855f1a297ec3f1a1f5e py3k +59260 e634511b4af5da8cfe687c223e88fc5f2e349c8f legacy-trunk +59261 b21b1c4f04395b9b2a1a50a0595ce6360cbe359c release25-maint +59262 4f1b20ed98e5fa75780800d46837900cce8c3b10 legacy-trunk +59263 6224dcac807d87300c9b7c98a6add796a22a3de7 legacy-trunk +59264 bfdea65388c31a65babbf3de819f1d0429543971 legacy-trunk +59265 199dff8530ad9db96b3e007f50ce0d38e74a790c legacy-trunk +59266 823141adb0801aa43eeabfc23cd191b876c1ea8c legacy-trunk +59268 0889daf6d0d94b5f967ad6970e2b9d517aaa6a6a py3k +59270 f324631462a27c6d2a684f3bb5709185ff6b8f2a py3k +59271 1ac7baaebce77549a6c57b4225fc6e1f7cd77e1d legacy-trunk +59272 aba3d0949a1d552dd7eefa19ddc4a68da7606ee1 legacy-trunk +59273 e7bcac8562452c69a4820c2c5e389e73f0ae0ce7 py3k +59274 1e266015cf5baecfd4307804b0a4dec696f5277e legacy-trunk +59275 ff1766eb2fceef33e59a645394709bbe0a217a9d py3k +59276 27fdca3aa7d468d0cad1098c9c0b28f1ef2debe0 py3k +59277 40fcaadfb1663fd9dfbada8f5c5325d0bc9eb6fa py3k +59278 4e1d6491367c758d306d227b6e7dfe0777761f3a py3k +59279 cedb7adc87c5f7c3a37eabf10e275ca94d3e9185 legacy-trunk +59280 169a8364536717099ad45b41c155a656c1751668 py3k +59281 5781e1928bca65633bd2ec5c3efac138693ee209 legacy-trunk +59282 7f0e48536a27b35c029acc93f9d47c3d7a8e4648 py3k +59283 a1c3bd382771ce49bae8fffc0008593f46cd7d8e py3k +59284 91d114d1b58513481a834cfb27a29a2e5323900c py3k +59285 486dc4df378968710b8069896b94e379fff23ac5 py3k +59286 20ac4777c0ca103e92f4e2977eab8c52852b7ee3 py3k +59288 803edf9b1dd9143326ecc2e6afac75bcf638b4d6 legacy-trunk +59290 ead0d47b012b592b7abcd119e023614f83a2cad3 legacy-trunk +59291 7eab17be8cb49780b8d0367e0471ba5953607443 legacy-trunk +59292 64582083cb9afa43c0745090013a7c7caba42b0e legacy-trunk +59293 fe6bedafb46a6460eb00ced08aa2b814d9e78622 legacy-trunk +59294 30f54977828b33750b35b6cc65d3869a0ed95a03 legacy-trunk +59295 97210d863d1234c6e4b63d792d7e9c07883543b7 legacy-trunk +59296 4d16ee39301f9c21e9d92cdf69b8a3b27a644db9 py3k +59297 9732685eee172aa76659ecbca6ff2e965d1847dd legacy-trunk +59298 8acd8f5c6081752a2c8a561991ea16e8d9a42b20 py3k +59299 7e89f5cf6b214f4bbf5772d86720ea70d8c96289 legacy-trunk +59300 aa6017a2e8f926fd11942d4d701c2537d44cb389 legacy-trunk +59302 be7a85c34a4c4f87386e8c3de8052e0037a368e0 legacy-trunk +59304 b637349336fd9d1227af073530f950536c778ea4 py3k +59305 ead7a053f5b434fb9c36b9632c031a4583bd37e0 py3k +59306 44d0c71dc3c3b389dfedcf32877fe501b70c0784 legacy-trunk +59307 aeefb897384fb40da9f0ed6d3f561efcbbf8de30 legacy-trunk +59310 0bfec609837ec501abc81665857660bab16b4501 release25-maint +59311 e08b12c3b913643b0ad78c672460c5eceba78eb9 py3k +59312 d75210bbca97af879e646113874e1d667647d30c legacy-trunk +59313 2a43507cd9532eb041bf5841710dc4c8b7ab31cb py3k +59314 825cffd6c0cda7486524812d0326bd7447c06497 py3k +59315 8e74af197e6c0324d9a95af8345dbbd0c79dfff5 py3k +59316 842b3d45bfe4c3cf7b26242bfc22e825cf3b3a24 py3k +59317 04505c988abcf7c3beda26c485647d9ba44e7bee legacy-trunk +59318 ece65c69b1d314e0a1b456971a6984e1893d2bcf legacy-trunk +59319 c8b339cfef1fe5b462dbcd97d098a3ac87742026 py3k +59320 31a3ce38b56c35d9a048c2a28da6a663f2d23c5b legacy-trunk +59321 c9fc4b1f9bc692f5ed973c03042a8146b63ec1ad py3k +59322 0ce61221c63f84f275adf2549b9e15f5ef547fa5 legacy-trunk +59323 60ef9c4e40124dc333c9cab02fbb7da2828bcb52 py3k +59324 7e5042ee94244fdeedea2a3aa78eb22a97f88664 legacy-trunk +59325 53320d544bc7ad92b9d28abb9c40d6d2c6d1a59b legacy-trunk +59326 f0b3319b7266b8f2caae251eee1bab3cb4164982 legacy-trunk +59327 2ffa4f7994a3e9c845fa7c126441d04ef6feff6f legacy-trunk +59329 16ba00168c6aeda46de8195fe108c8f44351e188 legacy-trunk +59330 1e726aeab6a529accc5b48aac3612c76528696d2 py3k +59331 88f86445be773e85a01bee03da74313b96829b38 py3k +59332 82991ff75c5a6e4b7ff1d97f65828684704263c8 legacy-trunk +59333 1a2a6df0fbe0170c81b3e3f137193c6b247c83a9 py3k +59334 fb84bd9500a40ea6adb496108b4a59323f413fa6 py3k +59335 565012d1123df2e2a7cbb9ecb06ddb03d91c32dd py3k +59336 81e0c0e2a8c13844c37970dcb9b5b1591decea7a py3k +59337 af86b89ce78470a9b9fbdf05b726f3f2b271eb0d py3k +59338 9d152530910a650d3cad4af307495a02fdc01c0f py3k +59340 1a7dfb61b4d8e16b7e4652155fc99b9c1e4e5a31 py3k +59341 ef5399b353c95da70e7e77b2f2f3b328a95f4160 py3k +59342 5649f7ce30628561cdfa678ca314aba5067d1235 py3k +59343 334161f74b8e5fdfea10271fd01d3e1156c48161 legacy-trunk +59344 612d8dea7f6ce3239123584d875f530557ac07fc py3k +59345 e4c22505f011cf0670f7ee348680c51554e623eb py3k +59346 63e61c770a932c8487c5a7858c1daba510912445 py3k +59347 c27878281c8f781b68c1180454ff63495953c130 legacy-trunk +59348 5d991080d88e5fa1b1474097f48b147bdab82984 legacy-trunk +59349 26a43786395b4d2b22ce41b3971d5819ed94e309 py3k +59350 17b43901bb415fba28aee909cce68d6795775cd3 legacy-trunk +59351 2785e2160fa6b2724218ca6fccc97cc89d4e17a0 release25-maint +59352 250c4fd4ca542d248c7820934ef21a33e0a1816e legacy-trunk +59353 86716134ed876f3b9f41228441d11f658d46b1d7 py3k +59354 1349ea441e41bbca3ff6beccbdfbe6ca5f140f50 legacy-trunk +59356 40fc840517fc012ba1471c552f0fcd0f609d3335 legacy-trunk +59357 dad9ed339bc3458d60d95c4c7e5e52ebbe296fcf py3k +59358 9340698ae42139086e237bfb8280647fd5b8aec4 legacy-trunk +59359 79afa4c55211dfab58adf4e004ed49ed7d4d6088 legacy-trunk +59360 6200a447daa16677950150f67c280027e81f3350 py3k +59365 320f7ec63f0bdfd27e2ddb91c065b26d5540988d py3k +59366 590a14476019a3c2b62c026d02e6c993ccff9773 legacy-trunk +59367 d33f8cc707cbfe3b91de3dc4e498089a27ee283d legacy-trunk +59368 860ce9755d15bd78510713db3423e1f28ad4721b legacy-trunk +59369 55c05042303b39f054c47213f561b0bf597ec4aa legacy-trunk +59370 a1bc65954a9cbc1e17eca85b70bbe70778e98aa7 legacy-trunk +59371 05da49eb12c14f0348a5ec3c333a931418062dcc py3k +59372 1f722b0854027c5ec2d70c2489ccb4c40b469a61 release25-maint +59374 538476b6d7e052b50a82fdb1a824bf041e3e86b5 legacy-trunk +59375 17c17807a61178ad688ae81b411576f29485f5bc legacy-trunk +59376 d64beb8fad066177f91ee91e7ff76ac0c937b287 py3k +59377 85e4bff37bbdcb6d56f02edf85323b05a1926c4a legacy-trunk +59378 44c090c742026023ca0f0b731526b3c575ad1e7c legacy-trunk +59379 1d98fc265f992e566ccbbf02d3fbfa28a537480e py3k +59380 9ad4aedf349be92a284d337fd3dd28ba0ae11014 legacy-trunk +59382 6ef8b5b8e5d6ffe8b04f6768e5bf3d01f0a62893 py3k +59383 afd2996f202124749620889b62398ffb6f44e176 legacy-trunk +59386 a53ef778590ebb3d0d66e02f20ff911ff22ff03a legacy-trunk +59387 bcc173c3ad7092b3b670e20c91a3fbc09bf11ea1 legacy-trunk +59388 f11dd4d315dd0da67b70dba04fa5a11bdacf9abb py3k +59389 74bdd50f07e5dc3c48a6f422c99e6fb9bd213957 legacy-trunk +59390 71ad5e2bedda27d09c519a19d63761f61b0dc034 py3k +59392 939e812cc09ce7b009b43ab9230cf0711bc59517 py3k +59393 50b03afa0bbe79337afd128e7013222a6a7da99e py3k +59394 c232836ce5c943645400518f3afbdd98ce30dc1e py3k +59395 ce280a04f55e0fe87b5e9ca1ec60d6a11ea65d5b py3k +59395 65e82140e281bf26f2e22eda05a7f9956c420f8b py3k +59399 2fce989da0213cad4864513c034edf50728778a7 legacy-trunk +59400 3356ad62c2a369971eeb75f7f2b1e6858e5422ce legacy-trunk +59401 582d2a83863cc4390350c163b91283e42f2f0f04 py3k +59402 80884643a6f9e7d136c9627d1271447e0783cb9e legacy-trunk +59403 c6fb393b6c8158b2059fc50b218689fd244ec4e6 py3k +59405 70cc7f740d347260a0be62907b4b66801cfa4dbc py3k +59406 22e3f5bd140786338af46e4b2e1cbfa8efcf9b68 legacy-trunk +59407 4de594740a88f996b701063c269a97ca6f9e61b2 legacy-trunk +59410 a71a71cab60825ac1726e530cc9ee62caa54445f legacy-trunk +59411 0bb108a3c0c97ce8b4cce5937a5ae9beafa737bb legacy-trunk +59413 77cb8ff34912acd07d3b19ef51a4c3901c28b611 legacy-trunk +59414 a9877b7ee85dec8c8cd4e97b9be67f67efb829d8 legacy-trunk +59415 624f511ce9f248d38ad08a0273c9d24e0d44c803 legacy-trunk +59416 03945a1d4fb3cf59f8212ffd7b46150246267d38 legacy-trunk +59417 9a976a6ee936691ef9a43ef0c4aaf9385ba7123e legacy-trunk +59418 118e6d68b44a1288ab76e84983143117d41f4728 legacy-trunk +59419 f2f738a437f879c643dd46464d5b9a4c78ace3a0 legacy-trunk +59420 ad8b80460644f1f8fa6354857c23643f9046c92a legacy-trunk +59421 aad65a2424e38d8a72a7c0a2656df039d1040388 py3k +59422 4ee74310ecf988774b34aba5dfb82a58d02b50e9 py3k +59423 17448e5e9671da4b96196308f513f6022d858d01 py3k +59424 699fcdf5bbd74b010844fd41a17caa6ea9cfcb73 py3k +59425 6b517ac10e8ef8e237ad1b6bcaebb163c45487b7 py3k +59426 91ccce741d1141d96d3a3f303c25411645dd709b py3k +59427 6d5f08601f4a95b4215fc5c9af47bf1dfac2142a legacy-trunk +59428 50a50e7521423a2715383934653290a5a870caf0 py3k +59429 a5c4739121e14fd3da1749a5b0dec62e94efc98b py3k +59430 61df5f537969e6aaecb482d3654201af946f2589 py3k +59431 f67ec4eb478a8908c90231aa20f058e6e9c0edcc py3k +59432 44a24b59b16d0210682ddb02aafbadb1c5ec564c py3k +59433 be3b6601f989a68e5a019cd83865470fad9d1be4 py3k +59434 369a4e06fd301162b87fbf80893352bdfc04f8eb py3k +59435 6ce6e2f3dcb2d687f95ad45162c17d33d1640342 legacy-trunk +59436 5ac874d0955636d539cdcd19962a0fc8db2f82d2 legacy-trunk +59437 66dbe12ddf31d76c48a603bd90ef03431fec2616 legacy-trunk +59438 40bfd6f1cc16903322a16c2b70d2d0920ef95118 py3k +59441 d77fd1b8c0c54732093f147123a0c48fe3c25a32 py3k +59442 5abfd07e97d489f25c5de202ef6f34ec044bb2bc legacy-trunk +59443 aac33ee1a8fc73277de012fdd1b5b731ab0768d4 py3k +59444 889a6421f135b59ec242d545072a0e8f9b7108cb legacy-trunk +59445 9cf2bf9461c410d858eacc1d6aeba9ecf542843b legacy-trunk +59446 33ff40e6e13758956e1fe46fa3eefc4dcc2c68b5 py3k +59447 59e64fa3ad1d9ca2e77599930be75f3bb2931f42 legacy-trunk +59448 2028feb94b57552049ae587c474577c7e1aca20f legacy-trunk +59449 444da08f78a4da79f6c717b17eba207ef60d15ae py3k +59450 60a740f5a57a3a17e9da62d4766dfbeb8034b34c py3k +59451 a386ef28b008728836aa9434d8e4defb792d9f95 py3k +59452 12cf9fff9d0aed36d6a2c6fe7b4467f8987ae5b5 py3k +59453 6b35df40bcacafd6d2d5caebd93690f06065281b py3k +59454 76ce597c72ee0e1055e5c7907a8cf5842de7189a py3k +59455 47895ca6f0cba8fb1a8f75902715e8a503e107f5 legacy-trunk +59456 1b0ce9ffa9726d5394c48b9b58d9133b35fc0532 py3k +59457 682d9788a038e72fbabb10034673c1c6fd004233 py3k +59458 66ce3314c19820a71ab94a86b290d98f2727ec8d py3k +59459 24749a3804093401de8031407f780ce66ab0dccd legacy-trunk +59460 eb65e105e4b8cdada200a952bdfa94a48258b57b legacy-trunk +59461 a4aab72c2cc0bc494319d21105e57a5de8478ef3 release25-maint +59462 2c6fe2dcc88ea1d81bc5c21896435d6f9c512e3f py3k +59463 e65e9c649cfdafb38c34a8843a19a8329f2bc4ae legacy-trunk +59464 f909872917b95d9b3cdd9ffae85450953cbb5752 legacy-trunk +59465 7ae604b3533b536354da31a3c3e37f8b50967b7e py3k +59466 b5239ccf94b5ba7398a7c717c461483bd80c02d0 py3k +59467 727af161ca464abd2713044acdf5f5134a6803a0 legacy-trunk +59468 2e19c3e511bf5939f63f46eb643de0e7127b0d16 legacy-trunk +59469 3e0867a077657e4148755044e1bd836248d11a21 py3k +59470 eb2260dcb365fde6511f41afc4d824a4f29289eb py3k +59471 a6d1059f22e2cd1404ba0a02cf228d5247b44d9a legacy-trunk +59472 4ebba9b2688f4072c17f59eb4a94d4030bb558e3 py3k +59473 66d4796ee92cbfc468df8df76c3f21c73d89e1f8 py3k +59474 9a09d442bce27b2d7376fd39bb11bb0c8e1f7974 py3k +59475 9929782f5cb48d07b445106c235db226281bce81 legacy-trunk +59476 0170714eb0442158c310a24fdb487fdaa1171e29 py3k +59477 e176b4aea9c50f5a19d2ac5b43d486b6cc14fe5e py3k +59478 c2e72feb53b36ebc150a9681b418e95570892b30 legacy-trunk +59479 541052b044f09e31096ddd97e629cbeb8b7c405f py3k +59480 7a8c8c5685fccb14ffcb6f6f7ca60b897d939f6a legacy-trunk +59481 6ae94a2ba5dfafa01a0e439d175951da9ab7d640 release25-maint +59482 226a062ab43ef77797794bac85d1e185f562be5f legacy-trunk +59483 d8e06543cdd80e345ede16c6e2a27f049e7d5ac5 release25-maint +59484 589262d81e298feec708632fdc8b789c165b627f legacy-trunk +59485 f04c0365c9aafbb39e8b61dac6cd62ea514018de legacy-trunk +59486 3096b012733e19a4b9bca373050198206f00f9a6 legacy-trunk +59487 66ed6e03ebbda9efa32129ad7762391d12fdedff legacy-trunk +59488 71623878057b2e4fdbdba2ab4f5880108780c986 py3k +59489 44c418b2bf7f6609ef7210b0332dc804ff0f55c4 legacy-trunk +59490 7a62c6d9107df982df1f75bda3555ec32343de91 legacy-trunk +59491 294b1a79f2019abc02d68b195b2e9b690ff9bb38 legacy-trunk +59492 635a2328011263d2957caafe63d4b9c562d222af legacy-trunk +59493 a327f3e2615611bc5483683a0e09b3a4102fbde6 legacy-trunk +59494 3c8b702e5f2070eecf10471f4cf505a79721635e release25-maint +59499 961e89cc7911c0a6c039708c3155567314014e81 py3k +59500 905a96997b7c80eb2da3337bac95b878dcd9bc7a legacy-trunk +59501 dca95956730fc3f61970a6efa3c7b9d06b1ead58 legacy-trunk +59502 7da94757ec5bd3f78f86fb69fcd1e18e8f195c08 py3k +59503 20ed1d415409eac0a91ce70e70d2b486920ca58b legacy-trunk +59504 1bb9b07a01dda1eb93ce484628c93e1f6aed7bda legacy-trunk +59505 45c78e50cbd5e0e5e7dadee77822b4bba66d3dcd legacy-trunk +59506 19f894ae864af1da2a3c24e34b87c112625f9c75 py3k +59507 14c5d275ddf1403a6e2dec706e5c5c3ee6efe3f8 legacy-trunk +59510 1157068462b538ec8ba064b397e277243fc5f0cf legacy-trunk +59511 06d122b4bffd7aed8bae46ece578a58b749d4037 legacy-trunk +59513 2ce50a260f53d423b9631be4f16c4b2860b90c52 legacy-trunk +59517 e70acbf26cda880e30c8fa2188d6b66b0cbc893c py3k +59518 303727c58b51e014a6369df715eb01263e4c2418 py3k +59519 043ca9b66f79722009359dc79ce9c25e4689f411 legacy-trunk +59520 618ce281a55f84521f6b2a4d95d9e9e9c3f2b864 legacy-trunk +59521 4c0eb587482f60ca211dcd82c6e2409044bdc287 release25-maint +59522 aad90ebbfb504bd58363e76b87b956888aeb190d legacy-trunk +59523 a649aa52b0799050013ab2041fc6b340d996c99c py3k +59524 ee11746212b2bd25e5fb885b16f606d7b1ad00dd legacy-trunk +59525 5a50a5b570b02e6f362bb6e239d064fd7f081d43 legacy-trunk +59527 9b40ad057d59e207caf517b2029c10087295cdfc legacy-trunk +59528 211abcfb4928b2c171d5e28bc90195ea26273113 legacy-trunk +59529 a463742fa411b898b22e8d9d4c7008398c94eab8 legacy-trunk +59530 7791a5ea15c384ee2e5371f662af25406f39e22f legacy-trunk +59532 e97f105d1c8340fcabafb2b11aeced35f5daf248 legacy-trunk +59533 a14489f6db6f92b8763f790167b7c0c38217ac4a legacy-trunk +59536 a2d0c6a889098010956412a1626d5b68c1d1751b legacy-trunk +59537 0a544528dc9f5d77765f6cc134067c02789f0de8 legacy-trunk +59539 05c501a953087511f15baa0e1d9cef7c8cec1452 legacy-trunk +59540 09f74316d5fb5580a9f6b780a5cd27cce1d08063 legacy-trunk +59543 75c6bfd3b1f32ec217ca731e5c554f9ff310faba py3k +59544 4a6c06a77deb16a078c4362efc4ed67994b2ebf9 legacy-trunk +59545 c0f2cf4389c50288801b7d8c15f2ceb4f236205b legacy-trunk +59546 11b6f5b68ad1a729e07c9a0839db779f66ddd034 legacy-trunk +59547 56f342c84e87075ff6c96a67756a9ef87c321d69 legacy-trunk +59548 07aa19170a673da6b3e8c4c66bfd868b2f90c0e4 legacy-trunk +59549 b5b3080b360fdeae43aea807dc90a63c5b27d254 legacy-trunk +59550 eab002b8e17e8e2e8487691d7bf809140736e0bd release25-maint +59551 b59c328bfa623e0f9664a9627b95065a92af3173 legacy-trunk +59552 a99128f6c97df3930fc38996b07a29709d0d3a5b release25-maint +59553 7ac117b3be37eb7ae32970787e631b22aba04994 legacy-trunk +59554 15fbe7c7928497391771163150fd0e89db63196b legacy-trunk +59555 958581098151ab761b61ffc9917e626109508283 release25-maint +59556 dc884b6050d45fb5306b517a4c39153d08098070 release25-maint +59557 f8d0faffce8876f554bf6e185cd29e703bda61fd legacy-trunk +59558 1d69aabf6f7f22746b4c7203af5c9b019d22e32e legacy-trunk +59559 d51b39c2160a3b855f4f265c420c4640d7f574da legacy-trunk +59560 a28ac9b67bedb56aa1e2473818cfc1298fe1e1d8 legacy-trunk +59561 616fec0eb514b651060c409a3928d4a9b05f96b2 legacy-trunk +59562 e2effec9d5ad7cf096fdc40c6bd35aa5cb1efe3f legacy-trunk +59563 4dc01402d78afe2c9b4a4bd8004eb08e2647335d py3k +59564 26384b8180c7a55cd6a2ed44107cf4e339025ec6 legacy-trunk +59565 86a2679dca464a284fd02b81646f2692049a2ce8 py3k +59568 f7bc79112bcfa89bbeab035d8bcea43e82fe89d9 legacy-trunk +59572 6314b9f8a7e03f0c57e995438a49d891cfad0d32 release25-maint +59573 b1347c68d45685ae2c83f52c20928946681ef394 legacy-trunk +59574 b89b0334372ba83abf4d2fc244ac16be3df97280 legacy-trunk +59575 51c175c86f36bb3bed133a1b0a148f3e2819e5ce legacy-trunk +59576 174e0bcb2c3c132a26c9f04d3cd60fd9f7df1cfa legacy-trunk +59577 0ad12c79af185df838f216f776e7443e1c239172 legacy-trunk +59578 bb716ebcb082a1e79442e625813fa163bc468d1a legacy-trunk +59579 8d4d335369950c1202b33fe9a58d56de15dca622 py3k +59580 bad55a585959b11f9341c96f614eab1a75545ec2 py3k +59581 55dadc8b68fc1942fce36bd73e4852fb6d89ca08 py3k +59582 210c507dac996184821781cb13ab8feeb9c932f3 legacy-trunk +59583 6ea0e15ce5736df76da51b25aecd43fff7c31d64 py3k +59584 8dead6f81bae01be4cd34bc9b5c94c5bd3c8f04b legacy-trunk +59585 83ced4177eacc493eb5d56e4e0d0c2471dd8040c py3k +59586 eaefb93b5ed4438406fc7f80a10ac0352cbf5aef legacy-trunk +59587 32dd9b7773c3c21d1f516eaea8ff982dc6041b62 py3k +59588 445410744fd637359713d0d23176d8ab495bbb36 py3k +59589 bce70a477f1da3da3493beb4cdcd5fc7e39ce0ff py3k +59590 2b03cacc1b6a4e1ab58129bebf0c4552c918ba24 py3k +59591 957baa37ce0d4f4b15f27bd0b43041ffee5f08d6 legacy-trunk +59593 c8d31279fcdcb6a712a9a35606f6f2c5bf31c5f1 alex-py3k +59595 2750d531fdc023dbdb402db62fb19cc83f4da733 py3k +59596 863692dc411ef01f0c64202b5b15a4038ad6c838 legacy-trunk +59597 5f59123e781ff64c581a3feeaedcaa8cec877c96 release25-maint +59598 1db6243e93f29bd2c015989ecd9ff12a3358084c legacy-trunk +59599 db675211c2f7531162fd785ce2f9c09f865d19af legacy-trunk +59600 b9be117b282c37bb35ca920225b95ca83a694581 legacy-trunk +59602 edb6aa62753bc7907fef3ce4f336612959913be2 py3k +59603 08468a263a95818f9b0bf7a966ff32db05fc67e3 py3k +59604 eb695c591e704ba49731ba97167b56ded6f36ceb legacy-trunk +59605 71bb70f6097b82004cd1687d0d5d455a76523387 py3k +59606 3625234bf3d2ed36801ca0c64ed4854f053424ae legacy-trunk +59607 da2b105b0c523f4fa392aacbc383e103a90a65eb py3k +59609 5670104acd3954951cae2f32a99d1998926a41a2 py3k +59610 7d2da1cd80a11bb6f548c64f26af6e450d03043a release25-maint +59611 f2922735fb7ab29e302b4993a9c69b88a5242406 legacy-trunk +59612 ae0f2ea0409f4400dd05311038a20984a7c94b78 legacy-trunk +59613 1fcf1e6d8bb1ded95abf57ccf39e0bb85d9eabb7 legacy-trunk +59614 86358b43c8bb25c1b92a1fa1df85fb963922c8b7 py3k +59620 95cf3d53cae001be6bcd843365243e50e40df8f6 legacy-trunk +59621 83a138fdfdfa9818a54bbe22285696f0316fefc7 legacy-trunk +59622 742d65961b1fa6cc4b3992a71dd3956df7ffd9c0 legacy-trunk +59623 3715f0374f6ae7dc189e2a1a593b0e3493a88ca8 legacy-trunk +59624 a6319ab49e0a3fbe428f7aed3cfa79ad2d944ecb legacy-trunk +59625 6556f3f22c19f1bbee395b550910bd84837fc01a py3k +59626 f05ac14511ff62f159052a71079d6be670f2e2f1 py3k +59627 1eb498237ba5b58d1abba13070f224664f9731fa legacy-trunk +59628 446e8b607bd3a00f3cf96ac31772ba2a915bd887 py3k +59629 41bfbfc36cf7263a13930133467770174012f0aa py3k +59630 81b3ac59089c18a41bd905d7ab1e46881fa8bcaf py3k +59631 acb6a4b2c07f31eb6e0088259e9792899a638789 legacy-trunk +59632 4251853fa9b9348b2bef972eebbcf46bc419a35b legacy-trunk +59633 3ee5de176e7852ed6be8742b06154fba950a7289 legacy-trunk +59634 7a86b20c5b4b1d3c4331517a18959e8e081505eb legacy-trunk +59635 eb1207513ee7dee9a57c57e5f01ec1bbd1269427 legacy-trunk +59636 dda29e71281506f1d2218a6eef2477ce2b04f1a0 py3k +59637 46d54011e1e563c4c3878ec83c1cd1be0797e255 legacy-trunk +59638 e366c44948a3141c8cb356f44ce857d0be9be680 legacy-trunk +59639 607e68cb0948d707abc8f936a7b7b7403ec6f226 legacy-trunk +59640 9380d5da77168e0e97af2620c722847f91d9b920 legacy-trunk +59641 901f70db3b3404008e82408ad00539225dac5b87 legacy-trunk +59642 eee1b76a94e0118a06bcce66e0b333723c034deb py3k +59646 652f7ab5918b2f7d9cadaf0f4c2ce44dfb137dd9 py3k +59647 3ff778a3541048bfe88090168173277d07d1cfc2 py3k-grandrenaming +59648 9b2e2551afbe37843ad9d7e6175a2f4b6df083c5 py3k-grandrenaming +59649 94a29373493bd1004fceff50c40ae97b10af5fe2 py3k-grandrenaming +59650 f67b2e83b3475dddf9abea2b146a86d58ebf95f4 py3k-grandrenaming +59651 db0c8b41ddb0d5e4c29d97b00f8e64e0d91cc409 py3k-grandrenaming +59652 b988e4d35ef3cd0d65caadde5f04ec2e3f53d9bd py3k-grandrenaming +59653 a1ff2faedc6be8fbed66ca7978ae65d1d4a6bb99 legacy-trunk +59654 d9a4a5f0121e18b1de8e3fc64410183924abb127 legacy-trunk +59655 6c0c53b9f37b4f99471e629cc4936b7921e794a3 legacy-trunk +59656 1a548a654c1a3e69e0e505544160af71de758f25 legacy-trunk +59657 9ab31fa36fb52fc132c57b9f463070ab42391602 legacy-trunk +59658 f645e07d870af596af1ce0ef71cbcb770ad09428 legacy-trunk +59659 f0e9c3d16766d246af850000cfcf54d5b05e8b0c py3k +59660 da30877f977999420dd8f38ce34112fdc789193d py3k +59661 099a17e2d2bd49f34bafaf16406cdb9b9acd8d35 legacy-trunk +59662 66bea91324cd93370fd0c64adc51e942d5b8a95c legacy-trunk +59663 1e6f27b6973cc5a0672e3be9cd8c595d8b148476 py3k-grandrenaming +59664 899fead9eae21b6a0f998ef043bda38fe029ac1f py3k +59665 e907f814d9a30719c8b7b6c7c0ac1dbb6b55ebdc legacy-trunk +59666 66da377ba810789332c0add2b0c426aaaaa7ec30 legacy-trunk +59667 6e93d2d6eb2801dbbd1f490be7bb9c271fe532f2 py3k +59668 e9f480b4c133cf6e9ce5db8b887a2b3fc88ead2f release25-maint +59669 5cd28f010fc71ba0ac97023c262d92976699703b legacy-trunk +59670 4ae3007eb0f471604e5e3cc4d616737661a4d4cf py3k +59671 4f9723d9ca320af67e9f60a2c197da2e6fdfd30e legacy-trunk +59672 8386eeda21c8e358f9a4e4ab03edebaa6b1d1990 legacy-trunk +59673 a3f186790ff6e09aa402c8c4eb18a19ae94e7ff7 release25-maint +59674 18a1bc49a696e05dd4e635b95695125362635150 release25-maint +59675 4c056c0a0b9f56699a79635367137c5856e92ece legacy-trunk +59676 968bda81e6c80ba5ffff15dac7788abb86b7b19f legacy-trunk +59677 27e4e530cf2f6f06957a5e529ccef5c6c7c67662 legacy-trunk +59678 0cbe94bea2c7ef610dea7b05d1bab9f04af9af44 legacy-trunk +59679 6208b17d0dbedf0de82d90d0d9d0458417d0dd91 legacy-trunk +59680 b91ca87e6f3272147f94ab65cea768b249420307 py3k +59681 fa2f7183b1afc553c17b7e6ae5d33825a8a01fc4 py3k +59682 c73210ea61c86516eef022aba88c78d1a0fb2976 py3k +59685 036b00dc9767f75e23005f43a578ed254946091c release25-maint +59686 53ac3fc69b78b1fde0825ff36b8c4684b71b4dd7 legacy-trunk +59687 8d69edd3d290287e9fde5b7e9b9a51a406ef1e1f legacy-trunk +59688 17359c9a4a7d27a18a236ca6453f439ddb339b63 legacy-trunk +59689 5e0170d3c4da544c9a17f1a6dd3ba6cf27513d51 legacy-trunk +59690 94629c95965a1184f33c082c81e1e1a3e45e3836 py3k +59691 cf2667e2ba2f5e2e4177cca01b5ecb5d9e3015d8 legacy-trunk +59692 5171b5ae688a217b9ec8ccb7a3d05e688da21d57 legacy-trunk +59693 d1a36ddbaa492e926799c547cbb95980e825c23b py3k +59694 cba9ff76043048ec2dc7b3204c0f5e144b31ac53 legacy-trunk +59695 2986bb4322221721abe4ba4869ffe0e70ad8706b legacy-trunk +59696 de00af03bb4d569554adf9dcbd3330cb58b097eb legacy-trunk +59698 dcdd1ba096410e97c1094582731bbfc72af42eae legacy-trunk +59699 742caf5355576fe6edf36391e4467348f01bdd9e legacy-trunk +59700 ad2bcbe83fdc2fd14b759d15ceacdc7fd6bee611 legacy-trunk +59701 7643a43f25a1e697f16b23f2acf8f0c6dbfa1772 legacy-trunk +59702 13aabc23cf2e2c0e2259c9b50668945818897438 py3k +59703 61c164f25435642c33aa6662f9f693ed415b94c7 py3k +59704 76a89dd4a51237277be555814405253e3502e553 legacy-trunk +59705 d2c1ba09929083c825664e0bd8a0d4a169f9d99b py3k +59706 398b6246759fc2d2e3cb4d03af5e18a19ea29583 legacy-trunk +59707 77c37e32fe35b5c072543eec9801380f6a2642af legacy-trunk +59708 127cc2fea9fb9d15ec0666dfbca17324ed31171e py3k +59709 dce25948918d0d98a0330dd0182b95727f462bf4 legacy-trunk +59710 81669fbc845f12497c64f67952a43a7b3bbd3ffd release25-maint +59711 5d7d2af59afe1cab521a66de7adf112bf9d741f1 py3k +59712 bd0258df330ec5dae9b16d2dfcb82ef8f17205a4 legacy-trunk +59713 292c5e51a0e59618ef8a8b48e0038b7921c46011 release25-maint +59714 9019086fd20a4db752f27ba67a33f8f902f9d25f legacy-trunk +59715 d077b0c893bc65619ab730426666e577e88a2852 release25-maint +59716 bfed70277ab3b6865379f7a38589357b5ef6f4c3 legacy-trunk +59717 61341775bc42172315e18eb144f7a74517de6ece legacy-trunk +59719 83ca735a3995a72155f6a0fefc6062b2abbb149f legacy-trunk +59720 646cff096039bafa5e9cf00bb7e0bfc83582e92c py3k +59721 73bc002252bfd583bf6fe5c2dd2e1d24e2032a7c legacy-trunk +59722 34c91df6053299906418c9c5c9a3e3fad94126e3 legacy-trunk +59723 57c7d42f6cdeb18a7ae2396dd2b756dd5d9005db legacy-trunk +59724 2037f4cabb07ccda63de3f21e81c6351d56fba8b release25-maint +59725 3fcaf6cc306d1e4e6aa9fcf20fae760f17eca4e3 legacy-trunk +59726 2e2fa291914c53cd4d4dba6be2186a02c9ef91cf legacy-trunk +59727 dcc7c865c77b1017da92038f13a224ef0df7754e legacy-trunk +59728 7bb91b3ba0ecc2853502f0e2e8404bc15c8c89e2 legacy-trunk +59729 5a0cbe36a6037795e3a0d5f1f2bd0aa9dfefc84c py3k +59730 33a0ae70670f4369234d88985530e6900d24eeb6 legacy-trunk +59731 94eeaeeb3ce93df8d2b3a711e760765d26f3d088 legacy-trunk +59736 e48b469d1d866b77e5b67bb200ac4df23d3bea6a legacy-trunk +59737 777429a2302667f1d5633cd8442e8d2d9f3c84ae py3k +59738 c0c2369f94267ea150ce2e2e2fec637e74f18d8a legacy-trunk +59739 9caf8a7b11a6b89c1793bc6f4d4c08cb85c9d4d4 legacy-trunk +59740 bbc9e8c08cd5eee37c035e911e104c167c4056ac py3k +59741 fc8186b50145b9d2b7f2d014d5e9d985e086c455 py3k +59742 0c0aebc6656f94d253344ce4a12a033f38976b37 legacy-trunk +59743 3c6f7543bdd6b4aad97889063cf4cb7d95618b51 legacy-trunk +59744 01d5b8e7d121205ec7b21a8af0d73a48ecbc488c legacy-trunk +59746 1426cd136739fbdee27fd0674ecb94683e14b366 py3k +59747 31e294d08ce1c9df3f286c52328679fc15b16abf py3k +59748 bd85879effa69dacdc9951c875eef4465f24763a py3k +59749 d00de0cf04e274f023a2d241edae38598e69ab66 legacy-trunk +59750 0f1c8bab898dbd9bcd39c4663221dcd37b85067b legacy-trunk +59751 9d8b953d4af52ecabd06d404ec6fb29f40d4d4c7 py3k +59752 edba0a1b7ebe108c6b72152bd489795554d0e6ed legacy-trunk +59753 244bb31c036bd54d731eebb800281c7e2877a038 legacy-trunk +59754 115da2268cd9581123b4997a807d0782d4dde7c5 legacy-trunk +59755 98cc1cc57573cc06c2a7e4d79a50bc38808ceb06 py3k +59756 08138bc3c060ec6f346b2916fc4189e7298f7da6 py3k +59757 4e74c27678ba15ce9864de992f307d5b267787d1 legacy-trunk +59758 65fe6e56d4f8d5c9a2902bee9db853dce864b43b legacy-trunk +59759 afb1337906ae8a52e8ebdab74b5cf1c64dcf6688 legacy-trunk +59760 281c9479142a3e4aba06b2600e84b7bb34f77692 release25-maint +59761 8bf6a9a3a6329be39cd00be80650489dd85f18b0 py3k +59762 56ba791d8b35923547bf2caa37c39d8ab497f7f1 py3k +59763 2848ffb9d17a6c3c9b39266aa708226f9da5b70f py3k +59764 32681ae6c5c148855fb746d42c111c4b815b8643 release25-maint +59765 7a2065b5be75b3235f592885bd1aae70ee6faa0a legacy-trunk +59766 bedd8bfd3fd2680479044654eeee2f81930d5062 legacy-trunk +59767 fab2aa6b80736332dcf1301890aa847c45616e05 legacy-trunk +59768 e5bf6696e2e36a74cc71a0c84d4110ee87083709 legacy-trunk +59769 3bc0405de4915d487c45deca3f5bbdf9f5bcbb01 legacy-trunk +59770 4321a5abd6ce2e2d7d662d15ffff0f3a4bada057 legacy-trunk +59771 155f5c36ff929561ff2b547922d5b5dafaf8ab60 legacy-trunk +59772 79a34248a262fba9a427eae864bf2f36bc5836a5 legacy-trunk +59773 66197f8d0fdf0f87270306315c9b6b4c738c6d40 legacy-trunk +59774 507e76d7fcdd5c5bf685ba5b45bb5ccf9da83c02 legacy-trunk +59775 64794ba9e25ad5c1c92ed314adcf685bc7a8ee32 legacy-trunk +59776 99f6370c6cd0584a7520233c01b0ae7e4dddcd0e legacy-trunk +59777 d8979e6429e5ff8abccd2d0487e163b9e657a297 legacy-trunk +59778 6b3aae5c69bf2044e2593f0c22f203190d58a51a legacy-trunk +59779 ed758f6a97bb10cac539c5ab09d87e794b3282dd legacy-trunk +59780 090083a233f8e366de8cc9e6d6e2ff29f117a90a legacy-trunk +59781 b24888cb955333584c8c58940f740860bb89cd59 legacy-trunk +59782 2acc652e58a19c6c3d60817845bbb926eecaeb27 legacy-trunk +59783 420fe6d7d5f45e5f9fee4a24fcebffe2a6d426dd py3k +59784 ac7deb1c1d3ce03ae7107d3f3d34e8bc015fafb4 py3k +59785 8eb96363f1d59c2b75ec514cd9fb54eceb9d6096 legacy-trunk +59787 1811eb03ba00c8f9371e05acee3f911d32e470ef py3k +59789 fa250a58099fc4aaa78a56ee1fbec27af0715a20 py3k +59790 7cbacaa5f8858f49475bd5324db189eaa445bb94 py3k +59792 0c4d258a5b25ea0fda59c656fdd2bc2f34c87c38 legacy-trunk +59793 d0465e782b019103c8a845bb5719f29f300360d0 py3k +59794 674c9b89d1241401ce2fb5c30c7e3804bccd28db py3k +59795 b8e34bcdba45483754c4cea304e8440b82e81f74 py3k +59796 13b7ca04bd70e14642ed6d97b10e85f54c399b0e legacy-trunk +59797 974f0320d6b3cd9321d2a92b6c604c8c05226b54 legacy-trunk +59803 42646a872772efada062092cc3cff14145c3a02e legacy-trunk +59806 05bcb790ef6324be8b7d6f2a00642d6b5cc3c0d0 py3k +59807 a8697afbf17ef5c72c05e39cdf5ce24fbc4a0b9d legacy-trunk +59808 45536d5587d477032501a1c536458f9b4e4b3ed2 legacy-trunk +59809 f9c950e8f2e0ae6fab2937ecc3d722abdaa1ecf6 legacy-trunk +59810 b6ea52993cae50ae656043fde70501df569105c4 legacy-trunk +59811 f27074d147f4e198a7b308792b1b5bc8d454bd68 legacy-trunk +59812 6c4b0cc9f6c900bb25b4921e21fb795bd6f81225 py3k +59813 7ea231578b02dfa03c78636e83e60e2a8f4f5edc legacy-trunk +59814 3a944935c610da4fcc02b4b19829cf557c087688 py3k +59815 864e679a0e850804bbf23ebd34ef068b966c170d legacy-trunk +59816 4d23f5a7d4c9609c3034fec394c038a1cb740e7e py3k +59817 19ce9ef34b6233cb383558cbb77b24bc69cd26e4 py3k +59818 b98977f0aba1c657c400eb1daad559222cb8ef2c legacy-trunk +59819 ac51cfe5c5c6b98284c367444186f7ccab557390 legacy-trunk +59820 f3c1f9c8ce9f106eccbf1f4376c2b002045a6a61 legacy-trunk +59821 76fceb58bcf51d1e7993264e7b1c5afd46ff1b01 legacy-trunk +59822 06d15da1f1258c44545440302befbf8c15ae1a77 legacy-trunk +59823 2cdb661675f9c03d9a962d68a7121e3ccd77f449 release25-maint +59824 599f22a349a24fe3a990ea1cb538757200c15dcb legacy-trunk +59825 cdc285bd0efb44e7a4906c1db3e111a8922218de py3k +59826 305d7d2ce04701b41ce094e5083e006e75da5206 py3k +59827 132d908471c838b91055cf30041414f5026b335b legacy-trunk +59828 0aae14950e0bc2bd37f0f461a2478dc5716d590d py3k +59829 3b3ab925b261e734b64e3d1f05881436963ce949 py3k +59830 db5e01c33eb7633c013a514d279af32479889b57 legacy-trunk +59831 fd532a9b281063833918864cead795cfe64c6e52 legacy-trunk +59832 6b715ea804377468fd96e154f8a38b5ba34c7a49 py3k +59833 cf36e01e83f20e740e9135b9b36bf48d00da0caf legacy-trunk +59834 addc18596a157535e0aeda80352af5219523e6b7 legacy-trunk +59835 ca1415c6105f7fd0de7be1cfdf0f5733cd6eb0f7 legacy-trunk +59836 19e1fa78d330549f42acd24f242ca45d551dc7d7 legacy-trunk +59837 5e024e91ee067d751a9429082cbe9a6f1367f0d3 legacy-trunk +59838 e9756266e0b9381403848419b170ee2296f2ac34 legacy-trunk +59839 6d521603e07de7fb788eda5e8f8c954292d96c4d legacy-trunk +59840 c75d360ab87b387663a1832c42a054ab7ac3bcbc legacy-trunk +59841 73e1bf179a01ad7824ff5aa2b29ce068a457cd67 py3k +59842 236e7526abeaf58f05dfe97ed5cce2f2e9aaa890 legacy-trunk +59844 42cf59ccce662b7500f774a94a61fdbe3d57c5ef legacy-trunk +59845 a2938c55200ce4a6dc1cd0d510a89cef241de3eb py3k +59846 fb5a6330f71b398fceb0e405202a88805ba1cc14 py3k +59847 cc868fcf505aeb59e413c298191a33ca869ad99a legacy-trunk +59848 a5b7f2d8761d5a1d2ab26e21f3607a3aef692a79 release25-maint +59849 60b54801b64632e80da4114154ad9c40474a1128 legacy-trunk +59850 a1dde680e69420f7bd2b810f29a76881fa735ebb legacy-trunk +59851 cb22f8748da7cf456b86eb2f70f4bc31e92b458f legacy-trunk +59852 057de46ea17e21a60c4b69022e31894988239282 legacy-trunk +59853 88d76b9206e667326a3cf81df28ebc6f25d56111 legacy-trunk +59854 d1a1ba502579e9e22255a78d7b6f8e30c8367243 legacy-trunk +59855 76c765a74fb8cb4385f902705fafb664de3efcab release25-maint +59856 5fb9b2f6bacb7c6be889b0004f9c6d7a11ccabe1 legacy-trunk +59857 088b5077c900c8d4873ddb5e9799887276dd6026 legacy-trunk +59858 f45eaedb920e2055ef37e12fb1d3bed4ea4062c0 legacy-trunk +59859 9a60bd8f00d6afa9042fc2821fe0a28b613d2c01 release25-maint +59860 76cab8678916e4d4a80b02ae3d18f148f8d4a593 legacy-trunk +59862 47e78c2d16de0d4300e6a7c2722f536e89ea5326 legacy-trunk +59863 b7d1b627a7d51e4d2b22e009170eda539d926b9d release25-maint +59864 94ab572ed6ddf36080060279d9b71f0fd03e27e7 py3k +59865 33440919961243214396fd2952796c8c09f6935e release25-maint +59866 bf7bbd8db1a82d78259ff9254c0f4cba2332288b legacy-trunk +59867 5f640f8f92f48d4dbd2b893302921edd0d193c96 legacy-trunk +59868 1d74dd8228db0cc95bc70023ec3e92a7cbce9d3c legacy-trunk +59869 10ebd027c2439425dc125b342f1ac1c154196d3a legacy-trunk +59870 50869e747e76e9e40a96839504f7db5b8c617168 legacy-trunk +59871 9f6aa498498d285c1a1acdd77dfe6941a2555035 release25-maint +59873 a60f92ba0d1ed5631555b2c29aa05707f3b13099 legacy-trunk +59874 6776d6ef201a103758b4bfc127e939d56cfb9ce7 release25-maint +59876 dc9d95b717c57e3e61f4db29edf90d9657ee58ee legacy-trunk +59879 9a97908b4c97ef91b1d2db512364e171f52d79bd legacy-trunk +59880 c9b6be481657dd96281cd02687a451632706aeb7 legacy-trunk +59883 a29adc3b0f266b636c962e429c140a0bbb3c1897 py3k +59884 fae9cedb9146bdf162bb887bc3839d71f755a147 py3k-importhook +59885 fb287415aca0e6fa5d2a329e28a3604c2f013433 py3k-importhook +59886 a93e0e80c18a01710801487b31dde9c0c9a59344 py3k-importhook +59887 76a461de15444410fe1905d6ae7a7a7312b72d1b legacy-trunk +59888 42676a4840b5a7110accc682c76ec42c63178977 legacy-trunk +59889 b446cd61388f05b5fdd5e657dd1baa1f27b85d00 py3k +59890 d8d7a78c6423c1a41622c5b67069b56f0821055e py3k-importhook +59891 8969d74d0d22f319c7c45e64259ad74775618751 legacy-trunk +59892 c3113914e66e9e0d66939ac3e1a7fc8acfd22431 legacy-trunk +59893 af6f345657b4b7941f31fd4ce6393248face6e45 py3k-importhook +59894 20578db07629a20466f54f67bb8340f8b82bb213 py3k-importhook +59895 dbafcd827979e097e09ffea176341fb6d52b97d4 legacy-trunk +59896 e753e31a0c8f179438a19ff74690cee07403eb47 legacy-trunk +59897 df856e0e1b2a089c941df4c2a31730d75555d852 py3k-importhook +59898 69f495082412672734891f66e228a629de6e057d legacy-trunk +59899 60126aa3b8169770d798485b2f75bfe9e1b8e5ed py3k +59900 7851e75f5438ca4598d305c6c99fb9440fdc0d7a legacy-trunk +59901 403cfca9863fd2e308b045e2af18c0f6d2afca48 py3k +59902 5dec4ade8fa95284b060e0c543f30436a10d007b py3k-importhook +59903 8058e16820ef860e4c90c47e070ab3bf76f89038 legacy-trunk +59904 354be0dafe54b222af25a93dc985efbc287c9b57 legacy-trunk +59905 3cd9b877eae09a35b9ccd795de75d839729a487f legacy-trunk +59906 785237fa5f401444c31d617ddc06e010a39e8fa6 legacy-trunk +59907 6b0b5edfb1b785c1691c7cf69d5982711c499dec legacy-trunk +59908 06f9f51ab8c03ddcbb1d29a693d260c81436a204 py3k +59909 be04ee4c4fd7345869c9803d5d10b81dfa192ba2 legacy-trunk +59910 2ad3e35c5825c37f28b7882babda3337535c8171 legacy-trunk +59911 af3a0ca1ab4a02be2a593186a430463dcbf37b91 legacy-trunk +59912 62f6d780a11de037346375af8f5fcb9662d8bace legacy-trunk +59913 3cc3a55d12334513fa736a504573e7b6218aedaa legacy-trunk +59914 94261f3027a593def44a3586d130b8d6148db9fe py3k +59919 59a82cdfa137e88b8cc36d655035ca7f4e9b7093 legacy-trunk +59920 aadcda7a4bf7af4ee3a09b5012e4f4a2d5568961 legacy-trunk +59921 d8e4342c145e6b5a88a1491c54f1f1f19dc6952a py3k +59922 e7b82101b970f8ec5b10e55e9d9d9182d42e329b py3k-importhook +59923 79579fa8d752f2bfa9443484f4a67601b77ea650 legacy-trunk +59924 f0b933f1298267d8e6ca35513628179c70beb4e7 legacy-trunk +59925 a220211f83313160291bdf5fa76656e230f39052 legacy-trunk +59926 d5824fdd9a15f0fd7669cc78cb1c2cd119a5be5a release25-maint +59927 776b4e059f836a1fc1241cad73bdde6b1b836fc5 legacy-trunk +59928 3af3fd3887ee23e495c222540fb110ecbd8abcb9 legacy-trunk +59929 7b798548a4ade4d026f5e9d8d9c8b2603bc239f6 legacy-trunk +59930 7dbc3f4278ebd34fb71f0480e267c9a8f087dc85 legacy-trunk +59931 273d37bf23d3be2d32ac288ca98b2ecd0b693261 legacy-trunk +59932 a54cc4772e7373835b96ce686c289fcab402d8a0 legacy-trunk +59933 5a71dcc71eff76394d359992772a0d9a0d92a794 py3k +59934 5351105ff808a3170a63c6ef7e7c8d8095abbce3 py3k +59935 4ca8acc9bed71548927ea8275fe9ca00b4edea58 legacy-trunk +59936 3f65bcc8966f29d8908e0ecae156ee9dc2588b21 legacy-trunk +59937 b672c015c2db84ff46796313670528d307d04e68 legacy-trunk +59938 9468e606361734e15ccfa0ac0ce958e4b9b9354a legacy-trunk +59939 c73768d977a9f92bb9cdb90478d571cad1990d2b legacy-trunk +59940 894d2ad450269e7e05d89987f3dd67e1808da097 legacy-trunk +59941 f2d820b5ae2ae6437060bf384092601a9594fcf1 py3k-importhook +59942 c25760c21397a1e42390e3364aeec9caab5a55ee py3k +59943 4293a06afd727f7536015f7df3d2a1c272ec9b90 legacy-trunk +59944 387d48c3a0b3e7c2741871b19a11b7b27c6fa8a3 legacy-trunk +59945 91928d99ebb092707b462d6ce8a549af81b653a1 py3k +59946 426fef8bade2dd7a86c8a68d00b40951668ac7b8 legacy-trunk +59947 b409941c7a51e1009db1418c1023358273d3dbce legacy-trunk +59948 7e41e1c46b57b0ea6a28ef2ac96ecc09ae0c0725 legacy-trunk +59949 9b6d348cec87e4ba4c30e3a7d8fd73d416228c3c legacy-trunk +59950 d66e5837aa57c322e1dfe601305c1f5e946e6a4d legacy-trunk +59951 33f6709075e83c8a7e5c2e63a0f012b28bd4ffe8 legacy-trunk +59952 322c238a64e527385a35967f5fcdc7e9883b2d37 legacy-trunk +59953 62eace6780f658cde51a65a1e5a0ce9b58d2cd77 legacy-trunk +59954 1154158a199f7794f25855d9ef721c4771c65be5 py3k +59958 627f2e2273b94fe98bb91d73e199a74dd930a167 py3k +59959 005021bf5acec73c323edc47da899e36631be065 legacy-trunk +59960 827f0451734fd966477af3bbcd5eef55a7a7754e release25-maint +59961 5dfded9ad8a0cc6dfeba76853ca9e3cd9d77481e legacy-trunk +59962 6af194c494cc2fdf3f72342c049e5dc5779aacf9 legacy-trunk +59963 774a9597228e0adb7f8e1b9a5b693b7d649e65a5 legacy-trunk +59964 cab84129dccb54564063f1639618565ff387e8c0 legacy-trunk +59965 f034eb5d8cdf49ac511393fc9f96c6d6a4c7bc46 py3k +59966 357b365560f4b79238e90f8493e44ebc9d79fec6 py3k +59967 a00d90004a25196ada6cfca2077612e7dd84cfc3 legacy-trunk +59968 e511ccf2ffbe67a12e2142390a6836cd576b2e05 legacy-trunk +59969 d0208d65dc22c50108a6739e8a35a979399eae5b legacy-trunk +59970 8689f46d25d6af55c8cbe4d5f175df8c15ff79c4 legacy-trunk +59971 14854c7c6a24870adb588d2a615a75572b3ffa69 legacy-trunk +59972 5c7b7fbea681b15d84e43129980f83ceb599884e legacy-trunk +59973 0bb6cf77c85af8534d0feeecba444aeaf191a318 legacy-trunk +59974 46e731bb6a85f1cedc764874c9fab12d64be52fa legacy-trunk +59978 59f29b0136fb5f618497f09f8a452a5064b40b3a legacy-trunk +59979 bfa8d2257823223db7c4a3ddce66144441ae1f78 py3k +59984 28c81c27389e254339a90c310ab57747ae323231 legacy-trunk +59986 6e5675ca2559c6a737ef1b46b81149f771a7d47a py3k +59987 c790587f29925c151451040d394372ae687d669a legacy-trunk +59988 cb90404a46ad18a122bf182ad2417e9cf4fa5a50 legacy-trunk +59989 f302cf999633eb7c6d2b0e0f2684f4defbc900a5 legacy-trunk +59990 6f049ca55e06b2c108ec0d8d0e84bb0b823dc385 py3k +59991 992a611b2e31466c1704ba7ee6c196bb84b4f01c py3k +59992 2f11f7d9bdc84e0d6bba2efe3ce5a49fc0ce9fa5 legacy-trunk +59993 71c799eb24b2480adfb77f43dd275ffa4e21a880 legacy-trunk +59994 7f2f21aa36906a9dd1e7857c89e79e941a818ba8 py3k-importhook +59995 b23b477d7899a668f6843494a671359458924383 py3k-importhook +59998 c4383d765ca717837484a3c2ac5d371a80066498 legacy-trunk +59999 a4a02432e7333e99ef09ec57b39a29eaa0e75b8c legacy-trunk +60000 41f1b3cb0bb10355b2495f913eeb496f3974314c release25-maint +60001 2f7f3f5e73d3c5eaa1402c91afe0e4ce18ab2724 legacy-trunk +60002 3d7042893cc5046ced7a196d58b6d20a1f59e9e7 release25-maint +60003 caf58c831499cc7d59453591896d0310ed95fd27 legacy-trunk +60004 a2f3d499ce12ef4ce21b56bcb1e09ba3c562269e legacy-trunk +60006 27d59675b92c6f7a0d005eba89caa85d5de04bb0 legacy-trunk +60007 f128e6ebf90f81d0fd2a3058bc7fa3cab66b30f3 legacy-trunk +60008 2c9bc61d4f73f376e35895ffdd70fd911b310630 legacy-trunk +60009 c784f20c967e844bedbb2fd3741d29bccae92a8d legacy-trunk +60010 aa5cf6394641dc1d3a2bf0d6374db6ac4ee805bc legacy-trunk +60011 99000ea21ff278abb8949daec70a71574ecddd73 legacy-trunk +60012 b469e90273eb072df7f04deee32c47915929d3b5 py3k +60013 d0f7963cf8b03348cbcc4530867205865403a084 legacy-trunk +60014 26b61a5df11b612d311166274a72ae6249d3159f py3k +60015 cb0dcd6e3b1147f3aca3b2e2705f6b1b90a88466 legacy-trunk +60016 3b3856b3621b20895dae4f34a3212d58815d84ac py3k-importhook +60017 df71fcddb75eab17a05fe261e4023302a2ed689d release25-maint +60018 a3802853c3176266cf7b260d00d2e4909c182d85 legacy-trunk +60019 170cb2739a390e278322944625ef1b95b8cec22e legacy-trunk +60020 0766efd2a6d63e63a3b3ddb533ddf2caae87a600 legacy-trunk +60021 d816bc0c40b67596e2535e047456ab5a16b7c776 legacy-trunk +60022 717265ed2041b3197c25e61cf5b2e16218825e8c legacy-trunk +60023 3b4bc4c704c14f690bf42a0addf65dfb85ce746f py3k +60024 222b918ce0924ced6ee7db19cd3a4be5f0ac2e66 legacy-trunk +60025 29e4c86d5071a6c8e5ba281201e181b2235907c9 legacy-trunk +60026 076c8abbd54f7899d82045955652a0c916abedea legacy-trunk +60028 8b495403ba235bda8e3e83bb0aa7073ca4847ed2 legacy-trunk +60029 428dd851bb8ae80fd3b13b227838b4d3fc257dd1 legacy-trunk +60030 bb33b32de3a0b9372154293dbb196c2a4e07b54d legacy-trunk +60031 85cf220f16d85ee40466819746322b8ed359be83 legacy-trunk +60033 a0dd092bb6c36e7c6d3b58b46979935447404599 legacy-trunk +60034 4d61c887624d35bb6cc63021b76b2975e93bf628 legacy-trunk +60035 26a86c29ad600a688e4a494c9a4aeed48286b4e3 legacy-trunk +60036 840e87e18306940b80c705b392c34d863ef55e4f legacy-trunk +60038 b4003b6c6d137ef954c47336dccc5f96e3f53a72 legacy-trunk +60041 a3bf0e24b91e694ef94c48567f091fb3906bde47 legacy-trunk +60042 79babb4ccec852fffd93b96131786e7d3410ec9c legacy-trunk +60043 bbf4845810437d66b61687fe73b78754c89b02b5 legacy-trunk +60044 14d4104976fcc7d41c8797b0106a7045fd6888a6 py3k +60048 2946020560e73f9593c4010f4fd9763612881eb4 legacy-trunk +60049 d9833d2bf4695ffc65a782a9c89e2c7362a27ff6 legacy-trunk +60050 dbf0856776dd7c3c2bf9f6ed7e4f254de67157d0 legacy-trunk +60051 97a7c126d04ebf665512a500a3be58d865ba683a legacy-trunk +60052 8da9ebf7302647ecab53949145723c7f4c362998 legacy-trunk +60053 4a67673e3481dc104e5e687e5bf3b37cbcf00762 py3k +60054 55ddb166f1d1aa32b4140eff6180c0ecb01db4d9 legacy-trunk +60055 3f40ad3c13dd7ec2b4ceb247914f49612ebd9a3f py3k-ctypes-pep3118 +60056 765e57c001b1a11ebbfe30e7638372ea9e908393 release25-maint +60057 58303ed72ba1a7bf125ef66096428d4370c8d6f3 legacy-trunk +60058 13f74c8544cc8a921de6b4fc6316404ab3c9902d legacy-trunk +60059 eb8ef969ed68a5f786fa429ae34070fd3aca32b6 py3k-ctypes-pep3118 +60060 d7a87c7f14d9ee976f456e7f99ee125fc73517a7 release25-maint +60063 a5072ba35f0a0f3ad156945108f4672cf8bfce7b legacy-trunk +60064 2179833c9c9a5908f39c10621dd7dd24313e4751 release25-maint +60067 0b7b62dd4dcbd283f76f11235a201d02f1589555 py3k +60068 c4709b81abdeb6c7c16ccb60aaa197ec795ed444 legacy-trunk +60069 febde3caf29126c53b2ccf50477314af9c3caf2a legacy-trunk +60070 f2797e0709e38ce14df3cb4454d993eff3972465 legacy-trunk +60071 3d72f5209e67d5498253a18654e2c876b7099607 legacy-trunk +60072 f9775438369ab61161baa4550bf3f66ef9df6556 py3k-ctypes-pep3118 +60073 ce326afdf0989fcb60d7d18d895a5a9b3665a9f0 legacy-trunk +60074 cc0a2961195ef381acadb5255af8114aa2919ef9 legacy-trunk +60075 73b5e939e0580ddbe810501b892a0bc9c5cd25f8 legacy-trunk +60076 52e821418a799b524ad835811599a657b440bb03 legacy-trunk +60077 8edbe025aed57128f13875be55458cc1579cc787 legacy-trunk +60078 c7cb5800606e2f6de03bb92bded7aeba112d0488 legacy-trunk +60079 a6f9a2ba8962a462943b6a3435d44611ef15b743 py3k +60080 cde41bd08e5e24cd938d6227558d047f5a0cb99e legacy-trunk +60081 e3fdbc8099998088bd07abe4d02b12c47644fc4f legacy-trunk +60082 859bf85a556a98b820b001682d38afe04950c1a0 legacy-trunk +60083 0fe936b7711423514ace078c5e5bfb4467b07eca legacy-trunk +60084 afa0ef3791865d18ceb7138d635181f1bce32dbc legacy-trunk +60085 a265baa79100343ba15b85d0587543e33df2c366 legacy-trunk +60086 80366621c5022981b723a868ba24a5e33260225f legacy-trunk +60087 9c0a913adcd4b8a96e6b9f91ce925421a5e822ef legacy-trunk +60088 e4e6fc9c9775d820243829b1946371e1fbf15f8b legacy-trunk +60089 8b55321161152bb0fc2fb0284fa237b9db583aae legacy-trunk +60090 3625eed4f0cd9be8c83b568ff47e3a1a1dfa4058 py3k +60091 877b4679b9fe69b405be583ed08f6612dc4618aa legacy-trunk +60092 61a11cc95632e841505f2fae1335c6cf808b1946 legacy-trunk +60093 17009d6211b836a660146df370b37ebff52cdfd8 legacy-trunk +60094 ca2683a6794313a3fec175d740587c53739e238c py3k +60095 4a7afff52ea71f487a21ed19685baaa97cbcd1ee legacy-trunk +60096 b3102006dd7ec9fcece38228ef127d7c10daa739 release25-maint +60097 b520d33bee06154f97c5aeef2e07796a75dd98e6 legacy-trunk +60098 4ac484249bd1e1fdc6211b616b1c6cf91af0aaf5 release25-maint +60099 4f35118eed3b8f21625c7fb503d6cc5e76452c77 legacy-trunk +60100 88f8f152a0b332c2d0b9147d02191baf8a5a4554 py3k +60101 3c9ccc32da9afe644970a77ffb48a3bdbe11bfd3 legacy-trunk +60102 210323e2a92726d4bcbe53bc6fbe1972d7b14d44 legacy-trunk +60103 15536865198ab219650c50b987df7861d27709b6 legacy-trunk +60104 b4d03a92bddf9cbcb7cc05cd7276184340cf165b legacy-trunk +60105 3d131c838f09b8a3011e4308dc93be2b4cbb1d77 legacy-trunk +60106 d8c13ecb6e859fee6dc19df8fd4cbf31e0adad91 legacy-trunk +60107 bda49eb460749f8430795f24ef2fd6c3af386e47 release25-maint +60108 17f84533277841545afc1749bf89a13ee2369135 py3k-ctypes-pep3118 +60109 13dc65fe8599f08a8d4ae5df45600ece7f07236b legacy-trunk +60110 ec02dbe6b05101b613aae536e110456b119a544e legacy-trunk +60111 5e66030f1a67a469548475bb8f0a08f88062142c legacy-trunk +60112 ac2ea95522930b2c21c6dbdee86e77714172cef3 py3k-ctypes-pep3118 +60113 0ace74767478cf67e6b0742ed1f904a0cc53379c release25-maint +60114 4796588d9f9acb7513752677336c3cf6ba27ec8b release24-maint +60115 c23892f5a69f16f81b11df7c80b00c6d6f995636 legacy-trunk +60116 11483a673a45eed4cb4425525d0dcccdd9f73f1f legacy-trunk +60117 68f5cc95b70a5e6f9c049c9a816a4c3d19df6a4c release25-maint +60118 7647152f74245b7ee5299b1d8886cee79a244527 release25-maint +60119 1e5614567a6ed969cf9427745bedb87b02c9973d legacy-trunk +60120 816a7bdbf69e8fc18c89f8f97e0e6b1b4846cf4c legacy-trunk +60121 1120b3d606f28c1c5ad9052d46484a5387954630 legacy-trunk +60122 6d43fccda90c3a142cb4e021ee3c01cdab00ed66 legacy-trunk +60123 3e0f4a4b9f55ae61224a7e225bb55e6981ee8d76 legacy-trunk +60124 fa6cee14dcba48d0abd5d01b4d90791897b800c0 py3k +60125 55349d4d9f8339e50c5ed689ce835fbfdbc847da py3k +60126 1e8b9e7c34cec55d0617adb3df012140e3ac8292 py3k +60128 02a2120e5db23b5fb4d4d46f3f901f95f84368f1 py3k-ctypes-pep3118 +60129 941cf2bf200e4392a3f8bd86f36f65195ba5e0e0 py3k +60130 b99f9295fd9cf886deebcdc646b2954866a975aa py3k +60131 942e4b42da14d5685ce2a67dd73b3f5a17d191b5 legacy-trunk +60132 150cb48edb07e1ba8610dfc3c10022768c6eed16 py3k +60133 3f34d3b0350d135b9d61fcef504c56a350ae9fc9 legacy-trunk +60134 e36469e6d8b67809c734babbf181a89c2aec7bb5 legacy-trunk +60135 abcb7923d898fda3ded2b5c613454377c7267d1c legacy-trunk +60136 145b3e605378435266e543a00408f8c25d96f569 legacy-trunk +60137 b28fdef2f0d71b18d68447dfdb27ba9929bd0828 legacy-trunk +60138 424cccfd2baaa7218a9cb4daf39bd208e658b3c4 legacy-trunk +60139 eaca2367ecc99278b209665ab61add08941a2453 legacy-trunk +60140 84f1a658b231923705ce92899b00c507a6275ba6 legacy-trunk +60141 ef859cd754a76fa77e084a858e34c2e8f52a063b legacy-trunk +60142 ea389a268b544980727ce38597d34fa98f8b99b4 legacy-trunk +60143 eab00db80c27959f022f4ad9c6d0f384cdd73b14 legacy-trunk +60144 ef7d72d98485bf414a862167b0ef2758bf9e132c py3k +60145 ac970f88318756ce2adbd6bd6ba3c90b6a6b646a legacy-trunk +60146 0f072edb3343732617945c75bd03e95e96f9ee61 legacy-trunk +60147 c3bf8f9beaa727129e4e07e763c1679e5b49ced1 legacy-trunk +60148 eb2eafda29b76dd9b1b2edb62774ff594e81afc3 legacy-trunk +60149 89b13b69386454065f05b66e65a894668103105f legacy-trunk +60150 ed33da2e74e70e3e14fa99fcf8802974e2d63541 py3k +60151 9411b1b9121812b7bef6e7883b935b44ee122950 legacy-trunk +60152 fabc688a08c68ffbb5d16a5344fd096eb6301fd7 legacy-trunk +60153 ad6a9db1ff45c542792aa3bd950bc6e5a8b3a463 legacy-trunk +60154 f6d4a2c4953150e8c63c0e802eb24b49cd7dfda6 legacy-trunk +60155 8f15f8de42185aac4aa1dfaea92a40df5c184ff3 legacy-trunk +60156 8abd36f3ab7a3adc829f9457188db4e785239627 legacy-trunk +60157 0ae59f608b44f9c11e8c03610ecfeb6563d51ec8 legacy-trunk +60158 1990fa6b9e8287d812a70ad8c19f657406143c1d legacy-trunk +60159 79f15053751ed876dc264b48f853deb9a6062c63 legacy-trunk +60160 dfff041753aa18e060594678f045812a4f8c66e1 release25-maint +60161 27dac16541d9090864242e45d05517c66ce1d09e legacy-trunk +60162 d9621405406bded5594ffb96a73b2b4df0e3986a legacy-trunk +60163 a6b190b0cf068e7d24cc73ddb17385e97c9b80b1 legacy-trunk +60164 432c4ae0fd046fe93f453a11198ac031be893fe8 legacy-trunk +60165 32412fceb1b34ad6342af7115dfe51bf5f0b46af legacy-trunk +60166 729495f7b221a45e08ee86d1112644e2beaf27d3 legacy-trunk +60167 c69a7b55ad6bffa59fdf172d6d5f9a88ef7039f5 legacy-trunk +60168 8a9b3b0be5739aae962d82d50c203fcfccac00ff legacy-trunk +60169 1be4bbd834a14cd2fab5a060dc6311b41233d092 release25-maint +60170 7c54f4a2d4384ecda224fd1e03110e52ddc6e769 legacy-trunk +60171 0b41a91cd261a3527b8f8e1f5412d5ea06653bcb release25-maint +60172 df22e6180e67ac93588bf64a815a5437c3f622c5 legacy-trunk +60173 29643fbe1150706a492a3ca9e86b570050819d7b legacy-trunk +60175 b76c78cda3abfe1d7275b0bc7ca4e6e2222417e7 legacy-trunk +60176 feba5d5cac221f0bd913fd96ed3285257965a224 py3k +60178 c3d9e57e71f2c2340193d62d0b5a5a048583dcce legacy-trunk +60179 5bea4592cd7a1b70e07d895d8d8c0a23f684e451 legacy-trunk +60180 101d86a1af8588fdb4aa46881fd137b2c3ed2a63 legacy-trunk +60181 eb4b50f739f6e1a5d9a4ed42a8f064af6a38bafb legacy-trunk +60182 3107fdb9081e584ee67b5a5a1f8f9afd9353c50c legacy-trunk +60183 8103f0198967c965376813db1386a6fc8f16f54d release25-maint +60186 711ae0e99c027d5e7f85d2d9f38b71f58e3288a7 release25-maint +60187 ea61e9edd9799b8a563db9deb9896fc89dd7ef53 legacy-trunk +60188 7f2b525f9df48c7e80753e9221180809b6b1bbce legacy-trunk +60189 b5e809f926de187ec1fa84999e51cf649e9f8b41 legacy-trunk +60190 fe7d423474dead9b6d32f795ea68f9b5fcefba73 legacy-trunk +60191 ffacb44673eab76d93a9b32e8d4ac2864eeb2016 release25-maint +60193 12b6910115e0ff2874e9d900b7476256affc4e3f legacy-trunk +60194 9d8c877889c3ad0b5fad38f8e460a616b1d7c6b4 release25-maint +60195 00a68596e50650d41d8343e072e9f704e2d2fdd1 trunk-math +60196 e0504a1c5f9d72d7144b2b57f497db7a556ab2db trunk-math +60197 e43c2ab6a57c7695e88a74b595705171ec1a30b3 trunk-math +60198 091806381cf8d6c1512bb808a7ad05048fabc626 legacy-trunk +60199 c3ce56c7ecd11bad155e7c2aa93053f7f411f9ca legacy-trunk +60201 7ca07fe02958d138b5731037fba79b90b3192960 legacy-trunk +60202 bb7ee3d89c2f607683904a553e3d9cbd8cbb5f8f legacy-trunk +60203 56f0fbaeb67fdfc8e4b670a17c14f1b8c014fbba legacy-trunk +60204 867c0aad79c16a71eeb15722f70ad56a2476a409 legacy-trunk +60205 c3ed6da7a146846c03cca5f58733495fb81daae5 legacy-trunk +60206 5298abbdd91ccec68367c66b4afe7bc080480494 py3k +60207 6bd4849b5458de5500d3052ad4bf9f4f03812266 legacy-trunk +60208 df80c6b606a486ce50d986f6674a717ba8d882d9 legacy-trunk +60209 d62c126fe56a2d64317b675309f2d3ace708f2ee release25-maint +60210 fefaa0e66fdd0e351213fbab0929141ee8b188d7 py3k +60211 eb5910092f59bbb75db6f38115411cbaf3cb8eb1 trunk-math +60212 c4b98bc10be7e1160e51b966dc99f8e0e61e26c5 trunk-math +60213 2e151376941f8b5bb6965bbb8745df968c76e6e6 legacy-trunk +60214 dfd21793a5b5751169efe86c20dbe9ca8ce216a9 legacy-trunk +60215 dfb6f367a406bbae9e4e8f6669430606be0b54c4 release25-maint +60216 9a1211c77e028b3abcb3830a8bd22d5fbd20be85 legacy-trunk +60217 69582bb1114c36bdfe43432167371fccc6348363 trunk-math +60218 a40229adfa2ccd8d531597b889d8db160aff7b5f trunk-math +60219 b2854e974ca9670f60bcda1da0a8f6b6a1d02338 trunk-math +60220 bccc7682c6d4ba4a52d2d64dfa90dd27ff17bbac py3k +60221 005921fcff43adbc893bce77775f6cb25dcddd17 legacy-trunk +60222 148c87a667c201d06f1b79222f061617d59d1a6f release25-maint +60223 fdd74bdeee15bd47c3779bc8595cd4c9efc576d4 release25-maint +60224 4c8308ac20cdd9ddc31afb1dd9be2732f60cb8d7 legacy-trunk +60225 b934d2ee63f639bdc5bcb9e6162e66fe79e9cc0c legacy-trunk +60226 733335b22f8fd78a30fa24b5378c966dd2307dbc legacy-trunk +60227 d9a60752558ef7d84d29240e120e991143954677 legacy-trunk +60228 95a48735174080ae578227a5f7007e46a8a609fd legacy-trunk +60229 cdc4aecedd4c85cef684e01e281deb3ae04cffd5 legacy-trunk +60230 cc73a8d1938b42ec4b9fe71dd2dd0a58f9b3220d legacy-trunk +60231 012f516d4d22f38ebe029e39ee2160518e866d1d legacy-trunk +60232 fed8c36d87150c37012d3ce3024250ccf9aa9f2c legacy-trunk +60233 22a9d9757a1697b7923ce379853a180943189259 legacy-trunk +60234 063ed377fd3d62f4f1357140ac006143ae75dfb6 legacy-trunk +60235 c0f048356c36c8902e1a2862fd55639cc48d4b40 py3k +60236 e22a92eec662006775cbcf9ace6920df8548233b py3k +60237 f3a9ad448ccad19eb3725f0d92a274415f56d356 legacy-trunk +60238 437172093a23a242106a308ab3aaafd3dd57db85 legacy-trunk +60239 cba3084b27e7269064943c7ad2c977cc45ee1b8a legacy-trunk +60240 999a5ee9cd2c3a1f7510159f549fe2cb86e78c1e legacy-trunk +60241 948bba0e247b895929ac2cda5b3dc3b2a42be53d release25-maint +60242 d8ab32820b17db5bac16611e64adcc7a5ebb7bd2 release25-maint +60243 f2da7fcf3a244a2090dfc93498ada34dddcf5d92 legacy-trunk +60244 7fa3ae9ba031daf689a262a449205e096019b516 trunk-math +60245 c33f2779a938604c291fccc31024d20b20c5512a py3k +60246 ebbb7bb0033bc34c87d26c27a85f0bf588f42934 legacy-trunk +60247 db624b1ba06de9b5c897af562034b5498e5661cd release25-maint +60248 29ff9066dd0c83ddf450b7b4f0626e0acd74daf1 legacy-trunk +60249 685e96d20881bad6db344e5a14f0147066cea8e5 legacy-trunk +60250 8bd5f0db7f5d1070a2d4c004c048bd146077be99 legacy-trunk +60251 a8b750210b799091e8b328030b6916a6a24d2885 release25-maint +60252 6ef3be47a44e7e46c1fa1f0cf32c7f0183b272dc legacy-trunk +60253 d16de6252f7fa438ef4f64af78f3db5f8471f2bb legacy-trunk +60254 e8efa62eec157d0f25d87fbb56edd1336bcbaaf6 legacy-trunk +60255 a8c74125376d6519446f594712eda45137017e56 legacy-trunk +60256 f4a6c323500bee055206da013fda651f2cee1ed8 legacy-trunk +60261 a6f0e4bfc2dd70feb42b8c8b25f01a0879d59233 py3k-ctypes-pep3118 +60262 7e3afe9064495b2b0feb8aa5e4e5a7cf232f02c1 py3k-ctypes-pep3118 +60263 3f61b6643b7eea1dda57a777537d35a63f1af26f legacy-trunk +60264 757a7f31e46092c08c46ddd8704268f074e2bedf legacy-trunk +60265 69c5703d20fb410934a1e30d9cb63febc3da6025 legacy-trunk +60266 ebdbe8df62b0398534e93551cb58710af67e57ae legacy-trunk +60267 4268b77f8e567d0c036b335850f4401184646fbf py3k +60268 742a264cce4fab3782f71138989704db877fde09 release25-maint +60269 ce159d01ee322a771ac7356fc1310e0bd4744b2c legacy-trunk +60270 6da0eea36783a930891e3bac78b144efd444b9fe legacy-trunk +60271 3bd19c8af2b11d1f13cd105053f20dbf6eb4281c legacy-trunk +60272 fae54591c0356586117566fc26614e72e62ea55e legacy-trunk +60273 844203209fb06ecbe8534ae59ac2ac1b81540cdd legacy-trunk +60274 54558e029c2da420c5ca6f2d1cfbcd9cdc0213e2 legacy-trunk +60275 934a59d5254314d373fdcc3ca289c67b7ef18611 release25-maint +60276 9972cccf6a33f449a598925d778337b7125a384b legacy-trunk +60277 12099143724f34cccd9a62af0cf8a215b1dfb1f4 legacy-trunk +60278 08eb1c41111391dbb1cdf1f63e3bf77f1c8a158a py3k-ctypes-pep3118 +60279 53e7bcfb54a45f5fd1cb16e253af435c27beba32 py3k +60280 aa838958e54ab1388e4d9cd873996748523cd14a py3k +60281 6547be11f44385fc80f30f9f317c2c66744e4578 py3k +60282 8bca8eb36e37f5189d095371be7eafdd9312f1a8 py3k +60283 bbc719a8b58bf6d9c4b7a1fe33dca0580ce4cc09 legacy-trunk +60284 05f01dd758a1bdffd9fc307a89c4649eb59b6372 py3k +60285 3a442a009a83e586868d46a0b9c090e93fc39778 py3k-ctypes-pep3118 +60286 8e435bdd4bc8966aa39aeed19a0674b65e007839 legacy-trunk +60287 1be93dd179df7a902c49b46c438a91644e584552 legacy-trunk +60288 dcceaefa67fd8e582e5ce14e96add4105ee05d0e py3k-ctypes-pep3118 +60289 27d227a87a737bbd112f5ef98f1af43c158aa0eb py3k-ctypes-pep3118 +60290 ef42bd7fcbc83e3902d83a1d0d00e4bccec75218 py3k-ctypes-pep3118 +60291 ddb1e499a01f8163de133aef97726b988e0c82ba legacy-trunk +60292 3c57a51f7394f875328d3970e09349936715e2b8 py3k-ctypes-pep3118 +60293 d8e88358f6c240828b96cc6c3251386166b0f69e py3k-ctypes-pep3118 +60294 42449f682885ba06ef7f5a0fd3ccbd8695d4d827 release25-maint +60295 5950d8de8134b549ef82aa6911e30f79dc39dd0c py3k-ctypes-pep3118 +60296 b54746e2a880bd358abdd40945f45f749653330f legacy-trunk +60297 9467ea20046c31d8cd7b7505e141a40a84505091 release25-maint +60298 1f4b1babb9e07b1c3da5fe7b2266a24af080685e py3k-ctypes-pep3118 +60299 ea1d47c7a46747b15a3c06759caed57b62091fff py3k-ctypes-pep3118 +60300 891050a6a5c90172774fec3e3becebc97c927e74 release25-maint +60301 fb68e44587ea259d522020aef14fc3693a88b17f legacy-trunk +60302 96f5dcb480a602f9de53cd9d23ee37f6480e61e9 py3k +60303 851030162d72834f08aeb930b5ba44a897e2634d legacy-trunk +60305 666ceb6799a781571e5dd3989692c0dcaf2e4eb9 legacy-trunk +60306 6ae22030e152576ef68c6a0a2b139b43af985b3a legacy-trunk +60307 d347c1f9c38ad658b9a7acc7c2c7df8095707cd7 legacy-trunk +60308 c6e5c604ea61dee2ca2a6eac2b3c7cce72e62cda legacy-trunk +60309 be44faed542d7fd08f61e48e2e4a435725b3e7b5 legacy-trunk +60310 0f093e8b2f531b4b14fec9b54c41b8ca9290c4ee legacy-trunk +60311 307d4109e23ea5fdea0ac2b433ad5894acc6626d legacy-trunk +60312 3124cc5b973f17c489707f9083991f1d5cb62083 legacy-trunk +60313 b70485011214538f3e8c1370a84a7c8ed6a42e40 py3k +60314 37d762975a953de1cc6e58e0e7191a8089a116c0 legacy-trunk +60315 221dec03e261257bb4767b37336e9211acf8aea1 py3k +60316 aedb7ac2627ee4251f3fd6abb81506c008489ad7 legacy-trunk +60317 47bb31d065772d1007a54ab5a1d6ccefdd61f665 legacy-trunk +60318 64d13f456d06bacf3e903409ee42147daa2227ae py3k +60319 8431617f20e2a95abd618993f8df245e288cf34c legacy-trunk +60320 aab5c8e8f38dc0339d2308aeb55abfe0e16869bb legacy-trunk +60321 aaa5a794f887e21d1cfb64af79a39d52174521de legacy-trunk +60322 5e0b460f294a5c7cc1e1adc81ad7472e415a2ca0 legacy-trunk +60323 a750a26b5fada62e6a0ed99a96bbde2043f922e3 release25-maint +60324 51bb7b1ae76591058836f1687bb03f9fedb0469f legacy-trunk +60325 df23d5249550d7f78887feb076e6275f0f6dd7a9 legacy-trunk +60326 699b37170cadc6b0194cfa4c363ff5f59d1600cb legacy-trunk +60327 cb5839d1322616a0149788378a2d86e4ffcc5927 legacy-trunk +60328 8cbca91e3154970bb4756d28f25aee8d419a96bd py3k +60329 fbb9ae9a514feba90cac729bb3cd9927d54d2332 legacy-trunk +60330 5d782c8d401668cb93d619c4d84697167d45031a legacy-trunk +60331 dca3f646e8a1fb59ff28ac6678b41942afef04f9 legacy-trunk +60332 f3b584843f9fbdc9c54ab51456e6fc7e074da0fc py3k +60333 962c491e17d6ca8c6803b02d0a271d07deab9240 py3k +60334 5f98446e0f1bb7b75624bc570295e5bf1fa4dc00 legacy-trunk +60335 50f2d7bdabc9a46c709c1186b11bccb1378356c5 legacy-trunk +60336 9093908a0cf5d4c2cf67d63f9a26a99a9d858992 release25-maint +60337 e336258955502617b58329c7fa070b4e779215d0 release25-maint +60338 5b17b44be1bf878d691eecf9f32c96e8e42bcdb5 legacy-trunk +60339 635a756360f18c9a115ccbe2564a7636dcc61244 trunk-math +60340 72a6727bed9c9e14f3e554603ada742290ce88ae trunk-math +60341 6adbd62b9abfa0e30b597d7ce110d9e1243b6bea trunk-math +60342 2ca2b0840b35d3845d80bd778635a065d366a649 legacy-trunk +60343 20bf94285eefe86865c14492fc0dff077c0f351e release25-maint +60344 4dd0fcf3daf73e26f03c2b8b7ed1188e16911581 legacy-trunk +60345 ff58b30a8d52871d6cf0542cf7ea1a704d8a14eb legacy-trunk +60346 6bbf6fdc152b9e42edbf11a605c2162319981e62 legacy-trunk +60347 467c71f365fdeb4f698ec472134ab84b71984fcd legacy-trunk +60348 f01813b33ca4bcdfb4ce1355e7d3b1ea0988ea08 legacy-trunk +60349 62f0ba745357f059bec6ddd3a4257b2828fac7cb legacy-trunk +60350 7c02182e2979a22ee758ca02f25f882b2b840d48 py3k +60351 9b74c9c8b92c79fbf904f4676e73cda8dc36f0d7 py3k +60352 f5e52a53fcd14834f6372b6ce1b6ead98913b208 py3k +60353 ee243ca65f5f5468bd09639c807042ff3ecdf62e py3k +60354 f15d3bf4ca56a12d1b06c6261b530ff180457b4c py3k +60355 e224ad4b8b8cae316fda04a259753aea2e6a0556 legacy-trunk +60356 707dd9f384f389624b20f210bab9b9b47510687c legacy-trunk +60357 fcfa13199ecbda29ed9591d52ad7588c8bb3a176 legacy-trunk +60358 1d71bf475a85f3ac667ef7e3053debae511d85bd legacy-trunk +60359 2e4dd39bf690563269f515e77406145e24f9a9c0 legacy-trunk +60360 604aac4337a5c5b134aa95c51c6bbb37347e514a legacy-trunk +60361 c315b67245f7d54b030a53e24d0504d47ddccf4d legacy-trunk +60362 a3d5700b1d5a3e0607077b5cfe416522be3f64b2 legacy-trunk +60363 1ff2bb5187dff92a5423ffc913cb9a2d57592416 legacy-trunk +60364 85ccc7c15425de8278ad43329f2f2bf409914907 legacy-trunk +60365 b064e25fb8423419f7799e3ecae35d954f8b60cc legacy-trunk +60366 561c065e3f2d5fe8efa3c56492e35af1cee57f8e py3k +60367 0a70f5b30b8ac187a47979465fe42f42ba132e80 legacy-trunk +60368 22945dbcd0301f8677bf40e128919736b0f116c3 trunk-math +60369 4725c84b042279b95692d32d1616ceff20f5b9bd py3k +60370 f7d2360e953de7ce9d739ce826c7fbc34901bff9 legacy-trunk +60371 afa5993224e5563064eaacc13f02f9b68eb7662f release25-maint +60372 be3140ec67c8f6308f487a0b3e6cb34f58619a45 legacy-trunk +60373 79f439d99f8c3b8b1906757edbc313d53ec5d49d release25-maint +60375 695e5bf3af9c0569214fccd37ae25f6700dfcbef legacy-trunk +60376 727cc810d690bce8846643721d6c87f111ed5a61 py3k +60377 f062dda54894f240f98a04854f076034d3264de1 legacy-trunk +60378 ea3fe302d3920640fc62887506b5a9a63faf1dd4 legacy-trunk +60379 ebfbaa1051e2d0d78d6cdd219b55901155b78b89 py3k +60380 5232f07d9c8e3db3892484b27f1fece27e7ab4ab release25-maint +60381 1c9ac00c475879615bc71c1e3c017c7937876ed2 legacy-trunk +60382 43caf818cff07291c28537f6d41c7dfeaf497be8 trunk-math +60383 ef2d3bf8383dcbb256e7a7a86a4727760d24f253 py3k +60384 f07e6f3297553e7c584a83c7fe7405fd5581395e py3k-ctypes-pep3118 +60385 e614d248bdd10157bff77e4b50dc5cd389565b7e py3k-ctypes-pep3118 +60387 583ace12c5cf131c0e469aaff1f41f37ac9fca95 release25-maint +60388 15f5b731e00b3815a36a2bbd81ed6df53640edf0 legacy-trunk +60390 a28d0b14b77deef45c3a7b8a0f54fdfc3db09eb1 py3k +60391 2c3d497ebfd6dbaafc278064ada3f66cf5b8fb56 trunk-math +60392 94f18c2deaa5daabe2b221daf5fe276b58b369b1 trunk-math +60393 0da2ef9fedc032f097bae6af045d06fb8712bcc0 trunk-math +60394 6ac7d2e9a3bc4025071288b2f672dcbc06063e5e py3k +60396 ab67260737b1c86e131dae53a6e70d6727e94f3b py3k +60397 15e8b34254ecfb5f78851c3d6d43d4b7f501ca22 legacy-trunk +60398 1e583eb71b3fb361979898bc678940b52a1ecf04 legacy-trunk +60399 77d052ce1f4c7c5d3504c7c199e4befe5d12b2ff legacy-trunk +60400 756413c0ff1d9aa87e451191ca63c1de83bab5a7 legacy-trunk +60401 7a6a80e84a8a006e4697f3e2302845681e856196 legacy-trunk +60402 dc46a67a7b7b70d0117b3f53f2912393b06f4ccd trunk-math +60403 bd246f33687f7575c49d6e033dd17c220aba8e1c legacy-trunk +60404 54673f724106eb1fe6e1fd8308451cd2f2091f14 trunk-math +60405 efea4217a95433ce30cda3dc4a82a155494c6110 legacy-trunk +60406 418ad159fe843ee47710ce15650534a4d47f922c legacy-trunk +60407 cc22d3f12b137f7283f9df70c9c5725280a45402 legacy-trunk +60408 c3b38a85989fc7652322f143ebe3900ac6e37b12 py3k +60409 86094c467eafb1480cea318fa07fbaf81b25fc6f trunk-math +60414 e9d3d561dbd1af299ecd50be92de7fe5fc10b2bb trunk-math +60415 3f9fe271553f16d6116c9e3ba3180e636aa4514b trunk-math +60416 303cef063c3520ea6d55f4e24ec05c563e1bd92c trunk-math +60417 b9bdc6a98bea2288b4d3abc03a83377d4422b69c trunk-math +60418 edd367c22c8fcc4493866128acf841657b7b3056 trunk-math +60419 3ebaae341c1b123e5d9e543d569f1d4eaa1404a5 trunk-math +60420 3b4f0c5ecf53fd62c82175bf8936aacd1471618e trunk-math +60421 29d615dd1d97055f9da52ce4050ed4ee74bc111b trunk-math +60422 b372c354a28c174752e0614b0ac3282bf5ca40c4 trunk-math +60423 509cdf6d64795edfd9495044c6d51e263f7d4ed3 trunk-math +60424 92773d7e653e4c1fe4978838e13b5f4f0113631b trunk-math +60425 e791bb0adcde8290717b4ad73385930fe756adf2 legacy-trunk +60427 7ac7e089a06fc9ad4ce1acac12637e58bee078b0 trunk-math +60428 7166ed498c6d3cbde5d1851cbce9fe32ff22336d py3k-ctypes-pep3118 +60429 cd65ba23a50e7610e40103f3435e5da176bb0cdd trunk-math +60431 96d0249164fc6526fcfc2b7d300a4ea90aaf6ea6 legacy-trunk +60432 b7aa8bde7bcf70f48c88dfa04626cea76b55e017 legacy-trunk +60433 250f29bab61b12c366ab3306f52be49cfdfb3501 legacy-trunk +60434 90e86ee3684b3c1b58d6e3eec02b00b9b6dc167e py3k +60437 e9764a6958097a04d893c24f59dfcaf0ee0c1833 py3k +60438 62909d2e573b974f70d9698aaa6e1a5233f13aaf py3k +60439 e43238760c387396e079d6e73c0e129f619d0537 py3k +60440 26278796d4da1319f39383700f547ccd699a8de7 legacy-trunk +60441 53b90f31efd6e66a280a690e6308d484eeb0896d legacy-trunk +60442 510a48289d1d688d5181cbfd83d4a9eb8fbd9538 py3k +60443 c8fca9b5cd3c30dccb5d4dd72ffad41e35f29a5f py3k +60444 7638d4ae310c21f98008962015e44de048018903 py3k +60445 bd8d2369f1411b3506b64ec8e252e0e1f8073274 trunk-math +60446 5ab237c96695df7a0b7be8e677f34f0fe3306460 trunk-math +60447 afd0cb25c73e2131807b01301d0c65ed37d0ecaf py3k +60448 9639a73afa477614c0ed36d2a8989c745a539edc legacy-trunk +60450 c05ee77b39f2dc106dd7aae91b9129e3a820f864 legacy-trunk +60453 b9ee31a26f385d3cfa94c5bf924fc846e250bf89 py3k +60463 be06b33957684c44b0955cd4f9d6e7d882c7b45f legacy-trunk +60464 7d0df5ec3d2f4be7eb364afe3bd952d19012505d legacy-trunk +60465 e8476aef857c21c10e91543e79990d0a3e625324 release25-maint +60466 71983603ea999904272451ba3302617c24a6d18c py3k +60467 3f2496dc91db3f678c78221767785a37cfba9df5 py3k +60468 8930ff230ee9e463cf4f4d010d65f3dd78ff9f88 py3k +60469 de7c3097b2c10652e17a86bfda2f804a845d0d73 legacy-trunk +60470 e77b82aed1a83131ff4353915005f8b512e21952 legacy-trunk +60471 03e4a36a56bba495e1315cf2fe0a90e76122a008 legacy-trunk +60476 f380d991390e09f23d1284709ee2b496918b9f7b py3k +60477 f183f11898248e754efbbe4393121301702b2144 py3k +60479 d635f29e55f829470f5a2df1a28ce8953c67ef10 trunk-math +60480 a77c8dcbced910ffd3e2f93d12b82c0a5ac76f48 legacy-trunk +60481 3aa4b8dfbc4a4cb542ce94f8e4206a8280fe8729 py3k +60482 8659e52614dadd69e11ba6e3715f57ccc88da73c legacy-trunk +60483 3f16ac915214ed39e56fe74bfb79ce23dc168643 legacy-trunk +60484 f0e6bb9b24f68b1ef3dcbb4aaf30e2589c3a5947 legacy-trunk +60485 a4b84257c7f857f5276d5d501567cbdb926b3cbe py3k +60486 492b302aded6894872fc3af25adfb966450bd223 legacy-trunk +60487 678509f9a03f72a1eeb404b55bdb3df789afce39 legacy-trunk +60488 3164b4ae27c3c1df251aec72c400b721217fa1e3 legacy-trunk +60489 d7540031b9592173961eeb799736ea6aa529709d py3k +60491 c66da57b9488980e54055fa961c135d430c61a73 py3k +60492 38604fa2a48f1fee15b97fe47b6fad2e17bbc078 py3k +60493 a281e33198c0ae34d1bb1558f3e7e6adb5ccfef0 legacy-trunk +60495 7cb6e5617da09d89f3e9cf3188a53a789b8b513a py3k +60497 99ef248fb3153fd0989560a05c8551ce3222974a legacy-trunk +60498 2b63690d5128597c701cdd39f2b6b3bba5a378a7 py3k +60500 33bbdc76afb62e145efd62aaece2d925d6bb0cfd legacy-trunk +60504 3979ae1eea17a7198094b69e0e9f0d2b24da5f96 legacy-trunk +60507 6492a78e93b4c1ccc1b937f7c776739d89ffacbe legacy-trunk +60508 faa88ff4cce4d259fab1379279b91b11d68f713a py3k +60510 bdb70295248bcfc35c7833c0403aef28b845a133 legacy-trunk +60511 beea73ca2b88e7d68caafd2347bd7c73bc2a6086 legacy-trunk +60512 5cb8288360e738c3b21a0687c2c94361063af70c legacy-trunk +60513 d12c97cc746713d47a26732e4ec4b56a3d01128f legacy-trunk +60514 f4b49efcedc0ee29e4d4fce22651bf4e7e9ac0d8 legacy-trunk +60515 df5e52e05246fca0e953f4841e9cf15dbe5a0c31 legacy-trunk +60516 d0b31f24694dbe71b9a73ff423bbdf2295f7bb96 legacy-trunk +60517 0b4e8afed663124d05b77b0f6d3ad7e404278089 legacy-trunk +60518 f5e18c9bde701752380ccd692d87c672b570bec3 legacy-trunk +60519 ce9816f536909b59dea6997b4455162bd001debd legacy-trunk +60520 4c59a8f79e4281ec255e9949c8d66fdbb1d7f9c3 legacy-trunk +60521 e2a8b6765ab3fb0c8c5bc6dd14d5d016cca4359b legacy-trunk +60522 d54d133c6a8db7f76f7809086cf27d6fc4e51ae6 legacy-trunk +60523 7e2e603f4cbece08528fa6b055970654db2a9e85 py3k +60524 a3e6f74533d60cd0cbf3b14dca0b54c6022f2df4 py3k +60525 64091243c07bcec9592d0420deb9d1272c5699fb legacy-trunk +60526 a81ef63a1009a2994ccbe01d27cbaa409261c2b4 legacy-trunk +60527 d980f175c88634bdab0009535b781cee67a31a60 legacy-trunk +60528 6d75be2c3d3e412b353f8669792705503f430c8f legacy-trunk +60529 660d2989b161cd540ac997cff633dc4d67868882 legacy-trunk +60530 04653f92664f31d216122cfabd941f92a1de0b6d legacy-trunk +60531 65b1252c1bc190aaf602c7996f9560dd715c80be legacy-trunk +60533 f03af601225b1de9e0ac9d2b531e63d6f2b74e5b legacy-trunk +60534 b2de97eb1f67c7430572ba966fd85eed54612b45 legacy-trunk +60535 95bbf5613b18f49de52c422b68d6ccae2b0eaa6c legacy-trunk +60536 aefdcb52406dd71feb7f14559702d47bf8c8481e legacy-trunk +60537 59d89d61c3a0b30ce90eef3cfb855a7c57411022 legacy-trunk +60538 c2dcf54e91fd188e61e06e87ec1b966241727cb2 legacy-trunk +60539 24969405e1aad7f4dd080b569c381958a783a0b6 legacy-trunk +60540 e5e02898b6c42c117af68c87895c14af6c3d4f6d legacy-trunk +60541 394091fd1d5335806145bdc7e3afee165b58225d legacy-trunk +60542 21594c5a061a50e0580522b38a94ebdac277c9f8 legacy-trunk +60543 f2cded0c1fd77a6b45e9bf6c2fb6415b263130d1 release25-maint +60544 3ac48cb3402734c629fae775657aed519caecdb8 legacy-trunk +60545 27ca4700bc6df0ff78b4584b5a62698b217d12b6 release25-maint +60546 403a7ee5a53eceb6a158decff15149f021399684 legacy-trunk +60547 6c8c6de44ff75867c02b5822310afee1ff3d8db4 release25-maint +60548 6e134aa738796952698b0723a112359d9ec74aa4 release25-maint +60549 b66abf0fd591296e54686857f72e9230790c10a4 legacy-trunk +60550 5bdc8b599222ba14f7fbadbdce35475be7125485 legacy-trunk +60551 4ad09565579d7bcf7209ad6bccfae5efe6d5c1ed legacy-trunk +60552 bdcf40d1b38eb4f4773fc3f3c3486253a2c66232 py3k +60553 5bc587f90164c5b07acddbc6671c2c88914edda7 legacy-trunk +60554 eb97e8302fa3106c48436cce045da91de8b5d161 py3k +60555 4aa6383132980b3e42c1fd01b85a87da383edcc9 legacy-trunk +60560 4f6f44bc51957e302a324a4f385a739f341ffd22 legacy-trunk +60563 75039d3118aeead65e37a123d2725fc56f5e2c94 legacy-trunk +60564 a3fe7485f5c556b3feec5ecbfc8c963dc2f31869 legacy-trunk +60565 3850d13bf96b7539b5e828aceabddf2ec921d568 legacy-trunk +60566 f03955faffb474b610da1f55a5bdb7fb4b837a54 legacy-trunk +60567 8fdd6d62ea55ab74c2be9a67e9c00b57de9c160e legacy-trunk +60568 cc319a5f503e7406e1dd09859e6d83ea0dc08960 legacy-trunk +60569 3d7b84daa34a4d4cba59f42f17435f4963a1f24a py3k +60570 3be4fafd9cc0df377e8ef796a2cf0df725490656 legacy-trunk +60571 1beb7d293f552c80cb55cd27b4be0a417589d0c1 py3k +60572 38de0e41d254d746940d8bbdd2395d8b5830dd82 py3k +60573 f69da3f5721766e1fb1dfa6729668c45aa6bea2a legacy-trunk +60574 9b67d2595a231b6f892d75949c68e381d201d957 py3k +60575 643c1397f9540f02ec8bb421e2dbd152e1f5659a legacy-trunk +60576 9686c4b46243da85c2e53a07f6d7dd6a6c9c6dbc release25-maint +60577 e61135f7f9bbfab7c5b16602b1c60348166d854c py3k +60578 cb1e5c37d3d0240e8c5975feb62aa3d0a337c8ef py3k +60579 86602b603462c816a86622b31b4cdc4a61da3805 release25-maint +60580 1f87ec991e59deaf45ae6176b75321de48f2005c py3k +60581 e87bd8ddd01b0a0911e9d60d6afd706551da2f21 release25-maint +60582 0dfaa92bd5348db48c1ea16b06155a18ba6125fa release25-maint +60583 e6069b24031eae4a0e7a57fa0da057b52ea09564 py3k +60584 3f8f86493daae82970b4b998665894b4ce09ffe8 legacy-trunk +60585 bdf7486893baaa2c71f59647a92bcb60679d53a3 py3k +60586 646347444faa52cc105da256a5c8a669df014ce4 py3k +60587 5bda4f76ad92c6751a43a40453b161a59ec4c94f legacy-trunk +60588 94d980966056fe3ee9059ee4d16e3a6e7f6c8a5b legacy-trunk +60589 f2f991634781484a43b3b0da706cfcdb9a992b9d release25-maint +60590 8d89037d5fc1ac20a11756e0d0ce42fae584a852 legacy-trunk +60591 060f039d2fab545758c0bcbf97d5aa2a4c976cd8 py3k +60592 cfa280424b650f879ee3087dc075ee72c8ab8ddb legacy-trunk +60593 b011366102dbab779d7bc5725c7b9ba9f0594ccd legacy-trunk +60594 4d58c0fa6e343207b5b1890ba50e41b9cae495fb release25-maint +60595 dac4217e9965a0ea9e23ca8668902cce76003eb6 release25-maint +60596 d2b49a68e6f7bb0ead26b2ed07119f9988e11c7b legacy-trunk +60597 5fe557c760a200d6786f0bddc797d2e3bbbe090c py3k +60598 687437f7b78491692facd710cf00e6e273502935 py3k +60599 1c2a26686e54401bdf1dc103ecccd3a49fd9cc71 legacy-trunk +60600 83b5d6b2aa70f3cb35cd9cee3e0a812a76ec92f3 py3k +60601 01d1a4ffd5b35f9981d47aadcc97d7dc15a9ee98 py3k +60602 68636ea89153119350f5ff8fbff79fdf1fc737cc legacy-trunk +60603 8bc1fdc63370d14fb3d2aaf06df392cc9fc927a8 legacy-trunk +60604 f4c0e53c3561a36b9d6a5b1274bfecb79df109f9 legacy-trunk +60605 77b371c6958cededd057d3ec64f19cbbfb2adcc7 legacy-trunk +60607 8fec50a3859f4d1df2a4c7eff2b9785f0853061b py3k +60608 111cb2ad7af48d651f21457fbe94acebefe7cecb py3k +60609 3ecd526c35c5671e5d1d1ecdb72ce6c2a7f67d2c py3k +60610 8ef3c7c00470159af0be07807798d3a3c7828131 py3k +60611 b65f79e35b08ece4b88bdbe33e8767ea853badc7 py3k +60612 fdd99291cc45916e9ec23aaf2723a211564a21ea py3k +60613 1653f5ff3c0014aaf8329164be41437b9c750b99 legacy-trunk +60614 a4c87c88964831d383f7885dc380a631c6848568 legacy-trunk +60615 737827b4c5d75f52592b97083fe2bb50c6dec4d6 py3k +60616 920a7633ae0892251dec12fc8222d1cf4a76ff16 legacy-trunk +60617 142a11b3057e9af87f263dd072698796f7f4b17a py3k +60618 b847a9823b2fffaa2544a6036668cd565b5c3388 legacy-trunk +60619 33b78aafbbb2222c990190eabc894dac26911ea1 release25-maint +60622 65fb217509425c9e71e7f121b5e10fae91c2a72c legacy-trunk +60623 0571bc4ab6c2821ba98c26cafa579b29a8f172b3 py3k +60624 81900a91422bf71218d4df41e94d03655906f461 release25-maint +60626 0f7c317bbe7f8cdc6fda8ff4e645b08967c34562 legacy-trunk +60627 0ba31cea6e03b2c923798e7a893b3ab77181b6eb py3k +60628 dbe3a133b718342abb91af2fd9ff8fdb506341d5 py3k +60630 f55a4f11914195a3fe807ac42a114505d7b952bc legacy-trunk +60631 a2126edb207b12840ce04cae3858a14697053292 py3k +60632 346625ba59032cb744c6522b71f7b0d6527c355c legacy-trunk +60633 ffe2d0f57efd71cfce6c57149600b9ba31e033de py3k +60634 d39e1a0e096548235353a08c3528c421083843c8 legacy-trunk +60635 063d022ac011b85ee86f00d234963d0b24cc1b1b py3k +60636 3f124975e0995945d4684ae3c0d6c4d0a2b0f1dc legacy-trunk +60637 3bb3c743f105f710aa8c7333417290a597893108 legacy-trunk +60638 938ba622aca03cf2de6e48d837863ee778fdedee legacy-trunk +60639 0958cc46b33f349fcc31f2050f616cd6a23f6bb3 legacy-trunk +60640 8cbb8aa45ba9a9adb5c695951b8fad287e4e4fb9 legacy-trunk +60641 feb6dd36d53f33e966302a7fb414f9d502cbf5ab legacy-trunk +60642 c73a2802b738660d12a39414208ef91f052113c2 legacy-trunk +60643 e82ab2423aab709c6ac97a648f326b81bb6d112c legacy-trunk +60644 44e2d9899115d728a4a9a1cf187a182b2b77b1fa legacy-trunk +60645 7dc9dee099e880da7f1b90118153a0172ed9225d legacy-trunk +60646 5ac605c0f27ca8d84ba98edd8449f96580f2a12f legacy-trunk +60648 219f7f2134d48ef9f015b752fdc3d2dcfdda388a legacy-trunk +60649 deb4873fa0f04c57badeef26622a88309503ff71 legacy-trunk +60650 7fa4725cce879daeda19110adbcba935b5cdbb67 release25-maint +60651 2c63f1522bbe4e76ecd3a93f2e51cea807ae8b36 legacy-trunk +60652 cdd2ea080e2365ddaed66227f0a7098d164f5c40 release25-maint +60653 4e33fc82e7f3188f59158a5a35914b95ae2f8a4a legacy-trunk +60654 403f705d58c92f6aa425e94e8c1d1f85b1ad3e95 release25-maint +60655 381f4a2933b5897014a1e88bb5f92b8c5003e923 legacy-trunk +60656 5d8feca33315de97b7d3adb199cf3cdc2245e12c py3k +60657 59a6485bac0231d1cf62ea2519c336e1c369cb0a legacy-trunk +60660 4e43722fd503e1627c1067427b41b53b22d5822e legacy-trunk +60661 262263737bce2dcff2baa324d3c688a99bc9013f legacy-trunk +60662 1c326dea494c2c9eb8700ca8b39c80f97e4bf481 legacy-trunk +60663 e94af0c7aa12ba2872fb653ef2431ed5fcb93f46 legacy-trunk +60664 4166945a0cc4ffb76b86b381ac64cdcc3f9b030e release25-maint +60665 0463f801d7dc50973852d202674e360372ec486c trunk-math +60667 54dcf806ded63c187d870a392e70005e6a110878 legacy-trunk +60669 42422cf0208b0aded6caff6d5d786b029822f515 py3k +60671 eca90b8aa7fdb8e2979dc094f8e6fd7aa4035a9b legacy-trunk +60672 3fa7fb328d9aa290bf78847cd57959b526d727da trunk-math +60673 1980d7058627257073d22c48704408500046de4c legacy-trunk +60674 82d44280c1356ead0540561e1b220e594a29a710 legacy-trunk +60675 77c5791b7c21017781c7663b4253942f67bf8e3d legacy-trunk +60676 15bc8e8324207c27e311bfb226647a429ef8a0e5 py3k +60677 68d31a91fdf3292296355fdeed354376d897102c legacy-trunk +60678 5950c49f225adea4216035184ad0969c4d2e66c8 py3k +60679 97b420b2d8d10e0cc522368de7943760fd6d23fe legacy-trunk +60680 5ba5c4c9a0169661f7d1bd7b4e4a390ec30451e8 py3k +60681 2a821e001a2b46d3da8104bf8e97293fc1184acc py3k +60682 8527ed7563d0b4bcf38978c5c69e36ca8596bb94 py3k +60683 0f3d58f9cd3526dcb6f2b7c8184afdb3a6a0debf py3k +60684 645938e0eb52b2506bbac759ddeb87498ac5621a legacy-trunk +60685 24906b792542437ef00f6a317aa9d9d8d0329f47 py3k +60686 aebd9c4d19edfc1d4910f4c4577ca97dcfd92fb6 py3k +60687 0159e62b97c55c60497ff136b4a4732981a41ed4 legacy-trunk +60689 a82157f534a7e299455049cd462aec21546ca2f8 legacy-trunk +60690 a2bf2a59404a90ef63a4c92b5eafb9329cd9c74d py3k +60691 4cd1d0474a134e5a8003c5f29393d668d835e537 legacy-trunk +60695 83821e0f395b4d7c51df541016e51c0d2b9db3d1 legacy-trunk +60696 329c6b2e11051794bae86cc3b509c29522776634 legacy-trunk +60698 bc62854ee9c211489c3b8d85e7d3301479b13bd3 py3k +60699 6260db22ff752f45c48c0b8e7c0cfe4b6a82d23a py3k +60700 585aea904f0db4dda826a731633a555415d2ca18 trunk-math +60701 8728f816ca75203e449bea53b9f8b044ce9960b7 legacy-trunk +60702 8689b67265bfbf36f2651c794541bc36322d25cf legacy-trunk +60703 61eba8332c145e025ccedc20a6f4d813a0f5e9f3 legacy-trunk +60704 745280d714255cec470947fc9ba199bf7d57b757 legacy-trunk +60707 86906a5ceca6348825662c4d39ff00c87458b4c2 legacy-trunk +60708 2d6f640f708139c810dd440ad8de714beec832b5 py3k +60709 853c73b029e3e29e76855025caee1033eb5f7415 legacy-trunk +60710 7f4cef04186f1cbbf5c134062755cffd60dcbca1 legacy-trunk +60712 4ae0397ef1c5f14d9c427eed57b9f06016dfcc66 legacy-trunk +60713 6ebe89328b5e73e9621de21c74b7fa9a9e59613d legacy-trunk +60714 1dc71f08ea7c7c8b9df0805446527d8682da57c2 py3k +60715 fb551c938a598e93e414242831b41db0281d126d legacy-trunk +60716 013e66cb36c0fe5b2ab44da72b9c0b90c04634dd legacy-trunk +60717 fd7789a1bfcda2a65dd34242c29fe30fda4db58e legacy-trunk +60718 f8ee06a51c0b2f2034dee63604691bf524be4a4b legacy-trunk +60719 c7f9f9fdcf8271c312112523319473d732ad4edd legacy-trunk +60720 a8ca9e065d9dee15e95d341a77e99eb8b986de15 py3k +60721 a50c1fb7d920a81b19aad87e0f02b25d324d3e1e legacy-trunk +60722 9f1a2c99255ff41c112f4785e638da3cc1a78252 legacy-trunk +60723 1dc5ca11448cd073087c9f765231b76fafdcee8d legacy-trunk +60724 dc50dee7f8e52e31ffd03ebdc677016cb6dd6947 trunk-math +60725 e67050d62adfa46edaeabf60d3b19fc211b05f56 py3k +60726 3e5a790e0cd65d9e78a58bc08cbf36c9188f2ede trunk-math +60727 eeef39a6f4dd995af6b330a72449cdf95675f1a4 release25-maint +60728 4afbcde343edbc3d281a942d385c3317a4433b2c release25-maint +60729 4565c69420b8cb34a9f139e4e40313b4fcf4a6d2 py3k +60730 790554ae2b04acb30adc726710b07b91d70dc0fa release25-maint +60731 c0aa6d8f5cdb420e288e27c669f8791e67d11e57 legacy-trunk +60732 c2fc318c4fa333d6e80b5c7b4f80749b94a825d2 py3k +60733 ca0853622f1a1f9b9ac191b8e214d8b791444dbf legacy-trunk +60734 f85b63f567060418a797b535cdba5c2961dd6dc7 legacy-trunk +60735 808f84c566f0edad6abb697459e278c3fdd0e2ad legacy-trunk +60736 85b68d7d6f411eccecab1fe248cbc9f23dafeb0a py3k +60737 a39fb898beb1ad3da3f61112acff94c7de39fe80 legacy-trunk +60738 92bd21e6a82c4d2c74f5b2cee512dbad11a68bb3 legacy-trunk +60739 50762b194a00ad6b15aa1d675da1cee55e670ea5 legacy-trunk +60740 eeb72cf37aeb4cb48156e4d1cc4fdfb4b11f5fd9 legacy-trunk +60741 4ca70663a79d09a7f508d0a881b405222ec33340 legacy-trunk +60742 f0e8b541f11321584f1e4f6219584ed935a7a509 trunk-math +60743 275ed8593ec61d160ff6aed22d59cbce13c2fe62 legacy-trunk +60744 ba17b21ab93e6647869f6a8ee705555ace42344d release25-maint +60745 789aa67dce6d82b21fbf67ed573900ae87072032 legacy-trunk +60746 5f5b4645d9132b4ba98e68edbd4ab86ca7b60c43 py3k +60747 8eb8e9a3260d6ee9d0bbd5bc0c626f82936ae594 legacy-trunk +60748 ae55e714d744d2a02653a0d162a87740f50197c5 release25-maint +60749 a47f5ffc0823537f725a52897de9e2f290af2b6f legacy-trunk +60750 27f88597d02b8c1118e505b69015993fbded3d63 py3k +60751 b1cb6b44b798733376dba89295811e006a6fb604 py3k +60752 d673d003b6ca81e14d766e678ef6997b3822c5f3 legacy-trunk +60753 95c000265400907057562414c2ad549ebded29b6 py3k +60754 d319f40cd000fb84ee4875798cba612b39587819 legacy-trunk +60755 8f8adec93cf2cbcd6dcd02c595361fb41441f6ae legacy-trunk +60756 f1205121e848a6233cd8df4548777c36c9fe4c57 py3k +60758 ceee0981f141d4021cc5532a77188f9772d13811 legacy-trunk +60761 114dc2158369d876002e3d9edd95b7ebbeb1c460 py3k +60762 c5205587b2abc067f7f2895b3ee002d4e13f6ddc legacy-trunk +60763 ae9ecedb4f91c638d516b859a8c52d9e427283d8 py3k +60764 18c76af4f364885457565c1aa256516633a146c2 release25-maint +60765 6eb642e0add80cd5f7a87660d3862a575e0aeb19 legacy-trunk +60766 7edf7225b05f8b2b57617bbebd5136ea9794f156 release25-maint +60767 beea35b0ed50ad5a1f55960ce50b2d9f8072d7cf legacy-trunk +60768 b0f380a8b447b4b3ffa4bd5f5d234f7e61343424 legacy-trunk +60769 f903a643a88b1b51a46837384f949794f11d7c87 py3k +60770 5f2ea965f853ece1880be0489ff3f8992c850b3d release25-maint +60771 30b56bebde54adc9d78ca95320babda5aec2d3e8 legacy-trunk +60772 7372308eb62f9f64d0d5aacf583b00f811e7378a legacy-trunk +60773 33122ff83405158ebf6b8ec17aca97dfc9da0ecf legacy-trunk +60774 7d2fbb4e57686a4fe8b737b28ef17b836aa3badd py3k +60775 608bd1014fbea6fcd3df9f16c41cb1d22b3c05b0 trunk-math +60776 584fc15d47ac2a70adb6bb895612289612bfdc79 release25-maint +60777 440e715bb3d2edac60f35c0948a533fc3a5be1ad trunk-math +60778 d6ef9cb543af5a817ba043cabc59e1324523b072 release25-maint +60779 685cee1410f8e343f8928dd951003eb95fa9e0d5 release25-maint +60780 f8fb27106ecc0184f2b6e562aa927d6b5f54d03e release25-maint +60781 083bf6e0ae5051cb55d6bd742c8d34bfb17804a1 release25-maint +60782 76b2de9c9b0b7e523da5d3e979b730d34c975909 release25-maint +60783 1e0ee324c513668434c8822cd92ebd8c1eb0e66b release25-maint +60784 56786a2deec43b8736ac5feb44d1b71cca38d870 release25-maint +60785 c7e683d52b3b3e11288d223db62d66d61598e6db legacy-trunk +60786 4fcb700115d803a9db34c38fe9de08c11a59b15f legacy-trunk +60787 e70f56cf69722e201692c51047ce6d7a6abbd486 py3k +60788 68016a0888b968375c0ac9d215306682d1212d72 trunk-math +60789 095ca9ff0d8eca9c31c95688bb67584ea5fa1e27 trunk-math +60790 e518e39f4a9e959176d5b0e102c15af7149a6a73 legacy-trunk +60791 ef7548173e6171e995495cd7b83079358011fde2 legacy-trunk +60792 0dd05eed63de986779f9522040e96c0f07bb5e5a legacy-trunk +60793 8cbe0bd93c28b01323a389321b12959120edeca1 release25-maint +60794 190d55373e5057d3c8a74a64f2ad5923a1e6822b legacy-trunk +60795 5ad8ae4d784e6acb86bd785c207d733ec46b4263 legacy-trunk +60796 e22bc8b965473f5817693cd59cb936654dcbabb3 release25-maint +60797 65ae68c7aca38162ba0488e36f8da098bc1ca21e legacy-trunk +60798 5c1da7b1b4a6b828dbeb0085e8ce5f19cc6e1e1d legacy-trunk +60800 0a8aae575cdddbf3d133fcb4eed91080e3fe41f3 release25-maint +60801 1dc322adbb676402e52f5268d66e34e1075f8e6a release25-maint +60802 89ec42b298630e88b1b968b53307b9c0546514e4 py3k +60803 167a9fc8284491cb5cebe125a1d99a2a1cefd436 py3k +60804 83d2c70443fb72b2d6070eca44445126684ecf7a py3k +60801 a033617792d19dec4b1dd0a679d754a28152233e release25-maint +60806 f199de38ad0101377aa40fa827222d00901bec7c py3k +60801 957020ed3afae9ee4675e3485ba61c7c1bdfda39 release25-maint +60801 721a5910fbf0d990a4cb235a88629999e3afd0b0 release25-maint +60809 1ceb2a6c60eeae9d158b5d4b6c4667c73b9d01d3 py3k +60810 2d9eca0b46fd3f08bbbddeb444afffd820f6c2e3 legacy-trunk +60811 21836e0b9eb031971d6dadfd01e9afaeb822c1f7 legacy-trunk +60814 746a8e1a785a5905f803cba725921834a90dcc5f legacy-trunk +60816 e18cb21f5f5ff074c4c2af4637f60c903b565636 trunk-math +60819 41dc368688908c3f0d1392370bc659b888179d65 trunk-math +60822 eec67af4d7dff115b8dde71ef2511868b4faf4a8 legacy-trunk +60824 10b263a202cad37863f71073718073455a076a46 trunk-math +60825 cf5a5d732e3ccb2928bf9eb2aab0cec70060c2f4 trunk-math +60826 f48374b8c1c3d8d3561a39b12f54b2cc94ebc308 trunk-math +60827 a235673b9f8ea24ba81762604a3d4d20f94faa9e legacy-trunk +60828 891fb5c3bc182a31745e6cb8fbb1b67f50254fac trunk-math +60829 b2f3fd9a4c657148d22d6ac0f45f57076b4c1853 trunk-math +60830 a97689b3e7425e7d38e139e6fc09fde677ac4499 legacy-trunk +60831 b27de29a2327a6208769fe1f2efcb07ec7559e07 trunk-math +60832 33221adc0c206e32ff141aa28599e2075d258d00 trunk-math +60833 4b4321461a9f0287ca7bdc00e54eabc03e335b8f trunk-math +60834 a573925c91e42ea0ca7b7a1aa6b6182a801dbd99 trunk-math +60835 3a55c0fd822fb305a9c981937f0b444fcb4dbfae legacy-trunk +60836 7a355b6b21ac8d64a6c1573c4765f94b6c3ac180 trunk-math +60837 df51bad867100546ac17023cfb28b152a9b2d42a legacy-trunk +60838 4504dfcc1924dd5f303e22b5d52ff6095a3f01c6 release25-maint +60839 3c4d593e153865b7cf6edbf36cc6983dd6bb4628 release25-maint +60840 915fdacf702da3ab4e1af569b2c91c39d5f68adb legacy-trunk +60841 557236d752e2d979ee2fe22cd9b8f33bc0f296ca legacy-trunk +60842 0e2aaa7b9b1fc9bb9e5d9aba5dababca21164328 legacy-trunk +60843 d8f12bae378ad07e59903518ec81dd7e726c6ca5 legacy-trunk +60844 166e3ba7de243775ed8951883db5ae0cb15232a5 legacy-trunk +60845 c44752d90fd2cce40d9b56dd2f4fbe18a25d5475 legacy-trunk +60850 62df1e339832b6f68f4213d847988c442cac7193 legacy-trunk +60851 71139b692439bded8182b386edd012d265dbd1c6 legacy-trunk +60852 9aceb9054b3f9ff2a7099d622210a90f5c15f5c3 trunk-math +60853 7c4c463421373b52e4e7575ef16f57940028d0b6 py3k +60854 d37859f29e511a12c47ccc810590308165c77f65 trunk-math +60855 8c68db86ff87a413bbdad0d5655dfd62dd0b10b5 legacy-trunk +60856 1a89e91333739507e26e96daaabe0c586338b206 trunk-math +60857 318ca6bc89a3d5df3c6df5fa7d8fb57889d2895c trunk-math +60860 f378edd21df26f6229337e10086a4ddc437d31f4 legacy-trunk +60861 ac095b774e193bf4f879b566b1284ac8b6f5b259 trunk-math +60871 270fcd2e978268a443286343b4aef6fc411f17eb legacy-trunk +60872 6550659dbc9db66e0598fcfd2eea827487d3cee6 legacy-trunk +60873 6212367390e324ac71b719a89749bc8f8c8b43fa legacy-trunk +60874 1872bd6cf4b45b58ada9e298d39bc3fa8829a526 py3k +60875 12ff146f59a7071ad8d08575371eb7a1e1b523f4 trunk-math +60876 93b6157410740c83b6b8214813e40e041e0c5fb9 legacy-trunk +60877 08cb5abfb5b6a24b18df2f326cec14199bbc35bb legacy-trunk +60878 cc0232de066c33de6592a5b507382a11776b5c00 legacy-trunk +60879 b7231bf6bfb7959e2c7add923684341697b80fa1 legacy-trunk +60880 7af955843929629f6cf39a070cd98dc52be36b37 py3k +60881 21eb1e6edafaf39e714390a3e2c7cb7e3352732f py3k +60882 9cc7a86737c9652ff3a53186720ecb0f4b9e7063 legacy-trunk +60883 3d2ff014657490cb0d1bad75c58b4e758e27aaf4 legacy-trunk +60884 1bc923a107d956e69e8acb17401a76cd0e1a8c61 legacy-trunk +60885 0e92ef57c0d4a9ed3f326cce303f1b1541244040 legacy-trunk +60886 d4b0f127cfcb1e90b5a05f8ab330372c8f33be62 trunk-math +60887 5087415054f193786ebd9a3d69cd757b34155c5e legacy-trunk +60891 2efcd7f606f8cd51b2adf3b21ca23abb7a6ae120 legacy-trunk +60892 bf6b268e77f3c42f0dc85355a937ed457789c4e7 release25-maint +60893 3fc586307d6693c4d3e28b546ed746cdfeb71fd0 legacy-trunk +60894 8ece5ca4a785e074df139e975f3dc91e0c758ce0 py3k +60895 606d4cc5cdb30bbad16cd36157528b318f8ca26b py3k +60896 27beae21a82c96943d6ad1dd84e7d7ecf73a27fb release25-maint +60897 bc70e8b89a1c056c6454111ee59ac0e612b028eb py3k +60898 b0cc7a6da1e032e2bd51c2e13447536e89b5b787 trunk-math +60899 3ee77959857af3aa1f85afbca949c4d641f6b979 legacy-trunk +60900 295f37fc621b953c17eb5f6b790194503ba49269 py3k +60901 f9f479ce50d0ba4df07ed3b987c415ef9754d8d0 legacy-trunk +60902 15d5776f2703cc08788a5d855fde66105ca1b617 py3k +60903 9e26c0b23987f5f631c34866965c7edbaef24a9e release25-maint +60904 c474c927e0360fe22e8eebb52b666f6b90b26d1e trunk-math +60906 29a66e621dbe3f2d79c353362860269503cd8929 py3k +60907 2ff51c412e577b545a9bfde32a2a461d1769c3f4 legacy-trunk +60909 0ea236a71d7773c6f1228192af90ef04c81b303f legacy-trunk +60910 5d726da21d7543105fbefb47f8bacc5fbc030578 legacy-trunk +60911 09b167a4018b6da68e20812ebf1a05357e0b6224 release25-maint +60912 151e7ffc7e89368a060f5ab07d241b9ea7dce2f3 release25-maint +60913 d12199d602d3ca9ab3df89fd40dbade92810f385 release25-maint +60914 1d508bbbdb49a2b11629ee186a63928291b08694 release25-maint +60915 9f428a5e62b31427cc5faf07b774d39d3446d90d release25-maint +60915 94550165d626822a0bd51d3ed2b603df18aae94d release25-maint +60918 80ecf67347e9541f1364a2489454abaef39c7c0d legacy-trunk +60920 1c958fe718e3e0890223a04082947774a122bd51 libffi3-branch +60921 b5265acbee75cdfe49f2da5787c16cc49442ea78 legacy-trunk +60922 f6eeea019c1f4ce5d57b9f3cbdbddddca0c13305 libffi3-branch +60923 8a187f5629594925c15f44715497282564f80ab9 legacy-trunk +60924 f82bd9ef7d7883c40c7a846264d38e766ff22816 legacy-trunk +60925 00bdd96ddeda31a323573bb7863ec6b49e444919 legacy-trunk +60926 9048ce9e37c8effb10bfdb72e5dce029cda148d8 libffi3-branch +60927 f9e25562b2d1b99e3fa450a637ae17aca703da7f legacy-trunk +60928 e9bc4fbda19125de73164a2b3954e7e32dc95361 legacy-trunk +60929 5953f6fc02044951c09c90a2bdcb1af97f1688ec libffi3-branch +60930 33782ca9f6dcd3331b3947f7db7773a1778dc729 libffi3-branch +60931 184d1b2275dc876ab5e95e3e520942449ed56bf4 py3k +60932 7d26230bb76302b26ee1e1cd9e896158ddd4dfff legacy-trunk +60933 ec0a857e896ddaaa1bb97a8794a5661b99e6e0a3 libffi3-branch +60934 7be20f48ff670fa86008efa5054567d36c630a87 py3k +60935 d89d4df967e60c97991886a4a1ececa6f0461ea5 libffi3-branch +60936 34afe6cb02a158c174e05bd4785209d5c2d71b33 legacy-trunk +60937 930053c9db1dc3965d806532fcb60d690a8a8641 release25-maint +60938 c59fd82a56b0333ef60084b864bfabe0e13cf692 legacy-trunk +60940 e2887dc5bdb5a6ab80daf9cee4c4fdbead44d40a libffi3-branch +60941 a9e1fdaf413d9ff26b28dfd592345071cc2b98be py3k +60942 3cc57fd87d0e0e9609d8ec3c7a9236f3be946faa legacy-trunk +60943 02d4f98a7e132eeee7b3d8dee95a507f22451cfa libffi3-branch +60944 3bbf96d96639124724c2c8f244d27d4f192853ef libffi3-branch +60945 6ea6c87a750127eac0a2bc45c5a3a8588fbd8c6c libffi3-branch +60946 92db69dc8d4b0659742ddd25e1df6a898ee393b8 libffi3-branch +60947 8eef56e0986cf012152a41b8745972aae167b860 libffi3-branch +60948 98c3f9a1d366300f5c845bfec8fe72b047ba6434 libffi3-branch +60949 85c63036ca019125d1b4b8e0828c7e20c253475d libffi3-branch +60950 f0f8b2001515e05d9359ca380ee6ac7caa6187fb libffi3-branch +60951 a7f350b3ed249063c36bf80307af1bcd1a2ca60b libffi3-branch +60952 1b4cfa006be1590910c37e26ef0413a7012283ec libffi3-branch +60953 37309e33c42c452daf60f42f35fe6ad0bdfbe8fe release25-maint +60953 45466813def77cb2bbf55485e07624b1c5f78e0f release25-maint +60955 b887dba2b5e1c1428103d252372323ced0b3333a legacy-trunk +60956 853af5bbb497b23037165f554959aaed472b6269 legacy-trunk +60957 bc9fd84afdecceb3c96ace28b67ab62a1744423f legacy-trunk +60958 ab38d771f56da996adf453e1cf5eaecf4034febb legacy-trunk +60959 d46627730a2a303eea9f0fdfefac7c68bde4a7f8 py3k +60960 427b54c7ee252d644625ac28c40fe6e569cb3693 libffi3-branch +60961 6d6a293fbaf3b5108d5f8dc07f3deda683be27b4 libffi3-branch +60962 4a9522fd75a6e2ab5765ac6b822dae2c69601593 legacy-trunk +60963 091b27876a1b864e1f9040480b290f360e3ed240 py3k +60964 42b3b117391dcb52cb6bd102bbce4dbdb077eafc py3k +60965 67a9d3385851380e0de93b73185349f2094158c1 legacy-trunk +60966 7c51e1d14c8c59d9c6056ea0013d182ac5866521 libffi3-branch +60967 6a6ca5e579f66e3e740031c069975dd4c9024125 libffi3-branch +60968 079e21f593193ad783de5b150bb323412fa797e3 legacy-trunk +60969 11a73fbbf86f2df3980578bd642436fb355a430e legacy-trunk +60970 8eb59833123157085a8b30a2144fddeb77e30c46 legacy-trunk +60971 1c72a73821336b1d6d33fada4af03ad1bee940b4 py3k +60972 147b48b3bc234e68069f5b3ec1e47bac3c5bee5e legacy-trunk +60973 900347f702584bb627351614cce2bfe60b9a6e27 legacy-trunk +60974 ca5f2f9606174c36519364219d1fad06558e75a1 legacy-trunk +60975 96a34eef89a3d1dbfe245145188b8080ab9cc77e legacy-trunk +60976 dda92a097e8c6f6d2260bfede23d5c456201ddc9 legacy-trunk +60977 5e0772ed20d1d68a956502152c60ab932fdd49da py3k +60978 393822f2ef901c3655d84b2bf8405e3eab4c85eb legacy-trunk +60979 f1b50aa5d5af483aa263aa97dca1a93ce713ece8 py3k +60980 734fc0a19657d5f0f2a84bad915b053166694e2b legacy-trunk +60981 7a8de2a7b1a56bdf222fe6f1466073a1eb14ee7b py3k +60982 8f994d697747550d126a5eef2ba87b9c6431d807 legacy-trunk +60983 3657c27ea2fd2b9a57473fed59273f62cb3796f1 legacy-trunk +60984 930b2802c037b935549e3a37f0807225f1b679b2 legacy-trunk +60985 d7e232e9f1a1ee15c2b3f8592f7b7c512496fc27 legacy-trunk +60987 1b19a57145a5b2f5a66f6c385e4a478a0730f2fe legacy-trunk +60988 97713956c1b0df3aed788ae214e8e83cc4b01a23 legacy-trunk +60989 ba359b6c33c3815641ea91b02796d5cd552d7099 legacy-trunk +60990 9f03788763e09a0901370c725a3b35710f745eb4 legacy-trunk +60991 1cc47e129ff47f4ea6d4d64f2bd580bfe64c8de8 legacy-trunk +60992 58c3f34396708adf3417cdf6dbd2f755896b5ed4 py3k +60993 2c5d916bd11c9a9e11465cb95b7dd0c00c73c832 py3k +60994 42985ebbfc45309b69404f432e2caad829748987 legacy-trunk +60995 e84ad2a258a4694942f91471d8cbbfa413dec021 legacy-trunk +60996 974cff3e0021621ae4ab48cf0ea79e90ecfff6cf release25-maint +60997 130fbfb16036af4688012d6bf5b898a414f620e1 release25-maint +60998 748af0b83674cc1c1fe0fc5efc9d95e9d1c6b6d2 release25-maint +60999 ec7f0873b664df4636ed31b7bede0e031a00648e release25-maint +61000 1d84bf5f94786a846c08028f99b6c3b827acf463 legacy-trunk +61001 47a58ca3e10eb7027d0cc994e3b1add657fb94be legacy-trunk +61002 3915d5f650fa9de07abb71d2612c861c12a6e46f legacy-trunk +61003 7dd2c1746267d2ece179281535ab0feaa9ad6420 py3k +61004 6ba5308f7ba4165b8fe20d99ee9bb53e30226230 legacy-trunk +61006 eec4c1e9e9cc88fed61238ccf4e3feb16aeb5671 legacy-trunk +61007 6a13fecaf2dfb26c4b10065140ec108b4c077670 release25-maint +61008 4eb5a667c882b5a4e2741808e7f6c040f6f5ba64 legacy-trunk +61009 80e0a2930c6d5985e54847f2ac4b732e0e41a362 release25-maint +61011 241cf81a0508797fcc5d9b5b01accc4788ab353a legacy-trunk +61013 9f183ae3458bfb8a93173c3f42677f79c4d962f2 legacy-trunk +61016 40d269d6da9c58307c3aa477a5240896a795ed23 release25-maint +61017 a01213a5425d1c4051eca2ed789dd644b532833a legacy-trunk +61018 6693043d27fd3297ca9fd91e9c3fe8b62f7ff361 legacy-trunk +61019 810bd67738636ec859c6f5029317d679f10b04f9 legacy-trunk +61020 19d852942dddd22c109fc686f48d2db21ae5eacf legacy-trunk +61021 8531f88b578e20a42976e3356ae1ebfb070478df legacy-trunk +61024 30578e04d35cdc0c8615a8777bf614c6bb0c58d2 legacy-trunk +61025 27bab3989f6353cd72b3d7f3e032c08943469887 legacy-trunk +61027 813c146858f78e128b1141f81b64580c1623eb1e legacy-trunk +61028 c126bd9b505bf86b81eabe479cef6cb2107d2bae legacy-trunk +61029 6a992b6680b1b76455ce0e2113ce4039bd8a74db legacy-trunk +61030 1b0eb76ef72abd9082a09514e879187fcaa85ca0 release25-maint +61032 9b115c5e91152b0723ffde95b9b5812b18c02ba5 legacy-trunk +61033 97a1972b672e7b5b535ab03fef882f1f1f83766d legacy-trunk +61034 21a5e9a5483a52240b51b62bdf91b56412f35ac0 legacy-trunk +61035 7efa4d1bced38c30c5799d57126fc4ebf5832ae6 legacy-trunk +61036 48488fa50729e4f0ba005a5e2b3360037968028c py3k +61037 002a5ac792b1e6a7f9967ca10234f82d62d9d677 legacy-trunk +61038 eaa8c1939108e01d14dfe0027ae5bf0d3e3fa790 py3k +61039 8c7ba0ed8443b51372f9c79be9d3d52edd0da966 legacy-trunk +61040 18fed14b06b60664fc2fd20fc315abe69b4faa77 legacy-trunk +61041 c03aff6d07f53b106c62c6295f90ce5b56be1837 legacy-trunk +61046 d89fe1d2fadd82a0cc836128c1a9034d40c9884b legacy-trunk +61048 ade7ac88d2d09e20e621b62119d8a71d06d58e51 legacy-trunk +61049 af928ff0c5c69d1c583a1d69e8314c0b8f7d457b legacy-trunk +61050 1b6fb569963457840ae97837f033ac41ad1802c7 py3k +61051 bf8ee593cbad03c724e5e496a0deddf7dc315b77 legacy-trunk +61052 55eefb43ef6f3ad1a01177edad02c31656f45775 legacy-trunk +61054 a77e1cf7ed25262a9cf35347fd86c302738cd460 legacy-trunk +61055 b0fde93661ce8751edfc6bb39ccfc3a4b5fd78f6 py3k +61056 09c9ceecdd56d04bf237191cd1486d476d68c3ab py3k +61057 7129372f533f41b3741526af8264995a8c8954e8 legacy-trunk +61058 dc5b0107294c0dc4f7d68953fe52711101d5ac89 legacy-trunk +61059 e57ffa2b5d07f0125d6c789f4b514df958fbf6ea legacy-trunk +61060 b298cb4975d2dfdc010ebdea08c7c3e8f0ec26a4 legacy-trunk +61061 fce5af5ce16a6d70f01065599ad3cb6ba823451f py3k +61062 8b52ff41e0e2796330db4e6c3de2ba8790b497ed py3k +61063 f88bebeeb673e98608480ef19296c771ff435d06 legacy-trunk +61064 3a6ca89ef76d47425add3d4951d4c9923afa166d legacy-trunk +61065 17c8ec889ff42b0cf2421b55e5571f59d2a378b3 legacy-trunk +61066 c5e77e0f2f32ffaf42c75a74ddca1e74f3e01172 py3k +61067 144e84672ef936d9708015fd725234332aacdfe0 legacy-trunk +61069 4289c4104279036efb862d22492080c683daf42f legacy-trunk +61071 f6dc08ad564b1c696e67a3fb4230c39b6b87cc9c legacy-trunk +61072 4f639af58a190c098b665a37b1de05bb46d890f3 legacy-trunk +61073 e81e45f8002e8c09a3cf1071276ca0762e0377f4 legacy-trunk +61074 45fc3ecb3023ed80c9759018b2b92efe7a101d3d legacy-trunk +61075 9b381ed1db14332e414f9794226b2254b66aa4f0 legacy-trunk +61076 624ae87f1c961fd91f5a155fba689c3d64efd125 legacy-trunk +61077 088dfc0f71b4980cb8e2953065a0ea477f8989d0 legacy-trunk +61078 4ae43314b74628f9f9cbec737a7ef941666b30c4 legacy-trunk +61079 bf1ab3bf799c86368388c29a8cb12f4b78dd6946 legacy-trunk +61080 cacd7ba11b7758c18929602ff2e0cfb6bcf3cf37 legacy-trunk +61081 2b367250b0cd335917b320254ee98853634acbe3 legacy-trunk +61082 fe7394bc79d63e2352398f12409404421996aafa legacy-trunk +61083 7afef8f43e4a52e08018d6c9cc01422880371015 py3k +61084 c57cb2f8c35052c546462880c6a7930e5a229911 legacy-trunk +61085 d1323fcf3aa17953dc024c652fb20b6e7c0940d4 py3k +61086 f33f66a2082fbf326ff74e62f4bf244e00173098 legacy-trunk +61087 ffdd31f1cd2094d26b8b0c0ab4f86b5509e67391 legacy-trunk +61088 ca45eb71f2d2ba31ecd2afb2b2ff5debbf135e0c legacy-trunk +61089 e425dda4f630060df6ae82aafe951602d15326c1 legacy-trunk +61090 f2f33db589200bec3bd3b79692809054c7e1292f legacy-trunk +61091 7d7347dd94e877d7699d67de7c92e5fd2e6f4fab legacy-trunk +61093 f7884164f0889beb6120c1e2666fb53a67e4467b libffi3-branch +61094 2c93183b8a3c269446c534f05abc2994945e902b libffi3-branch +61095 6c4612255f6052c2aaa49c817d2a786002f7c660 libffi3-branch +61096 b78c3a4371d51110a375468d704e60d2b51648e0 libffi3-branch +61097 d17690c507666838c6cb9f7b3a3c6428050a9a20 libffi3-branch +61098 6592e5a90c2cd84f210fd9f66da2a748f484b51e legacy-trunk +61099 8aaf1495da3959cd844cb5a6dd16f3e29a363014 legacy-trunk +61100 3e435a211356968d7e40eb231b9e6b5a5eb133a3 legacy-trunk +61101 d4434f03b97022b275f0456ba03662af03ae84db legacy-trunk +61102 96d5a157316e351809277d83e46293fd4e78b58e legacy-trunk +61103 8c3c5b4eef55571939856b3317a2062511b6819d py3k +61104 8dd30fe11a4b34d1077be808f2e0f14adb84344b py3k +61105 1188ede15735b9b869910cc46f87d57c197ec6f5 legacy-trunk +61106 cc220745e4e593e6c36b6f6df2f74a540cd82e3e legacy-trunk +61107 504b4357bddd38e73a3ceea626d2990300412e33 legacy-trunk +61108 2d2b0e155f198fbc6f607f1c8293b8e8a6098567 legacy-trunk +61109 bf3fa37fe79cd038c2ed3fb642cb56446cc79499 legacy-trunk +61110 0cb481956452fc5f5c101ee3f2408c99655aaa8d py3k +61111 24254430e89a0c8e05d75d98f80d6be326ba6e66 trunk-math +61112 0128ce77354f60526db8dc87ee5076934b3ba4c2 py3k +61113 710d525b054c81eb2ce7b62eac49a216f4df088f legacy-trunk +61114 c38dcb7d94a6da9bdfcab8f47f943e53728d25f5 py3k +61115 e4ffe64995481a97105b9300b89efd7ccec6f5b9 py3k +61116 59762d6714a313b95d92d5b3df67a635a2b00e1a legacy-trunk +61117 972fc7d7cb726978c2855026c4428b71e7415101 py3k +61118 43e084847e53323401e8cf7c2d028c268ccf8028 legacy-trunk +61119 7da36b49c9e5aae2f8505d3ec06b36b610daada2 legacy-trunk +61120 c546523667728c95707dd385ce0ab27806b5e313 py3k +61121 dbf1ddc5f47953794745f6fc9fde2e5429dae0f3 py3k +61123 bce4c40df7df74efd87fee29209eb1ce336f1943 legacy-trunk +61124 10962b3f77a9b381b631816acb16a8fc49cd6595 legacy-trunk +61125 facf01f15b1535559c2ba05c4f5aa72046b88f1c legacy-trunk +61126 937a3c5af69192b8ed18f4e7aef6c1e59ecd0db8 py3k +61127 8cd984c17dec85ac0739185d0ecce7d0e49fc58c py3k +61128 b269c2d03fd2d6a2708ecf6630b7fea21925ba98 legacy-trunk +61132 0940713b6726ca26f3bd9e6ff45c0e87bf5d0f7e legacy-trunk +61133 05c396191e43291f760bc20293793f6a94fe3b57 legacy-trunk +61135 4a9588b1e4b95df13bd5108eba347c061efe2314 legacy-trunk +61136 89cfb38a4b98623ca05526d6ab922607ed08ee0f legacy-trunk +61137 207ca0a8afd00230abb5ece2477d68fb730b2a40 py3k +61138 ca11cf24eb855f5c86cc1c40f047b465cbe7e48a legacy-trunk +61139 67d4048668462094edf3ece756f4029a62fd5075 legacy-trunk +61140 02a01e578d6c5a0be34378306660c3fcc4d59c63 py3k +61141 b7ee9074ca0eb3b77effd2b231b3091679160ea0 legacy-trunk +61142 fc6f90545cb48e5cef5f6ecbb10fe6eccdcd797c py3k +61143 0023c04228e6b353305d5cadaa8fe65918318106 legacy-trunk +61144 8946e27a4563bc2d3db29e460f98c181ade75df2 legacy-trunk +61145 9b8fc405f9b04fc511a6c238111994e812285c44 py3k +61146 9ad542ea05ba1da9b0061e2ee92e8c9507f40663 legacy-trunk +61147 44d10d39092c65ec2febccae726c862ff4b87547 legacy-trunk +61148 6a04dbb0d14b49d15f30da3f77d39f5f64a09e66 legacy-trunk +61149 3127956f3b33e7d1dfa2f5e2721558688c955bb2 legacy-trunk +61150 a8fbd92714a9a9c47227b8f26e876f44ee82607d legacy-trunk +61151 2d0bd095c420b0711000d9be66848f6cfd972b3b legacy-trunk +61152 0adfba8ae95713c4e0d72f15d0896dafbfa6b8d4 legacy-trunk +61153 82c3b0b5aa9258d88e17f97d15f08f072f48e7e3 py3k +61154 c09db78bd066ccb12d158789dbdf3498a613893a py3k +61155 cc5543b5610b2d065284446684969ded9ef65f43 py3k +61156 0e0169b0eacc6ddf8068d5c7cd18473a7c30b9d9 py3k +61157 5ba06690c184799b05c5db60110e23fa8c70a538 legacy-trunk +61158 df15827f34881b9af0936350813ced5c123c8230 py3k +61159 362a46e7c33a2a6af67a797430fd64fb9057666a py3k +61161 20a42674b11104ab985869a1dbe74d160e5f54d3 py3k +61163 cd15a5e9c1de59bbefda7f6ff85f46120056d3f4 trunk-math +61164 c125c61e06a86067320b526d801fa9f7cebcdf55 trunk-math +61165 70c41bd680b5e7cb01a4256bece9b324ea64d080 legacy-trunk +61166 3439fa215faec0ae18cb284394f1cc504595dbea legacy-trunk +61167 5b7078eccee83697f5441742df8e9adc54e7cc82 legacy-trunk +61168 a62f95a4adfc5e2ad2636e07649bbc77a4075501 legacy-trunk +61170 4060db126ecf36c505428c24dc6db54f1d57ac59 legacy-trunk +61171 8bbe531fcd3c8ca71f5b41d126b38de1c7caee4d legacy-trunk +61172 f72b2de997b9927885a94c739c9ac9781b287fbd legacy-trunk +61173 96ca8c7cedc4d031ebb208e5ada9318e608ca628 legacy-trunk +61174 7628cb403c53e1a36ae3d2f948b1715596a66365 legacy-trunk +61175 bbdf06a86a243298b21074e9ae53caccac084c31 legacy-trunk +61176 0a8eecac5ad1dc9347de4cab4725b81611f05fea legacy-trunk +61177 f653c0b8916b8e565b70766d91a3f2250d4e6688 legacy-trunk +61178 47328d76e8abbd17631ed66805b752e8fc15a3b8 release23-maint +61179 54f1cb8a81f66025c7ef126e8e7e44eb40356d32 release24-maint +61180 0565130d7d9f64c0df440e5c215f2a4de83460cc release24-maint +61181 1f7d628c70a9aefe762c2c32210876faf8d64c78 release24-maint +61182 7a1fc61d5c3e45f3a2215d42ca856861a180d119 release24-maint +61183 5ccb6eb202ff21c0180047555eca669bb926ce17 legacy-trunk +61184 88c1e17ceffcf3593fb1b5b0d61746aec0ae981c release23-maint +61185 893c7bd4a92bd889a85e691f49188c37b0a72357 release23-maint +61186 56681d5bee70930bc4cd81c2891fce4c30ea670a release23-maint +61187 4d71301a6d4b7fa978e0de2cf0ab271a14eae26b py3k +61188 a31b650515cb9ca41c57c15d4bdb73bc138edcf0 py3k +61189 cf3a80f1da7d07a034fe4713f048f3798e6a49e1 legacy-trunk +61190 6068b75ec27a0f19c7202c80e080de7fe3d9f4a2 legacy-trunk +61191 44ad78fe35fab1317cfcd03187f4768511af1e68 py3k +61192 b932f035fb3ef436dab00621b53e7f313fd00fe2 legacy-trunk +61193 24f4230baebe7dfc6cb3769fe979b31da69176a7 py3k +61194 c6d9a34f024fdba466a92279e3f1156c2917de22 legacy-trunk +61195 2c73c5833f2005ae9f56dccbc5f9d209a3205f2b legacy-trunk +61196 7e4b753afec6e1794e37ac8edc643251e435d2a1 py3k +61198 a55136c78b6041d3ee6f505fe11d5e9ab455bfff legacy-trunk +61199 a18a424c2bd34e787f92338716d82d7d48e90705 legacy-trunk +61203 41a707744bc898dca3dfb0d4b5772f5223151ff1 legacy-trunk +61204 6282dfd5dc494f4091ba3285295b69a3beb4732c legacy-trunk +61205 882eba1451198d5a0ffd81bf2178ff17adf87b33 py3k +61206 25406b3ff97a6fd25dd5511dd505e319b28e4a89 py3k +61207 65ef608dd66cb04320b5c271cf5705cd99b0e43f legacy-trunk +61208 e99e1d8b807770ee8be6b1ab351645030d270d93 py3k +61209 c518f39473fd0b9003d83801522365befbc52bac legacy-trunk +61210 a154f19825928cbaf1f2fc432789bde3f2e7a40e legacy-trunk +61211 072392ed4ea691391771f4095d39786fd087559e legacy-trunk +61212 840138e24980c8997463c3d86643140000bd0ac1 legacy-trunk +61213 2d551d046022e1b74866a65542379be92fbd3bb7 legacy-trunk +61214 4d361f01641cb611ab3fa903c0ef348cc6fa3944 legacy-trunk +61217 91d7572e35a1cd010ea014bd38d467a7c0228c79 legacy-trunk +61218 d7e4c63ebcad07be6b2bc18e03c25ed1c3264a24 legacy-trunk +61219 5489af686408c1ec072ba0b896bf331b12ed2de1 legacy-trunk +61220 3fc09ccf014185d2cb4cef1c5ae3509619650f87 legacy-trunk +61221 0e224aa219a21b7fa225da13b15e71014c094028 legacy-trunk +61222 f3eb457e96a75c3f977e570b25e31bd812de5f0e legacy-trunk +61224 e44c745bec0badb79016eacd0ca6b2f3cfe810af legacy-trunk +61225 4ea36c012a2de522742121d49326529c98c0fb19 legacy-trunk +61226 dd016a6ddcc5a9028f05ba517add37794794ba9f legacy-trunk +61230 97bea39236a93b69c44f91bda94267136262ce58 libffi3-branch +61231 2d4253015f5840a14cb4daadd7707908ba592c30 libffi3-branch +61232 96aa6d027e2e7691816e49b304d9758281421cb3 libffi3-branch +61233 5546dc4a426aaa6699b4c77bd21acde67bbc537f legacy-trunk +61234 d387b01dbc1c9daaf9066b11682e7c95f53333b0 legacy-trunk +61235 91ca9549906acabc9aa657e41f6c25e025dc47be legacy-trunk +61236 495700ee33456f764cec1c145295268f13682b54 legacy-trunk +61237 8a5c75efae4c20be9a7419b8db10ae1ec2566f0f legacy-trunk +61238 dd318c3f6cb79a74959bf6a2f5351ac2f4f144dd py3k +61239 00cb0a35fb49b2fc97f6c74cbf3c74ca2516dad5 legacy-trunk +61240 ff3e9aeaa69235b89259205eea3166e7c1e63138 legacy-trunk +61241 30fa6777096f2102ed7d4ccc8762addb364ea645 legacy-trunk +61242 11e9e3667b365cded77e8c176ec29a921cb082c7 legacy-trunk +61243 beab9e10a18bde978f426f90c8f89a8e09082b62 legacy-trunk +61244 9960fd2f5ea94085aee699bcad980c50455af9ef legacy-trunk +61245 1a68ece1547ab47f7297cdfbe863afd6dcdab5a5 legacy-trunk +61246 234401add2998fbfa5457848c5f49852b323e4fb legacy-trunk +61247 c9d66bdbcccd44a359c5bb8383b4e2adb5c81de5 legacy-trunk +61248 43610512544591f78e87e1d070feb7237536af30 legacy-trunk +61249 f5246911c903f0c3fee1f54fa8e910be135f0b9f legacy-trunk +61252 0cd4ad1c9153ea8a141658b51527c54813c23bb1 legacy-trunk +61253 d41a4206405c135ff0d5d291eab6fe4e169467df legacy-trunk +61254 2216b100b2d2edefd23feadaf56c1eefb8ea6b08 legacy-trunk +61255 42889b1a7dc255dd8050cf93080db86bdadf1518 legacy-trunk +61256 c197e18449b404f953a569755c80ad1d0962fa61 legacy-trunk +61257 eefc604ad935ab84306116d996e58863145d4767 legacy-trunk +61260 d0be2c36cbf8d799220ef900e58df975ebe11421 legacy-trunk +61261 7395ed0f0f7f7743969bb97fa6274854998eab67 legacy-trunk +61262 9b04941673f173f214c7492322576981387d9c2a legacy-trunk +61263 ef893390487bafd01e88afc8e3dea48cd4ec79f0 legacy-trunk +61264 61d22701a5e5eb626ad7dd09ff0610a45cffdbe6 legacy-trunk +61265 b262bece1323cc3e911cd01c19fde41f20a0484e release25-maint +61266 b8ef71b0144610768a584cd14861430d9be95330 release25-maint +61267 4c47993afb1b1230dcaf9d30753b6eb16b8ee317 py3k +61268 0b8b3e663e3a15c7647ec1837b1a76f514bbbd1d release25-maint +61269 065c4a76ac01f15ca4f3bb343018c03b240b2baa legacy-trunk +61270 15746bf4a0a63c49909383276a9aa1cf4e946371 legacy-trunk +61271 a4c265565cb6b67746c6c4dd225316e7749bd641 legacy-trunk +61272 3980313d9b8b27c0e22370cf21c8b460371522dd legacy-trunk +61273 36fef99af18d12143d368cda8e1810114a698016 legacy-trunk +61274 e9be6aeb4df0621fb29218e5344ee68b1cf77bd5 legacy-trunk +61275 898dc0f8ab635af7e86fa229fcc181331e7bcda0 legacy-trunk +61276 17b2ea0afa611888281a0f249b0c6eb10135c8e6 release25-maint +61278 af267e54bf1dde8d8b67df029f0799ead07e8483 legacy-trunk +61279 bbab8f64f8d62c569c6d3c801f18c933bd40872e legacy-trunk +61280 9ecb03ef1c624197b52396c76c5f116dc5850335 py3k +61281 485b21954746097b25052224ce49e1618ee0d155 py3k +61285 44aa59f8591daa6e774da8c6afbc5286d2ce5b96 legacy-trunk +61286 0be9b1cf1b1621167bdaa2f78570d8cbae45bd82 legacy-trunk +61287 7122fa65697b8a73e610db486813a03e96a32ad8 release25-maint +61288 5f49b569dedf114c5fecbab5cd602f9e2a859a8b legacy-trunk +61289 a8754c0db53f50313f5dfc4178ee6e27f4947fdf legacy-trunk +61290 343597c7d682b3552580352deddd0cdb36978a04 legacy-trunk +61293 9bbe55f9867ee94854e345f9af787fcde91445f7 release25-maint +61298 391de143226fd7b37796bc978ff3f78f05b08919 legacy-trunk +61299 f86fa5feaf314dfa97b060b01ba2367423378477 release25-maint +61303 9cf70729c23f2088bb5030b090939b35bd22deae legacy-trunk +61304 37aa416b4c47b4ef5f9f093ac8687574230a14ba legacy-trunk +61305 e5aadc05f6f51ecd5bd06f762afb16e013721f90 legacy-trunk +61306 45050d376d57fb86f804245fbfc068ef6ff9149c py3k +61307 c27aabae06fdc75b228f68d3d93f104fd3a232d0 py3k +61308 9a727c9f9baa257864d53a67e2d3a0021a997bca py3k +61309 af44cef1cdf5a55c93fd9f1792db0a9ba892e5b7 py3k +61310 c830616bd2fc931053c417943f14e94f4f2536d9 py3k +61311 94053b27a352590ac20d66bf5d8e6eed411158c1 py3k +61312 506547822b8d01022da65500e4b61ca7fe96d52b legacy-trunk +61313 15842094b089a2c78b5025c6c7ed8d8cd9aab62e legacy-trunk +61314 8bab418cc8793b8c0086a0027aa818e5a827248a legacy-trunk +61317 5b4239c1f8f82f609f8880a434c139c1d5962e23 legacy-trunk +61329 7f23b804e94c04ac4fb75e165729c4df36736efb legacy-trunk +61330 66070fdbf0b9307730c75d19b7c12b59911e589a legacy-trunk +61332 6f195755f144e802dc1d8f72516dd0aa1eb8972f legacy-trunk +61339 456ceec65357c16657b0adbbbcfe2720af07ab05 py3k +61340 aeaa303147eeb23f4c0b480316ec364e412689a6 py3k +61344 b9d6f870bfb168c5fc36cdecc70a19583072c559 legacy-trunk +61345 d8df4aa06261de5e4c0aa051e448697d4791e437 release24-maint +61346 2022943ad450c41d64708fb5caca2d2672b5b8f8 release23-maint +61347 5d764d518f65ebb9108569727a7c88b320c27eb8 release23-maint +61348 e8572d9ac85ef3d3e4c00c4ed8f1ca7a6aed99de release24-maint +61349 f7c3658c71c3d6c32039825073275f5d783aa403 release25-maint +61350 162c6952ea34d4e71f5f9997fd80a1b68839a2fd legacy-trunk +61351 ce5f6fd579132f4b950b0955adcf4eb818407be9 legacy-trunk +61352 7f4e6021bc9f6094fe2a0d6a750b0a6ea7c0ee04 py3k +61356 e09bc1c5295bc19845a0f354da2e83066feb8ee6 py3k +61357 7adaab64eb72e47e57fbb4ccbaf8703d0c2f5812 py3k +61358 7752a57f9c490d31f0f3af8c612155368e39dbd1 py3k +61359 e446910c9d437f4d4a030ab0144adbd11afa24ba py3k +61360 740b5808c57ae7b3d4c793bade511cfaf9f52fed py3k +61361 42a6aad39e5ce9bd45fbda3f7f69918b7d683536 py3k +61362 7b95c57b5821bfac27ee6b15e4616ae390c1e3cb py3k +61363 986338eb0c0de528625d45b9fa51c3efc8b907a3 legacy-trunk +61364 7431f3faa3568a42e1ed443fa6d35b79a9aa941b legacy-trunk +61365 9395a22a966a94ca088b5c4a7d591244f4b26d50 legacy-trunk +61366 011d79af05ea913fcbf733d5e1ef24d6bf2af9ec legacy-trunk +61367 d5024ee9e88a31b1b6c74448421e13ad6802343b legacy-trunk +61368 d72d527de71196565af735f2a847f48897547a7d legacy-trunk +61369 cbb9e2f4b20283aca3354a89cdf846fb271651aa legacy-trunk +61370 db5b321edcbb2c1f93ea0ec141f8b56763fc6dd7 legacy-trunk +61371 6a33d4f6f16f7827e6e2f1ef4e70733aab614da9 legacy-trunk +61372 543e8dde361f8a61c216e774ac4ffe746c751cbc legacy-trunk +61373 49dc9af90b3d1f29dedb5baec3874d362696ba4c legacy-trunk +61374 66341bed82b3053ffe66ce81a4f19258e04c0f9a legacy-trunk +61375 d97bbad9a35eeee20371c241c64cfd8ddfb108aa legacy-trunk +61376 bc813265e2c6533c550ccefbfe7326f1ef8ea355 legacy-trunk +61377 e2e542fdacd09deb8ada35f63f77bffa748f807b py3k +61378 f6b3cf2f33311fce7151b61f7c6d8d1db713e924 legacy-trunk +61379 7c78ea707219ee4d00e64635ccda1ad2719fb4d8 legacy-trunk +61380 e7aa9b5f21b50d28d85d0674abc85734c8b0f5ef trunk-math +61381 5373751ad4b410b8277f514cf24c2f537fcfe2c3 trunk-math +61382 0e0c1498be1a80f86b99474b5ce2abfd33deb3bd legacy-trunk +61383 354e377c9590244abe07a9792a8aa02c7c6c1a63 legacy-trunk +61386 16580dc14294e9223984ea91240c89c15258f8e8 py3k +61387 0053fc9f5a1f6e70586448c8e92e54df9d0c575f legacy-trunk +61388 9c8909ee571f4c505f511d5d1a37b6fda553f5b9 legacy-trunk +61392 b940b1ad9a3aa219a21a948b1217f1dd0e060fae legacy-trunk +61395 c07c5c7a914ee31f9d70c44ba0eff640142c0a30 legacy-trunk +61396 823e11ebf66829baf550b916013b534fd745f709 legacy-trunk +61397 a5c939229ff27fb4646d1eecb1a1eddabb8fed8b py3k +61402 212e9c8ad087eb16c894e00ec98520184559f2cb legacy-trunk +61403 59eb5af61cd736851739887a7052b66ee2c99bea legacy-trunk +61404 531e62416eeb67d5e9297e078813c228fd598de0 legacy-trunk +61405 0d10f193b9be25a6fec899ac43ff620f111db53f legacy-trunk +61406 4e358ed7f515617ffc7ba52b01e53ec498318b10 legacy-trunk +61407 fea7ba8910a960bf70dd92e4e77d7701615cdb91 legacy-trunk +61408 832c820e9d144cb76c8778ad6fcffe232b1f5c46 py3k +61409 058fbfb985ae8a0b65d70415a619915e8c5dad40 py3k +61410 702657efab9be91393d9ceb4c92706360d9594c6 py3k +61411 ae21a8d703026e1822230c46efb6d1af6f15654f py3k +61412 d0c677ddd6b89c014d65f9174872057f8b2696bd py3k +61413 2e0e1402959d3de707c51f9ee1261b042147faa4 legacy-trunk +61414 39fb2c78841ea25824bb1ab0696a2a97db5b9a01 legacy-trunk +61426 37973125b2c0cc0af9578fbd3b563b8275425a6d py3k +61427 d70fab97ebb5ea9731075e397b91831b31450e4f py3k +61430 1f0e7e2dbe15cbae9e5645c6134fce8262bf3c2d release25-maint +61431 79dea65332f86f37f9c653de240c18eef96afed4 legacy-trunk +61433 2ff3e43217b7e544a39e54583e50efd96475a19b legacy-trunk +61434 4d29127f3fa0d7bca729cdc501d60d220926718c legacy-trunk +61435 16732db00822ea9dae17e1a4a33ceb934e7f3a1d legacy-trunk +61436 c4402ec60c3a4a152ee625e7d17c25f6d355c59c legacy-trunk +61438 4d39d4a6a9dba5a8d89ff1cc5eb5df3f43f87a68 legacy-trunk +61439 22a4a111d598ae13ba70fb72132b002c523d8ad7 legacy-trunk +61440 48247a4b38edf0973d17a564544eea0c7c9222b4 py3k +61442 62ef0ea034f4e969079e164c8058f2516d0977ea legacy-trunk +61443 bb543a809fe24c8c5251eb258bf2e9d60f850f15 py3k +61444 f11c00246fb525d17c34f26e6a4fb6cb65c6432e legacy-trunk +61445 acbf9cf594f8bd85264d6a44f5efc468664aa0d6 py3k +61446 36f3c6bf2c97bfafed6981af2329cb431a1574a3 py3k +61447 0db7fa14c7948bf14368f65c0ddff68b3d3e3061 py3k +61448 cb360fc889122773e3bb23e4768830e226fdf0f7 py3k +61449 710478a1977acfcc45c39e86633dfbb7207e61a9 legacy-trunk +61450 8018f5065661baa32a04cd2b8627c39d581f07c6 legacy-trunk +61453 7e8ceb39447ecbba66c0eed76188c19f118df59a legacy-trunk +61454 b5cb7a678f3891fc4967eaa7532a887098cc3a37 legacy-trunk +61455 de6b2834b8af990d11a0d733c577248985765f66 py3k +61457 431825eac4ae37363e4e9fd04a670d28953fb5b4 py3k +61458 d33cadb595f65ddaf8b03af9e0e6b7c49343f6a8 legacy-trunk +61459 6a7fa8421902a954dec779fe9a7f4a4618b1a942 py3k +61460 2c260be1242d9afd2731847d472e37f5eb488666 py3k +61461 34f4d47ec43a4f36c1b7d078c4186edab48043bf py3k +61462 9d9a38b8eb1b11a02825eb04590c9f25e1a8d9f9 py3k +61463 a200c387e8b265135de16b6d9e97f68ce45b8a30 py3k +61464 16b44764944eb8a3ea82dc63d908e3699a966f4a py3k +61465 6c393dcd45c48f070732b1a8d8e8bff8baa49ea9 legacy-trunk +61467 322693bf10cac6cd3c087e001e6a94c1022e411d py3k +61468 973a23cf6f0b7a0959ed6ab62ce79b0de27b10e8 legacy-trunk +61471 7f13d6904e14a494aeec8899dabd78c24ec9d4cd legacy-trunk +61472 8a3fa86c30a6e2c72d5c7bbfc238a95ebf3f622d legacy-trunk +61473 3745fdb9932f07c484e9f31557bb28b6afc529b1 legacy-trunk +61474 8defa1d5f066d93018d8b7c7d9f57de0d4c376e5 legacy-trunk +61475 ff0ab7b28f4917cd86374074d2ef49a9815b12ec legacy-trunk +61476 e31d31781a753e0dca41d24669729e38ef913cc4 py3k +61478 79fdc88ff9ecdde5f9724ab0e9a8c6247fa7b3aa legacy-trunk +61480 4dabd907187ea7391a54b531da72f4346dd2e195 legacy-trunk +61481 966ff168b56696c105c3044e662d17aaf37890cc release25-maint +61482 7c4854ffcdcd88cc572bedd8194ff5d0fc60700e py3k +61483 c0f165e1dbc05dce5337830fa433e9da0b4583f2 legacy-trunk +61484 a7bb004e7f06a93cd88573c2c78bf47f60766c99 legacy-trunk +61485 3deb70e4182a07a2a7929805b216116afcc3fe9c release25-maint +61486 27e7dc2e62905e9228f9e0ab1b69e4ab252f7b8b legacy-trunk +61487 aa33fb90eaa52a9b9ba79ec0ae276e190a2f9e47 py3k +61488 04487ad3d1bef415350fd3cca8cb4df6d749569f legacy-trunk +61489 3bb0f1a1939d93878b4d649beae8e71ed5919d1d legacy-trunk +61490 b359480ca886460ecfef851608919af5a0a332b0 py3k +61491 5c0b5cabeec966d7fec8364299e1ab827296d131 legacy-trunk +61492 edcb3542176a53d1482efc5d2d849b559ed93b17 legacy-trunk +61493 13729c70c8d8c294996f0798991a4add9de66b02 py3k +61494 04050373d799dc0d53930c691585fc282e05748c py3k +61495 2546313a8b27ad4fac8ac92f2f2b38c9c801ba05 legacy-trunk +61496 c5241069fffdaa9e7f135fcfa4bc1af680226dd0 legacy-trunk +61498 52682bd738a75cf4cb712e6b18b43cf3229bacaf legacy-trunk +61503 e227ed2ca9d15abbb6133141b391a0254ba39f2a legacy-trunk +61504 d4bbf9b4710f47d8f7c6c0fd0693b0324b942f40 legacy-trunk +61507 6fc6a806784f95f060feeef44bf535b6b049626c legacy-trunk +61508 86736401d394447acafe9c456644d402c637e8ee py3k +61509 97361d917d22d401a36ce86dff6ad09bf2eda234 legacy-trunk +61510 4634243179550af5582da40c37a3d83edfa72015 legacy-trunk +61510 117bbd44adae646aeb654ccedbc9c3ae62665cc2 release25-maint +61515 8f00a0948f00e2e57e792065ab1736adb5ab3541 legacy-trunk +61516 6c17dac705717cfcd4240a38713a7f8f47ef56ee legacy-trunk +61517 9638d2ea2f57baa36475a85823d7d730063f5ae9 legacy-trunk +61518 3b39b7bb2c07c268f9a718848b1e7e635858a2be legacy-trunk +61519 e148285bd51183890d15956fa30a902c09c19fc3 py3k +61520 96601f8f3391445d92b2a5772b260165591950af legacy-trunk +61521 30c4e1ca84212366989df833ae2177025f17477a py3k +61522 9b8c4b5107f0f55cb73c2075f6a3c12fa12cf22e py3k +61523 21139ea59b6ba2565fb6b947658803cb825d1e05 legacy-trunk +61524 78ca8c2561db8e79668d1575df8f1e7f9b08315d legacy-trunk +61525 6f0eda3e92b361b21877e66405b55f68b0d7d666 legacy-trunk +61526 581c3e5b349b120d29650add66d148dd0d8eaa99 legacy-trunk +61527 923380acd1cdd8055c98bc67735d0d4b98688ee4 legacy-trunk +61528 c424099b4ce4b4de4baaa83f600f12c04dcfad8c legacy-trunk +61529 50771a3fad2caaa88f940ea39efb00824c60b8a2 legacy-trunk +61530 f302bef8a004aaef127133b1424c5d558205fd31 py3k +61531 1cd930b835a63928d17181bfe7318f6b6bc14814 py3k +61532 ea91914bcb9774f58549bda9035b5f9742cf8b6e legacy-trunk +61533 a628ef82eb7e0c9e395c5c8b0469fc7ee77d9081 py3k +61535 e0e8bef0d5eccb2724e14739967f3eee07b8eb6a py3k +61538 cc758e8ddc9d794052aa0ad086579a21c4779abc legacy-trunk +61539 94a6082a770fa30fcf85d0bd21bd724995f1386a legacy-trunk +61540 3a72cbcc1bb806c2b69c6c5af2575fd41689c2b7 legacy-trunk +61542 eb6d007453bc2c279d0961613e2078dfea35020c release25-maint +61544 dc4d68ae9d3dbf041597687dbfd16b04433d5972 release25-maint +61553 0d7659c2b9985274b6631c6a1b07265bf6f56730 py3k +61556 515633615735af06ab836f9d1ad67845b1471b4b legacy-trunk +61557 bce69db72e0043c5812b790a75438a5c66e856c9 py3k +61558 83c55acfb95989ae891b7fc077c03940968de353 py3k +61559 1bb67e503dffca4364df64b53bfce65a2bfb7cfc legacy-trunk +61560 005db934ee25ef990bdab5ea56fded5b6cefedfc legacy-trunk +61561 0e79793ffe8705e1d5e81150dff1e4eb85b86619 py3k +61562 16c576dee9d3bac184b414936fdcddaea126d150 py3k +61563 2f640f0f06976b2ead903933f660a20310b21180 legacy-trunk +61564 ee0dfccf8cee6ece887bd539267878728b659ac2 legacy-trunk +61565 b0d01969bbc87de45dc17c776f5b18ad66125ff8 legacy-trunk +61566 f3be12220fd7e01bbb2a8065cbf1ad6f4c6e8060 py3k +61567 fa70e6ae831ae1dead1b9adbafe0fe5f562a1e61 py3k +61568 05ac3c19b7a803643256aaac97621acb05fa38d5 py3k +61570 860e23a61e5510fbc33e38af3d565110dc87b72a legacy-trunk +61571 2893c0129fe5c3602a6539368f3acda4d73b18ae legacy-trunk +61572 c8c547c51f9a6f0ae5503f095e0b91d0bdc77a4c py3k +61573 51e24512e30528556c2bb71a4c6802610879772b py3k +61575 2385e16acb4279d51fc71ac091f1ba2609afc6bc legacy-trunk +61576 96bd9722e31d300925a6a631efcdce4ba8776373 legacy-trunk +61577 727f743cf630b1d19e0e226a18726502df73938f legacy-trunk +61578 f7a6f33943106740221487fac8b06c8d934ad130 py3k +61579 f096ef9c4114f757ffe3a702f92e685ceb439ecd py3k +61580 d87d7fc2c2bf33ad502efe209f7c3ab9284ec2a0 legacy-trunk +61581 19d4b697fbf9ad53c004562c37b7af8c597cde9f legacy-trunk +61582 733c3ee19899667d5f68cdd1cb79e91eb1802717 legacy-trunk +61585 c77e3119e2675e08612b968edef67808886644de legacy-trunk +61586 1dfb9ae78a3727cf83e450d6bf28bfdd161889ca legacy-trunk +61587 4ca7119d17005df61511a5a044e16d8a8c464399 legacy-trunk +61588 b84e0e23cabd890475a5781610e8763cbf14fa41 py3k +61590 7f7770719e848699c91418462a2a853001660660 legacy-trunk +61591 d4e1db8797f6dc80cafc13ed8eaf5d3fa2d2e63b legacy-trunk +61592 819116950099087beafaeb8dc238c803e77895de py3k +61593 d5cff7f9a142be720624cabe869004314a2461a3 legacy-trunk +61595 2a01075cd902142727ae65a5f58c98d5085e0930 legacy-trunk +61596 302625fa6a2a69adc8d792429ed8e88467f80d2e legacy-trunk +61597 45970b04ce83e2d53437428c6eb042ab64239994 legacy-trunk +61600 963d67df37237e5dc8a1146f5bbceb6cbcc7fc67 py3k +61602 a9855db40ffb33f4ab0b4c938638dddb5fbce2e5 legacy-trunk +61603 1da2499683b43c3e0d176e96102ba7b78e777853 py3k +61604 3b323ff9304c5f057622bffccabc9e4eb69b8fef py3k +61605 422b49dfd15b53c3e7550a5bc5e35e4bb54e45b6 legacy-trunk +61606 e0c9b9ef04660f9fb80ec04568b1c43d3f22d5c4 legacy-trunk +61607 4284718fb631fadd32226f459fce94964f09f9d4 py3k +61613 ad1d604bc8ed353014bb2e4d432b8d9c54a705b2 legacy-trunk +61614 adbc934bf1fd5102755732840b78c76577008534 legacy-trunk +61615 21477b1ba5817c5c8e2b8a9df735d798662b4bd3 legacy-trunk +61616 5cc04a204766f2e7e5430a2246410b8bb78bb4ab legacy-trunk +61618 855c4290dfd7aa34db09e3ffdbbdc782e1d4f035 legacy-trunk +61621 74ab8bd96c5deb3a2e0f04b2e5ec43ffeda7f269 legacy-trunk +61622 b0b608e579cd5ae360d70a1cea5243a607260104 legacy-trunk +61623 ebc130a4a273828f66ad6fbc736704bf1b64157a legacy-trunk +61624 93f9707b664ce4acd9469b180b6b50c76386cb62 py3k +61625 330f574c58f7c3dbed5ed4d037cb6f53a6b0a394 legacy-trunk +61627 8817a8e12a559eca87320cff11201fdc06e4f0ce legacy-trunk +61631 3bf19c31c956f14124d3acf5bf2dc1abdfcb2b6f legacy-trunk +61632 dc5be0b3c3be7da42646d4632e69800d7f8a91a7 legacy-trunk +61633 e665a0b16da0e87b0c3a036b3b54926b834c0e9f legacy-trunk +61634 24275552c9731714219e135ef2ef859452da6472 legacy-trunk +61639 440b08a32e0b3d504f5325ecbbe0be522b0bde2c legacy-trunk +61643 1657f0acca78202105d77360207853df5ca05f20 py3k +61644 ae3ad06577c7d7a5d0fdce69c8274fa6c7d56b17 legacy-trunk +61646 2da0bf2e2f5cc1f3ac469874a6cdcc97f3726e03 legacy-trunk +61647 65f36104fcad72ca89204e6ec43216bb8b1c554f legacy-trunk +61648 3989fc61e789c8945368d360af5ef821fa8056b4 py3k +61649 3aa5eb1829131501907f3005dbb6c81c1ac181a0 legacy-trunk +61650 293c6106fbe3497982c954dc60e253d172220a74 legacy-trunk +61651 6509ef8bfe9c363dc7fb547667e9ef6643d618af legacy-trunk +61652 cbad1f5cabb1511dca16045eb7ab5064e353be3b legacy-trunk +61653 e86282199465197b1a1641171dc4a93b00a0f7d8 py3k +61655 fc93bf5fece1d642bb8bde58c539de4f1c8fc68e py3k +61656 8b0b89025d9828b3a80b8221a1b4ddbd71365c0d legacy-trunk +61657 5bd2bdb39e9cdef5f3490de22ad047bed79a99c6 legacy-trunk +61658 d00a9f75d223d934e0cecb6cac2f3f9a3efeb2bf legacy-trunk +61659 0fdb36163841d8b696a9902b0db8c06e9c28be09 py3k +61660 e0203c658b86501d9f512aa0a689c25a5fdf8fda py3k +61661 9a47709a28b79f4bc6c153d8824db29e0c232538 py3k +61662 fc210673eef0154442862b89455748c05783fec0 py3k +61663 60db9a678551d175070b1df17f8b5e8ff47e10d0 legacy-trunk +61665 6a3ef3c9095c058f7adbfd0f0b4ebc9013b3866e legacy-trunk +61666 132cf3a791261f4c2b502ab8f85fd39982649667 py3k +61667 06e641cb3a20073fa906bb1381cbab74343db5e1 legacy-trunk +61668 39a4f4393ef1982404369524fc83d4e64e7d535f py3k +61669 8e5ec69b76a74c50dc12b51217636231ffe8f042 py3k +61670 36e296e66d216ac97ce8a8c7344a5f238b8a7617 py3k +61671 133498b91f1c403cf5661fd897f85d95cff11fde py3k +61672 c95663c684caf9a1e421f945aba59594412c3091 legacy-trunk +61674 d9ec068b08f30947e895ecfca39febf211306e6f legacy-trunk +61675 7d2e1ac834b85f78c9957d5630db096b793ffd34 release25-maint +61676 d14a9e5f80ae8fc2349a5341feff402ca0774ee3 legacy-trunk +61677 1c7c08d29feee5d71a15851fdd9eb911e2afefa3 legacy-trunk +61678 d511e321743a911a5b91249b964531fb50fbe85f legacy-trunk +61680 29131892611c55cd44e15e87686e246772a12700 py3k +61681 7ca57e22a52078940d88f2715da83f1c9abe54b0 legacy-trunk +61682 91ac8049e7093422eb81ab7151898b10d6c6ebb9 py3k +61683 e8360b5d5a10748444a162756992aadcfa394a8c legacy-trunk +61684 696225b5d55559ab1d7692765807116cb6b804b5 legacy-trunk +61685 f3d838dab40edbd5969a10ee0ffa860f4e53b4b5 py3k +61686 28733ada4d031de1898775efe877b0d3fece06bc py3k +61687 7c6667bb8f853474e5e79019056d77859eccde4c legacy-trunk +61688 aa9da4a3c97ce056d7b73c847f176dcc769bb8ad legacy-trunk +61696 c45a45669017b9250efc6f35adb513645190c882 legacy-trunk +61700 8f8b03c2bbff0172c9659cbcaf86cd54b6da2896 legacy-trunk +61704 944d87a9bbd0acdd4d1af823d27c6f64ce7abfb1 legacy-trunk +61705 8ef05aceef2b4a9e74706ea16e84253e400287b6 legacy-trunk +61707 704a864ecb014c50769b5a677387ba47f9d6dcb5 legacy-trunk +61708 adb5cab301a6ee55fae85fac941a8a09baf04dc5 legacy-trunk +61709 544a46df0222dc9269853b930e0545c1895c2ca8 legacy-trunk +61710 f0e4d9b45e7f363a2aa329cdb8d1bbac82ab23ec py3k +61711 7f035592d6e1bf50b45fdc27e12f88f4a1a037d9 legacy-trunk +61712 85fbd1d265a295139b403c1e69f3395e62845c96 legacy-trunk +61713 441527bfc79cc73d05d1c4b9577f403cbee54cba release25-maint +61714 99355baa748dcd4e6163b61ae4d157b0d692af05 legacy-trunk +61715 2275612c16a9fc1738d1c0e44b8178c8423902b3 legacy-trunk +61716 bf07bad1d72f63fc89053e088f0738c7acd4320b legacy-trunk +61717 72dc16e801790e23f14b020546d2fd6271d3d0ce py3k +61718 d6793ece32544de68321623aa2e6a931a138ac43 legacy-trunk +61719 a0253718499e3b6aa5ad9446af8feb5a7f54cbc0 legacy-trunk +61720 1f8ba5e8a2fa93bdbe70478f7a06ee11e820254b legacy-trunk +61721 2e3f86e73fa2761e4f5677a734b69f71f7978b2c legacy-trunk +61722 728dc13327b2fb94ccb91c3e681bb2a832a17807 legacy-trunk +61724 e47c3c7bbddc7b7bbf76744f6900fdad9e4a46bd legacy-trunk +61725 a7376d192a6d78ab20460eee14a398eb538f2758 legacy-trunk +61726 7aa52eb9074f9d2a9937d3dd72074f927ac3d7a4 py3k +61727 8c1ff8e54739711a5eeaaf8222c76e7ddfd5acdf py3k +61728 376b5cb8a0143599fbc362e8e3dc5d444a6f9014 py3k +61729 7f6bca78c3648578945b068133874672a36c73ff py3k +61731 cdeba20ccd6a01d4ef3d6bea9c9a469a709927ae legacy-trunk +61732 7264c051a39cbb440f2580d4d84035acfe25b84e legacy-trunk +61733 61f5c663b49d8bade47fb40608fc2073d52042e3 legacy-trunk +61734 a99ca1e575ed97581b475d51b4d82d49ddc3d06f legacy-trunk +61735 24083305d1c7046615a9c5b5fbab00f91879fb9d legacy-trunk +61737 11fbc8afe305fe339ebab3cc24a52302bef955cc legacy-trunk +61739 04c2148564e459cfd9b4843c3f39514ef4df1d70 legacy-trunk +61741 eeeb6b952d2f89eae46bd3f267c1abd823c2e49d legacy-trunk +61743 f97785c7de9b6201e0cb2f98f4410233d5ef60ce legacy-trunk +61744 2267ca14d54baa6940fb3c961189502ca1434dcb legacy-trunk +61747 b49754ea94db926d157e00a4ec2cf0c423e843d1 py3k +61748 b0a43bd5c28182bafc26a07553e232cea5422005 trunk-bytearray +61749 70834c0e491bd8bf14d8b4bcca18418d81d31ba5 trunk-bytearray +61750 435643b780c719a7021ec8d4f99c7c611574b12f trunk-bytearray +61752 c632f9e1ea5dbd4a7f918610975536706c8f5469 trunk-bytearray +61753 d4ba5bd11580a87790b612fb9c634ec1b95a6835 legacy-trunk +61754 dfa0a011a2435a637144c95fed968b02fa8dcf4b trunk-bytearray +61756 6667008894e0db26e1ce9281e63ae24f2a3d4ead trunk-bytearray +61760 248f927ba57eb263c0dd6c8c4991d348738c2822 trunk-bytearray +61761 751de616e08017fc0b18d1a6cd572635dcf32ad0 legacy-trunk +61763 0122b46ce4e0bdd4f5a844f33b4520f6641d840a trunk-bytearray +61765 f2ab50d0fa908ebe79a12eda8ddb1ef2892f14e3 legacy-trunk +61766 2e5ab35ccaf1addb23ca75903a98040349d6d6a9 legacy-trunk +61767 d6f0e3e556a4509e37adb07ee2a29aad1185e3f4 legacy-trunk +61768 e67f421a20b0b1bdbea5d3b61f6c553cfbc2b816 trunk-bytearray +61769 31cf38bdaac0cb03e74c7e1b1d5efd2a66233f44 legacy-trunk +61770 10b0d81a2145dbde0c4b24c88c338dc3552e51bb py3k +61771 957cba755315b465152432c347c27cb95ff01e7b py3k +61772 fb1d35cfb8d2dda82fb7492da7489ae720c564ac trunk-bytearray +61773 fa418cdf3bfe9f040eef9bb2bcd3adad6ce8eca9 legacy-trunk +61774 296f9bc42b963efd1378b572beca8d9c8e0da182 py3k +61775 3f0e3fb272a621e6d32e15274e8201e74f551f43 trunk-bytearray +61776 f4c50a51d24f0bf300124aff8e11db3d263dcd0a legacy-trunk +61777 722bef6835b944ffa3017f180570c2fb524f329a legacy-trunk +61778 af8fb53a54fd3d44a0862784d5babddad312fef9 legacy-trunk +61779 a8f54b6a8c1855d45f245a0e4e0827ca6cfdf4b1 legacy-trunk +61780 c64c7b727c6258e434099eddb93dc00f81410c0a legacy-trunk +61781 7da5b68971a5a9f0fd78dfd4a3780641778e4a74 legacy-trunk +61782 9634c17e8fe5620509c1f1c48254c8cde071d016 legacy-trunk +61783 f1ecb3e978db49d57a5a832ad653fd6d44d5858d legacy-trunk +61788 7563f4d2f36ea468dbce32728ce206283d5150fc legacy-trunk +61793 8710ba7fba2bea7d4cfbcdac4de187b7f040564d legacy-trunk +61796 f1e51785947f5b5f15d32df43e40d6276efd4679 legacy-trunk +61805 7296ccbb858c2b89ef50f98573260968ea0e4f91 trunk-bytearray +61807 1d5a11619eca88ce7794592473d8e3e1809e87d1 legacy-trunk +61809 df5c8b97cb2a1fa1ff645dfec6533a01b9833182 trunk-bytearray +61810 c1fc6e0a94b9b7c048cf4403e494ecc3898fc418 legacy-trunk +61811 af1b0f98dadf9d1bdd067fce45e2a5f98bb55318 py3k +61812 39dc985c6fc60644096f7e78f654ee3bc5860d20 trunk-bytearray +61813 467c16a50392cc0b5f4e37436337ad6a0489ff02 legacy-trunk +61818 0a485593ae1ce5d38eb7019b5c18841ef6b08043 py3k +61819 d0b91a90bacc953d744766a70167f121b5ff8da8 trunk-bytearray +61820 5e91685d9c06852deb977fc0ae1ae346a76c21dc legacy-trunk +61821 f5b1fa1214f0a154f801be25515c019c1b4995e6 legacy-trunk +61822 7caaab04a4d8da3280f095fd026c9b41d6a2702d legacy-trunk +61823 5ca928402e54365cdde3b0b3f419d0a51a278d28 legacy-trunk +61825 a39cf335312e77cb592e63cf52d477f953765dc8 legacy-trunk +61826 bfee873edf3ff6f7b06daa6582c03418c99c24ce py3k +61827 68051f8c6618edb8fe9f019f6940ec585639e027 py3k +61829 4a6b093b319bbfc880721026a9bdfb8eec677733 py3k +61831 3708f0906ef5e6f23c1ad6a0b6affc52c5952f69 py3k +61832 5f04e02bb40c5d56dc94cbae10314ecc9ffb2599 py3k +61833 2cce917d79963d8d6bab0a3e8f1d5f255ff08ba6 py3k +61834 8c2604fe58868a55f8cb120d393ad162c3441c24 legacy-trunk +61835 df90774f92b069d90d79de4702f441f9d9c5dfb1 py3k +61836 30ef51128132685373e01b4980bddfff9ee797b1 py3k +61837 859ff5c7c60a8c0c6d51552eebfec725ac1a6990 py3k +61841 25431ff6ce69df65cc89a68605b2c7c1056157fd legacy-trunk +61842 38de0d202338678198b6eef86846815020b43768 legacy-trunk +61846 2d0e08917a2e360f959e14e00bb8f69154f7c829 legacy-trunk +61847 461ff43e74d022ab97930f12870cf20fb9567bec legacy-trunk +61848 41ee9a400ad114026640c0750b5b4482bb0e8e0b py3k +61849 02ae311256a77a1a94b45d0758db0a5454f37d07 legacy-trunk +61850 b2f3e46e78a29a94317c6c4e3d5f1ca2b65c2907 py3k +61851 bfcda552492e65f567b6d2c425b7ec21b8e61cb0 legacy-trunk +61852 c86e9dd16b8d14d5fb9c2a77d0447a0b3a6940e7 legacy-trunk +61853 c92300930772d6669fcf978bb52bc2539ec8ca1b legacy-trunk +61854 42285d63755ac38f0c40b61779a5111f95926c58 release25-maint +61863 f3e648fee4c19ad5be8d64133f8926d0d71e7ac7 legacy-trunk +61864 09adff3d669154cf51c8439f84ab4cc192569371 legacy-trunk +61867 ce45fd3a7a3fbe62dbcbaa98c9699f481741d664 legacy-trunk +61868 de83edcfeb3d30905cd80b16bff2203c01f50723 py3k +61869 de54495a414a7b9374c8370f663620909ab5711b legacy-trunk +61870 2bff5a7290369db55a8e1757642388aae72aecaa legacy-trunk +61871 958cf0c27da9393671ea0e702b422353e52cf8c5 legacy-trunk +61872 38a0a737ccd4253286b29dcd1e762467cd0c7bd8 py3k +61873 147f35f6e6e586af39716cb58f273deb9d977133 py3k +61874 4f9ca827a7d87e97cde49fc8a7d1e7f198ce92a8 legacy-trunk +61875 0dd441ca8eb0c39c7e3cf754e61f1608a1663a4a legacy-trunk +61876 abbd81f2cc68e6b1797d30de42781584512fc0ae py3k +61877 041e8d7cc6840930cdeb408b2517a1ab612d37d1 py3k +61878 9b3f0fa5d8ca0760240d02e531bf37cf138684ac legacy-trunk +61879 84bb7701efbad822a04258240df8d8ea7368dc24 legacy-trunk +61880 2a1f4801d494fca45d007592e7e271ad21698fef legacy-trunk +61881 ae659ff0528bc17b61f1adab140b29f515b37c0d legacy-trunk +61882 47c2ffc38d1d103ceb4e5d7827053d42da4efbe4 legacy-trunk +61883 1a2c9645f71df3c06b7fce8139f73338dc3957e3 py3k +61889 2a866ea66509b6378d3a6e81aecee2aa9729037a legacy-trunk +61891 a7cbfcbaa6b061567a59618b9769e1c0d4196352 py3k +61892 22bd02293efa5d5d40511b31f2212d1eee68ecea legacy-trunk +61893 0b63999158b07264c8ed7e992ba2738daf1e5d83 release25-maint +61894 6bea2f1351b1f5f3a4d7d5c63962932b510bab44 py3k +61896 256f9394d93db5f322fdff4398624bc3f2fd64f3 py3k +61900 72cc400d80536d1e15456ef5e35740395e66d153 legacy-trunk +61904 e81cac73daf2f081499ba8c0e78b97d9d5407934 legacy-trunk +61905 7d3a6dc471cd91237fd03f1fcbba2cb3a04172a5 py3k +61906 1899e08fa421164f4cf252f2ce0d455e133f9c88 release25-maint +61913 5df72b9887fa689e9949d342614736969bd9387c legacy-trunk +61914 46f89f480bd4c50cd2013d7d00f1cad9f285400a py3k +61915 622d3b1168aa294d2588928b9b8e02c009ea2e46 legacy-trunk +61916 f94ac8f9cf96d4efc4401dc0ae5f6d2cec539e01 legacy-trunk +61917 67909508e0415a40e0580a0e58a4c6b1df622b8f trunk-bytearray +61918 b51e4b50ed30ec28d5fa69a8167fc917c365efa3 legacy-trunk +61919 15118566f98727bc2aad01d8b464f12482ab6678 legacy-trunk +61920 15da098b3cd85c147b777882fbc7b08d0b35b631 trunk-bytearray +61921 4ea6f12bbe8c69be67c4b39abbacfb267b353d69 py3k +61922 54b90d7eddb781a0a5ca8dfcc71c8de4359f580d legacy-trunk +61923 296c218f35cf6c372ad6fe13b675955ae127df8a legacy-trunk +61924 8f6ccd075a24d83668a4d374e86b8de15b73c011 legacy-trunk +61925 7da8918102fee154c18e0ecb50da5bffa435f151 legacy-trunk +61926 cddb297c24653b686cb431486dc73184fab94c2c legacy-trunk +61927 85acc40811b3d644cf52e2560931929d39bf5de5 py3k +61928 1ab5cc25341ad1817c8ffaae29df4a38db33f3a1 legacy-trunk +61929 1dd00016a69ced8eb73d366f8ea5dbdc030a4014 legacy-trunk +61930 d5784fc19e7ac7069b287f29e8e719fd33ca0912 trunk-bytearray +61931 6ea41d5239e07e6ef6559e18fb98263584a8698f legacy-trunk +61933 1c7fa4acecb3ad2567a0d7744408c6f43edb1d9e trunk-bytearray +61934 9fcccd58d65dbf9367727820711b17ac2b31d0d7 trunk-bytearray +61935 20fc41c17cc7c607f9e9f374f18621aac02517cc legacy-trunk +61936 5341b30b18125bf1925c0d44f0c4723898b5128a legacy-trunk +61937 cc0d1977f820c79820e6d6486e784b1cc478a5e1 legacy-trunk +61938 2e7ff38e0a183ea88c4e2a5c985e218d3ca8215b legacy-trunk +61940 cceea98ccf35f774e82e459a4304961fb4a14f30 legacy-trunk +61941 2bcbd3882eeed6cf7085aa33ad8e232d46556738 py3k +61942 4d19892040620a47418af07a9b4cf579d7ade156 py3k +61943 8d6fde16e493cb24c75d152d382d0130f4b4d816 legacy-trunk +61944 64bd96ff94f1494183134b268d56e279cbbf7b52 py3k +61948 1b6c0ff134fa4a1d8a7a8f3c007a6f9849745796 py3k +61951 995c9960f7ff3834a91d6c3ff1754e90b87c4c38 py3k +61952 dce9d2d92c881472a07c28db05cc1efc368cefd5 legacy-trunk +61953 c78d3586c474f6640695397bc2d7ca5cf88268ee legacy-trunk +61954 daa6aceabdfc58490f8a8da226e941942703e60d legacy-trunk +61955 78504d604b448c8b5cd8de51a2806f15e8e84a76 py3k +61956 d00ded8b26771d48c08983fb2694e756c3154df6 legacy-trunk +61957 a935c50cb51aa45eeb1e427b348051aee4d227e1 legacy-trunk +61958 248676988c548fcccf9b0559f2ab76246cc41437 legacy-trunk +61959 38fe64e3b13173afc9339eae43bdcf37874af698 legacy-trunk +61960 36d828d27c3640911e86cd6a6fae20284925f787 py3k +61961 b06a15efdc6d1f42cf8692a88ef987b55081fdef py3k +61962 ae2831542558167e843da7267f8a26847a5575ed py3k-importlib +61963 5c271ef6cb326383af704c50fd94d8e936224afd py3k-importlib +61964 b45e7b57a0d82aad58de79cb815fa97246b978fb legacy-trunk +61965 ef40ec32c5e4d7739b2a2505d7024d528bb0c21e legacy-trunk +61966 84793bf5a4bfc0d2609cc8a0f23c1659fc3e5c2a legacy-trunk +61967 6192d5b12b6ae17b53a2daf8c6a39a67699c51b6 legacy-trunk +61968 d740c71f02ff27ab9d9518d8332c680ebce17137 legacy-trunk +61969 5078b7ee16dc171d697ba315398a4d05c1ec92ad legacy-trunk +61970 b350960ade6d6696773b71fe0396b6f637775b5c legacy-trunk +61971 313f381fc0a7170cc1e81a974a77ac06d451ce7d legacy-trunk +61972 6f131d2c3628209beffd5895cdd52331539cdfaa legacy-trunk +61973 eac41f90296c69c6d07d29f1feb453a4c0e400d1 legacy-trunk +61974 62138a0f42326bb0340bee70fd47b1114f2b3194 legacy-trunk +61975 a0ea3a0efc710934ad66e3907211230ff227d6a1 legacy-trunk +61976 f1aec7dec05ca21eb8367406dec98eb06cfa6fd8 legacy-trunk +61977 e39f69bf5610ead3985177445909a7baf94f8a1f legacy-trunk +61978 56442db60a362bfb62e90463f6da314936b2dd9e legacy-trunk +61979 31ba3fa1585b09db0c80277de2180eacc16048d3 legacy-trunk +61980 cb56330d7adc8cd1039be404eecff91b55ba2a7e release25-maint +61981 6a66d3267d0cd4dca63f561f16b670a659396562 legacy-trunk +61982 da5597a5c19582a8e37d54058f4175b5fad1872a py3k +61984 10a39a662e69ca4ddffc2bbfeb7b50801ad49fb5 legacy-trunk +61985 18e19ac98d34c01933129dc7ba7614b4196220c3 legacy-trunk +61986 59d082591f568041a0c63f4a4e9c2daf6e2c9428 legacy-trunk +61987 7fdff02e6f45ea98451a7b9bb307018e8d86357a legacy-trunk +61988 4bf61fccc4e6882477fcf3a94f5945ab97526bf7 legacy-trunk +61989 6e7b2808b9a69e77a9b5af1c8edb2c2ab17a035a legacy-trunk +61990 1d50747e53d368b0d81da9206f0fd239ca6c0889 legacy-trunk +61991 7232259a0529e696029f345842a46ec1d1b9f087 py3k +61992 1e10b30f7498c3d72db9de3a3cbe7610966b6d6b legacy-trunk +61993 3103ea3df49d94c7e71c5a01ba7d6f6dbddc4902 legacy-trunk +61997 bbfcbafeae843d00a94b1ad3b30bfc94281bf51c legacy-trunk +61998 64f2eb4170f1960a295680f7fe1e8356b61aba60 legacy-trunk +61999 69d0090740883eb8d3f2b5ef9882860d6ad2a24b legacy-trunk +62000 f9a629f41656da720a54fdfafb334f39baf44ddf legacy-trunk +62002 2365c47fe64ddc34ef0cca63b57cafc04857e0b1 py3k +62003 848160d1078061ccbb5d67ce72b2245e369e552d py3k +62004 ca38f7a4b4c95968b84a2741f41ae32ac2403bc6 legacy-trunk +62005 a43be074324d2f3f1be99f6e4dd52c6df80e3185 legacy-trunk +62006 09fa8cb2bfe8f4f2aa75001431be5367bba707ec legacy-trunk +62007 aacf8be51f9030787709bc5cd44aecadfe38a703 legacy-trunk +62011 a21854e510b47bcccede2defa873d7b024f102d9 legacy-trunk +62012 654ad74ade1312016d7f5bee575464d9851a3aba legacy-trunk +62013 1b5b6abb1f2ede9b145aa84627babcff0940cf7c legacy-trunk +62014 c3e674cbd72e9d9ab4517f90676b00d69788f525 legacy-trunk +62015 3b994f74b10048213efd28b7e55aa809945e6f72 legacy-trunk +62016 c77cc23e394f14481612c0914df4e8d250606535 release25-maint +62018 9734a42cfa15e015ecddb9f3ed3b2b914f25dba1 legacy-trunk +62019 c4ed664a1da1c0b01b09a96ef3eea6e35c21194c legacy-trunk +62020 3ea3e51d1ee3fa8f67bc473b254854d2786ae9f2 legacy-trunk +62021 efef4e3fed17dacf2f3bc7c4027845df7dd5e45b legacy-trunk +62022 872abed7d0694d89b4fd549729a76f3fd8b2a508 py3k +62023 7ce1a8fd8a71ca97e6c26d8fceeeee11a0ad115f legacy-trunk +62024 e06e08e8fdcedec6bada3b1da2876a9f8cc0a072 py3k +62025 d1e1b740f684389c1eeb2a8633ba2a56d926082f legacy-trunk +62026 0ea5c055ab54f46b6f3dc29c3925fb84c822f95b legacy-trunk +62027 09053a7c1cdfd818f092f6a8c4c704784403eac0 py3k +62028 fe53d1a36ef63b94d1e595fbf4e5fdf35306022e legacy-trunk +62029 c440a5737149a712db9bd45abd846f5767ec36d3 legacy-trunk +62030 6b3ac89e0dd49249a108d9dc5f85f855c099384b legacy-trunk +62031 958cf7eccae24962d7950bab227565b939bb5200 release25-maint +62032 0a4da397e1db47b086cfdb00ddbf89b3aea43537 py3k +62033 f1843337a66c15e533c6020e90bb7aee6fe446fd py3k +62034 46348de63f61a0eba7a1f34c4d3a4a5e8ed9970b py3k +62035 5110cf0e5f8feaf241cb90dff2ff750005e4dec7 legacy-trunk +62036 16736eb40150aa7d7884078fbb10675b2abcf7d4 legacy-trunk +62037 23e42577226a7f85fb8ab2721ffd78348089c5ae legacy-trunk +62038 6e02ff0bd6f8944b71229ab17108208987f02aef legacy-trunk +62039 b0bf06d49647dd25d1c3d366c841a462908f8763 legacy-trunk +62040 4c678e9c7a3050c2412b36174a1005a7c3fd3bb8 legacy-trunk +62041 51eff2fd95271366ce8781d17f2a0cd60eb0002e py3k +62042 0c21f9b4a831a4616a86d262aeab67ef61efcc30 legacy-trunk +62043 01a7e66525c2624cc7c281d336a383290ef0e201 legacy-trunk +62044 e4486c343f7fa68d9a071b0179d675a51e1d8d9c legacy-trunk +62045 ed88f4de496f19806b366a70ef29d772bca16cdf py3k +62047 2ff88ae9850c52e5ce7ad9c5a12ee153a6214c81 legacy-trunk +62048 e370d9cd149ea2604bb78f51a17155619e545cee legacy-trunk +62049 42c5d287a852e6f28988cd6b259323dac0077aeb legacy-trunk +62050 f051e7a80acc76b4029ee58662149581f2b06e19 legacy-trunk +62051 29ea507fd99822337438741021682f031c8230c3 legacy-trunk +62052 c112219061711a4501e876e0d06e73e711e9800f legacy-trunk +62053 07f75d5519b47b4c0b175d3c3f25aafbe1b68992 legacy-trunk +62054 59d42e6d18853ba0fad98f9bffe5154048d5ac2a legacy-trunk +62055 ea75b12fe8e76f9bfe8313f68604c8d014f328bc py3k +62056 98276be64579fc3c0c6131ff2e2f151e5705783d py3k +62057 1c97232d93ff3e9ae20e4a16185c4ab3a061c485 py3k +62058 e8998e80eaf2bf8b59901858478ccf7cf6f95bde py3k +62059 be18df6344058593956050c87877a5f8673a3114 legacy-trunk +62060 32ea7654ff9c4ef35fd3c98c7a02d8072a416ea6 py3k +62061 4c7bb409dad6d00d90d6dac43f8349722d5d1056 py3k +62062 a7fb4d87cbde397da4fef35f6f78e990bd6e29ec py3k +62063 2bc1d5aa729ee496c6e92ffc80ee44e4c92b4966 py3k +62064 6042914e828677cb29e6da92f38a5eed88b0b1ba py3k +62065 c5b149ad300f8c08c1ec38eb32a91b0624747c1c py3k +62066 57bbac531919829b33fdfd3d3186ce54b8704ad8 py3k +62067 600f2ff8aa9e9170cc6097b573516e6936f3f1ca legacy-trunk +62068 ffbe6c790523cd288f1891f9171e2dea0659b371 py3k +62069 aed698c8647b9914f0157ba7a3a1929112ce8179 py3k +62070 f0fa605b2a78a608b7f73292edcae3da373b313b py3k +62071 38f8dfece98e5bd83a73c6bfd075323632919b98 py3k +62072 864574a9cd26ea6d5f56a97ec8e4b99098097657 py3k +62073 e9032f5dd539b3a6492616715cb2e94031e07e90 py3k +62074 b2d93a960b9890f6d831635e88c9fb3aff78b906 py3k +62075 e3dc867b6182ee128c25b0015ef082faa2a5bc04 legacy-trunk +62076 07b36d2b7534c5c8bb496a72a91f80cc11fcc372 py3k +62077 e47481764e57308488a19e1cb392341c1d641943 py3k +62078 81ee270a6eb54f00372007137bffc482df353327 py3k +62080 c3ee0f0fbee1cef624b204cb8b3eaeff6e49a2af legacy-trunk +62081 61c92923cf7fceb3e92f0f5bc773b7b9884ed9a3 py3k +62082 415156d4cbd20c8c62ea918748916e10ca1673e1 py3k +62084 c7015e357a2c979c4242b6f2258d0085863748df legacy-trunk +62085 17881f96ea01e3040f1a6f92b33a4d20096f3aec legacy-trunk +62086 6decfe38a809199f1258850218848c069c95d0dc py3k +62087 d86b333c72e741b9c6a2077b0b6f88cff608da9b py3k +62088 30dd60698671f1b866655d8c7f8018acf2260259 py3k +62089 5a17d157df001647b62324d8998522c77e40b55d py3k +62090 7dff5e41fa7ae1bb027457fc01be800ff1a4055f legacy-trunk +62091 4c5065ddb9bd638833002f238fe645364272f8e8 legacy-trunk +62093 ab4f8c46c3d9b6dc6966a983509ea5876bcbd886 py3k +62095 4779e3496ae1afbbfb812eb6e55232deb36124c5 legacy-trunk +62096 0730f3d50cdca1b16d3dd2afe48cc58ac5e18f70 legacy-trunk +62097 1c78d8e87653a5dfb2791815a3cb75cf6035671d legacy-trunk +62098 0b37477254f64180827687e24dcd2d39ebb23891 release25-maint +62099 5939900d98d2149918a1cf4f9b41ae8776d0d818 legacy-trunk +62100 d6e1333e6075cf41cf2d1cb7566df9eb6708a7b0 legacy-trunk +62101 c7c2520485553768e499a83ffdfac426993b075a py3k +62102 f753918abe652838b1b13f283518fa1c7639812c legacy-trunk +62103 0b2a4a1245a3c96671676aece87624394d6814ab legacy-trunk +62104 bb4a547430f85ce035c8814fd0dc0300e948baf6 py3k +62105 03ed0118e73376038cdacf92099d45971dc7c996 legacy-trunk +62106 8e6a4cc7dfc04da694b9dc349fdf442466dc8af6 py3k +62110 8117906b7ba75e6e2b498f0261daaa05856f4a5e legacy-trunk +62111 a172c2e38ac9e2ea62ed9e8b5eba1b6668e16b60 legacy-trunk +62112 a94469c74b9eb4bb32d8eb06b84d6c249cb0847a legacy-trunk +62113 0a5c86350a8927613fa45249a0093cc30a31963c legacy-trunk +62114 2b0ecc7fd7eea282ddb12f4eb3670c51da44cfab legacy-trunk +62115 205d7fd50d35a96cab63699ef262fd23afe68952 py3k +62116 f547ebf02843289b9481d19e8f59628771fad625 py3k +62117 8791ac9cbccd5bf1f2a25781e6d482cb83b45dae py3k +62118 975bd21605270a07d9257c946a795b4888c6a911 py3k +62119 15f773f7300e372c56a21d59fe49ca26955a6477 py3k +62121 ecab03766caccf3417bf4ff9d75a3d9a775a4954 py3k +62123 eec144917a189be11ed5efa35c6604d03bc62bcc legacy-trunk +62124 76a81ef9b3791e94c36a502a9b6205b04765cacb legacy-trunk +62125 aa9babb9a48ed9cc29b92d8bfbb6ad66142da391 py3k +62126 1617bb05a78ad8183c2da263872101897b36a16d legacy-trunk +62127 4d83b8d03299f5aa1fa4e73413af24ee44d006fd legacy-trunk +62128 2848c657af0ae74f630bf37e1213c98f7953dd3e py3k +62129 9dcda56b871e1cea0b1e948d7cd4c61bc98c5b33 legacy-trunk +62130 81422f1de8909da3dd372a4cce3345229abc2011 py3k +62131 9736c20d26eb6f648ad31f4d263e768304fd9414 legacy-trunk +62132 ddfe94740edea57e8bbedb0199d175a37b700c58 py3k +62133 a72e917491a486842438f738f836900eb27ed9ae legacy-trunk +62134 67f1c465279cbc1d4e1f8b7629624e2fdf3c99b8 py3k +62135 cc3333b7bd936668c16780d80f03dd3cf6f9e93b py3k +62136 76f577a9ec033fda08140aad78f6595a058ce5b5 legacy-trunk +62138 03b26f91bf6d0503a3422bdd579445109992c246 legacy-trunk +62139 4ba68195a51163263ce9343069a0fc08cf40f13b py3k +62140 7c081c0b0f5588dbc1b0348ece9dbd1a43b9e90b py3k +62141 ac5e4d54b23e9d56e2e173487903b336fe16b394 legacy-trunk +62142 fb3c9bb76b29458fb33875339497109c46181990 legacy-trunk +62143 d818f6d293847a7f0b1119c520c22d7a4bc4e1a1 legacy-trunk +62144 ccddc56bd5b070fb8ff68e234a2ccd24d50f63c7 py3k +62145 b28a2d25fd92dc056fd56e1e5741f3c88806b85a legacy-trunk +62146 3d0352a541ce5662b69ae4c7426c87474ba159af py3k +62147 4a113303f316542dc7d33f3a21991f70a5e69bb7 legacy-trunk +62148 399e74bb12c7dd0f90173f0df6d98766e637e8f0 legacy-trunk +62149 82731768986d4749a0ae38b71811bcffc70990fd legacy-trunk +62150 c3a772588db76ebdec5ee86e80fac4d8c36c1105 legacy-trunk +62152 6abe25b9924bac9f3adcdcc814b6e537a7bb4188 legacy-trunk +62153 61a0c76ecf876ee5c72d7598e4805ed0a55c319d legacy-trunk +62154 a19ec4f17277972a3d5eed76f9dfe3635cf819a5 legacy-trunk +62155 f806fd9941da68c455d6c0bb6cda2b542c0cb6e7 py3k +62156 0ce7a2352a53ea07800fbea72d133f15f0a79816 legacy-trunk +62157 e8916c64df4c5fb500fd26c4082096c01d8887fe py3k +62158 4901e75f775ae1ac0252ad35274f6578237b951f legacy-trunk +62159 3726de8cb8e1d3c00430ae7a1c8fa115d07cf58a legacy-trunk +62160 f4bf3e7bcbe80ae24a71d182c12e32ec18047120 legacy-trunk +62161 de77973d7e1a0c4d2fc594c8e4a4e1008691a63f legacy-trunk +62162 3442e9e6b2cf18dfa6507b5222773a4ac55cd7cf py3k +62163 9c926b0a648f4248ddd854c7983907a3b69b299e py3k +62165 b10292eafb073718275de6d54c933fdfc1faa608 py3k +62166 c3dcc0c7bfd957e12638d1ce07b491e4ac39a939 py3k +62167 a1a518be547dd92c9bba7ad6a874bf0ec620bc1d legacy-trunk +62168 1055f369b1fcee079a2cd98afd9d5ec7355761fc legacy-trunk +62169 6253a721d8a6a2b3e69b359a2f492bb7eb101cd1 legacy-trunk +62170 e3f7dcfaa030cbe84f5bda34ffba49afcae7a120 legacy-trunk +62172 8532d56918509ab8e112c3135cc10b4091c4ae49 py3k +62173 10d94c8c8414ab672e22780b02bbeddbd7ba4763 legacy-trunk +62174 f84cdfc221d135e0e2e13e5bd925d1129df1646b legacy-trunk +62175 bc700ad029623185264e8c5d2d216bef112baf2c py3k +62176 4352d41affb01b25f0f1628bf3cbae9919e16997 py3k +62177 864a5671c7a43ca771c46bc676ea526d5299026a legacy-trunk +62178 22a74eaf6b2253fc125b0791c2e71297b91cd9a2 py3k +62179 42a758f961a17933cee2ba36c1869f80302ad5d3 legacy-trunk +62180 012d97bbeeaf6f6c18eefd45410d342ea4ab23e5 legacy-trunk +62181 e53f2cccdf1d71b27970179c4f6cd6bf21146c34 py3k +62183 fb5eaa4be70091a6eec45df72f5cee2f61d849ee release25-maint +62185 f46cd240e10585c9490552f627d780772153c9f5 py3k +62187 035289e6fe235dd304ae48d6c8b15554a60a6a01 legacy-trunk +62190 c7da31c2c45ff7bda0ba27c2bec332e228531692 py3k +62192 9c647542760521432f7789fc5fac8adcf6fa07a4 py3k +62193 e28ed85cc962dd741c81f921889925f826912b4a legacy-trunk +62194 27d324360a63e314e22aa2a8100ccba3ff239041 legacy-trunk +62195 86da9298b908b8c976b81da092113bb9c425be2b legacy-trunk +62196 df7619539631a268c2e069a020ce8da4eb288ffa py3k +62197 a93d2919ea59bdd9a0a10d644607cb9bf1b20097 legacy-trunk +62198 4bdbef7095155abcf8b2f9604af875c39973fd0e legacy-trunk +62199 4e72489f16d050afb5473475d73e8918ad47f1c1 legacy-trunk +62200 3ab5474bde457f84ef507c37a8d26441abff1949 py3k +62201 3d9ad27d930b078e010d180fa735c9ab29eeb303 py3k +62203 56e49952d1a4f63bc539492a0d7b3bd204bd7ecf py3k +62204 2d95f7a983d82d80fd8cbab4db1997cd41cb22fb legacy-trunk +62205 27df3b81351828d374d7c910f16949c0d13f5234 legacy-trunk +62207 c26670f1e520fef4f18021aba2adc6914c70fcfc legacy-trunk +62208 23b65f2d76219d299bf0a56a0e10d6639ec4d04f legacy-trunk +62209 0be400cbd5b8a02c6ca9e3c63466a2041cfe8d3b legacy-trunk +62210 d76e59fbf06d417c7522e8c59bd91163f6f86508 legacy-trunk +62211 fd47a900905c2d6ff7bc6cfbfefac314acc35c8b py3k +62213 60cdb6703df33e8bbb6b83cb6f262bec012807b5 py3k +62214 09f36d57c9d613a93d40ea40ab4671abf3946f98 legacy-trunk +62215 f9c61c96a7695b0a851a0a8091c4b048827ed2b6 release25-maint +62216 cd08184637c58bef24a0c80f9c82dfe37c4f9222 py3k +62217 89dd162f155bfca9e3d92213d3c8318e35a38404 py3k +62218 4589d831aa80bbe516b81880a465f212a0916698 py3k +62219 218f2d55de4881ac1d58ab77f50d706395600379 legacy-trunk +62220 43483432192489d9c93a2fcc5d5638d37a1e19d7 legacy-trunk +62221 63a0d33c4cd3549863676436e32a428ea7401243 legacy-trunk +62222 270d79f900711ebd464b115d72d122f12aa04f17 py3k +62223 e024b7552795ecb9ed667b392ea9faa851e5ae5a legacy-trunk +62224 63f9a852609e31886f12ff50cd9a12ddc677e70a py3k +62225 ae64fa1bc9cbb4b9e42f10c4c2e8f38cb34a9924 py3k +62227 50f5184eeed8d8af11cf1c8182d626240d091c01 legacy-trunk +62229 382d5ea17d78a48d2caeaa026337a53ad14b3dd3 legacy-trunk +62230 8543f8c81da088ad27d2aefbebb23bf11df75136 legacy-trunk +62231 1f15463af98c394a317a3fa76733d41a16d86ec3 legacy-trunk +62233 7ebe81b1e4232a5a6fdeeb666ab38c4e222e680f legacy-trunk +62234 d917da2b1946e12c46f52326a8e67a3f5a519033 legacy-trunk +62235 27c7139a98ef7e9e6d11c447498be193284478a9 legacy-trunk +62236 0498ebb6c41b8309826181639acb9be9db37142b release25-maint +62237 7fd274a58d5c1e0ec5eb87e71c1e9ce2c97ab35b legacy-trunk +62238 abdc81e1cb5ba655bdbc2d412edbc9e0baea2a5c legacy-trunk +62239 af4c46bf3d0972b745700ed043f1754a72c43499 legacy-trunk +62240 60885f8e8575ce6e4f6da609300454e24899f30f py3k +62241 afc621a1bc4190398fdd44bb08f6e7ea5f06c224 py3k +62242 2e917b0c8f6e892bc4db8a1fda5e6fbfbcdcf24a py3k +62246 b3cd0339ca77e9791898cf16c2d879dadbf5398d legacy-trunk +62247 2c4553f659243516b8710c02d930b3be1007d854 legacy-trunk +62248 be7b0eb5990c6b61a96428a1784e64c29621cadf release25-maint +62249 aff3839d03941ad45ad7c1c49ed8e314ba18adaf legacy-trunk +62251 5a5692e3c9be2295471a66e84b4fca488bd5ebfe py3k +62252 ff34ef0a809648cdc3e09b5469770e9aa9930553 py3k +62253 18db8c4d4487ae69a3deee0afc65fc5842127767 py3k +62254 efa9cc3bd7f3eba68fa78e49dc2b11b6ae0595e8 py3k +62255 11b18dd15903eb9c3ba673201538f7511982c7ee legacy-trunk +62258 d8b771be21df4499a24b09e5a6b35d5bbe6cf74c py3k +62259 3603267672880a41c5a897fa03b9ed2d75437742 legacy-trunk +62260 ce3187462011f68386cb50eb9994ef7d5d3df27d legacy-trunk +62261 0b55875c1c9c1d660f731a32959a916e9e35f730 legacy-trunk +62262 cd4b1f3fd1a97407502643b304f1ea8ff5fa82c7 release25-maint +62263 842a6c2c9bcd2a730ccc457f21f6b2cf5f4cd45b legacy-trunk +62264 2287a4ab24d87611988f516b4ac5f25c1fe80f5a py3k +62265 3ce7c796bca12495bca07b7fccbea60da4bc0aa1 py3k +62266 8d555850f73d968fd67cb2ba6ca15f927174e7b2 legacy-trunk +62269 7c99cedc3e54a5efbf8db3a4034495713c8276aa py3k +62270 5e55d4275a09410d296b771b06fc9466e9fa5f0c py3k +62271 1aaab32183f227458596ae03f9ad9cbc6ffcc0f7 legacy-trunk +62272 0410ff818ec78ef1b2240b3a27e0092ecdbd5891 release25-maint +62273 645c535f822326eb770186763f077dd2c6963821 py3k +62275 8416cdd11c11721802e9d2756715474184bcade4 py3k +62276 6196529afd738475f59bf0b77daf51215d7a3291 py3k +62277 29a7bec610cbf239ce9d85e2044f3b91ac44b756 legacy-trunk +62278 45fdae4cdb557f2a6c850de895212756f9929798 legacy-trunk +62279 ddce7c9421d2e96fd55a6e9cdea22550f9ce5a03 legacy-trunk +62280 afac3ff60c6c5c10881473ca3635c323f619debc py3k +62281 094a9ce4b9bd4fddf3abf946f3847e45b2b7b04b release25-maint +62284 97974d9671270b787e9ac2486c156d84abf4561d release25-maint +62289 bc33770ca1148c6029b274944f804ba8cde76dba legacy-trunk +62290 a24856ba77fed34cad52598a1393c335f3ae7072 legacy-trunk +62291 3361b98ff4ff8ce8f79fd72e3b9581f8e241e7ac py3k +62292 3653fbdd44839bba10860760dfc24439bacbd968 py3k +62293 c1fa2e758e05b5a4b07bb6645fd26c254b661f44 legacy-trunk +62294 94782be8f1e77b58bf8c95eda4e5adc6d37e90fc legacy-trunk +62295 fe2751acad3e13a5cbafc043ff450321b1ae9e49 legacy-trunk +62296 ca233be645989cadff4466d1256114565e619d94 legacy-trunk +62297 d46f6eb09ebcfb8664adb89a7096319a0a6c69e2 legacy-trunk +62298 764aab0e8b9b1e46a34e291b73bbb87001a1d683 legacy-trunk +62301 8b914fce9d84c084da4996e048498aa2c0953c25 py3k +62302 2a9858255de10873e898b390873e8403f8be86f1 legacy-trunk +62303 840064802952b378e81f4627a0175c6f82dcea67 legacy-trunk +62304 f781ca14395b0657f2aae619e5616f2cadb528f7 legacy-trunk +62305 39ea2fc4503d1231795a7cca5d74aeb134953b23 legacy-trunk +62306 83e6975c319984417ab1f2cee1833ab2ca27c3d0 legacy-trunk +62307 3307a5450c379a691a2e89a6d1eaa99e33468c72 py3k +62308 36d0a1e0c024ba9d0076b58d1c1b723f925288d4 legacy-trunk +62309 b544bb61bca9cabd03378f8cc7b5722d5a81bb62 legacy-trunk +62310 9ad30ccce49c181cde39bc1f5302fa821cee6ed9 legacy-trunk +62311 02343ecaf0bb008979dfeaa2544a3031fb090773 legacy-trunk +62312 e0c3acb116a554c10e6297ec2289ee07a68a882d py3k +62313 8f2b65ec7bbab78b9d40e484a2fdb58b83badc24 legacy-trunk +62314 29231a973580ea84d3ee1bfdf0ee9288c56ead17 legacy-trunk +62315 fc33e75b92570dc3f12f413c464c73008b19d72d legacy-trunk +62319 7a5a580ba6ea23ba980600c471a15d018171de3f legacy-trunk +62320 0528279007826d7f8842bf67ddf6eee24a515ba8 legacy-trunk +62321 85f0e1ac0bc9b2b106b0457308a050837b2e569c legacy-trunk +62322 47d9bbe1089720cd1e3d37074ea53bfcc09e2e13 py3k +62323 028d8625409b222dad7cdb69a02fd69f7a65fad8 legacy-trunk +62324 4afdc68ea52ea58c657f5d450e77470a59a9b334 legacy-trunk +62329 6952e7181ffc88f8bf916d97239f5a8d74241f7c legacy-trunk +62330 b420eabf98354597430ad87bcd8729d5700c42f0 legacy-trunk +62331 7c21cc14b94f5a64d286a3dcc5ab74842fe14f11 legacy-trunk +62332 03d9c664a7bc8705fd5ce6ffa8bfee5a044c32cc legacy-trunk +62333 40fdd5cd2ef51d6168d0762825f27fecd2b4a0cc py3k +62334 fb081025b2230bd7d48f1e13394e025c7e4d5b56 legacy-trunk +62335 46879e7fc4d3354bef1dd6089d40a27c47843603 py3k +62336 c744235103618071d6088bf3b7d4c52289fba765 py3k +62337 72a7648699d083899d23692f1b6e459b1476228f py3k +62338 b3dca8f5535ec221f50f8b13870d87e731d92ecb legacy-trunk +62339 61487be6f44292dd38d5ceb2334307df99d760ca py3k +62340 8dd24741b6aaf0b6243bb67c8801322481bee926 legacy-trunk +62341 6e4ca9f72bba6ddb2d06e8d780a5ac9828efe732 legacy-trunk +62342 0fede4d1b14ba2a53b127219afcf2feda3dd58fd py3k +62343 ad170a335967bab217ad03b50985bec0c0ab0d02 py3k +62344 59753bdce089849ce1cd7ca9bbe78e8d891e0233 py3k +62345 24205b1f954ef75e6232d7b6862aa79473bfca38 legacy-trunk +62346 99bfb8de34b1f6d016136aebe088d77e4caf91a0 py3k +62347 eab15398eef00acb69e80b3ee152dd1c11cdc691 legacy-trunk +62348 91b099a7f3e22b83ea82034f84f2f6e6a28d640e legacy-trunk +62349 981df13aab2008c114f4518574efbbc386ff5ddb py3k +62350 1841f92e30def0a5b3127f5aa1fb0a03d3e72f34 legacy-trunk +62351 ef06ed804918a1a40321cadfbd339c89dbee9830 legacy-trunk +62352 ce5597af99c7d95cbf5b19acf5d00734ac29b692 legacy-trunk +62353 3e095ab75fc89aed02f0c4d5c79cf878a47e0662 legacy-trunk +62354 19fd463ea728e40e86f6878bcc255f0d06d094d5 legacy-trunk +62355 38c831b47dc5bb431cc082e495403d73594bcf5d legacy-trunk +62356 b04f2052e81262961d2b3d7f7e5150199086b06b py3k +62358 b723106901e0cf0f3c443b1e1bef3aa8e72d5075 legacy-trunk +62359 9f3ca19162a738a620c602761a61cbf01d2ea2f6 legacy-trunk +62360 48289645cdef77ffdeb56cbbb3eb0bcbfb6615aa py3k +62364 1c9ba4011f5dd85bddea3cf785d84c6b31a69caf legacy-trunk +62365 07d7e5cdc1a010cf91a24170898087515445651e legacy-trunk +62370 bc96bac586b4c21fc2b12e2bf2bccf016831efd7 legacy-trunk +62372 1fef26f89bcea186a5432202d9f0f6e74d2197a5 legacy-trunk +62373 7cd363df7a846cd182504afde80b588832b5821f legacy-trunk +62374 5024b12a039d1c7de1a0b23e78b147b4818b0409 legacy-trunk +62375 8918c51de0108acec7113c65819a391c643b0ed7 legacy-trunk +62378 4f8261b92fc560ded4306eaaee651cca56de81b9 legacy-trunk +62379 fb8d3e1f61612d44eff13db0601273015b114605 legacy-trunk +62380 5bc7b20dc04a9d249a823394576415da7fe88a90 legacy-trunk +62381 5c43159f5ad0b06599b6b7a39becc9ebc00c6bcd legacy-trunk +62382 779caa1e0ffb2e0c82e1e73ce7f144d29c23c221 legacy-trunk +62383 a1997399f8724c4aa33545585d0ed7317e093ba3 legacy-trunk +62384 b69f443ef4807179cb11b6b52eb365339898f282 py3k +62385 beb7abcd6c01a543dadf6f8258dff5fb7bde2e68 py3k +62386 e16593da48989c703dae6736a80fed58e2fa00d4 legacy-trunk +62387 e029d7c7de81144133fe8a8990509ac77db64c87 legacy-trunk +62389 97c21417af40ad7b27667e54298230be4fa0b705 legacy-trunk +62390 b1c70c89c3da6c39c1132ee1306d68847b272442 legacy-trunk +62391 374833de570c241be0634fe14be492f502f62950 legacy-trunk +62392 10da2798e58d83641cb0322c57e03883e107f2ad legacy-trunk +62393 4f718061f45a44187c520b2c606b46faf1c4156e legacy-trunk +62396 82d85a05923bf39846a4516b16020f0d0e5750b7 legacy-trunk +62397 d0fa45e637a0500190cd3dfb3e87eedbd5488fd4 py3k +62398 c3659ce893e7e8bbebb927fbafb08727906b8c98 legacy-trunk +62399 644a67830061ba35b4f8affb8a2b645212fe4f1f py3k +62400 648b4d01cccf59558155565b3b3c4fb9acdebcca legacy-trunk +62401 10236d1d0860767a49a8ee14b1ca5294b3c9ebec legacy-trunk +62402 da4a87d63b0ee300b201da02fe140ae12fc8d58e legacy-trunk +62405 385e218d0f6c5ae5b3ff7cc73b804317653fa3bd py3k +62407 ff58cb5aa76da6009ccd8e21e6a2693f0f4396db legacy-trunk +62409 f641e505fff46e1765a6d10f23502133cad41d74 legacy-trunk +62410 35bf8012a376e63d15a913e63829e07abf009011 legacy-trunk +62411 d166251d8014491677772989ecec67e79683fa24 py3k +62412 31ff59d984bde2c8e7f83ff56720f65437a20101 legacy-trunk +62413 80b16595e4626cc84b9277f00a70d0fcd92ed8a8 legacy-trunk +62414 a20def0101de269e1adadd49e1bed0103c4216a2 legacy-trunk +62418 f3cf12bd1112846d0aa41512d089be30740e107a legacy-trunk +62419 73732d66d0d5f7b57353256faf97a9e0ba742707 legacy-trunk +62420 c78cfe2126da184613686c16e5d7204dad591956 legacy-trunk +62421 60f4456fa3383e0783c141451e2f36b706b31e34 legacy-trunk +62422 63965327b3ef65f1bc79f19d18417c9207939720 py3k +62423 6323bdc2d6711fbf2ad5ccd71cfeec94ed1b77ee legacy-trunk +62424 022296032d8f6964a0fd5c21366e79d1dcdcb20b legacy-trunk +62425 fdd5a0198769d3075a936e8e83a7212c9cc63fc3 legacy-trunk +62426 052fd8f1ca371c687338101e659845cab8cae6f4 legacy-trunk +62427 406eca2ddbbc4f89f6faac3b3447d27ad389c0a9 legacy-trunk +62428 df13ccaa5ae97c01d867975488519dd8840602ce legacy-trunk +62429 6077606339bb9fd02209970eadee86a64ce83528 legacy-trunk +62430 d3af9fd1cfaff676865eb8c6a4557a3ad8d2c8b5 py3k +62431 d0b8a90ca2709f5fe93b088a98492f2fbd6ddb83 legacy-trunk +62432 bb0f58adc91ce0720f0936d59cebe3aa1d095c22 py3k +62433 ec48490b969abdeb38b06e24992d11e65f1d4eac py3k +62434 38749c09c5563501d05118ffd351bacd732b29c3 legacy-trunk +62435 ae554e5d6e06db30fa5693abc7bb4d9734301324 legacy-trunk +62436 f51953cce6ab19c63236074bc4a28393ee5b2a20 legacy-trunk +62437 98e072f22c4f3d628f11648c0b73e49380c353dd py3k +62441 1acd00f2a3807cba601d85b789be5fe2cd1b4631 legacy-trunk +62444 b7df30ac5b5a2608875f143597829cd03414f003 legacy-trunk +62446 04928470ad8609a98473d212dab89aafadf42846 legacy-trunk +62447 bae2f4feefcccacaada159d0a29695f1f6e0015e legacy-trunk +62448 c44b8ca3f4d2958ca86bf23ba727d0b5f9c3ffa0 legacy-trunk +62449 b12583643128eacf8547487a3533b339d0c3f230 release25-maint +62450 434bcceca7df0890e42e2c762b11809ab814f10f legacy-trunk +62451 108fe57b9a68e1e978f8dfa76199ab2c04b80ded legacy-trunk +62452 2f0065448883abc59f5a2ffe5924477ca988e53d legacy-trunk +62453 0941d79ea7d6efb63e0dd2577c52acceadf7e837 legacy-trunk +62454 88a8def5800777ae1d77e0b234a379b467f234cb legacy-trunk +62455 642d5712093b80b08e4bd208faae8f2b19048456 legacy-trunk +62456 66b7993068bda31ee723912ccb63f786283d9872 tlee-ast-optimize +62457 fb3cb04195e0f822b073df755cabcd692d481be6 tlee-ast-optimize +62458 14403a54258fc4e89595f6c3de1aac18020e9ad1 tlee-ast-optimize +62459 0c5824b002633ba461580326275e4d3b9c46b8bd tlee-ast-optimize +62460 d7fefb35e993ffc94742b09d9a7e87631e7b00e1 tlee-ast-optimize +62462 c0cdacf07f540d92c8ec03db298d99bec2be9a7d py3k +62463 fed72fa967bf5a4a31d6726a08fa845f334f3df3 legacy-trunk +62464 a74654352366ef384f811832415404bb58468972 release25-maint +62465 98dcad9092a889ef47a914f3d59244dfa62ea237 legacy-trunk +62466 c9de6705bd112975a5a2ab24a9b89e38eed8c311 legacy-trunk +62467 2e1ea61c94cc7f1728e89e2abf3f17c78bca592e tlee-ast-optimize +62468 ed267c6989b6ccb46c5588caa7527269729907ec tlee-ast-optimize +62469 3c6a25e4dbb5f0f963bb1a6988cfa2c522f6b796 legacy-trunk +62471 07cf28480ad1ec8362ac502d99d0d10e37186a6e py3k +62472 3e9b4fa93e5c4291c6f285be0bd1e704e116bd4f py3k +62474 621a2eacc27c48993c62283d0ac63e70fea1d72d legacy-trunk +62476 5e636c9d61ae575cd6a45e8153444733cd815af4 legacy-trunk +62477 a0225600bff149688a5b0e2b52f79f543156e53f legacy-trunk +62478 3e8a03a6497e17141d3d6bbf1646915aee61e892 legacy-trunk +62480 459083c6be153ebb5fda6a036fcb6ebc45708990 legacy-trunk +62481 4ff8dfaec3fc6db943c79ce63cb4f4f8ab72fd6a legacy-trunk +62482 a51b329245b144dabf8ad813da694ac2159fa604 py3k +62483 85d4671565c8749cd5bfd38b5ced68b7f0b5cbc5 py3k +62484 90e2146cb8a308a3012e7380157cac118294aa35 py3k +62485 95947fdf40ae48aed0fefa38d4afa4e0de8252fe legacy-trunk +62486 d1fb49aec7651044c9e80e6200c440583bb54bfe legacy-trunk +62487 8864dfa99c7602ce8f2991aa55a50520d581c139 legacy-trunk +62488 35119b03686d2d49f31c442338b19cd081a97186 py3k +62489 1cf3b34df6c60ec0d0408187a66812f0d28d893a py3k +62490 66c8bd1bedf3232df0e4a2d2b9f00e13c84d0653 legacy-trunk +62491 8b718fc15f3d6b523162ad2e805f421c2a0539db py3k +62492 5ba6cbbcaee736453c9abe1b9a09cc8bc2d48607 legacy-trunk +62497 04bd76e92065432fe3f97f3349281e573c91deeb legacy-trunk +62498 689863552380731ff47ba932bd2826512cb0f237 legacy-trunk +62499 ce620cc9a6a86949d23d85b2c95082b64f13a6e9 legacy-trunk +62500 9e05f15f921b010cdf509cd04cf75c9ebb46a716 legacy-trunk +62504 0c7ca471fb8d778bcb357b91dcb2553df3cbcf78 release25-maint +62505 c7382806203130ba41134453807923f2a77e5ba7 py3k +62506 2a31bc28c10fff0ad83633d66ff3b71c5e60bcb7 py3k +62507 0e1185bfa3134cd2401e5096065f04fd1397807f legacy-trunk +62508 0cfc845b852d824a1de9e3f0e0f85a1c66ba3be9 tlee-ast-optimize +62511 5238327f45bd4042c76b5d4b8cdccaf8dff94115 legacy-trunk +62512 ffeecbebf3ca7ce76b0f88a5d760092fdfcf3b33 py3k +62513 eb2746e8b98330de1b102f1faf13853b95efdac8 legacy-trunk +62514 ad3417503636cf7ee571092b3bfbeac448d89369 legacy-trunk +62515 361d776d380eb94273c4f43ef595ca6b754099be py3k +62516 47233a17e9707974eaef48834c01d326581bb979 legacy-trunk +62517 d58ec38e6db1a958b28a53ffcfc32a01e9bb3551 legacy-trunk +62518 aef3501d8e776e6907842d0420951aa2cb83e13d legacy-trunk +62519 06e67cb22158086a04b9434e070687ed7a26995d py3k +62521 dad88cb6ef1fdd5953be96bf817320a5643ddbf5 legacy-trunk +62523 edb3c3d660067eae592820326bb70b469f788295 tlee-ast-optimize +62525 c5895b981d8f0f4dbb0cbc7cc24d64cb79d3a98f tlee-ast-optimize +62531 6b7c91d9dc511bf158b15c984223fb6a73665f02 legacy-trunk +62535 f365a018af5b694695067258152465f5e2bddc31 legacy-trunk +62536 7670005da8c568beb3be4614d17a4fb8924ddb14 legacy-trunk +62537 d7d5672f5d5e050bbc3de6ea0f6f606138a5d3e7 py3k +62540 06aa802bfcb18c5b019e2f6514391b6548451750 legacy-trunk +62545 3d9ddce2da85204770cab757f9fa32647236c516 legacy-trunk +62546 ebc40e5008698a56d17134b84564d23176b53254 legacy-trunk +62548 18e9a372a7a3a0cc7950f0126795b8a88e4486c8 legacy-trunk +62549 84df082dd21678358158a1dcd05f9b6deecea1b0 legacy-trunk +62550 59db575ae37462565f47d6a45a2503355a0a351f legacy-trunk +62551 c5dc05cd38589bc30a7bdfca6edadcd37b6d173e legacy-trunk +62553 576fa2440a0c8d8f889d3afa576ff075b7462b04 legacy-trunk +62554 d2bb5f1318738b006475fa7df13bc83a56ea922c legacy-trunk +62555 07a4e171026299cf27a8f0a234d9a51c7a8dbd02 legacy-trunk +62556 a517eccc783b9e0c81a04e980799ddd0edd18da6 legacy-trunk +62557 1ea4d1b18aed58d4b5b3da8d0705284a43dec03c legacy-trunk +62558 4e47548edd366d2b116bf3f1bddfa91a04f5234b legacy-trunk +62559 fef6d6ba78a4017a8d07fe34974c38c360f91d7b legacy-trunk +62568 c34f0e609fa6ae430dd1c6d3641e3568b4974e76 py3k +62569 8d3ad8af692b5a34effc813740785a1077b11ecf legacy-trunk +62574 6fead4cf79111db0fdfcc7bf34f2ac3f7c60b7e8 legacy-trunk +62577 7f60b337b0492d4fe7e17b89b71f306a62205e73 legacy-trunk +62580 0154df250ef6b5094a55ef20d5a3f1cc3fcf7de6 py3k +62583 e42d39778ead9ccb45875bb36f38fd0dac764839 py3k +62586 37d645b0152316e41b1184029d36ba6ef6b3bb00 legacy-trunk +62587 7b4081bec783789f867077ca76a89acc7eab97ba py3k +62589 cba281b16a8245e156fc1f9b3813b7b48982b6d7 py3k-ctypes-pep3118 +62590 ef421a365a1d4c703121e7c51b819e05674356e0 py3k-ctypes-pep3118 +62592 d6c6f366b22062fd3def2b42c1f154717acc1646 py3k +62593 8f5c759e019c66cbd0a34579e7d68e0072657f4c legacy-trunk +62595 3d0d3a680896cdce7679161d421cb21fc831d451 legacy-trunk +62597 948bea96dd201b320b6a8ebb7fb064f08b3d7441 py3k +62598 af0ef04401bb2e79b64f929599268f5a6ff92b30 py3k +62599 7a6d7474ce6e08b07cb6a53ad8f73ecb7301507e legacy-trunk +62600 b101556b98eae6099e96da33aba8ebf9743ad21d py3k +62602 01be1c8f006bdd56371ab08954d909ae235a1514 legacy-trunk +62603 01453571966885c3f4f7ed673ba1adca1df45ba5 py3k +62604 3036e21ac661dda013e67772d9a39d97a0286014 legacy-trunk +62605 1423834b72d8d8d26e1733b8776c132f2fba6233 legacy-trunk +62606 68cfc51e4331efe1b77ebb5b5118a92f747611af legacy-trunk +62608 65acc55f1a690fa406f70d76f736b90223493846 legacy-trunk +62610 a40d7e605f9e117a66178ff47a97ac2b5c8d6d64 py3k +62611 3f2117d3271f7c0f60d45d712aa389cf3931cea3 py3k +62612 e42fe19ba6fdf37e8f26fa98d3344a2bfd3d5309 py3k +62615 87d3137c31d436102df76d0ca32a3ce9a5231471 py3k +62616 3315f6b444030b8787bcea43d66506c499825e22 legacy-trunk +62620 56f81ea9cb7950d4e62d5e7979e6f918b8982838 py3k +62624 80bd4baa63981920365a7254573374409e49645f py3k +62626 ea1a9cf735a5694543368d8417c52198a77a8009 legacy-trunk +62627 54606ea9f4c7b933842ebd70d050dc3e3cda0a4d legacy-trunk +62636 0ba12c32e2b569590085e2010c9ee2ed0a6046e4 legacy-trunk +62638 c4d90fa935eaa41305f1941b54ffbb5e04ac78f4 legacy-trunk +62644 a1c6f2ab597e037962145ab08dd215c6fc0dcb5d legacy-trunk +62645 20b707866459ada74a063908b8bcad96bddf0d4f legacy-trunk +62647 1ffec2a687e9596f48abaa38f3034c9ec6731b99 legacy-trunk +62648 3f84e6ae36dad29e090a4b4746a03bd48cb2667e legacy-trunk +62649 b55c5567cc76733f41dc1196eb5551f5ee9dbd10 release25-maint +62650 eb9dab956a6eb8b80e5ad4afdc233863e1d6d9a4 release25-maint +62651 80635489e8d83144b4c09d7f944d242e471c255a legacy-trunk +62652 6d9497597c4f3fefb4c18a6c513b772925c2b486 legacy-trunk +62653 cc66029d2efe5939abc2644941557bc3be8722d7 legacy-trunk +62654 fd27ac5fcc81808e9afd91e6ad766b3dde681ade py3k +62655 032a0a0d3fa9606cfe1871d9bff6a212e6adbc54 py3k +62656 a859f835ef53da8a261f728017172edf85ad0199 legacy-trunk +62657 0fdef14981a8e3bb0a1c2d0487f52c7b3b75a5e5 py3k +62658 bd91000c8e73dc776af8b6c674df2c8a9df75f73 py3k +62659 3d437752170b52dc041781193876ce0e4db1aa6e release25-maint +62661 bfa82b49333540971e689f4fd279fa23217900b5 legacy-trunk +62663 0deb4ab0426e287d96e08c023955a48299627444 legacy-trunk +62666 ec09ad5bed1acca10c2cd61fd4bbbaf91af621f6 legacy-trunk +62667 ea594306ea8542b98be068637b0712a7832a1721 py3k +62668 68b1d44b5f74a79f0360257d3dc8761511b6ad44 py3k +62669 ea30f03b24f41f821537b6f3c2db0a04c00ee50c py3k +62671 9418dc4a7b985d5cfbbdcb9d15cbb8802065ea70 legacy-trunk +62679 5bb94065b07999ce2e3479659e7e370616f70ac2 py3k +62680 83cc09682081dc0493e9223b852712ffc8a6e932 legacy-trunk +62683 3390eb7591f6128b3fd664886724f71929c80066 py3k +62684 c97e36abcdd5956f5b3781dc6933ff30d75c05af legacy-trunk +62685 acb2a9394296a4575144161a335f858eb24a9ab7 py3k +62686 1872e1dc035fc329b9e8b99f23c3f07eb04fde7d legacy-trunk +62687 b7c66d3e2e28db02d6cc7a778ebd673cb2cd61e2 legacy-trunk +62696 a94b9db9223fcd20d0490e575d3f415e37747c43 legacy-trunk +62698 aaa0ab490126e02f184055cfc28047d073b36c37 tlee-ast-optimize +62699 de76be02db425b3e6a4f60b71f8619feba9bbc8e legacy-trunk +62700 6db392ac9f4eb142b4b7de7464f41edf46103280 legacy-trunk +62701 b93a041cc2213e589d42a4e4a7722da4eaafdb19 legacy-trunk +62702 28b099ac4cd8f7b8c751e6d434bd4cf382273b36 legacy-trunk +62703 6c4efe52d594d3ff4fa01fabd2876981dd51af03 legacy-trunk +62706 c07f19af554a9f630d7ebfc19502d9f64abd1e33 tlee-ast-optimize +62707 2e463442e570604c95da8cb43f69997049046a0c tlee-ast-optimize +62711 fe300a972fb8df287504756958d029b5aef8e863 legacy-trunk +62713 7172e11e9fc8c676dcf63ffd9955f5d202599b5a legacy-trunk +62715 643415f91a50c92ff93578992fa8a68519d7e90d legacy-trunk +62716 031dfe455585ccdd07897b8e6d004f79ca42679a py3k +62717 c7c25cc9963dd3327838a53955ea89f242ed5377 py3k +62718 05a817e25f20d42cc70aa6be6cd74652d2e375a3 py3k +62720 d9071fa8244af3433669a7c7090e6a576607aebf legacy-trunk +62721 8a9b8b3ce2e12225037110c0695da01417c81a5f py3k +62722 9b10bf64f1243216b630711c5a828c39c085804a legacy-trunk +62723 4c90be8a4d3827de4a4325a4dfa9f148e2cf173c py3k +62724 8e33f316ce140da975863ea4e95dcd8a0b5421fe legacy-trunk +62725 15f1d232eae913857b824e871a1d3e9762dbe2dc py3k +62726 10e8ef95b11f9db6184e554091fb8ef53971fcc1 legacy-trunk +62727 86f73838a4bb71501f038e3944c5ea7369b88598 py3k +62728 55bf8d690e67af460bca8e5e53a46574b289b77a legacy-trunk +62734 4ded35754cb721f49612208a0eb8851901fadd30 legacy-trunk +62736 34a5380ee275ae0ca171715a67ffae0fe05ad2ff legacy-trunk +62737 88a09804bba394315fe8a353b40705ce77f9c83b legacy-trunk +62738 b74a3f946a5e67812e9b02f492380280d100f97a py3k +62739 dac21843cf53514c57f84e99ffbb83ddee6f3d72 py3k +62740 e19f87a9878c288d3e8c9e2d810377c13661c808 legacy-trunk +62741 91d5f084170006819265b1d12a0e26e63d0d0490 py3k +62742 f2a4d8d4f0634cdb2c698f5ea74777dcf8ac7087 py3k +62744 2729e977fdd9ea7e3edac5331b68f3f78261b555 legacy-trunk +62748 7106ca871bfd1b675cf6ebc21cac000952462b73 legacy-trunk +62749 2f351fa53a6b3f0eafe8886b94e0dd7368a45e46 legacy-trunk +62756 5ae8d54d09528f6556181d5ebfaac71177f202ee legacy-trunk +62757 11ed405d99cb86f3b5a178585e69f32e9445ba70 release25-maint +62764 1e8b8df4df83153ddab2787699ceb6a96eb0f18c py3k +62765 c82f63efbc40831b49cbbfbc8321abed16777785 py3k +62769 b0fb55ece89fc3ecccc54bcce574400f5a281ae9 legacy-trunk +62774 f8468bfd4357604cf4998b988c4340eb7cf75e4d legacy-trunk +62775 ddd5f42332b985632576c782ebb52e6e4f3e8f35 legacy-trunk +62778 cda816c3a1e46be3af2eb7d8ce292de828d1f34d py3k +62779 02a8142d83db283737f51f7f9952709417951f58 py3k +62785 9130b48a7130e15a49c4e128426bff1614debd94 legacy-trunk +62787 4b19b41ef6064c5305cacb77a5cbadf8bc8bf6ab legacy-trunk +62788 1a2dbc84bdfcf0a8c4c6de0b07db44eb6bf7e31e legacy-trunk +62790 f4064b5c8c5d2df4a0da6f2f5042b6ef91ac18ff py3k +62791 911c87f8ed5e573a6e0f854b373793d15bb060ba py3k +62792 0c2e4b55f80b97b56d71d034d132911d024166c2 legacy-trunk +62793 ffdb5f4139fe7a872b2d7c0b8d3fcf21e6cb09d9 legacy-trunk +62794 10b139d8786021c095ab35953fb88a056ca7b486 py3k +62797 ceea40daa849079b515ef8024f44604080ac16ca legacy-trunk +62798 7c80bac7d77656cb71d9ca61ce15fb7efc8474d2 py3k +62799 c8aa220c6ceef958ad5d8d53231ef0e5f72a969a legacy-trunk +62800 737a18b2ded365f0bbfc910ca18fdc246dc745f1 legacy-trunk +62801 74b9c85361f88e253b9f7bb49dfae046619b9ad7 py3k +62802 7486c29f93a3edd1120618c549f6b034c4e3d66d py3k +62803 0e5a96fc9422b4e13855371a42b3902873dd9fc1 py3k +62805 77df991ea63798f5c95c391f7e4ad71402388e20 legacy-trunk +62806 d1965088b85dd7376f0b7868aaecaf8bd4541ec1 py3k +62807 8b931a79827a9b65e0130b7fc9a054c7d7600a6a py3k +62808 5fbd97f1bc35e3c96e3afb0c52abf4ddd5cba13a py3k +62809 38b94c097a5526f5abac014f74b5f90fadfc7e14 py3k +62810 d7e2029b3ca4bf1130ca391b46daeb8d8726161d py3k +62811 b635462a5798f03e552f1cc10156aa53e03a042e legacy-trunk +62812 8154649c55166201e09d0b704b4cad2e7e395175 py3k +62815 a9acf18a8e57511c7bea8864ca39e187cc035093 tlee-ast-optimize +62816 4307eed1f73be9c4b7fb9c5d7de329538758038f tlee-ast-optimize +62818 b9a3abf59a4546f002d66e418280113c569790e0 tlee-ast-optimize +62819 a64f40b62169630c67faf4cbcabf647e1c693b08 tlee-ast-optimize +62820 bb956f4e326ec46155f18f5ceb2065d3026fa602 tlee-ast-optimize +62821 c53815266360f05ff5a1ea0655c53bb81dbab4b6 tlee-ast-optimize +62822 4b039edfee6bee492681e7d852f5038c22d57e7d tlee-ast-optimize +62823 9747d1137083ca53b756afd0a210c66969cdbd5c tlee-ast-optimize +62825 67ba93ad00fdf1b91354dba11832b36c4bf69f17 tlee-ast-optimize +62826 2c4558dff53d9064a77a12b7200288fb2f6af89c tlee-ast-optimize +62827 41e8e72aa9edb1b0b96d09b816dd327fa029ff41 tlee-ast-optimize +62841 ef47df25423c76aaca44254dab09b6bb7c9ae5e4 legacy-trunk +62842 9570bc12831444a3b83354f7e8d7785cbc0a1fe0 legacy-trunk +62843 ad7751a958098d713d6ee82cfc14086a1812f302 py3k +62844 831a30cd23a282052d9b112e97280855e9579511 py3k +62845 e3459ad013686cbece73661ebf48c64b5bd037a3 py3k +62846 6ec5608b663c2cf28030a4b70cc402df31302812 py3k +62847 acd68277c4dd0127a798210358403dff5bbd555e py3k +62848 2ef1c381138d573cfd94bfee94a5f6b11eef7277 legacy-trunk +62849 0e76a8f347695a3750fb6811d55d6dbbd778cbd6 legacy-trunk +62853 b124e31614ed969336f75e1e276aa59360790fb9 legacy-trunk +62854 c562402c1c08299269bef368756c821b8b1cba1f legacy-trunk +62855 c67c09554d2302043fb378091cd03253c33b7e93 release25-maint +62856 e35935475153377d6727d64e6c52f72c3b84015b py3k +62857 8148069263aa1f0210cdd0d58f1593fbad4e6ef6 py3k +62859 aed04239a3fc25852052dc46f3916d605bfe3651 py3k +62860 cef5aa3ed71335490472866187b639fb5a667fa8 py3k +62861 48e9fb0a721799877f26edaef01ac6e6029b6812 legacy-trunk +62862 6b7970aa0dda327f25a83151951d8a7b966eabcc legacy-trunk +62863 9f45979558a9bcd82196f22c7009d15eecc3444e py3k +62864 d9d4cef421a2dc44ac42ab8dc8b1fa08b4f3de05 py3k +62865 d4430e9021c223e8fe50602926b7c21b59cfda9d legacy-trunk +62866 72be1390ae5f47bf789b4a73d15faed37184efda py3k +62866 e69f84ee4f3a55022e2f252ece2bad9407d2155f py3k +62871 981caf24dd8a6aad8c3929ff0adaffb3db95db04 py3k +62872 16dddfe0a8cdc46623e3c7d0597964121f10e653 py3k +62873 c8b49d8c3967e7aeda4ae7980306163abe194e02 legacy-trunk +62874 f2d771f370bd8e0ba3589fa16e1dce2a4bb96e57 py3k +62876 ca4102414a345ceec809bfa6b5290ed63b683d28 py3k +62877 11407c1f68ca484c28b1d94691db58857af3a1fa py3k +62878 eaac5619a21ffc0549cdf3e32b267f3b37b81d1d py3k +62879 2028fa2fc1ddfcc94ae2e13f1cfac67323d6ca7c legacy-trunk +62880 e95dd25dfb0cbe0805ee93832a650e0f3550d630 py3k +62883 5c5b363d2f19a81a9eac5f38015046bf9908cba8 py3k +62884 9fbc2da54e293de9131c50cc5418ea126ab47d39 legacy-trunk +62885 047da3f6fd7fd94a2ead77150644b8ff89a26c2c py3k +62887 cac6a1a334e04cb06c877c9be56d45b8698e6307 legacy-trunk +62888 b7109a0cd0f9f57a51ff5b4925d0cd4a3c05ce7b legacy-trunk +62889 a7670afb5c092d996133214894160a7e93a97186 py3k +62892 6ada15d7990f72689977f43a49c14875231e006e legacy-trunk +62893 b5a677278b5fa858467c0aedf02743795aaf0e79 legacy-trunk +62894 b8e7a161611c14f32dbbbd837537cd3c0e496f7c legacy-trunk +62895 1fb246cb29ae411ee8fca82f5d1810d5e5667026 legacy-trunk +62896 dfb0bb5faa6bc9f634b0412375dbfbb98aa37614 legacy-trunk +62897 6be64719a509accbf40c5fd73bd9118835c3a3a1 py3k +62898 2a173a8b3b13f8ae145b7ad488819d727be563f5 py3k +62900 fb1984fb182d3b96110e2c171f06ea11b84e8719 legacy-trunk +62901 224cad8235905f01d18fa55fe64b338c640b9b22 py3k +62903 5e4bd824984624eb299ebbffd22fadee86f2c8ab py3k +62904 dc573ee0d90417b79e26e581caa032ca991f3ad6 legacy-trunk +62905 a130cf48ad67caef1b113394ee90836c81052433 py3k +62906 5d15a8bcc44566257a73ac53be1fe7ed5524f27e py3k +62909 8bfe2b06527dad034d3882bdda28ce59285f711d py3k +62912 b93005712e399ff0c2eedafca3eb723c52db242a legacy-trunk +62913 5b6ea4dba44c9ccfe1ebcb084c05f8b1df3d207b py3k +62914 4d007a31b46453d73cb75d413c3c407492c356e8 legacy-trunk +62915 37675f0c338a6605f1e59930934cc621a72144f4 legacy-trunk +62917 816c21c762c853f96609df782e1b23cb484301c4 legacy-trunk +62918 ebc9f66fe99029286349a348b4c691e9cf6440ec py3k +62920 946fbae4baab566b495eec8bf98e381b635793ad legacy-trunk +62921 4bd9897dce07cfa11b8b45ccf56f45fe2847a658 py3k +62923 a89be25072e3de7f3e81d53363db27adf1d242ac legacy-trunk +62924 5fb8a504fa96f1115b75dd5831f4be13f8f0119b py3k +62927 15c7220286155c1b7b79bb7340f8d64ed4bc7f3c legacy-trunk +62928 54e622ef3500e27fb7d9c9fcdad795aba138e2cf legacy-trunk +62929 84af0cfa7b81d9434e74aab9fc22795939a820fa legacy-trunk +62930 cd6c6deb7f84e4ec443312cf73798dd48f8e1440 legacy-trunk +62931 c24438e9ab54fba36ea20ecd51c153e0d0de0fca legacy-trunk +62932 ccc337b45b2e31a00cf4013e98c64587a27c1efe legacy-trunk +62933 efb979a4947d0038c9df0cf3b0aa0857833abe25 legacy-trunk +62934 f3f6a895a555df3695cc9edffdfcefceeb000e20 legacy-trunk +62938 3955c502cfa3722fa0994217f5228440d5f16ee5 py3k +62939 17cd612b06da1f84f2c1365e1006d8bec08934e7 py3k +62940 8b67685a8bc3ee67923a1b7881a037c7f1e81ad5 py3k +62943 8baeba13ae93d43f0e636926be292d691e9e5ef1 legacy-trunk +62944 51babe73c0ca35f6a348cf120b0406d5aeca8fa7 py3k +62945 a444985a675ae4eae460d2976bb69982f97eb20c py3k +62946 b432506efce7fd96ee8af683146d8faa1b22b688 legacy-trunk +62947 e0ca74b364e49b55618a823d2bd9eeb41564d911 py3k +62948 fd0b894bc90c52a44f56ef268707647e59f4d1ed legacy-trunk +62949 bd2954c491698c142baf536ad3d1ac99144385cf legacy-trunk +62952 44954d65a73a45dd525a31b4dec5ac4496c1cda5 py3k +62953 87d854bc1e45e71f0974a8682d109e9c0062a3b6 py3k +62954 dec531c0acf9b62f9f8534960919c47edb73f975 legacy-trunk +62956 37b27a25a84704a8ab082a5d4f8e907bd1c40611 py3k +62957 802519f047545d401129721d7403e36bf73d3d41 legacy-trunk +62958 fe9b97dbd232d2cdadf879ab7f66cafa3a522433 legacy-trunk +62960 4c5ee1b38045017e8657b33fad5ea1cf6533a564 legacy-trunk +62961 91ffd9f3ccec901206da279eb1faa40bdd540ff4 py3k +62962 c56e83d08d0b0583534ab940ea002ab7e9a95b19 legacy-trunk +62963 07a35c9a5d3fb8cfdcf48ef1b6a3179d0b9c3851 legacy-trunk +62964 499875cb6ba2c40d26042fbd04c6d95b313e597c py3k +62967 4392694855699097147076fb7f7a7f98c7f87f34 legacy-trunk +62968 5679ce66e74b8838d5db77f7c92abaec8d64a017 legacy-trunk +62970 8de51daa506fd85496ffa920fcb1dc501064275d py3k +62971 aa9250e6c40934e05805c18f2fc602d329edf23c legacy-trunk +62972 76ec675e20b8cbfd1536f9a9da3e63de603e57a6 py3k +62974 23ec33f667360e4a1509e01a080a910c42800ee4 legacy-trunk +62975 884f8426cccf78910cb93bdc05890a0dfcc032c0 legacy-trunk +62976 d0f4c24668f237da663c2f458a2585dd2024c02d legacy-trunk +62977 be8c43a3fd62ff6297477a6a265fcd4f45dc62bf legacy-trunk +62978 38938b714018240682487bc0f406ecedd727efa6 py3k +62979 e3d4de9350fb4ddadf89b6ff5ddbbd77d0f9baa1 py3k +62982 2ecfc7013eb5c336cd10b239cebba7bbff584595 legacy-trunk +62983 a1f458b0149f09023a7a70f6e4464a22b7cf8b13 legacy-trunk +62984 ad7d319adf767ac6a57750a5316b30df7ca915a5 py3k +62985 41a97649de61757a5a7069810cd28444475a44b2 legacy-trunk +62986 132f82d24028ed7f7865e770769a5ac4155e4041 legacy-trunk +62987 451674f86d7544ea2350f064656c73c98d83c9b6 py3k +62988 7654eb5d0a6701d23b422192aa57900925052cd6 py3k +62992 bc8b226611dd43fbbb8c332822a2fc4fea58de45 legacy-trunk +62993 b38ed7c1cab1c19e72dc3607da79a2aaa22e10c0 legacy-trunk +62994 2d1ef9487c3153832e970874b19d886e8608189c legacy-trunk +62995 be3c9f8866e7b72c93a9a43013b34c7f0dfb7f15 legacy-trunk +62996 aac7a22bef845e2a5d3348cd2503a96521d5fe1a legacy-trunk +62998 270f54e82d2081b00abcdb1520d5bbe35b9fcb0f legacy-trunk +63000 763d72d000257a28574acd6deb943b7798372af6 legacy-trunk +63001 3418f2ebce87232f30c66eb09b82b00e3dd8f359 py3k +63002 6b4bff28c7ba2b5bea8450c48f5376466aafaeb5 legacy-trunk +63003 87de758dbd64655b6b7962690dcff2c392bac5a6 py3k +63004 33d4e03b23bade815059c583eb32d399377fbcf2 legacy-trunk +63005 11a0b221f3726430747d83112746964d2f00e615 py3k +63007 b6b2cea5d306f7b9714ae930287a2424bcacffaa legacy-trunk +63008 428b66c04d3a911b239488f3353df8aa1e70d43e legacy-trunk +63009 60b18b39a3a2e839f6d5f2ef32e7a61ba64cc02e py3k +63011 2d04e56012edc6fdd876d8a01bce0240e8d07ae5 py3k +63012 6edaaa77af27686e28373b6c1d24e578fe93eba1 py3k +63013 0c02e15a7c1fcd2054aa04dd7da57fe3de16b433 legacy-trunk +63014 2ca7a2798161c40c6a8011411f8c3f7a676c32a4 legacy-trunk +63015 be1ed62d8b80c7d0708d8f7ca49b0ccbaaec9bdc py3k +63017 c7d530e8b7f53bcd3ec13cbb045544b2bc246e8a py3k +63018 f2a63ec5055e6c247e800e41ca5f1bc7bf79ca6a legacy-trunk +63019 91faae49cbebaa5c8299d373c00d3a74ffc92384 py3k +63021 1e427bc0f81894fc51bd0080dbaf3a1864b711ed legacy-trunk +63022 c0c57be98eed6c44a3413b0c7c10cfdd3e839d36 py3k +63025 c15cf01415f92565ea4ab6966ee3c1f62c0a0a01 legacy-trunk +63026 d8e000ec7796bfc61e615197d3f0f9739f28f668 py3k +63027 892f9b2959c9d16561c5e80014d4037edcc66a89 legacy-trunk +63028 384968d4d65586e0ec27acfbabc4d228319f52be legacy-trunk +63029 aaae489b9d81c1b4842c4143ea526a7699e1f318 py3k +63030 2cac31fc17c21faaef39fa4b113e203e14bbbd80 legacy-trunk +63031 d2345119a2dabdb19f056bd1a7b8714910343e12 py3k +63037 fb14ff057c096766fdd66dde55869dd71c429aa6 legacy-trunk +63038 16f16fce53025f62c186bf80f97b9e023b9d5e55 legacy-trunk +63039 f6388dc019cc82f6cbc851c4f58805c5c48f3361 legacy-trunk +63040 224e07b65861c256bec0f083f31cd0abe9aa7e0a legacy-trunk +63041 9c18baa760ad0d0dd918eca74be4f83bef92ef23 legacy-trunk +63042 b40827eb4b80b76ec3a081d5295f44ce5c001d5c legacy-trunk +63043 fdef71797e83231bcc23949cabed75274803cd55 legacy-trunk +63044 dd5513b472dc97f909a6da325ad98fbb55d1fe0b py3k +63045 52566b445fc755703015c9ac856d264276332e57 py3k +63046 e5aeb3df174e497ef5cf35483e2f9ac311c43953 legacy-trunk +63049 d88507588790489e5b79dfbbba0b0d4e8825caa3 legacy-trunk +63050 877783333eaedfe51a301f3ff6bffa548e0c764b legacy-trunk +63051 6bd666075e14c8d7e68b9947d0e33b0bda8a9f3f legacy-trunk +63052 5dbbc449f02be225f9068f0d095125859c63908a legacy-trunk +63053 c7d1a170c94c35cd0165de65fc804adfe25fd012 legacy-trunk +63054 c2136c14dcd79409d8e102fd8c39b57d6aadad7d py3k +63055 f4e61dcdb6f85a4d735979acb18c3d35fc5b5b92 legacy-trunk +63056 b29b46a439d9f0c8e55be403b92106b80f664d17 py3k +63057 9c765f4ed51234502f461a2b1e5adf1f3dc1be20 legacy-trunk +63058 afaeedadbdb36b38c1ca65a75b379b4fba07ebe3 legacy-trunk +63059 4fb6c0c169ff0b5cc242398e7662a0257bab404c legacy-trunk +63060 0df616193b98806b459dd9c6d97c89a11b81a0c6 legacy-trunk +63061 a73e87f15ffa749ee287a79032f425658043670a legacy-trunk +63062 081f2a66263465b5957da22712adb1429a50b634 legacy-trunk +63063 7f77db950cb44efd76a7daedd45cfe6c7600d726 py3k +63064 818caebe373311e19481c818875ac554e84587e2 py3k +63065 07572a82540fdde7170d33f79c16d3e5598aa40c py3k +63066 be87b77268660b5d858c5e611f0abcc60851e007 legacy-trunk +63067 dedce7cb7a5dff7ca220eb50d661f54d42630de7 legacy-trunk +63068 1fdfb29f4fb83609cf6dc92b040dcf6e8c4fea9f legacy-trunk +63069 5ccd165f30a4512329bae162f483c18a6d1ccc3a legacy-trunk +63070 b17b29e60e9bbd8dbe50828ac828a8255333c0b5 legacy-trunk +63071 49ff1fc00c6c534e1f41afcea22b646626238d1d release25-maint +63072 67e4363ea2e0674e7fd4623e9885c830a772495c py3k +63073 ab190f71b9176956051a18fec849e0b9e6d7ddcf legacy-trunk +63074 e3401f316a3b94b86de45d316fdae6486bf984e5 py3k +63076 21ae2b65bbbb3697e1685a45095343fde3b57447 legacy-trunk +63077 76681a6306a8070e016523ccd1373aed0889082a legacy-trunk +63078 206700d749f0f3239d03e2ac386617f47c7d42f3 legacy-trunk +63079 bd2c95c165ea4c0d3deede32250a93bc02f5c7ed py3k +63080 a9495a3fe2e0b783dad51ae0a0ff0de87d425785 legacy-trunk +63082 e03d8d3e67544f77d7390ecacd8c026382947c06 py3k +63083 b71fcfd9866baeeb0dedf8c289c48e934301c0ab legacy-trunk +63084 abe3f305f6c9601db2980851889cfc832a7cce81 py3k +63086 7e469e3cebda6e0983712920dfcc5971dd7e8780 legacy-trunk +63087 b710d719a082ad5955a65880acfb6faee0e5dc41 py3k +63088 81131046d1b09290fcbc0c4955f2b29bce439b2c py3k +63091 6c15db6ce5daf64bc3ccbfe371e8132e18b4e91f py3k +63092 ed2c1888e1430141f9be30e4df380bb8786c8b89 legacy-trunk +63093 ef4ec968fdb6680ef338f036c62213b307fd9fbc py3k +63094 741b2667ac0b714f6afdc1122b37990cd803d706 legacy-trunk +63095 f3d0ec0b737eb9c2bfae798225364eb7ac910aa8 legacy-trunk +63096 ccc663aa4a7644c7e1b5e1a1c543a1591aa28507 py3k +63097 6a19b9bea18e7bd2e18f0beaf04f5f28f894de46 legacy-trunk +63098 8ea8fb14df7153dc711c0627d9e0eeae7e7116fb legacy-trunk +63099 e94574455d9dd0773a8ed9d8d53bbc2fef3672de py3k +63100 c8b77007a1c14433ecffed386b9f9d1f0c17076b legacy-trunk +63102 22cdb6ec3e5692a25d25afc8b631301a300f8433 py3k +63104 a4277c1c98a85412f891e0633d301e8ee4a83ae2 legacy-trunk +63105 d7c207b80c40aa26f6a01a4c158990c81e94f033 legacy-trunk +63106 90686045fba8d12f5bb0cd74f0b2acfadc6e73e3 py3k +63108 a9ff7289082b20fc92a071d1d07e0ab6caa3c1a1 legacy-trunk +63109 0d4957540c96e9f97d18eb33ff414b38b43aabb2 py3k +63114 c2ab7a06ed24bead4ec636ec5a2495d432ca5804 legacy-trunk +63115 526d8cf7a9206e3f64422f31ab3e773f7f44f9c1 py3k +63119 4c8375574aa9e74610a89629845d81ec36c1295d legacy-trunk +63122 622a25967228d9a081b783c82acf7154728fc92b legacy-trunk +63124 f0a285fc201d005e503b46d80019236c3826ac22 py3k +63129 bde38a7b23183992e81289c3dcbe64cf0adb24a8 legacy-trunk +63132 a375b1346eb37e3246eef596c8d3820f61a06ba8 legacy-trunk +63134 dafde2eee3d0d8a13e9692a154410bbc8b7c95b5 legacy-trunk +63136 c9e5faa482e8baf1de9be25e0ec629e7fa6bfc41 py3k +63137 b305a96a4be2e44aa116ede0d41f315ebdee8de7 py3k +63140 aca5c1d1c5694a3ec056f1023b1a5998a72172cb py3k +63144 a9aa342a367a922d239fcebb54949bdb4c1c280d py3k +63145 2f14518f300b8fc33a9ec6618f6643f4ebafb32e legacy-trunk +63149 799321e7e7bb4329176ba371d71ab1b5e521c9d2 legacy-trunk +63150 c1a68f540d5bc3b3c5873e7d20a836e503764fa6 legacy-trunk +63152 837de24ac1f7a5fbf577da84b792e4baf9fecaba py3k +63153 4ac9cc1d77984bc9c3ece3310c0051d9e1d97c51 legacy-trunk +63154 64d19f2851e1bdf2133220d516443b519077b83f legacy-trunk +63156 1280b8ec9da3851f6bac9d0c28a12b293ce56e24 py3k +63158 5a7ccd65e59b3d2eaf79c53d8c57f9c112f0278d legacy-trunk +63159 089c8d0df77444d15964e828a42148525dde1580 legacy-trunk +63161 ba23fc157618b3997030a176b3ce74fccb893545 py3k +63162 39f6f7f172ca8e547c2887fbc44b06af6fa4cf8e legacy-trunk +63163 fd23e6d177e9da6d7b534a5585c8633bdd8a12c7 py3k +63164 07a53bb82baa05bdb17c8364bfdc57b0d6da8e42 legacy-trunk +63165 df11aff092cd84e95aa8aaf85f545ac26fcfc9ec py3k +63166 6a778c0a517e60ebd8376644cce9476cd99f43dd legacy-trunk +63168 b3eac3a7fdc3c75184958f15f56d60a599e5f65d py3k +63169 e997390366069a4974f959dae5722f8d64015a4a py3k +63170 d2810b8aed6d1fc079167307ddbae3a6c54ccf26 legacy-trunk +63171 ff9b2057722cb506a948fa09ab0b6ed4de320b3b py3k +63173 9091637e32b1e3b7d2811a6d5741f8e38a3c7ac7 legacy-trunk +63174 99f50af692d028c10417a094ad568e83293464d9 legacy-trunk +63175 92d00f5f3c0d040195e7a9b3879439de37017d06 legacy-trunk +63176 9d46c289d166051adc646dc279d2fa0952a8ae5e py3k +63177 e64039bbfe26867e95d4cdebe7ea11ee2bf36ea1 legacy-trunk +63178 1e573c2cd9be61a1803594821f1e0d692298a088 legacy-trunk +63179 2ebe2727fc92ae407c674835f01c88916095165d legacy-trunk +63180 8a49f8ef7f894233a8a10edea7cb8be70a923b4a legacy-trunk +63181 894144b173c9f62e150d0d99259f3bf669b58a56 py3k +63182 03b1233bf5fe00c86fde91e59d11a5b860d630c8 py3k +63183 826aff95cf0bd1b2b48c8428548ff093e117f93b py3k +63184 65b75f7838f3b730ec57ca3b82981d92566290e9 py3k +63186 51afd566db2bd4263a4887b1a9d7b10c8f16475e legacy-trunk +63187 6df0394abbf1bda2b0d7e55fd4765e6bfaa2acba legacy-trunk +63188 28451b5e816fdba02bebb6b6b8537225ed5ad81f py3k +63189 62658b0aca0822e4c96857c1e3ca2999dc0beb4f legacy-trunk +63190 eead08b8e1fd063e1d3eb4855326ef8e7d8ee511 py3k +63191 a5964ee66193a4b02add092a8968950955a288d2 legacy-trunk +63192 da6ef110c3735242d71426cac1b4eb422dee4604 py3k +63194 e8f748472730c7bda097951f8d62c692c8f96b57 py3k +63195 911a7bcdc17e5910cd3fe88804291cf89eff6c89 legacy-trunk +63197 75568cdda944709fb167469ff755207a4b3b39fc py3k +63198 384c54fadaa2fbd3d4666d2cef9f9b775346b9ad py3k +63199 a9594a5cdf7fb862b449bf7868c2c5fdc7426d6a py3k +63200 55d8c35322a70db3ae99a81dbef255883d6037b3 py3k +63203 c26c02a4200824bff25eb1d28837016972cd5009 py3k +63205 ecdeefa8bb6a8416095ac87daf2e4771ba173d16 py3k +63207 69da7a4f2f8e2d309b4e7ccd616fe4f183f0ef14 legacy-trunk +63208 47692f6c815eddba484e22a1d7a7dd32416e6bf1 legacy-trunk +63209 7c8acaa27eae1d455dcaeea1b8fd4955602bcc84 legacy-trunk +63210 e4e3b3eba226fd89b67302119fc4177ba2c4d1b3 legacy-trunk +63211 d2c1ed408a1d76a657015f523b52fe8751a34c0e legacy-trunk +63212 76477b9788509b49a4926a898404908c1b129ad2 legacy-trunk +63213 f22ed80289d301479679f285e1aa6689f29bafb5 legacy-trunk +63214 49038ee0e5b5b530037bc4a9ea4fde3c26c85a1e legacy-trunk +63215 8122a324b7a5519ddaa4b8495d4e5739deb210dd py3k +63218 603a935eaada985ab52b1f400e82b1adef6c767d legacy-trunk +63219 a17585a45ee7ea0f0c84939e6789172e8a285483 legacy-trunk +63220 7b6e222eada70ab62eb802810dcf17e005456e9b legacy-trunk +63221 5dd6c51aeedea488c3d2870b0da8e9036a15ad58 legacy-trunk +63222 8b223d351b09592b03ce794035ab24baa23da980 legacy-trunk +63225 561e5f5026eb0a44b38b50f384ed7ba2a64c9a78 legacy-trunk +63226 8760912a9e9fe05904547f08223438252afaf327 py3k +63228 03d6875bde0ebb1917b18044506ec83805515f82 legacy-trunk +63230 e536c6501402c117d0ea4ff8390fed48c9f1b625 py3k +63231 8fb9bd5962e46fa2fc5dfe025defcd393b07007e py3k +63233 f2c4ab74cc65bcffd377bff8c1606e62bf072d48 legacy-trunk +63235 905b6271ef118ac3d20400b8f7ad8f5a5080dc44 py3k +63236 71aa903eb7ac2246e9be6c36e0f52093e0ce3bb3 legacy-trunk +63238 83e950f29d443366e25ebcd076bdfdff25ba6c7d py3k +63240 a3b4f1e65cbeae564ffd4c9e12c11f31400f0bce legacy-trunk +63241 42fc922120d96e8c1e81790bfa7b10cabef4f9d9 py3k +63242 993d0bc07e002a9b959dbe9f25f205bfaf4e361b legacy-trunk +63243 c546c40fcece0a677c2f017d3da4ba04754d8fd4 py3k +63244 958286b15de050d9cca2a44867804f34b027e2f1 tlee-ast-optimize +63246 f28b70641595f2d16fdf8f06e0550f7322c7fa72 tlee-ast-optimize +63247 17956dbad0e41e1a4edf62591ad4263ffa798ae4 legacy-trunk +63248 708214f351fe7d8bde4a9d2210544c30fe172d78 legacy-trunk +63249 7e18d65938243a5075f6c17fa6d889a095b41862 legacy-trunk +63250 c229e75fc2249e6ade43b065d1def6693e3126d4 py3k +63251 35a8899256c2ca7b29393db28191d81e233ddc73 py3k +63255 4eb59d8bac4d64c8b38a9021676207b0d6f61581 legacy-trunk +63256 0663f2fab93452c7c3914c9748ace2f83bdd4dba legacy-trunk +63258 41628f38c5a28874fd60a868145f5d209c7e3bc4 py3k +63259 6f259a9ccc84818853427b346e0fcc1cdbea0ed8 py3k +63260 f0a47091c8d86dd2f3bedc9a8b61aec1f8235fd2 legacy-trunk +63261 1df466702de2a8ad2cb3ca77a100b2a4ce5a1c7d py3k +63262 aab8b8d4b6a50855cf3a91785e4a47ec32afed8e legacy-trunk +63263 d5eaa7daec2f47305c15b88f8a60dcadac4575de py3k +63265 054ff4128f744eedc1de2fd18b4850da0a1c323a legacy-trunk +63267 27d69dc7279321d0d944fd4f2335706456f08b03 py3k +63268 5e8932991adfd121c3e5532abf573e8afa4addc8 legacy-trunk +63270 3aba4425626579efe0698e69628a628f4fe6313b py3k +63271 62d9ec9c9efd102a754266d220e76f4d9928e3cc legacy-trunk +63273 f513bb7b8d97e55b81f3b145a5b89f3fedd8eabd py3k +63274 a092dce6e9d4a961028433dde3b84d0fe3a9db6b legacy-trunk +63276 3cc0bf7f04b6f5510dfc528c528bad667aac11b2 py3k +63277 876d2f0e92e4e3a15408a5ff9d63da4c04edc428 legacy-trunk +63279 e4bb6f174b004447cfe365008bc84f79bf72bd2d legacy-trunk +63280 6dc91b366d9ffe72ba02405b590dc74d3e24f024 py3k +63282 57cf001aa2a24e86cbf8a347de88472409f2fd2e legacy-trunk +63284 fcf5dac51394b8bb4ff7e13ce2488d710f11ecb1 py3k +63285 bada0e871ac1cf19ef39759c0ceeca1054e22e01 legacy-trunk +63287 5af38b95a17fae299e3a59da65dbb3d6af3326d0 py3k +63288 96a876af930a4787775b3ff38d4ff6c7c65883f7 legacy-trunk +63290 8a10a4119fc27573afeacf95726e0b24b6288438 py3k +63291 1b44ed1a90465ee4adc404afa3115a4162b8bee3 legacy-trunk +63293 dc4098ca823e2879bef35be72fab20d490e6cf83 py3k +63294 d4b743bdebb16c5c91ac5e96ba3b79e93c2dada3 legacy-trunk +63296 cfa8c618ed353709aa20be4033fd7413e47abcf8 py3k +63297 80435bc7aac4838f88b5bfa540c229a2180b0bc9 legacy-trunk +63298 1e55b2d1c93ef3587cdc26c71ef13c1d1aeb87b3 py3k +63300 59bcdfd27501fea4cd13251ef5a026d1a71442f9 legacy-trunk +63302 5298739f0a4dfc17f4b1db491eda825112db78e2 py3k +63303 d4aced33d57a5924c3287a95dc897d91ca1e3ffc legacy-trunk +63305 e116ca26d8f1ca6bbc00c69a08cca2e99d1a47ce py3k +63306 ed532ca7ae75cfd69ae6ab80e17087ce054690b6 legacy-trunk +63308 a7c1b3170113832afa6ea0401151dcffb05e4965 legacy-trunk +63310 5a4608272c506a6c0428da23e16983fce6f65227 py3k +63311 fda4d41a07738795697880c7f9eca302655b0a7e legacy-trunk +63313 1d62d32612d6dcfb2d26462b5eeec9a390f9ad02 legacy-trunk +63315 a8a57ff6f568bc4e9d36d0ea6c0bc1226a5205fc legacy-trunk +63317 1356a418830b34cc18ff3735fc0ece66b54c8706 py3k +63318 628dd5ec4dd2e8a784a20a2b3b8aad09314fd5ae py3k +63320 1573c776df82ec555e8bf7878fcccf92821e74f7 legacy-trunk +63323 d5929cf868cbbb5231b19143e9b39bc09f63a55a legacy-trunk +63324 91896227272a692b51d50a0b513c2c90e8c91770 legacy-trunk +63325 8e0017986f50ee64a17e87f8cca0a4d78ec20fd3 py3k +63326 391979af662bc48dad67444e4aef26ef9f9cf691 legacy-trunk +63327 e68e610862beb5f9a5712cddb332a93595e2cef0 legacy-trunk +63330 87a79352342c6215eace0f6cce43661755566c8f py3k +63331 081c15806e287c036616a5082cf7a4beb9150697 py3k +63332 0d54c7056468b32a68a577f392364b3dd96a5ae3 legacy-trunk +63333 397f29dd82bdc5dc4ef3ff5b706605534aec7317 legacy-trunk +63334 31cc8e1a8fdf5f237f5e9a96989399ff92c1f6b5 py3k +63335 960ade856078d65712ad67f4066ec467d0822e76 py3k +63336 ae16e94bb03ae8edfd703648ee5c4058e6fd3ee4 legacy-trunk +63337 2b8f744db79b721587ac06dcba55d78b3265284d py3k +63338 6780f01598a2344f79e73f1d25617d3fb53e28a9 py3k +63339 8d8e06f4be1ff4bf6e4252dae4570a43bca826da legacy-trunk +63340 0c7142c56d7ed9ef57558b9832c0a694ccfc5b20 py3k +63341 a8ae2aa08e7ff5305f875ec92c49460133760a7d py3k +63342 3c03e9b466984175af8f86708eadedc0e761c9d3 py3k +63343 593b649904b86636040ebbcdb1b41d161c383a5c legacy-trunk +63344 3656873985187c8812e3bf69260d7cf294d1bf8b py3k +63346 2e2c712fe26d697dd66c9cda035a620fbd7c8af8 py3k +63347 57f61dad7b3b4f3f38b4e68e6aed1d73912c3081 legacy-trunk +63348 3407bf9dac387a4c4ab7cdf0bafdaa6a881bce9b legacy-trunk +63349 58a0d5524f9a3ba9506153d1bf02af48dad878dd py3k +63350 98f68726da02d50a6b59cc48b0121bd5707f8031 py3k +63352 b630729571e668f4e4e072686a7a2ffa8c0fc9fd py3k +63354 9ac11043b395363e18ef03dfac96c77b7607ead9 legacy-trunk +63355 947caee2399ef1f891d142390541eb72fd8de9e1 py3k +63357 3df090ed48103d622920945fe7f03e746c9c2f4b legacy-trunk +63358 d6fe502336260f60134182de2bc9d9de61724035 legacy-trunk +63359 4ea99309e5254c8b56a232d8f650480c15d18be5 py3k +63360 4f1a079df427cbd9e83aa8feaa901b9b1e3abaa6 py3k +63361 b0b32732f66eb7be260b7cd144be3f9942354414 legacy-trunk +63364 ed13040ac2e6e5f784798faff19ddbd1dd53b9ae legacy-trunk +63365 ff2dc02ba41aa3d111338a374faeef730cfd435c legacy-trunk +63366 45650c25a02865266f36736f24c544c33a497def legacy-trunk +63367 54fd0458550c6a75036215dfda550d492836eb23 legacy-trunk +63368 aa8e13279b5b1ac1cc55e5ff747fd4f0621c9986 legacy-trunk +63369 a2cef9e89b7c2e6983e23d5d09fa525e7002449b legacy-trunk +63370 5d1aff46cc0df1e383b3baf1f0a22a15db562e36 legacy-trunk +63371 b2403d470b69dd7c8bfbf06857e7d916ab618d2e py3k +63373 dd0bcc216fe35920af446e2857354c79c3e3f41d legacy-trunk +63374 3b827f3647cb18468ab64068a5982a9f6e37bf3a legacy-trunk +63375 893a4dc17a91c5eba137353725be666c5ea5e75b py3k +63376 88bb9df385dc0d750600ef36f84c85b7a33e44a0 legacy-trunk +63377 0f15735c1831f54ea0fad5c0a1fdb27dc77868b2 py3k +63378 63741c7521aa0c2233cfa8ac41ae5845894cd6bf py3k +63379 0e67e21a411320c7722fbaf3c54d7cd5b8132ae4 py3k +63380 5304046bb358d56015cb697505df32a739fb9616 legacy-trunk +63381 abe35a87b01da30311b89735ce96edd907414bd7 legacy-trunk +63382 60b85924ec6d028e6a2fb87c76b5b440ce197cf4 legacy-trunk +63384 ce7aa88b669ea10dc1cc795ac0b4e0f2204e267c legacy-trunk +63385 a02bc2a84d19ccd0b802b848d28476d62000f343 py3k +63386 880fe8877df978b9ece0927d22276ae4b917e6e4 py3k +63392 ab80bbfa6f0c089254c5e56a9dfb31d61adedfda legacy-trunk +63393 be581acea4e73996b374877794e1f147d949d594 py3k +63395 6af64512294ad09d727b1f0db1304d0d55672d26 legacy-trunk +63396 42b78e0e684807349621504249c65d18b8a302c7 legacy-trunk +63397 84bb72d90bc72529638153a7fd5a85d6d3fbedf6 legacy-trunk +63401 0680797ae454629e057ff223e26db31230118ea3 tlee-ast-optimize +63402 2144c9f365c8faaff313fe5d2a511f9ab42eda1d legacy-trunk +63403 1ca967566880e8064203bb23a780f87b7285c6d2 legacy-trunk +63404 6fbd06db70776016d035e2c57583bb3bcb0527a6 release25-maint +63405 6b7977314c02fd61b7fee2acd74cfbe5628db47b legacy-trunk +63408 3bbf44d3236122acb9078017a4936bff8e31e7ab legacy-trunk +63409 f2c03d71597d48b2c4b963b64d0c267faba908ee legacy-trunk +63410 694d36fb6f4dfa26680c41623ce71d800065d06e legacy-trunk +63411 a97eb177f3a779cd9a4a90bbf6cf5a52b7b12c0a legacy-trunk +63412 ac93edc396a64f94b027f64d340392a6b8da25df legacy-trunk +63413 b66050db841f05bab2823f145f5e51c42f45d176 legacy-trunk +63414 6836e8f1dedbcd46f03d9f7999d218ff25921d33 legacy-trunk +63415 7460415da8fec76910286b7e933dbc8d9aa533fc legacy-trunk +63416 f3dda9d3668fd3323b7998ede17c521e6fdcc662 py3k +63417 d63344ba187888b6792ba8362a0dd09e06ed2f9a py3k +63418 ef4cca2d61713d33c2a5025235d4030e3695d02c py3k +63419 24961888ad956ace80727562e7557c6a2789f781 py3k +63420 8a74612f3d2bae1dc22bf5604fc8cd412de05674 py3k +63421 d6e1ea21c948ec28851f87ee11f5229a9e3aefb7 legacy-trunk +63422 9240a59a25e9ddc422c35848307a13b057baa72f legacy-trunk +63423 cce1b243c11d1363d8171204fef8ef3ddd17b7b5 py3k +63425 7118fade575b9ec1ed29810dc3bc3f862af642df legacy-trunk +63426 64f3873438b1cb2645d187bf4ddda4edfcf581ac legacy-trunk +63427 5ce904c90e618c75b142e3d0b441f55a6be4b45e py3k +63428 d953ea58cc8bca35e42a97fdfadfbb6e0871df92 legacy-trunk +63429 7a1dc3e7c79b524399eba3fd809d3010a70b0515 py3k +63430 801a09dd0eb8abdf9b2feb7595cda460aec1705a legacy-trunk +63431 ac59fdd80e459e68200d26da0aa1c46fd729acb9 py3k +63432 0aa1bde9d194a97d6257f441edb46315aa380d75 legacy-trunk +63434 33c7fe85e35dff6002d9f9fd2b9c2ee07e96515b legacy-trunk +63435 12c229d021cc2c60a4669c224eac7812342cfd54 py3k +63438 f862dfaf9a4be3a305fb5ebd9d74e40718029711 legacy-trunk +63439 7296a2fb4786dda907b46ecd8619c18cdf74f47e py3k +63440 3d5cddc6e5e7fc500368b52ca6c6f048d23192de legacy-trunk +63441 585f7ca38a85af8097135c9372f507247a9cdc71 py3k +63443 bbd30c492a998c3ed6e17080742eb2b26d5fbca0 py3k +63444 cdb75af2385a31fda693d1639efb8616459eca4e py3k +63445 9f354001ea2527115da5f92cbc56548dbd456973 legacy-trunk +63446 efe22eef26be3e275e7b08e51eec6f44e80ef048 legacy-trunk +63447 20b1c5c4e30445f2b6a87c68cf12af2c9ef6b7b8 legacy-trunk +63448 a938529f4d6dd3a21891327280790bd720c28234 py3k +63449 2e9f572b73227a859a49cd20d415fcd1eac62b94 legacy-trunk +63450 b86b29e0cf329d10c18632fda489775ad6e21a5f legacy-trunk +63452 30f632b36868e9d70ead2313d5615b41925a9409 legacy-trunk +63453 37499287f758a72db2d2a9b3903f0ffab1861cbb py3k +63454 61a675ba79060259c7a9921d01d94931ba8fbaf7 legacy-trunk +63455 36c71d3a6ef8c1e88fda210dec384deabcf564a8 py3k +63457 3071a337d921f3ebaee94224677c77f64ce80bd6 legacy-trunk +63458 6a6cb9d4bf94502d3988f3ffafd805aa19787ebb legacy-trunk +63459 796cb93c9707f7bfcf8923b167b98ed5b34bcd5e legacy-trunk +63460 cd91daf0327c6ed1e252cd6209121c35edbfbb44 legacy-trunk +63462 12ca1e820282bf49c5d97eefd97727aa1c190523 py3k +63463 4ecce8fed6e1db643faccdae69083b6742fdc071 legacy-trunk +63464 95cb009366dcb93095e5852b2923e8b59b40b9b9 legacy-trunk +63465 8b628ca218f3d6c3629beeca59077c143add9513 legacy-trunk +63466 a1f70435d8e373f960b9823ee2fc72b63fe94ae6 py3k +63467 ca8d8c8f296032536eec0898fdff150e8f7f4bf2 legacy-trunk +63468 85326fb755e2990a1dc0b0a48d321ad63fd1df44 legacy-trunk +63469 e80850055b93172c140ba212acca3a1e7cb0c9ef legacy-trunk +63470 b83d7d029e0e175eb4951620448724917122def1 legacy-trunk +63479 63ddd3ee4a2d1d7828aac90050c47049fc7424f0 py3k +63480 85ba087c0cc74b2cf75e0da001078fd840d10281 legacy-trunk +63481 454d38c1f47e91a8024e6afacdc4636c51b553f5 legacy-trunk +63482 eaaa19e949983c716bb056a07c769ab7e8372839 py3k +63483 d17fac896a0bc6bffcf09eb174ca90f1cfba501a legacy-trunk +63484 77557216ba321a161618d7b973389feaa975d701 legacy-trunk +63485 d5dd8a85297056aecd7afc11e11c5e3c98ff5f8e legacy-trunk +63486 5cec436d64a2812af752a0b9f25f5615900d89c7 legacy-trunk +63487 b53604fad54b0e662901a7ba5b411a77a40f1a71 legacy-trunk +63488 ae19120232b4a8e33905664e1532e3e8b58a83d7 legacy-trunk +63489 7fc96d7ecf2ed71cc1f176d2b8ffcbe1b850f74d legacy-trunk +63490 51e324b573b09946b7f12a75bfd5d5b720084e75 legacy-trunk +63491 a8f1583b78f6fee7176f7ce2d08f30cc0cb08590 legacy-trunk +63492 4ad4bef91e8e7f4489e971e16829060c24a94bac py3k +63493 f419b2e96a987c1d36c78b8789a26c38ceabd051 legacy-trunk +63494 173e5e8b3e59ed2a4a0baa10b990415b096266ce legacy-trunk +63495 0912511b989762bd499dde0250739c07108ca1af legacy-trunk +63496 32bd18709dfdf004eac39a0ea0ff0b76538c3934 legacy-trunk +63497 14eb804b3fc7df1c3236fccfc1953db00e044532 legacy-trunk +63498 59ab2cf002fa8b5ad68782ca1c587e9c32b68ca2 legacy-trunk +63499 52a66373437d3237c4f9b2f2eadcc6b2b826f4b4 legacy-trunk +63500 12c56d2eb4d9799594034057a101615b6ce7fbdb legacy-trunk +63501 de11bf84491d6ce419521cda6a423f80bb220acd legacy-trunk +63507 46bd8cfa754c589a365ff813fd712ea18223e3c4 legacy-trunk +63508 3291ce4928bc44626c6f20cee3a692518d53127c legacy-trunk +63511 22d2fb761ac1d3492997c33d21eb1335d58d7c73 legacy-trunk +63512 9c930a32cebb2578ed3148c255d6b7ebd0bf9313 py3k +63513 538e410c0088317f0ec25ff33f5ec474e01e0e6e legacy-trunk +63514 55a50d391ba9a83927aef066a13a824ceba0fbe7 py3k +63516 2d7fa84c878db592ba595ffac87dfd708c2cee56 legacy-trunk +63517 d290050ed8b22a2c6172092e2aec1e843c29001d tlee-ast-optimize +63518 7aa9ad658014a43bc460554867881e6c04f99f33 py3k +63519 9dbca2754b406c3c22e6622faa1029f7f9e90bd5 okkoto-sizeof +63520 1d22723a5785246d6f274bbefb9087665b6d55a5 okkoto-sizeof +63521 36077765e1cf458a0c709854662e0148384cd4ac okkoto-sizeof +63522 7798bc86aba32a15e7682e89207fe366250b2015 legacy-trunk +63523 8c81faa210c1ddef2200df14d3f6e8d2813967c5 legacy-trunk +63528 5be2d82ac5acd5957877d8737be5ccd62db03254 legacy-trunk +63529 cdd0000631cc785ae380811fc47bac88e0a6324f py3k +63530 2c34f19e3922a6ad14897bfb7328c4ba1f292645 legacy-trunk +63531 c6dbc4323a22d25e505298de952b25e24ba6cb57 legacy-trunk +63534 81c3a6f9d85f0a3dc2a63c976ae84f809d6d4b69 legacy-trunk +63537 4f6ea5c59ab31ba5f05b979db98ce406a5608931 legacy-trunk +63539 38a97dcc2c9c5a93ee90db40060cfac8c03a2d97 okkoto-sizeof +63540 7114e1efe3f9674e92ce9d364b74c4f3fa9421ff legacy-trunk +63541 c534b69ab871d5a12861b4b2afbd4a0e6dc94e81 legacy-trunk +63542 2fffdedb10f8c482555c5413e2c99f6f2e7579cc legacy-trunk +63543 e18523f842d7d13950dd998a215be5fa4f09e30b legacy-trunk +63544 5a29552412fa2bc6ee8a202b6b85b27705816720 legacy-trunk +63545 bb04332c7f01782bfaf29b32ddb16156b7c9f099 legacy-trunk +63546 71deee6b941e93b895c1e4cdba6576d9089fe12b legacy-trunk +63547 9fbc41abdd4bee0b8f4e4416243c95f4f4653b42 legacy-trunk +63548 342fbdccb7d969ffdf72ea9bc0be72c1d5b994c1 py3k +63549 99176b9d90b37ff6fd71bd14e035f5fa75953a52 legacy-trunk +63550 e2bef44f457ddc2374406702fa3b5f38ff646785 py3k +63553 594828ea03a105ad43ecf6a26a3017a236417b88 legacy-trunk +63561 a30fede87643d5bb016daec46ca277fb852f06f1 release25-maint +63562 5ec9528c93deaa56df9825792a3d7b3701c4840b legacy-trunk +63563 5d19299ee3463ed7d379844ef428e9cb79179d5b legacy-trunk +63564 c5a85e4f9e8666b3dabfa6c7f36027899da433b0 legacy-trunk +63565 a218d5cb258b2083132823a09ddf92d9558b0b1d py3k +63567 46c6b9789ddecc306820f26f0a691e96c555a2b5 legacy-trunk +63568 034d6c9e2671f9e5d33b38c50b8340d806d30dc4 legacy-trunk +63569 27c0d7351ea8dfac4ad3267b3bd6d11c5febe47a legacy-trunk +63570 727fdb9061913e262b837c2471f2ca56346a9c33 legacy-trunk +63572 5568005d22173225b70641eeed3f2ccfc12f0bf7 py3k +63575 0d0d9641f9bd977a5579505a705dc85fbce4933d legacy-trunk +63576 45ff737671f6339da9c55a4dfe47f49bcaf44290 legacy-trunk +63577 6abc63c615265f91e2a906ca162fb64bafa705b6 okkoto-sizeof +63578 90912b10ae72f38cac3d129dab0fcf52b75eaabc okkoto-sizeof +63579 fd1a2f4996ef1690c53fb387f0b25ac269036c2d okkoto-sizeof +63586 28cf99c193c7d56f20138d44655a7ded5b7f24a1 legacy-trunk +63587 0f5f32bcdc8fcfdd151150edfb2d2c5f15711561 legacy-trunk +63588 05aa21d6dbebe6299fbf9654f7f1990ec73d67b4 legacy-trunk +63589 ba1fa511b72d1fc4b1755502e954f7f4f41f5e95 legacy-trunk +63593 218a1086728ab6877007c414a4694e32c2aefdcf okkoto-sizeof +63594 87b1441889a5332f16968cfda93a16133b6c46be okkoto-sizeof +63595 f5b029020e023ffdfce5a16b6d1c35285a716c5f okkoto-sizeof +63596 680bb9dd580744d1b7f43ec2d1e895b4918a08b0 okkoto-sizeof +63597 0fecd386793e620a8d11b5199d068cbf500571d5 legacy-trunk +63598 339e1718315cd8634d78b5bc5fc19ad657742704 legacy-trunk +63599 3767a5aa956025b8f9eb0c0eb037218d82d13639 legacy-trunk +63600 cb1c89a44edb653442bce93a19d366598210043c legacy-trunk +63601 71fdbcd7baa9a6a77532a4eccfbf68935c100ad2 legacy-trunk +63602 260b62aafcb497bd980dc3c952cbd9d2623c13a2 py3k +63603 9acb314b907278f0461ba0e0cae45c534386826e legacy-trunk +63604 73b24127f7b63df9772839492da582a22514733f legacy-trunk +63605 caf3acdfe5e438d60c6827525da59163c32d9f24 legacy-trunk +63606 afe148a4ad27dfc516b95af6acd8836cc596a18d legacy-trunk +63607 e534ee0a4cd0441a701cc3915635b6093106d455 legacy-trunk +63609 80659b9a4cd7d3b631d166f2846afa1321777713 py3k +63610 1546c1fb8f8283466c8b975cc025f81124a1a32f py3k +63611 d1259ffb103c28ce55b9213e7fd210b88c6f5eca legacy-trunk +63614 d5591c16b997b1a03fe12e2290690ebc1f37227a legacy-trunk +63615 60df8f658575acbd1f02488d85441fedd9d375bb okkoto-sizeof +63616 895708b056b7bd4210df6feb15412c5ab45aa29e okkoto-sizeof +63617 9670262579611f1f9a66bd3d3d67640b29702628 legacy-trunk +63618 009119eb4d2d80019e68cd5258d41b7804a4d61e legacy-trunk +63619 d688f3f7c8dfd2e0e3c1e5b643019cf0ebf9a727 tlee-ast-optimize +63620 770e4e132775aa0c5daa5751379dc7b29ab1af7f py3k +63621 49906d432b47bab03e412de88cf65a3debbb5d75 py3k +63622 560c97398b8e534ef6d2d120eb5c81d760f803b1 py3k +63624 38b1a017dbf60071cafdfc0485044ea44bb5e0dd py3k +63625 813e0f8a741d59bd5ca7b65057655eb9dd742517 legacy-trunk +63626 26b359e237b54d9a6db80532e648344e082a41f7 release25-maint +63630 46f351ee9d5ed413034f2e9f37534ff41a281dcd legacy-trunk +63631 7fe3a8648ce242f5b2d6cbf1703bee8c4eb9467b py3k +63634 6edc80d42021147c52abf7f9257be4231b2bb252 legacy-trunk +63635 93826b35facce66bdfe1ace4a0b79d1cec026eff py3k +63636 82725438453ba9ce67a667cfd05f1c48a2b5e9ee py3k +63638 316611fb12682f70b4d576170047d8a98da6980d legacy-trunk +63639 5119bc77bd6dde3325846c931e70db4b26000058 py3k +63640 40a1630ef2cf8461a1d16f4a796cabbde7942d22 py3k +63641 7df4ba484058fdcf1119a24a0a017e7545261e59 py3k +63642 1c51abeb925fe6845ac2bb4c106866165b330f8f py3k +63644 ae01869f62be8bef5e662bd8202ebe4299fea1db legacy-trunk +63645 d7bf2669fe66088a44f8f22db6af8f78efbf21d7 py3k +63646 08ce192f24b042352b39cb060417116c6dbb4024 py3k +63647 f762a9ab69dd18be9402f2830dd35a75a9c8e3f7 py3k +63648 c9d717b5b7a246c4a26c36030f023e94099000c3 py3k +63649 65953ae98122793df873121b5665384c656a3c9a legacy-trunk +63652 8c2f5aacc1bc983c0c7414867414d092cddfb8f5 py3k +63655 70f9a5db279c20f23e18f51cb6047ccb1b145ac5 legacy-trunk +63656 f28cbab11acd74cb0174f81bb796d1916131d71b py3k +63658 e2420261d4a300c55811ca6ad70659ff4fb545c9 okkoto-sizeof +63659 5411b6a226e5ab195287570ea7aad3959c2d4dfc okkoto-sizeof +63660 0fd553ad53f64641416f94646ec0f66804f4a431 legacy-trunk +63662 afbde360dd1a95daffc648c0d6be1e3e39277784 py3k +63663 6d3e1330a3aa84ad746533eba2432e348898bbf5 py3k +63665 e725ff18342b13fcac0af86fb7b71a7989470712 legacy-trunk +63667 346a99df5889aba4dc94d5be433dc9e8b5ac6bde py3k +63669 0a45508143207dd82ad6297d6dc6add7e808ffcc tlee-ast-optimize +63670 0b974258e15b832f5a6b09f16cb8b8f07062afad legacy-trunk +63671 b9eab749ba660075fb335b9921f1cc3b8dcdaebf py3k +63672 04bd3690fb1fe5a381564f65ffd314786a8fec9b legacy-trunk +63673 abafccfe7501c231cd86bb3e44b411cb66322565 legacy-trunk +63674 3264aaf7cf303f05ba722fd23cd22e2b19f51b5e py3k +63675 4fe192d4896032f35606005cddf1a11c53cd83d8 legacy-trunk +63676 653d04f30428771d6ada54bba64dd829cc530ae6 py3k +63677 e9239ad7b8c07027cdab9de5038b4ff609886f77 legacy-trunk +63678 4d98ebaed27836f772a7cc29c7b076c4ec1a6c87 legacy-trunk +63679 194bbf04b0154425c153ed9373b294de74e69dbf legacy-trunk +63680 2ccb34d537db64e650ec1e03a3856625e4b29cb4 py3k +63681 96b34263e448d4cb37f5faa2ea2293164247d80f py3k +63682 23ab586c427a37e21f61de276f032a2e2d820586 py3k +63683 811a80651232e8d0854ef82628c656f0a7062f54 py3k +63684 8cc3ad8bf7c4e67ad396e7107385ef1e2ab77147 py3k +63685 e3e0c1a652049fe9fec75ffa75d1703d5c0cb36c legacy-trunk +63686 708a561279cab4611c00d1c3f49740c307c9d030 legacy-trunk +63687 9a0d4dc07c8954cabe48793d603b19c5cf4e6537 py3k +63688 34e41f4e962f14c1da55d494b534616095b375ad legacy-trunk +63689 4ab3e7ac8bf4aa3660420817dc655442ad86682f py3k +63690 17b8f445d0431ed0fc916d180265c078df2b0bbf legacy-trunk +63691 662d15af52df66654eb546eac8dbb8bfb7eb5b83 legacy-trunk +63692 a946bf76665440865d02f8d414ed257e4762798e py3k +63693 ce9cdcebaef0247bb8bac8f6a1a608b15e2f08dd py3k +63694 a6d617708665af67dec90a691512728812ae68bc py3k +63696 70104a3e1d9d39993242c7ad8bb5d67b3c08795d legacy-trunk +63697 bda15859f658f2210fa58ce9db5971612ac73447 py3k +63698 c5604be7acdfe0a3779b2afc504fd9c8e58716e6 legacy-trunk +63699 ba8015e23487205443c2b564b1b8c6e526e43da6 py3k +63700 e1fcc3881cb6875b4df71c1310e164c3dfaf5a71 py3k +63702 e017e1fde3692e29eab009f584ad46da900b4a5e py3k +63703 3975ec2b0de2af242575a9939409fca386f6f666 py3k +63704 fcd456ae515ba88186d2169f7280be61a2cd7e0f legacy-trunk +63705 027c887e9da923687fa67a8479e4684290bb1fb2 py3k +63706 bc4df51c01d5255171ed62fe94cb548c2e8b1647 py3k +63707 7c5b5f0eb30d950b8f0e512f9be05f3b77d0629b py3k +63708 dbd9ad52b4d0e9fcf10719b2b5c4cfd373a33792 py3k +63709 79c7e848ea17cc91c5265fc5eebd63fe014d60f0 py3k +63710 6b973d936b0797160cc16b5e471568f56ee8aebf py3k +63712 c2a0a708462eba27a1b35030ed3f5460eeb78845 py3k +63713 06193e3df416f5b272c985df553503cef19fe3f7 py3k +63714 8ff0b925ea648859956d99b61adfcc6964a90a9e legacy-trunk +63715 0525cd5b258290068f7fdccdbbe34b7bcacc2ccf py3k +63717 6f1a632cb2e532b83f9cb5b7af978fd2ce12b6c6 py3k +63718 3c70d68beb30957a9769c7f0a3fefe0c802918fd legacy-trunk +63719 f61b6c31001cb5fc620e50fa031b30262307ed21 legacy-trunk +63720 789e0f15c37b6f627aa5858ccbfc39a15ca51443 py3k +63721 2f9319169fec9c630d8338f194b152e6e6cfc69e legacy-trunk +63722 597d8fd5693e4396170a552add36c00caab8254a py3k +63724 273e8de34603dca27dec45526c2322af205fc2c8 legacy-trunk +63725 c4a458ecd2ed7f002e1dc0adbc2219ceb6207924 legacy-trunk +63726 f6c88f172bbec68c825698c8af6f0154a5fe3893 legacy-trunk +63727 c91b37dbba3f18bdc3604763298006f9fb337536 py3k +63728 a8cc8e6f0c1a6900b49d615ecc171d5f564c2b0f legacy-trunk +63731 61a5697a762651ffeebd1b64802b7c2400767e6b py3k +63732 1474f25128c44eca803a3e950bdd261787b811a6 legacy-trunk +63734 e1a4bf91b2aedc40e4d0bb5430a566a1a4c4dbe0 legacy-trunk +63735 23379695b4db280c47dcbe531249db6944bc50e2 py3k +63736 343aaaa802e81042e5ec9d5710a65ecfa8c993c4 legacy-trunk +63737 dc27b3b46f0dfc20c95fa866241316162ff8e37c py3k +63738 e4104597c2a3ef762d9621bb59924d575ebd4d90 legacy-trunk +63739 51c63b7ec1a8bcea843c965a7d43a6bffb155a32 py3k +63742 502e72f28e9ec7d55240e51dc3a21854e89acb35 legacy-trunk +63743 f94acab78aa99d7be353df410bf6288423c6672a okkoto-sizeof +63744 3eaa7236713fa1765ffe362fac0d60d95a4dac32 legacy-trunk +63745 4a7f3480f454db767de2424f904c7b0e7398f9de legacy-trunk +63746 4d3e95373d9e240f15d63cb6b5a836b4a469fa5d okkoto-sizeof +63747 434f1d5acfe4ce85ec3d8fc3c27e0dd40d63c248 okkoto-sizeof +63748 84946f4553f1399ff5a7bf588032ca65244e3533 okkoto-sizeof +63749 493b32c7d1212277ccf90d1357d2eeb0c41f7d87 okkoto-sizeof +63753 4ee29ffd2856865a54a1e54f2e8af13ecd08196d py3k +63754 77f8ae8fc70b4a09b55bc9c35778d00700f9bdc6 legacy-trunk +63755 67f4b7767a0ab11aad3a6696965415799c131bb7 legacy-trunk +63756 b97dd588924699fb3b5e21db548bcd9390f4f519 py3k +63757 93fe913fae5547a19c213f602c72bf33977a4702 legacy-trunk +63758 09065b010c9508a779c0c3f10a01e8d3cc1a3f3c legacy-trunk +63760 7ae79e96fc42f8f3efa09a80dc86ad255d95acfe legacy-trunk +63761 125247ece56252a681f5d25b12cb3635c039b7bd okkoto-sizeof +63762 a1cb54309b4d4f4360a8da2b15094d059df9efe8 py3k +63763 dcd6bfb0db439c9d167a7aa4242d6eb5e180d051 okkoto-sizeof +63764 23b98f7ef45476787b13210dfa8e8b8dea02c89b okkoto-sizeof +63765 79f3127f1d7270deb061084ed7cf8d2895a7ae45 okkoto-sizeof +63766 072bfbb6548485e43ab3fb389a80c038e0134146 okkoto-sizeof +63767 156746a63a5c8f3327c8becc78ff252537e43cf3 legacy-trunk +63768 7652936fad39f8b7e0f6bed33ee02e473dfc53a1 py3k +63775 5e23b0fcc78ee6a43dc7e327ef3da38e918ea6ca legacy-trunk +63776 29c9536c04ad48769ed9736ba277a4274b606bfc legacy-trunk +63777 b6cbec49975622d69727bc39e4551a773c55b333 py3k +63779 b14c4b5bab08d36ffb9252960fad30f0cd45114d py3k +63781 00154567d5935b284cac25732be8988e0373217a legacy-trunk +63782 ef51fcda348bf923dd982ea72bb23667c0601223 legacy-trunk +63783 63b4745561c3436ef5d7203abdd36f9c59ffc863 okkoto-sizeof +63784 9e6e6b817f3202e30dbcc88495afa665fe31044b legacy-trunk +63785 fb2d9b0b447032a1f7daf381f5efd929979e0d4c okkoto-sizeof +63787 e81d02d096974f1305e5241421398209d701a869 legacy-trunk +63788 e2c5ae30cffeacd48a0efd561d3d2167511e0667 legacy-trunk +63791 c595da055fd092212faa6cd563811e6ce35e6702 legacy-trunk +63792 c90cdd8359606e43717ba0d98018f0b1837db393 legacy-trunk +63793 39869803bfaeedd06043ce47384956f80395091a py3k +63795 aea3c5543d43f2b9d51c37856783bdcd29b4e950 py3k +63796 366a435511dd5d4ac4059422d0248ed499a08d35 py3k +63798 1d29bfa273681b942ad88ec812e5a2f44cf58405 py3k +63799 922e5a24cc82e9efda48867832966fe7ee7059ea legacy-trunk +63800 2391da6c42ef08a16c71cd6a6b8dc12c64369d46 legacy-trunk +63801 263fd6fbacac5845e9462441311db1c02b83bbb7 py3k +63802 882aa14665e47f1fd8807782d0644918a5039552 legacy-trunk +63803 019d3b110a6eee9a4a3d665649455231fa9f6e2e py3k +63804 cf5f2731fc560718c1f391bb3b9f1b23c85bc203 py3k +63805 1e1df892095a7141541045a46a66e60b65db8ad8 legacy-trunk +63806 ea273c8e3eaa305440edf1e10ed3604ffb6b0c57 legacy-trunk +63807 33865bb583962f2530569a7a43bf5da7397ba006 legacy-trunk +63808 d6639cd9575ff20aeec29d0c8a0dde770635a18b legacy-trunk +63809 6ce4435f15ad4e8edcf9f28765cf2a0800dc4ac7 py3k +63810 0e91690dae2f6396caf4218ce2417cc5e9442d19 py3k +63811 eca882731194cdac41513e76094399c9f08d6a37 py3k +63814 47ef9a806ce97be769a43115425e8487b1069766 legacy-trunk +63815 0da27fdf019205748fc66807c7e6b0eb9520802b py3k +63816 c41c395458eb028c1f844972b08f84149a870924 py3k +63817 bba29f462bcc6904973bded17c80ecf8d4addb3c legacy-trunk +63818 105ad61325ac1c22a0c5088142963db98287af9b legacy-trunk +63819 21510cc0c2e42b7bf0b577f0c28f3d5ccaefcaf9 legacy-trunk +63823 0b27ce3c6b21c9caf78f74654e1d71b85a957e0d legacy-trunk +63824 3dcd70004696fdf87330411905d8c0b1b0b690e2 legacy-trunk +63825 a2e72ecdbe02be87e0887f4707934e98d93bc079 py3k +63826 c04aa4aabe17ebd95c8c8de371226efa5b191429 py3k +63827 2e8769d5a786b9544c2fb9486d2d0bd1ea9b5f21 legacy-trunk +63828 ff6cc9d4ffd35ae51ac1f96a03d43a6df1a56032 legacy-trunk +63829 03afe6985e5df780206b190588c64446e4e2090c legacy-trunk +63829 82a47d78d278b97635b513ebb89a8af51fbea348 py3k +63830 af3685fa9ca914825652a4e5bdfd68dab7577d85 legacy-trunk +63831 51a8653128e3ad5f39d5663eadd1569a2bf3d594 legacy-trunk +63837 bee271e76a3e5311b712ae8d17d22cedfe3e22a1 benjaminp-testing +63838 075c6bd20f07804db6ff9fe8e3ca42d84f94863f release25-maint +63839 0156c336e6b3d51eabf6ba552663fce759dd5547 legacy-trunk +63843 1bdf07409403b4b55782871e6da1aaae6d362b62 py3k +63844 2f5ede00fa9ee17aaf44ca11d4f1542f181bd312 py3k +63845 c4e2ef09a2f04b297414c8a6cf34216cf60236cd py3k +63846 1062b7dec95b7a67a0edc989fb1d964ec261c6e1 legacy-trunk +63847 d2362f99a40368c897b533426d202c9b8880c0e0 py3k +63848 622cabbaf2bce997f59bdcaf1ae32edb8dc019c1 legacy-trunk +63849 2a63ab3595a19e2931d3b4d9b82145dfb0ea8f31 legacy-trunk +63850 ecf2ed095881557e6b28a794b09e03d5437df179 py3k +63851 b13044d554afdb312081de1c488a0c9e324808db py3k +63853 83a10002fedbda849416032948d3b55a60875159 tlee-ast-optimize +63854 653026414376c83a6cd8e8368d10557912e04524 tlee-ast-optimize +63856 88bd07c0a847d0341174e25e8e6846a0bf24a736 legacy-trunk +63857 bea3c1f52e05b8874eb020113b37dca9a877c2b8 tlee-ast-optimize +63858 e8797e6e07a7405ec5053858640f1cfe3edd8eb2 legacy-trunk +63859 a65f095b27f3cc40856c5176a5415bbf90bbe612 legacy-trunk +63860 3702729a247073a05288085b5469d99345530f44 legacy-trunk +63861 fcf9d95ef50d78b331f4c863a141223bfdae7c22 legacy-trunk +63862 cfb5491001d02ae4b815f3a4abd379ff52ea3cee py3k +63863 e7f0fd8358f5aef7417983dab305fd1ca9cbc4eb legacy-trunk +63864 4dedef4c0dfd290925905132d666c0cb515d4173 py3k +63865 c0fe54a028e36592013affce84d5fdeb53d5a557 legacy-trunk +63866 31476db99ac31ff2a842c8d05a989fdedc76ad47 py3k +63867 06d7856ca9f46a8feb94a2ca11972c23844bd223 py3k +63869 823be4a275e2b99e12e182cfaab2d94892661ed3 py3k +63871 c0d616f0ad8639d2c609f888f7c6ff09cbc35e0f legacy-trunk +63872 31d2ff8696bdc8ec20c937f422e18e8c9ffd064b py3k +63873 0bf08de339a0d2103af2149b0a34617c2896afac legacy-trunk +63874 f150177ff1ff794d29dd3cc4641102ea5d6d945b py3k +63876 ebbf895056ea8acf11e57c78c956a74500d36901 py3k +63879 b6dd49ee035b5d3d6a8f8c040c814e0abd5c5f1d legacy-trunk +63881 6404446e5aa36b210b78fab49f85f7ce6b222924 release25-maint +63882 7eaaad09b6cdd4b7d986bfb9ef258d765aef6923 legacy-trunk +63883 7d66110464049b102a0ee9f9633e4ba809424826 release25-maint +63887 100e32509b5776536ca6dcabfb2264d04421cf57 legacy-trunk +63888 0580531c37555ade831ef7126a874e0aa7022bc9 legacy-trunk +63889 5bc7da6503b05eb776e1614a39d62b98d961c19a py3k +63890 79373e070d486009efad92d1185c6ce45aa691ad py3k +63891 bb2c4bdc3c683b48fa9e95bd8283fd94048c24bd py3k +63892 1f2f1577ae7819cdb04f411b93af26bf58ab5e58 py3k +63893 b6b534b828b339bbd6ef7ba0225fc8ebb9112c03 py3k +63894 65a60608ab5a59b028493cf75884e195e45ab9e0 tlee-ast-optimize +63895 f9ebacace35d3cb57c69eafc5e047cea1b9ad99f py3k +63896 e0ca0218ff33c024b51c214b5016e2c9c9402960 py3k +63897 4440247b8a4481dfe6e4f3f00510448f3f1d0e49 legacy-trunk +63898 77088d41c7901fcd0a01b442595a6f1dca117fa8 legacy-trunk +63899 ed471a8009a63191f4dca9b357d81bdd343c8619 legacy-trunk +63910 47ff24bc61165d2f3267819432b1590469198b6c legacy-trunk +63911 c23e6d5300a0a24c4a5111a2454888aa51312a84 py3k +63912 399919e61d238c2220c3cff8f00331e2c130d63c tlee-ast-optimize +63913 f73e6f6d9ba697ca927e3dcb349db8fb2880a737 tlee-ast-optimize +63914 5353b550c9692ce887d260ada9d00455c9cd5bdc legacy-trunk +63915 a76e49b219a2ca2c754e55475966295e1de66648 py3k +63916 86ed979de8987fb0dc318d2e097ee469104ca3ce release25-maint +63917 3258bbfc456e674c1a4884a0408dcd79a7052f81 py3k +63918 e4a18643744042b631583cee886a182f4ca77185 py3k +63929 ef0cccde8c245cb556f421f320f9a68cbbbf42c7 legacy-trunk +63930 572d81ecf00d60e3d6fd9e5d28f4a1dff90174b0 okkoto-sizeof +63931 f82116600c0f181bcb539fb85646946e89036d7b okkoto-sizeof +63932 2a1c6978dc57610e05f76b9f51f4725f5d2c140d legacy-trunk +63933 21beb0d5e3299524b1a49f2d9687573a96bef9a3 py3k +63934 d57aa752a40118277f60a1d396527a9b21882e20 py3k +63935 d0f783ba7669a30c11bae1f135aa80abbece30d8 py3k +63936 a65619ad59f28738bc5fc6987140a14a0a771ed4 py3k +63937 8fcc9ec1882463abfe19ac91bdebbb940dc855b1 py3k +63940 58f4b60773fe607cbec8cfb755be484c7532ad41 py3k +63942 8ad4ebdbd373aa73934282c52039e46db1106352 legacy-trunk +63943 10fb2dec3665b4b5873361c4eec50c210f151f54 legacy-trunk +63945 b0d4799b0db844e7d71a48d6553e8e943f4709dc legacy-trunk +63947 8480f54fcd6df4c324a2fd4eb1eb0422191edbe1 py3k +63948 71bed208fe504242df739834a5fc743b77da5666 legacy-trunk +63950 e95c15bb99502b7c1784e8f6b25bbbf0a2380daf py3k +63955 c34e34057714a011ab978776078b7f6a1ff5886f legacy-trunk +63956 454c7b0b68a87bc9781b31a59a074dca28ee5e2a tlee-ast-optimize +63957 f04b059e6c9821155fdc67589384448a9ea58f2b tlee-ast-optimize +63961 7352543cba03c431ea7d1652db0bb0252e303e0f legacy-trunk +63962 bbce18d00d87525acaf7b7423a1058da80022022 legacy-trunk +63963 1d0a8cac15ef04e756c6e7fb248d333d9238609c legacy-trunk +63964 8e0bc1fc095e50fc4672f94676e22a289e0850c4 py3k +63965 ad13cb9e94f1b74f9da0447fbc6fff7e894796fc legacy-trunk +63966 fd6f306c04e00af2a83c4a1282b7ad19d853ffc9 py3k +63967 2a496f1eb9f164f858c26bdc5773cb5ddb485243 legacy-trunk +63968 0d7ccb50007ce2c20f837a4dab9022767256c07f py3k +63970 b55309ef54c77387fe3df7f9fc52fd5b6016caa8 legacy-trunk +63971 945da1726cf1a08df2ae4ef8416debff9392ccb3 legacy-trunk +63972 9e271cb25e59f89f296fd7122cc7b4139cdaa2a2 legacy-trunk +63973 f7453b0b339e05e670b57a3e14769a6105e96a03 py3k +63975 b382beb7be36f2526ea4f724e408fd7eb06a34d9 legacy-trunk +63976 7880a42771582bce5f7511e66f4856ccafce6430 legacy-trunk +63977 4f5e6aaf5a6a80a65390955ebe4dbb89f11826db legacy-trunk +63978 7a1d4e8233f8903128384c5712746594d7d966c5 py3k +63979 3255f1f160adedc1041e9ebae4df43504849622d py3k +63980 130ce86d61b6792e82a10e32fa47ddfe86ab24c6 py3k +63981 ebbf011550cd6a944f903c87a92c0e3692cce17b py3k +63982 af680fd3ffdc7634881ca1ec1348985530e73a2e legacy-trunk +63983 9ea104f1e5cd263c5610bd29c27c8499cf3f5cc7 py3k +63985 caa90cf6be9a3d57d49f9f7415d1ada9cdbdd57a py3k +63986 2284fa89ab08d557710f4715085f81255072f590 py3k +63988 2210f42e7c898b3da2300e4cb96605a85094d86d legacy-trunk +63989 24954eb80b9b617b3425b623be5552ca0a229470 legacy-trunk +63991 f088508f6d99daef2ec271ba07c7ce42ab308c6a legacy-trunk +63994 a0193b08f0eb8f756fbae77d6c1d8977a752e413 py3k +63997 c9a5f2eb720cc55b5494a2d0bb92d00cdc978700 legacy-trunk +63998 c89434cb914d8cc97410047ece0a92fff39ee95e legacy-trunk +64002 3aebac7f27252e443770edd734f5f38a301fde03 legacy-trunk +64003 bf143beb08e8e621a52d1adc9ab9bdc88895468b legacy-trunk +64012 9fda090c045f6e3144a23d33a1cacba3ce8d2dc6 legacy-trunk +64014 ebf6f639e11785db45fab0cf9d79eb5722e33bed legacy-trunk +64015 9bece57cdce31b80912dcf64e596de72c8ae9a9d legacy-trunk +64016 b32d7b83298a98e40b31772fd0b14754ef366598 legacy-trunk +64018 7201c0193aded83bdfc7cf683d62583e55f3bc32 legacy-trunk +64019 40f2d5a4fadcc33be209022b081b40a08b2297da legacy-trunk +64020 677564a2707aac71bb421adbf20e99217473d06f py3k +64021 5f65c833dc8706a2d5ddaeaee6dabe35698eea01 legacy-trunk +64022 4f70a9de286519607e2cc15f0f44fb2b3c0edaf8 legacy-trunk +64023 7d3613dc3f1ccde50cfa66eb838134dd9084ef48 py3k +64028 78d3d359555ea5baf5731c99d891f0cbe96bc19f legacy-trunk +64031 f3df51b60dc2623b55656bccdf61e9d8f875dfc5 legacy-trunk +64032 22cfceb3338e68af849212d1898717b396d017b6 py3k +64033 a7b1622274b3752df0d6bad4b6c0919c10dd69f4 py3k +64034 5d2742e36886f01de032a5e35253546fa5fcf30b tlee-ast-optimize +64035 1ffe6ab84a1b8edc248939fc6d11dcb8ff6e3c43 tlee-ast-optimize +64036 1c03090b2a0a2fbe614c8e342a68ddaf59d89f09 legacy-trunk +64037 24df3434ccf7bc2845ee7d2c6ce3253de1159aca legacy-trunk +64038 c8e2959e8b0f192a4b3218bff9a631b6b7d84ba6 tlee-ast-optimize +64040 31aee67019a2ad4b58c09b28306436bdb53331be legacy-trunk +64041 026513be38daa77bd0c8824f9997a5918d2173ca py3k +64044 d56450db60a23f3434d6bd02074e1bf35bc7064a legacy-trunk +64045 53253f36014e001f1cf13cac19eab7da5bc02e22 legacy-trunk +64046 94e3630daca730fc85f48f5714369ec4dd27dbd8 py3k +64047 246a802637adf7ed8c60b3079aaefc6792b97f4b legacy-trunk +64048 52294af4b663cada8e1fd98879edc49199546c74 legacy-trunk +64049 7acb7e7a5f28090504d9600b2aedeeb60f4b5895 py3k +64050 6428c4f1ae097a425c1bce4efc32ee932d30700e legacy-trunk +64051 d4cd7223af3bf29c3ca7cd5c769a7319d41f1efa legacy-trunk +64052 771f7a804874fd7da0b3fcef895c2f02532ab13f legacy-trunk +64053 02059268c825fa360f1235a2186699398ad107cc tlee-ast-optimize +64054 6cfa297c65550c9c2f422630583c2cd7c9d95873 legacy-trunk +64055 10577e25f78f6c2a05a3234c263b7faad7849c52 legacy-trunk +64056 2d5f1d956ef6bcf42cb7ea5750adf97d9187b60e tlee-ast-optimize +64057 df9b337ba3112489d25f3fad922b7b405dab1bee legacy-trunk +64058 3939ff89834cf60c3f2e50328d6e03708046afbb legacy-trunk +64059 33492c241dab5ca812c90ff4bce6c5c7d5d5c7a3 py3k +64060 139ecdbf4f196a2e73be60e3a8d79c2b3ac656de py3k +64061 c1aeb6c94af10fb7a81192485c40d8bb01b32879 py3k +64062 53c60c7cccd9834ba91c74cb482649bcd444ebda legacy-trunk +64063 492f8e1305cf62e0612dcd53259b6c558981d2b0 legacy-trunk +64064 ed572d260fa7172b3164917b013e69680d6275a0 legacy-trunk +64065 89587ea18ed7e1874f11ba3329ceeb657bb235b4 legacy-trunk +64066 296ab1038b7f78802eb974119d8c52866cb747a1 legacy-trunk +64067 f4989516b4d6a286714f0d6d2fcc08eca4532745 legacy-trunk +64068 dc9f4d6cd3f172683ee191c289374cc4c55bd090 legacy-trunk +64069 cd5d25dd613112f7bc95c2daacd2e4080d96c6d0 legacy-trunk +64070 813b87b16dc50902f378b8d17c6bd5ce4c569cbb legacy-trunk +64071 c00576e202dadcfdf13a449dd339427e695aa637 legacy-trunk +64072 75212b408d7baba2c2c2f1ddc455e9c4a1ead2fc tlee-ast-optimize +64073 d5cc3c5cc188ec329e5130c3a24b5b349b1dc33e py3k +64074 dfc38e5af12d265205f6bfced9ac5da1bd02bdbf tlee-ast-optimize +64075 4084a84e4d3b74003ad8be963682568102dafab1 py3k +64076 ee73a6b27c3aa4a6bf35e1a9bfb0e80ac431e33a py3k +64077 0367a93788dbaa12fcfcc9b8193c1ded1867ed99 py3k +64078 930d9308b32aa565c8fccf19650fb43bf335a979 tlee-ast-optimize +64079 09eb8d62626a0263499ecc36c7f1e13c62aa8ad3 py3k +64080 bbe2077a401bc49b368231b820664e39c7c32177 legacy-trunk +64081 7d824fd131ad99339baee59733f2821e68e6d668 py3k +64082 26a7283f7f179c4f147b573dc34247f1b288fc77 py3k +64083 98827a21e3529eb4576bb82614ac718dd2cf7b08 py3k +64084 91eb24204e08a6c0ece91bf1ab8f4cb0a5b317a0 py3k +64085 2925b568aacca608ff9797f6c363d9d498f1f2fc py3k +64086 acda43252710017ba78f1552774c11f9f2c83eb2 legacy-trunk +64087 2eae31a3ef89300abb12cdb0a685e08893dfbcbb py3k +64088 bd584f121c4b50224502fc8e63d954c020962e04 py3k +64089 ffc6a2ef76e8ad724c15446fd74128908238d237 legacy-trunk +64090 6dde391be97d88b7c1a3cd3ee582531811da952b legacy-trunk +64091 f529bf2df4368ca88fc2cc92aa6897072d7b72a5 py3k +64092 afd3b8eee2fb9883a1cefa79913c1a46df64c075 py3k +64093 e7a9eab363adaa572b75117179709e1e77e7a631 legacy-trunk +64094 8248ccfeb53429bd6229bfd67e9716188f20278d py3k +64095 ec827f6e4cc6b668e8094c7494e43cd09aba61ef legacy-trunk +64096 0ca2418c770257f5dc7008cd976818c20fdf92f5 py3k +64097 271845f323be4332fd71f71ab821c3e43b608e61 legacy-trunk +64098 013be6320b8286e488b031d3c99f2bb691f8f670 legacy-trunk +64100 1eac8ff01d7b0607edcd23d04e36e5707de303cb legacy-trunk +64101 7d70b59eeaf2dd90d46dfcbb9ad2ed2394a405f0 legacy-trunk +64102 da307beeebb920204b4c70348615f46b8b868f0c legacy-trunk +64103 2a7b6e99cc54ceeb48ce9c7cf37546adb913fead py3k +64104 4511ecd256343c6b240282c3cb8503bd2adbf9ce legacy-trunk +64105 acddb00b1de5f04513ddbf6f0fd156dda23d0b39 legacy-trunk +64106 e81deccb17c6b6672f6709d8bba32e8600d85550 py3k +64107 94f64f11fdd0098e4ad5a3d6f7a006f2e5db00b9 py3k +64108 2511431519a221bc1864d80b18419a120bcdfc9f py3k +64109 88a42db3777c23b947cefbca1234e826dccea801 py3k +64110 b82e0545d11154a9ec208151126192b4ab6ed627 py3k +64111 b833a40098c00f799766686e555ae30e24bea58c py3k +64112 b0ef00187a7ec167b81518a0b0ae3e96ca7f6ecd py3k +64113 2543c4c795433a6314d0219e2c4ffbfe06aad53f legacy-trunk +64114 1c964ed35ef9fb279b6cc2dca39ae0eef7cc1255 legacy-trunk +64115 8fe47b2c8bfe37a407dcd32fc2f2f78c3f067688 legacy-trunk +64116 cb8494ce1337c83fb43658da08101ffa2ae4df83 legacy-trunk +64117 0f5564fd040a94a3ee9981e0c184d0a11a234f75 legacy-trunk +64118 245dca26712f763122625b394210ebcbf9694483 legacy-trunk +64119 517e1417f7e2cd9e99a0e836102890d9d49982e8 legacy-trunk +64120 cef9f27a4cc33a1ff85f8721e28e548408038e45 legacy-trunk +64121 212a1fee6bf93f8b74f81dd3567bf964e627ea20 py3k +64122 5c6cdfcd6eae49efa5c7a152bf8205f0faa7fc53 py3k +64123 57c9abab4832c8b624e7cbcc8fcfe766792c4d3a legacy-trunk +64124 4dd10037088c282d176b48166d8d888b7c17b826 py3k +64125 c349f9fbc70444a7b385bbe49bc27e09dbce46a1 legacy-trunk +64126 e2eb70235392fb0dbc143ef4c3aee824cd185f1f py3k +64127 b772bee3a10ef0c0522f157301a81cd0c81d9b02 py3k +64128 8dc4312a2f757850a43fe5ff98d99d8784a9de7b legacy-trunk +64129 9121c5cc4f05410ffd20b825e5f6b22b3083ee72 legacy-trunk +64130 72b4946c443ae45263dfe9a35be1f3cbbeac0712 legacy-trunk +64131 e6bea72e943703eeb86159ace710274c82eca531 legacy-trunk +64132 e93598bd7f4289296d024316bc2c6e2cd2c7d9f1 legacy-trunk +64133 696344ef8bc048815a0dfd3f2406bd0edc4aeb1a legacy-trunk +64134 6dd3eb41170a58dab579d1021963362e38cb0977 py3k +64135 2820109c8d5528f7d37fcbbc46ecb381cd418a6b legacy-trunk +64136 cc72f41ff0141a47aa6cc8cd374c1880cc1734ee py3k +64137 177f1aae3bb4491c026e3fdce7f41f866bd8551c py3k +64138 da47e7e135ae9f31683a4a2b36540bd67fb66491 py3k +64139 6f3c1357a7fbde7fa2c6c745095334633d9679e9 legacy-trunk +64142 673532aa378b1f8fea630eaad3ba15adbd6a218d legacy-trunk +64143 445cd6eba331e9d56be80eee520dae72f2e6f1b5 legacy-trunk +64144 045f83a1b8641c24f6f44ff6925ab5f2a17d6435 py3k +64145 d3e2a8e7bf459122f213d31d3e38bf3ba47ae9a1 py3k +64146 32fef631f78934c06b9da10ca4fd85519a8d1835 legacy-trunk +64147 7a5bb553da2b172bb3ace0d4e150bf716eaf0674 legacy-trunk +64148 4c6b8b939718197e24d8fbdebae939802f75ea49 py3k +64149 6a7eb0b70198099a83c80febf2d184929fb9f00e py3k +64150 b45a95390620ae670639dad76d37fe8d453cbd33 legacy-trunk +64151 f751dab713024d94eacbd2e6a6b0c55160224fb8 py3k +64152 afdd49c47599d8baf56fb8571ac8ad6c315b4483 py3k +64153 8b0e2c96ce80e05cce77e319b92d027cfb19e395 py3k +64154 1bfea956d0d7099ad9b593ab9181d5ec820304a7 py3k +64155 bfb8274e3939a949b4c0a379977c1bf8af5979d0 py3k +64156 7b3a027ab785b8450a31dfecbabf23d453cdec4a py3k +64157 d15d8680a00a60cd19db8e45a039e1ec0f41b14a py3k +64158 f52813f43189d23c084a063d7eb2ab4c9b286ac7 py3k +64159 a021ff11718b6a95a8e1f17969ac577383ff776b py3k +64160 38d176ebb2fab963fb3eb5d6ff1035318e599570 py3k +64161 18eaa1d5f39429818e84ee8feec2fe98e1f260aa py3k +64162 5af15089a100648b66f1d641b26eab9bfbce251a py3k +64163 80975e61f8c8cde5b5299ab9a5dddce25c5d58f1 py3k +64164 f31e32a2013cf40a498b71af4231797fbd5e0760 py3k +64165 f6aea808b35799933de2f025d5489c37aaba14d3 legacy-trunk +64166 5258d4d7de77b49865e053d775f1848fb046c01b py3k +64167 5f4a51f639f1d5fe73a9809dd5169693adc0a76b py3k +64168 91a88200fdf0dd89348388b35fdb521d1b249652 py3k +64169 44019e37ac925e55e4899bf2351824574f1353b7 legacy-trunk +64171 650b3f6845f931e8bc31e4de870b8c1dea3bf897 py3k +64176 5a9cff7fd08f5b7917f70760ebe0f375d1b98712 py3k +64177 5870ebe25dd091a5bd58bb51ad7f38eaed14bf16 py3k +64179 3a3e231b866fbe2afdf3901d07f1678e0415f35e py3k +64180 0ae50aa7d97c5277e7bf8ef85d9bbc8a5aea9a78 py3k +64184 b3769b6bae0f0ad7873b606f1ac634bf53fc53ec py3k +64185 3d6869e2c92ac9969ace8a68d2d398c23db75fdc legacy-trunk +64189 e86f3858df20ca93d6eac04b033c957ea7511e9e legacy-trunk +64190 503fb3c5e0814c105f2e598e1a716174c8a10568 py3k +64191 3017e794bbb9ac35d4a8efce78d19118faed2e1c legacy-trunk +64194 4141493dd3a0556abb2370bf0ccb6f6c59903fb1 legacy-trunk +64195 41484d18390cfc3062d91230a0edd2dd58c00d2d legacy-trunk +64196 f4ff58e346ee493eba42ce360d842584ab2da4ac legacy-trunk +64197 97cd95367d60ffb5d741688e826c05e9d5064679 legacy-trunk +64202 e24f26c3cce4648e7671187b838b728c181d115f legacy-trunk +64203 d407f958c1374ec9d64f6411fbadd24aa30d1b6a py3k +64204 109e9748c7f4351bf6f2ad3b33ec2ed122d25dfd py3k +64205 fcdf814c9b1128a2193b947d4cf2ab6fad5c9bcb py3k +64206 6585fd1d9ad7123d6caa8c744a1eccc4fb6f3404 legacy-trunk +64207 4b8682ea37c1f4248dd6c69f9fe58856e617b88c py3k +64208 fd7eb27410121c95d8028e567aed17925d72fd21 py3k +64209 5726e9157bf02fb5d87dd37f1b4647bc93fc67c7 py3k +64210 92b79b6d1a3b9bbd0e18a8afe5adad498b3e026a py3k +64212 db99f87527106cb73be6a7d16b6f141836e26496 legacy-trunk +64213 71cb7ea4f110367524fb3b1ab8dd3e138f0cfa81 py3k +64214 fcfe10f3dc146cf505acefbfbc9bdf86e7c83d71 legacy-trunk +64215 b1f4ea4eb5556399341cd6ffee5d46a473928404 py3k +64216 9c79ee49a2d952b8eaff9836f02cf9ef1e708615 py3k +64217 31988b40153579546a5e213e777d958bd0930067 py3k +64218 13071add8f48ae58ca45bbf38b770d376fbac170 py3k +64219 e30af3264a0f573ac10289c78ec902e26e15f21f legacy-trunk +64220 5ebcdeb0cb26c67a851d843135fda16a5662bd38 legacy-trunk +64221 1464345a19683b74b5afdfaa010e11a609f2aaa3 legacy-trunk +64222 8f61ae01130f88939da53c40266e271e6e03f6ca py3k +64223 d5aa25bf93603eb4e1a8282fa558569f677911f2 legacy-trunk +64224 38d0467f5ec769d4d4ccc8589f737ebf449c541c legacy-trunk +64225 7a8ee05c697f50f122dc10b1144f5b293de727d5 py3k +64226 a35da94e05fc5a58eea7e6c28850531344abaeee legacy-trunk +64227 8c6068f14ee8cef1013e0e0cbc14d5bfb18e0203 py3k +64228 b5e02775fffcb3fc4b99f5181808f8c7b134ca26 py3k +64229 6434dd704d60ea60800383aeb640b4e12fe880d7 legacy-trunk +64230 2dfaa0683be8b663d060384972b02d03dc16f387 legacy-trunk +64231 4da8b7a8cf2e94bbdc565e90258ffc01c9f2ded2 py3k +64232 a10688adcdd62536fbd95ec3ace9d91d883560b8 tlee-ast-optimize +64233 168c9e96772c57972bfa79bfb88cd46e2aaace11 legacy-trunk +64234 7fd9e9cbd72153ad8d5edf5859beb24984c7a2d3 py3k +64235 a333c8770e32132739ddb504fc6256c8f7f5c409 legacy-trunk +64239 faa7ca52427188422ed117ad736871cbc2d0a775 legacy-trunk +64240 cdbf12912d4b82a448e7f867f7362ba70138216d py3k +64243 f52549fb74a2651911a6d89b12191dfeba8e82a5 legacy-trunk +64244 b905cb2793cc9aaf3ad5db453433264fd847b72e legacy-trunk +64245 bb817a5d68b7c3083d20f74964a70abf689d5bc9 py3k +64246 a450da2400896d2433f03efccc5884d2b7773036 legacy-trunk +64247 87147db82eb1e332263f3a94ecf5ccf49241657d py3k +64248 af8873df03225ec10fcda64f9d88ecec1a261d30 legacy-trunk +64249 9b8ff73d018859376c90f652b6fd0bfbc667db0d py3k +64250 d01165fae98e9004e3f8359b93a667d148ac7e0a legacy-trunk +64251 46e5846150d5e95f8a2a1204bfede98d42bb1fbf py3k +64252 6d1dc761ab4e088989d7544b4e1d2b79bdf04de9 py3k +64253 1069578379a012cd1c9f8c24a539f20c947e3c80 legacy-trunk +64254 446d5c29908aa9852e834b3f9f294a661ee8bfee legacy-trunk +64255 2f16cea224f5cc4852419223cdf0db674ccde1b4 py3k +64256 dff762adf9d61122a4eb665c0a3aed4a61eb14d2 py3k +64257 f36f092dbe97846c226e109836e27c5bc3ec1c5e legacy-trunk +64258 aba58f28e166b3f7ae7695b855ee3ef428774b19 py3k +64259 f2e2d5b964de38c1d4a29910857ec8f265d0c73e py3k +64260 37cf5a1e639e90efccddc3f7b1d6acae295c540b legacy-trunk +64261 57aa873d96fca8b9204074fc8f44351c2a3a2bec py3k +64262 095b85d7a0141e3f7efad9156dbff296bd188344 legacy-trunk +64263 e8df9e4873b478013fe2997d5859ecd5dfd62de3 py3k +64264 10a8ce8db6bfb4f7c61102c31c5f02c7cc28f55f py3k +64265 6f0fe066a84bb504e4db471ebf5dd5d9fc5eea2a legacy-trunk +64266 61e5286d937c8aced691aa1e36f23360640e983a py3k +64267 aa2503188bf34d8928d711595af441bd765af99c legacy-trunk +64268 c8f8a578c01b98addca20dc6f16dd39511b7d26c tlee-ast-optimize +64269 e9c935cd7888aebf90e0579e24781206fb62c02c legacy-trunk +64270 189867aabafa377883ffb58503f78b2359bf2d41 legacy-trunk +64271 b5bf16790e3c69d1f55d4adda98d491f12c01373 legacy-trunk +64272 516c19d8591a9b46035d85255a132c0b3f941023 legacy-trunk +64273 96bff7e137fbd1230d3d58446f2826d7758587c0 py3k +64274 4b1e01505d4d37e99f17ea2ec4410c0e671f8b42 py3k +64278 9ad69127e6aa654a36f77bf48ba6a054af8854a6 legacy-trunk +64280 9155ff78fd064d680f7308f3dfaa79118cea6305 legacy-trunk +64281 7ba7901dad7f8c6b5a0a2cc4f40693c06acf26b5 py3k +64283 25fa3dd021f52abe1a269960c69ed4e36b8c1f4f py3k +64284 b33e8334f82f79e3377a078755a67e94e24739be py3k +64285 5cb50e7a98a2858a9137428012198d518d9e80b5 tlee-ast-optimize +64286 991caad81a2da6f55fc01680e58e87712e547bdb legacy-trunk +64287 4e304aded7a850b4bf671ff86cc07566d0ac8804 py3k +64288 613daf7f8e486b471164112a8be7bb0657bf655f tlee-ast-optimize +64291 14350e75d02a4be2db2ed1fe7cf4810a453aa2ce tlee-ast-optimize +64292 386a72984af5dcf35d0b04230b9bc9b1e0f36434 tlee-ast-optimize +64293 f77f8e79971494fbffadaf4d77ca0865ecd45c55 tlee-ast-optimize +64294 26e9c871d23fa1280d133ea993e6a3f0923f259b tlee-ast-optimize +64296 40d601de28dc08176675d12366f61a4afe6b1794 tlee-ast-optimize +64300 6f6fed4f0626b477aedbbf84d80c3dcc773ffe84 release25-maint +64301 a6d7bfcd745691e0a4ddc01b22a9d0963b5280fe legacy-trunk +64302 ee2823e1f23b65f8bd40fe78bfc080ddb9c210b8 py3k +64303 4650eefb5838e9c9604b81bf606797b13bfe1c77 legacy-trunk +64304 38432860b3b468c8676ef14d35840359d0a691fd release25-maint +64309 b8e9cc28022c54f47100284eba40620e1e66b037 legacy-trunk +64310 4ed165940bdd019251db3a88c472526001711e67 release25-maint +64311 5c85d55c4fb2bda495ec3d704c8521118bef853d py3k +64312 566c7137aa8daec54b8bee1fb283955097d9fd7f py3k +64313 2e13ffab199ffbc2c8968bf54920a76dc3774add legacy-trunk +64314 609b09a9feeb41f7f23352ffe98de81d428aeaa6 py3k +64316 84590a64f3a2264336840be90d29fbdd7848f85b py3k +64317 f8a8894da77a4b72765b8fec98c1753c8d94f934 legacy-trunk +64318 a29bf69fb344647c6ff01736f579f82b2f02a427 py3k +64319 302a6d7633784065e231ee8da300ff706182a95c py3k +64320 c07418de3cd3328ec953566fcb1108d7595b586a legacy-trunk +64326 b8c9a35433813b283589f5ae69680cc0cc409e5e legacy-trunk +64328 98d012a8e445f08bc20d18bdd8853f4b3dce7b55 legacy-trunk +64338 8e85c46cf673c267eaff2d31090945a5ef276f95 legacy-trunk +64339 28abc202c771059712e979d229bd886d9da5377c legacy-trunk +64340 0b1c01eec788529fdf26034e6896480701d0043a py3k +64341 03639b09c3760328aa6f11c49014d919de882cf3 py3k +64342 40a75913f04a64b4ff81d04a26b6f7f3d57d1a39 legacy-trunk +64343 f64996760984728397e76b385aba6f418e14bca1 py3k +64344 6f27d52e8d956e323795686afa189fb18b198dd2 py3k +64345 68d87bc06fa370d25c00e98e500ed5e92bbc2519 py3k-urllib +64346 87001189995c1ae08ad63a6150913bf4239ba4f8 py3k-urllib +64348 f6726f32ef70477bf3a38dcc8617bca45419f5b7 py3k +64349 ca074232b879767a281c76d8a21f3c14f0753050 legacy-trunk +64351 e39c810a7eb2779180057cafa9dd9868992e8cb0 py3k +64352 ef883fb4c076dd6f875bc59c8a4ec2ea7134e83b py3k +64353 70d72a75ccf1e6f06d4201d73d39f87cf5f4a799 py3k +64354 5f9435317de1705529299b4db31896e897c7d705 py3k +64355 a0523c7c1c4f7845eb6563e5ec5479dd8560dee0 py3k +64356 a1741617f06f4d54cf1f0c346a5f23c0dc3bc88a legacy-trunk +64357 df5bb0a6594bb7b117996ff34584f750c78e166d py3k +64358 a4b8dbe1b6336f1bcba75073c314ec5612719348 legacy-trunk +64359 187a81ddaf2bdf8cea25d9a16e16645cb6b599d0 py3k +64360 03a9a9d3081edab681f51872697a505246e36e03 legacy-trunk +64361 a408a05d0e251b8b609667d6c9975922e7d7841e legacy-trunk +64362 d52a73d8d20f032b93d7586f8e0bd0d022ec795d py3k +64363 66c8f76cac446d1a43f7c4d1780931131d4f2463 py3k-urllib +64364 ac854cde3135e57ec1f4fc95ae5d744950f3c531 py3k +64365 564c29a0fab1a04fa942d23acc94e4b2bfdfed85 legacy-trunk +64366 0b149fc4018686fa2574f2abdea45b0dcec64894 py3k-urllib +64367 28f567a413f414bcc0e24d0f8e58bbcf741f0ee3 py3k-urllib +64370 ab12e3ad2e665f2e2c5aae9bb3163df65464d1dc legacy-trunk +64371 b4d823483421eb404a7065c928090541ff0d4447 legacy-trunk +64372 a6503ae3e19c1ffcf71e9d5b9283275bfa19c0b0 py3k +64375 6b7ddc0fda9378295f77f7be083cddd621b5902c legacy-trunk +64376 5702ede4227a41bfecc3251be56bfdbe67a4c513 py3k +64377 9540597910b9695c1fc69dff3790dd50c405684a py3k-urllib +64378 4da771588ba3100688d5ea61681794c242d482c1 legacy-trunk +64379 1588e2fa3e7e74b2ba2f1234bc0b97c14038de16 py3k +64384 6afdd6fe5512df4da1504c13b0326b143bb0c379 py3k-urllib +64385 5a416a6417d389ccbe24687855bf97beecb3d041 py3k +64386 744f9c809f303f40715bbf2dadb6ae685934fadb legacy-trunk +64387 0322808c20fee6856307d03f1c28c5c8e1b30bf5 legacy-trunk +64389 69040092b8f83176c993e93281d9d0e7e7021918 py3k +64390 2c1068328b5ba476b17289139986ff269e8fa674 py3k +64391 07f9472601783e12c28c878af8c43084a6de7377 py3k +64392 ea194c9a6c2f9de443a15bf26922294dae3900c7 legacy-trunk +64393 2ddd86e3700c20edcadb28526b37eecbede933e1 py3k +64394 5bd43eb9e520c276279c3f76a81288a91e5a59d0 py3k +64395 a335c4d643b1cfe14197a9ef195c9b2804f608fc py3k +64396 b1ed2b005e3dbeaddf5464c505521c3fa5940c32 py3k +64397 0730224ecf5fee1b07ca83dd8ab0267a1925509d py3k +64398 2f2f32af8c4ee8f6598f632dc83701a20726d10a legacy-trunk +64399 2581ee1f26f9e4b8dd36729adbac71fb1ba06fb4 legacy-trunk +64400 ecff1a1a07b555f85e861876f66f2b5d54e933e1 legacy-trunk +64405 b34bc638b8a7c78b190e3d9f86a56938072310cc py3k +64406 be07f379d87adf0dd64e68c6e69f7d07c5c96dfe legacy-trunk +64407 a4be4b1747711de14e1b9ca547ebdb3cd6be184f legacy-trunk +64408 e107062aa9cd778687f7aa395c81f5b32ae589c3 legacy-trunk +64409 9af0d65bc3b2784606033e0ff75ee2b56364cae2 legacy-trunk +64411 27c78cbfa7c681b8a37b22310d5218ced9e357bd py3k +64412 0aeeb2b48341c77284dd0e2c58e51e41a1b97833 legacy-trunk +64413 db62c448a349e2f15c4c2ccee89691af267859da legacy-trunk +64414 cb871f736be024a75f4ae7935b8a48e64c6c92e9 py3k +64415 2bf4112cd6815c703e365525e9a8ab43897c8962 py3k +64416 b418dd39f798bef8471fc19c8cd00dc2715fde3e legacy-trunk +64417 58f43ace295e5c398197a32d3f0d1c789d12c9bc legacy-trunk +64418 6b4b292c3a2da8dabd76211c7a9d6141e1d074fe py3k +64419 25d6b2d0ee42ee8a7f5a85b3c03c599311245d6f tlee-ast-optimize +64420 07dcf0ea7880f40f91197374fd952d256bd75481 legacy-trunk +64421 c39263e94c33074d4b6fe5ac4def4e04b61df10c legacy-trunk +64422 7b96fae400d6189e9e06525065fa1b7589eef5ee legacy-trunk +64423 1bfd5e712b94ca15edb94367c02a438fcd80860c py3k +64424 edc701d00b62241202d525de7158995666221c71 legacy-trunk +64425 717e8aee4a9d07d7cda9f583f3a7388cecf9dcd2 legacy-trunk +64426 d1a46350b0476c4fcc339c043204d298730f624e legacy-trunk +64427 bfda398c917e5da250a9c609cc688f2dc896afb9 legacy-trunk +64428 a7186fee7596b663f5345c4a4b09656e1e697c4d legacy-trunk +64429 629eedcbb265853528479b490829c1fa09cc98cf legacy-trunk +64431 d8dc6b37fd789ef4f9f8954819cbe75ad65f63ac legacy-trunk +64432 5ebeff80425c5499b4c32acb292e65fcef97596c py3k +64433 4e1cadb7871eece1438a7e66ac091ac276c6e164 py3k +64434 a107bc2d8f3427d9976b694b0c55b70683c251f3 legacy-trunk +64435 b32101c19bf84856320cdd38010f36b7312efbae legacy-trunk +64436 4ffa9bba7c5f00b8cab7d48d1be9a25ca90db84b legacy-trunk +64437 24520e8241072e7401791a5d659fb226c00048d0 legacy-trunk +64438 4267adacdd5278ad97ac585ff614d1e63092f873 legacy-trunk +64439 a067dc0438d532c55236f34a90ecfe5d56fa0047 legacy-trunk +64440 75b6b2737ea719368b7f6a8a68cefb3a72ccf8b7 legacy-trunk +64441 ac6eab2473c5b6f1e3022f442c3acc7466599393 legacy-trunk +64442 16b7c500b753a3c96e6048d3363e89400b486d25 legacy-trunk +64443 9c67d3dce925d94ff5957c3360f0579706950cd4 legacy-trunk +64444 aead0c781cbef6126a11f950ed122919c0d6ff3c py3k +64445 556e4f6ec9a08caceab78d465eae153666a67cc5 legacy-trunk +64446 016166b7b976e33f0bc640a8a472dc31fd4a67d8 legacy-trunk +64447 5e8a7f9d95239321f82e972bc16b66a54828e853 legacy-trunk +64448 96815271963d5cab2ac3c0cb67509dc1151f6152 legacy-trunk +64449 e17b81a95aed2e8a98582350f13415a12fa48f2b py3k +64450 70e1a38c9805b6a6c17a492fccce4e2f72ecf944 legacy-trunk +64451 c57d1e954d93457c3136dabf5f16d4c24f5b3808 py3k +64452 96adf96d861a44d1b29e919af80ff04195a373c4 legacy-trunk +64453 7cdbe01a45764b2e3843b518883f26200e046b7a legacy-trunk +64454 ac158ca686cb519a380122b929a4cafa3e39aae6 tlee-ast-optimize +64455 8b6c2856dbe51037c2fd6ea35c043cab8f12c515 legacy-trunk +64456 eb9fae2fa3f96642ebbf5ac71ca5d726b918b3ba legacy-trunk +64461 65c23663d0bd698132ec79f00b514f234511e888 legacy-trunk +64462 da6893e2004f4ca7091d99c43ccd74dd6854cd58 legacy-trunk +64463 68cf3cbb21d258d8e02216d4cce3c7b8d69d8e0d release25-maint +64464 7b51ea8cc558dbb34b4c40271aff2f02e15db99d legacy-trunk +64466 b11b09c1efef2beb235783f3d67c451e40ea6d63 legacy-trunk +64468 88bd8eaa5152edc579724c9e5390635fc5c306a0 legacy-trunk +64471 a9ad99d0c7224be18ade237ea84cb347345b9cca legacy-trunk +64472 e0f1e1c566d9d675432a16f55183cc3c12114a7e py3k-urllib +64473 f84691f489c38c60837ad05f100a8698b4c44bd6 py3k-urllib +64474 dd907d6a7a85d163c7e121c5ce3d0ff3c7f3dcd2 py3k-urllib +64475 f0027bfdf9bc445256f4794e7acf2909e77535da legacy-trunk +64476 1f671c85df047c5b75026c346472201592d8d2f6 py3k +64477 1dbd7a522a2369f3b5290569e66618a8b48d1d51 py3k +64478 6c04d14994d088013c4b816bc8fec547da5a61be py3k +64479 9676884798830d801674aee5c9c6b74c563ee5c1 py3k +64489 6e06d4a86e3d0328d8d2084003865ba62abbfb7d legacy-trunk +64490 b015693114f6797ac4b0f1b1e2e1f31c633c8a96 legacy-trunk +64491 752e1abaf15a56b5b3fae841d70a952bdcb50d9f legacy-trunk +64492 098173e844d152853c529627af8fa736ad3eb7eb py3k +64495 5d5f7285f5c59b4f51566624be9578aca671b0ee legacy-trunk +64496 c83eef078fd9f0eca88ee5873e9065c1459e1666 legacy-trunk +64497 b1bdcbc97a14c094ab04e82b2169f086c26f1f7e py3k +64498 68fd3ab8484eeb7d0b5f36337278ff6cfeb4a8b5 legacy-trunk +64499 12be44c6a702e8b3b7caac9f77f0c411d8e80491 legacy-trunk +64500 7e747de231b382737f6318f3b2050d3f561f0d63 py3k +64503 22fbddf18d488a1001832e7475a8c57e92d555db py3k +64506 270ff6f4d99f3fd0df92ff7227069f25e2b5144b tlee-ast-optimize +64507 d8afa41c696abbdeb03d2ddcc4771ec6acb0907f py3k +64508 3b6ffcfe2971e1fd399e02e1cbffab6a46f1ee77 legacy-trunk +64509 9574fed9368836a5bff7792f2a7f931e26f80b7c py3k +64511 0af6f0300eaff443d686b2a58f7bbfe4b7de7b8c legacy-trunk +64515 7788e9893b85bb91c773c71d0a353a45d0ed129d py3k +64516 3ada46f2321dc244680b472db0e0b0ab0383bf1b legacy-trunk +64517 3c8d3b98cfd73cd22346baed7f7d5ea12ea1008f legacy-trunk +64518 380aa2d161d39297238008ce4de81a01c0fb9fd3 legacy-trunk +64519 0b52bdc4cd8939991b8a4aae9752a630f0193134 legacy-trunk +64520 64abb61e9d4f7f0473f7b7fa4c8813630fb5c2fc legacy-trunk +64521 57c82cb0faffce9bfd2cd1d89bafe71694342f0b py3k +64522 37a21d097d34d35145e68c65f9657ec20c82b5f2 py3k +64523 e5a51ed9e634270e24e3113a2b3c3164ce6378ab tlee-ast-optimize +64524 d1e864a5c60c8b4f2e078883f387cd7e05435c07 py3k +64525 ffbd4e333e2f9bd0e3f08815baaf60193add7518 tlee-ast-optimize +64526 7de038550523dc2b388f6d45d5427f370dee465d legacy-trunk +64527 bde2ab943593c3a9ac1837e5c4b90ddf302aecb5 legacy-trunk +64532 b26116425b1143600651e7f4836533bfe4faf80e tlee-ast-optimize +64533 7eb3737657d12efc80c002f3aa96eabd266d6359 legacy-trunk +64535 8821b405e0e6cf9e86a49a56a0457ff35ddf429e legacy-trunk +64536 064b0b75bad53b5ba7367d1a92e5ef4d6127b63a py3k +64544 8c929ce0fb41c08651e5abd35e857d8249304a5f legacy-trunk +64545 723c0ff698b7f56f835e4e51f1054e69117ebf37 legacy-trunk +64546 7fbc374c959d2d779f5ce664f35ef4fc0806f7e5 legacy-trunk +64547 58dc367dc1ea00bd3cc8353dc4b2652b1c43999d legacy-trunk +64548 c4b766afac6f646e871a1314d543f661fdad2a3f py3k +64549 dc42efd728eeb822d56342e3633be8c7c53261ac legacy-trunk +64550 edd48b08494da896cbfe58dd30babc84b5366130 legacy-trunk +64551 bfaf142957949e043bd8cfe6c7cdd8e9fdffdcf5 py3k +64552 605ab6f928388af5f1dfaa922c895a49fd079191 py3k +64553 c712bcd3203b4ce9804caefa0178c8f67e0b0c83 py3k +64554 c56072eaacc2618a1339d8ca27800d93314cc843 legacy-trunk +64555 a69bd3ab9f997cdbaa196357cb5f27116c5d3246 legacy-trunk +64556 72434013b030fdc8d05a0e25fa82d51cc0ef255c py3k +64557 43f6bb0eacb2f4083b968bfd4b7b7186c28afa25 legacy-trunk +64558 5b4c8709903d07a5253ee114634644b36fe46461 legacy-trunk +64561 88392021942a6dfdcee86a31864d876eaa2777f8 legacy-trunk +64562 ed5dc13b899ba2d6b545bf8aa1794a85c1287bd3 py3k +64565 1c4bd502de629b290dc871d1fb2b21296a759b85 legacy-trunk +64566 50859ae4aebba4bd62a365c8d9976ff2109f30cf py3k +64567 841ae1767b4c54838be04bf2507ef969d90a447f legacy-trunk +64568 248b8adfcc97a38f5f383e0a0b8ba9e15e38f911 legacy-trunk +64569 903b6e2a304fb0b307cce4c9a5fdf73df69864f6 py3k +64570 b85770459591b88b682b02622f70c3f3955a3c05 legacy-trunk +64571 2c8e3cceac4eb4e0401e4a85d1a8afba632dba38 py3k +64572 afcd68a87eecad2110e1f89858df5799617b4e05 legacy-trunk +64573 bdbb66bc37dce1b3fcacce29d677a584a102b42e py3k +64576 afbd50ad4f348405d6bd35b9827d53372dcac915 py3k +64577 1dd10b04db4741b9fc93d422859b20f4777dfd38 legacy-trunk +64578 8a281bfc058d7f0d1ea8f52d9b6cd12f2c55e6e8 legacy-trunk +64580 0fc7861ece5f6cf0e623ab7567f8fae73aa57d83 legacy-trunk +64581 55ac6c7ceb5983c25f1fa96d6f5c2459f626fae1 py3k +64582 3c49af2d5bf0afe65d0a811043f17ee53f3e666c legacy-trunk +64583 ad9beb41aac10500f76595752d161e1bcd0d71d1 legacy-trunk +64584 e17adfaf4f64c9c4a417ab07a69ecb08594a6b54 py3k +64585 d94fa4cb52e7349a9d090c372b17290af2d1dcd2 legacy-trunk +64586 ef92703748444cce918e1c2363716f1d9f9dc4ba py3k +64587 f5f70f20b678f966f66a41bffd7c009e54217706 py3k +64588 4d2d0a21d4948da9c2c7b1cf27fb4d47f4d45a63 py3k +64590 be55b7c2c8e6925cbbe68f58c15e0e794656fcf0 legacy-trunk +64592 73cbcde75e058c38746eaceffe4092d904459a6f legacy-trunk +64593 297e1218efe509f937bf8186817943dd63116e0f legacy-trunk +64595 e14739c584013693475b618433a2f388b3b9a980 legacy-trunk +64596 25412c6d2776356580f827016578e67f8f22eb45 py3k +64597 82c4681cd9bd07a3ad7ed5c1e61ed43aa32d6867 legacy-trunk +64598 7604515a81985ab70727c3e4afcbe75cf08c8b85 legacy-trunk +64599 a900bb1ded9d9b6e7e96fed5a9055ac9b3aab8ac py3k +64600 b9d2ff5e3dcfc0ae9eade9551676051c4fd0fc70 py3k +64601 8ccb35739a96f20b2ad7660bcd2ee03978236cae legacy-trunk +64602 e29b4ce641f943195f851a814b1b4c6bc6fdab52 py3k +64604 fd79c4d97745ad1ecdfb798e25b82a04bc4e29e8 py3k-urllib +64605 8cfb89b61c2e51b792b1ebf39ff60d2976e282e9 py3k-urllib +64606 b6ad664cae49988272db8fd3a2a974e462b597f1 py3k-urllib +64607 7b2f218953923c90e411e9b366661361d72ccc04 py3k-urllib +64608 739cc9fdefe5d4aeb641708b5e90685ddbaf90d1 py3k-urllib +64609 ad9fb9f1d6d3bdbaf531704451d6eecaaba2efd7 py3k-urllib +64610 416a56eb24f33aadbfcc38c21fb197f48a354224 py3k-urllib +64611 446e3dac0c31bd49fb3667981877e6936c63cef3 tlee-ast-optimize +64612 37c7d17740cca689426357317dceafd83d01f709 tlee-ast-optimize +64615 e271976ac3724ea0b14337867e2ef8da793f13bd py3k +64616 5f7468ac14cd87a5a21232c59c9c117ed40ed162 py3k +64617 913aa274ed77b57d1c31fb097e1e44f73cc8d5ee py3k +64618 acdffb5b43522113dfdb5dd05bc8fbd96d3c9ef4 py3k +64619 eed5317ac837e263d30ea90048f3fbbec7c4ea78 py3k +64620 f92c80095c14c9d91b45c5ddea51349e51419519 py3k +64621 bb65f9b76c1fa51a02dc583dd0517f538f7e1d9f py3k +64622 80109d4044cda4fe91e4c4a67b4901dd1494ae7f legacy-trunk +64623 e10e257cbf615ebb6710edbb60b648ebae32e046 legacy-trunk +64624 7d1530fac1f668417692cc944712d7186c63a72d py3k +64625 e68fe90f15ab00e032186f8590ed0ce4ebbbdd9d legacy-trunk +64626 42309437f1ca25c0161387498d2b3612f241c0db py3k +64627 7e299ab35d95e1998999790dc6d39d8ebb4a22fa py3k +64630 ca1353bfd48a3232301ded8179d0f544caa20a31 legacy-trunk +64631 70357811778627c1a2015153303d6a6ebef073db py3k +64632 d664049ecacad8be1989982b50e1c4f991c8a322 py3k +64633 7dbd6b607706a363baa6d8f10878abe5e46e6519 legacy-trunk +64634 70a4ec4128822accb4754d5750eff72457815c7e py3k +64635 cda556d2392447b990401698afc8aa5ed13696da legacy-trunk +64636 2d4877f7500efac38123d4f8bc4ca25353b91835 py3k +64637 6c3860914292c6be8306aec6366cdc052b2d3786 py3k +64638 a06a0e1132ee02fbad11f824c77252add9fda982 legacy-trunk +64639 60fd0886811c75d596070e6682d2d8ea57c99a97 release25-maint +64640 4a8329535234d75b5d76c4db87820110f3ac66d0 legacy-trunk +64641 e8bee3097d440e53bbf3f5e8960585eed5a4b643 release25-maint +64647 6cd3cbe07035e94fdba883dda47af93d05adf29b legacy-trunk +64649 801754201b11412862b359b0e39b822ab6992fb0 legacy-trunk +64650 2d036b78dfa40bd6125d2d61f8e061c44b491e8c py3k +64654 b7f3d970e44f03170f346cc8adb88645bbc72ff0 tlee-ast-optimize +64655 65af544da121d48515194d2ed8169a4160c95735 legacy-trunk +64656 5d8f47005b73eb0c85970d6ad0b2ac19f86a039c legacy-trunk +64658 f927240def1b73c7ed19db8b9002f256e1383fe1 py3k +64659 b39ceec81c174f81dde12d9c88190e611fa67d9d py3k +64660 e22deaeb6c1b02f217b7442989811daf8eacc232 py3k +64661 adf48f2fadfcbbe9574bb306eee6920059d2a44b py3k +64662 daf9fad7c5519136e2289ca89a371aa480afae76 py3k +64663 832ae513d344450166a7f605ce4572bf2fcb376b legacy-trunk +64664 e4bbb1d3dd145c8c86cfac06516a56e24d08d541 legacy-trunk +64665 309542fd7fe8d3380675bf3cf14a7c11336d1f67 legacy-trunk +64666 81fd8a8baa9a733cb519ca2e811d9a58eb453750 py3k +64670 1899be3122c220ec9fd7bc998188767bd3e0e298 py3k +64671 5f4a8980c1acbf6997c0d7f638ffa40d85c62526 py3k +64672 7e56016a65659e0d2fe0a0a06899c97c25217839 py3k +64673 70e1d2bbbc32fad158d9b32a420134bb257dc112 legacy-trunk +64674 4025f638911fa1961e113db9d08817f19103d6b6 py3k +64676 bd2334120a30e7c471b47543f1769b4bef4f2f6c py3k +64677 6901d5ff0f7ab6a9300dc55efc6571acdf10013f legacy-trunk +64678 fb02fedfe647f2c882f344a677eb7356c7529d3a py3k +64679 1f8be26d098aca6bee6bd1b37a0edfa98f68f9ae py3k +64680 98860cfa19fd38bcfbc802dda428b286b576b14f release25-maint +64681 aa1fbe321acf1f0a2f4e440f9e4994ee0795108c py3k +64682 350a289b0ed45c44e47e8fb9e9a41481c0b92965 py3k +64683 ef8d7487a07773c3f83243555b51315cdd7fbbc6 py3k +64684 a5723a8367e76a18966349d5c98d320a54a0da28 py3k +64685 4224ff77a1ddcfef250e19f6a8b8a124fae27697 legacy-trunk +64686 893d90b7731bd015f061cc87833aff2e9f780643 py3k +64687 7d1e61492c7dfd78b21d41196325f1e192f45630 legacy-trunk +64688 acfad8640e21ff9bce4feb3e35f4ddee2ab381c2 legacy-trunk +64689 e502046668b100c8f696f95a0502f46727889799 legacy-trunk +64690 807d6995bafd3eed2674d9ea008692d333523b98 legacy-trunk +64691 cdaac79a723768d9283013463fb7447679d287cf py3k +64692 2d0c3643223f69268508632237a277324608f4fb py3k +64696 40ecb913399e673134b6674cdfb12f923c40b8ea py3k +64700 b1b3af82add6fad3b2433806b597f006162baf6f py3k +64701 4e6859c6d38c8a2caa936a72de1b223806d5f321 py3k +64702 13c9852de81a3d01a28f92f6223efc8e09a9e269 legacy-trunk +64709 ea7cc18c9ac86f232ccbfa5a91d28a048ac8227a py3k +64716 dc9b3f2892b8b0c49e32b4688bed8b2c5c58ea02 py3k +64717 04817793b9625b24608daa17ab32e913a917e73a py3k +64718 f27206101ff943c2a02eb4b853a44d67dba22fd5 py3k +64719 c93596ec1d3de665d3610c2cba3d184ed53c95dd legacy-trunk +64721 6f132a26b22f77ce44ff1286aff52d35ad6cde86 legacy-trunk +64722 d7526670ff0adeede82d8d32f327f0f81f3a283a legacy-trunk +64727 3b00e9f9d69259f2c532f5dac911c12bcb38a136 tlee-ast-optimize +64728 8f13465022345ddb30fc165499f67ff5ebf80183 py3k +64729 4bf84035cb5f5841eb70978e6b05b43f1188f2f0 legacy-trunk +64735 f772476ad90df8e9276404c9e067b79a393516bf legacy-trunk +64736 2279dd4a2f732b7538789dee4247c14f7893fdd9 legacy-trunk +64737 4721f27ed6c27e8753d3aac60893a03a4909fd14 legacy-trunk +64738 fb279242f97102d0da76520033a6bda79ba1a2ac py3k +64742 4800dd22f455838f2d20b5e60d54da7b7e7f11be legacy-trunk +64744 d66579f925c46f85b8b1e8da41ceb4a356130b63 legacy-trunk +64745 2476373f554d15391f8bb2ba483d80fa23d71a67 legacy-trunk +64746 45b672367b1f7d522c3cdf05f50a1f79b48ad39a legacy-trunk +64747 4ba3d07b871f873437493ba6e34ae829acaab651 py3k +64748 4a72be1d5c21811c853f8f0f90d4afed17a23f9d py3k +64749 6ae71f522b2f0abfe6d00952d6ed15fafee28a3d py3k +64751 fa34088380f9bf309cd8107265bd620ada480c1d py3k +64752 a0882bfaf54d8d7da2f9be30129ea01f7642999d py3k +64753 0738119c1ef8fd95a881322f9c5aea56e2b809cd legacy-trunk +64754 a312e03a0633251d1fe3d25d7a86f6da6871a3d7 release25-maint +64756 c3193b7156bb66504134f21a0ff96ff1d1a86330 legacy-trunk +64757 c3bc05237272edee021862cc774bce46c180d0a9 legacy-trunk +64758 2b9e130e21bc54629788b975c8ceac232d9477ec legacy-trunk +64759 6c9af14d7b813476e21982b956c05d21917c97bf legacy-trunk +64760 71d31ab7350731facb4fc708836c6e5658e93b8d legacy-trunk +64761 3ae929c0ee7a285ebbe56b97d44fb308f9bae2ff legacy-trunk +64762 0c62a279e4dafd20a22e5214ac11f66c20fb7c98 legacy-trunk +64763 3947bfdda76d27ce22acbf5ff4873ab4e97f1cd0 py3k +64764 640af544a861f704a363aaa33e126881736343dc py3k +64765 2231a5cee3f56ec831008738a292eff2c45908b3 py3k +64766 4614ac312ccee98026c2a027befe12f60904f401 py3k +64767 30fbf8e45549d029694016870733ee9ec56dd0c4 legacy-trunk +64768 d7fd32ce07aa62af5efe97690be464887a4bcba6 legacy-trunk +64769 a244d6b145018e80dda632f8764370f5d1e3def8 legacy-trunk +64770 5b2f03bebe3baf6bb58c19b27e66d5a2f6c5c59a py3k +64771 08c5c8c114b29a8e82903bc1f73e641976c6c874 legacy-trunk +64772 26799861d318ce07a463b7a94ab96d4d095d7af8 legacy-trunk +64774 65f69cbaf4f0d5b3b6f80aa69af7c68b60a586a4 legacy-trunk +64775 bc943bbfdb1ecb333ee8bacba2ce44838b9af899 legacy-trunk +64781 83f4b777d94c5e3523e9bd6b5035c9fc9f1ce60f py3k +64788 f8b743632593aa4137a3dc0a0fae1cf6a098c024 legacy-trunk +64791 1bc543944daa28dd0dacddd9a06befc42717fb01 legacy-trunk +64792 4c01d78ec59fff4f01e61355605dd4d21807084a py3k +64793 36188544c561026f6f83d6efafd9b84af67e8bf6 legacy-trunk +64835 bed3dfd99281e41e758c147c70383459764d9fec legacy-trunk +64836 c32e91650c144b927dbc2225797b3191bbabe033 legacy-trunk +64842 68c7964d25347d27d1baac8d978d0713ca2962b9 legacy-trunk +64845 8e7383cbe56e49a7edd2527824fc6d4c16576011 legacy-trunk +64846 bd435e8b2e28006deec64007c247e5a4874b9e56 legacy-trunk +64849 05fed9bf489d783e1c46664f3f1b7990513fc6b2 legacy-trunk +64853 7cfc28ac0715201c936d7a84298e9a5e264a8e23 legacy-trunk +64854 1274211a388f9ad1f866688d9078533b5ef02e92 legacy-trunk +64855 328f33baffa3827d68193476f7dbb4b0249f099c legacy-trunk +64856 fd054e73e2f239e335f54fdf46fb4437f92e0124 legacy-trunk +64858 1d44e004c91f8a2e9855a7b815cb5ac54de3da08 legacy-trunk +64859 76325c19af84084d3f408c8d0eb7fb3a265e5adf legacy-trunk +64860 1cd4d62444b6141417253f2bebeef64663e9e89c py3k +64861 e16384e3ee22a66466efb4998df6e136ac8dde72 legacy-trunk +64862 545e44236f286d56db2b9e7cbd153fcb3784c6b5 py3k +64865 c03b223c2b690b5b52008e6a67cf6fe0dada1ca1 legacy-trunk +64866 381ae2ad810b76327e3d92f932c3fa8c9575bb00 legacy-trunk +64867 53b51c213b3db018c771077fae3b7f196b69c823 py3k +64871 e286bd0f4e1bdf6011ea4c49f86d75e172a4bed5 legacy-trunk +64880 13e525d974b158bf6daa42e8e3d92347a81a3856 legacy-trunk +64881 4f804ee772eb2fcbcff2d1d0db5b1c89614ce533 legacy-trunk +64882 faea6e9da639af1d01d2a6b423213eec66e92aa9 legacy-trunk +64883 c659b538f7bac56a7a7c9505e9edd5ad0a7d4520 py3k +64884 cd7763b05446f038844dc33f30dacddb4e968a47 py3k +64885 8da5d38ddca3b8dcd14bea0e6c470d7e2f86bfb0 legacy-trunk +64887 90b6d19f06c1d9ff28ef68128cf0964cd54bce3d tlee-ast-optimize +64888 a747cd066f3211f90da0b00fa442b9c526e8749e legacy-trunk +64896 ad309122784ceff56bc6694e27e0e01178282447 py3k +64897 38d3a50defec97f4679e791bb4e2e71882143438 legacy-trunk +64899 d6dffdb30bddd8adbe845fa670d5e2dddd614a1f py3k +64900 bc27c8967cac1fafab5b90f8352ada2bdb9031b8 legacy-trunk +64901 2c9d0a7e3bc4d3dd3ff047905d0c491fd752ac4d legacy-trunk +64903 beb0ff5a2a0f58c56bbd98956645d6abbceb351c legacy-trunk +64904 5f2431de63d0a5148dd2f3cc463c3f92675e9b65 py3k +64905 2ea829dd6b5a1de715dd7443322ff437103199b1 release25-maint +64906 19cdaad788b90f0a30103f23c22816d8f52d3235 py3k +64907 5ee33b9ddecc6934f87f619b2b6076b3f47fe1b4 tlee-ast-optimize +64908 a70d905e50418b11942a088a62030778b07413e6 tlee-ast-optimize +64909 e2296b50063df3e7b9d4fa713987b2c63ee51791 tlee-ast-optimize +64910 b35c8b1940af52100e9e3ae97933f6a9bf344b24 legacy-trunk +64911 b5cf0cb0c7ce58b73035d050b9e6aabd28e817e4 py3k +64912 8686563281539585bdab578bd19a9b024ee5662a py3k +64913 5aafa23cbffc9969162cb318a459c72cb5fc22db legacy-trunk +64914 2321040ec90be674b3b82bbc27563d52ec45170c py3k +64915 b90752c5e8c153c69a8e77f27b01afb12120fae9 legacy-trunk +64916 8cfcf79327245cc70323f37739b859c36dba401c tlee-ast-optimize +64917 ab2cfd7c3be87627a6d2969dcaddb87fffcaa6ff tlee-ast-optimize +64918 e53e4a71f56fd186bde8369da63a43ee90c302da py3k +64920 d611b0091d5f64eeafec566fa640159c15e1b7ff legacy-trunk +64921 5d61ad214b9c069c88b1a198f1724a245270e319 py3k +64922 041550738201fdfe4461e797e753cdd5e08c266d legacy-trunk +64923 8d0a976816f2f9de78038eafae40b8fac4ddf2a7 py3k +64924 18bf2aaa87b5f24e7b3143e026db4742f9f39a0a py3k +64925 c5710f0debae27515a7d8a309d11dce14670e90b py3k +64926 e5e12d31057ed505bea75025c8c6fdf0f3358600 legacy-trunk +64927 5ac26b1f25d91eec4baba489b22aed0fc2bbdb34 legacy-trunk +64928 6c1237cb5aaa66bdce885d09211a7df656ccfa7e legacy-trunk +64929 8bace214ae54a20c90bacc962ab8fb4956d5fa66 legacy-trunk +64930 afe8d515bfe2e9c99ab72fab3761c1815ad7ffbc legacy-trunk +64931 81e34d7e4ba0a7fa631bd3a4180a0739c239ab9c py3k +64933 6fd8a1d8448bcd166fe370c43c2dc4ccfe64a88b py3k +64934 be3d3106da6f2451abea6db1fc67e7c993e54083 py3k +64935 afdd64edf189e5f9679372106292d5d463131bc8 py3k +64938 92b1cafa3267b6688039a3cd7b826f3a5993d633 legacy-trunk +64939 7a30b3c5cb57a7bc96eab6bc3b43337840dceccd legacy-trunk +64940 c3bc438882cb82f4e2e9dc84289c283cdcdf0479 legacy-trunk +64941 ae34b951b3377626ab4d7eb1752934754f9929ab legacy-trunk +64944 2ad749d57e62c0505847520f1f61c176f314a82d legacy-trunk +64945 2cc4e1c475f813c14ca001078687c2ab5b8f2dba legacy-trunk +64946 c0c06ffaea8310913e034ac84f272eaeb19d485e py3k +64947 19369c7f57914a5cd42b60083ddec5970b1a7812 py3k +64953 e7a6a4515ab0b39b55b241adf21685aca5337a89 legacy-trunk +64954 9986820723e0cfc7272de899d80a1b400d5c9a95 py3k +64956 3d868254ff7eefd6e3a1fabc3717397a37c91755 py3k +64958 c2b114d0e1cf4d737d59035874b135eec3f2b10c legacy-trunk +64959 74195499e9093ca75ec11f1a4b4db53ea921436c py3k +64960 d4e473291a17cfb3679869cd4d661948e7fca5af py3k +64961 2fbe28deca2a284cd843115e42d12cb8e576cb3a legacy-trunk +64962 f9b80a820a2569cabd582fc98a41d9dd94464fd8 legacy-trunk +64963 7d570df5e90a413be178870279a4ee8fba442b63 py3k +64965 2ee09afee1260250fd78d0275b77eedea5bff3ab py3k +64966 ded217043707c2f5d4365bd8d8792794a0e44c04 legacy-trunk +64967 f4e7ef4329a957e92afb11a4f0efc82dc6ee6fd9 py3k +64968 1fdba097932af86fa416e833a72d6cbd921518f1 legacy-trunk +64969 f8723eb105acd5fade0d6e6baf532243213b7f95 py3k +64970 e26c724d5e23e3748f86ee57540c862e44bacb48 py3k +64971 916d33ec7b5afecc0b43dd3c5c448384f1258219 legacy-trunk +64972 432d27808bd1ee6393a69afdb8b96cf54d3c905e py3k +64973 1f24cec0f2e1d68d267d178186eaf1ccb138ccf4 legacy-trunk +64974 97ba936e8df84ca47b0c961ff21f5e608b4a5750 legacy-trunk +64975 d040a3b63df4258867a16ae09bd3cd13d9c86896 py3k +64976 875beb4ad889150a605820f43d46e415d154fd47 legacy-trunk +64977 35004d9bfd1560404531aff22db95935443b975f legacy-trunk +64978 da2d363379f26e4e44bd14dad85c100f2044e4aa py3k +64979 a4482a1a30c6d93cc32343c8b1286ed8275ee7b6 legacy-trunk +64980 1e0091708875a78512f4137354382810ea8c9e30 py3k +64981 9cb28ad5a41c0012690e5971594b25be560c11a1 legacy-trunk +64982 01fbe3fc883e0aeb1ede314382ba93b436467691 legacy-trunk +64983 51c0d3a071ad007806fc7d5dfdfca22ac3a8c188 legacy-trunk +64984 3fa44e5e4e2b1f2cd6d8d42580d45f749e389e0b legacy-trunk +64985 c662e8cffddf61d5b6e4c5daa6992e944bf0fb75 py3k +64986 eff9d11c47626abce07267ab22cefe8e57346e4e legacy-trunk +64987 3a3a5a4921471c3480141fddb457f71ca5b2b411 py3k +64988 3bb1f8bba33676a35977a9364dc3cfc91962a26a release25-maint +64989 bbd0c90027bfb77b468ceef315fb1f62b257b7c6 py3k +64990 bd4841069c684858b272d2248aa55f3e63fc1044 py3k +64991 d14d0b15e18e70f7e7486953805fe428509b9d73 py3k +64992 38d719beddbdd863651c90c1d261f1a6438663d3 py3k +64993 ea23e7c5615456ccc59d3b3d7e01e6f721f2edb8 py3k +64994 fceff954f3804c62b1ce655e24dc9134c231dcdb py3k +64995 8e9e65383afb6502e39de74d150750e9b05ea128 py3k +64996 65e9c0102ef9c4b0947b90ed215838af1b723a95 py3k +64997 926b2a19608315278508b105f077cee4a0be1e9d py3k +64998 9ebd3f3855759d58aee4eb8b97cef37bdab8234e py3k +64999 aca5b2e6a66f324b74546eb80f54f218c735510d py3k +65000 f58e3a0ea99a17b76c5e086df89588cd53831ce2 py3k +65004 9aa0781615fb1c7a760adb6dd5d52681da02db84 legacy-trunk +65005 c0ab2bafb26440b59f984905c641a076474a4655 legacy-trunk +65006 cea066dedfdfb20882596ea339327671b2ac56e1 py3k +65007 ca0d620cd63b2a5fbdaed41be8667757fd1fdcaf release25-maint +65008 2bb866d282bad55dfe65e7139b12933bf82a9bf7 py3k +65009 177302feab368955eed0325ee9518daf5aa89b47 py3k +65010 de0bf60f1245ac73e44bb25e2c58eae6e5d082ae py3k +65011 4f6edea4b5585611c154f5a20fb0d2797cd2775c py3k +65012 a5191d7ea40540c3161e5acd49702a70134b8c86 legacy-trunk +65016 5f6dc2f86a8844175b2b9b3adc377f91b7eabe6a legacy-trunk +65019 ec38fbbb8ccebe1f2670907e689268158f8afbf1 legacy-trunk +65020 b645aa2bca9cc71219bc23348cb1040b4e6c1a18 legacy-trunk +65021 2e90fef226ea6c202da701db6a20edad708cf6a4 py3k +65023 a0963e46f43e5e77e92355b55487f1f476d5e366 legacy-trunk +65024 654ff5755436ad53a6da1c0d12b14b5574bb2c3c py3k +65026 655227c988a78d6d2283c14c8f8c1ab762a7989c legacy-trunk +65027 acaca11d80dbc84d3109ad86bd91034576027666 py3k +65030 59ac5aef3b2d1ff3c3a6c76c944592de15b2e56c py3k +65031 b2f3de358af4080324d7af845ab8215ef6b98016 py3k +65032 09beb96ba20d47c6341727e1fec6fd0c106d4c89 legacy-trunk +65033 ec85b58ad2ba4a080a601bb11b8476b9698e52ec legacy-trunk +65034 6c8bac913aabfcc08c5fd47f5ce4e4a4d6dcb8e7 py3k +65035 ebe932329246997d538120a38aef7a56ee2c3836 legacy-trunk +65036 604febd204cb2d3e63f29f14b91e7d694f92aa4f py3k +65037 ec97b7aad231beccf7a2783e4b4028898caa9366 legacy-trunk +65038 efe706aab32b91ae283aef1aefcb6973426f2dca legacy-trunk +65039 01806cdeddde3608bf0414940bee8199dc152a1f legacy-trunk +65040 091df4c08d99a4de5357c9998f84e56909a8bb99 legacy-trunk +65041 fbf165a7895373cad30cc60f1f365f2b237d5f9b legacy-trunk +65042 7e030b628294db229b8e072414b55c7157b711d1 legacy-trunk +65043 b9828b2a51c0ff351f1cb6f3522e75c84fe61336 py3k +65044 921c4a8099238317d5df8f3e276fbb966ac58c19 legacy-trunk +65045 d87cd5e7365aa82ac77175343ff897c2e9917b1a py3k +65046 768bcff4c0daeda647dbd274410d8df7013fecf5 legacy-trunk +65047 f2c7279258c12dc46696c43c5d9344af311db00d py3k +65048 d31d61f46498d142173fbb25126baddcf4e3e38b legacy-trunk +65055 30fdd0c3b6de1b8235e75ab5800906f9c7c443f9 legacy-trunk +65056 9c56cd97ff4dee309468c35230dbb98585a5f46d py3k +65057 27bca7fac362d71590dd63be8ea615254f6c9178 legacy-trunk +65058 c5911a7b5fa00bc275f6cd7fb6d729a8b4e5ed7a py3k +65059 45233d4c18d23b060aede3bb5f236f3ebaec2fb5 legacy-trunk +65061 a29c86ce766871113be276c4286b2a1eff421581 legacy-trunk +65062 1be5b6be43cb698542c839219675248db82ac59f py3k +65063 79f84bc2b1492085f7fd6c3d7e6ab655e9a4b56a py3k +65064 dbc2b7ad0c2217c080edc01c479761acde4fbb29 py3k +65065 eefb98379644d9bf84c5e2feb3a259a15a35b50d py3k +65066 78a29a05207982d26e73ba006b3e449aafcb7765 py3k +65067 991cadd47d9732f311211eebde90fa8e9e7d9a34 py3k +65068 2068710b32c3513c24362b08b515931639464ac5 py3k +65069 f283e3b5f917ab26b538f4e8a044fb07b7869ada legacy-trunk +65070 560388cda163d93dd8c84f9b08a22feb45bda2e1 legacy-trunk +65071 7c6ec7a8016adfa734fb9722ce10dba66c9a81c1 py3k +65072 ba39b40ebf2d9339cabc7d5f043a0afb07977447 py3k +65073 83d0d4cb7a661c97cf59848bc66176f988e892a7 py3k +65074 3d526525b3e81d94aa4f2e4c67081a5683498f5e py3k +65075 5c33009994b46358d6ef9835374d8ce38d25b3fb legacy-trunk +65077 6dd520e1bc0db361faa1cd63eae416c94cf3eadf legacy-trunk +65078 4deadc8f9e0a393ea61aadf8d9fd94e3e6b20186 py3k +65079 031b5ad547e427b437794b8181f29249062b083f py3k +65080 16ec4bb14a68ea428acf09ebf0c92981da2646f3 py3k +65081 a968029b63db121f007a7dc90af88ac582dd47e1 py3k +65082 81ec8263bd6e25c9a8855cd0ce9ae881732972be legacy-trunk +65083 58d4bf31728ff8b429611b3f4b0e4921b08a1ac6 legacy-trunk +65085 19e779d0205353fc8ce19035734e37828d2d43d6 legacy-trunk +65086 b74e9d09b180693d00cc5b3346c1014d146c1572 py3k +65090 78ee6ba2099ee7d2c6d8b5b223fb9e119b37d85a tlee-ast-optimize +65091 644ca4487881e879e010ef53ff99468f9a83405c legacy-trunk +65092 0eae9b25a2ed0bde05951b9a00e5c98272ad28d6 legacy-trunk +65093 8ec1830d5719973e7073a81b898b3a11037c1a10 legacy-trunk +65094 1acfe428e8f19b9790f457d82fcdb4c2e4ec3af6 legacy-trunk +65095 cec704b79bdf1f5501369f16d9fd75277005957b legacy-trunk +65096 2925135ca050a64475ddf32ab0c3754e794e6067 py3k +65097 4ec5a0ec631a0553c5568d348bb83ab9d2ce1b53 legacy-trunk +65098 e85d5690c296ef6f30f5e9730aa61b0fda7ca02e legacy-trunk +65099 ac1cd46bf7d57e9b4d74f2cf0b5b31135cde1c6d legacy-trunk +65102 1b20afa48d58ae5125493fc2339e298f70fc2e4d legacy-trunk +65103 c432307ec00dd6d6881ab011d414a91e486111d7 py3k +65104 9576bb71a01b48c0cd40930de6978e68c519e313 legacy-trunk +65106 e7d64e82903522b336703fdf1a8c1c3ed2a6e2d8 py3k +65108 9bdb7404efe7889db8be743eb823c3f66e7dd171 py3k +65109 49726dca16d811c318dc33fa52eca27a5458578e legacy-trunk +65111 b931a022646656bf19cd5482f20e12d48e654cb0 legacy-trunk +65112 f9040d107d6647def79dfe34928e4138e0480f67 legacy-trunk +65113 297951306400521b7d7840b2c1b00750b0e5dfbf py3k +65115 6e7716a3bdec1060b8eb53ac6a77c392f056f621 py3k +65118 dece17edbed08ab69c9221f868bd0d4556cf679d py3k +65120 feffec26c56cb96dbcec32e7d96e5bc910f2129b py3k +65125 40db45bfc0f2cdbccdefa65fa655938d17b77bce legacy-trunk +65126 48e83e66935a9a6c338a579a95f012f541a79557 py3k +65127 a5ffe34c72c4899dc0cae7839d2ffc6cfa238785 legacy-trunk +65128 caca33832a1a5127c227fabf99d983581f5f9ee1 legacy-trunk +65129 e6ba6f41469bf30bed4becbbe252faf64ebf90eb py3k +65130 6c5cddb267fe24d59d5b31eae0d0b2c2d594dda4 py3k +65131 7ad6e4cd771366d94558377ae086bc00c6e11515 legacy-trunk +65132 40b0e3318a8bbadd17447a684dc5290840194a0c py3k +65133 33c6af69ae0f17531d2aea8347688746d0fa5270 legacy-trunk +65134 e907da8251691929e8fe55f8c2bd3f242919950d legacy-trunk +65135 49be8812d4330aede500d08a9622a8abb35fc6db legacy-trunk +65136 96eafab489012edf2d9813bfed100bea46ac4268 legacy-trunk +65139 7f5422d0409f94447e7e14e6d14bffc833ab6681 legacy-trunk +65140 dfc37583f204767ecae69e465cee163ec099fb79 py3k +65141 948e5b3233291be15256cf10689b567f37516f0f legacy-trunk +65142 407eb004004141ca8ef62ac787b9174372013fbc py3k +65144 89f5cfec0573c5ea3312b799c500fdf311c8beaa py3k +65147 7c147a76a0b2724675d490402bb44f9f6f60e5b0 legacy-trunk +65148 8cdb181aa9afc675808e92cf666af1113f22e3af py3k +65149 70be69c93e33aa53e8ec25c1d0af028810f8ff78 legacy-trunk +65150 43c6934514d7cc342e63a242802f92e7c7cb6b0d legacy-trunk +65151 8989213f386b26be44dbbc8e4cd2b1acacee44fe legacy-trunk +65152 644fa7a240c8b7961d6e7ab24cc2b0933aa0e1b8 legacy-trunk +65153 bb2636882503dd26df2ed74f904febbb2a6f0ef3 py3k +65155 d27e280207092d8506b258374ba67ce38b6b88f4 legacy-trunk +65156 1d4cb26ec89fa69dac711393138ba5e5fd966357 tlee-ast-optimize +65157 578a4b0a522d260fd10085534a264392802c9580 tlee-ast-optimize +65158 1ed694a7ab601473941409c9e063ce3a8ffadbb3 legacy-trunk +65159 a97fd5a3b090b69c69cce41e2d1afa61568a25bc legacy-trunk +65160 60535250a62c6a40f6ddc5347ca3f1efd577ef71 py3k +65161 62823eca881be4a87ec60da0ebe2bb930013f977 py3k +65162 7ccce2a7394a0282be40abb4e5cdf1098d5e09b3 py3k +65163 364106796b210472ea29df682452019f47be521f legacy-trunk +65164 ecc6be380c5bc8a4820cd24334923f01c864a844 py3k +65168 068c00bf5a24afff3695140b263a02d95e6cae95 legacy-trunk +65171 0a741c13fc81c6ec28ef9bfbdffe0bfc0b56a593 py3k +65172 3f6d43d5755cb9baf3408a44308472a2d598321b legacy-trunk +65173 921b6759cbde709db662fce5c1bd00a93401c39d py3k +65174 a9dfa0851b0738c413f635ecc2567760fa62e713 legacy-trunk +65175 975bbdccc55ed582950be0a55640cd4513bf4cc8 py3k +65176 8331bc4e8278c83bfc19cf8c6ede3d48d2a616c7 legacy-trunk +65177 b836bf25f176a29f3b61b9b787cb1da6d0342c16 legacy-trunk +65178 ba2767bd46205299906076d3ce3e0399a03ce241 legacy-trunk +65179 d8798d5ec4b93a57eada7e6ce60f93bd79b5d880 py3k +65182 5d3833e6aae30ea1a9f4bba9183bee3c33142486 legacy-trunk +65183 3b5c2613ed05dc9901e34d944800834cce09c5b7 legacy-trunk +65184 96a9ebfee2cd2c7645cff9ca9df833a4a4541d01 legacy-trunk +65185 1a2f8dde81ecc428fe4fc6c462b713eae6846dde py3k +65186 739bb0728efe5299bb3ba71c800dc804b1769290 py3k +65187 ea53ee8a833321d8e70fc5bde12779ba00558d6e legacy-trunk +65188 90fbbbce757af87151a17d77f2ccaddf3b93acf4 legacy-trunk +65189 9561aaedfb738f09fbac8a2a25779c1c53631f75 legacy-trunk +65190 dd31490d3eb6de8205d86de006caad005c1f90fc legacy-trunk +65191 821e73d7bcc54a4b85cb8edd39e73015beaf0b63 py3k +65192 679e3c272ec262e2dbf1d8397799a31f922ec237 legacy-trunk +65193 10f41adc0d24e60223c51a1dc9dbdd6b6c29b38e legacy-trunk +65194 761dcaaaa09e2105990cdf8b8f6d2dcf2ba49fd2 legacy-trunk +65195 6ca8af64747b508c65c809141539a69b76bfa9b1 py3k +65196 20b4b83a54aeff120145add5e9d9919c71dc23c8 tlee-ast-optimize +65197 fcbd9f4f095c4f00e08485aa2cd1e8f170a7a5e4 py3k +65198 0441d30d672be0657dd2e5f2f84fcd363faf3502 legacy-trunk +65199 8375b3f6470f60b941d1fb0bc0cd743b7ac4f2d6 legacy-trunk +65201 0d37ab00f6d6c46d49b406d68e6f8eef0e841428 py3k +65202 bddc1a17247e3f95766a143157a085cd83dcfcbf py3k +65203 ab22177eb6dc495663a14d5645a718f6a8a6f938 py3k +65204 45f88d7bf0576c34dc4a3de648bac8f664abbce9 py3k +65205 179a7f416240af5f62f7cf9de9cfcd6069f76557 legacy-trunk +65206 b51cd5d3795cfb518ce5501e6d1b67abcda1eed2 py3k +65207 3efa20916a9043f9cdb2c4fd28b145fe1c090267 py3k +65208 887ee6bd9284fb9b6eae41fbc23eab47329ee7ef py3k +65209 b68704457efef10f277756d0bb7daa69249496bf legacy-trunk +65210 759a7323591ebd940d378f8127dae7f2545b156e legacy-trunk +65211 3853856f7c5055d7a43837f02d534e637d75afa0 legacy-trunk +65212 08ddcad851348eb4f711a449ac20df46a104ce22 legacy-trunk +65213 1b1e1f872e09831da923a9cbdea788f4f7fd47e7 legacy-trunk +65214 07b89653145e032a8b4840276a2d0b6574f58c7d legacy-trunk +65215 4203b7f087c102364ba9831d4d15f4e5226891e7 legacy-trunk +65216 74fb0df29a4876a37552b29957eb688845db82c7 legacy-trunk +65217 290078e9b6a202edc523b55b9f481468d5a7eb8a legacy-trunk +65218 1c78aa7ea3360f392c4f6f687dfdcc757dea483f py3k +65220 1ce7e5c5a7617e966bb74111c8914e4caf3764af py3k +65221 d9d49f67389f6399db08841765df12855786694e py3k +65225 101bb18c10d575dcc30a22441f39435a553ff851 legacy-trunk +65226 781630e25540a35628c6a66b96f27e836a5f43ce legacy-trunk +65227 35a462ff9873173ffb742c2f6f2b2a024a92e4a0 legacy-trunk +65228 a028c0b2acee7896012cd185e3fb1ad901a96213 py3k +65230 862c0eab1c509b50e0afcd1218db46bb418de1a4 py3k +65231 8ff25db010782921b2967d222a2e92f453786641 py3k +65233 182fca025ca04d55cc4acf7f9b183383a60d0185 legacy-trunk +65234 b71d76bf45066bd869271ba22350ff544565d4f4 release25-maint +65235 972f489ae356f75fdba0643181d32892087c0829 legacy-trunk +65236 55640151e0fcc0ed844b57c9843025de670a843e py3k +65237 be07c3083ceae290b9038aab91af560d6c69768f legacy-trunk +65238 74eef85b4b2cdde764fad160d424d10ab4bd42a7 py3k +65239 300df6b1e4b0d77f42344a6c8f74ec034d67562b legacy-trunk +65240 9a6f8fb175e057b121f826eafa4f727ff426b049 legacy-trunk +65241 30485bc172680615a1ec97a20224aef24efc4efa legacy-trunk +65242 497d2240e1f0e96c914e5644e394e6bbd07e0556 legacy-trunk +65243 d3d586019afff0e75898f802519bf263d66f99ce py3k +65244 b2117b18049c42a0c678237db0f511fa07bdabd9 legacy-trunk +65245 613b24014afba1ca7955abcb80ee52f00e4eb4c8 legacy-trunk +65246 767cc89e3fdec5936c46c9b7092b6353b0696bf0 legacy-trunk +65247 4a4621a687a787eb3f83b687e6004189f33ad857 legacy-trunk +65248 2d0e04001e81c36b64e907364ba97d5ffaeab0ea legacy-trunk +65250 2fb55ff06275e65c70823f595e04f2924e278765 py3k +65251 7b08448133893be9b324ab10acdd3a68916e04e1 py3k +65252 71532ad7f3edf608d9a1e14493a86760644d7b1c py3k +65253 0c12a37d5e5d3d46493ceac91f7227ca3dfff35f legacy-trunk +65254 b8d4dbb2938a59a1f930c6c142baf3442749946e py3k +65255 9f9e5fe63ec2cd74592ba7bdd3c6d30588c7ba20 legacy-trunk +65256 3111b6543dd9e8ae8e40f6bb35d1111cbce8d158 legacy-trunk +65257 f3bf2e9bb868c6e50cf09b62582ea2aee6074095 legacy-trunk +65258 b01e20d373042586269fe35a98ace2c315dc6363 legacy-trunk +65259 e3da869de98eab15e4ef0cd2b76f2aa15d3c1f62 legacy-trunk +65261 2da42dcbb8cebb04edc502d4226715f63d0eb960 release25-maint +65262 cc84ee6667b70e587d51e7e4a225ba077367daec release24-maint +65263 95df118f42c6f21b007aa5e8101baa93b7b76b86 legacy-trunk +65264 151c1cd94a402bc0e4e3f3e0fa83341517e44abe py3k +65266 8afc4e2c4c0236dd59ff665f6ed5a4cc03b959eb legacy-trunk +65267 40a573f01fc4a2d171ffa15bb5a81e8d7e6ab497 py3k +65284 ccbc8774d82b55c41fc701224a68cc11b66fb714 legacy-trunk +65285 791a631a2c7c8281927811aff9662e68e7cba097 py3k +65286 262d2ea8ab50da5bf4b2626253b94deed174c4a7 py3k +65287 3a267fe7383c48112660728dee31879d89425ee5 py3k +65289 50228d2b32c14114df2a2aebe9eafd24ced407f3 legacy-trunk +65292 21eac91382495bbbe0084811743d9992c6ad66e0 legacy-trunk +65293 0c7fab0b05c036376b3e4c79185cf7d7e18c501f legacy-trunk +65296 689b5e8ae69d4b1535a1f6a84a8e43d3c9760430 legacy-trunk +65297 008342519e8656777c32393cf3e81b8c708d89d5 py3k +65298 fd308f038afba797b9cb50ae4ac90f40d05163be py3k +65299 b40e13bcb9ea5e86538cf748b5edfbd3fdbd7118 legacy-trunk +65307 40e949a6834465a41cdf76468ddba99cf646693a legacy-trunk +65308 8d05dda735f879c9940da7e53ec865d02f85b4df legacy-trunk +65309 b35ce954a39210ab9644f9ad6109f2f5d2617827 legacy-trunk +65310 8f3620f5d68aabd5990d09fc9790e6319b1b0a0c legacy-trunk +65311 90c25b36e0ad69575cac888460cc5bd3e8c2b9e3 py3k +65312 83c7a8faeb78e69b7d5ef684142b21581ec552b3 legacy-trunk +65313 12e3c38d316e38dc13c167ff20bc7cf382140c53 py3k +65314 7f822b5d3670147f9c314fcf8630a1ef126407ef tlee-ast-optimize +65315 67d177aab8a7c5db03a2ae055e8320c99109b301 legacy-trunk +65318 8a133663ebde09f69fb53d2f4c380569a028101e legacy-trunk +65319 9154553f876bc7c256075333010e4086092f77d3 py3k +65320 0fbddc04aee159a4fce2162bddb215ca66216bd8 legacy-trunk +65321 5db43284ea7aac26a147c738e5a0809873600023 legacy-trunk +65322 1ec38b707cd6b149e57987f2cd83c38ba82d4d64 py3k +65323 6f232fcfb6576c55d4fad754c58f09a87bb706ff legacy-trunk +65324 be7521af845a0e84c6c5089417e5b036fc529c58 py3k +65326 347603f794d11b54b09933b3d7e976d36d6c131d legacy-trunk +65327 1de718a31004e1967e5cd5132cd4ed6bd6564de1 py3k +65328 4cebb5c84d7cfba86f81f6047684b8e9f6e804cc legacy-trunk +65329 037818cafc393599606ea0f9c15ef596099f48a5 py3k +65330 4c11fc3b33a233fb4c26ff323f26c7e5cd91945a py3k +65331 35b1a20470db079c0457c6a4ab7d973672e69e10 py3k +65332 b3901c5660f71d0a72c0f1455707b14b0245914b py3k +65333 187388c115050c9910408175d2f5f224a9160bb3 release24-maint +65334 0aafd1ae51208a1b6cc3120beaab3addf57c423b release25-maint +65335 c4d24fc8ba8a2ec65b2a43d88a3b52d500dc4223 legacy-trunk +65337 13b2e11f3cf5bd7406dafa48df1fcbc37d0d0d22 py3k +65338 fec985cbf53fab05837995370012464d97069847 py3k +65339 4550144b156066fffc8fa6de88480c3155496f00 legacy-trunk +65340 5428f7fa171cf1ba962c8d9b64d224f3ab936197 legacy-trunk +65341 de75e7280b7aa618cca5dbf71bec2e2f9805f7bf py3k +65342 a94f136b528382c394283851323c8578c300290d legacy-trunk +65343 631cd9ae5c8e22e23b7ae2ff6ee52fae54d2f196 py3k +65344 4fecc9b99d98522df2df563987f7715c92afc9c5 py3k +65345 a476ef5eebadbe42976e33ed88d5a558e06d9ca3 py3k +65346 c59e90d8d1c70821ce1224e5f25a75ac24db49b6 legacy-trunk +65347 3c155d7813cc175cb9179a1b2f4bd14379ed2d84 py3k +65349 c2b5a0ab30706386b9f3c93a83de9474ee4626b6 legacy-trunk +65350 70d40f9ad1d7acd2784e36756c4b869db7cc3381 py3k +65351 0d2d26ffe20eb248ac36e0280149b49310f7f79c legacy-trunk +65352 148020b5c5312e39803a01fba167c4548df4d30c py3k +65353 1140774f69a572c95a4201b1ca9438fb9dc45f8c legacy-trunk +65354 f1fc7d93509d3fed219011af549a84a0fe5c3b5b py3k +65355 5d2cd96a196bfd22a4383c0568cac2c31b771853 legacy-trunk +65365 f121a963ab694dbbf3758cbdaff46ab2ec310498 py3k +65366 eff4c94c02cd1e12f88b051b45d7380d06839f2f legacy-trunk +65367 c0df1c6477bb9277af349298826a2925a6a40995 py3k +65368 95bc0cf31203cf8772b737d201ecf8d18411b393 legacy-trunk +65369 cc371570e141323fa047d38e72e276504216c6e1 py3k +65370 13817742a7810ba1436d9c803c7643e68c859a11 py3k +65371 19b6c635f5c1d3300e69138357a98fab36af8f40 py3k +65376 1522f3d5be6e7a94697343a512ef8b3c74013dcb legacy-trunk +65378 b8a8d113076fb94584f919a951c5d33e748ba106 legacy-trunk +65379 4b72c7f6307745f7886bcf3efca99d8877322298 legacy-trunk +65381 13ebb4b5d89aa89a066186cbd14c77dd5517d92f py3k +65382 45bcd96e56d1d421fae76c6c4a327c7d868e402c legacy-trunk +65383 0aff3bf0a3426f124419b8407cac8864fba1b534 legacy-trunk +65384 6922f84a7158f9fc9158c4d74d2f4b2a7df7133d py3k +65385 6b7c61027eb04fa3718e87db679cae59fded1378 legacy-trunk +65386 5279d79610937a5b4c47501197813be943f7d3bb legacy-trunk +65387 4b1ba50d3bdf7ade255bc4df792552792911a234 legacy-trunk +65388 1660b335382102dc6cb3905172150aa4e5727803 py3k +65389 f8d2a3185d9aaff3c2fa12b8797db24c729bb4c7 py3k +65390 4f46f3f7231bff89c39829d8d7cd59343996e2d7 py3k +65391 d21c0a2b6b11a4e9f69b432d8c5bbefd98313ee4 legacy-trunk +65392 0018b18f5f4640a728755e7577553e9fe1400eeb py3k +65393 f0bd37ea69405cb435ee1ca1bbeee33dca164eeb legacy-trunk +65394 b8945d8f00ea25303f87adab4dbf3cf464ae7013 py3k +65395 a7bf503c857e9c7ef23afd8b71c51d17dc627c45 legacy-trunk +65396 e8796b55f81b08d05f2f72c614f81ba25f48c037 py3k +65399 ba84c1e3dd60cefb3ca761f2b1b1c8770d6782a8 legacy-trunk +65400 4a4c20a2167bb183e57a84e61c591c509c99b86d release25-maint +65401 d587aa5e824d6519bcda5b3acc4f09fdb0b5aef3 py3k +65402 feddaf21c2a49f7df94775e6fecedcf37d0a77d3 legacy-trunk +65403 7475b0fcc5ff2bc3de30e5377c725f0bab54e273 py3k +65404 65442546173ea428202417e84dc669b1e42cdcd0 py3k +65412 763ff1ba91c7f2d3e59b3319dd8b07c9717c728f py3k +65420 bf50085fbcd32d1c42d43e6ec37690631e040ac3 py3k +65422 97607fcb7b261961eb679361cc5719955ecf0a4a legacy-trunk +65423 cc43b998f5b5183cb1b12284b5c8ada5c134571d legacy-trunk +65424 437ddbbcdd294b735e690a4502f43cca20f490c8 py3k +65425 4e6a0ae1a8e7aae9684744f6a2b24100903aacd0 legacy-trunk +65426 74cc932ad8db686b7b0d08a7a3eb9b1e634d227a py3k +65430 8f32b13269b4b1ae947dfe8056e9fbe02d8d8f9d legacy-trunk +65431 bd51cf7176245b0eebf6ddd6818f6f53bb03d947 py3k +65432 e007af79f67c6a5170a5b26f991686d9f5ce39be py3k +65433 1db48394810678936381cacaf32a338e16d435a2 py3k +65437 3e44debc2bc90a76b1f6183dfe9241fc19518b2d legacy-trunk +65438 df5b394d1e2439295a62090e69236594f56e1201 legacy-trunk +65439 e934956ddce372c1e21d757cc40dd060b0183d18 py3k +65440 4e45d0cfaf71b52bd1391c6290de13cfffbab326 legacy-trunk +65441 8c49a3e90f40a84fb83493dc35d1986e29b6a268 py3k +65442 1803de5ae0dc370df2372276d5b8ffc46a077e46 legacy-trunk +65443 33daae6339ee3a270a292db67c516723c033a1ef py3k +65444 986cbdaf154fc273b372be986c491a467f413641 legacy-trunk +65445 5f3ef6400a96762e60c27ed51a055e6d7911dc7f py3k +65446 251282580041a280687287d84a99bffc3f23fb34 legacy-trunk +65447 0c6b6bd85acad37371b99faa3c81fced9784875f py3k +65449 1f22de93daf8e33cfd00c7ae0e533057af78e8f8 legacy-trunk +65450 82d4d6dee03475e3e6afaa4b0387b835cdf61ede py3k +65451 d4db5ded76ce1fc18c4dcc1466164d8a449031f5 legacy-trunk +65452 d7bae7bd39d6f230621500d72d4e86a79b348045 py3k +65453 2e8cdee34d977eeab8a39a3a829b50a2f0d28be3 legacy-trunk +65454 e3620b73a7d14f733ac52c46198b752283d5ef4a py3k +65455 35e7dc977a63c364473f2c41a867f80ce21dd786 legacy-trunk +65456 8972ce5624b4d91607cafeb20235279df09697c7 py3k +65457 c77ac8bdd3feb4c7cda946e49136357c0a41f241 legacy-trunk +65458 4322af1b6d3d6bd5eeb0166e6bd583dd17fce604 py3k +65459 288ca1c72888094b5932bfb27737484975bf15a9 legacy-trunk +65460 dc850da04bd547216e31473f68501fae212c62ef release25-maint +65461 1508cea2c6b56e580222f829fb56430834214036 release25-maint +65462 56b3b2ccfd688d8a54e51298d0acba5f602ea54a legacy-trunk +65463 55e3258094f032d3a600b5b4cb70db0203b898e7 py3k +65464 fdf3b6f499dae1ea94019949019e361a7082a02b legacy-trunk +65465 dada94a5329f2f828d3e796c389c1cb552564c24 py3k +65466 1c24a09acb97c9408f9766c708e85fc2f118428d release25-maint +65467 21f146387a63cfb5c9288d7bb5c8b322bdbe0cec legacy-trunk +65468 9dcb1d28efbb8f39f3a54d24611028a75f69207c py3k +65469 8bd5650193c6084e3368500af441c87832379a7c legacy-trunk +65472 40be37e69158f6fcf6f928bf8843e5d27ad3d957 legacy-trunk +65475 641edee4fcb14f1d63ce3be3cdbf21f16c112ad7 release25-maint +65476 c235ba70e594b140678b55d4938fb418ac43589a legacy-trunk +65477 df0ac06cddcc3e8b5c10a6ddc0af9ac2121b28fd legacy-trunk +65478 513406a37e38536feff5de43966464f47c1f3417 py3k +65479 bcf40c81891e10f9d0e38156aa7c7f82fedfbe6c py3k +65480 ab4c9c384d318802374f0901da2145ca47cfcdad legacy-trunk +65481 a8a8232cb5419a2bbdd585304a37031fbb67189b legacy-trunk +65482 59f4f994730fa79a819b8720855fd3c74ac0bae1 py3k +65487 49411d7dc257473b08dd604375e888cdf42011b5 legacy-trunk +65488 ea83fee5742230b96640acf0bb0b8ea17dfe7ad3 legacy-trunk +65490 6c88de3c4d4dd852a6c4a5720608942de0e5357d py3k +65502 21745563e680e0d4cff1da3c9f5c3356199b9273 legacy-trunk +65506 6bc3cfe098ce4578fb0e722d249de9be763b0662 legacy-trunk +65507 51f5c8e885ca8c4983f13b0459c38ae814364290 py3k +65508 93bcc9201ee07f73724d570bd1c363689f2d1895 legacy-trunk +65509 facd81972523b9638e9c3893c2df077863275c7c py3k +65510 4d8427d25f84e1cc97d6030e4b65ba9b46ee6671 legacy-trunk +65511 cff82b990a2298a292ce5010783e642874834247 py3k +65512 47cd4516863eea7bbdd64afffd6e42c7acd7823e legacy-trunk +65513 e9b6e4488871e9d2d1cc54ac042e5fd069b42ea8 py3k +65514 979f0a89903f293582b3ecee8c63f2722b1b71f8 legacy-trunk +65515 57b8c778da0734c3190dabf83220914303787e4d py3k +65516 f7846a71e38a21108628636143028b8f263c24a3 legacy-trunk +65517 3d083e69265ef0cc2750a2f777129acdc65e3171 py3k +65518 6c6a030567dd06312abe46dcfcce1d33c947c927 legacy-trunk +65519 cf331fef3293c7200e97afa685096afe90add0a5 legacy-trunk +65520 594c99c0f0784a2f604002ef1ea3216e0fa31490 py3k +65522 df277e642e5800b394e2688cd6f7d2db89e31929 legacy-trunk +65523 0da302f7fe9432c733d91fb08a04a3937f5fde09 py3k +65524 381a71df060e4f59319356ea7c6d7f6817a77e20 legacy-trunk +65525 ffc1d8f8c5ad025b6e29d0db8fd86cc20f2c026e py3k +65528 9faa8790211434f454654c0bb66c910e0766e2c3 legacy-trunk +65536 68df842d633084fdd5c9e6bfce55c2f2173e584b legacy-trunk +65539 5b774fe04c7e177e3d8b3b2315e0c820cd280bb1 legacy-trunk +65543 b654d14cb9d9ee0d47cf23e6c164c8f0ceae9872 legacy-trunk +65544 e5fc3e198ddac1c7c79c57ae99a07eac8c3cb2bd legacy-trunk +65545 1635891b18e81ad6fc917c6a440e0b6aedc7d248 py3k +65558 236637390457e6b3181ea6b62b765f48aa92c83a legacy-trunk +65559 79ea340d1a59dafe0c5d6419dae0de1de95b81e7 py3k +65560 83a7219364b13671883d3ef94a02c7a0a5e11806 py3k +65561 549108e9a0a322317b52892d3429a00cf5a05485 legacy-trunk +65562 9ccc1682e19b8789f402d77ab1feb60805e3d482 legacy-trunk +65563 53ade9e68b562e33b4e58e37532daddb4d7a16dd legacy-trunk +65564 12373fa6804e4b9f61e0c3565e97fa1c8eb24318 py3k +65565 03dae037b2b727555d28dc0d6f76cfa96933c310 legacy-trunk +65578 f1fc947722f29a43cb297d4918613c2fe7e6d92b legacy-trunk +65580 042d16a05016911bf09bcc8817c8b2ace91cfa7b py3k +65581 c8c9e78fc0823801a737bf2cb0c03d520019318f legacy-trunk +65582 85b67fb5672b99f3129de033f0c601feb6d65fa7 py3k +65583 cfad3f7f5e638ec1dd847164f1b79507c6307e7f py3k +65584 0bf6c42ab4e423856b894638eac93178cd3a976c legacy-trunk +65585 2b3d42effe5be169a79d9159bf6740b145d2a68f py3k +65586 6416e6044a301676f02a6a5b92efdb89f2698ff2 legacy-trunk +65587 a6d6c2fad2200ecf9f26843785023897e1220524 py3k +65588 65901ffffc6abe5a30bdd1cd03108e9a75bc430d legacy-trunk +65589 487e0d9a381a800006af76742810c19641dee844 py3k +65591 e6fe83c2e26206f4aae62c2336e59fdd84ce4d96 legacy-trunk +65592 b2c505d4a203d82d802e5d8474ed62e333d93443 py3k +65593 fd7b93a01c04b7e4ed1d9735de4af1f7768a1969 py3k +65594 949b9a2b986761096270e10f5e6aa02d435b3786 py3k +65595 e2c706f9906c385b97936ea0596c852692fa28fe py3k +65601 7224fff98823bc98300799b3cf9c766e76d6565d legacy-trunk +65605 47967690b5855ec9ca331aeb231ece418a75a13e legacy-trunk +65606 aad5809fc41955b1411da7770d8f6780b65f85e7 legacy-trunk +65607 ee0a52c982e5f6aa45def08a3cce8bb60f0fe2ff py3k +65608 63aea99c971a67d8ec0bd9cf9d9df67c7102bdfc legacy-trunk +65609 d615aa9fdf361048de2db14ff303297b0d2d7a7c legacy-trunk +65610 6d8d920cd93240a47cd0b226db8214773dbc8e6a legacy-trunk +65611 1a11717a154b4df2305dc3b4f9bbeb44ef3a8b52 py3k +65612 d3529644c6823ec4fac7d1b8a17490e28878660e py3k +65613 388a4be7d679a15f1f2586d801cf831652a9f1ed legacy-trunk +65614 99f9bea909b559a72f44ce491174dbd85f1406ae py3k +65615 b3abff17e2dd174d47f509a3855c58105dac0111 legacy-trunk +65616 acb98dbb1b04fee3508d31bd0c65bc321106dcbe py3k +65617 bc6a3572bc896d3b17fe4c9eeb64767149676973 legacy-trunk +65618 9f843396df898daeb36012b2298a9eeee24d0b74 py3k +65619 30135b6e38fdaf732222e0924b2398a04b5b7e56 legacy-trunk +65620 33cd6c5d1a04b1f8d381912d4a1cde86d903aad9 py3k +65622 5a15a7044e7d8d6ba8c2a9c303a071628caf4f1f legacy-trunk +65624 ac8103341b80e90205cdfb4b06cdd1ab9577841c release25-maint +65626 054dc111b1d9c11a70d73be63d763d6f37a81acf py3k +65627 6e4f47a69efa7542274eeab642acbc97aea4a008 py3k +65637 694814d7b1043c1350eb48e3ca3eeb171b601bf7 legacy-trunk +65638 0b671bce694e4897829641aeed60e48fee4e70dd release25-maint +65639 ce59dac3fca24cb6a3debc883d2a7a4c5bd350a5 legacy-trunk +65641 cf6985cb6d156ddbacb018d9a07eb78e1d4c0281 legacy-trunk +65642 7527da2b05e8a98836d39b70299178742e8963cc legacy-trunk +65643 d21d8cbe6bd4dd740ae3692cb75abc5c56b6f315 py3k +65644 0aae72f8dda904993d7e8bfcc164163e2eb48bbe legacy-trunk +65645 29d936a4f885886fd075e0466a6939013aded783 legacy-trunk +65647 ebeaa6536d328a31883e433795cf377dea675fc4 py3k +65648 7779af388aec1a3e0023225237d9e0d1cf55beb4 py3k +65649 ef41dae30f35d36ed47e92dfde893f31143043cf release25-maint +65650 eefe4450f773f2cfa1f45d494394172272a76af6 release25-maint +65651 dd7e2d68b6dddf160899674298ae807cb9a243b1 release25-maint +65652 a3393e581b15b84f919ce28ef1ab18b7758740b7 legacy-trunk +65653 b219d55404e76aa664e2b98737058131f0cc80fe legacy-trunk +65654 b8c4bf393794e9b1e773788b07b943a947a9675f legacy-trunk +65655 79fa3e0c09889aacbaa0082b62d7644f79c2de81 legacy-trunk +65656 3c8ef346692371238d1002556ab5209fbb4bcf63 py3k +65657 701516555393736f9c699ec3e6ce8238eda9e7ae py3k +65658 f0472533bfc9890635f892844777d73b872b52f3 legacy-trunk +65659 79c2916fe58e41e71c29785685c6a9d8a5cd1f32 legacy-trunk +65661 cd3b0b7fd8e1b7e2e3cb3ef1cfec702a4df2d6f4 py3k +65662 131f85bb69300c48e6d9f6da2757c2214f8a0c95 release25-maint +65663 eccd9429702e4f573bdf442b6fbbba8e9c4e94a5 legacy-trunk +65664 d78e24b12f6336b87a516b52db03dd042bd0fee8 py3k +65665 50fffc8008457a9be0ecef867aae12143f41e519 legacy-trunk +65666 9d78fd60bf2a5eacd745ae34afc846168ca8ca62 py3k +65667 0600fce678352288cdb778764372846e4de72515 legacy-trunk +65668 4f1fe8f16ef93d63f8f3817a2e69ce5fa05afba3 legacy-trunk +65669 04556e2a7984f9418169da156c4981d4b6f957f8 py3k +65670 f6026a3798d44013cc074fbd4b11e0231db7ed35 py3k +65671 6b1908ea6b53544f63d9ea1d5ea0c8dbc52a4a9e py3k +65672 70f2795d6902826152e90b8fb59eae529773ac9a legacy-trunk +65673 61d50da5816a38720ab4492e02702cea4149acf0 py3k +65674 f1260f4311ee78c8513293c2cad431c2c3854665 py3k +65676 ade33e13ec693066c6dd67f91a52d51ee978f4ca py3k +65677 e8509ac501f324d85775e404f01bd2cf4231aeb7 legacy-trunk +65678 b75621a420ecb28e923900a4071e04d1996bf790 legacy-trunk +65679 af7388ad3164eb74dddd98510c300e051d445ec8 legacy-trunk +65680 293df8153f61858eacbcb9a2c8c805053ed8c683 py3k +65681 f8a346fcd04196321ac6b3737cc9fb7877189a5e legacy-trunk +65682 633fb0260ab3225443fdee2ecacf6f8089a114e3 legacy-trunk +65683 3650b1ce4bd846410da68bf4cd42ba17c4c3f1f0 legacy-trunk +65684 60e0e09763ab60d4406c0ba95ecc5736cb616a68 legacy-trunk +65685 136f61b74e8fe9d1b62ff2f5a4794631c890c2b0 py3k +65686 67938575afc6cc6ce6857fc5d585621d75bc7910 legacy-trunk +65687 54a2db8fdc626de94e34ace4c40c7850ce0c1abe py3k +65688 0a43376baa6bf2a907f02d697cfe5c80a95d1674 py3k +65689 e961cc014619141d296238eb50ab54a4ba84037e py3k +65690 c6f0de5f2c68523d6b222db68cf1c74f5bcd7c68 py3k +65691 9233286c7ed0dc5e72b838cbce64040bfaffbcdf tlee-ast-optimize +65692 1d8171d64463ed024ebc3b61d4df88a6d7469d9f py3k +65693 cdd898433d588e30df5b986aa34527f645ba2833 legacy-trunk +65694 c057989e87eb9ddea181519ff993a8893887c250 py3k +65700 180062e33956980d55b60f43bcbd09f192314390 legacy-trunk +65702 8163daee785d40a3d7fb55ad0d9fdb140f12a77e legacy-trunk +65703 f627f80201d39fe15ef9b2ef6df13dbbb09ea64f legacy-trunk +65704 e61deb690e708402d452ea6cfe57e14cc11ee141 py3k +65705 a3f950d15c083f56add1af3da02dc1429f08e886 py3k +65706 c37f4b03637f226583934932d89402e04809d6d4 legacy-trunk +65707 71014685e0e5f5b99e3c71d78829fa94616dc03c legacy-trunk +65709 780e1703890299abaae10436ab209d520eeb05e3 py3k +65710 1702873f2492f230525a7f9061daab04ffba8901 legacy-trunk +65711 c6d78f869405d7514d4ca72b13987994d5dc9c40 py3k +65712 1ed86ce0beb266a27d9fcce2f52156ab959e84de py3k +65713 ead358ce4d8ab09ff2738bfa8fac2026e85cf6bd legacy-trunk +65714 878861515b160c9abb67ffb36b794042a49ac8ec py3k +65715 9fb10f3d0f87309e9548ce1446eda9fa557f9a89 legacy-trunk +65716 894b4acfffe40d0bb5ced674fa0a58c844f5cb91 legacy-trunk +65717 8c0f85196e37c2e11ddfc367925dbef4f39c036d py3k +65719 918a918a9996c609070ed09d43a92a7fee13afd1 legacy-trunk +65720 b973fccd02a5b90781ec273448be609b330a7642 py3k +65721 ca4c51358629788c17da150a882cf20c94297d82 legacy-trunk +65722 1d65c8f5c08e138357dda1c249f0aa0a3264ac07 py3k +65723 5df56cd5519a56947d04cf8ebd275702ac902a85 py3k +65724 2d76af7f770268a92db444078a82b9f61ec3a393 legacy-trunk +65726 b60e0928db3ec7a1052403bb28205dfb4b51afe5 legacy-trunk +65731 e0c65922b8787df8a429e5070e90d60b779c949f py3k +65732 9de68ad86078c361ab30a18b2c7676c9d57cbab3 legacy-trunk +65733 aefb8e9d3844f1e5ea8ad36cdc9c16d3300e73e7 legacy-trunk +65734 31c39a62d3f9655a72f80800471bc5f57053c093 py3k +65735 eba7457f4bb693b90c1126a705b77661255ce461 py3k +65736 153e9e6786464a184373e9ec9a0fe007d9a40fbf legacy-trunk +65737 ff85653545f5ca70f4f0ef2b2d347e7cd5ac7ba1 legacy-trunk +65738 eb1e64e535e6a17126efdb4e9028c0957de776c5 legacy-trunk +65739 5a35c963e77122ea6c349ac9e586d656199153d4 legacy-trunk +65740 d99fe56f9ff8d641c1603e761a68bd0d9fd8dfd1 py3k +65741 af4e40f893bd950d047131fcf2503ef9013a20ae legacy-trunk +65742 2be17d368a9c5b8fe608bff85e764bb75bb62677 legacy-trunk +65743 f24f26a1218675ee07421f8c337e6c59ca818d00 py3k +65744 48dddfd2fbf3bc003471a2bdab3e8acb50c272be py3k +65745 aaef08aa2a7effbac29b1387ef38953aa66c6720 legacy-trunk +65746 612b0c0e5a0f33d8b92d4af1f542211aa0565121 py3k +65747 d9d518cd493c32efafc8a3bc5251248221f84c72 release25-maint +65748 c7481c73c163a197a7f982a3eb186b6bedb10bd1 legacy-trunk +65749 435d64fd13a9cd9d4d306e43614fa4ff5d9d9358 release25-maint +65750 f4c2eaad09f845e13830c49ea87bfa35a4f9c407 py3k +65751 45569895f7b5614aad53fcec83b8db3a4d21b132 py3k +65752 ddc65cd2f0bbbac35f1df4c01a5639692452a695 tlee-ast-optimize +65753 90d049983f5b3dfe6c773699027db1f8d99d4584 tlee-ast-optimize +65754 07409e985c39c9aa171cfeb8df17615478321613 tlee-ast-optimize +65755 9c498907218fd7e80b2f321912568f32d49d59d6 tlee-ast-optimize +65756 fc1a0acfcef808bf3cf43818a55486319ee1815c tlee-ast-optimize +65757 da58333ec7da761c5112f778e55abff06c101fba tlee-ast-optimize +65758 50493f9dd8c71a4a471bcefcb59b4cf8b11499d0 tlee-ast-optimize +65759 16b9ee1eee31fa25942885a1842eb0280935d775 tlee-ast-optimize +65760 93ab9fda80ab0c4a0d53629f776da09e4858c10f py3k +65761 f482875e2a031aab6c346985fa032f392bae9600 legacy-trunk +65762 f4c226c61b71c8f6b3e8c64ab73ae4cbeb2ba115 legacy-trunk +65763 2f7e57fc1f3a666b572cea38fb314d3184086e1c tlee-ast-optimize +65764 a8f3e63b47e4242d392783e9b0147c5ab5203978 tlee-ast-optimize +65765 3de69e6b2cb2521d8fb6b5b56d9a8b0b74b04349 tlee-ast-optimize +65766 c5059b12ddc6d1846b3050053858de3b73ee6358 tlee-ast-optimize +65767 9b98567d5dde50704ae8a56d3abe09a194e8ce1f tlee-ast-optimize +65768 7a038020c8dd63e6dbad26c631c84d4a1f74d8e7 legacy-trunk +65769 cabf97b82330861e5b6510b4f2614bbced2b6e8f py3k +65770 b377c147323ebf9e08672b214d6401fe0e35ffb4 py3k +65771 e4c98d6157c70197bb4ac6a4b42cf5ddcbdac9c5 py3k +65772 71b53d6ea7a45fdb5e0db65aea15322c49481209 tlee-ast-optimize +65773 d7d7139d58406b655ca9bc182bc4931f72e113f5 legacy-trunk +65774 1d88ad5f4def3363f248517ed395081a0ddb831b py3k +65775 c36ccf2a71e16e6195fb7734d6c321dfcae92eed legacy-trunk +65776 b29df3642b97d3b6fc5be15000077dc7d814e0b7 py3k +65777 40c07a61e1c26c1ffa04dd1952b94557217f4488 py3k +65778 12c3a03389e7f3e20a7ec82b5c6522aedfe2a9c4 py3k +65779 49213d429c681a01dae0b37da9ae98b99f17f912 py3k +65780 2bebc0a6d04280d0c73267f5ddbf4792470e796c legacy-trunk +65781 06891aec41de6e69b71c555ebbc32e8231d5120a py3k +65782 195da6d0c77c1068e28ad298893d98c9d32e9749 legacy-trunk +65783 80a9ff59eb0202b2c2c7e3b52516967a48cc1866 py3k +65785 530b4cb194425a23a46ac28c214bf51ddf9c2961 legacy-trunk +65787 75658543b919bf53542833c0b21b97b87410e138 legacy-trunk +65788 22ad88e5c003a46d3481ef1e4d63303e23c42a4d py3k +65789 43fa50b9eb128fd5f702c527408793d179ca661e release25-maint +65790 552953306d342c58e681c76d8750787057e8c538 release25-maint +65791 8d99d03a06e44a7747c1d1c0f5259f8a598114a0 legacy-trunk +65792 b0c4ab8233fa9b5cfbfcbd805809e97f4e2bd989 py3k +65793 d7fbe73fe7f74478ee7275315e51a64b5cba3226 legacy-trunk +65794 dd992b6403f4cfdb8035a48afdd3356834844c8a py3k +65795 62c69d88e985d7c97a70c7ba93feeb1e56d0a0ab legacy-trunk +65796 edb5a8593749e6cec9af826b20c089b0c4302fc4 py3k +65797 89538d5fb81adb2fb204036abd37ba2c1447f321 py3k +65798 99a2ee4e3a0573c0f4c52e4a705ca87bbf51275a legacy-trunk +65799 95f1c7db8923f48bf44c4796a9a78cf97a567e34 py3k +65800 351ad68407e7ff1f4515da3938060f5167cb18e8 py3k +65801 f287beb352fe1639390fec9aa30476415fbdf57a py3k +65802 5508862a1de505c80d3b36f2f03f92f734acab46 legacy-trunk +65803 5a87b0d1ce91e18a30578dff769dceb47414911a legacy-trunk +65804 60194ab2b75625b4d329ae771fb01c00f1e183ee py3k +65805 3195bd6b6dd7cdaefbe8df1454d8d864c169f334 py3k +65806 fc90b581516ebd8a1923180d4de47ed9e4775200 legacy-trunk +65808 1a41d456d802bfe414754e62f70a1f42b1629d85 py3k +65809 211927147c606e2d7d8507274947739a4e3c693c legacy-trunk +65810 2254aa824d4da3bfe3e0951c461f93beb3e5bc26 legacy-trunk +65811 7517bdcc769a1e17500aea7b2c127853369bc8f7 py3k +65812 4207219acc7a8039c3de459c5f7332cae19f221e legacy-trunk +65814 4b4564beb6da2e0b134f93af01b4f113bd5784b6 legacy-trunk +65817 17f010517b33506052e6acc2857936767a72fe85 py3k +65818 1d29e53ce2af667f610a55deb6eaaeb779bd1750 legacy-trunk +65819 76620010d78298637fbd63d2ddb445cbada53322 py3k +65820 5c0e5f2cbc7d89c0cb0f002e70877bed6d6f7de7 py3k +65821 2614d501de9aefc17ee7850cf3c4855288ae4ee0 py3k +65822 e143a8f352417cf049cc90ad1520d21f6eb8bbfb legacy-trunk +65823 471a4a88f51c64c032310a79f1182a8b93745f33 py3k +65824 024b2b98486676cc41b4e7c76327873a87e7c53c legacy-trunk +65825 1fdfa382ae132e103b8499c7d865a762944ed087 py3k +65826 9d1856aba9f2493da81975c9639d7870653d1f3a legacy-trunk +65827 d6537a3e1b73c039bc3dfcc36101e4408f5c0e32 py3k +65828 28d93c9c3a03035cb1d3b5106c6ada6a15229dce legacy-trunk +65829 db589241e6f74c8955f56066f68f8063ccf12c93 legacy-trunk +65830 6dda01643106cfb2d270b0b5899ac87f6944ffc1 py3k +65831 59d97a3ee219e4615c60a399ce7d13159f7beed8 py3k +65832 92f4bb36637c34e829936dabc95f2c50d014d1c2 py3k +65833 8d88350553c3f5a6749529213a45da3be2475e4c py3k +65834 8a7a25459c6f0219a239ed122059a0e77ca51098 legacy-trunk +65835 e10713b2d54338d9879134a89fdf939139d238a0 release25-maint +65836 329149048b90cc95658e1321cf02f3b7f3e1327f py3k +65837 2bac0d421929e4569e9abae3527569d1503a43cd py3k +65838 428d384ed62634996de5bd744941022fc3ae9f72 py3k +65839 5c105f9a78e8e1f999cee112d32dbbc3a5778f2b legacy-trunk +65840 9a89fb58098b6ba5cfe2d2f3c518b59f6dcd4a2e py3k +65841 54138ee20e57c2e9ad2dfbc4186551c752db1872 py3k +65842 0275d81e31d09cbe37ac9b2f519f5dbbc786d5fa legacy-trunk +65843 291a6f22036070c5a03041e1992112c90c39407c py3k +65844 83f7798524f1c7019ac109913124f5b0879a616c py3k +65845 b0e3ac86cdd802a31f5e6f253a0711d30026a7f1 py3k +65846 7d64806feb15608d6af2eea9800781770d5b46bf legacy-trunk +65847 5e3faae6efc6719d44bc0edb3b27bc32138df55c py3k +65848 14f2a4cb57de043576b878b26fd50a186e2e844a py3k +65849 7c81d5aa5f417d085776852c22fcd3bd79624c6b py3k +65850 18aa919df245ab9fef118629e81fc2ff4fca2ee4 py3k +65851 94a7fb33afea52900887f7108570486e485ad50b py3k +65852 43a885844ad8d4e1516f0db2aadea10d4f44f8c1 py3k +65855 4df122ada76faf46da30a182de2b7eefa6b5e58f legacy-trunk +65856 83eb2aaa5faaa4459ca68307a263d36cd70d9315 py3k +65857 14e819beeeab8c04ac64ce615c7da3dd26e1251a py3k +65858 209a4581bd919a03546bfc9d037ff0dff8606ce1 release25-maint +65859 7f038a4700b1c0804ec3996eabc5cbfb41999c59 legacy-trunk +65860 83b2d07b475b50307b48f6af5739e16bab6858bf py3k +65861 2480622965e6008b78d5074c0872dd95efef9957 legacy-trunk +65862 7511f3e672a29f37295de53d81ed50cfd413623c py3k +65863 ea3d13cd7c1e6b6f5e4de6737f672c34e6059c1d py3k +65864 7ea805d879e1ab57cb2862188a24d11891de3458 legacy-trunk +65865 1a059aafe49f0e4b994ec1844748ede4e3944d58 legacy-trunk +65866 aa613209332d51ab6ec629b82aef0d71bcac92e8 py3k +65867 25f06a703f89a9e896f550874dad1cd3e7432dc8 py3k +65868 bd37a186638f283d43dcc5d43fac374d59e60cc0 legacy-trunk +65869 f04b703f2ddda1b117a19556b029de4f76941ff7 legacy-trunk +65870 97a24c609c2ee88040098a4c8f3b9caba02aa5f9 legacy-trunk +65871 6d22ee8c73ca348c114a6fb79322ffb4d6bccee1 py3k +65872 49f52e285a6402bcd5f9d0e558009dd45b7af2ea legacy-trunk +65873 2b829ffa481b5741d0e0481f304c0595c3f8161a py3k +65874 96a4cda65c552ffad83c3c8b5cb493c8d19ff45d legacy-trunk +65875 510919073119f919e26238def1592989f07aecd0 py3k +65877 6abada05c31313591246b2af78a0be47ec65d32f py3k +65878 f49d9314d439111a1fc0b275c3748bd2e60beee7 release25-maint +65879 ef19558455094fc1aab83c0bff04b8d1ae3c93e1 py3k +65880 4b880645607871c005f909aafe210eac8d0fdb67 legacy-trunk +65881 c7823b351fbcb75640290b99eb900fa2ae9e1b62 py3k +65882 82c696f0424a47e46a8a3a8b40c885158e0d851e legacy-trunk +65883 99e783ec77815871c67acb2167c67d9d641c22c2 py3k +65884 c1a7fdb24628f243e1cf32eb01741889c32f3154 py3k +65885 504e6d030e84c7dfc459f4eb626abba6b4ef2e53 legacy-trunk +65886 501256c54c84a64851e8f67e6c9011c3e5d85256 py3k +65888 f7a6396b496f022ac995686ac5d19b573db3ef2f py3k +65890 e78024af0cf03a47fd97585f914436f8f2229f30 py3k +65891 a8f98a7273712122ab9e74cc7386e5bc73b07787 legacy-trunk +65892 bee400336fd5c7a043407d795402dde8ad8aa224 legacy-trunk +65893 abde4db307a59c561183de7fefcd03649c24933a legacy-trunk +65894 1af21123690430de07012dbd0815f29a95ac723b legacy-trunk +65895 8f2156b15bb8e690cb436206791e1f6f639156e6 py3k +65896 6cd7b18bb742a36a2c54fce15e85f77c701146f9 py3k +65897 3a11e79b94715ddd710365a398ef61275208fc7e py3k +65898 0fe6cb0c310d729dad50b365cb41ad61e8e18da0 legacy-trunk +65899 6d6d3e0375503cd25be72736c5c6e585f00ab91d py3k +65900 d42629185382eb3d7cfda1a70af38ab34a662e59 legacy-trunk +65901 c125e75d21a048774f65c5a7c84e639173636ac0 py3k +65902 a36b6c1cec56782269671846df6470cf7434080a release25-maint +65903 e894204adfbdaaa27d0539ead159368bbc250564 py3k +65904 ae5b73c52097e6a3466fd5e0efe48b190e7ad715 py3k +65905 51f2f8fee5c450d21ff6ac88015e75768382f011 py3k +65906 6cc89c60f74d6b9765f76e954a753330777c97cb py3k +65907 4f50228231990ea1deb9b89376c0a08560f24ba0 py3k +65908 67cb33880377bc3ade1a58c8962d6ae23efe5056 legacy-trunk +65909 11e72ebf906aefeba6d813f527668ecd9f7cb333 py3k +65910 1be7890cd75978016efd7589ec64cedfc13c08d4 legacy-trunk +65911 c03024db801f96ad6594017080828d3b740c4054 release25-maint +65912 040d9580500cdb67239969860a38a9e701d14d82 legacy-trunk +65913 e99614ca0204b7e6031bfc227f88264d70aeebbc py3k +65914 1cb908a043b3f0f9383977e597cf4a6eeb5c0141 legacy-trunk +65915 7608afe11fb96049e7e416fc0cbff4bad7211b1c py3k +65916 8133fbb7458754a725e672503603bb2ed48181e8 release25-maint +65917 b199f3419e65802b9dd672bdfd798f16b60daf70 legacy-trunk +65918 a19d67d77b22f787be165c520978e2b6b99da629 py3k +65919 88ca517546fd02357cf7233dc947be0cf3b45157 py3k +65920 033d63bf708ea2ad41c52d4b84146da231fa9c68 py3k +65921 013d4d8407cb9f68e7656d11f62b7918a9521e45 py3k +65922 c62862d73f9ec64d655494cf1f61443446f2dea2 legacy-trunk +65923 73164565b920e20596d33a993b99ed7a7937e765 legacy-trunk +65926 27d19b66503579d8b3a41e52acab90799f2bb3df legacy-trunk +65927 509e30a7968e01be329ec121540b3e755fc4e566 py3k +65928 c411cf6942896cc216089a6950646844322f2ea4 py3k +65929 01b9e18d69ac449ee959ab58a1a1a9fdcf8b1b49 py3k +65932 a0abaff97e001a4b90e46df367d7f12ac50db9ee py3k +65933 959d1aa8b58aebe32630ef02bd42aeafef19633b py3k +65958 57a8735647cf8745d0b632650ab4844300ce6483 legacy-trunk +65959 a77022dc3f61d221d158fa9817f40f2527acfe30 py3k +65964 e39d44adb61806c9692c3c0e0a23245687a7534d legacy-trunk +65965 a8d69c1a3f4efd38768a3793863bdee3ecd7266a py3k +65969 4faabb18562c63d726d56a7c0e0cd545d9f09607 py3k +65971 4b1f262cebdf40032719f2537f9e8b0f10eff734 legacy-trunk +65972 2dc6469fc4c4d4b3c6c738f894751c34c83f12cc release25-maint +65973 1944d31040e30661b3bc6dcc9bc038b04cc33a5f py3k +65975 afbfd8f214dd1337d6d175c8cffafad2e7a501f1 legacy-trunk +65976 2aa79ad4eb852dddd6a7aa5a05277e89f07a7908 py3k +65977 bce03f87f65db1a1044a14c987ac8a0c090f5316 legacy-trunk +65978 46c1bcc4c1d303740553ab6864bc0af52d86315e legacy-trunk +65979 d952e753c611f75aacdf5752c5c34e565034923f py3k +65980 74899e6c87a5c5da6aeb9c3e5e8182597abd04f3 legacy-trunk +65982 f970a4f7560ffa20e94b55a58967ddd4faa89f68 legacy-trunk +65983 e3e507350ed4d4de88f1da143da01624386fb1f3 py3k +65984 204431d44cdc49284c1c3cdd815be7edcf4f5996 legacy-trunk +65985 cfd79a4c160433dd54856c428efd341d975cd118 py3k +65986 75f64fd1f113788bec4fe7ecea7dfdb8ebaadf1b legacy-trunk +65988 65b2dd46e1711897b9313cbc8841e973125d8e2a py3k +65994 b521383b81a715715eaf789573d99a753eea6b8c py3k +65995 969edc3b707f3bfa843b157962eb2c49948afc6b legacy-trunk +65996 e7b85890e9b1073504d15dc130b25199e7bf6dc7 py3k +65998 587cd4f66c2dcd95fbc95141cfc65f71f5b852ab py3k +65999 dfe546b66eefd7583ad516cd672a0714dbec61c6 py3k +66000 76e71cecc4d313cbc0a6f3e2533288159e876013 legacy-trunk +66001 07ec72cf19c7d61c8a2d2680ef029599dddbbeb7 py3k +66002 7bb1c60eaf64f59e5bcec85f6266f42f6f7276af py3k +66003 85c08cf08b2b5eef753d4edec3bf1978d407de2b release25-maint +66004 e14552b7317bcc955943babdf3592306e4b2e018 legacy-trunk +66005 682e9a42c15d53b40f02bf34b2bcc779963e9144 py3k +66006 b1682c693b9a15d879d675521f61d5dd3d97a743 legacy-trunk +66007 5c75a33ef5b2763637d8883c5d1ca6c5927ce4e2 py3k +66008 d2ba36a7a712745cb8c5701374efa26f7ea8a961 py3k +66009 afb9808b0f30fa25b3668c7485dcb21b010e0441 py3k +66010 a2720353f0d349d741e9b58ac23d2c1c2ae9c5f4 py3k +66011 984e1c6029792c9f294574aa6d3c566823a161fe legacy-trunk +66012 2a6ae7e8c7c36e033f20baf3596a6f6b6b312d2a legacy-trunk +66013 6ea1a720b057ee1bc8ef169e0543bc2761b338d2 legacy-trunk +66014 70edac890f2b6df62dc9308f7e0514a8db3cb87a legacy-trunk +66015 c0019d45551dc750c7666f2309837b1d5c78be51 py3k +66016 c95f387ed1f426ce6521c08b659f6b18af323d7d py3k +66017 58d295e7800f7a4f2fb7a2f21f5ca1f98e30a25f legacy-trunk +66018 de954dd6797b6e67945dae7199c7b121574afff9 legacy-trunk +66019 8811983dfcaf8b226f43673d3d86450561dadc65 py3k +66020 1a4922fa516065921acd07487fcea22fc753b9b2 legacy-trunk +66021 678a0f0e61bc5d6bc5261ec73b7a551426bca468 py3k +66022 2a47b3bb11fd8bd9ea98f2e6715703d92029fb6b py3k +66023 df624df6efa3cda041ea4c4a30bfb95fb4d8a54b legacy-trunk +66024 3dc4dfa3eba168cfba4016f9bf7e039d8c342367 py3k +66026 6fac636133f0106ee4a29e148625a25a059b6185 legacy-trunk +66027 4fb7e7b2c962ac0869b9ad4dd25baf0bc58668d1 py3k +66028 9eb0cd30326d8b6544bdb0bbfbb95acbdb85ffd2 legacy-trunk +66029 dd177f576be8a95e6e1c8a8a1ee9a9da03b0527b py3k +66030 5a20593a818fc232abcf62353122f8684f4109e7 tlee-ast-optimize +66034 82f73b0b5a308e982c50322f9fcda3973b9f2842 py3k +66038 548dccc4008ed934bafad5f7b710ca42dbbb21ab py3k +66039 edd2ca894a67dc6b4f9cc92d68fa45a775950336 legacy-trunk +66040 03c23c50654e5e3a62a8fec6f4a7fb4d1b21cf6c py3k +66041 4db1f5098175abcc56ead6f05d8921b5c3e4bb2c py3k +66042 d6e86a96f9b35089cb2a9746073d05c8c0ac6e05 py3k +66043 d01c1d7688415340e32b6b7317fc1f96a78805dd legacy-trunk +66044 12d2762076baa611f769bbe806fedd2587605fee py3k +66045 c42bf98b260f35204684387256247445e0253605 legacy-trunk +66046 d9fe29e95d6015b783754c42dab773711a8653b7 py3k +66047 de6fb9f34513275d636f5012847c36a36c5ca19d py3k +66048 47a801c29f13d48e6c0fce74ff99d2347bdbe24a legacy-trunk +66049 aa3c90ce1932bae77ca9a648d811c8131f973fc0 legacy-trunk +66050 fdd1ee20ab86b09807d19a447810dda6f0639f6e tlee-ast-optimize +66051 f27ccfdea834012038cba0827b36d747b5994f7f py3k +66053 efc49863cd8ff9bb39d136aeb5e8bd239d01e27a legacy-trunk +66054 47192d0b731f10496f3e6232d99b65a50cd6c937 py3k +66055 6ceb7c89e776ba924499769c6969b5e3b067a019 py3k +66056 c562c8dae49a605870e6e8aa6fa7b8e2ee917cae py3k +66057 27e142d99a7173936a658fdb03cef88c1267db86 py3k +66058 bbffe0914c56e610f118e13beaa079b1918be192 legacy-trunk +66059 0c65c802752a2b820d3eb3bdbf0cc65766621bce py3k +66060 a8c53580c5ec47225c18f4c51bafe1c3db4ab13a legacy-trunk +66062 30834b9aa1937f1ff82d487741313da85052a0a8 legacy-trunk +66063 013138cdb873b2ecc17fa6b414cf34f4a734ef8c legacy-trunk +66064 03e216dc8feccb91a4127426038ddc740b170588 py3k +66065 56ed445fa61e6034d43b29cd72519546f18b3bf4 legacy-trunk +66067 96bc5896a240551cdb76436bfcf7b49741b451a0 legacy-trunk +66071 a2f2028b73ed3abe568ab690b46a0c4be9a48e0f legacy-trunk +66072 84bdd53e3906486deb1c16ff1fe3857324ef17c3 legacy-trunk +66073 960589d2a12d9ad4378e577c71fad8cbd6de8b09 legacy-trunk +66074 fa7b61d2bb3d7cc7cb781e60fba9172d42e4d4f5 legacy-trunk +66076 11d8fa3c88d8e83681dc3aec41bc61fdf81ba07f legacy-trunk +66077 48c5eb513370d8fa8d4e2e49d9c57a5a447660b7 py3k +66078 b515690b379d7ddeab5283ea3e0571c3300a2da3 py3k +66080 f67963cd43953cc1d9ee050a1b15ac8c4278ef9c legacy-trunk +66082 a1d9e83bc76da3aee27da4f97dde2da90f8690a4 legacy-trunk +66083 eb134eee32322600373f548f686b35bf90dc0784 legacy-trunk +66084 36ad5e7e39b4fbd96cc19814edc7e706a225aa13 py3k +66085 9c175f8860e23df36e18a0d3182da0eea48d08fe legacy-trunk +66086 221de139468113cf589111d8473264c2bb13f843 py3k +66088 81a1a15451722b8195f5774a6dc94dc553adfc31 legacy-trunk +66089 5da6f21cf8059421d1d246484cedcc4f8dd55bfd py3k +66090 fc11a904f6cd1790af920e846123981345e3b9d7 legacy-trunk +66091 bee6eb7677427f83da9566ab64a4ca70ec80e3a1 legacy-trunk +66092 624b44b7cdf292184ff7401b80d67554bdd915ed legacy-trunk +66093 be63ec748ee064a206f3accc02abb1c147a2fbc0 legacy-trunk +66094 7e194b9cc0a2b4d1f24d0f49cedff5cfb09fbbae py3k +66095 b4c14b70fe0f8199ac4bfd12969fbd663c04b3e1 release25-maint +66097 7b39501b0a76247c09206d70eb393e9b083feba7 legacy-trunk +66098 13fdf98ea290013072e76a1e0972883c420c86aa legacy-trunk +66099 176c409fd747e812a0672ddaa8dac0001af056e7 legacy-trunk +66100 8cda615ef22bb748e0ee35944814ed9af983af3d legacy-trunk +66102 5fa0d31a671b7812b0cef4e393762a63fbf1ce60 py3k +66103 576441527d4f7cc3db70692d3446a19a22b11891 legacy-trunk +66104 ed59f3b67b3ae3c11874b875eb4c2e39e6843f7b legacy-trunk +66105 9db3fe780bfc6a1020e846ceaf5a80c0288d2ef0 legacy-trunk +66106 925153225570c3b8e22ce5891dcc9b71f44693b8 py3k +66110 519e0475991f76b81d53015847563103959a6f95 legacy-trunk +66111 696f5d8419f209395b3f621723479ed6509c4eb0 py3k +66113 7ecec1b30c3f405317105fd835d58f0142c4b3e2 py3k +66114 988661ffd1029cb037f624fe2448c108cf85b9ba legacy-trunk +66115 51f795c9530ec0bcb4416e9a9c6c0abd3055a1ca legacy-trunk +66116 a5a071c80f2d25294e1b4723419502c981b57429 py3k +66117 12fb3626ee59f18def827e05294d121634b184f3 legacy-trunk +66118 37a9f690a94a9acb392327516e4323059638545a legacy-trunk +66119 b5365f34640f2c664c192294eb60355291fce7ac legacy-trunk +66120 66e1afd3345fdb0bb4c1f97a9d14d0c1c0c818d4 py3k +66121 16c03f7cbc221f9405c1359bb2a73ffd44f22892 release25-maint +66122 32ce402a7e3df20c0f5ce50e9354874b240dbceb py3k +66123 e6021aad2de2d5ec994f6766102d1e5b128ee5e0 legacy-trunk +66124 680b076d0c13a03f334a6749fa4463a5e3b11519 py3k +66126 4fc480be1e4d2c678a392d43a39a48762f19f934 py3k +66127 bc585b4d4606b52c3c7e51d962e5ff178f8c8b6b legacy-trunk +66129 9ed3287beef18a4b7baba04101dbc22dc3afdf8f py3k +66130 aba8598c785ca53e33621d0a8aa4ba364149cf20 py3k +66131 236fcf2939c7d5238934c6e0d83005bd2d1f5d14 py3k +66132 3b9608118f8d87b8811b37a46a07490952491ff8 py3k +66134 8a108d54ef03caa1b8d7ba820762df0aeb354b05 legacy-trunk +66135 d563621d76db4f94e745ebc62b92178ea33db2cb legacy-trunk +66136 cd186306f385ac8cfbe61879f484cb11bff09d54 legacy-trunk +66137 8c4f750661ec3944049f0be50520f4d0718981f9 legacy-trunk +66138 4c1770a55a85e5da333e7e4ede0ae1304cb588cc py3k +66139 caa41e161b0411f406c73e18e88cd87f17593b49 py3k +66140 3bdc46faef4da8b06d07295ccfad8c072c6c127c py3k +66141 4b28bf5ee393b43ba49bb8e855c9d16090d657d5 legacy-trunk +66142 99ee3b77bc0db2f2ae2a3a87b105843f00501590 legacy-trunk +66143 1897743b315de2af54bbca708c2ba2175010eec2 legacy-trunk +66144 4da4f96796725744fc2d487d2f525ec34344bfae legacy-trunk +66145 3779fc9dfe5f73890aaa46e3c7ef12e4e06fd900 legacy-trunk +66146 38889cb45188105d71f839c536b56cf431af567a py3k +66147 7a6e6a04e28d1492ba11c0793cd88e49d598a9b7 py3k +66149 d83ce4b581e6156d3a7baea0161db4a9b4fe9828 py3k +66150 d0d53de9d82e2f1e978c0551c4765e372726f584 legacy-trunk +66154 3817c96fd5408a0b3f416e7d632eff68a6d6879e legacy-trunk +66155 1c14ce0854151ea04e1631b66c194aaa6af35f00 legacy-trunk +66160 ba5c4ce12bbdf16d594e02684b2fac191cc6128e py3k +66161 750da2d180892ea98b2e0daffe0e3aaeb3767a2c py3k +66162 c7fd0e881c45303ad9a412903ca611082aef4163 legacy-trunk +66163 88c93a9b41373ad1ce2a68911e83f6471a72bc3e py3k +66166 3b74d1462e3a0f7d4d632a50922a08386526323d legacy-trunk +66167 f1ae69cdd4ffdbfab67ac608c33ccfa4907faa6d legacy-trunk +66169 d826a75571bc979f9d05979871887d2222e5d999 py3k +66170 784d24a5ce7baccf97c438b394e619ee0bd1c916 py3k +66171 2d80d00b1ef360330a7ce348478e0626f839a37c legacy-trunk +66172 3bd9002e741ffc30662b3e80b94f9a7117cc2193 py3k +66174 e2edc1c11e507744295252f02857a32ced64a28f legacy-trunk +66175 6356a5414d019cfa99c443d4c347bb984fd23018 legacy-trunk +66177 bf043d0db7dfc9fa97aabb55d2498223d78ffd65 legacy-trunk +66178 75c5a2c9376e9b45d641c77113872570e0df4846 py3k +66179 2a60f7b42328db14a2e97b48950cecb8c5d4fa53 legacy-trunk +66180 5fd39b84fc292c9e506fbf0f40091244f2436313 legacy-trunk +66181 4c683ec4415b3c4bfbc7fe7a836b949cb7beea03 legacy-trunk +66182 b9ed14eb9e87bfc6af7d3619a5b5674084c0a92f legacy-trunk +66183 0f6930a433628c7b55e1a34d8336defef4d7a70e py3k +66184 338308c9cccbcaf70b2c305fa0ebfad0ab6c10c0 legacy-trunk +66185 06f54e11a08b4ab501a1097db7d6177465834a19 py3k +66186 22ab106e3186b5849460d1ff3f969b24f7033e14 py3k +66187 f83dccf417f0da6d3d0675a25df7c94247735518 py3k +66188 92a01fe24ae0641afed1a9e42ef83fd1e8113dc0 py3k +66189 6154516be49cdc94fb3ba9331a282770a0131f8e py3k +66190 14fc16926c03fc8589209766be62edbe9817ceb1 legacy-trunk +66192 01f2dce06f7d102fb9d432633a735a95e6317afa legacy-trunk +66193 e6c7b6fa0771e40b87b073c27f9e2b3e672917e5 py3k +66194 a5386101865b97e0e3873986bb469bfe6316f1be py3k +66195 177e8a61af45c5140de06b762335b6018b5cede4 py3k +66196 2b855a947f0f5f60448c16bc495bb874f711e9b1 legacy-trunk +66197 e0ab5b28612456ce78f93a6d4d49a83e865646e3 legacy-trunk +66198 e7bcfd720898aba42579d2ad9572148464e70994 py3k +66199 65e23683c010c3da4719c159035b2e68d2117cbc py3k +66200 e3847e7c24e032e4a14777a8c8fefde1736c9d55 py3k +66201 9957a36fc167eccd373cc6d9091caabece6c9256 py3k +66202 5b7845ef4efd0d9abc4aca5ff9f7fb5335694053 py3k +66203 c53234ff61b00f4dfea09aaec003e5944839e570 py3k +66204 812ea105b1b0ed0b9f1130582ac6d970d2ebd9e6 py3k +66205 f71a8928c1b7b963a768b431094ab7e8de6875cb py3k +66207 14249bcb93d0ca65d9a8a4b6dcb10943b417a61c py3k +66208 c5be9484b14bd07af4e8d463ab8a7ba38010e98b py3k +66209 45c43808979e957636ed3d90f1421a9092020ea7 py3k +66210 dc774ce01c1fa2b5932265ecebef9b09d47d91f3 py3k +66211 833d3ecfbbf09109437b036b4684820558624550 legacy-trunk +66212 b26658476d5559f031b943b82bc09f9b960d6b5f py3k +66213 3169236773f1b75b31dfcec285076e4e911a05d3 legacy-trunk +66214 2c2bef8ffca138fdd3b1b1f31790b0152fae05ab release25-maint +66215 5c10af8d33f5cd2de32dc150c02e1d15099c5e08 py3k +66216 94cc11ec7ec202e3364795e728aadb6953cc0f1e py3k +66217 5b76a3e45ab3e01b79aceff4c0d0c3a12c7626cf legacy-trunk +66218 ae2c1b275feb3aadb2e24457237b35e8df792a22 py3k +66219 4452ff1fbc9d51342c2d5cf3e51d1999c8f6ffd3 legacy-trunk +66220 b7573ef24c719ec15bfa3512322d4302946d1aa0 release25-maint +66223 7f8ef98294bc11c375ce62bcfe34beb96f8ccf89 py3k +66224 3fa066d2a397dc70854aa32d81723e57a60c224d py3k +66225 6b04bc42baa5ba7a8d76e3e25adf979f51039dce py3k +66226 c6183a89880e62813b4d4cdb6bf7e7c5d7397421 legacy-trunk +66227 fdd93bfa6c1ba5e75b890f98fe077c9bb41a0e94 py3k +66228 a6620343e3db47f8be6f26240f185df28d04edd0 py3k +66229 8afa7723afa76ad07a3814868f48dee7e0f7b563 legacy-trunk +66230 b486649ca8bce2017a2a32849ebaa7b3fbe05240 py3k +66231 89a9bc18586a1732f1ad2148de507642d16ea249 legacy-trunk +66232 b45868fe489cb2393fda0e14530a0c8164986640 legacy-trunk +66233 e7e70e881160bab33948ceee0d7ae9a41369cfd5 py3k +66234 a677d68e8105c9afdd8a42e3d222bf3329fcbb1e py3k +66235 433220a60a8d0350f406e1b15f0712d9b7b6c151 legacy-trunk +66236 97b9f0be9385249f32b6662bfeff35af4daa264e py3k +66237 e740969738ef1f8af5fbf8ec85409149425255d0 legacy-trunk +66238 ecd7f590e142479c16eeaaed7b5f75c8c239937e py3k +66239 dab7abb77e8f85532b27b6c4cf367be7c767ed0e py3k +66240 f32517f876b67c1c5f1c8f21418d9a44cf1ebab4 legacy-trunk +66241 26bdd94a4293776a077db1410580895d8041ac1e py3k +66242 c3b811214ce8faad01868333f2cb4b0a9bca6a90 py3k +66243 238a089d42bd62e0876e9c3b05dd03ad294aa112 py3k +66244 dc0709a2b42f577234a86280f57f5c4e249016ef legacy-trunk +66246 4882e4c41ce3efeb5bc2f353aa8e7d5934073624 legacy-trunk +66248 19338247925fc4cf9ce3153c267261d3e2eadd40 py3k +66249 751f1b5699bade4e80657a8118a8d1e8a0916b94 legacy-trunk +66250 12ef7a92e59bbb245d8c9337500218d4460de725 legacy-trunk +66255 662336d567a9ece6e1b38af4155c7c13a624be07 py3k +66260 6e71b398b6ccdff683ac12001024f00efbe64a96 py3k +66261 f8368142f8d3b429f11c84ac99392d103c338eae py3k +66262 15df29705e182a127629f646cece2f4d02c9c860 legacy-trunk +66263 4dd59891438347c584436f858da45e4101b48f12 py3k +66264 67028f5b3321cc3e9523d1570e3c17f5e9a7c020 legacy-trunk +66266 c1a8f6b648ea51f1ca9a2e57d6251af3ae9fb930 py3k +66268 bb0f7428a1507deba722f1aca99ec2b2090ce3f0 legacy-trunk +66269 6746c6bee286093c31edb890fdbf23595555930c py3k +66270 e27cf7ee2968b3fae90a3ed1dadf4ecfce2a5914 legacy-trunk +66271 ca1a8ac47d0461d132a734c3125fbfbb0b691d45 py3k +66272 445ce6575162ebd3f994af7b16007e02c8fa29c5 legacy-trunk +66273 8ffec372040e47a9b2607021917745ee74ba68d7 py3k +66274 179f8d89ad19a6ba4f44a6edc9fb5fe1e87faa44 py3k +66275 fda689970b3f828a6da2253a4bcbac2b63600647 legacy-trunk +66276 02627b925a43c7194b5824b1b10adf9be1c8c881 py3k +66277 fdc0948c95cf1979b05026b9096ac48219ba69ff legacy-trunk +66278 13955bcd08be1a5aac2575820baf986a2fe0bf61 py3k +66279 77e1b95f1418b131d43b1bf3b6e3beb5dacb1faf release25-maint +66281 c6b02f79b2bc3a35609cbaf8b206134ca2bb840a legacy-trunk +66282 2ecb56e6e0a6cd132aa91140a42752d756597e77 legacy-trunk +66283 7510d873b88c3030e149929ce28f3d69ded61158 legacy-trunk +66284 3f2c4ce32ba47a2d38a4122f9c860ec789712bab legacy-trunk +66285 90cfc6b926c6f544b4dd6429f67a02bfa6dffb0a py3k +66286 4733d84f3488b4de11fe50b914d33b20655e6539 py3k +66287 73536a58ab4261d2b5b776cff28fbf590695794f py3k +66288 8cfbb2e275d9c9154aa0ec2b1d525458e58347c8 release25-maint +66289 987db7af07002a12c03ebef9b2a01d4e9be2c618 release25-maint +66293 523d6d7e5825c27ac063a7393b9e1141d34762a7 tlee-ast-optimize +66294 3af6a702070b43a4ea4d455bcf6e53b64d43de34 legacy-trunk +66295 a1cae9555f5df82859c7ddb65cd733b43419d226 legacy-trunk +66296 2ab0529237cb1a50008a8c0458056b84b92d396f legacy-trunk +66297 2611e8ae238fd6f1ce63458bcba13a5d0252b3a6 py3k +66298 d794238150d22fc4aaf103fe6724b579dc4c94d0 py3k +66299 05e25d7a07e1987f55c1476d8d0855a1d3895224 release25-maint +66300 a9347cb8ac380672dab260488c6c184ea848a7d5 release25-maint +66301 7b1f8ede9b5343e8cf469b6fbd609512f8c26f0d legacy-trunk +66302 f085f39a6f4d12231e6d669fb872cde0f496c155 py3k +66303 271dce0917c105754c02610b359c30025beb8119 py3k +66304 aa0ef5de345a788f7ccafd240e3bbf14618ac717 legacy-trunk +66305 568ab5837194d899e11fed01c2705cbc1a988a5b legacy-trunk +66306 fe5362d9354258e1919c90d0668e04350e685825 legacy-trunk +66307 d61b956b0bf644c309f0df285678acce2999d4aa legacy-trunk +66308 de6eef31aa5f7298e1aa7c83db6619edaaaee2bd py3k +66309 50941beff0328b4f6b265a031dac7e787265c6d6 py3k +66310 37b70cd4a0f0d10ff988a07f052dab5b4b08afe6 legacy-trunk +66311 ac3b67043361ea629213ecf2853664bae7f4bf45 py3k +66313 bf4bc973e2aafb338ff707a2cb9ee0d6182b05b9 py3k +66314 44702e2737506c527bdc3b1c50a29893f0da503f py3k +66315 c8713fb05f9e4e834318e54a5d0d65914bc37107 py3k +66316 973bdb2db6ac96e270fc532c76198d3dbd7bf3a9 legacy-trunk +66317 4d148bb84a077b2a9fa3734ff4d3e36af2e66580 py3k +66318 86a42e9f73dc219301692a27de5ffc37da288d2f release25-maint +66319 23b452ac1a50a49fc49c7201fe75f9c03cee8f2c legacy-trunk +66320 964db879f190e9dccb1d6f5dce7107c5d1544162 py3k +66321 ff96a313cd1c839ba31b354231ecedadf42075a8 legacy-trunk +66322 3e6e565ee30adcb5ec03a580e7fa198a24da97e2 py3k +66326 c46bcccf2af2e477257495d9ad5a6b379709143c py3k +66330 b528cbea60e1c515f080269d4a393e408a68714d py3k +66331 f7123d45d0c43e9ae0e816a6078d2d0d153b351f py3k +66332 974040c8f3696110749f903496672e3957190ad6 legacy-trunk +66333 f6650f247598e2d986f8620fbd43a17c4c36e31f py3k +66334 7087ea828dda2fb5927042c54919662afd5064f2 py3k +66335 0f4457cf25b2ceba098f54bb8c739a36ad2e9878 py3k +66336 756637a3ac4ba2610140a1e43df043083ee373b0 py3k +66337 36b2d674fc8c53fd4303c3c4f4a7a155c5dc5b57 legacy-trunk +66338 cd61d54fc8c064d73671816a961473c6a29b62d2 py3k +66339 29094842b3776a9f8be9c98663bb4d60d60d69f9 py3k +66340 a90b285458ab017e1fe274f3449b6933307dcb1e py3k +66342 139f6baef6c2308313a142f75a63a1d24c83e6ce py3k +66344 4249e58397ef01c1f2e2a7c280d2a1fec6e19aa0 py3k +66347 6f08278bf8b1f5ea987ae5591a98bbdc2eaf69a4 legacy-trunk +66348 dc0cae1e6adb1561940dd0b68796839133a5d02c py3k +66349 49a93c02a6d21317fa5261f5d345b79d67e284fd py3k +66350 753a76b3eea91dd19ca89b621cbbe6dc46951da1 legacy-trunk +66351 5c03881c20755152552f6a28ba552fded3524bc3 py3k +66352 73cc7b6355b8176a95b55918589be4efd6be3fc1 legacy-trunk +66357 dc19a1b7c5a6344805357c768bf5d5baffc397a1 py3k +66358 2c2e3a56c7bcc86723c14da8a9418ad3e46bf4c1 legacy-trunk +66359 e90a3f0a9928ad3eb4ee7eac9620e5677d7794ca py3k +66362 c37c7dbd7880db0345ca7e97a226b11cbf4c85cd legacy-trunk +66363 dc60293b29d5119bf6772996ae754d10db2c9a9e py3k +66364 95ac698358abb34d8034e4df7bec4f07e4b5d892 legacy-trunk +66365 77565be1b95770d1f2644777e88da4b3869af4df py3k +66366 513266a75ec31e11e3375de3637c28fe50736275 py3k +66367 f100efca14871bb821a31aec8dd9d1b025bddffd legacy-trunk +66368 25f14128a97c18e44bfdf4184bd9718a857962cb py3k +66369 2ab85c392a8dae00a5e171d8c6ba0969e247a50a legacy-trunk +66370 dd96144e6e81fa4e6cc58aae07035a894ccb1d34 py3k +66371 f97779262bac1b35eda300b6e7fe270ac072e16f py3k +66372 af40238a68b95ca083a7bbc57d478904621f97fe py3k +66373 589073cee0ae47a66a10b9c5ad011e21e7a203fb py3k +66374 348a33048ebf48fb5072563f86be7442f63c7427 py3k +66376 17475eb55067ac1d1956081df2cedf61501441ff py3k +66377 145449109a31ca16b34b79e298508babb4361e0b legacy-trunk +66378 6ae2d4b507a252f61d4324082dcc209ddb6cd269 py3k +66379 a4df4903b355564f2a47e5219c4587e3d7545887 legacy-trunk +66380 d27df083d4e674d972e954c44d78f63d76ce25b5 py3k +66381 51ff934562c23eca6dcf21eceafb97b5bb3db819 py3k +66382 87531301ba48c87e28cdbdeb105bbf1fee47dc93 py3k +66383 3dc31809631fe17915c566b41226e82dc6bc3c9b legacy-trunk +66384 96d6276d80e23246ba012431d07030605482b5ad py3k +66386 f28b999a69f83b650371f57ce4319fb374ee778a legacy-trunk +66387 89c2a697f772f0fb65fefec4031c1de03a4b6ee6 py3k +66390 0ef7cb35b21672467664fcbc3234ea1de2de466a legacy-trunk +66391 4cd97f8de69e20a9e645fce8b36e4299a3dc927c py3k +66392 c05f5abef78ad5252e2beda8e0d13e97ed90b7e8 py3k +66393 280347d2f76501e239445de6f15ccbab57fb443e py3k +66394 0fcd4db23dffeb39c54c6a2c1652173797cb201a legacy-trunk +66404 ff15e62a349b78bd789eae5b17be5977014c59ab legacy-trunk +66412 4c77d1016f60af4526c33cbdd393aed7eade543d legacy-trunk +66414 76bc75772736f32e9d3418a5f1f31575da80f3aa legacy-trunk +66415 381ecf46dfae44b83e3b8db4f10cdb4a0fff41fa legacy-trunk +66416 1ebb2a8cc06c94471d72b5476c2050c4d115a1aa legacy-trunk +66419 4f7de1ca92ff80671ea22a583b0b9a9ce2614835 legacy-trunk +66422 738ba8319f49204e49619cb5ec9a573f7b615f51 legacy-trunk +66424 c8d446ea96dabd3bb4dd76657e6d92ae1029ceb6 legacy-trunk +66425 0932b9baa7a458f35cd71ff7ef70af9cf981c173 legacy-trunk +66426 bb3d1bd1e2933e7e11ebddb9c9b1fbb203f970a4 legacy-trunk +66427 e7c2800b23bf82b56939c3cbdd9f73a10ae21304 legacy-trunk +66428 41524f9e2a2f9fb859c97a3c1dd13a559280f6d2 legacy-trunk +66429 5ce01438baaa595cf9152192beddd605570f06a0 legacy-trunk +66430 596a1ad8feb61b25237c9f7d226b7861ca2e903a legacy-trunk +66431 742671c5d7c95c65abd3a0e3cd22b7a7cc4e208d legacy-trunk +66432 c0da7f2361ecdc385f9fb2d21d959537d477170d legacy-trunk +66433 05136293f0c8bfd5cd28354629de5c2cf7ea221c legacy-trunk +66434 c3f0f97839e38277ef5c9512bb9fcb0f1ad56b09 legacy-trunk +66435 52ef95bdd801e44be4ffba2b5507aaec7ea47c25 legacy-trunk +66436 06f323aa72c4950780be164cc8dc85c9eb508a44 legacy-trunk +66437 6709ff8287d98784aa41bd9666bbbf1d85e01680 py3k +66439 6665ebff64f1f2c206612c08861f57df2dc87b38 legacy-trunk +66440 1eaddd2388cc27471fb4023db07f18c37403cf39 py3k +66441 1af16970dac3fd4565defa2328911c82b76a54bc legacy-trunk +66442 d406983ed9279ccc659c86fb2ca1d0b0f478660a py3k +66446 8f886acaa142ccaa9d9b62288620cb1fbb459d87 py3k +66447 feb7bde1a4d930117086a2856bfc0fa9662df7f9 legacy-trunk +66448 c87b84db244cf630e303709736cd8dff17a2a521 py3k +66449 095de5b929ddbb564df9554975e102f99ba0e9c6 py3k +66450 75b0dcbc3cc718158890332eae4ce73454def217 legacy-trunk +66451 3b048e31dd9e77abdf6bd59892dd1187d25c6751 py3k +66452 59db4b3a06b01b52f78c4e749bf8237ac47ded4d legacy-trunk +66453 56d5c03b92b6cef159eaf7fe3e4082ea492aa68f legacy-trunk +66454 47db62bf6aa70d8e8f5abf9e0da5aa9d6e9997bc py3k +66456 62700bb7f7b5909ea78cb0729f59664a29255221 py3k +66457 2c5bb4634d2d9ec6a7776526e1d5f59a40b50cc2 legacy-trunk +66458 f99800166c2b73e33b722bfd35afd785e003351d legacy-trunk +66459 cddf5d6476cf127b896f423654668abfa93e0781 legacy-trunk +66460 e969232054a2c38b725ffcbab2b48fc042fcee93 legacy-trunk +66461 6929b74272c40ef5323cb568130e2bfec23caa0e legacy-trunk +66462 62e5f73d05b49f427d6bbf5a8518bfa456932d04 py3k +66463 64be9f90864e14b335b64fd1e0d5c53395144391 legacy-trunk +66464 2605465bba3c18a1ab30e6bba6afefc3e3147076 py3k +66465 a3f0d667e2ce557b783e0780817db976fa05b131 legacy-trunk +66466 3a82e502474328005a4db664eca98ea1f11ad5a6 legacy-trunk +66467 aaebdc4c46903b30f2585786f379c6806d30fc45 legacy-trunk +66468 02a6cc5d7a2276e19239005282c4bd869e196d5b legacy-trunk +66469 bdb660dca74d6af4c26f62797f3425d2d602213a py3k +66472 f974e0fa54caa77d36129e5a4fba7ba92e1d8d38 py3k +66473 1167ae645e8c027543aa19b4dd86695f5e6b64b0 legacy-trunk +66474 20df06e1b2669f5928ed6f5b70e28f88a1550896 py3k +66475 67043fb8aea5c0e810505facf233ab4f6c9e8548 py3k +66476 3302045bae9789611be045a0777bf681457d69b8 py3k +66480 bb2a0a37faa97bdbecbdef92122cd14c5029a16b py3k +66483 d17cc4d1766ca13af54e2a6843c48f0aa5f4270d legacy-trunk +66484 4453e2c6aa7fd2e54a966d8b8587821c19d23b53 legacy-trunk +66485 97f28dfa1549b3c1d096a3e00603e2f8bc672ebd legacy-trunk +66487 a1c19f263f7955ff1f7a0de218ded5652b44e92d legacy-trunk +66488 5d2f161194594b1aa8573103e4153766fbe98b57 legacy-trunk +66489 2f9b06f95c9a6a7d1fe09569574030d96da17105 legacy-trunk +66490 7b168602f44db2afc4bdcb8d12bd6ee0edefcbbd legacy-trunk +66491 e2429e232576a666fd2f543d956fdd2999c09673 legacy-trunk +66493 30ef22a80267c3d6982530ab6fe8821cc1204c5b py3k +66494 af4c4cf3e01e0932e6440a295fcd0e5a9c7a3bcc py3k +66496 2606d9a00c7b62200f44065aed409cc0a2b76f3f legacy-trunk +66497 58818846363bb5e0c81ad62d6af469e55dac5a31 release25-maint +66498 fe355bd05c474382546cf847ab57868ec5e9c7ba legacy-trunk +66499 507ede9c7f7f475dfafbd4a52c22d767d10a2bc0 py3k +66500 5d61c654849795017dca4c0965cf9087a6894c10 py3k +66501 428b053bb098393933018b72159413d0fb0ae38c py3k +66502 c6703f4989b3730f4395fa80b72510047e0aac38 legacy-trunk +66503 0ad8cea60bfa0b6043825a6be33976f4f854cdaa py3k +66504 525792097c6308a78a76b7b5f56bbd8a24c26acf legacy-trunk +66505 5549b5df8bcbdea721ed1e9ce71954c2603f66cc legacy-trunk +66506 0eec347550414eefa3b5f52a0e1b537df9fc3749 legacy-trunk +66503 49b9b9965f312ba15fa7a92bd4df5c2c7c38387d py3k +66508 763e4b84881cc1b92078bb8022b82ea1c650d731 legacy-trunk +66509 6700fd8125ba5e0d1c968141b512ba5d4ebbb550 py3k +66510 9fe467ff0c08634b3cdf21c9a96624ca9476ea25 legacy-trunk +66512 5a71a6068e303584627b765cafe2e42bacbfbcd7 legacy-trunk +66513 c45a6965bc46777e4017b97522cde7cdb14e9b3c legacy-trunk +66514 62603259771203101250feabe3abb9f5ba813cfa legacy-trunk +66515 15ac49602a0648b1b56f91221c5f26dec7acf72a py3k +66516 578ad491d4a486bd0017d586d1f05c386509922e legacy-trunk +66517 c1372932ae87cc955570e2497082cf66c11a06b6 py3k +66518 f3e5a853420629363099e736b5cb210534c757cc py3k +66520 b6a803188454d7632ec23a24b7f703eba842aa5b py3k +66521 cc9d9d966b1a4ff502ef4f68ae0f80dfee501352 tlee-ast-optimize +66522 d6b8d46a3431bac4ba460c34b8dfd76a6fb19694 py3k +66523 50b1e55756a507c51ade0e8abb36af787de670ed legacy-trunk +66524 4f9a97140f0efb9aec8a343f97b5eb4476a50086 legacy-trunk +66525 61c68e2c571b07dce5a6604365b73d3ff08b3e87 legacy-trunk +66526 85b480ef2635c67a924240972365e11520ad6a28 legacy-trunk +66527 8b17f92bbc4db66435624cd0d5ced51c7f75a4f6 py3k +66528 6b9f2ce5fe922e86c020646a5684d318ff1bed85 py3k +66529 701db5e967b5db12f20833462b32dedf333ad66d legacy-trunk +66530 b841552a9a73b941e41a00f312a40a2c3907f8fa legacy-trunk +66531 f71f64ae651966e504e2bf5d03687a78bf23f5a6 py3k +66532 e52a3595dfdbc506e7bda3748d3e7022af02a0e9 legacy-trunk +66533 17776df6fda2cc30416233f3d3fe393ba7b31294 py3k +66534 c2e2e9262b99b208cfb6e9c9b5427a1f6147ef59 py3k +66535 923fb458bd0c69ef9b117869ad6e4eb52e05a0a0 legacy-trunk +66538 386a03ec1ff014df7b3edcccfed34f48ff3b3882 legacy-trunk +66539 55cb3e11bdf74e6627fc8ecb89b976a98276ce51 legacy-trunk +66540 c2005c1cf6cde8a55f56a14be9d252f54bfacd8f py3k +66541 4992fd49a985d678cc4e0b81a99053eefc689844 py3k +66542 25f809123df6063f665c561bbc6654c5250bae9f legacy-trunk +66543 d1ab83ad5e2b934f340454477ed875e6c26e19d2 py3k +66544 6b679ca24369fa1d234d21a12c7619972c12cb3a legacy-trunk +66545 f0c25e6bbad580b7caf605e939c79e088b5a7ecf py3k +66546 39a947195454dc208bc12a932e824a7fe43b5c77 legacy-trunk +66547 c17770074a4be9549179aec2630e8c1b4f4d4e09 release25-maint +66550 54613ba1dcadf5037a76347ec03403a3890ef70b py3k +66551 6ae28a503c9d16a7db2dcb99ee430f7e44fc24fb py3k +66552 f3da56e3fce4b142f2361a8afb97b1c4bbc2d30e legacy-trunk +66553 922b9e03b260ec592f164f90076ff7386df1a401 legacy-trunk +66554 fe660e8c63ba690cd58b915371d3035ba3de8e22 legacy-trunk +66555 06cf35e6e308eabfaea83ca1305e4a27c932a6e5 py3k +66556 e86ed113535cef0a8b88b487bcb11a0743680def py3k +66557 ef75eb3dc48e8202de939236c5be5f2123fb877b legacy-trunk +66558 27c1ba7186d8f729c47fc6a6c04c8aac7234120e py3k +66559 de90a72e3e23438a9aee3b66df1fe4789f6be623 py3k +66560 1d5c3bcf35ad3986c08bbcf5bf9cdeb14ee1d46f py3k +66561 018bcd64c33e4f68c702c4b579cd7eeffee97a5a legacy-trunk +66562 0de5a388a261804e77fa067d58fa3ad9318f279f py3k +66563 64616e5d80b4b264b9a9cf90835d28f18b2995da py3k +66564 f6df567ccd6289a4d605ec92dfa13c84e27ff7dd legacy-trunk +66565 be89d2a34b2f89a317bafce04f6b484538076b1f py3k +66566 a5f26b3a26fd9ee8e54cac153b3728a50513d0ab legacy-trunk +66567 edf8a6c69028b775895a1aea8e7a77fa3d889a67 py3k +66568 f3eb000487b9362c2fcf543e399967d47a85c483 legacy-trunk +66569 f8430b6876fb36cfa90cae6babc424767efe2e2d legacy-trunk +66570 bbe2e35852cd4d8a02c7ca722ff5bd938527eee3 py3k +66577 b3c29da934f5edf88f6de0adfd390f66373a10b5 py3k +66580 25da07fe3630c01b89918f10c73793e890a79840 legacy-trunk +66610 db999eb2bbdc759d2b49727cb751b0324385199f legacy-trunk +66611 606ab25ddef1b0be2fdee31d58c690e3ec298fda legacy-trunk +66612 01fc083e1ddd35101c2e236056346db6ea27f5e5 release25-maint +66613 a870c3c6a9ad24135892c77e9fa58073ef6c7594 py3k +66614 120b4bcf09ff720e632f4ede5d791e94f9ee58bc legacy-trunk +66615 a00626f2d70579235ad01042f1381091492b138a py3k +66616 9d1c531168cad7a1e895f670b882a921c8c62684 legacy-trunk +66617 091a6c5227a9475ba3ae6a3f21133d48f06b3f59 py3k +66618 a91e78ab4d7d203136f86e8f0c9aec33f8e00d0b legacy-trunk +66619 3febcbfd3601c423a31b270745afe2ae2dcb6199 release25-maint +66620 5e5b15b692e1417f6a98cfb2900c1ef850f61394 legacy-trunk +66621 acc44b7fade09a6fe72c09414f581e44107a08bd py3k +66622 dbaec249d56f12b5f8969a4e34bcb5f83db1fd53 py3k +66623 78a21b278e1b9b74a82def41bf5a53c4406dc2e0 py3k +66624 f323fa4e48d79a28714126ff7438d2878802e900 legacy-trunk +66625 b550de42851a85c1066c0dc7f7ffa415a242345e legacy-trunk +66626 b232e2e9e7937e3457322936f919e1d0fa63dc62 release25-maint +66627 06ebf12bfa62ca5b9eca2e7ad70d65828a9c3e2d release25-maint +66628 4eede5e48ae685ac7bd95912d27b67a4a130a5cf legacy-trunk +66629 e13c03e0ce0bb4c923d26fd73f56672500fd21b7 legacy-trunk +66630 bbadb960fd5c1a9768f09d9bb71e7027b16c2550 py3k +66631 304bea8731d21a4e08ebdccf605aeffcbb52311c legacy-trunk +66632 e0c06caefbff33fa4706cce55e380f1502af6c0a release25-maint +66633 6403f1edecc19d24c4ebaeb6175c49e121a92d3e py3k +66634 eb35fcba658ee25b310ba4ad92443ec6690b37b9 legacy-trunk +66643 075042c7724c74a49b6b3e04fd1445ac874ddfc3 legacy-trunk +66645 de75fb4e800cef93b92345336e0068aef51d0c1c legacy-trunk +66653 cdc7f636778b6923d0ff71e95f326006efe1d6b5 legacy-trunk +66654 8a1dbe5c2b745c1855ba401638d8dbfb5f24f914 legacy-trunk +66655 5284768c264c59d55034ac511a6d0bc8673d7f7a py3k +66656 d70bcf3b628d7a2ed619bf93f4eb93905c0bb01e py3k +66657 0699a712a3dbdd8c52f18dad306912613212a00f legacy-trunk +66658 7651b9413c854cb60d0c103e31d734a9121a1bc2 py3k +66659 7a3f752adf1cf89452b8839c6431dd92517b0abc py3k +66660 530c81418c2838cc822a990a2a3e3eabc33f9c73 legacy-trunk +66661 2ca4159bbe654066173a92501f9e25d46c93b740 legacy-trunk +66662 ce2fca48ace43266818546313c9a1d53fa86f341 legacy-trunk +66663 755f34ab438b19167c3710d5b248a6e34c2559c2 legacy-trunk +66664 231f3a25ccf5b2de88eda90f24e609db904302db legacy-trunk +66665 da073484f5ac306c58bcc8195d4d067ff4b47e3a legacy-trunk +66666 4844cac086525d2a985f96902a7b82a6ae98f7c1 py3k +66667 6cc5ace9f513e00800e101a78256e7de925b01ec legacy-trunk +66668 ec42f798f59736440a031fe62f2d3372d582be67 py3k +66669 56a3fa449c6c6c13569f8c4ad3b99d3067d017a7 py3k +66670 53ace397b9c5bb5bf523c28d92b310ead786d930 legacy-trunk +66671 dbc6edba70a7b764aa7469c22236c856daddb1ed fix-test-ftplib +66672 cc69b931a6082d9d24274929bee24190001a9736 fix-test-ftplib +66673 5a9a83cae8f1b2ab9ff73524c5767cea1c6a946e legacy-trunk +66675 c5f5d6a313e9973dd4f094cfce91470903dce774 py3k +66676 64ba5240af31a92bd80a941f032cf7960bd4ecbd legacy-trunk +66677 74e7f97dad7dedd105a17a2fc8ab0d803ca0a370 legacy-trunk +66678 a95030f939ed08deb93437d06b262da85ee1370d release25-maint +66679 02417b56e4b21a98cd9d86fad6c19380c95dd4e5 py3k +66680 d586185a7a5167aee2bde8db9975c897c902f45a py3k +66681 cad1d2a8a9d3b9b0e066d848a86ca361ca9244e8 legacy-trunk +66682 40536ddc26a19b8fee250f437305cf25663837a4 legacy-trunk +66683 5b35294854218a8caf1616b1f7ebd2fa61d8bf42 legacy-trunk +66684 69e184b990dc77b2e58c22fff3ae8bf3f047d77e py3k +66685 edb5eecf3bb8bdeb685896f7298792c858b50871 release25-maint +66686 d88f1f2f02135f6e457f47b38906197939320b33 legacy-trunk +66687 ab34a647e22fceb504514ffbbe1f05ea3e92b8f8 py3k +66688 b4964df643840e43b1bad36b43b6a11008a8a5b8 legacy-trunk +66689 f4aeb113c9efadce695b6dd7d18683c62fa4fa03 legacy-trunk +66690 4156555f391181bc0d8fcace7353e706273fac86 release25-maint +66691 376327cb68213c4d1402141d52e0056e4a00dd0b py3k +66692 7c56624548fd482f5baffdcd07e6a519f54ac6be py3k +66693 6a73134f96032ef1162e5ff2759b02ecec8d8656 legacy-trunk +66694 b2801aca9d6b5fbe1a1a0e8e84d34321bb2bc133 py3k +66695 598d19936186a380448ee391fe40e585a3fe586b py3k +66696 af6fe9adb39c3f3ad538b963286749a57978b8a9 legacy-trunk +66697 6ceacd015d678a53c31eacae9c68e43e3c9d9151 legacy-trunk +66698 a4ed54d5764c90631c0b7b55035f1c0b4a1f2637 legacy-trunk +66699 6765946e1ac49ffb354baba85ffc3820bf309101 legacy-trunk +66700 7f1f9e18cdfa325ae956525470e220575956d077 legacy-trunk +66701 86045e1ee5950c4a000631fd6ae64d6aa274fb1d release25-maint +66702 1f4ea0229ec668cc0590bb95e621962fa09a2921 py3k +66703 eed4d533332f0fd901ab30d292d5faf6aae8b936 legacy-trunk +66706 d318234a00d7586b95fdd369344d1f6a202715a4 tlee-ast-optimize +66708 ea53163b06de32a6fbb390cbbb149013011ab17c legacy-trunk +66710 b5fb9b002ec3173ca9a23d560f246bac8094aa8f legacy-trunk +66711 ada6d7f71b5df076d9e0b36ef7f0ed23f678866d py3k +66714 58a9884d2bc3d33f9df8552857709dfe99d18384 legacy-trunk +66715 95fff5a6a276520b2e7e0f75fe303f49376567a5 legacy-trunk +66716 bc4ca80bb5fd4c91a8b7e7073e7c4d1cc1b4770d legacy-trunk +66717 54cd1cc70a478d853ef8c364a2e027b6fa602482 release26-maint +66718 7292893fc2c5f8b850827cf24823296019dbfe5f release26-maint +66721 748ec9b2aef1027bd933de6f789bab8bca880e61 legacy-trunk +66722 9d2f2818283d5e89c412dd6f929d56dc0dea0515 legacy-trunk +66723 a5f30d06493cbd4c95d9a8d6e46d821536d66fae py3k +66724 88e6183cdb38c6bcafcc6481e7507b6893d905dd release26-maint +66725 033bb5cacd0a3417be6f4d45c22760bd1f315204 empty +66728 6dd87de8503d56526ccf8e15d7bf319d62162f2f empty +66736 56d17887482133d9b7e5dd287ab22fd1ceaa4fb8 release26-maint +66737 eeb5fa3ef889a22190c6558c2adce8fc340089d6 py3k +66739 9c971d52a3c35fab2aa67e3397a53e671460ebd4 legacy-trunk +66740 873d1e36979dae67d94e455b59e28254e2817b52 release26-maint +66741 f9f01484e48b02c1d1c8861c94fac88ba2c7c04e py3k +66742 068d9b614e7bffab68dd28112bb0ff138e8f4203 release26-maint +66743 8a7c930abab6a2c26eab69891f49d8be49afe5de py3k +66744 b9afa7c9cc35e15fb68a9d401a6c12f3f6101d1c legacy-trunk +66745 7426d8d7ce1b4a5dadf59df7a66ccf8ed5479fba legacy-trunk +66746 281b21ca03f636304f97e938f6bd6381703db78b py3k +66747 01389526ba25579e38556a2c280104c1ee27e065 release26-maint +66748 27d7efa3e1ac0055192a8bd7410d42ad33689cf6 legacy-trunk +66749 642f20b2257795628e638a724bb0f11fc5119740 release26-maint +66751 86893a397dd051d4b15235a98ece2d8b28a34c16 py3k +66752 f812bc2b6a7bfdf872be178542e4b218d032fc9b legacy-trunk +66753 981306f4b405011e2ec205afdc0e0c5b2611e1fa py3k +66754 3aeac4a6a2cfcb5ae77bba7520b9829c891be1f5 py3k +66755 419e721b3ca9e203052692384ae69be9c1d0a6b3 py3k +66756 200dd1d820fcf48593fe83b4b266096930e0bdb2 legacy-trunk +66757 57b2d9a22594a15d57902ebcbc9f81d88c91d211 py3k +66758 4f772004a85dcac5263fe9edbc542667e5693677 py3k +66761 55f914ae90ed64ca03052ec482acd0d4e15eff9c release26-maint +66762 03910b8926791cd66dce45ff295d10e70e210b53 release26-maint +66763 222365682c1be206233a18972cac4ed7a58f38f9 legacy-trunk +66764 1091008f2cbd07d4a674834548317f0334ec3fb4 legacy-trunk +66765 283e54264c0d67fe4dfbad261808f000b4f7289e legacy-trunk +66766 fa040d30cfcaa8a63276598eeeab7e2fb2ff07f7 legacy-trunk +66767 e8e196397f4571b4b1d61f1afd61612b1999f270 legacy-trunk +66768 74981dc839fd22fffa6906e8f87a9f9830664ebe legacy-trunk +66769 e822992cf6cecccfdf8a24b81225002819a2fc4c py3k +66770 8ec8497604c77e7f5541d98f46fd179f209ad20d py3k +66771 a8f9595b9f5536dd978a0997d5682b7d89ed538d legacy-trunk +66772 08c48ea05045bb03fad065e4590634b6aef6e11e legacy-trunk +66773 bf81cb8892f51ce7363e9893427473d02e9ab568 py3k +66774 b5f39c8a44239e4cc0fc3744d7e5c043d81baa49 legacy-trunk +66776 f5b9c6f4c59c7905d005c10fc1775159da9bff0c legacy-trunk +66777 ef4bb4d5dfde97a65ca8c472fad88267652cfa54 py3k +66778 0b1db242d232e47f7e95ec5194c69986610c38a0 py3k +66779 84ccf91a06cc5452a5f8c7374ca591f94c5c2028 py3k +66780 8a892cf25e7aa6b35f5a32521cc2b30ec8e7a941 py3k +66781 16a194da77de96e577c27f7146ce1e10cbe76933 py3k +66783 8442f13720a4dc0e6965bd14e4e70740b662ce23 legacy-trunk +66784 be2f85be566e516323fb4c7e2613d2e5660d7263 legacy-trunk +66785 c56fbb7c1689ca8b0d9a47fdaab7bce288a6fd65 legacy-trunk +66786 885fdf5970cc563a5c0aaa68439db80c52c1172a legacy-trunk +66787 b21de0421395d508324726f9029dc87ae8952b15 legacy-trunk +66788 5808a7ae03acd907f0900bdd2215b58acb0bec8d release26-maint +66789 356e88d4af3023c7beb16b97f4c246cd672250f9 release26-maint +66790 e591e75e83a2f1f02702c6ab369bae29bf653a3c legacy-trunk +66791 f21a3d8585c655449fddcca212d1ae4445938b95 legacy-trunk +66792 af7a399fc27222c20673a162b072cdc527f630ae legacy-trunk +66793 984a8bc6d956f35514460792d835b273c467b97f legacy-trunk +66794 f731f09ea8394c4e48c359a6d991bd98b278f2d1 py3k +66795 ac316f25229c9204e267cfa22b96f8daff87679d py3k +66797 73ce3a11046fbdc008bcb34ee81c49388dd2c571 legacy-trunk +66798 ff5c3dd68d07c388aad2f09bad0bc66532fe2453 py3k +66799 05604555b8d400dbbb172f84f0f2c58494bff71f release26-maint +66800 2e794757bdc84ab78ad36467f6910f23271955bd release26-maint +66801 e096c52cd5ca9a13e5194fcd1e2cfd25d7e20041 legacy-trunk +66802 8f5a8ea5ba76eaa3f5fb6921f378c28b11b20496 py3k +66803 da955c33965b49203250df3a5d6ba33ba53bbcf1 legacy-trunk +66804 356a1f6ef34fd2877aed8c7af782c985e9cad9c4 legacy-trunk +66806 c5b27df79d7d6d9bf6b25762010bba430e6c2cca py3k +66807 c0478651460fcafd7a8e19b3e401e26a58ac37e2 py3k +66808 9e41c5e7e36019969b0b2ed23d4d5a66b94b929f py3k +66809 524ac744ae04396664009309f10afa268bc0e454 legacy-trunk +66810 dc95e46f1f3e89a9bd620d3427e6285033209254 legacy-trunk +66811 c2d0196ea58bd46bee3908472cf298e6a199d750 py3k +66812 02dd5db6290f45be2eea1ebd573ae9fcb891e455 py3k +66813 c933c8467bddaaeebf4afc2f23b9fa648e5723ed legacy-trunk +66814 c9c78e00df673e643573e5bc5b034fb4523f3826 legacy-trunk +66815 c5ae932f63c9da348b6ad529f9596c9cf98612da release26-maint +66816 f5115c132d4aa6b4d917050d80524c3c6e547f78 py3k +66817 dfe310a402458d1166b6b0b14f8bbf91c9414a1e py3k +66818 7aec00015a9e15894dbde49cfd22a83b56e37792 py3k +66819 d8b4a61abf25f715ae3a66960314856ea1d6146e legacy-trunk +66820 dbd2b1817a75d428f0421f68fd3c6223932b6bf1 release26-maint +66821 125984b71a768e200555e84a235de6bdb23b7f9e py3k +66822 e991538b9a876c774e60908871bdc808686a8099 legacy-trunk +66823 9c7ed70aa2c3fe4f8cf4b940be014122632378da legacy-trunk +66824 7efddae50d2550391521ec363299032ab0e8e546 release26-maint +66825 6679c3252f9b0eb25dd832cb38d106574f1679bb release26-maint +66826 dd97dc79ae0a05f14b7ddc18380e4c59de4edde0 py3k +66827 91587818adb83804a0deadad8c657b183430fb0e py3k +66828 d2140de764794e7e4f2ab04588825a394f2268a7 py3k +66829 1c980554b54b2c10d4bb7ea805bd4f95892d3fb4 py3k +66830 0b2f765ba4f775cf59cd5e48a5c57e92c3c86453 py3k +66831 82091df651be7a917677719319371fc5ff1311f8 py3k +66832 cb788e0844e7f9d082854a23fd5433307343fa04 legacy-trunk +66833 ce7b8c317da20f8a745a52f9364150277edce70e release26-maint +66835 deef284822f75d07a928c1a525e8637656168b14 legacy-trunk +66836 21060a56defc881e677a11d11393a1d08b42175d legacy-trunk +66837 6e7b853e86160933427278db273a55fd0fe08d7f release26-maint +66838 1e5b2050ec6acd482f8993a61524dc44f2ef68f7 py3k +66839 59daa7cf8ca097952d09db8533a8bd837b3058bf py3k +66843 69ea12db9b28b598322d1c657af665b9f273de62 release25-maint +66844 860f62848af02fbd838557d2805e2c36ef321197 tlee-ast-optimize +66851 0205cf0b1adb9fbe3cb7defade328de5e121be64 release26-maint +66852 94d17cf3d8bbbe0242d22e484930250e9fbef83f legacy-trunk +66853 b4fcb2f47101cbbde133cf50ab14b7b686d24c84 py3k +66854 4845810f588ea28f04703033d084c9ee3a75b392 legacy-trunk +66855 575f65f00c6c0923c0b26ea93f0c31c148e4af0a legacy-trunk +66856 d4b613da38dccf689b5185602475aa19bbbf16b4 legacy-trunk +66857 2bf1c1bd8d96eb0eaf28c65fb68cc11eb993cece legacy-trunk +66858 9c0ed4aecfbd91d3bc828f4abbae4e619a1fc31f release26-maint +66859 51876a403c0df9bc569705c7b9b2ee7c867ac70e release26-maint +66861 ce64cba51c2b7d9e3c06c5592b5f04da5c188faf legacy-trunk +66862 0da3c30fe9b523aaf17c430b18b60eb709a978a7 legacy-trunk +66863 550d75160cc4f7381b9b51f25dfe0556bd431430 legacy-trunk +66865 a0258baed0057c0653544171f9b7e615119d0d77 release26-maint +66866 0e359afc064681253d01d04ca4f0d67321807365 legacy-trunk +66867 0b7e023803fb372e045251d3bf1856c0445ae607 py3k +66868 2a2cdb285656de2f3f6933f598363b25edc18a95 legacy-trunk +66869 665fa05632f7ab683cc4fc547bd6797aaa87388f release26-maint +66870 08d6dd684a6b310f3d4e1b83979fcb3a766dcd71 legacy-trunk +66871 3dd1651af35dd4bcb258ef28bdd34ffc0406b5dd legacy-trunk +66872 342f70189ea9e5b58fc978509fe3195bc2ab3e3b legacy-trunk +66873 c0ac47984b1104ddbc0a0740fed47272bc69ff47 py3k +66874 796b1bb9554cb7ea625256110bd4c5a1fdc589e9 legacy-trunk +66875 5a092101f06963e250e5bf14b889d9565ae79acb py3k +66876 bdf4da5d04ad9be5358c0f4a2ad55edbc7b1c419 py3k +66877 d3de082ca0314a9ea4b19c94dbea233fecbdd4e6 py3k +66878 e6702c1a07d752b3ee5947b81f307064336f6835 legacy-trunk +66879 187004df579cb0210d77188a3f05f29f0e56eee2 tlee-ast-optimize +66880 99c78d60be125e3e38e040859585613220c25c3f py3k +66881 2f0d7384cc1c0a833d1be1e8af7a2c62fdb7fcfb legacy-trunk +66882 08a3e68f1fcbb11cb5a0468941cd6c2cb0b06dcd release26-maint +66883 71fa7d3cc4c59dbef76734e986b16861e94ba2fa py3k +66887 9fdf8d8de2875a7d556c9540fcb37b2996c3fa2d legacy-trunk +66891 62c24d4a1f8f6209a02cbddaf1a00057c73378e6 legacy-trunk +66892 e1a88e8b9649bfae7efbf790faff9676a0ac5625 release26-maint +66894 b09e7053b472c395e05a4ab9b4ef5c9c8399aaed legacy-trunk +66895 5e6663286abc57c9b8ca25550b12c560ca546929 py3k +66896 ac86e953558f446cd4ff66b41282f33fbc6389e6 tlee-ast-optimize +66897 0f0c2283583eeb87102c1701cb67e321279e217f py3k +66898 232a22cfdea8fa993fba457f8861bed619205e49 tlee-ast-optimize +66899 84f017420b9b8e1b6a914190109f75df916557b0 tlee-ast-optimize +66900 bb51159e71dfc3152e03a2b00262a6103e84a2ca tlee-ast-optimize +66901 d17cfee4f23defbea536e6050af04943970cee83 py3k +66902 fdcc8a313537448f460c24bec59cabd937b89cf9 legacy-trunk +66903 409dab8b1d34496991f592aea08f2d02c283bb45 legacy-trunk +66904 48194d7af32f02681a776f0ece76727d57b2e787 py3k +66905 0adf6bdb170f973ca57ae807fdc391866d6818f4 legacy-trunk +66906 4737e5df50f4d7fe9ea82b63070f1cae7639d611 legacy-trunk +66908 2a1096b4817a2f6fe2c4d0f03e7e71ddf6d5743f release26-maint +66909 5afc9ffa80bb79ef6b2bc13c0b042c638a2d8da6 py3k +66911 01111c40616f590b91f29b29ba02cad88e7dd313 legacy-trunk +66912 92d0890335c24948ca30ce1cb35ae6bf1ea85fbf legacy-trunk +66913 b8fc790a27aec8b68b38b8020ab4fbfb437b3b6a legacy-trunk +66914 8d2a69711a97ced5bb043abe499c17c93c31b85d release25-maint +66920 d0619e210ac42fe097cc0250c8bccd0b4eea3c37 py3k +66922 6938219dc5a646487bfec829609f3b1757ecf0c4 legacy-trunk +66924 d7a728420b03a7b37e815b3d8e45d77a31cc6908 release26-maint +66927 19928e45d18b217bead9435a54709defe714acb3 legacy-trunk +66928 9dedfb8e565c445d534e172c0a948fa2c82b5dac legacy-trunk +66932 3c3abd5fc83392372472d3d2dca035bacf082751 legacy-trunk +66934 00e467db61825436bd0c05859999a0ba92312048 py3k +66936 a578147bb5c1305594f2ecb0f4c985fd54973050 legacy-trunk +66938 46225211e503a1954bc8061bac12ef4317271469 legacy-trunk +66939 241e03371c7e42632e27ef32221ce57d187b02db legacy-trunk +66940 6024e0caba64802ad932bfccf1e957fa0f4fe965 legacy-trunk +66941 4e2e6884fd2887622aaebf959b612f247dcd5a22 release26-maint +66942 8a89132b859f1eb4c25d2d847b5e32b123216c88 legacy-trunk +66943 a53bb8330a64c51bcc0a48d68a246cde406353ea py3k +66944 50c886daedf0d815d649958265fc2fab269d23dc py3k +66945 ca72271c624c2dfbebc0b6032f01b92413c14c04 py3k +66946 2a3910a8dc377afadc21b1ec41bac5f1628fe93c py3k +66947 491ed80a8cc1510310fc312e26b32fe83f78946c py3k +66948 cbc3afc1e40a209d8d4702ffd4fed0a2447d057e py3k +66949 2c3a6c9dff62d5c9600679274c967880a15bb37e py3k +66950 645fe56c117aa63f91f0c3491977a05d81d93070 py3k +66951 481ad3d9ffd1b68df8da8578e2579819623b6f0e py3k +66957 f67de61c2cfa923883ec42e173cd17f7718dcc3e py3k +66958 b555d4d9575c458e97c05e95b8cc36a2763f8587 legacy-trunk +66959 66c545f79626932c1aba3bbfce2ba3f811113606 release26-maint +66960 dfce62ab07ba0a1f6ce4729d06207caad0ed344d py3k +66961 83d0945eea422840926775b85eddf33e614e7628 py3k +66962 0121df3cf5a012c2b8060deeac7f8334fce15eea legacy-trunk +66963 bc1f43252c9220f92a602ee5d7136509401fc236 py3k +66964 96e7854d7c6e1a12b2aec5eb48d3c6ce370c7490 legacy-trunk +66970 684bf7990094bcff1d3854d23d5fe408daccc896 py3k +66971 e8841c3466519470d450a3f48acd00ded3644ab6 py3k +66972 57e2b5c45795a8050e745033530407c1d39a4093 release25-maint +66973 dbd54bac0b6f7ceb5a9a1e14d39fdf32a715faab legacy-trunk +66974 2e38ca709b1d296c7ffa821fb02ebe73226a69cc legacy-trunk +66975 3ff7bb830519c27de15f0d7aa18518012f9ecfab py3k +66976 26bc0cd0108b45b6def094c913693d5df946452d py3k +66977 6cde2a051b279d210c5660bbe0cd26a83b88be76 legacy-trunk +66978 89ba01b614eed31806980bd22901be7a407f26b2 py3k +66983 87ef8960823a184816cef65e5152552ba5635962 py3k +66984 8496f5403a8225107066b17d25976c1786679316 legacy-trunk +66986 415137d0e20a527fe31bcfb4ccc23bfb7c213ded release26-maint +66989 c208f5c1e4fe7b732b2456e029eb837e7ab32e6c legacy-trunk +66990 c1dcff75976e0546bf764d81193305da594bc1e0 release26-maint +66991 1eb17122b4ccb7dfc5b16dc1f2c648f0b39ec2b1 release26-maint +66992 80d2d467f23886d7d4f75fee840e37978908468d legacy-trunk +66993 ddd0f8cce55cd2082a55b9b62bac78f038787160 py3k +66994 0afa73d4bf9947813391d1537a2376c642add97c legacy-trunk +66995 1249840a42b2daea2a5d769057d76e1b74bf29b5 legacy-trunk +66996 19687830338fbb0da697e167d6157570f9f94ca0 legacy-trunk +66997 df74224606606891b612b16c19b0d173d85f681b release26-maint +66998 5479a877ba2826a0d00b95c01a9fb9e0dc2db0ce legacy-trunk +66999 d847c4fb7b3993b6bc496b669eb43aa3e03ca356 legacy-trunk +67000 71284e9157063ba7e941c9dc077b3f08a8ec0163 legacy-trunk +67001 c6c32842e71dc479425b48367e345b427feb51f0 release26-maint +67002 714d3c1443a746d8fae31841be2dc67948a0800e legacy-trunk +67003 bbab11cdb175610069d1f31098de22c3c9708905 py3k +67004 05715f0cd7e779434c37e42fd926438d48527d8f py3k +67005 89ae9d7d18d7bcdef62a9f188cfaad126033e773 legacy-trunk +67006 2a85e5c9e1e2a77f78b73e7cfcfb4bf74f65d0b1 py3k +67007 63f3f045fe48a0c64a12829aec7b4e17c2f7e778 legacy-trunk +67008 0bc2cd2d95982b3259ab1704e8b340e32de9f60a py3k +67009 8b65d13c177c6bda8c04ce46a24edb3893c16d44 release26-maint +67010 31a69ed09fbb40e14f12a53f118d9d1d095e5b46 py3k +67011 8420af6c33edd933daa99caff9b8adc5c04ab982 py3k +67012 2a38771cecdd5ad374215d686e0b1d47ac648ea6 py3k +67013 6634530a04e034521a2fd0010659b695783ab7dd legacy-trunk +67014 1a487ab0d65b7429f5f170117991dc20593a9b30 py3k +67015 bbe3732212d64e6f3b00065c411c04c22733b7d2 legacy-trunk +67018 f66688e69f66bf5eb25dc36a3a7332ca398e55ac py3k +67026 4a74590f38da5b20d4d57bb0119b3c2863ec05f1 py3k +67027 df2bbde968802d9cbab63f137ae8a5adc47c33ac py3k +67028 195cd7ebf62cdbc1556f9ea8f57e0cd166a90f92 legacy-trunk +67029 860737c96e9782a21dc40dc935014d7f5a0ab394 py3k +67030 a5768bd62938b9df9c85a2a0b0f23cb467f1e4a7 legacy-trunk +67031 0a188a2d504882aa29bde049c34b2578a47ea344 legacy-trunk +67032 30c0b266af062c17c68106727265bc35ffe6d91b py3k +67033 e80d9e6e26bbd1f6171a7e17efea67f35776d97a release26-maint +67040 40fd6ef0eaa8f33bcece32032d2090ccc626359b legacy-trunk +67041 8bde8f51ade14de49caca32b908ec9d26dd62836 legacy-trunk +67042 40d8fb129306ad4f38c81b3ba714393cb359ef3a py3k +67043 4b726500a9699cfd1953936d1f3f1b225083be95 py3k +67044 804e6365817c4b12cc1af4bf77daa06e98e3006e legacy-trunk +67045 2aa69b9d12738df20f08bc40ddd069fe10c80325 py3k +67046 021bc9f8810349dc8bfe66a842f8f232903ce651 legacy-trunk +67047 3485d95957c1d2c581e01f13b2d49bbe652a2f4a release26-maint +67048 711390d4ac21390b0c6d1de298372ef034349d26 py3k +67049 24f65e3090e80a22afde6a89174919841e35b912 legacy-trunk +67050 bb109c4bed276a33eaacc6c094016caef1fe9ac2 py3k +67051 c0afc4eeba7d6a843357579c52b75941225c8e9b py3k +67052 6a20e8c1745a9888ff8a800720b1ee1d978af01d legacy-trunk +67053 b3df58f76e49d87e0cf3d97347c8d27672a98db6 release26-maint +67054 d2ec6d5b2db9701ba06295325e865939a69d070b py3k +67055 9fc573fbaf5e34bdacdf24e4309af8aa2fc75fca py3k +67056 e8c0a5a646ca6ccda031ebfad091513a28bee9e1 release25-maint +67057 efef5fc45a9a477250befcd7defeb4ee052bf8f6 py3k +67058 c323102737bc23cb8ffe491fa9ae3a7967eea24e release26-maint +67059 a5ca8951bef1729b7f5d4db76322ffaa9e400aa2 py3k +67060 b0cccb55941c4170e195c2d08f65240a3cbd5faa legacy-trunk +67061 8045d5596b1c8b9334057074e19c824690fc7355 legacy-trunk +67062 9c97bc86122a0f7c78322584aa7a6be8e518dc5b py3k +67063 06cf2cea387b7e4503fabc96d5df8d5160b84601 release26-maint +67064 3e2de484ce34217c6da47ebac148cb10dad2e003 py3k +67065 96418f812f06800e07796c79336e6b2a395d4419 legacy-trunk +67066 7e40263dbfd345499285fbc92f824f2f64b6f1c0 legacy-trunk +67067 6cac2e3077a34d72a3e1819fb4bbab5042cf68f1 release26-maint +67068 f3234e43e1fe80a294a8515881ba698018cf4293 py3k +67069 9906f696b94195afaf0568d1a8df9b956029f545 py3k +67070 0dfdb52abdf9f9587b107fa238fa988a72629ddb legacy-trunk +67076 578aa43dc40043075018e77f92b6c321bcfb313e tlee-ast-optimize +67077 91ab4354440efc8144c524a32cd6c2330d4d0c35 legacy-trunk +67078 2ed3f8926bb891c99a84d1c10c9074b0b11d15d3 release26-maint +67079 45ac5196fa679dfae1994e087d169f15735a25a8 release25-maint +67082 1184abc5f96c96d612f3e96d1041acf25056d978 legacy-trunk +67083 00e71cd891284a57cef0a965857d2e6394795ddc release26-maint +67084 45046f07227ad3af271d517af28abe5b19668c48 release25-maint +67088 bd0e9a9cd283a5540aecf9f1a0b875b86119e56d py3k +67089 0dec54aa53ee75e37af6a182b59be0212a9f6da6 legacy-trunk +67090 f849c59bbfd764f0253f4959cd136a0894d1ed12 py3k +67091 0c8faf6c8eb2960d4ab73801bb1a832d678dc3bf legacy-trunk +67092 5f801add20fbbc32c699e45f9ef4a11b68c1344b py3k +67093 f2bb133ef517d450d02fa6cffbbf5eeaa3feedc1 py3k +67095 f67b2c8fa93ad2322dd269e7c1a9d46a633fe7f8 py3k +67098 e68e42b17e5e34144903e93a4c5905a46bdd05eb legacy-trunk +67099 a529e3dc695a8b6edde48bc1df88fa02129343b8 release26-maint +67100 c089eb64ee576e57bdaf32ec30e8b6e3020d9045 py3k +67101 972b40546d79554f3a8971f0f16ef2938007fc26 legacy-trunk +67102 50e7822c9585fef56ed66611fac4b8542ade3e93 release26-maint +67106 23d9cb777d9a816a2562de8b77faec45c3d48105 py3k +67107 98f3175646203ef4ea390d43454bbde7eabf36fc py3k +67108 400fbc8052adecc17692685db35338b3cb91519a py3k +67109 1bc3d1b39a4b795e26653f7c669ed02ac6183b2f py3k +67110 e2a472f3b77f6c10ea45517f3918c8ec191908fd py3k +67111 5b4cb8cd5051f7a013979b4647ab1a8b48c02f5d py3k +67112 aa6e649599ad090df912da6714d688dc32bcc747 py3k +67113 3a94768a2a8be5d092806dc68a5ab1aecb172a0d py3k +67114 d7196fb94f25fc8da5c993480d5e055141473be4 py3k +67115 6e0a361078e52168aa5ec92a77c389b64b21ca93 py3k +67117 1c23e700150674044a06ec707c2ad1f291cf6264 legacy-trunk +67118 79c9ab6498fdfb9dffa332464fe4875a7414dfab legacy-trunk +67119 9a3e9243c5189be64560293fb302763e555cf17e legacy-trunk +67120 26f01eeaf54e80e9cdbbec0b89c8f3eab8aa873f legacy-trunk +67121 f3f650c7d3aac63cbbf66bf05f56adee7d72283e release26-maint +67122 f7867b77dc5578181d196b2ff4da3fb5f02e65d7 py3k +67123 8370e9ef7f0fdc967d99a6b92b6b7a2e371e0f6e legacy-trunk +67124 7e63feb30ea5ddc6905993019bed095bd333f06e legacy-trunk +67125 210c585f95bee6f459d113464cfbb2c876489f5d legacy-trunk +67126 104537a5419650d3798f5afd9077e8ae883b3c29 release26-maint +67127 3256187925d1e91ef1e318b19d2b3edef9fed78e py3k +67132 14d4412d2bf848130eb9d6b51ae02aa8d90e0cea py3k +67133 8280948592bb2cddd8a0545589696d90cfc09443 py3k +67134 974caf167ff0452962c0b532a60bcdda855777f6 py3k +67136 534be8066c36a6afc261b5bfc7c76200d54da1b8 py3k +67137 8fae465a39627b590385462e6095eb63af45240a py3k +67138 ac42dc9a0203efb37e65f77737fd1944a9180309 py3k +67139 92ba12f93282384a238c0fb0569e7cf491f032de py3k +67141 d2f7323fb70965be622afd4cc7a5421850579c4c py3k +67143 c983fa68d6ff255cfc7b2a5905189c3a5573c3e5 legacy-trunk +67144 6238b6cf77f1057ceac51a4d6617f59b4180dfbd release26-maint +67145 ea87e8814359b38e7718bb008c5099ce1a88cd7c release26-maint +67146 82ccc7e77ec5573d568d2f5156d5fd5c90d3ff10 release26-maint +67147 479dad9dc96c1e8dcf6046dcc5cbe9e17828f64b release26-maint +67148 1f7f41f20ac59666d877dfdc926bc2d15130b10e py3k +67149 9da529a3fd5ae742d28aee5ef3f8171828799cb3 legacy-trunk +67150 faccb98d9474e3c3504083f347c91a072cb82d67 release26-maint +67151 acb78ece56a9e102fc9e67625b2e74d9cac551ce py3k +67154 3173717a89f317ca71388291112382828d0226e0 legacy-trunk +67157 571938054721db3fff3e9b093a9e53b1a970d4aa legacy-trunk +67158 008acb0cbbfc29ee8c94e2d00ec5ec2d0089b28e legacy-trunk +67159 58235b9dc3ae24c897db1f7df979a48556e032ee legacy-trunk +67160 6f06571a8aefafe96709257b7f179a41bf8bff69 py3k +67161 d0aa10ff28c657006570b35c8295d5a540ea58fb py3k +67162 20a40894539a48a1a7a1fe6ab42c5edb5f074dec legacy-trunk +67163 d34ccb0341ea53aa86bc370dad1644d0f10960ed legacy-trunk +67164 ef880e2cc568cccf98b8c94532e036c57e2cb76c py3k +67165 71f53d3d155121cf03a8eb770890c3f21c059224 py3k +67166 bc4f742e2c1d5384451cc5dced5b2952fce2511d legacy-trunk +67167 f07b82a321fe19055379847d557e7b8e5da99930 py3k +67168 76832c09d2fdc1b069ebf0f61a26c75a45fd236e py3k +67171 2e0857b0fc6757844a9e0ddb567ba45cdf709e26 legacy-trunk +67172 cddd9180b8c880622706ad7b4889abead55d8591 py3k +67174 211151fdc924442ccc3cace5ec0fca8bd41a30e7 py3k +67175 2bb12ca2ff44e11b8c3dcba8424657af9eb3967c legacy-trunk +67176 c2a75ba46f14d9fc26d4aec7e6c94e557bd6c048 legacy-trunk +67180 ae83d4aa3e0ed9743cc03fb3ac8a9645ba8606b8 legacy-trunk +67181 2b3340b5ca386b52467a5beeb3faf57900cb909f release26-maint +67182 b2481a15376348ff81bcf1cd00517f39f47be9dd py3k +67184 acf69e079b846b5c3d84e40e79a94ec1ba8fae39 tlee-ast-optimize +67185 54cb501f6215abdccf9e411552a0afe3364ba273 py3k +67187 218a98981183d2a3c7f3d15879e0fa11c0928488 py3k +67188 63ea22b58d5425921966df059cf22b3eff8c19e4 py3k +67189 7440a30a2f13403a427e120cc6f1f7880bae2d5d legacy-trunk +67190 fb725366f9ac8bed4e32d66d7eb923a555c6828a py3k +67192 b0713fbc5061baa252a440b2886574e92ce0987c py3k +67193 81190cb1cae29306a2282d2e16ac450d65ad62e4 py3k +67194 f2b43d28251dcdc020b8fef6383ed2ca9c6d866c py3k +67195 03e74dd9cc83f590f85d9025a2969366d6c57737 release24-maint +67196 8d6e2499726a52813a13019a06b27898971a50c9 release24-maint +67197 61a33050443d20f0d24af92279128056f9e9a8b6 release24-maint +67198 9781eef3192c6ab2ccb25cf8bf11856e09e0fe23 release24-maint +67199 200c8aab19176fbf71860d47026bdbda64a78612 release24-maint +67200 ce7224cf87ba20f48c0fe0c8f98731a95ec965fc release24-maint +67201 23285ff10c04d791b4e701a4da721158d2d0d4d4 py3k +67202 9a13e966889cb44c87f6f8148f6d1e21700a1961 py3k +67203 cd08b00acd6a1ca539b02700c145675889b90c86 py3k +67204 98628dc730dae770f418104f87b4b31c9a40d70f py3k +67216 494bb96713917905ecced4d4396bd9bb13446fc7 release25-maint +67217 059f116a28194f8836bd19d9cb77cc224e6bd2a7 release25-maint +67224 c2772cbfe181e1f3a9b62abbe4a7c327244746b5 legacy-trunk +67225 16600cace315dc2c1d72f340b87491b10e0634f4 legacy-trunk +67226 0ad07078433a3879c5006306a25ed76596abbfc7 legacy-trunk +67227 4c46323afab6f99cbe9f39286d8c95a9365707bd legacy-trunk +67228 dbe4b16f804ba7bd11153a91a4b56eb07155159c release25-maint +67229 420a5e83e02e7b4c175ea7668d623d49face9e43 release26-maint +67232 c707da3435578cdba5026b5301cd35ca4a3e88b8 py3k +67234 e74dd5418a33fb000b9338a9a35c4dd6e002db34 legacy-trunk +67235 b428e8f6b1434623f6e1dffe843444ad402250e1 release26-maint +67236 7de1b2ad380485d0e97298c6cb49c22ca82a478d release25-maint +67237 b0fcb17f7efa81526d68700d4a74dcaa89ed941d py3k +67241 1e44ea516e0e70c5ca52d3c3b518c5028fb6f83e py3k +67242 620a34dc10f906637cec506cfca90b85d5ff15ca py3k +67243 7559a32cc30ef96054e0acdd89822b069d795277 legacy-trunk +67244 674ef4a7cd730175f583b7c370486c11e0efed2d py3k +67245 4b32199a8afec5785dd6c9eb7b960d2c380de7e3 legacy-trunk +67246 08135a1f3f5d8850dc55d83e36f7979dccb2da66 legacy-trunk +67247 73b9fe1c53973d3eff37a688db921a4045460d98 release26-maint +67248 356c3e18da5e848a9f9922b6707d73df7d63dd4b py3k +67249 a5e41a7949544379afe7b132e519c9b18ce9c617 py3k +67250 fc46abf170fdd8d75cd9c6b996341b1bd5f3b0de release24-maint +67251 936a6e60f3eb7a3be47fbac2695ba46fc0d50e51 release25-maint +67252 f39acebce628be1f98c9108b362a7e16f1374ce9 release24-maint +67253 ed0dac26b396da3fb776449a0e56eccc43e49871 py3k +67256 e2d2a7a6e8315dc8267b36c48ef71c0de42eba5f py3k +67266 ea6ee2820753bcefee52db790601f08e6f395cbb legacy-trunk +67267 d6e67989ff51497362fe3fdb7de8daf9b0f7bb0c release26-maint +67268 c6d16b2a8efa4d5626adae8e16149162e792ea0f release25-maint +67269 ce6923545e5ec3a6390d6624add84a6040a97af6 py3k +67270 6d6e38cff2440e2f9ffd46e1ee25501d60928602 release24-maint +67271 0c0bb104ec4b7a7f6bdb9992c57863bbe8d6a0fe py3k +67277 2d9b173dc3a2eb7a806e51b33c9ca95cfae837b2 legacy-trunk +67278 153fed7c7b60b90d5e94663892c9efefcc810410 legacy-trunk +67279 71a50e675fa1e448aef8b6df2e5b43540a1e79c0 legacy-trunk +67280 7bb204612fc676bbc7efe0ea634aa49859ab05a6 release26-maint +67281 8b9bda5b8d4a9d1ba3a7a29ba3eff7bbd5048deb py3k +67282 7238950d5c6040077da715d81d5b741c63c2c738 release26-maint +67283 bf6a5be827b4c2e6d0ca9cb6709e7080582e486a legacy-trunk +67284 1f7b6c40c99089a665b19f17936d37bccb0998c2 release26-maint +67285 a9376adc284ce790c10328b36a704ed6cac96922 py3k +67286 0722d71afa2f286ee451f4291379d210393d2a94 py3k +67287 a44ce5556a7fc6302793491aa1adffae933b4ea6 legacy-trunk +67288 f04df10e205011e8bcb4cb6125ea8d4562908073 release26-maint +67289 ffae5837851cb4aab2bc4c7d28d0429301dfe24d legacy-trunk +67290 1e7d322274c83ec77c9f43816ee2d08ce1f58541 py3k +67291 7b18799e9519458294b97a4eb16cf81de58b72d9 legacy-trunk +67292 fdc9339519646f5cb3aab900aab327d843fabe31 py3k +67293 cacc018fa341ab5c5796d5eff62bfdd92ad00b6f release26-maint +67294 088fdadf9609d193eb10f8a40f09b50df901ff9c py3k +67295 a290a51ff8e27d72b8d1f1fb30b9aec762639b2f legacy-trunk +67298 2da3fcd4935f154f94186b35c1e918023e13bfe0 py3k +67299 2ca964d724d5ff9a1674674519b3436d3801c1fb py3k +67300 841369f37334861e903fff37ace9f1bc17b8159f py3k +67301 cb8039d82af3f140f96ca13219c0a6f1cf2ab8fa legacy-trunk +67302 24645870779ab8cca37eab968ad411245e72c3eb legacy-trunk +67303 f41cb206d061ed1358678e400c198fc699f20fd1 legacy-trunk +67304 88ff45e58e94b6ba6552d88df2761cc66e24eaf7 py3k +67305 dc1db46d0a44b9b9a3f68b4600dc01f7cab5379f py3k +67306 5ffd67df8c9f0819860ca0b5f238efd5e690db46 py3k +67307 eade47dfc1e47047865d5cae1c4b5f8843771d70 legacy-trunk +67308 f95ff96fd792f2f1de31e8b49d771865c807a866 py3k +67309 bac040b5ef22a42445e648d8e96614cdf2ae3602 py3k +67310 54e5d853b0dec7e74ef312683afc1f0507564f6b py3k +67311 159a11b1d24450a4a51a41e8789364692655d237 py3k +67312 e83a60c69d53f5551a306e77a6d38e9b11485496 py3k +67313 34fb666ff52f4134f32eea68595ae6d6bc38b00c py3k +67314 7aaa3affecc1532e1104bc17f1d859b951573abb py3k +67316 34bc2279dc56dfdab1da3276a53c261f98a5a204 py3k +67317 eda467d65b65efb211c3e447538c118261b1e596 py3k +67318 2327dd68421ccffc00538b7df7f07d87dc76f882 legacy-trunk +67319 3250fb71a9e08c06a86eabf2b150aab9d3bda529 release26-maint +67320 b64d053afd84da9140293ca85679d01c826d8ac4 legacy-trunk +67321 0bcafa64eccb44357dacab357e554aac7a9b78d0 release26-maint +67322 f403d94157b210dcd938d2c633ea44c11df6b606 py3k +67323 7846fe495212900d6134a87ea44bb8c1d1fd617c py3k +67324 0eb5add3160a249090137ecb21caccd8af130ac1 py3k +67325 6aef28ebbd6c1174b86fd850a7e2d62b77c69fd9 py3k +67326 dc4acf7532962d3c9b89ec409eedf9c2267f63f9 legacy-trunk +67327 b180b271a7b2b44fd76f42dc0ee1a64edfa1fb50 py3k +67328 31d88fffb98a104a48349823639bc1c3bf28312f py3k +67329 8f0a175f04beaad5d40990266753fd639cf07055 py3k +67330 3f2ddb3dd147a5b327266609f8a8a2c844fd08dd legacy-trunk +67331 2d8c1ea7f8b7ec45d8b928122cb10a3081e01ade py3k +67332 5e2007fa3cf82c6c4c4d0d494fa2b2263f9d0b32 legacy-trunk +67333 a0f4d45fd44cf6f1879c9522188b92587a2d3841 py3k +67334 a4220c92f7ccf4330166ce6ae0537ec008320197 py3k +67335 2d97069012417175a30815b51ef007c779fb68db py3k +67336 789a3ab0ae9ea7f9794ad810e78415335392f4f4 legacy-trunk +67337 c009f00a450fda774b1982b5d276d10335d62391 py3k +67338 b6a82459920cef0a202927c315d5e2ecc6a659e6 py3k +67340 13321cb2d7520312f8d522381e097a70a1208269 py3k +67341 030a15369eac77cb3bc268c8bae1ad3c0e63766d py3k +67342 5f70706a8e6718f1c222e0b24d10972f39b6322b legacy-trunk +67343 5fecd1e953249790d3bc9632e68f012f726589e1 legacy-trunk +67344 5d9be65e7891f7204539d450666a53bcb5663d0a release26-maint +67345 630c174b465e98169c428e9fe359e6587b7054e4 py3k +67346 7c2b1b52f13428f9561cd1e1566106adafdafbd7 py3k +67347 93d2dd641b7019434c9cb1f2c108e4abcb79a4a0 py3k +67348 8a3eac7f9cd6497eb35de77b34f694ba160d5fe6 legacy-trunk +67349 53a127aea56e93597316eddacf76fa833c5e3133 legacy-trunk +67350 c9d0d4da9ac97dc697ecd5f03ffb8231cef26cd0 py3k +67351 7bbca27d3559e27ed86d580eb859a5d04f2fcf77 release26-maint +67352 75e9920351f25e13d1a2568026c7e5d963e2112f release26-maint +67353 e704eedd77dcde7a3314c5df5ebfbca8fdcb249f legacy-trunk +67354 d7303abcf069282bf24eef7417c4279b360ef286 py3k +67355 ca673bbde1a3d81a5b44a2d0f97e05c3cec1ec4c legacy-trunk +67359 2416503a3078b5df1cfe81602ea7085a16516e19 legacy-trunk +67361 f1bb241bad24bbf062628786f52addadb36727f2 py3k +67362 4eab340160e0a22cffaf391254bdeaab8c27859d legacy-trunk +67363 1e919d34c9825161b849102b473d8c0076ec2440 release26-maint +67364 9feaa6a1bf2c22bae31a74ef86f62d3168da4ec1 legacy-trunk +67365 751a8efc5d4662aa92f73318296136d437da907a legacy-trunk +67366 99598a61cc35fd7af22e82415e9dae5f4fb867e6 release26-maint +67367 c3f49adac2fe67e16b0cfe6f4192ae004f39fab3 legacy-trunk +67368 06fb643f6553c4f4b36f38d8f37311d4856ed8cc legacy-trunk +67369 e49760909d2ba506bd930b740619777aed79ac69 py3k +67370 b71cc003ef9f8a5150be86b8cc3b86d367d1b7f9 legacy-trunk +67372 d66686eb11f631a7f4d4516e2db85442512ef1e6 py3k +67373 ffad6c0f252eb2080b2af66141a804851d18301c legacy-trunk +67374 96f38e357194ec687fa44f0c2e8510601d9dd301 release26-maint +67375 40b7277e665f01452e9bce969676c4072d4ed68e py3k +67376 0d10d5ab28440a94b418d523790ecf7a1de3d008 legacy-trunk +67377 f37bf55db416ca3cc0de8139d96bde2f8c174914 py3k +67378 6c0871f0c7a69d542ff51102dd191cef5cc7625a py3k +67380 dfeda0d3d636d40173a71cda3c02330558460067 py3k +67381 4cf03e14200c89d054d285bce958feaf26855a13 py3k +67382 efb49df0d899df9d2a29f66051cabc7ce506c839 py3k +67383 3528b5c16938799b895c337b236da87be858bcf2 py3k +67385 30d01a5f517ed7be5129377c22e639ef8e0fe99d py3k +67388 2d3f1d0c2a10ecd57aa883813e57e243941c3bb9 release25-maint +67391 d37b4fe513287541de5b8975ca89767a94185e9f py3k +67393 9fd9cd852631ad6f3137773ac127a669fb2d5d29 py3k +67394 68f3beb7eeadf1b0019591f421e84e3d31f78ea7 py3k +67395 73895eada8bd1b22326f7a920753e94db6c010c7 py3k +67396 a0cbe40dac8f3f475cb7cea90f6944238a327395 legacy-trunk +67397 5684ce96e639f7ee098f33c0ed4ffef46bdc2da9 release26-maint +67398 85b1de855a13fa4aff20562ad8601995aca69421 legacy-trunk +67401 deb30669c355c28a1a5b8aa5667be7889b824a3e py3k +67402 797bd333ef6ba22e9f3ae8f09efcb1e8321694d8 py3k +67406 a3a5f6404ad5ba3ce13cf6f3dcfa524944d94869 py3k +67407 5cbc3dd4491610853d3189193c269365b5759a55 legacy-trunk +67408 0a994b32de9fe51620b471ad47fd8657bbac4f1f release26-maint +67409 f8044b8ff6eeebbafbced05795898f5561c11abe py3k +67410 8b14fc5e5f3f5d39c3472fd1b2a9b488a36c2f9f py3k +67411 397fbd6c3471a31002ce102208a1a786c30d49d9 legacy-trunk +67412 c546497b421a1a2c5634e115ff86fbd8ebe53007 release26-maint +67413 b58a435002c111d9381e848fb2bd0418f5f6bdc3 release26-maint +67414 fcae14bcea7323785bec310760b034b1c9ff8750 legacy-trunk +67415 381c62819f2ec82978acc912b035690786f61b7d release26-maint +67416 c51262ad5603de972add79d5beb935e1a0145994 py3k +67417 3803b6c4ff8f320105067d254f8938f093497b20 py3k +67418 06e6c39ad8024f87f9a8a6442bf8d632c33dd0d5 py3k +67419 cc9efb9f8e57d84d0709eb541938c83af0c41c63 legacy-trunk +67420 bf2d19293db77ca3a0aaa0fc2c117a5b0d7e267b release26-maint +67421 a90352e59ce61d32f432d4e9c844832c46f35f94 py3k +67422 18aa728e952d511f92b1167a979ed22300e4a405 py3k +67423 0b3b44b8c7826257a2781fbb9568edbdbe8f73c5 legacy-trunk +67424 46b5cf3cade4af75c65ecfe121c07e4eb7d8a873 legacy-trunk +67425 0fcfe18ff8f6d57068aa4b73ed89bbe1e1719b88 py3k +67428 c8aed9a36ecb7f98c480789d38f375e3adde4b00 legacy-trunk +67429 8d329d2a364ab525cb9cf2c91120c601422960d9 py3k +67430 0607c97a8124b4e3851f8f4a4912164d77262cc4 release26-maint +67432 23b4348fdf52ff6ece059ec7d1b0d0f58cddb583 legacy-trunk +67436 560b2f52952c87c4c82d7c192fc2bf358386222b py3k +67440 05c12f6d140409c109981d77d98de882ded5dcc0 legacy-trunk +67441 cc294fc90f6c4dced919bda4dcbe2264b57381dd legacy-trunk +67442 ef0c5ca454412344c96a6c2028b075b2c3e50012 legacy-trunk +67443 8037fa7ace9eec3c90b828c1506dd1e858da6eb4 py3k +67444 e29f66fdb42c20f9a7e3d326461e68a3bd52995a legacy-trunk +67445 f9aa87eb334c1edc463a9ecb7a153123a8b770d8 legacy-trunk +67446 3569f7b090256e0aa0ecf7e3a14899674d18a29a py3k +67447 277a8f2944b4235aeecd4d715fc324b9a0809ac9 tlee-ast-optimize +67448 bef3c85a908d4cddd0b1afd6106556b822685b77 py3k +67449 a1de91ad92882ddb7b29de4bc8eb3da9fda4ecde legacy-trunk +67450 7fdf936b30bf6f2cadcbe3c5f42158226d3122e9 release26-maint +67451 3bf18be7ce5a5b48427ae64e1b98e944282d241c py3k +67452 f1ebbc186c112763deea16127df7ced709924e9e release25-maint +67453 942b4a2c2c13be9af59669f88f7ba45ef41401fd release24-maint +67454 39a56d355376aaff492e5f19ff635cf41565c70a legacy-trunk +67455 3712d1f6bfd55b5a5998bc049ee60d32270b7ba8 legacy-trunk +67456 b962d04bb7f0334aed1df8a6cce1cb6c4b74e9fd release26-maint +67457 7ed38aa10de6a52e6864681b334eda33b704f6c9 legacy-trunk +67458 189def06253c6a7a97285bd47e95747b5a74ad2d legacy-trunk +67459 01f6ea7f7a7581f4a494fc9f6ae88da8452b03fc release26-maint +67460 75a8caa241865959e5b65ff37e2d5a96f391ea28 py3k +67461 ed8adfef26c65b3a886c83b0bd34a62678881f67 py3k +67462 6e891353ce9658ebebd3f67e790c29ac432fab0f py3k +67463 681733b49fa2398af8fb81f98cb3e161eb6b54c1 legacy-trunk +67464 60e775eaaaeee8a8eec6f1c5c697231cbe0f912b py3k +67465 3e5995f6ab8f6a6c44ee8eb4ba87290116669df3 py3k +67466 ab12d716a7a81ed4a04ba67030393c7737400c5b release26-maint +67467 7f8f71dc86c74095c6a91a41e3f7623f3f18e877 legacy-trunk +67468 0732d13ed0678ad8565b8e904002942db80341b8 py3k +67469 0f7725e19bc3b93f3281864250fbf56280810190 py3k +67470 4461f18f2643c8fc99f102b41e1790718d95118e py3k +67471 b1d2af52d801534a8bd82be9744bddae344fdffd py3k +67472 ed8476d7f64a5d61651810642d7a4b344eca36cd py3k +67473 09c2d15e4d1db62c99fa13551fd57e70bc417ffa release26-maint +67474 c182e3b9e9fc3abdfd50da5b6fc5ba7f7ddcd68a py3k +67475 40ec6d289552e7f339cdf077f597335e7270d706 py3k +67476 6a121f04bc7df6a249fa99936038b1e7bf0a512f py3k +67477 d172dd8d9e09ebd88f51481ec7d85903ab779ef7 py3k +67478 86ee2e0d4d41549550703fb4c7f02ab67e411e53 py3k +67479 78b0c8de3a98838213381e06546b04ca149c3884 py3k +67480 9c81c3b7111952f14ea28eb321061e2a424d99f5 py3k +67481 cdda2093f6f5308b62bd2963495d12b699153524 py3k +67482 cc5a95f0f56a534f5fb430e9080b727fd73425d5 py3k +67483 c826e462fa51f53f215dfbf6615a2eeb7db80a3f release26-maint +67484 5d4dfeedd512b31944308dcc69fff414123005e1 legacy-trunk +67485 04526a222caf243b354a550d13d108f698e53899 py3k +67487 cf47f7c7ddb326e068a9468bc4a7187a06cfb857 py3k +67488 d1de302e6efc5386168116721f5ecb3d1ecda298 py3k +67489 81ca7bb8804f02c58cb99e3c6192143c39aa08fc py3k +67490 137b50ee96d5c1ad180ae640697a9cd4a3d4bafb py3k +67491 54feac3d116906497436c57c7b88782345667e98 py3k +67492 f447a1de2fae9b0332f9703554d2db304732942e py3k +67493 845305a3da363ebbd8ffc33a22497cea16e6a31f py3k +67494 3344804f327d6e5b5e1e2efa3ee07961a8a06b6b legacy-trunk +67495 6a4cc6ba1c16aecbb2e9fee13fd1f8a3a8941fc2 py3k +67496 a3d0299b4b1dafbaa89f758fcd34c5485eb47e5f py3k +67497 c6a4a2cc56126a39745ee7df8072ae09127f4a4f py3k +67498 588a95ef797176a5578cc341329dabd7ab41ce4e legacy-trunk +67499 107d453179be2ede7e78f7aa8678c22c6205bd43 release30-maint +67500 5235dcda9076f25a9cdcc726a9b3ac394791abdb py3k +67501 2a5ec060bb99819b6d5d5e51b60d8dba97b4a61c release30-maint +67502 59adfe43698dc848d8311527c0de3444be6fda90 release30-maint +67503 a653214602707bde0e51064d7c7789ce295e4432 release30-maint +67504 9807b79a162e6ffb0ba42e2c69584847a6a7e3c2 release30-maint +67505 589c88b20b5b7e00779101c17d1491a33a8fb9c5 release30-maint +67506 68a6e3ac41c18c8a190ada3aa17644b610de2c57 release30-maint +67507 9a2b063870a3091f23019f7bccc9d45a6413db46 py3k +67508 75b8ee062b0d4fc917b137393a289a0f548c1cd6 py3k +67511 878d40468c4e7d2d1293fab6a6965af21b14f929 legacy-trunk +67512 e07a322ef5934ce35b49699e3938e21fd3126313 release30-maint +67515 cabf303e787aa5cd7209b40e3b2caba3ee75c5a5 release26-maint +67516 c9da85c19719b9546da7bf6e63caf1c05cd6491e release26-maint +67517 531457cfa3e243e1fd30854956e5564a581556bb py3k +67518 71aca853b24421066fd4947037a0bf35180ca3af release30-maint +67519 e793fc3c8abe95e3198f8491c549cbebfe514ec9 py3k +67521 f3c485e2b4513665783db919b994b18ea3c0bd3d legacy-trunk +67522 48f29d894b3cc7afbaeb4af5113081a764be2329 py3k +67523 42560374ab251abad3473e3d0d2852183e377348 py3k +67524 07efce107aaef2e9d4ecb91ed2206c186948b58c release30-maint +67525 856fc3ea2ddb87397bcc4a3886fc20138c859f03 py3k +67526 75207a0a9e158450e059975b012bb7fd2f631b1f py3k +67527 458d7bc1295091979adb68284ea11af615859e1b py3k +67528 e8ab27582b1843f182a047a456e2e1c99cf643c1 legacy-trunk +67529 3e650032a5d1cbb1221442b9cfd12a728d49c0ac py3k +67530 c115ad58eadfe9a0fbd8b69638c2e132c90102fe py3k +67531 f6e53c30ae96c5bc1d34a09405f04fc90a396260 legacy-trunk +67532 231680244c17b3230c5c0a938cd7e7c63eba3e12 legacy-trunk +67533 74bfeb364a23b37fdb39d610b1a065ac9986fa02 release26-maint +67534 103c68cc29e5e2f64bb29f55499a87cacbe441ad py3k +67535 89e738c792c0bc8dc161efdcc96d8cb653df16ac release30-maint +67536 4790b31d925777f2f1c6683f564b3b1a9541b762 legacy-trunk +67537 9f8e51fdcea0fbc66bcb8d81dbd1851b0d982765 legacy-trunk +67538 cd5f56a81cce1d165e3dfbc5b8a60c8090d0a964 legacy-trunk +67539 3eca5a73651610aa931e3ade8b7a73df77eb0b25 py3k +67540 27ba0995775143eba9145ad8577b2f19142e0fc7 release30-maint +67541 6929563dad003d651f60e3ea1c968274c4d6ca3f py3k +67542 678607ce122fa8777c04cd25f087785e391072bd release30-maint +67543 589cde614b5bfe4bc61d6b055c6c5214c7ebc661 legacy-trunk +67544 ded99e4f6b3dbc10525e860317bf8e004c0d2580 py3k +67545 a9d0067cbea46375cf232fbb6bc60eef99ceb431 py3k +67547 54c19a1bbabd9e5ec995e083707d2c5d3ca92941 release26-maint +67548 4e13b37b3723b92173d8088c48338e771cd7a732 py3k +67549 9bb86f7fb944795af9f93fc1105b8b8b8ec7977b py3k +67550 8dd356b14b0d7d56e128337717401379bc9b9d99 py3k +67551 729db9464ef688aa33ba2c79cd6b1928ea5728ca py3k +67552 bdb02ead759b9783c6af2dbce0e652889fc66fe4 py3k +67553 85190ff224e0c471a6a162badc93c7561d00dbad legacy-trunk +67554 c319d2474f57e0fcc8fe58baf0212f43e3c31170 legacy-trunk +67555 27946f1eb8fa577ebe28f476d4cbe01946fa5b60 py3k +67556 a0cea01ece53ce6eaff63a917355e0562e4048b9 legacy-trunk +67557 7659841d2714ded0dcfff92a539267e4c4724022 legacy-trunk +67559 86d8a522f44073d121136422a464e8d64e8ddd3e py3k +67560 b47b7d9c593606a7a0a1ce60850737e7161c0f12 release30-maint +67561 89bc31e064890bf8a5c9ea585b2855c6c1b4f042 release26-maint +67562 01371897cb190035d56bbf4e63d21b7bce50c74c release26-maint +67563 5ef8b5a74efa21cdb9da587a5a04750ca12e943d release26-maint +67564 859f550b4003aca1d26fd4e7b87ba408c0de4fc6 release26-maint +67565 3c7eef187bea34daad1ffa33d1ec38b41582ba1a release26-maint +67566 f08d1448b90ff5d6c08530fe90e98c8fb63ea86f release26-maint +67567 6e51fe1b7ed9ea542fa2ce6ae6b39104bc3886ec release26-maint +67568 a172eaa4d5ec104953d0c1d3dba0adce3762251a release26-maint +67569 11bf59fe10b924107b7da52ecf5262830a43e199 release26-maint +67570 2e26e8219aa420c54eb5b040f1103af5d7d76fc3 release26-maint +67571 3636fe95732c137a314b97fff1a6e2fbc99e2059 legacy-trunk +67572 20ab2260dc93bc072db47daa942697051391ae32 legacy-trunk +67573 c434b771477bfa1b6478f1b394cc4538b54134f3 release26-maint +67574 b38eab8c9904da7f2bdf716bcb014b52f784cf7f legacy-trunk +67575 20cd8cf61373d9357d3eef9d364d8e773f50ec84 legacy-trunk +67576 c49d6d7c181e1f2f4b9cd6eebb9d4d7f73b5589c legacy-trunk +67578 100e4160adfba29f3bc0292b4060fce01cbcd7d9 py3k +67579 94b4f88e5f6be4445b5e4cdd08410c766504c1e4 legacy-trunk +67580 007964809803ff3cd7ef0fa5e928d167b03219f1 legacy-trunk +67581 92cb6e5eb43ce61f258a0e03c98267079dfc3de0 legacy-trunk +67583 a3ab95345b52b24c2a975edd30b582461568729b legacy-trunk +67584 05504582ced67ed3f28024d9b66c69bbf254cfcf legacy-trunk +67585 c06183b2d06f490434deedd972517ae4ba33c6f6 py3k +67586 098dbd9731477c5c646b1f92e5c6d7b83e70d905 py3k +67587 ff2263de0d6f4ab5bbc956acaa81d6ae6a51e308 legacy-trunk +67588 7a92a164fc12f3c4dd0007774252b6eac6f4259d py3k +67589 de3094bb1421d7d67b7f1e04cbc0f497ff80e044 release30-maint +67590 57b5c4639a5d23f4ecf5ec143f47db86ec7f61ad legacy-trunk +67591 c0301b5430d524b33c3444328f75f830e6331ae3 legacy-trunk +67592 20a1ccaddcaeee77608af6ba50f028ac7fcd114f release26-maint +67593 bbb101a5f8ccde5dec57d53902b9bfc849e19bd9 py3k +67594 651dfb3405d218f4bc16040b2d06d9f13dca0ff5 py3k +67595 624b9eaedb80f09aacbbfaa873890642d156bd9f py3k +67596 25f222befec4bdaeeb3a5bc95f50a89fc4abcd58 py3k +67597 7f0820d7329937a5043973163d5aee7622498fe8 legacy-trunk +67600 4c9844cf2a3f784e03ba21a5621523dec33c5739 release30-maint +67601 1f2a3b13e86d7c4ba87073e018e60cfd4753fb2e legacy-trunk +67602 aba2ce163b718d11aa3cc78b0762c08653542c92 release30-maint +67603 b01da26c4bf9400d7e110144ef178bf968fa6658 py3k +67605 8323f2df56174746da4a54cc6ac6533bbe318a77 py3k +67606 2c78f815e192abff6e142357f0433a87b1606a4c py3k +67607 ac42a8f75f925b76b97f9be0b5ab774bbbf80e72 py3k +67608 a9068203afd5c003a40e55481862c8028086f07e legacy-trunk +67609 7c3af3200e34b725771bac75053463544b6594c3 py3k +67610 67ce745a747a88441644d663ca96f88889e3e44c py3k +67611 ba8fe3a40a5bf73d45324642bd3f556c68af7100 py3k +67612 61963541cbf5bd9fbf752a2661895f81fc4170b1 py3k +67613 e0073b7650cc3cae9b711cca1c055a3f4cc56eed release26-maint +67614 dd5e1a042dba4fba3c940f755aa2f7af9366ba96 legacy-trunk +67615 0be10391347b9cdd0efec572adaf66d94196c6d2 release30-maint +67616 b12d6f606618abfefda457bcccdf9ef7c69b9459 py3k +67617 ce36388727a78b744e23dc7355e313e7ee9c3ddc py3k +67618 52ad8a72472e8466cc36e57175cb15edd7d6d426 py3k +67619 1348dc244ca34b7b651b7912fd66da3251086358 legacy-trunk +67620 3de720cd1766a52e3accb0baefa2db31c00b6af0 py3k +67622 6dab258752c18b04a87c62b5b88c9ed9ff1718bc release26-maint +67623 1693fd94d829d1f107771c34d893b111f8b85f61 release30-maint +67624 4b9ad3e7483e35d018b6c351ab3c3475735af250 release30-maint +67625 eff4aab9584795a110b22d9220c877424bcd77b7 release30-maint +67626 e9f93e2f8fbca8ff9854f20677cc179473cb78fd release30-maint +67627 b14f587f510e698201ad0001532239bc832edabe release30-maint +67628 0fe49aec257cba4eb54bd036178fa205910c256f legacy-trunk +67629 6aa0985abba8c684ec60951139c85983cb34da12 release26-maint +67631 7874377142f64c1ad3b4f075449027cb5940baee legacy-trunk +67632 5d0e93f0398a3cf4c0fad4f932dd327ed49f4bcd py3k +67633 ae98681058b247ca30b5b4a45d543ff68e1756ff release26-maint +67634 eec9252b3d4548018babd1927320a669542b0db4 release26-maint +67635 dabed69d8a2ab2cd28a728a8dad4176aaabf95fe py3k +67636 170a9768e7aeef94fe838dba5db89b8ed52729ad py3k +67637 15807e262ebf0fa58d39a100147e66cea27f0cfe py3k +67638 b8be9d1f0d455d38a68b72f69d95f5828e1c18f7 py3k +67639 21a7e8c11707262d112c85fcb08b1f6184fdec1a py3k +67640 0d3debcb8d44914704d33cdd4e7a8ee2ff0d8a03 py3k +67641 60ee901b735298e82aab832d3d280dd16e029b4d py3k +67642 024a9897c6510acd66f03bea83d5ab6e6907fb23 py3k +67643 92c73483c1f7a5c208f62c3b5b4b5f0b3deb3237 release30-maint +67644 c7abfab4dcdb989ec525ecd3ca8fe2febda6b908 release30-maint +67645 91700d2121c82d3a855210d73ebe94db791c5826 release30-maint +67646 63ee6a0f73589954c70ec91b06ebf9a435f8b7c4 release30-maint +67647 a86cdf49b82144623d3c4edc05298fd785ff3949 release30-maint +67648 009b466cc6ca9452a8e4f6f72514db70799a7d5f release30-maint +67649 e07bc379898125ef0a523baae04a46405edcc2a0 release30-maint +67650 820c112cc2a865f7fbcc69359b2c11f8c0f47cde py3k +67651 725192c64c284929708a488e5927a1be51dc485f release30-maint +67653 c8aa3154db0e362c843eb8e628a54c16f34bee00 py3k +67654 a9e30250ed2067ffe9a2b7364e2358ee357ac859 legacy-trunk +67655 9e11c92da476ced5c8739f3a2108c3ac315a793b py3k +67658 f4b16c02d1f59e63de586ce0fe8b993a0a98e8dc legacy-trunk +67659 dca57cb0c2001b0e3e9305cfe178debffaba0e49 legacy-trunk +67660 99dd0d00725a595f9dde5d2c9631f6fc74cf9876 release26-maint +67661 dcac885d00f1da9af82b0c7b6890653caa6b8d38 py3k +67662 463bfa07308100a1986611df943409e42690fb4f py3k +67663 8b9d08dc850048b3167452ed5d82f4a03040c4f5 py3k-issue1717 +67664 26a09d38664a01cf5765aed2cf402958892b5201 py3k-issue1717 +67665 d040c435ade8c98ddf4c5f42dc2d8e98094f5b31 py3k-issue1717 +67666 dc696deb2cf26da24098d9640ec7e9cd79dafc57 legacy-trunk +67667 83d642a3439b3e99d7fd2892534f70328591f40d release30-maint +67668 3dac9928194b7ab42d131f1545b23456b5ffde6a py3k-issue1717 +67669 093e4fa50d84b64d72b28bd761e498087bcbaebd py3k-issue1717 +67670 05caf440ce8f00b197f903acac09da28f87c1d65 py3k-issue1717 +67671 38e61168454b256afae8fff1f97af97ee32d0367 py3k-issue1717 +67672 b79d1d76f195a71dbf363a364dd587b218b5572d py3k-issue1717 +67676 61cb6c4ab20db746d371471d4893eb2bfde881bd legacy-trunk +67677 ad647716696c488de4b9f21a3547e491865459e6 legacy-trunk +67680 d470b9a7e9e1896dc19d46bf0c10d4e32a7a8d70 py3k-issue1717 +67681 9fa0a65ece23a291ece090197f5065afe32098f4 legacy-trunk +67682 40f75661554db8074065e91c9c4edc1acbd6ba14 py3k +67683 d9e828e83d125def76235c3d98d5f73abef8df66 py3k +67684 694d04ed2b43dac657abf5cce817ff35f0387a9f release25-maint +67685 62c89cbfb511b8725169b35e41f4ac0cfd9b375e legacy-trunk +67686 98abe9cde7ce7771b56f195a2e4d79d1de8a61f5 release25-maint +67687 a6ddd94983ea3d38a1c1643bb129d07a5967dbd2 release25-maint +67688 9a10d4404bd002cf534aa1f94cb729795ef2edb1 legacy-trunk +67689 48239f6209b064dbe9e00bfb990b30bd75807558 py3k +67690 26518d41a1868c495c473ba5111d456036d498dd release30-maint +67691 59670b7b77a6b530775ddc7d430c8e9a6c4b460a release26-maint +67692 4af5e2a609ab358fc900885be21494cc90a05d5e legacy-trunk +67693 b089a5777d806e7173928d25a3ec281eafd5fba3 release25-maint +67694 ae81975103b089c2a01ec8060f8d4d2adb6dca6b legacy-trunk +67695 22aa7dd0ea81b918a6df67e74d6bf0e55c8a0fd8 py3k +67696 2f8c317dff17e7f6a92a8132beb41705aefc617a release26-maint +67697 abf815b80b5d557a053360b032e43dd10affb4e7 py3k +67698 fb2456a36a83a8853e2e274a8f5d73ebbe6809e2 release30-maint +67699 e35468bc4df411ddd3b8d7f2e375ba8f30b2f9e1 release25-maint +67700 21de7a9146f74a0c78a33ece0a8cc9c050b4d10a release30-maint +67701 01c023d9218ebd9936dc26a49b574d45fd0b51e1 release26-maint +67702 71679756469e9019d2ea516d6724fd9a29913840 py3k +67703 9c31a98744788bf6fea3a635817d8787f2151387 py3k +67704 e4e0ff7ddc85ec1e1561976b9788eb5c15a1ffea release30-maint +67707 0df0fdfc8e1b2c03b10e0e1c83fb99c60fbc9082 legacy-trunk +67708 a2525154e44f240e90356ab2a313fb6bfa1d1685 py3k +67709 776a6cafc21a348195931318e577ccc26f951942 release26-maint +67710 20a84e06305257232ff786ef924bb03e01fae308 release30-maint +67711 d91e6286276451bd7b2bc4c9baffb8e6a5637134 py3k +67712 26e78942165e10fa66629003ab7cd0eaa0b8bde9 release30-maint +67713 3e1c449d11e0eae002a2e1ea4cb30a3b18917f0f py3k +67714 df6649951410ec83d8ecd26990ac18a2e433f439 release30-maint +67715 300b95fa7b4d3f9b1d471740b473e18c614af8c1 py3k +67717 b4552e2ffd5a418452d2c10c2588d8667df4f14f legacy-trunk +67718 f9b95294ac8577a8461a9de1a62561eede5829b4 release26-maint +67719 5855e3e0e85b149c6a811ff5a3f6989cdcdb808f py3k +67720 fdec576611bdfa6375c252c23e07d9799dbb13f4 release30-maint +67721 33a1e1008e540fbe66598089eb9818ce77182d2e release30-maint +67722 eeef71dd3cce02f8c669589f1fd49903f346f9a7 release26-maint +67724 4646c33531db303f9bba11390acde6464bf0f6c7 py3k +67725 245e787b90fc10ea8fed80e389529306df31ec0f legacy-trunk +67726 61d06409a660693b478a65163488aae0c2b11804 release24-maint +67727 33cd0649185853eef7c0aaf1ec187e8da98c005b release24-maint +67728 a6c3c715e2b70740c4b6b4f7dc6f47b16a7e5905 release24-maint +67729 fb5f8aff23fd1ccc1e612ffa6318a584dc336fb6 release24-maint +67731 0b7dcdb5ca3aac89e053b6792a41ba952639d60b release25-maint +67732 2e21cea4367071c264925037c6a13792f8bb5b8b release25-maint +67733 4d2422989981aebcfc6015a67121c03a76365435 release25-maint +67734 9caa1e5dd82bdd02e5956ce2e35095d18c21443a release25-maint +67735 1f1a117767740331e8b180e53031e43e8e33e6b4 release25-maint +67736 8d902c513ba0f859f5742a2ee4aaedbceb320ec8 release25-maint +67737 76f189ea5509f1b2497a5d5d86771e850e01175d release25-maint +67738 3a332bf06da069efa787de47ba8cefadd025fa04 release25-maint +67739 e6dbadab01d8a8501f85b032caf363d30b42c34f release25-maint +67740 5f4f6b7da8cbca574febad93d4358fddba1ecab3 release25-maint +67741 12dd2cf5e0c80026505a83d81673015574147340 release25-maint +67742 9530d334d2624219e7ee1aecaf33532e910266bc release25-maint +67743 58468fcde06e9bf53ba58d5c4f42e89e79b9a351 release25-maint +67744 88c08a63cb741570cc25096cee91441f9ab63f03 release24-maint +67745 6e80ec4130973de55f508738a09ac9fcb30d004c release25-maint +67746 bb1d9ae802c3152d0e30b0df3f830950758f1f0c legacy-trunk +67747 740ce9a523ffc4acc9112002bc99234d86cd43e3 py3k +67748 a090aab575c6ef6c322d49476704e28dd45ef8eb legacy-trunk +67749 9c428dc3d6fb7782e180574abb3b3657f2283ac4 py3k +67750 b5efca304d2af91e1cd0e6e6fa9e110b0e07000d legacy-trunk +67751 f20eb809535e91c0b14416cc5447357cfcbbe95c legacy-trunk +67752 4264cf00a75c0fe2062ed84627f04e46f387818f release26-maint +67753 dd1b8da01d02d18bd3df7c3cee227562887c883b py3k +67754 252927a2f32d6fe0fd0ccf39c5c7392a7817b523 release30-maint +67755 cc727239e51b164720fee6243d31656f6dbf1ee4 py3k +67759 eb07009c86605811e6935abbfe981890860a74d3 py3k +67760 18f96f6883af5d50927e6b97d463327ef002858a release30-maint +67761 7033b28685a13bf455445a418c9b0c5b964005ac legacy-trunk +67762 b095178c04928a346c02b8a47404704b782bb671 legacy-trunk +67763 18bce2f2a7c56bad4cb364f6f1b0dc67cc761da9 py3k +67764 d15746abf6c783c622afe4bd2399002dc5387c24 release26-maint +67777 575f973ff24433e152e88a434c4c8a674524d250 legacy-trunk +67779 72a7ac218ea3283cd1d4b13b8efd32f9bafab2d7 legacy-trunk +67780 96ab08ed95a402ad7f9fbd6ada1c4217b098161d py3k +67781 4db66c20ca68e5a18a2666d5dfa6d69d8750ba6b py3k +67782 ea9c6026ae7ea2462cf3afceebb55857691b8001 py3k +67783 ad982c26c3dd5f4d779a6591a9e746b7c5ce8647 py3k +67784 e36be1ec72965c00e6b0a6fa07d308c7aa3ffe4f legacy-trunk +67785 9e9fca94d2862168f140698fa7cb724107d676ad legacy-trunk +67786 3336e4b77a0412eae87aa32fa3f0fc420feaf58a py3k +67787 dc6f974fb7d4f832435d0619c35774f87f2755e0 legacy-trunk +67788 1af2b8b0ad88cb9479cb47dabcadb5f526c728b6 legacy-trunk +67789 dacaa1f4419d703c686586c2ad9e767e8e2e7653 py3k +67790 ab51c1509bc04a46bf9a54329ca1cbdaa298bcf1 legacy-trunk +67791 edd72437cec3f357b20eba0f40013f7e7e916d2b release26-maint +67792 7dab88070bc7dfad08950704e292d7d215a7585b py3k +67793 eb2876ae0476960fe47654e2e90f32b23217b593 release30-maint +67794 20f15c0f21f88a9af885b7c05c2f080be73094b7 py3k +67795 4805745d5599377bf8b9c35b6345c0cbcc54a8bc release30-maint +67796 29968395f92053689580dba69bddaecabfd75c7a release26-maint +67797 14cd588544fa1b1c9a3595b32b81a18e3faa61de legacy-trunk +67798 d50dad2b275042adeaf309a956b3ae8b24700124 py3k +67801 9541a2ecc4fbbcee4fc8e62867e4f8e80afad06f release26-maint +67802 b7d9adc4c343796bae3c8780aab828ec8374b1e7 legacy-trunk +67803 22ff9a46298755de587b596a9a4c7ce3341ba996 py3k +67804 a175b19b4bf2ce98410e61f2799f2deaa7f47f69 release30-maint +67806 8c424f116fb8d0ed75d7a9b2e4c26eb7fbc78c89 legacy-trunk +67807 21d3357dcbec41fc6fe00c04985118ac890fb136 release26-maint +67810 a43a6df18ba4bc689c2218dd04600171a2c8c76c py3k +67811 aef0730df9ba327a8e15d372ae737dfb6ec42e6f release30-maint +67813 68987e931193faf69d2babd10405706875428b3f release24-maint +67814 07407de18394883e4fdd46cc9cf4d9d16dcaf451 py3k +67815 d06b04c57b53618018f71bbead9509cbe0c35508 release30-maint +67818 94e79d78dff0dfb5c53f49842c7df65ad5b79e66 legacy-trunk +67822 f0db06f49a4e30e49666251f648ce95e709e1569 legacy-trunk +67823 3366864814466000f78ad975b8c7debb8a238e67 py3k +67824 92e21652f2f4d32dbbcf6c5ab39dd4bc0126dc27 py3k +67825 cbbe258866487a4060edfa52c8d3960a1ac6542d release25-maint +67832 fc9729c80b791a7cbce7a6b9c469aaca5228a884 legacy-trunk +67834 189b462ee9d4f25bfc2d030b69184a0908d77224 py3k +67839 2ee4653927f72f9bb3ff14b3083d4a203d684dfc py3k +67840 daf6d3af40c4b939dd1dcf15a77795fcf6736f7c py3k +67841 001a2515d57b0188a4ac45be9a8c6f4c7eaf24fe py3k +67842 aebf7124dd322a8fb5594d46e9a651dbe5b6a91f release30-maint +67843 82e6fe3707829f66f4d4fd0c8a35a03dc530dcba py3k +67844 24b80b7978ec2194c4fc7e1100aa40b1afe11f73 legacy-trunk +67845 56b7ebf12ea3adfd90324606e0db17ccf6948358 release26-maint +67846 47ecbe2d3eefbc53c75bbc1a6ede73dce3494d96 py3k +67847 bf20c384be5639aea050e802ace8413c0c8cbb3e release30-maint +67848 6fa5f969efe647a23f8f2a1b4622fd55c32eb8fc legacy-trunk +67849 5e83929f7eeb61d6e009bb1f467962381eed5efa legacy-trunk +67850 9a1890982489e5469972400c6379f4b2919919f4 legacy-trunk +67851 0db907a70723609ab1a8705da7f0b739f616de07 py3k +67852 f3f1f1462c82536bb23796e70c85522144ee24db release24-maint +67853 48f2737337956ee15e3910d783f2ef74249b0639 release24-maint +67854 608856a7e568b86e5163ea6a87eb0167288bc668 release25-maint +67855 3cc056d21c2f4435a534d23345bad9c0a9d9b3cb release25-maint +67856 b56231224728abf2cb3eaa3b47afd7809f85db93 release25-maint +67857 496dff47bc7ef6fc1a6e1742247599f2c9d8dbb3 legacy-trunk +67858 9bdeb0be1dad4dc8b0f19d61c66df899e63e9dfd py3k +67859 1c94e798c85b1a613948827a009c6abbc30cf4f8 legacy-trunk +67860 428f6c4e8446210dc1395a6f01acce5d8b6568e7 py3k +67861 d0282a292b0aa8c25251cce40c9d787d28f60cb3 release30-maint +67862 9fb2a23eac435a2bd0d6f294a5bf05b9d48a63d7 legacy-trunk +67863 0647948be840efd3be89ae088daa25a55e49a1bb legacy-trunk +67864 670204cf23e2256d2bdcd42221f7a0ac4fcb56bf legacy-trunk +67865 a765618c7e944f3e070a6524dffac8ee6a43a2e3 py3k +67866 46279cebea9cf143ccb90c49373365ceae0a771f release24-maint +67867 773af18608e3a62a409e933db4808f03bae0d1ee release25-maint +67868 edb2eefb6856f6fb0f3119d58bd924489e011414 release26-maint +67869 78fc096e5085298fd011a531d652de497b9f2325 py3k-issue1717 +67870 7fe72ae19ab290a34c48313db0e10eafa1ee6386 py3k-issue1717 +67871 45bea584694e350cf2b912415bdc681a5ad22162 py3k +67872 ee9c9cc028ce1591957e7c8d71016e3d2bffeef5 py3k-issue1717 +67873 ad246cb4f662e211c4701fe3b9fdcb639c994080 release30-maint +67874 6e3e582fe3f388ed8b027cab5e6ccb4d6e572aa7 py3k-issue1717 +67875 0c0b9abb58426dd8a67d80d46c597fbd4ff71bc8 py3k-issue1717 +67876 8bb9a854639b6905e039def83a3ba5a72dad111b py3k-issue1717 +67877 fb993f093cbf43bdd1c2bbc4d61753438abcfbc7 py3k-issue1717 +67878 a654f1e1be231fd33b890915ea536885bd7c7ca0 py3k-issue1717 +67879 0dca2b457775d4725dd48202f5f5f67da88f709d py3k-issue1717 +67880 589edf615adb7262df9ca3ba73fae5d317318a66 legacy-trunk +67881 a7b357f9e8a48ead62ed61af9a8c58c6cf9e7297 py3k +67882 c4fffa0972e368e0d73995bfc8698cf6a9cb33d8 legacy-trunk +67884 1d961fe54a6f9d3c1941067a132726bff55e1dc3 py3k +67885 f33dcf7e6e1c3ed945ebb9b9bb2c83f8177268a2 legacy-trunk +67886 01b807537915651bc143bd10323715401c08a8e8 py3k +67887 e87a2561188b5335231fd6ebabc7b32a1bff9b10 py3k +67888 1adfabcbe07317fad5dffdadeeb560b0ad6bb814 release30-maint +67889 3ab102d9cf5606a74968336c193b111b267ab0c3 legacy-trunk +67890 af56e3f14eb74b30d3973d5bdce12207eb1487a1 legacy-trunk +67891 5294b214e1be98e7979bbdf981353460c6f69bdf legacy-trunk +67892 4fda4f545f790690133251356ad92d82b8534bbc legacy-trunk +67893 11667610e9f56a73e8b687f099dee167a671f998 release26-maint +67894 502f61d1fbaf4b51ec03deeb7985c5f8f153e928 py3k-issue1717 +67895 1bf727e2b08fde4e0cab86538016634819b20bf3 legacy-trunk +67896 e4675113d10efa739c5d8ac32e32b4edba53e03f release26-maint +67898 de7bbc4d0b1d1725f2292120e43797e44e693260 legacy-trunk +67902 d79fdd8420f36ec85dbf642fab70d9aa0d239ca1 legacy-trunk +67903 c3b97599d7a1974d1f2885e97d614815da037b18 py3k +67904 03799bb44772283d810e621e39eeeeb9e38c07a2 legacy-trunk +67905 bd3c5de4cc541bf09db5139a67e47757b50e2c2b legacy-trunk +67906 241027b24b45d9430ac1e8191413154443b9d9f5 legacy-trunk +67907 94c05466306e21f320623b01d0bf29f23ae95ae7 legacy-trunk +67908 4bdecaa4ecab2b6c4561dc4e6656365976d743c1 legacy-trunk +67909 3a259a1e1d9c5e091987a1ef9463e9d6ce50583f release26-maint +67910 ac88b34320660b0d95e08827707a72801e5915fe py3k +67911 3965314bb922c2765c57bc51010009de97a2b63d release30-maint +67912 3132ed12ec1006c37bbc23edcf52bbf784c5c5e3 legacy-trunk +67913 05e010515c4bc5710230dc46427595483a6cb52e release25-maint +67914 0f9a7edb8e58c881e3d5650224503994e68d291c release25-maint +67915 aa45a1773f6e0ce4a4787df5e2e5f846fdb144ee release25-maint +67916 a0a6d9909312ad9c1d844af66e9c91931b93852a release25-maint +67917 c74fd75187d904891e2047f77b54329ececf351a release25-maint +67918 79295641fcf0be5d7c526f2fffc238f6afd1e45d legacy-trunk +67920 8751288ddd961c6388abfb14519e3bbb4c4c7749 legacy-trunk +67921 10097bd65564f0dbdcd0fd168e6deee2d69733e3 legacy-trunk +67923 069d95deea9154e2a320510e94bb7f714c662468 legacy-trunk +67924 efd4003ee8ea5aa34502760a7ea2960471029498 legacy-trunk +67925 50279263801b5cfd24de8b9ea8429470e38aef58 py3k +67926 f6cd1a7a31bb864775ba483e964dfd4c37e08740 legacy-trunk +67927 112ba3df851d2ff6390ea2e4a81c181588eea4e2 legacy-trunk +67929 0c852c116e235df05e1bdcbdae2505b5848bc24e py3k +67930 92bc14e8b37e6ac3d45e08a4b0c9a56bb47edabd legacy-trunk +67931 c3b43cb6703c62f6670cfbe56e8c1697494cf1dd py3k +67932 f859d824369ea9fb05efedb28792c22308a78f1a legacy-trunk +67933 adb9b547c7fe83a58f576ae45732184608c89e7f py3k +67934 f6ae7cc9e2e85d776a14475eb10a8b75a44d9072 legacy-trunk +67935 699fdd8217f3ba82d292ada021db21dded628dd0 legacy-trunk +67936 d27024755593b8f79210c3b9bc3165ea86ef6f95 release26-maint +67937 303ad45a967fc51ee7651409ed4a1676bdd6e372 py3k +67938 665c4ac47073e73f89dd83201fd9d68bbac3c3c8 py3k +67939 db50dc0061edeb3b5c062d01ce1739c74a9e2c2f py3k +67940 2e53262c55ea67ecaea2de3abd27a6738d7e75f8 py3k +67941 113751a8990c94872d9b7da75b1fa478f1499cc4 py3k +67942 408a9ff4f8b2c81e36b6e3933512bd8fd7c9ec48 py3k +67943 7b1d0cea98706482507dd0307a6b82e195ef3bee legacy-trunk +67944 fb150fcf165d0fa63a2f34e17fc61f8a4b6b65a8 release26-maint +67945 4bdf9e342291a64e5df9e78f3d3939405ac625ca py3k +67946 94f996bc64b3bf8486f2b56713a249f87bab0efc legacy-trunk +67947 fec72c9b271d89645254cb6b05e52910de941a79 py3k +67948 ad7447a165bbfab5c0262fafd13b7950659230a0 py3k +67949 1e1214410375aadee1ce630d4a9b96cff5e09cb3 py3k +67950 d281ebf8ea30f46954c12a8c8bc6a4ea77797670 py3k +67951 e673632e1885653c0fe6a4e11ce561ecd37e8e9d release26-maint +67952 41d7d8f0852b28479cd5bea4dddd148898e87f2c legacy-trunk +67953 e2bbbc06d92c8261ff3ac7ba5a9f550ae66247bc legacy-trunk +67954 93da9f14e5b58bda5f2293333274340c5de65cab legacy-trunk +67955 aff6e9dddd9f829d65e4ebf3bac963d1021e71ba legacy-trunk +67956 3991f37ebca31ccc7713d6206eb8ed1c098584e1 py3k +67957 75b4e32340a8ab10b1bcb605f5547c492fdece0e legacy-trunk +67958 1b88932defdb28b4d799b2e78b7c9f1e4d31ebf1 legacy-trunk +67959 bcdfdc369570850a23a7fb114fa5c41c786455f3 py3k +67960 a28f9e750b64833efc93ebf699df62e1628d35fa legacy-trunk +67961 e9a0de48b74784d0503714811586610d909cb935 legacy-trunk +67962 02430e44d50ecdeebd1fae09daaed901591987fb py3k +67963 fbfa1d6724de8c21a0200d6e0cf36b809ecf35a6 legacy-trunk +67964 1efa1304dfb325095af251454dae3b3b63e734b6 py3k +67965 a9e5ac4f091cd5dc3f67a8ae0a04d2cd905b1807 legacy-trunk +67966 a649884c79a81468a6bb3bcc542430a0aba2406f py3k +67967 cb3524b6407f6e38cef5957258dad70b8e792c42 legacy-trunk +67968 ea87cc068c56f48a095959cf845df5b9b14dc521 py3k +67969 8bfb466414ac9b574677401ec5f28114123a9803 py3k +67970 027a6f3ac87477c5ec94366421419741cdf063af legacy-trunk +67971 5ec3e3d54aa65af263804fe521557827549508a2 legacy-trunk +67972 a4a89d3e41af59c4b54cea187a78b296cc72e039 py3k +67973 db0ddce28d0f82734fa6d68940fdeb7fed359ac3 legacy-trunk +67974 7a011680e151ba2e23e217f1c03128947e2a13d5 py3k +67975 442078f079aa02511a7c24a88ce16e9c5b3dfba1 release30-maint +67976 9db3d3d39cc3e7575a92bac1415de95882024d50 legacy-trunk +67977 1e0d205fe8d70e5f9f1d6130ec630abafa795271 release26-maint +67978 6a0566a512184bd5579fc43ce0dfd01870bbd391 legacy-trunk +67979 341bf76eb6eb72b52865d434afcc6f2025e2d26b legacy-trunk +67980 0ea4bd59a40d66c7135169b4e0b0668ff7771c5c legacy-trunk +67981 e7720612a7969859092f335c5c4747f45833368b py3k +67982 641d27903bc5749ae0f7b271fb957bff949f49e8 legacy-trunk +67983 bded5bd60e954da6535cb2a26544c95b14e62598 py3k +67985 7c7624a33f8b323344b9104aaba939278a406e28 legacy-trunk +67986 375543b982446029ed3c74d9df99a3f25660f305 py3k-issue1717 +67987 73dcb8b421f80d195c6a2783300ace9cd51ece43 release26-maint +67988 2f15d59dfb80488018abe9b3de31237ccd708092 legacy-trunk +67989 457ec884af045c35e9d69e91c4076efc8973098b release26-maint +67990 e2ebac062432213ce42f8512cb75c9b37f412fe5 legacy-trunk +67995 6fb7d8f4273f2b0750211a27db2a0fc54bbc0c7f legacy-trunk +68006 2ad68dd0ac90f7a42974b6d245e981cd5bbd51da legacy-trunk +68007 87f5432b9edc8d9a51e7200ee6a7ddf1a391cc6d release26-maint +68008 b95dde95996a9b3a147dbbdcac24b45eefcb0b54 py3k +68009 87f86cce43b1535bfbadaa192bcceb325386dff5 release30-maint +68010 38357e1d21e6ab9829ea1141e581c8cda2c1622f legacy-trunk +68011 b9efdd8f8b3091efc874237d4ec573368bc7842f release26-maint +68012 9f8363088536a7278156f059798281036712f338 py3k +68013 a1abfe027074c994e6e4c662138f6c78f2863200 release30-maint +68014 89a3f5c9b503224cea710508cc2e915455fd9151 legacy-trunk +68015 71e732c9323445a20d33334cf061b4aa7cc86b11 py3k +68016 70de2e091e5826c0df9b1b6bbbd2c85e94862fce legacy-trunk +68017 18d817a7a39fa9f8ade3d40249e23117d30d55f0 py3k +68018 34c73a463b355a8b12161cabea3472cc4a020c01 legacy-trunk +68019 2932b37f1f044205cedacf3f4f7a998b721bdda9 release26-maint +68020 44ea9eac8c5b52522c4b0de8044a7cf7e6012a2b py3k +68021 7f5aa7e54ad5a124273afca860767259cbc2d649 release30-maint +68022 f7a3f14161e17577cfe52167da91471a31f9fc5e py3k +68023 ae1e114237295d9ff1c1527b40f25c76e2a0ecd4 release30-maint +68027 1aea83e0ae9f02ebc9375efa0d7690dabd2b841c py3k +68030 bc1b374395f40001a92d8aad4148613bb94041fa legacy-trunk +68031 3d447b7b13634ff34c0b9c7de341ca9e85ae3cdb release30-maint +68033 f1462d924a9c21ee9804da6b0a29781c03648540 legacy-trunk +68035 ad20b69b18b70b18271566a8ebb53451339c839b release26-maint +68036 9c06fb7d12602ec7d6cdeb6801a660bb4e8de6f7 py3k +68037 8fa611bbb077ff71092759bd58c63f18199814ad release30-maint +68051 7aaef4d5f880e7863fd6062e2e31fedcd4e1e4f4 legacy-trunk +68052 e782f97116dc1cf1282145eabdbe2eb5d45944f1 release26-maint +68057 f73fc441744f0657d807338db11e9ee863b468da legacy-trunk +68058 618d3397f888ce543251f828cf2b64be4a641ce5 py3k +68059 28aecbf1e832b05f6794dac7e1c5e9a6c43fa2e1 py3k +68060 43aacbe647cb3f49a57e0521ef647abd17610a17 release30-maint +68061 729999929ef4b5bd6ab1d15304ca14f35573be27 legacy-trunk +68062 1154d0245b66138b4d3d375d51fcda7df249e573 py3k +68064 afab319252e7923df418d0b9f3aca1adac40caca py3k +68074 fa6fc5526f71f1234164696063dc3458cd5902ac py3k +68075 2c844cfc375a31c2286e38229e9ab3ad68cbcf25 py3k +68076 c338bee2117397056706e0eb78c9db4c56a0412f release30-maint +68080 7431638e7dd8facc45f9b3cdcfb5cd566c68a124 release30-maint +68081 8a483439cb55feb3fe93cf3f0572593c52c9b125 legacy-trunk +68082 d8975f24af8b58df9cedef7df43f6bb89cdc79a5 release26-maint +68083 7d550cb5369e05ae6c7a17467b8a0d8e28c8e1e2 py3k +68084 3e18b459d4c8841de79038975119047de6c0865c release30-maint +68089 b75d769151baa8f0a1149daa8c431c74763d2ee2 legacy-trunk +68090 02fcd9c5fefbf980fc0168bbea6c6814ab1457be py3k +68091 ef649ce9b7839a0747c410877639e57ca9267055 py3k +68092 06f4c37d65f9689aa5c2380f90e2fe654cc2bebd legacy-trunk +68093 15a6626085f4a513ee424c78e5c82aea3c512cb3 py3k +68094 6d163c2aef56b8daaa24ed48daeb6f7ba5f03d59 py3k +68095 3853c15532c4ede33dd69a757f21c5f20c8cd307 release26-maint +68096 022d999c4d1a94b17b4ac81f0edf77b96ee30f4b release30-maint +68097 9c2ac78666d45783250ff63bcfc000cbc7857368 legacy-trunk +68098 dcbe99b0ce832277136ca5252468902804318add release26-maint +68099 1c5d942128b688057ff95f534f8ae798bd730651 legacy-trunk +68100 c43226875bd41079b25980b64d6a3cf3cfa3a1b6 release26-maint +68101 7e1a95b26a5ca6cbd4297b65fa499023d649cb84 py3k +68102 5cc073d661f7b6d33b2c3ec5406d688a251fdfea release30-maint +68103 5074830e9b994641f155fa895bef9accab1d1c3e py3k +68104 7239fbcdcd4fba65b1ca34ca39e697311d2ee5ce release30-maint +68112 13daf99db035770a429871c433670f94dfec266d legacy-trunk +68113 bf6f2dfc310ba14d99356a10ac7194b22851c81f py3k +68114 d32a669f96da993e093e588d2de3ba0e5500e162 release30-maint +68115 92ad965442525804a7dc6777c50056d111e87974 legacy-trunk +68116 59f3bf2a328d44842c6c2993f068971e751c63e9 legacy-trunk +68117 927f5d9087f5a15e5a494ac9daf386cfc695fe9e legacy-trunk +68118 394e389e89f09a6ef38a0b4a58623064cb42a115 legacy-trunk +68119 20edb7e5159f4dc2f9351dafd0c0bd90d7330191 legacy-trunk +68120 d1e536c6fa2cb205f4ade3a70801a31ff2f35601 legacy-trunk +68121 683b3f8b12b44a23789f2c4b71849bb9547b88c5 legacy-trunk +68123 f35403a011b94c58a9cb658c01a3e676da18e741 legacy-trunk +68124 1c4e678a1d3b1edfb1372b1cca9d1ec95cca81a1 legacy-trunk +68125 1b82f2b82fd9211ad526f3f8e8fa937544b289c2 legacy-trunk +68126 e5dbf38b1dac1a71c89edfa411d4a41c944702ad legacy-trunk +68127 36e9793ebb5d483c480e233c958d978899a3d991 legacy-trunk +68128 099b48fe922a0df267d398448fc8cf4c6fcdc6fb legacy-trunk +68129 cab8501f8ae6b33b295d2fc0b9d4e0ce9165c697 py3k +68130 8463ff861a26d84d7299cfda06022c3e53491b82 release30-maint +68131 436e6317c7b4b9134033d1c2505093f7098240fc release26-maint +68132 4fbf52c99b6ed434db240c7a09548057c2398435 py3k +68133 c7a45cba0785d6ca56b332123690af316ea2660a legacy-trunk +68134 0e5b24ade4a2176ce0c515c4bec58604362fc3de legacy-trunk +68135 df3923c36ec59f7d238f7ac884e08e9d2ba08fe0 release26-maint +68136 06e1f7d9da83de542ad94a466bdd868732778ac8 py3k +68137 9dd2e257ac7c22e5f4b47327838b2e00958f008a py3k +68138 bb31223abfaa8c5ad62d29584ba8ae9d0f92d7ce py3k +68139 9f604d33a42f70be8e04a416e42e09cb4a47115a py3k +68140 2b13d202a47d7386aca4402444388c70069e2e13 py3k +68141 ad4e52d154f4a298836d757ef4200f7167ad2b87 legacy-trunk +68142 5c6fed73b6a9182a9858a1a897cbd7d5a1814e90 legacy-trunk +68143 2debbe6445e0fd91bca22fe4630e83741f190472 py3k +68144 4801969dadee3cfd7f2de64ace31adde1c55c987 release30-maint +68145 6097f97b0d22073ba0e3209e683c8d504a41b723 legacy-trunk +68146 40fa868981ccd8f7e6f0be3987e1355c6b2d1058 legacy-trunk +68147 cb3479ca81accaea848f4ddf73fbb195b56b63b6 release26-maint +68148 bf1734c6b6ed223cf1d1c9212fd5d3e3ae149322 legacy-trunk +68149 84cb01c5648b174d07db356b5bd004d832982013 legacy-trunk +68150 253e1c73fde69caeb78420a21978d42550c4da2a legacy-trunk +68151 5c4f639c920089862c2f1f0c65520b8af471550a release26-maint +68152 08dba7f9703019a8902e7eca18fd515ed1fbd712 py3k +68153 2f01f995f70412b7023d5b1913d0b28859388389 legacy-trunk +68154 34d51c30a4f4bf1c9234deeac2fc4f7503f38262 release26-maint +68155 94cfbf93d71b4c6125a618f68b13def124bfef98 py3k +68156 1dcb19216b64d620a80ac4ec0b3b805e2729d4e1 legacy-trunk +68157 e7aee7c99d3b77c0a7b18e4c7a811ed7220f0085 py3k-issue1717 +68158 753954d16ed216012c49d307b3a9c0f766a12388 legacy-trunk +68159 2696a39bcf0b05798c2d265f57217a55af4ff9e7 legacy-trunk +68160 c50b118eaf347794b4f24f9e94205d5d60522346 legacy-trunk +68161 355bc122c14565ce20cdc9895dd040362666d0b1 legacy-trunk +68162 de7d167b9ff10daf2bef30a77456f7f73a98e647 legacy-trunk +68163 69a240e5f01dcff6f384b53db2c0c99a25b8efaf legacy-trunk +68164 e0c66bbb48da83ec7514781bfc2b1fdd6a7c1b1d release30-maint +68165 400cfcaa8d46ee85c11cb61b08a5ceb066c98e4f py3k +68166 ca86abe1592639a76e0ba5e9b473d5e2ac8061c6 legacy-trunk +68167 ff106453254a1dd9fe905b58540b36af232e02d7 legacy-trunk +68168 a549c927077673eade954e79182edb7a7c9f2a6c py3k +68169 abbce48b9ae40a69acc6e4241bc94d0a2244363f py3k +68170 bcf46f33bd90516d73aa7a49b0014d82e8d50763 py3k +68171 8eddd665e9b9fb6afeddc4bb11be6a83b2cf8920 legacy-trunk +68172 636a0ac9607b7a3a40ca0fcbf30441bc10e60280 legacy-trunk +68173 1297bb71dc64b16c2082e6b7cae00a3a9da917ba legacy-trunk +68174 68c9f8b6584d4b1ee1e2ff01a0f8a7e14c20ffa5 legacy-trunk +68175 20384ebfc716f2e0a9f4a90b6c7fefd33dce44fc py3k +68176 0588a98793cd0875f0e45d1f8e30af86bea3ae64 legacy-trunk +68177 eb358dae0ccad8a5a57ec7de36c8bf13e94d8dcf release26-maint +68178 0c9728372d098af4ce4f89918b1392296693c3b5 py3k +68179 0052d23d39f615c763e735c4e62a82834567dfb5 legacy-trunk +68180 0e38c70b9776ea7ac1dbadc569558314f77b565e release30-maint +68181 930133979d7a291ad01c523e48fe413ee00065d4 py3k +68182 ad92104d50607e7a733c95cfe564ede22c0194cf legacy-trunk +68183 94ff3de1e1a45bebffb5c578dd70ed5814492e08 release26-maint +68184 5e164988bd51aeaeed38017a7506912a453fc31a py3k +68185 d367be543f6ce8af40764b19de756bc87a61cd04 release30-maint +68186 440add516cf1e1b713fe80698bfede287dccc151 release26-maint +68187 36d0270378123332788fbb223d6d58ac3ae90465 release26-maint +68188 c45fed03f7475c2d2bac5ce466a1eb318fdcd423 release26-maint +68189 fc94c9c42c6c8000635a55fc46aa720d8a45a1fb release30-maint +68190 fa55fa4556f09914cda41ec46737b0ded1b13f29 release26-maint +68191 c272fcac24a4a25b5ca754d8ff74272015b075b6 legacy-trunk +68192 f2a5d7828b83e7200b646822a46368e96a590f75 release26-maint +68193 7388660926aa149ebab1bae2c7c9cbf4c570ce68 py3k +68194 134d173b9350b2fe453d183baf2f75f4f6740b68 release30-maint +68195 427d8b765a6a00b006767780907957a4c22d51db legacy-trunk +68196 a788d4f10b9783ce93bafb2f5ea39ba462afe816 legacy-trunk +68197 b991fe5f637a85feab8aa007e419e08d5099ec03 legacy-trunk +68198 8e7728676f7e85aaebb1d84823a045bdb8824a02 py3k +68199 a92f71d46dc4c1c32906c3b104929e4f91b602fd release26-maint +68200 29f64077c42f88d1b0d545da94959789ac1978a4 py3k +68201 7934723f7dc4fbda1525538bf968689b8e86a16e release30-maint +68202 26045ed0c26e2cce1d6f5b1c5fdb292708f691ce release30-maint +68203 ecf1bb7baeb1ec76f898805505648fc0338845a1 legacy-trunk +68204 4d1a68bd8076c0c6e3465f627e329f1f969ee8d1 py3k +68205 253f9e6e9e07997544a954150a02dad4cce07483 py3k +68206 10cc53e71b2123d5479d8f0cd36fc764ce0bee5b py3k +68207 9a425eb0f7ea54ab4e480cdd3c237f93b0614f5f release30-maint +68208 7a6e3bc60ba6de127bcee944b13163f839406638 legacy-trunk +68209 e78dcd87d733f6f7b24ab1a659e650944ebcefdf legacy-trunk +68210 aa46787b93cc651a8df23727ab10c4e1c7a34c4f legacy-trunk +68211 104005d07ea5190e3d2206e2676e0d752aa2e751 py3k +68212 845fa7d36642090c24190d442eb87e92a1ed3085 py3k +68213 de2771070d852b2c83c36fd8e79d6df53f0a8665 release30-maint +68214 6e4d6d3905a79df1ae73f72dbd52135b10ffbd9f legacy-trunk +68215 60854bdbcf1e5af790c88a31b36c95359f13f555 legacy-trunk +68216 b066fbb6a8bc29fabd1ef8b7669f775cdf9598cb py3k +68217 c75720c3e16ee0283eb1d582a431d2230acc62a0 legacy-trunk +68218 6efc1de345f5c9177e405dac7f675b1eb79e1d23 legacy-trunk +68219 fb0982c3217e45804772ac6bdf33faf05f83fb3d legacy-trunk +68220 c52177f368527640e7f2299bccd598410df2619c legacy-trunk +68221 7fb431fa49460185b947b5d85ffc0074767070c2 legacy-trunk +68222 989314d7cc5efb2dfcefb56c2cec24bb94cab539 legacy-trunk +68223 c9184f50734fbb974be382f12c92adb814581ce1 py3k +68224 5ab3063caf4c0887884476f87adce2f423311926 py3k +68225 5f2475fe52399533ce0de4bc239f3eee6c223446 py3k +68226 c3d3b760d8bfb0ef531a364acd6717dd288b3e1b py3k +68227 0e05b6ca6afd3ba7c591fa44480f84456717fdcd py3k +68228 e479b86da11de64aed8ec894d1fd8903632ef338 py3k +68229 83efc2467faf347b766b393c1f14892632ebe98a py3k +68230 072dedee77fa6dd48456967af570f69aa98c9b29 release30-maint +68231 cdd5fa05c14d00953670efd8b624e40bde8999af legacy-trunk +68232 24a0937d762434bb3cedb0841bf191b0d3b89577 legacy-trunk +68233 aee55ca04c8fa301f82e5cfa5f2414297ea95acf py3k +68234 ee9ced92843a7a599227dd8e6b013a30ac3a1169 release26-maint +68235 713a3a38f975ca1c439d72a95b51865edb0270b5 release26-maint +68236 f885c76f1e9551226d82ed923549769b772dc2d5 release26-maint +68237 ddb73a4dfc204d539b40dd8b6b9dcd191f59c8ff py3k +68238 6df3d08b89e450dad14a9a208997beefbfffcb61 legacy-trunk +68239 21d7e9e87591c729535fb715d20696fadf1d178f release30-maint +68240 b5639d245ad535479d715a233bb03d60a9e044ef legacy-trunk +68241 73ded94fb8beab3988187dd81a3136c67cc9c754 py3k +68242 91cf9ed46b7232e355e0cd995b8e394705cf8789 py3k +68243 d3c7e9d9ada7c0723b3b00c826535667e432d1d7 legacy-trunk +68244 6c8ed667432892f273c78e8655e3f67ab1af813d release30-maint +68245 af20dd19cc0d99807f3baf0eb345f9aeb952aa0e py3k +68246 91a923397347838e9f2a00d1b90ce7158a8a0f6f py3k +68247 d0914300e12ebc5a8ee0f4dd4a75cdbc5a6af2f9 py3k +68248 8aa19530f9f228f9e83db2563392dbcca28d8274 py3k +68249 450ecbb56c7b50eb92a8ce6f9c6251e727b68304 py3k +68250 28321dbdfdc0c06bd38e3a1b38a0d644602340f9 release30-maint +68251 96188031b1b5976bb7ea0e689e64c03f94bf72f1 release30-maint +68252 4229a4b14f1d893c34b7a1d19674244c628c3908 release30-maint +68253 782578c92e1d3abc1210cf6e7df03e095f66a392 release30-maint +68254 5ebf82689d36b4e5e93489e8a6657183f69bc97c release30-maint +68255 fd4da855d603f5f7f585433e1d5431a292e852f0 release30-maint +68256 c9e5c1fa285e83ad5c95de6b0cbb65828734f406 release30-maint +68257 e80c806ce02b46440fb32cc013294839b185e033 release30-maint +68258 44387f1a28a20b4669e05f20ff3788edd74b75cc release30-maint +68259 91f2fba02a5022289f7de96b2a62e1d228480fd1 release30-maint +68260 81c49ba7bccf77796622d193597422cee22c4e54 release30-maint +68261 fadf78f5f8ad36ede635e6ba54fc489e9135e289 release30-maint +68262 db464426a365372179fbd78bd0cc9ecd7b8d26e3 release30-maint +68263 24b18e87d66489190852415a177303a25145618d release30-maint +68264 1548361bfd2f3bb6f85eef5c76437fd1d8cf053e release30-maint +68265 badb471dbaebe01a85cc400d7c3d404924e1df30 release30-maint +68266 279a5100688500edb72deb97e27288617173159c release30-maint +68267 047df0a5f1743604c665f24a2519360a5afcba97 release30-maint +68268 5a5b0b2d01b93ec9fba551e0f075bc1521966646 release30-maint +68269 bd0e361bd642151b7b2122a5ccc338395d976a32 release30-maint +68270 fbf7f53f4888d292f8b1ee41112cb7cec71aa851 release30-maint +68271 6f30b97148b659c06de341a4604e8d1772413e3e release30-maint +68272 851c2f04f95d5aeba490f70dca39c0c7affabafa release30-maint +68273 b96d61688b87cf03e404f03ea5412eb5e8d7daf5 release30-maint +68274 a6ee2ff4de4d873ff25f81571a26c2df708bf0ef release30-maint +68275 93cf3a6ead6398ceacd4553d97526974ee2ae1d5 release30-maint +68276 05bf7002ec9426512073a58341ac8e716eb25ef9 legacy-trunk +68277 afac0cabc3ad20723506b1bc1616f9b581d93fb3 release30-maint +68278 ea7e307ddd51af354f1853cbb2a418c710dd33d2 release30-maint +68279 7ac1f6be8ad5552b3577635e68a5789d1a5e36d7 release26-maint +68280 fb905890d049aa33a45eedcc4669334583df27ed release30-maint +68281 8b2c1a0a9a2b8138e405e16de59a5baf8877f975 release30-maint +68282 22b11c22cef8459799dd2b66a11f053f3c747ddd release30-maint +68283 3b08674b9b483f77c2706924e6ff7f9e299de4f8 release30-maint +68284 1ea5013d9dae0f12154392c537ed81c7033a7141 release30-maint +68285 9ec99fdf804f18347815bdcd806b024cf6df4697 py3k +68286 9403defb69fb19bf9bdb4251f55f11e3aff4ffcd release30-maint +68287 1ca8c6859a07854835d9ab7cce46cb15745a541a release30-maint +68288 baedb069e4256bab34963b9d7d474642ed0b4aec legacy-trunk +68289 536798598af088d3a40903049fe9f25e1edc8d9d legacy-trunk +68290 d41a86875332a76a40a3ce0b50fd7b620cd8c757 legacy-trunk +68291 54a5affb6af018586845eb763e5ef354ea3cc58b legacy-trunk +68292 f4ee0006ee392f4ee650cce38d3b2757573f74f0 legacy-trunk +68293 da34f02664edc9d521820c7f85d77609ac0e92a5 legacy-trunk +68294 057cb46ddaad7a9e7239689495935b74d76890f4 release26-maint +68296 f854373a66e55bfd3a225a34907ea77429762e9b legacy-trunk +68299 3a540ed795d3b068f8462f0570a90ca925c4e109 legacy-trunk +68300 fac9350b437dc9dd1c8fe759e13c3f46eeee1a86 py3k +68301 1146b7b0d518b3c79e5631cc6f15f2cbe2f6eaa0 py3k +68302 584b263b98da64a4b77bb963d56869f54d483a43 legacy-trunk +68303 9d5063b411e87956b43f73e630138d0e9e50ccfc py3k +68304 e18f322b931e790642151bb44e4ac30968c1f93c legacy-trunk +68305 6e4dde2e95f7d3c40d197f9e0eff141ec8b4efe3 py3k +68309 13f1857dd9bf5da8e4efefba8a1fc4f83528da54 py3k +68310 c25e5b620a4cf2481773f8e2765a1071a58f4f9b release30-maint +68311 92cd3551fa131b799c7a1f4f856237c457cb3b0d legacy-trunk +68312 bc9f80ddbbe25f52f8a78cd0fa7075b779e45e13 legacy-trunk +68314 2cafe989117a33de792d936206c18714e8626b5d legacy-trunk +68315 474745b7a12a6ca9ee652e79a020c3fcee28f388 py3k +68316 40ba2a1253fa4bd4e146b050dfa4fd0031c0de93 py3k +68317 09a498eb182055dec6b4f86f43ebba5db5b35b97 legacy-trunk +68318 fd0bb68ad5c8bc1cf852388f33c3884917bc3d98 legacy-trunk +68319 9de21e615577e8fc4b0fb8b0642c8af5339148d3 legacy-trunk +68320 2be490abf3333c2013953e434e45671a57e547bf release26-maint +68321 5436e534da6e4a378f9c8a73adfd239d62120d73 py3k +68322 ddaec47e6dd99a6e1b5fe342a04ef5f10c8e99ce release30-maint +68323 6a6f138d4162cf00bd472e52205938fd776babf5 py3k +68325 15c4c9e330e920fb6b25013004a8093d37cc9ee9 legacy-trunk +68326 8685e5855a47973988660357090215c7997df787 legacy-trunk +68327 e171cd53ac4b6ed7578777d46e1b99bde0e3c711 py3k +68338 758d8fb7bd990897528943591f953cc2c6fa3f10 legacy-trunk +68339 9174895972cb091c1308de545abdf86c016522f4 release26-maint +68341 6d9b0331d073a3eef56eb515b196c08462000de9 py3k +68342 255e64a137551db5ab68606eafb5a32b4a5d6e5d py3k +68343 64f91ff24fe6c24801c91df135f9fb69ccd0c140 release26-maint +68344 727ee1665219ddc7df26fe3da991a04a12c8fffd legacy-trunk +68345 e4acf079b508dc01251f4dc449d9b8fc266aecab release30-maint +68359 45aef53f5c71ac4b3cb890d41c1b97470ca89280 py3k +68360 fc0000682bfe7c0ed4dfc3037e800b20c1e5b02a legacy-trunk +68361 be9b15bf682831cafc395ab3826bb6d41091c6f7 legacy-trunk +68362 617199769bd384b5184bc46a2864e718f98a23f6 release26-maint +68363 2ff9910f1526c89347204dbd97239bae0e61cd2d py3k +68364 e987e0df8f48f4100592a667a42322eeb6fe6455 release30-maint +68373 8933debb9308eb7048d7575cf4c340602bce8d6d legacy-trunk +68374 a4af5e6f6b17c39246a79e6d4fe40ee13e78fe69 release26-maint +68375 81d23684f694de11143acf2afb912278139fee54 py3k +68376 0276b8fddda7d5d594fb20c67ac83cda5a490b86 release30-maint +68378 8a5a9591100de7174faa78f343716e5785cf425c legacy-trunk +68379 fed2ae1e50c2fd55f9733149f5f919baa6815942 py3k +68381 f0e0c3536e227252a043e919d933d2f56702311a legacy-trunk +68388 44f14fd4d9c2731392fb8d2e52cace2b56e80d48 legacy-trunk +68393 5ac8f0b5a59bfcc57de9d3ea946ac97e3af0cae0 legacy-trunk +68394 0b8d2cf3f55b42b3b8866498ed49b3948cd2fadf release26-maint +68395 76fa1de2742a98a127f12638fa73f1926ac9ba86 legacy-trunk +68401 a229ca3a12ae2c46da8dad1794eb7e5c831bef93 py3k +68402 e6a29790d75ae0ba7cefe37de36784af3a5dddc2 release30-maint +68409 adc430c16b57b6a76b7dccc977519dd5f96a5aad py3k +68410 fffd10c12a1b77239fb6be2e76e2fd71d1dc2e13 release30-maint +68411 f9f5d9047a0541fa16ffb5ec36405f0ada578ac7 py3k +68415 a3f329f23b236e331531864d591ad326bfc79864 legacy-trunk +68416 ea431943a8de52617bc5a55a5762ed7a09f83d45 release26-maint +68417 589f6844d8e0ec3aaef19d2c9b6269d22b126443 py3k +68418 368df0060740c7260172328cb3226008cc26f99d release30-maint +68423 ed3fdbf1077556f2d02edffc5fa5515f14cad807 legacy-trunk +68424 edeb9038c405b114704c35a48114993d16ff341b legacy-trunk +68425 d97aa943bebb55d358cb2ac0629ae9c92832f2e3 legacy-trunk +68426 d8b64c676bcb1de5f6254fd3c1a36538bc702edb legacy-trunk +68427 5f292debd24c354d25b863e8797a1171014595db py3k +68428 e496fdb927fa62d0483a3395de1ee578f7c075b5 release26-maint +68429 5c6244d217ff11b973dc8d5b4d0bb08e7d9ced48 legacy-trunk +68430 69a2a4dbd9b4f4da4f406d5aadc4666dbc22afde legacy-trunk +68431 72fe51d6f800bce77cc6c44c891f37010bb3c1ba release30-maint +68432 ef3a1ecd4663fe654e292ea031e1f76f8a588eac legacy-trunk +68433 e3c212799706e66fac73c79ba0f4a3ed30160cf9 py3k +68434 480fcdd82016209dd7299af530e4c3dfeb4faac3 py3k +68435 36686d4d7e7275bc2461f1019f56212062ab3d32 legacy-trunk +68436 3b933585547196aec040106610a8d58166c1302f py3k +68437 0a66e1dc30f223569837a7d1ee9a28a742fd5268 release26-maint +68438 c7c344b63eccebf63273fc8e2aa7b5a81d91eed9 py3k +68439 7b86d6cac2b185e1c5601e77dae1e0816b07414a legacy-trunk +68440 f127bcb0aa71225ffb4c5abd76a83ff8cdf245f7 py3k +68441 9f041ba3e4c91fc33f3ca392f7f1272a088dc562 release26-maint +68442 9d093ef89c56075bef0dc0bd52f0c6b887e8d35b release30-maint +68443 ce3733139fac803efa84a44dbeb33b233b614a9c py3k +68444 c94f0279fede977b2479563dcd709667715451a4 release30-maint +68445 ccd95b1aade9d4c98dac905c733a58f2e4ebac09 py3k +68450 b73bd5a74a278837bc2a02297cf8423ef1343a39 legacy-trunk +68451 bc30e395aa14adef0023d10203e1536d320cecde py3k +68452 b98fe8dc8acd6a10450bd9d3af8641d3eacf0421 release30-maint +68453 3886e4c88fa596d90e2480b3e1285e32a005bee0 py3k +68454 8c49ff0ce17af36ee8d0b894a0222d2848243f11 py3k +68455 fdcca8793eb9f7e2511810fb2e100cee60417985 legacy-trunk +68456 9b276ce35697b256a9cbe3af9f9150a8a4ec51a6 release30-maint +68457 ca098fc18ec6098034be2e4f14e4f27878d9be6a legacy-trunk +68458 07bbc2e20aa4b502fa1d76645a2ee3fe2d8932a5 legacy-trunk +68459 f1ca5dd59aca8264eb8bc6b95e20997181c39b60 legacy-trunk +68460 c8f793e159bbbbe975e7d0da46d9b888a0049be4 legacy-trunk +68461 e6f55c9ec3d014afe94c08b7778163d6df24ed7e legacy-trunk +68462 79276316b94b38f3deeaa8b037013b93cb60a5eb legacy-trunk +68463 62ca2cccdb6fc20ea333af5874dbffc8c850690e py3k +68464 9c2bd647b6464eb665ddc0228e570111a6557b58 release30-maint +68465 5d0eac01a285d98ea382da97025b665aaf3c303d py3k +68466 bc670a8df44bb2a38a241a423e9f2b17236dd96b release30-maint +68467 91e3851c8cc7ca2243a945851dc5e56ab366a0a1 py3k +68468 e00b324749b04e29635cbb1caf6f0249122f0c44 legacy-trunk +68469 8af51cfdd5e90c1051131c50a12dd557c7df2a45 legacy-trunk +68470 1e070b83cfa94b70a53e4c2b01b97906791d9e59 legacy-trunk +68471 937f500e0f06d0807fe4e05e1d0b7e3f2a7cdabe release26-maint +68472 d4483fecd6873c0ecc4074d430df36ed8f4affab release26-maint +68473 c34d721c2dc724629b2ab51bf1055233d6502456 release26-maint +68474 638e309ecc98ae81a0adb7d57650bd0390e85c6e py3k +68475 a0ff9007c2aa3e788bc93402d55488eee06bfc59 py3k +68476 5302f806537a7bbc1f6dfbbd151c16f3007743e1 legacy-trunk +68477 d326a673cb6605df4eafc1d1f488ec34afead0a1 py3k +68478 5c6cbb7a62b076beb51fd525832f15a97b9bb9da release30-maint +68479 fa922985af73217eb8ad81fdd9064a2af37e13cf py3k +68480 dbe39ebd30254fef35122d38f90b4c6aae52e8de legacy-trunk +68481 cdc2fe1be8a5e20d893d6ee066fe235fb2b13186 legacy-trunk +68482 2d471fd88affb2948928dddaa21d17a0a5174379 py3k +68483 8e623b78acbf6c0d661e4630a5fb870250cb128c py3k +68484 5d5d9074f4cad45702f4a6fbd50baec45bce6288 legacy-trunk +68485 99c441640f70c7104f78440f79ef2f94424fd8d5 legacy-trunk +68486 15a056e0f89fef264ab209aa1b0e7e5bb0c2d501 py3k +68487 7444f564e27d1e9f659b3f8a44f057c7f46617c2 legacy-trunk +68488 8dcab24397a8d2f00707e0f4cee772efeb862ed2 py3k +68489 293ac44d7ff0df66e4a401d116370b20900c20a8 py3k +68490 3b5be0ee32eac97991b67ac56879b45bafeb498f release26-maint +68491 e95c3aeb4c85838da2aa209f6dc70251843a5c1f py3k +68492 ef4bd7708ad7b3dc289c733e23a5fa63e6671480 release30-maint +68493 40ca8b2122081de53f5235b6f512145cfb36ed0b legacy-trunk +68495 128e20da89eb41fcf4b6e612c908924beec0ebe5 legacy-trunk +68496 5861f6e10860753d0e799a245777f8138e0f2200 legacy-trunk +68497 95576d8af7989e3435bf950307d82cb89f294303 py3k +68498 02448ccf41e01a5903860d04ba5e778897531146 legacy-trunk +68499 8e03daaafc741db89886b819410474a846d37ba2 legacy-trunk +68500 d87cbfc6c5c67714315dc970d3f78ed93f07043f py3k +68501 bbf464210984045ba1519a22ae6e0758cb965df0 legacy-trunk +68502 eaf7ceb8ab454a3f03bf51367e8da4e43cd0982e py3k +68508 9e181eedc95ca2bb9a5044a1576860077220e213 py3k +68509 0496963fcfe9fb64c9458c21d356359322361d11 release30-maint +68511 4d350f2b1f2e8380cc5e85dd7ab6725f4a3ad038 py3k +68512 19dffdec5547ab942d4ccdcc09d15b6aed6d684d legacy-trunk +68513 0f1e4ab95655171ff610afb3c86d2ef5ecfc3418 release30-maint +68514 44e0c69a530481d7c782c6a0f257813d5284d00f legacy-trunk +68515 43edc6581e44dfc482cab418e3addce4ae9f98c1 legacy-trunk +68516 93b2a913d8acfd073be6a5f8d6940177d26c22bd py3k +68521 ab086afdcf0cf7e0f445f6f2488db8d3f8644fbb legacy-trunk +68522 2d89772cc25688a6ffcd42258a16bb06b2114965 release26-maint +68523 2935cede594e377fec1bfadf6871428057f86918 legacy-trunk +68524 75661bf8cb2c673c36713970c882b9f01d8d1762 release26-maint +68525 95a4f5308be24cdeaa18b96834d73a6f42779eb8 py3k +68526 dc42adf887b575f0422e3e0e5c1fffea21ef74a4 release30-maint +68527 d841ff67cc61b8a2558fa75a3e0ce042841b3683 legacy-trunk +68528 70443ae76b105c819c0574a85d9fe839555101eb py3k +68529 92bd0141590697b59321c37b6b41057f28405664 py3k +68530 2ffdf8dd3e8b5064a295e4259f25948d224f01de release30-maint +68532 d09d6fe31b619987f79fa94243c90334ef2d1e5e legacy-trunk +68533 27db82a5cda919dcca21f4cfc6d4796a9a5e6287 py3k +68534 b7fbe37eb8904df9cbf9985a5dcdb3e2b2824ebe legacy-trunk +68535 491ec411e5c8ff36fd18140b2e3fa0df4630812f legacy-trunk +68536 7543f1282073694a4644d1574bbf90549c381007 legacy-trunk +68537 0f1b3f311ae0102d2f9486bb52d9de32859feb86 py3k +68538 6eea80bdcbf5e8f6168804f2b0d2f0ab2b0b1707 py3k +68539 5f4c2de95091b52c06ccefd925dd138bc3cba335 py3k +68540 ad9691350c931df614795e01205e849b2f78492e legacy-trunk +68541 e8154bd322cb56612c241f82c647e5199eb7bddc py3k +68542 8540268040ff043f0082f472a6b2ee0fe3c0b324 legacy-trunk +68543 2b2707ff8bb7a9f25c5cc0ff8405c6e9d5538fc8 py3k +68544 e40ce8ffe632d16c6f63b74ba62528c2775aee34 legacy-trunk +68545 38e18a884f3fee65d1209cc7b0fe98657d9e29f6 legacy-trunk +68546 87adcce48defe64f54f8eb40e1a4ce01867f56b9 legacy-trunk +68547 bbcd4634ae733b2d841d17aa8ef47422d7012715 legacy-trunk +68552 bc92bb20819fc9cb556cabb757f7ebaf088c8003 legacy-trunk +68553 f55b855323927bd5e5029ef96da20f76ae60609e py3k +68556 871a1ff46fa69c3dd6ea54833215283ea4467d8b release30-maint +68559 5934612d50705b049a8b9b379701a63758f5eafa legacy-trunk +68560 e9748db476357cc6142fb9c1d02631be283d9afd legacy-trunk +68561 c99ce0164699c3d4f6b58dd0aa2a7a551c182dd9 py3k +68562 f45997d9ac555618add1c0c66ca9e79191a7c349 legacy-trunk +68563 12a787b44db5449f00f013551c63376f8b7c333e legacy-trunk +68564 2c03c7580aa38bd36f326c048080ad6b473f8c69 py3k +68565 ba1521f2474904346255c5382ce6fcbe21115448 legacy-trunk +68566 e301141e91b10467ed1e07dc4b34306214d1e627 legacy-trunk +68567 e5f996cda3216e4b011db5e023d2ec1a7bb18332 legacy-trunk +68568 a19d596d3500cfa605534c41ab1acc5634e93485 legacy-trunk +68569 2a82bd29ec188858d9e8f6aa95ed2baca4d524db legacy-trunk +68570 454b696c1d730e2c66e257dcc7d4fb20c11ee41e legacy-trunk +68571 c776b6d814c23e8babc7a2ef261212e91bdec14b legacy-trunk +68572 59b1212a4dbf3fe01322f2ec869acf07afd2f603 legacy-trunk +68575 be8e958dee94ced4ae6c54700694e49f4767e8d6 legacy-trunk +68579 08ac440408c9d32a6ef43d3b0af02d2caccdaa06 legacy-trunk +68580 9a5d145f19a512b6b583edec8960e42cc05f5894 legacy-trunk +68581 4399e3f10b19b0a170a8cb2c13ac4c652ca26b36 py3k +68582 6e33aeaee77dd3968057a88850807993c5ddd64f legacy-trunk +68583 f571844bef5c9a8e80770db34aa66266d485393b release30-maint +68584 a3494a5b0495646cec97b51695cedc1e3cf2c4ab legacy-trunk +68585 02ab161423a586d24d0f0d636db38ffcc12cd902 py3k +68586 413cca3ebe82e0217eb295b8bfbcd53735627db0 py3k +68587 0229055c8be06f101d3dda73a08e7bdb0f9abe65 py3k +68588 0943344a5261bc760837bfb86e2ba6ebf158f5a3 release30-maint +68589 08f3fe69151ac6d044936812c7b570d48de99e4e legacy-trunk +68590 fab501277bc2c3c329c0c64f32c875b06a25848f py3k +68591 dda3107f6bc7a7bb6000146380b20a142d3b2343 py3k +68592 a858b61db324d7ed3c6ef49b718d7dc37928da80 legacy-trunk +68593 e46a06a264b32ddb4a6eb1268922521ec2c340a3 py3k +68594 0fdce399dcde0a23c81791ce67a381da1b334a02 release26-maint +68596 65c1938fb9fff278acc4ce652a1d548ab516f998 legacy-trunk +68597 bcf6663c5c048ba9a17ac4eb7b3ed2671f100c47 legacy-trunk +68599 2d453b221becd7e4eaad0ee3c2fbb1787587781a release26-maint +68600 0ef1e664a4a45a290daa29fb8d8ec6172592b9a9 release26-maint +68601 e11c99e1e6e7ec80162cc8810fd7803fe738fc51 release26-maint +68602 2d5a9c7e9b4e30b9db191a634c979bbdf65de1a7 release26-maint +68603 4832a0b1287b7c6b79c4663905b1637515a997c3 legacy-trunk +68604 d2cc26bda6a935e88a731f24649f296d9ff043ec legacy-trunk +68605 04131c702d1726066d4611c2f47b7b7a5a32fd66 legacy-trunk +68606 0e05e078bced3326aca977088dd939adb0b1278e py3k +68607 8df81941de05cd59b96873901ef8dfa2b0b1130a legacy-trunk +68609 cff4fc52c708fd3c0130258f6a45e113bf41dad1 tlee-ast-optimize +68610 66b81acacbc05283f2fe6121c0ee4f8e268b70b8 legacy-trunk +68611 3378eafd27df59a570faa5eaf32c14f201c642ee legacy-trunk +68612 ae5ed15774b4f57ad9a72a2a1f1bc74ac7306058 legacy-trunk +68613 ebfe917d0eea2d75fbd6d4385e3c12cb93803599 legacy-trunk +68614 d0086c176e824e1d3eb398abb869ed801224fc6a release26-maint +68615 b17ec4c4a7c38500aebda9307bd696c0b1f23893 py3k +68616 bb86f2ed18aab0e2c240b315b54f382866a42329 release30-maint +68618 be59a23b7c0415aec1d84034f6efd242b15651b8 legacy-trunk +68619 e83ab95e9c87bdb938828e2599f7823f17857e0d py3k +68620 427e43d0e031cf5c0bcc5e6439e44d0058351fe2 release30-maint +68621 6dde0df3bb4ecb7cc2ac95c50ad2eeedf126e81d legacy-trunk +68622 65bebe4a1aa3f91f513ec7c5fbb9d66f2471bdbd legacy-trunk +68623 884cd3f19b20ec6f953f52936244c17106ffda4d legacy-trunk +68624 2680a4beaea1869a04697ea201b50bc2c237f091 legacy-trunk +68628 adb2369eb7bbd062f419e9321c05db1704e595a9 legacy-trunk +68629 12a5b67d567d221e9d4513835f9fa68f7bbc90e1 py3k +68630 c6995dae98a69c83f3f481f49606fba173cd2a85 py3k +68631 a04b1c7167badddfa82e9276f21eb72733fcf644 release30-maint +68633 8be159d6fd4043cc6f61cadfc6a34d1db11bc9eb legacy-trunk +68638 2cc42efdd3fede51cbdf7196147b327d4bf76538 py3k +68639 c10f6f116af0c1a8fd136646ab0503b058d524ae release30-maint +68643 749a6b853376b695d66daf2519a231149517e6d6 py3k +68647 0b1a8f56117ac79f8119d12082ed4ffd02e102f3 py3k +68648 cb290482a1a7f989d4d9e3d22f984d4ecdf07c6b legacy-trunk +68649 1e2d7f075326a8abf3370dbef947676506560762 legacy-trunk +68650 1b81772cd59d789973314230e8ffe0d5cc153179 py3k +68651 df3fa40fdbeda3a979ef002eecc3c7150bec1959 py3k +68652 7bc8e2eed690bc0471da18e06b0769e3c204f869 py3k +68653 57edf835dea3661336b4b479d97d48fef2dacc86 py3k +68661 dc31be50c40534c48a0277f323d8c9722db917d5 legacy-trunk +68662 1aad7d2e894594858395eb96f9f7127ce59ed1ec py3k +68663 486e2579c978b9d28094b67799ebf33cf148bb76 release26-maint +68664 8dfe3c4abd5b11660e056f90b67c27fcba285d73 release30-maint +68665 27ba803bdea90571bef1b7b3a0b8c472df8cdbc7 legacy-trunk +68666 af02b6e42142b346a20696211c91b5e862ce687e release30-maint +68667 e158c70511feadb9fe5537a7fdf7a433e20975f3 legacy-trunk +68669 e56c5f3b6e18fa69618b3112273a8ec2423ed89f py3k +68672 43e0b1ee1c1b927dffd70278874f912faee97bcc release30-maint +68675 a60b86a73e20426bd280ffbdae72b097ab57067e py3k +68676 35bf8f7a8edcc2d491ceee58db81bed4820dad9d legacy-trunk +68677 db21d121ba53f5d332b8635c36607780d6da7161 py3k +68678 bb9c6524fdca4591915b1d97ca83f6c45810c096 legacy-trunk +68679 562052a03476f977b27608554849dd42ae593c62 io-c +68680 a029c5790e41fc2c7c0b110472eac57d3a469d0d io-c +68681 d7220feb7d0b880b541b44ecf8ac6249f59cd5da release30-maint +68682 f3969f4f49e367a74fbe2d86f103f52316079c65 io-c +68683 b3c19b676f58683bf44228dbaa80e9428f5ee59d io-c +68684 6268248720d664ca1d644789df6ff4d45d19159e io-c +68685 3c5551a94c7c9988a92b534c857675bad73ee7fe io-c +68686 d96f53f677dbed0c7e0fa14e9dd6749fa5ad1039 py3k +68687 8ab70ec2af5bc308ad76dcf9b5ad04a3e3e813aa io-c +68688 0ddc21df9799b9c63aad3d4c5e47da5a8dd3bf5f io-c +68689 aed0c79809e49f0fbc7efd9cf31a0d3e895a82b6 io-c +68690 75009d4863c9d34345c717419217651ccfaa1a08 py3k +68691 29edf26b9c23efddf0d3f0a7ae10fb43d729e5ac py3k +68692 99f3c34d7328e2c1aa2d3e4e2c7ec8db9ddea02c release30-maint +68693 8ea17f27da67d241c0da4fb2dad4da08a57103e1 io-c +68695 507874f655acba427f14ac91c205ac081f2a85b0 py3k +68696 33c4f423aebf21277c737a612d2be08c379f2b27 py3k +68697 fa651a1c34cc68a86186f912b482d753ccfbe541 release30-maint +68698 aac51b70c74cb2b0f08d548f411b12366e748df7 py3k +68699 e3504335f480a71c3b8ac3ec552d71a4e30a1868 release30-maint +68700 4288546a4238c2e48ddbdb4df35ef332bb6e11be py3k +68701 6e97d71d61c25cb1b398e5bbf55cd3b1a748244d py3k +68702 1ce1bfbe7051de17cdcc72620092c6b556fea557 py3k +68703 9c7f198f9b2520f90544efbff24b6636b7ac5dc3 release30-maint +68704 20bd1178fc642d69560b457ac0296b7ce6b71a1f io-c +68705 b9cb36465dd2a07d1f097d7c37734bf27a3b6181 legacy-trunk +68706 10c38bc6737deb4e2db844c93f889165fd07d6d3 legacy-trunk +68707 e554b8bbdeeaa922d004d34115cf3ed7bef57a88 py3k +68708 b4baa725284a6d28b9e4c00e0d207a5b0f4bded9 legacy-trunk +68709 0996271e21d8c4c93e20840389c38b1eef763c4d py3k +68710 9e2ad440196bf2440a047cd3deaf91b8b92448cf release30-maint +68711 e91f64f5d955821a8f195f1a50c54701ede7ecd5 release26-maint +68712 c86347ac66635221bc5826f1bce2896d52317199 py3k +68716 408c8dcf0248a16917ed85bf66105c820b7c1602 py3k +68717 44424957eadf67053742bdcdf682f7d7a13ff5d9 py3k +68718 189d5083029705525bb4f9b8efec230730308a1f legacy-trunk +68719 8f32ba52b20d893598bbdcb84090e8cd087c836c py3k +68720 d2dc6d043c21da9708a0977ecb3ce73801e4bc8f legacy-trunk +68721 bbda31dd97975bdd35c314c81cb438a237cbff03 legacy-trunk +68722 9bbb9ac061c0d48fd489a13b3c78ca6665a371f5 legacy-trunk +68723 8325eb0419210c2b677e07c6d99d5f1dc9d7333e release30-maint +68724 f6aefbbd7045e9dcbb8544692dbfa147885255ef legacy-trunk +68725 11cbf39c316f7f745b26a00b6ec9300f63dbac5e legacy-trunk +68726 d71583860634670b83c33338f652e2caca0c70ad legacy-trunk +68727 e7d6e5f519ef25811b9a086e2c1a7c11157848ce legacy-trunk +68728 8dc479b63e03673b284265d06c27733345a7159a py3k +68729 a819927c2a1398c8df10037f935de697d61a9529 py3k +68730 f3ba5f99da50d0b363d79a0b7fe251af984f70d5 py3k +68731 b92e695d561e5a8107838a1fccf22b9813910273 release30-maint +68732 7587799cae1cb0d318510a988e9399e71a9b763b py3k +68733 7e5cfba54e34801cfff1fcd667becdf62c804d02 release30-maint +68734 6a76abd616dedb16419900e96cc51ce969434567 release26-maint +68735 ae3a106306a808b384ebc6262398220c970f613c release30-maint +68736 50f5c29fce26d31cb84d6b47aaa6a4f5cf4a17b3 py3k +68737 c1c44a0ab438e6ab2787794e78ba4f1e998c979a legacy-trunk +68738 c513c69118dca614421f193bcca11a79a808f809 release30-maint +68739 5b48d60009167626816e9594d4c56315db517fcd legacy-trunk +68740 9ecbd9a101d837d15731426fc8b11d8897db9c08 py3k +68741 49d9708d7ea39aea166770e6dc33da1e3aeba843 io-c +68742 c9e5c2ca62c3e2c3e9cf841054a4043482477cb9 io-c +68743 9f6274fd7a9df7c37a820bbf26b4e250aed152b3 io-c +68744 e14ec6d18ab81f523eaf3d35aff98e628c032abc py3k +68745 1ec35beed2d014dcf611acc0062c7485e587a14c io-c +68746 9f45fa27b838ae0b69f70258242525aa7494d92f py3k +68747 bad36f492081e7dd1b393ddebbe3c6adb073fcdb io-c +68748 581d8602f3f742f4031283605870ae822be973a2 release30-maint +68749 1b229e7d818bd52747940157cf071c36de8b9871 py3k +68750 0788d45bf7a47e9470d27ba1c503ebc9ebb760d5 legacy-trunk +68751 fb7f231ccd3ec7771cef11edddcdd3d4f2a4c49a py3k +68752 59de06547232a4928c3bdbf5681570d0b171e077 io-c +68753 59ef315bf00efcfa524d425e08b00f3d7048af41 io-c +68754 65818cfd48265fd2213d11ec97737742bed41dce io-c +68755 a991be6a111d8684ffecd9bc4f5267b088c1fd37 legacy-trunk +68756 1c16eda3109e5454f43c044b4e3953f183b53c0f io-c +68757 1faed7ced242458e7f6d5aab77b7c1d9be39673c io-c +68758 65ef462921f73926db739ffcfe1ed50e4379f55b io-c +68759 e108c9806cc3f2102ef388a5f4e6bf58f38bca89 release30-maint +68760 a6611615c76baff5c910abb0ebc7ad3619d5822b legacy-trunk +68761 611461a8c7851bd0550b288ce9ab0835f748395d py3k +68762 1c17d5cb15dd598ac6ca49a9c4d3fcaaf31e01aa py3k +68763 39187b3e12e05129b378f512b42240e85442b41d legacy-trunk +68764 061c51295d326dda45ed907b24cade06ce5cb043 legacy-trunk +68765 18441b8f7000c051d93c039f24c75da721107171 release26-maint +68766 e7c100af81ec28befa53244780bacddb77e76175 legacy-trunk +68767 352f29db5ebf60b878068d6d891bfcc23b8b1ad6 py3k +68768 95e8d85594bc92d0f486cad602d0412c7b14547e legacy-trunk +68769 fae96bc919684795e9a10c1ecb05a7953d871120 py3k +68770 ba34dea5d18c3f3a0ce629c7fdbbded1d5b588d0 py3k +68771 488e8e6f1cdc633d211baf0cbb391f6707085565 release30-maint +68772 6edd29a343548f22d16f928bd7d0695a2338dafd legacy-trunk +68773 7cfb59e39782609042a52857747b7c68910e042c legacy-trunk +68774 aeb2bde203aacd9f039ecb73f3384afa2f1f7637 release26-maint +68776 aaf96efc61e542db326a2f66bd6bdc820fcdb9bd legacy-trunk +68777 015ea7b21950a383c9a3607a18e1513471506fdc legacy-trunk +68778 a2f58204e680b87ae34f928b1a40e30302049a5c py3k +68779 fa12c8e5ae8acba866ee7658d12bf7e65f0948f4 legacy-trunk +68780 75bcec011eef6d2da5a66b695424bb3b27c419c2 py3k +68781 611d9570b4cab24f6e1d995b2e6005322cb0a3b2 release30-maint +68782 19fa6f9ab5b50073ab32df6f352b6ad612aa6d15 py3k +68783 caa79d2389172aeaf489034bf0764812a0d40c15 release26-maint +68784 af36ba123c1d2acfa24748b5199467bbc06e4d8a release30-maint +68785 c3a0ee51d8678130c509064cdfee7c3010c83f10 legacy-trunk +68786 2f54eefd0073a17a36d9c4781713340f58dd7941 py3k +68787 6067a1e6289a1357c7f9913bdebca1e3f8edcfde legacy-trunk +68788 537e8d7284246949c59d8a01748e76559080fc03 py3k +68789 191b7b3ddf4fa4cdba5a331b7cd3a51a6008dcc0 legacy-trunk +68790 38021b8e14aab1276f072c10ed9c22707ac91b89 py3k +68791 a63f7cf3793abfe0ac67a330b75f60b389707cd7 py3k +68792 390668e20628e40c832d4c25fafb3606a4592aa6 legacy-trunk +68793 8d66b82a10a3088c60adf846409fa7af63565eee legacy-trunk +68794 6a6b590912fe6f32276739a15824c170cb205bc6 py3k +68795 5dd879867cde20260f390bbe9832e31dc6238bff py3k +68796 5c3bf31d04fd6a8d719693f1f82ff75b265ba6bc release30-maint +68797 fe2871aab9d98848d3e2069994d31ab0a821d2a6 legacy-trunk +68798 2344cef7ff4447454d961a8548bc17b685dcae02 py3k +68799 5a041d9a51cd66fbec5234535bc9451dd1aad828 py3k +68800 cc9de197df7e1191d16f61d39a988091664c5b22 release30-maint +68801 cc078a575eed307cd89033c73119b6d732bc1d3c legacy-trunk +68802 1a64d2f56b798ff60396a6123daa280285229350 py3k +68803 a83267ad2fd272054c1afd4f9f0c2cfdbce10ac3 legacy-trunk +68804 fb71c15620ee6f999d95b32c08d6834986568093 py3k +68805 dbc14acdde37f18897ab132b871c9c64e84c0e4f legacy-trunk +68806 1f14842488f08fab8fcb845a24dd7a1f1677c49d py3k +68807 61f1cb16e7b42e796efa30cc309667c24bc56cd8 legacy-trunk +68808 36e266b2e46098ebc31d0c84928b60611d60ffd8 py3k +68809 c7bb33207495a8cb1c72bfc7bbab100405a3ccd6 py3k +68810 dd5624439be508fd442ea44564e76e8c0c14cf6e py3k +68811 733388acf0b65cb79bfca642c93ac26b72dc7cb2 legacy-trunk +68812 f13527484ba3ab44f6a1c34520e26f1dc1e383c3 io-c +68813 424a509bebfea2030f8e56b0c392d60892a35d12 legacy-trunk +68814 d1de077447aa4f34a31cdcf0019341769293ba2f py3k +68815 32a22fa13b99c796030e58210efa143d443069ed py3k +68816 b20e218d6f00f788bca4d5a854b6f439df650602 io-c +68817 5a880bda6a6b785f45524da7b067f341a5f82d1c io-c +68818 a57d10d6bc8931f000206176d505aa0f2ca19ea5 release30-maint +68819 ab0b385aefc3e9b604122c3c5d9818683c1bbf05 py3k +68820 9f294eb38190e6434d5535512944ec4ad2d65036 io-c +68821 c775207cedad794056095649a6f0b72004c1c4e6 io-c +68822 53901e6691c38248f11d4cb5ce992a5dd4e32ead io-c +68823 0e79d5a37233820363f6ab933f7741c7e8c4e153 io-c +68824 c94f98c5753f970b5f1126e863c88b240364e1cc io-c +68825 7ed9beed87155331925ca09af76f335ac092ec37 io-c +68826 766de496a42d7f0d1a742a8b884609f7e4a14d4d legacy-trunk +68827 7c30ab0134a1fe6346fabfa1c70f7cd3783f1bad release26-maint +68828 2b3ecde176fe501793c550502805ad7436958eea io-c +68829 252f824bb80b3ac21709fc9d75e959fdb0cd6511 legacy-trunk +68830 cc5b460ff1ab124f22c3e2d8ae68b315142e49f2 release26-maint +68831 12e9c5f72659049ebf032602e3048c99a22b1d15 legacy-trunk +68832 35fb4a260a253d8f7508fa606b3382b7d393b525 py3k +68833 66928dad81ca149b510f13f4ccc5860b2f01d5ef py3k +68834 7106ff56e9d8bdf696d6a18dd888cf81738c136d release30-maint +68835 b88cc7e2bfb4c313d50bbabe2940a08b74e6087d legacy-trunk +68836 0ad8c56a7a70d0cb091405fbd2f3586aa4a7ab24 py3k +68837 762f9f189e2e86278845b512f2a3ea2d4c18205c release26-maint +68838 f0c955378ca3c51effcaae531077552983d37223 release30-maint +68839 d274062816ff658c8d2a347630df2c4e73ef4f18 legacy-trunk +68840 0ec354703d01caa4bfd812fcf44831444af1dac7 legacy-trunk +68841 a99decedf72d220a560f2d82741be055caaae47a py3k +68842 8763cf2f7e0c55ffd8015322f8c22215326546c0 legacy-trunk +68843 8bf204af96910e64b87e9e18cfe656bd8111fe9d legacy-trunk +68844 7300d6fbd914dbd74dadd580e66f30164173dc43 py3k +68845 cbe54651e3b9853784e9ea34f4cd46402fe0e58e legacy-trunk +68846 3f61f80e9130d17538a6f2a7ca230b668acc481d py3k +68847 4092a402ed3e755a2049972cb472e4f898c6c18e py3k +68848 ec70b393e173f84dd0e9e14867beb7d79b6323e4 py3k +68850 3c5a8a3479907f0d3830047a8fffe23a0598ea1f legacy-trunk +68851 053f3e8266016ec9a0f42f732ea2d2bb99675c77 py3k +68853 3f13c65aec056b3fe54661040d443641350dec7b legacy-trunk +68854 f5d7d060911ae19383342c658be7504952d7e28e py3k +68855 b40e4b529f69bad899dfbf49010a7bb59528229e py3k +68856 ec6f29608bf09fd449de6ebe1447338b1d01a85f release30-maint +68857 8aed788bfcc83c751dbafcd642710e8ab36f3bac py3k +68858 1f0a3ac8bf85de4404ff4dbb807821808cc63f71 release30-maint +68859 de2dc09e1f7e6611df42a863fe5849c342adca6c legacy-trunk +68860 2735fac6b0d4d3ff2e00f2e2fce217a2f19afdbd py3k +68861 e4c86dc181e9a2044e0450f624073e836938e943 py3k +68862 b0b621f2af5ddfc52fad39eb00b8b42097cea7b9 legacy-trunk +68863 72bcf0a0cb31d41a37b3a974e40ee3f8d504dd89 py3k +68864 0940a4f2506e778246060cb83dfbc94047ad49f9 py3k +68865 dd638b7e747e3fa55e6a5a6bea5a7ae88e4ae716 py3k +68866 09c17127a4c99201fc57bbfdecfba4836c78f159 py3k +68867 c954450f7abfcc251cd902b2a4f4443c239af8c0 py3k +68868 04c95fc3765fed7c58a8f432975559673ccb17c6 py3k +68869 ace75b06a6f74dc596ca8f4ae463a2de939fc0fc py3k +68870 aeaa237ebad7f795b72cb0c889ff9f7e92fa50a9 py3k +68872 3bf77ea1db3e23deb943030714c694ec591f56dc py3k +68873 a823c9f3a452bc219184fd6b9b50ab3f4e52bf8d py3k +68874 b0d593d412120c7af158955bfe20dbb72f00e6c5 legacy-trunk +68875 857d66341ff94082938f1d98bf2d83fd32c1f307 py3k +68876 08e9bed6a1f85f9e56465dd866a3b162f237096b io-c +68877 1af4fa18bcc2065ae41c8f3d705c721586dc71ca io-c +68878 52ff0579a41f19af48aa442b37ff40b97ff663af py3k +68881 a4f25c380f96b7f3ff2069528dd8e84fe2cc18d6 legacy-trunk +68882 5c7312ce5dbd062e882062525124aa0398272144 py3k +68883 048eb5a8343be09ca743abfc4fc257bc97d5492f py3k +68884 bd74e866f9caf817c7eda0999aa6c4114c20c3c8 legacy-trunk +68885 fc38f2ecd2ac2773df8f66ea07303431f47857a7 legacy-trunk +68886 6f761e5714e0919d4a2767ad906c59142b416ea6 release26-maint +68887 cef0fcc91559ebb5d160ec9191dcb9e9026c1b5d py3k +68888 c9b9a5041ef521f56b1dd4d7c38973a46fe64e1b release30-maint +68889 540611ae61b86fadaa33944bfa82d771330c8feb py3k +68890 4eac9941538c5bdec8d298856820df14be23fc2a legacy-trunk +68891 db0ffeee6e507036985c62bfd08923f28ca9249d release26-maint +68892 25034c8328c7cf7ad51a4e812511620acba417ef legacy-trunk +68893 f1af40804ade93b9b3b5a2d15c00b3710d02883f legacy-trunk +68894 5132a13f169a3414bef75cf450aea33b29272b24 release26-maint +68895 27d2fa19084a582e46863e67f0e271dca2c3e52a py3k +68896 7ee6fa0602be92712b04de2df3f2ac32ddc3ed7d release30-maint +68897 a1a52873f9fcf065cb838b4ec18f22d56f915cd3 legacy-trunk +68898 feb4a092b871c67ecdf4c3fd068820d599f1c6a3 py3k +68899 a6a6369cfbccdadf8a6e594f5e3d5aa874ffd76d release26-maint +68900 99f0b0265516b24396d33646fd95a211b3f4036d py3k +68901 59d5e70f3494230dbd0171c75a360839e6977953 release30-maint +68902 578dd78fb557352da89842824cf9aa16f3245aa4 release30-maint +68903 6d5517975fd245734ae5f2ff995e39739ea3998a legacy-trunk +68904 843c17868b52b4f48eafe4856b8a3a7e0425fae7 release30-maint +68906 863ce6c036179f4c74fa9f70bcb8e718565b90a2 legacy-trunk +68907 0139648526d9a8fcf7c138308c7b0e24300bef45 release26-maint +68908 9a45e2cad6a1f3f1b4fe320bd589dbb3a8f2e377 py3k +68909 f7f3d841da2c6c1fa6e0017d59257206cbf50964 release30-maint +68915 f5be6caead03d890cb51bddf9d22aac243e6de0d legacy-trunk +68916 4e8f28b3ea0a8efa03573073e074dc585a538106 py3k +68918 ea5767ebd9032ad8a8bb48ae9158d980057eeb06 py3k +68919 c26f1af26bfc22af9a09533b9e91cb933efdf71f py3k +68920 c4c4e4b1dc1ae631ef98591a8f2152c0550b5cf0 legacy-trunk +68921 99c10d647f326f63618b2d8c91e19cfba7c91160 release26-maint +68922 fd8af46d361543c74f56758ef6d012dea32c6453 py3k +68923 2c7d3569882de35ceea35daa96eb084a9a325a12 release30-maint +68924 d86e23318b415dfadd3b213cc89695287789aee8 py3k +68925 551257c8058af03a746b0c051f749b31835536b3 legacy-trunk +68926 e3ceeb7eb9010ee7fdde4a13594abe9d2ee89001 py3k +68927 21cf96cc22163a956938c6106cb85ebbd4363a63 legacy-trunk +68928 2819a4706c8112f4ba6c62a7e373131fa92daa8b py3k +68929 7d5fa52341e232300cb7b930857b09972e25f90a legacy-trunk +68930 75d0f618e1dec5af8dd882d97fab7793a2aa848c release26-maint +68931 50f40f2c37dda57f4c384a1b8bde096a9abe08d5 py3k +68932 cc8130afb039122b941351134d44c87d61a325f3 release30-maint +68933 7a5759e856394fd473bdf9c5a840f5c731822838 legacy-trunk +68934 471be2c6457eea35252808b9128561a1d2dc4619 release26-maint +68935 01132195f5625158e78f26a1c77afb91db1b38bf py3k +68936 3369a5acaf798365af4c781185761a455195efa2 release30-maint +68937 c9fea35b873ea1a783623c1ec639ca8a1db6030e py3k +68938 10f4a160438891cfd0e53fd5cae36597771829ce py3k-issue1717 +68940 e0d9c659f7a6c0e27891364b9d0f3714e93d2b55 py3k-issue1717 +68941 14ace205447bbe238ead6458a33018afef84ecb2 legacy-trunk +68942 e4705ff626f08b494dd82c0f714ef8858b5ca804 legacy-trunk +68943 a5229237eb50cbf368f90062f907f67e58ecff4d legacy-trunk +68945 4e82fb1aeb0222a0f8c480c52f88898792274813 legacy-trunk +68946 6a91b3adcad6e6072a417aa00e72c947784607b2 release26-maint +68947 c851ed0cf65fbc6eb38eda2095dc8cf8739c041e legacy-trunk +68948 096b488438e924ec89e7c28475c45e30202ffe5d release26-maint +68949 c155cb38f76d0e680558f8cd0108cf7f588d65bb py3k +68950 45a5276e5dcc65ebe2d7d6d348cc2ef899ef4560 release30-maint +68951 21fb1014294cc67e2673cadadc6b6cbf6b092385 legacy-trunk +68953 b4ace2b6c28f0f4215128c76f5ab97145ca10d3b legacy-trunk +68954 fb9d2d2a435956720b6780dd4a9de2731c37ca92 py3k +68955 dfacec8ba6db4e9612248ed8efef787695dcae65 release26-maint +68956 b94e9ed3559c2734133dd8c0f148d235abc16ac2 py3k +68957 c4d31f97990e95c29008d558b65b0e5460479c09 py3k +68958 04a33c47abb5f11773b0b90e93822eb15e76922f release26-maint +68959 5203794c7ea21472df6cdf116d9118d55b5804ae release30-maint +68960 35c6937c01275c1e0226af6f8ac6ceff0b7c41fa py3k +68961 ad1db0ae98c6a879a9eb8aa3aeb506837131a17a py3k +68962 1c50a17c0f21c9627915b16593d22472a99db1a6 release30-maint +68963 6960523fadc1e4bfb44a6677ad3d0ebaa1a8f13e py3k +68964 d513024f51775baa5e802878a93c0365088f287d legacy-trunk +68965 b8850606d921a0ae8389dd761a0aef6338030721 py3k +68966 02e1c5ce6a69f96ec1813df02cb0cd512ada5cca release30-maint +68967 36fbaf7538cec25bda80c38e0716a382f26fa002 release26-maint +68968 d42374d0aa584ba9fa94068c54efd4222738cb8e release26-maint +68969 d362da98d0de856a64a06bfcc1bf70af6c172ac0 py3k +68970 b04896caa29be9bbeeb87403a20096cc919354e1 release30-maint +68973 c94a237bf497000c79f31c8901af13447900097d legacy-trunk +68974 200829255a6a7fa7ab52d037e24718b6dcdc71ab legacy-trunk +68975 2ea75f60d9e5d1da4ea97c0757ad24ebd1c2cd26 legacy-trunk +68976 ca8ea52b45c338afe789de0522891411e87b4364 release26-maint +68977 98f223ece8f272970f599af558b16368a9e5a59d py3k +68978 0687d447de61ff8dac96b965f6b4c6c71fb340f4 legacy-trunk +68979 e198807c55867b2744dcb6ce31a8f63fd34a8a31 release26-maint +68980 857df6c09e12f9cc1558a8f37b3bcd69420e6a30 py3k +68981 94c2dc5f446d676acee54f9f318ed7bdd6bf5a9c py3k +68982 14c3ab9bd7061f610c20bb8d4dc1293057a1d182 release30-maint +68983 c23e40d1abbc8d91ec46a1a4b8f9c47f2969834f release30-maint +68984 8025066456664ddc499c8d68dba9d2f4310eabc7 release26-maint +68985 2cb0c52d779fc23be0fc2badf429c67fd53c9a09 legacy-trunk +68986 f572917183fa2ecc2af4e777a26e91cfe595fc2a py3k +68987 f138fbe2945e5589b0a2d42df82507515fde2321 release30-maint +68991 f085aaa46d8748fd58deed076cbd930705e1e163 py3k +68992 ffe732dadb0d8d9841d897b9c72a1e07a3e259bb py3k +68993 259fa8f64a97e62447d6e81834e9f51cac2b309e py3k +68995 44512311f2bc820070b805d62d44b809e12d8a7a py3k +68996 96d296c78fba866aa9f68e777ef68d2d78a6b37d py3k +68997 5679bb9b5190c91ac1ab1281d1b5440c19116fe6 py3k +68998 6c0bb548a946c7b7e95ebb78c1d5a826f750b447 legacy-trunk +68999 7720e363c1c8ced778f03f6d3620f73c361f0394 py3k +69000 84d648cddc33460ad7e2b622032917ac0b4cd201 py3k +69001 b7ce675febb903caaa0a0578d99e24317d1caf43 legacy-trunk +69002 f11a41095726f9935ade4779c9a9407ffe8e0b6e py3k +69003 33291e1e87ec743f85bb7a1f56ae1424f18f269d legacy-trunk +69004 4005011d3a09eca99e11285191122ecc55f125ab py3k +69005 7e833cdeb24174586a51d09d17300d8648a24a82 py3k +69006 4b87f31978b7e2176c68db68d95ec05ce47a0929 release30-maint +69007 48b7037ff20e85b688e0bb745a7e0b90ddd4e429 py3k +69008 7f0e4e427ea3d70ae8dad4cfd78655f7cb523510 release30-maint +69009 98a855c97ff214faaba0ccc30289486a3842707b release26-maint +69010 d170fdf4bdfb4522a64433d38f99e484654b12e2 legacy-trunk +69011 14631c627e03742d8e9d81e6217608bef17822c8 py3k +69012 3e4c872d02467a5716a5fb4d2bd9b976dbe9011e legacy-trunk +69013 34027e8d044f03c889acd98d9359c88f24d33a77 py3k +69014 a28765fd32f00a587f82a6bbc5dba50ab0a79795 legacy-trunk +69015 7ed9ccc0b5197e731b89830d54e200a7322ad135 py3k +69016 8cd3ced1ed2999de60c9c9673a8d1d09c7c27754 release30-maint +69017 e718d29874d75c7f657a686c9f7f92c9378beabe release26-maint +69018 2254cd3200f0602da1f676aa46d4989cbc3c9b3e legacy-trunk +69019 53244c4eef223e1ee912d50fcb6f436919d38c81 py3k +69020 547b7a17c3799e77205e1139c20c402d0652787d py3k +69021 a6b02523b9035f5cc14906dcf5d4ed44ba159a0c release30-maint +69022 1b320ffc0db8cae83088b9954f3f76462b9c7865 py3k +69023 9a4fdbcf2d9f2ac75bba8d4d99307d3d3f38869d legacy-trunk +69024 fc51026abde6c6d65aec05a7f8da8e79e076cd35 py3k +69025 74aa43dd875dd9e5d798c460d4b4a48c0f551195 py3k +69026 adbd77a90bdeb5ac1dca3d007c8dfd5486e97697 release30-maint +69031 c5a52aec2ddf91e13e0e7f309102f29e1d0b30f5 py3k-issue1717 +69032 b6de6912fe146ba6bed2058df56ec558f90eac6a py3k +69033 d2c067f9f98b95d219cf4480fce533a705cc50ad release30-maint +69034 5feb976b18aac8ce91f6ebaa90143964f940190c py3k-issue1717 +69035 bea6b7a0b9a22f895194d26384a4676cd29f9489 py3k +69036 2a6e0bc4bc0319afa4e6871a5194bdcbe53df37f io-c +69037 231c4e490b1f59f74da5e9384a8c0af4e1e4b26b io-c +69038 62ca81dd2ae887296dec5713ad3e0c501f37b455 legacy-trunk +69039 b674706f3b10ede2c6e542d44292ad8ced9880a5 legacy-trunk +69040 1434d1bc667f728296d66375a2e1756f1041b57f release26-maint +69041 ab1146551255231aaa876c846aadfefe382b2ec6 py3k +69043 0522cfee879a11d33d4c1d9f0f03b27148492eed release30-maint +69044 840028226ed53eb6f3b54e4fd1b50d8090b75c5e io-c +69045 04ca57bb71083939394d330d338c651b0f2fb058 py3k-issue1717 +69046 4ab508a5cd7ed0a3521835696ff2b596305b6b00 py3k-issue1717 +69050 c101f78aed8b51b38524a88f749c3e88237abb3d legacy-trunk +69051 c9093d41590eea2243c9b0ec943258bdf4889f48 py3k +69053 f06d900272994864b25fa577b376873dcdc12243 legacy-trunk +69055 d690129d7dac25562e9cdef9d5fa90816ea35f1b py3k +69056 fd4bebf9dddee7ac97777eae781f80dad9bccd88 release26-maint +69057 3975725a85b5184ab7255fef7b3d1cfa82e7db3a release30-maint +69058 8d603e493846f87b0ac02661c722ef4ab7ca8ea2 py3k-issue1717 +69059 bff99a81824a70964d2d1ed274a925abdd81caed py3k-issue1717 +69060 ca4dbe4ae629f4314259ce88c418c09a851d72b3 legacy-trunk +69061 946340fb114b530f34e1e4df841a1298a8338211 legacy-trunk +69062 1884d088e0accecf8b13ba38375b991e6f4479d2 legacy-trunk +69063 0a8a7c457f1bbf9bec96b9988dccb10cd8050c24 legacy-trunk +69064 5fc607b6e42d7b79a76f37e179c61f4096227907 py3k +69065 73ba0f4db0d5910dcf22861dfa011b77ccb4c6ce release30-maint +69066 d8c522d600e4e3e49606a61462a895290537b1ce release26-maint +69067 4447bc1f5a51214f60f68963a9e9f89ce8ac7e5a release30-maint +69068 9742e8a4dca1f0cc39b65083039d15a4215a390b py3k +69069 9c1f06b273f72c5623e91f09417f1e2ce0d9bd53 release30-maint +69070 9440468083593c522db984e99ad2ff109484c0f1 legacy-trunk +69071 9c5aef9f1fa727e79a2bb22544a64cd000c47626 release26-maint +69072 f0a1bf2490105edd8865ab3aed145588037e9a7b py3k +69073 01b9c5d99ebe234421d6da00681dfbf06e01b484 release30-maint +69074 519b21f891ebd5aa8b99bd26b01d16768338dc89 legacy-trunk +69075 bb639158296e765626a281c5eb379066423375e7 py3k +69076 d877dbfd4bf939e12956efcc80042920c4d5ed7a release26-maint +69077 bedc6846844dbf0f5914a44285c9bfa7e65463cc release30-maint +69078 2384c04edbb60bb6cdd29e737431ac9f326bb0e9 legacy-trunk +69079 a3304190d8aaaa915087cc5b4fca691a25726e68 legacy-trunk +69080 9a9d26e842b3315a67b1773612b60d39c144904b legacy-trunk +69081 3228929ecb6d8483379d29f6d0d2269e47c7c027 py3k +69082 d66e1abb3a98cfd6c7bb8605946597fb23a7bd8b py3k +69083 7ad996ee33341df0681f349903ec0133e6abb05a legacy-trunk +69084 725b208730a5934914f97ad7397000d436416348 release26-maint +69085 07ff281be02c5576aac40d60441f025da7f8123d legacy-trunk +69086 4f607c3ae8e2d173f2aa83ab08396006401ab8a4 py3k +69087 7cb351c9cf40247e269372e7aa8941054f501d90 legacy-trunk +69088 4b8976ea69660a8b24445e7750d540e7967f8086 py3k +69089 9eb84fc436fc1b3a5a4c6abbb43e0f6cf034f8bd py3k +69090 4abcf9d1b9380fba016e88a49048d8a764e6cd0d release26-maint +69091 14e5b6e836800f82a9977e411eb1f058d7ce0aa4 release30-maint +69092 0b667e393eb348701fbc1aaf610755725f4b96ca py3k +69093 969346dbf31e204c616df6cf0760df620b68b5a4 release30-maint +69094 daae8c324be1b91913f54cfdcae697c453eee272 legacy-trunk +69095 d1629a959cb850469f6bcd1cdc3c9ba33a65a66e release26-maint +69096 463f6c12f1d4c25113f60e3b709c9df381835274 py3k +69097 d85714574c8a5035b0d940b4ec65894ae775db2b release30-maint +69098 bcb6ad1cb55dfa32a4242d6e38c9ac5cdec2f1ec py3k +69099 af94ef38b5c0f27bce95d0910454858066038f5d release30-maint +69100 3c290bc21d2c3dab95fca6a99ce79dcd2f043478 legacy-trunk +69101 e48c5914da818fc911767ae7ba64db81a96a3416 py3k +69102 e2dcad56e40e031749e7d38008d7bc7cc5296a01 release26-maint +69103 5d0eaeb4134d7ec9d3787bba3e927d3d88ec66c3 release30-maint +69104 4a4a7437c5e1cf66ad4ff2566ee858713f7c3394 io-c +69105 91ed3ece0c76a2b245b074cf61fbc65d586a78b9 py3k +69106 fc586b3819873e63f975f3a622b543dd42bf3197 legacy-trunk +69107 c2628bfe6a6848f287e1c92c642a686713ff1a6d release26-maint +69108 c378c4f4a7969e1fd055977af9cc3b787a417d4b py3k +69109 20f4afcd3b27ee6300c8ff91920c0de2b60f1b2c release30-maint +69110 b88d377011f50da9d34b987cf436fd7499b5bd4d py3k +69111 b48b5ddada8948e8c9532596c87e0bfcb5ba8c20 py3k +69112 6a2896d923e3a2c26b926e93c826065663f9e92c legacy-trunk +69113 4ab381aea658020bf2d46c454f2a7b8536677ede legacy-trunk +69114 e227054d496dfe84ec743b1be9e2ab8996a0270d py3k +69115 a038e8fb67c210ece18caba6723b787b3140f28c io-c +69116 7b79688626e4ef0dbc91d62cae426da65d58cfa6 py3k +69117 9867c849530bbbf267bc809feb3163b058c011e7 py3k +69118 8c2c72cf2a0cfb62fb303ca63f5eefa5c6ff971f py3k +69119 61787533395c0daadaaad557beb4f2078fe8aa61 release30-maint +69120 e67dc4db964c89a6764d483baa474f5ed443331f py3k +69121 3c2b35a10593bd68cf8ff79dd6f31f5a72a43f1e release30-maint +69124 359394b63a2388ac27c098ceef2f48bea2061532 release30-maint +69125 7fc0ad11b0af074b054a11c06c36cda1aac2c988 py3k-issue1717 +69126 378bc18d23509bbf19c8f7a5b5ae81c8525ae3a8 py3k-issue1717 +69127 23944f1d53fdfb9cd000dba8ab726c3ac42ff892 py3k-issue1717 +69129 4c9ea647eaf421de57692d0ef3617d3ee2092d68 legacy-trunk +69130 c5e28285b74d012321b56c7b7a3f9efbd3c6ec7b legacy-trunk +69131 7540314ff267b4d5ee03cd539f2a02ebddc067a5 legacy-trunk +69132 02a90dc0c29a8af65b0b2b9116e6c40b4ba6465a py3k +69133 df090597afaaf0f778b5c3b61a751fd2f7951fc7 py3k +69134 be57354ddb11446230acbb4b19afe571291ae415 legacy-trunk +69135 dcfd436567cef9487dd90a547a7eba3f1fda469d release26-maint +69136 43171f557af80fea0c8e0a2a369d1d7d0bd85137 py3k +69137 c06faa8196b3a07e66a70f7d8e2be107181b14ed release30-maint +69138 1c0a5a9827fa97f6e1b951f6060759f9c4aab964 py3k +69139 5f6d225e3c1dac09abb73ef588e6348a8f414226 legacy-trunk +69140 9426eeb7f4e6a51ccdc0d0d360f2828eb78d9652 legacy-trunk +69141 9d3c2ce86f428e21fc4eb183aa238bee26709376 legacy-trunk +69143 0caa002f5f3d258e4d5d42a1d8b71843f9e470ce legacy-trunk +69146 10daee3a360978b939360c81315e4b8cd765f662 legacy-trunk +69149 cd5db43dbb65b917021201b3694b1a7fcf746243 legacy-trunk +69150 17d401ad6a2159ff8c0a74b8f68ad679fdb5e27d py3k +69151 bc2d94fd910c0c83508931f7e84ea65d12db69a6 py3k +69152 1f2922ba5a2a101895f295a933944e52798733ee release26-maint +69153 4c20583508338cf90a495d4ec91e3782f434a896 release30-maint +69154 aa07a123194a0b789c63cb47f78866bfc2aa17e3 legacy-trunk +69155 73981bcda5a2bbcaa58af4b4db700ef5dc856531 legacy-trunk +69156 eb2607a6516e67bca4508a2daed6381f7b67125d legacy-trunk +69157 bc92d83e55082877dffe520238642a2de45b2bb0 legacy-trunk +69158 8672b0f6575d3b1cc6aecf1038b8999c73e66416 legacy-trunk +69159 9a244afa1a9a182f4a87d957b4083fdd72795179 legacy-trunk +69160 b477958df978ed1accd41ec213b62d61195e7a43 release26-maint +69161 feb9934307b9b7895ebf41a427f0645dbf2f784d legacy-trunk +69162 14842172b1522f9ba0bfd4da51a290ba377537ee release26-maint +69163 b8ce979cddce206c71c0687f47ed772ac2571035 release30-maint +69164 3954c9b90b527a1102ede7e6e83c5fac5e625823 py3k +69165 06bbcb792f04e0a34d72541ba527b02222c3fed7 py3k +69166 8d3f7dd9b6cce053dbea006dca08443f711124a7 py3k +69167 50bd2c18eff065295c09b8d4499dc55eda6878a4 py3k +69168 815589d62a9ae201a90454dc68b129154683029f py3k +69169 d26d978d00664868c0ccb8fe96ec054381c046d4 legacy-trunk +69170 4b3246c83e3f2ccac741561cba5a47df22d9df60 py3k +69171 427f4a74f538abf46731cd85e8add9fefd4d274b py3k +69172 d85ef26efd10376bb2135e1e18a7cf06bdf0f72d py3k +69173 134fbce111e9b9c2d81ee048d88a319f82859a0d py3k +69174 deedddc7e0b4d91e3e9d61158be290948452e830 py3k +69176 386eb4b5cbb3ac61fb5e8b707c3defe61df75ec3 py3k +69177 fbb17cab5716e3937d350fd472b67421b930c4af py3k +69178 6bcf84d6379752be86d1f9b349938e7d7f5c0d15 py3k +69179 766405c04bdc2944533c4da682086b1f60f6cdaf py3k +69181 7c91f479bd0d910bf9d4c34493d0a41e08b88fc6 py3k +69182 e9675d72e3e3b9403de40c2d1113f1510dd216fc release30-maint +69183 e663075fd1ae4a99800e675078caf2ba6f790376 py3k-issue1717 +69184 9ca34c18e1bd3a1ef1a3185463599b817ec28e79 py3k +69185 0162cd4f55be31d1bed2aff5a7dc693dd9f9a088 release30-maint +69186 f0089413c12fd43e82c55e9a9512c16abc39b9ef py3k-issue1717 +69188 ba94d7c095e80f89be29b2233dbf33ac85b97878 py3k +69189 410dfd423ef12b3c347f4de9ce73a5f58a6f820e release30-maint +69190 e2db15196a54b53902946280631d99f5f3a5660e py3k +69191 2358299564ea8049f8bca1aa156f1e0d46aa5f63 release30-maint +69192 e945782477740c8fc19a9dfd0085ce33cb1d90b8 py3k +69193 fdae4e749d2b3809f0579841fa59703617abc7d7 release30-maint +69194 57d7d6c2b11bcc5495f7e89c9dc54fa3e2dcfb09 io-c +69195 47d747124a3e0c4bc7089bd706eb2e51d47be2ed legacy-trunk +69196 aef29a9ed4918472cf2b473e0f93d18f206baa87 release26-maint +69197 8c4410d067ee7a19c7b6c67f88b38ae1ab3293c3 py3k +69198 ae026d259d411138e50f07147719ccb19a96ae3f py3k +69200 9236351b529a4cbdba8b856b7a6d528d1fab5aef legacy-trunk +69201 c083c274f9afeccad82b8b47b3067302b97bbc52 release26-maint +69202 2c19272d8e56586e197a2b144e70a99a8b915911 py3k +69203 6e5ca98a30ac3853105dd1eb7055b3962668c660 release30-maint +69205 01b3acd109dbb56248274f7514fc200abae703f0 legacy-trunk +69206 2adf9ed6ba7e8974e7728ea199a829b914157cae release26-maint +69207 ff683a928419340d5a03183e5671b7c535140b66 py3k +69208 87a985a1b5c9d0dc26a17fd2ddbf98e6bfe10a84 release30-maint +69209 05074c88373847a3bec4f3de08e23ce07ac35165 py3k +69210 63386ae77f793f81f70a75898ebd76a126771325 py3k +69211 fa79f122a1b25f3e432137cce1bf42e8b1788419 legacy-trunk +69212 7b7a639b960f5c2d3cb837021985f5664c8d66eb legacy-trunk +69213 0c320f8e7e2034587322f8c9bff6e3d335ddae02 py3k +69214 debd14c489b9219a548fc32002f4a4ee83d2a41d py3k +69215 87fbbf22adf37ba78cf8ceb124372727eb2f114e release30-maint +69216 5c702a7d4c409afcc231d93ade49fde75216208a py3k-issue1717 +69217 40ff83e0239531ec38f6ebd194d8d7f625d6e9f4 legacy-trunk +69218 90821c7ad874f8933479d99296c4845414fd6811 py3k +69219 9913c471526106742650c68b99f4daaf4abb0f42 legacy-trunk +69220 fae1758a2346518702e1f966c8d5368a6a5069d4 release26-maint +69221 630a43451d04aa0a4da145a7ebc8142ce626130a release30-maint +69222 a9534391fff9f1cbe015bbeddd97894b0363c84c py3k +69223 362d96dbe92c54102f12f06d29d3e1a2a6bce1c5 release30-maint +69224 786c1278572cc6f378b58ee10db012bfd958f010 py3k +69225 c21d8cdccae10e72c61e1e7e59299af03abe32f3 release30-maint +69226 1479db2ef9cd53b5ef190144c4e472e15d9aab5b py3k-issue1717 +69227 6c8eddf24035d34cc9c2d6c9f2b17e14fb28928b legacy-trunk +69228 ca71a44d5432229b8703fe2c82c21301756d25cf release26-maint +69229 6251b9d321af8d95fb422a7f7d745e65a72b0957 py3k +69230 74438fc11d05dcda97a09c12f60a2d959f836937 release30-maint +69233 f5d1434f4d3f97e3c3682a5c5712fd15a1e66cf6 py3k +69234 98f4c90687750710fb4e1a6c962c0425a71410bd py3k +69236 c820725265ab19090bcad1617a9be8ab68c2ecdf release30-maint +69237 d3e6f2602300caea765d4a0513378f62d2d3b6aa legacy-trunk +69238 3880a1592137e68b891c848176a19e1664f2e2a6 release26-maint +69239 67654106ee79574a6f4a88d8c5b4e6afe3bcd8cb py3k +69240 7354f1afaecb45b141a0409298e796ff26db110a legacy-trunk +69241 7ba41c0917ff7b10406ef4bc98a64b0960e81b95 release26-maint +69242 5c254795aa07a72718cc06c86f61168fb16d5137 legacy-trunk +69243 aea90f5f398bdec0c3ca36e1760123c2bba42b9d release26-maint +69244 a1a71d515dd2fd9f9b50d9a2dfcf4305c82dc99c release26-maint +69245 0f3aabae4cc646599229cda9b5fdd6184f3b0277 release30-maint +69246 5b713045ea906e0fe21bbf1a164e318939a0721f py3k +69247 f377277482ab5860802723504c9641c8cc66bba5 py3k +69248 f351fb7ea1796ac094aaeab46b0c87a056f091dc release30-maint +69249 857a3f9da9153159e5216ffeba53fd7b1bf1d127 py3k +69251 c513e728e24cbf5668d8d8ba0161adc03e82c17e py3k +69252 e20f5a684aefa588b450b330a4b6a1a2cb65ebb9 legacy-trunk +69253 ec69db24de190a7e92243d076d018035b8cf2ba4 legacy-trunk +69254 8b0882c67b6cfe1f0852c62e0a1c2dba4fa418c0 py3k +69255 e5abafae36045c5ebbcf42717e3a7a016240a1e9 release26-maint +69257 75521c123613acabb7edf2cc4c4f62936525fbbf legacy-trunk +69259 5f3354c52e8b8aaae4a1744442ebb3059ea24707 py3k +69260 e9707cc3689d38dbaad00e4947e31cb592d3eaae legacy-trunk +69261 8c0198774ed6dabef3fe5acac329a9d5a459398e py3k +69262 1e7a06a7f5e78b0751cd94563935d5d7568b7963 legacy-trunk +69268 b586ca3a3062252aa98a624571fb70ea8890f068 legacy-trunk +69271 4845abf572f146b84fba6213a1411cedf9765313 legacy-trunk +69272 ec634e57bc5862367c0f8be892104b7927490b57 legacy-trunk +69273 f74528776c115f43ea13ef02df3a4eb236c2de16 legacy-trunk +69274 24566e4997ae2f675e6bc8fa50041268aa81d7e6 py3k +69275 ce04e36f2a5599296b474cdba712b9f26d2d8985 release26-maint +69276 2b603f7232605df357ff0055a7e53035540a529a legacy-trunk +69277 473eb370de2cfd66abfbff61ff577cf0fccc7616 release26-maint +69278 c91b76d8ec0a97165e58c960d6a79b91ee933cfb release30-maint +69279 aa2eb0f242ffd9588bcc47128263208c7ede643f py3k +69280 8e15df3726e1209a01b13f12efe8bb3957e7be9d py3k +69281 53d6445c6c5a8d98603e7c3d333889e9aaf54a91 py3k +69282 b46185d7e95a7a0c331f276834ff5cb56c020650 py3k +69283 378abb281e315cd08400dbf24f5f296c512e4d7b py3k +69284 8b18b3890e316094cdd01bac720219542745a4c9 py3k +69285 e214bdd552fc26f4f6b2c0cac634f882b688d610 legacy-trunk +69286 5a9424893b5fd1d6ec58943dd21f5ac468b4d8d3 release26-maint +69287 2333a57feb98502de0b0abf20bbd13e3e01d9035 py3k +69288 1b233c83f2a9b81acf0ef2fd4829f643f5e839e9 legacy-trunk +69289 ca423008fa4ae650fc2dd0b3a355e87c76ba364a legacy-trunk +69290 9217b3a475286280f061a7af19f467d749a20d46 py3k +69291 4452eb057cc4cdaed4f9e8156b741b172f580fb7 py3k +69292 3f277b565f76ec68d27fcde8a7867d68f8d340de py3k +69293 8aa71c19dcb808ca81c6c2c3d1b4a17548fd9bf5 legacy-trunk +69294 18d3729e2bac012c27fb7b31ea75701ca96e8203 py3k +69295 b126ce707a346e803f737dcbcb848747859b9dee legacy-trunk +69296 52f78bb26bf50f34e6c2bbf005eb345bde0e7469 py3k +69297 eeaa259069a33bf9205bcb0e23cd09aa9e18cfb5 legacy-trunk +69298 8f8910f3b651c283eda479faefa396fdba163cf5 legacy-trunk +69299 8c880bbbe685c220163d16bd1d20df3b82489298 legacy-trunk +69300 0c9d599834b8b4cc4ceea1c054efad191686af87 legacy-trunk +69301 457957a7d6ba9baf9acb208caa0e22674a3da51c legacy-trunk +69302 f4012e78260c5d9044f01879c875896d71ed8bb0 legacy-trunk +69303 bf3b8e30213f6afee4007599b600a884df5f9a58 legacy-trunk +69304 f0e5f8589a0c3d4663cf2519b50bade4ce8f7f75 legacy-trunk +69305 90a4c666f77a857329153e0783abe115ebd74b80 legacy-trunk +69306 41c71ad47f893d32df00f206b8d2b15410485f0a py3k +69307 321f27a414e854adef50f4ed8fc044ccd60bf512 py3k +69308 76239798a60849d9ec37bb5e3ee56215a3ab0bfe py3k +69313 3fc25ae189e968a5076fb9af121c8356f5fc683a py3k +69315 e05c6be6af100a897b93b74a373f070ce5b677dc legacy-trunk +69316 466eb9784e8ba908aa4b62e9d50401973859f97a legacy-trunk +69317 ef3c6d9b4feca677b946d45383df334eccfa307d release26-maint +69318 997b2632c9b75a1cb6820de2a8d126c19b8a3c5d py3k +69319 fde03e75bc100addba3d8e89255115b6e44c5604 release30-maint +69320 dc85ca412079f783adab2335d81d3d480eba7260 py3k +69321 e5425af60f3041615072033a92d3530ff201b702 py3k +69322 a1893c6918794d0f4b271ed9e2bffc7961609fad legacy-trunk +69323 e6a14688580ef4dd627ecba6b4076524194d6a35 py3k +69324 50d89436aeab73deeb0ba37fddf600b4c64bb863 legacy-trunk +69325 1671004839f8bffe29eb07eb8e1f11ce21eb98e6 release26-maint +69326 7e1a385847a98db8f535def28606489be565e616 py3k +69328 37431cd12bf274adc698baee3fe701cba9eb4c74 release30-maint +69330 21c3e35315046361a00c7ce3fd53292fba0fa501 legacy-trunk +69331 e239e977bb32a2d3a61620f605245bd5d27b99c1 legacy-trunk +69332 a3ea65bfe3706a46e8589b351ba0439e91ce5a0f legacy-trunk +69333 f78d7ebb96da84c62851c5cb28c10fa31d6267be release26-maint +69334 c5022b1064ea66ee3507ee0a6ab1a3095fc9d867 release26-maint +69335 e439f9722a7349dffe5cfb07282b18cac488e229 py3k +69336 540fbe5c8163f498f680942ea6d6fea6e2cd087b py3k +69337 7b8fa26528669107d1bf34313cc6ab85986d9384 release26-maint +69338 db8efc94016f4ddcc3c209672e20ee591ec6ada3 release30-maint +69339 d18550298af877300f345113fd6fa2a34ce74988 release30-maint +69342 fdecb91826040dfa7697cc62efda71e668e00c2f legacy-trunk +69343 13f1352a3f8743e39c62a0bdb6d150d508d4d087 release26-maint +69344 20709769197274ab022da580719767e69cdd14b5 py3k +69345 9c46d109007e6c8f2d9979621d89dd65137952a6 release30-maint +69346 4cc49d978ec23aa55fbaa30aaff83eeef34d7440 py3k +69347 bbc1c68153abdeb2e974cc0df2783d0a9058dab3 release30-maint +69348 0f751153307f469e3dc0a8209f6fa4cb5c2f308f legacy-trunk +69349 c4c612d95a9b6d9636049267ed15fc6c96ace7f2 py3k +69350 7e28a2b0c1b1f19b53e834f8c723b138c1be66ed py3k +69352 a00e5dcea16c8e048845f91c3929792037cc0718 py3k +69353 7a05256136447e0e5ec1258143d69231bdbdc25d release30-maint +69354 f981e0557c3507cb46f5c999a8668f3dff0c9a62 py3k +69355 05d1cb053d47e4fcad810254711e99ef1f8132ed release30-maint +69356 cc825311627580b1014a30bdb85f7ce9ec6f7f14 legacy-trunk +69357 f387834ce5dcd34e7131626d63e25ab4a8695bfd release26-maint +69358 54e409c2f48d6a1260b1485add90ea87095e8503 py3k +69359 fb45111f244eb5e9ac6238e20464d83e8b7a6d75 release30-maint +69360 183a6c29bf9c18df59bb812e8766bae9b28e600e legacy-trunk +69361 6f40768d0909d69a462e54e461e3aa8e49d7d552 release26-maint +69362 b4820fceda241b25d7f9160f29dfdf2550f08133 py3k +69363 db46f82d0a1d1de436d2f1b04f2f0b6ce45d9e7b release30-maint +69364 4327dfa68118f99b1b97803720cd9492a5047bc0 legacy-trunk +69365 18210afd005a710845bb4650382285be76027723 legacy-trunk +69366 c9affba069eae5954365ee4196545fd809bd9d6f legacy-trunk +69367 28e430f14c0dcf4337621bac7a28fd3e412f1b71 release26-maint +69368 19db379bacf83377282b2147b27d8237367e4b25 py3k +69369 f2df10ba605485f3d0628d2544402fc34a17b19a release30-maint +69370 96fe45de7f26fefa65d58edc1282db3c5a4ef579 py3k +69371 1ce036b880936401ea159baedfc2923be5167638 release30-maint +69372 d1e5407d5509bad8cf176573f9598138c0999cd4 py3k +69373 42faa8054c3dcba2b1698d1aa8a65ab7030e6825 legacy-trunk +69374 baa88e9e9766ca8d92465a13080d45d5c5dbcb78 legacy-trunk +69375 2a40d981c652a2c3cefa7b84a8be37c90fad99c0 py3k +69376 d4613e970498a4ab5e6ca6a48b6561535ab5b069 legacy-trunk +69377 9856c4faac0481bd704fe32610dad9807324f3ea legacy-trunk +69378 b4e154c8a38a55b7c922778685d2f0d4b57758cf release26-maint +69379 d2de5da0f5634fb83fd868085b8c533932357da0 py3k +69380 58b7dc9c9557b7bd92d497df1016585af81ed39b py3k +69381 c02895a3ed6d57f3f86b44c06be70be27c6f4826 release30-maint +69382 e17b37c35c7bb24051dc95b5b49cc2c6630c9db0 release30-maint +69383 03addd14e6f2c31ce7f95c83238b2e44d5da7494 release30-maint +69384 8197166aa19b7dc33e47c90c380e662c964f4bee release26-maint +69385 a7132db6909218f021e03f014592b6b6753e1a35 legacy-trunk +69386 7ad1ab9906ee5aad8dff848efe9be172227aed94 release26-maint +69387 b091bf834226a39a0292dd0d4ecc5ae92b43f944 py3k +69388 6e93dd578cb8660ffe0a18bc13b088da79f0ee70 release30-maint +69389 0151c514df569ef1b1852d4fda7e13c73cb485ad legacy-trunk +69390 207d0ea953df18550cfd70da008ba551e48829fc release26-maint +69391 0b381b423cdf7239cc1b1877134543b3fdc31af5 release30-maint +69392 66eca13ede183c2e280dd8aa6bbed3882636f92a py3k +69393 811546770d20f60cd44f82791b453982560a3400 release30-maint +69394 4809afa85a9b6be9ba6302924de05b9e7adfefbd legacy-trunk +69395 7a1356d2aeef33b861bfb6702cc11a882e5d0c62 py3k +69396 ab60bdc707106b98e1b56b7558d9e37b3d8db15e py3k +69397 66da5283334f061b1d3805a6dd7a2223394ed23b py3k +69398 3896133c95cba8fcd00b4812d947583387ea43a6 py3k +69399 5cdc5f0c134c8e6457f44801906c4271cb9650a8 py3k +69400 3295790a65be7fca79a898dbbd9690053c81158a py3k +69401 bc58a61f817bf928fb867ada1276a19c33658ab5 py3k +69402 43d3a95ed6621972001fdb03c5f7e964b82bb1a5 py3k +69403 eef39b4396ffe461f656e34a1781f81d9529c41f py3k +69404 2f1efff066b3882d7031c07e16c96564c9bf821e legacy-trunk +69405 025078827b54086c714e8b72db3bcdf32dbe8e35 release26-maint +69406 8cd8e236882211e4ba8639698b11790ed114b4a9 py3k +69407 92fa39b9af13c8361d52479be269f946fbeb574d py3k +69408 87317a889db044a64166f8f64fa239fb66ac1877 release30-maint +69409 69b26e990eb8610fd0aef905b4a86518a0ba6d9c legacy-trunk +69410 99e264fe23830b3c6a235ecad6b5c486b8dfe873 legacy-trunk +69411 c21fb5efc638da25ef4186ea1dbe455aa2a94130 py3k +69412 901cb207b1d317e68e18185277c3e8333e8a5175 release30-maint +69413 494da2c71902d3b6a292f4e9953807fdf5d52870 legacy-trunk +69414 9899afe0ff8c18cfd93ecddfc120a86f809e15d0 legacy-trunk +69415 0ab36796dd795890c8bc64067382fb53f43cd839 legacy-trunk +69416 320cd71e2c562cad73a7d9cc0dbfefe0454eb531 py3k +69417 100ae6a8bc2db3967ce68c53dc9e9f18804d0cb3 legacy-trunk +69418 ccc7188fdd28fc3d22077ce0b04a675d9d9461cb py3k +69419 5cce99aa1f58ac7b9213e3f52252ed6b848ddf42 legacy-trunk +69420 5708a1e0164590e60941c403bab213612ce7b26c legacy-trunk +69421 2d354f4d77bcbc6c75a740d8fb50f8c87e74b6f4 py3k +69422 1758ded44b4e0fbb471e613f7690a2ec6f318e75 release26-maint +69423 f85ecd7564114a202014a9f45aa482824267ea3a release30-maint +69425 117e152e513a650cdb1842495ed3bd7c2ba627a8 legacy-trunk +69426 74d196c542f78ab8a949ce6f8762c0182fa375cc py3k +69427 1cc61c79b9ceafaf2b0e3e739c4d671f32f3d8a2 release26-maint +69428 e8fa10c66d183e0e9b7b7b63db6b94c626451252 release30-maint +69429 501b1f035f2990b82c6fb6f85f62a8790e2acf02 py3k +69431 0ed22f1aed046394080e9eaaeb56ed8e1ea3168d py3k +69432 7bfa64492d00160a4e0f7722726675bbc11cec84 release30-maint +69433 c5935c7497fb631f41d6566d03dd80f9b2dae670 legacy-trunk +69434 4c7ed40db81eabafa930d46d63df771c485862d4 py3k +69435 0eb405d01e083d3e066e881efe331e9cc0875f93 legacy-trunk +69436 bbb8350ddbd259d16fc7eba069a7e4850aa0da07 legacy-trunk +69437 5849a4f904a2a03258fd8cbfc2ed4b4bd434b81c release26-maint +69438 945cb95b35bf55cab5ebb04a8fe9f6a23458ee04 py3k +69439 4313b4d4bdc73d16bfe599283f214b4b7f32d964 release30-maint +69440 224d0efcbf6c948d2712c9c940f2eb6a3404bb25 py3k +69441 fd74b0c06927c9049232221b7e7979ac640d3d67 release30-maint +69442 c332f7b4564723ca031c8c4e34a0e7fcbb506707 legacy-trunk +69443 994fe4df4af70f57a208c1818502327544284598 legacy-trunk +69444 6550db492f288a772ca6b25946e3217abbdcfc21 py3k +69447 e49013f1d83143b1a2b2141af46ed17eaf59e736 legacy-trunk +69448 c17f9281a856b1da9951e4ab485fa82812495426 release26-maint +69449 4ea1229739143e85261dc71520721ad9112db178 release26-maint +69450 36bc8d0e01bf735114664231597f86c467d738c6 io-c +69451 8cfa108e7bdc3b9c540ac4690f9cba0f2808645d py3k +69452 da0070cf46544f2d8fdecc6c7409f166092d4a41 release30-maint +69459 e423d07f08af0a7c53a1a972b8a6e443d064afe0 legacy-trunk +69460 dcffc72381e734f3da7e4f139ec79e289d7222c2 legacy-trunk +69461 7bbdce5c92505261536f11cc79101be2ee1632dc legacy-trunk +69462 e45525195317d3994eb2b6613cd86dcdaddcb84a release26-maint +69463 47245ae3211ba69ed4dfdc9e7c170fc2777d5a2b py3k +69464 663ce74d51757d4635b148e649ec47a71d4ad728 release30-maint +69465 f9f2ed79b00fc2bf158302f6cc24950850452101 py3k +69466 154e7c474aad047c9bdc5acaf9e55ddfe75d41cb legacy-trunk +69467 6745bdaa9b49b5936ddd8430108aa2dd70128ef4 legacy-trunk +69469 ac62432fb341d7ecfd097d2afe9eb1d6db04848d release26-maint +69470 bdde44af974406f34e6b150d2d1108a6413a72da legacy-trunk +69471 1a7dd9d2e7ec3e109d15453d3a54d6424d8ea8c7 py3k +69472 62a1ed6e636ac1e56a053cf028cf09e55bf63788 release30-maint +69473 fbbbc259b5ce88da29230c0eec950369597c7e80 legacy-trunk +69474 d7c4d071dafaf19ac5c2b31f5a63349b69d63663 legacy-trunk +69475 298806f64dfa3646d931056be05d27a27748893a py3k +69476 4e7ba67cfa053739f7c6e02c916e65e08ab36739 py3k +69477 8721c213b6f44d0e497370e7d4f72e22425cb42b py3k +69478 87820fc65d7c989907dd5dbd3e43f96d0f977627 release30-maint +69479 a90c9298dbb488c9cc0aa32dcde884ba05387bfb release26-maint +69480 beef8818a66c21be581278ac613af1214f81ee2b legacy-trunk +69481 584c47d8c93f1a754facd276b39a108071d2e04a legacy-trunk +69482 5e7d7fd1da5a7faeb5e4beac2abaef164f26a008 py3k +69483 ac9ef7431c8f134c2072bd5ffe745c9178ed0225 py3k +69484 e759da93df647f252fc45c2114265497da602fc9 py3k +69485 c61f24ff055e40d1333cc938b8c0ac7b04de4d20 legacy-trunk +69486 1307a66a38f8d487f164c2aa77ff26b9ad59022a release26-maint +69487 8a28d99f784d77ac41fc71e3b8a2a4b9e354c6a1 py3k +69488 3423f647b54a65c2cc1cdc878029543e6aab7e63 release30-maint +69489 dab80635036e8822827755b7a2c1fd632e308f36 legacy-trunk +69490 2ae770ee628417018c4708ccac8cca6462d2367d legacy-trunk +69491 38642385b1e0af1430a801cec10f735ea83a4c9a py3k +69492 6316f376b814bb1de3e122e0e1ead41c1103bcd6 release30-maint +69493 bdb1ca9abce362d88f89bb154f84bf29abde9e1d release26-maint +69494 1fec0bb509a2b5e482bd8714182eb65af81e81bb legacy-trunk +69495 0415417cfd483b99fdd40bf169644b65f383b6d5 legacy-trunk +69496 f0c7402cc000693a7cd23496393bf5f2ef4a98ae release26-maint +69497 08e0f03ba81728c1e8c5e3da2e3d244cce624e95 py3k +69498 20609fc13a135754bbc811497d4a3f37defb2646 legacy-trunk +69499 a00745480120df90777001b475d8dd4a6d0c0dd2 py3k +69500 058dca73ee302951fe0fd2a1889bafd8406c2950 legacy-trunk +69501 94d9d525401c163efde089c65ec4cf7285823190 py3k +69502 7d6cdf335a570290ab08c320c24f18958874b8c3 release26-maint +69503 ffb9cf94c9f1399fb682a22c3ed7ff09069c8fe1 release30-maint +69504 f358ba3d1e5363727dcf5e25761208f62e1e3987 release30-maint +69505 95bb7739e386cbb89255b3c14a9ffc39681f87f2 legacy-trunk +69506 d3e88f778cdc165ade77dac06195d5c6be878d2a release26-maint +69507 6dbe3f9a040cb8e4e4d6035079a3df5de0ba1931 py3k +69508 972e8617dfda6d85a82727a7641f0132d1ecec2a release30-maint +69509 83515bd28626d4295fca33ff24030e088de47834 legacy-trunk +69510 72ee42cc9530f3f6f6fddcc0c1e4e03eeaaef161 release26-maint +69511 5196eafcbd72c62efb213b4bfb3f161cff488ec7 release30-maint +69512 28bf457fb34d0b9c2725dd31fccde83d27dfc407 py3k +69513 af469dc15fa7bbd94dc15f77c86eac3a55937d16 py3k +69514 7bb3d515b677eaf2dfd2bf6217500ce2af0de5d8 release30-maint +69515 9c0a4fbb56b90ad3743741040ad00cd8510408ff py3k +69516 dbdd94cd07fb46ac05252b651abc19dbe3322f44 legacy-trunk +69517 7d897064a6efb6d6723f9e95b2450b63fce51b5b py3k +69518 4d9b52fcb5df9d99d142d4451c999c2940ef6940 release30-maint +69519 edcf996f07e98ffa18646bc9102dd343ee713e28 legacy-trunk +69520 29a9e85f30bf7f871859cd853de7b603481399db legacy-trunk +69521 d69769b4fd20a45822497723544e9b896e271bb3 legacy-trunk +69522 cbd53ff495570b8a65a38a57586d0e83227d4d98 legacy-trunk +69523 b0db109089c968edb687b46b83e445a9dab8aa74 py3k +69524 2ac02daef2ee38e98f1a8098298bf8374047d395 py3k +69525 43585dbf61d57a189e8730cc4d1b5ed1ca6f0c53 legacy-trunk +69526 cb8190a1bfab9c539f8efc93238f2960d0aa6c28 py3k +69527 2bf5ed671d02c1162b68d6fdbc59ca73bd18459f release26-maint +69528 df69bccdd363bf2742041eb594e07a6546f27b90 legacy-trunk +69529 7d29c6e8ba0558075139df8a8df2db05acd5d29d py3k +69530 099e960676b9f064d19f0461a84153b39f0d2bc3 legacy-trunk +69531 1ae34a48b7392008c77deec489d83312e01a9606 py3k +69532 9677dd0b09e6b627f7a4678002f7967ca3e560ec py3k +69533 7fa8b7a2f50a215e47616f2dd85cd7a4168c2d5e release30-maint +69534 217425ea2769c28155c08f5ef300c02ab43f77bf py3k +69535 92ddba5779f94948ab3444b14b82185616c57b80 release30-maint +69536 861008deed97a3fd878c13ebb971b705e46dd5dc py3k +69537 5b501196fc383fc323af40ff8086ed9c572f9bf6 release30-maint +69538 659d88904f5fb33e7063e81e17f983770fba505c py3k +69539 08cc574af4f609ec22749c9d2cb296275e252192 release30-maint +69540 189696c46c0e7f4fa25101f4671e47cd23743010 py3k +69541 cab4e2e484a2be608ae2a36c7b9a1d3bbeaa83ee release30-maint +69542 83bd2d174cc8d02e725f0716fb5341f13fa23f18 py3k +69543 27c589f09a2174ff92c6ac5657cac7426388e2a6 release30-maint +69544 971bb47ff70b6112192310fa5b8eee3af9443e7a py3k +69545 acdb32341d87a317979fc693829807e69a3c607e release30-maint +69546 a0d8c616f3405cb9412a92f977c2382e1f6735ab legacy-trunk +69547 c09b501516bd0cc7620afc20ccf648e57107d5d9 py3k +69548 5d28405080edff392c75423a5fbd63e186d48434 release30-maint +69549 31645ead4c35bb43bee2c1ad0ba96ce30701294c release26-maint +69550 9a932f92f394997ab35d8bf92ffc9004d6f57f34 release30-maint +69551 6641d828d762d651c5f9ca2bba1728fddce5d56f legacy-trunk +69552 13328f11ad295661b89496f5adcd51bee3578dca release26-maint +69553 3ef5a0c5e6b57fd9593cc58b3b6a50ac0abc04fa py3k +69554 e375071f950ec757ec999df7dc955c1dc26934a5 release30-maint +69555 ce29faed7f69e20d3bc1e2a98417e767075ebca7 release30-maint +69556 e502e2bf35e86dbfa3b588ef2888ebeaa0037e70 release30-maint +69557 cd42e85cafe7ed6c5c2db6582676c15a68e9c7bf release30-maint +69558 07f9e0048b0bddf1286a8f1ac88c2b932cf6c50d release30-maint +69559 e2ea0f83f03942bd8d13f8d4a29b357c84f5c4c5 py3k +69560 648e07dd08258f60f0a5935566fc1c4bde491506 py3k +69561 1e7ac14e49387eb644211c05773f1b73088b03ca legacy-trunk +69562 e6a8a164233a43b59d4559537b1b9e80814f83d8 legacy-trunk +69563 8d36ab093d456c24d18eda3bcd032ec53f2e9a3e release26-maint +69564 47a79d7eeedc906dff30a40708bc4d9cff1a1efc release26-maint +69565 3bd4ae26b36497ef8a9ba043bcc919cb71e36332 py3k +69566 bd2b779f5f312342776c08f01910507b84345e41 legacy-trunk +69567 2102774e7a2d93a03b781558dabc4851604703e8 release26-maint +69568 b8f10c6fad52854148f2af75cf4becc4a2656c6c py3k +69569 72f6f1701ee1aa4b039fcc13d167d8199ff83163 release30-maint +69570 7f4a115aae6d954da0b458d74cbb7453e5be35f0 legacy-trunk +69571 a41e8ff6518c20359dbda2f4122d79ff09951013 py3k +69572 52851b9d9759011def85995e468469a149008177 py3k +69573 0946cfd6857999987a6b38a75f0f654a26c63acc legacy-trunk +69574 68b8af494be280fe0cb45760ed788d06268ca5ca py3k +69575 ca1d99d9d691eddb34f6dee571ea90656aecd794 py3k +69576 c014a3b1ad3155b12e3a1ddf6eb5ab751719bcdc legacy-trunk +69577 a83f10edb6ff15928aff63fc93cd7a52d5c49dc4 py3k +69578 bf419cfd7b0ab94b0898f1d897b3eb91b3642f70 legacy-trunk +69579 512c5a5de00b80b289600041264623deb5c894bf legacy-trunk +69580 69fdf888f113a76ccb34d672b59fde5531f9db63 legacy-trunk +69581 ec30b1fcc1b3dff87bc7337cd57f94ed8389b6f1 py3k +69582 5a72eed1eb1a795f99d39fe96d399d41a6cc1534 legacy-trunk +69583 08df4f5583ff52c284a7bcda1d1862a13b1fabb9 legacy-trunk +69584 ff096d6a9222bcb923d0bddd0bc4f19aafb213ce py3k +69585 c6ff47b3eb99fbd2b242b06cbeb674bcb36cc982 legacy-trunk +69586 a93b19a2f8d934918a9d6580fcf740a63babd46d release26-maint +69587 42838b4d6aa1b7642a50324c95e52983c07a05a8 py3k +69588 ae16e2b86feb5223ca708ad3fca572518ffdf920 release30-maint +69589 02c3eb1ca0d5f0d4ecf072d17b2f357f4c2ba971 legacy-trunk +69591 0590c0b76e6461e5bca66368c2bf73af71a77bcc legacy-trunk +69592 87ab6bc21345bad085660a8d0cca18c4be294546 py3k +69593 dfcf690a67c8e9099575b5997609a778b06f2b85 legacy-trunk +69594 d3663f09d7645a3c360edadf7081771263a77fa1 legacy-trunk +69595 512070da7433dd378be22fdcbf8cfcd2e989ef49 release26-maint +69596 6135ff7243dd796e23cc355a5bca881251b14317 py3k +69597 8cb8eccd66339c963ea646ce6ef1e81658104afd release30-maint +69598 8dc28a126b2c801eea00cf38c7c01f836fe7be2e legacy-trunk +69599 9c75806bec64af91e6e8ab962d376bed4d796dfc release26-maint +69600 40ed5783e24a2da5f54a05481f2d68100240f2a2 py3k +69601 616138eef224bcd06c83348a29b5b680ceaa22a2 release30-maint +69602 e5ca0bdb390fd781532f217e4c207bc51ad43a52 legacy-trunk +69603 e91b04db6d19680b2ebe685e410a6fe4bd2c2921 py3k +69604 c5607cf76801275d54b046843d04c7e46cc9f46e legacy-trunk +69606 9cc76758ee09c075133cb4cb49864bb263538400 release30-maint +69607 2a263d66d659780015f1e353bd160137d9772ee8 py3k +69608 f43f867d5eb60a4d323e3c2eacd0ff07ac2b6f4b release30-maint +69609 e5522875b98c26a625f755390c6f723d63f3001f legacy-trunk +69610 9498e7d5b26599fe6af6e2ed7071e49290ae2b04 legacy-trunk +69611 6a7a0e1e27bc0448de389a18e1a7731108dda2eb release26-maint +69612 71a68dcca044e32efede0c2a0a18cfdfef5d4af0 release26-maint +69613 e13ed484422e8155fb265b9cc8fb0f9d7cf0f76f py3k +69614 bb99eda38c1b82eebc7a2cc246a9f900d2592fbf py3k +69615 3cea4051dcdb6c0e6cb4e3ee7bdf1a7c8a88f511 release30-maint +69617 d40838c5a4206fe9b3d578b8bdbc46a1b535647e legacy-trunk +69618 969378ea4c7771c7f51131dca28ffb0513b38181 py3k +69619 9d7a131dcb7895a02f0c37697459fdabc7c43a29 legacy-trunk +69620 556990bb4f0acac7dc99efc98794feac033ef253 legacy-trunk +69621 15d8b2db2be457a466d719d615a7aa26728f0e46 release26-maint +69625 f67b48a1513ebbaaf6b7c6a1566609dd04974ad6 io-c +69626 8ae5b0c5c24d2ae7e2aa5b8353c08557c646e41e io-c +69627 c17cd9bec3d850e407939c3286d02a49e8622719 io-c +69628 ade45511b565b1ebc95363f3c9609d46ec96a004 io-c +69629 77306ad930a334ebc3e7ee4e784c77c146399a5d io-c +69630 5fd3ad549917cb43926d97a1a76317253284b123 py3k +69631 ef2cba80c975bb5d9911c9b9bbd581986d61417c py3k +69633 3f7e073dad7b5f47d13a5ce01eb0a86cbb74a6d4 legacy-trunk +69634 b55a3b5d70088299da09c9ccef42df1baf798d1e legacy-trunk +69635 b8c4664a653916e216497bcca6ad490a41e7f131 py3k +69636 5f2257b77ab0991dd807b29a67feb974baa44f0e io-c +69637 79c2311f33cc1e2fa1ded49ecc208e97a3d5723d py3k +69638 3f475745a3c3058989edbf6a5ca25269bc18fab4 io-c +69639 af7d780f7a0be4ba04bc7f55384ad656590a62a4 legacy-trunk +69640 65e0755e9bbc9d7fd4000940fca4f0eeb1a6fb09 py3k +69641 aadef2188ceb6fb6ba04eb9574ad77fd088f72d3 io-c +69642 2c4a331cd32a8d77b3d6a2c642f14c14db30d049 io-c +69643 948794ac5a52be270fcad48ad4bbeb068d242b2d py3k +69644 8c6d688e4f16109bc5cba6997c50999001526136 io-c +69645 95d775d9ab47c77eddb8b109139b756e411ab177 io-c +69646 4fe2885d065493b51c50eb5ee05b03dd17617cd5 io-c +69647 40c9541e61fc8965ff1902fcbcfc17888db3d62d io-c +69648 98dd2057e088bb4f220eb4cdde358cd02a10cc9d io-c +69649 91a3cce68e9b4610eec09b57fcda0bd62b4fd6e2 io-c +69650 d9c1d9b13374830da9b179181b60ddae03b81303 io-c +69651 db3cae128d91eae5e4f18c1ceb1a3fb5a56aee3e io-c +69652 1920148779d446bb8e96ac4896273feab83c26e0 io-c +69653 9f539d8cd9042a3c39996aca53a0b736da99ef04 io-c +69654 28ca1df545e236673e5fa5637e6a375fcce1ea3b io-c +69656 2406c7dd98841086582d94b1965c6c0b1e0051b4 io-c +69657 a26db3144ae713045238184433a6edd5bf39c48d io-c +69658 4b121bbcc92afa018ed084de7ab14d21b9ae11dc io-c +69659 f3af4992b80b83d9a0d94f1dc63e44b5de1720c5 io-c +69660 6da30e3abc0dd00d9cead9236c15eefa9ef3b9ef io-c +69661 2c71902b37747d6975830d93decbccc36ff378c0 io-c +69662 f4c49cf601a2cdc6e143cd50e70f3419cd8a2b3f py3k +69664 a450c86fc2bc046855b862a89d4651ce36f69027 py3k +69665 c57254a9c1a32302351c5414d90e9dcc097b56af release30-maint +69666 076c479131349d475ad7f954fe051cb5cad3c178 legacy-trunk +69667 98575f9a4ed3858206f861a7ad5c04940296049b py3k +69668 a5c6215a45af09e178826f19ca1ba5f347302e5f release26-maint +69669 0e55acd1a42669d2daa20fcb6cb74b830df90908 release30-maint +69671 e873f808464a3363769c713a5f600fd90a686992 io-c +69672 6a118cc4f3b78e1993058a661b1624f5064220b6 legacy-trunk +69674 51db18084ecbaad50847a69b6b7bef8c3a559699 py3k +69675 b39d54058a2bbf79517b98640c4cfaf3faf44652 py3k +69676 627db59031beb01262e7125b966efd79fa8228a6 py3k +69677 4d61fbbb45d74174ae6b4e1cdda200bff9f008d9 io-c +69682 df7c6bd1b6092b8566b1ec1d11003b1fef893b24 py3k +69683 5dcaa2e1bc869a6d678b6e823cec86b7359e4d9e release30-maint +69685 0ebbcf5988dbc183ebea7c0cd323db37461a3eb9 legacy-trunk +69686 003e00797e9100b150daa6084d4bd26344c0c94f py3k +69687 86b60d05062ba8dbe3041dd07719fee68e31abd2 py3k +69688 27d43d66bd09ceec1ecbb31c56648ebea4ea16ef legacy-trunk +69689 154948e2fd1c57f1942675f4a2bb9eac2f94eebe legacy-trunk +69690 09235889c54d14e6a668c69a7e655fb1144cf943 legacy-trunk +69691 f308953c701fc4f61899cfee98527dadcd0e186a py3k +69692 982f9e2925a45c540648dd1b89b5eb92468994db legacy-trunk +69693 ab4da2edb288dea580dbe799c13a28ad9fd6b9ce legacy-trunk +69694 e78ba8800e2ce01eac4084e9aed46545f1a29fc8 release26-maint +69695 5227f8c4183ef51eb4fc4d54d1a0161f4a1298d0 release26-maint +69696 54cf68fc73127ee137f01bdf219bcc4033f25ab9 py3k +69697 29b149bc31301629e86916aa96702795cf2f1ab2 py3k +69698 273268522e5ee928708159b6110340508c9ee1d2 release30-maint +69699 0c874799a190d504d1d033fc68962bd4716bfce3 release30-maint +69700 7101772eae805fef911209cb7e2900045c74a4a4 legacy-trunk +69701 f505eba726c8653c7f75476dc776ab5c19af97fa release26-maint +69702 dba2faf099064955dd7e5a8eac3f9617c6e7b938 py3k +69703 01d3b6863387dbb596eaf0fae4fa547f8571cb9b legacy-trunk +69704 07fad301025f019ee3261745dfcbd569087ceef3 legacy-trunk +69706 dd2210b2dc22cbed4a032f0eeb4ce5f282b6b6e1 py3k +69707 147fcebacb5bb0d1890b619fda1ef7e3a7e1c309 py3k +69708 19e7685d9b946f25847b08a8ca9147aa6b28c0c9 py3k +69709 44fd2cc9e9cc74679b2c65b3142643284ff66554 legacy-trunk +69710 27268ef04708d8e3c30a4d66fc71a61e5bf024e5 legacy-trunk +69711 d7726782536d95016a6a75b6e15b8004c0c3f8f8 release26-maint +69712 257c98fa55d76cea9baab3148b1956dbc24d2f88 py3k +69713 e548df36188ef7352848c1dccaf8af2643b86fc7 release30-maint +69714 0c6c0572c2473c0d267cfb3d49bf56dc05a853bf legacy-trunk +69715 d982b95be3e2180d555fa8f9bfbbf6a16af908bf legacy-trunk +69716 798a16abf546088610fe50b9d4d30a21e903addc legacy-trunk +69717 d6740a96a70adac16a763e07a6756b4e89b6eda8 legacy-trunk +69718 9ad662a43eb350e47a7ca6efa675ab79007de937 legacy-trunk +69721 85407d04778209826305adf5266e9d862d9dbf3b release26-maint +69722 09e63214f0bf86506f9cbf527cb636486008a41a py3k +69723 fb8606e086ea8445f69fd66207d83de8ba9680b1 py3k +69724 92e42b1b0a6eec0f1177689b3c016ae08bd03d0a legacy-trunk +69725 d7860bb0b15a0bfd1352ab66c9ea3d8ec209ebfd release26-maint +69726 605ffc052b4195e334019c60fa5d585ae2304291 py3k +69727 205a2b4c1fa546558441a183837008de774a2bcd release30-maint +69728 1ff4b41a57c126d0f9466c00443ac48e2c9b65eb legacy-trunk +69729 e7e544cd2c2b9462a924d1aa21d8e7d48dcf37bb legacy-trunk +69730 6ea7d3714bdf78f2845439d5fd5dae52974328e3 legacy-trunk +69731 5519b9dcc9b6b6447af0203daf023f496d00c83a legacy-trunk +69734 39f09c9ed5a5b3ed6c3f119553f898b273acb6df release26-maint +69736 2878bf815da1e8bac8bcd7474e53845c5569763d py3k +69737 cb0ade335551560c15689e28028c8811cd15039e release30-maint +69739 72d13ecf4fca75fb256ab723d23d26470f933958 legacy-trunk +69740 76d77ae97b38ff6073eeceeaadda3ec9ab63ebb4 py3k +69741 7559a03cbd30ab751b74fdc7ed4988ff751196e9 release26-maint +69743 9bff130d792dea471f2ea9cf1e60ad729ec1e395 legacy-trunk +69744 ee7011863943267dfc50ed555af6bf2ef0b4a9c4 release26-maint +69745 8a292543e8719974106b41b7907245a6ffaa7560 py3k +69746 b2ff21bbb9c54044766b3f8c384f84f2f0d918c7 release26-maint +69747 7c7b805d0d0a8daf7ff4f658de0c7a215f9fdabb py3k +69748 748dfe9bb857fc1efa70215a085943287e2b65c0 legacy-trunk +69749 85fe887614ce4420e901cf116f689d816316cc32 py3k +69750 e260d6daf7848d8400d7d395ed6f0519150f17e4 py3k +69751 d25fc02092955036a7036fb157c9ec8c6196e596 legacy-trunk +69752 3dbdbc5e6d85ad5ea13a5104ee5aa2aca0447bb3 py3k +69753 03f07d8f06e46c03abf2db98cd8758eb35cfd06e py3k +69754 33d5d7daa8c7469f13cc92ee0fdc5d27c86894a6 py3k +69755 497eab79b1be8e91725a3e31cd47a590184f4b9c py3k +69756 a9774b61e52d3d8d6ac53921855e717d1a9405bd release30-maint +69757 302263e3c8f1d2c55c7d1a21e4c68afe49d57312 legacy-trunk +69758 d47c258a1e1cefbeb5d5c399fd96867bd2a7e4ce release26-maint +69759 ab40c76139ab4d77c920ef99e516b0e7be67e0d0 py3k +69760 2f5257494a2e0feb26a2242a5b571e33af8a9dc1 release30-maint +69761 559e4fc31c8a73b5f64f32d083f5cdf9a9a35e50 legacy-trunk +69762 ea47cef67837b0eed5c59b479b3d96a9c601c9fb release26-maint +69763 9001d9c8f71e0517a3ee3c3211234ed8fd97a393 py3k +69764 d673da915914d7c591344c9338ad9bbdd472a22f release30-maint +69765 9800ab236c09d455cd62acb71a038204e3add7e5 legacy-trunk +69766 f0eac452a6cafd18fa08912b27c81f2d586539b4 release26-maint +69767 bd4671792d5016e5e814768afb57356a6df70436 release30-maint +69768 4342c0a2f2dc9cad448b16d5d9285fab0e173222 py3k +69769 8468b52f5ee2c377cdbe27315b1f09511b6aa756 legacy-trunk +69770 00f7be02ae1f1c2d0093bd3cf33cbb0e49b543f5 legacy-trunk +69771 78e311f277a7027e1db502f92166f4f5d4ae2122 py3k +69772 8c13f430e1606a0854e6c3ef4a1c5d030bdcab54 legacy-trunk +69773 833ddfec0bc456be0488a5e9fc1c6805586a0f95 py3k +69776 c02c2a908cb098f1f8fdd3fc8033f5b80a721fbe legacy-trunk +69777 438592890e2b7ef5929a01eea090d91ec3ecc46d legacy-trunk +69793 27933753a387f91a82c94ecffb3485a9129e48fc py3k +69794 67eed81ba74fa6a30a806e4456d7f75b2c0fef6e py3k +69795 9815da43a1cefa46d0a1d8117097bb8398966faf legacy-trunk +69796 c1bf037feefe06b1ece9009811c5c405c9a2c31e release30-maint +69797 624b55d0d6b72db113f40506c7627d235dd067a2 py3k +69798 2f3afacf9f0b72ccd6087b82898b1f5e7a42892a py3k +69799 1408feec00849aee0586f9afd2b10dd291664164 release30-maint +69800 db8db31fdb4c47c01fe0f4dd75b6a094adff38c5 py3k +69801 0b98e3791b9ec8720ca782bd5acc455050c5216d release30-maint +69803 5a17888c51513e95da8116a07e2cfbd71d70b7d1 legacy-trunk +69804 ef19ca013e16ee151d839a92f4b831f129f45774 legacy-trunk +69805 082409314b007a88b3e07a6dd176492b8ec3f474 legacy-trunk +69806 65a3f555fab73da4e74eb45bf612b0a7c645be25 legacy-trunk +69807 164ba7ffa0eee544b4c3e134768bc28101c86fc3 release26-maint +69808 9250c8c61a91095a95ef56d3cc2168f5de6e4a9d py3k +69809 4d3baac2e1a20db52b1779ba5f1cf38d5608ac6d release30-maint +69811 0848ebb8f9c88c9270de672fa156a46b4e6cddd8 legacy-trunk +69812 c6ed5bfe3969a38b4c07f7183caf30abdff7fb56 io-c +69813 e08e4098a4e79b417c55ee3d1373cdcbbb751351 io-c +69814 4082eda8b4663b14516ce6960c052392c6a979e7 io-c +69815 7f83aff68c166cd84e32eec16f62de95b7be5177 io-c +69816 1aac7520437a6fd4a75749907e67f77f6b629916 legacy-trunk +69817 c05c30fc118be1009eefabbf4454278466b2a62a io-c +69818 6ce96ce4d9afe4156d610204183d2183d2bfd6d6 release26-maint +69819 5f595ac8aefc3962f9ec025f304e908db3b7128e py3k +69820 e0815fee24f6e380b2623ef651f1d475faa78e20 release30-maint +69821 67bcff293a21ad5feb5751c387a07857442a9dfe py3k +69822 37e4df9fdaa6d400057beefe02aa30bb3f280ea4 release30-maint +69827 adb1133d892ab6fc2f42c7c9f6c098fa47ea64cd io-c +69828 c6182cc7e6d70e0331c41115a2b01f3cedcb54cf io-c +69829 702c3b9803e8c753d71fb72c70c8049219e00c4b io-c +69830 6fd890b20d63fc7ad8b0d5c903715efc34c5970a io-c +69831 dcc161e1af7ece27ad533cc4cef62f94e96d240f py3k +69832 41e38a61bc4b49167f2d59bf1a567ead8dfb6004 py3k +69833 a1faff74ff89e2daac048890154f18dbbaaec989 py3k +69834 7149b7eef153d7b37e2e45ad5301102e52e0f216 py3k +69835 74a2ff40518ae6653b1886cb73a4719aadb61779 py3k +69836 ee7029710c050db226d3bf84420a9c39c96934d6 py3k +69837 3e27d606d625f8e917fc5e1f5659b0bdece7ee7b legacy-trunk +69838 326f6facc1aa4f436b73d8cc0d31bc6880da2180 legacy-trunk +69839 a5ba9c17f8b9d50e09c0f14ad0660adfc4a5f6e1 io-c +69840 9e6fba5acce46bf84711bfdfaefbb77a1a5d4e43 legacy-trunk +69841 c272e315dd87206a9d976c104bf161d76c17f22c io-c +69842 95576bf3ad735896938499a5f6aa06b2c6060407 io-c +69843 376d808e1c05faaad9e5002ee5af029e43fba95c io-c +69844 51445b040986176264d50ffb6782ff7ae343040a io-c +69845 3f023fb83f2b9b9a1b4a8489e5d6ce0704e1e420 io-c +69846 af9b6c43804e1e9c49332ca6634363d08ae2f2ac legacy-trunk +69847 d06a3ebf306fa945e43f59df063705a3f4c3dccd py3k +69848 6ba5588ef64587f22a4e41c8e63d8c190b0486ad io-c +69849 ec490932d91cb52db12ce3633d73471898732126 py3k +69850 c2952c2b5a4ae68e733279c6afb84fc42cae9794 io-c +69851 aa29d096710589e676ea821e10cabf2d6d797609 py3k +69852 9988e9f00408f6592279ae6d674218831c428bd9 io-c +69853 8a825a17cb273582bfff94c05cdc5ee93887de60 py3k +69854 7ae8a8728421fe5f32480c11e84ccec8b6051879 io-c +69855 96abb439e2d07d0cbaa87ad7b5b6b15acc037c67 legacy-trunk +69856 6a5bee1893ad836c1120408a29ea5e741b02dd91 py3k +69857 918264ff02e1c09eac49447c34c75efa1df62b4c py3k +69858 5be24a56f0918addc6fe5222285829fef7289332 py3k +69859 76571986a2f4208266376bf0eb24a291cafec045 release30-maint +69860 8e7a4a774138426dd7d04d32d87a151badf286a5 io-c +69861 ecd8ef4e79e6b71b11bcb234a3a366ece7cad60b legacy-trunk +69862 c3304a4b64ea1a7e558c22ed31dcefe5c5ec9379 release26-maint +69863 8460e5ee06c3915de782581231afe76534581c7b py3k +69864 3ca1fb622f5a4b8a757f089153c098d194a64643 release30-maint +69865 002daca66f9f6bdfb9d1972fca7ed98c4bc7cd6f io-c +69866 ed5cd904f2007c5cee5699366435b15b52135ef1 io-c +69868 5ffd93280a71b407ac8549e17377744f1d2d41cc io-c +69869 a0eda1e228b8f8f354a40dff777822519774a5ca py3k +69870 0ab8bef671a3df598a0089584ceca1148ce788ab legacy-trunk +69871 c201c8cf3cb40c266b8cd664b4715ba4f8f0bbac legacy-trunk +69872 5b5dccc50e12c464b1904c294436ed9d0440e81f io-c +69873 49914b3e3aa8100f5105a75600421fc4d1cba6e6 io-c +69874 b3515ed2813504160c6a733d05861085148a7c96 legacy-trunk +69875 d36296673974a022da796177372986a22464d186 release26-maint +69876 e89c7ed1cfff480fe5d434121d9d53dec7d66047 py3k +69877 aa3021699c59ab80a9a9dcd05726590c8bc067bd release30-maint +69878 cd2ee8190957c94700f9357fe8aeb9e65aba161d legacy-trunk +69879 339f5c1ef0edf4332aad9db11beff635843ff781 release26-maint +69880 0a5c26d0be540dcc02d396e874518cc3ba118587 py3k +69881 620e742cdf68a745b0601875beeaf7f6eb120291 legacy-trunk +69882 0effda54819e2c467bd9b26bcd690aa1dbd5ece8 release26-maint +69883 e5e5ca0491b840825a02fd6efcd308036b9db360 py3k +69884 13a1cbf11a21ead17ff24ea8b1e6a349009f59aa release30-maint +69885 d22d6e9f791c2cf736687c509a38b10791b5f576 io-c +69888 ce0a95af6b1d41bbc2907d3a48d179105f71bc15 io-c +69889 272ac654fd1af20074e8c7e8074e809c685e45af legacy-trunk +69890 fb7be45a94418ef61ca70368dc5d0977a2d44cec py3k +69891 3df8be0363243e0a8eeee8fd9a01b30d54c69b98 io-c +69892 9f6cb0437be82343efcbf98685c4a7a5f3389272 io-c +69893 44496cd0bc7803e48518c356c99aa1e78d55d635 io-c +69894 db14eca0163506dcfafab31bda875204dbc09b6c py3k +69895 b61f33af374bca72b8b4feef0c51181e5d5bdf6b py3k +69896 8a4dc0088e8626b56cdf9fd75da023a6efc8416c legacy-trunk +69897 3219b34a3320612894faa4c9f295c16772678651 py3k +69898 a366688a8f0d3c9e2de4716b0080f322471b726d release26-maint +69899 c8d06dfd4c39f5c96e0da7899168909be623895c release30-maint +69900 5bdb9c642cccd162e8f3971de42f87ba6fec1646 release26-maint +69901 3e7733cf279e34da5fac930b4a8c001e2a434edd legacy-trunk +69902 2bf1337c3a605dca040f916ee3f43e65872e2e14 legacy-trunk +69903 1f1e22ef55609ae15879976588665f7d28018b10 release26-maint +69904 5c859aea46b9c7dca55d41ca14ee001757a58719 py3k +69905 0a598dbed679266f63f196d930bb991f30b166f9 legacy-trunk +69906 0174b93669cd4889e577c1c0af8b923460dcb098 release26-maint +69907 16cca30cf3eb83b1e2605f3294d16f2e7726038d legacy-trunk +69908 a0fecbe73616f6283e3de0f69992bb78c3cb43c6 legacy-trunk +69909 0504087a27236b378502090257c663a6d022b786 py3k +69910 c1f026e0875e049b08c275de955df666f67a8ecb release30-maint +69911 9fe53156543cf52f82b16fd379a2707594f5f373 io-c +69912 f9ead2e1a03cfd8c23c88eac4cc5e413bc586403 release26-maint +69913 bc3b073ad146d59159cd47734f641b68f6236957 io-c +69914 a52e145455614e7fcb67318189689fa93ee4cebf io-c +69915 66ce80e8e53798e8199660263c9c6c48e0f78dce io-c +69916 ef3a6c168374c48dc013a8c410dcffe48d63fa12 io-c +69917 83664e7f708ab397cddbb96d75feae1e06e9936f release30-maint +69918 94941b059800e346b1571bcc149a48ecedd131dd release26-maint +69924 fa747660d4d4168cd5b23bbc7098b053edb5b18e legacy-trunk +69926 04f3cf32aa77f8360906e12156db7f4f0d6d8183 py3k +69927 5c74e40d1926e5a6e84837908339e93a8340c681 legacy-trunk +69929 b1e60b47e16017a6a1fc2b0f786d13709691feb6 release30-maint +69930 5617471037bc7af5ccba6b698b6f70470becc704 py3k +69931 83fa27483fdc9391bc40c7d3c6f5e6479df241fa release30-maint +69932 5952d41189ad1af11113fc8800ae762d925623bc release26-maint +69933 90412dfdaba306a2494dba044c63e1bf74feda84 release30-maint +69934 12c69ef43dde832ac0d7f22bc31368878880badb py3k +69935 c0b9bc25cebbe3997ab3b8545c59e001129e26fa py3k +69936 bc70ec97e39faf57669fd01cf7c93c71b758eaf7 release30-maint +69937 9c25a0790022c06175ba6f5bdb807eca46be29d6 legacy-trunk +69938 faf968212f31d6a07abff7fd74d3e700cc317981 release26-maint +69939 574fef53a7e3de49e291895771258d17108ecade release30-maint +69946 45b44bd32f4165d169c31be9626bc69ba8c4f473 legacy-trunk +69947 a8bb82f5fd647ad70c3b028650f9b6c88c88e0ad legacy-trunk +69948 2f6b34f67ef0201659efdad57f791bf13b300280 py3k +69949 2e25771d7202161f2540f931bf058108fe856521 py3k +69951 60d09a71655680bd76c2151c8aa1c380c650a326 py3k +69952 1d24739511c9c929fefbcf026a9bab88cc657a82 legacy-trunk +69953 b8c4a3793d0f512a7f0d9a28cc012fecbaedb919 legacy-trunk +69954 a7fdf69cae135c0ac49cfbca107007dfc0ad185b release26-maint +69955 46cbe67b9661f7119dc689b0b4a31b27d309b1ae legacy-trunk +69956 dc315df7e808632795c8182edc49b289d4803314 release26-maint +69957 65762a06b88f3cf3031358ab1e03d6d13cc78b62 py3k +69958 337bd509455a1971870375a595e50321645abf6d release30-maint +69959 177ba122bb1b02c3a332b315d9b59be55561d79e legacy-trunk +69960 29b12a89b2a06c805b157255808083978f149007 release26-maint +69961 643d8d4fc8ebcc69155d3416357aadca9c053388 py3k +69962 08a296a88c3e0b34b161e9b95086a181795aeffb io-c +69963 8e0ceb9f5c2a73f34fd259637a2f87eb82c9264a io-c +69974 421a0369f2394a4a4763ac25b524f7ba0ebe865c legacy-trunk +69975 ac26765fb1bb8b0461ef5b58a8e440dc8d52121a py3k +69976 702f1899161e1941d35045a0c7f41ad3befdd07d legacy-trunk +69977 692c8a9880264b2e6fcf1022a7edae2220e04704 py3k +69978 02eecdb17358079ce0736f2eede734c2dafeaa5a release30-maint +69979 f7b03010162c4117d7d7ccaeeff4e5d31fc4fca0 release26-maint +69981 0ee3b9a7f2097e9da7767f9d75e4bee377aa7446 legacy-trunk +69982 d78b28a3524c5aae6aa5be3d5be8a8813390b174 py3k +69983 c07d7fd2746990e02779bdbe486e4c0996568fe7 legacy-trunk +69984 8873854bb5f9072e5b73b63787448d40ce6729da release26-maint +69985 c80048215de5800b06d34fbff236a9d9d0900079 release30-maint +69986 052fb51f8dcf3b792589f9d80c6756b9c61d705d py3k +69987 3ecd484756b023b3fa80247840c7b385330a64ab legacy-trunk +69989 e872f587f1901a7428e9eaeb9bf92557d8e6e33e py3k +69990 e99b56da432af6d1d56b3217784e90b7d2a8afae py3k +69991 323a5a8d10fc86002b9311f5ae78e3891e0e34a5 release30-maint +69994 698175fe8b3de990d3b6b72ccc5ea024926664cd legacy-trunk +69995 3f73b7af131c15d297bd2631d046e57293633fca py3k +69996 3722ce458318947a9f25bd8899beb206cdde656b py3k +69997 a1b3d0216820a9d62818705046c782a81bfbf688 release30-maint +69998 632666691d3d48083053c6d8c07a9151e482eb91 legacy-trunk +69999 58bbeb33f583331c6608affa632a731d1a9bf088 legacy-trunk +70000 712aa5bb7b48d5d7cec3a0c9407fe27ed3feffec legacy-trunk +70001 86228947b65d1f906f88d233f3f0b58da2f7e84a py3k +70002 149dc4bc8eca03123087601ce0bfca858dd9521e legacy-trunk +70003 8b4da1f493845ca078231022a91cbc91f5ca9c90 legacy-trunk +70004 f170729e30382d9c0259efb7117e51bfc6ef737f release26-maint +70005 f2e6a5ea10fe0a0968abb08825897b4752cdc5e3 py3k +70006 3695cafef58d9344ea29ca5697daee0c09075da1 release30-maint +70007 b7b23887fbde68150e754d87a6264c954e6ca20e legacy-trunk +70008 ec1f8eb4da594f5ed940794b48167ed36052cfa6 release26-maint +70009 e9d03f6b0d59056fa9546a1e2755a212257ffaca py3k +70010 228f89ae55b100827bc09059bfd36660654124ea release30-maint +70011 2b60b46513d263f9205fbf4cf988567d7e8e82c1 legacy-trunk +70015 c4f27e546cf5175e52dc3657bfdc5ff2f713920c py3k +70016 105a5317e68e129099ff9e941e20de2ff392f6de legacy-trunk +70017 8b68968879c70df10a02e02e3ba6693ccd3386d2 legacy-trunk +70018 1673d957311a0bb4a933d6ba4acfbb1b990edfa2 release26-maint +70019 4fd80e66b10722f3d40f377453a2f164d761ac4e py3k +70020 db1dbf057147a4a996499c7b1b073f91831ff9d8 release30-maint +70022 866f747c196f1374d9dff055ed8dfdb31e293d1a legacy-trunk +70023 8003a2fb625ba10387dc911e59a0f63a29767fcc legacy-trunk +70024 5dac081e730d0805ca548d95d808849f63c5d080 py3k +70025 eb03e5ae7109a6974cc218add7fb57a2a2d7fa88 legacy-trunk +70026 839983595338292a340d46036b4589ee0f79deec legacy-trunk +70027 1f84706e816c2e70ecf6026b86d754b16d829327 py3k +70028 1f0de494bc131076d454e31e3cf47eb263b72228 py3k +70029 9b62cb6538922765a824c9cb45c719afe597bf45 py3k +70030 a5f0371850ff54f45f2a279e6205d3db5e25cf18 release30-maint +70033 b306c72ffd7010ed1a6c767f9f4d1e8b44c74e00 io-c +70035 d1556b8195f28ad457236e999305b80237f7d20d io-c +70037 e0942c6753728b74bf6ccaa9f1fed0e90c321951 py3k +70038 b71df44d5bbf0a6abca1208cbcabfceb38801a05 io-c +70041 fc83ca1ac1108813e1afec4db02dc23129c6f983 io-c +70042 35c1d52607c84f9f721669e6311fa4c88e6c8f12 io-c +70043 d24533fb3f47a19fd04dcab36f6b219f02e0073a io-c +70044 f75fb9f471d09b25cddb0c585d65e2ef3ef0ca76 io-c +70045 3147b3b78dcf7eb305626849fd3b2559f58559e8 io-c +70046 a265f59961f66a3debc433d14e5329ab1053bed9 io-c +70047 c84dcac7e69a1850e85fdc6f7dfc0139d760bc00 io-c +70048 f339da83858d99104444c007ac9cf37fe7cd11df io-c +70049 789ff8bd190a5b8015d5172259b86e0a113d9bde legacy-trunk +70050 be5a9c84f6bcca7ec49ad6d3280ea251d05198c2 release26-maint +70051 206038121adec9755357b350fbf8023ab3cc8c97 py3k +70052 9de5d62ad40228ef62e27ecae8ae74a42d431c6e legacy-trunk +70053 ba6c306cf2cee771fcc1429541ecfb507646c8ac py3k +70054 90037f97d8707bcfddf8083ee512c50eced06a85 release26-maint +70055 759dbace51d2ed1bedb64054afe2cba6a1ccc024 release30-maint +70056 29d652e3f2d32ab9cf83bbe44e6abfb99f20286a legacy-trunk +70057 0e6faf27b531f273e17226c78e84036babb529f8 py3k +70058 c64d4a8ae2b2ecb809ac6d85f4e5c386a17ea312 release30-maint +70059 2a0f84ac49f0903c31dd559aae045f843c62ef3a release26-maint +70061 672425be388a6921dc8a76abf83d4192ca1f65d8 legacy-trunk +70062 4e1556012584583a18689bc5b78706b2667c3fce legacy-trunk +70063 79e66c11dc80ca2a0ad80b05ea75493e1926dde2 py3k +70064 ae22631a787c49b9f49e152d89eafbf5aee08e71 release30-maint +70065 676567e2a71192126f0342dca5fca7bb87060666 release26-maint +70067 d1a314e0eff720035fbd45220cdf9a8e7da357aa io-c +70068 6011c092e21346ee7b35b664fc5337b61976f851 io-c +70069 7faca6958dac02dab90383cc70d4769af77d4360 io-c +70070 0ad3de216e83e43ffea5fa7e630fc6cc72465ac8 io-c +70071 ef8fe90886968b1eb468cb91ebae103f773fa17f legacy-trunk +70072 75ff669bf996dea9f0e3bcb86a54436dbcf3f2df py3k +70073 b421441ee679c5e8c3b1274e5f1211c68c651456 release30-maint +70074 e4287d8c97417ae5260bcc925baaa4703bd7a55b io-c +70075 9f30036124f678a036e0a01c038a7d18dbd7defc io-c +70076 e1ce666d7405a637e4085a1174db12f77160cf1c py3k +70077 fc2a6f6d36aca51e5c2625ace529386f41e9988c py3k +70078 d70773c9adad2d1a790a2b44304d155cb5640770 legacy-trunk +70079 5df66dfa6f64ac66b23a97b2d12fce9ef7b1ab17 py3k +70080 2a458106afbfe35b96f380a1302d00de0051a072 release26-maint +70081 2c5903a02b363a38e3c80498e6b98c2029ba1579 legacy-trunk +70082 612fc6ee68f745185999ef7ac037343e8ade5e2d release26-maint +70083 b7632df1121fb7235ffb33d4e0a186d1a6547c6b release30-maint +70084 6fd231917ef7c231e38b4b34ae64fc4e4be3edda py3k +70086 a6c24aace8cbd74132e6dc5358ef65728f2fbec6 legacy-trunk +70087 2ceb2a76880d5ff3140b95fc1120ca6986577486 release26-maint +70088 adc9bb44ec47101df198daac7e0b32d144abce97 legacy-trunk +70089 9919c1f4795ef8519cb74ba98e57d63a0218f717 py3k +70090 8f5d8f27c6fcdc9db5050927777016cf5d4ea12c legacy-trunk +70091 dcd3bc2e23773c00d8dcdb47fc65b98833e5bac5 py3k +70092 60fcfd137a7292cf2febdb6665fa5d437e5c382f release26-maint +70093 08a4a3f9c50e9c0155d986b4f5f0d7f9c4a34b87 release30-maint +70094 0b97ffb811a01212a7548440be9c32594841b095 legacy-trunk +70095 19c1a1ceb129559ec364a4f58688920d9efa9f38 release26-maint +70096 c2a8a52b811dc8c5d988b7ac676d91bbc42251c4 py3k +70097 de113b6d26d327401c38782cccc8a53f8ec8f41b release30-maint +70098 d5f134a3a816c70931f156c27079b70a32fab96f py3k +70099 8e03bfe7ef331a9a394428c7f3b8428303a3075b py3k +70101 c910f6e3bb2871981cba38b42590294671d80c23 py3k +70102 ca87c4707bfddd87390ea180ec3bd20760bc9aa5 py3k +70104 85aca43dabc493032cc942455624cd4b8b7f2a39 py3k +70105 d513ce291fbd22fa86bb1a8b1e869135e5278bc8 py3k +70106 db29a3fbcba0fdffd95aea984facb024961ee62c py3k +70107 87115c727102b420562cdbe8a874adc04c6155bf legacy-trunk +70108 2d69d0d3a9ca5e3f06491586504bb1807298211a release26-maint +70109 9c56eb17f334fcf958f46f0ad6c496e13e33e8a1 py3k +70110 4da5f0ded3622e12e16b9ab8fa64ac9800cc69c5 release30-maint +70111 116d90ef3164949499425bb8c35607145e2f72a5 py3k +70112 374a9ae5dd0f42a4c446ccf5d299b88832bf6936 io-c +70113 8fe2988cf55092c832a80debbfceed80c9f38a65 py3k +70114 7b1741d6809e8963b5a8888a728ca1bfef699c34 py3k +70115 0458730eb038b97ff628cc65dc641a5c726b0504 io-c +70116 17ea18dfcaa55d2fa6ce45800976ab133311d097 py3k +70117 d342a725b2d5898be35b75548efc9101b7c5efff py3k +70118 03832356c0967448e1898162898268e1095f8753 py3k +70119 6c08bfe78fffeb2b6547af48592a3c03e8cacaf0 legacy-trunk +70120 4a4da968de2a98c8756f9ea2a949fd35f033f7ff legacy-trunk +70121 0c635574b139e0ccda283293892907f51afb8164 legacy-trunk +70122 6b1b2e7a06e97d59f4ce3eb6ee26d4faa2885fd8 legacy-trunk +70123 b373b9962c35ac2d40451b3884ac2a2a7c3a4a97 legacy-trunk +70124 4d078d522f259752d7a61727ac8ccc80b9d872dd py3k +70125 fd08e9449a43883d4d4d0c650073bc66babd458f py3k +70126 8f7be4877a606f00a95a5fd539159f31c2397d36 legacy-trunk +70127 e8af4e24f08f8d4d6f5fcafa227cbe77eb53d558 py3k +70128 2596dddbd057b7df02f5f0739285e02674881110 py3k +70129 5ad88b919318a5453538f7bf9bb7e2df8623da59 py3k +70130 0a609ba54f5c65945c4f99f864e7bfe911193a1c py3k +70131 982502826f7898766e29dde605ce341b39105b95 legacy-trunk +70132 ae71df9394dac8bcd0215e0604e660a7fa54ed36 legacy-trunk +70133 11772586bc4397ed685ef4ceaeabce8e6f2218d0 io-c +70134 738fad38a4bfe5b62cac81879139c0af89a399b6 py3k +70135 5b4e8f4e9cbd62e98d5cdd4dcfd6f8194d571f1e io-c +70136 61d20e919a9e66f953352b4af2eb6f22e6c255c2 legacy-trunk +70137 80233df24f8cad5ab2eebed424a21de59464aae2 legacy-trunk +70138 920a41d581b59eef34376d0ba75a7edbdbf58f5b py3k +70139 e673f9392402d75547767be42bb6b754e597d4b6 py3k +70140 c96e1ab4dab3aa05387c5b99877efc79db853932 io-c +70141 38aa6f36ce4fc101c1c09c786bfcee2038640e36 py3k +70142 d77172eb6fe789d33b915c3ea2dfde38810a9b8e py3k +70143 3b885b92af6cdcd41824f96592a0579d89fbf398 py3k +70144 77efbb3c3110c029774f7fd7cecef3cf98d7a27d py3k +70145 01f83bb4a1c4d2bf976ce1264e5f8e3c55d56da5 legacy-trunk +70146 f632a4e6ee3142cfdab720ab58e362caf43d4c5d release30-maint +70147 7111845c2f5e3a22e5190d284f608fbce5d523b7 release26-maint +70148 7d69070a3d783deb0f12401e0e58cb602eaf8e1f py3k +70149 778599ce81a14c68a6c7dbd95bb0e78f6a38c789 legacy-trunk +70150 8a3dadccd20753aaa4857def2363383f22ddf910 py3k +70151 71dae22e181d983e294cacf8b28c79bb60db9043 py3k +70152 3049ac17e256bb30b79f1134a37b657e30d3b78b py3k +70153 58db4deb7ab16d77da09b2054425b1eeb841dda9 legacy-trunk +70154 ebe10810ebedecbffec7968ceef91edfc9668531 py3k +70155 0159ac2bc787c499835dd78430d3762600772bc5 py3k +70156 e37bb30255f3117360399cc40babca7f72a7e3ec py3k +70157 4563e6120544c0781f8ef49b6f0148c25b568523 py3k +70158 194fd401922e607db91178c769636970b9d26fa3 release30-maint +70159 f8670a7da2296b00be9a5d7a7968591212cda8be py3k +70160 768aeea2bc0fdba373d051e3f49693e20cfbdcf1 py3k +70161 55f3b881ced26371c695fe0c55976be2db03bed8 py3k +70162 0a533dc1deb2277249e1acb4bc4134aa7f5b8484 py3k +70163 76a579b6bade95d1ea194d4f58a828207ffbde95 py3k +70166 0c028685b44c3bb4a10b1612ec0b0890605fbc9c legacy-trunk +70167 240231ac79cfd0171d0875826f06c272f7c1c0dd legacy-trunk +70168 eb2c35dd225ab3443982d9267ec806b94857eba0 release26-maint +70169 fa9cc4d4185f7fd2c9d1249df07f3debaa35c1bd legacy-trunk +70170 ce2b759dc7f35f16fb6d24e8347a1a9afbbc276a release26-maint +70171 4d0d615d3784c2d1847c435d422178c73a04c96a legacy-trunk +70172 2629c47fa6bce4f487cc387807afaaa128b0b1d9 legacy-trunk +70173 c8a8ec87ff1f2f3e32722c100e43573da43ba731 release26-maint +70174 41e4072866105d794990fb853963e44511918c27 py3k +70175 30eeadc46520fbe466af64ff37c15623b3bf5cb1 release30-maint +70176 39e9a20b7d7f5054ebed9cb2449a61f5abf6deee legacy-trunk +70177 dc3d24824b6027a7cf3757a2f6b899f2e4b4bf33 release26-maint +70178 276244ffcaeee1cfa462aa50fefddff5f66be88f legacy-trunk +70179 5f245c700bbb150a5aab52ca4bfdbe16b5cd6ace py3k +70180 4b5431fb2e92021db8d42864e2109b0629a31794 release30-maint +70181 fbc7759763b2c8c0bd6737a1d34ca1b10970ec1e py3k +70182 eeaa87fc3bfd0cb75c77e9fe3261504fb126f900 release30-maint +70183 75792928fce89bca1e8c501dca77370a4ef9a1f1 legacy-trunk +70184 33e9a145fd38357ed42a52ebf50cb2e99a63d860 py3k +70185 99b68d7d7a892f299a20641bdc7347b028738498 py3k +70186 fddee5456013ac01e5ff59fb6ef5ef9091eae998 py3k +70187 1fc1c41d136f4bcd896fa0cac5b233775eec6d5d py3k +70188 f48af77ee84e20828bd53b66a2ab0f57cf4d1ff3 legacy-trunk +70189 79ea0667604b3722f2d2cd16a0f09961ff7802d8 legacy-trunk +70190 cdd3f60d9974f44769cf79dc5974a98bad316dac release26-maint +70191 275bbee146ab05bf487f09b4acb3419c6af33791 py3k +70192 a8b9aa028899be9590ba0b0f837e214fbc4a9061 release30-maint +70193 9cd355a798456f80837bd84b4332884fe3fd5f82 legacy-trunk +70194 d01dc847b58621c2e545d9cc7443219f98d16863 release26-maint +70195 7b279678a6a1db44a078a83b445f9df317204754 py3k +70196 26984450c7e9a8189a8bef0710e97954d00c09c4 release30-maint +70197 afefb77164ad3bf2dc174e07f6d0a9e194b70782 legacy-trunk +70198 775829cf00d2abec4b4cdb561952314720dc4ca8 py3k +70199 8dbd1b96fa6b690fd7dc3915d10be2b5f79175d9 release25-maint +70200 c7723626e4e10680837a63ce24c080df2e3f44c5 release25-maint +70201 1f9de53983c15513180e13467572e465a1e3bd68 py3k +70202 bebc4eef9e893c40192c8aea2edc8966a179d1d5 py3k +70203 9fa7949641d3009bb61985abecfe92b3ab47f067 py3k +70204 4a3b44c21b4f3da7c82d5b5321fa56a3186fa8df release30-maint +70205 3b9f5fa8bccd91d2d3d21a4c7e163bc03ca58049 py3k +70207 cabb0ddcb88e4a7e310efa46e47dd1223532ad67 release30-maint +70208 0f6f787f103b28b4323586d17344614362831136 py3k +70209 aef5cfe73358d48ffdad922b31b00c0af87286e7 py3k +70210 f5b81be5915946e3f9224d6d9bb6abac95edf7ae py3k +70211 90a66915ca919700a24995a660c6609ef76f2fec py3k +70212 4650ecdfcfb64237d29c229243832d4be8129dd3 legacy-trunk +70213 2b2b51f304079977fa1895e7230c8b7dc0b02136 release26-maint +70214 fcc6211e0d7105e3f7bb93ca7a16f1977ab415a8 py3k +70215 6f0d2113dd222600ef90fe4458edc2fdf8c01f95 release30-maint +70216 a99fa76713fc6689cec0654569232cd5c299db3f py3k +70217 bbbc9746c70dc406b9e08ee3a70552f8ccd1d8c2 release30-maint +70218 433e116c335dbb2ecc86305059a968c8926204d1 legacy-trunk +70219 114850f73e3a5ebe715e25ff2e1a157a9565db5f legacy-trunk +70220 4e7449348c1a4d5de1136d84bd18b5c527ee929d release26-maint +70221 03c80e0742c34408b01f5195c34e9267978b4be3 py3k +70222 1066776e28203624cc192d13729979b8be265ca4 release30-maint +70223 c79ec63e6c08ed3e946a342dbe126948d5030364 legacy-trunk +70224 b9cd693926667d1864d9e2e77bcbd10397ed6c2a release26-maint +70225 6dbb2c1c09009d66220ee6d203920ac630d7db0e py3k +70226 f5145abd4ba26b10a98cd6213868f4d3ee3fa526 release30-maint +70227 e9e46ade61c7868497d3ff287f504cae376f01d2 py3k +70228 a5e32c06e14b1287c8ec69246a597d5a6faafacf release30-maint +70229 a89fdbb23a4a7856c7c6d223f88bff0af9a1a3d0 py3k +70230 bc1ce368986e45b1faf96f93995df46bcd75e7b8 py3k +70231 36d7faa5ff9614e627df0bdd5c67c8dbf1758045 py3k +70232 aba4404f5d9ff519eed9bf30a0e716f1610952b5 py3k +70233 bfc2fa4c84449b61d9db1a37fb6b7743ba587304 py3k +70234 f7b06a9659b85305a81ab3058bddfbedd54d8fc9 py3k +70235 437044e62d3d3bd494652430a50f6997ac089a1c legacy-trunk +70244 9f2f86df5b2648ca69a1b759afd78f9c9d628862 legacy-trunk +70245 56983cfdf5d4e2e8d98dae2a08ca15dc36873dd6 py3k +70246 dce28c6b9e85a28d8da2c9e0a8d6a9700b091039 py3k +70247 2033d45a5b99681e140dfa3c414a4941042aca8e py3k +70248 895f68ecb055c3f15665600a531945c07c54cefd py3k +70249 836e4dadf6d2cc65b8d0f456e942b11513492fb1 py3k +70251 1045fd63fa7335ff915c56db8545a6c8e43eb21d py3k +70252 cf093a7630533cfbda478cfee752b1ee5361e26b py3k +70253 65371df41aca6241ee8813054b0b7e6c459871fc py3k +70254 5540749a29bb87306ac5f93f88c964aae321502e py3k +70255 70decb580dd91f0ca73df12a6e04696ec4a4265f py3k +70256 c06f02a5e9627b19085f663e5189884f50575246 py3k +70259 bc02de27874903abd930a4416cef006e2c39b11a py3k +70260 b9bd2e3f79ba8a6585299662a547d056feea6b0f py3k +70261 598253db1f5d112c3823e84e0bdd325baa5abd62 legacy-trunk +70262 4d7f63ac9d2465888aedec4609e66907fa5e21b2 py3k +70263 b1ecff5e27040422c36a6998225704692e91badf release26-maint +70264 503976ce3373e589bc10bca038260e7c491d1421 release30-maint +70265 f467d47f6de52adf63fd4d1d215ab2aabf6ec64f py3k +70266 7fcb785ec0f527d48b20dcb18da5ea91d2cef50f release30-maint +70267 97ac83e4527061b91ca0c7dfda7656048d372a30 legacy-trunk +70268 5457e46d9dfd4629a681557d069c3aaa3671d185 release26-maint +70269 c15423f9fac350f3928a169b8f005e7350c41920 py3k +70270 3e676bf283103ee016f7c981837e69b6dae42357 release30-maint +70271 63456d2bf5a08917c911c3961a46156e729b610d legacy-trunk +70272 5c91a6e18564f04f334d6b16e70daf7f39626328 release26-maint +70273 bcfb7d67916159bcfa45752a44f6ebca3c107f15 legacy-trunk +70274 7f7074928c68142d80526745b9a55f7b5790ed83 py3k +70275 1a8391cc4b44cd66ea984255a1b0ba1a531d93a8 legacy-trunk +70280 79fe07e13388ec7a848ca22e43f55e5279e6b3ad py3k +70281 42553e35f8e4b49665b9b04e1ee8684ee9073e0e legacy-trunk +70282 3b43577e1971c8c1380af0cb2a17b39adf9c7a42 py3k +70283 7cbd44c203cf95caa7604bffc545c2eeb9b7107a py3k +70284 8ed3cbac16bf5653fa42c3228b79aa9c4d7da9fc release30-maint +70285 dab45971c568841d23850876af41f410e8820c0e release30-maint +70286 f804b8a25115e7b21ea31403f3fa03690af7a43b legacy-trunk +70287 ae3006c7d5b0199c56f80e64e46e71ab7d5dcbfd py3k +70288 89d8af259353274e7701019bda95106cf1961038 release30-maint +70289 563b4f883ed88b1662787cb9105d0c4237aedc9d release26-maint +70290 54cfacac6d0a155d18ed8fc63ae847c43d77413f legacy-trunk +70291 03080fa08dfe7ccdf15bce15b4c70bdc146dfc30 py3k +70292 5bc9f6cc561e0417a433849f450aea3d878579c3 legacy-trunk +70293 4fddcd4e8eb519863ca0a64a334d35112b2eb567 legacy-trunk +70294 afd7118c8ccfb40ca56e7d3f115b0b4cadbc461e py3k +70295 dcbffe918a6f8ec6ed7fa158ad9cbc24ab5ae0f2 legacy-trunk +70296 ab7a7215e4636950f0acd8999a3c75953fb181fe legacy-trunk +70297 c5e23b9cedcc997403768043f4db6f5490a41756 py3k +70298 b0911b5a002ed841b6cf25cd804e9e842a058c0e legacy-trunk +70299 21850d6d5b4d40a96ec2888604acd39981b8fee8 py3k +70300 0382901c6ebd2794611736afecf8a7a138cf591d legacy-trunk +70301 3c04d34c049717ce8bcde9c3b67d93555dc43439 release26-maint +70302 4322e6dd2a6c9ed6482e199c4ac33680e3d83706 release26-maint +70303 0c7dac7e2fb08112c370175d1f7930a5e282dd62 py3k +70305 a60facc9f7cf555b254c0cf7582fc5089d30573f legacy-trunk +70306 f51a28b10426514510e33e5bdfc502ab0bef369d py3k +70307 cbcb2141aee59e84b97df9fa8edaf98351c703d1 py3k +70308 3ecf6c3cc81e0eb7fdf45f456597a3dfc3d3b37e legacy-trunk +70309 8b0b9ee58f67b81aabedcae312df6589169885a2 release26-maint +70310 48fe623171a40d53c6f261645d151f7f547935e2 py3k +70311 875881ff69a4d548acc96cce71ddab3c850f2fe8 release30-maint +70315 beb788291c7a16a6f379ed8ea2000c08ee862eb5 legacy-trunk +70316 5dfc45bda96d0950ce24d9e6ca9862155112aedd py3k +70317 3400cb10d9cf7d461eef3d1a8af08fabf67e7de3 py3k +70318 1eb57bddfb38be9d6998fee0c995e4720dbf983c release30-maint +70319 1d8e4bcecf2aaa9413a630ad571093a0bb384eb4 legacy-trunk +70320 bf67e5a893f8ec0b546da2711510a8603255fa6c release26-maint +70331 6b024ff5b58f6b2d2f470e1bdb2f755ba0a4cfd7 py3k +70332 2e8e897a12447f1c2af43bfe46a92c007e18e6a9 py3k +70333 1a8bbc5fb3efc25ccbea784072914fa36aea8d2c py3k +70335 f188dd68620e6a4adb185ad71ae1a032a68ce298 py3k +70336 04a5b64385264e9638c3e3b443e9c0c8fb70a945 py3k +70342 0e88582aa3ce704a207d263238a7ee67c679f938 legacy-trunk +70343 e5e64a0c4aa2c31e537fd139f9efdafbaeaae8c8 py3k +70344 b363e29756ff25863c98971d9bbf5a0be962899e py3k +70346 480483c3d93e3138f71e07a5acea78b9df844e23 release26-maint +70347 22747e874f46b90506c6dbd63f7dc56def63131f release30-maint +70348 632aa568474c984f126f90c93de039ace4dd88a9 release26-maint +70349 8b128e05ec74559d82150a685dae7a58b1480851 py3k +70350 790cb98f8b4fbf05d882f534df2002c49ed6e629 release30-maint +70352 a599475b69c300801bb9a182e1f4cebdbdc8c817 py3k +70353 1f8d11cd46842019a92b4ee19429fa82ca68b1c8 release30-maint +70356 861cd46eeaee7f536a427639bdad207dfd852afc legacy-trunk +70357 a4c9b0b0a8e4bd747288ffa1666c8a7eca62afa6 py3k +70358 31659f937613cf663eafc07210a268b0465d83c3 release26-maint +70359 f27caacb742679e50dd90679ba7f77f69dc1f060 release30-maint +70364 3f18d609ac1bd87219defa48febbf8af1585d726 legacy-trunk +70365 c5feb058ffc4a61d597b8ee08f3599ba224114d7 release26-maint +70366 1c0a0f7b4f76f9d58d16745f24aeff6b092d3b54 py3k +70367 7377a4d95a44ca1380c375e4b9cfd47516cf51c5 release30-maint +70368 1f96d733a74390e6162c3d3dbcaa0bbf197320b5 legacy-trunk +70369 4e1a1576f1e5cf568c0a3062a948229d4e9a41c5 release26-maint +70370 c1dc87bd883c9e7eb976e02a6f82741f1951e7e9 py3k +70372 0b19ba318071b1de1d5a2aafbe74f6867263f222 py3k +70373 62f9dad628defc19324b2070b36d532dcd83f38e py3k +70375 69cd615b76fbd466d6774fdf6607f4a8cea3ec80 py3k +70376 e8fd79763bccceb8c2f67d67c17dfc5f20771f76 py3k +70377 70f5f9113ae11ec80dc33d889347cc9770a063c8 py3k +70378 beaf00c98b71e6313c6c5cd0311f4bde58e04638 legacy-trunk +70379 37d76b5a827ba3a25cb62735416435e634ea4351 release26-maint +70380 4e927faf30eaeec1a4bc2aab0d0648d3d5420f3f py3k +70381 ef7e47eb2b6975d5b5c2fab7c7c023695fc73b38 release30-maint +70385 442bdfe93b2921a9ca9ba51cb49be965c2c0a7aa legacy-trunk +70386 23a39697fd67e85841772dadb16c2eb2222f387f legacy-trunk +70387 1be09c5c68e98b4f7c8f89c8992e9e4a00540b64 legacy-trunk +70389 de7e4716d9cba97ebaa5627ee7cc4aa336b76827 legacy-trunk +70390 68551b2a5faa2803e43fc3cdcb19d6d26fd4edcb legacy-trunk +70392 2fe5baf89569581d85d23a0568bbb4ea6a56e14c legacy-trunk +70393 0d19e11683ffeb75e4ed95a394d08388cd29cf91 legacy-trunk +70395 4e94eab6c7a2d0ded10601fca66653388aba2c41 legacy-trunk +70397 12ebda8fb6b300af27a6b4e8e712cd73c8d2819e legacy-trunk +70398 0be1c1f127e040779cf3be48ae9d776cea7bde47 py3k +70400 6bf0f3ab0279ac1371e00d670d990ff7157bd08a legacy-trunk +70405 e4d9844aba2501a9b78ee444c14f00c6004829a8 legacy-trunk +70406 cba6093830781cb9abd1ec60ae2d383bfd3d4efa legacy-trunk +70418 ccedef28fe04202372e946569dbb1ab46c88bafa legacy-trunk +70424 a3193c041496decdfb6d92297b32750f884d0867 py3k +70430 6b738b6f7fc678b54127c8c0b2aeedacdd5b54bf legacy-trunk +70431 fd4c839280809acaa5d9b9f9ce42810e256be9a4 release26-maint +70432 39f4fa51acfb807b89e3442ec1ba988db3276787 py3k +70433 c357d79264f8cbf4f5d702b09ed93b4483aac997 release30-maint +70434 7c3fe1a4a2ce3488bedaf50a00e2563842b57d9f py3k +70435 157247eb793dbbe6756af03ab3b90756179fe2fa release30-maint +70438 171ed6ffc86c64c9696e7acf8091e93667900116 legacy-trunk +70439 5dee93a97558e181e7e28a6fba9cfaef28277fd0 legacy-trunk +70440 12e14e6f1f2db1ed75c5e3484fb1f62c980b2d32 py3k +70441 ad4a72b08d3e410e7e53bbd5eabffb15347cb918 release30-maint +70442 cac207373a34f74c6dd16e808e1fb02565628302 release26-maint +70443 d95e5add3ca4cce32908fb701fd8ddc0ca3c87c6 legacy-trunk +70444 2d94c8fed376f76b8fe96e287486f011088380bb legacy-trunk +70445 fcdffd85a8bd3ebe0ea8b9bc08140d5334de34e8 py3k +70446 207a4c27a916ad9d0a2b4a2428defaf6cbed8d9d release26-maint +70447 a527405a9c10610832492f6a9eb89c7382036012 release30-maint +70448 c340e3f49bf3649e77aca62bf6bfea021f201d10 legacy-trunk +70449 58b286e15ebce4cdf99cd402dc571088bc798527 release26-maint +70450 59380b390c406249a048649cb2c6f0b4e401b138 py3k +70451 6fe6401da51f9cacbaf066fb258af66a3b5448e8 release30-maint +70452 79642b5881e0a6b222d796d16042ef4b8d94492d py3k +70453 da4840b2ba0612f74c02e3d2526c4c7341a4c29e release30-maint +70454 c73dd25c01c12041070e1102bd730e979041c7bb legacy-trunk +70455 6ba5ee5a220943a30723776b062e6f7d62e69868 release26-maint +70456 7d8fd7955d1557407b14f46ef1245331f582f7c4 py3k +70457 3ee259469ba8280468d736779662a744ad8016ce legacy-trunk +70458 7b5360fa3e19f2906bf4ed035fc2a8b360dbad15 release26-maint +70459 bb5de24a343f69715b24f9941a80eed9e842e88c py3k +70460 9f4628b4655b0be982015d6fefdbc07d09a60b7b release30-maint +70461 ffe4b9a1035cd3689146a4910c3c2ca2c25e772f py3k +70462 370317fb9515561838de5d650d94777432f7335f release30-maint +70463 d2b7887f8c9aec101cb9fac176cbf6b7dd664c69 legacy-trunk +70464 92fefcddbfe840151a9de1a5292d80f506380a51 legacy-trunk +70465 fb80b281e05aa0aafeb4f0f8445ad7023f11da63 release26-maint +70466 7cfbbf2d294e512a37ca1751944f9deca3afa57f legacy-trunk +70468 e2c1cbda2a95725a112caa439b49680f1a538b8c legacy-trunk +70470 1f73e0984d559e7da7295dc30c27763bec88c1c4 legacy-trunk +70471 a11a676fe6c05aabe29542c00219bbbeeead90fc legacy-trunk +70472 ead3de48aadd796fcb5d3ff6b703395d3032c1e1 legacy-trunk +70473 8fd1721c32c475c34b196b2c02819cdc81d6d255 legacy-trunk +70474 1100a506edcf051069268fba738e0c682d2efd35 py3k +70475 290c7513e125375ae3968f8946eacbb1e2f25b1d legacy-trunk +70476 422e2e6763e9a17ef6a0c23863f49888f88c860c py3k +70477 4fdb10dbc73676c60bb8d2a0214131cf8ad54d56 legacy-trunk +70478 66469b65d548444cbf8c19e5e4cd426a636a495b py3k +70479 9b358eae532a621f5245568e2bc9cfbfa620317e legacy-trunk +70480 d1c0f55040bad524b16f61680a2e06a577e06aa0 py3k +70481 e7cf469d0e1283b72bfc3f7666f7a53502ca5940 release26-maint +70482 5a02f0cf3c381ed5ccd18a8dd8ced6b8c8f80b88 py3k +70483 3959d504b54c35388de8ef252a96f8e5d8aa0ca8 release30-maint +70485 787f25b127ee61d0a7a7f5ddfa9fee8ec1c0eee5 legacy-trunk +70486 73fdc07681e37f0b9498aa75093ebb2bd34becf3 release26-maint +70487 50577ae2c0c0c539331cd57e3d0a1acd20c55aeb release30-maint +70488 22737e95f6f755442a501965a3327a8c0707f7aa py3k +70489 6c0c15a2ed2d3fe948a466df1406880685c94357 legacy-trunk +70490 a470d0a0256e742f2c9f7a7529590127ddecffa0 release26-maint +70491 d92a6dec8bfed75219e65eee63c7f19e39804c0f py3k +70492 bc681e53f94e06add02da0f426a2863e6a9da54a release30-maint +70493 c5b7958f429206e095ee8c16038df9b797a8a68e release26-maint +70494 2a3af211f0e11fa74375f2491d6d9a70438e1172 py3k +70495 c7b2cc8358f6656e2c7eb5028c84445c3ab3291f py3k +70497 5cace75bcb056cc62726f01f4676bee41d751006 py3k +70498 5aa63ddd1513454a77f41461eee001487d2f8cf9 release30-maint +70499 b846d709cb7632701b0152d58c1a4b868ea14663 legacy-trunk +70500 02928121338d931e40215973adcd6368bebfe6e6 py3k +70501 5c5823667ddd5ceede9435f209981b951622f092 release30-maint +70502 b8934dd9267de03bd76f99186b8d75a1d6f63897 release26-maint +70503 2d6ff5cd26001246a18f5675bea60fe6e7f2e6ad py3k +70504 f2777ea954ca25bef1c2e914f8fb13bb9ad47c61 release30-maint +70506 5b1f02dc69a391905e70b03777b85b3f88585242 py3k +70507 3ab2e52d8d1969c143af00f16b1c0c2bc04dd616 py3k +70508 e41f5a89f5c06e99bf646f62767bea0016d46278 py3k +70509 c6688e9156b5917eed86553167fabd0d202be55d release30-maint +70510 18d65651235e489132d1b84862e5fd15175bab09 py3k +70518 fb21eaba94f689eed27c99cdaa91b93007a91997 legacy-trunk +70519 d1b0bd48ba156381b79f9f1e44cd386cd47baa80 release26-maint +70520 c87e58262d5bcb3ed235429e1372a0605135cf31 py3k +70521 efd17cb5823a98fea601691265d97a43c1414851 legacy-trunk +70522 752f2e3e47577fb0303ef00896f5847f1e22f8a4 release26-maint +70523 445d404270eaabf18bf630f9b10d32117516537d legacy-trunk +70524 856ed418768c19068aa71a2040009d12a8f3541d release26-maint +70525 095d874a30549fabfedfea2ed1269b45546fcd3f py3k +70526 435b8ba1a902344a51e4c0e38bd3365aec9badd5 release30-maint +70527 dd9fddb0720daf9b2cb95792bd7d7d6458d8317f release25-maint +70528 6cb843075e6911f2dcba86f1012e83106381fa50 release26-maint +70529 5f8c8c918f9b029b4e97c72ace6334422c2dbbf3 release30-maint +70530 ab389877f152f4c89be205b8d41fa7d254ddaa08 release25-maint +70531 1f72ac909408dc41420617e14d1e9e2a1717f697 legacy-trunk +70532 4426e492264f07ada516e57387070daff0e61c13 py3k +70533 119e3fc6cdf3581d895f3b8b25f463a5b8616b53 legacy-trunk +70534 b1627e7e678d7d9596d5cdb54a5a99d9a7a36312 py3k +70535 88974ca5003ff9dacf610baf9b43078f282cb56d py3k +70536 05ae9ccff5144c758505c08363f1046621491ac4 py3k +70537 87cb950591bee1b8acc4f2d6d26e8c8d15c55908 release30-maint +70538 687e751c288e6fa54f8cd033a87201ccdb75ed70 legacy-trunk +70539 13f887e5fa0d750255fefa6c51f5ab2f3a73b488 py3k +70542 a54ef18ab0d89dcd1f8734f54be4496bd1e2edfa legacy-trunk +70543 edd4302cceafeee8b3c0e1a123ac0cbd14fc7300 release26-maint +70544 a1ddb4de85a53681958b70722c2d3a926b01a3dc legacy-trunk +70545 60d06c98a605b110259d055624dc2b62d3ee8612 py3k +70546 0e498a9fde3c2293f88b9e1ce973d6b7fa7fa3df legacy-trunk +70547 a1d16d98aa40daf0eac449ed139d59e0f6038cd2 py3k +70548 c70910ac492d798462b683ab9665779b68df110d release30-maint +70549 94bd0666ffa7933f51f9c20de1b86a834527154a py3k +70550 b3791309e6904c73b90c5042430825164c17272b legacy-trunk +70551 67fb9032d43a47bdaf99c638e9162600d828cd35 py3k +70552 f6edc686bde7533a9003183e27e491a42f8aa5ac legacy-trunk +70553 7edd143cd4e42f398513fbe9d274bed70b5f1616 legacy-trunk +70554 dca3d672758e3cdc53d4eebb1c916a65871dfacd legacy-trunk +70555 e4aa530e5760b8acfb840c72f897383ef6818ba8 legacy-trunk +70556 10845e15ed9b1b601811fbbc6b67f71a8b30263d py3k +70557 d747612f8a2fee98a355426872d012a2810a36f0 py3k +70558 68ac2552f44e19f5f586050fe09099ccfb40904d legacy-trunk +70559 6d5c8a5069b0fffc9f2c091e8647cf95c9068488 py3k +70560 aeda92f1ab9b5703bbc276e974e3498b4b0740cd release30-maint +70561 55f1509c45b67f0cc5c858dc565ec133a0216ded legacy-trunk +70562 58694c76d76d815f8a4b6f8a6b208853f01da958 legacy-trunk +70563 0027c083a0d4b404cec758ec8cfbf423c0b18dae legacy-trunk +70564 ec3e29f160dfd10126ea18bd4e99e74d523dbae0 legacy-trunk +70565 701f68f8b7cf753f946014123b1753960e45c75e release26-maint +70566 a2f6b2b382b4c11cd1af08a2f8b8a81fce1a5637 py3k +70567 986acce266410bdab7bae367af9e52ea4a50ce96 release30-maint +70568 f0a507414e8cc786777b6baca4fc0ea2dfcb6ec6 legacy-trunk +70569 23c12ac7f31736c6674d21b84c1d338f143af690 legacy-trunk +70570 6edb7421638c0b21cb0aad5c50392c67404dc1e6 legacy-trunk +70571 12adb81976479c403164753290eaa1a8e3c57b21 legacy-trunk +70572 a8a8cf9b28183d44d703728c8ad43740649686d3 py3k +70573 9b599b6012fa54df72a8f1834dd5b5a207591ca8 py3k +70574 d2134133bf0c9952483699d0d277a11f949ccf35 legacy-trunk +70575 820f3475b08d7f2c741226369ef798218a4197ef py3k +70576 11d54c7e089b885108aa2b9eb9c95935980283b8 release30-maint +70577 a8da8acda12867d474ae9432940d53448e06c65e py3k +70578 a9515f29b38c8732fd3b5669eaf166d9ced3e194 legacy-trunk +70579 2494ffd60eae99d0e56b6109782c6b27017c6b50 py3k +70580 60b97fc8f06da36a491674ca48b38795223242c3 py3k +70581 006c81f9b0e80ed60e1d0927ae5f841f3e7994a7 py3k +70582 2cc900bd6bb0162cd0f2b93670d67fc5b0bb9363 py3k +70583 ba424016db7469603d57fe135c97c70b88b91fb7 multiprocessing-autoconf +70584 792a7f939fddeac1a1cedc16eaf815a300ba3267 multiprocessing-autoconf +70585 3adb3974e777c09072449d1f36f09ea264db0af6 multiprocessing-autoconf +70586 8ad251da474274f17ab093bdf558a2a93334176c multiprocessing-autoconf +70587 fdc806c77cd6e4215f5f6d10bf5ff5d3bdb9f11a py3k +70588 3df7f118e50422f6a38d481edcb254cabf02e11e legacy-trunk +70589 efffc7eaad6d33e74e573dc7715a618426add942 legacy-trunk +70590 5d6c0fc87a718eb3643fff173bde73b2decf663b legacy-trunk +70591 060ea975d59712976140b472eb07516375a4d736 py3k +70592 41e344e571a16023613af10339a4ac272b045371 multiprocessing-autoconf +70593 73f4e8adfebfd8d25da01dd7df3cb441444100ea multiprocessing-autoconf +70594 7d0e3a8c2e9e1b16cd03b6880a36b51c59c9b82f legacy-trunk +70595 9f8976565f826ee0e9a7e24d8d95f6814d7b41e6 legacy-trunk +70596 8cd617c3e74b028ed3721721e918e230b78508d1 release26-maint +70598 ee0f751b802003c53ad57a0ad567b95d8e2cf9a1 legacy-trunk +70599 1fbec29f89e8d02c515fc45f27e903d80fc83417 legacy-trunk +70600 a676d36c07dd5399db0a1bcadea17897056f088f py3k +70601 f5d670fcdbe96bc7f421b8b428a29e7f97c2cb3a legacy-trunk +70602 f27704f45d4af3313433c2fd8d3c1be94deda1a0 py3k +70603 8b5a80f53317f899e79912dd10d4371a6a0f9729 py3k +70604 b6f861321b45cf0fdaa4da5ea0d0d74014f7f90b py3k +70605 3fdc4aa36d767078ad8d2b36ec01ceb360a63036 legacy-trunk +70606 61ef659ab799df6237de27098c5ffdcce68f3869 py3k +70607 33829c791bf62270c6e82bf23e4dc3d4fc9281d5 py3k +70608 a10d99513f9e9ee3a057ef28cf4f88b1dd247844 py3k +70609 cc13cc224ff568be11b6cf6a6b3db1aa56e0eba7 py3k +70610 07b6fcdf7f94994e9eae6b4ac8b85f7d05660936 py3k +70611 1e2335962bad8546a1e11ff9dd8fa0c06114d4c1 legacy-trunk +70612 78fedc342a6b107dbc1b722082cf79fad70f2e89 legacy-trunk +70613 0a052a2873b2419df69d887284690486f187d96a legacy-trunk +70614 007e9c86fb55b5e0884b6ca5a183d275856c1a5e legacy-trunk +70615 4fe76249a909070edd1e9f5d2382e5081ac20156 legacy-trunk +70616 557290ffa784768e7a943e795a84a5bc6d521acb legacy-trunk +70617 9ccf82e653328f1d839443f8cfcff8f9db002d0c legacy-trunk +70618 e6009b9cd9084ffcafe0b2538b6930e3699feaa6 legacy-trunk +70619 14cc92ae94c904d0ace313a9dc93b800375e0559 legacy-trunk +70620 228cfb6e2900c1446ca062f5882f10e0cf4aec01 legacy-trunk +70621 76bf341ac20237b2489ed62fbf717add53bd7ad8 legacy-trunk +70622 50238494f0f05ded532b53592cdd86de8f9137d3 py3k +70623 705545ec3243d427254cfe17caa7228fc6f68fcf legacy-trunk +70624 f26c1cd6c985005fed159d7e1461eb13e0ac0889 legacy-trunk +70625 edf627261c7b558b0f9c1f1dc556d9d082f5c66b py3k +70626 dadbe014bda4e2750e2edf25db10241db85a4ee4 legacy-trunk +70627 d227584c1c7d8e70647b9688bd4307e72f41e8b8 legacy-trunk +70628 daf661d05442a7add88a336ec5b6af70d8090701 py3k +70629 ca02bd8c96f298bf9a2a70c8532bd468d0375a8b release30-maint +70630 475808698eafaab60d7590e2808b7e037f893cca release30-maint +70631 75e3fe3c072670d06b8a1b8468417d8202fa6f8d py3k +70633 ee4a006d0171ec144ae8a69410ea884b8d8806f5 py3k +70634 10a84c638eda129568e626cbc5fe0bfe17b7d868 py3k +70635 8d6918af232baf7e8e8d202186ab3fbc75eb8256 py3k +70638 8b691690babd7080764e4af36d6c6a91936f9826 py3k +70639 9ab7541104315faeac995d348543e47195317d02 py3k +70640 4265d6c7c0743cd2993fb7a961da5f3879400709 py3k +70641 fbad42c45c9cb6c41f90d5e5b5be39d7dc6f5788 legacy-trunk +70642 7aff8a766e2506da76aa36745fef9af0c4cb8187 legacy-trunk +70643 a726f79285618542dba6d7d460a9a2fa1be1899b py3k +70647 9df5d0694921a62d80b1835b1131cd515b03f4c6 legacy-trunk +70648 b73cdac6a0c38c85a86464a2abe90f700827b9df legacy-trunk +70649 bb90ec67f314857267fe54691202db005c4105ec py3k +70650 da456f42ebe7e7a8ea91124e795e8af5eb9ceb00 legacy-trunk +70651 3add400e419ff0321ee985f8334afbd91c4d4d3a legacy-trunk +70652 1f5db9437db88c5ecd7fffc2d7d762dcbbe57a03 legacy-trunk +70653 4983fd1950366bca9ec9365bcfc62f4b5ae1b357 py3k +70654 bdfc4b3a93471951c811328053288edb83634d7e release26-maint +70655 391871f6c1642bd68ad481d7f38d42af0ad4ddcc py3k +70656 5ef1c1d74c51227ad760b93f16ca5a6fb2379878 legacy-trunk +70658 976b079995899b79b055be4d18688a0ae4c6448e py3k +70660 3749b88dbb61275f5b4eb3885d44c2d83ffbd53a legacy-trunk +70661 55d5423ba987cece642646538511fd2eb60946e8 legacy-trunk +70662 d4e7470bd66042c2ab94cc15ea394ef3f4630b02 py3k +70663 150f568d1ba2d00b446bb2c4a3cc79b87e2e106c py3k +70664 3a6d27d8082295e2e501867c312e336af0c13112 py3k +70665 1b7273aed36ced0bf7a6b078c9116778af6c5d53 release30-maint +70666 d05939263a0e515a002ee3dd94fdb9f13240759c py3k +70667 b794319c125eb45cad030deabc29a97654af603d release30-maint +70668 d55e05b06e4a2b0e7fd0fe63b789eaf4b26649bd legacy-trunk +70669 7add423af971098f396e3a9b83463cf2ac020ce4 legacy-trunk +70671 36b3592f3023b874215c10d56fd3fe1ca448ab83 legacy-trunk +70672 9134a2091013c5fa399635a466bc370694a77c59 legacy-trunk +70673 e314b96fb5ad36292fcad9c6a5767ca00733c26a py3k +70674 e9891598a433464c27492bcc700a46130b6c6927 legacy-trunk +70675 ef612be771edcefb5ef49da848cea21e04e70c8f py3k +70676 001288a68e8b07484bb4f5e1a37ae301f46f16c3 py3k +70677 46a45eccc9f701facab630e377662ee4d61efdc7 release30-maint +70678 019815bc37eaf12d9d8a4782c461577b320d0512 legacy-trunk +70679 423c9477d6efe6ec8078c9523fa1b9905f0350d7 release26-maint +70680 02f294a28206fb0cf79e717afd52d2fe006a2131 py3k +70681 f49a97a979eb0908e03a823798c11e63f7e02169 release30-maint +70682 1afb365f24482227e9b3fc853065821cc525c01a legacy-trunk +70683 6e591d4dc6c96fb4f0540c998c7839966f38587a release26-maint +70684 f05b6d9adbe64775764ab8649888ffd1ff5469da legacy-trunk +70685 bafad61cf30262d772dd6510350418519cbf2a9d release26-maint +70686 e5084d514809ef01c62d429f747c38213cc9bd40 py3k +70687 b0c5df8c84a34404d51346d94b553be1891aa715 release30-maint +70688 f171bac9f961d1d7137fd4e0ffca4d31ab6c00c6 py3k +70689 9807c26cbc99fa1e0155df958207f8693ed42389 release30-maint +70690 a3b8d191ec6812eeb5bd2f69692cf582efa316d9 py3k +70691 0507aab5fb119f590e2900a3463f27648c01eae5 legacy-trunk +70692 baee90521110da255b8ace02e8f37f9d3f539040 py3k +70693 bef00ca43efae6d9bdc2bc8e3f245fb47309f3c3 release30-maint +70694 92bc1ddbc5724f4e1fedab0fca1c96e4ea09f114 py3k +70695 975b20399c8d029cbedbbe17b2ebd95bf2e4f955 py3k +70696 7b5fbbe7b009c4f2bddfc8b0d846a36aa67ddad2 py3k +70697 6e1c4a2963e4c41d632f2649370ea2a67b5267f1 legacy-trunk +70698 9c23c54e6b1596746ba38a56e57f74e5297189f8 legacy-trunk +70700 6ad9b01f95f9991a6e40411bf984e5597769ce29 legacy-trunk +70701 71b69a873d213167082c13d45e2df9a6ef5c4c45 legacy-trunk +70702 685f1791fbc59a974159789b3ee9e28c39f10a05 legacy-trunk +70703 a7ae73a3780594f337a152198d49c0fbf9dbf1c1 legacy-trunk +70704 2d83649a94b75ac6454f521f405b1e0d94b0d604 legacy-trunk +70706 fce8f238452e1cad9f580c4e97dc151198a01b61 legacy-trunk +70707 11c335a96f60f1d9cdc2ab8f2601d0b413af8934 py3k +70708 9e4bb941a1ea55c50a0fdb7f949c8187099addfb release30-maint +70709 005713941a193a06928916a046f75d155d79f605 py3k +70710 cc02c9c290a9484bb9269aefa971429e51244a8b release26-maint +70711 b9d6fdf0fbb361f98a93a207499189521e7f8315 legacy-trunk +70712 84e99efc67b2b1a0facbfccbbb3f9d03862cf077 legacy-trunk +70713 f5c2bcb0947b8aa56f96396f6e1c8bf0a40cb3b4 legacy-trunk +70714 14cae116069d3cf5dc787b9b0f2d6a52e7899d2e legacy-trunk +70715 1b7ccca34f2fa68fc9c5ec835ff52f90b5409f13 release26-maint +70716 aaaf32694876a769b09081e8b45790370d71a127 legacy-trunk +70717 965230b3379f1b825c2f009a607814078bdc863a legacy-trunk +70718 b9c499e9f74da95b9d831e491d8a809a5ba3a2cf py3k +70719 b4a4f4b608abb1d0df05aa7870f437258c029940 legacy-trunk +70720 ac164b54c8a8a3c16c43552755506a44deb35804 release26-maint +70721 b4ad5948e197b26b4964a8c151efeedc52e2b4ab release26-maint +70722 1014f0abdb572103cf797e2316e6bd05fcb87e70 release26-maint +70723 42e87ff9f65dbd2674e9f729b00beb1593b6411e legacy-trunk +70724 eb552a5909fb8d2176dc59db2eb4eb67e5a6e3a9 py3k +70725 39b62b2cb2c76023e0d3900bae5ef564f37250b0 py3k +70727 8df4e0c06e940263a284ef9f88e4bfd2bd95b85d legacy-trunk +70728 2d38de002bbebbf097b965bac3af6989ce5d1c1a release26-maint +70729 08bf31848a422ac1916c60e412649b57b16313d7 py3k +70730 2bff9121be0f64c9e478c63be848ff535efc1bd5 legacy-trunk +70731 175ba76e9c2b74b28cd0c29068a238e93c33cce1 release26-maint +70732 986559da54de14104a4ae0d1c0784374c3812efd py3k +70733 81aa40ab346d9616b028358f2fde789406efea4d py3k-short-float-repr +70734 f2c90fd05d66dc9c78d11c06094d2a7d7ccc9e6e legacy-trunk +70735 14e2750e2506e566b5322937c7ee57c2db2dcba3 legacy-trunk +70736 39523461ef7e247035e8f3eb0388e04c8b4f5103 py3k +70737 974c2bef2800f0ade4a58d2ecba9056b68ef08d5 legacy-trunk +70738 573085015aa89346749d2456f3981be9e32358bd release26-maint +70739 857be5d951208cae0a107d9ad1b0c06828934e44 py3k +70740 376b821db428b8f75d5e2c41ae9da9706f095673 py3k +70741 dd97d3c3fc6618f43fbaa7925074a9f539398bdf legacy-trunk +70742 3b5bcb93bd119db86d37f1fd4f20de92c215b820 py3k +70743 0e38b941d9e490beb6a302f2d672fde2c58a2d3d release26-maint +70744 54a1076383895583b9d1d190295da1cfc4e74629 py3k-short-float-repr +70745 2e5e001d7d36ad3b45214c9554f3da4566137116 py3k +70746 99829c90805812783ed3b8188de7b42010e40a08 legacy-trunk +70747 10a63b930cbae14f0034494b0d1d3231e2283a52 legacy-trunk +70748 268b8eb31f4936e2efadc48710fe92e0cc82b19c release26-maint +70749 52c36e450a48ac5ca65b6387d5d925caaf17bf6d py3k +70750 7571aac3e0c20a373a25fbf56c54f5754166e8f1 py3k +70751 b8e87edf2f662872fb56e306a24185ab5e079590 py3k +70752 eca939022b832e37b7d68f0d6361431900487b7d py3k-short-float-repr +70753 c371c0924f353c9a9166442feb390f888657d7c9 py3k +70754 de63cbc561b68e6ac8ba6fa95643aaf30d0b3b64 py3k-short-float-repr +70755 45a717450961c68c98da8157a399cf8d0ed15ee5 py3k +70756 780d6401eed6d5ffaa5090acaffed8f614336801 release30-maint +70757 2ff89f0f1d1902b8171265bd60e4b0a6c52007ce legacy-trunk +70758 fcfc2c994a4aa0e74d940d8aa00e55854cde5e16 legacy-trunk +70759 834a3a96d3ab483baaab1a95d0e2c9efe862c96f py3k-short-float-repr +70760 e9ff0efcffa908ad8cf07cb35d7b598993dac0a0 py3k +70761 1e78b3dcca42af3cfd7fe1de3d25a1278a62b1c5 release26-maint +70762 80271ce09a66fbd99b833f758b01a6bd4c5737d9 py3k +70763 94ba2fad9378a643a4ac63e0107b3a461263ffe0 release30-maint +70764 80ec50d13857f289426e37c6c9548bf28c2d0c7e legacy-trunk +70765 4239fa562735ab1154b88bef77e908786f230f51 legacy-trunk +70766 56a09dd0e0f330147e3f19a34cc6f558c8d13b89 py3k-short-float-repr +70767 f6b0505a22b39d964722d361f8fe7c46f610654e py3k-short-float-repr +70768 43eba789158fdca39b11f322ed177d8e835c56a1 legacy-trunk +70769 2f22271cf92498b82bdfe52f9c23163b3e19d4b7 legacy-trunk +70770 a2887109f34068ed0fc06a54d5e80e9d1fb5f3dc legacy-trunk +70771 0afb5d89466164fdd8e9ab60735f6e09889b844a legacy-trunk +70772 5deb27042e5a79e247e3adc91cc60b6b34eb0076 legacy-trunk +70773 3f81d9945e82a0e981bba139bbfbf23ce3dc92b2 legacy-trunk +70774 9d178cb5466a0d742ca8a66175eff18b2c3cd5a4 py3k +70775 f4c5e3a64be23a4ecafdbcd8f6c78a07369233f8 legacy-trunk +70776 5ece0785df813d55ccaaada478845b5f15d4fa92 legacy-trunk +70777 e0124f540ee5648ea90323cc7144aca911f185ae legacy-trunk +70778 8976ec2cdfe5db7e85b46e20a76fe862106f9b96 legacy-trunk +70779 e4efcb2990e25eb5ec0e39717dcb5e46aed518f5 legacy-trunk +70780 970496db14bcdb917bc29631880e264511aa962a py3k +70781 dcac0459230284843daf23bbe5adb589a5e50fc6 py3k-short-float-repr +70782 0d62cc5b48d5cece49746f617a9288e6f5fd471d py3k +70783 ea4c5c3bc7abb8c30c5249e8fc014b4d712f5539 legacy-trunk +70784 11a456477e8258733f32589f7a2b4fedc6cfb8cf release26-maint +70785 803d0273cbf7c0905690e65b12653cdc5f4db2f2 py3k-short-float-repr +70786 75ec12b24448e2b4dc1cd55df4bb06115620263f py3k +70787 89dea3df4cb5750baf7efa51d3df7768ac0bef16 py3k +70788 c699547053a98c197b9a3160d113b0c15ec310cf legacy-trunk +70789 104ccd06461a889a36e4b4309aa8c3466055e0d7 legacy-trunk +70790 f28e6f7821b31b746e2f6cb3fd97cd282f424de8 py3k-short-float-repr +70791 c1a3cec0acd427f318a1fd302523c510b6c928de py3k +70792 72bbb0f8b09a7214bfd0119b1c39e42f5bd42c80 legacy-trunk +70793 26b1ad09d1a7237f2a0db52b2afb9fc8b3594f72 release26-maint +70794 ee222c4d129a2f685b8b9264f2a4fa29d3060eab py3k +70795 52195fcab193d6947e3bced219f3ffe913440e39 py3k-short-float-repr +70796 38093cbed6a6dc6378d4c6d6681d54e27002593c py3k +70797 d12b02abe6dcb47ab2a194c167ed2165a8ebccab py3k +70798 231d61c43e9cdfdd7645ea43fe55e02ebae622e2 py3k-short-float-repr +70799 3da9dc0c65c6b1f0ad42f06eb8267701ae462347 py3k-short-float-repr +70800 a91cf0defbd67668e4c37f6ec184bf01bbe264d9 legacy-trunk +70801 d4f866739bb24c3412ed74d351ae2a6ab1c14030 legacy-trunk +70802 962eba62299fb88887ed08fa74a146894e00e95d legacy-trunk +70803 2356226174971eb81f7ae0632e8a9022fefbe62e release26-maint +70804 ecf8424d74220b40069fb95bcf997bab7bd7d1d3 release26-maint +70805 d2475d8069acdc6f8727ce3f8560a6cb7b80dbf8 py3k-short-float-repr +70806 e4778ea8e4b28d546c937ce0211622952cbd472d py3k +70807 6f460b7acf8f4bca710a908587ac37e20846c265 legacy-trunk +70808 c98a71e99162acc86a2e40a2b038c814bebbcd40 py3k +70809 07d65171a8006911c797345a3521d157539ee49b legacy-trunk +70810 4adab724333995ba17b357bd65ffad874c8e2100 py3k-short-float-repr +70811 eed4c7fa3e058742db181c9c161d0316338fad37 release30-maint +70812 899aa2d189847b7f5c958a8ae1c97b2dd4b233a3 py3k-short-float-repr +70813 6910792fcd4b6459e3fc24ef133c6d338e9e619f release26-maint +70814 4eeb14a9c5d2d71c512d3c7fd2af0d81db93d204 release26-maint +70815 9eceb618274a521fc55c0b5d1fc8e111b91bf6d6 py3k +70816 932a1e514c16234fccb423df7ab3c2f1a0308d04 py3k +70817 21c1594ac369fa09ab7ef9d38cf32f8792a80f95 py3k +70818 c2b014b55bac241e1f829262462eb04d1d0b5719 py3k +70819 2242c2e6c73ac6d691046ccce7e03b0e68ffc631 py3k-short-float-repr +70820 05f90cecb2a29e0de054cd9c6844d6f6ce6814ce release26-maint +70821 6694f3a1b6e7279ee8bc6744fc03a91d724d897a legacy-trunk +70822 23451b09f15b923a81dab8d08a8d6a6ab9bb1ef9 py3k-short-float-repr +70823 2b436310fc8bb05899c6f44a4fcd9c2cf092154d py3k +70824 4436391d2a9f24be82107e72122d02b8c8431468 legacy-trunk +70825 aa7cf3283d6e0626d0e9f08deaf396de09c82ebf legacy-trunk +70826 4857cca45aa54308080746e17c0360f6d7f990ce py3k +70827 398ec940277f6476cdbc2e2a3e660c784430d760 py3k +70828 e129446dfbf9a1c2d3ac9225778190a820df3ab7 legacy-trunk +70829 51429a196c75ae23a32883bdeb13c96ac7919ea2 py3k +70830 ae60e4c20ae33f846462ed52bb3c49ef3e84c020 legacy-trunk +70831 d8ceb26c66c48c2dfdd5183f029f3e695ff7217c release30-maint +70832 dafd982dfcf4a0e23ad5736f3b600bf5971b288c legacy-trunk +70833 534faf9187e8400a0aa53e0ac6ba3f1080a4ea17 py3k +70834 375287327ce9efc703313a06eecc9f4701055148 py3k-short-float-repr +70835 d186d353cc8170fae1ae7023615dcb95365ddb73 py3k-short-float-repr +70836 b98523be0a15709fab931070f5bc0ed64165ef4b legacy-trunk +70837 11d6e538a279b4a28784da8ed2acd5e0aec625bc legacy-trunk +70838 a3b2a9706fc36e22c18542a1820fdb5bcdbfc0e3 legacy-trunk +70839 6a6dd8ab3f2287ed67019b62bcba0f3b125207e5 py3k +70840 a398a2f75d444ff5d134dcaa2b68f8e49b29d5df py3k +70841 1d1eb149b32371b112ecc8d2d297dec34e05b404 py3k-short-float-repr +70842 70729e7353db035484f1fe9d5b507dc8275e625c legacy-trunk +70843 2d80c27975012df2990bdbf179a506ebb657df29 py3k +70844 db50187b4c0cb915b6e53fb0430f5ab066664a6f legacy-trunk +70845 6259f80dc24d60844b672a98e5d1208e6c02e496 py3k +70846 840032d9efd62cab7f8f2559a57ec9429827f6b5 py3k +70849 87171283d02f8ddf316744f0de93e27e5f8619d0 legacy-trunk +70850 6ddbdfdb7a86d9ad80e8fe5f85890180781a5551 release26-maint +70851 d495a11c76e9885eab4d8b387617c59e143ee027 legacy-trunk +70852 7663c49c9bf6dcc7af39979838e3914bba0bd46b legacy-trunk +70853 08c86f45ac9155c5ced77ecce7a6690334ecb631 py3k +70854 fea74d9b2a5f32617f99072a0745152cd208f6c4 py3k-short-float-repr +70855 61548b3e4ca83ef17c83ba2a23a8cf4d54a01b40 legacy-trunk +70856 7641a3f0b2ec35ecb870bbda65def22d9f83295c legacy-trunk +70857 e5d8f0c0d634061325d154aaf8e17ef0f2d3c9ea legacy-trunk +70858 a020e69838ba72ae885713d32c0527364a543b5a legacy-trunk +70859 d0275574c7cfe3ae7ddf954bc43d0dfcaca7b79b release26-maint +70860 3d598175068cbb2c8a403eb04a616367683b06cc py3k +70861 ef2816c56ac2ee6729112fd9b5d7751bdbc95797 py3k +70862 8f51dd09f3f23c7fade98d26dd2d9aa69db00c95 py3k +70863 1516fa223fc14b4292f061d82484fb7e59eb1656 py3k +70864 510ed057b95fa86c605f48a858b66af835189df2 legacy-trunk +70865 546c5021f0278e330dd563c486e5ea73b10b2096 py3k +70866 e1607f6d9be875798a257a02ad1413ac450406da legacy-trunk +70867 e70a6c46b3ab40f33bee39ea708be62a0c6ecd7b legacy-trunk +70868 f4b90015ef00992268a69e4c9c146b1f0bc38eb5 legacy-trunk +70869 d3e31bd5430ab69aaed654386c1d41ef4d54be47 legacy-trunk +70870 02db2d3401334b35ceb97248c1c1dbacfa1978fc legacy-trunk +70871 53c1b5f669652ffd15280d95f022f70ca00b7216 legacy-trunk +70872 e6b3e696dbce8d44c3f58f91a9255bbb42101687 legacy-trunk +70873 6096ea81de0b7a938f4260a219ae0b42b9198e69 legacy-trunk +70874 68b7e8217c7e5046193a11e74651de8652b8c356 legacy-trunk +70875 45ba475d4e98c7256670f01c57e46b93edd77d37 py3k-short-float-repr +70876 b2adb7ebdb54f2790b0d072414b186c989320128 legacy-trunk +70877 112669dff04abaf351f25225b0f2c51763f0419f legacy-trunk +70878 ab9b7d5db9358fb3ddb7a6dfb2a6d4d0acf35582 legacy-trunk +70879 3aea75a343373fd96902ee76734ae326de0e6348 legacy-trunk +70880 0c17f7bee2a0690de65d89d9949ea5acdac62b2b py3k-short-float-repr +70881 d9c8d1a5ddee2355895759e7212a0eb175e3dd80 release26-maint +70882 9f8d6de8903521ab692d14fad0410b57dddf318e py3k-short-float-repr +70883 b5aa8aa78c0f1c1143064706428c1beb50d5d59d legacy-trunk +70884 a5301edaa704cb30cb662366d6be375ead09a887 py3k +70885 1d7a772b3b1837be90bd073d111bc2013c8f06d5 legacy-trunk +70886 2b9c916687774f6a33e76eb2eafcc1165fca9519 legacy-trunk +70887 09b70d5888bfb4a2150e36c8be4de90545ae11ff release30-maint +70888 efaa67bb3f06fa8e416a63cf5577b29a83c270b3 legacy-trunk +70889 cb0969071f2ad94c9f5847c700907caff2756d70 legacy-trunk +70890 9609ed7deaf890530718a0ea7abdc016fb6711fe legacy-trunk +70891 07c5c0d9e7000acd1fe419884cbe241c6a3da372 legacy-trunk +70892 21b27e115dd2500b636c4c8ce42621c95b6d7f89 legacy-trunk +70893 fbd40548130de7cb60c2620293e1a1f91e4b07d4 legacy-trunk +70894 5744468e609bdbf58df16662f14b94606230d2b6 legacy-trunk +70895 80ff85d87f675bdca6cb895e311216a5125891ce release26-maint +70896 f6d9c2089170741722acc9b367e9371cc4e274bc legacy-trunk +70897 587fcfbe08b638987a9a0faf8e40709f1d00352c legacy-trunk +70898 6640996f04e7471bf4d67f8e9c7f2db06cd5e1d3 py3k +70899 3bf9ae437606c4a2c6b32ca6e993f37047eeb663 release30-maint +70900 21ba0b3fe819fd6c37e782126980a443c8e33a0a release26-maint +70901 0d083fb0665df97b03211c448a6996b947da15fa legacy-trunk +70902 fa9243bf525686622b3d6296121bebbf1c502cb2 legacy-trunk +70903 e5286be24ed5106acc84a35f66ed69e64d8806dd legacy-trunk +70904 7df244110dd5fa1795e8b3aa687a12d7a255cfcf legacy-trunk +70905 b657978d56ad6e213c78c47384c99ec41e02fd1d legacy-trunk +70906 5f3fe1f26b36d09d8f0d38361f76ce896d2444d3 legacy-trunk +70907 1839b8553a2dbdcae9eaeb809c14e08e9a506ac2 legacy-trunk +70908 5cf74137c0f8608cda9884b31424990ab0274544 legacy-trunk +70909 e2818b9f964be82a8e65766ece3580e357045a6f release26-maint +70910 5856fae009e86d563ca3510bf45aee61e94210e4 legacy-trunk +70911 1e0534319a3ee7e67514f4db8d753850c01c778a release26-maint +70912 9b96bd090908a67938b1757ab2ef59aeabe34efb legacy-trunk +70913 111352112afa8ef2b8b822ca763c1c60088c6fcb py3k +70914 f7b11bf01a1264d2223672189bbda51b69302fe1 py3k +70915 69646f9cd70b51185f752f73ca5cbad84fee6298 legacy-trunk +70916 fa3b2ed20d85728f23cd071cc1c2bf89f7fedc6e release30-maint +70917 914a5ded1be3c9f6f60efb687efb0cc05efebd27 py3k +70918 ffa13aff29db1dc00763d8c602789a4d2925f9da legacy-trunk +70919 8843a8427a8c82af11869b75ea5f7cf816003749 release30-maint +70920 82adedfd2324f4b390d953b2e9744f9a8f4efdd5 legacy-trunk +70921 f758dd2a89689bc20064acba677c3a060a3d01e3 py3k +70922 981a9b3d97f3afe2d72af689a90a63ee6c5c7e29 legacy-trunk +70923 d3f5a9f041d840cff14814d5e521e3c959d5c1d7 release26-maint +70924 30d874b1c4a72343ef6478eba116fc14d09248d3 py3k +70925 002fa9205aae1abd8435d13f2a473fb7a8282119 py3k +70926 7a77e4beae665d80733bba723dde55b85a7aba42 release30-maint +70927 7655142f522414ab929e91d39c2506dfd815d74c legacy-trunk +70928 b4026ac781146535752aa8f7973c40b147d9a26a py3k +70929 f84340886936cb2e85ccf9f4fe6b2d5a880eee70 py3k +70930 57044a3652d8b42e082ea9a0bf51430ea259c2ae legacy-trunk +70931 184ca6293218f96f42a6729149670314ba018a92 legacy-trunk +70932 04d4188fb411605e95ba40efea11ccd8454dd635 py3k +70933 1ac1193a61d2f5f7d284ae9c009981c483d7506e legacy-trunk +70934 e555fd8c4b6ee79ef0342a1665557ce0437bd4cb legacy-trunk +70935 d85090a480ba4ab0ba4afa45cc5dfbbc3e0c7bde py3k +70936 513d96bf0d703526d21c5261b4f2420055ac2623 legacy-trunk +70937 1ba65a91e56be9cbfb164f46c73931fa7cd8d31b py3k +70938 79a4206176413cdaf8dc1a31f255ff7cffc9bdc3 py3k +70939 cc2c7133da4f5f4762b82b565ab38bd7c286fd44 legacy-trunk +70940 76235580aa3d47c044b7c9c23fe7f475838748e1 legacy-trunk +70941 ffa81bd2ec72d67dc63139557d5cc590573cc806 py3k +70942 acfc18cdcdfb772be46fd7c767aec72b8942a4fe py3k +70943 082b250d5ee50fdb914e99194d717d31b0e9951e py3k +70944 fa7c3765d10ff4c3efca91ab21f7b8d0a0fe945a legacy-trunk +70945 0530aadff696d1b66c667cbd19b10d2cc2590ec5 py3k +70948 7347d916f13ae4ce19234641cf1cc4d533d5142b py3k +70950 da7448ebce8b1186577828b21459facf44e59a25 release26-maint +70951 dc53f370ca9d74753a9500557e8dc3be02f5ebc5 legacy-trunk +70952 19190e058d594305f091440dcf47b13e59c1fde6 py3k +70953 97fd0d76ae9ce7b1f54ebc8ec486f7767e8c2513 legacy-trunk +70954 027a3adc0d8f562000f246a074bcc18d6c138b3e legacy-trunk +70955 abf6dad7d64fe2838527a0f4628f874fe9e827ad py3k +70956 76d61c12623cf91e7855d6c07acce1cd1c278307 legacy-trunk +70957 46f1ce76199eb45199fde134891265025cacb762 py3k +70958 df5cb3836b282aeb2e2ae36111dbf8e4cde9db73 legacy-trunk +70959 ce0e28dccbc228abb9e8a17462606f3a77be6217 py3k +70960 8b51d96360b03c5c6521b50be0dc9ca494a7d5a8 legacy-trunk +70961 c3f07b677afa674936d1ea348a69111b1c06dd18 release26-maint +70962 e9fc522aae9a739c53731c22bb9bddd3e03bb3fb legacy-trunk +70963 3456671a72bc166b5118233e7006416e8a0a93c0 legacy-trunk +70964 18bd3cf5287ff0089ddc76a98cd42857a2e05481 legacy-trunk +70965 b5d23fa9b8a4847f239b7ab49ce16349e74107fa legacy-trunk +70966 287df3a09f3530e355b7c6e72d54513ad7d7de31 py3k +70968 e8ef13c9859709c5d5b63273be8269c3a0d7c3a1 legacy-trunk +70969 2e4dbb395417cb6d403d45eb7ee48042fa7b1b73 legacy-trunk +70970 c337f2028d8c77e076ee70f5259a41a03ecc445a release26-maint +70971 16c1442623746222b030fa8ba06adcd6a3b6e1d4 release26-maint +70973 ce3b5caf4522c8a19802af1e1df516be78d689b0 release30-maint +70974 8dff406403be2ff7e40bc62ce7cb2e556d745f12 py3k +70975 b814b0c353471cfb4b74720832a45fe56af30b9c legacy-trunk +70976 2d95c0141214f84e485b02c8ecfc4ef9a6f790b0 py3k +70978 cef8b8259ac98eb979ff0cba2161564cd4910166 py3k +70979 7e2bbb4dbf8759e1541d75c3b40388a825138363 legacy-trunk +70980 a73373ccccc21e0df253aeedc35413d287359d1b legacy-trunk +70981 42da7154b270bbd97929b31daa974374dd3b7e0d legacy-trunk +70982 675415c5b91257938dae0ee2cac69c78b3a4a20f py3k +70983 6b6ac6ac5566a84574c58276350d92c5adf1b476 py3k +70984 d7f478c681b9e305e8ffa328df68a84d6ac0c094 py3k +70985 f8aa8d3d66078e9ba000b93a3aebba8975937f3f release26-maint +70986 e9e87d1a389c53d0bb7518ac974237c8a09df0de legacy-trunk +70987 f15e7a931334d500e57cd53482d1e01b105702f7 py3k +70988 affcf0705439a5b6d6bbb324979fa77638afbca1 py3k +70989 f942893fa4d8d92b64b6e1fa8767156c44b3d39e release26-maint +70990 da2c6dd26e88dad02245cab6217094d975ee4d4b release30-maint +70992 9e579bab76f1c572a52061aae70e2046a752cda2 legacy-trunk +70993 5102bbf4ab7495c5918b273f1cfa01da4b66ebf0 legacy-trunk +70994 9856b5be26c4cabd91c3a17efe3ebc280c0a6754 legacy-trunk +70995 3b34c93749552b0323310f5e1da3a775f4e9ae2a legacy-trunk +70996 9ed9d204130665441c8fee3a7f4e0aaa0a402595 py3k +70997 83f9e3d10edc488fc78e11ed612235ef81e9e77c legacy-trunk +70998 e3a1969fdbe5e0afe990ba84140ac4f64a370386 legacy-trunk +71000 1e1dadbbdd01b9793924637c4d2bb38fa969e53a py3k +71001 cf73fb5cc3ac9d83becda4cfe39b2d37eb2e732d legacy-trunk +71002 b43f14c103bbc3aad1833335d1aaa27476c4a1e3 py3k +71004 2dfc337174938f855b5b308545c3761f3aca771b legacy-trunk +71005 755bb1f9b0e586fff1475810f13af754fd498794 py3k +71006 1b8d68dae57212553339d5f978e3d4d38bd92c41 legacy-trunk +71007 eb62217bbb53737be74c70ab7313b23c18d0a7d7 py3k +71008 8503a3d0254d8f6470bea372040bffc89de98dee legacy-trunk +71009 d343e802b2760aa700cf2ff7f17cac36ce540477 legacy-trunk +71010 080fdfc43f941868647d39270d0109650d4bba48 legacy-trunk +71011 36f25bfb3a1bccdd443d728f32a5757fa77bf0e2 legacy-trunk +71012 c5a7ebec59847afd56d469b4672fe46754635d9e py3k +71013 a73d7326311dd8c95071566baa13560588084e03 py3k +71014 f390464639fbe858011b0c660b3b607540d13966 legacy-trunk +71015 475ba43cccb1e522d3b95568f141590737c9b4df py3k +71016 c0138b2d4eedc990500bbbfe1cfe4d54dca851e8 py3k +71017 926fd217e2dca1253104a016e05189b596b4eb59 py3k +71018 33eb1697c382de8583a9beff610d3cb551b8a9f1 py3k +71019 35c3e1d7cfdf6147173118c440af5b82dc6a9e2c legacy-trunk +71020 bc15b483d3846da0d9ea306b74b7bc1d8d8e897d py3k +71021 a0e211b04b2e0c84d02546c1d59451cc1f2da4aa py3k +71022 1086d7ee8b0b3fefd7078e25d35f9baa214c9d78 legacy-trunk +71023 b984456196af269d13f5a947e3828b4f02875ff2 legacy-trunk +71024 7e86fa255fc225cd720b16f8ab62ed24b2202bc2 legacy-trunk +71025 90690eb85380bd3b8c21304f80bc36249355de29 release30-maint +71026 f634c5455b4f3ab5051b263d56322ec0e32e209a legacy-trunk +71027 3e1a80525f18a0111ea8164c563d4572ac376cfc py3k +71028 953553ae8b84ff0ef983d8c20fbd02ac891e8a6c release26-maint +71029 c33959392953b01afe621933cb99af1ee04f9d0d legacy-trunk +71030 37ffeac3a1a68d6ff57b76d0315aa80a78c76598 py3k +71031 1ef3da6c434cfb2297b2d2aa2730a5968dfe7938 legacy-trunk +71032 1b50f78cddcbb871a43282993b43e6b32bfa49da legacy-trunk +71033 fd5ee3d0f5528f656d686a6965148af89be9722a legacy-trunk +71034 54e093bd887ea74d303a5b712656ceb6ee87e6d4 py3k +71036 23a2e1584c02af2ef4f9233e97b45397a152008f legacy-trunk +71037 8d84f220ff27708e0757c95d9e95240407774834 legacy-trunk +71038 5f179f6f07e0ff8348548087aaa1b0fe5505ff75 py3k +71039 fcbe1ad24d410ed7d831de48dd9bf20dec5f8f27 release26-maint +71040 0bc62d7dbf5492f4204d662e60c0d0c66a4d6246 release30-maint +71041 71f6129ddad466f963da8c0d429e30860ae26a42 legacy-trunk +71042 53916aaccf2cc23c865749201b2b091365a85cbe py3k +71043 1abf9e30c19f9f22ee28fe21eb535c53a4c23c4e legacy-trunk +71045 acdd11e39f0b0225741ae02fd241a4d9b9d6f049 py3k +71046 c589483a72aca554cdae9cf25499cc202b4e50cd legacy-trunk +71047 3580d3c072ae5032b13ada384e69a9dbaff35230 py3k-short-float-repr +71048 a33bc8183e4c1768269b54a25e5e66391496cf29 release26-maint +71049 2e223868832a81fff9f73b0d31e43e1e80e26e7f release26-maint +71053 759f43c978878af9150756b86e24d3aab3f88b88 py3k +71054 9489a9e7afd43832644b651140568ab03636063b py3k +71056 c801a67ce292e6cbb84b8688a8ace6a9ddd2c33d legacy-trunk +71057 f81424972ad11877cd12c747150d53782dde83ca py3k +71058 54b2cd21ab46ce4edb1b679a52fbaf2b334fbb43 legacy-trunk +71059 7fa0f81d607e71ae6ff2b990f802e6d7a35cff0f legacy-trunk +71060 cdd5471475667fc0985ce3529c10c58a74ca0a63 release26-maint +71061 d1c5367d57d655618c0101e2cded50e9b32c57b4 py3k +71062 e02c5b4e4e92edc90a0361f92840b41be26631a6 release30-maint +71063 98c3449da3693bd2fbe22cbadecaea9a4a7296a7 py3k +71064 1b483911b2e668e040c33414cf9c13e84a32a9a3 py3k +71065 bed524ec0850ceb6d477fc81b27f71237bf18dc8 py3k-short-float-repr +71066 66464db382b14d5bc046d10f8e347d44e7f72fa1 py3k +71067 9b535ce99d2daa7bd21a3a9b53012db4d3117c8d py3k +71068 d28ea2ee7070d36050505801318c999d8ec1912b release30-maint +71069 672fd7a41d35f2bd8a8f1a182bbec8e06b43fa10 release30-maint +71070 75efd757434b85f85c5e7f225fe0cf1ac37abf63 legacy-trunk +71071 b3d5f685d27acca5ea669842299217679a460611 py3k +71072 cbe19130b2eb63113666e87b6546559e14381de5 py3k-short-float-repr +71073 20e7aa42d6fe4d98173c19735c225499ad6cd5b2 legacy-trunk +71074 f13ee8ac6d54527751d281b398a1b5985dc417e8 py3k +71075 f3c4ff214b11ec6f1239cfb6d015540bc09df8cc legacy-trunk +71076 5c37ab07a7dc34198826ecff35a74ae93840df23 py3k +71077 9be2e16a71df5b65584344fb11a12c5c1868dd25 py3k-short-float-repr +71078 39be9ac89be98ffcc29f8e2bebc1d4a5154d6ce6 legacy-trunk +71079 f6202b3ef8ea98e4e0be2bbafebf143d83904d5d py3k +71080 183d6072e1e5df93f8cff390b1f847b3d69a08a6 release26-maint +71081 1bf671217abf3cf79f7eeba2c162be4ec58c8365 release30-maint +71082 dcb368fb6adbfae5ae8c9c3318a26de5e5cf29bd legacy-trunk +71083 98686f307de426c609fcde0d918f333152db36d2 release26-maint +71084 cbfbff233ef5c17cf6dea9e48b14bdcc69f45580 py3k +71085 2a27f9ada8e33e4794811f1c72743966a2824088 release26-maint +71086 cac209cf5e4cc73902339e870317c59f95582095 release30-maint +71087 ae482e52a16bc089e915eec0b0b3194d5fb3c4cf py3k +71088 4e5fe8b6d101c8f361d64b7018d15d6d07f71d1a py3k +71089 b41c29debdf69a790926cd299c307563fa5233dd py3k +71090 69662bc3a9f6b6d320871be9c906ff643e2bf5b8 py3k +71091 643f44ad387fb46430b065afa8665e6960ee2601 py3k +71092 8a26f9620b2118d7bb242e00e108755779bfc7ab py3k +71093 4757ddaa897dec93f2f5a3d1b899dd17c205410f py3k +71094 689434454cb8e531288c52e8838ae4d4beabee65 legacy-trunk +71095 a98091066e01b206388147fc5fce06e45cb9a02e py3k +71096 28096ed73153ed696870badecb0d829e0dd74c86 py3k +71097 c2f9e13542ab2ac2f95d0f0da69b3501ffb87f33 release30-maint +71101 15c8e9dd19967fd0111717fccc68fa22355d3717 legacy-trunk +71102 5f5587f3c4d55abc23d1edc6a2e4f9d02eea0e99 legacy-trunk +71103 44954e6a135323b4401701f4caf4adcaa92a1546 legacy-trunk +71104 faa3473e4534484bc23fdbe021619939b17ca5a7 release26-maint +71105 c3c6b7374bda2ed8d71ca9cf332b884e79dad5b2 release26-maint +71106 d19d890138f1ecb1f8492cf369c05a5a7f138729 legacy-trunk +71107 2df1517d868c9af070a8555292e824655190bb69 py3k +71108 7bf60d7b09e9a2062d25560879adb75b5c88cb3e py3k +71109 b4f157f8e4a7b98b50295df50bfb699a27a0bee4 py3k +71110 1fdb5659ee089682c1dd5ffd384cb3d2aac4c662 py3k +71112 055b3027d568b9639413216c72661804d7db6b24 py3k +71113 6cf16ea8a16de6b7347e3eb5d7b641dee5d3f080 py3k +71114 b4defdd7f431b5169c066d35975db350ced13afe py3k +71115 fa2aac434d063656c77e9a53a165729607720af9 py3k +71116 fb7b7727a731ac609d834bfd422f5155f2d7ba0a py3k +71117 5174ccfb01b82139529487b06a0684900dc19c6e release30-maint +71118 4925196a2fd8bd522c0d095b411e57e039065c4f py3k +71119 f121bd956ae05109f35f7be33a38fc29666f65f9 legacy-trunk +71120 90419e1b4656b58fbd69cd247f958057fe0cca05 release30-maint +71121 8b53b969b6281d8017c408d3c63960eab16d6082 release26-maint +71122 547a238a2ac492581d3957036f323dff97990c26 py3k +71123 146a8fddbba277877940f5a393d186766ddabc48 legacy-trunk +71124 b387ca7d0fe62cfedba548c3439518b0ef579b21 release26-maint +71125 a1beb16cf23694d8e2d0f4c3d0def48cf7f0127b py3k +71126 bc084a97318b9334371f3fcc8886958e5ae9e06f legacy-trunk +71127 5f66dead1175a08d84bcdcc76ac4c13f7e9d2562 legacy-trunk +71128 c4cacbc9b3fd24423fe9c669973b4c218e759c49 py3k +71129 a80e2ea389e30b3f077332b2bc4d07bcd1d4e019 py3k-short-float-repr +71130 5447e1f7dbff4cb68659d0f8e29f20a434e67891 py3k-short-float-repr +71131 2474fa9c3855932162caf32f43e3df1dc141c0e3 py3k-short-float-repr +71132 7d87e7c06b59d04409acaa2087af9e4021dadf01 py3k-short-float-repr +71133 48a02d5f5d428d2db9dbe085cf1da12f3f45196d py3k-short-float-repr +71134 24f1a9892d49cbe95917e75c1549a1753592e758 py3k-short-float-repr +71135 422248e6b73b90d3f75db66384d29f29e76be11b py3k-short-float-repr +71136 8175bc03134e32b8ab03df84745f589a4ed2ac51 py3k-short-float-repr +71137 661bd558363210c1df38ed0b0331acafd91e8dbd py3k +71138 e2542a7d4acfcf76fd6d5a9464e8dca0394596be py3k +71139 c9e48e008bb536a46a7f96461600ff250132262c py3k +71140 68300da12dfe0dc8bda19b0ddb0566ae7cd9d290 py3k +71141 94150175196912da7814dfaa061546e01953dece py3k +71142 6019fb1da9e11350b5b8f68b65c6ebc874a9a10c py3k +71143 ca8ceba737147fcdf30b0265675c99ee43a14e1b py3k +71144 d638ecde35725944bde5792397bb8214891f6778 py3k +71145 74cf20a61becb67260c3a39fa0ae37ea5dc210c6 release26-maint +71146 716accd4b603e92648330c6f9c41e034ff2ae4ef py3k +71147 93e92409cb468e96d39e88c5abdb5019bf7a1b0b py3k +71148 d36afd058d8bb6ce50d4257fc8efb1739763aa56 py3k +71149 f65f0118331c291805577106352e3f53d78176cf legacy-trunk +71150 e745cef8f4075bc9372377fc1f1ac9febbe2d24a legacy-trunk +71151 61b511d05ee9472247c6234755f9298f3f6f16ac py3k +71152 634502be8dccbde54a457e8c926e66e344187f03 legacy-trunk +71153 cb58c973985c9c2ed1b9a504da61f9f4d09cc55c release26-maint +71154 73a7e6aba7b212f0e91035cf1deb3b54f37ff96d py3k +71155 37346df2b884fdef377744fe85644c0e7acbe683 py3k-short-float-repr +71156 8c7c5a358db95e41ee1f0ba66bb159b3ecc9e3ce py3k +71157 17784185ad935251fef63dc6286d0527f45a4067 py3k +71158 e6568b3c2ae75b6744552108f27c414800528049 py3k-short-float-repr +71159 2f52a3d185a30d7ff9cf2aae1ec5f40b2b47fdc7 legacy-trunk +71160 3ef9756ffdacda2154cf40e15660296d6251493b release26-maint +71161 bd74c4ed03a46ee136f45a4e59ae4b59243f6a02 py3k-short-float-repr +71162 1df37f09747c4a9c777e13997bed3d35b7e1cebf py3k +71163 71355ddf373ed9d7c9f332af338e883f54e3f590 legacy-trunk +71164 a8f17cd82d89f021249936f816990b224fe2d62e release26-maint +71165 aa8930672aa4d823a25ff7832711838588420196 py3k-short-float-repr +71166 1f8079ecd3700c865ab201e4721b3dbb2c3d3061 py3k-short-float-repr +71167 73b016ec5b8fa78ac5861392ba03db216ababebc py3k-short-float-repr +71168 3476ad7590b780c8c5c16144475c081436a800ba py3k-short-float-repr +71169 c50c079b09eb67166193521d9920c49108cdce05 py3k +71170 28e30a5c639d7f0dce6160a2f7dafa5cce4a638b py3k +71171 adbde5c3b5fe4df40c7f9ff63d17f11383b3ef66 py3k +71172 458ebe4f5a588f6861d2428fc2db93d680ad8af4 py3k +71173 7ee1cefa6d62b929a1c5e4ab36df99d5eb913cd2 py3k +71174 58a7c5094523097f62707c2dd87770ecddc0a904 py3k +71175 a3bbdd93b389a665240c52c0f83c74fd8f09359d legacy-trunk +71176 d7c9755b6177330040a26513b0ffb34b8837ab1a py3k +71177 cb478152470496debcb953dfd7881f538e77c858 py3k +71178 2aadc1afc9a194d0a0cf7115d10d11b7d3dabc97 py3k +71179 5347740d4d5dd4eb3198fff27627d266fc31eaf8 legacy-trunk +71180 d2e15629fc297a00717fbf84c273be211b08ff1b py3k +71181 7c2a04e218f21b93d0c7d576ce6e26fe75ba64b3 release26-maint +71182 46b6b8415dee76cfaac1536b33db7b9e5c7da9b6 release30-maint +71183 b14e9ec9d99f5ecc1b61a32cc7bcc9eb6449d548 py3k +71184 9a912a57164f65bb513abe9e238a534454e8ee06 py3k +71185 68a9e6e38afa8dd92aa51bc4c70cecc57010dd7e py3k +71186 c17ef14bdf41caa3ead46c96296b0077a279c75d py3k +71187 35630c3edd33c8090b5477a79c2883b99e273fa4 py3k +71188 ff7933f44c4162f5944a08de7ae792c519fea83a py3k +71189 aacf5094a1b580fecece4a614e7435c061cd3897 py3k +71190 1d793ee15b6f6e8d8d13924e91a87ae38515edec py3k-short-float-repr +71191 49aef4141b93f28753f7caa55e8b4ef8729d5570 py3k-short-float-repr +71192 5bc8cf3d90b35531283357ab062adab7fab0de5a py3k +71193 a014dc47b552eb7e372b741fe8debeed551a5c9b py3k +71194 ee430e5075db2adf8124e6b94916a89ca41d3171 py3k +71195 9ef7bf4d85908639928bb15f887a4b1238aa3971 py3k-short-float-repr +71196 6de8636cd81731e94350938df6a669c017403cf8 py3k-short-float-repr +71197 b4ef502fcca0287ecc7945d22954ccdc1226606f py3k +71199 bdc574782919d78c11520d4377442561b03b5783 py3k-short-float-repr +71200 e02bdd6085ffbeb5b6d29906cfa466786b926bcf py3k-short-float-repr +71201 761048a0a8d99b9670debd5863b4cff3e2d17d36 py3k-short-float-repr +71202 327263fd2e6663a11cf6b34ee46c1aabc7d4f4b6 py3k +71203 19b0db1354f70e76b9a57c90bc06e7719ae47050 legacy-trunk +71204 d900246205687e91d1415317bcd9d2d23d046048 release26-maint +71205 fdcfca715bf3dad0de8bb4644639909459f728fb py3k +71206 e6e5a0e4354346b53d97b7fa883857428d5ae56f legacy-trunk +71207 0fe38bbd973cdf1b3ca5b3d0d35b7336329f9044 py3k +71208 de5f18639a6ce1fc39f366b0fb7565567bab4707 legacy-trunk +71209 78f310b961c02fcbc723b0db06638f1d52a2f59e py3k +71210 9384b43d426fee5fa4d55de56e525d38fd8a9470 legacy-trunk +71211 addd753ba4d96b7366bd38ba5975dfbb937fdbfa py3k-short-float-repr +71212 18f1c56ca6fdbf0d30e8a4b48ac344d9cc203a51 legacy-trunk +71213 0f7708b0128c07aea445577943d23c37a3525dfd py3k-short-float-repr +71214 1ef02ef48c424bfc89f354cc8f89592292fe00a5 legacy-trunk +71215 5e8de6c3e0027526232665d3b4b10d1e2d4115d4 legacy-trunk +71216 e421a92b252078da7fa60af50d6983cfaade9183 legacy-trunk +71217 0006b2adc7e407839b866dcd82caff8613487e95 legacy-trunk +71218 587a2aed39f2ed3da41046bdf33865b7db736e92 release26-maint +71219 eb84530577a53a299cee6a74a509c6326ecffacd py3k-short-float-repr +71220 f5cb3b33b7941a704a29f1fc6255317f1f152322 py3k-short-float-repr +71221 f550e2463062993ae9cbabd5e8f56c56cc283d2b legacy-trunk +71222 2bbb60c00eb725782240c380dd2f697c15b3321a legacy-trunk +71223 01f4e8803ecde006140f4768076746d2da81a043 py3k +71224 98f42392835b69aed5fbf803f7b9f35328322902 py3k +71225 a7c74e09de3df0ae0016c5d2fcb7c2616e070d07 legacy-trunk +71226 152e08dfc1af5e57a4e322c48a4948c4e7051989 py3k-short-float-repr +71227 58d171780fd8954539cb561f420cb191a785ce9a py3k-short-float-repr +71228 5cbdb5157fa76c5007b4f6e735ac7cf6a406e06c py3k-short-float-repr +71229 bffa77696926dcf591c1fe372e009fbf2891dbb2 legacy-trunk +71230 eb32a1537dd7f8b9efd37d63dece342ff9412926 py3k-short-float-repr +71231 f1cec37698fe8d0419455ab1d4100c1004188529 py3k-short-float-repr +71232 66354bdddcf76dd4f3188b24e10404f8e72b6506 py3k-short-float-repr +71233 1cbeabf888a14642c1c10d6828a31c79983765d6 py3k-short-float-repr +71234 eb94517dfbd6d7afb0ebb982bfc13448ad17d08c legacy-trunk +71235 85c5ce6d7f9c7cb09b6214f4048d96736aff1274 py3k-short-float-repr +71236 ed7833d482c81f2e77ff8c4e9d5d92ebb0242d99 release30-maint +71237 976b305aadd29e0e2ff902f9e37ed54804517c4a legacy-trunk +71238 6eaf97721d3d8ad1f110cf9c5c1ed11802b87f5b legacy-trunk +71239 37d6af6f85aac4dd8d447d9ee1e142e87a0ed93f py3k +71240 8c61e7caa06cf780a458752678299ed37fda53ba legacy-trunk +71241 da1e5483aca0136a5b5d8ddeb90917ae4f8f941e legacy-trunk +71242 3bbc68449f94e7ebc2a11bc08f46a34012701a8c py3k +71243 13ef1190eda9d64e15bde81b297f3751279cb7d7 legacy-trunk +71244 24ed5d851720cee0e02ad5a2ad767a314eca7ba1 py3k-short-float-repr +71245 8ce9edc88969b8d8e1fd31836775547351b9b7d2 release30-maint +71246 b9087b645cefbc43bc39c7c20a037866acfb5aa0 release30-maint +71247 7612aa89bf060ecd2cb5c7cc64aa7d27c8bf66a0 py3k-short-float-repr +71248 a7e5b9d90b125fce6ed7d0c0b3b3dced4c7e08c1 py3k-short-float-repr +71249 8d22873e9b26d1d59cf0d37581fb5b15b6820ee1 legacy-trunk +71250 43c889feda40b117623997711d63a1f2feca8bc4 py3k-short-float-repr +71251 bd1336a3a6863ae2751ca26477ca3adf63dd2828 legacy-trunk +71253 b2c68df944639dd434ad3b38c344cab8118c9256 legacy-trunk +71254 e74083301a36e08755c49aec8af16fbe055b87e5 py3k +71255 a16a0456978f7ef7e98b32ca7672f697e28c5a1b legacy-trunk +71256 cfd7136941a099923f890c2b185fef3da98807d5 release26-maint +71257 ecb2103ba0279ff57cf42ad34247f27618205e93 release30-maint +71259 7b4ef0b87ddcff93135cc103441475098d55e100 py3k +71261 792bb885029fbfb285fc9d39659f3d2e9ba89729 py3k +71262 4d97611d1cca48a14ffa1b69389566432c839f9e py3k +71263 672b0c041ba6384ad84b3bc3c669bd389a2de4e2 legacy-trunk +71264 c9ecd45a5ea2f103a34e48cdea0918c1e9bab887 py3k-short-float-repr +71265 14e00f0f78b74cf4104f75c9fa0c201ff795d6b1 py3k-short-float-repr +71266 2d00ff3d2f5a3c5cca8358fd51bb3b501efe8fdd legacy-trunk +71267 a14deb9480f4d320dad2c6233acfd44784dec64e py3k +71268 f8c576faa9ad13e9aa66063b8b8df90ce5b8539c legacy-trunk +71269 54d5f2986af42cdd78bb726af0fc079781769adf py3k-short-float-repr +71270 fb2ea8bb3a33dc76fd854142df8817406b463e42 release26-maint +71271 b0429c7fa71aaed5cc932696e093d5a5246c1281 legacy-trunk +71272 4acbbb3e65e2b05821d43689ee3af5ba57304341 release26-maint +71273 251bfd2d996a2dff8cc13264aa85bfae58b18462 release26-maint +71274 d3887dfe661f9362c3e2cfc13432422e60e14597 py3k +71275 3889d9528601e3be18a62b848636a60b2d450c58 release26-maint +71276 969ad10a8a72570b81c584a5a4a13bbc4a90e22e release26-maint +71277 d088436ac36b10a9f33cee918f818d17d0cc49b1 py3k-short-float-repr +71278 8237de632d6f6815a36882f96453e4a9be2d81a0 release26-maint +71279 8b53150134f5db14d223de0a23b9fdf05a75652f release26-maint +71280 9a4b19330aa931abd35861fcfee624ff4e0c4412 legacy-trunk +71281 7e7813ada2d181c47249b79a93fdef33f8fa0d0b release26-maint +71282 f3b26a729e82f8fffb174d493c69c6e99ab89058 release26-maint +71283 f67a4f1f230d740fdecba53b3594f8fdf932409f release26-maint +71284 934d9c3cba4184b74026938e67f4e7897c6627bc py3k +71285 b69349d4b9e88316b75dc828647564d49f46b705 release30-maint +71286 d6de6844fd7141b36c646d060b897755668cf2f7 legacy-trunk +71287 24fa7ddd4dcce48b1dedf10d67ead30c5d9c3fce py3k-short-float-repr +71288 1d8cb76e719b7e05084291b2c8d2cc215c91be49 release26-maint +71289 b36b00ae29ffbf6e553bc644270e3a72f6c85cea py3k +71290 b33bdd2414023589c6efcada5ee2254053c1f51b release26-maint +71291 433de3d596078d1ae55ad25974f087ab082b5a90 legacy-trunk +71292 0c6b16a2f91b75ef2170a36bd59f2a7f8625e6de release26-maint +71293 548ca34357cdae5c7f19552b1a6cf2bc7c9addd7 py3k +71294 da0c1f74ca200bc8a1fbaf01a2ed4b260dbc2998 release30-maint +71295 4b881b4a90e95eed7fd4526c99afb1fb21510e93 legacy-trunk +71296 364bd002b7f8679fec13bb51f128302dc0b0b1f5 release26-maint +71297 5a7a33c94d001c8bdc7c8866fbd2a5359644672f py3k +71298 ec2e4b5a0e90dc4d60dc0241f0912eed23118453 release30-maint +71299 d36a4f9203783fa99adf8ec3973a5b6d0baa4bb2 legacy-trunk +71300 414a31181e9dc3801cb73fa70e1776ddc1002f13 legacy-trunk +71301 73600515999bca0f1de04964392506d659a53ba7 release26-maint +71302 e363958fcd70a43ad07b39df999552d0fa1cefc1 legacy-trunk +71303 c6c4398293bd682b355f1050bb16bb3e18c8b40f legacy-trunk +71304 986201aca68b4344bfba39df8cf94147448fe3e7 release26-maint +71305 2079edd52858742cad91b19319ccf21d6b877495 py3k-short-float-repr +71306 efc7e13a7542325bb3f7309fbebb24ec5487d757 py3k-short-float-repr +71307 b4881f8ec706f81213bfbcec1d8fd71b3b04405c py3k-short-float-repr +71308 8592677eb352cf85c6055b9dbfd9057e7eb67fb0 py3k-short-float-repr +71309 066fa0ba82900fbc249872f2ae74a19ddb97ffd4 py3k-short-float-repr +71310 7c0ff0de62956f1777ec731665628d43618427f1 py3k-short-float-repr +71311 99687d51be0a14271fa62a9cf72dd75f2911fdb8 py3k-short-float-repr +71312 e012986be4f4e52f9ac168dafef5d84549aeda41 py3k-short-float-repr +71313 526db28f100d2125bb8355534e58b26abea7325f py3k-short-float-repr +71314 30b50cbe5c5e5fc8f9e9f0ed0a2a1106cc1d0263 py3k-short-float-repr +71315 f7f70139ef570dfb3c6497b6136a1f9eb95d9b04 py3k-short-float-repr +71316 cee1a86c69c15e649c1d7559b9340259f642f9bc py3k +71317 02635460261e9af1a937c9f60cf0d5bae8bb1eba py3k-short-float-repr +71318 986452b526a1df6ce0a833f40315cb01e0d6c303 py3k-short-float-repr +71319 06fa87f3ec36271fd04740f3189a009efda9c85a py3k-short-float-repr +71320 5560a068c05795fa05005217bfb3895fe71a8fc3 py3k-short-float-repr +71321 e4eeb0daf62546cfd3767377eb62ac71d0eef306 py3k-short-float-repr +71322 45fd2270ae1b8c1d089499a2ad9211c567f2881c py3k-short-float-repr +71323 c5e0c6f656e63685e1a9860c6bee1e6c0926392f py3k-short-float-repr +71324 076c72211561119659640a0267e6619de3f6ec01 release30-maint +71325 b9849efb27545c683d424dbd8646e042feb8cb87 py3k-short-float-repr +71326 8d69763a2317b540618fcfb0aa0cb7cb5fdef468 py3k +71327 d3470bc6d1918da978576f9f5d8ee187d479e952 release30-maint +71328 4a67d691472585150734580b9b865e5d0a717e7c py3k-short-float-repr +71329 d81985182a36d60860ad4ee6432d4c763b404830 legacy-trunk +71330 920b079096003d4f74d6e731ed8e9d3e7ae91faf py3k-short-float-repr +71331 5b01fe513f92864ff5bd6917e8f0806388027f4e release26-maint +71332 5549e8ff28d2cec7a3b27be165523acd3e71cd04 py3k +71333 f66406f260441f30f86ac6a3f2d24dc2f00dbadf py3k +71334 a0edd91e9c6f31262bb3fa12424a0588634d1875 py3k-short-float-repr +71335 f824dc60106f108f2c659b2d0eddca085edc9095 legacy-trunk +71336 6093fdc5ee962de0cee9fbb266b2d865f9bab8a9 py3k +71337 7a39f7e42bd97cff26bc91335359a5470ae4e720 py3k +71339 f391df93c9abd49f7d020dd52d41735cb52245ed py3k-short-float-repr +71341 3744efa456681ea847d83c3e75665c87dc999c53 py3k +71342 9768da86cf8e32af61795f2b74823d50f197aa56 py3k-short-float-repr +71343 28bae5ca5218d04b2ac4852f8b38664c331083c0 py3k-short-float-repr +71345 69114a356cf0da72ebf43d455c1581d249b8b6fc release26-maint +71346 8fbb9936d4da2b17829397800866b7df9eacfbf9 release26-maint +71347 6fcd10ea998a926d537c064560eb0d44f6e79397 py3k +71348 da73c43e691edf875d1a7223f91aad7e81cb4e29 py3k +71349 716f5958b5f0da0a61fd27180032ffceeb698580 py3k +71350 6f4a088d359d6ce6f97989f84360719601c0ec7c py3k +71351 c37bb1b7a47a843e20d80fce6e8677a34adee308 py3k-short-float-repr +71352 49b24922eb2ddf57f93321fa57144980a325da72 py3k-short-float-repr +71353 674b2000224cc89e7cbc1ae4d10ed5892632b329 py3k-short-float-repr +71354 31582485fbfcd153471f0d892d9ffad2c3550373 py3k +71355 153917c001befafd26ad37ec25119a707e1198b0 py3k +71356 f92533925ea662705aba0b07bd6532c0817f430a py3k +71357 94832455e37d590ccad784019dbe81a6c2444b38 py3k +71358 75def7ed9d5fc63f905abb2dd8039a7abc4b5787 release26-maint +71359 c39c1c2978f94f5b4f842c96aa4538e1142359ee release30-maint +71360 2b083146acf5c2668846d56f7a4abff32f039b17 release30-maint +71361 b50f11b8cad7f41eaecde1349144a04d42489489 legacy-trunk +71362 90d32381a340fbe425ce0d719bfc4d2922eb9be4 release26-maint +71363 01f1ae83631ae82bd8598a11c17e3f9b3f56c38a release26-maint +71364 275c0ba748589e8a67f1d6a1a2b275a36ba33e3f release26-maint +71365 5e8c3e7451ffb79ce118fc297d86ec3dc010cf99 legacy-trunk +71366 9ab524170f682f332ba0bba81565a82a1e801ad8 release26-maint +71367 fce3ad4b23d60c35effd5babe9fc2d4a7fce7590 legacy-trunk +71368 5ce23cfb98c7f5fbdf6207076ede6b1c13de67d1 py3k +71369 c842011893873eaf0b877782d4485191f7425156 release30-maint +71370 e23252a8ff5926fcfc1def87949dcde6ea4158e4 legacy-trunk +71371 5a494623cf3a814b9e2e0bb766835b4aeb3d8425 release26-maint +71372 6c46d6db2fd6a9fb1b5780d347327ce41fc17cba py3k +71373 d16cada96370190738051fc5732bf93caa21bbef release26-maint +71374 ba3a9ebce81e7c2caaf2abfe611b7c99f0d45c32 py3k +71375 379970309475564f9a6d8931aee7f90e6b515705 release30-maint +71376 bc79bef55aa806e83154d649a22df81d00b0e980 py3k +71377 41e7202e9f93046dfd53fb3cbda757da6bd697dc legacy-trunk +71378 248adfcbb71544c6a57350fe78a6cc1fea57d0c6 py3k +71379 db18e78b92d86a031f0bb0cf190b88f986ac812e py3k +71380 0a1cda1e7c1c7968731ccfbd2189f03d1ef288e2 legacy-trunk +71381 d04490bee2ed48d2b9db6799c84258d02c01e1fa py3k-short-float-repr +71382 091706e1405607a7633c87170f88019e94fe4f57 py3k-short-float-repr +71383 ae5f5156b88266ade4aa83884d4904bd2fc0d516 py3k +71384 f710555053bf2f8f62e03605cbe0820aa8119fc6 py3k +71385 1099410157033074b7ebab9e5a840023a77779d7 legacy-trunk +71386 251ef99dfb4c401a84e890c990cd201bfdc3a489 py3k +71387 74d9f75d9dc1fcfd0f44fdddc75846074b6aa2da py3k +71388 19f7d3abe7cde27ffa1462b98522977ab240884d py3k +71389 df0ed9eb79c36545f1cf132b12c01dd256bce475 legacy-trunk +71390 fd180bf47227fd6a6e345b4faacba45e12d7c24e py3k +71391 a98c509084eb3562cc66cfbd63fe825aea485a7c py3k +71392 7b8962f65918b3e49597c2376b4cbf316228f274 legacy-trunk +71393 61e37effae3aeaf30e87846154d18c5b5fd1c996 py3k +71394 fd16e579096e3a390fdffa01d607618537c300b2 py3k +71395 0bc0524d17cebc221a909c5f3674007bfdfbd02f legacy-trunk +71396 02224cb21d7cb95eb451c3325cdeb63c8fda64f6 legacy-trunk +71397 b1404a868d8f48ed57ebc59782aa5a41bd5f9774 legacy-trunk +71398 5a8ebaba1a09efdfe6432ddc8fc72517d9081abc legacy-trunk +71399 aff2b15ccc6849ad1c636da013ffb8855183e29d py3k +71400 67d9d6160c134cdd8fd8ed72c1cffbee849d9e10 py3k +71401 d35c6486ad94a6859603776fe6fc358c42112cee py3k +71402 63b57513b1bdd40120a3349af37ebb5f9a2bc710 py3k +71403 d9088efd558bd0b358db17cf59ead975e477b749 py3k +71404 18053cf6115a52a77004b5158d51108d892f3c69 py3k +71405 c2336957c5354dc0b23860fe51c35b8240b31d10 legacy-trunk +71406 3086427b070922dc4aff9aea0687dc5dcbd637f2 legacy-trunk +71407 1cc94997cfa7edc5fa991458f81a48100b279af1 py3k-short-float-repr +71408 9a7317ce6db994aae20abea8e6ca85a93eb72751 legacy-trunk +71409 536761c2b6a4a20d54793ae150326c0f2a7a2a53 legacy-trunk +71413 40eff3b182e4d2ff91bc30fbd4195c88602625e0 legacy-trunk +71414 dfa91dfed0b05496c216d3820c0e2ae30b446f81 legacy-trunk +71415 a788facee6ef4d7837d02d0bad77f5daae6693e2 py3k +71416 5ad204312bcc306b4812da9f587e37681d22b084 py3k +71417 2ba33c34dc1a79646a726d63b11386021252e163 release30-maint +71418 07c3ac30da8704419bd56a0fa305e58dd7256ade release26-maint +71419 ade5c27198dbef0c96292a7057f6fab94758a7a7 legacy-trunk +71420 bc94b8323b39b29bd375365eb25b789b864da4cb py3k +71421 f70b3b5f5380ce545849de5afb047e1224c4bd36 py3k +71422 79e57c866b5f4e2fc1de80c45a7faa0cfc98f2d7 release26-maint +71423 b4b2511e03c7530a9a34d50556650dfe723fe41e release30-maint +71424 d3610e3392cf49a35b2417e7f78bf0f50fc2eab6 legacy-trunk +71425 09503ce66ff123acf02e732934770f7bf5db4f94 legacy-trunk +71428 8a4563d3b5e8895b98cb1d784dceb2f5eea4505e legacy-trunk +71429 a21c848ad61ec4486948765fe8776e09ea6aefc6 legacy-trunk +71430 40eb99e8935c64de4f7d59079f57c840510a66ad legacy-trunk +71431 a6ff17a42ad31c7a97f57f004f3c25b829cc2208 py3k +71432 1063481a36f8a2a2a2a45d14a9415122b8f50f25 release26-maint +71433 a4bc80f5d6a0f6bcc519bf2be0df0811c5acea28 release30-maint +71434 cbaa1bc350ba20598bed3c9adc391ba2e0c22d2a py3k +71435 5f35c53a3ad7b8e10ef1d3a81e7c389a47b38cf2 legacy-trunk +71436 f9689d150bb9fd82c33216b63b84665c2982d0f7 py3k +71437 0b9e68971a1e2f920a095788b84dc582a62add8e py3k +71438 9ea9574daa5bf694ca57714657abfc469d114582 release30-maint +71439 4a7db412fdd2af8e2f019af50a6c3cb19ffe9019 release26-maint +71440 aa9b0a6d7addd6a110579e54fadf99b75c06b773 release26-maint +71441 089c72107d7b1c61252a83012c3094b0f0a811de legacy-trunk +71442 916943cf52436f7743ce390048bcb0a24dc15e3c py3k +71443 dbb9b7176eef0c6e06555aafeafba30fbdea174d legacy-trunk +71444 9d92eebb7c30503dc006b7984eba23b08676e4d8 py3k +71445 b614a51f44236a6f8adff09706fd5101f316e23a py3k +71446 6bf426e551d572e0c2ce51fa9cf2ab99419ff084 py3k +71447 0327504a4f6a1ae47410318c48619ba4c784507d release26-maint +71448 4cddef144428244cf0f8e0e2ce4cf46fc68709b4 legacy-trunk +71449 32366b3e0ca9907252679da76975194c3f8f2bb8 release26-maint +71450 0c11c3418d89d486d3ed198c80e29067606433b4 release26-maint +71451 9a8999977363994e3a9868d34ab132861edeaa53 py3k +71452 b912515fe9ce22ea7ab90cf9d87b5f90d672e760 release30-maint +71453 2797e5e6008f0fe4bac23ade7b6c4fe6ee8140d2 release30-maint +71454 15d6075c085b1e03b283f077d8756d853233bb80 py3k +71455 c95026c2f2ba0c3e1e0d656db07ca22d607592b4 release30-maint +71456 f0f60892cba1c93802c71505f104b0e4255488c3 release26-maint +71457 06b64178a30d0fcb0864cae4dddf5fa623497f72 py3k +71458 0be63c75041adf7c46475419f58301bd1f62603f release30-maint +71459 1a8bde18d35353993df7a2a5cb5cefd34d8dec75 release26-maint +71460 78a9739dafa413fc23cb8e3df542b64ee39adc7f py3k-short-float-repr +71461 f724974b8d89b335a94b46c87fce823db0323fd7 py3k-short-float-repr +71462 7e229ca0b92a5e862b46707265bb1aa21ae577cc legacy-trunk +71463 d93920a25da4c8c6c2e575cc981f9f35036b1ab5 py3k-short-float-repr +71464 8f13a414d8432958e5d716b312924b7abb75b889 py3k-short-float-repr +71465 fb41fe67e061a29c44809eee7e687cce6df89dfe legacy-trunk +71466 1c52b1454f1e202faa1cfdca81ec2fe7e3ff53c6 release26-maint +71467 4411224cb80688b41bef7f0525c8b63f3f65d65b legacy-trunk +71468 2a03cd04d8f40861b20c6cc72fab7289cd429160 py3k-short-float-repr +71469 f652fe1649ed8f385bb46677520c6cb832956ef2 py3k +71470 f39d33752582155c6ca71ae23b1e14429dccf3fd release26-maint +71471 8b2cdfd5aab6fc33e0a0a4682215ed31d3652347 py3k +71472 ef3592e9e01e5d59fee60e2c3d9859963ae2ce99 release30-maint +71473 ec239cfa3e61785804ee46458593bf1fe0f84541 legacy-trunk +71474 bf2eed865a8a4c35920b6676028459e092823c11 release26-maint +71475 4a35c8a5be46fe9cca562f20174fdfb9610cd5bb py3k +71476 0003b5b4f0c0349c455505feb90fd98225b136af release30-maint +71477 63289b82c84903010a8309517fd787ead67a04ee release30-maint +71478 903569b132c2478805af0411635bccbb25dee9d8 legacy-trunk +71479 2e38c617fd3eccebc1eb34725c7fbac9288a7de7 release26-maint +71480 3455fd78467e65837b73a8d8a50061bdb01718dc py3k +71481 37327d1912a8146863180b484499790473f06337 release30-maint +71482 5282c66d89725bd4765b35fbaff2d1b0934abd22 py3k-short-float-repr +71483 2f9c7b90a79580a8e4b14e7c1a9fd6094aaaec56 py3k +71484 f376a3ca17d37f9a32a5a68cb2ffef47fd08fb95 py3k-short-float-repr +71485 2d37209885e27eb9d497ed3e9c34eccdee3a797f legacy-trunk +71486 8861298586c10f1c5be594609bbe7a9109977f98 legacy-trunk +71487 d0b744303b84e3254bb059e489b072337459fe34 py3k-short-float-repr +71488 c949ddc494eb866aed6826c7485ddef81d308be9 py3k-short-float-repr +71489 297050ab7aca4769695a2f3ef2cd46e7b35e6574 py3k-short-float-repr +71490 f34281db47e61abba9da339c6db152e706d7d338 legacy-trunk +71491 362998286635d04fa7f3ff5a91097ae5b6bd43bb py3k +71492 4af31140de29daafa4e911a9d480ce3bfadfcb09 legacy-trunk +71493 1989349379b5ac5d7c359f6907d85d0bc16a8fab py3k +71494 d5ddd3421c9ae68c4b231493cf17f34222e2d031 legacy-trunk +71495 7e978ca42930a906b0ccbf3c237d78d6e63814ee py3k +71496 3b1b6142690aa3b33d5b0e22f54569b3c7f14e41 py3k +71497 037f5f7e7ab1e6da06f33be2f8209afc3265e27f py3k +71498 fe5d07beb5d37f877d74bb1e47d207339933c5fb legacy-trunk +71499 bb8164db1bda67f6c4c4bc37c21e3f88a89ea2e6 release26-maint +71500 48485604ed487b1dd43ad03082576ce5a352a97e py3k +71501 cadf955bc18bd15e28597caf79c60642dcc7c692 py3k +71502 f221fce3d6ba38cfd8c88f04268e8a46bae1d7cb py3k +71503 021d8c82f28447fe478d4210851f303b986fe1b2 legacy-trunk +71504 93d4f982615f264e0df96314e554b1511f60f31a py3k-short-float-repr +71505 d23e84e418ce8d73a11a183edbf9d10ccfcfb321 py3k +71506 4e08b18e38fbe14fd34b1df8e5801cf4db579277 py3k +71507 ad3f3d304963cdfb228d1dfc721a5a0fd4066bc6 legacy-trunk +71508 21ef4758cacd430fae8a20e545e962f1cfbfec6d py3k-short-float-repr +71509 a824431252e0f261d52391a48021b0075a33510b legacy-trunk +71510 293dc5f08e990e3d365b9e25168ea3f7d88a0495 release26-maint +71511 e0723ccee74df11db7967c8ea5bd2e651a8921a8 py3k +71512 a48fceb0f0b3ffd0bfb9eda8d5f377f57c2101a8 release30-maint +71513 754a3f73ff07fa56def30e95eebdd97b9cfbd2a9 legacy-trunk +71514 3b25911c6a4ea6a8e06ae6af36e907dca0022cef release26-maint +71515 168482eafb561db879745ee9b4e99755c2ebcf60 py3k +71516 e2b9b2bc70b0ecff0b269db290eb3a4cd8059939 release30-maint +71517 713ef68e7ffd00a526ee70fb040de626e6818aee py3k-short-float-repr +71518 4ca1471bd1cd3686099532d511c7f25b16e5d463 py3k +71519 f4d553ec9ddc97e72339827bd18726f7c4d8e880 py3k-short-float-repr +71520 d7c57e16b73c5f3dfff63ea88749c1d8da172ba2 py3k +71521 4407e4d0708421de83a6f0b46a50c87c271b56ce py3k +71522 1cb3bcce83167cdd2ea0bd11b685170c2e71eb0c release30-maint +71523 26069d3b68919add9511943dc63a7c4cbce7b26e legacy-trunk +71524 46167ad3ab93fa8470505adf11c32b32b6ba1282 release26-maint +71525 c916f854faeb2b85e3bff8db911fc3e3fba98c7d py3k +71526 8867a5b60a913346a9ab90aa144e29585592c0c1 py3k-short-float-repr +71527 6506cc33ebadc194ba87f9cde4ffc4ee3a11ea14 py3k-short-float-repr +71528 536f180f66a7761c55fe8572954b909718d4a10a legacy-trunk +71529 140928c6cf51f013f80a86b696ff70abb8420c6d release26-maint +71530 8c82b7c51bdde30a5af4c4d005e1db92fca0091b py3k +71531 42729eddbb6c0b032e9fbdeb162aac6f73b658ae release30-maint +71532 d0a73cf46180d412a754576c0bb1fcd1c0389db1 release30-maint +71533 098885c6b101d08578afeeaf24308abc2c837b5e legacy-trunk +71534 bbb63c71a983191434160556ee72ff81f3953d80 release26-maint +71535 93a2d80cd34d038014d2a7bfe30fad38488ac30d py3k +71536 66da514e3fa3952900a9fb896d64ad6faa644185 release30-maint +71537 a2492b4e505df3fc337ad25ff68c928783276c5c legacy-trunk +71538 83228bbe590678814e4e44ff241354f96028787f release26-maint +71539 7e319eefab8c8ef84e54d24e90786bca1e0a11f9 legacy-trunk +71540 480f7ec3b869608ffdb8822cdccee5a2b5ca395d legacy-trunk +71541 2eec57abc5238f397b2e7f73fae38e38d39d17a8 py3k +71542 e9e2ae3bfbc1404330c1c45329866bff159347f8 py3k-short-float-repr +71543 8bc4bc87c8859e58917d3798b0469558678adf0c py3k-short-float-repr +71544 ae74142089d2bbff2693e4b0be5dd0b215365785 legacy-trunk +71545 da0f7fc787d826d8cdf7fc23f762d47aed567e4b py3k-short-float-repr +71546 bc5c5d7a2a1479a0576d379889926cfaf4cac101 legacy-trunk +71547 7d4499711a7d5adb2c3967e053fb2c2923fcbbb0 py3k-short-float-repr +71548 622abf6ac97fab390d32a318991a2b19eb45383d legacy-trunk +71549 12a8d1947167914ad039b4e1f408e10a25dc615b release26-maint +71550 5472789651e16110228ee61dccd9cd0e940d1a5a py3k +71551 c740fefae1bab0e91d1f0bbe5723244c67ccdd7a py3k-short-float-repr +71552 4607f54e76936b87dac788b4c7bef8b190932b6d release30-maint +71553 ab75da266e57c55e777024fbb84a6a3008dc4835 legacy-trunk +71554 3770652eb0e5098bf1c4260411910c4c93eb5321 legacy-trunk +71555 9e3c976da5f40527d39e714d21cecb7ece2c2da1 legacy-trunk +71556 5ef18f0f431091d05c2b4b261e09a18059d85fe0 py3k +71557 6f8fc6b167ea8b0108148594338b67649b094af2 release30-maint +71558 e49cd4f47f7620b027e96bc2802a668b06757fb2 release26-maint +71559 95132cc22ee5ab7b8daec6162eb32d82632d3087 py3k +71560 fbc37fbd9415ff5d44e72c5f11f58c14d8ed5413 legacy-trunk +71562 0e469da67d63a5f48b5fe1f4c0c96a654c1fe6ae release26-maint +71563 990f2579eafec9505eb033ab31b9f8b34312ce38 legacy-trunk +71564 1dc53e0a147a70436bd9636f61ace8e864c628fd legacy-trunk +71565 53098f270bbda03f72eba08e6567ee3f51779f6f py3k +71566 93d2befca0a54fee76a99077351690ae7d1857ce release26-maint +71567 aac70a3ba250f3a46a2c912d908cff9cc4e3ec64 release30-maint +71568 74a4a27ea291cb1fe69ceaea0063b6b7304aeff7 py3k +71569 8a173057d9031c52f8e16d8255f78b6252cf7a8b legacy-trunk +71570 3ba65ee41fe7ea8dfdd393853cd93924981c2720 release26-maint +71571 8eee94c74e9c987c92e278c0f2b0eedaf6e0a4e9 py3k +71572 56ac3d50952c877d01a05f37441cafcf95209b80 legacy-trunk +71573 774f7bcad22c69f67d31e5305195331119b1a29e py3k-short-float-repr +71575 9fd66a21abd1967d3f08414d199a685c9aa0404d py3k-short-float-repr +71576 28ea54a6bb646259ea63dface35f9121ecdef858 py3k-short-float-repr +71577 c66d4e306fb6852124297152a2cda7e33fbb04f2 py3k-short-float-repr +71578 a4cc46cab6a74312baca7208d7f48dcb65498526 py3k-short-float-repr +71579 c8fb398eca23733647ddfce40e6af4884ac2bc8b legacy-trunk +71580 57b8dc4a8888ff91336a3376ae9adcc93a195c8d py3k +71581 ccf0e6409536d8c2c86b6d05108331c50692a97c py3k +71582 58b74967a5425cb71d11e466218d1b410d9bc868 release30-maint +71583 c97e45e90599e65a85e08fb348499d8448362380 release30-maint +71584 177e1073052c859bee17ed25d445630707119839 py3k-short-float-repr +71585 4703965da2cea9ff843c20f1751e33dc7fbc4ade legacy-trunk +71586 e09a671a590b7ba5e276464079f2bfba3f419c46 release26-maint +71587 e03ba5f6f4940603e0759af36fe12d198a4f3352 py3k +71588 85bc2537e83e3d96245f96dbe6bd71a7d77d3e43 release30-maint +71589 7baa68d66c8fc799843350fd0084b533eed36400 legacy-trunk +71590 71f48adad8923e7d9e791d6b36df1c35d6b37e3e py3k +71591 60513808577f32394f297e8cc2ea3c7cc6d3590a py3k-short-float-repr +71595 096767b1845018658f4a3fdd3ef3462657752391 py3k-short-float-repr +71596 e7dbfd023ff521eef93cd33e6134db69f0636146 release30-maint +71597 794525ed64fd423bc5ca131e70ba14ca910aba85 py3k-short-float-repr +71598 dad3d2b9a8753f45f196b700644cf9efc26bcd8e py3k +71599 c17c5ba9bb6cc7bf76a253340cdaedfda4db033a py3k +71600 4feba09a826ba99e5b482707b3d9643eba34156f release26-maint +71601 698fa024e7d239f3adb7a03f77e35787e6f04993 release26-maint +71602 6d95d9793fcf50002073945e4aeb0d3ef150fa5e py3k-short-float-repr +71603 2fd08830a93f1328190505dd8c19673532d50b7a py3k-short-float-repr +71604 54283b4a1657fcfb6fd47ad43ed73d05fd3d7db9 py3k-short-float-repr +71605 ad3accde0ee7a7bc5e089277dde9718d811e6854 py3k-short-float-repr +71606 0b7e414183433266be7e69bd364729f4532af8af py3k +71607 fd7f36ead0c8170bfea63d9f5701efbc1ff2ed10 legacy-trunk +71608 9df5ddc198a800bea24a206a96f741ea04d2006e py3k +71611 16704b15df3ebe7d53d5da062ed1b43ee0021a01 py3k-short-float-repr +71612 c243b10ab7305525e50f8531a2c9a8d1fb1afa92 py3k-short-float-repr +71613 29729b908a820dcac30f8c0f06442995fc5530cf py3k-short-float-repr +71614 b8f41db8f6ada08a57e1f37722df882acd013e98 py3k-short-float-repr +71615 abefca2fd92e21d3c3765a6d7a2aa8b9699b15ec py3k-short-float-repr +71616 a74e10191854d21a06158f3466414f361c2df20b py3k-short-float-repr +71618 408761ca3d9663b6ead58d77b94f97cd00deb999 py3k-short-float-repr +71619 619dcac8d3890965b44772dcf77a7c523cb4d18e py3k-short-float-repr +71620 2ca209f3aaa294151bb37ce7ffc850780f5c9994 py3k-short-float-repr +71621 12bdb3972e2a7aa5cfc2cad3627c268bb7472652 py3k-short-float-repr +71622 d881b06dca388afbeed91817f9a1555388af8cb4 py3k-short-float-repr +71623 67340fd6ac8a3ba88841ef39eed0935140753662 py3k-short-float-repr +71624 2d6116eef2b367b3f92b87889189d78b6ea8b75f py3k-short-float-repr +71625 ce67e783a6ed23d86362f58d4679463335e44d93 release26-maint +71626 07d239eeaa62ef91b594ba54ca9af4f790c85ce3 py3k +71627 5b108ebbfc083e7fd31f7316359427819d8d8bd9 legacy-trunk +71628 4419e06219cab892cd56910343c0f2e69240c354 py3k +71629 df2638b9bee2edc0f636f4e31e0536900192434a release30-maint +71630 6bcdc131f53cbe310876108f9986c5654d918e0a release26-maint +71631 4628217b013c404fff0f6fb24debbc01d96eec42 legacy-trunk +71632 7a69ffc4f4ae366c5e2530669adef62f357a822d release26-maint +71633 20cf7f8a54052fa02a2c7ea9bcdbe1041a22713d py3k +71634 f325edfe0c3acbc0bb9fd340aa500c0bd1b07ffb release30-maint +71635 c54b784a56d55addb94ec2dff502d57194a211e4 release26-maint +71636 5ff90332f910e3b7d6b28069610820e7b1714c7e py3k-short-float-repr +71637 eebe5f7daf1e78b049f36acac70e52304326ceb1 release26-maint +71638 43ef74bfc569619a92e81c00e91a3dbab457f12d py3k +71639 ac93c3d8e19205b87d8c77a686e2246790daafdc release26-maint +71640 48b5fad9ce1b284ba75f2e1d65b80dc73064fe23 legacy-trunk +71641 77f909ac3e1022968d6051adfa74a3d8ad3902f4 legacy-trunk +71642 d3f020400ff27efa33aec682a9976f7dd057ab25 py3k-short-float-repr +71643 c524bfee703ae52c8a743205e2b674fde627dc25 py3k-short-float-repr +71644 3a11a2ad8f7b808e60c868a3c6d6bb2e2be5f44c py3k-short-float-repr +71645 a6790a3b80c3a240b3ca9cae32dbba506edd1e4d py3k-short-float-repr +71646 ce4f7f489bd361ac89664e9f59971a8b67c4ade2 py3k-short-float-repr +71647 4500adc31be3b8aec05d3a1050c1c19176e14eb6 py3k-short-float-repr +71648 edebc893b02ce0fb27143b101db4c1e4ffd7e783 py3k-short-float-repr +71649 db7304bfbf7dc3cf7062d65d2265f299199b1ed7 py3k-short-float-repr +71650 a28af55c6e58f02a8dd1dfdfc73162eafb53caca py3k-short-float-repr +71651 5d4729c4703358d4fda7681b4422ff2198b482bf legacy-trunk +71652 73bb494518dd6d3905c83568ba1b9bf3fa877194 py3k +71653 1f5f992801f9f69c2af906a9c2b92ba3f66c1754 legacy-trunk +71654 8f653567291f0bbba3fb37e24a4dfe0acc9cbe97 release30-maint +71655 f0a16e1deea13d88bbae18aff4837cc1ce7cf1f9 release26-maint +71656 975be1eb3ebf37db5c1c0aa43d1910a282664f86 py3k +71657 73bfcb3988862ab83bf507d15f752f8929fa7d0e legacy-trunk +71658 cf190ff2a72c4c4762ff783606b174b85e9b07d1 release26-maint +71659 a63b46ade2b7b61c7d06151c737d4e87ca1f491a release30-maint +71660 92f7a460ff828ddabee780339d416ad93c7a4467 release26-maint +71661 f02228d1f9080c2bef9fcd5a7bde74e142d443ae release26-maint +71662 89deb6bc82e4bf8504a9bc13f9e6d76517bff7c2 legacy-trunk +71663 97ae7a709c1d411a51276fc78a7f19f2ae992e4f py3k +71664 866a8beec065509e166b4b0cd614c4d0233069a6 release30-maint +71665 b653eab13b73286e975dad92a9be768b1a43ea75 py3k +71666 07c6b088968b2059dc2dc8d6e83cc8b63edcf71f release30-maint +71667 07c1114695e99f2f5b1b1ee59246763f1927424c py3k +71668 d84ad973cde25f665c3f26b6a66f7c552d22edf7 py3k +71669 cc5565415ada417dca3772472a4c962049f0dd3e py3k +71670 973f4d7aa87cffdaa68a28ccf6c1106f7523df73 py3k +71671 0cf7799fa1902a7c020165b96122619e5ab80a5a py3k +71672 00e057136fc677d543fec06991634f228c9aab1f py3k +71673 0ef5ceddb1c3dba41bd32b564d80cef2eb62cfff py3k +71674 c60c1d39a951651c0ba0c2a50e42ea678f5e5f28 legacy-trunk +71675 98a50a49dc8650bc957df22028790cc3227cd7b9 release26-maint +71676 212495b0410c33efe4e10362a70a369d9129f6ec release26-maint +71677 9eab0573d8454817b6e32262af3e6ac127ed5819 py3k +71678 8e51fae9bb75429d4d432562b597d2e392a0cb0d release30-maint +71679 82a2ef5963e0f095cfcc3b69803831d186a68a42 release30-maint +71680 db292eba7ec1aab16f54c45f100f7452acf6af2a py3k-short-float-repr +71681 c742920c45f771c4b76a2c7e349a926049f483ee py3k-short-float-repr +71682 6874d70546043257bbcf132658163a927d7edae4 py3k-short-float-repr +71683 908c63980eece06cb3b64319e4961814ef1dce0b release30-maint +71684 ab06a38b590cc4978d7d123971c41546281dd19a py3k +71685 a709bb5dfaf51165500eeef6b15bcc7122508012 release30-maint +71687 9862d5272d857aa7844012b288e1dfd29a0f023f py3k +71688 66fdcfa9400b01ecdd4373fd967e3ed30358c4cf py3k +71689 fe99a562b7085b28436b859ac919b54e20a42d41 py3k +71690 26951e5958931b8d2932e08e6d75e9982b2aa91e py3k +71691 8d8f2f98a752a765ddb05a57e4438e47cd4af949 py3k +71692 13916bb2eff07cc437e7dc70540510f8d9befcd0 py3k +71693 3e318c4af961c3a09693d7d977fc31647cb93491 py3k +71694 249d500a779a87c88a3cf792d7dc65305b989755 release30-maint +71696 02cb420d862e69ae20d860d32fd69a32356ba980 legacy-trunk +71697 858b9d08e34b4edee4a8e369f2806630fc89a05c py3k +71698 c84c75525bb35aef2f0def2e8b79d0c0276e090e py3k +71699 d895a42dfc9892da6b048f0cf248d26b8b3d216e release30-maint +71700 d6da646354d21e71dd65a49e0fbce7608ad0deab release30-maint +71701 d43d64252d3611d967ba79c7083bf06442947eaf py3k +71702 2ed0d7e1d17735788b446ca195e718c583f8674a release30-maint +71703 fe15526ebe8bf687985deb320f3b29f9acd50a82 py3k +71704 c5c8680ee0b1c1fa4cfe74a5ea4d01ece1f81486 py3k +71705 ad5c7eaccea11252ef842e79075fd485d1140f25 legacy-trunk +71706 8209b6c32e612bc457dd62ff55b18b262e60bbab py3k +71707 8a8dc7f8543e87cf661f8705828bfdcbf6026338 release26-maint +71708 3412156fb8ef6a71fc43a82af1c0e1d656ef40cb release30-maint +71709 79a6c63ac5b0d20ece9ab9ec08d9bcbf77c2f4a2 release30-maint +71710 96d82facd890e9f6d8e822973a9e337dcfac874f legacy-trunk +71711 6a7fa04d8111e4813b3475b91714e8b0f5c58771 py3k +71712 56887a2a90aef6393015fa332cd81d49add37b08 release26-maint +71713 fb08f60ab51117c8d46b9cb7a92bec244a4e28a6 py3k +71714 4fa47686c0d70fdec30127409448589816e52bdb py3k +71715 93223603c992206b8fd98257a2755f0affd35fa9 legacy-trunk +71716 4d998207cfc3e9cc3281e0a1ef992eb49962ba04 release26-maint +71717 72a7000a860942c5096cfa8e5ddd1f3d07c0ce05 py3k +71718 a4f117e920fda60e0fec6f8b3723df68b0fe0a0f py3k +71719 c4e9a875c9a54fb72ccb9a630fe37c145ca677e7 legacy-trunk +71720 dda14afa12b85b0d7a0c56d09c944ee283b2f60e py3k +71721 9755d8dd3366accd24621f49473d7a361a0bbfa7 legacy-trunk +71722 7790b85e7009be7ad21a15cf9f8e47e485fc7c8c legacy-trunk +71723 28645a9610042406a65e959c9f500914ee8f6e77 py3k +71724 c277cf4193d11c769994fd2fd685acee08dd60e5 py3k +71725 3e8dc59d64de44403645c2edc44d66e796296ff6 legacy-trunk +71726 329cb02f18e6f22e4e7ed503fcf84c7bb460742b release26-maint +71727 6ec3df375f5a8266763f47962a83001333d1b73e py3k +71728 cf21e9d29062f16a7582f011a974f2fe5bb3ba32 release30-maint +71729 72ff44c05295b955c463cea2e2a4e2a583dcb38c legacy-trunk +71730 a6d324136e0145b2958f9aace2155867ba2d177f release30-maint +71731 a82b53dbc65655daae15d52c4deb7c5c90678290 py3k +71732 1bcd55db35ded6189feb8c5a587b9a99079f1b5f release30-maint +71733 cf6222ca0bcc06d63c5569fcf2231ae043bd7794 py3k +71734 58915fc576aace3eca3f031aec859841626f8f0a legacy-trunk +71735 adc77a5d6a9626e694290e7f8a0fe405a85e7213 release26-maint +71736 d74b9a8e66f6036c16b44d3cf3736d9a43c02fb5 py3k +71737 d99503b6f238aec2628396efae5c496a334f43cf py3k +71738 7557716b6b1cb94be9749b0aac7a4e0e203e1b9e legacy-trunk +71739 48bf42c2ff7a8038ab9034d4f1de3bd35b8b0b17 legacy-trunk +71740 7d2c822269c74cf4484e01b661193f15aa8a7cfe legacy-trunk +71741 41a75dd9df78f457dea8ffd42021fac77e110600 py3k +71742 b7b8fbd010ca9b02506e652183f678b3be3836e4 py3k +71743 d50d4f09cdf7d752d74f0b86ffa1b32abd575f32 legacy-trunk +71744 b7c412d1a5cc46b8e6937e17e3a2f05c19490a9e release26-maint +71745 60729ee84822584627edcf3ef8b1a647c0022ef1 py3k +71746 e2c785ff0a50ff055af2eded081e29779c7168d8 release30-maint +71747 44ef8a73a8b7bccc2928227ce23cc652d62a37ff py3k +71748 1737aa15131086783f7834eb9fb0eb2d10ea77c0 release30-maint +71749 3f2920aa910cb39430e83fee461e2ad531340d65 release30-maint +71750 13807703afd0f58349e38238c8242f084b7cd3ad legacy-trunk +71751 03976a10870083dc95c979e7c615aabda4462b2f release26-maint +71752 0b3b8ed3622464095e5cc47e225511c76d345dd7 py3k +71753 2b17c9968981b21cfdf6104e4552d140d5f7e488 release30-maint +71754 4527c152daa939c2ee5e4a6b1e505d500fcf975b py3k +71755 227967fe44a426c944421558c91b07df3585d3e4 release30-maint +71756 42bf56e3482596ba5072b1e5b656c088977ba6f6 release26-maint +71757 8533cfc2420adc1366a940420c17fdda77473631 py3k +71758 04ffe6b6170910672f05fda2c13efda5d624c0e0 legacy-trunk +71759 cdb601441d045521d8ed0a2296b72713f795addb legacy-trunk +71760 a2d42310142be8138ea622ddaff34e80d25f95be release26-maint +71761 e42020a5220ae99b4affe0eeb56f63559c110a7a py3k +71762 05375c2e07424006a55f19c53faa0de0f5a7b186 py3k +71763 8091e0566fe320f2c5f8134165c20c58cdc83bab release30-maint +71764 37093e94afc778c90b4ba7503b8b0ca7effca6f6 release30-maint +71765 96eed7387cea3890eb59b6c511cd176d6587e34e release26-maint +71766 87fb72132d6bdfa11571967abb4b7289d36003e1 legacy-trunk +71767 13781b0f745a61890e4d09e6b24ea2f97b87d57d release26-maint +71768 aa544a54753ba8f6820e7721348a666d7d391583 py3k +71769 bd188ff342a4c6891e2c0e7297e2e3f4721ed382 release30-maint +71770 73aa3756c0b26b011392658244b74f5c1341fe8e release26-maint +71771 455f40d1738e8c06926a9b7ae49762ca5005f93c legacy-trunk +71772 8f28ce7b8e69a1415195b4c05bef39f4cf8d5f09 legacy-trunk +71773 41293fa6f0dd43a68f8986569daa45fcd93e15af py3k +71774 d0b13363aa21456ae00a7780de35bd4fddaa1fa5 release26-maint +71775 27ac8c8741cd592b90defeb8a09710ce6fd4a857 release30-maint +71776 cee1fc0763443b4e87bf1a73a348a82c76bf83f6 legacy-trunk +71777 9ceae28ab2704011a1e90b83865467c9bb617571 release26-maint +71778 ded46735255379ad8a44fa4c8cbff9e3ef0d0194 py3k +71779 93c929a2fac7d7229efc2ae747ad0b7517192e8b py3k +71780 c8a75710ab2501730dca303e7a24f4f8830dff71 legacy-trunk +71781 72c98b4bf0b568192c37b50f5f49d82b773c9766 py3k +71782 696dd2281841561eff4ec072d7a17fccd3cf6cd7 py3k +71783 ed3f51f2abfbb729cac6112b4ac053b1006dacac py3k +71784 a68e2dc5f5144d22d889dab73b40963854f96a9d release30-maint +71785 de63b7e8500dc2f90854cd35933468015c81b9f1 legacy-trunk +71786 f44d42a11b9b43a3cd8904c2972d991b02a8aff7 legacy-trunk +71787 77336d82ab950b68b9e5c2a8f859c1100746af22 legacy-trunk +71788 c30681c66b3fef2654b524dc27663f425398c80a legacy-trunk +71789 c2e4a7ad05f2b4759685d7bffff06f42e42e7a56 release26-maint +71790 414ba8efc8046ae4aeee516067ba87988f524422 py3k +71791 2b057d2b98eb074f2c11f2c1e37e86d950d50c5a release30-maint +71792 b0fea3ae3b6ef5620d9683247980fc4e9b36cd4d py3k +71794 f9f23f36c36ca8f41d0ec5e77a9d9d45fb1ca6e5 legacy-trunk +71795 78bfd448176331c8b23f3f7f99fa01d29512c263 release26-maint +71796 c5e0d9beebf9230853067015ac91715721c819a9 legacy-trunk +71797 618d2e3aca62ebda1fe826c39245c9f6fc1488e6 release26-maint +71798 611518d680dec24abd2bdfed6af40472bb427af9 py3k +71799 e9595cb5c7860baeba03b5520dbb68197081165e legacy-trunk +71800 330db954e5934e09b2bb649276d6577fa5e56d20 release26-maint +71801 b5df094d8941d2da4896ec9e8086f4a99b6034a9 py3k +71802 44a8a525eceb8067f84211ec08f4e73486598eab legacy-trunk +71803 6f42de72c2dce88ca10d63a58406966bdd1ecc2c release30-maint +71804 513dc6fa61c0b70a6b5df1fc650ac5e8723fae22 py3k +71805 c6e8c657158876f7f21398b2cb453a57d251de04 release30-maint +71806 9bf4b3eb0447269913538e67d4ce13103fd43d68 py3k +71807 24d81fcb0e3335f2e2a4e2ea42d58940e1d51761 release30-maint +71808 85597e55668cd0c938b2e6bf491a313143e8c895 legacy-trunk +71809 1f1eca681675a39e5a13220bef3fc035c23c7094 release26-maint +71810 1a1291384928932df53b722de06a0b0543236bd2 py3k +71812 2d09bcf7039555845e442a5c58815c3bbb7f2da3 legacy-trunk +71814 170055d7b4942b23b69bb2f836a7e96f293f5ed6 legacy-trunk +71815 ff9edcb36878ee861e93cad7bace9ff6ae2ca53e legacy-trunk +71816 6292bd2632e2bdd7d58def07af9b7c24e15619a0 legacy-trunk +71817 41bc33ee17304fa6b1ebb63a42b15c8c651f7dee legacy-trunk +71818 33011513741475cdd7206dd3b5bf899dec196472 py3k +71819 d295254d84b7f65fe7f61a7a7d5bba5e107a9d5f release30-maint +71820 5bbd2e6d612620e4feee3120e1d07e5905c63739 py3k +71821 a7c4a37c9df077168d73eacae68dcb1a850b5041 release30-maint +71822 8295b7b294bd62dbbedd3fc1d2da3339dcfce389 py3k +71823 8300b274fdd3ccf8d2181157c2a88079ac149ed9 py3k +71824 33312b910773401dd5354bd9cde768b5278208b5 legacy-trunk +71825 fde015a2c8b3ebe2496b456a1dbf198cf5e05908 release26-maint +71826 32b247300ff9d3239191c18c3e5490d9d1ba46f7 py3k +71827 0761ee28b6ed62402af0ebf56b5f566b31b5a50f legacy-trunk +71828 d557320de856cbb21394d7eca513bace5f326dd5 release26-maint +71829 06db1d9d255ff7c7d45d463a5b636f07bb8a6a22 py3k +71830 1fc9b650872322925364403d92c648f092aee0a6 py3k +71831 ec842cc610e6f14f3e12a25d2f0d493cec4f7e28 release30-maint +71832 114059c26794f1ad7c42e1c15966e98597a466f8 legacy-trunk +71833 a1a6f5d2b3dcb5e5239a8e44ea4ca1b7342d0632 release26-maint +71834 59a1fb9395774ceb3b78a3f0aa5e5969e837973b py3k +71835 46a32d4463c83a6fbd027eb5432eb2cebf744858 release30-maint +71837 133c66027f33e4c2f63113895dcb89f1d9f380dd legacy-trunk +71838 32226776f86613468289228cd02012f11c5011eb legacy-trunk +71839 54b4489f1c284d6127570cd7c6c2777293d9cbd4 py3k +71840 fa4f18ede260ba79239ffdfcf35db0438d7da86a release26-maint +71841 a65e3c07260e9eb0781d55addd1487028c9cb119 release30-maint +71842 116787f9b9fcdbf81217398c11a54a582506e2a7 legacy-trunk +71843 63cb5c91ce2148c5d05fcda2a72768ae3db86a90 py3k +71844 ff7b4e582c49083f71b42b9d7146dba2252cb011 py3k +71845 d8802b0554743029e1548661accc392d0a372dd9 release30-maint +71846 43e46e4e02f0360b33d73f0a8601904e38a55aeb py3k +71847 fbb1df2541c36a09ce9be577cab609342ad336f0 legacy-trunk +71848 9691e7345964da19df52fa8892762f0fc3aca3d6 py3k +71849 09689212b3eb28194aa811869c786000bf2045fc release30-maint +71850 2ef54e8a44dd4899ed91da5ee6dbe3d0943e0975 py3k +71851 00a927815dcd62d46948bc48c3fda23f5a0a4198 release26-maint +71853 d51e4f62bc8c04558d208af9cd43045193e28dba legacy-trunk +71854 02f3f85e3936b8c0008eade3336c710bc4e616ef py3k +71855 c62cc2a5764b63422eb5d26b345ef910196e1d34 py3k +71856 b5e2bcbbfa7402c269484de7867d909c1dd9ac73 release30-maint +71857 0f55e09c16b568060ac1b2ba0365cfe55ffcefd3 py3k +71858 298f28aff18d23940b99cfb80826a231d24017dc py3k +71859 b2fcb3f224de2fe3af07b2c47a596ad03bcefb34 release30-maint +71860 318951890abb57c395304629bd51b2151626bbfe legacy-trunk +71861 642910a01d7f3900f00d4c3d4c22fb3ffffe7149 release26-maint +71862 2e37190f8ea7d49cacb896a87d277eb7a7c3be8b py3k +71863 fdb2be471a3fdbd0368d0c0064e24dc3895aa50a release30-maint +71869 5fd0da2a9778e168ff5c74cb49f5e57ceea94c67 legacy-trunk +71870 a34d945c07edb3ecbe8f7f0050c8a4e3de4037bd py3k +71871 80da52466fe87de5b6333595150c45059f338c2c release26-maint +71872 a5ec57e85f65c18cc30365be230f64356232a4a1 release30-maint +71873 9f9412192402d9f591773d6847a5f599083ddc0d legacy-trunk +71874 9556e93f2abb499b6f3839efefaf1ee87386caa6 legacy-trunk +71875 5a46a82206e7bbf39845af529ee35c0de19680c7 legacy-trunk +71876 b366a496d499eb191770bbed6ccd0193785b0b7a release26-maint +71878 88a7887d7fd4af96c388b323173adc938b97a800 legacy-trunk +71879 ce47dee1b54423caca2b84505900002fa7399aec py3k +71880 c57108def3e3be997b464d55074e2c2b64c8c112 release26-maint +71881 d35337f65015999ccc33190b39bb55f6455e182e py3k +71882 ad0c26972b2221759d27c1523d309ddbb069e6fe legacy-trunk +71884 ad03bb5d0f7dbbc5cfc55483a107b247b526f6ba legacy-trunk +71885 6dc9805cb0fa9779ada9bf6ffe55afe0d0dfc083 release30-maint +71886 3cc5fc3332f6abccb99311b5197335fe8e73fd2f py3k +71887 806bc4651b9de35ee60fe66c4341ba3bd1f66bcb release26-maint +71888 cadb69e1dc9a62fcb474c3156f38fa871475392a release30-maint +71889 1837e8e229277711153c4ae02e0ad4d337abb082 release30-maint +71890 05de864077ba9b83e89cf95873ede751754967e0 legacy-trunk +71891 587c8e3917c6a825f2908f59f85865307672a2af release26-maint +71892 d3fe6e96484c97cd4e00741a377f25c42b6d556c release30-maint +71893 eabe6cf9734c832b296af8d33a962e7da7b46166 legacy-trunk +71894 a2ef4dd55cf256194bf8cdf4cf599aae3462fd6f legacy-trunk +71895 f08f776082eccb3a7e3c138d0dfa01fc5bfc3627 release26-maint +71896 ff29e966abb65a92062b89e268f4756864082f0c py3k +71897 2f8e535f9a9bfa441a731b38ca604533c59270da release30-maint +71898 bb876a133bdf3a7a9dd58c27f8d772603881faa4 legacy-trunk +71899 676daa1ef2237129e3680e042622baffe20d2c31 legacy-trunk +71900 305ffadf8315b3b58d33601a58cd3ba7d36a7e4e legacy-trunk +71901 ddcc2a6fde3ae3b97361344e250b99e5e8afbe04 legacy-trunk +71902 c756f30bc42a7e64c04c56f87b78051de4709e4d legacy-trunk +71903 85246e4e14283e6e19f342c05d08ace082ba3037 legacy-trunk +71904 1467cbc223e60079924e721aced86379a2eb92b2 legacy-trunk +71906 2480ea75068fa21e4d11a3b3b1ef9c6e16b24db6 legacy-trunk +71907 71b7b49215121f58d091cee6e570fe01505a64ae py3k +71908 4af06b2bc3cc25ea6d3fbb2f7aebdb05a0bdd8c3 release26-maint +71909 c6bf52e153b4a3d23a12e516092627520f4d6c81 release26-maint +71910 85cc9512b60c5378169a1323dd591d9518358461 legacy-trunk +71911 7cd23b2eaa93bede258e64abe77c88f226819f9a release26-maint +71912 083cea0f27a2c213a74513e39dc21f9e35ae48af py3k +71913 006a40b5e0c3b5f9ef2eaf4db98173c14013b0a4 release30-maint +71914 179f4593bd3ed081fb3e770c3327a41b438ecb25 legacy-trunk +71915 3d07c9b2395142b02a5424791390fcc4808dc2f5 legacy-trunk +71916 f88306c8265e3ddc0b298eba25a554815376dada legacy-trunk +71917 62b3185359e365a378cfbd69a8c67e8ceae1a4d5 legacy-trunk +71918 3b49d30ca5413bc09c738aa7cf6843013f6dc077 legacy-trunk +71919 2e297b1ec93560f1320acdde97fa20b837dbfb21 legacy-trunk +71920 694daf8cdf9938bf2bea8c0b37876d2ac23211bf legacy-trunk +71921 6255a72a4c1e9eabb9b0e4ea30b979d0554aab75 legacy-trunk +71922 8fba2584f38bea2335fda08ddf1462c22e2bffb6 legacy-trunk +71923 63286242dd9db1445e4f92305299ab47021e66eb legacy-trunk +71924 ca2f1e34f562d1b2916ca5b0baa7c1bfaa594f24 py3k +71925 7bb1a4cd5ee5b86c6cfd2fde15c977b6c4b38991 legacy-trunk +71926 edd8f0d52b38e2e50cd6023019a1d5d5c67fb6be legacy-trunk +71927 456b2a06d01700f7065dba1855049d8f6c0c6e2a legacy-trunk +71928 c7ea826fad77347ee852ee94f32a708edcc826f5 legacy-trunk +71929 25c20a77f3733d9400d91b35c078d0f0988ba37a legacy-trunk +71930 0ad415094a050618d858379d263edd6d3835761d py3k +71931 12791812788dfe9ea5c53f4b0218352c48a2372c legacy-trunk +71932 ecaca7177f66961c69412e50fa9308ae6bb4ce42 legacy-trunk +71933 4e5ad566bfbb5a939b24eb3240bc400da32397f6 legacy-trunk +71934 a07a9b759f27c256ff3c35c5c3b08bc94f4cdd39 legacy-trunk +71935 9c98605072650483e824bfc680f385324ccefc96 py3k +71936 f1142de43e7dea8fdf372efbc0eb17903177aeb3 py3k +71937 81aeb8bc659d570f63617d1b80aa27ee29aee208 legacy-trunk +71938 6947bc3dd43321642fc28a55cce71d4f8e632c96 legacy-trunk +71939 30b03e1dea8bb71208781c20c2ae461a1f452274 release26-maint +71940 2cddaf8d3c3e0c993107e3945670ab93e554fc01 py3k +71941 a3d48b2e957de971c0955f9eb3118425251f80b1 release30-maint +71942 ef0ac42699340b5d88715bef69156e45f344aac1 release30-maint +71943 933297ebac7bac20f9aa62f9a23cbc020b8b7093 py3k +71944 75010cae04790076882af279b8b445fb93c33780 release30-maint +71947 72bd450d539f157e67eb6e1b7dde1ef63e3b48a8 legacy-trunk +71948 c92e93a54298a8304f1ece154f4d159a6ac2c5ca release26-maint +71949 8fdcdf0b5080ea92e5aed95d83fba1d209dbc3f2 py3k +71950 912438655f9304048bf8cb8ced933af5d23c76ca release30-maint +71952 a3a246da144b7d36bb2bb7ecfcaa64202e813038 py3k +71953 9da1cfcd2acf7f67d291029467d818553e2b2288 release30-maint +71954 133819ae80fa8ace181563a9a2fc13b78c12bac4 py3k +71955 1c2d11a7eb23f41234ef14232a75d50bef34ab72 legacy-trunk +71956 172913e17019ed296015784fb67ffcd7863cd427 legacy-trunk +71957 73b502f5769059c0945de38e0204882b228d3ed8 legacy-trunk +71958 00694e0c2e6b2eb31cbfb15ceb45741d22e34e53 legacy-trunk +71959 59c4114379b34a7b9cecfacd608938aa8267e70d legacy-trunk +71960 64110c0ad5305e7b725fb9b7af302f9daeda7ef7 legacy-trunk +71961 db03016bf6539f46dd04654b67f6e9d4a3181330 legacy-trunk +71962 a15c28bfbb38c86bbb67af33de63e65656421a87 legacy-trunk +71963 75963372b7149d96614aef094669ffa40cac6ca1 legacy-trunk +71964 59a1b02de9067120f2d4404ab91416f9aad108e7 release26-maint +71965 7835ada3cda2c6abd6b8f50beb5d114f03587d38 py3k +71966 1a5d1d1c9478a94d39887489d7c8cbe21b8a75ce release30-maint +71967 f76572108dd7a452806ec51bfb177ce4cbc693bb py3k +71968 b45a32355d378ccc88414ef763bc0ef1afdea59d release30-maint +71969 01c3363a357f9ff7168b1dc623dcc276d9b14e0e legacy-trunk +71970 4633f8537bb77c7f51c4e3dd645d21867b2fbfed release26-maint +71971 39120cc7e321ee808609d5184257ffe6dd08ba17 py3k +71972 fb4bb0a3856e1b0492206ad91409924487d12fba legacy-trunk +71973 355beb0bd02bea387dcb3972a0786ded56a4756a release26-maint +71974 7237730425fb373fd2bdeac54791acf0cd3a1155 py3k +71975 951a62b86de8b99ce46defb6790771a45ca14a2b release30-maint +71976 bfb47bc1d05114418ad7ad8a606aeab78df3a8f1 legacy-trunk +71977 f7eccf769c1ae2df9f58f0eee28832ac683a9561 release26-maint +71978 785ea299fe236db6133f498735cc382488d2fbe4 py3k +71979 3162eb09c2c3dda7de2e2416f029cf32f1c63e17 py3k +71980 021c39a37edf7615dacf4da402241a3e42a85dcf release30-maint +71981 54ee6fd181f2ca73355523a5fe6548fafac8c451 py3k +71983 9f60edba5aeabffb7035f91e28e3aab2421b48db py3k +71984 abdc1764d8e5a1ad01c7ec832e7da8034525bc0c legacy-trunk +71985 0688e8b246326a068061e21635a6d96d2f90ed53 release26-maint +71986 0b1674f27b70fa04c8513c682ae47476cd869b18 py3k +71987 5d4fc166a3d4614068300bea14a44ee7029b18c7 py3k +71988 456e5843020206c7d7f53a768722583cc275fbdd release30-maint +71989 de1d0f71e209b52b0d26524ea8f27b84419f458d py3k +71990 ecc3eb1564888c84a6e2514867dae455f6456242 release30-maint +71991 383e32ab607c4ac1be376f9cc3034bb5388a3e79 py3k +71992 e0d45d32fb82442688f7389f467f40ba34af72a0 py3k +71993 35d73a988039fd1336ef0796efdd8b877adeec10 release30-maint +71994 caf2b91ef06a59cf844a9df25fa4e10cd33ce6b6 py3k +71995 d2cfd3d3bc548f4f95af79ed312916f90cff7401 legacy-trunk +71996 c42b7dd15505ce98161c9ed3dfcbdf05d0a9a8c8 py3k +71998 d31be8c9c8a29bf91ce743b6321a52447d8e26fd py3k +71999 1fca1c93269625173ef39626fcb18c52b58cf0a8 py3k +72000 fb89983353ad3c3cf8fda1ac204b4c9ef9f744de py3k +72001 d0594e7a45d6369372d9e5bb8a5bb3a94a7a73c0 py3k +72002 98aa631dac2bcd01dc6d22ffce07e136e7a7c75b py3k +72003 553caf6bae47e10ada945f548578dcc0822fef00 py3k +72004 973d24f44b07f608861fa6545335de443a107728 legacy-trunk +72005 293ada1dbfdade2453daaf20617be71f5a07b46a release26-maint +72006 17540a164797995658605d0e04401bddebbcd602 py3k +72007 d05134a4f02ce59288e9661b438d766ee18a27d4 legacy-trunk +72008 f52159f87332bbbf218f1a4c7fb01f07489e3294 legacy-trunk +72009 57812944c961b789445a6def52f32a839b74bd45 legacy-trunk +72010 cc0dff2bf1c2e6d53fc46e6016ff21349d81a508 legacy-trunk +72011 bf7f34073418beda36f7cf5b12627daba3eed83b py3k +72012 11a5452e3305e6074c5df2bcc2fc72830ebac8d1 py3k +72013 9b451fa58503a5340b97a9481b5eb82b59e31e32 py3k +72014 d37a4c5d6d2b538b1f1346d6818f724c652c3ada py3k +72015 362b4ae2129a4f22b0c19a7cbeb68e4d773297b9 py3k +72016 8068ab51632d6131e633de5bfc4b6e7c432b69b9 py3k +72017 743211b60c9467f18a44bd0c95ba19567fad375a py3k +72018 ce7c353a1e96bda08c0a91413a6f0b78f62da117 py3k +72019 7faa8a7f863e1cfde1b90e71173fe27d31bbfeb5 py3k +72020 98889ef15795884f42d68b4b0fa0b5b4ca7bbf40 py3k +72021 e48f860a5cac20b58e9818a4fc8a5f28c1bd915d py3k +72022 6bbda1851732e1550ce62d71a17102ffb1518649 py3k +72023 2180008d02eea2c3a745f0ef40acba49961826cf py3k +72024 ea4e192d94147b48a517f54630ead851a8007396 py3k +72025 4abc4ca4461fdbed01411a9ccfe6cfecf7187e72 py3k +72026 d580175997cd509ca82018d9ca1dd0f89ff10357 py3k +72027 f943d824c8c35dd762dc3a3090b12ec6730faa4b py3k +72028 f2d710e479e2eda721f316874b30ff6073ad8089 py3k +72029 71a2aad5bad655fe4e16bbf97365367c88531cff py3k +72030 29354c4950e494683c7a84778356700a82f42d83 py3k +72031 01d0bd950ccd134453de1d18acff9ca6488f5528 py3k +72032 41fa1a106373adb25d388d819e5b18bc8a90a168 py3k +72033 c25e5a9554f5309066aafebb5ef48fe27c3eb362 py3k +72034 97506672afe3fb5242c5883a88466106bb4dba92 py3k +72035 2ce26c4679cb97583b23fe32c2b292e6ed860ca3 py3k +72036 c6c4c063d8740ef25201fa93a8522e823ce99141 legacy-trunk +72037 9e09783ce2288defad102fd42222acd3f88d5cfb legacy-trunk +72038 5d75203c871392cefb6a33fa005226919ca1ff83 legacy-trunk +72039 b4ebb300e6119c0fbfc71cc667b1ede387f658b0 py3k +72040 4bdd847b57c27a25a2edd67df4da64c42e4b0dda legacy-trunk +72041 1f95ba4d1ecb185986215c18fbffd8cac18d5ce6 release26-maint +72042 1a451ff6583c548f8b066471352e4451667b45de py3k +72043 78dfbaf63b17c9398a1422c21c298d3a84245e0c release30-maint +72044 4b4b59f278bf338cb253226dd4bd80e2ed4b2b72 py3k +72045 b0ccf2acfa1e6908089efdb9cb06216b29547a5f legacy-trunk +72046 54279163389d45f47ec5b927aa69ec78963c4d8a py3k +72047 84537def45505019611df93d5a597e8ffb4c671b release30-maint +72048 7c39574ad0375416a2aaaaa4264ae50d84e0aef0 release26-maint +72049 78fd15e052584070ca2ce2d2d1b9e09940f579f1 py3k +72050 e56fdba61e975f1184931680b78f22ca9d716cff py3k +72051 38522ea2add0a87626e317d9cc2cd3684da5bb7a release30-maint +72052 1c060d5c47cf0aedac7c7e4f2aa50d7dea4588a5 legacy-trunk +72053 2b3945d755a7fe61b78f5de2e093b629e7ed053c legacy-trunk +72054 019244f4b0d0d0e5d932f6e5401b11e4dc813c6d legacy-trunk +72055 423f8f9b07b14a8544c5ff3309a6d289dcda284a py3k +72056 d9b9422b409c898401f980fdc8f34bc918b1a8f8 legacy-trunk +72057 97cff593a257e9d5ba581f59de4a16fd7b2fa939 release26-maint +72058 6f1588fb7595e1b20fe6d6f5c7856e54810b3852 py3k +72059 b0ae9ffc7779fd7503dc4fbd42115e8c30693f5e release30-maint +72060 32460b04e7b6e0d5077292a765cea5b89513ad1d legacy-trunk +72062 7b206e2c0092c4b2bb81ff398413d448909b8fd3 py3k +72063 4af2bdc9b1b7355795f69772da4cb830cfbde22c release26-maint +72064 cabcef7e6f256cd18258a51b5506f2499a861968 release30-maint +72065 1ec4bf3ddda6f5ed293a9b9bddd93f5769cf4eed release26-maint +72066 dcbc2203bdf36276b2c8d07169529deefd707823 release26-maint +72067 d65db169e3ad71516e04a8eec7bbfe3ce6bb7f2f release26-maint +72068 3f15a06d00473ac94632a38f1244eb4bf9fb4dfd release26-maint +72069 bf05222c07400e21b62de910ec6aa8adeb6cfde8 release26-maint +72070 f7a39e619e0a1f62f8550c530446f26bb5565022 release26-maint +72071 02d6f3a6977f78b5885e1e2d44981101c075ffcd release26-maint +72072 f24671528980e7c3432708e15281c23b93bdfc7e release26-maint +72073 714f95ea6b8f6c8c78ee4b897bd90e20e0b63f7b release26-maint +72074 36eb537abb179362f4afe3b4e168ceab70c57783 release26-maint +72075 503f0f41f35f91af4254a0a4a8898bdea0ebdbfc release26-maint +72076 b28ddebbd835575989ce4535321f411b202c4ba1 release26-maint +72077 6f10d525e3b84b5302a47b5aab74069673c7bcb8 release26-maint +72078 3166ded6bc4a26c2d19a0894689111c2753a8836 release26-maint +72079 9dc34ef227353827a437ab144a9cae997aae92d5 legacy-trunk +72080 9000f966ccbbbf03585fbd4e432bc9cdb000326b release26-maint +72081 e2843b64175ecd694f0de78f1e18d243e1caef85 legacy-trunk +72082 c8f94007b1c46e0e19e3e03a2375ccda156fe34f py3k +72083 232d2250d70355dfd3031de508d18c87fb71902b release26-maint +72084 025ba12c7da5418808f04f7ff7d4cb7430b0c31d release30-maint +72085 7459023ff861ae5facfa5621c690d5d40a1801f0 legacy-trunk +72086 7fda5af2af7d10c66dd664d869a6ba32af32f2d6 py3k +72087 a38d6cd9aa6369cffe32f0f32c2677a1d5aa6151 py3k +72089 1469fb1aea924ddcfc8f6d729b043a3ccfff6bc9 py3k +72091 3b4cea43f9e63992c21dd91ff8a92001b362a76a release30-maint +72093 817d8b28cd6b3e263366d6f52cc6ab44a6193263 release26-maint +72094 9c2ac1ef3a6fe4d7f37a32516c6ff2e80a9fa175 legacy-trunk +72095 b408942fb435398e9a21b2682d1334740a90dd50 release26-maint +72096 69bea26ec87b9937e56587f4516daa5d511810b1 py3k +72097 cea641ff4534c390dba432902bca3b4c46fc2d6e release30-maint +72098 3dfbac799cf51c91ba09d62a0b87374e48121b7b py3k +72099 02068877c190b3d779aac6f3b4d0520d66453e25 release30-maint +72100 4ef7f93d61a1a8d705f6e88bb5ee5dc3cda07195 legacy-trunk +72101 8617e81016b6b0c1c89dc943cbc7f046738876b1 legacy-trunk +72102 5f81c45bdf6d10180806a43b61c953846658f254 py3k +72103 ba638d3a49d15f5df698a5dcfe4a8111ab167336 release26-maint +72104 e95c878ac79ae7d79996357d47e17a04fea85cca py3k +72105 73702abe1cb9718483b5033c4a37ff5af1d87f16 release30-maint +72106 b8633c7893fef402ed4669be357c48432b013d85 release30-maint +72107 2ef2cb5773fe2e4eaeadcdb418bedd865699e520 legacy-trunk +72109 3759839b9fa548bce0d400bcea2ef91fab8100de py3k +72110 21803075b411157806d757ff49ed938c0d1b8324 release30-maint +72111 ae7f82bbf16c8e6df3ad3032f8047ebd18dba506 legacy-trunk +72114 a3814dc99b80d1c23d9cdec8cd5f097c61f38489 legacy-trunk +72115 3d6bc42646b51e0c2f3bd322008f068055cc24e7 legacy-trunk +72116 c855df7c6bb591050bc8a023183e575a535ad459 release26-maint +72117 ccf7853b0793244bffc542f8d4ea2766c3532cc3 legacy-trunk +72118 647a040df4d11cd47199990d3a2b2c2a31cf6d6f py3k +72119 a3fcccee8957a0e6a1a4d57bbab3774c5391327d legacy-trunk +72120 42ef76f544fbf21b6e63403059e63200543f3df9 release26-maint +72121 fe062187624cbe73c3177d6d031d6827e00fe298 py3k +72122 7617fa7164de6dc7140ab9e9ad8b0c186c1631b0 release30-maint +72123 ccebbad5f8dffe9fd8dbf1c6959e228ac6afcc31 py3k +72124 93fe611cbd3aa12f1fdfe0e213c5253282cf5041 release30-maint +72125 b39cb292194573d1bb40a38f1cff672f1d4f8156 py3k +72126 4762394fc26c52c19b9300f80488d236b15efeaa legacy-trunk +72127 5d9771d7cc46c7f28b460c16ced01ec482dbd7b1 legacy-trunk +72128 8a859ac7e5b81e19beccae06dd4fc95f34559d22 release26-maint +72129 e27449de61db648c54770a6c880c03264ac0ac72 py3k +72130 e894433c64640f19787c06dca5a7a9616401d22d py3k +72131 27c6b63d1db355f6877175d3dc176c90a7df401f legacy-trunk +72132 411374c5aa42278d30f16a07211badaeb5f5f225 legacy-trunk +72133 94cdfd07d4f48d7285248c7c03be0e48d5f4ba73 legacy-trunk +72134 79dc8d588eb3066c298bf479e907a857aaec5966 legacy-trunk +72135 d682c934684808832825842463644c2c92b6f0a2 legacy-trunk +72136 0f2b335668eebc8fda9a3b120860ba03158e8832 py3k +72137 34e7c1b1449501a183e1d8b1a18dde85bb98f859 legacy-trunk +72138 a1efaf01510017470bfcdaea8141cc14cef58fba release26-maint +72139 40d3431db240855c43fb5abda8e1f28776b11bb4 py3k +72140 2cde0d003ffc03e8010a1a6da1fefd7140cfd8de py3k +72141 d6688ed040cf36b4cc216f64c3581775acbc688a release30-maint +72144 c4a1c4884056d49b8d81eaaea85def7984d3ae2f py3k +72149 abc80f8b0dfdc1ffdd5c8d1ff00d274fd375ab41 legacy-trunk +72153 ed8c1395d0330cdf746a2b5eef261c47a5b7c0f4 pep-0383 +72155 29656a03cce2fa4c104d80829f1dcbda84f02944 legacy-trunk +72156 bc60de2322031ced5b478991f7b2a05733e273e3 py3k +72157 4b86e53f9006f6172a9b9cd26d2446c793481cf6 pep-0383 +72158 bdab7ccdc7b486411cd48468b2feaeb9a19f1388 pep-0383 +72159 e7a9e2fd713f024170a84516d36a95525cdd6d64 legacy-trunk +72160 0935e24c81c08d5ddb76273403332d9061b3d260 py3k +72161 e08e80e768c11f094f1b407073953421bf6a1873 py3k +72162 a80b3bb4d1b0db2656876b1e3f034ce1103421f3 release30-maint +72164 54c7ba3ddfc656ef1dd39befa473bb3478161de6 pep-0383 +72165 60d0f373a8946a20a0d028b804dbce4d5d25bff9 py3k +72166 aeb914193b45a60a1d7dd4f1aa317d1828942e59 release30-maint +72167 85542715a2490bd61b4e5d60318c4f61445e46c7 legacy-trunk +72168 63480b92a5e125f8d9bf03167d93a5a288c106b2 release26-maint +72170 96c04e6a6d882d36c520754a17afd1bdf89b4c16 pep-0383 +72171 cc69d3dff87a222aa75ea449f4cdc2e4bed5386a pep-0383 +72172 5c55b9c80846a4d1fa3146eed26e912b24d2ad51 py3k +72173 963f0f51970955ec7442301f9a0c99c079989267 legacy-trunk +72174 98651e4f65fe59aa0759cd59a0806b547966965b release30-maint +72175 bc04cebca7e6b42983ce7f8d01e8876d92acb11b py3k +72176 89d5ef82c006770cf3bf68af24cdd452fef178ab py3k +72177 01aed48196b028eb91a8d78788050e8caaba27df py3k +72178 409448d455e3e4260eafc9c7111c6ce5c1ee8466 legacy-trunk +72179 960ef00d52141779d8249dfadbb367e2f98aca9d py3k +72180 b18bd1a494c71f0559625441d69b04639e821ba5 legacy-trunk +72181 2280365eaa72c10746d743bf71d0b8464e156e85 py3k +72182 95061da06cb845b7903f4bb594c6add8f005fb43 release26-maint +72183 8963cd858ad6106a63c5307fee039ea43b13d9d9 legacy-trunk +72184 8fb19ca62e70dfc5f9679eec7b753ed6917919ab legacy-trunk +72185 1355dac238fecaeb82731c16f271a2a03130368e py3k +72186 0d817e8ed3ebf9df7abaffa092abab554214bf87 py3k +72187 42d28e5dc7cb14c9450c2f62a1db6b5f4110775c py3k +72188 eb8115abff5e552154fdf0fa10661b8535051fce pep-0383 +72189 23bc4b391c10229b69418a140c6f43f1894156f6 legacy-trunk +72190 0c8bfddbfca266675f3be1cd437c01c2bbeadf19 release26-maint +72191 9d840a58a0d5d1b6abc8fe2c5a620b87b3c31fc6 legacy-trunk +72192 511a37ef1a410ff4d25f748194ddb3bc623ebe0d py3k +72193 051019f0dd9fe39a5ad8c341f8f13348ad181045 release30-maint +72194 f686aced02a3e4d43c348c63ad6d27832cbc5df7 py3k +72195 e19cc3ebb58a0be6244a437ad4084ccdfc2461d6 py3k +72196 206ccf9aa025f01645fc1bf91d7acb72ec7770c8 py3k +72197 e62bc57a62eaba0aabe8642c73a8efbd02d595d6 legacy-trunk +72198 02b615389d3ef506acd5039e0b77286aeab07957 legacy-trunk +72199 d7b51ebf6de424369ff5d5636a15b49ce91660aa legacy-trunk +72200 1b71a570f54eacfd8602b416941db49d01676262 legacy-trunk +72201 1a849ee5f08cc86416821b8cba172930ae584b88 py3k +72202 5aaf24ec43dc10afa4ae756c569906a057c5d21e legacy-trunk +72203 903e80f3e8118ef27c81acb4e8956b0614484a89 py3k +72204 11b1fc9921bd0e03d1147f6ee8bdc70b3e28460e py3k +72205 f277a84071f14ee2857b4fa1a41f8f4e1ac12198 release26-maint +72206 21bda611f0e400d750e59fd86f6d32a0bb34887a release30-maint +72207 ec3fc64631d99eefa1ef0194def18e854694c746 py3k +72208 52a77ef069cdba3a12fe7763e379407e38e9db33 py3k +72209 66200a76de2662b471565c835f96961cee387c30 release30-maint +72210 9b55e9b99a436bda357dcc922f985b4d46c5ac6f legacy-trunk +72211 5fe904ffc6b823c4f9b216b8a8f07537e3115950 py3k +72212 be3c07adde95da435efbd6b4127b48b499365a45 py3k +72213 e0cede7f521b439fe981085b6bc208203c88178c legacy-trunk +72214 a893194155a22523fb74c86984b265f6aec16ad1 pep-0383 +72215 4f65ee1f4848f69bf4e7c926464c3d3131349388 pep-0383 +72216 58705082e7c85cb75f64d6aec1ea92f98ddd410e pep-0383 +72217 52a89d723b6bc12d8373ff17f25ce529b1e6351f py3k +72218 0ecc5b90647795235d6df9e74f38a903cd13e215 py3k +72219 7bce052f0e7b71e4ef63c2bd48ade766331e7f64 legacy-trunk +72220 c5f14dbea43fbcccfab7cdb791994d1204220511 py3k +72221 b06f11f3b65b0d8859ede8ceca04ff26dcefa012 legacy-trunk +72222 ba45e126574da1d6bf61d4be7109c9af43937b8c py3k +72223 e54141d63e01874ba2b890025d820dabe0b7f271 legacy-trunk +72224 64d9a9e7f68ecd420a294a92f9ffe251a6da14ff py3k +72225 303b7ee8e7fef2baf3eac1bfc4c82b24745411ee legacy-trunk +72226 001ac59c1e672ce3da64bc1c84e3cad34bbe2fca legacy-trunk +72227 9fef1f1657c8a75514c3d28cd361af405ed41f86 legacy-trunk +72228 358ab1ffaa8084ea773b1aa91c3a8d73890e7869 py3k +72229 aee2b10dbab938ec2aa54d18071bdc6ad08dbe46 py3k +72230 7ffd9625c91cfd79843651d5a2b099340eeaf375 pep-0383 +72231 00063adf055845658b7db201e46bae3229c2c9e2 pep-0383 +72232 0709c6d369de6707cc69a87b53dd399aac4f3951 pep-0383 +72235 764eae5208808f5f04a326ae0b0761020b3bfef4 pep-0383 +72236 9b107a797df89e0863d7d3f77dd19d60f6de6503 pep-0383 +72237 d6b3b74bda0e5aecbf3f6458e4958c23a32f3f08 legacy-trunk +72238 526b0dc0913821cd707814d0e764c9fe6f30a039 py3k +72239 f7801699815c1243ff99ea817d63ea426d5c06ac py3k +72240 6877a1f4a0927fec65e1ba3ed8e6315865b86b62 pep-0383 +72241 ae24de48adc41d1196e8ba1b4b242f31e2eaf216 legacy-trunk +72242 bd6d257a9130f786cc5c6f2f72b5a272852d97a5 py3k +72243 87fc1162d9f4b69409c9b2c95147683a386f9c3a pep-0383 +72244 abf574e9f1d3d59d7975e1ef5f5f4b946af34003 pep-0383 +72245 394462eab65db05274a6f66445ac818286af9a99 release30-maint +72246 a67783d812f6e6cd3774fb14bc1b1f6e70e447c6 legacy-trunk +72247 33270ad6adef82f6053bc3bc8e899f595f675fda pep-0383 +72248 13a82a710f19b439800a8c9e499f941a7fdf58bc py3k +72249 f70e91f5fc9cff248b6c2e16abf9b94e44f7fc18 release30-maint +72250 63ddce9faf4a987eb4a8f89281e2d0e7f95b71c7 legacy-trunk +72251 4a76d6d297cebe5e3b09a129a5a39879f084d722 release26-maint +72252 fb521f996de13bda751dd8a9e712c76b5c264142 py3k +72253 1f00bc1d115a0bf40fa02d9b5060883007311a65 legacy-trunk +72254 5b28deba1cd6b7a013b65eaaa8a3b9ed73c75e41 release26-maint +72255 e2b553d7205f39beb105ddfd87f0d2d3f84b3c14 py3k +72256 a8b5a5b9a49aad218391ba2ac38baac1fa31480e release30-maint +72257 4f867f1494d55e9c1f00918035074d7a567b4c2a legacy-trunk +72258 c6f99d4c8122e12cb4cb7c86e66eef895d4fba64 release26-maint +72259 0b7eefe7b6d17d8f4ca2a81e1f2f098daacc7d51 py3k +72260 1c27ecbed8c41a7129eb4a3a8829573948586f7c legacy-trunk +72261 ce947200b7688a9384d3fe9c47154a0e7c2404b8 release30-maint +72262 18a5ae96ae5c9a3fde1dfbf680b3b51933182179 release26-maint +72263 e4af971b91845609812f91163f8d40bf07a2ab49 legacy-trunk +72264 5ade0de74b5a913a0a718d4b1b2b4526bb9ae758 release26-maint +72265 d7bbde936d62905ada72956a9d96e700ac4f5bf5 py3k +72266 8346d3c7c4e23b89e8ca78320b5c4ac1beaa8b1b release30-maint +72267 e4ff4273493bd048be0dc9f79b896383b8d8a856 legacy-trunk +72268 4cd437dface89832be8a212be8653cd100e2ce5b py3k +72269 66f75008c3a87250293682d8eb22f9d1e9e92e55 legacy-trunk +72270 d8d67aa75525201d8c89ac9600fba5b84353f628 py3k +72271 e68685cf3651d998766cc41a1ff06ebf57a216fa pep-0383 +72272 db28390ca617260651f96d8342a27b0d039c32eb pep-0383 +72273 d6cbaea975698ebf79584e6d6a8b59e0ab5816ad legacy-trunk +72274 2cd9aee6f6246032885f554612374b69f022668f py3k +72275 bc1d196836a4fba8bc116ede3e10a91274866bf7 release26-maint +72276 3cb5b7d5630981cf246791b31fd05f4e68fb0309 release30-maint +72277 69231cefd80d3fafeb2d54b852fd23b97c6ae66a release30-maint +72278 ad12d8f414c7361a985e2f180401ce9f1eb5476d legacy-trunk +72279 3088d2ebf7be5ea3d130d8af812347d6e4376c5b release26-maint +72280 fe54f394599c253588190d961861073ccab5d862 py3k +72281 73af90206cbe324b9963ae56888ccdfda291b780 release30-maint +72282 5cb85eff8c035aeaa0409f3c59137782fe2fb8d0 py3k +72283 12d8fd499722c2dce4bbb1b794699c01c1707517 legacy-trunk +72284 538a7d5830645d0a7614b4f0c6d4c709f6948532 legacy-trunk +72285 9b9590007e824981b5da48a90c5887265bef4b1d py3k +72286 100381c5e73abb7f0cb8769ac42d71a3d0c81aff py3k +72287 4791216bfc1ebdb9e86953c9715475ea4c5f2d37 py3k +72288 75d41f46085210917bc3a4ef088bb3a3662c5409 legacy-trunk +72289 82ffdfbc42e569649dcd4ca9c872bf72651b8cd7 py3k +72290 f722892b60ae3beafdc7f6104a82ee4eb7dc0b87 legacy-trunk +72291 bd491b5a8808698b6585ef1f27540a7a616ddc13 py3k +72292 5ccec4b36646d117afb7be6e3897528264582383 legacy-trunk +72293 310daa99d6073d33fcf07b14cd21771e98bc3272 py3k +72294 c2d107e078397452ce86e5e14014e42f839eac31 py3k +72295 5399be7a39ba3717bd801d5c6a49782d58c9795a legacy-trunk +72296 75743aaee5040c0b3bbd216ebfe8778c25824330 py3k +72297 d3747b0a2f361aa4d70c40f8db818b0afe56ac6e release26-maint +72298 3b09f332f1fa3b421b1f3e217bc783e1e6c45a2c py3k +72299 b3319c084d2571c3038310175ed39cc5cce975aa legacy-trunk +72300 dd938a2cc2f0c74a707bff593efbbab33c35b3a2 py3k +72301 5becc86548122082c1c9193e2a86ef8502fc503b py3k +72302 bba7ee9daee064589c9731568377c41adc7abd56 release26-maint +72303 639a79fa6a238a652c948f14006732907911714c legacy-trunk +72304 aeb4050cd43185262fc89eb7ccf69e2ab961aa9c release30-maint +72305 4fcfc53fcc74bd6ce995fcdec53905d08186c2ef release26-maint +72306 2416f166de4b00e2ab7b00bbef6511497f6e934f legacy-trunk +72307 b1ea5f7313fde54d31f5385f1ea671d11efb9908 py3k +72308 0bf5bb2f3c08986dc060d0aa4fb70833b1bea961 release30-maint +72309 66682fc172e90e98e8a1474ae15f0f1edfee755a py3k +72310 7321d4510b41babce3f9c2a4748868bd2be4d402 pep-0383 +72311 4dd5a6a93e7088c03b2ac1607db9b356bb945167 pep-0383 +72312 6e10b70a41103760294d1300c9ebbe28106856d4 pep-0383 +72313 ac209f132b17b284014d4a10cf97ba77de8b7cb7 py3k +72314 4e5834b322c10a2cf010f3d44e4bed86c4e590b3 legacy-trunk +72315 2e044c9f4b405f7962808be09331155ebce79e20 py3k +72316 b00ce6f0fa3a9cfb937c6ada1dba68e2b46ff17a py3k +72317 1e82bef68f4dfe87d6ed2890c7e112da5ec05aa6 py3k +72318 5dfd229063411ff61c371d66a3cdb8bf3eff1b64 py3k +72319 dd489f4757be8269be96ebaca36eb03145fb7e0e legacy-trunk +72320 af8f843257973f18b988044215e4746fed1f7daf legacy-trunk +72321 b12a44eef40b6c592706ec3f5b6637092e76c935 py3k +72322 c49bc330327cf29ece5a10deaac252bfc16c5616 legacy-trunk +72323 58574288a5bfea9deac6107e33b27d72a662dccc py3k +72324 4c63670639ec70b5aa6b64e5dbbfbe9baecf43a3 legacy-trunk +72325 58aa0ad77253d7754c68e9a96100f3b77b1fee5e py3k +72326 5878ca784a8496e4d5f4cd5bffc08828a08f854c legacy-trunk +72327 33bbdd3eea43d9fcece5ef4c7df7e39cf7e904ec py3k +72328 9f8532a0f1abcc461b60009fb1551fd7d282ef81 legacy-trunk +72329 ec5f03d1e81989313f0ac177c2fbcad1244fb5b8 py3k +72330 f6bffb9e834f99e6080668d19e701598e0491a2d py3k +72331 167cd378b5bd8b37e6766b3da5dc0d829ac3863a py3k +72332 2cc11693a180ed741784309ddea764a4944c9e35 release30-maint +72333 c6376d3fa9687817b2a41bf569edc0549ce6ba92 py3k +72334 d17cc72ffe807671d4960d51bae0521fcda0c8d3 release30-maint +72335 9f6b8ce2023f0c244fb1a121fdd5743f7a10c4f8 legacy-trunk +72336 215b7b66e62df285e15d917ab2df298c4bd377d6 py3k +72337 4f3edb6af8c1bbd3b385525c6d00cd538475d4ca release26-maint +72338 9760353660657aaa21d2cd37cc9b1f0500a1b682 release30-maint +72339 ca450b2827ef3809b3497feac18c02fad48bf43e py3k +72340 d8601e8b3abe91eba07d325f17347747cd299d95 py3k +72341 a7c99e34e239e2172a67c80752771fbd70c96fea py3k +72342 8e8b9590917ad94c5b82c6395738a14707a132ef release30-maint +72343 7ea7870dd966d2216d5144d73bad515dc03f409b legacy-trunk +72344 ea2a90082c8375283925110dd9b9fcf14563ff51 legacy-trunk +72345 6d64cd69f3844a55edb734b3bac5bee0cfaccf7f release26-maint +72346 987421d3f8ae40b6d905fccb2f77fc5fe55d9674 py3k +72347 b0375567fae80a46cac8c125fd5896c342287f45 release30-maint +72348 1d8f24d40c2c68fb9b3ec441cb175046c9c8021a legacy-trunk +72349 4d5f066575ed50d901961a3313a38b0f9d7ab009 release26-maint +72350 b977af19c6f0137fe47a7561a3bc211cac8f8de7 py3k +72351 bbe2aa431692323605fde1abe4c234975ed3cce7 py3k +72352 581b564d8fc3b2fe67ccd3ae0c2552204081ec80 legacy-trunk +72353 a85e6756ded2cfe7e2b18cddcd498c9c16d6ee68 release26-maint +72354 e0179f08d34f2203143e9429e6fbac52c66b678d py3k +72355 d3ffb3702c3af63fa50ea06fa5326422a3ec6bcd release30-maint +72357 8f7cf5cb21bb583ab4e5aedb2f42304b0eb4fc42 legacy-trunk +72358 026d390eecc196ad0514cc18710f58752d02e9b9 py3k +72359 15d3bde70d87b000ecce9497c3589d4ece737e47 py3k +72360 f0fb4ddff1abdaaa3356fd6d33aca390073e9dea release30-maint +72361 ae6850869d52f4f6ec782ab34cc808f5e68226ea legacy-trunk +72362 2592c6a9ddd6c44ecd959efd6c27952eee93d656 py3k +72363 911df82bc25dfb62faef6ea1b9d0cf70417bb97c py3k +72364 5b9021c19512bb2e3a3bd013252d28f928f83533 py3k +72365 54dc5777bdfbfe6369d83f7278b2846c38a886b9 py3k +72366 7baf4cc13bcff68bb5b4fb9882d2dfbedf75dd79 py3k +72367 3b5c400c9dcd451035d87c4230686bbbfde5dd65 legacy-trunk +72368 fb10b88afd401e81212a5cace4b168e186713b73 legacy-trunk +72369 5b4b09e8f32ba9cbe5e1ab77b774581867627444 py3k +72370 a2303a74a7610c8e2c6a63dd219eebb86bf2a2fd py3k +72371 b666e72f602fa8528d8300adb4a0815967d39afd py3k +72372 9895483e96013a52cff2d8197fc54e88697a9ad8 py3k +72373 9c4d929f40599417191c3f45c5c33bbbe6c8d7e0 py3k +72374 4b1a9affe34cd4f9212de7b523ad7a0a938822be py3k +72375 eb3afbd6aaa96ef67602bbc00e9616eede480008 legacy-trunk +72376 4f17384ae8cbfe468c0112ed7e824a9f6f89ac51 py3k +72377 0f6a785cf286e3d1d83a5e7c424f279afb1e6882 legacy-trunk +72378 556d11314ad5cf91382c4ff92ab1dbd5cdba600f release26-maint +72379 57e9b1b0838e52de940cd047134ea84470c5bd2d py3k +72380 a815accd89e40b341a5d60f5d020193aa81b4c84 release30-maint +72381 85775d100a32c59f2cbd2a12cef36c0b410e4fe7 release26-maint +72382 e620701a3ec8640afc6a43230a5581eb13c24437 legacy-trunk +72383 aec62e9cc6e8eefa6a1e1bccdb3346c7fa5ac0d2 release26-maint +72385 bcbb94d692efd712962d4ea9bc2245a2ed2cc708 py3k +72387 29025b53004668500d089bda59f8892c64446b08 py3k +72388 cac2a5f4b9fae1284b99cfde409ea87cd79ff3df legacy-trunk +72389 c6efe58eef6657ee4b9f289949efe1c66cbd8bd8 release26-maint +72390 f1a3de9df425db4c3f1b67913104847ca9b8d7c3 py3k +72391 fb7d12196c35c2b5f5daabccd429ceece951c672 release30-maint +72392 35597d3dbd08202cc8871d1ec13d18047bae4580 legacy-trunk +72393 0388a4272598e3864e9559e911b6aaf0070301da release26-maint +72394 0c526d1895272b9a5257f82a1c14b8737211f53c py3k +72395 adc8ec7f7d23019f029a775f21426b53be0eeebd release30-maint +72396 df3f5db528f00b371f7161a5bdc0d6fac8193f8d py3k +72397 7cb6df00699f4b34d719bf6c8fcb423fd7884429 py3k +72398 04bdc944718af9eeff1798bdd5d1674ecc9a143c py3k +72399 9c654040400defa4c29bbe63e0470f537ce1dc4c legacy-trunk +72400 0b9d7cced9371d7fb4c853f5da332f64b8110a25 py3k +72401 034e0fcd694e881a58ae4f1cac99edfa74011b68 release26-maint +72402 ece7e7a80043c15825114b43a883643f7c0fa714 release30-maint +72403 c52e555c918d9bbc4fa602af95737a30b1960976 release30-maint +72404 7dca250343ea41c96398eb68aee4fcbd5ad8f7f6 legacy-trunk +72405 4a84700664d92621afe8b41d8a31ff8e056a2f39 release26-maint +72406 46342ffa296353f3507ee79401f7c10789264e2f legacy-trunk +72407 c0ad23ae2a3e1cce4592006d9a0b66a86c9ae377 release26-maint +72408 63b23bd3904de7169c62cf0eba37793575e88f69 py3k +72409 ca557f850eee64cd3f2fb110a08b584c864a28fc release30-maint +72410 7a67b647b9e77779eceb20a3481922e9e0983adc py3k +72412 b63020797f9678adaf4d2c3e26574a9eef2ef028 py3k +72414 a6299241fbd9bcc60597d546c06d443fc66272e6 py3k +72415 3aaabb3102e8e759a899719813eda59936981695 legacy-trunk +72416 376fe15862760007b074cd4ec3cf6e7e55d1438d release26-maint +72417 2058690a53e12ce2e2c710305c3bb40eaabb3189 py3k +72418 65d8db5beb2012219cbff1739e44717dec9144b6 legacy-trunk +72419 2a0faca3deee5983a50de141126fd333c19bae12 legacy-trunk +72421 77142985c6410a53504df77421b65cad1f6011e0 py3k +72422 a7caf29d140633c453ca782782cf983072a545ff legacy-trunk +72423 fac51a022bf50930403ef9a6f1facb2c984b0840 py3k +72425 85b9df525e1070f638ae540d89c815e05d2a0e97 legacy-trunk +72426 238cafcc2515f5db03d0a5168ebe0e76faf41a67 legacy-trunk +72427 62be5ac989f4f86c04b2489fb94a79bfc653f856 py3k +72428 a8190e881fdff2af63ce23cc9095040127560554 release30-maint +72429 7a3bd179b180dcc1895d2897e2ae13b9f1445241 release26-maint +72434 6c8b380db727fc221c22687e3bbd1df348a764cc legacy-trunk +72435 e7fe217ce0157dd8144eaaf7f6332ed070251575 py3k +72436 f8758353c6c202b6c56b6ee7c04d35d823a40fab release26-maint +72437 570d3e58eea958b21a03f3884c27e742a0aaa029 release30-maint +72438 0ef242f27d769977a26cf127f891f13e81eb246d py3k +72439 d78037c1622500728f14c4c9f4644bc1068b9389 legacy-trunk +72440 5502ff2fbdd63d27fea692adb002d126ed95ff3f release26-maint +72441 c693003b15e21d0450f76e331330ee2c047da61f py3k +72442 aac4055d066a03e394fd315274fc22b178d48ff4 release30-maint +72443 4c3a84e54d0826816a903eb337cb300793d1d8d8 legacy-trunk +72444 0d5e2a9286a2a4b853ece35133b2c33b374515a6 py3k +72445 9143d20d8b2639d386c1ff68868a126635905624 legacy-trunk +72446 198b68ae2c2df5373a077df2ea06aa701b238b6d py3k +72447 f5f507b55d46579515e4e505ccdcc5322afd673d release30-maint +72448 8f3da7134ca5f07a365cb02e65f8733b616dbd9b release26-maint +72449 e56712e186f9df8c5b61edb04c6c047a1adfc188 release26-maint +72450 2df2d1f09d585d72f42dcfb16da83859fa15f3c3 py3k +72451 6a715727f19f755c3b4538860088c9ac7fab0c0e legacy-trunk +72452 47b3feea4e1a51c2019d96f9a2b25521071ad527 release26-maint +72453 c142e4538941e63dd0b247bc8fc37aa60f978f79 release30-maint +72454 11ad6545809ac7bfc5191afc7c954517ad44ef66 legacy-trunk +72455 b3b155583e055d39817ddb88fd795305258847df py3k +72456 17f7774f74ddeb6b440be143995b05bce0dc89bf release26-maint +72457 1cd1b21452d395266859f6c5edec7d66a8d2261b release30-maint +72458 a015a298543ddeb18c27e87356d437bf0a2ee6b0 legacy-trunk +72459 046bd2a41322faeada7d8fc7cc9dfdd3bfbb38d3 py3k +72460 a36fa2ce61b1f3cb6846f572f5479e3f5a9f0940 release26-maint +72461 1ecdca11eb9ec2864036344c85a9b566fb8fec39 legacy-trunk +72462 2993f049e2c95333e6d72922246360e7427207f2 py3k +72463 5420dae355f73c63501cf9a7265cea76db81d1be py3k +72464 37497a7793b2ff73b081ac606c9fdb1352091df6 legacy-trunk +72465 f1ff87b9b4373b2b4c8cd40a8220f3d274febbb7 py3k +72466 238502460795bc60fe79734c01a513328d0a269d py3k +72467 66ecc896b7e73a054b1663a8af192ad6f302c9e4 legacy-trunk +72468 9c7bcb7e748c16247de494e721ba42e1e793e72f legacy-trunk +72469 a6e6a57cccc29a4e55e93924dff844380e9ac2c9 legacy-trunk +72470 5280f755b48a14b41a284a673a1b7fd7086ce36b py3k +72471 694ee20c8c743beb69aa1714e5bf631d8df8bdc1 py3k +72472 ba4e6a3af564ed70febe87c9f7653b5ec916cccd release30-maint +72473 5ea546357226ddadf415de35acd27fd63c45e92a release30-maint +72474 1712523f936c50ce50ca7bd7278ec3c7bd65afb0 legacy-trunk +72475 5f21574797495d5606ba5890f3032d2372d405bd py3k +72476 d4efc7338706bc4bae975467c5db229641072303 legacy-trunk +72477 7a9e081ece4c3da1c460a4788f2ce89968d87ad9 py3k +72478 cb7be63b91d85ea8aefee165e97fdfe4e873c6a8 py3k +72479 0dae7fefed4405c842e4d1d32edf42c153b74625 legacy-trunk +72480 8b9897d15cfc80cee6e80160fd54a2d3eda587a1 py3k +72481 20869d978b8b4309a92b27ba79b673f8d86b11e4 release26-maint +72482 b867ce375e98cd0d233d6745d681ff292dadd5f8 py3k +72483 f4950096e7d7b477889640bbfabb0d44bc9e063d release30-maint +72484 067a639d5f765922b3c4af8d4278f1f30021e7a0 py3k +72485 0722f204d26e045beefedb960de0b9e557745f5f py3k +72486 f917aae741d5e61fffde1e96db229aa4ab1b927d release30-maint +72487 a171048daf76f425777080a3b69e22ffd0b06565 legacy-trunk +72488 9ef683d41c9b22297bcc4b05c965d6fabc3e732b legacy-trunk +72489 510ffc5db232589c7693a4eac8821d35fcfdbccf legacy-trunk +72490 446a15a1bee8fd0694408cfc446c10a67d50d01f py3k +72494 119e4323400d01c822eb1e0c75fa5ef0e6bcb615 legacy-trunk +72495 73986a9ca1d63dfb5954f6989e8fce66c5b0e38f legacy-trunk +72496 1d7948cb543000af3d1ff1460637aa636b543a88 py3k +72497 ccfda14d155481f4e4870eeb2ae75ff4766230d8 legacy-trunk +72498 d66603dd3b2d718abe1f7667737ce0b65b86a321 release26-maint +72500 f9d9eec6be67017847fd7d7c277fc4d38baf720d legacy-trunk +72501 9f713f605f60efd5f44b5bc5f1d37098c62096ce release26-maint +72502 36fc0798417f14e6d6c3c43545717a985d49935b py3k +72503 99dd29e24bde3d4ee5d069f0dc9664cac747c3c5 release30-maint +72504 962b4ff76cca213457533c8ad76154bbac056b4d py3k +72505 9207d429203a1c5a9652d839989a5440fb6e8c6e release30-maint +72506 072a8a7ce973cdde464e8950f414db53205d8253 legacy-trunk +72507 eb6eb49dbae9ec7dcf221e46b7e827e0d6d8c2c5 release26-maint +72508 f90b3eec7c3278c5f90daaf388632c152b0bc1c6 legacy-trunk +72509 5dd3b38a09778a6673cbfc6e08f7b86e514b2c1b legacy-trunk +72510 b7920e1834228f5ef784bbb2a6fcd3242a2e1b95 legacy-trunk +72511 afd62eb1692ef1acbabeb1c9a059f1cd630c918a py3k +72512 30edd7f6101bd9a7f6da93f2bad0872398f3a797 legacy-trunk +72513 327e23a6a61020ae0e1af685ce877357bbd7c641 py3k +72514 261f594014c6225a3e95c651570c66eb68fa164a py3k +72515 1b15a57e1f02f4bbe0135a25a8bde2115fa91e22 py3k +72516 d2b176161abf0b366cefc6e376f5f42242d88c4a legacy-trunk +72517 72a50394c2dde839b736cc094f0ded5241fbc96a legacy-trunk +72518 aa41c8c96055006f073fbfb79519ae9809ead4a4 legacy-trunk +72519 2b406538866d909176df2e99606aff4980d081e3 py3k +72520 29b518f296de03e8e47278c9464254229f84a1a8 py3k +72521 056aa769da891a10f2e7645dfd300266927b6630 py3k +72522 5702d2dad0f9ec8ee0e75be0d2474a2384d6ab0b py3k +72524 13117728d086da4259d45f39164d983546acdbcd py3k +72525 a7c53fad13bc36d2202cb6112c00bf3cb8938cec legacy-trunk +72526 3e84d60126b7e029c082d091d8cc49774c8d7997 legacy-trunk +72528 fbcdae3e0ca1bec10f4dedd99b352c4b3bcbeff8 py3k +72529 7c29bfbfd35244d04c4394585151c019783748c1 py3k +72530 41c09e142bd006e209fff14490b513a177eff90b py3k +72531 e91a77a482ebe4e1da95e5dd54d9de984c7920ad legacy-trunk +72532 35e9803a2f4e45e44de98a5f39702b7eceb34022 release26-maint +72533 050742bb60d5b17374a19d5aadd2cac012d31a07 py3k +72534 9e67c2f999c9ccc63d7714e6720fb5be7153b37c release30-maint +72535 c60cda3418b54f6508caf217cba36a5855566e8e legacy-trunk +72536 8a04777b59cbd0ae853b1f6d062cf369bbd7e20c release26-maint +72537 5224a258d5bb04e2079b3303b1d52d4fc3eef463 py3k +72538 9a6f5e0531a63186304d2a2fc691b375f33e9fb7 release30-maint +72539 1bec64b8dd176aa9536fcf51ca3fa655bf2aa9ea legacy-trunk +72540 ac4894693411d417eea2e536dccb6c7851bc0f31 release26-maint +72541 888daa003fc3ce358bff7d2f6e8e561778555954 py3k +72542 86a3c9a9c6de41aab7b81ddaf846d69d34870798 release30-maint +72543 17c53fa3789016710dca1dc22372cd2ce00890c2 legacy-trunk +72544 8803ae0df3f3a556e4297f5166c1a676d7424842 release26-maint +72545 241daa259af96c3e9217766d12f7d28d57b2b35e py3k +72546 281d2e23bdb2d3fc25971ff907548f04f7c4eadf release30-maint +72547 1927e8d791477957d19979a520e549e12e316904 legacy-trunk +72548 4ae01a241650d5648f83de8f1470e3f75dbb9c70 release26-maint +72549 f982289f93cfb8e3480b752ae2699baeb98de79e py3k +72550 bdcd05a81acba0ee388be80e3526a7d4772d9e9c release30-maint +72551 630e681100e08e492a85029cca87adcbb0d9a6c2 legacy-trunk +72552 d65d7189de32cd3ea563e46355be14b2875d1eef legacy-trunk +72553 c7471c911ad24ee3daf1e699a3274296ad21b447 py3k +72554 ea2e425d1f600cb1bfa7eb5366403184361072a9 release26-maint +72555 d02b0e707377d3ec661a693743cc4a4d82cd09f5 release30-maint +72556 6e7c7f424436b67882b74b939c8cb0fe9edf2143 py3k +72557 3416721480b21c5f962a36bc992211a72edb1b6f py3k +72558 4ebcd014f3d06a071df614448e7759fbfa453164 legacy-trunk +72559 0495bc47cd086a97bcdc88435e636062982ee68e py3k +72560 4b41743f6527cbc8f3144fb8553a38329393b549 legacy-trunk +72561 61c5bdb294f95185a9defce5a5d0f3b688566298 release26-maint +72562 f20093719c0eff1056c8652bc2069e57bf4eed97 py3k +72564 119f4232af46180a6486973c69bcab6ed432d140 legacy-trunk +72565 9414c2b1923edea8d35cc7950c435e4df4632ae6 py3k +72566 35c6d407d3c9ed40b023de0a43a8b8f3e5b52a3a release26-maint +72567 e9edcaf425473d9f1aa63d843f55d8271d085e20 release30-maint +72568 c2e2b47a87c147b44bb7c5ccc025d96b2755b787 py3k +72569 8a7e84ae46c5dd856f3919a7e471fdc63ac8261b release30-maint +72570 ccfca25878853e917cf3173d5d3c1a050496f2a1 legacy-trunk +72571 22277dffc571cae7fbd81a5358543b41c0dcb941 legacy-trunk +72572 8930548af734e026f26bd4c0a128a4dbf8f868c6 legacy-trunk +72573 84616ebf2b4fc087b8876d08f54fd8da84a183a4 release26-maint +72574 5d0f5c57135797e9785babdd40b1fc83ecd5f423 py3k +72575 a26af85ab8950b5f2c71084e6fce1ced412c9d0a release30-maint +72576 59cb9c074e097ac7c2b7eb44c22f271e3b2a8546 py3k +72577 942f2d6d5c5cc3c6d2d2ec5c071b5b1849cc3393 legacy-trunk +72578 bd80fb836b9e9fd858ad5bbd50a4ee7399b5d4bb release26-maint +72579 54604688b3e97bd30f306e7d3a729cb0949425e1 py3k +72580 1357303411487c59dc465badedb6ad7bfc5c1b7a release30-maint +72581 258219646e3adb9dec200b4a783d37c278a8fd81 release30-maint +72582 dfe5865e5f9809cc5e4baf7137505e641a96395c legacy-trunk +72583 beac0b41cfb14fec10264813bdfea4a60a5d2992 legacy-trunk +72584 efe12aa8ef19cd151a600d1b43b6143eb5309419 py3k +72585 e8209ab496914e2838045246b009b49fc0d79bb2 legacy-trunk +72586 15a8f4f2bc84845e239e30e5f11b6ae7842df7e1 release26-maint +72587 924dbb7fc6c57fb061b8aa647521b559557da2a8 py3k +72588 b6385703703e1cc781d35cdee48978c1e4ab09bf release30-maint +72589 5fce14e1d7032c2cee3303e95b18b799c0e9d2e9 py3k +72590 78fb7f8cd34922df1571e2ae905c64aa7ab65e2e py3k +72591 c2c8d0ddf1877a9bae4e725b1e755f2c39e59caf release30-maint +72592 d85bd499f3f4ece7a0d2c0703cb9a6da75889ef5 py3k +72593 d22124c644ffa4b84503c866ac0444fe7cae80ba legacy-trunk +72594 735ed178dfae525bec1949218ed284a8de712fc8 release26-maint +72595 2c1d8f2d38398ff295a682b7ffd6598d6c508fdf py3k +72596 0546805b3022a065f825170e3387ff9729ee46e8 release30-maint +72597 6419828ef65ac4813cc105907972ed8407ac4380 legacy-trunk +72598 4ebe6b260c55bbc03424f674df3afb35d61ac49e release26-maint +72599 19e959626109f324583a7b2fc57a985baed247d8 py3k +72600 2d6ff4a94953cf9435cccdd66d57de8198d0cbe0 release30-maint +72601 bbb911f7c0c29f3cac27fb23f30dd2dd507945b2 legacy-trunk +72602 f50edd4bb48f83b8828f8ede7c860a888a4ae9b3 release26-maint +72603 688d94e86ca288dd45bad3496455f287db8d8361 py3k +72604 35ba65f1cc8179635df060057e245342e7c200b3 release30-maint +72605 347e59ea1a71da681dbfe6b4389e2175467236f5 legacy-trunk +72606 31952452485bfa2b460a45cdd27a4e9bb6dc3218 release26-maint +72607 e9a7aee8e80041e10d24613850df0d61fc8aed68 py3k +72608 bd2f7e13fd73edfd04ed7f5cf5e30623104a5352 release30-maint +72609 0231876f31043d188613802ab656ffefb42ba521 py3k +72610 c51808269214d223080db64d5beadea61e45a119 legacy-trunk +72611 91377da54ede9584aec04c19559bf6dcb132bac1 release26-maint +72612 882d979545260ab56084f7a077aa5bbdeffdbf07 legacy-trunk +72613 8f6e91237027422803adb7d5d9db890ff59394d7 release26-maint +72614 323e1d848b5fffaf7217c755506818cac5d08cbb py3k +72615 8c7cc16dc79c48ed75cb7fbf24a39fe0c583b317 release30-maint +72616 a6c4cdfda9d6d507956d72c125ef0d27d46cb1ba legacy-trunk +72618 bf699026458e49024a98a06f20c8620ce55ab390 legacy-trunk +72619 ddee4d05fa17ea1da71cc1686ca361a6c491c7ec release26-maint +72620 7814be6967b8ba088581fdca09e8e8a1c0966351 py3k +72621 beca6d7ccc90771ecde99617575c8830663a888b release30-maint +72622 3a5f6b6334993494696027b774ee98a83600be3a py3k +72623 a69e7cc049bb5ec99e784e93996def14e28319f4 release30-maint +72624 67baf2c17369f84f6e6c3859d9439102782928ed legacy-trunk +72625 b05d479d1cb0adfaba89e85118afe1630aea9569 release26-maint +72626 391db80d1af4cf26cbbb3a9c8b430601b75f5800 py3k +72627 37f90f2f40349a8cf0effb6ae80d124ca2fd84b1 release30-maint +72628 1d048c9f43dc66a02b62c87c722c98d850b8f952 py3k +72629 aa77fd8626ba977710c7236686725df945776552 py3k +72630 e962129665d804475b2bf116569a39e53f3f8d3b legacy-trunk +72631 90a8102d7efbd6900dd13ab806f696b5cc7fae07 py3k +72632 c72d4fce3000597dc125912305dfaa613801ddf2 release26-maint +72633 6d6914177f60266b5da04473398d6c0754adb9ca py3k +72634 91030927637674df5b132197c86ec0aa6f4ff4ea release30-maint +72635 07b5f20d025a87f793b6a312f94707dfad71a8ab py3k +72636 38e354609cf2d5662ffc88c05925cbb7512d2046 legacy-trunk +72637 2a7ce13cea25083f9962eae1ba7509dfd750beee release26-maint +72638 e69120be65c4527909d9a1f02910497f1d1407c2 py3k +72639 0fcf2acde4736d2ade08f67f2de343f69aa9a728 release30-maint +72640 e4d937f789a11314fe1bd2e8b0eadfc314b03b7d legacy-trunk +72641 73d9b97354248a90a882f541ff721165c0811a44 release26-maint +72642 3c4b1b4501c1b4d87232b4b4a87b45a51175d51b release26-maint +72643 6be5854e5df7aabad62485a7317a791090c29147 py3k +72644 7e3d7b5224b1eab6aead223e024198923a3c4e95 py3k +72645 91ea8fcd457e5c14234b9688d896c441dc11010f legacy-trunk +72646 ab30b237b60009b727f8cabc8cb23b54f92f08cc release30-maint +72648 17d1946540d478719602ea54bb688faf0154c28e py3k +72649 ee215649fae0608cc4e925f33a4928fdef1c2b40 py3k +72654 fb01971949a55455020d4ea0370f24609d78df13 legacy-trunk +72655 e45186edac919adbaa7649987cf33ea011cb31a8 legacy-trunk +72656 f76f23af2295ae536858fcb5a435f45067323196 py3k +72657 9d503707444e41878b5f6b833ce636427857576c py3k +72658 b600e5103c63e23ebd6b869b698558f4e05b03e4 legacy-trunk +72659 b33b4249b185852208cd85a11f9615885f8d6e63 py3k +72660 e3dfcd1fe210d655e696ec81f3a48d46e0cfa559 py3k +72661 a7c34f728f0e8ad139aaf535a526d9f01f0fc067 legacy-trunk +72662 93ed68b999e757cee9828255336ae4d5dd2ceef1 legacy-trunk +72663 88d965be861725dff215362b0b0028a0bdae990c release26-maint +72664 d902f3494499608c2ec04346dc466f7210e461ec py3k +72665 dd9158fb086783f48f91dc9169b42ac819e5743d py3k +72666 9bb2a1371ddc400518f20da671e578677523431b py3k +72667 e5f28876ae6c93bae9e870eb4d6813b447b5ae8d py3k +72668 0d8db81a786c68acf1afe37a1ed8da77cd877773 py3k +72669 c40f187af6ddbcf798a174a2c38cb64dc60718fe legacy-trunk +72670 85fb4c229a9cec21c813546e2986662d6990e4e2 py3k +72671 b4261da4ea50c376f40846fe5ee9626108b98f0a legacy-trunk +72672 cd4a7827edb68a569d0dc6a5e62634ff6ae85f5b py3k +72673 18b2f2cd0741f4a23d3d0e923afd9a466354b63b py3k +72674 961094705370290cc5fd78389f8256010d9a1c31 py3k +72675 90e2bfe4f60e7a25242d2b5b2817a88b92759865 legacy-trunk +72676 34b60b736ad33d5483665e9d039d7b156c212283 legacy-trunk +72677 2ca118caae716a7c76d9f0b8daef8a65e0173fda legacy-trunk +72678 790992bedd61d1e7afc12fdcec85b64bfe0d5b9d legacy-trunk +72679 8e8e87c1ecb7ec57de1503c1d4e0811997d72fc6 legacy-trunk +72681 d514a8b7ae78ae2abac50d7e2337ef7fa6a2d2dd legacy-trunk +72682 43fc45d3cb216b5e54865813e995eaaa19c17a9b release26-maint +72683 ac660ea35f525da362c1bb60ff2c50c551a9c4d2 py3k +72684 c3d4d93c89e257ee6ca0396ab17e8df3985d8a49 release30-maint +72686 f1bf538786b7c9ebb5c21a517e0dcdebc89cd9fb legacy-trunk +72687 988ca98d91962bfb02feba64aa61b043cb91c788 release26-maint +72688 ca7847d3c45194f0b894cf4454b3ff3ebc4b599f py3k +72689 1f8accd1f42ad004efbc2d25ca85f48e782ba70f legacy-trunk +72690 ae006386ec393b2634f3a66ff634e02db769c532 legacy-trunk +72691 f9f997c1fd813c7530a556af660c1677f7e7dff7 py3k +72692 69567a05d5e65736dc304bb7957d99384dca39fb legacy-trunk +72693 3aa6a863ff0691e58cdb2592b2c40522e99deb87 legacy-trunk +72694 1cb804a2e03879697a2d4aa8992b0df42edbde68 legacy-trunk +72695 a198e8d36ec3b57801cf29322e3635047d5e5ff9 py3k +72696 a535960944441386e4447d80e87e1e64924e0321 legacy-trunk +72697 83dd2b252a27646c8aa156c948b116b94f328296 py3k +72698 d64d47ee54a18168fd92f2eb41338ec2c00be6ac legacy-trunk +72699 dcda448ca66e8726b668f6ee406cb4e7ccf21bd3 legacy-trunk +72700 0e3ace9f7516db4ff5df93b903f61dd28311f58c release26-maint +72701 77cfef596d3350b59702df1d4532e3bd7102c593 py3k +72702 901b4fffea1f80decab724e3432689fc75267f10 release30-maint +72703 9b92d2b86baaef2114e08f880e5de947a9278021 legacy-trunk +72704 d2732ea99ba08883f58cc2b4ccb5b69ac763c520 py3k +72705 e8f1a007771aa90b8f092c9512032c4ef0215050 py3k +72706 b22b2daaeb44f39e9b3274ccf09a11e9de3db004 py3k +72707 d841f97243b574ad8533e69408790988e2b6afc0 py3k +72708 b52b92f31fa889c1a548aeee1bcf0c76ad8aea3d legacy-trunk +72709 f43fc1193c2ab38847569dea59d670090e914d59 py3k +72710 e9c08ffa9895135a8e1d9321037a6153a69502e1 legacy-trunk +72711 10ca11e598e693cf3726824cc70823cb0b0682c6 py3k +72712 c5b982af209d7bc38b36c902d78ab3cc90b22b0e legacy-trunk +72713 fe8d3fd66d264ec20923af9dbd88cf6fd9bac708 legacy-trunk +72714 b6b454b06a7b35ca11a0a26516786b6b539df71e release26-maint +72715 fc7935de8e8ada8c6c94d353968e5a75abd61515 py3k +72716 d40729755edfcc272eecad3f0190023488fa38d8 release30-maint +72717 35bce80a25f89986aebca14782f24f355b954757 release30-maint +72718 99b400861543ea442167cf96f92e2c8fc2ea9a42 legacy-trunk +72719 adbc662ff4c1d28abbd0521db572a0fc1ba17f5e py3k +72720 0e8c8b0d8669e49d581b58420b3e28cabcd703c4 release30-maint +72721 f2538183d2621fa009ae2cdd72d2811b333e91d5 legacy-trunk +72722 9d81e2c438db971b5cb09a905eeb1af3a16a8fe8 release26-maint +72723 e2217361eb37a7bc84f17126edc8f6efad82c0ed py3k +72724 108e90b8923ea2ea95ce0cb1888cbec9d1326e5e release26-maint +72725 806ef3a1f858d1426bdc30b493d249dd9a6b4c29 py3k +72726 3678b2d360c6985489d50611969b3bc815611088 release30-maint +72727 df3826472e3bf91cded7b940ed2c5b8e86db29ab legacy-trunk +72728 f0b09d0539c099574f8542595bd19190cdaeb09a release26-maint +72729 56adf864f3808dd228bca84a9a989df96e61df61 py3k +72730 8ffeaf6499708ed6f76cb034cda38c223f402955 legacy-trunk +72731 c009b2b3481f9cfc5ed62199a59e00444bc3cf2d release26-maint +72732 87830461ab42972c81f36e26e90adb6adee92d4e py3k +72733 76a9f9cb438f5093f3eb061ad6bcd3bdcaf09c63 release30-maint +72734 7116de3dbe983a6df39527c0eb22b501c64c30e7 release30-maint +72735 f65de36f185c5cd503fd6024d31475cfa8779f28 py3k +72736 178f70fc478d796b6a9a9ee27c8ccca332131ce9 legacy-trunk +72737 3bfdb8d72560fcfb2dc7a0a23959344a0416e8a9 release26-maint +72738 fb59a5264ae25c95088b55b347688afebba387d0 py3k +72739 81c57900a1825a803a8fd8ba053f06b8ee38bd28 release30-maint +72740 fbb33390b2549b2f4e05095c66e8b1e887f17bfc py3k +72741 904a1bd35e00892b54c870f44ee22a9e5ff02540 py3k +72742 d143eb624cf5e2fbfb9c2d3fbe2ff0214ca31c14 py3k +72743 74b6748b63f5fcab1f30db77fc6fd04563a9fb22 py3k +72744 d0994a42b5975b260e75b80130487a8a7c1a6510 py3k +72745 41a692627eeb3c5338047f147a19cf7697aafdef legacy-trunk +72746 7cb0a4547f0a0f832bf66e736c3e8eb6a32c7e3e legacy-trunk +72747 0ffc95587d7c45603405abbc8970451c9f15bc48 release26-maint +72748 17d078c5d65b52299f11bcc86f5406a954a4eb95 py3k +72750 58d3c454bc372438b7a281656b7367fbaa168d63 legacy-trunk +72751 f935b95980398d0d1af425f121febe11fcdbaaea py3k +72755 a7ad1696866b4dd9692f1d4511b8d0679cbcc07f release30-maint +72757 2b7cb42dde1167f05775705884598c4f0696bf0f py3k +72758 e3bb6b62bd0f5075d57c9e31c14e2bf4bf61b635 legacy-trunk +72759 d473fba4ec6757b085403824af1d0c6f90476173 release26-maint +72760 94d283d3d00bf74b71750740a29d5fc344610912 py3k +72761 6a359fd246693f49af640b0c3a23d6651ac7515e release26-maint +72762 170ddf960fddd8d9392057941899795f56874729 release30-maint +72763 71ec4fc683af92634bc309708390ba918cd60938 release30-maint +72764 143aecc80b6b6d5b034356c9d7ad6f00f25fc23d legacy-trunk +72765 2d06a32a12e3706fe0b5d31c065ca1412490e338 release26-maint +72766 737b3d4acbb9fb7017ae42fe8c063f7a2dfd9ef4 py3k +72767 68dce65506d9faab026d3d4d6df95588b3e892d1 release30-maint +72768 8d261b76da46bf94b60ef1f30e1230eeaf1318a2 legacy-trunk +72769 cee80d06f7ce9c4638adfb1aef5b8ce1c096b8df release26-maint +72770 9a07e9d6093ada42e11d48d027c60969decb71ce py3k +72771 7ff7bef32911694431c1770b5fb7d65974a5b5f5 release30-maint +72772 00ebbf1ce9360268029a2af2799f6ba13eee6f2e py3k +72773 ae20f1ebec21ccea38938a6bf6815e00b0b2ce53 release30-maint +72774 dacad42836dd600c7894c0f48aa50d02cf257981 legacy-trunk +72775 c136887db7eff4cb01fc3e1e34dc5e99d865b7c9 release26-maint +72776 d8350d044cf228cd6f9f7cdb767231d312331411 legacy-trunk +72777 6395347c027626ad3fd7b5d350779e95872512e8 legacy-trunk +72778 945c657447d21e6678d845650c09e1cefdd1c224 py3k +72779 8f17363b93e6ed1c4a7cb26f1b663d22da291f9f py3k +72781 883ace7ea4466640ea1e7f6e6341eb6adee95632 legacy-trunk +72782 2901b13fbd7e62e4f6b228bf8ca2a2b83842c5d9 release26-maint +72783 9394a82d8de1695f2e198b4ca033623097d8c4f5 py3k +72784 69e9434e450adebdca2a79162ef4351322974725 release30-maint +72785 f7650a0e90adb5f6c84ff42a10c4a21dbc4a18b7 py3k +72786 74bdb0e5212bdf2216d514a377eb64685911ef9a legacy-trunk +72787 76c4414d10a6c1c162e4545a3c0e5c4c52181163 legacy-trunk +72788 6fd009ec224a739f8fd1ddcc1559ac10faf50c41 py3k +72789 ab23ff2047aa0d8a9a95d64744d686e201db117a legacy-trunk +72790 c7fd741c72ebebdf4c2a47c9c7ed1f0a362e5579 py3k +72791 056283a5c5da002edda1fb6ff6db0e06ac73e5fe legacy-trunk +72792 f275d6a0a1d177973e4140aba03119406c8f11e9 legacy-trunk +72793 6fab8bd15d710d85177ff7f1be2a83f5bc028cf3 py3k +72794 a52cecabffd4c328001043e594b831c34ba444ce legacy-trunk +72795 bddf11e6220002a92f6560070b97857dedb6834c py3k +72796 4ceeefb8555e639aa9f887e41c14ec0f21c2c6bf legacy-trunk +72797 ad77226111b2630adb3655b3d5e163140b17262b release26-maint +72798 083ba24905ad9197828f24a561fddf631ccd0fb5 release30-maint +72799 4fa4ca4503c8df61e79be04d350bad3969286f6f legacy-trunk +72800 7e2a6c1dc9d22363f91b92caea4f3dd58bdce960 py3k +72801 6e40add3ee02a7aecc30761ea857649ee97837d0 legacy-trunk +72802 023a3428f1aef68d47fac721d2a98540b9879e82 legacy-trunk +72803 670fa0c0ff9af2e6711ffdf7de3c807261ade844 py3k +72804 8921304b5f922a415bdb7a0dd24b0b9702a86dc1 release30-maint +72805 d2ccd89e8e6b9513d2e8c649ed66e92a8b80269b legacy-trunk +72806 379e63bcbd0448f6a20671ec69e3824dd4ef8aeb py3k +72807 93f4a9ad26f68d33bf81b82a0934f64118fc14bf release26-maint +72808 b3326fe632e5a793e196d914ed380c2a6b546060 release26-maint +72809 2d6fff9fe8ab736ff21a58aaf9e6fe59be0a8d4c py3k +72810 4501b638fc3f2940d32beb6af6615fb1b7778fa7 py3k +72811 9d6457f3a3edf45a0e2c949efb0fd48df5365edc release30-maint +72812 eb9b1ac3d9d87046fefce5668cf30a19ae23e1d8 legacy-trunk +72813 cc0557356014bd5ebd7f2a751d73e9f69c1254eb legacy-trunk +72814 d61ab044fdf4d180b54e418d749971b841e010ea py3k +72815 604444502ea0277f38803584205e5d98f527dc1d release30-maint +72816 2c35b816ac0daadab9c0c0820aeb61da41d95075 release26-maint +72817 1b62bffd2ef2e0d5fe2bfa428cce8bd68683e9c2 legacy-trunk +72818 42dbbee66c322ac64590f51c24d6cf8d99b2c446 release26-maint +72819 4fbce6d3fe861de7cd5a760c95074b19c8b7bbfc py3k +72820 fae3a77d203219197c0c6e92c95964ec8b4fd0ad legacy-trunk +72821 b66dafb406494335e8b33ee5b124c520069b3fde py3k +72822 6074fb4116216d123e7aee96786866853c0b1e68 legacy-trunk +72823 c83a172ee931e579c372c8b9690a2f0f707f2a22 legacy-trunk +72824 dfe88d202180edd9ff59b453f5bfee13df6247fe legacy-trunk +72825 aab117e6bb16c27a2b101a58a0f2ee71b3c27aa0 release26-maint +72826 c40807473a379d41b3b35fb3a99069648660abbf legacy-trunk +72827 840a09de68c3d1458ddfe5492416fe5e5b15a732 legacy-trunk +72828 f227ff34e33d48f2341e53dd15399b9c77ca992e legacy-trunk +72829 354045bb73261589bde353d173f02cb94348260e py3k +72830 73dc72849853d14a15607a4bbdc3f19cacd48b6d legacy-trunk +72831 dc47f7c65d308ad94a078e8566f31b1349008052 py3k +72832 6364e911e4cb361fed5449ba429ccab8bf735865 py3k +72833 259c8655c592303a54e027b0128d65b3561d7797 legacy-trunk +72835 987bb734e376c187d81b510f4972c5633d995abc legacy-trunk +72836 e5dd2429acb33eaa0dbf6c19aabf3ab684785f3e py3k +72837 8bed6e6bb9842b1d362d4efaf026b21475e8ee9b release26-maint +72838 d0ea78e924a691aa488d185eff47083f2101840f legacy-trunk +72839 04a4b7df2d4d30f6916e3f0f6f30831c31d52ddb legacy-trunk +72840 c8e1d7f2252c4f0c4884a2457099d5926f3c40d2 release26-maint +72841 f2454d71298acd59f3ca249b054efc6e5d0aae84 py3k +72842 ab1b5ac344d798c814236b440699e3095b75428c release30-maint +72843 eb20c95006c763c3fa2ec9c77a5ca9f2277dfa7f release30-maint +72844 253ecae6478a4c5795abde5f8b952191a3ad8717 py3k +72845 435bca0781e3dbb80656433669af9843c154fc4a release30-maint +72848 73f62731b1e6e4e9d45cc7373b0bc64da87abfd1 legacy-trunk +72849 d2d028f65c7c6214f4b3ed5fdae27c40230171cb release26-maint +72850 2bcac08cfc6dbd966d6699c744e028fd5eb8948f py3k +72851 e96573e7c5187de8a7f8341d0695f32c0a5b4f51 release30-maint +72852 c08bbb84062e0155d452c8d70bf337755791c8cc legacy-trunk +72853 3e7bc74934a1c707666248772834d81e3b6828a6 release26-maint +72854 d5c582f46bc94c8c47025012a0e139fe16b09060 py3k +72855 7cc0fb0768471a84c6958455f7a08f56c34e487c legacy-trunk +72856 1b689d57888d55e5114bf4b463026f01db63f1cb py3k +72857 e06454c2cc0bffaecb421e832fc1ba8835b0507b py3k +72858 b1e351cc59b7475a26d0a9e11719ea44d009dc9c release26-maint +72859 54bbfd41be668dfc23c083510211accda7e54133 legacy-trunk +72860 9fd1d54f617cf0f7dc045083696b37b511c92057 release26-maint +72861 ddc9a16fbea8db9afda52d85f57af0afd353de4e py3k +72862 e78e0bdbbac481768da0258acc18e734bc4d2a1e py3k +72863 0a78effb5e0b52043f2b478b52cb958e93841008 py3k +72864 bf284308856717db04d9de5dfa442c1fb40f9dbe py3k +72865 f9d2608e24e8a37b4b7fcfb7e682e460df1e67bc py3k +72866 997ef68bfa151790d7e183fbce7f41a9190296d4 py3k +72868 33a7cb20f558ca53c50810f5410ab9cd99fc45ca py3k +72869 252d81a4f69d2ecb64aaf9e2cca32f816157d226 py3k +72870 846277a422491045583d175c4efd890e4e52b471 py3k +72871 150986ab3db284cfd38d67a1ace2f04c2780bae4 legacy-trunk +72872 b278b4bdff1e22395c50eda4f3e4786755950769 legacy-trunk +72873 e17c18a6caec475dc638e9146538e1c74ee804f2 release26-maint +72874 89631f627810e8d6221e77bfccd5350556eefd99 py3k +72875 bd2fb1be130ef4fbf36b87e8b4906f84e0516031 release30-maint +72876 dba767bc3155fd2ba43687ffcd746e9e96dbbcfc legacy-trunk +72877 f99f3d8c51d58fbf0f4c0d3118e356daeeb3e1eb release30-maint +72878 d9ce3e74067655698ba067795e6aa79bcd7a6551 legacy-trunk +72879 dddf424bd66968c0595d42ef444fc5f64d5be13d legacy-trunk +72880 e7b4a443f764aefbde1f1abf34afaddefc62cdf3 legacy-trunk +72881 61bbe5c9051bfef2c39ac8239b74150125e2770c py3k +72882 a580a2ee312843867e46d24904d3f2fdb9909318 legacy-trunk +72883 625a006a253b8f1641de880671456d926a8431f7 release26-maint +72884 98978e4fd60fa1cc762149588127c39fa6f944e8 py3k +72885 833e46c1499bd7812a13a366366d59c1e749c811 py3k +72886 48b75eb02434ca631468e1137fbaadc4916d190c release26-maint +72887 3428acd31e456425706ced8cbdedc7a148109584 legacy-trunk +72888 1e2c3e7fe63cf47b42da8d94c73291c8327af714 release26-maint +72889 3d305dece5674dc6dd3429518d3b5930dc219ee0 py3k +72890 5dc33f467ff46f2f6307da5e3a2610c4ccb7fb76 legacy-trunk +72891 9c744dfcf4de765e7723b755bf92b537b0d0d1e7 legacy-trunk +72892 b5e000d03b2c4f926fc82bbd1a04efc9ae403adb py3k +72893 3be37ec43c1bb385fa5bfd60287514cec6171b43 legacy-trunk +72894 e67b1d071ed61f5fdfb8036cf70a3ba349d0e2a0 release26-maint +72895 538f4e774c18e27f65ec2211a4662d3ce14f4d9d py3k +72896 1f4375619c9c3d9c2247547327c5c74797881b17 release30-maint +72897 b05f84ad8ecb0c3e0d9eff1e3b07a10593068e1c release26-maint +72898 f8cadfb4a1a237383e2641c6561882aa3e70bdb1 legacy-trunk +72899 8024175e3cc6999b1ab6aa9fa2b062312fc0d92f py3k +72900 bfe4028593e1118e15d7ace5cc30f8ba1567ae00 legacy-trunk +72901 04688aa564c85ef2bb650ecb45d92e7a6607503e py3k +72902 565413ee9c1b36d67ff63b6ff6d8f115f6fe48ba py3k +72903 d75079de2e46e400b228ee998fe39b8f3cca13ea legacy-trunk +72904 7391d88b3d82cd1827a8454811650435c726591b py3k +72905 b9c78fb6d71dbd1662b12dc15e4612d1d06eefa0 legacy-trunk +72906 eb0cd83c84abff347447b6adcbf153530e961121 py3k +72907 0c617b7a727ae0aaaac9ede6b292b61f1ea53545 legacy-trunk +72908 db212869d8146cdab90acea00e9feb48ec20316e py3k +72909 c74967feb021aa7a98f92aa6faf24f0d3b531d21 legacy-trunk +72910 5ab2f6ca65aafa008b765ec146f7e45bb7d28d09 py3k +72912 145376df3ad728f7052fdd8b6eba600a8317fece legacy-trunk +72913 f29be710c174d1c3437771d16986519187029cce py3k +72918 39d3a75fa82184102f34685d5b639c8df7a14e1e py3k +72919 5aea603b230893e2ca8787163d4357d1093bc2ac py3k +72920 0d7461c063e79edbbbbc381abb2dc71864877f28 legacy-trunk +72921 1480fa3fcab4011451e599ed62f71253656b200d legacy-trunk +72922 5dd1f6b149391fa7fc3a1fafd33be092ff62e54c py3k +72923 dadd8970b303756bc7376f635163cb4449476e75 legacy-trunk +72924 16759f62eb226cd701e01ca1d75a50f46b57b7b7 legacy-trunk +72925 287ce30d08b5440846e613690eea5fed94295d4c py3k +72926 699da6c467dc38c77b325ac120dbdf0543f2d2d6 py3k +72927 355404ea1143fea793cf5298bda569fd41cb1b4f py3k +72928 4d67452922f93fe7be4dea91190b85e8b7b65282 py3k +72929 84a60e710553083cb44a6d8911114d1590a94e99 py3k +72930 aac26de8b5d0e4d6e1f2a6154fc2e9871900dbd2 legacy-trunk +72931 d3daad0e7f6f5787cf7fec84a6cd0260b1e239c3 release26-maint +72932 cdfd017cee908c8fc35391fdfae686167d98fee1 legacy-trunk +72933 3b612569d5361f717c18391e80f2e6a0e979bbf7 release26-maint +72934 983d25691b68d80f885c917a4deaae9aa4247d26 py3k +72935 a27a739cef7f879abe8ad1263f992b83a5ac9d96 release26-maint +72936 0258351dfa604492f45a1778572f47db0a43c26d release26-maint +72937 acc07866b23303fdee65e8df0cb4dea3754571ce release26-maint +72938 34257a773ec0dcd369dbb33a2d6f1367e433721d release26-maint +72939 65646382e4e03de9ef15be8c8a05758633b7a90d release26-maint +72940 ba305fe8e83120347449fb3594445102ebebe925 legacy-trunk +72941 1ccb6d6257173053c31f861b83fbb23829bc2670 py3k +72942 9012ff7d75a2165d1be81f1621fe96a2c1fb86fc py3k +72943 2721be7be3657a427e18faf8b8050f76519c7253 py3k +72945 29e5c0165e13516aa29733caf9063ad005cf2048 py3k +72946 88305d739ae526e3c79a85b28ba2a9edceb260ae legacy-trunk +72947 d71fa6c468cc8b1d87c126c4b4c6da114c4009ee py3k +72948 fdf3eb7822e456bd52145d95effc356397698a10 py3k +72949 a4dd9217ea131cf1f3765b40e443ba8d63c5c215 py3k +72952 47dd290d2d745b4436466d5c9dd4a923b4fc6e8c py3k +72953 0e76102f478b5775d44df9a650e8a1e96d7c4c37 py3k +72954 f13bcd922f76029cd5627e87ec731c92f98319fe release30-maint +72955 3f79ecab5e52974249049e4acc7004f9fd552e3a release26-maint +72956 23a373c8ec1b388b703761ff492cd4cee761482b legacy-trunk +72957 ba6376dff6c4f8115b29bc4733da91326cbcba5c legacy-trunk +72958 7b4b921f3335677364135130d9de50def4f17bdc legacy-trunk +72959 6ab93470011bb94fdd5ef0e741a56708ee4c0f0b py3k +72960 4860f7493b91479f643e5a786537bf57978086c8 py3k +72961 1c078bbca233d76106482b374f0bec2406664c82 py3k +72962 1d096d1b98fd13e027edb5f9bbb0c6777c21f741 py3k +72963 22fd967518eec031f3bc7c77b74a4278ec7ec9f4 py3k +72964 b61e6ad5ae70e9f52c464e79708ce41241960656 py3k +72965 8cb349873cdae2bd78dba3c79382238cd4b9526c py3k +72966 154ca377f53c7b50e5c67921c4425c88a6e43339 legacy-trunk +72967 9b8b60bc0f5b73182f3c6660bfaf92ad373ebd67 release26-maint +72968 af4fd23654ceb3f419ece6f03a9fb9d56dd04e76 py3k +72969 4c77f9e1a19dce8196fd8103c2ac0d5b5ebfe9cb py3k +72970 837adb76a0e1ac0bc2147d207da537dd19d75c27 release30-maint +72971 13921f52684830a3b814a69f99811b059dc8ca09 legacy-trunk +72972 e6e3a0e91beac3d127b5ef21f14f004b4be75132 legacy-trunk +72973 821f7d42bf7422a0fde683be7beabbf7867b2c60 legacy-trunk +72974 fc4e2443f50964e964626c769cad308c3fe376c4 release26-maint +72975 603870228dac54e1a96c49de3d5bc075e8209945 py3k +72976 60d49b3fd3bfd2b76344306a10b719052fc2a058 release26-maint +72977 1029d9aad491c8f826c9667781d1262ea3cf5f2d py3k +72978 1d3b1be6a8b26bf2499d2ce6447d246c1d437ede release30-maint +72979 70fb848870acd414acc57c18f4a85ef49dc37dbe legacy-trunk +72980 a6b73d80fbe275a9f63a7d7fce7c00770f396ec8 py3k +72981 11a54dabfb1cd5d3378c43fc7984db5a006dea52 legacy-trunk +72982 8b299652b1e85f7d12e84ea1f30b829bf0a21593 release26-maint +72983 9ddfa6e05fb0da119943421a12b9dc2890a85390 py3k +72984 ac0b85f68297bd30f1e50e29e7abebbd356ad7f6 py3k +72985 5b2100e46d3b48a02f04c0ddb1af74852d3e24a4 release30-maint +72986 6056c96c2d32755870a685de9b711f174ac28141 legacy-trunk +72987 ed0a9d68402269a892c041771236b4ff6c427689 release26-maint +72988 9967379270a09413a35b8eb2fb9fb24bd1e84873 py3k +72989 ce99e8e22b1eac096073fd37175952757e6c0539 release30-maint +72990 b0040494b4a69aac96ca9169d2c0fe75c824b168 py3k +72991 f55d8ded2d05e5acecbf61ac43d239499aab8783 release30-maint +72992 b726ffd4952450d22bf98b94f5d5f122c575e578 legacy-trunk +72993 e90b067d83f25164ab64e9565f92e473a1daeaa4 release26-maint +72995 3eb522dc3337dea21f274ed3d9fb3f82c3184eaf py3k +72996 4035383394ecfaa6a7250cfe86d6b2b5d41823cb py3k +72997 bc2516810cc4113c10d82f2837ca3cc56d715f00 py3k +72998 a0a25deecdb236e3551a7b9766cccaceaa219043 py3k +72999 618e46a69f278f0420369dadd8b7c495aa1151c8 py3k +73000 2d3c2cf1b51e34cc8772d71bd719623078321cc1 py3k +73001 88bd8760b342ec87b7abf0850483137423965bac legacy-trunk +73002 260c8ed3f5df97a6535f745fd16e48d6f6a920bf legacy-trunk +73004 1d8f24bf439963360fcc1368932efb9c179f04e8 legacy-trunk +73005 f3c871bdea571d6d69cd8d4375c18656fc744fc0 py3k +73006 d75ab16413da42c147bea8a2475ec4375cb4f5aa legacy-trunk +73008 1fa137942085dfd1f213caf5dc000983e78b4f6c legacy-trunk +73009 77b9124f1c8c14d8e76c28b9adba1da7aed7d2c8 release26-maint +73010 d39c190316e769d9cfd60505f064cd082b56bfe6 py3k +73011 49c0b0ca5113b9338318613f6812216609ebe4cb release30-maint +73012 c5d349582e9cae7b03f5416967eb8fe761d3547c release26-maint +73013 b67abd51b2704c0acbb0f72842e9d95322e6e01a release30-maint +73014 11de35da281c1755ee9739a1f8aa9c7fd48ec70c py3k +73015 28d64192ab5a2cf72a9bd6bd9139007518cdc247 py3k +73016 9c17e3669336aca70ee5b9f895cdc6ae6e26a881 legacy-trunk +73017 76f1be9d28182bf49b31e2846eda2d1e5216152e release26-maint +73018 134d12c2e74500e8fa2bdbb4bf5008d560bf5bc1 py3k +73019 2356e985ece835f1bde3fc87e42d0982c36d6edc release30-maint +73020 ec5d228a83efca21f57ad755e1f043fdb04d73fa py3k +73021 a5a89c60d32e4eeff4669068e443aba506da2cbe py3k +73022 64750065ecd4d1c293be122a2ee15046114854c5 legacy-trunk +73023 25a3155dac76c5163974c9eaf9c6b761bccd565b release26-maint +73024 9a4ce1e71ad8165162109fbd1b276899568893b2 py3k +73025 4ed2ee0b2290a0646ad819fd8cb8e8133cf28e56 release30-maint +73026 e4745838f655b5f951b354ea13b47090b9f4dba6 legacy-trunk +73027 7a13471f4e9bd1dce52caf855562fd78db07a6cd legacy-trunk +73028 146a39b2584585f7b924aaee90fff1da4b7989c9 py3k +73029 c8fe303ceda45158c71fe79dc4e93a7ade612565 legacy-trunk +73030 6e2a8bdaa540208cd3906be88dd3b7853244037a release30-maint +73031 b2ecd2bdf1952b914185d83f8cdb3017add14a3c legacy-trunk +73032 6d4c47fec449dabd5ff23107bef8e23cac7d62df py3k +73035 1a521c06a70db516a25d62bfdced277161e16309 py3k +73042 6d6b4d3781f27584c505226c08bbafa2c22d45e6 legacy-trunk +73043 69cd80f8e133a2402203ff63d62abd5b1b3a1fa0 py3k +73044 f5d3ff03dd5bcdd550f1a2f5da7220522d251692 py3k +73045 5bb5e93435b04e118110800e87df65057765f58c legacy-trunk +73046 431ca5399a24486c0ff8c8d45698403f4b7d7a7b legacy-trunk +73047 c62b652251d899c1387d554685e67fd7aba6b81e legacy-trunk +73048 8d2f39c21e9e52f2c503c4dfd085df1a2b64cb10 legacy-trunk +73049 b01aeff72b652a7f199871619bd4c03b1565b381 legacy-trunk +73053 553c8151c9c6e025a672d53fbc41464f0a36cbee tk_and_idle_maintenance +73054 495cf3c25eb143b022f6f29938952039e999b650 py3k +73055 23462b38171d69ecfa09cb051ea6553b5d2454fd tk_and_idle_maintenance +73056 4353fd0843cb31b356adc50f93d220e2e7255ef2 py3k +73057 3ffba6ad319c2eaef52ea9422040f58067fd1f47 py3k +73058 ca9be8fc025dc2773cdc43c5fe2458bc2643cc95 py3k +73060 e475cc71f188a4a59fb410bb5f294aa3908ed334 legacy-trunk +73061 9162cdf34dfbf4562bcaeb59db3881546671b41f py3k +73062 b404307922c6e8c508dd07469190b8f5a1501d5f py3k +73063 49485f98a3083bc1c18246d262ae557474dbb2d4 py3k +73064 a253fea85af15ca99e033a0054a3d19e69d9249a legacy-trunk +73065 fa2f917906e73b7d1dd6784dca6ffd95a1b82ff9 legacy-trunk +73066 4e96d7daf79f4c5b4462ef7bf4d4f6ee72783eab py3k +73067 114354b1e0e57d8dc64297e700076b7620669180 release26-maint +73068 756621819f5a51f4146ac7c5f8e004d8fdd3bad8 legacy-trunk +73069 5dec7247b2496eb85c8ae09bba9992e908f82609 legacy-trunk +73070 bf0bd6ea1c72e550e8094bb9530d1a2f61e06a87 py3k +73071 1b43e6f2d328a971f8094db32ce9895b4fbeb741 legacy-trunk +73072 d74b8edd7a8cf0406047f8fff0a1529341535b89 legacy-trunk +73073 ef0785cfa6af51b62c476f2b97aab71f53a3a116 legacy-trunk +73074 bbb0b4f8b5e11af516767a8f90250e742129b13f legacy-trunk +73075 81baf76d079773d6747ce5083bbdf72e74404aff py3k +73076 519f80b1f5e3a643d43eec1517efd0b26c05a2e7 legacy-trunk +73077 070530e9f18f2984224f53742d5448d8b4bd1a90 legacy-trunk +73078 c3a26556dd14ad2b594817ac49bd69ffe19d2401 release26-maint +73079 f14b505d39f4ae8a9b550923e01782f2d95670a7 py3k +73080 f51eaaed6c71a60d613ffbcc7a1f35e10b7a8c99 tk_and_idle_maintenance +73081 2aff700e0ca918c0d3b4abe676fb188f9cad16eb release30-maint +73082 a6a74b9a7cd372b0323816a3612577bb40768def tk_and_idle_maintenance +73083 5db0556ed12235bbfe1dea34fe4fcd146be5188c legacy-trunk +73084 7b772ed536c769ce9ce021266b55c607926debe6 py3k +73085 75e12c5e4eafba1a34b24f07e7e03b64d6431c73 tk_and_idle_maintenance +73086 52d258eb0176faf41df6673bde52659fca2ac5be py3k +73087 b4dd4283ff820dda23dfd14c77e63e05d3c69382 tk_and_idle_maintenance +73088 1e2c0371ce5737da46db0b47b1ebff98bac31211 py3k +73089 f517f2e4fb3bb56cb674997d9cd4ca88e1ead730 legacy-trunk +73090 50f31308b50aed6514f650df24ad421729aa9d63 tk_and_idle_maintenance +73094 4211810dc79ce7ad7e194e70a890735bef3d1d85 tk_and_idle_maintenance +73095 57a2d2713f1953a0ca5428927e1bc47cd266c64c tk_and_idle_maintenance +73097 528c093ab986d207f84ef690a757c48a5f47034c tk_and_idle_maintenance +73098 757a7c0f679e3baf395e0695a9856a2e279a508b tk_and_idle_maintenance +73101 600169ae5681d3a958a9906eb61aaa7ccdfabe2d legacy-trunk +73102 fb79ee4577542809a07818e42058fbae7bf2fc37 py3k +73103 7c4440538abb242f95b04436438d90ee8327d25c py3k +73104 8567df3a43b61230f0e80f8c0f0e0974f795e5c0 release26-maint +73105 c051ba617f0461990acae22d016b637d207ff4f4 release30-maint +73106 6846f95f8e077a9ad45875e3aff947812fcba9c0 py3k +73107 18b3d5b37d83fbe626a15fa323255832c29b550d py3k +73108 c67854f1cf79315e72488401b1224a5dd8176a78 py3k +73109 4427859d817a72c332c4e080878864ab7f5d6f49 legacy-trunk +73110 8c130671c8425327fbebcaf360e0291987b3eb11 py3k +73111 938cc16e7f8debd9e79349f1ca655e66952fe0c9 py3k +73112 3522c2b0d51d47de3cf6d65d9a51f60d7094fbca tk_and_idle_maintenance +73113 bbf8f25eb377b2015212b20328c5a2d9c59733c5 tk_and_idle_maintenance +73114 c37ae562ef822dd5560aff14331d28b095cbd013 legacy-trunk +73115 1dfcc53e836a0e6029042b1cd1c14a3e8e965486 py3k +73116 d0e96079b6aca9a9b5ba59b48cf0fa72feee0437 py3k +73117 a8d9cc932675617a5405c5d0aaaa9a3455618522 py3k +73118 52295ebcca31244d01d45f60f27e647767bce0d2 release26-maint +73119 a563bcf1a62d2f69c48d29b3947f45e555bc5316 release26-maint +73120 e25fc377670470223d6607dcaab23349bbd7d1c0 release30-maint +73121 d5071d9f7408bdb88d57bc5ec72d76b2104f3628 legacy-trunk +73122 5f8dec846f46de9b8147b9913f09f7ad2fb3a6ee release26-maint +73123 5429527e3a288fd21a5d61ec4ea4e6af5576697b py3k +73124 4993e110fd7785848b8a36ab451fd1797d06a217 release30-maint +73125 ced380b40004362a7a9ac5380bf4900cd03aa6c3 py3k +73126 bf4cfe51b4b521745251f6dee71b77d67e04e02d py3k +73127 62542bb8873a1b37f7a8b0f48c045711d926156b py3k +73128 2c00bdaad7a9fffe1a7f9573beadedd3e16c3be5 py3k +73129 8c8504715b8a3879d54b03d44bf7962b7740418e legacy-trunk +73130 db88a67e38eea1a31fb3e089ed8ded0e5c0f382c release26-maint +73131 2990440a20f42a107d04cb32191946c4179dc85f py3k +73132 7fa832927b91c86414461d894c49fabbb283985e release30-maint +73133 7d47755680d78433b727187916b6940c05a69b9d tk_and_idle_maintenance +73134 e13a4f62b6caccdadaba699fdfb63b5f984ab53e tk_and_idle_maintenance +73135 128147dcbc1d51137953b64583bf7316c816b857 legacy-trunk +73136 3d12fb9ced926cae75da64acebe3ec95359154c0 py3k +73137 f8b5a1532bec56044c9ee158db08631bd7fbd35e py3k +73138 f0f84af15957bc83c6e3e5b812753196b0422ae2 legacy-trunk +73139 ba8222839938db06942f0419b0fbd674cff1409c release26-maint +73140 7234a83a8b19fd8f1550ed05a07c1d2084109268 py3k +73141 0449cbe9ac9d6b595501c3ae7c1b5e931f23d749 release30-maint +73142 1e72a540c1aa6787365d0adb63ca9f0d916ad54a py3k +73143 621a59bb34045babb2df2933008327ae5afa70b2 py3k +73144 885b0a92b506262fc7d98b963c0d8070327bd5a0 release30-maint +73145 e80e25e6a187b4c5d5c45ae4f033b72eca34a45d legacy-trunk +73146 90489f267b300da4d95df4b5a71ee94bf92282ec tk_and_idle_maintenance +73147 4283bc8c930651ca3128018314befef56b362997 legacy-trunk +73148 b2f962385969a208c2c1cccf0b5f84ed792fff7c release26-maint +73149 5e4d070565e728c9324e638e29c765c67a0ee1b8 py3k +73150 f632e02c2642e8a17ffb1b5b9986000a5e0497f8 release30-maint +73151 b7b7352994c884050eb571761ad3c6dfea26bb2b legacy-trunk +73152 cfe577aa156acc4ed0496af1132bd08974b11abb release26-maint +73157 2f7d9abd655bab9d22b4afff1a039aeae460418b tk_and_idle_maintenance +73159 32a49d10801ed1ecbd50a35317c9653d7d340645 tk_and_idle_maintenance +73160 cf19cc06b09308dd06f6b3010a4295fee99ae6a8 py3k +73161 33a8ba925c9209f85c000a60f94154a8185fa6b3 py3k +73162 51fecbb7fc87265fe0c2c7d7254035939ad63df4 py3k +73163 4a2771f6b9dd7850463fdd12e5b823ee2645e4c5 legacy-trunk +73164 2fbc7039382d1c58f28066cf8be6cf33b274162b py3k +73165 2d500d7b20be686c62bdc8af1ec09b04e72b3c87 py3k +73166 98d8b8b749f47465e0dc32b1da1ee1b931639240 legacy-trunk +73167 16e45d8b7957e7ee0033454f30e2d1c58238a737 release26-maint +73168 fcb2580c1ab3e8b329aa94d6a4c81961ceff96ce py3k +73169 e1a46602b9d72ab0665258d22363c5b655b01b27 release30-maint +73170 1a029b7c97705277d789f7ce38b7864ef43922c1 legacy-trunk +73171 65f561a3e291b80e7ad318184c3270ed0592f403 release26-maint +73172 ae585cd5ca54b3fb47a856bb1623d319d2ee156b py3k +73173 62544c946eda2af1d4384a50f427031d4628bfd4 release30-maint +73174 b8b32fdcc28d41e3834eeb3a2d402b4d73c671b8 legacy-trunk +73175 9c2e07a8d2302d3f69ee036466ca48907e48f7b6 release26-maint +73176 7c0e79e71ccdc5b3db7a01ce6c946db320d09728 py3k +73177 030a3fe4b604521e0ea0101ffd96531c9123cf71 py3k +73178 b01ccac30473509e0c02ae40a10ba6c74bc92365 py3k +73182 e86bccebc07586e84f8c9680c3123b09c42d516c legacy-trunk +73183 bfaaf2f4b2e5bd5b071991c81243f1ef7d71b467 py3k +73184 bc74b2f611595890c1c4d0282e6bd7c08abf3340 legacy-trunk +73185 a29842e5e138c3751b7b5cacafd91096281b53d3 py3k +73186 5a32f3d06158c3e4e0238a76e516cadb3f5893a6 legacy-trunk +73187 14a4b6fb00feba818998a9a29c3b7c31f6230121 py3k +73188 abd13acff5dbe2ba94fc03db9a89ab6ae4395445 release30-maint +73190 4439b22cf6eafde793c13cf988d1b8609f8eb628 legacy-trunk +73191 287887198e2fa724ff46c8a2b66562c389a52db9 py3k +73194 0c94c5ca55d57f531725fafd330e1a1ddf648042 py3k +73195 f48a05214281c083319b00c79efc5247337eb89c py3k +73196 d04378f9fdb456b71042b6d69f5bc814443e4b46 legacy-trunk +73197 7df2929a3d06fc4852a5524770ae137111bfced1 legacy-trunk +73198 b782fd05a8064252e5e608ab07178a8057a22245 release26-maint +73199 0d8ed9e558f28e32b858dc46e811ea2e1d32b2a1 py3k +73200 aff97e50a2060a77b4eeb0896638130f53319eef release30-maint +73201 97a0a8589014d7ed2a6201fb00a957d3898d25b7 legacy-trunk +73202 00d5772c8686625246c2a39fa463f0f7d9a74834 py3k +73203 5ecdb829434f9863b9adb3c3986e0e0b14a4cede py3k +73204 18d823e8b602cede67e2862f43b1fd9dd8d3b1a1 py3k +73206 d5bf08c861a6425e8f0dabc0261424229f7fe38f legacy-trunk +73208 3f621140efc4a2e23e9ab50a5f0a0afbd928227f py3k +73210 8fa4cca9a22ce493063dfb1741071469bc7bcfc0 py3k +73211 031b963f2bc276d5fe00524df9d448eb87f2438b py3k +73212 843178cf0899d7c9fe6e84cf988a086028974e73 legacy-trunk +73213 0e054c657062402d378ab45dd0d9554ef2276b47 legacy-trunk +73214 e9b0db553d01fa80f3944f836305a556965f0ca1 py3k +73215 3c41573490cb85c77a2e9d89a691ad8bb325b579 legacy-trunk +73216 50bea5339f1822c9df9e8a1f3f77ee379049da5b py3k +73217 74246129bd2233acaade923d91d655fc4a003eee legacy-trunk +73218 ddb50c3b86f2e3d1bec3d552b24c227d4af4e56e py3k +73223 0b07531673acd2b45ad5d1a709a4a315e606c190 py3k +73224 a07ea82a5bb0cc81938ed8584218f2bf850694da legacy-trunk +73227 39cb01b0fc648f31fae1153bccab642d09459aae release26-maint +73228 686c15b8674898cce99250f775c20ff9f12bdea1 py3k +73229 eef5d1ce6f4b70d9bcf23438ffcd9c969f71983b release30-maint +73230 d45269956effe22dacd5ecdf1d46a05e510dc765 py3k +73232 ed6ed3c839f5bc93aaad3ec047d0f4bd14d749c3 legacy-trunk +73233 3a784b2172209f3c924406b1acd941e7c314e23f py3k +73236 0805ea2111220e40be41d962688a2c2609bf6f82 py3k +73237 d9922829c20434826c9b023295a5d10045e51317 tk_and_idle_maintenance +73238 03bead72947ef9b5afdc54f183afb16de1c46ee6 legacy-trunk +73240 810c25f19cd94b2b90303453ddcfce4fc58cb6c9 legacy-trunk +73241 ebeb4d67dbae9669707db328fc87e02311b8dc41 py3k +73242 c2cec56d0b8a115ac23d456882168bf216a39658 release26-maint +73243 ceef0a78bf879f301744eb5bf2447e3c3594bd41 legacy-trunk +73245 094fd335a47102045b0d77dca0299f672a20cb76 release26-maint +73246 ef74312d72155f7180d28eb01336018832dc49ec py3k +73247 e4a7c48de603bdd0e00c1028307be4d3c20a5c8d legacy-trunk +73248 ae9b5d4f1229ad6c2e42f07654ef58b0a8d96a71 tk_and_idle_maintenance +73250 602559fa5297d5191c24627f011cb367801cadf1 legacy-trunk +73251 da33bed5d8c48629d20e700cc77221d5e2cf34f2 py3k +73252 112e1bb57e7b2dfa57f01657326413ee1309ffbd legacy-trunk +73253 9c091544e1df278eea74dee8f14986d64552e214 tk_and_idle_maintenance +73254 578baf7d311473201b924ccb603261d7378092f6 py3k +73257 81a5b1ec9105aab7bcc3ca060b6a1105a8121c31 legacy-trunk +73258 12853db3eea37ced56201b8df0ab6de29a161e72 legacy-trunk +73259 1f8d98720accc999d019d7a3d70161b499b02ef2 py3k +73260 8888a6fe9dd7f290d93f6e878a90fb482d4e2880 legacy-trunk +73261 9547f4bbd5a45f859810c9e901263fc9b3958b92 tk_and_idle_maintenance +73262 32e34483e6db7233ee4e418374ce44584dc4bdc2 py3k +73263 ce89592a93a436e2a1a5e87aedf197ff884ce79e tk_and_idle_maintenance +73264 317a17584058037c8bf563a07cdc6f23cb8f1f76 tk_and_idle_maintenance +73265 787f27ed72c28d3c7b515884c1f3c4f4550d98d7 tk_and_idle_maintenance +73266 19d8a3a4e149602e5d9ff6217e14a230adaead17 tk_and_idle_maintenance +73267 7ee5799a7b5195612e2e63e47d51406f3fefb7bd tk_and_idle_maintenance +73268 3d8357ccf5831efd9f63594da9d40f8f533aa2b5 py3k +73269 fafb991bea6b1b0797e583e2aabd5b2b61dfa067 py3k +73270 783d4044dc2df929a58cd84061e1643152c48cac legacy-trunk +73271 0ebe889f106fe9dfe07215964344e6e5275a4b90 py3k +73272 da6871b9d884c4e87a28705b6be47dfaa55e6068 legacy-trunk +73273 66a5bb3d8a8d82d8f91dc04a0c1f67264e97a319 py3k +73274 d679b60907f7698b0c0a9c13c389b9daac250ca1 py3k +73275 3e2b8de4b16cc82daa709c211e44b27eeba03db3 legacy-trunk +73276 06f5f426b8491186d5e842f81df687565ea28ddd tk_and_idle_maintenance +73277 889b5fd8da309a55cdad2656af471bfa68c5fd81 tk_and_idle_maintenance +73278 851636b62ad95ab7ccedbf456418ecf749ca4ab4 legacy-trunk +73279 d945e6de5227b6bbb2bf7ae47010107b8be64eb6 legacy-trunk +73280 d79fde1041bdc0af74f908a748681fa910692e82 legacy-trunk +73281 054ea47d6cc73836d37ee97457d5af071b893569 legacy-trunk +73282 0abf562b1e6cf6e88efee8da8171cbca341c16a8 legacy-trunk +73283 f7c9e73420840082d276f37ef6040a8d0305a9b1 py3k +73284 6bfb5952113647d3653d8d32f201afc0c5019e87 py3k +73285 f0019ff6b3e5b334bed0d0178b979b26c850e812 py3k +73286 1ef1421a61225530b427ed5167a1aac5a63d7c78 legacy-trunk +73287 ef65cc402c923162ab542f7a3081242925b0cee6 py3k +73288 cf8ffab4900335a77ead529d6af661ede45f15e4 py3k +73289 98552131f641bc3b3144efc879a47928da84ce67 py3k +73290 55dd9ed23eeaecf280aab5f95d0ac32bf06f6f80 py3k +73291 8f928792547caf4e603bb8fa91837256f5f8207f py3k +73293 27e089cab729a1dff49174e2a897b8e17e29002f py3k +73294 b504d6d34fcd7080f167d9384e420a2ce97d53ea legacy-trunk +73295 7ad2f22f13e6a00c48db70f5c7c5959724600926 py3k +73296 698557cc5dc507f8b2258273bf563f7a3ffcf92a legacy-trunk +73297 c017d191673141736b5c707b4dcbad617e7d3c6c py3k +73299 ca51996099fdd247448f63b75a3bc964dd833363 legacy-trunk +73300 2795d6fb21e262d9c702f432249f92ba0856e6af py3k +73301 54189d5a6674797445d7cc591720b1c896d2e926 py3k +73302 255db70bb316ac0e2fead3913cc1400acf1e116e py3k +73303 ceb262d44d7464146d63b84be444ac2e2659351a legacy-trunk +73304 71cb6029e8927950e75d4fac070aa880f597f64a py3k +73305 1c7eb5b6229ddf52912d71cc492a765a26f42aa1 legacy-trunk +73306 35c5c1e07a44cf3075d362269fb90658057529a0 release26-maint +73307 fd0ad115e23829ab96c8c2e6f19a56c5997637ba py3k +73308 86b32e1fd99f0c7f81e955362399f916327400d5 legacy-trunk +73312 1b8602c38fd0c7aaa78694b78bd1bb9ad9523d8a legacy-trunk +73313 c4a81ce3c89327020c76b3ad517e8ffafeca9af5 legacy-trunk +73314 ea30aacb3181637e8f9e009ccad2544e0a4f49d1 legacy-trunk +73315 87534bfd1be8b7bdd20c90c821facaa6b8907eaf release26-maint +73316 d2d54dc8e400faa6140bbd0e16563f5a7a4d3bf5 py3k +73317 5177b6780cb742f0231d50abaf8cc1bf901ea60b legacy-trunk +73318 b96c9d8d5f985db6e38bb69eacb56af6ffb8b77c legacy-trunk +73319 760a8866aeffa2410a734f2305966d21cd87ede1 py3k +73320 ab3a21336a84d6b788d54d51de4b01bb78694b1e py3k +73321 446030f310a9515c7a16d89f622c2d8b3f76a153 legacy-trunk +73322 91d4c514e78c02991e5cfeb6de8b539416ae2646 py3k +73323 f5828742b46fed2478d1bc4c84b0413ea76364c0 release30-maint +73324 d49d48f335c9009babd0cc6d779c1ee8e1148d03 legacy-trunk +73325 9145f58f74999a7330b1b059c7cb341066861de6 legacy-trunk +73326 fa67bf674af363e446455f8da4db42a65ec5bcc2 legacy-trunk +73327 ec845c4e3d736b6a90dc65cdfd2777a9c4f3dd1e py3k +73328 b8d160ad1c9256365480f4396a50c581d6ee1eb7 legacy-trunk +73329 66297a074d8be9c04517792b9def1dc016ffd48e release30-maint +73330 0480700553ab23fcee85f6379f505b0f0c9d712a py3k +73331 744e984f1841aa05f5094cff02617826aaea2fb9 legacy-trunk +73332 4fd3a4aeee473e71073827b4bb4e4a8e34b004c9 py3k +73333 13a9874d8f476a42db3f55f00b73f27b6e7d9db8 py3k +73334 b6095dc8f35c070c47e82218b1d3af73d30c2565 legacy-trunk +73335 4acd936cf6b6f9727260ba5b452b1737df7057aa legacy-trunk +73336 edf3ddaa346bfd12b0566f8bfb847e0792282be9 legacy-trunk +73337 03d38a2abc46a98bb2ec346b95fdb99657685de1 release26-maint +73338 657a8ae0bbc9467884e49065ab471232392c9843 py3k +73339 f41b285f2b59acfe8c6ea6103cd5026724bfc159 release30-maint +73340 2719a88c2294f404d1dc2b206f4aa20b1a71820a legacy-trunk +73341 65793acc0095002fa0f622ac1d922b5ccafd61dd legacy-trunk +73342 0adf0fa7993bcea40b1c4df5f56600982ffd00af release26-maint +73343 8b3ae3a38250761487e9d6b91e916bae84e0400e py3k +73344 f631475a2642b3b38b475ddc5b3155be136fc83b release30-maint +73345 b4635da31099922889374640a6d51af3f1c8b7a1 legacy-trunk +73346 80ef3b7a4e0df45a1de20c4865af5f25d6cbaaaa release26-maint +73347 4755f898b9fe0d49c1d6565cd6f5406fb11af9b5 py3k +73348 0de66fcef0fa8972e943f1d70ed14e38f1d2919f legacy-trunk +73349 ec5917f77ac0e688ff2639969ff8a2224580f16c release26-maint +73350 a2f2376e1d201a288d6519764c926d6504b08a2f legacy-trunk +73351 60036e50cd18675547d95a8302e772d835fa5630 py3k +73352 0031ba21390a1b3aef8c99942b8db4bf9903b531 release30-maint +73353 1128823979dde94325bc32a25cb61b778a3ba860 legacy-trunk +73354 0d9bd91eb85cb5c4e44a18f29c2f2b65f38f7bad legacy-trunk +73355 209a539ebff806c29c63279e06bcac08aff017c9 release26-maint +73356 3244fc4773f57725ef3daef0ddbd790920b64765 py3k +73357 bb63fd979fcd0a81447a670ef1ed520919e802b0 release26-maint +73358 5a3985e5dae3b573036e9ea5ea3e3752b2d91123 release30-maint +73359 140182accd1f5817ea196de942700eb20d1eb927 py3k +73360 4179a3e661231f93cc550276e51d9e908544a0d8 py3k +73361 96a0c3f6ef8bea2728955c9e5f0a7b536788f0bc legacy-trunk +73362 027444810e3f39cb358e61144814c5095f540312 legacy-trunk +73363 a1e0681acb36f1b7a7873a43408e629c87c7fc96 legacy-trunk +73364 41e6cf685ed16b29de789a861bdecc8858371c95 py3k +73366 20170bd0af254ded97a1fd733eace1e052b5d8f2 release30-maint +73367 72889a0b8f322a738f16def8856c5fdc65cb7df5 legacy-trunk +73368 9ee9e7aa8abc2442585d9d7a9fa298bd2076e176 release26-maint +73369 e2041c5c60063f93ded0c177b3019469ba73145c py3k +73370 7700408f65fc41fff635616180d7542b174a8979 legacy-trunk +73371 d66cafd6bc21b098d8f720deff4715bd6543855f release30-maint +73372 5ea8507d9be12a0f65674af6bb0c18822094d6ed legacy-trunk +73373 60a0af32a663e2ad26587660db428a2577952719 release26-maint +73374 12bf87cd27430e0adf7368ffb96567295db64ed5 py3k +73375 4f8a44b51d0c1ead4dc53fe850a8b925109d78ef py3k +73376 5306b84d4fceec69fa7681803e5300dbde88f750 legacy-trunk +73377 6370d71e3ca3271862a59263087fcdceabcc7be5 py3k +73378 55d22b024464db25a5cc50d64d115fd268c75c16 py3k +73380 0e1b3c24d3e27a66f2e8d78ee754515c35f1345c py3k +73381 9f3a25743f03fb50a9f10b4df6f2e172feae2326 release30-maint +73382 ba102540ea37388ac0955e9d8a52d8fee08ffa7f legacy-trunk +73383 7cf89ed90f9d064ae4a1d2c8984d20980d4f83a9 release26-maint +73384 dae9be6379b3e584187da86dee267903ba5c4e13 py3k +73385 fcbcd931338b8939e925d61f2dee59f8bd0a1d49 py3k +73387 c9494c88788f5b852bd2ef9f718ecac6aac282f5 py3k +73389 f57680748ecbd6955c769510d7d748ae7b843d6b py3k +73390 652551ae476702f36af25d69f3df68af162604a6 legacy-trunk +73391 07e2ee2fd36d32fbc4f5dbef40c373cd5ec2943c py3k +73392 6492b6ece5987abe4c1f4066fba774d6a302bf81 py3k +73393 f34754a745ae2a2a8457893075736e0e1796b4e5 legacy-trunk +73394 760a710eb6c15654a99a5282ca98ab9a73bc7ba9 legacy-trunk +73395 017b4b644faf245313a4a5778c854e1a7f2b89a6 legacy-trunk +73396 cdf252c874336b05c1aa459f48795b246e8d45e3 legacy-trunk +73397 24c8d1aabade319935bd3b7f05d645cb890fe801 legacy-trunk +73398 921e569d121577f5b037467c92444f485ff96ca4 legacy-trunk +73399 d8338a9a1e3a88100de43336f8fc6d4593a261d2 release26-maint +73400 eb61cca5f54de3aaadc48265ff2d49988c66b615 legacy-trunk +73401 bee46ff0e57835af348f131f6269f6bb2301d9b5 legacy-trunk +73402 453fe48842d0b10845acb35fe5903ed75c958e14 legacy-trunk +73403 75c4d3bc6cc8840377f98d130c61f0d48f851aad release30-maint +73404 0c357e3fc3d017c66a94017cda75de3686cc439c legacy-trunk +73405 788e1397ce777458fb0dc8f3a0e96b58be4a8cf0 legacy-trunk +73406 b43398ea549de440e62853c58e0b883e63ed93bd release26-maint +73407 47e3365e2177e88a0a99de12a32f44595abc5c3c release30-maint +73408 032c2e5e0614f370e80f96a5304469b465d1492e py3k +73409 04ccec0441b2a6394ab94d6a640524d0141ec96b legacy-trunk +73410 03a848d1cb68276a88a06fb7673bc1add4a53b09 py3k +73411 25edc5f72a72ea3c93d663cef75fb985044efe9c py3k +73412 0b87e438e1b53e3f812cad963a7fdb65d198ba2f py3k +73413 19e5dfce0fbb0295bd905dc5744bcac50f6eed84 py3k +73415 26f8ae6f037d6b5e23c20e45eb766a91add1fe86 legacy-trunk +73416 a764db6402842bc76184a1feca3278268af052d9 py3k +73417 91242313548381606ecbd77c6eb8d5416f580cf4 legacy-trunk +73418 2212740f454469be811875b952715eda2f284381 legacy-trunk +73419 cb66473cbbf88d9f018571abaeb17ba9e6480ea0 legacy-trunk +73420 3eb8510808c9d0e4330b44e47aa9b1b534f78ea0 legacy-trunk +73421 40c8c35492f14a2897654fead7414d3cc1738935 legacy-trunk +73422 247f8d268d58c41a24462b3dd773a664248cb5c5 legacy-trunk +73423 f118aab650dd3e9c24fafcc32323200e7e15b065 legacy-trunk +73424 0be377e60801b6afeb329f2f47009bef0a63d0cb py3k +73425 0151029de1d91740c4e15fe71747da2c0ffd303f legacy-trunk +73426 3c8f4f7e4a62eb1d0e0a3a918161181ebcc09098 release26-maint +73427 e4119c90bf29538d002baf9de9fdad573d81d47b py3k +73428 903efbf511b4fee17949ab24fdf4eb981e98ffd2 release30-maint +73429 9000a081159941bfe7afef25f2a4eda5fe12ac01 py3k +73430 4658fcaafc732883fa9737082410528f79fcef5d py3k +73431 b634d0ec8d35158307e80b713e75ed0bdd89f2bf py3k +73432 311107443cc136b0c3b50e57fb17e152c6d25be3 legacy-trunk +73433 d8aa485485a6cf8aa0c473d51000b6fe5cc6a73b legacy-trunk +73434 e18318f985ed2e1ced66f0a620e79f7d23034d0f py3k +73435 1b3a19037f764135d14b821cae178f0a4543be72 legacy-trunk +73436 4373f0e4eb2132b91de979a5d01c7961dd69594b legacy-trunk +73437 c7ac70a944b501d91f07f7d4892df023d0cd3217 release26-maint +73439 4a50f0bdc8063a7a6996a5062b941c4f61412ea0 legacy-trunk +73441 20343aa2a3eb793d14fd14b8f800b9cf3c80cfb7 legacy-trunk +73442 cb5ae4401ebfdc6932921c79a777bb9e32a38889 release26-maint +73443 9814d7f659a00edfa771b927b9b9b1c662154da0 py3k +73444 277fd064b5301a60a6e08bc24b5753787057744a release30-maint +73445 076db4de037ab101ed0e7bf1ff7d28ef1dbcb3c1 legacy-trunk +73446 ad2a5960126da21ed67d185d46e9d0ea0aebaced release26-maint +73447 45c05fdd9b32a8f65d88f7e56a086afae323bfa8 legacy-trunk +73448 33fefde793b0cc4efab2266bbdb736cdc868f195 legacy-trunk +73449 eea4d237c16d7511139cb12aeed65a75eb1e2a04 py3k +73450 865506f36e588dde53025520c68ea56f95e35896 py3k +73451 982f7ba0e14a27f6a0ffcbbaef0cdc09f7edaac1 legacy-trunk +73452 3902e4f74ee2817a21b6d03e997870e4b73fe55e release26-maint +73453 f0195daadffbb258f694ad87b3e559d7b6a5af9c py3k +73454 09e5f88c9bdbed46aec4e94c03fe44dcaceed0fa py3k +73455 c5682ce2346759b8ca03a3c015dea2c4d2512272 release30-maint +73456 6b6701ba1211ea5f882f76ce11a1302da08ae0e2 py3k +73457 4c6cdba1b0bb3ca034c7578030be0ab9d01999f1 legacy-trunk +73458 c387da837c4a23ffbe77aa5acc12dbd87e579a6f py3k +73459 c1986bb4300b722bfabaabf80b535d9f1e04896e legacy-trunk +73460 6f3054afa1a0d8ab10f9b60e4c1b697612e61288 legacy-trunk +73461 a5f31b30c7c3ccd29cbeb5000cd89d2d28094bdc legacy-trunk +73462 b0cb3cbdfc47ab9b4aa82086b63c1bf4e4e637d7 legacy-trunk +73463 22c79341e580ca2c3c5b0c46ed276bd1e98007e6 legacy-trunk +73464 d11dbcf843df8c04cdde84c2e98a45dc148de7da py3k +73465 33489117da9c5609c6d8506805699972c6286796 legacy-trunk +73466 d4c66ff129c2c833058725b0abb6262b5434839e py3k +73467 ad6f6c26187f944a893ae00ebf1d08b151e6c195 release26-maint +73468 7edc37883e8a1d6d3e15c96c69358ac51669575f release30-maint +73469 315d7ae42ea70253527562c19ad233ecc512f4a1 py3k +73470 a75e18d8166ac2affa11f3d56d14340aa4e28251 py3k +73471 a230f8d9b41928c52cf8b23ef6e0bba2478654ea legacy-trunk +73472 37223ef4d470d4717d0440f9471df7c5f3db4636 legacy-trunk +73473 98a66fa01e0a4d0a86051b520a4e75c8a69d0126 py3k +73474 b81893d37e7a9e95900c824c9de7bb0b39665b90 py3k +73480 dcc962b4d8ff930de0a35489d34bcdda4dd624d2 legacy-trunk +73481 e25a4d27c38b606606f7cff1201d4533442bea0c release26-maint +73482 5fafcb32f06227cd9f5783ae86e659b2a79d44b7 py3k +73485 e7d38c4083619b3cde3e0b6b7c1e03953209ff2c legacy-trunk +73486 6dd507b952cf9045e5e04bfee38744740e4ff259 legacy-trunk +73487 07249889a773f1844e370dc1287003f8f078da35 tk_and_idle_maintenance +73488 e1c230f02feb9fdece78c0d90382d07df711b556 legacy-trunk +73489 913c9bf98d609016a01ec6707ed73d47e8db63c8 legacy-trunk +73490 7d245a423e96c67c6cb40a99248693845918a8b1 legacy-trunk +73491 01d10705a71b1a214f32cf7d04a5b2a4681c14f5 release26-maint +73492 3e4540b7fec9f1ae4f0a5822e751a666166fe81b tk_and_idle_maintenance +73493 f323c280df586a492dc5375267d63526a47dba15 tk_and_idle_maintenance +73495 d6622789ad275620fadce0365eb981f5a617edb2 legacy-trunk +73496 40afb65536da26b17cc9e86f07f1ffd0b2ba47bd legacy-trunk +73497 a950a4434f8bbfa758055d00be48476e15042ad6 py3k +73498 d3b44ce543ae44515eb4f1d95ee89f0ee3565127 py3k +73499 11c16be4d21c213ce22cb562959e3cfd95bbd257 legacy-trunk +73500 e48ba9ce8836245eb65bd7f691f2e82e3a730a38 py3k +73501 8700089eccd4d3e2c81174c5753610a6150332e3 legacy-trunk +73502 917497e2509cd66fbb6da18cbb43874b10c66a6c legacy-trunk +73503 c4fb0712147fd2e5ad97819c4b2f7dad1a988514 py3k +73505 acc58b593bbc1bbbebc2980df9746842f932df5d py3k +73506 bc61d231a6526bc967c5ff3b7e39d52c13003eef py3k +73509 e33b65627188bfc0b3273411952eedc1157357cf legacy-trunk +73510 5cb4e51a44085127caabb194c1a444b5c174e486 py3k +73511 8ad7fc809f684f9b7f1c5454fbe35ea6a8d9d65c legacy-trunk +73513 386922b629c39054e092de2f157a2f0e1cc48c8e legacy-trunk +73514 514fc9366f2dbbf242e89f1b5da7681b0785eb9d legacy-trunk +73515 1732a54a02725882b2eef0d26b2a7db9b58d9985 py3k +73518 dc3817a8f552eb68f4ad60b26a3a97974a4cf075 legacy-trunk +73519 80d0f202b9ef2a63f1b44c11476daba2399cb4f0 legacy-trunk +73520 45506be4451466219f1c82162549290b6fd524c7 py3k +73524 dfd9b9e71b2eb2b6d841ac823186cc099a3c3343 release26-maint +73526 dbfe0abcd893a263a127f3e296258043ff88ef82 release30-maint +73529 c94594e6edb732839f1e52be8792b6702776b5fb legacy-trunk +73530 e7371353a3020ed17c45d331ed39b1bba13c6032 release26-maint +73531 b4d0c020e35770fe94107663017e05b8dcfabfb4 py3k +73532 f65adad3988d4aa7307cb424970f89b10a559729 legacy-trunk +73533 a6a1a61f72bf83e9e44968ea00eb1cee060eb2f4 py3k +73534 07f711d87ffdbabc1ebf78092d4f76e0251380e1 legacy-trunk +73535 d16294697658ecca8a14ca7b87fbebdc7d8bbf0d py3k +73536 ad607378a4efdd328599c59f4b81b2f2a8ec20f8 legacy-trunk +73537 95e5791fc3c92d7db754d4ff31357c928957428e legacy-trunk +73538 7a1315a992f0b6ec0a2ad45ca760798a7ffdc9f7 py3k +73539 cb3d323438d9225e3738000cca4f7f6245a9268b py3k +73540 bdc97594e5098a8f6d91b9f5434145ef18f2ed93 legacy-trunk +73541 b92b892c436037524d939af81dca6fa0df7b3a25 py3k +73542 6a31c4e0dfc12a9aaa8839d5b575716cc848c7fc py3k +73544 2aeed4ecad5b87d854e5141e70f91e4567769802 legacy-trunk +73545 f6cb2932022caf4dcd69d5d20da209e82841e1e9 py3k +73546 a20a377cc327a82de79300f8c04379d3ba910c5e legacy-trunk +73547 8a976cd57ca651142c2b537fb9cb5c7ccc9024b1 py3k +73548 f318adfe2264ae6aa2f6aaf6ef40733978aa1ba0 py3k +73549 f4d84c4f289bda9dc5ef42d3c6be5b1a1954d072 release30-maint +73551 79a630da8f00e06599f6a1b1b8c37ccba06622a6 py3k +73552 55b303d5dd5515e18c92f6fd37fad08bfa0aa7cc py3k +73554 3fe2d1d37cf1f063423e836d2bde20ff1a49b989 legacy-trunk +73555 448699156dfea35c967ec839aee404a96ed19521 py3k +73556 a1a6e6dbdd6a72f066a720e8ff28299dcfaa672c py3k +73557 2735893c38747443476d3993c942509ef2a7df6a legacy-trunk +73558 a937f040959281ebaab343758f5ce8b45a6b2bf8 py3k +73559 52c86873683eae9ce99b4eaab76ec8d1a7deccd8 release26-maint +73560 e690b736af4781376c99e5e1bc5afb7451aeec93 py3k +73561 a57992a63caa07e881cc2c7faf71d1b98b665ba8 release26-maint +73562 cf9ceb6f5a3a7af65bd47a428d4abe57a16c5b30 py3k +73563 8882f8fe823c64b357448c229a2bf04b92d929f9 legacy-trunk +73564 a666134e6c0c234b096f29c4ccfc0ff794ccb512 legacy-trunk +73565 0ff0a396fda837b31a2054aa83042bb01ebe04fb legacy-trunk +73566 0170c961f29054af53b87e892619f2427a7d3e00 py3k +73567 253dc7be5d1abb4c1795cec845a16c282781843c release30-maint +73568 d04877391e807cff668fe9e6f48b4c91108c23ec release26-maint +73571 150e3febdf1785e48dde410fd67e03a1dbeed3fa py3k +73572 12e960cc37d61ed6d07714b5fba0cd8fae5335f3 py3k +73573 a69a031ac1402dede8b1ef80096436bca6d371f3 py3k +73574 7c9e1c9ec5dff820a3e261cf92c4b95e5687dd24 py3k +73575 4accc8a3f9afe86fcd466c269d0f2ec105165564 legacy-trunk +73576 831beee22a9fcaca19e389ad1059736ec39d2216 legacy-trunk +73577 9d00fd0087ff9165dd9ff9fdd6f9d169a6b7b116 legacy-trunk +73578 c3d5d3c8e49ba8b2d99347e1efb3d87db1526043 release26-maint +73579 25d85e4486acf10331d4365dfc4842c93cf51834 release31-maint +73580 a24f09606b832698e26afb33d64397551fd17693 py3k +73581 77fb7d3c6dde7a4f57c704bdff2b10a551936ab9 py3k +73582 9603344358558cc65f7386b8684b0f3af995c8ae py3k +73583 5f49ea8f5908cfdce48b1b341cf4f8126dd2f576 release31-maint +73584 b676159456815476e79ba9273b24dec90795a2f6 release31-maint +73585 4d476f6f1be3b215db1d1d2087438fd8a1268117 py3k +73586 6dc884b2dea7aac238608425ccc5797055f3a199 release31-maint +73587 46cf2e5a57d4f7b090b6e87abd4bca7e6c148980 release31-maint +73588 dc74563978df4954c3a6e695e30be72251807920 release31-maint +73589 1651e2f36af12aeaedf228e33f3d9da3b26b2771 release31-maint +73590 070e1e15c5161eb883b6f31dd8bf4fa118851d8e py3k +73591 2da05f80d365ae9f55f75317eff3ce58d495212f release31-maint +73592 1d3bddfa85090cc560c4f987a23865a386f1b54e py3k +73593 58f2b27c91a14cb975c9007213a7c3d5d2e73eaf py3k +73594 e2522e4d2dc8bf2f82452a85e82f3282be2ca667 py3k +73595 5b3d0bfc8d2891bc410dd2a169f24dacd9326e91 legacy-trunk +73596 1f60583b6287cf1cace20da498ee1a57974abb09 legacy-trunk +73597 3aaf2e065db05401803705ed4bfa3fd2f9030df8 py3k +73598 f4eea0d2165dadcf1e8a114e32a2a77271c25338 legacy-trunk +73599 1f4f4d9ec79307ada1aed3f14e0cccfa80db7b86 release26-maint +73600 c5357836c079d76fef8b8207b5150d4342d1b258 py3k +73601 ac78eeeb46c295f0b65b9cb8763e8cd4f60b544c release30-maint +73602 10a229c8beadb976ef1c1b7187e90cf020e9d713 release31-maint +73603 558ed72d4d33bbc38601659ab630ba53b4beae26 legacy-trunk +73604 c41fe133d88733052eae69b719b9f6113becf8b6 py3k +73605 08d05856214a3581cb7ae6e132655e1dfd19ae6a legacy-trunk +73606 117e85cbf169b4b804b1c04b5d80049d09d18d89 legacy-trunk +73607 54ed2791bb15b8c72e053199e15e001d08cc0d78 py3k +73608 ee253eb6f08c04920fb225c6fb92d67b7b23b731 release31-maint +73609 6e8d63344d3e30d97c810a6ad33ce92b0de196b2 py3k +73610 4a225de89233627c851e232233b0723777a6e40f release31-maint +73611 544c5bad16077fadde09fbe5c053a70db65269e1 py3k +73612 2602b56ad02dc6820729157894825499e0928dc9 py3k +73613 b55a78b39bd5ed6fbc9e2346c6ae0ff66b741000 py3k +73614 de866f47d38a857d7842dba0eaab6e1ccbf896fa legacy-trunk +73615 368478859fe3aaf9c26333df3398e38eabcffb53 legacy-trunk +73616 aa950f7962fdc6a536fe32d71812b4b3822d18de py3k +73617 0c319e03d9a10a9eecad2a3c68dc1e03e60ac155 py3k +73618 c9e65e49365dc38bd6789044e515650a2f5697be py3k +73619 cb600e03437d640e1e18853d4ff2d76602cbf599 release31-maint +73620 654407746be0a8f37a78fb0917618ada961f9417 py3k +73621 9109b422c138fc4bec2220fd33e2fb2fa6a2bbca py3k +73622 2228916ab4788f9ae9ebbd297506352d1f296d7c py3k +73623 1e5589a17cf07ed95e943db947d34f3355e6d738 py3k +73624 7c287d30023c355900a22c7800a3a9694bdda112 py3k +73625 f94c09aa44443bafdea199603eac20946719309b release31-maint +73626 0704f15b468271b609ca4a4a001c243757502914 py3k +73627 411884d01f8b0f96ad4d811189a4fba3aef42adf legacy-trunk +73628 4db4af0cf82c5b8a06cfb562cff0d0986a739e24 py3k +73629 5c702a4d75e445d52f6d7cf308f6ccf0628db391 py3k +73632 676e74c20c6ea3d6586b47b4e1df4d6ca1bd3793 py3k +73633 0cc21c9751f1475d54e08e7e9160348c605b8412 release31-maint +73634 db91a0453050c28d154d46dd56e265d1bde26c83 release30-maint +73635 b32d136f3e2004e79e4d6dabba21ffedd05ec0f3 py3k +73636 1a98472340fa0d88ae3118c0b1ccab7b2cea94a8 py3k +73637 e3025a4c0ad78533fa52598cbcddfb634ea7108e release31-maint +73638 ffd7cf5c7285f89d3a0f2ffddb0a6afcfbb70370 legacy-trunk +73639 52c48dede5f77f5b605888fd88c345946b24c6f8 py3k +73640 ab91fa5d0c5cc222559e552b6738ea324b1c8e6e py3k +73641 d94b3ed5d5365c47431896f837946461e4c9c337 release31-maint +73642 a511fe5166fd778dab66700209479c4eb9e39d7b py3k +73643 d7496cc10dfeeea0719d0619e40955c8bf21786c release31-maint +73644 0f7dc5704c5906594ea6edb8915dcb517abd80e3 release30-maint +73645 f47ce11e072b6155785fa27881270b09ff78e32a py3k +73646 66cc50890894c13eb1969e76508f415f4154b540 py3k +73647 563cc4dcc703290b70a92ad0e4f4840d2c4b17fd py3k +73648 52840be42530f76307dc428cd9b5b392f679fc80 py3k +73649 a37bb59d4b53a9286ec7f463ae3c2f0fbd7d1fab py3k +73650 09c44c933942b4488a609340bda7d13c282b5ebf py3k +73651 4369822414c3abbc073044ddac4479ab767bb28f py3k +73652 0080028f5ca00123ef1240219075d32b21c254db release30-maint +73653 a9252b8847f07d76631d154617a00ab22a222684 legacy-trunk +73654 dcf7121edb2e85d00de0162894d2cabe5fab3e84 release26-maint +73655 fdc210a8a328e25cea1413f8d5101425c32e8572 py3k +73656 3f4668b49f11e39bdca9b37ef5a683ff2ad51db6 py3k +73657 520f1310ae61390248d3ecfdb601d687f2fa775e py3k +73658 527bade3043b23a77b7d61053d11fed8352e2905 py3k +73659 d51017dcba247f8951faba369080d45d48bd277e release31-maint +73660 f3daffd4cb28c628e2f9f585fc7e1741ab34b6d1 legacy-trunk +73661 9829b42399e56d9b2ad404c3a7ed54f289bf37ee py3k +73662 5088064d61706586f68ac51cfc0992d6cc45ad33 release31-maint +73663 7048948646b087ef03ba451eadae29a8986e39f1 py3k +73664 c45e331238ae796aeb0af8f370dc6bdb03275c50 py3k +73665 164d64b39ac06c0187bf96b7c31c90864250a985 legacy-trunk +73666 7ecc075d171f7a21c5d420635b201649aa6c2169 py3k +73667 380af9e80c2e8efd8bf6b99b8c6bdafeffa9ab3f release31-maint +73669 a664a4443a3948450adb4ed4f605613b1962a376 legacy-trunk +73670 65adba95d7e0e73f2c7ee7f3965de68abcc4956d release26-maint +73671 0d055a062cce1e021837375ff5d568d18a4263c4 py3k +73672 297fdeaf58222500930293064081e7cf53dab835 release31-maint +73673 db6d2ce3830af6d6a45cb6404319f8023966f452 py3k +73674 9463a102515f3d3992c3dffd90492f64a557315b release31-maint +73675 4e3556453fbccb68df0989807b9a93196e79472d legacy-trunk +73676 a79f74d6f5b395086ca3239c6e85152303ee8ea7 py3k +73677 6e7a16a6442f6c843b6ea99f0448e1c1793e6df8 legacy-trunk +73678 8f23bd1092fc24f036b9182c2f59b67a5a879689 py3k +73679 1b8a01dc7f45a4c8d24052e15e084a9b2e957176 legacy-trunk +73680 629674448d84fbbf2d9c24201501a84c5a2f9a99 py3k +73681 210a51efdc82670d90de4c685ca6fe8565f65533 legacy-trunk +73682 a27583c836b228f332d434a46e71e931ce4e183c release26-maint +73683 e0d27b76a2e8d144e3183ac490475d5433009f65 legacy-trunk +73684 79c2ed61a0253d3994d18962a607948d71286c7b py3k +73685 5139e8b0f21c732381d8899aede6cb190bbfffb0 release31-maint +73686 70eda02c7a98e31bd834c47ed8c457eacb46308e legacy-trunk +73687 e78b99b048baa87c78ccf2fd628636490541be4e py3k +73688 3dcc8fc4354efbe9256926bf684b78a8af7268dd legacy-trunk +73689 3915ded2d60f1fa6f79f158074a86de1fe67437b py3k +73690 68102e7e1eb7d3367bd8d9d17256177ec6664e43 release26-maint +73691 487d6f01842a93fdc31bdae70cba9cd1509a4fb4 release30-maint +73692 514cae62ccda5f0736e454951a90fe87c4630fce release31-maint +73693 591785cedcc8a5e7cd2fe31ea591b2753127956f legacy-trunk +73694 3d54cbfd38099ed48fcc6d50b4fc9a38c9d72168 legacy-trunk +73695 7e392028a09eda02fca8699e543dc9baad4e6467 py3k +73696 932033c304ef7205497792087ea369c31adbe3a2 release31-maint +73697 d2b1f5ef2ae3d2dea03ba686295d433c893f6f14 legacy-trunk +73698 01e125d319d481803d06c7703194486defd14617 py3k +73699 29fac8848489fd66bbd77d02941b3e4f380cd6a3 release31-maint +73700 d3d6ccc9abb413784ee4a43e7ddad85ee408ca33 py3k +73701 c065f33d9c9cf9b6aa070144f1112fc95b6eb686 legacy-trunk +73702 5b6639075c479ce8fc0c5c4a5bfce2a1fe92b210 py3k +73703 32f71120ea55044f8321eff0b37852f71a258267 release31-maint +73704 0ae1202e53620e594c847f69534728c5eab9bb7f legacy-trunk +73705 43fecc39437b32ce31c2cb4c50e46e927097e583 legacy-trunk +73706 08b762934488a2585cf1a88a966b193c15e8bd9e legacy-trunk +73707 848c86f4bed6060beee1abd24b0b72aeef40def4 legacy-trunk +73708 70adf0f68fbca1ce778f3dc0101d9de3dd63c8d7 legacy-trunk +73710 2faf2fa2a4235573a5a269af2eed95e905344689 legacy-trunk +73711 99d52d8ad0266ef6a40ca13053125eca272cf82f py3k +73712 4f90ddc6c3b64ac818807b3b8bd65380d347d371 legacy-trunk +73713 383699845c99b1b93717063216fc927f4cd1c9f5 legacy-trunk +73714 6768b2350c576a66d22d37ba28a9df226fe73a94 legacy-trunk +73715 adf66b52022dad585a54bd6f41f5c061c0861dc2 py3k +73716 3e001eeb8381b9361a34560e20cf6454d33514c1 py3k +73717 e88cd42ff282dbc6ceb2e2a8e153ac52e226ea8a legacy-trunk +73718 c40d6fed6b6ba55e2cffc9a592b59f9288ed316c py3k +73719 dd470b71290147356e60a2a93373f892b0654193 py3k +73720 6d5075ecc14c0a33965f677539461bd1ae53e55d legacy-trunk +73721 1c7692d2509fa010d5e14d07d3f0bd73ee62f8ff py3k +73723 f2b65bd67df25da97a2a34c40f20d695a7717a77 py3k +73724 ed2a336204d6ac3aa17fe906e8bfb8502fa88daf py3k +73725 5502f255c27cea54133610a9a8f69232600e263d legacy-trunk +73726 7654fa857b03c2ab67b9d4996c448020248d4bf9 release31-maint +73727 9230c3a80dcad38e5b2cc65e7f07af67d8530465 py3k +73728 72ad1197f0ff97a83fc475e6377f6ef01626b3bf release31-maint +73729 4b627961b4473639f94ffa2b36cb0ae8dffe7f29 py3k +73730 a07fd47df76b3265eaecc98cb94fb03b0ef7480f py3k +73731 e3fa2ddbb3a31509010cf3569bca535f8f2a8774 py3k +73732 7e4283362d277faac3e06ed5ea0999e27df0c507 py3k +73733 e80859461de8cd0c4ab94effdf6ccf3c18223d39 py3k +73734 b168dccee602644aa27667088f709eb0f74bd5dd py3k +73735 c24270f545b8fa6fb6ea70e6184e60a362b3418d py3k +73736 43f225c7b77ec4735850fa917bdadc2315c68123 py3k +73737 9cd79dee5bce4befe913ac9f808c5cb18c07c7fe py3k +73738 e0ed627ea679485463352a0f0698ac6950311719 legacy-trunk +73739 f0eeaddaf83a4a8fa0ad55b8a47bb8e431891914 py3k +73740 151b7d536b5c45bb2345fd79ffe78d2ad8775341 py3k +73742 366c8a4e5a46a0a1c71b2de94f2092439535e1db py3k +73744 74fc476fe72833d0f1548f9c6adef7e95db82bff legacy-trunk +73746 f2a526cc3f2af26750741118fe587ee9794a773a py3k +73747 6518114fb06381f9572b0cc8e7260a24ec0de08e py3k +73748 0c6fd556149db2f676786d46309810a7654307e0 release31-maint +73749 cc43e923ef9617dec5a10c7cbd0e31e7fbcb6618 py3k +73750 6210dedd2cf795493ac2e2289965af6b8dd730e9 legacy-trunk +73756 9bddba6e764e6d455c1557bc7c3e334b56c934e6 legacy-trunk +73757 4663163e644942e2b9469fea5083b216a136491f legacy-trunk +73758 5c89b9273e6112fe7fcfb76c4816fe235142447e release26-maint +73759 ca53f86fe67db2c8e21d10980eaa37c326379cbd py3k +73760 6cc185f42bf66ab57cf41bc3876ff679447ac38e release30-maint +73761 3bde81e7c9f403ce861a0ac1b5451012195792e1 release31-maint +73762 5d749bdda979cad3a707137907a09fa4fe19f6bc legacy-trunk +73763 2a8dafc84528c78e70e22539aa7e3f55e8e0c207 release26-maint +73764 7d514915515e5c6d03ee22c00077654c1c62d224 py3k +73765 da6980799639908f4ade120da8599774e9ad47de release30-maint +73766 1d48c701f07c6146ffce71873b9ce6cbd6c93506 release31-maint +73767 edcfe3b8f736167194537673c227fa44796c93b9 legacy-trunk +73768 f149f57f77d6fe80078231900f31b250767144a8 py3k +73769 e5c8290c7949bd600bff62611866bc48a4f87e24 release31-maint +73770 74c0a78114ae4e230da2e8b4f2a3e1708aacd138 release26-maint +73773 56c664b91545b81813fbb5c8505a9cd4f98f2733 legacy-trunk +73774 fea57164bd791ced452e5f3274b05d7110b6d08b legacy-trunk +73775 7dc0d2c4b5202306b2eb1cabacd928dea8e4510d release26-maint +73776 0653c1a0cb1e1264d5e38f95c1f0732801368d83 legacy-trunk +73777 1783883e76d779932aff7f0491cd36e1d4726097 py3k +73778 ea44a165b9ce546d21a9dcec963ee66b2c797cef legacy-trunk +73779 f65d62473465b154c570136b468aa3fc12fb6f0e release26-maint +73780 466a71fc625c1e6d3182e41237b8203c94d7e077 py3k +73781 fb542ed91e7f55b807fae61e366fefcd1e4b4039 legacy-trunk +73782 26255f29a7e49d37729d79e1aecc128b66d25d4f py3k +73783 cc6b91c3d719b69cb77b0f404906cc4cce6ca402 py3k +73784 ea933c24ad1033d86134730c79c93028a8a7f286 py3k +73785 65e41bcbc25d4d06c400f343fe1da31302c797f6 release31-maint +73786 7b758f8083305b33027862b4a0a1173b9f80321b legacy-trunk +73788 522ad9eed558e78abf0ecc281c4baa0445ac48b4 py3k +73789 56a276396e15f9c7953a33cca3138f0a5700512f release31-maint +73790 85677a2c7855d221434d4b0a5301bbce8752ba43 legacy-trunk +73791 eeeb35f28812ce5e84c0b986b8ba82dedd2dcb44 release26-maint +73792 89686773a619a770cd8f1e0401867d0df387b0a4 py3k +73793 d8c83cc0d3fd8c54c7c5727adc82a06287730f65 release31-maint +73801 a501573c23f2a57866187cb71af61169490c7753 legacy-trunk +73802 427fb633c4cceaf6663197f45ff1784704e186cb release26-maint +73803 46a9b18a1a176e113213eac4b141da84196b189f py3k +73804 87763c97f68ea3f04a0908970a4a46f64c051bd6 release31-maint +73805 854c0948b08d0418d6e1e6768ed481f50fdf37fa py3k +73807 59c66ade3c26822aa88f9f02d15dd0fe5809853a py3k +73808 fc6adfff9a9efd527113aef99a02c654450330b1 release31-maint +73809 1c529218ba9644400238f963f1a08447cf8abba2 py3k +73810 3a214622c943ca4a8d00d04738b19295798917f4 release31-maint +73812 f6fa5fb010bf7fcad69b1624f52a877f25b782b3 legacy-trunk +73813 0a46e0e3fc074853d82c5e5064a427dab9b44d9a release26-maint +73814 7b0e797f6b2c86ec30d3e6b617181450f7c86c2d legacy-trunk +73815 b2c776857dc4c873ff59efc7fc89e53992d2bd53 legacy-trunk +73816 8842f4e2fb1b74db068df07fe5984f77caf64ecb release26-maint +73817 dfb985a8de6f65c963ee4c57a1c0e9ff706e8baf py3k +73818 9c9fe9aafba6d6d08ddffd04e77e7d4ccc9dda36 legacy-trunk +73819 01af7b52e0db59e352f1c8e0d5d7eedbcd314583 legacy-trunk +73820 c7da0dc6eb0c6c440b2a21a5d19d25970b743fe2 py3k +73821 8a7c2066a9b2e614d52339463a4058eee984989e legacy-trunk +73822 4617883ac1f33fcec40fb7a8db72f5b9e6ce6036 legacy-trunk +73823 c2f4270be36292d54f7e539d6c95b51c794322db py3k +73824 0e391bf3eb9df9cab8a866255a9110e4da0bba91 legacy-trunk +73825 9808e38fde72b6b32bbbe61af46d54057c645b27 legacy-trunk +73826 540fd46163d1c9be4c5b01bc0473dab5a53be9e1 legacy-trunk +73827 52aaa77a5dbfc7fca491fabd891e0af9d193dc39 legacy-trunk +73828 08b58cbece79eedf968b3d0b5300fd1466b5cabc py3k +73829 0491227e540ece59f6fbce807213078cb57c5918 release31-maint +73830 83ce332a2834f9bf847dd743e6cc88a4b1e5e8fc release31-maint +73831 f882696fd134f771774bb33bb3387affd4ab6f99 release26-maint +73832 06b360a33d5711e310f1926d4a65b150ba4d22c9 py3k +73833 7b9ad9aaa9024c14f6f5b443459cb11a2721dafc py3k +73834 d11d899aab1d80e4ab2758fefd5ab9360a8366e5 legacy-trunk +73835 7dd8dbd27033383ea1b724b180c8944153d4ea71 py3k +73836 868ff37f5a8012476781e9b504af8dcfe7102b7e release31-maint +73837 1dea7ed6867d7c7d08502ca209cfe164f4ea2078 release26-maint +73838 78987bcf1abfb08354c24288abf1c3801a6096f6 py3k +73839 7ff1405ccb64bb51c4e19c19823725522a841ee4 legacy-trunk +73841 44fcdbb62038b115f3e971ffe9f64ceee004c12f legacy-trunk +73843 f742c08752887d388d003054444944be4ef70368 py3k +73844 4ff4aa8d6583299207683083dd6162d40e82fb4e py3k +73845 c233615b34aab8e5057a2e88cddcb40017bb5362 py3k +73846 466ca96be1824009a0d4b7a33a0fada7a8bfd110 legacy-trunk +73847 77ebeacc107a8060e9f122b52eae9c039a8146ae legacy-trunk +73850 8e8157445a5565724f27661e1e4ed2b351972dc6 py3k +73851 ab434f0dcb15d984e9e6333e369998d81fd9353e py3k +73852 a76b34cfc897c1026f7bf00cf9243b1175a4da30 py3k +73853 a40a22661e50487d2a7387993540ebac084a60d7 py3k +73854 c6f13934f4c669b403e482d3c3abc3570a490323 legacy-trunk +73855 10a6ca2c0ccb2727a2586fa8f471e3ad63791849 py3k +73856 26f60fd47ad3fa4d424827a23d023fa0a314e6fd py3k +73857 85db6a543b3e44baf0e6168c23cf16a8e5396f73 py3k +73858 1fc37fecaf8f33f77730eb88a392220f21f427ab legacy-trunk +73859 24446dc87f73e7df07e2fdb657a1e13051aa688e release26-maint +73860 0522e571ce7494fa7f75b0b6d6abb7343364ec9e py3k +73862 7bb7758e6d64b8f90ff257cb768f73e3c5a572ca py3k +73863 426394dbbcee22f8711de69bdb3e6d3bd39caefb legacy-trunk +73864 b46abc2f2a1fbacaec03e92999c6fc106a069c45 legacy-trunk +73865 d1eda70b383e9eebd39a0e218be0a1424a71da3f release26-maint +73866 c23a8f1cfab8faca1bc1063e8b481019ac0a9006 py3k +73867 49ff23420919b41ec0b87940246fb09e83984225 release31-maint +73868 749cf06cd07099a60e3fb50028d0cd18c35a04a5 py3k +73869 59cf5f808c24a999e3750c8dcab689431ab17dbe release31-maint +73870 e9fc8947c49a55638a9ea4c3e326c9cdd4afd0ec legacy-trunk +73871 38d6e4e51af08951b0e96f896079e50dcd6bad68 legacy-trunk +73872 1cef7e7162478b8f86fdfef9acddc4a075fafe71 py3k +73873 3063714ff9f31c0fab6a1817a2f860da6d08fc00 legacy-trunk +73874 638ea134aa82d72a2ac20baf218e0f4f9e820bfe py3k +73875 de58f61386c3b49e55fc3dc9aa4e8b227625053f release26-maint +73876 4168138c371e5d35104f7b756057524f0d94f0bd release31-maint +73877 4ea8130ee09e84b44416917da12c1d6c15028595 legacy-trunk +73878 81002c7600bd5d32019ec86129908b53c81f3987 py3k +73879 adfd6b73d364741b4d8979a1064f438a3f41debd legacy-trunk +73880 880b50bca1b1922f7d2b4e1eb45309b86db3b9f4 legacy-trunk +73881 99e30af41169f05a756152bf930aff8d6cb65e8f release26-maint +73882 ee156ec5efbf96d00d5460efa97ca0009abf4ee5 py3k +73883 1f48cbd43226d26ed561f74815b181ab8559bded release31-maint +73884 7fa21bdc348b4f6a1b7a822f57b5147833a59b94 legacy-trunk +73885 1fd839b8330a1b6452a07c84f016f3a5061d2aa5 release26-maint +73886 de6c48d73b716eeaf3bca7cc0a53219a3b7d51f5 py3k +73887 fa080c4f539a9ea98b9ea4064f799796b9d27d95 release26-maint +73888 897bded800206a6f5523d2190c5ac1bf000a3d80 legacy-trunk +73889 8a844a5b16dbbf99323440bc83336be3df14c932 release26-maint +73890 860a069d126c9baf60aa105f1c595e4fc0ad1f93 py3k +73891 b3fb5e6b7e82d63fbc67a7e1c289df2c066d346d legacy-trunk +73892 f02e471218b7791d409d53d71bac30ef54f57c54 release26-maint +73893 8bef3a267e1ee84f3f7a6e3c7e4b8a6ee2dc7abf py3k +73894 d9b19b37f81aecb831af0f983154ac49e87859b1 py3k +73895 27b51626326916e7476a142acf80c07c6a9ad3bb legacy-trunk +73896 d61c4dcf61898dbb725d912605a01009c7ea9a37 py3k +73897 d599254c203bc697b6babcb02cede7dc50ede94b release31-maint +73898 ba0459f2c0cb4005cddb0406d824049dde2e5f9c release26-maint +73899 be736b490ab2c8bcd592aacb32f2cc27b9de577f legacy-trunk +73900 468a40adf56f5e3f455071df2cb1e7e3a79aa043 legacy-trunk +73901 c92b937755690b944e869a162107ab2e6b431f76 legacy-trunk +73902 9afeae0babf9c4f658fb3e3b722d54f24941b170 release26-maint +73903 13c5cf489797c45b6bad88b6a4d35052d2c2d85a py3k +73904 8290519199ec2fb7a09ec7d8a86c18024d10318c release31-maint +73905 4f1b2a457e83ce134a360ee6cc609282baf8d865 legacy-trunk +73906 0f065b48acf95129d2777e2d2a7ac1772733409c legacy-trunk +73907 5f4535225819bee14953379903ef55508e2763f6 legacy-trunk +73908 5d9b3230181542388f0c60567ee28496bbf2b378 legacy-trunk +73909 da2c147e929d0a1d0b1b068138018329e26f9c87 py3k +73910 5a28a95dec19305e7eb0ff614bcd9900d6f77aae release26-maint +73911 8a77ede4e175a8c64d2f7e05c1e4f81f032e7294 py3k +73912 4ae1e96e93774c07ee441ea54caa2bf3b799723d release26-maint +73913 c47ef4e107df908c718e9b514fbd1ada306f6897 py3k +73914 b53e42e50c41532c8c90430aa8796dd8941b41d7 release26-maint +73915 3898d520f107ff401d7d0bbde344698364e70333 release31-maint +73916 5609352fea120e59d218e50f654b4f5a2e3afdb8 legacy-trunk +73917 e89faaafa3eea2499e2c7d021d3aafe8c4fdf059 py3k +73918 0b2aba7ac1faf6004d8a95b7dc21b1e93065a403 py3k +73919 aedc220cc9bf8911229bfead472a1413ccc8d5fe py3k +73920 01137e3b9ebe8f8d5acd059a2170ec8aaabc362c release31-maint +73921 877bd7d50d897f4e6ffa82b0f9b83bbba773cff4 legacy-trunk +73922 6f0e59fab62cff257ea77af5226575315814692d release26-maint +73923 6264132724649ba4656432688e5d7c22aaabd73e py3k +73924 d0b3af565eaa5a90ead4b95d4a534feb5686df2c release31-maint +73925 e53d031e54d475c40670e041787f8a332318c325 legacy-trunk +73926 03b86606ce0a2a78bc5e591e09e31f3639faeaf2 legacy-trunk +73927 9b5d2818e2d0e702779c841f845bac5e62aa1082 release26-maint +73928 139347b00c18f79c016969ed1cf8368fc74ceda2 py3k +73929 2fd74c502600369111dfe02b1a369fa2dd78ce8d release31-maint +73930 14cd19feaf20d8590e5d6d7cbe2adda97aa3031d legacy-trunk +73931 cddd5164db03ca74e0b3ada042c627536ff4a3ab legacy-trunk +73932 b1c6372a8092c3eb871c795aa26a0e2351774f81 legacy-trunk +73933 221718e757bafad05bfee52bd39f379d8e609218 legacy-trunk +73934 feaaa7cc02d122cf00be19b9c94a727e7995a655 py3k +73935 e536a3b3a8d0e5b0a73125f2af36611c4d12dbe7 release31-maint +73936 e200ee9ccc4bed6126bf2dd6ce63a3a5db8c592d py3k +73937 acaa0c87d401f3593c3c7d10399014ac7389caa9 legacy-trunk +73938 7b246945fc8cb0db56f62d0e6f4f4872c2daf549 legacy-trunk +73939 b28dadd20d9b7b49ed06c6980d9ac60aa24d2f5b legacy-trunk +73940 59c34a91c54d9fd0c4987bb513ee346d1e2b5d47 legacy-trunk +73941 841a1e68b4edcccb2184fbcb21c5f3fc398e0971 py3k +73942 67f5e01d5a6a71e257876dfe05c5b1685c67ed84 py3k +73943 80661608d4e2057ccdc4747d1218bd135e501d9c py3k +73944 4c5e075f5473da563cd9ea4656722af7dbb992e5 legacy-trunk +73945 f3bf08329f07966b5ce09f42ff205602df6bfa77 legacy-trunk +73946 822a02b71bbeb2c37b7b9c8b4614085a7fb238d1 legacy-trunk +73947 c64f9dc3c6a4985b3945d47974023d34a437b474 release26-maint +73948 57b3591f0cb232a47f2587a970f31715df6edd9e py3k +73949 56ccef3420e781333609b915630f873a8b718e44 release31-maint +73950 d27fdc70379c26a109ac66eeffeb631f694f0bde py3k +73951 0b50e6841a81bdbe8e896a5c49ba075d900105c4 legacy-trunk +73952 86820225a4d5afb762de9afd036299d800850266 legacy-trunk +73953 a1b79778f22e3e24ca32c559c8f1a02f5a72017a release26-maint +73954 3dadf3453d05509d68c4e35840626d14da770db8 legacy-trunk +73955 93b48ab90ead0e5c5f6aa6bc762f31c2fcf8b2ed release26-maint +73956 1028a991b68ec3e6c6cdaf382097e045f1ba4959 py3k +73961 0c812870a975ec0b86967f1e9d4de45a91d74c01 py3k +73962 2630c075b57cb357caa3924c0088e40b621894e9 legacy-trunk +73963 493c7f950a2b9b5ba815dd595fc35ca392cfe015 legacy-trunk +73970 848a5ac924b9b5008b005f488c51352bce86abc9 legacy-trunk +73971 2a398edeb08d953c43624676f90327b0ea15e0ee release26-maint +73975 d0f225865be6563cb830b0d2a044d4da67250623 py3k +73976 318763ecc4b3043a61196e1827b7e97ecec73615 release31-maint +73978 57e9f2d367a81d35bd7b2d0a60a261afae93240f py3k +73979 acda692a847fce9e9527765b6103abc59d45414c legacy-trunk +73980 f3b9c50a7aad5c00f0d5b324748b1c045c0992f5 py3k +73982 88acc10caa6e11fbce9af7f495c145fef8f2ab63 release31-maint +73983 5be04e2317e8d12a8be282572ee77d20aa0dea0f py3k +73985 010a48e942237227f0733315e2113167dba5712a legacy-trunk +73986 d076e65a90d6c19385a95fe79ced85b3e54e892a legacy-trunk +73987 2b67cb925bb19e8699f496e408facd4128bca51d py3k +73988 9507e4b9b988588529d75396b920ca60acd3a375 legacy-trunk +73989 b74e3926281513a2092016dd4ef66a6f36490f90 legacy-trunk +73990 b1d34dfffe2de01ec80d51435f50583598ed47a9 legacy-trunk +73991 e172a88650cf9ae5716ddbd1e7feb64fbe5395bb legacy-trunk +73992 bd74e2c973489a86f1dd87c4374e04220811097d py3k +73993 4d2b5325ee48e85dc22b928dc45daf83373e719c py3k +73994 daabcbf2415dd0a38939e12f4c1eb1f8d7e2ec54 legacy-trunk +73995 32d48662aa5f36305286e34bb5c34d627e8a5503 legacy-trunk +73996 8ebb90dc3b0450b39bd8a9bd0b285efb0ae0991a py3k +73997 7bec6b4074f58471e3417eade552cd95943e15a3 release26-maint +73998 737a6b33750563c02f7506130e2e05a46d13e9af legacy-trunk +73999 6d9625dd92e7ebc5acf5941492cf51f1c0b857b4 py3k +74000 41eb11290142e763562f28534c349b19e55c7514 legacy-trunk +74001 aa22e7f3251782a7ce6f60f454609a8877ff57bf legacy-trunk +74002 72c5e173aac5a681c95770cff8792302c3bc35c4 legacy-trunk +74003 ef1b1198338bfad704878f05e9427cfc75e7d31a py3k +74004 12439a033988a4ee21811b464c7738d1cff90784 py3k +74005 29e7a4dd417ca255ffd8977740128a0fe583e57a legacy-trunk +74006 0ed405c05cc304bff57d84fe7a5f42b83fd22f98 legacy-trunk +74007 98bbb9634672a581dfc990f7ccd12cc07a9ef1c5 legacy-trunk +74008 2073a989c01926b133ff2226a80def174e42e95f legacy-trunk +74009 8c6606b32cb1c90f350e65b38103460ad1d5bd84 py3k +74010 87b3121ce580ef213dcaa2bc2cec941998088fae py3k +74011 93906b39ffecc4b1506ffc78fed638d0ad5d8776 legacy-trunk +74012 a50eb596a6d3d1c2e74036fc4cabd58f471b6f64 py3k +74013 edc714ffe6ccc3a33b894ecfb5dc9454700fcc1b py3k +74014 3a316243bd6c6f5f635114af091a572ad8d8ddb6 legacy-trunk +74015 a8922723a92d001f243c46a9cab88de7157630d1 py3k +74016 73dcd183fae2d6d688a459367152a26b011bbc70 py3k +74017 d1340a50a1b3076a5d5a9205a6f607cc03befc7b py3k +74018 bd431a0e682749f42d8e99ae45c0e4689f4200ed py3k +74019 1fd0f5697b40dbc1bfe2e41165f33b5b43245edd legacy-trunk +74020 69a04dbd5f0a27d95068d1cd6ecb8273115e5549 legacy-trunk +74021 dc084f4003bbbf680bc7f84088731a784c136219 legacy-trunk +74022 98271468ab07a189f678394bd39bb8dff24e4500 legacy-trunk +74023 3370d608e5aa485638ce9c20b8b81a9dc7588cb9 legacy-trunk +74024 386452b2d9d5733784649a97836cf041365d3919 legacy-trunk +74025 07750c55fd55fb8051461387b26be353000ca670 release26-maint +74026 9b17d5469821b3f8e1e1d32eeb66b8b1dc169cbe py3k +74027 f978dddb9b71fd88bdcce0de68f9cad67940e8ec release31-maint +74028 ab63a262a113b954eb19c7ce29259347dd182657 legacy-trunk +74029 7f1547f66ccf30c1e1bf00e77ea88d4020ddcdd0 legacy-trunk +74030 fc8fb8eff20ec863808e7c66e6d634320da31fd9 py3k +74031 e830e83f0f5ae4bb869988c42f8b9cb5e4c103e4 legacy-trunk +74032 0ca80a2c77ffde88543672289871b3e84074a05f legacy-trunk +74033 cfa004c1fd95d762a0318b514c4b229367ad4151 legacy-trunk +74034 b16ae69d6484a70523b619bbbd24e66320f1c60a py3k +74035 e621e3e3196ea41fdc31b3b20b18cc8a721f7190 py3k +74036 cb3aa8bcd7b02d8a01e76bd69a5f4d24e1b4b7fa py3k +74037 dce47c10d3fae1fef2fc2ff5080482755361b580 py3k +74038 d2079d5adcfaa44a1ef51db5d672fe306d1f6b73 legacy-trunk +74039 7f6d03b59865c3170b3108ff3b3a4f26d9ce27db legacy-trunk +74040 2dab8d63eb555683ebd49c180a2cc3afb789b185 legacy-trunk +74041 9e7529ef44d435d198ddc2627986d53530efd9e4 py3k +74042 12a13e538a11d994f8fd56dcf2d17bc46fb2f321 legacy-trunk +74043 130f1911d1465b46044e9b901661bc32dde57ed3 release26-maint +74044 27e70d81ad575ebe231a764bdbe1d4bf3c89c1f1 legacy-trunk +74045 b7b826f65e75dbecf5a447c8d962ce5ea138334b py3k +74046 906ed119cb19b42cad247e45724894a5ec6dd86b py3k +74047 8511c7c0d3effbcbfeb3f6cd09ceccc8ae69c5fb release31-maint +74048 01abcd3730145f93df3b2fd18dde1347e489849b legacy-trunk +74049 107e4fb93605fd89015176fef57f0ce51cbd74f1 py3k +74050 1ec5c266d390df61fa89201ca41aceea6bc0b6a2 py3k +74051 a29babb54884b516dae61618ac4c4c5a36d27d58 legacy-trunk +74052 5d7d8524042632d3d916ab35ee43d61103f9fc2b legacy-trunk +74053 59392180bf445ece1b8e3abaee74e4bb01d8761e py3k +74054 b4287ff164e5bc9391499648375a354ebd729342 py3k +74055 724dfeab3e9b91590aade18ce879b38037d7417e py3k +74056 2fcdf967797de65469e9abfb8c247db597282b38 py3k +74057 1c57debf97bc274d16fa22ee9ff983fbd92a0023 py3k +74058 c075b974c35ca4d12fc918f4bd2fdca40767e800 py3k +74059 a06169a872b3489cbc4b5daa010e543fe5e3f49b py3k +74060 1db97ce4a850a0ce1c2dd4573d8dde5ece7e8dda py3k +74061 20cc0eaa8926467ebabf7dd7e3bd4dfc1552cf77 py3k +74062 763e512965fa78024acb91c97cc8ba77390d64b0 py3k +74063 ea8ff8d62928a3cbc446d0e242ffcae8359d9ef5 py3k +74064 8aa80b715c51c76e74f933f4aa9035b62cb776b9 py3k +74066 36a7e96e90fb3a265205a537e676d6c05b92f58e py3k +74067 db5b3d31864933b9ac3c5df233e0c867d83350a3 legacy-trunk +74068 fe2b026ddf21cd1e5e7d6fa84e2e123aa99f8112 py3k +74069 e2391d360ac247919c45753b91f39c581378bc4b legacy-trunk +74070 bcdb7b187faa0543cc4da16e798845df3576faaf py3k +74071 ab24ff646da88f55c43be5c453ded8d7e78b34a4 py3k +74072 6e075ee48d4baea22febf1ca274720e2a4c881ad legacy-trunk +74073 ba738af14dfcd41b32d57c52663dc5267008baa7 py3k +74074 58b512edfdbb41ad0fabf7eef8c6ea808baa073d legacy-trunk +74075 259138a988a5270a1d8718dc921f8a5ff4a6e4ce legacy-trunk +74076 5ee2e965da6ede133c2101155209ec031fc07a29 py3k +74077 0aa532117a4bb69f07c63ae47c5ea4303ca3b781 legacy-trunk +74078 b051055b59f1942cca3b6156472d8107d7793232 py3k +74079 a19eb9637ff7edffa15a6dd6906a8b46d3fffa24 release31-maint +74080 9dc5aa62be72ff87bf8f999356e22e5e1b9190f0 legacy-trunk +74081 66babe631037f7467771ae94fb47b140622f760b release26-maint +74082 de1d52069d2dfcb726c9852da774aa65710ddc69 py3k +74083 375563c6d3244a19d789cc06b95e538ced275b7c legacy-trunk +74084 54b1f8024bc83c3634804ddf5a890d9256e592dd py3k +74085 f20705875e806509752a6e532c4d71a475c42da5 release26-maint +74086 c7042127196a515faef29e2e04cced27529dc6c8 release31-maint +74087 4f178e59581312e78de17e47610f284c9f2f6bb6 py3k +74088 ee0b9a931c94a496447a7e378b09da8ebf9d4a08 release31-maint +74089 c336b3038d054642ae477a263713e41e333b8cb0 legacy-trunk +74090 4612a2acdf2f607d7432b3deec2937db5500df73 py3k +74091 6236adb366181d625ba3dc6b656f490a30919841 release26-maint +74092 d60b559eead9f2974879df594dc189c7b58d6cc6 release31-maint +74093 36636fa54f33339acb765ba680e635b01d64bd66 release26-maint +74094 6ad25612408043a0dabe9cfd7c9680e73b7d0d39 py3k +74095 f311395487c970f2ea852aa9ae7051ba00860392 legacy-trunk +74096 ec1f32b72abe813267948530347bf7729137efba py3k +74097 af977e94e2fdd4e3c74ee53f2ede64c2996faed7 py3k +74098 3a613e00f66d348bc3cae22ab2b6581b19f84928 legacy-trunk +74099 e62957a0ee14237d039fca6228011674cfce265b py3k +74100 eead7807df7cc078fcea99c5fbe9c1e6a184ecef legacy-trunk +74101 c0acae19b487676a761770880b7a396bdcddac3f py3k +74102 eaf4a00484bdbd83ed0212d0e4a47cffe7a4afa2 py3k +74103 ae2c056c46d344703e2d9bd53bef250a1d8b84e5 py3k +74104 81c8b304163e3adad8f5cd28e8ad6287d8dbada4 release31-maint +74105 0af9407c88d2e6ef1b411507cf32477ed89f8bd3 release31-maint +74106 5cf68d3b65324899f5fc40d0ff493a4920dd547b py3k +74107 a640bb3b9c2bb6bd2b70add768ed3de2f21c3313 py3k +74108 f50290797fb50a530d87bcddd727968ef671047e release31-maint +74109 fe7988a570dff213e007d52683431dbd59991ada release31-maint +74110 dfaf6de2c8ce7a344ea87f88ef71a2db90cee65e py3k +74111 d826a0cc2c0e0e61f79ab32e1661e123dfbcf2ea legacy-trunk +74112 d1d8254c4ed5c6f889ccd494efe554c2a730ac24 release26-maint +74114 732f72cbaf7d84cccf613d5ae908eeb11dcef333 legacy-trunk +74115 0acf249015ca4cb3d0958133f92cbd59d7c950dd py3k +74117 01b763ceb40873e8934f77d839df5e39e65414bc legacy-trunk +74118 aacdc735f19b185c2fd211701c1a463d67e7cfb1 py3k +74119 7bf8fc20037a1cb21b03d1df0886352a89eb21b9 legacy-trunk +74120 860e712e32e0dff8bf30dfed2da3fabb669abb94 py3k +74123 01e2e9add070fb42235ba8ffbafd28142e51ca5d legacy-trunk +74124 3832cf03687bb3950a5c25af91e3a90630e82e47 py3k +74125 cc9fefcdd533c4b73a7f342a80bae623f5f45f2d py3k +74126 cfab11dd3e73e586f0143934b22043499e7f42fe py3k +74128 63fd17ba98753062978ba11c59aee9c122b70695 py3k +74129 2cf9d18d3df54c9fc7b188728dbd1d318c89541f py3k +74130 0b1f1d7b2e6dfd0596ce4429a81f762c6c7e2569 py3k +74131 3c4490ad01cf076da04962f292681cb443cb0f83 py3k +74132 79718ee0398629ac41c032d7c09d803d78e164e1 py3k +74133 ebc9856a9bdb2601f431d63aa988e2c697bcc1b7 py3k +74134 561364a34b0c46d1344fe29f80ad2bcefbf06b02 legacy-trunk +74135 0a20edf3f7db89eb8def6768fa95338866201b16 py3k +74136 6f8736737994dc119a98345e96d6e2ef0aebe040 release31-maint +74137 9ff5bd16016b407c67974ba26ea00e085d390ae0 release31-maint +74138 21e5831cbae8abbc339ae28d156baa9cb44cc7ef release31-maint +74139 3815abed9279b8d811c84bc4f5e8ab199a6b65e4 legacy-trunk +74140 c28e61c5bdf829fc0fd47a4cdba8ee97b6986ea7 py3k +74141 9499c232edb73fb70269f9572106b44b9f45f587 release31-maint +74142 4df70500dbe34d578b80cc156084f31145ff5ddb release26-maint +74143 03f5c67df18e2b6c54d82521b8fc65f62fc3c306 release31-maint +74144 8d6ead2acca004f57057a01520671712558a631e release26-maint +74145 fda9062ebfa4c871e9ca7c78f50c015e4221e9df release26-maint +74146 cdc749d9c021b97ec67ec74190fd1e0f5ee7628d release26-maint +74147 7dce404fc8eb5b33c306b5859731ac9564cf2853 legacy-trunk +74148 3612a4eca5d51ccab1efc78f2f6b0b3782dffeba legacy-trunk +74149 b40eeb8f69ca7bb64592c69faffdeb12be07c6c0 py3k +74150 c30fa8c5e3246f96c09ac9e80ed3e3a11127726b legacy-trunk +74151 e40506edcb3e157a09ee720d027471531074837e py3k +74152 6bb01887f4756767611f28139e5f68244e93371e legacy-trunk +74153 24a2acf1291c9413722f31a3a56517db001f7bd3 py3k +74154 abfd5f78f466ae170300858d6d37d9b6ad9d05c9 py3k +74155 d747d52f9a66906e52c17ce334951d18ee16195c py3k +74156 f79043369625ff9f6f28b24d31605bbfa48d4e1d py3k +74157 d682ca888e2794b17a56f19aea2ef3ce40769c46 py3k +74158 538850b3893109071c51480a8488c522901c27b4 py3k +74159 b7aabba84ee1a0a99adb0283dd6c79e021b7f4e9 py3k +74160 59e5f299daa020c5cbeee2458427ec463a92dc00 py3k +74161 ec85a51de9cf48e9028e952179e4e80396528944 py3k +74162 df5a708607810bf096385371998cb94f85ee92dc py3k +74163 cc9a1a3e3fb81e43286c4c3cb80bc8fd93d65acc legacy-trunk +74164 1ecb07e11a2dcc61fe3e5231c4233cfc9f82caa1 py3k +74165 9c2111cfd97436db2a224ff31db800a3bb9c6e64 release31-maint +74166 0763460b0b381dfed61df2c0780d5868e7f41e40 release26-maint +74167 1480fae3b703fcd7d004d6e982bac3b080d01007 legacy-trunk +74168 74aaeb9c35fbd114ea21b3abdbe99afcf361aa6c release26-maint +74169 cb46a0d789c670f54a8d90f401c281a414863be1 py3k +74170 25cf775a71519fff6060b957e59b21bd5988a5a6 release31-maint +74171 03cf4cb4a1501d5a369bcfb2dc44928de44ff1ea py3k +74172 908b39764c738d715c9abcfaf0bf68e43f8b7f89 release31-maint +74173 1327af56ea49ab85b1b2352950a86318c5efcfc1 legacy-trunk +74174 e650a9d64ab5c6e28bdf8e469b8efe4e0a009ff2 py3k +74175 94fc433c437346ab6280421fdfb3ec8b5ea504f2 legacy-trunk +74176 a0eacb5f9d8aa352a6e62eba2678eee42b8340e2 release26-maint +74177 df1744319466c8cbf874e8ec9bd7be3c653d501c py3k +74178 260fb421ac07a140895080e3620b5df8c8fff3d6 release31-maint +74179 9dda02afa8ed007c7a13872640f42877c5c4f811 legacy-trunk +74180 025a6428a764f5e4509192b7827c2e1b8523912b py3k +74181 b964065512b1557addafa2b5f4b999bbe88f7d0d py3k +74182 b11a7524e558f1ca3f22d80df9a3c54fde53f443 py3k +74183 207541c987442d6bbbf9f6df4f8d0564981f03a5 py3k +74184 7422d789fdca9b2e91bc0c589fcbca81ab8c0404 legacy-trunk +74185 977602b3e140dcbda3919196b7ca1e1e1653e37b legacy-trunk +74186 eca0207bb77f091a9945846c896ab42627b4b6a5 py3k +74187 2e947245958b01c9e32bbe2bf4c9f119c6998290 legacy-trunk +74188 60523418f8c8e9551792f3ee1c47456ee14a34f0 legacy-trunk +74189 2fb10577c621e29ffb95e452bc5b2582142e9752 legacy-trunk +74190 868b4e639b5ab1b8e71a6ad82c32c0f5c6a879e5 release26-maint +74191 b77bb5321108891ef264774831c8846b216c2458 py3k +74192 c00b08842d7fd4bd3138b497e692012d97852242 legacy-trunk +74193 e99013a9d2f9ca4e0c363dc0adf406ae56ac42b1 legacy-trunk +74194 d98b8a6ec2b84c5b78011734604ea56c4dd4f168 legacy-trunk +74195 61a065b3001d87d56b39bc07aedc2d179bc19b39 py3k +74196 759622d0ae284756a4adfe8a23c49efb8ea0503e py3k +74197 cffb1e963dd8a0772211c0754dbadf77201f6f2e legacy-trunk +74198 d1ec95ae0ac2846bd8c96e2c58c6cf3c5858de95 py3k +74199 a14c08f8e77b5f8d9fd13ed8ae65e7434bd38904 py3k +74200 7d4608006cfac37cc90849a12ae5e849fe24b61e legacy-trunk +74201 6c7b4b47082775ab7bd76e49c1413f4c70c39857 legacy-trunk +74202 4b1216f4fcb5b0c2211060788bae9e1a94d701a1 py3k +74203 0f57b30a152f46191da6c28f9eb6631def77f80d release26-maint +74204 5112a56df977a1c1f9f98440b325958dbcb4dcc3 release31-maint +74205 724a1011e897a7b9f32ae27d4101a8978e5d3162 legacy-trunk +74206 0b893c6ead4c736fe9d8c2872bc639bf012cdb03 release31-maint +74207 1bde8455222c3489a6f3b28a4ad97fa8cf035f42 legacy-trunk +74208 a55634ce811838de80cef411ac0868be94e81302 release30-maint +74209 bbd1d90d158abddd551903ae7478a57c9f7a84b2 legacy-trunk +74210 42db1cf39afdbac50c2851c5253ba227c23d2347 legacy-trunk +74211 6789d840621f4d0dcc6e554d996cee9d1d758bd9 py3k +74212 2f8a362e373d950cc9b80ef045f50adc1e1f1f50 py3k +74213 15b61f327d5095dba8b5cb2dbe0c15cf92f3e48d py3k +74214 9bf206857d7e79ce2d9f50b1210d235527812430 py3k +74215 c10773bbafa03593e6b602d55e1b51ec4cc06909 release26-maint +74216 b71eeb9070937b562f27233eed53e8065624899e legacy-trunk +74217 0f0163f8c5b56cfd2fff5a9f9bc8374e2e365b99 py3k +74218 89ebe43244aebf6bc3cbf1e77315752afc0b7afb release26-maint +74219 0d203ca3ac78edf0459ecb4cb552290bfb789599 legacy-trunk +74220 a9b507ecda4c9d272b3338718cf3621dce4fa4d0 release26-maint +74221 8c21fffb06c4614acabb7911e7a60d4d979ead79 py3k +74222 fc469af6eb7026be8dac8c7a2cc1925436ccfc22 py3k +74223 06b86a6e28f1a14357ed4758a71cde41ad3be909 release31-maint +74224 74dc7bb4f4643b3d6fe80227a59af2f69b22dcbc py3k +74225 607cd119fe4b978a3d9f51f5287e32014528bca7 legacy-trunk +74226 1326ef86f3e40d326f6ccf5e2f277cc5afd9b4f9 py3k +74227 b34cae786cb03e467242bf548cebfdc460eb75c1 release31-maint +74228 c853a3d2a19d3592df2291023c9919fcaa8fe80c legacy-trunk +74229 7212e3e0cd17507075224ff005b69273b35fb9ba release26-maint +74230 0f8b56ef0f7f4de1970eb4d08788a1a23ddda8f1 legacy-trunk +74231 7fd9adc812800c135df0d26b4533ca887a475136 release26-maint +74232 44318210b03c70abed2ed76511678f3894b6525a py3k +74233 01f848ea110ae3d590c4b2f30faffd31f935e0eb release31-maint +74234 da98cbebdacba29d06648e9b3a7af43f5b5b5185 legacy-trunk +74235 bb0b7d0e550d80a8798276ddcdf09e1b4155e3ae release26-maint +74236 07dbdf03e8f50307298a2f1510ca2c771dec0b9e py3k +74237 3d45367cc62aa7ffb9922a4690b52ada3668aa13 py3k +74238 adf484df67948e48b16256be1ed7e7d418f0ae57 release31-maint +74239 aa9ff47bd1c8ee56549b15e7aeb8f50a9fb9fd12 legacy-trunk +74240 56b2da93ad9c8232de5aa0b95eb32f271e390585 legacy-trunk +74241 89ad20a32a26031078635eb67df0a473d1f43d45 release26-maint +74242 bcd39effd31e3786fdb6b36587ea21fa202b96c1 py3k +74243 8898f28e6d2c1a954a65a6b0f0444a76a1c955f4 legacy-trunk +74244 572c187df612e276a273f67c95f8803fda30d29b py3k +74245 1dfd6f407336ca02733ae4529228b93adafb0c8d legacy-trunk +74246 5e05889096cd080e71220236ff357088a1c0cae5 py3k +74247 8a017d3cb928ae72ea010b93a642908a419f37e0 py3k +74248 9fffd3edb6689fdad255442792bfb0c8fbd25014 release26-maint +74249 a5d025ad21c8ea14fad380ad02b932e3229ae8e4 py3k +74250 f357e2603d93beb15facc57a3f7fcbfb444d3cb8 release31-maint +74251 60b31f0db0163846ae2a2a6f679e56ab292ee4b6 release31-maint +74252 ee25459e9b91facac476d47d1b6cb265c12d42bf legacy-trunk +74253 3ed1593dd174720276ba71258c103bcc55d6d12f legacy-trunk +74254 15683c0eaf28632d627ea0a520bff61ea8b7828a py3k +74255 64af4160cf1eb9f93ddac87673ca0045eebe8116 release30-maint +74256 fa14f81322ce071878f3d6cd25b600433f0c7e56 legacy-trunk +74257 1df281c9e1821fc9c50dec87f8f1c739a7785edf py3k +74258 137599acb8baa31800762c7fd51fc7c40bcc43f3 legacy-trunk +74259 93883f3787b579b97811421820b839bc928b5feb legacy-trunk +74260 4fe5801bf71217ba47688416e21f888dcb71a3a3 legacy-trunk +74261 5be4c09e4a66628e498ca3a538dd6ea177a69053 legacy-trunk +74262 7aa0d6fa6359f178a34f613f7d342557f7a776d3 py3k +74263 d29d1d8e2cd6369f1214cb606f1f62ff3daa619e py3k +74264 3e0ce94c2e1e0f10417940dfe3c8a123d5b75837 py3k +74265 bd03d6d2efb0950dc37779ac376a9dd3431a7717 legacy-trunk +74266 4d44f2a38e51ef20821487ff817971456fc7d9dc release26-maint +74267 0535741b57bb20b6d6475b3ddd5ce28ffa388ddb py3k +74268 65050e826a96db5605ed7db32b340607b18c2f5e release31-maint +74269 16fa570629e3f44cccb790d2f073cbdcc4ea498a legacy-trunk +74270 19611a29c8de7e8112102744c14f37bdb1ca632d release26-maint +74271 55e02fa7a11c0ea99a04dd603a3746156721dedb py3k +74272 04121615955a28c0536de8cd470b2e7ed7e941be release31-maint +74273 2c7e076b4ca9d828e3a3157e5afcc5fa3d164c49 release26-maint +74277 3af3fb1686383af1eaf14b4f1601f096de68a160 legacy-trunk +74278 83b46a5988b0eb510de4238897d498e771e16813 py3k +74279 746a818bdd352b6a94859332575a10e2b416b4a1 py3k +74280 88255cb4534dad5e4e65be2989808de04019f472 release31-maint +74281 7c23f0bcca85cec5830161429fdfbc5a35bad3c5 legacy-trunk +74282 8b48b282eba93960c04cbc4a5edf6024ea1e79a6 release26-maint +74283 4ae04e0f685038e4d69dd96c2f61973891ae31fc py3k +74284 79789e89ff78485a3fd7c5f8a60ac663fa19def8 release31-maint +74285 d25373266729763768c252da9917c3af2d905637 legacy-trunk +74286 f42e07ab326ec5ad8969bf547c987954f7f95be5 release26-maint +74287 46f9be250912f6135d0e0748b09987e30f613181 py3k +74288 cfbefdcc26db2f52f29870d06c9a300f2df0a2c6 release31-maint +74289 e1ac54bb08ed29c293351ee565de0fe3e09841d7 py3k +74290 08eca6e8b0befbb1c8dd390034c40fbdf2563c45 release31-maint +74291 46e46a0e622e602f0e294ce5f56a55b42ba4c7b1 legacy-trunk +74292 002946b52fc3e7e76324066d6550fdeb404bd2f1 release26-maint +74293 d99cadf0e5f0c96147291203f90ea447c86b3bd7 py3k +74294 cfa7e943ffc3ff0194f479de30e0a71617dada63 release31-maint +74297 502ce28febaab74cd26455a9da255c6e1b442502 py3k +74298 fa6fd1ed737883a97c2b86e5f4c0ae34661b5a39 release31-maint +74299 dd4da75ebc9715db933923cf58794fce5efbee90 release26-maint +74300 271d382dcabdffc2eef24c3b5fc9fe5a980a55d7 legacy-trunk +74301 658de84381d7f37c4f2e7da56e1cd02c43c7fd6d release31-maint +74302 5345e3bc9e4162bff5dd8a52085d3ce11a407fa6 py3k +74303 a0e1d627b71835550db4228539f9620c0182f0e9 legacy-trunk +74304 34277da38e388b79d88417b1b897c1f5fbddf591 release26-maint +74305 cd9fa81ea48013899180c9ddab1cb6c8aaa4c326 py3k +74306 8848c49ed5f57747489a40e43f3e01247e4c2e26 release31-maint +74307 2fae809450cd11f710a6f7a5e1dd962a5ef25d4a legacy-trunk +74308 6a05ec493ce9e3f18c69edc2304c73525b965b5a release26-maint +74309 e8025b85ab1827c65034c9fcf58a4b74fbf698e5 py3k +74310 3ff1725f837eae166e0d9c47c3425a26dbe33058 release31-maint +74311 5de19c5011ca93674109366589f78ba79ead2410 py3k +74312 5d875fadf63f5358c73c69a9c53d6eb89263131d legacy-trunk +74313 b1775187aa30e7372e18374679ca40b8a916cad3 py3k +74314 08386c79e34f0fcdc27439cbe319d0c338b4c784 release26-maint +74315 eb22442194199925ee7f606e3994c83de98b56a1 release31-maint +74316 9a43fac8760c2f93f972c034c4e10d94186e2da3 py3k +74317 c8f4c132d6db04e9a43e8174c95c377de8919f57 tk_and_idle_maintenance +74318 642485dbffbaa1030f3b1998bc8c60f7c0671fbf tk_and_idle_maintenance +74319 bd1bccd8e344b9fdd43ce1366a562d08263bda73 tk_and_idle_maintenance +74320 ba802c0b538a796923766b3eaa893a6dc128864c tk_and_idle_maintenance +74321 fcea7ba4b034dcb2440814efb9b8d0bf8cb81be3 legacy-trunk +74322 75942bc74f71231332fce6b6f232e5244ef57000 tk_and_idle_maintenance +74323 0c4ee62df0e190be6e0f28ec18530a91d937159f legacy-trunk +74324 192e3444b888fa4531f4f089e931a1843e7cd99a tk_and_idle_maintenance +74325 e5733d58fdb15a7804ac69a4e119a9a1e43756a9 tk_and_idle_maintenance +74326 5a130b7585b1ce5c515251d386befe50701475bc legacy-trunk +74327 65d1682dcd5e0e58b0dab2c151f39a4ba4d343d7 release26-maint +74328 1be3d427aca24466a0bb10abcf52c59edac2ed45 legacy-trunk +74329 06ce9d8468c2f0669e9e6b0b184f851ac65de35c release26-maint +74330 7f3f6b55e47a28c7fce4df159f9856cb20e4a8a2 py3k +74331 9fdf182f19a913d139358b7b2bfcbf174e9bb6db release31-maint +74332 93a96d6dffb5e932dae0c5506b09d887093c564f legacy-trunk +74333 7b66cd02d60ba801a509878bfdc24b657e46164e legacy-trunk +74334 3159726d0e659cc685bcf8feaf92df4eb2b928f3 py3k +74335 4f204eb76e07a26a667f9302cd43f4be033040a5 py3k +74336 2f641e337c9f96a929d43b8559442fef1d4e8a23 legacy-trunk +74337 00fd6297ebe7b0df8e1a08b6fb908b672f52fc90 release26-maint +74338 f13602a84daaafd6f2c2180640758e3d51e555b4 py3k +74339 308879ec90234de35c5cbf01084a008498585101 release31-maint +74340 19e7c996e67aebe483fc4216e54598fa94a47237 py3k +74341 efa8811b250a3c659f5aa560d93c4a573a2f4820 release31-maint +74348 85c0d8d83cbffb62ab8386252029b6e9903452f9 tk_and_idle_maintenance +74349 b002e92a36f77468f8f668be10cf03e54a00eee8 tk_and_idle_maintenance +74350 412a85ce5844ad8d6e902b7c0a22b16180e6c50e tk_and_idle_maintenance +74351 94d8c341fb42f2240ec91260cea85a873a98d462 tk_and_idle_maintenance +74352 cd20a9ed84e5a3bf10dfb4682212c43087535fe7 tk_and_idle_maintenance +74353 11286b453fcffb3955734213ca418a6b3d9b0217 tk_and_idle_maintenance +74354 e4a6744ce4a9d7af957366070571851058060b27 tk_and_idle_maintenance +74355 ca6e90470d96fd3acc26f25ed185d0ac1334d1aa legacy-trunk +74356 361a03ad3c373bc5c757f6fec21f92f1ea5d2555 py3k +74357 bbea98148e126610451e13b544a64bb9443f43b3 py3k +74358 5c8b2238a2f524c8d74471515e1e2db38c0067d3 release31-maint +74360 e5aebd038f0c2ad25e5d6d1590d6da83860c332b tk_and_idle_maintenance +74361 2c64e9bfb1b6665e6bebf4ab426f41845e25cdd2 tk_and_idle_maintenance +74362 b013b3c8c9c7f5d9ee30f5b7ad1fb72f18adf73b tk_and_idle_maintenance +74363 c19e790d942f7909d66acba8e296067c32ce0090 tk_and_idle_maintenance +74364 0025e072fe97ad792b7e5dc1d71ca6e3d0bf7d01 tk_and_idle_maintenance +74365 123c95fe04b6083053d6186b4a3589b3e54e70ba legacy-trunk +74366 ef56535f53561808e53181e43d79c700de192fc2 py3k +74367 4a1ab2d703859a4b8c980825d45122390a5bd091 release31-maint +74368 984985ea24c4dce29496d4493880185e868ab592 py3k +74369 4a9b8591649fbd6e4441eedcb0b68c2b4ac46175 release31-maint +74370 e00b50a3d499d5e1d4a04d03b0c5239083dffa2f release31-maint +74371 7b495c8f2a240ea807504c58dcde1728834181e5 release31-maint +74372 1acd0277d22530e5c12b99925efd09a4cd7f28b6 release31-maint +74373 a492b2bc951b434e5759918931e8ec6787258080 release31-maint +74374 5095a5276d8c26670cb10e3657a84efe2024aa37 release31-maint +74375 5fbac09c0e91db2fab644c9e0eb857aadb83f5c3 release31-maint +74376 58c10cf046167e1001aa5e8e03cd08197d932ebc release31-maint +74377 dad0a54f5a583eb93d934a3d863ce0fd9cb4e40f release31-maint +74378 59b6b8557a3329f0c6220b5fe9e2ffc2be30adf1 release31-maint +74379 17e71485287f71f16b0e5245a65019aeacd445f9 release31-maint +74380 546aa134d7737a3071ec4aab56fb5139b26b523d release31-maint +74381 770a93c7abff77a7740473d8bb42e50feb3bbd30 release31-maint +74382 c4d6b77c3468154f6cf146901598cf37f173c282 release31-maint +74383 10940bcedc99e47855f3cb3e593e6941d9eb5a6a release31-maint +74384 0bb232078b8cb815f098390c1c117459d7826761 release31-maint +74385 d7f3cdf2b07f789a1aca67db653ba9ccf8546c00 release31-maint +74386 0f7a6eb18223174d646643b56b8b166829d91952 release31-maint +74387 7ee7fdcea0d716fa9abf3d18955c51ca814be015 release31-maint +74388 efe808a5f59e8897b55639b885edae89f99833ae release31-maint +74389 743fa282d74813849900448faf06ce7d3f7a245b release31-maint +74390 ce6642218ffec1a8cc6914c303e67d4749a79635 release31-maint +74391 34ea588ac3c5883ca613f463ff95ebf1fe88cf1a release31-maint +74392 94c28ba656be07d43e3a06d3c438e5038d5b6a74 release31-maint +74393 680ad8eed33b27d90a163422ec74330658d62138 release31-maint +74394 12fec73cb8e53d96091a3c34bdfb121afb48f171 release31-maint +74395 6e2ba2376833b6bf1c85bfa6d47cbaedd4384832 release31-maint +74396 7e51417046ab8710b800f2c1b7c9f3206ed93ff5 release31-maint +74397 ff6eea017a7f4641842b1ff289e5ee9326655ac0 release31-maint +74398 5414ff7389ee981ed72e80483165bb4e0c3fd5cc py3k +74399 87fdf2795a7cd4436843ae1dd4073264c03ab251 release31-maint +74400 9d40586a6afcde01efcfb6fa95634cc00daccef5 release31-maint +74401 f7243199d0b1ccb12deaf658d5de1b15cf379222 release31-maint +74402 4d38e51e7cdc9a97943f67853fc29e110d193b7d release31-maint +74403 0050b5711faa6b7b8ebaeeec7d761df5d3ca482d py3k +74404 e05322efca857a9f51c0a4c581e6a0c28fdb6338 legacy-trunk +74405 be34531c6d0b749f8599f85ed034de8ecd0a3294 py3k +74406 56e8c22df71f31669765d22c4392d0edec68e666 release31-maint +74407 91e40eb41956a045d1021271fe5cf24f5217d17f release31-maint +74408 a267c604465f374d63894b9578519364b422c58e release31-maint +74409 0148417e1301d893d8d4513e5170c2e3294d9dbd release31-maint +74410 be343af490999535522506ec3d43e42f9bde9613 release31-maint +74411 af110a48d1547faa6e4de250e5a6819da68704be legacy-trunk +74412 785ec34476bafa58566e776743e8a99ff14787ac py3k +74413 e3d51319b9d0ec837cc1376dc571980fcd74a680 release31-maint +74414 1224aa3fb6a0d467681acb0ab7dd70df73cd23b6 tk_and_idle_maintenance +74415 7c8f481160c22e0712b5eca31fe8f1980dc5b55d tk_and_idle_maintenance +74417 f2a12f5259e7edd223c750e05ef56162d6a5345e release31-maint +74418 f8db493dd84fb830d9acb40cb344ae60ff29e3b9 release31-maint +74420 faf8a100990d66cd5101d487bbf9ae807d02e23b tk_and_idle_maintenance +74421 3a35e33b071bd4ed276a1a0d9d005602f3a2b41d tk_and_idle_maintenance +74422 9bc9588eb64c19106823afa5f7f2669abcac5b8b tk_and_idle_maintenance +74423 381c6f9b74aeae6cc3fa5dfaa9b68c093cee45f0 release31-maint +74424 49629103758209662eb3963784c1cc0455ef8184 tk_and_idle_maintenance +74425 fb5857f903fe9375abda33ac054779d1ca83ee4c release31-maint +74426 fbf8b791ce811b4903c420b55f88cd5094262f82 legacy-trunk +74427 35efb1054ec6ceca72017a587263cb6a9257340b release31-maint +74428 a1ad192f8df56437390c2ad88cd132d960b0620d release31-maint +74429 97522e27b05d0c8238dd74f557f94c35a6b26cd5 legacy-trunk +74430 9a6beb1a9397573ddf9d8d98bd164ac5cc248861 tk_and_idle_maintenance +74431 eeafd8716410a6c4dc3b798a33e3d574a367e045 tk_and_idle_maintenance +74432 6ac1478d9b0e66198f9fc6797520b9af95592fdb release26-maint +74433 5152b536612e4878fd00d5767a5a721a4778c317 tk_and_idle_maintenance +74434 01db410f2f207ff005e59a7b93d3bb10238d1a7f tk_and_idle_maintenance +74435 89927f5e83d6f79451269256a35c5d19c2978ca9 py3k +74436 d5a62dd90789887803b950170cdd367846865c2f release31-maint +74437 a5e6f3ff2e2f64799f8c06c0db8f17e27fb49d00 tk_and_idle_maintenance +74438 49a428669788d678d526c667f6ff39a66616b662 tk_and_idle_maintenance +74439 42759a6ee98ac5d36ac206d108c5103293d38af7 tk_and_idle_maintenance +74440 1fc89014bd83db08b5e5a9be8d7085cbb1b001c9 tk_and_idle_maintenance +74441 fe28645a61226f805521837f5824b8cf2d746e67 tk_and_idle_maintenance +74442 beb12bb7791bf77933a277f274de747893d96e59 release26-maint +74443 1fb7e2f7f0bb4e24cbea8a3d6375307be96685ad py3k +74444 5ea3d467564a52a1e9183b6ecdb28b6c502bd006 release31-maint +74445 51e5a414b3c247f2f75a5380da1fbc8902a15cc5 legacy-trunk +74446 a0f80dc09dfe2289f8c452163d67af28a2d7917e legacy-trunk +74447 c6d32766e94c80b46a2c683d66f2664df7f16c89 legacy-trunk +74448 b7a571d4aaa7e1f4a4bb6f7a507828dafa7993f1 legacy-trunk +74449 ae817fa4e60566eacb42867f942f9bbce2713a1e legacy-trunk +74450 e4a83e91521a369dc8d82763b35b4888c1380017 py3k +74451 d724ca8c582347b3a10407fd46c52ef2b7ddb314 tk_and_idle_maintenance +74452 41b01bb906e3969cdfaac6520ea58a4aed4bdef8 tk_and_idle_maintenance +74453 d7140bbc6473be49b7b629816e6f99a67823a549 tk_and_idle_maintenance +74454 d44e3aa42a5bc78172637fac68560b46830895e0 tk_and_idle_maintenance +74455 002087187b2ff670fc07136760ab0d937a4d4834 tk_and_idle_maintenance +74456 f91c1d288343489566daa7d7ade5d2d26cee682b release26-maint +74457 113c0b86fd749a7fcbf86ac99c60618c64fe9f4e legacy-trunk +74458 bc1c403054e1c77fa720ea7896cd97a3784572f9 release26-maint +74459 30963cfb69fd820bb80d6d3e5f8b444d27852ee9 py3k +74460 4c51c4bffb21a70f91e7f910e319db0b7368afa0 release31-maint +74461 643c6c7684b165c8f26898a0b22411da38dc1326 py3k +74462 2277ebceda43a6c185a3eda981017fb8fe705449 release26-maint +74463 1377a8c267922576411e3eb9ea33d9693d49511e legacy-trunk +74464 1e2877026435ebdb3aec2dcbafcfd9c7f6ef0243 legacy-trunk +74465 00530287bdb51131e9566e6e60d9deaca2b5bd78 legacy-trunk +74466 384334d8b9875be6281290c94b25fd3b019e10f2 py3k +74467 0fcf40a140e5edbc0976556d320b84f6c59726bc legacy-trunk +74468 19fc0d05fa7a49bd5d3dee987c40fc2ada7ae2df py3k +74469 fb7d5ee908a502a9650bbfd7e4efcedd9316d336 py3k +74470 6ac2a64e826be4544862f2391bf3194dec6ee0a0 release31-maint +74471 1227e7cc1d9b18cde8822b4255fe25781fc45a08 legacy-trunk +74472 c630bf05ce38dfe2e72090564a4b65334428c69c legacy-trunk +74473 bec3405e073f342f98812bf0763d80517e7dfca5 py3k +74474 6afa5bbdc3754b6465f84827e8f39f4d018b5cd4 py3k +74475 d7e1d3978dd60053be8f07532506950bfef29d9e legacy-trunk +74476 e52009e22017d51a40cde8eb80185607c37a7838 py3k +74477 6da6edfa6296c2bd0a9fce2375f2044abf5ecbf9 legacy-trunk +74478 495eeff3b9ff0dbbf9c4f409c18a539cc3f187f9 py3k +74479 746f10e0624e9f3e47929891ebd8659c4834853e legacy-trunk +74480 8b9c0f573ab29c41c6c5fdcca82a1fe0ff5355af release31-maint +74481 5ef6bc00520ab018d87aa97b3e703701342bf819 release31-maint +74482 da21b480ff0523556bc78e99ef792131de575161 py3k +74483 deffe6aa43d114e8bf5ee1390f8d8e921d34c822 tk_and_idle_maintenance +74484 34c6f6d26976d3a69fe46fba9ce1e74d34045cd3 tk_and_idle_maintenance +74485 428632a590adace3b87a470aeb5e3361b86cea6b tk_and_idle_maintenance +74486 7875deac410c9c3bf4041de7d9dfcbaf87ed04a6 tk_and_idle_maintenance +74487 f6e17aeb92abc88e0d54bce38d16c8650b9d9305 tk_and_idle_maintenance +74488 42b256794e6c51219bffdf1f104b20ddadbce59d legacy-trunk +74489 4d08818b6c4a1d8873b0d83ad6bcb3f24a151e59 py3k +74490 217bcb8603aad15c937548f5f78d41cb615e271b legacy-trunk +74491 0b07c03a5f3c36844015075041f0a0b4d10a1adc tk_and_idle_maintenance +74492 4eac132fac94b84f2bb41337aba2fb9bef47b4e5 legacy-trunk +74493 384f965e12cdf1d889aaf0e9824207b509a338a8 legacy-trunk +74494 6b088dcf25f8c89baa88d9016b8de8efd5195439 py3k +74495 2aaf7d141bd0fed96f9a27bd9784b69870864631 legacy-trunk +74496 2821e5e76e8291c278fa8d9d05f9cd6de18fae90 py3k +74497 b563ab0171d9238b1dc8e5bd9538aa0325bcc92e release26-maint +74498 e3a0d4b0d7aa02092c37c29443754edb999a75e7 release26-maint +74499 c87aaccc70b61800027f29faef3ab8b905433902 release31-maint +74500 d428bc184e1fbdc09ac848ac0279c0fd7742e014 release31-maint +74501 eb10099366ea5226040a640ad9a4aecbab4ee226 legacy-trunk +74502 24c953f3f8daf2c95947bb8037dbbb044ac30c23 release26-maint +74503 ae2f75aa3faa94441af92a68f9c362c6adc06cd8 legacy-trunk +74504 951663c030b48c8cabe275cbff0919b6358a1831 py3k +74505 3bf03ad4a6a06f85f466752396d70fdc6a1aee9a release26-maint +74506 d8740646a031cccdac6b34dc37903362f8207226 release31-maint +74507 73f432cd82de8c70e8e9783643a387342a1cd7d6 legacy-trunk +74508 ad930067c124fbcccc92f43c455ac13cfe8ab760 legacy-trunk +74509 37f2f367ad8bbc575c556670fb271d328e434e80 legacy-trunk +74510 cd181a6f4dd737511a2808196dcacf4ae4361b09 legacy-trunk +74511 f8012fdda6d3de0e5113299cd9afddf24deccd69 legacy-trunk +74512 f7466ac1dd725f7f85b3fb483be3c110a194376b py3k +74513 2cfbde8cbf88618735071a547ed6bfc5bd04ce1e legacy-trunk +74514 031e43164b768d19e75684f4e28ce9bc9cb358fa release26-maint +74515 e01a1990717111875c46319036077903318fbd48 release30-maint +74516 f5e7011fbff1205f9b45eb87556871713e81e650 release31-maint +74517 650df0ec0c12f6f18b5a20b9f3a9b96b1c98749e legacy-trunk +74518 3abbd7209be85005dbc3cea472125ce804d5ee9e py3k +74519 cd0c8ac9cb494317f620bc17ec6a4e9d3ff0d6c9 legacy-trunk +74521 fefd9eb7a822dcfe28bc6165dbb9a0a8eef48ebe py3k +74522 c7cd27f665d1ddc772dc0d43b18aceb8f0a18417 legacy-trunk +74523 e471d6d32724aa6e23051ff9561630cb28ca4aa4 legacy-trunk +74524 e21c4c527e661ea1a94b030ee83b2f056c7095de legacy-trunk +74526 974553fb59dcb33cb5280f64fc8af6220f569298 legacy-trunk +74527 02d4089f31ddccc77e1b9e25040be4482bb6da80 release26-maint +74528 38b97c3e98bdaa56aa87bd50d175ecc8f4512605 py3k +74529 86ef74c4ad977b330522673fbb3a894b5e4146df py3k +74530 0e55fccb19ec55d303df42df4f46fbb01ab86336 release31-maint +74531 4871f81d7132004c3f8d338a1ca0be3d0c858156 legacy-trunk +74532 594e197ed63d52efc99ad67ccbc8a8de6c4e7b8d py3k +74533 f3408760d46e5c5aa692e8cfd93ea0f946373c1d legacy-trunk +74534 bc167092c98cb8ec115988ec0aab7b08b12f3f6c release26-maint +74535 13f19fb93f8ecd7abce2260c01fa56537bd2830d py3k +74536 a88941e2bf273d29cf844a0d2962cdabf1f9b8c6 release31-maint +74537 1545cf7372af9681753920d1ac52dfe78f79fdfc legacy-trunk +74538 5d7f60bffe8fc5c647b04ee54ebdcfed4ad3902b release26-maint +74539 c4d581e709ca54af35126ba0a3e7ea11d9334d79 release26-maint +74540 cfa7ae717a90b6c9f1f5eaa9b2b567ce35c3675e tk_and_idle_maintenance +74541 c403b66d92b0fa23ba92939c64199a7724cbb822 tk_and_idle_maintenance +74542 9a0969b6f8e5e6326d2b5dd343cb65d5dc6d273a legacy-trunk +74543 c4d8cbafd8c89061fb924cf8cac799e1a507dbe6 legacy-trunk +74544 675a3c1824f4059108a104e95ffc601e2d16d6cd legacy-trunk +74545 0918312a2d7b9ab182a1b445b9953e8c493052b8 legacy-trunk +74546 ffcfc990e4ca19ca787d4e46442ab6dc53bc6f9c legacy-trunk +74547 92e3858cca70ae6ca4a657a042eacc5a4e65b4d2 legacy-trunk +74548 ec8d25e0500a88c782d6e004a20ff61d05a8d5a0 legacy-trunk +74549 db86d3cc1e6b915f28d7a151906162b49d91f0c3 legacy-trunk +74550 b60134ee5eb45c3fbe65123a42a2d6e0f3ed0200 legacy-trunk +74551 f75f279bcd34049d42c511432251ad934485180c py3k +74552 d91aff206dfde030be96a5cad7475fd15d05921d release31-maint +74553 d03e528ef946aa7c4e9347a2fa36cd09cb1c1c45 legacy-trunk +74554 48df407b606827705db2c86e170a072014b69f62 legacy-trunk +74555 14c5fab3ecbf466c4e64c1d8e96c303f2d90e205 legacy-trunk +74556 80058dfe469d9c77ebb2a03aa55e5d0d167c2b42 legacy-trunk +74558 ae00a3a804739338869521ccb14e9c94a0d7d98c legacy-trunk +74559 0d9b556a4378069b824c4fd84a45b01d7336eb24 py3k +74560 735322aa71d1ae6e251a09acbc6192138b0ab6d6 py3k +74561 b65ebed06eb0459da174d572f310d74baeada711 py3k +74562 b89f582ee78a8b80a4565d52f23efa167c991baf py3k +74563 e21303cac1205c4593d269e82052995ff7dd48b0 py3k +74564 f29b59a492461e31e1c73402f68514312321aa30 legacy-trunk +74565 1f1b4c03e892aa04588db5ab905f3b92b675246e release26-maint +74566 d21077e639fdd1bd4eaf05ba03a5399a718ccba2 py3k +74567 094a6f15864174201aaa737844c19bb8faf297d2 release31-maint +74569 b6bf2a5f49dddd0b77ef9d3d031026d23cfe7a5a legacy-trunk +74570 02950d580808ba1eec556e503410269d4d0931e4 legacy-trunk +74571 5f9e13066d36674a2362628618b30130772961df legacy-trunk +74572 33ce4c5bc2e560ccba446e2f5a1ae84af2573121 release26-maint +74573 9a78e3d906171c7218a1a16df972a30536b83fb3 py3k +74574 474a8e06e9661a02a52d9b7804844c710dc0e347 release31-maint +74575 606e97caeb7736f5baaedcf5df1face12732d985 legacy-trunk +74576 bfb2337451e9ac5bed1d76bb678f963611a52945 release26-maint +74577 6deca73bd512dfcc38c145b461a639cdb3a9316e py3k +74578 048a91381bd80ae1c0c9a1dffd1323991ce7232f legacy-trunk +74579 7de207dd473992649146257746811b17c7227f81 release26-maint +74580 a4ebab845f7241ef423c7434526455721a09a5e8 py3k +74581 d4037fb856d2108aae89f9f402f861e43dca8fed legacy-trunk +74582 1b91278717232058950a7faaa1b18670410d78f8 py3k +74583 e9baa2de8bb4ecdbb0055c3e503d9d1b8be217fe release31-maint +74584 e4c2cbd3bf93833cf07cbe119ec226d3df6d7493 py3k +74585 68c92ed8d9604d30a532071caf178f2f86de37c9 py3k +74586 d8280364c5814f8415e5a34a5dac7bb70e0e738e release31-maint +74587 1f772f8fec922bf547c6b9df5f9e3649d3090756 py3k +74588 6fa8a8118df0c3fdbcdd7f4b6b1c0200919e597f legacy-trunk +74589 aedc4ec2fe240077771b11a1fca7a320ccbcffb0 py3k +74590 b4fc8cbfe1ee91f0c4ef885726b7a1b864990dae legacy-trunk +74591 08090b5e96c2fce7720e763de62438a5abb1e1d6 py3k +74592 69616e228728e3d9ca5ea72867cb5731eff6cf38 py3k +74593 58e63197d4eab3118dfb89d3d5168cb502784229 py3k +74594 368bfc18a7a139ab95d66ae2fd05c5fba554ae8c py3k +74595 bf500d8857966aaf587b3a2c53d67bcca7846be9 py3k +74596 560008d098ddc719e20331c4ed63a2941421b727 py3k +74597 86fa43c6d57c661fb8c40ea5649fcab67c437781 py3k +74598 801aa52b12170598f788fc4ec300824fab511cb3 py3k +74599 99dc22ef1df04880b8bff3aa56914057b7f3065b py3k +74600 39bcbf316dba67b79007f3d4271da147c68f3a74 release26-maint +74601 94249d1425a3fdb674ca1dc3edc256370f9c2224 py3k +74602 027007b43f16560df2b84311da793b0c77459a45 py3k +74603 78b86f8bf5c459c175deaf85fc4e63d3ffa2a900 legacy-trunk +74604 43a666768f474b561fc64bfaf72ebcef336859b0 legacy-trunk +74605 35a1623c10239088b026c9516199a04bd2026305 py3k +74606 e81453bb07893f7e64a64964f1852503bf3a09f3 release31-maint +74607 05ad9ec6308774936399688dfa1223d161875d63 release26-maint +74608 acf215bbe702e05570d4cc2cc3d4878de3f77209 legacy-trunk +74609 11b45535a1b3e619ce6db7faaf2698d9f23b85d2 py3k +74611 849928d75d6e3988e1c85c9ab6b467749ce4dd36 py3k +74613 07c23806ccc6c2edbe06cb4293f7f1e9556c87ae py3k +74614 ba5b2683c0640c60132b589f4e150dd87409ac3f legacy-trunk +74615 e5b463a61ee269ea8cf0943647220d936a97610f py3k +74616 ed7dbc922d05c9f45e17f709787831a673837b79 legacy-trunk +74617 e157ceb54a438b116598e94fda414acbcd28a43b legacy-trunk +74618 b74a7a3e41c572df398072f5ff49e581c6127811 legacy-trunk +74619 d512cbb85ae001d396c8d9dd4651bac7663728ec py3k +74620 818ba89852810435e168359241d21fbce331e025 py3k +74621 66f48bc948148751baa78355fa7620038e2a1838 legacy-trunk +74622 ac755c566136d513076132fcb308ade5a698c56b py3k +74623 0088844d0109a4f7b73f7e729bac94b7bdefccca py3k +74624 afbb2b2ff6f7810d95ea7448adf12d78a599158a release31-maint +74625 5d2b66e01968a3faae3f1a245b7437f20fc18c7a legacy-trunk +74627 fd8a589008ac20e451875e158e998873358464d5 py3k +74628 a47aa110fcacf84aed44d289ff2265a37996c437 py3k +74629 6b82ba304a7ede876a0b77ea7fec3e20da1b3ac5 py3k +74630 106ee4eb59705dceff3fb4bc4e22e95abeaa8992 py3k +74631 9ffa8f8877509487ee258a2dccde2ef94bf4d97a legacy-trunk +74632 e0cef02330203e46b21819605fd61b463abdb0f2 legacy-trunk +74633 bb90051b434c03ee733bfbbb96df08f685a5a9ea legacy-trunk +74634 6371e2d0dea00916f8af85da1d674eb829f208ce py3k +74635 d55c9a063258ae793b64678371d24445ee2a31df legacy-trunk +74636 eb673a401b9d550861b502af42a91c60456ffb52 legacy-trunk +74637 95e5738cb30981818a5bc83fbde7c548a8c047d6 legacy-trunk +74638 76aebc5ea45cbad3615df5fd00a1fdd443eac7f3 py3k +74639 3b9e75311e430a366f99b80f7b9f9bd2d96bd438 py3k +74640 ce7e0038996f4b4f839d9c5b49080f6b9d855cbf legacy-trunk +74641 1f03f2920c6171e875589155e4c11a2ae9b79a4f py3k +74642 77ab93ca065e367af1f149195e7c96806941da8f release31-maint +74643 7d39e213b756367f8a1c82ad2770c370f7e563b3 legacy-trunk +74644 61dbc1d1b804d6284f6fb423e11c257f03170d05 legacy-trunk +74645 a07f30d7d0f1cef085513aa4c21862d9f387d022 py3k +74646 25b13f782ffe848a1d3e0213594f397c12237499 py3k +74647 c51721d64451a492b2fb8cd894d6571ffb8abd1a legacy-trunk +74648 63b6a91ad9d97dc888ed90dae64f650a3949d5d5 py3k +74649 17e83f0169e81ff1dae3089ac1ceeef9b09adc31 py3k +74650 6758bf2002dab7c167b4a7792b8b0d9917cc390d legacy-trunk +74651 8a8e3c1668a0997441e31adc71cc7fd38873d981 py3k +74652 1501a1360ce4e48575be47c4f05f7fadfe1be008 legacy-trunk +74653 20bfc1d35989c0450975669d6f18c300f1946c17 legacy-trunk +74654 c2165be00171a683943b5a4eafff5307c1e8af68 py3k +74655 77db25c7526a129e4c2ce04970d9e6ae6bc558a8 legacy-trunk +74656 e8441850790f86dd812f4a320d74ca61db9c5b8d legacy-trunk +74657 75837cfe9ffbf9afadce6965394043f6e31527ea release26-maint +74658 d567d963cb3704a8c38d789f15303365d77a02a0 py3k +74659 0f6dc2e6f091e412271d594052e2706420ed32b5 py3k +74660 3b0b37014aaeb179c71b6e7bcbfe1b135686b33c release26-maint +74661 4ddc0598df79f6305a725a303a98a42e4f3c4d79 py3k +74662 266d7dc3d655103ca4a6b6f04075ba8ad9416fe1 release31-maint +74663 ffbb8fff3520ef8a0b1f13813e450b1327ca7161 release31-maint +74664 6f7e7192febb0fd19a81621e38d4e017ae8c8c4a py3k +74665 783705b042580e3100588df5e3bebb196d1a3c69 release31-maint +74666 d1911449228600ba6f9dc38b0c2825aaa117b502 legacy-trunk +74667 1d43812aadb61887170120c0eb6859c8f6c2b4de legacy-trunk +74668 3c7c9b81e36144451dae4742cf7a7b7d4bb1737c release26-maint +74669 623147a2b5b1ab4377cc17ce3b184dcbc1d2c0b7 py3k +74670 dc62dd3326ed0be23f206790a64cdc323f9d5297 release31-maint +74671 906490ab6affb4eeddc39c952d533f73f7d884ee legacy-trunk +74672 34496bed9365f5dd5bb9799ecd09072d93355eb5 legacy-trunk +74673 5d9761e4455587f5a731811a26f88a8fd37e81b6 legacy-trunk +74674 d627b0ff1d17e5ee4b867aa66734b92996e53962 release26-maint +74675 197c2ae51cc612a956d3a4ced7fed5450cc22768 py3k +74676 1f4f342bfe2e81de78a939d3347f980ee478ab2c release31-maint +74677 20b9af1f00c8753ca88ebb72b032b4c28ce9dad1 legacy-trunk +74678 95900dbd5dd33f521261a55da6ec5c7da19721b7 release26-maint +74679 a152ccca538962eee48255f577bbc2f49136af14 py3k +74680 4f09880bebbba6cb3d2312a371e8ac5188ae8d1d release31-maint +74681 899bbcbaf9a6ea8515c8bfb12a01d6089cdf9930 release26-maint +74682 db15c7af014fa08725563639fff2a1814f7ab11e py3k +74683 0c494e5787df6bd0d0971535d6b2f4dfccec5cd1 release31-maint +74684 34a7a91583723b58f9392230ad6fc169574beb46 legacy-trunk +74685 7e769fdde439ffc805d413cecba59e8bebdf2ce6 release26-maint +74686 9e7b7832fd451278a7efc972288b1ec5121ab302 release26-maint +74687 92f16c87889da0f42de3eaba66fbf3d0fe21cc79 py3k +74688 6572d2efc8b29aaaf280d84cd35ac27de440a604 release31-maint +74689 c66455a416ec7bfd9340102c8171ff17ffbbe8fd legacy-trunk +74690 53c4efd170c0517f161a5b078386f79303126bef release26-maint +74691 7500096bf1a07eb064c588d87c24cfb0ff569844 py3k +74692 86901cae6b6483f9a2d56ea3ee3406a75b327945 release31-maint +74693 d30a3d577164ebcda82ad2baf8693050088a5f6d legacy-trunk +74694 a70e72efc2ad69cdb98a36fdce2338037101136a release26-maint +74695 5e1108545e7874a49c17743de3da474bd2c5f88c tk_and_idle_maintenance +74696 ed2c5e007411d096d93834a1eaedc6116bb2ae25 py3k +74697 4803e76f20c56fe9e99c9b5bb42988ae55270bff release31-maint +74698 790c019f640388730309082bff55dc7735d2af49 tk_and_idle_maintenance +74699 dc7217cb73b7b3bf270cff3a80cc44bff7f7b7ba legacy-trunk +74701 f64570d0f71d9dbd7005064a3464478564e0c65f legacy-trunk +74702 37f5d1785bb3fe8c273965efb303c8b7626bcfc9 legacy-trunk +74703 300da3ccf9fc3f714f1d59815afb641b1864329a py3k +74704 0f7333aca45532310c6f57834230d043eda2ced7 legacy-trunk +74705 e895ef82c086ccb83bd165434bdce4c906025080 release26-maint +74706 8a8d467c89ccea04b17d827ed88da268d938b4f1 py3k +74707 0dd0b0de5e31f01b647c97242a99299bf3f2e17a release31-maint +74708 d41024593931f69aa767348cbb54e9ac5e45b7ac legacy-trunk +74709 5f5ea747e31a1afd9deeb5f3d4a6bcda6c24f6dd py3k +74710 ceb75819537716c5aa7e53ec97a48d04d7ef3ac3 release31-maint +74711 66a2de0d428e65db4e6578d0844f0149aa4b8e8f release26-maint +74712 6fe9dfb139c31c754280a130110fc4fc63c13fd5 release26-maint +74713 1d1d2db456d86e267c0540e2dd8f6d52aa08aa2b py3k +74714 de627cfeed1466c7c921eb24c2647d978c96a9e3 release31-maint +74715 fd34ffc8f8042f3e76b8d291804308dff52b827c legacy-trunk +74717 91dc6322722df8b2ac8cc2d54815c90f9d8a799e release26-maint +74718 fc9a00799795c4d043bafdd8300351281fb30d46 release26-maint +74719 e2fa060508da053c5743e2d51772c39fa5690227 release31-maint +74720 dd6a9bc399463f062edc807119ef004dd4de3441 release31-maint +74721 e0409f03822fb30f7dfa859834994a1928107db0 legacy-trunk +74723 40fd8fd96d96cda1ce7c8265d07596ff30886465 legacy-trunk +74724 32e85d50c52dbcb43a971bfdd87ba3cf5935536b release26-maint +74725 0bc759f6ded5c8fbeaa4e9009a1eb213ffb8d8b5 py3k +74726 e0178b8aeaf0798fb6c4364babf5f33c34b8aa16 release31-maint +74727 931af6611ae9ce454e71c5fe2bf5ac6d3015e410 legacy-trunk +74728 67de42ca0a26a7041bf426fada766d6719fb9df9 legacy-trunk +74729 4b639f5b7d3ebee0a0aee41ac82ddf45c0d6074a release26-maint +74730 6fa946d075f4ac3470987bd0118b27bc6a30282c py3k +74731 d5fc51891997daef98c3050ad65e5f33512b5ed2 release31-maint +74732 e1efca61ee4ed9f935692156dae34d3bd57af746 release26-maint +74733 5dec8a12e455ae98e702a1d9139d372f7a13266f legacy-trunk +74734 8f6cf39c96dd623603010d385dc363568847d138 legacy-trunk +74735 00d6cb625667f3714b4adb74aa8bfe2b912c0858 release26-maint +74737 ab7fd4bc3828f8ce076958713982aaec8b66d7e5 legacy-trunk +74738 25a617ca83e2392547407494363914b164d8420e py3k +74739 5d15296a2a4e1c75bd5ec7c9cfd5468ac06b1e8c legacy-trunk +74740 835fc8577dc790e2ee45ec5298a33f2e8c194eb2 py3k +74741 7f2a8794399a1e60c409f3745e45c5bc2f3a3994 py3k +74742 0f6db002b3a1fec998932d06eda576f14e6c7d2d release31-maint +74743 9580bbbb552e13a0110d2c8b6d1b52e51db61fa7 py3k +74744 6affd6dda229d146c8623871ad4f498cc92d4569 py3k +74745 7e6f614a6ad18c2cf2aca1bd95a74ca16772e6b3 py3k +74746 d4e3af343e320a929999f136dfee3698191ab959 py3k +74747 3fb1c1fbe26caef4d4d544d423ac9633703aad54 release31-maint +74748 6225021bdc36b1809c4a8e42f0513d373a921787 py3k +74749 92daa9c41d561dd01dde6466c025dcfda85db8aa py3k +74750 ecd22850d201ca4bf277412d67d1159cc92a0117 legacy-trunk +74751 51baad28fe7a141ed4d8014fab12a391d9cccd35 py3k +74752 6bf2539d3baa421e19b68401e6dc662b470d2d42 release26-maint +74753 d9a66905f03e95c20882b7ec4f8a211554d4ea10 release31-maint +74754 39be3ef82d2336e3273f0d52d063c30f1d775847 legacy-trunk +74755 5111d329974160c9dc35db5adba2de06b4419879 py3k +74756 3df9914efc84e3938c284c1aaac8dc935082ac56 release31-maint +74757 2c9ec4e7d8c210b77276a58a6a8fb83634f0c2ea legacy-trunk +74758 fad0251324d7aa147308de4f481385dc05e33e4c release26-maint +74759 fff59b0add98a561574e7640f33107d81ef331dd py3k +74760 0781acfdc945d91ebcd3a0927d7c84836364954f py3k +74761 8bc4c8cac7d722fbb6dd1d99ee5c339e42354974 release31-maint +74762 7d9cc4bcd7760e541fe4bcc8409b91fa682ad91f py3k +74763 d0bdb1930d49e4e2a938395093ea804f80b02c72 py3k +74764 dd02791666e05b804d47fca417a068d148568e88 py3k +74765 22930af4ddf734fc9ba5bef813a6457acb5aecd1 py3k +74766 9119467aa84e828e34976baa71cdde5547390f4f release31-maint +74767 f3a30083fd964fc2527ad4c0ed51593c2cca5c6f release31-maint +74768 3c57d26b40c467ba66dae6207011920ace2b784b release31-maint +74769 6594066e504169418375dd9082117c459d6c8472 legacy-trunk +74770 f44f46fe8da52e380cb109a83fc5cdecc57a7081 release26-maint +74771 d7ae8b0739e47ae64d875217338b1d8d3aa0aef5 py3k +74772 316921cc904a5db2e559a7364d7d30d543668329 release31-maint +74773 0c0a6cfd4be220c8508ad19c9ec4cb6ec8db0b83 legacy-trunk +74774 aaa6b724a4fce4612ec828b3d4d0599e627ee23b release26-maint +74775 43da53e502e15dc44ada3e3df87b864a3d4353c8 py3k +74776 8393a90216b386c43df42210ce5b71cdad9094d7 release31-maint +74777 bb5fc15b034ce3a941ba9c8f65d72868a207ad03 release31-maint +74778 1a39a4dd277c49747b0004cdb4102fdf50dde713 release26-maint +74779 9ace86299bb8bf4be15972b45f41d93eabaf9239 legacy-trunk +74780 e8d681c448d72dda64a2f798d22efe4d81a4beaf legacy-trunk +74781 aeff3319c418b407bd6c974d2a306aafc941271e legacy-trunk +74782 715e697253f24ac5bb6e589b8cef6486e76275ed legacy-trunk +74783 9f1d6d1dbb0080c6e55c734d8a840cbef9cdcccb legacy-trunk +74784 1a1af9fbd831799b16367ae0e4e0b16772041af6 legacy-trunk +74785 2513aff445c2c9ec1563480fd1db71a4818e6aa4 legacy-trunk +74786 7643e273043764e6e0645043a1fa6de9659c977d legacy-trunk +74787 9584b8e22f76fba82cf1ef831040a6254c65cce7 legacy-trunk +74788 6d45fbc85bdf3fdb420de55a013d58ba75c040fb py3k +74789 9b2a42fbd04b42daea5abdbc09fa04d28a5b625e release31-maint +74790 c04a7c3655fc0db7ce489a6bc7a32751690bad8c release26-maint +74791 6855951aff199e28d85005a6bb80ff072749f3ab legacy-trunk +74792 cf4e0815846c584c909a64ffff07f46f745ca37a py3k +74793 3aff597910c41b9f2af0bea5820f01a84e416059 legacy-trunk +74794 8c7771dce0474a87f2e6b7a452152ca522c2d578 py3k +74795 d9b5b7dd82a2224bdb52caaa4c38a9170c910569 legacy-trunk +74796 1f1f6bfd4dfb04447bfa9e4c5512d344ddbb7b2e release31-maint +74797 4ab3b5eae897982284eeb8f2764aa9bfd73710e7 release26-maint +74798 9ad6d72bcda5b547bfb52b5fe11c875acf1e8e4e legacy-trunk +74799 21e907a3836f3c9e374e1c3ab14f2aafa755221a legacy-trunk +74800 7847b409b79c1cb745c2bc37a484426e7cc86b12 release26-maint +74801 4cccf3ce15a09c627da6d43a50791b5ef492d390 release26-maint +74802 da853e983f0824f3fb5c7c96f1e3b013a3b9923e py3k +74803 2d575f16bcecd9f6e083784b337bc23ad2de3715 release31-maint +74804 850dafd4a2453d524610183177e96bfbd7eb43bb py3k +74805 4e7f6bc810b360d9e857483e843cc2da34bc8e87 release31-maint +74806 bd420388e6b1da18985a87436068f38b2dda6b70 legacy-trunk +74807 a6df074d2e093fbb0b2a5b23b8b56cfa26bbee85 release26-maint +74808 9462404df4e10cfda1ebfdfc6afac6804e437779 py3k +74809 ab4a87fef1ae6e4a84e7d804ccf91d2ccc3dcba9 release31-maint +74810 a33f96b43f24acb2163c6c5cf635a5b74295d427 py3k +74811 4102b5f2a2f1e3ce64fd0bc657f807bbfbc0abfe legacy-trunk +74812 8519e28b284f794ab6f6206db7aac11d7d36c410 legacy-trunk +74813 a2bab2d23746b552c9f8f8bc2ce7508a2572a151 py3k +74814 560c054a01aa2ffe12ffcfbb7a33dd073f474813 release31-maint +74815 7d4c3c083f36197f2f38de3461eda58baeca0062 py3k +74816 885da146fea5a3dfa35d9b852eb4697695fb7c30 release31-maint +74817 507ba97a2eeef339455cbec697c806b96b7b8e72 legacy-trunk +74818 bb6ade51a0b6238d135c4a60bb62bb24b1512ad5 legacy-trunk +74819 2ebe8c81aff06928c7bea3847a3a74d3c0f992ee legacy-trunk +74820 c2de32866d0e3d640abe92b347ca85411391d47c legacy-trunk +74821 c017a450f4a5768fb50631a51941033c2442f15d py3k +74822 d4c27da46dca0f799ba45e4c0e8fb4f5616cff1c legacy-trunk +74823 742ce58a3171bc12ee4603506ae9edc16e9d4739 legacy-trunk +74824 3e193d0b1aba89d4bdaad4c3620f872456f87973 legacy-trunk +74825 3385e6182112949a72d4b495abb07b70fba4d04e legacy-trunk +74826 4e61d7bd1b3646ba3fa2909e4c162e19339ddc6f py3k +74827 96b645752c33475b3966dc52512bedf832b6a60e release26-maint +74828 26df0b856bcbc4803f6a057d318d24af450737c6 py3k +74829 4cbdab601b87ff38b4efd2bc38e602440d4ed843 py3k +74830 4b64db36f09b8fddc26266f07a7548976749c8c0 py3k +74831 31c236c53b02457e4f9ca17fb8dedd4d5bb39b75 py3k +74832 f1391442bd0b5d88337a0d5fd01650b2fd07bdb0 legacy-trunk +74833 9b003bbca5dbf5c82c555ad5b2e99c206f52c91a py3k +74834 d8072206fdc61ea6929b6530f991e35e301ebe06 py3k +74835 b6e39eea1bbf6ef3fb3155cf0a4d513cd7c7e9a0 py3k +74836 fa91270b6087b0fdf393cc085be8dc8e6099b70f release31-maint +74837 be4d42009f7e5bcb7beeeb34023e66c033054880 release31-maint +74838 32448f8a6c636f39a617985d137a56adb9ac3478 legacy-trunk +74839 7a3ed1b434109753a57de82d7a9c33b27e694d78 legacy-trunk +74840 334c60f512594c8376fc30f529e0397a1880e6d2 py3k +74841 b0d03fa073ec5d167a01647fff36253962d1784f legacy-trunk +74842 1ad9f2bda20a26c743261e3aa02eeeab07583b75 release26-maint +74843 3acd31eadbb8807045cda096b7f414164c6a3d11 legacy-trunk +74844 661c8a93892ff7c10dde01f0d8a5eb61eccfec40 release26-maint +74845 0f09d38f852e847a86a57bd1c2ebf84299842633 legacy-trunk +74846 78ff9a74cb4e9b7daa16116ed0660661bc308ac0 py3k +74847 1b18967fbd40810691ea5828c8e017d19442ba04 release31-maint +74848 8ab304034021a5770f730f117e8f6e8575fa0ff5 release26-maint +74849 fab99e8d28c3275bed25300d6bbf9d3d8b4dc38d legacy-trunk +74850 ae1b1cf47c0ca1f335ec7ac3863ed0f09812ff69 release26-maint +74851 1e09dc68c8f3638bf6cbd831565ff20bad4d4ebc py3k +74852 2e9858c0d364d1ce4bdf0028ba4ea6861dc94fe1 release31-maint +74853 a2cbb9421a1143ac5af03278525d7d163a87cd52 legacy-trunk +74854 9069e52c0bedc25332f0229953c85c50ad363d12 release26-maint +74855 c8cb9ef0cd0a04d9bd00d010c6a94bf896281517 py3k +74856 46625bca0cfb56f49efecbdb89e9361a4413c85f py3k +74857 76e08b91d98e0adb74087c6f7e5da90e2fff18b4 release31-maint +74858 cdaeb251d488be3645143d476fe930a0033691e0 py3k +74859 173bed0e04c489652e572fa9e03ecdbed4b82647 release31-maint +74860 77b96a5424a2c652f75dfa3e37b67473b882d318 legacy-trunk +74861 7c4d52860131b6da9cbe49e1b1db98ff71ac0bce legacy-trunk +74862 9a10971403a5ad0d49c17fc7113f2495fc8c7cf8 legacy-trunk +74863 7f726115ba29a0e60461483028a255f12a068e08 legacy-trunk +74864 172b2d36da77cd28313682e6f2fd9d1ce84dfcda py3k +74865 42f88083ddbdf3e18f51b304f01be9368f388f69 legacy-trunk +74868 5fed5e8ea9cc333267fc7d6882bb475ed949f2a8 legacy-trunk +74869 38a52b67242926030d0bd4914387904d750755c2 legacy-trunk +74870 0ff37e200292c936bf6944a4ac9bcd05d94f3d58 release26-maint +74871 12f145d75513eb986aa78f04936137be7669d837 py3k +74872 a9809f3b164ffa6f0d8ef30fca618d20283c25b1 release31-maint +74873 8c3b2dda470360e52251d365fe174b630e8b9bf4 legacy-trunk +74874 dc922a89ccf10c38fd6da5a0dbad7b400294eb3e release26-maint +74875 0a580dc7af1376404553ff753f160a5a7765155e py3k +74876 6f4b852b82f17507c59aeaadd2997b56ce479f85 legacy-trunk +74877 9acb8eb72a92fa5f53187b62f9a3299adeb1e0b2 legacy-trunk +74878 ca920c16b2057e8e455211102396b293ddad22e0 legacy-trunk +74879 e0d5c0c3808ce18d0f912da13ed07f7214fde730 py3k +74880 a27abd353ed1ca134c8973cc6e4d4ac0da95b0ce release31-maint +74881 b1b615a911f031f0ba4d3cd9998b368ff618bd56 py3k +74882 e4974e95fa649eef685fe28025cdafe78f9183a7 py3k +74883 b398afefd36967a2bfb1f8ce91b9be801d667c7d py3k +74884 ba228e5c3daf796c8678809d61fbe1c366e6f6be py3k +74885 9ceeb602dda3b9b6e2646996ad6c7121dea01a12 py3k +74886 0e44dcc0b20d39d7193c653af208415ce137df6c legacy-trunk +74887 2ea1fc26854252c7cd223a97a38a31d6640a9eed release26-maint +74888 d3ee738fdcdb17cfc36d4b294ec9cbd1085f80db py3k +74889 072e3e30b50cc21db22cf359277e73f182729e25 py3k +74890 547d41b1de97381be5312ff2cc62b6aebfdc9c92 release31-maint +74891 1c546cf3eb10d6d6ecc43213d6a4d8246a721223 py3k +74892 d601fe37fc54ce018f376b43bc87a2f60b408f2c py3k +74893 fd2f4ae93d0127edfc59369988017f1dd757321f py3k +74894 b63c7180618e348a427cdc522ea99a946ae73ecd py3k +74895 993ee39e8bcfefa9da5e095c7dbdc6b584ad24ea py3k +74896 bae9f4823b8e11b546484772e75ebe3df53c9ef9 legacy-trunk +74897 5a1e879832fe33c771656ab61029fb00fe00430f py3k +74898 9817915ebdebc51a819c94b5700dc415742b96ca release31-maint +74899 de3357c260b607cacf36e7955e51f035aaeb4d4f release31-maint +74900 da04b152a6fe3f66fb94538cf8f544ab9b7cbf6f py3k +74901 b326e7d664134a83edfae0d7c6d44e4022de5a58 legacy-trunk +74902 7a5c119b866902f62062cfa32306f6c9ffde27d7 release26-maint +74903 84f1c95b4e9748f9a54993ca669ef2ee57d88a23 legacy-trunk +74904 6fca35352f7b78164bf2b338c2161d5f56c8e69c release26-maint +74905 4f15a131ab07195cccc8353873cd697c62c0a000 py3k +74906 c76f843838a5fa0575ddfb48179c8b42d3b3a628 py3k +74907 3289ffc05cc784494513e2ee7e60afa0521593a3 py3k +74908 b35dd1b6248e39396859b9040994ab2d254ebb0a legacy-trunk +74909 a442c2504a57e1b5b717b788561f0b269f39efaa release31-maint +74910 37e96246bda1c64926921be232522506f2b6c487 py3k +74911 da81861684e893a644f73c715092d808078f92c3 release31-maint +74912 1d2e6c441a53f015f86912b3d204d4960ba8f5a1 legacy-trunk +74913 77e07af6f87a3c8455814284004b55cb2bc387f5 legacy-trunk +74914 d4e036c6c60d4a400df6862be0b1ffe2e4e331c6 py3k +74915 85ef1c04d8ddf5cea8aa96f770c120d53f7ed75c release26-maint +74916 51748dfcb444c70044e54b910f9cb3158b4726d3 release31-maint +74917 9931e177da8138eb09b828bb9b4da8da501be584 legacy-trunk +74918 37538b550f685af381c34ae3695f0abb0a6c4064 py3k +74919 fd18774530606252737d394bc57b250fba1dc16c release26-maint +74920 d1d3a07a0ed7f49f0f6113e02e6ff3d08c420811 release31-maint +74921 3c83a3cacd77985be8355d3cbeeafdddc00015ae legacy-trunk +74922 043fdda706a376fcfc325385928329209d8d4222 py3k +74923 822a29f7660b517fed67dc04b5a0d87be684367d release31-maint +74924 b4ca594849143d6563ec715b3d99c54b164feca5 release26-maint +74925 f2555ad5fe09ea000c60aac29db5b4322c6aae2e legacy-trunk +74926 2211ad3e7bbed4b93868b85d7bafaf8457e7d72c release26-maint +74927 b0e5105ff97bb9cc4f2ab9a29f6ff5144eaa9d86 py3k +74928 7b2bd39b21cd1c6bad59d204b169fbdb2a92b64a release31-maint +74929 f64c0eb8cc6209f4c24bff5c33fbad20d7836942 legacy-trunk +74930 fda292f31632422c65ddc1ee72542334f643bf43 legacy-trunk +74931 f12ce7adbd300090d42b8a3213fc64ef048567ab py3k +74932 616a669c9023fe7473a75b09793c2759e6a9d4b9 py3k +74933 b4bb4bb86892899653c9c162750221d8c987a9f8 legacy-trunk +74934 de65908973d024391ed9c1edceff9d43732b6b71 py3k +74935 1b7bdae02179470eeb22b18741ef6537f2ad337d py3k +74936 cc329bb19da5f1a9fc3853628cfca1e463eaea15 legacy-trunk +74937 243faf0f5f5e431035eb4324d4eb6d20bc82cc65 legacy-trunk +74938 a2b2cc0fa7ad4d0f494a400efd1f1be68744a204 py3k +74939 cf75c0d2e3c76b12d893c694f9bf1a1509abacd1 py3k +74940 c5b1500172f89cf755a2133a223806400513f01c py3k +74941 831525f15c57029122a12aa3cd64cb1d24bfd95a py3k +74942 0752139f3da1d3ace727f10c919df4f1d700402b py3k +74943 6a278e4d9f618db2d2bb5748ed56513327041caf legacy-trunk +74944 30cc4f073292eea26d1f1315fb11436141edb5bc py3k +74945 58ba85c0d4b0b0fe9a0f82a80c9f586dc7bb9b50 release26-maint +74946 45145aeb63310b23223f3dc2244e5bceab5ef629 legacy-trunk +74947 0007024e9e2348e78357f9f8e5678e46e56c1a3e release26-maint +74948 4c7349b9d159a7ada3501ebc191a881d6dc4a3ee legacy-trunk +74949 1eb424257345cdb76bebc14936d34177d1d95f6c py3k +74950 1b1836cfcf262a908189ad4c529ea6a46717bc96 release26-maint +74951 80a38f893b7f3f08e64927398df5e2ded49a7fbb release31-maint +74952 a09da56e47969efae13bade983ed059841bf4e39 legacy-trunk +74953 39b4630797face7f4c04aaa78d70dbac23caafb5 legacy-trunk +74954 6791c2b1a7dc988df160a0826f8cb3c6046d43d3 legacy-trunk +74955 416b645507d0a843989dfa652bbad8dba1dd1627 legacy-trunk +74956 8ccc23afea3d1896998f2c23d92a58062d1b4d0a py3k +74957 ea697cde688234f7b2bc5e0fd520d702a72ee03d release31-maint +74958 f54d31e5fd4d6f00bd959c1a4dcb7bf64ef24264 legacy-trunk +74959 2c5a7750b71d821d09014e39cff22aec0611e7ff release26-maint +74960 bd84f42c3633958b9d52ca13a32f53ceaf8a15ee py3k +74961 522be36b29cd21481b8db2565c604c9f5b945de3 release31-maint +74962 2ddddc641a9873f02fa9f83f1e6fa22f7ed2e0cb legacy-trunk +74963 2717d85aba2e6bc3e7309156ea33310c6a0d1583 release26-maint +74964 e561f10c7b311928be76091bae26e03cbce5c257 legacy-trunk +74965 d131956533bf1cd9ca8837e16f1fe541b4e132e5 release26-maint +74966 69ee1501b10269c3f7ed31a0392cb1839a7aff85 legacy-trunk +74967 436ca775f26caa8849e4f9bdf7b92033a71afd8b release26-maint +74968 22548c7eaf375bd76e3c705f10a0d3e14c9ed980 py3k +74969 b3d25e6f66f12de56497456c5ca23bad4319c9bf release31-maint +74970 b0a2fba00458611908a8dbbc6a82d31f0db7212a legacy-trunk +74971 1c50dc213312dc6457337935d2795d9fdf3b6adc py3k +74972 d8c248a5931050a1f975c3ff9b764982f743089d legacy-trunk +74973 98104ab859fa967b5ab4b5ac9de4d90b81a98b5d release26-maint +74974 806c636385fccdbabb5868814d1ad2284bc3e174 py3k +74975 7e3985faf9a8acfe027b0d8b893eaa780a391b7f release31-maint +74976 7a3fdd93b5664da2514ffb3a495c5d101d9d22b3 release26-maint +74977 1db6ee9d7be7a1d6c533aa07ba25b0985c6e7f5c release26-maint +74978 db97c042cc1ed5b95da8844a39507e4cce1328db legacy-trunk +74979 cb3428b1f4af29b25b48d297655ae2ea840bcb7a py3k +74980 3393ffc0de44e6a3cbcbbd2ca73d794b5fa3f5c6 release31-maint +74981 9234305d3740387a7326d349a47e356108907229 legacy-trunk +74982 6d8b54b21b877effccb2b155429484b1c392d7e5 release26-maint +74983 273c234800c1841d30bbe7b64851b7d0b7b8c10a release26-maint +74984 cc3d8aff459560ca44f885531e3e75a237de0a63 legacy-trunk +74985 c5949e12c6929ed8db61b4f50aedd6ec47e2c8d4 release26-maint +74986 9c9165bd293ae2498661bc70569fca0a2561997d py3k +74987 c63f8923e24f68b6ef3bea2d5e5802117f4bf992 release31-maint +74988 2df8bedec6d3338c37df7630c55b987fe3ef3d9c legacy-trunk +74989 a9ce1589d694d2986559b5bdde97575089cf6b4b release26-maint +74990 7c434687b429396e17aa5e211dc2bb9376d162b3 py3k +74991 4008a0137de7b0d68021aae88467be81e725ea09 release31-maint +74992 d627c5892fd548ef463bf51031a3c75e12530caf legacy-trunk +74993 5c8700cc9d16ed26b94c4fae5bf13d9700e462a4 release26-maint +74994 7a7642ab11b3927cd22a47ef9e322f93acc9f74a legacy-trunk +74995 627b349df0e8e27917ec4fe7e1345097c06241f3 release26-maint +74996 018f2eae2526fe24ddd49d3d40f1b6f87b61eb14 py3k +74997 f8e696e4cff1d804b4ce6a0652797cc30dedbb75 legacy-trunk +74998 af7a1200fb3f35f01d420faf75b3f5b36e50213d release26-maint +74999 4b83ea6fc5bde2162733e159757d044ccda72e1b py3k +75000 3a3e145d552c5c9b0293a2a7f1ea38307ddf3055 release31-maint +75001 1ffe6fb19a18dd0989baca85575a259c545afc30 release31-maint +75002 7435d591a32583ae1261ab9dede1a44d523f81f2 release31-maint +75003 b777e0f0b57ca211908d34363082e7e4531d5824 legacy-trunk +75004 5f63b514272520fb9700c62fe5b286198fc2506e release26-maint +75005 b734d6b5185294c5c8430e2be29ade3b5d5d9953 py3k +75006 357c75d59ce994bd664480f03147c66558211766 release31-maint +75007 f73cdae197c4d1e2a08a4b3335baceaa644236b3 legacy-trunk +75008 78e00eb45dbb40d8af4ea8eed90d336dd835e9d9 release26-maint +75009 1f5f78818c51e834d28be0487c9aaf30f0241163 py3k +75010 82d797ff9aa3c38bf7f2968a39b61cf5a12f0ab5 release31-maint +75011 4ce4da847d93f0503d2904d2376955d17f436a7d legacy-trunk +75012 c2392a79715d61d6a210ac62a94cdf9c91ac30e7 py3k +75013 574a532fb40b186e8e7ba3fa5766fbf59b81b2bb py3k +75014 afda087763af1eded9e127840c17445829485210 release31-maint +75015 77191f3a1d27ddc7014959b7c2c177c0a717ba5d legacy-trunk +75016 5b8b18b00d4cff05ecf3e08421c4f338506a5fc8 py3k +75017 5557bc8cbf65f994ce615238c90d54ac7e6f36c5 legacy-trunk +75018 06ce27a82e99e7fe3ed84c4561312d4e6c51b193 release26-maint +75019 cadbfc73a3b0d662f1a640dd129c823abbcb2376 legacy-trunk +75020 9c6a983cf6a93e5ce7ffe9a53ff1e45a8ec32cfb legacy-trunk +75021 2ae93eac420e2ab9a9c6cf94cc9c6b5fc8c67be2 py3k +75022 4ca115f33b6b8f96833adc399a14b9e0cd432272 legacy-trunk +75023 4aa7de66137fcc3f36db1d05e877fe4850ff02fa release26-maint +75024 3228bafbe6c938658b9e84b3544600adde72aa39 legacy-trunk +75025 2d34a74f0017206fe8d70ca707e3f351232e8a33 release26-maint +75026 cae053c9f9cace4bfea8ec52d92dc88c42715621 py3k +75027 b19a8add112f882d5cf0932933dd15f03f457ae0 release31-maint +75028 d599a3f2e72d6e0c43e57a3a8dbd36277ab17086 py3k +75029 1d0d6f74378c6b52c7ba74537782011fd66d322e release31-maint +75030 600ed2dd7672891977dd84b994205a1ae451487a py3k +75031 9cac8ba6f4a9dc59ece8f2ae2bf1f303e22f74f2 release31-maint +75032 c24f000182f4555cd59eb86a80159f6fffcf43d4 legacy-trunk +75033 68899dc117eb35fd396bfb4b0d07b3db6e60b663 release26-maint +75038 584db03e524807a4e79e503b9b33ef36ac960b39 release26-maint +75039 b4ab49e28305103c9251df43c3266969a3d125a3 legacy-trunk +75040 9daf8840a473e08e5470452a7804ada75a43ba0d release26-maint +75041 53a6b39ee4b66d943c375dc25822db7513264a57 py3k +75042 3fd7f122556a961a5a9df5c7e171bcbb679f82ac release31-maint +75043 7f7cfaa3832e3e25a3dafd8e06c07dcc657978bd release31-maint +75045 1d0f416d4ba642f35e8b01207126b40fcbe82411 py3k +75046 896670d41c9f74b31a8227421930711bd49ee10f release31-maint +75047 f9a70f2256250e71aa30ba333df76f8c3010c19b legacy-trunk +75048 785eccc025ac6e9fdd0737d1370f3c2a06f70476 release26-maint +75049 656d1d40fecbfc559c5f7da810d8d8e34d091271 py3k +75050 592bb8259c54278045a3ac158e72d59b57bd93ea release31-maint +75051 0f4e95ff859d2cac60084d355d730d6b1b6e6579 py3k +75052 28e2ce00f545bf4e57a7aeaac44d3cdc8959b4fc release31-maint +75054 3def952b515c2b458d94d204ff8aecf5182e6057 legacy-trunk +75055 3567e87157d83631a163a91ab3483c774f83a1a1 legacy-trunk +75056 e073fc88dc8947f21016ed0d5819c611507cec38 release26-maint +75057 8ea921c7d10fa12370f59971754f52c9a82236bd py3k +75058 a07568c7a82aca527af0ab963aa169d011b38e2a release31-maint +75059 50b18ae8cec44927e4aea993ddd64b0a110c6127 py3k +75060 149bed21735e074ae31cfacf7eda9fbc34159dfa release31-maint +75061 1b9f14e5e9e507d78e6b5d808b5e5a1460563f30 py3k +75062 8cc82dc6bbb023f1ec784b2c014722aef5afa898 py3k +75063 2644f54e36763e38665d194a23f7c31cd906433b release31-maint +75064 ba841ba00d06222d09bedeca176c8c339e26df84 py3k +75065 781ef95cb781876cfe14bed5f7a95656fbba7ca0 release31-maint +75066 2bfaddb19c3a1c65bbafdd60dee1ff7ca52986ab legacy-trunk +75067 00a5cf37431462401a1d7627db4c3e6e5cb314ef py3k +75068 85e1ddde569e263ac485c01bcb7fd2e95855cb4f legacy-trunk +75069 e99024eddfb45c633b9b9a9578eea3f9f79f2a07 release26-maint +75070 89fa2641715d349a94295c26ba1a797046b2bb41 legacy-trunk +75071 acbfc69b55f3e0d64807ced9c66dfb490d396ddd release26-maint +75072 076b233352637e22c951a8abe0ce20b767741d3c py3k +75073 bf9bef70f7e8ac6291d685b107006b50a46cb045 release31-maint +75074 2006a2f4812d767f69ef7cfc0f968590ec1319ca py3k +75075 f3c595214abc40061d827c12d63db5ef89b97aeb release31-maint +75076 7391436d8a7489d461b278ac95eefd4395c7227c legacy-trunk +75078 dd456496909cd4ccaef3d7f6663c03e595725ad1 py3k +75079 b050ea7baf40debc94ac1d6333bbac1141a188e0 py3k +75080 7ee140b7ef93bafdaca8dfb53426665141611ac9 py3k +75082 0453d18c63a4e858176e933923dd4f528c4adb42 py3k +75083 d6889da0652c7f86bb3837ae4343945576c454ab release26-maint +75084 546101a6677c84e3397fb6ba42af5ec584acf010 legacy-trunk +75085 b0e9619b31d8d0a1d8727261b4d536a3d908d43a release26-maint +75086 fcb31be2136d64d046a5489173b92f7bac61aee7 py3k +75087 c0d95625f17de78fdd74658cc62d9a03a48b5eab release26-maint +75089 1a65ddd7d9e151df13e7f27b7d114c934e59316f release26-maint +75090 f3fa3967f44641f589a0db619cd389744ee0950a py3k +75091 3dec3b77b7875bc371aeaf4d0109df8f99eac825 legacy-trunk +75092 a041084c1fdd66270d860be1e323843c50c33858 release26-maint +75093 910da545e17bc5f1a4410bc29ea7892fc3aa79f7 py3k +75094 7d026f706450d9803d4fbadc010df58162b2ab0c release31-maint +75095 bb8b770ce890e91bdff3e56287278edaaf6d5bea legacy-trunk +75098 f04a1f2023ecb6881bf15d6913670b6eda1870a2 legacy-trunk +75100 debb245ebb4018d18b83cd071024b444da04998c py3k +75102 c76674c2d74d039f916fd57b703ddebd45f2d8a2 legacy-trunk +75103 e95218605300ed064dc8e59d74ddbbc1d3f8da96 legacy-trunk +75104 ab49e0ac8c8f131e2c3d5cb7ad7d59db407261bb legacy-trunk +75105 b6aff7a59803009d8ffc9fb0acb56d986daf9e17 py3k +75106 94572949c1ca4bde1338178a89b785c2c8e15a9e legacy-trunk +75107 d108fe77c06c256ceeae892cad32f22f19ef60fe py3k +75108 7013e36511a8cedefb81eb9e5b217810edda1858 py3k +75109 8927718c198ff7b7a9f65ca6769517546ea73947 py3k +75110 3ab464fd5e01a5ddda6eba687b88db52a8958610 legacy-trunk +75111 5231ec512c7afd04a1e5668883189e3619919da8 legacy-trunk +75112 cf90aa57b20bc3675216958a11ad3e4b4d941283 release26-maint +75113 99e36f47ca0f766f41101b3c0bb2bbacf6632ab2 py3k +75114 4ec915a5bb4e0cfc808fffcafea01d15f7365a1c release31-maint +75115 7f695dd64f901d32f2ed5e565b81229aeb01f943 legacy-trunk +75116 56b530029bacf6ab28e85a00d2004cfc36a42ba9 release26-maint +75117 b50dd17dfe262a4725f4ae3e6e470a1fd400d35e legacy-trunk +75118 50c30a8284fbb4ce4cab20b9442421387ea2177e py3k +75119 47b82fbdc2bb1e00f036967e5124b0a4bdd794d9 py3k +75120 20124eb8811bbfc856c2a8ca62f2a93e6f233787 release26-maint +75121 b985bcdb8b914b3cad4e74fb40095309d0abebb8 release31-maint +75122 82502182546390eaaabce9267f3a072c7a394163 release26-maint +75123 eebf3d51d3a46f3582ed47b32af5d0ecdbcd0751 legacy-trunk +75124 ee9a551a875ed4fe6d5ce4bb9b4cbdf5b4f64ba4 release26-maint +75125 c63e06387b8fcdf6a1e28eb64264a6c66e386f4c py3k +75126 74b18a267cd752ada3b3db4efdfe2d52ce7e51e6 release31-maint +75127 edd9a5e3cafb6f096e1a26603bf7270ba274867f release25-maint +75128 3577af512df573033f5b8e18fe8347ad2636df19 py3k +75129 f26b802c003e5c003540746e841b7fb27d088d78 legacy-trunk +75130 a8d0e764e34b1ca2edcb45fe1c7aaac34c7730f5 release26-maint +75131 e5b81212fdfd71769f412fafd54baa883b38be84 legacy-trunk +75132 986709c245318940701d1bfa176318f5fd98b6bd release26-maint +75133 4d74734495cfd6687d11935b91236d89e759b281 py3k +75134 e0f234116ab14983569294efcaf3d13a0db25281 legacy-trunk +75135 2e2c142bbeaa99ac173c8d84cd61bb51fb1dd6c6 release26-maint +75136 1843886b2b1d860b08cf96bf8e3462b886561da6 release26-maint +75137 1f7361c74234c5ccc244bb015267296001cec9b1 py3k +75138 e72a73ad7e294cbeffa1f5c5b90a88679eef62d3 release26-maint +75139 8e9bdc6a100fa086bd466fba6f2ac62c30bb292d legacy-trunk +75140 19a4a623d8b7044c2b1b9e251b2c8b08a42424fc release31-maint +75141 91f9df5367c1a5f1c6146cf84e96db39171f5a70 legacy-trunk +75142 a17cd9fcdd469ed1f385092cd808146bf1f2060b release31-maint +75143 1ea03f86e0813dd80e59f0a67552b2f5a8d11557 legacy-trunk +75144 7e1856167c4a82ec17540298cc82583e58e74002 release26-maint +75145 ba19662eb221b83e63818ee4b13a142f3314d283 py3k +75146 08e59076d86b2cae0dfe27cf5590fb93e8160a50 release31-maint +75147 f99bca6ab0dcc85e78a4fc09593c7cb32411b3af legacy-trunk +75148 dad7453d0d0862bb7302553788f85b4e1c313637 release26-maint +75149 df58ff2de09ba2185c2119f264b638e979c7d253 legacy-trunk +75150 6716c5f8c60d5ce546034a54a834328535853905 release26-maint +75151 1873542c00000c4b7ce2c7992d1f2d87f866232a release26-maint +75152 0effdb39c47b7a07b1997a5dbb5bee6676613e3f release26-maint +75154 7bcaf064e2405674d8b56e0b4ecbf18650225999 release26-maint +75155 5acae46af843fa8c3ad91271a41b0d0bde32ddc7 release26-maint +75156 d91209d8251de60530c066a56f4497412eb454f8 release26-maint +75157 5f245da72aebb4d277fea44b3be0bc4355e05263 legacy-trunk +75158 1c016f0e94bac1f64290f9b2cd8691ddf1e2eef4 py3k +75160 16c985daaeb09d653b64cfeb76d484f89947cf52 release31-maint +75161 e7e452449a5eac9a8accbbfca7550183d1b3393f py3k +75162 703de55e00b85d67ee04d738ad1439531904f212 release31-maint +75163 084580a349b7113786576215fbff4b5cb91d7685 py3k +75164 339b82321f8ef639a1cb48f403b650cb21e5cefd legacy-trunk +75165 3e28816aa0a2325a727ef61bba15cb589b5382cc legacy-trunk +75166 807b0d597314b2f44b55f7109f204bee00d74517 legacy-trunk +75167 9217bd0cc3fcd50380342c3313a221034e9a8a85 py3k +75168 1064555237e218cfd39f096e031813c017cbd527 py3k +75169 e1d6951bf39d7dfcda60aafcfffeaeeb8b0569fb release31-maint +75170 5ec15da1fc42205a1e13e19c0f37b45b90e307a2 release31-maint +75171 117b308be321436b6ba919a9011c8338c8477450 legacy-trunk +75172 ce214ee41164928a30b66ddefb4e1a08a9e8bb4a release26-maint +75173 1700a78973cd8146b0b82ece191fd1f356fd3941 py3k +75174 2c7b1d5c8b65b1cec1e29ebc325794c33342570f py3k +75175 dc3500d39ef14899181b300f6fb5e460b72ba836 legacy-trunk +75176 fe8b9b73d9af0d4d6f4cd2963d389cde0c6a7741 release31-maint +75177 e304d9f34d152870530b2d810984b738ba70ac8d py3k +75178 fe964b3c9662c772ee40c37874ec6d565d26561c release31-maint +75179 9f198b0f367fba04dac361ba0a3a5e4bc31c26c3 release31-maint +75180 e6a5ebe5aedd8ee302bd423cd4cdb2a926e86f34 legacy-trunk +75181 783e6cc2ab6235196b927050b6aa9b5cc9212dc9 legacy-trunk +75183 00c3396d7a8c4ab4c2c841d61013a073ae921d0f release26-maint +75184 8e7a692787981588732f650ac2fcaa50372a0c2a release26-maint +75187 c850ce977bb982d7251d3f7fa4730be4cfb5f6a2 release26-maint +75191 4c59983bb057966570616c2c3fd20954c26f9c6b release26-maint +75192 c2c90d1f3c33ec69724e69f832d4c34a5cf6f105 legacy-trunk +75193 7290140cd33027044440a63b1d56b820a9d06009 release26-maint +75194 c4119286faa75d7de9e21d1077c6c3a7ec6bdbe5 py3k +75195 9b1eb5e75e159e7e7ed3e3f98536699483f068d4 release31-maint +75196 7d7f9783c86db1493f356043895d88da983c7e2f legacy-trunk +75197 67409bc99fa2bcf000140ca03fa9f5d4eaa52133 release26-maint +75198 77ee220686cc502bb02959b9146ca0c839578b30 py3k +75199 275d60f93d3c5f61908e8d7d35fea920127431a0 release26-maint +75202 431350f21d87e9d8ec70c6f5ac65c323fbae70af release26-maint +75203 9130fe9c58bf97df8d43fd23364af056bf2a70b1 release26-maint +75204 fc74d51a679741a9d536c0aa5d488e7a34ff947a release26-maint +75205 d4136090ac34f91eda11e7e34d933cf604af5704 legacy-trunk +75206 25cfb70bcd5e9dd08cf0e590df457655f13f934a release26-maint +75207 3ee04ea9cc6e2f731f7513f2a5de727888a0be92 py3k +75208 946cecaf64c1f1d077f66c020f6537f873c79933 release31-maint +75209 5384c8ee4a26ce01e7704af39db8af3fe7f2fbd7 legacy-trunk +75210 39b9994e86693b351d2c3ef9ac2af5f2bc6fca03 py3k +75211 28fbcc79c20a93c6a652990c1fe3440db392e358 release26-maint +75212 6d0dfe3a13ca18ab34b53dd63f42d52902da90a3 py3k +75214 849fb27c559466244be2c383fa8aed16d65cf44a py3k +75215 5227eabdbb64758608b51b8e418e05938d31cf45 release31-maint +75216 53f17cc7bff67c6c0c8ee3609b1d3807116b9346 py3k +75217 d549366dd218b3240c3abaf3d8ed4976c191ad2c release31-maint +75218 150cdaea58ec6916ac519d09337b3d3e6dbcb247 release31-maint +75220 6cff682a30981fe203353816446d06798a8b5e18 py3k +75221 5c0a7800215a6743bf17bfcc4b792e196073debe release31-maint +75223 cceb62eb1cf1832b2762bdfeaf7c9f1ec5ac8624 legacy-trunk +75224 45fce310d4792cc3f9ad336118652e86650f4167 py3k +75226 4f49bd2e7c58d29849d237fae680fd864d043bca release31-maint +75228 218cdd6c684285d82b8b083a48028574aba13816 release26-maint +75229 d5d8cb98eb2aeea09d98530aacd5954850652fce release26-maint +75230 f4056f8feec26bd292536df618efaad8095352ee legacy-trunk +75231 41bb5e2dc947ac3f7c4af946c01a14e0b0ad067b py3k +75232 c9bd62efe6ce5524e174d1063d165b8c9be0b363 release31-maint +75233 bec2e445e224b65a0df121d61f999e80d4b3120c py3k +75234 5bce3a59bfd2c5efc7ba8fc71bf79ecefd14c9ab release31-maint +75236 bb2a123cdd7bb2af5801921d83533b0c48b1e049 legacy-trunk +75237 321c2207d5f8fa945b52917d4a8459bbe107742d release26-maint +75238 919a27ddb4a321186b13345a35892232e9b1b6c1 py3k +75239 05389014bf4449cda0625ce2a4b264eb0a970eff release31-maint +75240 a2cabb36257f3bc01305f95d8c032d353b63c601 release26-maint +75241 c219f7261d9863563116d5447dc6776f3fe8aace py3k +75242 922c1122c925b6ae562f18fe720a9907a1dd4c84 py3k +75243 8dbb0fc3998ad089042415524b7ecec29f5f0d83 py3k +75244 c827710bcdfdb2f61c418ec744bc3bc9ecbb5486 py3k +75245 138c7fc19b5d6eec4fc340cb64df968f000c9e37 py3k +75246 2b7e0eaac64edd4000a3f6c44d39a6455d98ec7a py3k +75247 2e4d7a40c2dd7e133b71a9879747996a7b9de23d release31-maint +75248 b0b9e5928da99ddda2b75c74c4c66cde82d20967 py3k +75249 6b23b0eba405165a0b1a2dc9b67dd78f6c5d031c release31-maint +75250 7aa4a421152f924e11f10721ca3101bb28e5f486 release26-maint +75251 38be26390355004b61a5c020d6734390638924a7 release26-maint +75252 490190cb4a577228673346dd65e1975e69689591 release26-maint +75253 278cf5c8f1fa97c2668c93912f33684edc8440de release26-maint +75254 d5250da005ca739f2ea868f3cd28900396fb04b0 release26-maint +75255 974c03c98884806cfd384c26db607fe5ba2bcdb1 legacy-trunk +75256 29c0196b1bdd7b51760c126fb3a70870a7258c28 release26-maint +75257 a01f413ea08b6d917b57f7a0c0f02d478dcc2b96 pep370 +75258 b4d1be7102b31b01137cf1727b858b42616cbfac legacy-trunk +75259 f7eea62b08b05a3b92a9df7aecd1dad7f2487a87 py3k +75260 ee902016243a29e77dd2e6daad51fd3bc12a2f58 legacy-trunk +75261 987e596cf57373e9fc3116af134a72a71d8cfba3 legacy-trunk +75262 1c7f2b9a16782c06c51054d757b8a75006838332 legacy-trunk +75263 2fa9ffe6d1451d7fededfd38b1240b5d1f00f9ee legacy-trunk +75264 d2f9591154286e54f21243cd32b7c03d9fe46c83 legacy-trunk +75265 a12e701d97cac787f15e5f4933b1a8f56d4b9fd7 legacy-trunk +75266 a45950726bdfbadbee155edb805d733e203cfb1f legacy-trunk +75267 a6e7ed52df9b317e6ac880a2b6a1b6f19ad36246 legacy-trunk +75268 c9d9b7d09422f7a6a92021081f8003a9bfece28c legacy-trunk +75269 a4a324c2a00c78084eaddd003b656e366c680467 release26-maint +75270 25aa90a6865b63133962dd64626c53c7b6fd47d5 release26-maint +75271 433f727e5e823f00d1023b43902ebb38fc2f922d release26-maint +75272 a9864417286b93d5cb569471a298161517d5d41c legacy-trunk +75273 5e3f6e8d6ae595597c64d5caea0794254fc4b35b legacy-trunk +75274 6c91d18031826816a99119a39fcc4f4f4e69e7da py3k +75275 c5a3d43146769da367708c11bc4c4738c99e1dc9 legacy-trunk +75276 3296935299ce627d79210c61f5696be6e0689977 py3k +75277 dc047d9abf7b6cf90fdc12bde8617b9a00be8f0b release31-maint +75279 6155b959ff72bdf5ef3ca0f0f19ce46662a9994a py3k +75280 f99b3fc01fc06896c39292b495b0bbdfba06101b release31-maint +75281 c45ce285f552b963e42861525fd12bc0ccf0a9d8 legacy-trunk +75282 b78521ae7a6245e48bd5c882dbe59f37f558b087 release26-maint +75283 e759ca25701d9a667ddb872bba5b5777e766ef7d legacy-trunk +75284 249b0be797a82e2edf63c7830e5fa3670bc572fb py3k +75285 dd94f1d8c9a5ca44696349067017fbbf23b1d837 release31-maint +75286 48ab2e62de8bc6bd365ac1a0143119a65ab06178 legacy-trunk +75287 ef7346448b600dfceeb54af1003d0f7e0254d1f8 py3k +75288 3072f940f35a36b6d49f5e24ef1fdd55b889a1bb release31-maint +75289 96aff2c2a9a1d5b72e0f4f1d0c1ed7958d078c5f legacy-trunk +75290 cb49f2eb04579f87afbeca709d06e76bcf2a0635 py3k +75291 9f631a3bb5493fad99817929d899813f80b0ebd0 release31-maint +75292 d790202c151db0c6fb4352988fd817cfeff54ba8 legacy-trunk +75293 abbc797575c42370a9ece1bcdb45061c8ed155d2 legacy-trunk +75294 eb0c39f62de19cc7c247d6449098cc9fe0b54850 release31-maint +75296 5458c20aa0cf8395bf4db49b1c196857dfe35097 py3k +75297 946e3af00b0b8f13b68f97d87af5b2e3eb76d51d py3k +75298 2c60e946062ec0afaa21d3bea7b7243f63596bbb py3k +75299 25e51c5b0696e85c4901b696ed7a245dc66aa96b py3k +75300 896a4fb13f35c91dffb054df85eea82de3e9de75 legacy-trunk +75301 1ec8c7fb8807b5afcf6c536540a68a581558898b legacy-trunk +75302 12cd94d39874648eb0f3cfb537cedfc0dd00f231 release31-maint +75304 57ee0793e4627b80ce12b6ff4034fea7adc45d75 legacy-trunk +75305 684960fb1cbf64e857979cc2a9685f06716bc119 legacy-trunk +75306 ab42033fdfdbe5ab4e126ee5e1a8081ec1ce0231 py3k +75307 91aa044101390ced398aad61e71001a0670d159a py3k +75308 2836939e7c547ffed40646e122ff3abd0eb2362b release31-maint +75309 29908f2bc93fd8cdec3574ce470a5ad01ef057bb py3k +75310 6d092a51e187e4522d6bde835849cc26150f6f0e legacy-trunk +75310 4f91312d6ec2ab35e7ab822a83da009230f124aa py3k +75311 b5ea4773aff1021a35611bea21d0e4ba9674e355 py3k +75312 a2f02a125feb0b969d83864a0e947f79a98143a8 legacy-trunk +75313 32c35f9b245c87c0c079f841b9d7c5d5c6fca8c3 legacy-trunk +75314 d73f2215efc19f9237268f8b47338d58a39c80e0 py3k +75315 33b0413500342af70c28b9cd35490c1a54bd57c3 legacy-trunk +75316 ef31b04de50562ffc450a6a1d40e0aeef88d76aa py3k +75317 3931c78af1175b3c7424f3313df00cb9f05edced py3k +75318 ff8c86a24b158fbae1cf454855ff58c86f03414a legacy-trunk +75319 35619cfcd0b5bf5a43001f6213fb2d2f338d8458 py3k +75320 220f7deffbafb57602ba735f433b2ed070133fbd py3k +75321 42a6a2249474ca6b20c1104aae86ba078d5f257f legacy-trunk +75322 34999a1aea9b2617613fc0ebc159bf211d60f7fb legacy-trunk +75323 bfa60df769290a123e36bcee42d0bf05a354141d py3k +75324 443149fb35748f5cdcfba899a9726df291df5d0e py3k +75325 6587ea6d3e7845def9a23c52a2125b482ab7508f legacy-trunk +75326 f32feda65c856ae4ad2584dd8c07774fdee082cd py3k +75327 458153d5d82d6f71c7fe8db4216ea8e48f69eb26 legacy-trunk +75328 2168b9d49e3b1908b2c12fada85dd546facc3c26 py3k +75329 5597ba70a336c865f06a8a1902d321697379d804 legacy-trunk +75330 f76e2e637730189a4cf1608ef4f47f1a25f97d77 py3k +75333 24e92cef26646359fe02613c6031cb9c1ac57cbd legacy-trunk +75334 b942c706e3381228c2af79cdb9a8b25500125f44 py3k +75335 696aceb7635b99965578ca57a98ff4f3b8d3ff8c release26-maint +75336 867633330a938e7463997f95428037e30d7ba3c6 release31-maint +75337 6194fd75432398f8e5ebe8921a026b902ebaf2f2 legacy-trunk +75338 86b684c969424b2eae6f9d651a4d0a3517fc3e8e py3k +75339 3130b7e812b04eaf39884063d5cf5f53e3c18335 legacy-trunk +75340 89b4bb0aa5acf838629e61093f3e3634b3ca1ead py3k +75341 4dd090100ecafb5b6928941d0c16ee3b16ff000c py3k +75342 3ed65716d7ad242c9996cb6a01f4860b7027bef2 legacy-trunk +75343 5c365aab10d1ce30fe7450670ebd56ae980eb4dc py3k +75344 c105b98e649de9a45843e836335e20693301d88c legacy-trunk +75345 0ad7f9c952b08ca12890b4ad4b03438aa8719db7 py3k +75346 4ba27d18dd92daafb73b17f9ff595547856447cb legacy-trunk +75347 bde8a396228c2aac21e439cb2cb10798e8a42f59 py3k +75348 a15c7d50b3cb64e016ed23e38b7f132facd93495 legacy-trunk +75349 397e02e0be9314b542103fd56d498a2a04e36b13 py3k +75350 ca018e2bb8654b9b594f6a7a4a471a2042f633bb legacy-trunk +75351 52d6973cbd94eb3344b0373c2d6ba313eb1bdaeb legacy-trunk +75352 53c83a132e1ea21bb6c66ae94bf4427479802a33 py3k +75353 698e0e69c7657b269c0e4f128607deabc94358a5 py3k +75354 6a5e0c913c7cebaac8fa417f35687403859e8064 legacy-trunk +75355 920408e6030321337b913a1c39fb1becda32fd70 py3k +75356 e4619cf9e62cbe128f9eaab2c1cd4c9925f6c5d3 legacy-trunk +75357 8ee45179c503987b03b07f1a51b7cf970a9c57d7 py3k +75358 a5d7b527795193cc6aac6c1d91eb708efbf643c4 legacy-trunk +75359 1521a657a85ad9b56018977c559b0048ac4125a7 py3k +75362 205b96efb7900a128e730c3c6c892fe9cb178426 py3k +75363 32008d23f6cb48a1eda0b27f1b1af688b0ea77fd legacy-trunk +75365 9f765118d9b97139d6e683f8bf66357b8589da2d legacy-trunk +75367 22008d934e637592c4727cba92f166a1932d87a1 legacy-trunk +75369 43ad554615b6d200c62fed7564ef6835147973e0 py3k +75370 050748ce5ad9eae24282eaab67c68bdad83dde36 legacy-trunk +75371 4b5d398eb8666433defdf8d7a237c26c82f8e834 legacy-trunk +75372 9a2c37c32b7e7180a7315daa8cc48bf593720d2f legacy-trunk +75373 cddb620f0cda0ae14b311b83478dfd555f50bea0 py3k +75374 16884795532494bd6ee017816ad6d48c6e7f4989 py3k +75376 3922e734c9bb732f9f4e4df98ce79bc52f180b89 legacy-trunk +75390 f59da9c93425a9f9cf617c87cac04858aa5aee9e release26-maint +75391 95a69640ebd3bd1797fa8ba2aa2f701a727517d1 legacy-trunk +75392 9d17bb4f1170fab210f78788233b2218f56842da legacy-trunk +75393 209e38254ae8b878d345354fef0de29e9e212578 py3k +75394 9bd6a7aee13ca80e856979ee3979fad23c5e6160 legacy-trunk +75395 2a7583718d253fd5a0da26cf980580f36589d2ef release26-maint +75396 7fe8a8313a5b2e7e23422efacf9676fb35ebd64d legacy-trunk +75397 e8e103488fb37e30b9dff8f4a81f6076c1246ca4 py3k +75400 bdbda7a94c333e0365df6192c3940a73907d84ce legacy-trunk +75401 77561cd39fd397bd3face32eee5a96cbb9436e66 release31-maint +75402 03854732a6c28e739d5546f24b9aa72e1e005bde legacy-trunk +75403 183474bb02138da88c3b496c52a7b1b0a05da4ca legacy-trunk +75404 63508ec76840aa64820987571a7895eadd10cf0b py3k +75405 dc75d17dd304a506bd157e5c2a4eaeff317cace0 legacy-trunk +75406 67bb17c2e8685219fab3c7bfb200c06e4dd850c2 release31-maint +75407 247d5a5eafa5343975b99f3ee98fa4c1d9458168 legacy-trunk +75408 58e57631be8cb638ed31e4b4229a036e477a928d legacy-trunk +75409 386a4d7c3c99cfa49243c38c85fa4449bff78d68 legacy-trunk +75410 cdcd805eee85d650573021122e0625fb6ff722a2 legacy-trunk +75411 e8532cc8a14e4974f8a3f274c2c3ec7c3b04b989 legacy-trunk +75412 9e718d8f71e8f014a6776ba2c1cab576d8e70b66 legacy-trunk +75413 4ee343c4bc49d07e3ee665b12c60235997c5f602 legacy-trunk +75415 6d50c4c1a8b346fe0364f237fc280cab1aaa278d legacy-trunk +75416 5dfc58f39b9f542190e69d70ca227cdfecc38b45 py3k +75417 bf8c9bf7115c93a230f9fb9f338f499b2a5dcc1c legacy-trunk +75418 d24298df2a66206bd03858d93e734c06a51505ab legacy-trunk +75419 93350acb5425ba4f00b5cd808c7c604ee7a50281 legacy-trunk +75420 64e19a68988617ef545fd45180d0f8872eae14e1 legacy-trunk +75421 fe38d3c17888c8c0ebea13b8aae1f1fcde2d207b legacy-trunk +75422 16db2a9322489c39ebf2b05d7b606f394fb0aa67 py3k +75423 50b7f56814f9e3ea3c610b1feb26a57ed103d91b legacy-trunk +75424 d0f005e6fadd064d75030a9adbafb12e7a26ca7d legacy-trunk +75425 9044f64b10ae06b8c01af3cd4786f2ee27414648 release26-maint +75429 fa6188c47b63fc525d839c8795b25d2f3576ad00 legacy-trunk +75430 45b62725377a6128597dbcfdc6d9ff5e74cde161 legacy-trunk +75431 a4b1922a307492184aa44694d928cb51c124d90e legacy-trunk +75432 e00c78869b3cd3568d177ead27109bf11852d6ce legacy-trunk +75433 983eefbf6649340e77db25200ec19723436b739c legacy-trunk +75434 e4a0b8739e5b8ab7bf9e4fa6ebfffda73f467a3c legacy-trunk +75435 3b37b8dd76d75025f141247ef4d953fcb6219fb1 py3k +75436 ec508c89ad3682078ce43c07dd65dd2dddd4c472 legacy-trunk +75437 20d09549b82c0b99b770c114802d7d8b89d25a93 legacy-trunk +75438 1617c11556afa28c1bcab5482490a5f3f1dfb0db legacy-trunk +75439 7e58494204c8f6e43ddeb09a96748aec47843c36 py3k +75440 2754d64180d1dc557dab2979a79258a870d4d602 legacy-trunk +75441 3bc6fb3c0ccd09a05074fba2fa4e7b33421fd879 py3k +75445 d9e48ab62562c14f03b252bb119cf3b8d826af35 legacy-trunk +75445 d9630517c70c1950422ac7e122fe1389ff1c1f15 py3k +75446 7fa14be8ad73cb35757665d81381e1730d4d1c56 legacy-trunk +75447 8dfa843c83501a0e5db9daf3c7412bf68e08f4eb release26-maint +75448 24d321fd3d1a20b1474648eb1b3d4bdf2245a25d py3k +75450 9e42cc192a44659f482b8770aabf3d2d7ef48b87 legacy-trunk +75451 7600436db2a9b869b9f030f4b68e0f7c8e91d4fc py3k +75452 26b11e6fe5e31c67ebff88cfe69c4de0ae83c8ce release31-maint +75453 3658c0a958922af926f3997674fb1fc7c757d81d legacy-trunk +75454 624f81b5ec24f773bb01f079465d8dc7abe5bcd7 legacy-trunk +75455 7d71c51fc308c1b2653b9f23d37c41e459a17544 py3k +75456 5ea6cd2839cc7c10276e9a275c16f502d99a7534 legacy-trunk +75457 9c06c730976566c4ed9a9111b9eadfb7a908b0f1 legacy-trunk +75458 5299579f579a854afb8e0717332304dca7e26c69 legacy-trunk +75459 4c1ff7b2482ee18a4e98f003bcf59e8692574896 legacy-trunk +75461 a1088bb4fcf8a6d213467ef818408db0bd81978f legacy-trunk +75462 2048d04deab42c555b835ba7b419d4a28d9c192c legacy-trunk +75463 81433a676a8bafe1fe365f9dc380b22afd5b9b0c legacy-trunk +75465 b818a7a70a477811a1f10a43bbcffe44ed55c74b legacy-trunk +75466 9f053e550c97768b0fadf8295b0246d3d4316626 legacy-trunk +75467 993207dce3955b408f6a6a25158519d6098945bb legacy-trunk +75468 007505cc1e2c7356f64ad5eff4dae6b54d9d2895 legacy-trunk +75470 ac3c632e1c13c31c660b79223ff73e993c50f083 legacy-trunk +75471 e6deb15c5ae6a06fc1d46a91b32747f7df661bef py3k +75472 354fa561aadf6cda10568ca598e3a4107ce3cb72 py3k +75473 49e3d4ac69c6f980c35355b005c81748f239deec release31-maint +75474 8a6b61484a984b8a8fd189707aabfab57d69d04e legacy-trunk +75475 c37ca9acd1f9aacb9eeb380f1792c463dfa96a31 release26-maint +75476 30bb4c35559d61651e751e71825744cfccb75d51 py3k +75477 d079877da335e63828f97794653e8113acb5392b release31-maint +75478 84c16808ba2c81da2eebcc0bcdae27dc580370d8 legacy-trunk +75479 d944400114e500d5c629a5feeef33bb582c58579 release26-maint +75480 aa53a2d4ef2fcbe9b38a051b6b78ae7a67894f61 release26-maint +75481 5e7c5c94c5721a16b97c23ccda30147820f01855 legacy-trunk +75482 349c0337896a272f606f90ee66e06a860261777f legacy-trunk +75483 ed7dec136430fe55b65b9bfb738b73f7a184712e release26-maint +75484 777bd5dd1d9ac541a2a3a937fba9268c9bf2e3a5 legacy-trunk +75485 e67eb966004179febdbf98741aaf3e8df2102aac legacy-trunk +75486 77ecc5e4f664c71424e4d51aa5f1363a16092cb1 legacy-trunk +75487 2928f1e8b385815423ad2e89b5d8c90171052060 py3k +75488 cb53b1fa7206f2f520505279d5d85544eb6bfc3d py3k +75489 3dbc6207cbf6de4ffa51ca0b9c97db12de038635 legacy-trunk +75490 893c2a4c9544455f798718801e9f87a21def0496 release26-maint +75491 de2d99aa46eaff483a9f5cab290271a1de4e5666 py3k +75492 2b6359709188b11b69f317eb0edd3cdd4b01e962 release31-maint +75493 098ba3a63730ca6d764bbadf59f0cfa74bc61001 py3k +75494 5397002f7e5e8fb918121d0d0f60374725cf7c8f release31-maint +75495 0f9e8d3ecac38c576070f555529a79f6922c1d58 py3k +75496 2c60ac4ed65f6900b84abaacc9a9243be434bae2 py3k +75497 ea1fdafbe4fe2458ac17287e0d6c709ed00fce5c release26-maint +75498 bfe756eb09faad05e7ad0a9a5a08dc67be13fbaf release26-maint +75499 a0e41dfb972b51878339cfab1f1749d905bf5ed7 legacy-trunk +75500 386414b846ebccdcc784ed5d770130cce6523dde py3k +75501 25ef6f4818a057894bd9d770ff974897c0856417 legacy-trunk +75503 06999253987bb5385e71972e50ada6510343f915 legacy-trunk +75504 2a6853a13a2f797d9b842fc26098172de708a44c py3k +75505 3ccd1d6f05a6b5c70c5a5d98f4f3c4a118660b14 release31-maint +75506 d1666cc7bc74f3ad9fe4fcf1f0b8e491e9dba52a legacy-trunk +75507 d89e4a4e0b207fdb40c6f9927583cadb95406f11 release26-maint +75508 ed99026e07fcdde886c7a1c407afa99e3085d7d7 py3k +75510 79cb07fa36ec10e003c6a0563a91ceedcc18ac2f legacy-trunk +75511 6749c8adc49857cddc21eed6c7def06eb8c6a762 release26-maint +75512 e644ee4e76c7bcf7ac1f4e5557c1654fc003e3da py3k +75513 f4263a9bd8adda73ad4a545b21ad56b31938c00a py3k +75514 9825ec228efb12cb2bf67813b6978cf2614b51ef release31-maint +75515 371937ba6fa62cb0bc8f5776ce69d86c14f6878b release26-maint +75516 d8a7b314fc505012539fbde5d1d5ca38d528ce29 release26-maint +75517 71880029fe7562a4380e20ca9de1ba32389f1d19 release26-maint +75518 f30667cd4043c43b89e034890e8b04668ce40f78 legacy-trunk +75519 160f16a91ee7385a50b36a13f1abd2583b3825c6 py3k +75520 bd6dee6a78c395ec617eb41f26bbad10a6e87fad release26-maint +75521 42303c8cab315ebe70a9bc4c8b111c71e4726bfd release31-maint +75522 4a9542accd13345e75e0bffd97df55cfe185a650 py3k +75523 670e222afd4817d38ae1bb8e96496d74d2494564 release31-maint +75524 3daacd98925d7867778095217dfa7a71756da3b5 legacy-trunk +75525 73272bd94d7b03a19978ade84fbf008971bc6819 py3k +75526 34182f98589b8c9a2390b906a36f736b7004a793 py3k +75527 f74030ba661088f6e292079a0798ca9d96b24b2a release31-maint +75528 90c10dcb29133922218a7e1d6d29e24896187076 legacy-trunk +75529 43d0b47106df8b8eeded8579f1f647cd8d103f97 legacy-trunk +75530 5541e42e1c811d1dbe46e393e3723a0a64c4d9fa py3k +75531 85685e7d72c7184bc6b739a582d0ea8cfe1b1be9 legacy-trunk +75532 54031ece43a33aca16dc09f32a12477e3ea6b56b legacy-trunk +75533 caf3c93d01936a4b2e47ae62e85e78cf59aa55f2 py3k +75534 e6c4dbb5db02e508a49e797faf9346360503190c release31-maint +75535 7ad6e78a9c7dcdb156deda2cc455a268c825f6e3 py3k +75536 cec7f4c5854414290f756e560437799af776b90f release31-maint +75537 edf22637bd908d37c974085916d6b79664e71e1f py3k +75538 2f14b0f4551af2a2900737ec1b49ed164a5dbd48 py3k +75539 91ee81f1a5242b66e5bc9f5e526000f623bef9c6 py3k +75541 7ae6d5e4f79835e7b407f8a72d08af327c23d268 release31-maint +75542 95bd70d5d715cf08db531d5e7c720a95cdfd7dd9 py3k +75551 bdc390721f975c8d9f610e3af854094069b7eabc legacy-trunk +75556 a21998893b1de4663dbef1b8d9d07e2957e48030 py3k +75557 941f1be423aa18871ebd9f51ada1e36ef1dd0092 release31-maint +75561 1b602a2d81ef518b7e287242a1672b56e1dc80cf legacy-trunk +75562 6e4a490e714713ec04a7e45813c50c0685d8df4d py3k +75563 26007395607e89dc3f9961109848c0c30b3df1aa release31-maint +75570 12079c3d4b779cccfbf2e3ad305b193ce37eea95 legacy-trunk +75571 bf7624120ec7fe1aae086bda0be238960ee3ed8a py3k +75572 0299951391e36ad2315dd40f5f4f5843af73f419 legacy-trunk +75573 b3befe0f2b8ddc2de47bf33fa3958dd6cc390f2d py3k +75574 3cfd20cd6459f5cc42fcba1f062c84b7f32076e5 legacy-trunk +75576 17ce94aee7046ab90f2814bf36749c47a9cc3d12 py3k +75577 1e7035fa6154c6f65f060f6d9a52c3b1294588e9 py3k +75578 29b3e126c0c24672f7f438a148ec5c38681330eb release31-maint +75580 1b944497e81e1dbfdf25820d5e5c70891995055f legacy-trunk +75581 8c1b61e7463a41f7f1d7e6c689040bac275c2550 py3k +75584 5d8b2d6dcd6229dea2c4b57f18dc4b9527607375 release26-maint +75586 716ec3ed3fcf8faf5e3db8ba5af193912014ac13 legacy-trunk +75586 414e03c148159f49bd6debfe5ca8bbcd8fde0797 py3k +75589 ebe19c4c71f5706c97e2ba7b83aa83e7872e6a96 legacy-trunk +75590 a9ba637d4dcd375654c4bc2014c3904e2219da69 legacy-trunk +75591 978349c074ce0828bf55c01a2aa1e60433602057 legacy-trunk +75592 fe85ef27dc4791e66df54c9d17095457564b6bb0 legacy-trunk +75593 5de1ac242bfb563f445f736b5648d75f8aa17cec legacy-trunk +75594 58bda1205acd9d891c34e389857c4fb2bac7007a legacy-trunk +75595 0ba9b217181ed8c560583c98f90e9c6ae2ed2d43 legacy-trunk +75596 3c26c6b4db500b7ccaf40f11be50f8fb4d83b378 legacy-trunk +75600 07ef59766b026e0321498e6324a018154f2bafe1 legacy-trunk +75601 27eaac07c5d6a89a1a61a07676543ee80dda6edd py3k +75602 f55568b399256c27318378a1decd7294f72358b0 legacy-trunk +75603 0653486935b64168de344d0a520686a01bd809cb legacy-trunk +75604 bacd4d42256b6678f858109d4fb711bc43300e7f legacy-trunk +75605 72a5fc790d01fc232286bec7786c7fda876ddd74 legacy-trunk +75606 8a58a7ec92dc56d69fd89b5a5a4a278db535213f legacy-trunk +75607 4cfaf6aec5ebc559905f29c64e8f7b53fb3d3a15 legacy-trunk +75609 c4388e7e77e9f66f64120601cf60e77841cb2a42 py3k +75610 569a0d170fac72034522db68e4954ae9d5c84d73 legacy-trunk +75611 1b888343013911fdfb6e35579f0a12c49e7c7ad1 legacy-trunk +75612 a17b58a486f40b5851c6496e30252cf93c5315cd legacy-trunk +75613 9ffa1513098465315e7c9755f661fc5d7ffe95fe legacy-trunk +75615 68279c133fd9922d461760661ff029d292797068 py3k +75616 321e635c9ab826a8afa5f3f468d056456539225c legacy-trunk +75617 f3b7bd6e7add9fa717f111c8e3692491f2ada4e4 legacy-trunk +75620 db21c3c009db393ce27d9737a1181a26089b6d29 legacy-trunk +75621 3c0664480f7a160be3a403d7ca1744f4419ae527 release26-maint +75622 881958da219a7a34d8017df1131c42d2c165dd17 py3k +75623 6d272fd1cdd1e7b45cdbd28478d19f9de5e070e2 legacy-trunk +75624 92dde282153def54b4649d0d478239bc74f89123 legacy-trunk +75625 9eb79e94204d265c89f47938f91fe5837404afb8 py3k +75626 620085ab495b4164841a31e3791beff1205d837b release31-maint +75627 b11f02cb11244f7d2f55eea15cda5a6f63e699bc legacy-trunk +75633 9df33937171f6516cb50711c3453bb947fe3cbef legacy-trunk +75634 f091444deea01040ff2f83b8e0bf016ebd956b2e py3k +75635 96d6c146cfa91761a85bf3642356cd31b1a865b1 release31-maint +75640 f38dabf240cbaec4153f4c47da5e89bfe2297c6e legacy-trunk +75641 35bb433867344fe327be713fad80fa704d0be39a py3k +75642 161d332afc884d7a74724bcb4d90440b13673189 release31-maint +75647 80f2293fd66ac851b6a485e7801487a6ddbc667d legacy-trunk +75648 10e72939d2cf9166db5d8a307af98f1d2c3dd5b9 legacy-trunk +75649 9a91d452a0f88f7e865fa62a27abed2ea64745ef py3k +75650 2f307c7adb8fc5b107752721ffec42214158f003 legacy-trunk +75651 2146bbdf4ed7da38b9d2d0e02b615d06ac133aa4 legacy-trunk +75652 0c9cfc7f1e95b77f5c8c875cbbf36aceb844895d py3k +75653 eb925adba8f9014c4c21e3b4f4c592c90d5f8d4b legacy-trunk +75654 264609fbda4815637b58ac45b9b44ed401c14e74 legacy-trunk +75655 ae02b168162ce8f4ddea2140a162498c23b10d44 legacy-trunk +75656 c704750e6f3e5b0506e174cd2fa4a6c9fb497a24 py3k +75657 6d29ce9dca902da3f21ecb0751f214616d5fbb1c legacy-trunk +75658 2ab08c91964824cf05ac95c85badd39cae7fcc72 legacy-trunk +75659 24d43a9142d25af0eb2023d40029f91b93f57de4 legacy-trunk +75660 dabe1f92ca27437779a1837837cf3eb740cde2b4 legacy-trunk +75661 72066e5b94217e1386a985658f3784e90ac41c2e py3k +75662 cbe393fa44f9628877b330e72e7c24938c124ea9 py3k +75663 567b0f34b1eb13e3232f713eaa2e96e8ffbf7cb2 release31-maint +75664 06e6636618d721b83d441dcfa69cfd7c2951527e legacy-trunk +75665 cc88a703428d011f2ba84fe3e39c56fa5cfc0957 py3k +75666 aacee9749d15435a971c7946bfd0c07e83be502b legacy-trunk +75667 92f0a1ca4e986843d3cb1672f6b5512213689917 py3k +75668 0c38408ad819e0e4b2471b33dac6e6266ec044f3 py3k +75669 b2c8b984250aaf9179c31119622fdbc7bd397dde legacy-trunk +75670 4d65f122b2b3b7f4fadae4e0e51833b01181933a legacy-trunk +75671 dad22a1ed28b2f6f5b571c87d6d79fcc7aebb4a4 legacy-trunk +75672 5cf3243315b5bb8a8b7e03a74e3985bdc20816a5 legacy-trunk +75673 f021991ecf8d6b31e0ffd9f06529e173a32226bd py3k +75675 edf35c3a48ab8b24a2b5760a16c77ea04ed72b98 legacy-trunk +75676 43d47cb6688cfde0995096c96d433e4c832f5c93 py3k +75677 cb721c3195fc74df732d292c4957bbdc7dacb29c release26-maint +75678 14b55a4e8725ac8c33443e66620bd3da824a6964 py3k +75680 b54da5caab3650501166a1396d7701bf2f8b6675 py3k +75682 0c1238cabe9215ebcdda5e1e97e25aa00686f090 py3k +75684 f5c563a7de75d392cb24e92b151763849ee603f0 py3k +75686 6ca642d4f42fd5f87054668e1c10c7ab0805a347 py3k +75687 c71ba5d1f17d22f16875cfef1927b3e6fae3dd8e py3k +75696 d3f6fbebeac903d5397e091194374eb11b112119 legacy-trunk +75697 fbe6b265bd1a0953b687f2729e84d141351b8103 legacy-trunk +75698 4834a4285411b9123977472fd604fb5051eefa67 py3k +75699 a353e108c7e4239d4a39648f5d827511dc542964 release26-maint +75700 97736c7890a6b536acba4802ed690270a58c4c9f release31-maint +75701 dd466ac192be9defd90ebf36e8f1b1b4a869e5e4 release31-maint +75702 8ac907015605955e3c90642188378e3931e68441 release31-maint +75703 f8e65ca3fd39cd0b3e19d9610f495e5f5627ad28 py3k +75704 cb9c57e2ebd347930f0209f4c29b430121128164 py3k +75705 a3cb812d80f9076c5b3a034a288f931aa036fa0f release31-maint +75706 8803c3d61da275c71cabe9e9d0274dac9902e2c0 release26-maint +75707 ec4a1b4ecb31408844af84c67224fd501b53b481 release26-maint +75708 b519608a9701f0108e7a16183cddd5ef31d35bce release31-maint +75709 7b603680bf295a200244d0a4d63e584e72f321e0 py3k +75710 d3cf8eb87274a6c64f162c794f4d5be1acdf15c6 py3k +75711 76c66690d1eea5376e928891903fb5acfa268b7b legacy-trunk +75712 8eff759d080f9db1d7bd7bf38a68a5aa883f6315 py3k +75713 971393f60bd874dc48165bbd7ad486247005020d release31-maint +75714 6e4d8968e24696bda928f945f304d55ce1a50eee legacy-trunk +75715 7dc57b991d83bddd2c5f52ad6d608e75fac8f5ca py3k +75716 f598843f3695bccc1f8c309c9ecd631efa088aa3 py3k +75717 095af99e6b640f527784587ab6b9de2a9f981ed0 legacy-trunk +75718 38a5754b303771d815d43f50b3e278a87520f506 legacy-trunk +75719 f4c7fd85f23240964a41342e9c6815f90106c077 py3k +75720 38fda3a42c0b3f58f6a76cc1214b7ef90e509ec9 legacy-trunk +75721 da96b3feaf525b761fca64f29f1da49d4abc3efb py3k +75722 74472da09f6cddeb8519f76e67cd8a5b4115737e legacy-trunk +75723 b55c2eee348b563661d610c9cbdb764f2d6474fe py3k +75725 f3bf92cd119174c39c0a687e7fcf5421fac28ad0 legacy-trunk +75726 450105dd9ca7453dc3c0a7d220692b878c27ac36 py3k +75727 6da0ae680fb602dcfa69c4b603679ae692ff6ba8 release31-maint +75728 03e1dbe2f4d59c8389ea452485dcf80a6aebe543 legacy-trunk +75729 b5041756fd9143c805bd5bb5e95d1aaa32454558 py3k +75730 41be2c69619b2c6c67102ec7ba8affe583b18f1d legacy-trunk +75731 c56419cbdd48643719cd339910b7e08c8d24eab1 legacy-trunk +75732 6d2396ea7b03b44b747fb1c425fd9031989ca2e3 py3k +75733 e55ffb87cb702cc5f3569b088756c6060a0650a8 py3k +75737 4cbea9e78356818131afa874bc2acf96000c1d08 py3k +75738 5a8e81594f0f161e383b8372029a18b953b13643 py3k +75739 0b1a088012c74a217c6d9726edc35e0b296978c3 legacy-trunk +75740 8755006edf973dcab56a24e8a8e3b20bf22f1260 py3k +75741 896f94541f72ef35bae151d301f175ff7c33ffd8 py3k +75742 42252d6d1030a2c2f24b7e87545d67cb43a08081 legacy-trunk +75743 a778171c93de5ec69b1c38f580d87208f834f50f legacy-trunk +75744 be54b404879e65ae9516f9bc8068077e3330764a py3k +75745 91a0c3c602094e51aafb939201423779caebcb5e legacy-trunk +75746 55d8a9117de780ff9b9aec2b9f8ebbe773a1cff0 py3k +75747 19a832b8464a2ef9013f8907cc3416bdbba0c403 release26-maint +75748 4169d3cecb9dcd272969c475025292ba46091008 release26-maint +75749 2abc3b4bce7cf56a5ea4eb9ff8d42327ca693183 release26-maint +75750 17acdd659ee9e50f0dc9a28ff94a19a0d780ce29 release26-maint +75751 a0ef4ef5fc8875abf75344267c26367c3825cb39 release26-maint +75752 f9cfea2015b20a61497fef0f50cb94b921e2c768 release31-maint +75753 81781d1e2fb9cd2814e9f881e1aed6b0845a05a2 release26-maint +75754 c1c0a0c7f7bc3024f5895fc8636d8386d3237d65 release26-maint +75755 524526745f2e9947e50c5e432d2d4ecccd64bd8b release26-maint +75756 fac4e3fd747acf2c91708bac9a2d0b47af7301ba release26-maint +75757 250bc8242e7eabfe45fdd80b632767d82391d730 release26-maint +75758 3d540469585be83b8c01b046a478e1a3750b8996 release26-maint +75759 8309ad6ae4c0e788a243cc4429144be6953fea75 release26-maint +75760 c7dcc223f925d39461b1e879cd7647386a49c097 release26-maint +75761 3553954387fa5b2665dc1f87ad46b932c80ca950 release26-maint +75762 26ec8dbd6f697eef3dd87f1873854386a922dc38 release26-maint +75763 b718f3188c76fdc39b239f224c4daa59a4045839 release26-maint +75764 47e2c14b15033503d137898208dd825a3b6dcaea release26-maint +75765 ccbf7ebef4751272fc1bdcf540b7f3756337c44f release26-maint +75766 c7637b66b34bbe37a2fde76e46c7954d92732b96 release26-maint +75767 0dd5d3672134d8e5a2b11617e5efbb4a57b62128 release26-maint +75768 f00ccf8e135e10a3a25cbd8b7665751fd7c76faf release26-maint +75769 e3e53b89c17842953311e9f27a64bf4a2436a51c release26-maint +75770 6d42f1eef45d9dbe765156310b792641f8d1a802 release26-maint +75771 bb8188736a29b4a64140f115743fa7275cd3f5b1 release26-maint +75772 786ababa462d1e74d683b5f36f8126db63f4b60b release26-maint +75773 c8630f73090718eb26d1e67a8a207a1374daa246 release26-maint +75774 1314727c09ae7a69354c975a94e9670f308c7f7c release26-maint +75775 096b42ccb258f5c63d0dfff096559c5d92aee007 release26-maint +75776 8adf8ef7a4dbaac8a0c80be3c05b4e1c534b692d release26-maint +75777 07e3c0b41d5003cc5a856a792743b09fc0668bdd release26-maint +75778 68f7288d155ce3c17fe23ff7fa01bcf80965adfa release26-maint +75779 0d51a5d56b5a22159dc6d0bfb5f9d8329ff7f934 release26-maint +75780 a1b0936b027cf3f06a9e4e590689c4da6cc692ca release26-maint +75781 5d93c754057cf26675c0f4c64312243f800816b8 release26-maint +75782 127d623396ab93ac97a05b1de41090c93cc60d2c release26-maint +75783 fab660c2ef8887bcc8b39fb080def48afc5d2212 release26-maint +75784 66de7111230ab45d4936fb32854b99d54cf93681 release26-maint +75785 6b05d48cca287206320336912bf6446855106796 release26-maint +75786 3e15a07a32faf9d404cf22e6c4680e163588dab0 release26-maint +75787 9b24d010133f0a612f29c3c36214dffda52f16ba release26-maint +75788 85aa706f7126d21140699910f877f09391712511 release26-maint +75789 48521233bd6e8d4d9e247066e1ffb4d28c5f984d release26-maint +75790 c4c429b08a5759922b12c587984eee4cbc30dd0f release26-maint +75791 ef319474937700038f4a14f868114640de170b8d release26-maint +75792 b7b8970cd5a576404d4e8203040605578a398f50 release26-maint +75793 2885250ba5f49f55dfae7c9098974a980f1acbba release26-maint +75794 402dadc7b4a862423eee11b459b261e7393514b7 release26-maint +75795 1d68b1dc410936fb8721e88e8467136d72533200 legacy-trunk +75796 8d9ef5a79bc7a59318d52afa44b57a9e538d6d95 release26-maint +75797 30359c33b6f677f0c4c548657327398774343c5e py3k +75798 97d7cd365dd5344f51a590d9f25229fb1d692a5d release26-maint +75799 598b9bee74ec882c2fb21025deb723ce018eb701 release26-maint +75800 7284507badb2a0975f18d78a1f84f8d82cedc539 release26-maint +75801 81b63ab6d45fb4b3f07d63058d66b06d3c07fbc8 release26-maint +75802 5b295330830a096864f97dacf1d53db48484523d release26-maint +75803 e9408cb3e274e1502530ec35b770456c1af5faad release26-maint +75804 bd776e01993acb91a0089dfa84dd0701aa6cd944 release26-maint +75805 9ed8991a9141c64090dc25c9619b78050339b762 release26-maint +75806 670caa9775f60ab3de56622fffce909f5d2299d2 release26-maint +75807 764ae2ec4a70631b234060aeb543c0cc1e5b86e9 release31-maint +75808 a05e1a57363d75a117e2e0658c50b7ba5a07166f release31-maint +75809 be5348b054b4f5c0a1d826c07eec597e7586d3a8 release26-maint +75810 00e45d21f25bf85a47bbc4b2210fcd7db61cc679 release26-maint +75811 1c32b95fe578e70bf5452b071dcb9baa6a24e27c release26-maint +75812 b97e8cebe8eda5d1bc24c28edac1ec4b2401e415 release31-maint +75813 e50ba2a819736729127ff97c63836e6a450d10f8 release26-maint +75814 e4bcfe2e6d576c0e7b210ef6d3e93e932b22cf36 release31-maint +75815 097c360b4ba59a1c9c14087a1b68ebc8ea8e6196 release26-maint +75816 604db9a83d1877e3c6aaa01964fa5ba992c75338 release31-maint +75817 ef08253f290babf11b14c80a8183eb1a98d337b5 release31-maint +75818 3a992292ccd85f16f4c679067978a6fdc6e47309 legacy-trunk +75819 25bc3d69e8afe30156dc5dda34693bbe3cbf7af1 release26-maint +75820 19f76faba9654ddfdd3c56285a9b7e7ac20ce35c py3k +75821 86531de75894f1fa224e734ba0e954de6e29c741 release31-maint +75822 59505e7e70732a1eb29cd179bbb72b3520255b84 release26-maint +75823 e4731fd27d916805148232ce5689cd91d4b962e9 release26-maint +75824 e99adfc92dc2ef57311523e44c87b6b12519bcd9 legacy-trunk +75825 35962b5415957edd306f86fc909fc8d75c642a35 release31-maint +75826 42fd7855347e8591a41da3f491e0b00a034de386 legacy-trunk +75827 632ddb275321de25af7bfac0b738a9de099d9cb2 release31-maint +75828 f8fa3680c5d35582252dec1926968c88bf0f6b0b release26-maint +75829 629d45ba46d79cf30f40561b48fca4a47bc55301 release26-maint +75830 e1bbc6232f29d0a389123951553161d3fe785fed release31-maint +75831 f8ed8440cdb45fa1b3f4d3fbe6b5069703ab6a32 release31-maint +75832 1075179451b563b759111fd8d24336cb5c37ae5e release26-maint +75833 ae94f68553100c086c772b44b032a4af0847779d release31-maint +75834 b40fa826e1cf0d8c3a7e7e7bbc5f3470bd1de858 py3k +75835 580ac15116523c1ddab125d92e9b7ff40d703413 release31-maint +75836 8a774afe990090b99a915145bb3f479cf8640644 py3k +75837 c7ff2fcd2b6bf0e7e96f65b7746120510efce893 release26-maint +75838 269f1d9c86cd226a288fd2791a4be651a0e8beb6 legacy-trunk +75839 8fb8fd3b67cf64388716d76d3f2b8a70e361bd43 py3k +75840 936aaa12492c706b31f0ca114703d5c6dcb95fc9 release26-maint +75842 b31fcbab0520c483c50a56d15e55eb639f5cb72b legacy-trunk +75843 955d8fa12ad54b5acb8600af302238a489e78a9e py3k +75844 5c5414a8c7c247169bbe5674c025b6768b6d9e22 legacy-trunk +75845 e1d412489107b530a6757a64b572b558b03916c9 py3k +75846 140d88d1b1798fb2f7c85c24fa380868ca31661b legacy-trunk +75847 e259b34a0b88144279377740601e6aec987c4413 py3k +75848 11fc160d53c4dca51f5b7a552cc91edf1e925865 release26-maint +75849 43bff6903aa5a354bc0785b82c752e651275cc6a legacy-trunk +75850 d7cc0eb3f234f840c6f09f904ca809dde48264f6 py3k +75851 5f61bd3aa427b22dc890736e537029226009ae4f legacy-trunk +75852 e4bfbe9b74c89292e489ed342ee0521ee2c51257 py3k +75853 d9d69060f5e4bdc3c11defc0a66dde6ca0dd83ed release31-maint +75854 1bda4602f939a2f3d1217c967c79d6b10446e2e7 release26-maint +75855 5c88779473b9296384d49d1ec3209cafd0ea3518 legacy-trunk +75856 af78fda57af864f9e8e5d16d02598930379f372e py3k +75857 021d3a38bd36a4a07842a7aa804bd07c28772b16 release31-maint +75858 029d69659b5f99548ff4e8c72e09ba258bc9b77a release31-maint +75859 cef5cb270fdf7c966c62a512852f734f07976a4d release31-maint +75860 0df47b1b30b8a07981995cbb3d6cb4d7c7ecb6fc legacy-trunk +75861 8141ec81ad2d3888f2399bbc6e8c07bccc8b5a70 py3k +75862 70eb6a13abcd6856605cfbcb264a6facb3405e6c release31-maint +75863 b085fd0611de0e81f1e7de11cc744f534b4deaba release31-maint +75864 2f1c52d9feecada24b725f32ab43f184b5836b37 release31-maint +75866 9899eca9c857d91d52eb703d47d2b5c4886e5b2d legacy-trunk +75867 185204d541fe56e3168e51c12aac086aa0695983 legacy-trunk +75868 411b6acbcf12e762728953a04d5aa3517901cac6 legacy-trunk +75869 b4baec1e6a0c338afe1da4c90334fc238746670e py3k +75870 f5c72aca6b60a3b056d211a20ce1869f29b8c59f py3k +75871 3ae4d3667920fc34aaf3956a112ede3969e6794e legacy-trunk +75872 fb1bfa9cabf33bc6e484cd653c1a07edf4391a80 release26-maint +75873 45a27f961aa1df4e97e76c3bc60041f40d247895 py3k +75874 204f33d42762b241358b216e69f3da54dfdba833 legacy-trunk +75875 3959fa109718ec37f0f10343e3a81f73fd8f31e4 release31-maint +75876 c9268fea81049127ec536143d9f16760af6b3b38 py3k +75877 bec266f6d5081e2595ccaef9a0a5ceab9b636bb5 py3k +75878 b6cc0134af3140e116db150436c3b3c2303f5357 release31-maint +75879 21a3f83d99abf7d7a9ea61e127e0bddcedd02a5a legacy-trunk +75880 128daf6699cca28d3337efb4d85c56e36496485e release26-maint +75881 3927e0e13824126e731243edf77dcc3ec3aff7ba py3k +75882 158b211e6fa8c1c88b6f126426481c82f1fe9407 release31-maint +75883 f10104051339b8ab67715c4f51bff864103fa9a8 legacy-trunk +75884 44f64472e9221b7ec396a399be6f5158ce0a1204 release26-maint +75885 124389f4ebadc39c58c401e28e5618c4c0e2684d py3k +75886 690c565c15a9e1ff22cf1f872a279ed9a2e67e40 release31-maint +75887 6949ce78c065581e83cc0a72569a9d62ea7e5d4b legacy-trunk +75888 7e66ffdbcbeffbf6a42fe899a5ddfbf69589a6b0 release26-maint +75889 d0d7e15b49535a0090cdfde666a3060aeefd2c6d py3k +75890 5e4d1b4f62fa1d08785fbb8d1b58084de79ff979 py3k +75891 ad61129c442225692dc250b4dba66d9df6303ad1 release31-maint +75892 e1dca972fa35d31a546cb708f667a8daf7a6c23c release31-maint +75893 fc5a7718433a8544f1ee533069350845ad79c52d legacy-trunk +75894 64ad3650794466e84ccc522b3dc901682bde3eec release26-maint +75895 17779a94e825086b6631cfeb7f303dfa97cff6a3 py3k +75896 0f29aa2d4844f717479fb982b041e9b5b52c2346 release31-maint +75897 71574fe495767b1187417f706c66c7f271149d22 release26-maint +75898 03d76bdf9362aa542f39d00586bda13d70778163 release26-maint +75899 9e24fd6a55f08ea57271b3a05b646eb5b83444ce release26-maint +75900 044a68bc0d2efb9623e26b360b7cfedc12e9e18c release26-maint +75901 c18224988bb1c86f8445f7c07b286c2fddf156f5 legacy-trunk +75902 cd9f72fba53b0315035742790681fabfa632fe8d release26-maint +75903 ef6ab5d0a006a9bc1dcd0324fa799e738c8a0dfb py3k +75904 52b27c0816868a8055f6252df35d163565d759d3 release31-maint +75905 aafa66c57444e3b25cafed01bb0f7aa9c9b83b7e legacy-trunk +75906 1e9eec73447f28a0d0eb6e1a3140643fe4b12a8a release26-maint +75907 90c7146ddf4219f943343d1120120c81f1ae20e7 py3k +75908 76d0421438ac36f4a5c39afd2e68d3ca9215af7d release31-maint +75909 e7ce251b3bfb6d4d165b260ea16dc0fe3201a4d5 legacy-trunk +75910 e750b90bd982b3352ac887c748720d96ac731abd release26-maint +75911 44de3a4024014598e4f4a0bd5bb9264a172da423 py3k +75912 a1dec57bea5dc260517f63b7e9b5d77f2c60a7b9 release31-maint +75913 2a961d7f2028bb35183fd66b4524a2d445b5b7d1 legacy-trunk +75914 84b8a2b8e9ae51e00962ecfcd3295c35a00505ab py3k +75915 b6be3002d3ca2ec7d4f216476fb7f752df5a12ac release26-maint +75920 2147c2ebced8593d66be8ddcd57cbcdc9da996be legacy-trunk +75921 20e21c155c0562f64fa73ad3237370b97f0c0d21 release26-maint +75922 066685f6983ad40edb2aaa51e336d34164dbb970 py3k +75923 a795529b09c966a27efa41f276182a49d341e33f release31-maint +75927 9e82f17b2c8da2303f9dcc14d35df3b6c5e7adbe release31-maint +75928 db4dfdc74029ad984652c1352061f1d020e7ded6 py3k +75929 8402e477eb487dd4d029139c9922c6f1e0e21b40 legacy-trunk +75929 e358af2569b98c13a4788660dcbe7af57b2a5186 release26-maint +75929 448909a940c04da03b39f58d3eaf7492336fcb83 py3k +75930 f32dc84a876cc5991b67f9b8e78df6ca9401911f release31-maint +75931 844180b7e6ff0e0fa87252b43f24337f8940fdc2 legacy-trunk +75932 c715f82555a4c93496ea82b94c1b7fc81db17e88 py3k +75933 e809982629c4d83df7207b66ca66990c78c275c5 release26-maint +75934 032d9749047d7e13de6352ac60944e6cb5deec89 release26-maint +75935 b571c6685229f3c0818349aefb648ca080642ded legacy-trunk +75936 3cfecbc7ae95a7f6298092cd2870d27ff24991cc release26-maint +75937 8cff949323c9e66bc18dce924e49c4bda771f993 py3k +75938 b009a387699b32d1c44aca2cb92defaa1de4c84d release31-maint +75939 55e508e2535c9a334828f204546afe93f17530b2 legacy-trunk +75940 ffc7d9ea24d9022ff6e76dbacc70c22637d72ee4 release26-maint +75941 aaa2b07c2c4258b41470d53fc8685344ecb96d1e py3k +75942 05fd48dc2ada9bf0bf19516393e1241f960ab002 release31-maint +75943 15f1872407be2646a101fdb4d4c14b9746f62c42 legacy-trunk +75944 63eb2883926b2d5b8024b5204612da3f0dfc56ea legacy-trunk +75945 d5a34ef2fca7c321174cc0a34b94d6928c601b2f legacy-trunk +75946 53e38005d507c4ba7eb6ccff39fbdfd1148ba2e3 release26-maint +75947 ebddced2c9c4d4845d09006165ebdeb8596d6693 py3k +75948 0ed4bf430d4e5ee0a7b8abb1bc518eff81b0b9d7 release31-maint +75952 c6d62340aebf0c3190f596323d4d0233e2defbb5 legacy-trunk +75953 e665d2170e852b19d609b22fea94302e63fda62a legacy-trunk +75954 5f5e3c7da8cb45fe74a1cc137d4d179f476b437f legacy-trunk +75955 7e02371aa50602f098154ca59835c0679b986595 legacy-trunk +75956 411f252a294a4fe2186616c7b247f7c33c8003b4 legacy-trunk +75957 9ddbd69815ca7a096c741f865dc74449fd71c281 legacy-trunk +75958 29fe5e7bd6ee1900a853101bfc2a2e10e51f233d legacy-trunk +75959 6cf84e5a6dd7e55588f53d7c6728a4c516e3243d py3k +75960 e11d2467d126797b9f3dea78e24180fb92010a54 legacy-trunk +75961 713e21a5471ed763642c8560fbda398d50cc40d6 py3k +75962 acafa5142bf918f460f71a77b869ad02dea1bec0 legacy-trunk +75963 c146925234f03ac09c4f0eb51335bf6a07b40148 legacy-trunk +75964 a183c82b628947cfe3987fdc59459e6c0300468e py3k +75965 e87a6698a305a64501276709a6cf9e424d2a8a06 py3k +75966 fd218ab0e22efe53b8314dcba9a8c3a2bf9dd7c7 py3k +75967 33861ca1fb2b11816023cd3d73a99a3e537f5a43 legacy-trunk +75968 056470468fe29e18ef1e2a473f4a2249e0be95f3 py3k +75969 d56b103490a55b003bcad662f487d7940178bd99 legacy-trunk +75970 bf93e4df7bfb1e63249258364fa280ae71abeede py3k +75971 8d36deb356f19f4b8c803ef903a9e971e9e42d1d legacy-trunk +75974 7c86993b13c9fd74d421a74cb833483ff256188d legacy-trunk +75975 b4e9339b499d5525ac5ed54099fff9e2407add87 release26-maint +75976 fcf8a486792063de65b02a147c39c5065ddeb3f3 py3k +75977 6cb53248e5be4b06b35bfd1d33dea9f542924dab py3k +75978 6a6f32b0fabd0d8ed33fcc1537f65f4a0c46c25c release31-maint +75979 bab3e3cd76f1d5245116e27cc0791e75f2dc921d legacy-trunk +75980 17dc0b53b48edb1ae1c0898e51ddb41baa1aaa6d release26-maint +75981 182fe0af604e35af6b1b6233d7763bfad60af13f py3k +75982 f594313b93645ab24f812f07797e94da3b9ea933 legacy-trunk +75983 fb498a0de0b95ab61af3dc12190c14f7f9c60a34 release26-maint +75984 5a99003c9b83d842f1b9959f33268bfc6ea80a68 py3k +75985 264a735a8af776797dcbd1b07fa724cfd559c98a release31-maint +75986 e9b87756ad3b3c29e89b2c9293d296b4c06d4f30 legacy-trunk +75987 7ecd3e3c95642710d901f2586e708d311ea591af release26-maint +75988 8d67725cbb4e35d8d850a34a4558b95c859645c1 py3k +75989 7049b2c86f0610d1149ae339b2165c9b7d65ef96 release31-maint +75991 4cbc3fe93671d915b0699c5de731b74f72109179 legacy-trunk +75992 89e9d05848903e56b3c15391960c58900ec2ef25 py3k +75993 ab38690fe01cf935bafbd21318d4b4f4af22bf8e release26-maint +75995 71b3aa8a7320fe40cc20d8b74070a3eaced2bb84 legacy-trunk +75996 37246b4c3cce39ee5821daf701ae4ff2b65dc090 release26-maint +75997 182cd04e29db1187d9667992a58d778106c53edb py3k +75998 4717804bb57dc750bd570ce361c55f29dd097d8e release31-maint +75999 9f3f83df6975be6f0ccb09a754cb90802dca9ac8 legacy-trunk +76000 846f26ad5800023b6dea766bc7bcaefc8b6be34f legacy-trunk +76001 2913864ddbe9589ea296cd3a0d9a243e3187e17a legacy-trunk +76002 42bb3e3613f6c90a1b5765caeeb0c1d9f62becbb py3k +76003 f83b4896273993ab7f114af08fce7eed509ce1da legacy-trunk +76004 02f5c6008327afe5556568301a9b58e7f9d858bd release26-maint +76007 211e7b5b999c1a3d91d639a057b5bc398767eb6e legacy-trunk +76008 70002f27d281ef6bede81d6b045f67de8f8ce462 py3k +76010 402696ac4f982cfb27ebb8ffd45f50293aa67e60 py3k +76011 b0e4efb83d60c77f29984018b863a7fae22c789e release31-maint +76012 ff8e359e280843258d3b2eacaad2946bed4c7783 legacy-trunk +76013 6b4c7320ba3a17f2422bddc43662409ee390f650 py3k +76014 b69017762208aaa6f2e893ccd895018165e95109 release26-maint +76015 5925900edf16f0c94b5bc189ad1aac8c3e708c81 release26-maint +76016 757b97c61691e29230965f57b9ca2c38a9ff4999 legacy-trunk +76017 5b95e4eac7a8b98a9a68b13afe96ecce69d98c50 py3k +76018 ed166ff7d952381c45df21d0c35191c330b385eb release26-maint +76019 10fe20fd6fb3d8c8ada7fff62f20669b80df23c2 release31-maint +76020 4db84045a7f0071a0a82a0f1f4808394734b5cdf py3k +76021 da6ad98d5daef308a3e40aecb5d954ae19e18725 release26-maint +76022 c78a00a1d6db1830a18574cf187b1f8b828b515c release26-maint +76023 93c7f650937f7e9578a614c7aacf7ca54b58a5ff release26-maint +76024 901259bc0b62ea019ffa6a5090b646d07bcdb33e release31-maint +76025 b7e76277f545267af80db0d9f57d9ab3ae3ba217 legacy-trunk +76026 1aa6b68e85230417c3a79c2f03a44cdf1539049d py3k +76027 658eb58d2e68b7540835432f66346689d91e50ad release31-maint +76028 c785afa6f95c5649d0f653a5d8e478bcd582d9f9 legacy-trunk +76029 3039a4ad7e39a11acb76df8ca15ffa083489fd6d legacy-trunk +76030 ddc141d9ef1b1bf31b8521ebcc2fe43d90f07b73 py3k +76031 38719b8e0c9f70e2f2912efe4cf7422a87ef20d6 py3k +76032 38eb6a8adc242b0244b0a21ffba94a4ff2877344 py3k +76033 8ca4d77680c6d2421469957ffc219d4c01b1564c legacy-trunk +76034 51b9973f761ec400c746dea33f6f5b92e5378d37 legacy-trunk +76035 57542b502d3223a6b51e283931a389cbf731a69e release26-maint +76036 3bf761df802aaddab90b2eb0170cd308ee22b1bf py3k +76037 a01e6cef1256c9139c963176f012a08e23873e83 legacy-trunk +76038 344c47df363f8b9c28a0602925596332a36bd64d release26-maint +76039 4580fe0719e702d21613e416f4d6a5b50517b4f1 release31-maint +76040 fd0542716a80551fa2d8905f34239b29bfcf0e98 py3k +76041 b591fc8721f2fdc5058661c99f366e5394532593 release31-maint +76042 6dc4faa45cbd089010df5a9cc30c916b07f83d65 legacy-trunk +76043 28fef72644b7c6444ce5b29db8a0b35c0efcdb66 py3k +76044 4a8459e32919232beecf5303bf2c3625ac7d7240 release26-maint +76045 6e489d3d73b880491537aeaf4aefaefa62e81603 release31-maint +76046 1e1be1a39a792ef760d6924bc01e63c7ccb09cf1 release26-maint +76047 f01302e6acd5446135569b7534295cd348417d98 legacy-trunk +76048 5d6ed0883bf579c3f853f124a64148bf33e63873 py3k +76049 a5e473e95bcead5c5db3d76ffde1c52a24544bba release26-maint +76050 453f5478a691dd1df9d5b4f0f0eae189de6e3113 legacy-trunk +76051 b919370f1820fdba1558b9a739ecccb76c2eb6ea legacy-trunk +76052 698de501799d9935ac2d686b63080977c86d0c0b legacy-trunk +76053 d2d8cabb9e3a923ab1037b0de8ccf6b9ed47c630 legacy-trunk +76054 96a853fae83b2374c80b9e0442ae315923f709de legacy-trunk +76055 1402c75275655fda3a18f9626634e642edc5eb0c py3k +76056 8a0d3c69ae21adbda4c086bc8545662b954c5589 release31-maint +76057 88a3646ef32c2a782bb419bc1fc46a8f8684785c legacy-trunk +76058 e608f58d5d18b61d42d4055426b6e3163b27b695 legacy-trunk +76062 94e1b14ec804b8ac9290b20528658374dffcc530 legacy-trunk +76063 959c68d1d28a0a0c72efa0edbd775bbea02f76e2 py3k +76064 3cfd69564e8f076fd6bd8594a7b1ed0802b2b945 legacy-trunk +76066 f2960f116e77a2ebad51037e22a09b7a7a30c2a0 legacy-trunk +76067 bee8994b13dedb8170399bcb24a068600549b868 legacy-trunk +76068 a3f21cee64d1f128a635bd1c2c4d627b30e501e8 py3k +76069 a8086b314cd07e6c3eb9209b2d35f1f3c4e4783f release31-maint +76071 201a419e9e0660be448bf1267c9bc8d1e17a7510 legacy-trunk +76072 65b1121a2473fd21e62e9b4bc9b13c16264cca0a py3k +76073 6c13bf35d1661174abeee8ef0cab015b186920c9 release26-maint +76074 3201fab35220f785299dd828e561488b46729cc7 release26-maint +76075 c9008a3e7f7fd2348b95a48a42a65c95b0bf7531 legacy-trunk +76076 685a24a6f986847f2420ca15662240f272334b31 py3k +76077 32c7d98103baec1a371cfce21986f747b403abd8 release26-maint +76078 b411ce584b7ff041a9a3dfa6e359181530e16fc1 release31-maint +76080 62dcd9fdd7b34ee672a721864bc606e24693903c release26-maint +76081 bb37c7c26fa486515270fc04ad5dc05cf3303e6a release26-maint +76082 19a573c44ae11c2bc2da513b304c27b81d9c3cb7 legacy-trunk +76083 92cc7ed83e9c01a183e84bf353aa65b2760b9c72 release26-maint +76084 7fd90e5a0ad5f9b332045d30db51bfeca6eb41f9 py3k +76085 fe808d66483d7b5e9ddcb066e8c1ead83f49085e release31-maint +76086 8c807b3a905232270572c5b1f9be339edfa9d12d legacy-trunk +76087 59e9adca771b34aaf44793a407b9ebccbcea211c release26-maint +76088 1df90e22bb7061e4e7726adef9ae8c13c68e55f0 py3k +76089 9af2e94439d1b446f106578c7a5ff3221271f7d8 release31-maint +76090 1e8a33f618fb063f74ca6b6c7a94cca764b1172b py3k +76091 ffaf665d2d3e5d56aede0bc99307e0dfc1790625 release31-maint +76093 42fa3e09b6e79d31f8fe1f3947e92b7d133b6df1 release26-maint +76094 3364acbaa153cecfe3cbb31f61cfe4d7149ae706 py3k +76095 eda979c98a7fbe03d67d0c6ddb72e3024342fec4 legacy-trunk +76096 c94e3bf8392ba0353ba51e99befaf61962604448 release26-maint +76097 1f1758848c6cb380dc41c420a37df326088fea4f py3k +76100 f95b5faa13cf5f4f6f994f7a7d4b559958e8d8c7 release26-maint +76101 51869814ba9a8f9ddb743d70e69142eb2fb270e6 legacy-trunk +76102 ea738ff1801663ba32e33450b9241022aab41b7d release26-maint +76103 605d2f4c753949d2b9a38fd5740e69d33f9a0882 py3k +76104 c8bfc4daff3d8f48f34c6148cae69ac0593ca921 release31-maint +76105 f5d68604c6b952a8e16c0b9aa229dc90bd792527 legacy-trunk +76106 d16144269d558d671f25ace714b9048fe944a22c tarek_sysconfig +76107 298f6b34125d358e3d856e2a157fbccdcb096561 tarek_sysconfig +76108 068f9430cc240b095e25293e22e219ca70779a2c legacy-trunk +76111 f89a93a778a81d068dc89261d4e7fa22c9bd5811 py3k +76113 d3a81051663b6b56b8cdc74ec422020b02d9b4dd py3k +76114 444989ce5f77148cbea428b3498ef1da6c608fcb py3k +76115 93c752875033cc5ddeb31fa52169a804f5edf4d0 release31-maint +76116 63c9e63e0de3f02ab6f1d0326b4d89d0626cd09d legacy-trunk +76117 fd782805186551a98e105128c515eafdf0d6f528 legacy-trunk +76118 2ebad3dfcde37627ee129552dbcb5a43f28c0cf8 release26-maint +76119 0cb943900e531e4fa2e224f401d54c0be4be0abb py3k +76120 4ea0a80ed76a6392c1c55fe2f9034f62a51b29c6 release31-maint +76121 a1c94f0761d413bad6f108e065d7bc829f229422 release26-maint +76124 35ddfb447168d06f4462a39daa995c97dc840dad py3k +76126 d3a7636392af554d1eef625e46bffc61e9e33791 legacy-trunk +76129 e3ff3976bbacef7523a5833b129481b5c967bdf2 legacy-trunk +76132 8552a26772e6fc1bd81b6606fc6286424001946d legacy-trunk +76133 6db220af8ca3fec904679ce75e9c1f204b71b8ec py3k +76136 d346ffb8cfd743319cda85fcce3567b077b951cb release31-maint +76137 cd360ac58cd2ea06c6a90b233a6177c2f6e1993c legacy-trunk +76138 e0ddeda0d9c33f84251024a05697d82b8eaf0813 py3k +76139 9309daaf32d1807026ec366e5c0dd3277be34698 legacy-trunk +76140 818b0b287aa4244b7ca7c7f5b683bb987326b0d8 legacy-trunk +76141 42d4cf827b9e89c83fcae3ab4e761be2c03eda45 legacy-trunk +76142 92bdc3c7d5a43ef3d9af8c128b2c5f696783ffe2 py3k +76143 1a30860bca037f841094b229c325fc9e32cb8da2 legacy-trunk +76146 27e120f9208b3aa8c0c891a5da3f1f9dfa284589 py3k +76147 e25288bb6faf17ae8240e5b94d85ba1d6824e093 release31-maint +76148 6f5f481d619c2cdbbebc35e9b9d8aa3a81fd3481 legacy-trunk +76149 04cf95cf9496fff50b1f2ef3668ca7922fa8255d py3k +76150 3a0e6900121543a4bf51648d7bd3bd15fc91d7fc release26-maint +76151 381a62f1e635f2c02144dd91d4f93a49905d4292 release31-maint +76154 63770a5a0c79df2b4d23f74d907bded855679286 legacy-trunk +76155 2e4e477219c573f5cab0f349d9ae7d33aee4e6e4 py3k +76156 dcd6887b8a27747da8b42736e3ca1ad5f4a741e4 py3k +76157 979eb1bbf6e6e46da270956e9431e2879816de3f release31-maint +76158 d61b24c876744756954ffd009e19b2c42c31dbde py3k +76159 48989ecff8047bbe440e7a147311b4391719bee8 release31-maint +76162 69d61af5a95893646ed25662f74af0a11f0b30e5 legacy-trunk +76163 d97059e9e852eac2b8563acdd3bfa184ee8ccb97 legacy-trunk +76164 f190315f185ea7abe4fc3c15eb24e17e0604eb76 release26-maint +76165 ed11b315d36a3887f16400507237da3e20c163e8 py3k +76166 1447d75def8b257810f208a608525a452ead2673 release31-maint +76168 c76d5fbeb6919339cd2bd59a223e297dde1f0d78 legacy-trunk +76169 267a418ebbc9b64a0b35f87baec98e715a9742d5 release26-maint +76170 a7ac4dbde5db620ba200fdc8ccdcdb75fd924992 py3k +76171 667d9779cad6aff660479a3f1257008d25a22f0a release31-maint +76172 fbf41b1124d8ecaf1e7d8d7ed05cb443cefd28db legacy-trunk +76173 ed8b2969119e26ae68269646dbb41c93fb64a9cd py3k +76174 0eb56a8e6262f3b9d20ae395035352457d22c7a4 release26-maint +76175 fe33562d1f95a0fdcb980102b9849858d24cb547 release31-maint +76176 2d394d2d2d37d7daa1c6b8136339bcd04413b775 legacy-trunk +76177 050a65a3df538b2879a3e8f8c0d1e2dda0186a58 py3k +76178 bfcab1ba0f51cb3ce518985b3151548c0d33e97d release31-maint +76179 bca027b6df533d6dc3ab313a6acef4f090b519bd release26-maint +76182 fbfcce1124ae270a46c4a8b3bba53f205f891235 legacy-trunk +76183 52140738d6c3b5eed6a42d61a03e4434577f5e1f release26-maint +76184 8bfb32b5fe6d4d2f964dd9dffe72f5f642f7734f release26-maint +76185 dd9f85a5f1347cfb1622684f0ea62463ec89c149 py3k +76186 9219a962ad1c307ae1c78efe92cd37db06d26149 release31-maint +76187 fff558286aae3fe36ad2c693747ff3c2b843d949 release31-maint +76188 23cc759cfae3582527f3b52ed82f25cc1656afdb py3k +76189 6d91aaadddd081de73e4f29b6e73437ac4db7bb3 py3k +76190 867d2f2735b890557601b942578465d83663dead legacy-trunk +76194 ca0217c52a8bf384b343dab2f3830c5dc7980a59 legacy-trunk +76195 fdd6484f1210d60c168e23766bd342de8a66f217 py3k +76196 cb5905806de8dc8772882f924c5ec911b63e26af legacy-trunk +76197 97c318714070f6f17df7e685e6f7eab6cb2a43e3 py3k +76198 fe6b9babe4be916f484905e53f1f25a05cac0fde py3k +76199 976cc504d99f28385b5d2afd81bb3d2855c9375e legacy-trunk +76200 10764ffe7543ce9bc12f63ac41d45e96613929ea py3k +76201 b1a775aa0710d4961eaed138504e74b0e87c7b0d py3k +76202 4ebdd2e0aaade753dc34e0e71276567ccaf58951 py3k +76208 54b8d780c9b99e0bb572d49c6f7dad7f6f106500 legacy-trunk +76209 2950d97713959e70cf5e95c89601b0b6ce8f1879 release26-maint +76210 12e0c9ea304eeeb5681b785487929f564cee1a5e py3k +76211 c85eb5946614565bd3f9f28ffe0e5e3fa3f949c7 release31-maint +76212 795ef46349e501cbc934f9150469f1f61ba1c0bf legacy-trunk +76213 2148851f082a1900a60c73fb572c2c172eed8c17 release26-maint +76214 257cb61bf41b567bc2930010b393ca084aa51357 legacy-trunk +76215 ce9f55ad546e14a5478d320b5678e4b72b16d8a4 release26-maint +76216 c717fe993085cdaa1fbc94eca9a6ceb822ebed00 py3k +76217 33be82fa277ac9a1ea500e9cc5b3a6a1469d3849 legacy-trunk +76218 43f32db1bf46fb6e04c6dad3e5d04061c590a5b8 release26-maint +76219 81166d7b414c8af278d79a10bf288f39c0814aea py3k +76220 138c1f74804d68c6f561aa12b0cd9de45c693a42 release31-maint +76221 1c27888a955fe9c6d91e111e5f48a24fc7e8fbfe py3k +76223 d44fea23fd57fd5b72f2254a1322c4a2344dfeac legacy-trunk +76224 94cd185f53b476136e142350d77c0cede6ec0e9b legacy-trunk +76225 57077df02f9acbc7930f3c21d6f3d936bc263027 release26-maint +76226 5c0d4b3ecd65d18f21a8020a90745edc53c37a70 py3k +76227 4f1c7b7bfcbda403aadc3714cf216871f784257d release31-maint +76228 cd0436c34ef46de0f44f0593db40b18ae15f9e39 release31-maint +76229 f9a50cede6a922b067d6d6ce9680262f4252a1d8 py3k +76230 89f42938d5ccb733c336a4d514163f41ffe428c2 legacy-trunk +76231 128dd6de134ca89c2c798cfbd31cf2d4b6a69ef2 legacy-trunk +76232 b2d90c1c637dc57f97582188d4f2d55ea72d86ce py3k +76233 763d2ff78ae7e8c4529a61f3e4cb655c11b45145 py3k +76234 7ceb5eb462c503f96f0fb9e11212cace236593c4 py3k +76235 b354c1b6b4767c37b4c3836255b7afc02da7f534 py3k +76236 a0951f11be3d76e6da9995435afce5495f101531 release31-maint +76237 b7f73b02d6d248ced82b6e117b5a701462211b21 py3k +76238 b218836573face87f4f7c7436c9d6e5726f4786d py3k +76239 98579e952b54af97d0a8c6d33108008b51239541 py3k +76240 685527ae437df92a8f4ca430e1ec3187823b6819 py3k +76241 357e39700489783e7a0dcf4687ad15a149b869ad release31-maint +76242 8e6b478a7053eeb3fffb343338e0828ea36bef73 py3k +76243 65e23085e3cadddbcd05c04256e0144f2a5341c5 legacy-trunk +76244 32335ba3aa0bb16261c0175ed6d307afaaab9ea8 py3k +76245 196f2ab97718cbdb6b9e1eb365af1fffeba7c614 legacy-trunk +76246 b8145d6db7d43d701d55106fcef84ce09dbb8e7f release26-maint +76247 c613c724e3159af861193cf43cbdc172d9b9e788 py3k +76248 90f1f57321859d0c65fad465790642a1395c84e0 release31-maint +76249 5c9050481309d8b68134ec2ab4ab7be5af2082dc legacy-trunk +76251 277b89d5b320974802052fa1dccdaa70c1e86aff py3k +76253 a1df524fcbc622b079cf9a8f219b38ac2cbef0e0 py3k +76255 f0013ade9c1ad36fc104d099c348548b3d7d535a legacy-trunk +76256 aa64a50ad4905e793cf5b67f58bdefb61f21a175 py3k +76257 a2cb7d2721a3e4e4e8a2dd9da5ad2a3f067e1a9d release26-maint +76258 207a462613f3f3e275168610ae4dc697b9c7cd99 release31-maint +76259 3f2a76fa2496b2a15c2de61134a2659d69099bfd legacy-trunk +76260 c1c1f28acb053279199be3b59b63d030dd3e0f90 legacy-trunk +76261 b2ab08c93a02829f64db8c4cf52d6e70e36b13c1 py3k +76262 92f91704391999fd3072d7d7217d59a56b348ae3 release26-maint +76263 bec589b44aae7a6c318d64f6395febd79ebb9132 release31-maint +76264 555045541794e83fe5760c5c478bba182663927f py3k +76265 3db1fc3cefd0f863f7be55966e9d13d1c36c3c3c legacy-trunk +76266 94f2705def5cf656683eb386c1035eec569e58c2 py3k +76267 7d4ab8cd002395543286284e045f56761bd5d4e7 release26-maint +76268 56e701f8245e5636a0fff9d9df9dac8e54f7e72d py3k +76269 fa60270ab79ae5c8dddc852a93486de9f4d188e4 release26-maint +76270 1257a597c8fada057d6146db2691aecccbf16091 py3k +76271 3d902d67af9ca092b2d743c7aad35a5831b66d5b release31-maint +76272 79ea4b1ef04f27de57a75495bb219939aab34147 py3k +76273 7d6bad5c2d64e06b2e27ee87ddeb6c3005045ee6 release31-maint +76276 1a3d396d1b6fcbf542be592744e48a389c8a81be legacy-trunk +76277 53ee8ecc18a522a8223cacdf515b8cabe9d28b32 legacy-trunk +76278 bb4fda22e657808be04ff659418f4e2feb567ce5 release26-maint +76279 c777e4b455004e2826d029e02bbcbb0b8307ea8d py3k +76280 87688ff6accc4dd6ce450d72d62d5bf6e11466f7 py3k +76281 05a89c8663cc72e845fecd468dacbb910d2a8f49 release31-maint +76282 05c4eb0089c5f1e512bc0041a844b1e5535f60e9 legacy-trunk +76283 3b0b19b53d32bf55985576b7e7f6f624ff9385ee release26-maint +76284 595ec1d90b2fefc64100c817349fbb388f0fa175 py3k +76285 fb7fc8302721d008d075add735fc0afc8c13243b release31-maint +76286 40881db316893392dc2e7ed18a4a1c51059b32e8 legacy-trunk +76287 6a7fc2e8565f73a7f46c9362c38efa339a786fdf release26-maint +76288 5904abb7eef7b3c8ecc92b69d5b0a233ea8ac772 legacy-trunk +76289 49a5f1cb1b25470ad1a924ebc2761ad5cad51420 release26-maint +76290 f640f55e887385789f49d2e276df01f3b6724a6b py3k +76291 5b05b5e9a8e9b742a8cc8dd6fc05a2a96cdd4943 release31-maint +76292 370d218a01bc32d9fb79649962d273f7a6a91434 py3k +76293 2aa62fce0bf865361eaa8edf1dc1299b1f31835c py3k +76294 b2a390c5de5f8931d1c8e3da4f3dc50362f6389c release31-maint +76295 62b8de983b2642b879429dee9e248a32166cd60d legacy-trunk +76296 c217e0331d4b2e3a8d54f2637facd0d100f69c99 release26-maint +76297 c458f813a7094bff0580c38ab9ae9a0bbb8d72d6 py3k +76298 3ebf907db028e12ba7c173fe227bf9ab9e60610d py3k +76299 9505afe8823f94c0791b4e7a23086baad0574109 release31-maint +76300 069b66cfad3fd9f65de708427fd21876f5eac0cd legacy-trunk +76301 785231c1c55a9191567bb73384d0afefa59a402b py3k +76302 2ecc5936b1f2333f83d332def831729d211f3430 release26-maint +76303 f135fdb73d885437b7cb59d4c8575c3f87b3791d release31-maint +76304 c5099818e0d4e590cde37a67fc9532d12ad6e0e1 py3k +76305 abaf3724be711786e2160bafac688b457edca9dd release31-maint +76306 afb3348b37156232f20159b9b746fe8f014b77ec legacy-trunk +76307 150610cae804929dc8d530d479c02ddb90e01d83 py3k +76308 51028709abc327cf7756ffc40af0e44360250049 legacy-trunk +76309 836642240464abd4a8e01fb0ecc36df1544b10f6 legacy-trunk +76310 23c138c4ec05ec122f8a51cb0a62655e66bb6d6c py3k +76311 154fb270a820f3cd0029ebc41a6a643a6518b9f1 release31-maint +76312 eb1c03a37a0295d5aa6de3e196f45baa5025dae6 legacy-trunk +76313 c08423d70b9f21a71163973b09d5450b91ae7a3b release26-maint +76314 df5364fc0e5c9d4900b760e7a4b0cecdc0c5cd81 py3k +76315 25b640d234f9555c3bd151e28e497b4b82aa0da6 release31-maint +76316 250e1f475568aa2e6ce266124af8aa2e5164e5fe tarek_sysconfig +76317 664f6301940f832e63f5af623b137066745d6598 tarek_sysconfig +76318 61545290cb514496576b2f55f1782401fc37ba2a py3k +76319 eb235eb45d329bd36340dc2c477454a6f3d5b695 py3k +76320 f1112c2700b1e65112a9fc5b58929f73b239bc95 release31-maint +76321 401d223705b7781fc89d816f37772d12747d11bd legacy-trunk +76322 1e03fe5a11b42f2d0c5b687a896e8345654ce9fa legacy-trunk +76323 9670fe6e6d14dcaaa3f00974582e828f29739348 release26-maint +76324 fd417cd6434185ab60d7095491439a0dd263ca2e py3k +76325 f62930d0fa72d2554045d756a8367280f6fd971e release31-maint +76326 c847c684c2c5ea092b6602c06f56b7db1dbbad43 legacy-trunk +76327 d3b3a8a8090fa19dab85355f5cf57cecc112ab1c release26-maint +76328 ac768c8e13aca88ad6b577e8a2f08fd114674f3f py3k +76329 2d3cda6b8c952213f37f0cf9a5987d79c7d70783 release31-maint +76330 f680c1fb7804f83225fdd0bb65742abf2ea9cd4f legacy-trunk +76331 d127679ecfaa6de495458cf3e86338d2aad1d19f release26-maint +76332 9d9342cbf9353e4e5921963b4fe0ce6cb8004002 py3k +76333 ceb3b36dd681ecc0824eb680173db0538c7c58fd legacy-trunk +76334 c5a122cb1288a6c47a966fe1dadf39a3dcc85a41 release26-maint +76335 4391a22ab1f04a93868cec5d726c10f58aef543f py3k +76337 4aa4c19dfaedecf7d41b3c4d00e9ca651d0867c7 legacy-trunk +76338 adf9274d3edc413fc26df07d3ef28a536ff349ea py3k +76341 f93b2a68dfb42074ff6d379e6f638d48a1a801fc py3k +76350 349b97ff4c2b78324faf3d4738e6eaffb37e0966 legacy-trunk +76351 7183d6b930ba9124acf8b410ce10d2d1c8c4e0b0 py3k +76353 2628216bc66d476f77693d82c7214600f20a9882 release26-maint +76358 a77a2d7ced7dd7c2e3cec80077eea10286d1b90f legacy-trunk +76359 184eb90b2e3d75fb91c40f9214ee6703729a19f8 release26-maint +76360 d6c2106779b90ce2cb094676d2b125c92c71ce4b py3k +76361 3c62031b2506decd57e75c351ece972265b09123 release31-maint +76362 3d2b06aa7b36fa0c64b63c74c3d9d000623cb328 legacy-trunk +76363 f0148d92db7ff50633373c380f0b016b6a1f87b1 release26-maint +76364 eda56d0775bacd7db2fc6619599276ac6ac0602f py3k +76365 24ab91fb25abf07edaaa4351d99d500f47bd64e2 release31-maint +76366 3d18cd1d04a4468f181f20876f4b754686ab30ff legacy-trunk +76367 4ed132d6bb7001238f2c13071592bac371007e2b legacy-trunk +76368 6e3cc3adf1dc440a3b2dc18b26363bac7530b841 py3k +76369 a7f6194b78cc92d28088c7a4c19b3b0e76ca170c py3k +76370 ed54a1a914b4c6605300e2be0a26c55df5af7df1 release26-maint +76371 5ef34b29766cf1a276317f89cbd24d22ba7bdeef release26-maint +76372 2c5c6687f1c8eb540f0f0a796e3cfcdf00f1aa7f release30-maint +76373 92e06cdbeab9b68425ec2f9c522577a604ed74d1 legacy-trunk +76374 50d355324c506327ddadc7362ec011efcc20ec07 release26-maint +76375 b96f78ce8383393bc1dbf4410c4ad4be8f0780e1 py3k +76376 333dda31bd7331ee6117c21924f7acf6b7e0de31 legacy-trunk +76377 41d29c17fd405d6ae132d0be3b9e2bb4194fb32d legacy-trunk +76378 4633ed237970d746f84b91fc00de25647a9d366e release26-maint +76379 1e534d7950f80e893371687ea5ebaac01c17bb31 legacy-trunk +76380 9ed02df72bd62f3e712fdeb4370f7beede364166 legacy-trunk +76381 d8bcc9de16054c79e840f3f68eb7aab3671b580a legacy-trunk +76382 0bcc12c46015a4888557cdac9e1d20e245f7c4aa legacy-trunk +76383 05af04900b6b91e2ed00dc4359f50facda037a9d py3k +76384 715c0baa8b2c8c78acd5adbb27f3253c174c8c4e release26-maint +76385 5e5c97b9c8279f62c83808362b7dd311d954e22c py3k +76386 a345bb50ec0f88c5da8d31b012829478fc9ff299 release26-maint +76387 d8019d1d56f334f52e96b781bbc4abc47214b197 release31-maint +76388 ed59077838ade9927af6d4920753c106d90bf085 release31-maint +76389 b31a33c36f0874ca17168a14ea67d5e74aa6d04a release31-maint +76390 b8a0b333e469e1a898f3143a078e171a8907ff31 py3k +76391 8d06e450bc98cb6a4f73ba9cfaf2da978c6f73c3 py3k +76392 f152667200ae90424cf2fdcb5da0b86604c8c551 legacy-trunk +76393 a790f84fbafa2818ee6d98a16a1c50650b6e82c0 release31-maint +76394 f73d137cfbd046f7a4ada610ec585224b7493bb7 release26-maint +76395 8793ff8f48261d9146d4880cc4f5ed761d1bf233 legacy-trunk +76396 166f7a3b73fc60c636d662aaba02ef9f3da74b3a py3k +76397 42aaedaefbcb65e0b9569e775f6c52bdc0f60e05 release31-maint +76398 d5779e159ddb1a8da21c7cb76c7a58ffdd6c0bbc release26-maint +76399 c0dfa9bd5c7f8233b8265d92e48d34b1cf16ccae legacy-trunk +76400 4b6b4943d69a40b0b49a92c3edb3dae141173e2a release26-maint +76401 f57f0c6aae9d82d83bccfd914c540663d41fa417 py3k +76402 ab5b7e0a9131adbc3faaffb8db7d88b0025e05af release31-maint +76403 c079fcbfc7617b6b981ec6cfedff49e8ce6ebe33 legacy-trunk +76404 5b54325ef6f5763138aceda95112f1b32fd42e06 release26-maint +76405 39989c66db178a218b5913f857338ec279fe2975 py3k +76406 a92ef136d9d0cff916b83aa51cde25938428bc77 release31-maint +76407 4fae8168c43b13188e30c41108d0537b284a7ebe legacy-trunk +76408 b96ae3d8adfd108ab37e8b02127083d860e1b935 release26-maint +76409 2dd7942dcfd5390a66f931548af8b70355b24c3a py3k +76410 24d1e06c629c1a860f9dc5f5e223b18b1df8f833 release31-maint +76411 67c0f92ce55c77ba2e6cf7eada44fab5f58bdfeb legacy-trunk +76412 a4d9a3dbc533fb2ef2e1fd70c5a2e6436f324a08 release26-maint +76413 98ab3adb045ce26ea6df69d416f95b044000c893 py3k +76414 2254c7da97788046330ed91d44c90daee87b3f97 py3k +76415 82380816e7db3b26471c0680651baa9c83986d54 release31-maint +76416 ed30bcffa14672f0e3349fc077ce59de77b0960a legacy-trunk +76417 6aa528c501284c5f7c2d15b2a396421217b7347e legacy-trunk +76418 475bf8b584a923b048f23872f3ce9dbb6dcf2184 py3k +76419 f9f3950b5ec75652071e5179923480bc1d1c9100 release26-maint +76420 1c352750ebf23f951668636f815378de383da467 legacy-trunk +76421 f2da488b4b7b39356e34067bd2efdb54757e2a47 py3k +76422 cd5b15c29a396ee99cd0bbf844ba3534b33feb85 release26-maint +76423 6e370013f3a0a59a79948b633b2ee5bf28cae3b5 legacy-trunk +76424 137115e395d8ddfb57efd4204af4e116adbd6f80 legacy-trunk +76425 18af0ce0a58bd8b6bbc72a280a1cdcb989ea0f0c py3k +76426 eaebe2460377c55bac207895ae59bd26aa005664 release26-maint +76427 fd6e2abae14e42f52ff685fb2d6504435c124f31 release31-maint +76428 e2b2ceefa82acfdb5a98b940a3d0400309cbafeb legacy-trunk +76429 e83e3db62fc78d4e3fdaa8f365de7c3327c4d72e legacy-trunk +76430 e3c994c29a22927a29869cb405baa65c02c5a1fb legacy-trunk +76431 b81d60110f86f7781229e5d03bd010231a06be26 legacy-trunk +76432 2e3ec3bb4be7cbfd2a6debe1026af2fa5327356e legacy-trunk +76433 1d923ebb47600f8a31c688b1efb63fdea3c2fe3e legacy-trunk +76434 7a5cb4decf6f28e8a5f09d914acbe1d287a5cca8 legacy-trunk +76435 b8bd5360841baa5de5b9fc118dcd3230c5f8e665 py3k +76436 5aeeee0eae5fcf536be33d8670fab246c9828165 release26-maint +76437 639ba036c20948c488eb7f9437a23f6c7f12bcc4 release31-maint +76438 af88b1d25bf28ebc9551e9518019c6ae100de460 legacy-trunk +76439 513c4b1575f26702bc31fefe7041ff45ad918611 py3k +76440 4c8708a791e6032e028cd954b4404947f6896c41 py3k +76441 4d556c27926a61c732767aef20232b2e29af1703 release31-maint +76442 dcbcc8c14179350077754d732e06ced4c1642f5a tarek_sysconfig +76443 4e270eab452df308140a9b5d76c05693f501674a legacy-trunk +76444 d6f8552fce79fafd4aa1e3c86e856ccd02b301f1 py3k +76445 bc7643a7a5e7b287ff3c9876372cb6db806d28b6 release26-maint +76446 0eeb3a3e79ef888f72a8ba7a310c897d7e2def11 release31-maint +76448 ec52c419b824e1c5e08f3a9bd4782ce06939ed2b py3k +76449 373d42f26e966a7da8049196e34d35a362868c91 release31-maint +76452 de07880a53ffa7904b33e33da065f35ef2101b27 legacy-trunk +76453 d6ce18ad8467169e182ea7e215d909b40e8f362d py3k +76454 56f19081d7bce97ecd2ac0a5f82e3174fef4957e release26-maint +76455 e1d732527c7e34457b79df070604cb8ca79e4e3a release31-maint +76456 248c4fa5fe0c98795a8361cbb3853faf2cdc8f44 legacy-trunk +76457 0869e1ab572e37c33549a2bd77213f647bb433f8 release26-maint +76458 c48fd63c2f61a08b022d27a33fd1284061c50faf py3k +76459 0984099a94313b2efebd510aba510a16b5064276 release31-maint +76460 704214b9cb76c773d1095e7501c96f56619748d5 legacy-trunk +76461 2639ea7b92ed04c696e4d750d2131fe9b91daefe release26-maint +76462 ada5f6eee1cb121d4372ba2d39bdcb7c8b4a1e63 py3k +76463 c2ecca5ff6593cdb09b40c415245927b14e9525f release31-maint +76464 f554dfff745057656f5ca7320d87f6de36b5255b legacy-trunk +76465 808f9c0d4ac400cbf5b2039c037b1ca4ca4f5fcd legacy-trunk +76466 5cd95e57772c80c7fbb75eae5bef78bc74618dc0 release26-maint +76467 c8d69a06b33bbf61649a90d367721b5ce7462cfd py3k +76468 818cd40df865f26783130d503a2b650552157679 release26-maint +76469 aa9627c41222caa2a4a2fb6c1d0880721e63337f py3k +76470 3a2b149ae66e815f083f236c032cb99435019089 release31-maint +76471 f017a34864e2ba537029869d7a89f47d6b4aa9a8 legacy-trunk +76472 a7eb1ae4e91904bbe49fc3c4eaf4e1e0ff5526d5 legacy-trunk +76473 3017d82f075acdb114a6c9eb0e516382ae245567 release26-maint +76474 08a0c9588f13f0f585c79d11f2066e165ba42f9f py3k +76483 b9b683eedee116790c01d75b5561bff0102e80c6 legacy-trunk +76484 5116ef779a801f1cdb12ab2e78ef6e2749950e13 release26-maint +76485 357ad90b8114cf40f72bc888ceec7a64fa867ceb py3k +76486 b7fbef077eae13cb50bfae88abc946fcaf9947f4 release31-maint +76487 3948b4c729d7ae94ad75f641fc43fc74b669ebe0 legacy-trunk +76488 516c622a4f9e1382c26d3767b1709f8ef38301e1 py3k +76489 337ebb829b8ca2e3772141a84a3e784c925f3b68 legacy-trunk +76490 9dca384748549c86d846d1e5ed330a609ae56ee8 release26-maint +76491 535e08ce43f579cc6e964e7bee80ba4ff71d54d7 py3k +76492 58b1191e451fa003fe339ae3945523c0edabed26 release31-maint +76493 6f048b1e528062323f9e51b90f68f6497927a0b8 release31-maint +76494 765909fc7dec96e3ee4e118399816605f7857a98 release31-maint +76495 fbef5fccb0c88f9cfbd075765105e2435935c02b legacy-trunk +76496 83d94e72f01cffa0b261dd55cf9aa444ed8fa81a release26-maint +76497 fb7994b2910173a4c7ae14211b07b09adcaa9bf2 py3k +76498 17e590be4c5aa2a668ee491a37ab1984f4aecce4 legacy-trunk +76499 cb3eac421cf96ef8e18374a1e22f218ca2a229fc legacy-trunk +76500 b51fda754f5a5e31704b3fe313c9afa77f822fdc release26-maint +76501 9e79a6afa3f53100b6aa41a8ad681e3ff01cc369 py3k +76502 2cd1fb104233481a10e570f7697cab84389879f4 legacy-trunk +76503 90282804cd50167ea0c28b49bfbc9140693d8c99 py3k +76504 ad5169e05dc3b38a698fd6394eacafc0150774fc release26-maint +76505 018b20b039a854b5a16ecf80fb735c7f189fbc1b release31-maint +76507 5ea226d32f6d77e58197e56b3e3a5d6c6d98c9de legacy-trunk +76508 1d157e2ce9493f483486fad29131e678948f0cba legacy-trunk +76509 85cd935255687d3b803f49865844345362c57234 legacy-trunk +76513 c7732f889c4548ae70cf9bd188e33abb8fdd3b78 py3k +76514 022cd0f3c558edde169f6ba562c7d1415356cb43 py3k +76515 0db67153d25f14c3e97c7d8bf1096b891be06897 py3k +76516 1386d0e9e0fc7a4d617d80b0bdab1b40de63d476 py3k +76517 41bd3123864d89d3511bbb775e5fe42ffa3eee6e legacy-trunk +76518 e5bc382ccf75b1ed8a30ca7fb5d2488d23163361 py3k +76519 508654cee137a8ed15815ae730edf80a18ca0410 release31-maint +76520 e6133d154f9819c649d8eadbcbfe42e48cf21e05 py3k +76521 fea53258ab7ebeed108dc971ea9362aae4ffaee8 release26-maint +76522 df86c420e97a0cc157c687e8f3b82ac2c05ed7de legacy-trunk +76523 85e1e13b498a72c032d80d92f6a9fe54ec68f8ba release31-maint +76524 2d388d1a83f42e2446aef8e8cc1fe4f24469ad97 py3k +76525 a1d166ab18c44ba6363accb9ef2ffa4f044f38c0 py3k +76529 a6981f4a74a1d866c09b59ee7ca0603c94ec0aff legacy-trunk +76530 a85471c475148df0677a91219f166c8b8d215d77 py3k +76531 61e6ce71850089c0d482968d1aa17b28824a2123 legacy-trunk +76532 3f71ebe91f905505c9e50e656b6905885f08a3c6 py3k +76534 c5458ba389d7659f8e912145f8c44ce07f5655ca legacy-trunk +76535 7b74abb803568dbe7f5308f933ab2c9439d5d5a7 legacy-trunk +76536 74230e5ab37390559c9a42f22e3157ff72f88fb3 py3k +76538 4521f5998e7c62e941360399839fe83e9fccad12 legacy-trunk +76546 a8ab63fd309897c0035d2c373c36f0187b108338 legacy-trunk +76547 c9369092fefcd445b9c563deffa2c1df0a60e427 py3k +76548 13748f3ddc7b549b4eb6d66a6599521d6644f19b legacy-trunk +76549 c7d7d5ca84464f2acd7c04dad1ff5489a5ff9135 py3k +76550 988db0bbee3a3e0a94666ecd90410d5c9496c77e legacy-trunk +76551 6721d33f3cd1f3ac6dd16bf248cbae727fb77bd1 legacy-trunk +76551 53669cbf0ed2a9b249733ef069de14b37b715eb8 release26-maint +76551 726d12dba1f60e3db14ff24404f316cb80a58d7f py3k +76552 4ef7b3e2d6a8b0b0a9b7c8c2e98f3449e6e03d2f py3k +76554 527b7c075849fbf64587a546c34272d99b6e4c06 release25-maint +76555 574dd8aca914e443b6675ee7b5b6de90885f1934 release24-maint +76556 6e7403ad5335ea4d12d26e1aec02753abe65bce1 legacy-trunk +76557 fde5130bf6cdbd32c9f4aa8f53e20abbab20f383 py3k +76558 33986648630bc4c09f01fda174d1bc02461d682b legacy-trunk +76559 18024d29869cb1f5d5e0901ec20abbb47bed6f8d legacy-trunk +76560 c4c3fd593b0ac296d3852aa6c4e0a5d287fa4bd5 py3k +76561 297df77ba396470696fa5eb27f7fab183c187791 legacy-trunk +76562 696d9615a2383b953baa676d224114dba8b37ef5 release26-maint +76563 5b607cd8c71bb58da3fc8796e77b103c20cfb83d py3k +76564 3d115782fe1bb04f11a83e34d0ae47343e27a7d0 release31-maint +76565 0c19be450e67a01ec4a2d6f123f7a4c7b0e58ef9 release26-maint +76566 cb836301db6057eddce429b320a0d44470c973ba py3k +76567 3d77d7c16c909796c7f2af37eb1efbdf88697520 release31-maint +76568 14ee75b86a5f041d531bcb41e62947bdeecfc7d1 legacy-trunk +76569 936b6f0655938bec0427c39a2f286739633d8807 release26-maint +76570 9fd8e95b4fce17db355effc119d2718cc218043b py3k +76571 83c702c17e0218df96592eb27a97a8ba63c747e0 legacy-trunk +76572 916a3d350741c7f6cfe8860882b40929bdad1b0a py3k +76573 149c1a7e72c15472f29b9280dcf78fc955324ba1 py3k +76574 4bed796ee0d7869ad2ff00117eed1cd98b3a17de release31-maint +76575 e06c3f62fcc98c0126a22a0fdf1bb66e2a15d95c legacy-trunk +76576 83352ed9229a3f630a23812307c8a947e5fda9f5 release26-maint +76577 b0fc54c5d234f7a490f955049af87505e27b2927 py3k +76578 f2e1ac750f118534ed0285913ef35d0c15589648 release31-maint +76583 930aeded900dc9d7a7399a3dd6f21387fc9aaf52 legacy-trunk +76584 9fb6d5414dd882e8399654ee0e003d7a11acc968 release26-maint +76585 0eaf5c9edd728f27c988239cbc22c9239923d8ab py3k +76586 915a044be834cad2dd4c45b12fcdc85a538d7d17 py3k +76587 e8d550a89f0ba11a6535db71a8f334dcdb45a0df release31-maint +76588 a949255d450fba166dd0eacaa4a8e05e9dc76e47 legacy-trunk +76589 6cd45f5cab58a73c9436b16729481c4d5509f1b3 release26-maint +76590 e96069a1327f936b5e781f49421f40f1594f6619 py3k +76591 218a7eb40d26e3834a0259a819c18a8e263c8fd3 legacy-trunk +76592 d51012fe09b3426206d023ae38754c54a657551e release31-maint +76593 6bdede18fc80df6d6b6f8b7a90e75e065b29cddb py3k +76594 9e51a14998a2a601bbca35359287829517a62994 release31-maint +76595 f37f6b9b224b07905ed8e28e5dbf4cf6802219e2 py3k +76596 74ac8c127a6ff16ea01ae11eea089d7f8356ad07 release31-maint +76599 1ff2c3edc13ce872fb1bcf6f60d5d23716e568f0 release26-maint +76600 2816650d7688c30384f73e98153e8796f8804caa legacy-trunk +76601 84e3d36da4c270c6ef36d398d28489c47c85d82a tarek_sysconfig +76602 0cf99158fa636001727ff85dbc03fda1c03529b3 legacy-trunk +76603 315e6ae64bef7acd8539e084e7f685e4dcc6b500 legacy-trunk +76604 ff2aefc97881f2584435fa115fb8c635846c1c38 release26-maint +76605 e320f88a65c9acb389f6b84db9990938e1ced05c legacy-trunk +76606 ddab3da9473db5876253c0b17f82d5602c5db067 release26-maint +76607 8896c4847423d58bdc1bdd33c1b42e1bdec6faa6 py3k +76608 0a6137944e61a0767dc6a5dfdfcbec74fca8a7a4 release31-maint +76609 6536a1cd47cd3ee81f575e3974f786835a63cf7c py3k +76623 d99ef464ef33fef630ca872ff7f87f453972e82e legacy-trunk +76624 4d7cdf7a6c75db5f77af8befa014e2fb54ef0e78 py3k +76625 1b2afcc3ccf38a83b7153aba8aee3cff00cf91bd legacy-trunk +76626 5d2c9d8877ddb9a3aeb1513de6a51dd4f685a05b py3k +76627 280369677602c6be6936f08c444f12587e6bc84e release31-maint +76628 cf9c649dcc4f4f21914aa5040942b88d80dd519b legacy-trunk +76629 8f6eee42f810dcd630cc4ccbf6391b4dc5fcc5c0 legacy-trunk +76630 cbb6e92c1a0dd25419b43539f08131ad03ef6e73 release26-maint +76631 d9398bdd413a032532a5f434babf57990883a9d8 py3k +76632 0ff47034c691cab3c27b8b65598fe2843da4ba95 legacy-trunk +76633 d68a60052c665065d75602e7c1171db3aeb42536 release26-maint +76634 b40512cec2d6c9f037d37ecbeb767e3aeb33fb3b py3k +76635 acfd5615b52c14c82ca148c8e106dc248f9e58d5 release31-maint +76636 a54c19802acccafa98d1f5684a853bd8c6fd24ae legacy-trunk +76637 e9dac3eff31743b5152d874e09e854aadca7a1e7 py3k +76640 d7cc9017ac4c660195e15433227bda141ee0016d legacy-trunk +76641 0af8181da5ce5151618ca9f58371b230ddcb9eb6 py3k +76642 262a2ceaf05f1cdd6ee876d52e88ba2b505e2a7e legacy-trunk +76643 15ac3191f9be05a45bfe07e7bd625ca0c6fe4283 py3k +76644 8180925c75ba519cb455195cd499f79b9404b42d legacy-trunk +76645 b79d0420c2040d82d7e8667a976582371654ebf5 py3k +76646 5c681ecc9967c41df9e77ecc5449752057f7d1c5 py3k +76647 b60f2b2b9c0454d341eabe351632be4aae40a7d0 release31-maint +76648 75e1b8c05f43d4ae42d4ae0f491f6545caca1c43 legacy-trunk +76649 917058eea4402499cff264817d53da7fe2120e42 release26-maint +76650 fdf7d0ec9d041b451c5b1601d08cb0ea2f057ede py3k +76651 b5cd3d2ec0276d249038265b0b4d681690d65641 legacy-trunk +76652 96954e7dd9b6e21c68e55508f83ad03f9664b266 release26-maint +76653 11434b62d8cd8062feda158cff3480b84b93ec89 py3k +76647 ef9f432e4d39dcd9422caab3919a6efc413de2ab release31-maint +76655 1fa1854031aa2a4629666381594647586b8789cd legacy-trunk +76656 f042db434638392c93976544da8b7f35ec7dea6e py3k +76647 d00ec260d62aa9c9b1c4041b03e376c5c0243680 release31-maint +76658 b8e292369ea8b82cf19e5c2652e389ec64acbdba release31-maint +76659 d31b3350aadbe630e0a2627c12b3c0ebd36f5b7e legacy-trunk +76660 1ee1fa7becf2ad23ee29b21b41573bc483f07243 release26-maint +76661 598de8e6c48b346c2e6fe83565fb4472033fd305 py3k +76662 9df4d5b52609cfe4db5a0cd74ba23eeb4783034b release31-maint +76663 7331388581574e7ebb350b4cb26f5713121d749e py3k +76664 3ec6b51cdbddbb7163f3a9d6fe36418269a3e851 release31-maint +76665 040c38ed22515f973428715a5f1443d75a876cfc legacy-trunk +76666 d587a4e5ba5a59491e25009fb391ec2a9630737c release26-maint +76667 73a9125703c32ac24613fc8f8d618bb1ac0c7da4 py3k +76668 55c832bd32333a1af001796e9c454081ddd0b3ff legacy-trunk +76669 d308029e9ad22b5b8fa4891144647310047763bc release26-maint +76670 0fe89875edef3476dc24afe29eb53b060fb10013 py3k +76671 0148f76d6fcdfd9f25196aaa0314aa8a73d1dfa5 release31-maint +76672 6bb63be7299cb63cbe420d309cb4cfbe31b44223 legacy-trunk +76673 4d7445ca30514eff95ca9264bcc6c35f7ece59af legacy-trunk +76674 b4107eb00b4271fb73a9e1b736d4f23460950778 legacy-trunk +76675 b9e9d540c90d31296b45b2bfd1b57914680ab6b6 legacy-trunk +76676 36a0dd21c5b43d9ae869cc3a56d4077a02da9b8e legacy-trunk +76677 e19de9433a4bfe8cfa386c1bb85e074eb9d04c53 py3k +76679 25532c9932dffa7d92e4377b51d75b6f9b7fe532 legacy-trunk +76680 eab123dc107f64dc2fe11f273def78b18444d454 py3k +76681 1c92fbb3baf26ac5fbea5f47543ab8759a2dd225 py3k +76682 ad145558226b87aec702f0948ae6118a32ffd436 release31-maint +76683 68565817c17f95be441ac7c9062fc55b1228120c release31-maint +76684 6a48a091c0d386c946aa94f06d6bddd8b9d7f6ab legacy-trunk +76685 1c2ecd59d65af99d7504536e6bf81597cea12e36 release26-maint +76686 9e751601f53827e0ea7e31303f5f6afc63940f0c py3k +76687 568618b5f6fd5d455cd08df4a2b4dda07f27ddf6 release31-maint +76688 a6b1e6959382e35f40c191597ed3dbc8281406aa py3k +76689 eea803d235d341cc5baab0a87dfc7f701388e5d3 legacy-trunk +76690 be1cbc15d9f51cccfaccfa7016426a7766ac1e88 legacy-trunk +76690 f9bdbcc8d1e8e6ec8c45809f2bd4038dba462ba2 py3k +76691 607f518bd3cfb80b0fd6ac7476be5a15839d0695 legacy-trunk +76691 bac8ea2b6da35884eae9afc129b7ea2c196ebdf9 py3k +76692 89f6a75462b27edb15120a880fb6a009530f7cc2 legacy-trunk +76693 6ef4bcc4a4502166b6c834b2b6b29a1ee3115c76 py3k +76694 56fce188c6be07eff948ba565c1336f5cb03eeb0 pep-0383 +76695 c0f8e4a23ddf4b949524a855d3ba322b8b3620da pep-0383 +76696 685522c6f30fbe1b1653fa3c42d7cdbd5d18ea25 pep-0384 +76697 9c597b0a6a9b71f8803f64e378bdaf4d4770fcaf legacy-trunk +76698 35f3a19c4265a76c82a9bfff0c9fe7fba5b48266 py3k +76699 f5a447b3f26ebf495bd571cf7e8f59a799059681 release31-maint +76701 45081861ef74aff868f01e69ba6a8bafc7457a1e legacy-trunk +76702 25aede62fc172a6698ec03662d428c82c81f2dd2 legacy-trunk +76703 2750973e3893c43ba8b1cb4a05de0e3bc3e04b3d release26-maint +76704 98879c8d53f165dc8c800d8d84cdfe1603f9db5f legacy-trunk +76705 51c5c912ec3eb42e169b058fd542afc81f858356 release26-maint +76706 d9b4f6ea3e3975b3b49d85efe6468cbf4fa68d18 py3k +76707 7647b14efe71fa9365fb42e091ceaea9a8342a47 release31-maint +76708 db28aeb2fb7a7bba22c6b6c6e189293062293ec5 legacy-trunk +76709 40746956b3792b357853c2348222f2b712fad9a9 release26-maint +76710 683d5c97e476de499fecf86f904b4865c492faeb py3k +76711 6efb46c2b3c3addae2a5b34b908bbbebad8b88fe release31-maint +76712 24ffb0a3ae4ba934687dfcc70e00347441cf77be legacy-trunk +76713 40c362a58e7f0aa10475ad16fbe38ecf6525e01e py3k +76714 cf0c69be011a587cc1ca77dc54077039273bf1ee release31-maint +76715 83a76193997533a274d3b930b758680f31277d82 release26-maint +76716 83c2bf3191d85a48a01a84e8618429ea6f7ce24c legacy-trunk +76717 5b8683a95eaec65f039e78cd16532de9d053d63d py3k +76718 e728ae89ae69d88c85d309694bd056fc2bd3f66a legacy-trunk +76719 5e8b7449f9615c307d5fb21cb6f1f12d60b2afb4 py3k +76720 6c64255639182828b660faa13eb0217c40fd8716 legacy-trunk +76721 2c52d4d3e54aed5c476ba19fe4702b9bab93689d py3k +76723 e6347038df976fcc43a08d70e7a8acf2ef5e3ea0 py3k +76724 ccc5406cb381dfb955f6bfde2b7bf0805f65652c release31-maint +76725 738b39b12dc8f05055dbac43c9e7045233eb9a65 py3k +76726 efeabee6e061ac4993a41cb77a05ae6536d37f02 legacy-trunk +76727 750e75d930215550ddfca7a2651c588973afde0e legacy-trunk +76728 0a76ab3a673c6fd6e20c9345b13100a77c083340 py3k +76729 816303a07762778fd12e5d090fddf9b461d658c1 py3k +76730 273ef09fe8048e0d429912c1d0d1730a33217f2b py3k +76731 8b8aee21d85e6a92de1f0d33ecfe19d19f28a85e py3k +76732 8974ab685bae0640e0cd561fdebcfc5403d5e624 py3k +76733 16691bc8b1894c484d72b8fa480cc86d7b189e58 legacy-trunk +76734 bc716d8f4345d6a439f266f683c5a2484e983961 release31-maint +76735 b5a4acbeaaa161aef2502507e6e9b533ec6d31c4 release26-maint +76736 57ae5d44e731fbc244a4d5e85cfd0db083a9ae82 legacy-trunk +76737 8276d00d3100f5af6615c521c19d26f16c67c318 legacy-trunk +76738 8b6689c0e5a6e6c58b9ff53dd83ea6ed15cdbd10 legacy-trunk +76739 b27d946389e767e64671e5a506ee02bd30af3588 release26-maint +76740 63169cb9e49a01f11c64a8536585ff6a9608415a legacy-trunk +76741 92f7c4ee6aadfc8cf1304710612c770b4e26a4a0 py3k +76742 752e8608e131b71da2fd1fab9f74dcc2fd60e1e5 release26-maint +76743 a4409cf6b5564a6be3db4f49e0fd22a41ac27be2 release31-maint +76746 9211a5d7d0b42468615e72724e3478d9f64dec44 legacy-trunk +76747 374d4e9aab052b5ff9c578600f96cf4de688c9cd release26-maint +76748 6f9ad0418f70f196799aa0320b4915e352c5de67 py3k +76749 4ee226890b59909d78c09709dc292719c1b73e28 release31-maint +76750 d28fbac37e202f57fc18274de6c38174789ad021 legacy-trunk +76751 e29a45331dea8b548b3ed362ee78ea187030a12c release26-maint +76752 66fb1e2762d3423d7f3a96a7bb8d51a7868d6be5 py3k +76753 7562e376d9b551e7a3d50f8370679e700deedc16 release31-maint +76754 ae93962608359edbc2931d8cb1dc477998fc48e8 legacy-trunk +76754 a6bf07fff6fcbfe8d490518676d8bbf72abb22f6 release24-maint +76754 0cd7ac8c6bb3bbcde02dd70ba9e2c959ded6e729 release26-maint +76754 19b4e1f6443e1999330bba30bffe0594ecdb135b release25-maint +76754 9b6b1c1c1b330f1219144bc54b9c3c673828fe40 py3k +76755 cb22eaee86c90c0fa3229fddbe0b5160d4de9285 legacy-trunk +76756 9b83bfefc5e7f6faee4853af9cf4a29fae316de6 release24-maint +76756 bbab602da1149a6972b75667f9150c413935c3c0 release26-maint +76756 e7004da29f512ddb463bd471e7dae1787a7d9541 release25-maint +76756 378bb705be904bb2dd8dca4b7f424fdf52ea6591 py3k +76757 7cb73e7c176d30cd7b739d9ca9be2e4659c0100d py3k +76758 16cd21ba268a4969dfacc672042a4e91692d4f71 release31-maint +76759 aee8eb7f5f021e628a20b57cc51fc7d7be4ecd95 release26-maint +76761 256e9f00d061ef8d5464e70ca91e8e64c3d83eec release26-maint +76762 4d51aa572e8c9abe9f9e6b965fb6f432a97ec246 release31-maint +76763 2ffd19a224d41fa4630e443eadb54a84af7ebeab legacy-trunk +76764 d9785909c3a72b756def2696d81f160d4bc13c08 py3k +76765 79e0dbb6c4b88c86417fe699ddffcb77d7a8d7a2 release31-maint +76766 8690a7eff82a1e3d8ad57d0d0d7c1b85b8639d80 release26-maint +76770 ad917b8fd64cf60147213cd878ee5ee3e188b8df py3k +76771 b7ec4afcfc3f0bdf880b35b1bf353e9d2284f637 py3k +76772 73a6b9b0543f4c801315252f0e20917e013143eb release31-maint +76773 8048569eb53f5f71e125e827a8ccb1445413c8af py3k +76774 20b7deb53d4e58b294d68f9e6d8e5f5e6eae9c30 legacy-trunk +76775 2b934d466993dd1b71c8caa309412f8793daee75 release26-maint +76776 087fe5fa113c1fd10d9b54779bb3aa8aa90c6473 py3k +76777 d8c5e38515b6cdc5230955cb190029205cfbca15 py3k +76778 1558dc69aacf26d860eb7efc6cf63366c9e57b58 release31-maint +76779 a769a9b34fbc2c5aca2ac79dc6cefc00c5dc2d8a py3k +76780 493780ea35cf821aa7a834d25061c115bd8d5a64 legacy-trunk +76781 ed2b6883fc96734b1bc1537f332ecf0ccf1c6399 release26-maint +76782 46c229742c64213ff0d8b4d74d0a294fd9d47a58 py3k +76783 8c47d7d2a023b51912ce9f2ddd4c83cac73dd982 release31-maint +76785 11423719babb4045e8e0ce4adcf462cca3accd5c legacy-trunk +76786 464851bf22fdeb50077e14a0ae28f3fec352dd10 release26-maint +76787 2fdcd73c32aabb926e509ff3212083ac07eef7ca py3k +76788 548335cb007b1fe874feee0f24dc314f169e8688 py3k +76789 4a9e43a3b98533aa7050c124d39870b0a81acd5a py3k +76790 c915ff591a2f3341d8c82baabbda0ce6cd424cdc release31-maint +76791 16cedde9af00904c450e2d0b9abb3b1aa82b1503 legacy-trunk +76792 c7087ea1c21ddd3a3ed611e1b945c893290af709 release26-maint +76793 e7c94cb72678991bab7ba525c0b8dbb035913659 py3k +76794 cb26299e0e527b88d5d3d49695ec43886b650eba legacy-trunk +76795 c2e94ef0d7e585772feb6f85db32cd6a39c71404 py3k +76796 0dbeccd7e0e6faedd1fd2b667e71eee0db62c3b0 release26-maint +76797 42e311a476e80b104bf16514165eae5032f027cc py3k +76798 215ddff199c1b67ce782ec746e191646f89d154d legacy-trunk +76799 27c63d6526209a7b82b80350e3df95ab84ec6736 legacy-trunk +76800 1392e36af1b26a23b07e0c1cd9afb62cb7b2e6dc py3k +76801 6052751a04c823272aea3ef19bdaa83a6d1dc012 release26-maint +76802 a74e04fc93eb9dcfcd330259930d0cc6857c4575 release31-maint +76803 654c68536975146524aba4c5eae95d1b42dc6ce1 release26-maint +76804 7ccd228b895cc9f08db55c2e0dc4b9f78ab750b1 legacy-trunk +76805 54f84558ad2b2f671107746431fed2cf0a0d6d09 legacy-trunk +76806 24a8a29c8a4a046e644f3fa3fb06c3a22c14d9a5 py3k +76807 3a7d54043aba8ef980469df2931481b49e66e91f legacy-trunk +76808 12063a7b6a2a29edbbd88e6831500369c6b48d1f py3k +76809 35df677989cb955104a2b10bbf188e39695b2888 release31-maint +76810 fc70c8d743db72e6a9d2b8f485ffe81cc8032db5 py3k +76811 62106b6f5596c893c76a4877c9c4ae4e9a24b728 release31-maint +76812 7c421244e6ea8f0d323bd0355f4f5d9592ad5d5a py3k +76813 536e46ed10acf4362007af0cf208f6f1dbf83c66 legacy-trunk +76814 b3a364192c0ad97c8c30064288ec01e3077e6aa4 release31-maint +76815 bc934098caa101e1819995e371e257a32a73ca2b py3k +76816 056ffb8e17b3f54f09606a3ff03762a73c5d2261 release26-maint +76817 dd5391d4bb680d4f8449c80d2cd9da998026fe61 release31-maint +76818 6b28522197db10e44d8ce963d98e38087c197308 release31-maint +76819 9f357c96f246e8840542786dcf0e4fca0a65e41f legacy-trunk +76820 72ef3db5c6b37b28147c160d04d5814a376fda6a py3k +76821 e5f2013b29a197e1cf8b3adf3f1069eb235a5f28 release31-maint +76822 6e131e0713105d09bad344b8c15feca7090468da legacy-trunk +76823 da1fce540885e1d75ad6acca4756224e24dd18fc py3k +76824 40f3b8b83cc6a3e9cba5eb4dd36bb58273e40675 legacy-trunk +76825 7705ac218c870b515f3a40cab94878ca5ef3d38b py3k +76826 c0c861d38c4fdaef6bad8ec4a104845945211d41 legacy-trunk +76827 3546779b21c7083e5284d497aa5d99f3acdeb6b2 release26-maint +76828 68249ed8809e8133c83a46cbe97dda12ab4a4a70 py3k +76829 bc55f5d50dec870a946570d823c66a013c659403 release31-maint +76830 5103f68cca69095e70cd73642b02d8d41b731dc2 legacy-trunk +76831 2b8f485b0d0397e12502a3c930632370ba7cff66 legacy-trunk +76832 76bd5bdceccdfd966ec2b8b0c3676f1b105bf61a py3k +76833 d2e14653a43c995c7f622c41585deefec8293ee2 release26-maint +76834 d899f28dbb8e97c210962f800f939640625c3592 py3k +76835 0eeea7656c22f030ed01d5f03cdea9620f28d65e release31-maint +76836 49c68a2b05852c54915cabc927ea83c474dea3df py3k +76837 bc0a6e4ce1b0bbf1e38d66d3902a15b7bcb2aeba release26-maint +76838 919e2142726efe2ba0bd15544047880d2a7b7a00 release31-maint +76840 fa4f23b182de6791abff87a563437b3660026e2f legacy-trunk +76842 1592e8951b2bd354444b9880e236c7204bdec8f2 release26-maint +76843 329ef294cc2db56d42d82d8209c716b20664f78b py3k +76844 e9cebbe9de5c31af930c0c1f8cb68da62a4d1971 release31-maint +76845 960e9e84ca59755c6b5ddad2e69de370214674c1 py3k +76846 7c3c00e76c2488b66e9dc2153de74812aa736d3e release31-maint +76847 66640fc607ca0635588d6052f9bca6509cbb7212 legacy-trunk +76848 d862000f1b01553f97e2676dc60430838e0aaf70 release26-maint +76849 24b685318633b3a3e2934eb10ed2a8a38da3ab98 legacy-trunk +76850 e50e49d61fea5f34390b2b997f849bfaccb22c9b py3k +76851 a9b6f27d1e290ec97cc15d59e1f54bc6cecac3d1 legacy-trunk +76852 c2e4cfbb398cb85f11b33fcef485c853b185816b legacy-trunk +76853 942823ddd818fc3892b1880ca373a0e436fd90d2 release26-maint +76854 97abd7aabadc28e28834db63ef48e31fa5ab0a2f release26-maint +76855 7eb050c0e65467c0d1efa09139938edf9b00ab49 py3k +76856 2bd0f391593840c761abab99f960198f7f4dd266 legacy-trunk +76857 9fe15c1f99cc9b0c9f2ecab0f172360c697d3a88 py3k +76858 4fcbe0ea9b31781385c5765474879d5b2f31a583 release26-maint +76859 bf69c3f2b778e403c45e5483af6b4b9fd56ae83f release31-maint +76861 b206ad8cf5bf2e4475e56f1fc89f773e6ba4999c legacy-trunk +76862 22a1ea90faa6177376699a444638dfdc76b188c7 release26-maint +76863 b45ca11b9a3ec748ea4dc0b754fb5f9240944d21 py3k +76864 54a502db3b8ce0d93dcfa6f36897bc1b4767928a release31-maint +76865 b356ed9564e68c2c220d8e20aa7d1c64b6a7152d legacy-trunk +76866 0a1c39c5f1b9c9e43100be2cebb246ac2f30a273 release26-maint +76867 b1896620c296d2bf2caf8c7734eea7fa4bf4e2a5 py3k +76868 b13f71539aac00a6dca4b81d9c6dbea2c17ec3cd release31-maint +76869 62afcfa3fe188b7b7a48f35856caf61d755c0858 legacy-trunk +76870 bb664d21939b688dfafd40b4996c56a2ba0ac349 tarek_sysconfig +76874 e26ee8ddd29d13c709a17bade90c96945854d468 release26-maint +76875 51d37ef43e1e9de5813c4f38b624d350f0aa0a59 py3k +76876 0d39dab05622e7b1e31acf3b5b7089fa47dae0c2 release31-maint +76877 019491b26b36cfe7018bf4d213a521d90cca8586 release26-maint +76878 d350afc337dc64c47cfac78945fd8928cae29ca6 legacy-trunk +76879 1e8164b5f36dbaf2a59e9c0f2b1cc1af8ab37220 py3k +76880 e5df9a1dab6a083b55e60ab16831c4db818d24eb release26-maint +76881 64f5f375d073ec629a83e3d9a488e4a2db02faf4 release31-maint +76882 76523346e20d76d5a9f34404cb79e36e7eb1086d legacy-trunk +76883 d106ba6126a18ec0b910db3ff0e53066f5c499c0 legacy-trunk +76884 723460b90add14ac004b45543eeb52191037fd62 py3k +76885 0eec633ef0e320e27793d8cb464d83dc65f1bc9b py3k +76886 9613ec41aeaaa056622fd95afb161ef7419e297e legacy-trunk +76887 a349dbeabaee5a2fd61fd60ab8667f4497d12393 py3k +76888 5b3758ee43566f993bb8eb074b7e05fbc2fc2267 py3k +76889 36218b681d9edb167e3187f27a1184c911c1825c py3k +76890 ddd1db5d2fe00e689bc156fc73b0cd878a51bda6 py3k +76891 262130d70306cbcbc128a404242bf8a0d9c693b6 legacy-trunk +76892 b8ca61d6e2623a5cf02e0835b219f97971c834f2 legacy-trunk +76893 2d75da65d290e5de5d94069b5018f18ec7473e7f py3k +76894 aeef2f27f9f0cf6c9a541ee297c0ba4247eb1747 release31-maint +76895 7baa55b6e8c9188d028943b9861ffc8f2c5b4d8a py3k +76896 1013208990417f4ee0ba0a17ef12b705a352b2c7 legacy-trunk +76897 6d47b24947137d1e1ba186927e041b7ae3fab305 release26-maint +76898 77e2313135dd9ba018ba69e68abda93c603bef67 legacy-trunk +76899 9b847098cbf9306f34cb0bfef0e91debdc635409 release26-maint +76900 18eb00914aee5baca98cd2845eecb5581d86881e py3k +76901 6f9c0746f1e205068a836a94ab03b2e56199f5fb release31-maint +76902 a08840ce88d34c1f0379dfa9a2f85913a9a08a9d py3k +76903 ed4d5cd47ee9610207c4c0d5e916734214ab5464 release31-maint +76904 f7f5e1d27e06302e5532fe1dbc1b9ac1a48f04ce legacy-trunk +76905 89996755cf39e70bc46e74c8538963eb970c33f8 release26-maint +76906 a46dd8da3c30827c11018fe0a610d98681b09bf0 py3k +76907 e23f5ec93315857d7229b7bd2d6b1b49702865f2 release31-maint +76908 10970f64ba331b189bd8e9542f9591323dd06cf3 legacy-trunk +76909 70cc288f919e17ea6023639a95322e74663bad6d release26-maint +76910 724a0da85c42cae79086bd7849d6e89ffd918022 py3k +76911 dc1aadf9fa4a3c6ce24600e7dd6bdd627539b4b9 release31-maint +76912 9c95752ede1253a9320fdcdc77e14eed3eaf9575 legacy-trunk +76913 531b11a6a1255cdeaf4da04b4c6eaddb9755fcd2 py3k +76914 ebeb2e7763f5a3a583be5e78b50b08c175e4ce23 py3k +76915 ed1312cdb9b20a99f04317e5c1d910f771679819 release31-maint +76916 5ccc5d4068c1aee2628664a43484794e204ee48b legacy-trunk +76917 53f21f08af0d44c774d4cf821ce2163e02e8d3a5 py3k +76918 d5150b2934fa60d3741bf5361ca5292068727a18 release26-maint +76919 6f600e92a0f527da6e5f7b2a7978b3ad8d12fe43 release31-maint +76920 896bf49628abfd3b0fd885c47b81d60295bfd8cd legacy-trunk +76921 cca097ea27b9c1d8683fe42bb7a23b52d14e29c9 py3k +76922 e9da812f4fff43144229e144fed819dee66567ba py3k +76923 2089d9c1ae13e1b3ba0d74836c9fee9395a69797 py3k +76924 9e4c901f0093cff04c7c68edff3f15f525db21e5 legacy-trunk +76925 d890c8ffad02f7c03f22808e598fb1fdbfc57465 legacy-trunk +76926 c9a5b3a460ff63fd750e264c5968cdb67edf2b06 py3k +76927 650b326403cd26bf5f2e795308919f0808f66c99 legacy-trunk +76928 1f8b36320218b84452e443000d87a72298cc58be py3k +76929 784bdc7b19aaf3a1ccfebe93c2d70775a3c2c603 release26-maint +76930 7941a9f865c2283c3c3c12e730213091aecc7dc1 legacy-trunk +76931 6d7464dbb714b14ea7c2e13bc28a57a38dab80d2 py3k +76932 39149d225ec7a1523ce2a8550290c380e9fe57ee release26-maint +76933 02054afa362f1b364a8956fd1b56ab1c5766aa08 release31-maint +76934 04588eff25a190958a357314a873a60bd5ce1489 legacy-trunk +76935 1c2b3f795d1b23e219b04da4ac82f78b3add8bea legacy-trunk +76936 1daac2ceedbf25c26ca8d06739c335f689958044 release26-maint +76937 cb05ccd75996bcc0165e00e84221b2ee9b1d37ed py3k +76938 58133714189caa85843bfee54e3008487cd517fe release31-maint +76939 6630e36af9c39b0624cac154dca23a56f9ce32be legacy-trunk +76940 550053baaffa79d4c45e72787bef5c588a648e18 release26-maint +76941 4ace08aac37639c3655083f1fe3ffb54bfc87264 legacy-trunk +76942 d8562002f8e5c1b6bcda61bb93894b3441fb455b release26-maint +76943 465809416a82f0bf1e908b8e0d0faecf1331eeaa py3k +76944 4d430e55ad7c58adea49fd3c4fa6f3cac0b0f8ea release31-maint +76945 6c1b2065d35cb3bcfe1cecd0b12f7a07cc9d19ee legacy-trunk +76946 bf2eff60eae2baa177d91e7c8afcbd46d5ddddea release26-maint +76947 99c0ab3cd1f9569807e77a1821173eb1d423156e py3k +76948 79717b7d379dbffebb67668cb99021899a871110 legacy-trunk +76949 b1d72d8946217b11318298d554340ead13d20055 release26-maint +76950 08df1c9ea643b55ccac64104bb84a223bda323be py3k +76951 d025f49873191a034258a026fa979ee0d7cdb62c release31-maint +76952 096b1d9978538bb2c8860a437b067ffc78e2b211 legacy-trunk +76953 1772195405e7ea757e49e0ff56460b3e927e8ef3 release26-maint +76954 ea5e54bd6274c334869fc51a15ccfde0548f2e2d py3k +76955 86b5df04634c066e336d1f73e373cb0ebcf0b8d7 release31-maint +76956 3e2b7965ada997beae402ac0f55de1b423ef9740 legacy-trunk +76957 0ee2ae75ce8f48b79bbb3f78b9a4493096f4480f release26-maint +76958 39ab1a36b209866a251d0dec283b8bd1e1969d75 py3k +76959 09c171fa5935a1e08fd22c12a001daba6d215628 release31-maint +76963 28de83f17d089e4547da636138e285445b6de6aa legacy-trunk +76964 a7c4c717a9c7881acb302523e0000593507542f2 release26-maint +76965 48a99cf818c92def6083c8aab98aab6db1c8cc4f py3k +76967 7b2eaa34b86b367078f78686e60455ca3d10008a legacy-trunk +76968 6d09e3fdf840cbd81b889768bddd3f0532c15051 legacy-trunk +76969 7613def099d0bc0af42b6cdb78806cbc9c7b3d92 release26-maint +76970 8071959bc306c51e465666c26a2e65c098c02943 py3k +76971 50f3046d4fa00258ff26d5e4fa232c82a388cc5e py3k +76972 8c86cd80ae261a0b79b542cc2b66196838791d6d release31-maint +76973 13e62cf02bc3a1082228c807833d0d58f895b797 legacy-trunk +76974 09c4f1b9439c9de7e5dd9529a7b8b4cb27d46ab8 release26-maint +76975 d7610ec95bce28cdf817ac0ca8aff51850169990 py3k +76976 7559b70f989938d1fb1cc101ec060c44b3a1cca9 release31-maint +76978 7f5cbc28f4333c9b43a368ecefe5cb575264a429 legacy-trunk +76979 e73001afc56f06dcf5a651ed0aab1d98a95fc87b release26-maint +76980 9751ddcc188283ab82f85a959565aa4696398e77 py3k +76981 37a0598d332f7538b0d3b469935514f1c01e61ab release31-maint +76982 2e484190ceb5a19948033ab6ff01f1c677f79c29 legacy-trunk +76983 1a25b420ec00cc4f96dfcbeab611af62cbfd79c9 py3k +76984 606a45dbd10ce5e3e5c6c7da2ba2ad84f5a2bd93 legacy-trunk +76985 35249e9563aaf190d30c55fdaa3b3ece65b44c7e release26-maint +76986 db197b28e045443b5afc69876e04f3893b364fbe py3k +76987 20fcebd0cb5dd86fe55bad29062314efcda3a839 release31-maint +76988 aed3218764909ee3a1f7c74e5fa2e3f108cf5c15 release26-maint +76989 4d3b9b4caff06b35e5e20f173e86d268c89d8ebf legacy-trunk +76990 442d2b9d81e098f181738800de7d4c6a5db32394 legacy-trunk +76991 f31150d847c3fe43b4186a47267212a647d229e3 legacy-trunk +76992 be788660a939338f61014f16c4221411f1364759 release26-maint +76993 07a28308cebb069413cbef0b0d266d5cf1ffac2c py3k +76994 65de0bee0ff2ecbae65a86af724b6aba9bb2237f py3k +76995 b9927eee2a69fa8225c7b9f27e31fd08a789a476 release31-maint +76996 30bedbc297635232551abf182680c1b0d4bee67f legacy-trunk +76997 6c8130152e88a201e5065ccbfef48aa9265aa60b release26-maint +76998 cf74d9af895a694bf0cfec2e885d2f7e407acc3b legacy-trunk +76999 1520697920201b0289d81dfbbba1c8482c462b7a py3k +77000 9dc573b6f8f5fa7f4c7c6c66deece34340ddfd3b release26-maint +77001 53e321259556e5c0a5ce9b7ecfd8bea6ffc91f4a legacy-trunk +77002 072c3d0f051e9b8bc056f82840c89f276afd14fd py3k +77003 df261093b31cf4dddc8106a5fe8c9f09762a2e7b py3k +77004 bd28745c6fe70d7278862ea7df84bb18cc8f9367 release31-maint +77007 ba74d58774b70f6a6c8766666127cf179b30558d legacy-trunk +77008 18a8b2bfc9c2ebc8ab4d4bd0216ae88a6bb62f1d release26-maint +77009 429a3e38e46bf5d78573f7a3c38ee3e667d074e9 py3k +77012 93d5cdf1c4573e86a4932df7c4eba29d765bf756 py3k +77013 3a736ad661fb643c383aaf7ba5418bce03d3d94c release26-maint +77014 251860db3493f38cb807f97ffafee0a831b2e33a legacy-trunk +77015 24006ca562d5ab95cfed5857684944c2e7649a8b release26-maint +77016 4aa0d816ee5ba05d35c32d18287d9e3a85cfc138 py3k +77017 8021b90b56edbb7f48cae42e346703452734bd3d release31-maint +77018 1c4e89521847e00382239b2afc93c29888cf9ba1 legacy-trunk +77019 13e2f8a749c46420a9b0a0e59c95885e0957a493 release26-maint +77020 886275ffafd6b3c65638f6dbe9c06a674b298527 py3k +77021 e757fa779601f5053e402b9bab32a58960af17af release31-maint +77022 df2cfcf9a0738e1ea841752e500a47949db681c6 legacy-trunk +77023 1f86e0e46969fa422313dc53fc1218d98cf7115c release26-maint +77024 5594253331787e1204209d4cb54263086ebed7c9 py3k +77025 d1f1a059154ba9f1230814ba7c17ca3f12944d05 release31-maint +77026 ca24ea1a2ae2ed872625aac44993b44185d6915e legacy-trunk +77027 1df73bf38c55b857db80211ba41fa8b4e3712746 release26-maint +77028 35de57f51599573494cf7a2d8e7275b66a76bfd9 py3k +77029 71e6a0dfafc84716f467e9e332194c75339e9efd release31-maint +77030 9da0cf2dffcc9ea58c52019714109cade166d59b legacy-trunk +77031 aaeb65bab3c051fb5bb8d48e3bee2437c9aac65d legacy-trunk +77032 94e957cfda383af98f8d18852a16cc0f5c0e20c9 py3k +77033 46371b28fdd11851ce5015014407a534f862a791 legacy-trunk +77034 bc5ec50c50f9eab333457401cd53f36e61124087 release26-maint +77035 3c412447efb2030b466585b63b459c56b932e246 py3k +77036 e7dcc7485d0bd81c58f8107a04fd7cc4d401a11c release31-maint +77037 085581884e6f6322eacd14b75cb9006f8536b943 legacy-trunk +77038 870a46c8a6705db28cd9c8fa6075b828b7adcd14 legacy-trunk +77039 0ef94da75bfda6d73e882779bc135d855873ca2d py3k +77040 427c2143e2c9ba1f87c96217751479b7f7ec49bd release26-maint +77041 842634276d011dcb1f42f0ca3b463bf1af195b2d legacy-trunk +77042 3b86b23c58fe440bb0d88c27e24336328d389657 release26-maint +77043 726323fd87ca50c60894e857752abf1e6be120e8 py3k +77044 3434e6b11a9218ee8eaeec7b5ba4d5215b35c3ca release31-maint +77045 86387b8b9af8b9d5ff63ab38a398f3effd075309 legacy-trunk +77046 9424b84a2ec952a30b94302fe8c77a492b46dc22 release26-maint +77047 f560e1a7744efad62b982b969735c871639c5fb5 py3k +77048 9628eb7e98dfb78010a6703a0946e01dd01b4c13 release31-maint +77049 db796567109cb4ecefe2964876b2ff26b8495f7b py3k +77050 6ca1b9b78c3fd79bb71f71f6908a1ca9da619a5b legacy-trunk +77051 e5c4c9712661af3e2e805282ddd9f655c900deb1 release26-maint +77052 49df3cf919f7dbceffd25b8c1898742f38213e8e py3k +77053 2106112f5b07638ecb4b8f9ea5a0ce4dcb5c2891 release31-maint +77057 5dc5d6c6f641789836ce59d4f53ce7f360b1e4f3 py3k +77058 646764994120093d006a62eb50d9a83026b07ac0 legacy-trunk +77059 15129c80b2fed7c500424c60144d5c7a1f7d0691 release26-maint +77060 68811dfe706ce94d31e41ea054c169cddee48825 py3k +77061 e372a8056c9d537d6fd4941af51065420187c2e1 release31-maint +77062 c4e60988834df0fd437ae3422da0cab4acd6fce0 legacy-trunk +77063 aaa5ab7b942a8e4453f1310dcadd9c5e57b006bf py3k +77064 560b8766919d5d15c442a12c99979dfb51a2f82a release26-maint +77065 229078e47010c8c8a7bcd079c8d04f7e8a03916a release31-maint +77066 eb0bbaba0361b746fba970edb5899572c9b0f7f1 legacy-trunk +77067 dd6726c978c66698f4d690538d82962d66e2aecb py3k +77068 957289029c0534e5de24fca9272caf80fc262488 release26-maint +77069 85e781f599bc8a94f567b1a36404fcdadfb2711a release31-maint +77070 8e82fb043ae87859e9dcb5fe00a700dc8511d191 legacy-trunk +77071 ad7e4141a3eb83f86c6c569040de353b175444d5 legacy-trunk +77072 73365bb26fd650cc0460cf35d71fd0b6b188efc4 py3k +77073 1e37180eecaea443f148f4b3790bb614bd5cc3fa release26-maint +77074 5a9371017edf9a1a5013ff8a01d0a9aef3edea0e release31-maint +77081 525f67beeb89c7fa20cafc9e87186ee0011267aa legacy-trunk +77082 30741ef6561738df70cbe27598750de404ece0ba py3k +77083 57433b833b2a8df341145ed0e329d99c63c51ff1 py3k +77084 cbe1bbe544c9e46bda1578f360b17315acc94306 legacy-trunk +77085 a11a8e53c495ce8bc7712355dbdf56d8f5cc467c py3k +77086 fe0459dc9889f9376e6de1a514133c9052938e30 legacy-trunk +77087 ffd800ef46ea054e92efb4906cd27f143163e8f6 py3k +77088 cf39c5e462f94bce5815b2d68b0bab53adf5bae2 legacy-trunk +77089 c1972eef35795ce2d4a131042173f287a11e3e0d py3k +77090 c14a014af954ebacf040c69c64a7051c163ebeca release31-maint +77091 5e84abfdfeabd75a515c468a18c3e216881e1b0c release26-maint +77092 9b4b43a8c913059550fcf86e5c87b8ebd080d4c2 legacy-trunk +77096 374191e10a45be6d56823aca17689cdb2fafada3 legacy-trunk +77102 5c8c4d2f8b7120d1dea8b951c9ca0db9084c3761 legacy-trunk +77103 f764e4126a231ba0b7cc68b5be48d1057aef7ddf py3k +77104 3b46f2d3b75d02f356c1afbeca3fb5cafd67a7d2 legacy-trunk +77105 ec8bb1514d671a63bd7c73cb35debdc9600ef3fa py3k +77106 15eac765cc35d94d1ca9874604212b50e6d85ead py3k +77107 0498027712bf42c30d72b9c68ed935bedea52f71 release31-maint +77108 3aea57dc21a9b1d3b86148af50dcdeb87801dce6 legacy-trunk +77109 38f593a83cfc8423f480d8d6b9a136d8de9fa771 legacy-trunk +77110 8ad33992202aea3a6a01782e02131352593e30a2 py3k +77111 abe5008b93e9a4c732ec5314dadd6586234b4127 legacy-trunk +77112 61a770f7b951b3f9207e7d66c98e4c900cba9e2f release31-maint +77113 57456f16942d9900e94536606da82debaddc594b py3k +77114 70d7473afcfef67b9662da2c1cc54c1ca42e7ff0 release26-maint +77115 7233bc34fd44e288fbe6e15fdd737f9e52921c7f legacy-trunk +77116 e484fda462a60b700610dab85980b826e7aeeaa8 legacy-trunk +77117 bd6b03fb71a064669b0a8d22e06856f8b8c372f0 py3k +77118 259ed5cb93eacdfc4910ba13a241e32af5766126 release26-maint +77119 eafa053af0570db07ab7455d59f2ae4da77553de release31-maint +77120 ebd061838fb17455f985fbc56d330e6e58190f33 legacy-trunk +77121 5e0a9471601f63493bbfdae984bc4775eb55827f py3k +77122 8c60a955d02c0a2d24986b7cc528d7dd85cf55df legacy-trunk +77124 e3f5914d9bb3fea7f89c55c5fd31a6da7058d66e py3k +77125 23f467151756a7c83e8735f113137af12daf0ea6 release26-maint +77126 c502ec2434588b8bce80996c5bb1c0273e6991e9 legacy-trunk +77127 790e8fcf51795f32aa58df9e2f5f91769d6aeb55 legacy-trunk +77128 6fde11f4d842666f319eb8873ed45c0795ecde1f legacy-trunk +77129 fb671df0f5cc966a817353ef937cab651ce95b26 py3k +77130 e53e55252ba84bce0e9bf133e0bbed0611d54dfe legacy-trunk +77131 92a58b80122067334977a590cf81d30ca31bb046 release26-maint +77132 19f2359944eb435d1b6e527645962585b1502538 py3k +77133 244b979d544c12484640186e9a7435079140e005 release26-maint +77134 d4ac3a8000c75188d029d75139c7b520e7e94b3c release31-maint +77135 a7f6a53daa12d1b5c656fbe37b9d25ddb5193cf0 release31-maint +77136 4f0988e8fcb156ddebc449ed411a532095e81761 legacy-trunk +77139 ac5fd8909998fed9f628f5c5cca29ad6cb03317d legacy-trunk +77140 3857cd4d5b35973b5b933223b9e26ac2e8c47c56 legacy-trunk +77141 2aa0d9f01d4753b56509cf5e09b0bd596ec739ad release26-maint +77142 6248b7fdec0dbb59f9d7a443716473705e5b04da py3k +77145 ad609d0f51509742a142feeaaaae0ae933ae5332 legacy-trunk +77146 740dbae2e30cffd01204d83b243c7ceb9fc6db97 py3k +77147 174a28c9fb4070250f1de114a69019d5af460d93 release31-maint +77148 5ad5a1d612e5d148c7ef5697e1262b443b0637c2 release26-maint +77149 9cb275db4d6d584c192eedce2615a1e5f88d50f6 py3k +77150 00fe689f2b78d55c53620f90a5ce2d8685f32928 release31-maint +77151 8d9c9340b12e16c8c35550aa35c947b8fe3f234a legacy-trunk +77152 7361ee2ddfdb7a440eb53ac24a53bf614c83e987 legacy-trunk +77155 db62977c5713f90a7ce7c809cc07dd8071f53a42 legacy-trunk +77157 ae19c287e9c0f8556a1ea4a2e7241b413b564955 legacy-trunk +77159 96a2371b114b9dcacec2b114ca374325bd2da7af release26-maint +77160 81cf24e5ce928e9c903a9e63ab643ac28059ba7f legacy-trunk +77161 6c19a6a697a611d4ca6d131b502aae09e60dfe03 py3k +77162 46f4b7b5b4dde47ea9b5abdeb3a609916a44365b release31-maint +77163 8dc6dfa41fd565ceac761fef1c0b785b5ebdd5e2 py3k +77164 2528582d68f6bf696642bb5ce7dbcb659f700f32 release31-maint +77165 36aed9e3642dc4d33678e7af56e2db41206883c3 release26-maint +77167 efa597633010efe3c8b36a0415cf89189877a49c py3k +77168 980c79fbd4c5df45cc2f13fc92b215fbe865389b py3k +77169 8fee2ab53e716acec9fd976f888a6bbb70aa903e legacy-trunk +77170 228bba2d1f3f75086f712ade71e30843f47912c1 py3k +77171 e078579984a4e4fc13829a75e36250b50cf02cfd release31-maint +77172 b3d37eb9632235463263329f54c1d9ea23e97e2e py3k +77173 4d6d952fe288118334720e118c43940b45267364 py3k +77174 d52a7179eecee2ed5c86f59e609d4b2d55653d23 py3k +77176 443f71dd5cf02abd9514734b537237771e1255e8 py3k +77177 a92f0a0afe567499d8ac2de2abb0ee0a1fc4d5f0 release31-maint +77178 384a7a3709dc8f9e0ed8a682fe6d1f272e03ef78 legacy-trunk +77179 bf97acf8ecb1870c1df8c09ddf9f6c298b0d9564 py3k +77180 7c630931cc831c7e6b74449be0e5d61ba94b6eda legacy-trunk +77181 236dcf171b746f223d2ed04e4dd87b9179662535 legacy-trunk +77182 1e92fe593916dc0ce36330eb045b69d5b025704d release26-maint +77183 dbaa4eeeaeb8d26fa9d1d067230b5aafd68a0dad py3k +77184 5afa16914295e5f7d6d485af19eb93084396f2a2 py3k +77185 25aa43e4302bf5db3c392eeaceb72e32af69398c legacy-trunk +77186 7d6bff7221950fe8d22d0bc22f6a92ab3301b0d1 legacy-trunk +77187 856a45c0b6c41c65886b70c72e3124fc9dd0695f legacy-trunk +77188 5b471847f6ea6ec737e3bcb91df200b50283d607 legacy-trunk +77189 ab40b936bd1c143178648999780daeaa2ee234db legacy-trunk +77190 e62be08478bcdab6848ec97a0c1fd5e1b1e62924 py3k +77191 1666ee8daf9b1249301afecf068ab5dd13cb85c6 release26-maint +77192 53100db351284f7b50eb76d1d0938b53281d6b4e release31-maint +77193 84b00e6bd69b21fe3f4b4f220163d8bfd746a1f2 legacy-trunk +77194 6212edc22cbdf8ce9addb254fe6b73b1f07e8012 release26-maint +77195 babfc061212c1743f3115afda31771aea1c809e8 release26-maint +77196 d8e64a84473cdd54a9c131d267c0bb32557c312f py3k +77197 3e22c7e9f307cb1c93f538dae1985bf6fc26897b release31-maint +77198 e4553b607b43dfc17cb34c3824461207703894af legacy-trunk +77199 42cfb727ff485a78fb53921ab08dfc9a46a9aaea release26-maint +77200 e2261b61df06605b2bd5b492fdd5166ed1241721 py3k +77201 71bb842b79ab2e30a60ec48bb756a73d6fd749ff py3k +77202 212a722864a1ae8774f52a926fd911c56a1807ac release31-maint +77203 0be45b5cf0d63dc324bf7549c5b3ae1246a9807e legacy-trunk +77204 fce6611241d1092ca1b7d6e3354a6f880225db68 legacy-trunk +77205 1d0fde59ddea8fa4f1d0b6ff3a2f0146f58fa0b9 release26-maint +77206 68a754abcfb68b3b031ca69ad4b8b882672ea6ab py3k +77207 c026b910a5e4865ee2f2a8c95720b644472e9a19 py3k +77208 fc75a998adbfea74753994379196c2b2f82e4a3c release31-maint +77209 adb921f04b87757403fab8bb29b32dba52c88ef3 legacy-trunk +77210 ff2abb94c68ebf52e2a59bfe7443ad3ce31183be tarek_sysconfig +77211 9a55b1173d2006c4684be1926e1ff42d07843f05 tarek_sysconfig +77212 f02881332342a1a76f0371b001541a22299ea01b legacy-trunk +77213 baa70d41c9bdb5bed0d74dc099d6103871df2394 legacy-trunk +77214 9418f4b010451f7b4d1fd02b5eb00fb7f9342c70 legacy-trunk +77215 c35075f2a8f30e5afdc3beef9effd60aa71eadc9 legacy-trunk +77216 b0dd6c21dcbf4483b1b05eb5ab04a9a54dc03b21 py3k +77217 4ffb933892568787af135186966e4dbe3e8d2767 release31-maint +77218 2de24bb33cc57c50cfa64c0542097a53aee2d71e legacy-trunk +77219 1394a403dc89e5b42ab442f6276161c9daeec183 release26-maint +77220 78ca69cfc8978b73999f3c144564a892a1684709 py3k +77221 f09eb92ed0ab2af551a67b1efb212f1ef1233218 release31-maint +77222 ac528a8a36cf5c5342c83c7694e6f3b448448dc3 legacy-trunk +77223 747b01a053006876c3989aa02585bb17f81c302a release26-maint +77224 a728fa481ad438874ae63e1a6d7caeacb59cbd75 py3k +77226 b5c1cfdc68b929f449a5e5ea66cb0fc86963e8b3 legacy-trunk +77227 6c8c040c1443b752a2c6483c52cf0932c6281341 legacy-trunk +77228 18bd1c67f5e2d4bf8116155e655e87b7a887c023 py3k +77229 b8e38d0a52d7e12788b092dbb3594841f8c92f56 legacy-trunk +77230 6d17025c84c14e4a8f31eb43ccad7e1fc3506c07 legacy-trunk +77231 fc87a2fc47a595eabb56f5d119d58008246fb022 release26-maint +77232 bd24e1e90f7cc266ff8b339e952cf69209b85ee8 py3k +77233 adc9cdc02df1009c887346e27dae4415494ae159 release31-maint +77234 27c946ff76a3a92c9909ba8c394f5b243c68d2e2 legacy-trunk +77235 58a5bb971e952b7a5e692481577b9acf26db5436 release26-maint +77236 c2fb07742445cf88ffead1f42494a6066a121e9d py3k +77237 46d60e5ff103e95c451a14454ee0937bc5a02f43 py3k +77238 390d674ed4c73247863899c30cf728721d04c1c0 release31-maint +77241 ddf61cd775e019d4bf3ca973814d2b5f1c5c3a0f legacy-trunk +77242 6263a6fbf7d9343f85cf254e0ce3e204c9ef35c1 legacy-trunk +77243 2d5ab4d08c8850b4fa7fbd31a908c160d137af83 py3k +77244 a32661b334f67683839a3ef37df694834a82ad8a release26-maint +77245 313265d4e032812efc7803ebb5b376a681a37a59 release31-maint +77246 a1035cb4a925fc82179e46d417eabe9f90ecc542 py3k +77247 f5e496a8417f315c4a3be418f6557a7e8c1642aa legacy-trunk +77248 a6ace30cb91224a95a28185eeffea1323d7df428 py3k +77249 4acd8faea2d933b497703914c2aabb5d08f08550 legacy-trunk +77250 cc97a96e4a09082675675f208b46db01bc347d80 py3k +77251 9261184179792a8801e54b5fc21284f8a4d7bebe legacy-trunk +77252 ff5bc2fa38d66eec9eddb8021fdcc047887cdf5d legacy-trunk +77253 be27ea2b3679f04a74c6c0e6b6f7bd46a436c442 py3k +77254 eb95fd95e65edebb98ab80a0669509bdbe20257e legacy-trunk +77255 57b996c3d8ffb38dc9b2f79087839ccd051f9cdd py3k +77256 e9812b816ffdb1795c30fe5b2ea81a854366e99e legacy-trunk +77257 91a57cc0020e4aac6ff93d32d2162f9a2b082398 legacy-trunk +77258 2a23995345917ca726d2f16291b1c790bcd3434b py3k +77259 3856c764e1f52c204ed813572e1bfb7830556ddd py3k +77260 fe117e5d13a1fcaee6a0b7ea8aa647b9a59fa37f legacy-trunk +77261 abbdc31ea7907b054d01c67f06a5316d034e8e67 py3k +77262 fd91744b1caab49d0fb7b4b038d88ee996342854 legacy-trunk +77263 72e3e85bac8b0dc029c5c5456a6bc246a4bac66b legacy-trunk +77264 a19ad299095f27db02a5aff488d3dd68a7538a1f legacy-trunk +77265 b0386fe650c75960fd3969c0836e36a9e518f40a py3k +77266 8c4a707c0bd8eec699a0e024cbf6d0cda34cf91c legacy-trunk +77267 c3adcfac07722862b622a1ed93814522a92e5d37 legacy-trunk +77268 a0fce9665f44ad9f13bcff3f81563d1b169963ed release26-maint +77269 2402f291e8019baeb9ba908a96db515641c45322 py3k +77270 e54434d2e2a7d37e24b244579575cb5df3c8fb03 release31-maint +77271 f6e340014f96969df6fdf597393eb5577858e485 legacy-trunk +77272 eb924fad92720620d94862a6cbce575944e5e4f8 release26-maint +77273 03bfe32ef849ca863d68403810df6d66459c9962 py3k +77274 351fc4250c1b0c7a6599d825ead7ff65a2de497d release31-maint +77275 0f8a58792563c3354ba1eb38da995653fce9a068 legacy-trunk +77276 9b9adc42c73a2aebb148ce4fcc4af6f97cb8fd9b py3k +77277 9c1f306fb0dfa5848b53037dab3f4440d5d956d7 release26-maint +77278 744e391e42fdf1600e5d507f4554dc119865af3b release31-maint +77279 51749b6d62d3eb2a400f8c335b667de9f6f2eb96 legacy-trunk +77280 90f1e92db6f22558e3ec4c3291a21f9cc657cf2d release26-maint +77281 b55850070a5518e3712a1fca79b685b7bffb2391 py3k +77282 234beaafd0c6dd2a04f32618d63aabd4137d28a0 release31-maint +77283 06c968eb4b403c28553250d2412c1d6c4270ffde py3k +77284 7bce726ec440b16dc1e98e0952ef947e4848c311 legacy-trunk +77285 3911524afc2d6f1fe8226f4fff02365cd35a6147 py3k +77286 c72652145b235d7372c88cce30a73a1378b9bc19 legacy-trunk +77287 ecc8a45894c941fa2af1c6b624a806953fa8f39c py3k +77288 c857b56699b572d6ab68bd8d5b4260c7d588a54e legacy-trunk +77289 c5802ab9e34e7154f4cd50b6754bd0a7bf1fcabf py3k +77290 fc833edba7699fbbccead8fb8455f5534f4cd5ee legacy-trunk +77291 2cbdab249858970d8423b8b79247f1c5962b311e py3k +77292 4bc26a80e737ea3d3d556be93664498ff5b6566c legacy-trunk +77293 f7e09ba0cb55a3f3b96229cbb312cb2fe155cbf5 legacy-trunk +77294 6049fe4022ffa467c0f054681a7f631ab35cce03 py3k +77295 d399f6dc9ee4839f3ed3734fd860036f13127edb py3k +77296 0ff2daa83d0d7d53eb39d7eed2cb7b465edebb97 py3k +77297 efbac7d3a3685044fb5c2d873999629e2755951f py3k +77298 0fcef9d3959401b184adc2a912a21b6f96818cb5 legacy-trunk +77299 59c4714187185f091d808157083667f713c0ecd5 py3k +77300 2f67625886f6003557eb7f9a8d48196e47967bff py3k +77301 d57291f5e66811c1b199540612ccff9329866788 release31-maint +77302 8ca377853321e3ed6a7141cbbf5773d2ef7adbed legacy-trunk +77303 4fb8eaf14f09cb19f7f79453245faedcf899a596 release26-maint +77304 e1f1313ce6da18f72f9040e5e6966f2858f41909 py3k +77305 70f6fa3084e67dd8828867c0664210cbe1474452 release31-maint +77306 aff5de5cc4410fd8d12efaba67915a26196ba472 legacy-trunk +77307 0fe25e07b77b3ccad1b379bdbf8d53edd6c13536 release26-maint +77308 31752ca007cf2f3e40b53c2f07cffc0211b01b00 py3k +77309 fa2b27fa5419e81f9fc54dd8d40edce9d5f1c22b release31-maint +77310 442e170b56c3f7f49fdaef30a119adc956a34072 legacy-trunk +77311 e622b2cfef12d6ff193865da4b9bd3fbd4ecbe02 legacy-trunk +77312 776647e3fb07dd24c4b8cf9bd393d2913fe443f6 py3k +77313 b05743ce5e9432ff5675930a3aefc7bb9c26f97c legacy-trunk +77314 4aab02954de1d9dcdd421410266e27f853a54d77 py3k +77315 22e0fc20e91133d873ce85d8ead26ff382c23b21 release31-maint +77316 2cdba5167df1a1558845486552b5db37b81b3bc8 py3k +77317 a2d6d345470e94a380685ab057ce2ade15908b78 legacy-trunk +77319 3eceef378065a55a97d6b2d22d5c675cb80a3b10 release26-maint +77322 f9d2c3426e148c5115a33286ffa3a016a5df733c py3k-cdecimal +77323 d6ba37e3277637067dd82a58cd571fa41dd52585 py3k-cdecimal +77324 882c9e711a2d0593f4cbd5fd3c0965084116cef4 legacy-trunk +77325 86bf440bf9bf357acdcb430763d1dce7ef7bd370 release26-maint +77326 613b98d0d88be02f7d547e20823de38452ae8014 py3k +77327 07a749f066a1171f35b364e822fd28c93e44f113 release31-maint +77328 a1901711b225b4039bca8ef1597ae2bdea87a93c py3k-cdecimal +77329 307066f02ac52a4233d7b798be5251e017bfa59c py3k-cdecimal +77331 f560a817bfcb512520462859663708ebac46f43d legacy-trunk +77332 8e82dd5522f039c78f86c0161dff3393f9f8686b legacy-trunk +77333 a8fbf294d22e5c5fd984f5d1cc6823a6c4bd6096 legacy-trunk +77334 99e7c1b8b1e1ee198397b23e4cc01162237166e3 release26-maint +77335 b3bb8b3e5e4eba5e68aa229cf9e35d23ea76ac42 release31-maint +77336 0fa9ee4eab88743f58020e392668294d4ce3a80c release26-maint +77337 6ad53f67056a8420747bc1a9a2f9d2d1c9c45975 legacy-trunk +77338 25c1e57ca1b3e1897d8fc3a2fb786c7fcba94bc9 legacy-trunk +77339 6144cd4d421ba326dcaaa84fa6cb25c14c5acf29 legacy-trunk +77340 c618137f3fd3b7d495b19d99f14211c2b7de8d95 release26-maint +77341 7b12545736564bc99707563829ac05bf8a089cf1 py3k +77342 87161069eef23fcee27a5ae3c4f67180de1714c7 py3k-cdecimal +77344 315b58cb13a637c9df510a67a4b9cf7a9632daa3 py3k-cdecimal +77345 d88e3f598aa412cf3c3d7b778350db8a72dd09f6 py3k-cdecimal +77346 de73b858de11d2139cc4f64fddca486ad216fbb4 py3k-cdecimal +77347 fe5ec98de9da1e7309df5407b71202d5b1f9806d py3k-cdecimal +77348 b82694107151c28a5e1cc406d8170e084885bcc5 py3k-cdecimal +77349 2245884c86e61571bd27db7083c0f58c9862099d py3k-cdecimal +77350 e13d07243c73a0c82c08adb01d4d86f965a59984 py3k-cdecimal +77351 740a787dc59a0b23f4ccd6f6fcb61ec6c9f71bd3 py3k-cdecimal +77352 15904d5b98db47600a5b8993defa97d01af24152 legacy-trunk +77353 22a3292cf6722c7d0edf44eafd5ab834f2e36610 legacy-trunk +77354 e0b7e81acf6f3325c97196892b9469708b658299 legacy-trunk +77355 8903ea6a9e64791567455a4faaaf4eab30c91e2f py3k +77356 d39420a27e64608c6077695f142b1d6a2da05da9 release31-maint +77357 afe6dde80abb39d61864baa074f5085cd204c7a3 release26-maint +77358 518acb12f357eba00ddac1e89a61cf84cefef795 py3k-cdecimal +77359 a64cfef1da07537f36714fe31d0dfb421115a8e4 legacy-trunk +77360 f21f2c93329eb087888d58efebf4c9d62b9cbfa7 legacy-trunk +77362 10b6678f5c04b3b605b548febbf68aa667dcfa41 legacy-trunk +77363 35fe2069ab1d9ea84fda8c7d52053bf6d7936afa py3k +77364 59e1b0306c0e86b4cdf4c78594eba20a5b598734 release26-maint +77365 84caac71d79bd3e9ee7e74e5ccbb8a3c8d512db2 py3k +77366 b0ed35c99dc6d9a03f2d1b2393c02e171e0e2617 release31-maint +77367 7a67515bf8e308b684f08bef807556c39771353e release26-maint +77368 7caf54ce529e7d21b3cc4f4eb012fd49bff336cf legacy-trunk +77369 0dd1aa33265f38c2466dc75f9b2071a2fdfb7d56 legacy-trunk +77370 9e8d7750e470b8e0297a8096c77e511faee491c8 legacy-trunk +77371 bb7270300047f44386518ec3a5c163b6eb03dde0 legacy-trunk +77372 0c7ead034a03a92ed5d5d779b268f532d4ff9ee2 release26-maint +77373 da3fd7a779acd27807dfb494c5ecf2f828a468ef py3k +77374 f3fe579e8f147af1593b29604313a0faa2118b7c legacy-trunk +77375 f5cebf11d5e0895182807f8d8097b8ecd52939e0 py3k +77376 ac4931ab0369e63dde0bffed2e15ed7301c47792 release26-maint +77377 61502710fce9f36934e971017c5ca0353e190b9f legacy-trunk +77378 1bda1f6b85d4ae0ac979d4b0709e53dcfec622dc release26-maint +77379 d8468208e8824609e4d4880d636a1aca64158224 release26-maint +77380 a1fb575531b1034b8865225e883b11278785458a py3k +77381 b77495c77ae407a2e144e629c39f554dd413586b release31-maint +77382 aee5a1f32b00bf601f5c62be6ca64e7b7c5b4d88 legacy-trunk +77383 441bfcd55f2d9b7a34b9db77d55e33694eb75d01 py3k +77384 adc85ebc7271cc22e24e816782bb2b8d7fa3a6b3 legacy-trunk +77385 b386e53df90692c6a26a9e3b570c42cefa9ef131 legacy-trunk +77386 e57cfc526656f66d3fc3ea0ba7c92276c4df9bc5 legacy-trunk +77387 5ab2bc2f6db815ee5144f88884df9f405d5a1ab2 py3k +77388 af1ed19717ef39c932270b2fbd48340d04256b45 py3k +77389 89a9dd8c628d4c0541c19881b05d2364284e6a33 py3k +77390 aadfc31b3f141f389fee4c5eface35ef0a7490f2 release31-maint +77391 4675f11fb125d69e90bbf8b41485663762fb35b8 legacy-trunk +77392 b407e8beca4a47e40ba4aa6fa4201bd2dfd6dcd9 release26-maint +77393 f2d54096dc8c283939081c6aa80dde6fb4f8d83b py3k +77394 f9c0c411f80ccd16628be40d179cc9e965552856 py3k +77395 ab88daa4d2ce2c1f3dd64fd0c4097ecef01ca736 py3k +77396 a7ab1abdeb920a54c73998c776d81d9ef2e626da py3k +77397 c1bec2db1fcd735e702afcd3f55fbf0b0ef79e1c release31-maint +77398 7e2af4e57039fbb671b4b6f971420bbc13c4fb44 py3k +77399 67f7a0e9e2332439c7032ac4f9f475d68ee62cf3 py3k +77400 c2fdf25329ff30cf8d68c0c0e7cf479d7b203745 legacy-trunk +77401 2cff3bce4096728378b01a7738924d96d3fea560 legacy-trunk +77402 1f177818f1d0a734fc61422c3bf2289a24866513 legacy-trunk +77403 7550b4b905c707cfdbf47fb65d53086a7d04892a legacy-trunk +77404 3fa6707df98cc04c92462f92962354147cd5f84f release26-maint +77405 78c3eb5c05fb2863355b98015395fb66941bf06b py3k +77406 e7fa3959935541a9cb1c52e2bbfaeb3191f4fbbb release31-maint +77407 3398a8b7433d0626e760f9fea8a1ab77c07ac403 py3k +77408 405c9b639e055178397f4a2c664cdb5777db3ed1 py3k +77409 fbf4987e514a27283f192cf756549d60c47ad973 release31-maint +77410 3e1712221fa6867f5dbe313130d8eb4c09114eee legacy-trunk +77411 a66667704ab0e6e81fc69c94b024b2ca88e10b2a legacy-trunk +77412 97a404179e59d48e80d12b911f96367abdcf972a legacy-trunk +77413 2542557a12bd70cd27cebf2642ed8002b52d5a36 release26-maint +77414 71f2491d8f2f4a57a830516bfcc4aae82771e18f py3k +77415 68fa953b5e76b141fd7575ff2fa3e5d5bbe2f0ed release31-maint +77416 cc32d57e06b041761babc59c920aee33679659b9 release26-maint +77417 f00109e16eab908300fe8fe903f20c9d438fd3c6 py3k +77418 dd31b1c033b2b0aab0270ea9cf4e91d865f79cc5 release31-maint +77420 dce74a8730f57cebc073e445abde223ec0b7ccb7 legacy-trunk +77421 33e402909cf29ba0ef3d183159397bea16d3f90a legacy-trunk +77422 edfed0e32cedf3b84c6e999052486a750a3f5bee legacy-trunk +77423 8a5ac9ff5057f0e66f65685c4ee536275db951c3 legacy-trunk +77424 2f936b7831b67cfe7cfd704885c3cd5f3b539295 legacy-trunk +77425 8a320694e53b5fc795665e63260c2c107ccfff28 release26-maint +77426 05fb71f0253d8da22a53db4bf90706f72f027b16 legacy-trunk +77427 8f5cd3eb7c734cf66efc5e6f80e0e468670d7e93 py3k +77428 d9805a96351c0601aadf0338e0026950b42eed19 legacy-trunk +77429 b4ce0c8b0bcffe89e4e228373ccc366194afce4b py3k +77430 9c852a31e87ce01f6fc02a9e0ca5e867fe3cc2c5 release31-maint +77431 3eec2e9d6493f55a0d2f922ad367e22916d86161 legacy-trunk +77432 235c82643474c897300d348580ae3f249990fac5 release26-maint +77433 32eab443a96b1351d0f4b19b527a62ad60e2572d py3k +77434 3eb29ac7b20a64c91cc74527e039bdae5acf894f release31-maint +77436 f2358d33f109dddd5df833992ae230ec1f25261b release26-maint +77437 efa5867d8a14d19cb93d7f354169c37cfc1e8de4 py3k +77438 e30fcb956b5fcf22b1db60cdffcc71670e92e2ae legacy-trunk +77439 41cea66a2426a5460e151e210759ed0674cae30c release26-maint +77440 9f90db2760d9b81eba17c2238b8663f27cdb6d91 py3k +77441 d08d86ead375a22dbb83020116b0d0d04fcacdb6 py3k +77442 8fd12ea63c6ac6e2d5d6397401a8ce3a77845d78 legacy-trunk +77443 2f54f7e9c2b19b62b59544c4414e7ba9ff2986fc release26-maint +77444 7ce2258dee8a589c64628c66a02152716550fdcc py3k +77445 7d7b5765b46f7c4e1221260d0df499416d354b8a legacy-trunk +77446 1cca8d8f9ee50e6bc666bf6a40073dee5beff61f release26-maint +77447 c5dbefbc93212cb75e2e89aa48015f31f6a41be1 py3k +77448 23f21f482294855eab9abd7c6f0ae11533acad77 legacy-trunk +77449 b7649733a3545e41ac81bfd7402d5346d6d258a8 py3k +77450 2a9f66df4dc4679363f5d3359a3595fab807ef14 legacy-trunk +77451 b4f301cea1156a4cbf9e8c6068e1121b37b54928 legacy-trunk +77452 c32d3b08fcdc1559876b6bbb300433676650839c py3k +77453 be32f611183b903f46537d65412da914e9cd54bf release31-maint +77454 f5fd01ba47be0b7e8822945442d16bdc2672855c release26-maint +77455 b80d2962978c8cf19d2e5bd6c59feb0f3edab5ba legacy-trunk +77456 2a9cfe2ce59b40bc999763c0f5fbe0e95fa4ae21 release26-maint +77457 662dffc1b34d3f60d5f6160797dee0543c18488e py3k +77458 7b5f5af4f5acb2defca8ee371076b85f3feb0500 release31-maint +77459 a6bf68e6e824c790186a28645b574a43f00c48bf py3k +77460 3c0a433b26e1fca1f485d6069a4a74064c8506de release31-maint +77461 66f1d4a4c7994f93b2b412b57797bd508799caa1 legacy-trunk +77462 5ca1948a8fd693222e475d0be9dbb45964ee9f3e py3k +77463 d51358645e6063759931618014f036ff3cd1fce6 legacy-trunk +77464 8537c3736e99677ec5b2475ff2195e2ad2e4244d py3k +77465 d1fd0a34bb368290005fe65634e5c897bf2cb66e py3k +77466 bad1ae3fd06073a29fd2c4fcec7895ee82dfa636 legacy-trunk +77467 31250c34833a4422faa7a0792f94ba2c371826a2 legacy-trunk +77468 15b0668f0dc597fe64d1a2e4a90274199900c5a1 py3k +77469 622f79bba5231a83c6e8c0bf890084b3d21bbf81 legacy-trunk +77470 9225ea677c4b271379001c497c0179271506d3be legacy-trunk +77471 e5e55ffe9f738b08d3e8196b22f4cfeab25ba1f9 py3k +77472 b21efc0cfe8bbe55209782807483a52878194b07 legacy-trunk +77473 8e27d3b8d2ec45968f0ad6c07b6ca3457da2d17c legacy-trunk +77474 ab905f74bf117a1a68d07e85b6200b7baa105417 py3k +77475 c5b6a5b83ab5dc6727073f1a2086780be44cbe96 legacy-trunk +77476 9fc7f297d132b9a5a12931e1ab7511f2c1e469fc py3k +77477 57102283ab5ecf55339d0f8a9268dfcb6805cdf7 legacy-trunk +77478 c5a0a5d6acb07ba9c238604b238acac8f35e40f0 legacy-trunk +77479 4f4f001c81f559e34faecd01957c9cb88b2dbd02 py3k +77480 478abc7bcaaadca3363336f38f2bf680748b59d4 release31-maint +77481 0f974bb238edaa3f1c2d1ebffc4de405a4bdfcad legacy-trunk +77482 c7f33d5216f9c40c22a0197cdd88995d08752286 legacy-trunk +77483 b39a0219f727e93b4d691c17283de25fbd4c4a7e legacy-trunk +77484 10306780e5c0cf5ddf7345cfcb72c316cb8fe488 legacy-trunk +77485 201b461a12bdfb1c82dc7001044d0df50a265082 py3k +77486 e8f8461d6d1df51f168f9abad4d228c7d39943e8 legacy-trunk +77487 c430e664e605bfe0d62e2404dd271fbaaa0e1ce7 legacy-trunk +77488 03fa61a37e2d52d001be907266b6a8a38269ddee release26-maint +77490 af1809813de96d6431f1aa9e49ea7fc45ff2355c legacy-trunk +77491 76fb7dbd73884232e30ae1ca009a16c4b8625be9 legacy-trunk +77492 92384d7f425a598edff292821a94e51b6a64f5db legacy-trunk +77493 1682b962e8dee1c8f59eb951dad28de67d7ee41e legacy-trunk +77494 ce11c1270b6906f9428a65f93c315a7fe08c74bc py3k +77495 d758eb2c828e86a6218ecb1fc14efc6a91e8bde0 release26-maint +77496 9bab3d7ab4f51b73e9646651d511054f307a6513 release31-maint +77497 b3f50d6cb6406ba2bc3296422da48613205f99ca legacy-trunk +77498 d140f4901a423806e9fabee76fcd0877cb5be1a7 py3k +77499 9e73be5fa80f86cc5c02996a200210b15a3ccae3 legacy-trunk +77500 35469e79ff8046fe2a13c82f61991d6cfe804df6 release26-maint +77501 eb84f7217c65d9278e4cf0c6601fcb8589080e6a py3k +77502 80413c182a28b6800e73971225b12a57a430cf31 release31-maint +77503 657f16582943739b906f66f7efad4014492c8b1c release25-maint +77504 c76d41e744c2319030089536cbbf5e55ba3b1663 release25-maint +77505 d3bea1669f2d893f28d7517cc4dd2d4575437a10 legacy-trunk +77506 eef2ebc081dee006f6e371bc98025c077452e3de legacy-trunk +77507 be0bf0bbd94affec54164f065ce42c3e6ee28e31 release26-maint +77508 b3048a52e3c85ac83235b7b9d515f1542eb2220a py3k +77509 3aaef2edfdb355de58bdd2e11e84821fbcb2bbe2 release31-maint +77510 1f84ddafb6a392c4b00113556fe07d692a772180 legacy-trunk +77511 78610b48c396c164f35a735f04d567d13fb95f28 legacy-trunk +77512 ef0d04de4a43f9e0c840d5021c6c6edcbf236abb release26-maint +77513 082d0eaf8ddadc9c7958d8ef09a775bb32756072 legacy-trunk +77514 76076659b2249e04417fb8e942ae392fe762a174 release26-maint +77515 f47d199ee6697f0f60463bbb0bd7ffd2673251a4 legacy-trunk +77516 2006fd816d225202c046bbfa6284abdafb53b603 py3k +77517 9006245b19aff9cffc0001a60f9f9a0e2a9dbe4e legacy-trunk +77518 4288c40c844075b3cde17d84ea70dfbcbc3c3392 release26-maint +77519 5673dc3b6432e4c90c985b51e4cab384bb0551a5 legacy-trunk +77520 eafabad5e601eed5551207e97af1ab0fab6053ef py3k +77521 189a5abb2323e1cf35f98b9154bb268b104bb17a py3k +77522 32d6a94cd0fa39fe588cbc7ce19e9c99952fda50 release31-maint +77523 a16b24b25ac31a7bf895ba7bb84bcc96a995577d py3k +77524 0fab3c2dd314cfaf831b6ec10b9f889f7c841f13 release31-maint +77525 269c09921bb2fa47baed41f10afd47957ed7e929 legacy-trunk +77526 0895040adeff5262b4a0e1bb54924f3375805d28 release26-maint +77527 f22183e6885c994c7c6992bdef9e5769d05f3951 release26-maint +77528 11ad42a786a213964fa36b9d5125e234d1647456 legacy-trunk +77529 d1493cd913006d53ad0664e9ff8ebc28ea0e07da py3k +77530 8e179a0fcb5eb8b54419b0e64bdd5aae3c00fc33 legacy-trunk +77532 ca00acc9c304eb7a9ffa485f6189e0a878b10c18 release26-maint +77533 5c32f3b65d216fb34dd794a3b01570c4fa53d48c legacy-trunk +77534 174bdab024eb835003951417db2015d1f565f358 release31-maint +77535 6351d3d53ded3780ddbf3eb46ae91e023cb3690f py3k +77537 d81e48846b4ebf8a2f8f215b2642db5671629420 release31-maint +77538 29a1410cd7dc82c51007ba5928b1dbf50784392b release26-maint +77539 1ea7fbd9929454389553cc31418fc017aa6e68f6 py3k +77542 b5ee47821f4bd87ccc1bd973c7fc8bf2db26f685 py3k +77543 ed8b0ee1c5311cefadd12b6e357fcce203d41277 py3k +77544 a6cc4212cd57e30d35a1dee059eb82bda99d1d7a legacy-trunk +77546 a4a3e688446e4ee251b8ea2fa699963d0f0865d2 release31-maint +77547 e353f5d79f4cc934f2f6817718efd203d1a04b29 release26-maint +77548 81b3145061d98cec4c2fff24f84298c1d3758522 legacy-trunk +77549 fb73aa245014ab965ee169d165c3ee35d8bd4919 py3k +77550 5366d575e2cd1d24baaf3d9df3bbea8d88a81399 legacy-trunk +77551 60e069c58a35dc22ce8eb2a53bf946331d3d1990 py3k +77552 7aecfa4432df3a8deae9651872c03c8aef10a95e release31-maint +77555 707d8ca5ea0b023b0b3e51eca4993ddfad9499c1 release26-maint +77557 93fa10bef1e22ff959bf708da798d7d4c613e4e3 release31-maint +77559 92a62dffa4049cc78401142da13b198cbfa7f6c5 release26-maint +77561 35f7e23097d830a6dced7a40af2a88a483e1e1f9 legacy-trunk +77566 930464f32204653afcb44079d0b0b87949fcad93 legacy-trunk +77567 23f12cbf122c13147a0489f879ec1814ac79b816 release26-maint +77568 1ae3379c0208f6ec8f4ca24e95f8c3dfdf8139f8 py3k +77569 a30680bcb7589cbefd6acbaabe26552058ba3052 release31-maint +77570 4547a9bff7c77e77370dbccbb1a860b6610816fd legacy-trunk +77571 66e57eb5995108182764ac4d456c934a68050e71 py3k +77572 a9fb203708c411976049b4610a879c7109824b66 release31-maint +77573 1ceffb3c8cb2e55c9c84128a0ccabf889c76f029 legacy-trunk +77574 3bd6df11d1d6c26a24ddae174075d0f0c0d2a7f9 release26-maint +77575 df020079e2889d40ae22c85584f1849eb30a9dc9 legacy-trunk +77576 8f7971b820a435b105e1e471f01af0d64fc57f1b py3k +77577 fb337cb46b9de85ffd52a6bb0dd7ba549912032f release31-maint +77578 7322c5691294d4dc25765d8aebbc3018f2666f27 legacy-trunk +77579 b9888c1339df520baecc9b8c8a41bff06620b969 py3k +77580 6ec14bc6ab0c9b565d498116400379109f78337a release31-maint +77581 800559c9d504bfea1b496fa4145d4e0ef5a4aa3e legacy-trunk +77582 d60b7b2c4a1f5174d89fbca86e6ce01b491bd3a5 release26-maint +77583 a117cb926d207e09ae293111f0c59ea1516723a7 py3k +77584 8e9677007a1e8c3c34c17ab852a8f7b869e77d8d release31-maint +77585 0c8cbdbafaadda7ae7ee19bb5ecc54d9b1d4e291 legacy-trunk +77586 c247526d5a5b0342cdb83bcbbbbc5b8e87920d6b release31-maint +77587 a485fcdfe85960389ca955a7e56677ca6cc7dfa5 legacy-trunk +77588 3b49ef6b09ffa0a958a281d362f275ff1e9e5eff legacy-trunk +77589 5c9c53a721a554bfb025f14b0dd65223cabf4fb2 legacy-trunk +77590 3e629471850afe8399f7a74a82e5361e9f3a93e2 py3k +77591 6036d7869bd1f84116dde135cc22344eccee95ab release31-maint +77592 bb10f3ffae0281d369ac2b748207b296a364682e release26-maint +77593 3aadce39d3452d9b96ea39f3fd4d5daf8ebc92ea legacy-trunk +77595 feacaa6e40b84b704818fe612f8e4e88c1b1dfbc legacy-trunk +77596 a9d518fada599565ecc81d5ffee55e1155af089d release26-maint +77597 121deed5968ee68e41e8d4f29ee1813e6bb06ba5 py3k +77598 d59f76d6b79577dc1a3dc1c28f0f8100eba451e1 release31-maint +77599 ec192643adcba29a6ebdae4dc37b31877b45bd8e legacy-trunk +77600 86a35e59b6b19585e4c4a2a07f0555f5f0d7b6ed legacy-trunk +77601 9e59be1d0c3710bb1eaf234a88186856ec43bb21 legacy-trunk +77602 2def1dfdf1f6398bd0d95f12351711d392f59cd1 py3k +77603 16cdc15e5d75bb1b306841b8b9ec270c20f804fb legacy-trunk +77604 f6a626f34840fa0c3f5ebad8b8602880b6bdc770 py3k +77607 df4d2158fa04861d5f1f43115dccbe84694aa010 legacy-trunk +77608 75bfa5da1beb52527d74be0c91ce030262667759 legacy-trunk +77609 f80e6bd4fd4e6a7cc4a615ec163a9a702076a331 legacy-trunk +77614 bac821dffea804f1ef916f30ddc5f56ddc6e27c0 legacy-trunk +77615 5dbbc43c591b92d725b7d910161f567038183ad9 legacy-trunk +77616 886320f1ba82a05a2d7db01f2d9016f07090fb7b legacy-trunk +77622 73fecd4e7fec34e9388320404161ec6b7d844f69 py3k-cdecimal +77623 265eb250e4a58175882eba25eb9275224176f63a py3k-cdecimal +77624 9c563a4f3f9a244b4acfa1a89c6a25895f2e83c4 py3k-cdecimal +77625 464a23676540982af009e0f81c127ec7d40a06a0 py3k-cdecimal +77626 87525bd49a9d61543d05b1fbe940a3e0c8abc97f py3k-cdecimal +77627 d66c6ebbc61740f0db56ebadb30e008c2d43a0e4 py3k-cdecimal +77628 80b078d0557736619a91ebf53a37bd5e9ad46239 py3k-cdecimal +77629 d828cc91c09b5080711d2dc5430a426a4df21d1b py3k-cdecimal +77630 13bb9a97e1c5024b584b0b1431114052f7a637ee py3k-cdecimal +77631 51712c42c5fb1f76bc1a28978abac3669dae8d33 py3k-cdecimal +77632 cec140f72d03fbefd2a43add05d534a391df034b py3k-cdecimal +77633 c1dce9596e771b9b42197fdbb2597aeb40ac9128 py3k-cdecimal +77634 04dea0060257bfa27e2d1bd2473006b804c78a4c py3k-cdecimal +77635 40a3be78bc99bd097a9b159336afdbd37c262fbf py3k-cdecimal +77636 73e3ee463c948770d8e16e39740f4a314aab3ca9 py3k-cdecimal +77637 002f7ab35e17d06ee59de2847d38c0ddb55172a1 py3k-cdecimal +77638 3df9b40ff4fce96b81ad221425ce383aa4ed1e83 py3k-cdecimal +77639 f646aaa91b0e7cd284c868f6957d81c503a9bd65 py3k-cdecimal +77640 ff3563bbbb8039baeb563578b33f2003efd14c11 py3k-cdecimal +77641 9cf20bd1516b9c95fde34f3bbd0ac639e191b805 py3k-cdecimal +77642 eef76c812bcbdcaf89d32343805286d243984d0b py3k-cdecimal +77643 c14c945312737bcbfc6f7578fbb4c5989785b8fe py3k-cdecimal +77644 b471e07a2375c6a2872cbce31893561efb117dd1 py3k-cdecimal +77645 b4af2145678b8e92ce266103f18fbe561a18b894 py3k-cdecimal +77646 694aff16777f804fbc0af7cd91b81d413f918436 py3k-cdecimal +77647 7d1996727d084d87b62c1fedb8cf028a76db6798 py3k-cdecimal +77648 dbc00fe377719d44adf36b02a16ccf6415ba8cde py3k-cdecimal +77649 1cabdf28938ee4ef0df91c0d1141c713fc8787be py3k-cdecimal +77650 0bd2b0720832985c8c14481018041cbd930b4e4d py3k-cdecimal +77651 931ec558927164b075d4811b3865613af36c0bf4 py3k-cdecimal +77652 0bac3db4d5e28c78ac3c636ed18eae7269e1807e py3k-cdecimal +77653 63263ccdb081aa2abe6e4007d624dea56d18173f py3k-cdecimal +77654 6d896e424a3da436e839509f86c620d0bd3afe1d py3k-cdecimal +77655 b2214ee279879481fc6c3b84cc75829745cb7746 py3k-cdecimal +77656 0813e89d0193f67993f8657f5bf22d185ec19904 py3k-cdecimal +77657 4ad03f71d1e13cd530dec9f4e88cde147f0c56e7 py3k-cdecimal +77658 577c099ada881701977837de590ac6f3ce0f12a4 py3k-cdecimal +77659 f0408637be77f29979e8771b7c0233801fb41413 py3k-cdecimal +77660 b198b0e21d62cc68d6eaca8c355e98076fe0f6d0 py3k-cdecimal +77661 d42a85463f9cf428e24dd45f133080f3d77882e7 py3k-cdecimal +77662 5eec3b11e41e1937da0908443d9f276003003de3 py3k-cdecimal +77663 e03b9bdcd405e8d94bc1a37ee09967b52e5b3584 legacy-trunk +77664 ae6fb05b4c19de6337f87c9486185d232bada660 py3k-cdecimal +77665 782a40ff3f0dc22cb6654d83ce1b9ad910f47582 release25-maint +77666 f34f8ae7646e70639ae429a5172c5a6aff9decea release25-maint +77667 4f95b4352179c82d8397e539e4be0dbad2f833c5 legacy-trunk +77668 059e1fd7865cfe7b5ea179ef27e94c10fe59ebcc py3k-cdecimal +77669 fee7a88b06d1fec959d73db3ed8dcfa15b2181f2 release26-maint +77670 f38c1196d9ff17e4f38d2d15a40fa6bc8174dcd6 py3k +77671 f1acd01725e018651d0ba82ed75c15eb805ebe01 release31-maint +77672 fbe6ecb91c4be595984c17464b6948a54e3bb622 legacy-trunk +77673 22cdec7f44c52f2bc6a8b2b33c322d5da320b944 release26-maint +77674 caa64dc44d16efc2a8be6113a6c30f641c3103d7 py3k +77675 f568383acc9f80290d0bc3e0d743b107312fc6d9 legacy-trunk +77676 a996d66faed0ca2dddb6b6e64076b7457b5ec4f6 release26-maint +77677 5c236704daf15a9083a5d6db384e0440cb622d9d py3k +77678 b636cc72d2de73b3f19f19f71ea37899d4050b58 release31-maint +77679 f8539b497d4aa132a6515a23d08f318a6fcd2670 legacy-trunk +77680 9e124e6402bc721d7ac0c8acfe450b6b9b9f42db legacy-trunk +77681 ed4027e666006e73868205aa592915008e271227 release26-maint +77682 1f715a377ed09d25e5adc7396787afb53cd70e56 py3k +77683 4cfdc8b7fb3af26f758d58940092bac75785107b release31-maint +77684 f6fcec28af9e459646de31e5a3ac1e52bce76e06 release26-maint +77685 fe4884b041b93d82751b8533c32258e0f6aedf5d py3k-cdecimal +77686 d0d0579dd1d13cf327fdd40fbc07fa2e1fea0f9a py3k-cdecimal +77687 4e699d7c32ecf8ba024c93bf5d06fe6e4774747a py3k-cdecimal +77688 2cf41d8f787aa10995908a509ccdde9ef8531417 py3k-cdecimal +77689 adc98bf153ec04bab7dd0eaca963f8738ff0c8b7 py3k-cdecimal +77690 01ce7a858dadb23a523848db9303feea5b98d77e py3k-cdecimal +77691 6b761817b71741aa2f045681e47847b74bf8c576 legacy-trunk +77692 31cde6e63c03d8b39cc6386da5a8b453a42884c6 py3k-cdecimal +77693 607e2525c0507d53291761b9a0936959dd2cff2d py3k-cdecimal +77694 0ec60353656e0413386ef8f105fc7a37d6ca6e0e py3k-cdecimal +77695 cec2f281118237f51709e9ae333da47b27878eac py3k-cdecimal +77696 d0e4bd76c6927436e6862b314bc1e58a0528cb80 py3k-cdecimal +77697 d3b83fdbc81a44187ae7690d2b5a753f59167e88 legacy-trunk +77698 7a9f36cc6df11aed274cc99ee1037feee3f41b5d legacy-trunk +77699 a678fe1c9c8be936141d2190185cc7007eb3a2f4 release26-maint +77700 68006663a85232b96eaf5b9a91af5b3425524e55 py3k +77701 787c680f1fe88cf856847a5fb55402423c5c376f release31-maint +77702 f669cf100ebbed3fec85373bb69fcaa4e755cc8c legacy-trunk +77703 9705ef3fdb227817e5e805ec692a687e9acd9900 legacy-trunk +77704 fa69e891edf4e7cdfdbd3d3876596555c583635d legacy-trunk +77705 ac6e960a014d82ae2d69fba0f7c1d49099010313 release26-maint +77706 2dd64c24854c910d12764c8b6ee0a987613186da legacy-trunk +77707 bb1c33efff93293fea19c40d1a45a3c61b515fec release26-maint +77708 301ed69eddc4eaccc1ab821603f7aa8857e48719 py3k +77709 90223e3458eb339df0236e445642c03caccf92d4 release31-maint +77710 1ea6cebbd818f7d5712f2e1c35f59b03e593322b py3k-cdecimal +77711 f0f221e1a7c030f7f7dd95bc79e83e79bd04ed7c py3k +77712 bad5e03e2445e3e546627601b29a625662149d73 legacy-trunk +77713 d77c947ff7db5aeef2143ca9aec3596ab65a4087 legacy-trunk +77714 b40a5a568e76e44b0d665119abb5352cdb30ada2 legacy-trunk +77715 17891566a478c42494a04d808d64a45148acaf87 legacy-trunk +77716 5ab3012f90b74c805460d083d0e13017d35a9942 py3k +77717 807d83f57bc8839d575a4f2f5f15e0c9c13a9b32 legacy-trunk +77718 5db82a57ddd066be6e45cfb627dbd06e5a75f658 release26-maint +77719 3947fdca2f40dffc1e03a89d3b84899042cde741 release26-maint +77720 ffc4a44bfdb98f3f9d70e321fe6ae0d37b9ad529 py3k +77721 87656e83dc19683216b456c4f5b5d819815fe69b release26-maint +77722 be12d3621519553e209472e440a262cbc3c709af py3k +77723 8c3d2a71ed015eec11e88f2d4a1a212abfa1e5cd release31-maint +77724 2d7239cad7132be5bdb3db2bc68aa758dc5137db release26-maint +77725 1dc91e9dd5c13a4bc2d3bb7d4b5896ab264f2325 release25-maint +77726 232533f71abd6f6da99cde312f29f4b80346cdac release25-maint +77727 6ffcdafa0118994485a174ce41283141b834121b legacy-trunk +77728 71acd4482e655b7d1a13764371b7e590ea4477c2 py3k +77729 dab34b60a72e1aa23440d6cc2d423041ba030fd5 legacy-trunk +77730 e98ee945e26273047983b3660ae0b92271186fd1 release26-maint +77731 c10ace5b76ce954d0c425beb1a6dc2b2bf26e357 py3k +77732 ffb94920eff3ab97b2e0eb46487c2255c6ddfce1 release31-maint +77733 68d1c81fff2ea438263acb1a4422f8c85fd0fc63 legacy-trunk +77734 eab6cde2a31c845af95a3826ca585f57d08e1485 release26-maint +77735 5c1d7a3ba29c16eec7875421a0dddb2e7e6b3019 legacy-trunk +77736 a256791aa19d0f8fe1ae3d4f27eb81a5191c0257 release26-maint +77737 0cce60b68e465c09144b40d4791e2fa929c959d2 py3k +77738 6a0570ee2366ed6de651d85117f5dc7170b31a79 release31-maint +77739 67ff040742703211981fc6e3791e2a1b6bec0b61 legacy-trunk +77740 fbfe5e42349f6a3e02d69bed8fff95c96f7408f4 legacy-trunk +77741 2418a0a9a9a925c7db99412fab5cce23ae7cd910 legacy-trunk +77743 5e8930f370d5457e304999db78913e0ca56ce7b2 legacy-trunk +77744 ff66324f52a12422d3dfb9b8c49b6b912139e501 release26-maint +77745 08357d98782b9d3e9aae6d7709262c5b53e22651 py3k +77746 235933d4da8ede093c3dc7d1884f8a1253325769 release31-maint +77747 6985c0e85b4bc8acd55266371e2efbc26cf56e09 release26-maint +77748 78c0ac07aa9eb276e6592cfce55c851d6a6137a6 release31-maint +77749 8dd49a86adaa54831fa99f165ba5961a0ac62ba4 legacy-trunk +77750 77238950c6dd405f726b1237efb75e3b941fd5a2 py3k +77751 1f165c4403064b41ee67e9ab7f3656d73ec87c27 release26-maint +77752 6208836fedf99a5462846b8358876babf9b93607 legacy-trunk +77753 3e0fed25c0ae59c7d0706d34c0f7adf02b320260 release26-maint +77755 22aea131b6afc1919cd77501f5aec7696bae784a legacy-trunk +77756 2bde6d4a10ededfa5f6e0f7da71f663599e3aa1d legacy-trunk +77757 741187bfc6102ee512470cbddec4dc195a483bc9 release26-maint +77759 58266f1a2e7f3e3616e113b076d99276e6f702c7 legacy-trunk +77760 b25b78ce798dc87ecc7cc018ec9208fcd65db70e release26-maint +77761 f9fd1795fcf74e13d9092b6a79c0344f6880961f legacy-trunk +77762 10ad7d8e5d1715a545ce19db35f6198f28910dcf release26-maint +77763 bc2b88beae45da8d97ed585cfe1e63946a7199d5 legacy-trunk +77764 907ff13bd4e2e145636306dc06412f26c4800350 release26-maint +77765 7379cf70fd603af5f8ecc77950d1272c4c4ba47d py3k +77766 8232b10e34e1388bdaea328ca3c17d44af2492b7 release31-maint +77767 92e6e8d904a29edec30b09b89d4c95b2c0242cf9 legacy-trunk +77768 3c0cd7a7db8ee30171cc4bd04f773329c3d958fc release26-maint +77769 80562051bb70ab57106521189d583c1ef2dd8acb py3k +77770 d815dd2fb5bf91862734da555d4b551664a715f6 release31-maint +77771 2746c217dd9e0a84cda57c931e4d3a152ca5fc12 legacy-trunk +77772 fde9719e2056f43aea56362b1c014227b010dd14 release26-maint +77773 df3359918517d2162a3b96bd73766187ccccb746 py3k +77774 0ddf8d9690e5ae7d1d24bdedca86a0f9a6c30ecf release31-maint +77775 6726aeb867b90020cadbcb908f498418f2605c5c legacy-trunk +77776 498311fd8822ce79acde498400555a72aae7f3ad release26-maint +77777 34e2d5162ce93c212321f87bba5c8503c9583b5c py3k +77778 afd20d3d85dc88f46cbcb47cb242f4a314a1a109 release31-maint +77779 75d24b2452a59b356f4cdf4dc00326f8e8bae1dc py3k +77780 120546346f9397946048914cd3abf2513ee21289 release31-maint +77781 748e282e091ce43f6a2754f7db8dd3098dd1263d py3k +77782 1dd8232d4ecb981c4546d8ad6cb12550db681807 py3k +77783 d4e22fd528e2a2e265179a141d67935f6adbdefc release31-maint +77784 f6f9ee83ecbf3c475fa4579132a80e1c5405f39b legacy-trunk +77785 dc7147d1b7d94dbf2993a0c8ac2e1a164f5d3f5c release26-maint +77786 96d5c70314405293518698519f900297738d7d24 py3k +77787 e20e02fc1447fc732ee577d1a5b3fd52b68aae58 release31-maint +77788 ad7a61574bd689e6068373eed95187a85c8167e5 legacy-trunk +77789 9575ce0db2047c1c566aa6e989d96126a2be9b15 legacy-trunk +77790 a8a4bc69bea12250dff52ffda0d99c16b2bfcbfe release26-maint +77791 e660cb52bf0060dcc71b0a59f7a880f3ea101eb8 py3k +77792 2bfeef629936280441b2be633945fede15991b9c py3k +77793 20070880ea48334b1fce14790602d47993e09596 release31-maint +77794 debe61673a8b105bebb218b0751b78fcd7bd68c4 legacy-trunk +77795 7a36ca04742da9b28c64c1f23fe59449a2bf59fb py3k +77796 f989f4f30245227d9a19415ff50801776e99aa48 legacy-trunk +77797 4f8b2a173c8dc5c3a4eddd060d454e3a6e78f5b0 py3k +77798 1a0081b85c04895dae27e2ff79397afe514d22ad legacy-trunk +77799 011d967c1a04966b0def2d3b7f490058a1c9ab87 release26-maint +77800 f41d353eb660266dff5ac6ce7745781cb5ff0c90 py3k +77801 6a4792cbf4c9f369a5e4ac8be5fde87af9c1ef4e release31-maint +77802 0bd616dfc97785a3116d87a7f58c01548a6f9ecc release26-maint +77803 7fb7644a0bc68a7589855f59a375ab5c9f5e02a0 py3k +77804 3f36c9e6a5af7f2445650a97873e527803c33865 release31-maint +77805 1abc2191beaf494c93a6baff3254d9d1bd13cf22 release24-maint +77806 a5e68ab7895bd81c67fd0014df75212e7f2355dc legacy-trunk +77807 6710a43f193f0f8480d831c9de5fe7c684a62b1e release26-maint +77808 4cf5ae70cb119eb2b4abec2edd28c090027ae455 py3k +77809 f606474a210d1ce8ac3c91e4b8fdf58fabc9eb60 legacy-trunk +77810 245f362821136c790f60dac73bcb6c2f9c93c236 py3k +77811 658eb5ae46158126026ddca9dbae6f1a4508bab5 legacy-trunk +77812 82ad78711edb529d3ea5b38cbc461648d4accfba legacy-trunk +77813 321870b5d030ad065c5d20ce19b8dad465f8c514 py3k +77814 f2f59d7b461460ca05e60b40188abe0c50ca2af7 release26-maint +77815 54725e2e8add0e9141e6d63190bc46c4f04c0af7 legacy-trunk +77818 5aa90248a99f8faec79ce19d893549467c8426aa py3k +77819 38b90fe346237e9a93c0bedd7b46112116766d32 py3k +77820 0d4b0589fbc723325800e6cc44587327dfe4c4e5 release31-maint +77821 c57998e3be33af92d1a1b8d2ada3ca94d47e2437 legacy-trunk +77822 3ce860b9e73237a42f9d852f191dcfeae711d2db release26-maint +77823 2b08de9a1fa01200f909ce40f3b320c52bafc6cd py3k +77824 6de64896c6f88181e239317fc4bb234aad592bd8 release31-maint +77825 2dab47606ab63cda82ef9d3f221acf015e1cc64c py3k +77826 3b65068087c62f5082f23614efa786d60ed6ff88 release26-maint +77827 20f0da31fa2cd79b3d0189320eb76a5fbb502e34 release31-maint +77828 879101a0b57970251e9fd35179dd3c176852e821 legacy-trunk +77830 275cd9fe04f1bf96d51e887a430ee9ec01735890 release26-maint +77831 dde20ae67f9f33ab090b9f45b22cb7b78de85386 py3k +77832 8ef2523c3a5c5721023c28a2c7eaacb281af6201 release31-maint +77833 a2c917378411e23ea9910bb8dfb6fe436ef69850 release31-maint +77834 60853c1ac562d259890ddf47258b55fd4dc1bf81 legacy-trunk +77835 ebf4f226aeef9debfe6bd5488b3ad8f2a2171779 py3k +77836 d014623ecf720c2df4508ec1ac25c75ee0b81463 legacy-trunk +77837 f20f8fc6cfae3441d019e8bbf4613b0914721074 release26-maint +77838 d6fb378d765af915e3fb0f217fe9dbd210b3a920 py3k +77839 109ec06bbcf1b80511f447178a7ba94af452896f release31-maint +77840 e0ad1f3c91af22ccae9dd3602a89dddb518ac38d py3k +77841 bfc13ce62fab0db42d2e598cc87c0f90225a8fa8 legacy-trunk +77842 6295e16303a7183d6c53ed1bbe637fac7802ef0e legacy-trunk +77843 5893ef9a9b84bf88b0a1df89496cd31876de40c3 py3k +77844 efc2030ce6b16d88ec38a1231f0a1b744f887c77 release26-maint +77845 7450e03a501dbb9bf7c1c28da8a9a72fdf0372e2 release31-maint +77846 86b8f4cb923ac338d848bee07521ceab536d46c6 legacy-trunk +77847 c0c76d48cd2b8ec1982fc942f9849090d27f1fec release26-maint +77848 5c47cd1736c162a0d5ab1c31d20531881af1127b py3k +77849 d34d3b8f9dee4e17ab39defe5548bee670ddfc8d release31-maint +77850 39332c0af8565ea94bb3990ccf5c654ae20245c3 legacy-trunk +77851 824e5ecf90225b59f362d6791d9ec42ae28c5e11 legacy-trunk +77852 934d4958a4151afe598636a0acb9207a87157dac py3k +77853 d79aa5b66971c9f1c290ade1430f5015ea39bc8e release26-maint +77854 019f52ae0fe8ccb9fbcbd4d3a49c8935e085c87f release31-maint +77857 2bf7357d122c26c13198edb988e1a4f522f534e1 py3k +77858 d21b05ff920afaf023da652ecfa9d4cd6be01e1b legacy-trunk +77859 5a7d7eeb88c11325a5dd53c481e77287993ae879 py3k +77860 090fc39ce5ec35dd5a42f361b07feee60718478a release31-maint +77861 976ec45d9090af84d90d482faa54175a4eac08af py3k +77862 6908ba445d2b35c390d817f23e76948cd451c5ec py3k +77863 f56207b936cc359485b4a8de6aea51c4400d6432 release31-maint +77864 e956570bc3b9f04d9f9545ba7cd37896fe7cc018 release26-maint +77865 fc5ec7e041773cfb52f2380b9a4b1595bc27d7da release26-maint +77866 fe086abb4aebe9e60908a55cf520ea0da72f40c2 legacy-trunk +77867 68c56c4b8631cbd9c877273449a5f6ee2d61e917 legacy-trunk +77871 f0bc6d8aa21e0253c2d2ddecf01eb08ac7941fca legacy-trunk +77872 7098a46f0b75e5aacfaf81d65d72e3613b023532 release25-maint +77873 38c9cccbbe5a4acd4005157aca1f6ce859421f0e release25-maint +77874 a204774d9c70bddc2cfb807575ad5c46bb8aa874 release25-maint +77875 2ddbe62a6820fa5d7b7236558248c46b08e47040 legacy-trunk +77876 6e6b59413a13899b75dfb1b0c9a97b28ec7620d7 release26-maint +77877 566d5c957c19759723537a379987011a1f698d47 py3k +77878 ce0d4dc488d2905dca191fd3ec740d536c217daf release31-maint +77879 f62842c25bd833fd6617286d0f3cb4ade196fc42 legacy-trunk +77880 6b33ea94889661811e09f6282f98fcc4cffa3712 release26-maint +77881 fd5801b8388d15722a047fced48eb7e070e5e91a py3k +77882 981a39f35914d40c2b64e4c230cc56b72cac1c57 release31-maint +77883 69bffa3c782e325894ef55fcea68f55ea8058c08 py3k +77884 1e47bd6bbed54f844ddd2ac2cf9f0c12eea2f539 py3k +77885 a73b92d1e9fd582e75aa06b5f384f889afc185c5 legacy-trunk +77886 0508ead18d6f5a092e9d950c72c146705509eef3 legacy-trunk +77887 56a220827209cbb33d20d44513798bc2983ca0c5 legacy-trunk +77888 159da9a42fef1c6ab02b92fbcc0635be0254344c py3k +77889 bcbb9048f480373af9c8b7b34c1e3fde981e6ca4 legacy-trunk +77890 77130f2fe944e4acd10f035b6794a42d12b1ea91 legacy-trunk +77891 ef5639c7196435ce0be7e4e311fd153c5bd5b33e release26-maint +77892 24665a9d881ade25697a74c4d198da7edf478744 legacy-trunk +77893 75bb2f1691c0ea98b176e632fb90114b3bfa3c4f release26-maint +77894 38e307fb839856ac970efbc2c70cffa67b84d617 py3k +77895 311db7a68a82936d134add7477682daf7dd31c72 py3k +77896 c7e32b4e3874bbbce048388d5ef39adfcb122475 py3k +77897 d887db501a2211aa34d71e1bf70a1ff3ea93a351 release31-maint +77898 fd24dedba59ea5f0e013cd09c5e10a470b966d05 legacy-trunk +77899 b2dbf11e2ac4cef045d03eac44e9ab30569495d8 release26-maint +77900 8604e9a257cc8fca850ddb62db66635963abc9e2 py3k +77901 c7dcbd65c213523e3436d56d987df08785ac4c3a release31-maint +77902 c97957f5cdf9245a2e94884a7fe3630f09e6f20a legacy-trunk +77910 af498ab2afb4a5d16ad586a8a8c295d3697cf026 legacy-trunk +77911 652e0b74885ac7781820b075ddbfe28b4d2ac450 legacy-trunk +77912 d051779c5bbd6dad8f44e9cfe930e8df52ec54ab legacy-trunk +77913 5badebdb438cef755bc0d444b56a5d3269bf867e legacy-trunk +77914 4cbff0139f5b8089f8a0a8cd721e53a8d78cf19b legacy-trunk +77915 525b6c5d5b12ccfa66ef41fde6520ecb3ed825a7 release26-maint +77916 c37f99b54d7cf453e92f63979ceea44b0a8aca19 legacy-trunk +77917 c7703b649516b730360bab4c1643d73d5a33c93c release26-maint +77918 cd00a94186c934977a53afc43a216f93a2867480 py3k +77919 f3f08ee83c558638add4ac235392485b72120776 legacy-trunk +77920 df2b9a6d28aef85b9a2e56264a83806a360aa062 release31-maint +77921 992cae246a0c7fa7dadb31c96969f395fb16de83 legacy-trunk +77922 7cb14b522f81cbc6b0e997931cf0d7df9605ae4d legacy-trunk +77923 6fd2b8147f2a37e5aacaa4058df6446560abd124 py3k +77924 00d7838eaf3ad36e799ef633343a2c21d119da4f release31-maint +77925 d3127f6de16c087d91ffddacf1e4fb7a71aef3e3 py3k +77926 7cd182bee630c335032d9c49612805cbd2dad56f py3k +77927 08cf4b3531c94648e0ed8169f08b36b7b7530012 release31-maint +77928 380942892dc0e0eba39ef43e93fd259de32a13a7 py3k +77929 b7fece15ba5fb9874854dff38d7c050a38950916 release31-maint +77930 b888db7645aa8cff27ee6787013c37090b74b65a legacy-trunk +77931 eb987c9df378fc46b9873aa3395ced309cd55494 release26-maint +77932 a87fce03a34dd2044978aaa06d914c70267320d8 py3k +77933 967bfd3697366973113e0702b0bec658921d2ed3 release31-maint +77934 9b351cb9ef9833954ed40fd971d7d917796d5f1a py3k +77935 ef8178477567f7c04a9cb27cf7c6ab04e7b46213 py3k +77936 ccc6e5d5a3b38790d5277f74a53c4b92cfeff6a7 legacy-trunk +77937 993f703a61bae08e910ca7a7b86a520188d08d44 py3k +77938 2b1d665e66284686c05299e02a70ee10279ac984 release31-maint +77939 dabb77348501aa16d26a6c0b0996ac80419ace6c py3k +77940 54d025b2f45a9f3e17e036c48666ec0dd3e4de63 py3k +77941 72ecfffe9f02566ac76b9e0ca466e15afaac9410 py3k +77942 ff040880d1be98492adebf758af97af97a2d0fa7 legacy-trunk +77943 4587b062b8d065cb7906dd43d50d881985ddb7a4 legacy-trunk +77944 ce4b84c02e5a7556c84ff9c6e8f8b5f1a341de5d legacy-trunk +77945 32344c5cf932ea326882acc11cfbdcde5c1630c1 release26-maint +77946 7442db547645e20e34a0cacee32f74938dc371c4 py3k +77947 0d7e5edc452680871923cef7855b691318122970 release31-maint +77948 8d805c6c2db37be679c5fc12ccb43f277206477f py3k +77949 39c8b47824c509154689bc639a5da3dbfe5b843a legacy-trunk +77950 1c7feac0d6d6388bc6b6da2e1ecb7554e901ccf3 py3k +77951 8a2eb7761230970adaacd1093c2d8a983721cd1b release31-maint +77952 4ae8b9ca40ffe7aca7209f6ab402d20f4e72b136 legacy-trunk +77954 d75f887da772f81ecd462ca6d672762f10f1d10f release26-maint +77955 a64a0134e66ce089c5e14225094d77a0a553d835 release26-maint +77956 a7a770bce93d25f140ce61e28365dfbebfc9d97e legacy-trunk +77957 30e4246ee8032850914d312ea2007b07bc3f2285 legacy-trunk +77958 fba1c78f104e9c39793799d685b4ffbed21a856b py3k +77959 3c188ed8e521ee37c414e135f0ecfd2d6902c2da legacy-trunk +77960 703a04e29ce63423e16da1af46fe25fee02bf0e8 legacy-trunk +77961 c7254e8bc1dbd1fd4178152ac5ae81517fb0bc7c release26-maint +77962 0c2b0898643e296d1efff623cb56764352deed1a py3k +77963 514b56efd89a2439d848df2a23df4c2a2a619570 release31-maint +77965 eeb8a99ca0c5a2f8f193e4770daf36c3e1ceb592 py3k +77966 2f829396a54e37bedca924bdd001a0eb55bc21b9 release31-maint +77967 f441422f6f5574c95cc609f3e6d83e5bdcdd8ad6 legacy-trunk +77968 3c0203499ae535c5e557dcf1c140446059821c94 legacy-trunk +77969 bb6f83b9ba49e02f20cc9e05bfecb3ddd4163d17 legacy-trunk +77970 54e975582c654a884656e9e603c21e8a074bbc3d legacy-trunk +77971 451ed32cfc50624233b8953e8c1e905321e658e3 release26-maint +77972 37f6264d1aa339891b36d68164b661bb5a343b3c py3k +77973 4aab14af5e2df7205e0b83ce1850621187814c44 legacy-trunk +77974 32e0f1aa34bcf73120cea5c41b4d67f65e2273ac release31-maint +77975 7813c40942e994a94a3bb6560ce5b0ee751ca336 release26-maint +77976 ee08fb835bf12aa853009a7b78b554bfafd5e71b py3k +77977 15150cd8fd365349fc4a4a8555757c8fbb726d2d release31-maint +77979 304ce8fcc32a1f83082fbdf45d65877aee3e6945 legacy-trunk +77980 de5fa925dfea61513287b069933eba6f527d3684 legacy-trunk +77981 81f2ecd3b13e8fdf2c817379d07106bf870fe70c py3k +77982 c1a7c949c1100d8fadde505cdb466ff9edf3950d py3k +77983 76cf60e2d005796f6002b5807d4b8109c94e9233 legacy-trunk +77984 cfa87d466c044803e2091b786bf411fa7a6a963d py3k +77985 b5ad2190dce8c0f6ede9bfff0bc8a6976946b5fa legacy-trunk +77986 e1bdebd136859eeda1ab938a0ea0aa6cfd07448a legacy-trunk +77987 426cc5f2ad2420a0bb49631014d1dfe28360a50e py3k +77988 55505842e9739ea0e3eeb82698f0117ac5f27322 release31-maint +77989 7c933683010dcb29a8e3f78211b2473ebd7a247b legacy-trunk +77990 eb550e839460978f0067efd7cb16e24476fcfe02 release26-maint +77991 513c4a2600a8be07636d8c945c51accb485a9832 py3k +77992 5e51835f859512ed2c248bc11372f2f10311989f legacy-trunk +77993 1cf16ce415eae06e4616990a6f6b043ae4cd2897 release26-maint +77994 b11b8030268ddc3a0ec04709e4da32c3ba6fde11 py3k +77995 979c3b62508397ac9875e4837ac36478e2217c03 py3k +77996 11b7c810816bef489287dbf2538c1270efbc7b5e release31-maint +77997 32a360b13fa3206aeb444fb798923575ce4fd7fa legacy-trunk +77998 cd31a9d67eb139f53061c4860f0b5fda1221c798 py3k +77999 27416ce62ac6b1140bfc152f09989a87d9d8d856 legacy-trunk +78000 c03c93ac8151c33217e1ffe01c5bee4bab0ced1e py3k +78001 2a70c72b87c7f12f9d09eab8321783bd92661422 legacy-trunk +78002 edea48b120e339beb5dba2f4aeb9519ff67b2cdd py3k +78003 3dd921a190b8e1c60f5cb6661bf68914e7d342bc legacy-trunk +78004 42ac8cb13ed0df803ef37cb3fc7248503a10c7b5 py3k +78005 a13e8d1d3798c501833fe6a6615bb4e73b6b8299 legacy-trunk +78006 ff0fcd5154d331667d5a8563d4f95e98772d366a py3k +78007 e9dbbcd4ad40aa7f868c3f6b115b7625fe78acd6 legacy-trunk +78008 94d1480bc563041c22d15d5488106bc5a178f212 py3k +78009 78e7992f28579fa5d325c8ceb77f925c80eb91a4 legacy-trunk +78010 0d8f20e46c1fa194746a2a33370c4e7ff4548a2a legacy-trunk +78011 78c88b0778431a70a2c2b69cdc1b3512fa665ecb py3k +78012 8e59f9f788f5b04e605651eeb71adde152516ffe release26-maint +78013 fab3806749596f311af9457261f953e2d3659a83 release26-maint +78014 2b8f458bbcf58e8d71af6fb4ccad4b465ce1217b legacy-trunk +78015 13f695ab9111cc69df1013112e2baa3d4b200248 release26-maint +78016 0eb422624db5efa3bf82a883bd58c77403086c8f py3k +78017 9cee087915aa1db2d8437a368f893f0547286e1c release31-maint +78018 50bd9cd2ed48143b7b89d44387367264d92c5600 legacy-trunk +78019 71e089265b2853ccbb3f524099b37be87403639c legacy-trunk +78020 4180557b7a9bb9dd5341a18af199f843f199e46e legacy-trunk +78021 fe832c5d3066b16327d3d2d2536853ee5d15da5b legacy-trunk +78022 5e9ab4c25b914a8b66890809680f89eecf3ee768 legacy-trunk +78023 82ce3a08571c9527afb589930d087e2a44bab196 py3k +78024 4002f1c46b869ce37d30dc69ee8c50c98b9f627a legacy-trunk +78025 63b3a65aff52a8e2eff89d23ea7f93350b6aac3f py3k +78026 ad683cedfbb3a9c2926a6f26d40d4ff3aa5a2390 release26-maint +78027 222b6d80e76924001f2f38dfa0370ff98a7c1f9c release26-maint +78028 dd2230a8c41da117e156aac0958cbd41ca8d8dd8 legacy-trunk +78029 cacf207fbded43c4b406c420b21a1b9b19455c0c legacy-trunk +78030 e9cb3fd341e982e5332527bd91998473577d7cfa legacy-trunk +78031 87d8b95f5675606150ce2e6fec35959a206a1c4e legacy-trunk +78032 d7d48a30adf3034b8b86786235100366cf07c630 legacy-trunk +78033 609fa18b24bfcc6ab84b9ee13b50492e4d2ba16d legacy-trunk +78034 81b2306e6bf31be3df41fdddc05b7ed62b51ea68 py3k +78035 f2c91bf5b7b9661e660f289233e84cb3c8cbbe69 legacy-trunk +78036 6ca9d96f140e90429514bace0a9495701b0771fd legacy-trunk +78037 cc367c0772458d3edc081695052523fe2898d11b legacy-trunk +78038 ef8f1c2cb51f90b5ba6ad697d667d0d1c54e480a legacy-trunk +78039 e4ae79d53e237a35e957d2e55d59cbf5def78f83 legacy-trunk +78040 873875657ad0f3f22be28491416060d026354bb6 legacy-trunk +78041 2ba7677bfa95148bc46e6d8a44ccfc60b4ad9ad7 legacy-trunk +78042 734657b4b3e5cf805a6faa4c49bff3bb4129c892 legacy-trunk +78043 03baf6df32d268e319d0bc1c98ab9c7f4edac434 legacy-trunk +78044 55144cae02bab1d5137873f897a5e88ebe22f339 release26-maint +78045 0b42e1aa4a8bbb30f5081484ff92d0bd945409db py3k +78046 22358700a4d0bbb4770654fb5143ce55bb9e3797 legacy-trunk +78047 a2ab26c5f08b5a48b7376ea280e7f2aa8a8d12e7 release31-maint +78048 21a471c344e3a059fadbc9ddf0e1db06c0274446 legacy-trunk +78049 b7a5df140869e7ad66a64ae72fd832951dce1a21 legacy-trunk +78050 c58ed2554f5c8736bd0121a1dbe08e514b6036bd legacy-trunk +78051 ede0f05dc6c0816f3574422dc2d3d88eed48ea0e legacy-trunk +78052 a66eb8a63d5b6a859cebdee40a06803527b89f1d legacy-trunk +78053 10101cf89d204a8e7f74387af17c647c03a01690 legacy-trunk +78054 7c24fefc2cd4b1c35be375d4490b5a5dd6ba0139 legacy-trunk +78055 6b82a23235012a74a37f08f84b66241e983f840e legacy-trunk +78056 f4c51ae167c552d5360ce41e8984f45c460e3f02 legacy-trunk +78057 8214d4fc3234365b76d6d3c6cb578d8383a397c0 release26-maint +78058 fdec30aeb93f3af37bcecadba421b837e1e08c20 py3k +78059 52bb4032863e16217da26a32d9777cf975b9038a legacy-trunk +78060 937eb0fe1f9c1c33e3262a82da20d3402c594ef8 release31-maint +78061 3d375301115db3c01b11b4651f2ead8aca36fe2b legacy-trunk +78062 6a6fc0c091cdefc65e97737dd95fc192ed1b5257 release26-maint +78063 4acbbb5a48fcd01ccc3c838d0a59687d24a376b7 py3k +78064 b47bcca0015ac60d52249a790f3a0ae76c649934 release31-maint +78065 de53baa5ac7de8b31b4b6d425149aba648d8b448 release26-maint +78066 3776c31c0e8208ba7053cd03eda9029da289bff4 py3k +78067 c96457df40e0d9caba3097fa97578f44ffb7e559 release26-maint +78068 4e40a2911750931ae033f72735ecf7192a5be2ac release31-maint +78069 10f19d1c3b7718bf9f58732aaa147a8e3a467c66 release26-maint +78070 79c022d77213c24a22cd0cde13f3d5c00f1a0137 release26-maint +78071 ca67c37cd26dc00b88e0fc2aa9f9197e5e6dd485 release26-maint +78072 197f243ddab53e88890a5bfb41f296d927d8250f release26-maint +78073 b0c743c7d7eeaf0b4c4b1a05326759c7258f6921 py3k +78074 7d07da2b7dcab73f0be366486130241af8736bce release31-maint +78075 b6df75c17e02dc09061bc5b9669784c87f0e3235 legacy-trunk +78076 5694444fd5d2e9fe7e6cf1e35e74644a9a77bad1 legacy-trunk +78077 53f83f202a6d684698d14dd3b74c89401f96cde3 legacy-trunk +78078 9189803f83407863d469a69df03973ab3373895b legacy-trunk +78079 b116ffbcd1b07119a164167e58c529a6a5fd0d94 legacy-trunk +78080 d530a72b46fc82b9c88a0624b8f9c23af3a1f3f3 legacy-trunk +78081 87cd893cb8ba26d25399ae3a2bf93c9804ae70f7 legacy-trunk +78082 21804dc7aff4b419b0eedeb3fd0065b06b87cfe0 legacy-trunk +78083 dfd46a5db872bebfdf5c15a6585f46b6333f7067 release26-maint +78084 0cfe836c4a8d06104b20e3c74dcb9128a9c29abd release26-maint +78085 6a892cedf3a43af2503e08eb7e21b535086c476b legacy-trunk +78086 86a84be33e6aa86c3c7de2e16fbeefc3386604d0 legacy-trunk +78087 1be7114473eb5a9fe718dd4d9ec4d7e011bd29a6 py3k +78088 bd5ee13fdda1ecd805954c61c4ff73b06db43ea6 legacy-trunk +78089 57ff7702ec74e7b8fbb305cdf017c4d3b6660a39 release26-maint +78090 0cf97ad2fd1f61a8df5b5aa26cb9a21a97a990a3 py3k +78091 64004a9862e4721d586841b60237e038904e1f9f legacy-trunk +78092 80e021fe34ed7b3b9049f2d4997450c5782a61f7 release31-maint +78093 70e115c34f9708a421f1c8cf416df260ca2574f4 legacy-trunk +78094 3d94b1e779c58292b563ff6a11485ffb49cf39b2 legacy-trunk +78095 b834c8ee8e7c92ddb440aedcbc86d9fdb4219049 py3k +78096 f108f62758555674747bfb9e215464d684bc86bc release26-maint +78097 a280844b68f48554cf860c6487d9b055362781c4 legacy-trunk +78098 faca97c5f038046116463b631b66da0c784106cf py3k +78099 13fcaa79324bb8514e2c3ba8cb1a12ab55c44d9c legacy-trunk +78100 3f390f48b11314eda46ecf4f4d46adf809cac621 py3k +78101 c8c0aa1fd4a6d529e0307756bd7d241468d20bd9 legacy-trunk +78102 c86d93aecd7a2502d9b756375bd5f07e169b75e5 legacy-trunk +78103 d84dacdb2d12524980a691e548222c72b8cb3bf6 legacy-trunk +78104 600ab9cee40350e63fc042ce2cc6d61d5ce72e8b legacy-trunk +78105 4bcf96829d1a3d897f41e7da5e56e11c4811360e legacy-trunk +78106 93676ae97c68b53e6a0968c341599a0afe35cffa legacy-trunk +78107 484da13f125353c7c849e6d0f312c1e8bff4ed45 legacy-trunk +78108 dbf03eb7c12ed420ce68d47a9c17e17fe4c84cb8 legacy-trunk +78109 a98b13608d23a45db0626ea2997bbb869833aa55 legacy-trunk +78110 e7e89b4583418b941d5299cf889d927e1ac1908f py3k +78111 37e89debef6a3de4970fa4b396df38063fdfdc88 release31-maint +78112 7589605daed1042af9932514ccd8dfb97c9daa2f legacy-trunk +78113 a91ffc9644eb9e6f2687214a75a407aa68c99aa0 legacy-trunk +78114 47fa54dab38ca70bd63a45ad9db0938c735c560f legacy-trunk +78115 4e0db44564b173d09f8a7a5c0128a441cbcaeb40 legacy-trunk +78116 f48c471ac8c9e0e98bba168f13a31764f667821b legacy-trunk +78117 96c26703b490a4b5797c2325348431670fef48a1 legacy-trunk +78118 8be8d5db96a25cad8e9c264a63decd6f9f3c7d84 py3k +78119 59e162b9f22543f748b582e1e226f46a9d75bc31 legacy-trunk +78120 3eef39e7b74f32294c81e61dec8ad17368d81087 py3k +78121 e5c564659203736b1343889e5c2da0124de03880 py3k +78123 ea8cc13951b0bba5c4820ccd3abfc13eb9b53dfd py3k +78124 6a6eddb459967b1000e64709d0d2f2c7ae45aa9e release31-maint +78125 26528591217cf373e356d580ffb17f41edd01432 legacy-trunk +78126 bdbe1379f3eaf7f2fdc96c61f108b2f31a5991e4 py3k +78130 0beb7c8294c7f439c2438d20d58c53319f1cef85 legacy-trunk +78131 0af699f09ee3e2cd05b48bd8dc3ddef74d7c5e10 legacy-trunk +78132 61d1701d9c662ecb394428432413f1a918785c96 legacy-trunk +78133 11659594f98225eee351044f17215961b0da076b py3k +78134 c529e51f837758dbd5a19fad87365a41e720c004 py3k +78135 5dcecac1c8d675ec01834f3849f7444b7d4cbc97 py3k +78136 d1e2f794d0206425fd9f77ac5ee0b24600b22c94 legacy-trunk +78137 172fdb1d7337adb4bc8c10f479525e8a1d63dd03 legacy-trunk +78138 c2bdbd935b5e50cb67b0c7bbb2a481b396be515e release26-maint +78139 a71dea89877d896f66090f7d1fbf8264fe47d31c py3k +78140 687ca4b374f4c7568b409621922c9e2f6e3d6628 release31-maint +78141 c45dcbdcab87362dac6b4d7cc260988bda8b4e6a legacy-trunk +78142 bfd4798b1f77e00db6a79d813c6b76339566c74b legacy-trunk +78143 14ee3d4c7bd5c854e3b663c4dbb03f41474c6095 release26-maint +78144 83c8dfb5442120ebe1d98cb8fa128123934ea5d1 py3k +78145 fb0980e1a4ce42f6c34344ed5c24d19843e3c3b2 py3k +78146 5effbd5521e3f6ef57a5126d332d7407ed0db566 release31-maint +78147 236ab48edd0cea49888d3980869b9e425de5bc52 release26-maint +78148 2b9b21b830d9246035dd8d637484c05ce8ba86e4 legacy-trunk +78149 47123915ea20d90dffa377fbaf46f0e830ca7d68 py3k +78150 3bd65b346bfca16778eb618094a313f8928de698 legacy-trunk +78151 6ae50c2c0ab9f3b814885043e5244dc5278e9b4e release26-maint +78152 f156b5e73b0d1a133935f15f79ebc914afa60480 py3k +78153 8cf07a65d6f8558f9cb4751b6c54155d65476311 release31-maint +78154 82aa968a9504a6b352357f839711db2e42f00b25 legacy-trunk +78155 33452d95301f1607375ee3e368ac4c71ebbee075 release26-maint +78156 590294495e5f2d3061608c154705c4b5597edde8 py3k +78157 3788ab28ccad70e6e488935b8c1436e80a4f6e0c release31-maint +78158 56fe16698ee8288aa1041e3a175d02df9a3e3902 legacy-trunk +78159 7b162c6a9344fc02dd96524e65e5e9e9e197ace9 py3k +78160 6f69b8fc2ba3ef68a70d5b5c2be986e9d12e7468 py3k +78161 1218a2a2253cca343aa7c012ee0a906519775e44 release31-maint +78162 694c97a2cddc16db31ee32cc2ecd54cab4d79e5f legacy-trunk +78163 2296c5e6ad0de66bc6435e774ff1e90be0cb7d1a release26-maint +78164 8129462caa307a5891c68f70bf24d8aa324de93b py3k +78165 537b667ad45003c8d667d6f0c80782e2f6a51a8a release31-maint +78166 b1c9d6bcf3d4c842c06970cb819a0726a5b3b66d legacy-trunk +78167 6acb9afc75cde4acd8608f3a37c2194efd3d50f9 py3k +78168 3347b4eeab404e7d93307d398ffcdf8666ce1bef release26-maint +78169 263a8f90578d06fdf751b73a18fad37c59b2ad42 release31-maint +78172 d4374024750332bd09a17f14af7a93549248daa2 py3k +78173 32a4ee248069434e08f85fa3092fdeca0658a8b2 py3k +78174 415792007ff9eeb37e6830568b7bde4968a41161 release31-maint +78176 8c4c391caaebf57617344f9cfd25a347b5b3998b legacy-trunk +78177 a3375a0ffe2e459043ee21516349910972fe8e18 release26-maint +78178 70f456bf76387d49902d39afff229a0448d04418 py3k +78179 e0eb9773af81834d3d598a3613425829d1a57426 release31-maint +78180 a796f28acee2e75db197c024b3030b74c5eb83a2 py3k +78181 68be44428909ed34c7ff620f92bec84555909011 release31-maint +78182 dc1304f045a60e5246496070a7f760b552130b91 legacy-trunk +78183 a0efcf9b6edd542e6e5e67afca1dbd4dfef7854b legacy-trunk +78184 2022ede8ca0c61f44fdf44c016eb02785f3142fa legacy-trunk +78185 901fcaae5275cd844ec5b787dcc961017c799197 py3k +78186 8756c3de6d24b8e229e493e0c16e5e43b2a0a6c5 release26-maint +78187 d291b83042fb6c98e1a4c40bd2b55d8298cbdb9c release31-maint +78188 31f58d9c7016ec8f96d06519ff78d7d48f4febbb legacy-trunk +78189 5e6edb4e76f58370110c600a00391d12f4a58588 legacy-trunk +78190 6b29b9f9680599cb6561e0f790931134a64ffeeb release26-maint +78191 ef74764a6320983610431b31614b5a3e6453e8df release26-maint +78192 3baabd1d68a286f433addb422d5ff30d0a6b0ea7 py3k +78193 0293182469a7734dd32e48d8abf3e4cb4d859a24 release31-maint +78194 411b329938dc4cad78141380f2438ac5147b1fb5 legacy-trunk +78195 1725fbabe73bd405a08520ac778398f679443471 release26-maint +78196 7ae43c05116d3f936a3c22ef8a443f94f291a0d7 py3k +78197 6374e1859346417d5250986778ad6e454e2c29a4 release31-maint +78198 b641c1aa643e1928ca904bd07f31404166a16cf2 legacy-trunk +78199 465c047ef311c0cc40f0e7d3baa52ea037739c8e release26-maint +78200 77d859026919ce4abe8e236da3efd88cb98cba8a py3k +78201 4f6c1b8277eb436ecbbda5080648f7e22609bb8c release31-maint +78202 7a56f2cae3ecd7da2762fd8896282d5b7a969d60 legacy-trunk +78203 15b049fac191a4065cb086c8c779577f91955fb6 release26-maint +78204 d4fbb7e53c9292b94dfa82f5e4d235d9e7a99d31 py3k +78205 b7326f9b599b70f351e79ac134b021b4f880ab28 release31-maint +78206 ebfd0eaebe27118f29a4f7abe7888c420e2e4591 legacy-trunk +78207 bfb3e84f85fff59ef34c895e2bd921825c45a162 legacy-trunk +78208 eecf1bef052d3da51123d285b83d18b4c41a5e17 release26-maint +78209 58b30dbcf99c48d6b85e7533be0bd0a06723a744 py3k +78210 a671ee3bbcb498e749463ef4d8937b77468cd819 release31-maint +78211 0dbe2930ee3f0dd2590d50b334bd3108a0559f3d legacy-trunk +78212 a272444f0ef0c9022f37ec86fd457eff5c62dd8b py3k +78213 2253557d6fa2fe6112e83c235d49095c7902b952 legacy-trunk +78214 4c0be37b46b0368c03b4d7bebebc8cb676c0ae91 py3k +78215 dfc67ad4dcee57b66627cb0f8d8dd411a642ddb5 legacy-trunk +78216 8f02c54ac2ac8a70fe712d90cbe30bfc75470b2a legacy-trunk +78217 e3d071233befc0ae15362b7537d3c10f9fc8f49c legacy-trunk +78218 ea1adc6835ccd192fd389ac946e9cb15ac716375 legacy-trunk +78219 f225d5e6e0e50b0cfcfe20848e5f6aaa05df23ca py3k +78220 93e3e6c51513757eb815338817ead55c4102078f py3k +78221 9a581c0210f2ef7777bae28fef3679a210cbe636 release26-maint +78222 41c5e8efeaa3c58c9259a1db3a79f0e7a692582a release31-maint +78223 fb8c0388e385e4ed9c8430e32bc09a8ce2bf0571 release31-maint +78224 992fd0547ff8d57d84f38ea5a640e826ab5e9608 release26-maint +78225 286af308c1bbaaa88a115e0838944ac6775dd0cf py3k +78226 8a9ef2cf794fe6e6cb70bfb82a6f746f6eb936fc release31-maint +78227 597d6d362dde40d80fb717db3387995238505709 legacy-trunk +78229 5aa9f83dd00d9fe2d4c244d29aeb0e9007901979 legacy-trunk +78230 72f46cbfa57aad2237b6f28fb8eca5b7d82edf26 py3k +78231 5e614eaaa5051ab94eb2a131b37d6ea0f9bc8763 py3k +78232 6e74d3e51d33e9f791a61fdd4e5ef037932f3254 legacy-trunk +78233 4fc8b6fe4af867a2bafdc4c8740bdfc23b30baf3 py3k +78234 7da7f9bfdaac01789d7d345a7ea304869d6a00c2 legacy-trunk +78235 c485e55aaf965f5465969a607dcf0dad1678a31e release26-maint +78236 8b16f1408249e9ae2f99a651880eb8b1ca64ef24 py3k +78237 f725cf12334b97c01129bb98f95aee932d63c999 release31-maint +78238 0906c6f64847449a7a3a5030ff9da07597c17d39 py3k +78239 474ec5685a2df0eecf73b7098c5a27bce38c72bb py3k +78240 3c704461eada09cb9e37f8b49b96607ed10577e1 release31-maint +78241 f9817ec8b54c04b363f4295eecf8d488bd1e0045 py3k +78242 674c27d87ea9921b5bd0ff53a97ae1253141f2e4 py3k +78243 1bf043edb8d574faee596b30397f9ad87529cc45 py3k +78244 52823820dce13e8d1f299cf5081b348357c19301 release31-maint +78245 e7423bed0ec43e2a44ffac0925161f622dc31545 legacy-trunk +78246 8d871e0fa70186220b448a1564fa232dfa6c4abe legacy-trunk +78247 eaf8a93cdbff4ca863e6274cfe2826cbbb4aa302 legacy-trunk +78248 7ab63884d68b6f57f6735453b0764cbdcef0743c release26-maint +78249 3a7132f6562313681084b89235a87ba9983920aa legacy-trunk +78250 acb27b97923a3a7ea4293ff9b9033c81bcf5c57b py3k +78253 de4ca8814e0d88317f4c7a3f028202380c32df67 py3k-cdecimal +78254 557e457997a8164ce276170b7f2fd7a1ada877b5 py3k-cdecimal +78255 ba407c3d820cd856dc3ace76c907f6048bc24495 py3k-cdecimal +78256 867270d3ca898904c25393ef9d07ad48c24bec46 py3k-cdecimal +78257 ac5c2cfea42f6d067c011b4e1e80a2b97a55a930 py3k-cdecimal +78258 9fcc030a8e701b8115af841bab9fe8fe6779b31f py3k-cdecimal +78259 3e7dd20685d885a8a7a6488a015f8a2f34dc2c15 py3k-cdecimal +78260 f67bcd4ecbeefd56a5a4131abeae8b80058080cf py3k-cdecimal +78261 66f9750bc6ff361dced6dc77ca49ac750d2abf73 py3k-cdecimal +78262 fbc159531be1cc5c06c3ea9f68c290d85a723fa5 py3k-cdecimal +78263 129bbc6639bd87f0969ccf57853abd0a9c46a3a8 py3k-cdecimal +78264 badd4e705733abf43549aec36534f9bbf08fc8c9 py3k-cdecimal +78265 4209c398c9297aa55b9b0eaa90a988f5d0707e9b py3k-cdecimal +78266 e0e3f634157046f901cb2921e03ad83853fc80af py3k-cdecimal +78268 3c12bdf6cc6d17f3b087e964402ba8a8ed364a98 legacy-trunk +78269 ab21a0481d7264e6151499066bb56dd039c682be release26-maint +78270 d32d03d41947687b0d26f8e57b938f862e5427aa py3k +78271 b983779f2121b854511a950f27476b2eda49cafe release31-maint +78272 dcda985c640342808ce7db076acab2be195c6f22 legacy-trunk +78273 af00f70a1ff1044c27ced1f9e1d0ad4a2f7ca65c release26-maint +78274 db86bf39ccaa68f3bf3f9e71c17628c2ffc30d23 legacy-trunk +78275 d3ae041e7b8c26ed95d4a772ef9cc87ce78b6153 release26-maint +78276 3790f3eda1c56b8ac6fbece47793113219e095da py3k +78277 390b0e707f54b5dc09ac1714743b6c0d33007b04 release31-maint +78279 1b242fb33be7123caa6500e3f8cb83e21916d3d4 release26-maint +78280 c8ea75598fd6d2e40c2349ca0862264475180895 legacy-trunk +78281 b922e1ebe380226919f414553879573f9d6f06de legacy-trunk +78282 0ed193769a5f1edbf557190050ee236e01f0d3d8 release26-maint +78283 0340804ad713e04864bb9ac15dbc2d76800ce6da py3k +78284 4f304452bbf69aafe06a9b6fb99b2bd4b03a4a04 release31-maint +78285 80b612cd94a4e7de1de2990a0bf2f14378048a0c release26-maint +78286 5033a4295c96aeb72a03c3857249305562e02f43 py3k +78287 e144c63e1fa61124e3771f2f55597830e9b128b3 legacy-trunk +78288 0d3c971eb2069759bb726799fce8b6f345a20e25 legacy-trunk +78289 20b857bb10b8085d92cf51932e806d5bed9463a1 py3k +78290 b749a79a51ccb4cba72d4761e5385f54e13bd8a4 py3k +78291 0d2d66061303bd5b5d09b62824ec88b65a9c46d0 release31-maint +78292 1720ee083eeef64fc09ad3edb9709f2351c3fd97 release26-maint +78293 6d6be65d3881fb621c60840ead4ae5140a7455f9 py3k-cdecimal +78296 96a4aa1f31c13691034f146c3494b908e5cdf110 legacy-trunk +78297 ab6fd9e4543620421cd935d88e462befabbaffa7 legacy-trunk +78299 581e21d7a192857a55e80b4a2c538eb6e4178483 legacy-trunk +78300 cc0e69c8f0c23729f4438f2e440a82a76b702c9a release26-maint +78301 f8ddfced2a347a7c789a6c8cc71b48e0a1fd6ba5 py3k +78302 0369bbaa5d2dfbf9aa1f75de57464f8010092488 release31-maint +78303 3de9bacad95bc2ba4c2d11a586fa457cd2b45160 legacy-trunk +78304 8b7455e01a11150d7c71bb6a915f9774e753a5d5 release26-maint +78305 f8612d410e2c418b28ea18dde7dfa7682cbb4597 py3k +78306 f0acf2138a966a7e3ee7d96bc025a19fc0832c20 py3k +78307 20454fb0be6ef7744dbe1da8109868ed8c5cf415 release31-maint +78308 c254e54ac85646fddf999da8955794eaf3869bf7 legacy-trunk +78309 c1a4f27ae8fe836688d7aee93079e3071e541442 py3k +78310 15d8ed948fb5611b4af6ed0d59f1c57192bec1da release31-maint +78311 9ece3dd1e9010d326fb90728dd41f2238275788e py3k +78312 50f8bf61706a460abb67c5a40d7dbfbf98b7cb6f legacy-trunk +78313 c45ec3b11bba9ed824ae7eb8b39ee7cada59470c release26-maint +78314 5227a55ed7142bd99531cfed6b0d8aa30e82a2d8 py3k +78315 ae65c7d35f27aa2b8b817006a774ae6225a28cbd release31-maint +78316 38f73282f03830b02b543cf79e2fa0257860d686 py3k +78317 5d7741e1e67286e13881d68e8320030cd2e4e461 release31-maint +78318 23115015e5b96e741a861ba52d8004816a8145db legacy-trunk +78319 31c7def9bf51e78bcaeb0e353015475874a79251 legacy-trunk +78320 132d42348216c73edcf6474e1aa91a9afa378f19 py3k +78321 2eb13658f573a9bb6eed0474014924168de1116e release26-maint +78322 8f2d10014c08464f906a2d915451729b29c5da13 py3k +78323 7a0c30e7e4caf0469de5fc56fe4ade2ce5938b98 release31-maint +78324 d7c3377f8a7b6742f7600e324f84fbc1849d14da release26-maint +78325 c88b6602f82d75f6f0dc228a4264e4adf9d985ee py3k +78326 a608fc378d9221d4420a15ded87d3b6025c9e6c6 release31-maint +78327 4902ea0256307995bc99d54d104cf220251c8bb4 legacy-trunk +78328 532da86973cd4a1d96d1eef517f1ed393bd7fbd3 legacy-trunk +78329 ff84e0893cb1ab6f7f6d447355bb28d7ae249a4e legacy-trunk +78330 979ac17ec823d06f654edcf12adbdc5049591fd2 release26-maint +78331 40cb2233f726f1c60fc23e12730e0cdf3b85d910 legacy-trunk +78332 fd9488854088773cc4427e93209437e2141c0705 legacy-trunk +78333 5c4466b16d6d576e3153f3cd43f4b4048d14020f py3k +78334 73cd83706bc4542d3788c02e5f58bc5b5ff94b9e release31-maint +78335 3357b8ebb2595c33524c54f98e90d6cb7869dda3 py3k +78336 ea02ece323fe0e8444163967f90224e0de08c796 legacy-trunk +78337 ef732c3db63dc59f846c5d4f65834ab4cd932246 py3k +78338 bd13eeedc3b03cc035c39653a17eb84a1731fd5d legacy-trunk +78339 047f19977c428436c2adcee92e88e977c37c7125 legacy-trunk +78340 b83f9716f135b867f8972454e0716e5241fc996c py3k +78341 d288e5491bcaabc016cdf5cb4accf16b19861304 release31-maint +78342 7fb013ff014f195e851db589790d563fa59e5b59 release26-maint +78343 5fcb0e0be89e9b1012131e7b5d098e3af269b148 legacy-trunk +78344 87f1b8ffc28d75de16536082ed93eb5b64a647a3 release26-maint +78345 77d877d0bf06d93ed4353b39299443e055af101f legacy-trunk +78346 31cb61e0f2bc00866ecd618201740b58979ca970 legacy-trunk +78347 9b5806a008e714ec2eed63cdcb687f7ffa1c66f4 py3k +78348 9d55b17a3c647af2516dab875263a54a2cbe2a0f legacy-trunk +78349 15286d9f1a8e380325c709afbeb52d145f278bfe legacy-trunk +78350 8c0e4896dbfc524562590a0313cef357c287243f py3k +78351 a4c45f8e70aae1f3993304038030142bcd62408f legacy-trunk +78352 8e8c45ab44dcf7f7ea7282fa96216f006e1ba5f7 release31-maint +78353 5767d9249f58923e33335675851d7df91a873548 release31-maint +78354 0bd1736e32973d6618066d52d0a0342b767d9f0a legacy-trunk +78355 fc4b005cbd28f42309f055afaae23e3c7600ad83 release26-maint +78356 fc286fe46612330cb2a4aafd82d72c64434f34d6 release26-maint +78357 a5faaab995c42c9a6331463534dd419571ee7ce4 py3k +78358 b4c6b7694f0c2ec83199fa499a53fea9832ec363 release31-maint +78359 ac36ec8bae6c650688606b92df4411d72c052295 legacy-trunk +78360 460ce9e848383e5f4ffe682e2c14b2d1e05ac635 legacy-trunk +78361 4a1181ec40364ffa54a79676543ef8e9aee58531 release26-maint +78362 a1d078b882472a42491640ca53bf4d9d6b9ab2ca py3k +78363 139c1048f31bd500a8861f8348b418cbc222f369 release31-maint +78364 b52e3ff0a4c8b23eb68cb74e504bac2994e1e58e legacy-trunk +78365 8c930e4d51bd290e2017c492bad16ff7a99f1586 release26-maint +78366 df56ba1cb0af28258a8b889a75eda70d8735e33f py3k +78367 92670cc1a6bc402dd11ad5102acd1828fc186a82 legacy-trunk +78368 fec55f52775ce7751853e246d21e340495f9b108 release26-maint +78369 bf8d9f0359c122603eb6793fb5638ad29876ffea py3k +78370 243cc80d4a067b493491fa9f3127b79929a06332 release31-maint +78371 76ac7a1d71b75eae6ea7515eb8769125da49a387 release31-maint +78372 8a56b82c128452911d5bdb03baeee711149ff959 legacy-trunk +78373 da373dac2415e32bc25fe3c9fc3ef1a2349c257b legacy-trunk +78374 89bc28f20021fb4602a4dec73450f39a5e0679f9 release26-maint +78375 8690d08d953f97e558cf17afbe943472a60ce4b0 py3k +78376 0f54d432734c76658838c85ae02c82351ab8e203 release31-maint +78377 1dd1eada46c2d70dead4eff234230ac719bd589e legacy-trunk +78378 bd4c916f0efa5d1ef67d372e82493fb4569ae1fd legacy-trunk +78379 9e1ca1c119021c4812be418716b77bce2edbc9df legacy-trunk +78380 b17814be05f1c1f5a67258d1f3f853362d085404 legacy-trunk +78381 e2a4445b0e7c300d0a7202ea9614b35994a34dfc release26-maint +78382 9fd803abe141c9468b8fa67ec3b93a84d7825cb6 py3k +78383 b908a40f0020509132c1d4baf14b2d706b373751 release31-maint +78384 dda5165a2374e7d86618cd7714488218a9d8ddb6 legacy-trunk +78385 287450b2d7a78d5d0d332372946940fd96c1bb40 legacy-trunk +78386 ea68d75529b11cfcdc17e73b0aea8904ff0dac4b legacy-trunk +78388 77de7b1bcd59da7e6768dd804b49fba34c0ded92 py3k +78389 ab10793a46a701c2e83b3c034bff985496482548 py3k +78390 12497072f9dace20ce7b2bb5ccf089473f639a30 release31-maint +78391 fcf212a93dd42f04f3e0fd7c2c950ad7a64cf5b7 release26-maint +78392 32b21061ee9fff254c32224cb6f2c59d5dcfe734 legacy-trunk +78393 df5719c298db2d8fbbb919360ebe7dab274c9dfe legacy-trunk +78394 7780482a64da69f6166f9bcd7b9487a02ca1171c release26-maint +78395 44ee4f271d7aebf8af20f0bd89f471967563891b py3k +78397 798e0d0c7246ddb207c275d2da9a5d3e588a1a3a py3k +78399 410c1c80d663ab3b9de993fc622f24c2c6c86506 legacy-trunk +78400 8d3ff2fbbe4b4a49a1b3eed19eb5b540fa703d74 py3k +78401 696f767e77ff8b99c26265397f871733bcff04da release31-maint +78402 678256e80fc601d3b36ec63126c21f76c3419cd2 release26-maint +78403 e85412f544c83e233f2aba909d47d54badd985a9 legacy-trunk +78404 954b8e2766746321ef74c6b3110e5f356edb66a5 release26-maint +78405 e80327cb684681d4f5c46600afa38496f8134c7e py3k +78406 107c4c6ec64951fa8870e5901b0642e8bd11f172 release31-maint +78408 a5f6dd189282f01da649fd7a9fc92221b4a6daa0 legacy-trunk +78409 a9a438100f8d4b2cab805e373a443572241d2328 release26-maint +78410 a9945afcc4ed4d72bcbde6bd9c1eea0d8e64c3cf py3k +78411 17719d395f1e6de47f0f87a89f1e06a42f743160 release31-maint +78412 c465d2143874dcaf5fc9e5b728b0c5c077c497c4 legacy-trunk +78413 0795dd7b2c9d1b24012c9bcd7e3628854384595e release26-maint +78414 820eaf9388045bcd3239ecf4b9405432b74f7e15 py3k +78415 4f7503aeea85fc85c053b582af18b48ce8094236 legacy-trunk +78416 9ebbcb7a398970cc9dda5bd9ce8a099aa0d22b1c legacy-trunk +78417 45212a247ed4d5d4ac4900063c6825be5e2c4b64 legacy-trunk +78418 2b82b16a63756c4695ac9c66e87c3e3b2225e0a6 legacy-trunk +78419 5ac349c322fd3ffc757fc64a4ab68c3cc851989d release26-maint +78420 59ecea13769b398803b2eb8a17d6cff97804f1e4 py3k +78421 c8ef906b11b8832017a55a237280a73608a8e299 release31-maint +78422 56f4d6c5145016e5a5ff2dc9a0f77a97059b8b6c legacy-trunk +78423 9225b4f8cb1e73c8115ac5ddbcf7b5306fafb3d5 release26-maint +78424 af587b4b5909194f33e12e6329e28273be79f66d legacy-trunk +78425 c0fa145370e41f41028495111899db345c71e2b3 release26-maint +78426 3d4db1f5b3b155d5bf747f1dd2f588041ce845b0 py3k +78427 e709f6f6f45ca9cd9fde2fb9fe58bb73614d71bc py3k +78428 5f9939af2f71acfdcefe56c6b420de3a0260feee release31-maint +78429 af9e6edbb0ff796abfa55628bd87ac071fa72588 release31-maint +78430 e47a64f9cc77bfeacef0063d61a456f4e6b89740 legacy-trunk +78431 3181255e28c99f96d8333d5706d6edb6cd77cd18 legacy-trunk +78432 c950fac7411ba640c93a1d4b0c6b2437db913b54 release26-maint +78433 28788f72d8c0fe5da5c96557fc95af60e916209f py3k +78434 94e2b69029696d0a0a02099d882904f605f908a9 release31-maint +78435 b7de7c5afa04293c7193a503a1e74d2a12b21a82 py3k +78436 19cf526befa469b59cbfcf9af1a00c1e6131f908 release31-maint +78437 12221b6cc8cdc7d088acef4fcd85dc13634ecad7 py3k +78438 f5ea1264b7ae1787f3a0a92010e2a1e0be0f9b5a release31-maint +78440 383f40975c75c3c31cee9b41c33a86e0cd15c066 legacy-trunk +78441 bd8357a91d3e639261ba1d11d22b84082a080f08 release26-maint +78442 85bf84469a32c9de46e49fc9fd384df0b8b3e014 py3k +78443 2183277cbab18766d7ab1338f2642892ac7d3e18 release31-maint +78444 accab4bab634cd61c6c308665389ef5d5c0b5c5d legacy-trunk +78445 ecfe9cfaa334731134a957ae57350702bfdbc178 release26-maint +78446 89a50a118201912de7e687d792740d1cb9885368 py3k +78447 5f04e0cd81717903b630263d0667bdd131bc6e5a release31-maint +78449 6c14c27925b9e583d77e9b441d402a1e145ca884 legacy-trunk +78450 aacc0d48d44d7e105b6cf88636c2dfb0709c0d17 release26-maint +78451 8553d42c94b1a9fcaecd75f0a4b3798e1414ab55 py3k +78454 1a62f489a68a0a9366298dcdd725568a196b0578 legacy-trunk +78455 4780e0377e10f68d1b38fd5250a4928b2388506d py3k +78456 e1bc0022b23b2d910a23b85f3f66bca2fd684e10 py3k +78457 95b3bb6b9faab9c48f77e598d160e435c54b7c3c legacy-trunk +78458 3ab7409405fa3a3b92bddb7eb1712bb2352baf32 release26-maint +78459 c12b955350948839e6720ecd099d80edef5a1228 py3k +78460 083c8e5354adb33b7963bd03946f467c23e6ca78 release31-maint +78461 7e3c47354da3426e7bcff23f0bdc2afef5d1d2db legacy-trunk +78462 7d343d5bfb3f1cdfc839673cbf2530105031aef2 py3k +78463 ad2f5eacd2a036d4e84ab409d2984ca5393e9b9a legacy-trunk +78464 9ac35215af4a8c97c2be2d97431c78ba921b7118 py3k +78465 3dcdca007095566e426617637771d82c79c439bd legacy-trunk +78466 252f1e23e986031684dc826c0b342e36c32e543e release26-maint +78467 8b2048bca33c1d43e19ab4c7f1637e0de766b766 legacy-trunk +78468 535e2155af1a82e1034ac81509b0251d4f3b9d14 legacy-trunk +78469 dc1cd8edfa46572e1e69104cc1816031321fdfa6 py3k +78470 6043d0bd8bf70a574d827e654ec645ed5db54995 py3k +78471 62babf456005b67cdded62082de75a71e71475d0 release26-maint +78472 9486ff402acc388194d2875d4faf0df26e5f3aac release26-maint +78473 333fe8d793298bc16dcbc16b08f5c14ccbbba401 py3k +78474 7874d13c9aa767a78810b40da53bff225d64509b release31-maint +78475 8e64615a4c8635faed4c74c5dbcc4ae7b12e2167 release31-maint +78476 2f2d22577742806be616f96a6740558ec917e94d py3k +78477 5e2a584307ba987c8c111242d69c7fc6b54d9736 release31-maint +78478 231c88ee8885c1030e9606f276188aad2655ad17 py3k +78479 3270ba1bec76a389b073c3119ef84480ab595ac0 release26-maint +78480 2b68e3142d17e833f616f151799c53ec95e261d4 py3k +78481 56f537bedafed9ff7da85a7a93a488d53688b870 py3k +78482 4070f4cf8c772cd539e2b67e1f6412c422f2765e legacy-trunk +78483 4066b45d28ab28bd6e25df693c5a3cfa2c918349 release26-maint +78484 e540323d87a8b2022a3e5dc6e77d818078511f72 py3k +78485 0d590e5e840c635b2b5fe701fba29d16402faff9 release31-maint +78486 aba9f6541ad6983b5049c73958f08c5003d120da legacy-trunk +78487 2a0ac9bde99afd027c3d7c2adc8698c64712512c py3k +78488 d0c2b9c2babb0ed966897dbc1058dc3c050c2ad5 legacy-trunk +78489 0b4846489055ace4fb673782a89f2dd4253515be legacy-trunk +78490 f139ca034c3b7503804ea56a05ce9783faf31cb7 release26-maint +78491 bf146f103ee673f2c2787a47ba305c6472f4e07f py3k +78492 0194d8a6b1effc420666477ebe705c45e9ada532 release31-maint +78493 ae09ab2686ed0494612d48be8b05a82d00adbc26 py3k +78494 891e79d770d88e67b04b76b5a48c0494114628a9 release26-maint +78495 815092a5e5c12983a836a67614caa0fb509d4786 release31-maint +78496 d62bdd84df0a3bda5ee23a99218be5e6051c557a legacy-trunk +78497 775937a34f9662b388547f17a1367c9d9bdb817f legacy-trunk +78498 86402fa0c5b88ecf9ec0534832a2f1865a5f7bfb release26-maint +78499 560f3f4ee9a7d819e7a63cddcf3998ef97a19751 py3k +78500 56205f547b746059c5787b03549739b302741afc py3k +78502 88713c0ed01025a804544fae1202e8d9f671b147 release31-maint +78505 81d6833c6278befd01230f5f8f5242f8151fab43 py3k +78506 88f147d2637261f633753db08f62ec21c37cdd72 py3k +78507 a9e1f1d34c9671bbee15ace4c912b03c52258429 release31-maint +78508 679f52b8aef4c6d2f69d29b0d4a04ffa4a6d9e33 legacy-trunk +78509 81dcc0c845dfb668eac0188c5c1f69772316021c legacy-trunk +78510 01c58cef82d48a9a8ab1627ecf72164307e197c8 py3k +78511 5d9f3afbc4e4bc0c513ee6a1516738f53e4a13b3 legacy-trunk +78512 13ff9fdb8431b7293f31bda4b817c6b373e6d793 release26-maint +78513 f37863a7ed677a87132e79b8d0600081d0b134fa py3k +78514 2080ab880a80ed0bafecf012798b5f016ce51b91 release31-maint +78515 799bc4964a1d9302d6ca741a5121856c31dd35dc legacy-trunk +78516 75080275921b8e86b545977651923b69da984a46 legacy-trunk +78517 eabfa778b076b60e855a206e111dee43456082d9 legacy-trunk +78518 2cdec848b74c6140126d147aeacdacf2cb0c8a3c release26-maint +78519 98e9c4ffd343af1cec5046dd0e85dcd17ec89e92 py3k +78520 9e8113e76adbf01454cdaf0bc3543654ab8b7e93 release31-maint +78521 8e3d03b8090bcb21dacecd1d9ffb3e52080b43f3 release31-maint +78522 1c6fc70f49d1abeef91648d429ae48563ea2c0d4 legacy-trunk +78523 6e664bcc958d60f21e78dcf10f840fd35c731018 legacy-trunk +78524 55778855cd25a9ae8fb6675e9f8c2927db989f5d py3k +78525 12469f20656bee0579510e87cfeb9ee4837f693d release26-maint +78526 1f158238fa764d700ac9fcde748b0ea4a7b34f30 release31-maint +78527 4afc50d155445d01d2c93d6ca86cefc639b702f3 legacy-trunk +78528 e1b70c6df9e773dfd70291b8dd5ec1c10ccf431a legacy-trunk +78529 9b4e0cd7817ada1e2f3133497e7d201d6d8dce1e py3k +78530 370e1a1c23869df819d31b44aa9f32df22848f98 py3k +78531 077f2b8b3e57290933dd92bce4b50f0320276247 legacy-trunk +78532 854b34a06896fd6e47a16e8de3e4c28f0c33449a legacy-trunk +78533 924ca295b1460002630b0a37d1f02e83a0279bb6 py3k +78534 d1c62882c73bd0dc4ff2a15641dcd303027d9e88 release31-maint +78535 f53fe33e03ea1b49bf7696ba24c9e33adbce6b05 release26-maint +78536 c45805ba323f7faa9aa1702387b0e1e423d812e4 legacy-trunk +78537 941e1bf04f5532e12f0ffc9027dbf0f3b526e6c7 release26-maint +78538 f0283bb623614ad952afaa7cecd3c9f6b23a3074 py3k +78539 783f09b08706ea30e20c5f0e46366a2b2388172f release31-maint +78540 0265cdc8d5bb0cebb4d91cc493267484e1a744c2 release26-maint +78541 8d48f9b59689ba469826557a8ddd986bd4cde3f5 py3k +78542 9b72277d6b30a7c08c9d6d0b6bd2f9c14251380e release31-maint +78543 d5f50ae4f1f78e199f137391adf48c7ef2bb838b release26-maint +78544 f5bac4737069a413e892d7a5107895dc1d6b1db2 legacy-trunk +78545 6fafb64ec32808d239dd5d0c50f56e6d47772391 py3k +78546 589004b22f54c1347e7fec356a7df310f45aa4ec legacy-trunk +78547 aff692bdb6db10797833191f36af32f832581cc1 release26-maint +78548 887de5dfd96015ad44029ca1ebfb444eb05e52a9 py3k +78549 dc846a211c658aaae0f0908e3c28a7410af01cc7 release31-maint +78550 46ae164b15ba91dc6491e91a868b2d271c3317c6 legacy-trunk +78551 4e3043109749f29574668e4465e49bccbb97bf7b release26-maint +78552 58c35495a934387d064edf59634ad73cb8fe28e4 py3k +78554 4bc5b041d3aa6bbe0901df2267e58b8888777c95 release26-maint +78555 40a406eedcac92e11a92359dd674dfcac5792ae9 release31-maint +78556 d5615eee563e5640537de98d2bbba1c740ae86f0 py3k +78557 cdf59604a1744d6b53bb729e9946762fec9c9e35 release31-maint +78558 8b7b5c9e67f4d6703a78714e54498f88ab331f84 legacy-trunk +78559 9127d70730c5b0d61f037a101f3ac06f7023d882 legacy-trunk +78560 04590ec6f37ddf65750295089766d929b3175c87 release26-maint +78561 438680be5472b7ac22e67664788532faa735374f legacy-trunk +78562 39a503c88002a8f61ec702fce56b653d88f3e595 legacy-trunk +78563 fbde11d1c1f5b3b79fd53c70b3f96972a7e93840 legacy-trunk +78564 934239b268adc357bc09545534ef380fafbf846c release26-maint +78565 c8b26276c5877985b4b2450a8c54a7e28812f5f9 release26-maint +78566 89f42b681ce5577327f8041032f61468a33c16e5 legacy-trunk +78567 69a103efae8d4eb694219b8b52a7281420f881fb release26-maint +78568 f99e7ae712b0b24f3eecd4cc5121fb228e3bdb4c py3k +78569 8498f0d9f026362e9ae1154516cea728a91eb9fe release31-maint +78570 aca188970c47d06eb30677261d9b41d10023c91a release26-maint +78571 2c9bf218ce29878f471845899bec3c7dcf70ca4b release26-maint +78572 c9f68e42ab796a3bab4f8cf3cc69ce10503cb990 release26-maint +78573 111013dd5a8aa0ee0e2517cfb62eab9b80874d48 release26-maint +78574 4f18945fb8b17fdbc44bfc8278764c86ecf59ef3 legacy-trunk +78576 83ef67526011aff4fd94b1038e0361f47b88280a legacy-trunk +78577 f923fe55a40c3b75e950ba424cd2a2f725d3a26b py3k +78578 755d7a3a6bb756e3a623c295ac92732c35575639 release26-maint +78579 38b02dd2d459bac66108b3b17f80cce4434cf0ac release31-maint +78580 4728aa2c8a12845a28d378dee98dbaaa9e22157b legacy-trunk +78581 7a89e1ec4f005ce0e139e23c1d57f22159390996 legacy-trunk +78582 6d5c31f24a21b2d84f6a8c61db4f72a228674c3c legacy-trunk +78583 6b968e2f05ddb0d9031ab5db540553bc2a901d77 py3k +78585 1acb643b2cf445a009cdb7a55ad13fc5295deae9 legacy-trunk +78586 e64c4b43eb3c2768924225283c3d69243bfe6c01 legacy-trunk +78587 4ca83c5b8551bfecbb8c070cd4ea759b8c86f85e legacy-trunk +78588 8401de65e12a218c04b463800516e8499186f391 legacy-trunk +78589 dabdeec4f9c1d331954678f2fedf659fe4b1ea3b legacy-trunk +78590 82eda345a5f6e13d9ceb608e82da423d96140b11 legacy-trunk +78591 4b7b6953cd064970f5067cfccf93c3a48b10061f legacy-trunk +78592 137a21fcd3850ab9598634c8ef0cc0a5fee614bf legacy-trunk +78593 83e7ee1851623ccae36c2429ca990db40ba47820 legacy-trunk +78594 970fb4a8e654ac9bf79d493c0e6edc1b6029c559 legacy-trunk +78595 12bcb69938b3c012777c2450555dbbbca4b178b5 py3k +78596 c31a7c0c6399855e9f84a8617a8d99b30bfb7b07 legacy-trunk +78597 5c67c1ef8ad3f44f6d66a24b71f13d6da11cbe60 release26-maint +78598 01d6a14aba65176fb0968ff2b338f1c1a7d604f9 py3k +78599 951c97e2878d71d82425c19c04339d4f8e0d9e2a release31-maint +78600 8d72147f442cf9d5a2f7746aba9c42b0747b716e legacy-trunk +78601 eba942e778957a11614a4366e4231df009359790 legacy-trunk +78602 b30f8ce821677d930f704de511a9d6bc7ba14eeb py3k +78603 b044405d62e55c1e5502bce31a6faca5f83cfc22 legacy-trunk +78604 f5411125245ee273f731659ce535d4d5005c14bd legacy-trunk +78605 2d241765e63174f79934c3a5f1e1d390cf4db66d py3k +78606 aab5b76aa0597d814997f8fb9fdbb6f5df1b17a4 legacy-trunk +78607 681597d0c58df1070ead228eee01695d010e47e8 py3k +78608 d4a188dac22285690f9ec5975296f4ac51fe2074 py3k +78609 6537761c310183f0439ccec8603690a9efc9b439 release31-maint +78610 7eec6238e15ac4e7fa223ab1fb4cc0bfacc2da94 legacy-trunk +78611 086846381e8f3d6fb0e0e19c66782a8e8d47aa34 py3k +78612 1e4c4b235a89dd754f05341857b7c5e8a9c00c52 release31-maint +78613 25c0f4d7ae569e43fb4b3a620eb9e8752fda22c9 legacy-trunk +78614 38cef8deae22ef01733eb71ddfafa6608b95c25a legacy-trunk +78615 584ec7a7255b240e9f57fc4056f0e73362ceb046 py3k +78616 bd9c7993ee75e3659d9c63f408b1f43a7796f164 py3k +78619 bff050450283ec75c6ce0ab0956204bc60a4c60e release26-maint +78620 b8750c72b9bc47fcb6bae11a0c636ee24e3ef7f3 legacy-trunk +78621 687d8517a0c38cfa2e66606fcb248e5e56cfdfe2 release26-maint +78622 29fac4b1a51e763d3f072943921cf0ac3f28e52a py3k +78623 8ace2ead55237b1e72c6f34d8843f98e06097f08 legacy-trunk +78624 4b413dfa27f992a7be2321834c69cdee0a1d6993 release31-maint +78625 c53cc6bd6b6130806071095094467bc36e6c3f2f release26-maint +78626 c4fca778b573a52662d6a036741c57252514531d py3k +78627 b99998453d523ae10ebba3dfb1d4a9df7500d46c release26-maint +78628 de06b59aa43c7f9aa58d1aced8d6d6aced4896b8 release31-maint +78629 5bb295a94b0f7d04d4a27834bbcae20cb185379c release26-maint +78630 c359d5acdc4b5b407c80d58d1c2b02d0f24559de release26-maint +78632 6f1e2ffd7bde89e0abf3f9dbc927d605cd38f9e1 py3k +78633 dfa7491140d94c6e1e2e340349d52cb0c7092762 release31-maint +78634 df0270bef9718f4b20436d3d427c846fa6d3f0fd legacy-trunk +78635 8678534242a0938da17a6da224ddf82e875fa063 legacy-trunk +78636 bfea6c202ede57677acb53d54ce781b019d95cb3 py3k +78637 60e7e6d3e45a8907be91a80705ea1ac4992ccc85 release31-maint +78638 7f500641c06a1d94c7350bb9929d5555937876df legacy-trunk +78639 dd85273995823aa62b8cda0e8324917a8ab42063 py3k +78640 d7a62c16505b12ccc2678460d49b6eb7e4708374 release31-maint +78641 d5fbda03c6033ce1aea045c15ed2060ff39eef3d legacy-trunk +78642 9944e5104a5597039903f38f8d5493dfc5dab75b py3k +78643 7595921a147482f21060ac1b5195602958c98322 release31-maint +78644 461d9cd195b73b306672688f2302ab12ba0af70a legacy-trunk +78645 77900e7deaa587005df12f2efe484b06af7ee5d0 py3k +78646 26269dfc22ab47e4114ed7ddf4120a3385f17f38 legacy-trunk +78647 0b27c3f18cb386f562477f34ffb6f8fe401089f0 py3k +78648 fd8fdd388963a9621d8db5fd068fd06a5228e1af release31-maint +78649 302dbc6c48071edd44d7e5fad36a03536da26b49 py3k +78650 b6cab21d80b95b67a05f309e1c5bdbfeba9d29df release31-maint +78651 a3c00566c2d59c2df91e7cd477d04d0f45016cb5 release26-maint +78652 84130c2265dca6f92072c8a6132829dab2fece6e legacy-trunk +78653 295d59fa6e62e1d2c51918af3d97d78e72793f9a legacy-trunk +78654 db4da1edf34f5a251f5d0414bc4b049e0d19c019 py3k +78655 6facbc183a4a1ff7cc6caa5befa514fde259bf07 py3k +78656 987ba37a54943ad43953830c69b061ac6b913d41 legacy-trunk +78657 eea15fb0244e2eb5613b9921e144d7ebe498909a py3k +78658 951fec196edc70a9dadc464b38dde633dce7be96 release31-maint +78659 f835e2827d1aa6303b704c78fdaa900a9fe94cd1 release26-maint +78660 02aefc4257de76f63ee0b6c31697ea0d68b02de6 legacy-trunk +78661 ce8be64b34a8a6d13f44c5eb265214654ffc3254 legacy-trunk +78662 d8b2fa88788b1f6b3d73decb2b6305ac651dc75a legacy-trunk +78663 04955e7eb59706fb8623025f6040d15050fd1eae py3k +78664 319e6215c56cb995ebf8ac5b9999bce2ebd5e928 py3k +78665 4df33e83f26f10b57b574129fc7b2339ffd09a89 release31-maint +78666 ad22bc22dddcbef36191696a00429c7a608d501a legacy-trunk +78667 3574c5fe207c4661337689ce504dd91a9634abbe legacy-trunk +78668 69b2abb9534877ddd65262faac0fe5f26840f054 release26-maint +78669 81dc172bfdabdcf34561b88fce25c994ae207607 release26-maint +78670 755715b3cf23a3e907290cbe70b1791afce103cc py3k +78671 45c4b6d6e2a534ce7bc62fa5cbdba263b81bf933 legacy-trunk +78672 021cb4f4559a5faac4bf1a6e9bb4eb8b84d7c42b py3k +78673 5b819ec4e205fc0fd9d12d46df049c05497ab1ed legacy-trunk +78674 432f8ba67381812b47bd8a0aff65a06db07cd040 py3k +78675 fef4e253e88af35c12b7bd24873e603bcfdd7b66 legacy-trunk +78676 0fca397d50f7fe644746276474a7641d702b93c5 py3k +78678 7b48ebaadb6000cfb546f6aa728e9445574e8df0 legacy-trunk +78680 7e96b0bcba27ed79d994633e03959ecf5a0f27dd legacy-trunk +78682 019759916a9ba7a24c91d0ab703d8466e32b287e legacy-trunk +78683 e503033e31436b949cade4789d2da36dce1aa2ae legacy-trunk +78684 824463c4489844058d7bccd1e7f1b611ea659fbf py3k +78685 7cd7ff6b0adb28912582ce09feeaec2fa8aa8da3 release26-maint +78686 8b864aa78e92517a3df409f6ed6dde4d4e5fbdf3 release31-maint +78687 ae7f26d24e1dcf7497fe29b7df8bd571ed29ac7e py3k +78688 04d3ae52ff7302a3879bbbb3b6f421d94055cc5b legacy-trunk +78689 32619996a0148c4d796316881c3b990f7f194737 py3k +78690 c2d9d50f37c59b633b4cb8a95904ab794ce52c62 legacy-trunk +78691 91fb394c04d63d99fee2acdf8c726ffb2374c5ac py3k +78692 81477192cf7a99a229f96387b96b7fa0b59eef91 py3k +78693 ced5f1f414b00c6547d337d2df460b000e126770 release31-maint +78694 fd155a368f5bd465d65313177205c02f66a1d09d legacy-trunk +78695 817522e352d66f6d548b8b20e01366aa2809ed85 py3k +78696 19f30b422ca3fd17ba9448279775b0eb1fce9f86 py3k +78697 5048083e99ffce43093a7edf2f578b3f62eae0a5 py3k +78698 3003c1656e2adeeb5faf5bb2020ca652c333bd3b py3k +78699 bf586b2776f67cc8ecd3f9edc614a589fb05edcf release26-maint +78700 ecca703bc0df4db45ebc956c8d7321866a853acf release31-maint +78701 3197ecc0944a17f559430bd3a41ca48c997b7253 legacy-trunk +78702 d9e6f318568fc9363a346f760a03709705d9b4a5 py3k +78703 cc70f68e9c1113c97fa4b06721b3c477e30e6cfc legacy-trunk +78704 454eff840bd422af09f0eb25097c5010b50835e4 legacy-trunk +78705 8dc40c63761c8fdcb5594e535df41e145487d1fa py3k +78706 25e9ddbce10abe4fbee389774f3427043ff87e41 legacy-trunk +78707 2b508aa2a436bc55b2475457e4283f64ef3fe6ae legacy-trunk +78708 2d5ca2805ea5f1bcd7748e6a9743c46c4b723c71 py3k +78709 32ac428cd18b342e4d9b6bb9789ecb78adce19cf legacy-trunk +78710 215638fcf09ba086320d81cc65f750bb7b166c0f legacy-trunk +78711 5d5bca6ecb15184293f53440f0d95b822a2cb6f2 py3k +78712 5c3176775e8730cb3d7c304298ea385b6dc3c7f9 legacy-trunk +78713 4a119d84d0b575743b0177bcf986ea1b085c6c98 legacy-trunk +78714 b68a9a8c2c1f49f2c018c1611e95b27dd2f88931 release26-maint +78715 67430875c1a03631aeec1408da970785de0af7f8 py3k +78716 aa48526451d17056e103f115428a5dd17d0b10a8 release31-maint +78717 5aa3bfc48cbdebb8ee5be9830bef8f271ba156d5 legacy-trunk +78718 bb08a3ec154da73765e1146658701ac2157ebafc legacy-trunk +78719 5b1764374545a3f2df1735f19a18a7b0ed4ce47f legacy-trunk +78720 966eb1b9e9dbc3dbf8dce0345b398d1df6476842 legacy-trunk +78721 7444d348d771f0f981c38036acae2d6dc881a675 legacy-trunk +78722 48a6c26212265c53b6dffb7bac54e094c5ffb062 legacy-trunk +78723 486c1c9ee006c067aef4fb4d07a8efbef94e7e16 py3k +78724 efe528ee958a6b21d5d58564741ba3e51cab0ccb py3k +78725 24c6a583a866ac8d205da3d105cc7bc2912734c7 py3k +78726 4c5c5b4668b4a6ad48b68b70039e7119b70a645c legacy-trunk +78727 f362cd4bd2c51c6cc0549252666927e5c21d48cd py3k +78728 120d6ccf26b04e99468c164a184a08e02f2c6fa4 legacy-trunk +78729 9258f405a7ac466b48572ada023d8dc9e4db8763 py3k +78730 97ca9b14a6607bec7bfbc69e0b5798561566b642 release31-maint +78731 d0bbbf3c55f5e015c39a1051d0bc45ae3cc9ec5b legacy-trunk +78732 bdf6d768a8cc5f8fad075c8d383d2ed00597dfb4 legacy-trunk +78733 c2cf6c7170c5152b05282b8b3659cd952693414d py3k +78734 ebdc2aa730c0bd1c27371c32e74e5ca03882385e legacy-trunk +78735 a07f70fc82a1102f1bb5dad2e3183fde4633f3b1 legacy-trunk +78736 e8c118915762e7719f56938abee4fe0ec056f639 legacy-trunk +78737 5a9631b9dd227617b63b2f76c07003aa2c08a585 release31-maint +78738 d2e1027edde84a02853fcf9790f311f10f46cf0a legacy-trunk +78739 dcfbc34b2e3c6ab799e6f6a95d522c8f13f92ba2 py3k +78740 f9ea917aff13f2aaee325d8387bcb7a5bccbf22d legacy-trunk +78741 149b8b87514d10416b598884db5f74651f625b38 release31-maint +78742 212478640b1c263535fd0cbfa6d7d5dfa884f7c5 release31-maint +78743 16a26d4374e46bfc977eee41e0804eb5f80d60bb legacy-trunk +78744 4fa96a91380871b68e1b84e7a87578e7a118be73 release31-maint +78745 ad256a6c65990c8a35387b0d3c92ac0ff9c2108f py3k +78746 317d0c43ab2b6bc864435b45ff650c5e375df02b legacy-trunk +78747 f73561127f57e3e23873e9a5e041a2bcdb155d18 py3k +78748 e6d14158758e18b63af52bd0b591672b25242e24 release26-maint +78749 0802bc973b324da251bcffc13ad3a9bf50ffa609 legacy-trunk +78750 ce973b5c779f0304ad3aa20e5e6322345abfe5d1 py3k +78751 c16b37b1891b00c065791421e1d0357e0a20d660 legacy-trunk +78752 ee8802815bad2b7ff9f560f90afcec3e5df73a90 py3k +78753 cde2687e37c16509267f83536971892b14c74fc2 release31-maint +78754 4f02179493c25d1fcbd1955c0b07a4eb0e7a89f1 release26-maint +78755 2990bd3ae8838a76eff19df91d0ff7c40cde82dc legacy-trunk +78756 49a0a950d219b22b9f5f9dca0275f944cfacc733 py3k +78757 e2d41079d05967e5bb6a6f87cb97305889ba5fa9 legacy-trunk +78758 e23cba03cc4b33d9e13f58d021bcbcf8018ab2bf legacy-trunk +78759 27422d1731e9e469648f69661273031128eca736 legacy-trunk +78760 174b0879b7d0ecacb26b753fb6a9a5f95999d611 legacy-trunk +78761 71e4ab21346d41e5041128582497a7278cb34ffb legacy-trunk +78762 cfb442d702cd471a6502a9d2fb66e8aa1ef67645 legacy-trunk +78763 0a273ca10fa5e4dfe6561849dd8199368792c52a py3k +78764 4a6be864c6b89b17c6368d983570ac92d411386a legacy-trunk +78765 85c95fd5d7e3a044a2040cd155851aaaf684fcdd py3k +78766 edaafca87431c7cdfc159902c84a38cfa1643b6d py3k +78767 ab7c87ed5cadd04ba93e78e25cc7c12857b01ee3 legacy-trunk +78768 da19894946e1f612c1ec40456804216d09675e52 release31-maint +78769 e45ff027482fe48793dd7fe2b157e46d2758866a legacy-trunk +78770 8f2c360d0214b5045082767f6384a958eba30f13 legacy-trunk +78771 5b1da32c9d4e2d4b0d87d97737bb040c8e0d2228 legacy-trunk +78772 c752064fc26272149e2bea07587c5f43b4f10c5e legacy-trunk +78773 37a84249aa04777b1604aedb147d98eb62e1198c legacy-trunk +78774 85ea454a13dcda1363dfa616a95ae3dbb1d723f6 legacy-trunk +78775 131c2108d2b1af987ed87b2ce47a17a29968ac0b legacy-trunk +78776 4660387b9b35233168b8f7dd08dee671190b032b legacy-trunk +78777 41aef062d52931f5c6e43389ad0be2c7335d2fec legacy-trunk +78778 da71464d2cff218e50f601b4720fb9577378252c legacy-trunk +78779 575b12b198a1644a991ae3be737301d2a57a5fbb legacy-trunk +78780 0f468e2d93d0ad1d06227bd116aaaf6c7a2077e0 py3k +78781 c676ff0d8495f57877c4b466ba62d03d488aa581 release26-maint +78782 c6ed33035d692af0562cad9b05beaf2945a42d44 py3k +78783 da3c5efe4252dd23300550f09964598183301af2 release31-maint +78784 b0b80ec2e3a0fe0b75dd490dcf43bb339d136b3d legacy-trunk +78785 39d7047807d5295a6d48ad9434838f0db37dfd77 release26-maint +78786 445f801ca2d0b4291c52acd79274c98a8a3625a1 py3k +78787 55f6a3d5c17795737ad694b64028912703ec1cdd legacy-trunk +78788 6671932bd8b8bfd2081465ddb67a68ea75f317ee legacy-trunk +78789 a3f6178354f5dc1c0754368b1b74980fb54c7a89 legacy-trunk +78790 96e0011ea0a44ca6a974badb4315b07922dc467b legacy-trunk +78791 2ac4f4f7e391161ca0213766c3ee936f4bc3f1ef legacy-trunk +78792 a2f1c15cae6c405e21e8415ffb835639362a693d py3k +78793 733ccc3f3a6805b11bf5d638bdce0d8e21390c8b py3k +78794 14616df924079d1152daebebf48314d2478b41d6 legacy-trunk +78795 cdfdefec99abcda14dcdaa7f4151e805f80163c2 py3k +78796 68e0507632a91f79006bb68c43cf8877ef7449dc py3k +78797 ac80884ddcc3266948339746ab65ac054c30125a py3k +78798 024c53a86521f90c004212cf774901701ab66dff py3k +78799 b3e6673b6ae4d1e0882eadff7256ce6543dcf595 py3k +78800 d92878bba7bbf70fecb3bae374f72aaa904fcf01 legacy-trunk +78801 895cfebde1727ba7d5798cceab2eb0fc98b6f1de py3k +78802 c557a54ad6d1f87faee045e08b9be94efdb34c76 legacy-trunk +78803 1cda3d7777ae7e3d55aa0f561d422d2d2c458cc3 py3k +78804 c870396b6ae1a11a95a4579d4c957e7a09177d4a py3k +78805 59a1573b83ac46b18e184c7cb69683abe5f168a2 release26-maint +78806 f12682af557b61aa7e0394f1342655b5fb14babb legacy-trunk +78807 2a4e92eff30a742a7ea459f8841fb5c320b2c48d py3k +78808 e42155c47494affdc65b7c3019e855e02ba47a03 py3k +78809 88d265de7dae206d0cdbbb2369ccd6d92cde63a9 release31-maint +78810 2eef9b0ebd5cdf9584fd71d76cf18c0784fbc623 legacy-trunk +78811 56679afaf07db2ad860a870065befb3a7ed0e8d6 legacy-trunk +78812 1f5da55ee7d7f0026683903337aefe3e1423d0f6 legacy-trunk +78813 e2762f4953935e51a07ec9d65dd5fd287bae4d6d release26-maint +78814 bbf2edd752b632f0896973973d4055516f5e3347 legacy-trunk +78815 269a12a50123f3bd94ca4a9e2e23a0030614f8dd legacy-trunk +78816 3c8e200043d69e89e9ba6eb9eac5242be1352900 release26-maint +78817 55f4de5e378a89eb9288c7869aaf79c1b6f29714 legacy-trunk +78818 65334303fdd3fa266cd6b0d79532bea71ef2c6b9 py3k +78819 6d9be1a97c1722e6a91d6b21502f1ea50f9f5212 legacy-trunk +78820 dfb239c500892fec9577d43bc8124c53e84c4f48 release26-maint +78821 9dd1ecb5a24c1b442275339a02d57fbfbcc6a8b2 py3k +78822 fa4630916699046357a5ac16884f3fc47bd0eaa6 release26-maint +78823 017aafe8326fac6ea18dc725d38128e9de865789 release26-maint +78824 530b71cd3b29612e98d6be1081ff683e530c1b1f py3k-jit +78825 bc0cc6771caa789240296d763eff21053747af4b release31-maint +78826 4468666d01c4ba51a672901fc9710efcde62f2cc legacy-trunk +78827 5551fe66670c244d0d450af9f0cfcabd6b6fcaad legacy-trunk +78828 adbb37d3d0e503d1b07bf663b90f78e92c8fe16d legacy-trunk +78829 135cd8064d6fb85e849f7ba3c39da5183dea3ba5 py3k +78830 5b4a66d601c3a44630234edd843d6f19f88788c2 legacy-trunk +78831 053ef6e83ced7c5d388e40d5b05c6d8632c93092 py3k +78832 ad8f63d9dcd80348d1be78b6bcfe695a517fa620 legacy-trunk +78833 6e37e127581b4c1030c9c08748953636ab03578b legacy-trunk +78834 a111024a0bcb6c72d430136a23107753fca840ac py3k +78835 8b246e8560db5d01ae81f99fe9dceaa1f36d94d3 legacy-trunk +78836 e5367d67a7f8abb786f2950e858ada089110e59f legacy-trunk +78837 b8ede0fee61a139fbff7917a2874b069887dd89e legacy-trunk +78838 831e30c0fd730685ace2534abb1ea6fcbcbae67f legacy-trunk +78839 903d3e633a9257c93d831fcd90f26ea44d373cac legacy-trunk +78841 06ad32c034864b6ad894cde011f9b3229ffaa4b9 legacy-trunk +78842 9347379bd5fb97d3e63e7e439f3d8d1403f9660d legacy-trunk +78843 b62f76ad430e28022eb769f75428845337c6c363 py3k +78844 4dd08a5cca8ad9c4a66546f2122d80a2c1be36be legacy-trunk +78845 20160b461cd3aeb3046faf99e8fd4aaa355655ec py3k +78846 ef48e48f066e99915735682b29a5b123b34cfd23 legacy-trunk +78847 3ed95490ba9d3dc728c0a9bef55f35b7764a3780 legacy-trunk +78848 6ea0a58ed8376904db991be8586cfea095881017 py3k +78849 4912cf3b0190b36dae5b4aca77062777065de169 py3k +78850 fcfe324663a61717a49b582d45e41722e5bc7349 py3k +78851 5c5de8acb33c1a5116930ea8639df8c027d643c9 py3k +78852 9c2d919014d07aadbe614b1388728a075f47361e py3k +78853 a566e53f106d60feabaca904529ae6b7d5d0a789 legacy-trunk +78855 135aa7edf792b83749afa3945f32a74c87458747 legacy-trunk +78859 5394d81c4513bab87c2a32d81d4be36ca47b8984 legacy-trunk +78860 62d7f049703b4830578ba10d7dd504fb53e987fb legacy-trunk +78861 9027b15f9bb762a574ebf1d8adfa40957e637310 py3k +78862 9948714532f92115a00540299de9b14ece4e34f1 py3k +78863 dd48e3f32de554f3ea633354b9d6d6dbdf0eba4a py3k +78868 236fb0af44049709683abb51df205d960751d1bd py3k +78869 b056bc767ae1eb18f9285acb2d15ae9610f78d20 py3k +78870 26b19809d82e8f37a625b194948de5eec2d0f427 legacy-trunk +78871 69b71c3389925b136588b00912213d29077dc535 py3k +78872 42261c6ca564301f2defcbf810857edacb3fb4be py3k +78873 1bcb465472be59a836ca3644c2fb6765e3f6f06c py3k +78875 f49d24b4456ec9e941a2853c4023f102d3ffc544 py3k +78876 06fdc5e0c2c243c83c5be9a46fcdcb8922dbaa57 py3k +78877 c9dd823c146d1b6f22ffc831de8e0d664311b18f release26-maint +78880 ac754faeb63e88f5e11dd2ed015e04bd5f2bf476 legacy-trunk +78881 82a23047194bfd0586c3bd660de91a519ecf462f release26-maint +78882 07adb09440ef89665248e5658a942a9e111f8f8c py3k +78883 6ae090fd99fe3b13320724b3359d77a56491bd0c release31-maint +78884 273eb5c1b9b9735ae63f5f8a0b036d8a3aaea10f py3k +78885 900fcacc64034a174ca94c7126ec45d0c5345943 release31-maint +78886 1e01ef9758999f6fcfff01447fa0db73a7714bda legacy-trunk +78887 76f07ccd7db5c75eec2fa6bbc93de55abc561fb1 legacy-trunk +78888 6726463646fb4088ef323376cfcf44321f9f7523 py3k +78889 980808de30c91ef359528f5724432bd7ab96f042 release26-maint +78890 e474386ff96e8859a992e392ca3020edd948a3c0 release31-maint +78891 f808b16ccfd6ade31ad534cf7a507f8f020cefe9 py3k +78892 d6f204d40695ebef613ad4fded7f1d34d6aa31e5 release31-maint +78893 c1fb07a57c8d679a327b87be7142986c27c62dd2 py3k +78894 c21b3e32ed7b8e2e6a54146eb61345cc1a90a27d py3k +78895 5dcc3619d6d1da83a08dd403bc5d376494c8be51 legacy-trunk +78896 67353fb405ec92be108d59b252f7dc4c01107b83 py3k +78897 22c8770f992396b3cda1beecb41dd9fed846e8f4 release31-maint +78898 1ee2452ce9426616e52260133250e41b9f7089e2 legacy-trunk +78899 f40a8085248035b171b3d6c73380e2c37c8bc3c0 py3k +78900 e10d61ca368edfadfc6db5033f4c7fddda1aaed0 legacy-trunk +78901 77c5c90beef028d8c98d4309ff02b6c036e1704e py3k +78902 f65977dcf21acad03e1e64b4546cef428f89e2e4 py3k +78903 4fbf3e708fc401b715f890e1eb9bbf7c9cb3b7d7 release31-maint +78904 b3ee5fed8da48104fd79ea0cf984f2fa80b0708a release31-maint +78905 80283709719176926e842fb12a22d46357971cb5 release26-maint +78906 90daa07a43bfe947bd5c241735e93c7a845e129f release31-maint +78907 5a16bf6da9892f85dacb1365b623b8f08b67dc5d release26-maint +78908 f255a46b315af6295d951747d0572357546c6798 legacy-trunk +78910 da94f1666da18d17c2a8c57b56e0428597761fad legacy-trunk +78911 55ecdb79c6602dd6e4fefbfc04bbd9b619adb4e5 py3k +78912 b1b22c60222b4002ea70e3f7c0cce9528616de5e release31-maint +78913 460823c675f8938bb1f54ae9e75c3583d517c5a0 release26-maint +78914 43ca67bd700a698103a652ba2150c3fcded3a380 release26-maint +78915 ad017d1b8072e0fa88d67b63eada43063ce0f80b py3k +78916 5a6e897064d6bb19208591d8d5034a3e0e2c61db release31-maint +78917 6d5abff7fc31398b1dfc6ebdc11cbff17e3ef610 legacy-trunk +78918 d1edf282400825f1d14b1c8fe72aeedcce3d4b50 py3k +78919 27aa46d0214abc00644100a398f1f5b71d036ec0 legacy-trunk +78920 a7b58f1e8af085d8745db87c6d1cb4ca6194da64 py3k +78921 b878a0ad4d8c6b4cb65da82c65d75a9290c1b6e7 legacy-trunk +78922 51d26f31bce9552b622ccf5e0deff5822e5c71d6 legacy-trunk +78923 e1d51cd315d0853416b6a2dcddba5f25ec2497fd release26-maint +78924 32c5ad29663cde3742cad109bf0e0a2ed347b98e py3k +78925 19e9660d9aa512fe346ba424f53557f91683ec9d release31-maint +78926 e808fc548cd665c9a6142e508287b6aac4241729 legacy-trunk +78927 0026e44362e57d04e5485b4ba3da1c46cfffb725 py3k +78929 6774e8c6c39f384ce57b8f850ddb65de277116c5 py3k +78930 859296a7092f0cbb6f1c12be12dcc3efaccad4fe py3k +78931 e0a1770df5278612edec433b4115eb88ae116481 release26-maint +78932 728ef0072daf22d89f3c8318ffb8d84bfc2d83cd legacy-trunk +78933 2909a4cb1ba72f13cd503984374e1a7094102580 py3k +78934 adc390e66890401d761f1774fc08b5677deab95c legacy-trunk +78935 cc1321212e73460cbb1e5e9d90700f9f961a3980 release26-maint +78936 d6e27fa22f42a266c66eeb638d056cc02ea1f81b release26-maint +78937 5fe5a26e3169e89cda9580bbf89f37ff99ad6758 legacy-trunk +78938 d3905a9f40f4059d2d5b97b2577d512c7ffebc37 py3k +78939 0b457f149761db6aaf70c28de2505b0ef24e530f legacy-trunk +78940 1a810ce13dbd7c43bc7b7323379cc45e1b7523f9 py3k +78941 9696932ad8275e73fa97c5080a6eab11e6cae3a8 py3k +78942 7a18c27628861654309adda443aac8b276387be5 py3k +78943 d30eb422c564bf61a0c3d80d08221f9aa2042160 py3k +78944 461b89b9555d0ca932c59f4213d1e285398b2239 legacy-trunk +78945 f097f2ba23293727333a6fb98e5ac5c3cc14e60c py3k +78946 768722b2ae0a59840790de15025dd577ba233bc7 py3k +78947 372d1de86de9f8630de6886c9792e6038bc5598c py3k +78948 3d680949f755d86ba9ae71234b531850240b7aa6 py3k +78949 f1270e00f587876c3caf1aea5697f0c44304281b legacy-trunk +78950 df8f81df8595ce5f94d4b53b4d91f68129f64546 py3k +78951 308cff7df64f174ede869a36abb90e0f24357979 release31-maint +78952 403d0a27bd56ee55364c7cffc4ab80f0b40939ea legacy-trunk +78954 e7f11f44d51455f42cf2e878ddc14d8d53969cb4 legacy-trunk +78955 77c71f258df7ca75f85b4987b53597726384a5ff py3k +78956 5b754e882857cfd1b3345f4312dd88259a3ca8e2 py3k +78957 b93cfafcdcad7c33cb953688d0e11156ad30ebb1 py3k +78958 9cf702c91a9e8aef8493f3a5f50f745b685fb0bc py3k +78959 e7b5fc8646abfa901e72a33ac398af9ed52ed769 py3k +78960 c8ccb4e0c6fea7d3d033d2e7bd465988f2e5df46 py3k +78961 c45f21705ecb79e341bfb4c393f1c57523b536b2 py3k +78962 8a909e6d2cafa793efe47bb41623550037a3aa67 legacy-trunk +78963 c16e0755fcd7d078d46514946566b0b942e1c961 py3k +78964 b570c5b9b2ef35484367e561453019099db4bac3 legacy-trunk +78965 59e223a05680fa291bfd33e3131c6741975a0213 py3k +78966 d360f37a4b595fb9a34530575d1fe45e96d76288 legacy-trunk +78967 8f1993b866f790214801c0cc181d4b30ab7b8c28 py3k +78968 eefd521f19ce05f39f74b02c7192b6bf2a80cb0c legacy-trunk +78969 bb06aa9183821d45227b382f97280ae0a96b02d3 legacy-trunk +78970 08c5473bedcc393efe54f2eca51e11a8ac11198f legacy-trunk +78971 e1de080c4556d3950004b643458baa4c0989aea1 legacy-trunk +78972 b74f1bb88e6094f333b82c78c6d5a6bda22b1d43 legacy-trunk +78973 adb5e928bde20f72e6561e0e0ffe0bcd2fe9755a py3k +78974 38f2f5262b203ad56f10980d6a75b4ab0850ae64 legacy-trunk +78975 37ad40a28d3bf40b9c7020be4de94961baaa8e22 py3k +78976 95f21b2c216c08fdd96b1fb6509b0dcb1d8640ee legacy-trunk +78977 8e38b7bef700042ff6ce3fa0af958b52e018ec41 py3k +78978 db379a90b46e40402d450b04fb0dacb6fc690561 py3k +78979 73e42c0f5c99e521fdbf1e8099c70fc3fcb90218 legacy-trunk +78980 b8900a1d98353088c510ab161265daf44f574f93 py3k +78981 a2dba6fe3fbe5a88caa22464af53677c2b310068 release31-maint +78982 8aa5530e84073d88fbaebd3177e821aecc783972 legacy-trunk +78983 eeb9bf1525bac8aaddc3500cce447c88a188296a legacy-trunk +78985 c19b4bfb806aa8c1515d837f1d9c481d1851cc12 legacy-trunk +78986 c4dd30b5d07eacfb3eaed447e85a9e115c677dcf legacy-trunk +78987 59931179c5e2c5823d162d2760b7bc2858a7d4a7 py3k +78988 79845e3d5cac21e5ea366d8dc6a1148bccfd3e2b legacy-trunk +78989 9ffc8f0515cdec6084fe5ee2a81d375f068da681 py3k +78990 923c8739ca86174fef9248d650e84017322a7b62 release31-maint +78991 852799bb3fb13cc1ba75b48151375f71363150b5 py3k +78992 42572e347108a2d1dd75395a67063628b47f6cd9 py3k +78993 b4533b580fc9ec1a3da555f5ad838d648f13f71e py3k +78994 74514000f8375d647999e56d63023ffe28f9ee51 py3k +78995 661ca0b05a31e755bc31eb0ba2275416924faf53 py3k-jit +78996 bf4a4acefb2f8708b389267694d79fb41c0f5e3d legacy-trunk +78997 c966e6fd6178b13dd437e6c58dbeb6c58ec98e44 py3k +78998 95b269c868dac945b1acddea6b443eee724afd24 py3k-jit +79009 aa632943b8bddad112ea70a0e5eb496a5694be25 py3k +79010 97b662b10ff8390e419174ccaabae646e19be78e py3k-jit +79011 2e16c963401de03b069ec793ce02a21a72667b4b py3k-jit +79012 bc65b86fae9462e7d8a6be8f93d11bd6edc7f0d5 py3k-jit +79013 190eadaeabc52ad7dfd2530d7566d1e9a637b52e legacy-trunk +79014 0f080961ecef131b04f2382f49a68a00bb6b8f72 py3k +79015 3be3ac019bdb04e4390d196178b788d1ad5d372e py3k-jit +79016 2064bf62a39f7868b3c3740a94d0523af1295f23 legacy-trunk +79017 bac72f11a98c56c36078e2ede32b051a58087e53 py3k +79018 30f283039e0e99a757d080303e0288b1ac45a15c legacy-trunk +79019 4407ac4c6360be41f0beae7903cb496f2be9510c py3k +79020 58e3bc21c2dd701eb42a575c7e0ab0561fd3930f py3k +79021 706559d3ac5908ecaa7d470d8561665de1cd9baf py3k-jit +79022 69c0d5ea2e1e3c3b470e8e46e3d78f03f823a6c3 py3k +79023 5b888f590fe24cb234e126fc4cfbdca127cc7bf1 legacy-trunk +79024 582780edd0e88a3bc6533669e050e57046e32d7c legacy-trunk +79025 8038af1e20655eb633ce68b4190caac6f4148dce py3k +79026 8a4693d517fecf1a3c84915707724063690be99d legacy-trunk +79027 7f162a30949785d8be10193d86384d7d3e6d0d9b legacy-trunk +79028 346582f85faf8847f5b2f5b1d91a82e5fd68354e py3k-jit +79029 10b7606a93ed0391a23355ec3403f8edfc3d1dea py3k-jit +79030 9b4625700251b74006cf245abcdf6d02d88ceb1f legacy-trunk +79031 7df3e13d3e509e0f2b0998cc7ac99bd67167cca7 legacy-trunk +79032 7409b5a7c81a6f062fe7367481d0f561830a7dea legacy-trunk +79033 80dc4d131d85dd33120f9eaaed839f51ab68d283 py3k +79034 b879209c202fd33388102a4e34986a525df6d4a1 legacy-trunk +79035 52479e0454e90cfcec93e332a2944b066eb3f198 py3k +79036 0ac19190a710fa7734cdfc6f4c3d63b4f37fb146 py3k +79037 e3be1f1ad61ee1152ee23eb9fcf6412f893f3a8a py3k-jit +79038 531d3023b48b7ced0348fd1063be8202d8920aec legacy-trunk +79039 435fa215d33f08a68b69d85d301f27102d03f2b6 legacy-trunk +79040 d62ca1eaccb9dabf7cd154c57d369a76166e8816 py3k +79041 ea278d9c0b2aa33f34880ac82df1b22bb49c1c6d py3k +79042 b1ae4f8377fb6e31e50da54af2ec4c19463cd95e py3k-jit +79043 f7220ca11363c9c7ca3038a586b772145b17db3b py3k-jit +79044 8555a4cb7c4cb63684f4494dbddd6e8d9b361638 legacy-trunk +79045 15bdb94c8055cde9a01fb7702a26356a7f64d80e py3k +79046 bfe9ee02f4c07e1cb716e02d78a3007f2ba5ac49 py3k-jit +79047 a1b6a54e2b6a51c5357d43021f9cbae3a1bce477 legacy-trunk +79048 d9ec4c8ce69542c5fa63eed00aa757a9ed38f0fc py3k +79049 76f9e3b6c584e48c1d8c9f42109aa634ab37554f legacy-trunk +79050 485fe20dab121cb46914df3afa5a5303b496174b py3k +79051 429462d4ca0c200c5d223bab1766e2904d97cf79 legacy-trunk +79052 46183bf4f1436905a95b91a88f0f9b983b38247c py3k +79053 4656846a89b2675a2753cde71db3140c5867acf8 release31-maint +79054 2cfa4497188fef4550b4d5ac0cce7ba3e65ac74f release31-maint +79055 d1dbe5df1791f29186c758178fa70ce3b8cde4d5 legacy-trunk +79056 87125d7647d685b13af76685b3c7d4acc21e6f1f legacy-trunk +79057 d7b9e2941e145d7dddba1348bebc70316022062b py3k +79058 25de7167a0558f9a3600238764039836041f6041 release31-maint +79059 344cb6a4ef7dad7be471385c5d9f315b31e7301e legacy-trunk +79060 22f589a8e3ab98e6aaad663f510fe6b04d181e7f legacy-trunk +79061 3f4c7c4eef62af823b22cb6a3a9ce5cbc0f77451 py3k +79062 03852eb08db1614688ca6b7150a6158a28e62d8e py3k +79063 99af4b44e7e490390817a597a542546d749e698e release26-maint +79064 16aab02ed99c67ec262b97a298f327a222c592f3 release26-maint +79065 a5db0df323820943d694a60d9235fb19d56d41ee py3k +79066 72a809d165f436cc908db17d99f9ffa0a36deea0 py3k +79067 15b87ea1413d6e8020d3cc5d6076d34b2e6b3a51 py3k +79068 e15a8a476494bb942ad8d42a31f51b1137863043 py3k +79069 4f09d5b1475ffac3566031f067d787dfca6a2ab8 py3k +79070 37b1b90de5c155d93b3a0285e23ff1147be9c4c0 legacy-trunk +79071 eea72b81a23c65ccbf605b86da9ddc02f41ea415 py3k +79072 96efebda4ea2c96d31eb6685a9decd6a1ba67c31 py3k-jit +79073 fbc3f1691ad89d5c4838a2653fdca916f6af2fe0 legacy-trunk +79074 0b1e522807f2c7b1dd171a708ff13ac321109b4f py3k +79075 9103855b826bd4777244906664073d9899e245af py3k +79076 b8b49c823fe445be8d8be22a35af1732098ccb5f release31-maint +79078 a0a67c2fb7ff6e403990e0a9b21a1e4da08875a2 legacy-trunk +79079 8fa1284ce00e590027a44e5e2f46081da412db75 py3k-jit +79080 dd12f788a544df66f0919087f71e5d36799d9fe5 py3k +79081 471d07d2a23f5ef7ed28baa92496e35ff80c3884 py3k-jit +79082 a241e41588823e711bf1d3979fa2f46bffd5c079 legacy-trunk +79083 d94411403093bb0bc7d829e69e73754187d246cd py3k +79084 77f853fe3cf26143dea59823e8fffa505d146ee5 legacy-trunk +79086 50e06b6ab9565df67a2eeb0f2a735eacd751693a legacy-trunk +79087 d1c3abc8e0c29c60c76e6749b82d419f96be8574 py3k +79088 791ba201baa9776bfc28c002423102e57650a538 py3k +79092 4285ea33a5dfe521fbc01f6aa17147a01100b05a py3k +79093 b9ffa9fd101b5b9c49c0382c652414bb9e3aa8f2 py3k +79094 8a28be45c2423cbc105014e1b38ca9c58d62f662 py3k +79095 5fbd9c6389c753ae2c1303959f092b6ac578b0d9 py3k +79096 4b356c1b25f66d909bac32c0d1703c81cb9e6e63 legacy-trunk +79097 00daa8b736cc7fc5b831acfbe8fcae9fe44e6e55 py3k +79098 b6387f43cddbd9c3cddab8a0fe479b4ccf00149f legacy-trunk +79099 91431b058478ec185867c75c8806d1e705aac218 py3k +79100 07c7664f21a1899196514c8513c037c0d625cf77 legacy-trunk +79101 2512c2ad5de705bb614add2fe6022806056abd42 legacy-trunk +79102 4587e1f74ed85d128e528e77d31c63a480b5d376 py3k +79103 2b1b0379718b49d772aad1635c7a64b948b1d70d py3k +79104 630ce62c946ef47ac442fefcbd0a673f0e5111f6 branch_libffi-3_0_10-win +79105 83a7689f1bb5d332ada9543bdaf550cfe540268d legacy-trunk +79106 996a31920d48c090781a572e0e941e0693eb9871 legacy-trunk +79107 18f94e23ca80a6747e59afd3305e95b6dc462711 py3k +79108 3f9053598ca0d57b73fe91cfd4034fc38a2101ea py3k +79109 a8e39779fedf24e7b606148f5908f6f36075372d py3k +79110 2d683b8e3f502f860d1909f3c64a0b1c93469fcd py3k +79111 4741f6dd7c69a0b2941103bdc57666a1498b2769 py3k +79112 224591ba6a184f94dc21deab5ff7455ba21065f3 py3k +79113 1e0d18e9f8c1bc89b2687c4a9cd822cb9bb77f2c py3k +79114 0f00da6904a6578151aee202ae9afbdedba7d5ce py3k-jit +79115 9ab07abe230db98b18d46fe2ae0ae28d7f94b6a4 branch_libffi-3_0_10-win +79116 e43233d80064f583dcba81f5e976f12124c29f7b py3k +79117 02e21576da0377390b4ba9d0ec52e81a25d0bd7e release31-maint +79118 c3c7a3be40b3566e31b1295adb4b3f02f0155ee7 py3k-jit +79119 acc3e3583fac988a242f985d5545d861a3d2e0bc py3k +79120 9ff1035f62365ebf0d8ec5647332eff35868db45 release31-maint +79121 3d38c0032ceaa95fbdfaa939fa83011534cf2d27 release31-maint +79122 f0efaab043819ab5ff7d01f6fbd403667ec5f8c2 release26-maint +79123 fe4115692f76c106c89b6a233ca747ecee1f2df3 legacy-trunk +79124 9acb7c1560758197ef52e8d1fb59ec08fe8d1fd6 py3k +79125 a5f796fb61a10264dac2fb22de6c6d8dc5094000 legacy-trunk +79126 706957d6ecdff50a789b30e8b2980a7e0b4ac825 py3k +79127 13ff85b10db0e57340e77c994eaa99ae7c583fe3 legacy-trunk +79128 74bb0f62b32e7c72e6b0fca088e532a1fb48677f py3k +79129 109c4e62ec235772f3dafa4fc2427c2457b6d71c release26-maint +79130 5a55a32611644da9ccad43aa633819fd50b36252 release26-maint +79131 0e3c10bcdba41d27b23dfc99a1a996b7b1712a58 release26-maint +79132 a682b7087acbb3f9fe538ed895b7dafbf86aa668 legacy-trunk +79136 180374bf2d529df345448fbb906e0d6f9aa000b8 py3k +79138 37c9ab7d48f1f474fba9bff1e3cd6910e8047f42 legacy-trunk +79139 6651efb75d9ea2a9b6ff57f3acdc8aebd87e2d9d legacy-trunk +79140 e076e55834d9f21132aafe696e5175fa3a28c95b py3k +79141 e523bc1c3034445fc8bf57f9c2950c121d2585bc py3k +79142 e8672003ae84ff12a5884fb12fcfafe959a71577 release26-maint +79143 85cbe44b3925f832ada070396a9166f607021198 py3k +79144 63586592a3a06954e09608e577f7dacb7f918535 py3k +79145 a612c8b61b4aa84a7f8ef340ba8a53cc58552234 py3k +79146 f77f8501da7fab9444974a1df519fd68797ba0ac release31-maint +79147 960efa327c5d9c18df995437b0ac550cb89c9f85 release31-maint +79148 7c92681469f7bb45531a31d55896dd131cbc7c7b release31-maint +79149 352d61a69f595ba489e9e7e0b4ea8d6427aa2397 py3k +79150 edad948b4d66fab31b0234a41812c3944e06b0f9 py3k +79151 554e0f435d08abb70415fabe75e18268e9a61fdc py3k +79152 6223c3fd61f09d730fb80b06d356f7e814309f4c py3k +79153 8a920a8909a08be390c428270589c2aee5264bae py3k +79154 ae9e137411f1f38f2724554e19f5abb8272627ee py3k +79155 d8700b4f1b9f5152506c6dae7a35155bf94afbe8 py3k +79156 4f719be7c87585f5b157803fdb0004d0ef0dec55 legacy-trunk +79157 e619047a2f36608ea96fe94325ee22e1f82b2cdf py3k +79158 a9a807b7cd439fc97e44060e2f47f810343112f9 py3k +79159 0e0632c543e4144f22f31d5b908fcdbae94ecf33 legacy-trunk +79160 711d51737ee6be9f6ecaf4afb6b0592e5f5c7401 legacy-trunk +79161 dbc5804e828585c4210343489ebf821f28d1a972 py3k +79162 6b6ffd526e3be4ed99921ccb94d6e3c08ca87b60 release26-maint +79163 a7b89f2ac1da6a5e245e793e0acb7ae98a8886b0 legacy-trunk +79164 dcb9f4270441af7edb0baddf6d7591b08d58f79c legacy-trunk +79165 c8c8401628049f97d8a6ddff46bd3003f82f806a legacy-trunk +79166 7ddcf7d2836aac32a533f10631ae81a2f78ce9a9 py3k +79167 3566366b89cf15994305e9d1767970362b59dd91 release31-maint +79168 4bd1ac1132cdfd5059f78effd4539d754a82b3ea legacy-trunk +79169 f0766cff7f5968eab38b898042ee89782b2d9a0f legacy-trunk +79170 f857d4ed07747593687dc365cd99e8f7e9bba1ce py3k +79171 10bd1d0f62de2dc88596631acc9c4ff6bf236f69 py3k +79172 ea4e68928ff56b6f54392cba0e3c4564cafd417c legacy-trunk +79173 1ae474c9c34e6bc815fb7765aaa36f5c6603f58b legacy-trunk +79174 2c9e0ab3f0c7efd91fcfc37c209e7943b4340611 release26-maint +79175 6a1254e20c8967be938e9ea8b938e2b932942a96 py3k +79176 cb0e3726d91dab05f45d1303276f549b54ac870d legacy-trunk +79177 31f0d9fcdb45c17e7d0ba69716fc7c71c6888cf0 py3k +79178 ac962bc41e85fc933bf76ba76167ce920fb5059d legacy-trunk +79179 bc5e0d2e179d0086eb1c169d24144183f29a6113 legacy-trunk +79180 455ef7015ba802da08ee79617b56d109a02dd453 py3k +79181 950c1030f816407f1b4b0314308cd740359181bb legacy-trunk +79182 575ec773dda40cf883b6f2eff1ac7ee739f10190 py3k +79183 2886f6aa5ef619a4bd165e7a33857b6948b0782b py3k +79184 414044dbf34394316a4308f0e0c5554f2dc5e1a8 legacy-trunk +79185 d4fa2eaab5fa8a56c03b3f02e4cd2175f89e519a legacy-trunk +79186 c11f1cecbeb35a186e26e6ebbb5a3fce630146d9 py3k +79187 c3b9c333301c7b7f6f5303c68c9953e20c91eee1 legacy-trunk +79188 e823e27c225eaa061739a6207b1139cb31998286 legacy-trunk +79189 dd68e04ee2e86234968667049aa15070df237843 legacy-trunk +79190 620912f830826e95ec0008bd4868e38a268e9497 release26-maint +79191 98e41660574c3ded3af60a8d7ebc39a07303cff6 legacy-trunk +79192 defaad2017b5cc089e74fb8f4b91118ce1a9594b legacy-trunk +79193 fcef4da31e245bd0305203fc0160ad06ffa397ff py3k +79194 22c6a2764cab5ff80a279f46ecc68088f9c37388 legacy-trunk +79195 63f3a94f5e9d50585f409906b442c267f992686a legacy-trunk +79196 44ffb8092ed6290330c540ec1823107a28ef644c py3k +79197 b25d1024f39468e439b94c6f788707ee480abbc0 release26-maint +79198 c6f6be5317ad36196ba0f10d8e22eaf9d67ee55b release26-maint +79199 8e41f1794d4495b8cb2246e58f803cb0e4ab0eb9 release26-maint +79200 0fb6d342016dd5c8a26bdf28db87cf543c586ebe release26-maint +79201 8f1202ca888e95bb25f9df74b15bdc2bbbd572f9 release26-maint +79202 12e2075dbbe0e1f35c0078ead73f59cc898bc64e release26-maint +79203 581263af5820fd1d64ab7e2b4517451658370742 release26-maint +79204 8d8c9bf2a04e27f56c6a3ae69a19e4d44989bc9f release26-maint +79205 643bf9ff228fe480d80cb22a2920f5ba14a2726a legacy-trunk +79206 b9e27de85e4bc8682899d08f3b4f213a671d52a7 release26-maint +79207 e062dd35714192a318e9c5210e3957acc358f2fe legacy-trunk +79208 09aa872f79fc5f3f9e78b86e2a7a6c0a51ffa7ed legacy-trunk +79209 ec84fbcdf7cbb519414c43343d0641c15f382923 py3k +79210 93f720e9518adbdda680fb3e5df9957797614dd9 release26-maint +79211 edc92bce4d6e2d93abf451bb9456ce9f3beb48ff release26-maint +79212 cf58b73322f8c4b0bc42651a509069afa07cfad3 legacy-trunk +79213 38e9b9da01642ebb468bbce023cb24fd8a4f2ce7 release26-maint +79214 7598517b121807fab050045759e5fe70c0894276 release26-maint +79215 64a02b133e723a94669840837542e2669253466b release31-maint +79216 9eabba6ded0962b1a8e1e9532421d436a5bf205e release26-maint +79217 45d2284cc063de5c93dd433bd5c27592e37187ff release26-maint +79218 767811385fa6fdf786d6efdfafa75fb2dd764102 legacy-trunk +79219 db961ba37cfe44469c68e522fffbe951efa6b23c legacy-trunk +79220 ef1f388f483fb850016a6003dcf10aab7fc9e07c release26-maint +79221 c694618dab543c2f870c1a260161e1d17020e0a0 py3k +79222 c92ca8ba1d9750f6597072a8f59d1abe6b7cd672 release31-maint +79223 d1398ff01a074b4c01947876a66dc098f2843ffe release26-maint +79224 ac2314b5f962882556926f5e9179d71b16e60514 release26-maint +79225 53dbd896c6c692f424c16522f0ab998424533427 release26-maint +79226 1bf48a5ddead536335419ae15fbcd2fd8f16be9f legacy-trunk +79227 f96c8293dd7f88d87be823f04396e326f3b579af release26-maint +79228 db94aedeb0e04aa11be4f1d5617d1611f8bfe576 legacy-trunk +79229 9f618750064eecdaed86a58d9dfe1e3a8aa75d95 release26-maint +79230 0d1cdd14c9fa19618bea5f6cdad2799aa9798fb3 legacy-trunk +79231 a0b6f28711e5ee83e4aa3a3a56de5e675594ac6d release26-maint +79232 0c344827e048f269372fe623b0d45e9bd9651256 legacy-trunk +79233 c7a6154460fbda9edb7e9a77083c0859f61a29ce legacy-trunk +79234 92f2561741541a4181b0cd0cba3c4af82a7211b0 release31-maint +79235 651a8e5c460fa9d20b83dea30e41a8d3eb363111 legacy-trunk +79236 c073f3c3276ef3df4faab8bc93cfb891ffa9bc02 release31-maint +79237 dbad1c0668c9f8cfd834c8f391b2b662f2d93949 legacy-trunk +79238 7e3b490877cecdba6878458b6be4072aad6aede0 release31-maint +79239 ec6a995ecfbf824b72bf61a1ed1ece944c50615a py3k +79240 9714f8a77b160fb61ea369dd50f243c7e3d6a7d9 release31-maint +79241 bac8a04270fcf163aab204c924de84368277c8b7 release31-maint +79242 48f40a1785caaf2f3aea47e85da547c1fbdb8956 py3k +79243 41b225067f4d1287653020cdfca3ab5fb2a54a07 py3k +79244 d0bdd09856374866ade550d8e949485c56c131cf py3k +79245 3833cf33ca617497125ea9ef2f616c9ca568d208 py3k +79246 4293c33668df7d626e34f6b08860c38fdcfb501b release31-maint +79247 c2d2e26bcf7fd25fe91a43f1cb8783425bf0002a release31-maint +79248 67f3f7e5366bc7e3b9c156b1fa7d39a470140b86 release26-maint +79249 a366d631a629a4aca607ff43a1a954d6f3accbc2 release31-maint +79250 e16a27b552a6e344e5c4034d31896bd7bdcee073 release31-maint +79251 fbacf972fa44e6956a94efa5ca2e232e57f410ba py3k +79252 7e6d7151fde874ca6d1b3c0312ef89ce50e634f9 py3k +79253 2d2f23872d90a10030ccbde5fd0ebd0fdcc171bf py3k +79255 c53f6a3d2d3b0be417c3a55e9e739114aab3c867 py3k +79256 13a448012a84e7d31e281ade0f950c5cce12f9de py3k +79257 826d054690cb8da6a583c8bad555eb77a49a7409 py3k +79258 d9b8f273ab8da6d160c829f8a83a0d0206a12eec py3k +79259 90217a86642d07bae02659ab3d217abe996c323e py3k +79260 7f816f6b5d0b0940741710c6a0edbf3e4a189541 py3k +79261 5c092d4b499cf278cfed3566caf4958ffc5660d5 release31-maint +79262 81dc02298614ba16d521ebff1b52eef45987ff2e py3k +79263 2858cae540e411b820174b994898fda15e125790 legacy-trunk +79264 f90973962eaf1c41c44ec4a77eff4dd5c0552399 py3k +79265 84cc13a144ffbd5228a5060661d2a1afad9f9855 legacy-trunk +79266 b4d8fa4d0049c3ad603c7f6148888367a8398f2d legacy-trunk +79267 657d02a503fa5d563f06a1a864ac91aaf08d7737 py3k +79268 eb0ff713a5e9c14ec897e0b6dae271c16b437bd7 legacy-trunk +79269 37c0e28d1ad4efe310004d3e9c3d0abd142d34fb py3k +79270 0161964649c38a64da607927ef38e300e2ffaa42 legacy-trunk +79271 229f252bce7736e6647c3865623e5609881634ce py3k +79272 106bee3f1fe51636e11a6c6093e85f2d2e7fc7fa release31-maint +79273 8c3b120f25962dec0a6d6e93a1146c16129f1994 py3k +79274 3dc6882a727d73a66d9e4d62eba6bb8770d2b678 legacy-trunk +79275 76981ee50b482feb37dc83f969853070221b1531 py3k +79276 2d6178480cc7126a7ecc4a267b7c62a3e4d3159f py3k +79277 36e9f38e8a3c2eef2ef26acc3e457b20ce85a80e release31-maint +79278 52cf7e65dad14bab261c8008393e9e1e4802ddb2 legacy-trunk +79279 5b3a601ed205b5b403fc35218099a381ddcaf2e0 legacy-trunk +79280 2b61eed28fae4e91d0b9a7965e618162741b43dd legacy-trunk +79281 7ad5623f41321db45b5537d502fba242236db68b py3k +79282 84405c22e4c7ffd989155d8f68fb031eebb53ca3 release31-maint +79283 6151d09ce039493113dcf9ed1ec0910f97ce8ddb release26-maint +79284 15de5390707da44694013165794bf93dfaab7542 legacy-trunk +79285 96a241d4a0ab171261951f40738ef15385ffc08d legacy-trunk +79286 e2a9693b555ed68512c5745f3fbdd6aef189d27b legacy-trunk +79287 5f5d4736de74ad6dfe21e6a124650e2d90d82bfb py3k +79288 224b70d3d1d44e5600a8052e86030e45010620fa legacy-trunk +79289 c937521ed7092a81f72df2e8efce2b4f44037428 py3k +79290 9fbe2370dc0217a8d38c09972f69b77e74f98467 release31-maint +79291 7f435c385da25c4f5cc89c33b1748fb3b5bdefbd release26-maint +79292 01b57515f19568407ba42ed8212bedc9ea53a269 legacy-trunk +79293 806a8cafc9977af7f5b6763c5eec328a411c8e38 legacy-trunk +79294 6df799a2c24e4a246e2f8736ea3d22a45bd81c8c legacy-trunk +79295 cfc57702af7fd95b9a259c63c74515e13b523af1 legacy-trunk +79296 767b0831659e027a69c6645a5150b0385bf11b1f legacy-trunk +79297 f0014554166f93c3bd7697730afd2d589dd686e6 legacy-trunk +79298 b7872b0e8ab241e379dd49577668fe160318aef6 py3k +79299 73caa361f9cde14bc2a811538c9666573b3cc424 legacy-trunk +79300 e3fdfdb1a8ff8fc6ad628f0e9842c889a9669dbc release26-maint +79301 2e0d58adadbe0eb438a6d5b1bf110f0fd7cf040e py3k +79302 1dc18412a7ee5f037dd1b0befe554a4ba17ca9de release31-maint +79303 3c4dfe86ec2b64824aebb15dd724cf73ffa0d20b py3k-jit +79306 0a123cded2c973b7b1fa9a1ff8f52bad31e6a277 legacy-trunk +79307 80beec8fb7403f2069b20ca209b634696e4b54d4 legacy-trunk +79308 5b679c249e3c1cd670ebd550e7711a5869177a81 release26-maint +79310 477d36e5d91395e13d430b68d83e8547807a0ff1 legacy-trunk +79311 8f016a801642f9f93e82ccae707e3bbcca635ec6 legacy-trunk +79312 e00dd07056aaf3972dac7cf2bdf286d02e7e7ec1 release26-maint +79314 0f42f34c16e82b10c333cddb2e80677985fc6370 legacy-trunk +79315 65ff526e05ebbd5524fda69ad42ba0276e4b0ccb py3k +79316 cd9848cf1847adb1ccb98512c56208ff90f843c7 legacy-trunk +79317 3244efb6d88f88aaf1bdf6d16ee8cb24eed7c911 py3k +79318 5435880713a783fa5a66a3f12e4ad887e4ebf167 release31-maint +79319 1781695886dce887aa70d742e74ca194c33a3f5b py3k +79320 684cd7381535a5a2091a8c4695dd207b2c5bd70b legacy-trunk +79321 8e99b6000f0dfe33d1d9e5232b8abd9a9f227a26 py3k +79322 a9db51cf1fbc4dedd36fadf96572dd31d6a88864 release26-maint +79323 f428f66f7e9bb66d09083ccecb71f07798a99100 release31-maint +79325 12ee46435d0171fa090b8751f0973a2d2f7d3e3f legacy-trunk +79326 fb3da56d548f0d2882a307d443f8e147bfd70a1c release26-maint +79327 92c9324625b6a5a001c0c863e6a829f3782df222 py3k +79328 8e76e46c19947578906d7f44f67411a7f94d8939 release31-maint +79329 b01eff4effd7efa42583d4e003e33f82a9efe8e2 legacy-trunk +79330 fa5e299ce091c676f0cd2aa76a4944aff60e7033 release26-maint +79331 a702648c8f410493c2af406d01139b2e2dc1bdf8 release26-maint +79332 3ba237a326c27b9cbecc304dffc54758330ebd61 release31-maint +79333 56dd5d5070a5a4541c7e59eadd2fa5adb38981ac py3k +79334 b0eb9f6f2d10b1f3295b68e3441ea6bc32042a7d legacy-trunk +79335 f20e8b91f6e8da992b1f1a77cf5743e7474e73b9 release31-maint +79336 102623d6843fc491d1dfee16f27f1991f7e89192 release26-maint +79337 6e1dad853007a2a34ebbf2ef50e23f876ad1d242 release26-maint +79338 66595d484ea8d5fc7764061d8283f05a10037fb8 release26-maint +79339 4986cf0a91b8e9cbcf4fee6b495271cddd03ac5a release26-maint +79340 e9b958e8391bd2e3484a8acb171a9b6b24501344 release26-maint +79341 1556e697b2d70b1a3604e262b1381d9b2f9938d4 release26-maint +79342 f84f83963a78ad6434386b1695bc44b513499999 release26-maint +79343 27f97244698eda060925394ceee13c55d3da57ae release26-maint +79344 b214ca8eb6bd0abe5f11e03e5f5f5e154e862b69 legacy-trunk +79345 52d845831ae864e00d52d2b905ee2537b0ff1728 release26-maint +79346 289006dc46ee24b4662ba14af9f189e723c00eb7 legacy-trunk +79347 81b7509240916edc627e7123d1d6f5538102710b release31-maint +79348 988e0457e313396cd51458a0bc4dfda5b29655e5 release26-maint +79349 7201181360fdf27d0d15c4354b75524a24cfb76c legacy-trunk +79350 37da9bc461742fc4e4068d8673acf9cfb629559c legacy-trunk +79351 cc8e36962bace6c539f225c11085e831965403b6 legacy-trunk +79352 976284849e9d81410ce064b19ee1fd5bfcbd6e47 py3k +79353 d60bfb1b9c052e73e84037e1a8bfbd9a181d2363 release26-maint +79354 e91a086b41783e7374cd5859bb986d9d849bb7a4 release31-maint +79355 5aacc7680d3f72bff2c6255e7e5c9bd121d869d7 py3k-jit +79356 44696482ac42abce6b8e8a4945a9e6d870feb844 py3k-jit +79358 1e741eb30b1704a3536d86718a4c166fd4f466c2 legacy-trunk +79359 657e7d21305289cc401bde2e9bcd744aecfac32b release26-maint +79360 505cff125a03c6997a8587208fef9b0075d16f34 py3k +79361 0316e6a28a5535871b3ab7c5359fc6be7ad30fdb release31-maint +79362 de84a6d0e6970c0e890ccd579ab6eb1f748f12a2 legacy-trunk +79363 4bc8f9653e8e2bd73a70d19aaf922e905a40290c release26-maint +79364 5993da6d24095151a316124fca774d5b5e725651 py3k +79365 1957c28942925bb8deffbaeba0427656bd6649ef release31-maint +79366 03eab998b07a15a2678da4d087a8661fe12530ad py3k-jit +79367 62fb086a397582a206ffe0705a58bdab0c707b26 py3k-jit +79368 cd0ca56b7880e8c45fa49667051dd6dc79c9558e py3k +79369 23da56607b33faef902e2a94233c3dbf4b072dfc release31-maint +79373 d8f855333fb48b986523119bded47b4943c6e716 legacy-trunk +79374 d2deaa70fadb45cc401749cdf694b132ad21cb6f legacy-trunk +79375 0abfa2607f54eb8657e32df5329415fd8e2d6fc3 py3k +79376 934cbe73680372ce2855a298f724e1822478ecee legacy-trunk +79378 532d71420f4615585244aedbd93bc557b090c5ff legacy-trunk +79379 229ea8ccc553075c6447fac269ddb366e17064bd legacy-trunk +79380 83fa4f89956882f5eb07ca65268970df4b8201a6 py3k +79381 179c647386330b18bd236675a9ed20bfa13976b5 legacy-trunk +79382 62385d9b7da0438c8266fa25e0904471bc1277f4 legacy-trunk +79384 7430fa7eea8cb9f900413e95465d01b525fad1d1 legacy-trunk +79385 4ceb5dc35cc65a64fa94bca1c73e645f4a5958a3 legacy-trunk +79386 cac661db7795f19c6bf0b7f1fee77e958d6e8c99 py3k +79387 496d76360763945b6e12c981b9c5404d31f54ae6 legacy-trunk +79388 2e0813d6738dbf4cae6ab9dc3ea6365d255bb7a3 legacy-trunk +79389 7251e737a5d8cabd6dbf724a14b9f37a1c73885e py3k +79390 9caaafd599d65343b14f03eb3fe15b04c13988dd release26-maint +79391 c3c34f847998a006657760d076fc8be82688e7e7 release31-maint +79392 4b8decb4572cd702e8b7802582933991812173c4 legacy-trunk +79393 e8b08d773e785f872d25ccc086d4d1a480cd15d1 py3k +79394 030962092373e954295e90c19addb7855c0e9678 release31-maint +79395 248a7ade444fbef54f15b8c45865c6713005b01c legacy-trunk +79396 ed9a3dbc312e9b0a52b6f82e720cdad53100cf79 release26-maint +79397 d11fbc796499a338d0402b889a904da954138c39 legacy-trunk +79398 d6893c70df6a47d181ac57c3b686e5584dd5bc00 py3k +79399 eb1b6468e97746f63097f2f806a3c9e99be3cd6c release31-maint +79400 5d54692b6dc3e3e3e9d4c0968cf22f508371163f py3k +79401 09a7a19e7cb9b0938f02e097ef57c4173507e81b py3k +79402 3b4e9fa9c1e8dc1a31a44c89e75686cc7237119d legacy-trunk +79403 5f9a7064d62aa0059360301453d8912358650ab0 legacy-trunk +79404 4ef65e2396ae9a5eeac44ed74255edb9767da09f release31-maint +79405 4f841df8c9766f935e99374c3b4b80e7067e16d4 release26-maint +79406 e5dd9f986440c882fbf4c0e99e717a58ef2d8fcf legacy-trunk +79407 0dfd62076ded41e209f58341a64076f55e147e29 py3k +79408 e1a84f221537d3b3675382f97ce1daeb4255c9b2 legacy-trunk +79409 1aa684672ce6fa66b44399504381f9e32652150f py3k +79410 e18d38201280577e142f48137023e99d377ef2bc legacy-trunk +79411 c99c379ced2fc05f29727ba26f8a028fcdfe2a1a py3k +79412 d6ca9cd1b411e6511011a5d91e7382bb7e1a90c8 legacy-trunk +79413 7329312fcbd7a524dab03bbabbb56fdb970e78a8 legacy-trunk +79414 fcc10833a1c9b5a5f0eda93ca99ec7cfd8518614 py3k +79420 e2770bf32dcf68397d2c5cbfd6a569c179906a6f py3k +79421 938284cda15bf58122203eedf7d9017d47e24233 release31-maint +79424 14432724d0fe7faaba09923c7ce22af931e04a0c branch_libffi-3_0_10-win +79425 e6b9ef49e33f9f3b11f64779d7e68d4893895719 legacy-trunk +79426 e0b8eca2252935969e2db47ef10cf3910cd9debe legacy-trunk +79427 38e410050dc7c15d5e04b0ff28df71d543cef263 legacy-trunk +79428 16a7d32605bb832da0b105248d4e7b3292d4e5b5 legacy-trunk +79429 1a0e217063b75428c7ad20d0188698db05f14001 py3k +79430 8701581fb455063737c9b10eaa635c4431477a9a legacy-trunk +79431 188f860759c1404883960d3c7ff9a3aa11acc49f release26-maint +79432 d8187ed9432560e373c4ac9252d700ef033a2c61 legacy-trunk +79433 b90722d3aefa0bebed66fd6b7e5c4dd4bd977280 legacy-trunk +79434 82637e668ca1ccb6b41c0a02e1d40446f636567d py3k +79435 030d6bf1d9956f770f981cd2fbc6d7652c761c4b release31-maint +79436 95a78a2d700d80cb807394368a37a8ed9ad54d2f legacy-trunk +79437 9421f67b6c2a1460b5aab3a0403e6944d5f2d572 legacy-trunk +79442 20baf63b094cd0bd6729e41606be3c1ba79be8c5 legacy-trunk +79443 2ecb8e9960fc3a871b754226608c032f76420329 legacy-trunk +79448 c8ecabbe801699904b11502776a2414949185bb3 legacy-trunk +79449 e407eba8e38d449f8183293be2952ad2bdff63fd py3k +79450 acb1dc668a97bb8e4309f6b19c3f5e91ded06292 legacy-trunk +79451 4bbafdf4d5c1bebb2a2063c10c13fdc804480e88 release26-maint +79452 660b9f24edac8e3715949e76469e8d56c370e32e py3k +79453 526bb082c05525c93fff11b12998ded453b2b0ad release31-maint +79454 564169151510cfe91fbe0b87db2172d3714197b1 py3k +79455 e5fe2f625983cc6f3f31bdc98f31bacb162647b4 legacy-trunk +79456 0f6a0b1db4e2b1ec0b7c9495af1eea1632cfc932 py3k +79457 b227db9a0029744bbcfb12208eb078670f911100 legacy-trunk +79458 8c5c5e86fb227a627b68e0c077839ee1169da804 py3k +79459 0e7ae53b4e79024ccae6a33daac97b269157b795 release26-maint +79460 e811aa094f1942957e48db689f2718b223a9f976 release31-maint +79461 9170aa944f293345bd6f8da76c7aa019ca4deb5e py3k +79462 e1183a137d8ca8f4d7b15a751d5d681a41f4cde4 py3k +79463 ab307f7defa1ec79d3b6a6d997a56583e203812b py3k +79464 22946d00eeccef7e46c74deec3e6588aa6429087 legacy-trunk +79465 f96ad800712ee61f4aa1290c5963812cb6e91dc4 py3k +79466 86b71f40e8aae2704d08f5e6e7cb72cab0f4d9bc py3k +79467 71a45ecc4dc911ed03ba276b320f3dd7a3f0e2b1 py3k +79468 309e2d3e8dcc21ae70d348f5b050fe8f6d9b6ac2 legacy-trunk +79469 8e6a16157faf1bdf544b4567548e2eda3d9efa9d py3k +79471 a2aa6ddfe8e2958aca6e62304f58014a3a922f33 legacy-trunk +79472 db5a3a277c0b580ebf51fc4a319201d06d0c59a1 py3k +79473 bb2ca1b63321a78b413347ad8f4cabe0e4ce94a0 py3k +79474 40f787b151ac6c0535a7356e1fd26451e6322636 py3k +79475 2b6321915e92b61a6c869e797408d56ead9d63a2 release26-maint +79476 0bc04525af638bd004b110455cfd532d633bd144 release26-maint +79477 60009632ed119f7bdf39985e672bd5ca59d6ec80 release31-maint +79478 8ee2bf821f626713f98bb49d7bb5d1044391e8ad release31-maint +79479 e63d4678fca73f24d42e1472fbb6eaa56918ed97 release31-maint +79480 bb8bd3358bca02ce5a701bbb6a7b6481ca02e82a legacy-trunk +79481 bea75ff651146daad002d41d878976756e52bdbc legacy-trunk +79482 d49352426de51333d37e6651418cdfb30009ea6c release26-maint +79483 213a0ae2db65b2e25199e0105b42e080819bc761 legacy-trunk +79484 2a310a448a0a7e20145c2bcd891db8687b30aa2c py3k +79485 51b2af9c469eb4a9536cd09db0b281d1594aba09 release31-maint +79486 2d06c6c7e7327debdcf6face1fdd095ceed88fde release30-maint +79490 bbb340501f29fc0f336604137f1539a3f016d32f release31-maint +79491 9b9fd299072d8fcc384675d89bf854ba5a2a66a7 branch_libffi-3_0_10-win +79492 c3c82d8040d6f4ef663bbd90a5e65e88da11efce release26-maint +79493 04cc075bddf5bb9963ef520542af7797c2fb517c legacy-trunk +79494 66e757d8ea934ceec1d6b7079594e60f341deda5 legacy-trunk +79495 7739aeefdbc0144c69db976f92a93e1039a796a2 release26-maint +79496 c96d278677af3cd08d8bdc0c48d662cfcdc803e3 legacy-trunk +79497 3329c05e6e319379b88ac49091e405d77c15720c legacy-trunk +79498 e4e4bbd39a213cce8cbed79a74a9b2e3074acc30 legacy-trunk +79499 40a2e7ac8a47e22a0156375e9a6b6258b978bec7 py3k +79500 a14a205ab1fb84901d5be6e1fcd6511a4cd8dc62 legacy-trunk +79501 bc6814c34d5f20e3e95a490e5da4a6f3cae7d5f5 py3k +79502 f69769ab0eb8166735e55d636d69189c47f932f2 legacy-trunk +79503 5e0ff65284fa2089b04e36c61b21a223736c21e9 py3k +79504 1d0027d34a51e21c992284eb31546b75d91bffc9 legacy-trunk +79505 1361877585f2c491ebb0e07e6a0540c92c165a63 py3k +79506 bf3c48f2417c44713d4348098c0ae1a78861a698 py3k +79507 ddd550951b83fb170b01de7f88f1b733d1a85a62 py3k +79508 4dd6eb6be82fd52f0be768fd36e78521e84c1a8b py3k +79509 63269c4185c52e69d657f2cb0ac45cf1c401330f legacy-trunk +79510 0c02584c4e534fe7f385c181f46300f2d09635cf release31-maint +79511 a60954eb518b9849a9273244802db21e12335c52 legacy-trunk +79512 9651c84c520d9e8ba5dc93345e5efea4e6c9e581 release31-maint +79514 60f9124fdeac051089ded80e1e8184e29ba2ef95 release26-maint +79515 419ff7024478389e0ff5086ebe4f5a46ac1ec959 legacy-trunk +79518 34d822196d8bd0d6abd08618b95d21257d206056 legacy-trunk +79519 ef6ebc06a786dc00a3891f7941fedf078d239256 release26-maint +79520 ffe7c791b5b94878f4aae3e0d77179b4e17206c9 py3k +79521 1323212da154004afe72873ca6f046fa5a5ae94c release31-maint +79522 5e9eadc76e87ef7be6d2aac41eacc56ffc45fc07 legacy-trunk +79523 cad126428f48d78b97da771fab5d4b762d89c88a release26-maint +79524 57d8d7f317f501b4155a99452121a328cdea956a release26-maint +79525 fd5c0ea2870bac4b0d1c9299f02cbe75c4ad07d7 py3k +79526 e4f969012e683cae2ed89182c6e513b81f4b82b9 release31-maint +79527 d57cf1aa2dd4d00c3c370ae3dc597a8d006324c5 release31-maint +79528 99e523132aea43d78a764e104c91c6077941b450 legacy-trunk +79529 87bc0f10870213910729e51b33094b2aa09b0294 legacy-trunk +79530 a2e627827bf3509ab4a6781bffb6e3e852730110 release26-maint +79531 01e8b13fa99a565dc5a9ee259f01238ce6461672 py3k +79532 ecb9a6609bb1c54509bb8c8f1f77a38622f178f5 release31-maint +79533 5920f9a5e22d8d33c11244b815fe2228b530f926 legacy-trunk +79534 832022f63bcbd6755408818d8a61b6fa864b33a2 legacy-trunk +79535 7b8ba019cd15b520987a38159e3dbeada4ce8c02 legacy-trunk +79536 4fcaad3f669b23f6be3a70619858ca7e8fbe5cd7 py3k +79537 570eae1481eb6011fc09fc2bc37ec44ecac2a8a3 legacy-trunk +79538 c36f23da88c1aa543fd6c46ace6a9629be3e5b2d py3k +79539 3748bca4d8698ab07c760841241cb17d0d02b78c legacy-trunk +79540 25a7ce02306cdf1d3c12b9ff287995b96edbea4d legacy-trunk +79541 d00f2ea25d20a41f246d6680f5f31c7c7d323bef legacy-trunk +79542 7b67c342917cce691047a7a500bc01cb87bedf42 legacy-trunk +79543 13a8112eca52fc3cf4c8de6b9c319ce9e81213aa legacy-trunk +79544 a4dad218c6e345685d75a72a41a97c3b255cb47b release26-maint +79545 1e2c9fea7cbe010a6ddbebf9c3163df1ce4ac386 py3k +79546 5cc82cce45215fc7e7f8a31dfc92f3a0d04eab67 release31-maint +79547 c7965bd5d2004e2c7f3329dc284b6c5480132364 release26-maint +79548 6de3de3ab71f7536a8a108fd65aa419d07c52be4 legacy-trunk +79549 882d681d50a004eec446a8274073782411d31a57 legacy-trunk +79550 54b0a6f75ed579506d6ba0c851c9d806a391a34c py3k-cdecimal +79551 78e2097792beead1c82c9499e13909ea9251b2fd py3k-cdecimal +79552 fd8fef6afefd8cdbfd4ac25522c885a700858911 py3k-cdecimal +79553 e95f8755ff1e3f6634f2be7c2a55c19e3b2e7ad0 py3k +79554 b4deaeab96e78d3dce2356393d5797eb91b6d5df release31-maint +79555 6df6c19fbae358c45818f33e830a62eb33213f23 legacy-trunk +79556 04e775b33e9e2a37ec5b23554a5d314988a7b713 py3k +79557 96201f488cc3ce284fe00bf9ab2f0d373ded2f51 legacy-trunk +79558 a404e3702f79f28c02c396ec56ae613fbb8f9f04 legacy-trunk +79560 c8a601e744cf68830dd6430f6237bcaa6e571d16 release26-maint +79563 f171712880c8ebd2f4506381653ea9685be62925 py3k-jit +79564 6d3415c15b8bf9208bc48084e37419c9a0e7af00 release31-maint +79565 1bea5404e087c0e5fb5380701ba94b9ca8fbdbf1 py3k +79568 512b80250789b7728c15eb0183ff27ea5b714908 release26-maint +79569 2478c38feff749f8e6af5836d6a7b47a675f37a4 legacy-trunk +79570 5bad818d14f2873f3939fa7b36ff68af15d3bd25 release31-maint +79571 3f4482526f55a268787a01d278b35f4869cdcc7f py3k +79572 38806df05d09d6def8c647784b8a934938489b14 release31-maint +79573 4d9d9760c88bef6d7023377e4c24dd0cd674886e py3k +79574 415c4bb45fe68774f4b08d586e878715f4394df5 release26-maint +79575 b6473154a70bc3315ee5a73ba76e0e4af42418d2 legacy-trunk +79576 eab361617f6a7d0419da48c913162cc32201f54b legacy-trunk +79577 bac4b289f79aad5306c84666813e67623f806277 legacy-trunk +79578 eb9fda90da6ed84d547cb9c59c631d67e32724b1 legacy-trunk +79579 f38919bb26cc7119fd5a89dc27c3d65f6898dfcf legacy-trunk +79580 7a4a0c69e3a5f23ff27bfd723cb78a11bf337187 legacy-trunk +79581 b57da4a4a3ed95ebd1eaa6686ed4e3a92e332d09 py3k +79582 e81ca88d478cc5583219e3fa63b29353d3e6b3b5 legacy-trunk +79583 1306033d8ad2ab719ac839c14c822f6935065ac7 legacy-trunk +79585 e35feb995bd96c450b2a0d3ccc2c40c54eefb229 legacy-trunk +79586 c5b20645e93350c742b8875eefddbe0c27faf1ca legacy-trunk +79587 f77556febec820cf203561cebf3d93a7ed2099d7 legacy-trunk +79588 ae7cf578de5adde00396f5d5cb3969057aec182c legacy-trunk +79589 17f08d65cc0d81dd4742d5bf9d6bf7e55fb4d700 legacy-trunk +79590 57f4c99082df56097163ddfb07a7c0eb9a74805c legacy-trunk +79591 48fd69c2a2b494f2b10b09d85c3c67b61e031500 py3k +79592 1df34fa491bda04b022b56c2faca5d626625b153 legacy-trunk +79593 d77e38460e3ca7d6b2c8deb90e2bd89f9472347d py3k +79594 4b55cea5506776fad88ced3801530075c3bc12b0 py3k +79595 5149d484d56ac81db75dd1f358ea5495588fb8e5 py3k-cdecimal +79596 20497d85e0112ec3e4c81feb154f3b32901fe71e legacy-trunk +79597 3f1d6ed480dd81b0433b471bd4a70a144fb945a3 py3k-cdecimal +79598 e8052a60bbb7b6ef32f0b704ea7d42647d5f90b5 release26-maint +79599 cfba59c383415c292a56410341cb57146deeab1f py3k-cdecimal +79600 870ff6220a0b99b0420c3ce1b66fe32997d38b30 py3k +79601 2778583be21d62ceea84f3e0885b5d750d7c21aa release26-maint +79602 d1101aa984c075bc7dc6ee29dc707aeab921b072 py3k +79603 4ac05d1f60c18068b648461934ea0139647be892 legacy-trunk +79604 66db03a707679c69a7e7006cc4235f7bb2d8899d py3k +79605 6992467bb8b59c6310d4b51889a5ad609038418c py3k +79606 43a837d2728a1341f046f0191faf78e472d7b584 legacy-trunk +79607 1ff8dd67be8227a7700f882d1c15bb25a117c565 legacy-trunk +79608 2f5dc2fa0e56a25101b30afdfcf4c0538368b3da legacy-trunk +79609 cca4b72f450b6478672a88ded99ea32148b8f6f6 legacy-trunk +79610 255a401c19b05aae6a62fa5029212923e2e777eb py3k +79611 efebb7bcae8b164b0251053c929b20d7bb5545aa py3k +79612 b4796efca7164fffcc2ca2184081375b03b7bd92 release26-maint +79613 a1dabf4e8866561bb5757f3abc64ff08c886eb56 py3k +79614 7dc8b88bb15a41e4b66eb8e9e23f386a75b04628 release26-maint +79615 8d7317c924cef824269eedd21e5683834115809e py3k +79616 eeea34014c802686d56be1824901b0b84e6d2953 legacy-trunk +79617 278e7ecc0f77ef0de623a13b333e466d06642642 legacy-trunk +79618 9d50bcd3f0c9ca85b782e348e4d7c9685eec66f0 legacy-trunk +79619 7c9238085a5ce0a26e210a3552396b0d51de09ef release26-maint +79620 377b26d876e0dfe7ae591ec6ed6de3f0efe4acd2 legacy-trunk +79621 53afcdc9ae0abc6910c35c25102f8bc175ce8f37 py3k +79622 f76c3dec858b7b9c851037fed87aa1d3bb99f5ae legacy-trunk +79623 70b7e4a7f7ce20b2e77113363b79e9caa75350f7 legacy-trunk +79624 aab64283d00a1fe6e443994b2c391047b9f41d92 legacy-trunk +79625 84ecb35a06bddf6ca186c692a55878e367ae3efb legacy-trunk +79626 1b5d5e74f738f41a4748dbcd71763a63716f0007 legacy-trunk +79627 f0bb10ce05c7726670c513ece44015f0a2431897 release26-maint +79628 aea319ea26a8e90323e3c517832eade613a4f77e py3k +79629 ffa0aa70c74683f450b8fc69dde4f3b1cb3a1ea9 legacy-trunk +79630 765943c1115b95bfda3c828d5b0de1d698a0f051 legacy-trunk +79631 c34ddca36786c1c4d7185ee31b9ec759a9690549 py3k +79632 5462c5a91f8dcb9dc8f43f51e288b4bd3b1670db legacy-trunk +79633 0ab89e8bdedc5766de217ca247e8630e200a652a legacy-trunk +79634 a7e9f8e3553f7ca569731c0a4762cd6a5d0dc1f3 legacy-trunk +79635 d4799ee64c23b1c584b224279dde1f37d0f77e0d legacy-trunk +79636 4877c1159153f5efd99dccc5ab8d2f77b3e4a48d legacy-trunk +79637 4ed04a39c0a91b93d56af6ebf511f34e0d759062 legacy-trunk +79638 5496503b8b1abd72f03d48658f0622c9d24b6c8a release31-maint +79639 86f6997660162cbdda0192c3ec097908724a69f1 legacy-trunk +79640 d3858958dff53e62435221ab19587d530e982e31 legacy-trunk +79641 b529a142cc49e6f310ab7462fd2ff2261b5b4c40 py3k +79642 d334a7a5684498ce7ee959a4800b60301981263f legacy-trunk +79643 ebceb77967de86348a12fae003946de2990c9165 legacy-trunk +79644 6d4835a81b632ad020f6b0b8d48b61addbfd03ae legacy-trunk +79645 fa641d60546884fd9c062119fab7daeb74c00d72 py3k +79646 66b60a6e819846f6be0ea679159fa0bd6c5d76d2 release26-maint +79647 a88e0f6ab945a1669313a4a20ab85a13c6e995ec release31-maint +79648 89e87ba8ab4e0b0f53164ddb21b3df1d4d811cfb legacy-trunk +79649 6fe5dc175c264df2ab1225387abd90efe5a9b892 legacy-trunk +79650 fdd0137432f853739f415f7850dbcb9c5f8296e9 legacy-trunk +79651 5ebca62289036b37bcb7fd4e08b4897da1215467 legacy-trunk +79652 50b2c0fe5e27b39c234c19f2e33f9e2a38702627 legacy-trunk +79653 154dcfa32b201aecdab76f5fcec3c8d8ea62cb3c release26-maint +79654 a707ca260341b5f6f280a7254ea6a88418d6fe5c legacy-trunk +79655 629e7b3c8b2d976dc70f64e3c7ae1b975424251a release26-maint +79656 ea4c6c06895009d0e03f973a0270626f83bcecae py3k +79657 658b39e66defed6f6def7c6e3321e22e221cc12d py3k +79658 d5f2c7425b4a947ee851bfd54c292bf9c8ec6dd2 release31-maint +79659 44d32a6c9e357a33ac62639a799301793450d045 release31-maint +79660 da7b0006a7997e77b5d78ff3c83ec8e5668e9bed legacy-trunk +79661 ad94af9129cca3ddde62688258443397da22e12b legacy-trunk +79662 7ca6a3431f9e27ca114ff7c43b30c4ec18f3f859 py3k +79663 e47a6ff5b520f0d1e53d80c4d3eea095e0b7382b release26-maint +79664 2811be95c8c8448aeec99b6e86cd26fec5078dbc release26-maint +79665 c54dd3eeed56b3f2cee0eda426f3bddf178711b4 py3k +79666 8c8bdc11e9b9929c55117cb8891cd5dda1ee18b7 release31-maint +79667 1d484c4dbf604cdbd71d8d7cf4d0619e7ffb437a release26-maint +79668 5078220bd1ea6320bc279fe1597e971df3829c90 py3k +79669 334d4562c875a9021579d4ecae567b39061f6d16 release31-maint +79670 cf80377184ffaa6864431e3540c9ceb6b1eaa031 py3k +79671 c2b217fe4ed45481eb692eceba8922bfdde8b506 release31-maint +79672 c0b6299b93eebe866bddba8774d2bcf8ebefcb72 release26-maint +79673 b1c00c7d3c855d51726476dfa56f04b2868a6f1d legacy-trunk +79674 0540a96286988a4daa73412b9d377701687bafd1 legacy-trunk +79675 cf34fc1e8413e17c97fbe9d303d45b39f348acc3 release26-maint +79676 b1941cfffa5c85161fa22030b9e012d3df5043af py3k +79677 d31e269aacdebd08249370585e8bbdcf83eb25e0 release31-maint +79678 a66545db3b0698a9917754b6a3fa5ffa54001c01 legacy-trunk +79679 eb049c3c083fc82143643a02bf24122eb7787dd4 legacy-trunk +79680 27451a9676500d07467f87b9cb2a8a8fd9d87312 release26-maint +79681 53ee38e638bf90e983e8af9336ca7b6b554f07ee py3k +79682 3b1d0a3adfffae749dce288a1792ed97eef8cc8e release31-maint +79683 bd5121bf6996d0c3e9e15b77e1412f7141048305 py3k +79684 ba482f4887f7d6802c2e816717f19b3504e90f26 release31-maint +79685 a584f243180d52a6d6c22c103e72dd7733da7679 legacy-trunk +79686 7d272488b63c9a42f238eb771dd2f92635b7520c release26-maint +79687 580f2f5ba85f3651816813ec773698b2b5b7bb68 release31-maint +79688 9b24aa36c06f83e3bb41fd7f553ded6c3f743ab1 py3k +79689 d15235d2137c148581d29649f2f2792d94d95c07 py3k +79690 ea10cb61390aea20fbd968c035dc52f1508e4de2 release31-maint +79691 4a6e2013547068f0770b7bc2682bbd064b80b7c4 release31-maint +79692 c66995befe42421b56e90af347a4ed4159c749b0 release26-maint +79693 b62a682117e00f385290a5e4dacb85edfeea4958 legacy-trunk +79694 3527d6579ec290fd90d9b4fc47e6a72751fe45b2 py3k +79695 d5abd8dfd4f4baa0abfbc8e62de95314d5af9712 legacy-trunk +79696 06a46f95194ef14151cecc6561bd9a69493cbcf5 py3k +79697 8ab960b611a6f1b91bec88ab31b90fff28612432 legacy-trunk +79698 39efd3fc59efa7f08c089dd204184fb424052bf6 legacy-trunk +79699 87666376d8b050426aef953543588c7a8f43d4da legacy-trunk +79700 40bc8b1ca932989f7a1f77b2a2b1f7b576bdaf89 release26-maint +79701 3a0f525b59b59748c1402f443a108291fc0f0f98 py3k +79702 86bf38ea31236e3beae09069a875cb8020999c76 release31-maint +79703 aa121a39a95670e48626a0a77bd86dcaa47a4311 py3k +79704 da34d1f43cb0005fff9d8ed76a1d17a4f5571603 legacy-trunk +79705 7eb907c854b42ad9dbbb18256b8f4a4889fb4fd4 py3k +79706 c21bc80c83f62fdd1619e0117c5cc1b526f6dff3 legacy-trunk +79707 b2625acc2484e50eb60235bda45fe9a8754da02b legacy-trunk +79708 2e559c0ad8c3428ff26c2ff2eed72835271a586f py3k +79709 61990f763485930e793eb9cfc9d987268923d59e release26-maint +79710 e14613124cc142888407e709f6b23234df01cd7d legacy-trunk +79711 66158e4fd0227e405e6a2b9fb5d8cfd06940cadc legacy-trunk +79712 a184227cfb943a0c0d02520aaa09a895bcf7e337 legacy-trunk +79713 c73a658da6fac344032dc4282b499839c446794c legacy-trunk +79714 e29a2e03e739e6669edc6aa9dc6951b4d7ecfac1 legacy-trunk +79715 3f7864c1cf3f61543d4d17a785c258fc3cdde216 py3k +79716 345b6ab32d654f4664e8026ad064f03888819903 legacy-trunk +79717 82c2034b8095f84403491f9efca2fbe361b03072 legacy-trunk +79718 ee3425d1c688cfd815cc55c643f8f603a1fa02e4 legacy-trunk +79719 4d84e3fa333a21f89df747611ae4138134a9f6e8 legacy-trunk +79720 9b500a2c859d06fb67143dab12be8f49e2443a51 py3k +79721 c8f955003b2c1c5a376b3ce7193ece5e3121e605 py3k +79722 6a24defcc00b2cb9805a82f7d753d158da2ae0c2 legacy-trunk +79723 965ec6356d5d844420df046b6f65facca17c352b legacy-trunk +79724 81c2f592e80810a84661bf2b8619f3032622a390 py3k +79725 3c4c0a716a18a48fd53f0d42a90398eb4938b318 legacy-trunk +79726 0cfabed46669ce9d0a84a61ad4b1c9791b852760 py3k +79728 da939ab2bfe2777a80941f306ca7c598c2771ec4 py3k +79729 399210263e710c07a8f1c018f745a9757b1ee902 py3k +79730 eb4167672163c8e31e0413d238969e0d9a7e3d90 legacy-trunk +79731 0d567ce5ece4a431dfd1b5b4fb825ab6a27ce6c8 py3k +79732 395a27a44a9e4246d8fcbe475554d5418179b155 release31-maint +79733 d5862d12d92ab4d44ea9c30b60888fbfc1165cbf legacy-trunk +79734 f9c368fe1acf308e324abd70b7c878124bc77f14 release26-maint +79735 6777cfab5152e2cdffecbfc69ba92ffe6ddd904a legacy-trunk +79736 9ee97a4ab15c0c9b7cc951457f54f045f8a3dea7 release26-maint +79737 2da513b472cbe50de4f648b34361f8192b8320c5 py3k +79738 a8dde025a6f99f01f0b78a1defad1fe578b24cdd release31-maint +79739 0def28db77997eec340478e9a89f465ad41c103d py3k +79740 460f41bd0e34acee645c441bb7b5580beaeaaec7 legacy-trunk +79741 5715de2a4051051e2ae1872281731ba7b6d8c191 release26-maint +79742 58dc4f316ff646cdc3186f76bc0845d3304bd996 py3k +79743 81fe1d45ae77fa42c9310454deed942fe9cd2ea1 release31-maint +79744 5ca8e41504b6f9279a6d5e64b0d1bf20cd59020e legacy-trunk +79745 c399e93bf0e45dc2b71ab1f493470a0a358475fc legacy-trunk +79746 72409b23196733a343f7f66632fb78c308c60b70 py3k +79747 c1b87e13e9d3ff15c4e1fb522f15017fcb529e29 py3k-cdecimal +79750 1e6f268016e47394ae1ab5ab17972400664d547b legacy-trunk +79751 ec1a5412ff90deae3edfeb414fe81f12f1d936c6 legacy-trunk +79752 7ac3d88e35c210ff2e21ad3d43bd0bd2164d88eb py3k +79753 8e0641785507453f164d1291d69115d51176fd2a release26-maint +79754 dc63411a0104eba42bf6f29c4ecce265fea58ecf release31-maint +79755 5dda3f32a2ce2dd01fb6c3681991165bf0099ee0 legacy-trunk +79756 8aa296fa6d6c53a074a3b300bde2d50bf6c001a1 legacy-trunk +79757 45dd9bf361ec0315f1897b735d4f77c5544e648c py3k +79758 9307deeee412a223f14f583128240ffc538075b2 release26-maint +79759 f416f2c2c099e847537f5893d8ab72405d0adaa1 release31-maint +79760 b6c6f42cddde5df4dedaf5bdfc0f60bf25edd4bd legacy-trunk +79761 0225d29f0bd98e335013e16c14569d3d79ea6f91 legacy-trunk +79762 acc900dc184ba9b0c62f582f8f7cedca76e22ece legacy-trunk +79763 0ece98b853d51041d59bf0fa12c3f1cba838aff4 legacy-trunk +79764 a661c96b8d10ecf7b8b99d5d7c9e68f886d6ff5e py3k +79765 fb2d64a4d872c32c537e76c568925ec176d343b1 py3k +79766 b69dcf63502c4df242f99132fe6dde457812e43e release26-maint +79767 c04a6222cc7dd59df275b2c924b4b97f7f8dfe3e release31-maint +79768 a903bb35ef4f535750e072b790b9eaf4df8dc699 legacy-trunk +79769 c54cfe828b84a3cd0a105e1ae079392b46baf4ad legacy-trunk +79770 8004357d5bcc0372e52186fba2ecc4a29ce32bc6 py3k +79771 71779f4a2078294b58df27637618ae2e726a496d py3k +79772 33a02e4ac4c2f1e7e97bde451095a74e2b0a32b6 release26-maint +79773 893c74d547ee738062b66d5e3bf3237deaaede76 py3k +79774 1abf37db257d988dbf6036107b17c05134885bbc legacy-trunk +79775 23dbc8a3b97a99996a7fb0683d87965c8d4f0fc6 release26-maint +79776 60ca8983dd3b1e25ff343078c36b1b2a9baa3a2b release31-maint +79777 5352204c8e88c5bd1fe7a9ae0175aa65eabcfd2b legacy-trunk +79778 e6815e1b7502c6409e4fd7d0eae0237011e747a9 legacy-trunk +79779 1cc4d2db5cd6bdb3b46cfb4c0841d0021110fda6 legacy-trunk +79780 cfe5fa34db46664c4fe9830b145dbd311adba724 py3k +79781 c40fbfff6d7abc88d20a016eb2cb03a1594c8101 legacy-trunk +79782 7f69181b652c0a9bfb57f6d94f2df63215a68eef release26-maint +79783 02bd2f60ba5d8d52f3682206fe225c4d74d6ecb2 py3k +79784 273cda2b0053812baefd2235b2fe86a5fdf38230 release31-maint +79785 fdcbeb9f374c715e6fff1c83bac4cdab05456969 release31-maint +79786 97e95c9d26dabf214f8bc4d4783219fef9a5d6fb legacy-trunk +79787 e4bdc296fc8e427b057263c6a7d9ebb1f3fc98ea release26-maint +79788 e94d446c6d0ef939c99e2a4c8b39dfa8a43b9a75 legacy-trunk +79789 72c0e15c03b24a233aaf4f7ad0dad9e15d816a12 release26-maint +79790 24cb4112b7311309a206ee9cbde5d0fc04993eba py3k +79791 32a8b520d767d7c9c4741b99dd5bf63fc6fa529e release31-maint +79792 28b823983fce9d739b0d17dba94f85dea4fd0201 legacy-trunk +79793 6bee43ea7c00e3aac331c63f19ae605b652910ae legacy-trunk +79794 f87d2b1ba4290c30382296626c0cfd19c01e99a5 legacy-trunk +79795 c2b093d680cf323134b49a2dafe15c3060aa1171 legacy-trunk +79796 2d0ce307809b4d063ccd49a9427153a61c188e57 release26-maint +79797 11de2c28d1a091065776dcec1efedcada6a46086 legacy-trunk +79798 7088d18347784f290861f2a9fe1e60eb688edc3d release26-maint +79799 9ec598b47da4dbc70e9c81b72ff508a661f1c575 py3k +79800 a7b53ad7ad9726ce2565937ee21f41ada9ca0de8 release31-maint +79801 0a53c254a1937dc07a2dfb7e650e75be1da31ff8 legacy-trunk +79802 e77b2ff24ddb14f9586af7b666991e232738dda2 release26-maint +79803 7f2d7bfb056706cf37812f9918ac24ccf6e912d3 legacy-trunk +79804 ace711550b597ecafaf271a93e24983c70493530 legacy-trunk +79805 9de5630fc61ba009c81b51b1fb5a98982c387e15 py3k +79806 8f45d37c55a142bf63f3e1cb5c22ff4357d96510 release26-maint +79807 586e1ce9f243c84a5f5b371dc7828b6de1062d82 release31-maint +79808 3c9f0887ee3f9aea9fb52205bf9f0748e52469c7 legacy-trunk +79809 5daa74bcf6a159092ada104d60512f9f5a57e52f legacy-trunk +79810 3ce66c6922abadba3d89ec411586c3ecec0d4eeb py3k +79811 9fd8852ecdd4c202e911909ec1ee1fcad4e38c92 legacy-trunk +79812 664173984f2d3a21faa4c9768be063274651e17e legacy-trunk +79813 9e5e9d8fa8474fd1b5fb9ba001d0616cc0778a8b py3k +79814 25c2852bfd15b542912e17592eea2020fbfc16f9 py3k +79815 1adcf4a4685606e5bfb5a26ce38c54d50a6a9b67 py3k-jit +79816 c5be537b5ba909d995bf401e13541f69e28d539c py3k-jit +79817 922079f724a620c23a9042f34e7dfd2adf2c32e7 legacy-trunk +79818 94262d0e064a5ea88f337f50e0cf92ed2fc903d9 legacy-trunk +79819 eeea78df8a3c72f47367a9406f51c096d6010009 py3k +79820 9600625c15afa9c0a420b88114721b4ba29a1e9e legacy-trunk +79821 c10024abd118ffcafcc7ddfe268f177bd182075c release31-maint +79822 2ffb224c61f6c7d0bb2b86cf4520ff2bb5b110fc legacy-trunk +79823 26c6de18cd30b5db0c4795628f2b33d073eea901 py3k +79824 367ac48bf085a5a3b3ba1b3cc16a93b7a3ecae45 release26-maint +79825 a0c083e1d31fdd2f93d3a46bfa4758e45bf1d396 release31-maint +79826 95bf97dcc59192602384ff9d9fd32bb9ada55394 legacy-trunk +79827 727461d66d10224dc790f30391213f6d3499619e release26-maint +79828 7d89d0dae98e55718ebb4a461130d04a6eec2cc7 legacy-trunk +79829 a65a94b00902ec22cbef8acc8a2147b5ca0e67e6 py3k +79830 3775a4fd11c2a73cfa19c06f51a934bb216f6b19 release26-maint +79831 d48801b863801f70ff55d0a8ded9e07d28e19133 py3k +79832 2b93e3165961e1a9230dc3add94a1a512c399bf4 release31-maint +79833 576b0e8736c7fea74a7fcc36bdc316b9339ad9d0 legacy-trunk +79834 f1ea03e37ff6ecb7f124011d47c8467ff6950ef5 release26-maint +79835 7c76a7b4116035c96c9cceb3c5de24160f686844 py3k +79836 6feb5add762ac6e19514a1b4b618aba106bc4409 release31-maint +79837 b66fc88fa96d1bb7662383a24c9fc664898e8b3c legacy-trunk +79838 64fdf66f69b0b78b54c2ab2dfdc333b316b70b69 release31-maint +79839 7774d60a89a928e5c611c97d0f1708cde5f51ca3 py3k +79840 696cb5496a0b86d2dc902fa7104dad97b83ec6e2 release31-maint +79841 c67339e371a9b25d1d393b351bdf44f148a05127 py3k +79843 c8cfb1d07429ca111a293bf522c54defbc94566b legacy-trunk +79844 b88842f6534de48e16c13ea1cb01669ff81459db legacy-trunk +79845 b6108f720f69833a34cb689bfabf12c18b0a7ca7 py3k +79846 f194a3ceefaac00d1d21e7191045b8ea0627ce66 release26-maint +79847 2f28832dc36c3b01a87ce226a8661636c8f24b41 release31-maint +79848 a73d60451b490c6a1a72ffb1be74feb2f9aa2a58 legacy-trunk +79849 20a59badafa1c2214ca6cb9beaaa8ae020db4ed8 py3k +79850 3ce4aac20935776035f07a322ac5e84d87064808 release26-maint +79851 d51a2c7cc811a12a8524e314650a4b18d960ccc6 release31-maint +79852 5b0f1d5bd55a97c006bed13015477decb2590b36 legacy-trunk +79853 bbcc54acbd8a2d9054a7cb77190cea5c35a1052e py3k +79854 3327df32c117cac2b1f255514b5f585b03346796 release26-maint +79855 63af496b14939473fe6670d1a32ddee80465d9ba release31-maint +79856 f4ec4073bd2e59680d1e55966f0c304a74dd519f legacy-trunk +79857 ce979b64b23a790ba416e264522aa3965dd20ec8 py3k +79858 a31f80d5d1a16ebf4d77185421ca033c771e3630 legacy-trunk +79859 01c1aa3a49a7cd1f55f42c7e60a5f72b6aedc5c1 release26-maint +79860 569b859ade2077302e6d59bfeb01be8e0cfab466 py3k +79861 8273f8994a8880af3a871b4f32df37a8fa5b8acd release31-maint +79862 9c48ab728ce0d4f3157b8da9ad12876af2110e58 legacy-trunk +79863 2b4fcfc35f1223e0a5634a05221ec08e1f25652f py3k-jit +79864 712970b019f70cb211c70399dd10f5e0771300a4 py3k +79865 6c1ade9ea1e4454d6f3a1623ad9479683b8ea684 py3k-jit +79866 9ba8c6e52fa0ddfb7f43ab2f8003dc2391103f46 legacy-trunk +79867 be044b8c343a35f593561836593282b8d1a397a9 legacy-trunk +79868 ba5ec756093337e31144bb21c1acf6c06ef153e1 py3k +79869 eec2db09a6c12391f3b25e299544a47c5074dc60 release26-maint +79870 81d90ceee3bdfa7fd5c6d21598b7ee859c31874f release31-maint +79871 892db18c78154820b41f00db0cd40554669bef46 legacy-trunk +79872 1a6f3d36bbd961b046496713f7e5690aa888a546 release26-maint +79873 82af113e020b97af77450d81b9854a6774655771 py3k +79874 e3cf977e2e6467e59dee217c759e0b79a25a7732 release31-maint +79875 8d8f7e082ef6a84ce120408707a8c6764e4d089b legacy-trunk +79876 9ce53161c3a9dddaf2320bf4a5c7ca93da91a895 legacy-trunk +79877 fb6cd8ad8f69e6b0a01f6e13e75984fa6bb6e47e legacy-trunk +79878 c0957dada5c27df62f43fbe8a0749d7a7f2ee4d0 legacy-trunk +79879 d79599b21e8115cf967a32e9361e0fbd6d0cd2ef legacy-trunk +79880 c9e4e12e9cb6e06d573d9e76e489522a6d068804 legacy-trunk +79881 f369db0d58456594257c33038012467abe7a0a80 py3k +79882 10f1e63b2b37483810c541969c91a970f552554c py3k +79883 b619abce0269776b1a32d06f6ce97b54f076b92b release26-maint +79884 85ed740be323d71fbc90f1eee8c3132eb796944c py3k +79885 d0a74b6505d3c7de5099a69525548eb3b0b1718a legacy-trunk +79886 1c9befde8385e83781d757e235d2a5a52cd3944f py3k +79887 7e55b21c6658b5e3a0844161a6ec0cba3ec2eec8 release26-maint +79888 ddb73243967bb2ac48c8f87e2f107f004e58302e legacy-trunk +79889 e8aa9a7daf03285a2683c9bc96926128c1767def release31-maint +79890 20dad20058e42978590ab7ae583ce0d50d9ee3ac legacy-trunk +79891 a8e90cecc69e15827a9c538656cf96d761c06941 release31-maint +79892 c31c43d6ad792989e1d3c93a3185c03aff77fb65 legacy-trunk +79894 7b00454bbfe0a6160b96a80ee04294fcbb30d9d0 legacy-trunk +79895 25c3b3abf3e7c8b53d9580a38c97759b72daf0d7 legacy-trunk +79896 cb0b8400e7c4f9cc5963dedf67ea6044553bd7f0 legacy-trunk +79897 38b2424f85e8ac0d83d3091dcfbc69d5dee2e805 release26-maint +79898 a39bf38f2e0c177586936f2aebb53775bfa86acd legacy-trunk +79899 2e8d2d7c43c0b58ecfb868dc37435bc7ed25193e legacy-trunk +79900 73e5e3eadd893e00985ff8cb07918b97f650a716 legacy-trunk +79901 ac078a8c3e1af09d3eeadcc91f4008ccce344612 py3k +79902 7660c53d5719fe734ee3f9e3159517b3c151d022 legacy-trunk +79903 8227b64e8d788e22d8cab18a188f41d4f26d2a9a legacy-trunk +79904 b8998128de08b54f16c59716b09e4c9776c6281e py3k-cdecimal +79905 e2444f2879b435b787b3048460e7442f2fe77b4d py3k-cdecimal +79906 8e5c71c76e8fa12f292eaba8c49bd86dea8ce97f py3k +79907 6f1959f66d690a3731c1a87bcc8a631401958aac legacy-trunk +79908 24ce4a0089be329c1cf99f53bb5cd30cac370272 legacy-trunk +79909 7cbff0b1eb5d187a62b2225db348cb6bd49b7341 py3k-cdecimal +79910 a1628bd97bb6854f935a42bf82d2f936241fa734 legacy-trunk +79912 a792b9cb0d7aaba1dde001473de69abc9d1e4279 py3k +79913 24d7f55400d3a1ab94808ff854fa59e1e9ec9a7a release26-maint +79914 837f3bb1575fb88fcd198e47a560ee15737da14d release31-maint +79915 49919b31ff200766cf296a058e878112287867f7 legacy-trunk +79918 35a9da039663031e0ee257ca11c9f79ad874f2c6 legacy-trunk +79919 a5ed03773e4deb75cec7ad5d9c77e296e7053c78 release26-maint +79920 a5b7dcb9af8fa2857d29d77e69aadd236c9dcb8f legacy-trunk +79921 3ec1931fd2564b59884cb7ef5bb964d1574fc98a release31-maint +79922 464f669620fad651752834e3ae5ad3b731e42f86 py3k +79923 5e038fd2c143285fb48f8bdfb7ad859fce06abd1 legacy-trunk +79924 c00b0718fd533a720e91b60b5176060ebc67ca47 legacy-trunk +79925 7a4d026b639002434f5bf99556c67d832903a4a6 legacy-trunk +79926 ed26163070f58c1ee87c4341fc7ba5d7debee08e legacy-trunk +79927 3ae7078d4278b2e7e5db87cfd490cbda6d881231 legacy-trunk +79928 61550a1302b07a731436a84b2d86eb2bab3b2fb0 legacy-trunk +79929 4cc1758dcdf78c272f699d1ee4926eaf52368f6f legacy-trunk +79930 2baf1cee71f2b67084abce175d66f05d95f9da05 legacy-trunk +79931 805512329c7534c434fae03a08776da5f4e06838 py3k +79932 55fd4e987b20e070b2a229df9b02f0581aabebb9 legacy-trunk +79933 8c6e4b7ad158bea2987727debb9da1ee2b787f69 py3k +79934 0592e784177774f999fbdaacf1b41f4d68d13c13 legacy-trunk +79935 97b588ee62f0fb463d65fbedd157ff2d956e7970 legacy-trunk +79936 f34cb501f8f7e32634c793141fadac4a80a57ac7 legacy-trunk +79937 570d9ac84d777a994dfe1dfee08cb915d99b677c legacy-trunk +79938 7301da491d5bb5b46bc8508d9a3acf1afa1a1475 legacy-trunk +79939 34809cfd86016852eb99ec6783305a17a085ef9f legacy-trunk +79940 5f8782aa0f8c28a34bc7b0098ad6aeb90324f346 release26-maint +79941 44168224ac610807aae28836e84cd4befe1fae4e legacy-trunk +79942 8f89ef909009b51a54685301dda57ca46b013e5b legacy-trunk +79943 d007f5e5e1f019a2801c15621f36fd097dc67e1a legacy-trunk +79944 cf7c9ba2de6e9434bd5c694bab47f037273c0144 legacy-trunk +79945 4fec2e5e3398acbd94487c9c137cd7042fe8d95b legacy-trunk +79946 e0e355ae99b2626ec6039285fa2ad4fa47b86d0a py3k +79947 0061e9e329c056a00347ded9bf342c6e87881a57 legacy-trunk +79948 7912366b48d8b06d17f8c45c493b807c74b665d3 py3k +79949 9926e12bf485064d1ebac845f9b6737737e54bc3 legacy-trunk +79950 e1593e1e652eec87b554543a616c3ba7ce55f1e9 release26-maint +79951 69c37203ffc1d79061758c81cf2bb4018aa52d56 legacy-trunk +79952 f244fee989a981cebd0addda21c350b17efb976a legacy-trunk +79953 84aad670460e50779de210974d2863eb64961678 py3k +79954 9028033e6fcc3d482710c315021a0c17347a6e93 legacy-trunk +79955 f4705763787b589d0cebf690ab3a35a8f1df6832 py3k +79956 a65f91bbc2fb295b9af09dee047987dbd49b7b17 py3k +79957 30c80022874e7c9054e430101f1adb7cbe138362 py3k +79958 66ad267a73bf62a0c91a4767310958ab5513698d py3k +79959 d39955216c07a2cfd9ef42ace74ec91385c3ad4a release26-maint +79960 c2e1de3f11fc1b276abd2257549183533aa7830c py3k +79961 027d575c689c10209b42faa0bb7a21a2eb252093 release31-maint +79962 b4a155e4d31292dc0a28ef18da842139dcb5b962 legacy-trunk +79963 8ed996dc0e5209baa6ce56db1839086d00aea5ee legacy-trunk +79964 9f9cb1c57f2a7dcd371ba8732b7bd3eadf08c55d py3k +79965 c41478473eaeae52fd8e9464a7414a2d2dfe4b1d py3k +79966 a84ddd8de9d1dba02b3b1c9345c772196e498e06 py3k +79967 dd43e0c93175ca64b1ebb0dad70010692c896e11 py3k +79968 4ad952a6af9571d147d0adc0e6f31686af586cb5 py3k +79969 b4f60df31b1412eef36149ee4dc56bf76f8d129b py3k +79970 e351579137f3e424c0b70a813f5d4ea2d813db3e py3k +79971 fd3caea92cd9f91ec8dba47a4f7017ac85c92060 py3k +79972 cb6f2c89f4372cc366d36d7681692e2ae788e767 py3k +79973 093e2b71564574919177dda8d98f5e1f9a52f911 py3k +79974 d65437492426197082249845ff8f13910bd88830 py3k +79975 f5c4fc0d337336dc36a542dfe11477768a1e4e00 py3k +79976 1a62beed8d15ef8daef459ff8715e126d7db0e22 py3k +79977 3b688da18f53e3951a1c6dee9e0aeff34486688f legacy-trunk +79978 75f9209f3fb990f9907992f84bb33e98d44f12e3 py3k +79979 ac061ef1487e47b697b3ba223943986fd7fc44a7 legacy-trunk +79980 9de261cf5bc2996c6952d6fa838f62fd68b87bb1 py3k +79981 afbbc983e0bd0412954a5c5bc3b2906bb191ccd1 py3k +79982 d03f5acb4b87ef6e5f183df584e61539af62ba7e legacy-trunk +79983 610b685e0525bd6c41740fd08967fa91b1e4bcec py3k +79984 a29291ce4fce3c1d842df32d89d01f65322730a5 release26-maint +79985 edeb07c411af29475c0f4522203eba85fa33f998 release31-maint +79986 e475b771dd4c0f98d14fc31680e6f6c2f2a7cdda legacy-trunk +79987 2ae5f60e27c9956daedc601102e444a4e1db6388 legacy-trunk +79988 5680ba2dc9c26eeceb64703e4cf9a08a820c32f8 legacy-trunk +79989 bae37903f7975d6778ca3c524eab1fdb64999353 release26-maint +79990 ad2ff1c36b1ac16ce8f84aa92650fb4ca5b59aa7 py3k +79991 de515140b5fbe4c4b0cbea9b3086439bb7cd56f8 release31-maint +79992 fedb1f9322df3c3fa110ad79c3d4e3aa26b26150 py3k +79993 81d0ea6d2da37a3391e819e6f67bc4a8a8c2af62 release31-maint +79994 e6972f1c9d6d016715c9c41bf8ce0dfe99f8c451 legacy-trunk +79995 63144f1454d200f917b110f1ef4d8a0dcbb3cda5 legacy-trunk +79996 42e6057cf28fd7c93e3188ef084131ddda5da4d8 py3k +79997 860fceda2d8940b540776188deec4ee79ba3c480 py3k +79998 4f12dcb9ce6f1177d97fd2d27f2831238b6e7f07 release31-maint +79999 81059390852777404700d52558334b0366a0875e py3k +80000 98a15fc38b8bf31e7f78f7d7fa37cea9e97cf0ca legacy-trunk +80001 1163cd8c3956db3231e9a134e09162e3c49b38a2 release26-maint +80002 91ebcff5bb24c0c8b4479385df613fc05f9fe2fe py3k +80003 5576654e4b91a55c9cf903008580d6a9d1bfbb8d release31-maint +80004 713f1f6bf339bef7ff344d1a1aa6522a77b79a17 legacy-trunk +80005 9d1039048498a88ebe1557602d0562aa1376f2bf release26-maint +80006 b81d83a899f3679fdad7855ce16076b0b55d9138 py3k +80007 57bbfce8b27888f76572849babede962eb9d5879 release31-maint +80008 a2f5b3b19eb27ee91f60530bb073530c9a63c849 py3k +80009 195070e85ce15207e76120e853a00df1780642e5 legacy-trunk +80010 f1c036de19b7d1655318f96a26e170b46e1b2175 py3k +80011 89752c03f342ce6471db61358ce9b95d178dda4e release26-maint +80012 77c49e73524979aad40ce0310297415c49b23d42 release31-maint +80013 d4507f61531dca4a8653d82ebde4db45bfa3fdf7 legacy-trunk +80014 b536a8a96fa9a2d7721d51c2d5c1de640d588d48 legacy-trunk +80015 09158894a3b05f2b3eeee30249afc8300a6a3282 legacy-trunk +80016 d486705892ab6e1b62bc0ecf09235064201b45eb py3k +80017 0a1ca0d744a4269c536ec86303edf8d36bbbc5f8 legacy-trunk +80019 1a90fe37b59d736c34c992f949baf23f95d2e9f3 py3k +80020 60a7e58a10dadbf4e65b97eb4318a784c6599974 py3k +80021 52377235d0552110cfd3042a1464c602a76615cb release31-maint +80022 63b58124a554a36f1a7c3c03fd56d4047a51daa8 legacy-trunk +80023 7a390eb50df1343232b675f0b07b76929d26d0b4 py3k +80024 651edfd2db38882f85d8890d58cb904de5a7bf9f legacy-trunk +80026 5e8e6e7eedb214c5121f799a70f0954ab71c0925 legacy-trunk +80027 a8beb614922f902c9649388ee604466f0eab238f py3k +80028 251732092601354f2fc9e2aa11447bbd9eb5b797 release31-maint +80029 015e8f7f5264f4d11142d26d57a062fb2d0ef43f release26-maint +80030 47a57df69896fcf0f5778d434ecfa8e2ed1ad416 legacy-trunk +80031 7994269ad3a1fa78da49c60053d577157b8b24e6 py3k +80032 b8f297cdfadef1fde4e6c8091ecb9dea8f7226dc release31-maint +80033 df2e9e8d428ecfdb39de3baeafe6603c3432d64f py3k-issue4970 +80034 b92b57ffb31e168ef5217ae19fad2425658ad907 py3k-issue4970 +80035 7698d1a10b01c023cde644f29772cdbe3f306d06 legacy-trunk +80036 7bcee7170d7bc3720d937942ca037c01dfc80a51 py3k +80037 6ffe6f8ca09164638429ab3fe2e1440739eaf377 py3k-issue4970 +80038 a5c886ea4f6f319cc383d8d9d706192dbfa5f1b6 release26-maint +80039 d6dee3ad259b56bedc7e823da003fe296cc216b1 release31-maint +80040 d4e210323f713740266c865fbec76a37301b7369 py3k +80041 341a6bdccd2e72a388ce76b5f4d2aecef97cb312 release31-maint +80042 a9213f91ab169818b7f95d1a893182318c1d4331 py3k-issue4970 +80043 0824f26861babc3f212a9d36b2713061e589f2df py3k-issue4970 +80044 702b6c99e757c710641d4880503e3d21e61c8750 py3k +80045 7e0ce5f63a3bca49ad311fe8111035ace6c879c7 py3k-issue4970 +80046 b4c653432cb674c669226f735ad094d51c4744a5 release31-maint +80047 1dd4efdefff158763b576a754c2cbdd3fc7197dd py3k-issue4970 +80048 b95ba0cc1b7e51193e8aee284a5a37ad0db6b674 py3k-issue4970 +80049 5c99fdb7da7375d3060923fb1e4bea015d40dd53 py3k-issue4970 +80050 cb8745fa65884291d20e558ff0d2a73347f17e99 py3k-issue4970 +80051 36b005bc088ff52aaaacfe6c197bc1618e864faa py3k-issue4970 +80052 f1a2f3b6bfc64853f71bbc823ea3fcff08276f33 py3k-issue4970 +80054 5b6fe7d3598bce22ac512c8433f4edcc4bd58d6d py3k-issue4970 +80055 e984f9e15666ce6d32eea13c1103f0e925d521f6 py3k-issue4970 +80056 517cc4d59e12e241858b9196efb6bf42fa556466 py3k-issue4970 +80057 99e9c8d690ab9480713ca75db09d42fd68851c95 py3k-issue4970 +80058 28553564f1c66a46072be7f07e74db5167ee90a5 py3k-issue4970 +80059 fd7a13f0ebbddc40a86b830a8fe4325f63efc463 py3k-issue4970 +80060 8693fc06ac8ec8e1dcfb2856b7c0c5bd62594348 legacy-trunk +80061 735bed6c8e361d84718f1b6e965baf33261e6787 py3k +80062 6493ae72791d37bcf17c02a39e4580928353ccda legacy-trunk +80063 450c69210581e94ced88a1abaf9a2a3e77234cd5 release26-maint +80064 6bbf07a3e01b5c0825a8d188c326ee9747698fc2 legacy-trunk +80065 bae79765160d220d61296fe1693977324763721c legacy-trunk +80066 62d11785204f40856f2c3ecff28a5ee5a7d90e92 py3k +80067 364f1ac32264ef7d44daa5199e000085d6e23c69 legacy-trunk +80068 21267bf0720e01661b73e10b817409a6b7e6febe legacy-trunk +80069 fa9300fcb004087e28e075354c6c057dc4c5f72b legacy-trunk +80070 6102d8686aaeda79f60d7a064a149ec396603dfd legacy-trunk +80071 01d1fd775d16b569f2cfbf0b1964b76d5dd65b2d py3k +80072 22163d8caf3e33cbe5da9cff67dd2bb36d222ad2 py3k-issue4970 +80073 9069ca51e61482836a53678532c613ece1604a39 py3k-issue4970 +80074 d443d85f62c177d65118dd882f4091466dfd2e9d py3k-issue4970 +80075 ca11c830f5cc9dacdfd593a00f1446fa8ff5ae6c py3k +80076 b1276fcdc3bd75020b024051b8b0f6655cf96ace py3k-issue4970 +80078 cdbca7c3431d26f18568b8d722dd2efb1a17fce5 py3k +80079 d351e15fee28f09ddd9668106fe9aeabbcd30e7b release31-maint +80080 b40436bcf4b2b46d5363c1493dd15882ad9dbfe1 legacy-trunk +80081 c5a4d9d72f98219236e2591e285313e17f127dca legacy-trunk +80082 7e86f44212d655a54b254d708ee420a60ca1c073 legacy-trunk +80083 14f310a6e49286c7aef95741b2cd9dc86c572f25 py3k +80084 485e34ec1a1a8b9636ec8ee4e26d9884434ca844 legacy-trunk +80085 764946399352df0ccb79ad7c82ff93c024ff3a5e legacy-trunk +80086 4229662ede872dbec027d5bc25429db9af72b5f3 legacy-trunk +80088 3a4473beeaf52395edd552c67dd9833202c8920b legacy-trunk +80089 f4bd3b2cb000eb32579ab0147403c35ade7f256f signalfd-issue8407 +80090 5e851b29ed95b187d241f2a0e8042aff45661230 signalfd-issue8407 +80091 c1d1f000b404e651defdabdb6e6d978c02e9a959 signalfd-issue8407 +80092 73d78fef91d70fa2fe26ec791308672e3d6ab09d py3k +80093 5fa402a46f5a7f7e36068b5326cff0bf7619966c release31-maint +80098 3240167186218087f5003fd5077b15eaabd43322 legacy-trunk +80100 f98bd85aebb0f53718758d51e93cccf72bbe390f py3k-jit +80101 7b9e328f753321d0b97fe74bcea3e4a767e18992 legacy-trunk +80102 51b85516d7f93a83d23a4b0844c9208708e5b23d py3k +80103 35ab5cbd7e790c023e58925903bf5565f5f212b6 release31-maint +80104 820b7e0a6f38b1b5414ce0b92ef184fd42d74559 release31-maint +80105 137b424e2f784bd9db845655a72d540501c30120 py3k +80106 81297975d253e9cf37be4ffbd0db4dcab3d06b55 py3k +80107 afb25c2d056194cdfced8e4f0e491194effcbacd release31-maint +80108 005510ac0995b6ffac2080019721402abb70db6e py3k +80109 87d120b9eff2ae36fb42bf6ea7661412214e766a py3k +80110 547f30a0d4b1ed6568e25dec963f362ef33fc973 release31-maint +80111 4cbb0fdebf737cadb40acef92ebb02d767053540 py3k +80112 95178e17e9610cd8041386ba0cce8028bb7f14bf py3k +80113 bdaa289d9f199d8e1e6f94e3f63577c82b347fc1 release31-maint +80114 0442e7a418cebfc3947d7d3f597ce138cd3d1cf2 py3k +80115 11640c1a46288a86e0e480430d045a658c0f68a3 py3k +80116 15b09ccfac7cfdeef6c45c4c9c4484a0b34cb75d py3k +80117 6335cf345afae813b2c5b0f50402056db81ce232 release31-maint +80118 44a7507f6db5427f57db955eda0a171a2b7625db release31-maint +80119 cc10a1527521d106b8ea3a979d4fa23972ef0f50 release31-maint +80120 45aedcae9c479c2066604ada69ce866d83644ae0 legacy-trunk +80121 8ab5bbae5efe9e849f0885cc14341f3d61b32745 legacy-trunk +80122 81bbd5670ec39ec72721cef530bbdd6fa5d9e179 py3k +80123 63b815cc6f4b1fd9b018e2b922aee03bdd55f5d6 legacy-trunk +80124 3696d17a10b3a45281ed0ad9202c779e661f412f legacy-trunk +80125 a7491d47d4546fdc2bf8e06ef43bdf0989ca2182 py3k +80126 ce624cca202ae914f2889f7939bb4cf82daea3cb legacy-trunk +80127 460a984a9ed5707d2fa347a7bb64d549462787aa release26-maint +80128 773408ca5ee633ffdac0c9fdf001bb4eb7edaa4e py3k +80129 784a022664e3a2c19b253679d436219d747bd2b6 legacy-trunk +80130 0a01a3ea140a97e0482da3f8bf4f83875ffacb83 py3k +80131 68fd70a9e77afdce7ee9c673206f241a6e4229e7 release26-maint +80133 5e1dbc3ae76797b7776087051b73c38f5372813f release31-maint +80134 1a3304ce9a2e7afa6ade3dce0a0d19ab37e024d1 release31-maint +80135 dc765bca24add84fb5de595011ecf9ce87ca9ac6 py3k +80136 e5390fedcb6b162c3ddcae219f5c75032164a4c2 release31-maint +80137 7b69e630d237790b5685f9f208304f8f47974263 py3k +80138 c532afb0fa892802e13ffcffe9b543d4e48169e1 py3k +80140 046f97ed56794efde752d8db83a27584ae46b38a py3k +80141 0e36cc0d6ab0203369921395aa1162e22d6eedfb py3k +80142 734dd2eda1cc4ca4ba6013af5f6964a75ac83dd7 py3k-jit +80143 7321c7d642adda99583327c76b0e46f79cd2d1c0 py3k +80144 25e35e3838c7759fd7f7c68b27cdb1ea4e0e89c5 legacy-trunk +80146 7b0656929cdb9245250bb4cd30541d8073f21d60 legacy-trunk +80147 2938bf899863895a4d2a2c89c4bbbd7e7728e771 release26-maint +80148 4f1220f3e2c7db8a26751a44ba0ab1c40916c132 py3k +80149 4d0208661b1f7387a4c9d4d5c2e178ff501b58f9 release31-maint +80150 384dd449a4ee882eb900ace8cded337ec60ab8f9 legacy-trunk +80151 7462e752f0fa28babdc90995188f98060440a010 legacy-trunk +80152 33d479a38666ac595f3ddbb1d123c23190190013 legacy-trunk +80153 f2e2b196db922c278d7501025d2e734dfbb743d1 py3k +80154 e5f6de18b7156e5c1428c006d520b73898ab6e31 py3k +80155 cc382f39b398cf9981f18082de3cfded3c7927f2 legacy-trunk +80156 d7d5c76545fb37f5c05ed40dccb97f4bf5718afa legacy-trunk +80157 bac99229da2dca94b63cfebabd6fe91e4a92de7f py3k +80158 9ace55b29f7e9ce0bb6d23b34526a0e5d57b2575 py3k +80159 eb30e662fd6ac12773ba33eebc29ba10907586ff py3k +80160 f730712d97b8ddc2b62e6361d8d1ee3f24eaa714 release31-maint +80161 d419e73733702165bc536feae0317db7b1f6e992 py3k +80162 316bec3f18ec91510dce37701370dba4c26a33b1 release31-maint +80163 0f37afb8a9f2c0e9f5506a3dd99ac504d1a7e3ba py3k +80164 d3eab45973951b8c06ef02b9e82e00e1456bd75b release31-maint +80166 7c90ac194e4082d603328c1dce96d7aa8008b2b4 legacy-trunk +80167 e087b5d3d191c210587c730c992505d9994326c1 py3k +80168 ea42af968d9d055a2c98495e2ce580dfdd2a8fb1 release26-maint +80169 8efbcce0757df6047c1896fba14437fe53d87d41 release26-maint +80170 7e270dcf4bd590bb9f50498b2fee20353f648282 py3k +80171 0c0d819edb9dcf697ccf2308a1bee5bc5a814856 legacy-trunk +80172 a07f60825e1ab9a1bf102891df8d0d8db70b93d2 legacy-trunk +80173 a7e69a5f233784610e07879c554b09b5d116f7d6 release26-maint +80174 6cbe8645717d3e99dd2a56831b4db97ac76c1c7a release26-maint +80175 654e1cc9b4ff56a8f5e5a49b2b7bec78ac5cfae0 release31-maint +80176 fa8a03dfc2d1cb6c636eb612fc70255bdac9ac8c py3k +80177 13d86fc6994081bea9116c0b8396bedf08f60223 release31-maint +80178 2f54756aeb1166c7f0b185009c4e13cb0a749baa legacy-trunk +80179 22737a99bf8c444bc4aff3fbb946922a8fd758d6 legacy-trunk +80180 6cb1c4804f9c8b1ecf72955c545e6e4d8cc61f7e release26-maint +80181 fe6b6c189bb4153d5caba0d15dc7526bc54d7f89 py3k +80182 1f3d2e612b44ab77e181b4130192999d380b756e py3k +80183 fb3e400c2cda408592495b92ad630f27fa2843a8 release31-maint +80184 4505eb57b4ca7df801940dd0ce972dfdc1ba9164 release26-maint +80185 bedd6ee03e604e7569c6f80d686c244b26236e61 py3k +80186 f762c6a54bfcc76c6c52e969a70fec55222ca4b5 release31-maint +80187 a96fd0e874b498a4e64827e0a1de62e2b057a2b3 legacy-trunk +80188 bca5743761272dd1eab325861bddc0eadb3b9425 release26-maint +80189 7267e0ace33c174250a7fc56fc6954ffa5e1aaab legacy-trunk +80190 043f14304ded04735702c1e49232d9a2368df48a py3k +80191 2cfb10a6c2b5d70b53fd75d6af041456ce735b39 py3k +80192 9d35afd8821f0075a8b437f9643b338fdde0da6c release31-maint +80193 a52cb991f54c1b275cb9822cb6089227e55dea28 release26-maint +80194 76649ed45c637baf94e49141149d76f87ad59812 legacy-trunk +80195 0644ca3fe30a04ef66c30bd47752869fe99ab179 py3k +80196 4774d59eef7b376213c8ef919f141f0fb11e3cbf py3k +80197 28fc31688b7c1031f256a174da70cf0a127da7e1 release31-maint +80198 9aac1d3d873d180eb44dd9ae6058e70888292f5d py3k +80199 485c3f09a09b48f8a3e9992260687ef06a5c27f3 release31-maint +80200 9386e3dd5700c7081c1c7031a00c264f619ecbb7 py3k +80201 18a195633b599edc1f10c661dcde7447382d44f2 release31-maint +80202 8f5c480f6d6f59515f8f80adb6df1bddc2c3d786 legacy-trunk +80203 cf5756ec6ed7d7f42b4f58cac24910747fba81c5 release26-maint +80204 aa707f13c4028a274101adfe542c8447e3402a7f release31-maint +80205 a72779672f159f31c019b22596be002832495caa py3k +80206 cf80698f2756828aaa4da39c39219eeebf2fd7d5 py3k +80207 b875021cd993702100d4d9f6e2fa451f41493999 py3k +80208 2deb78bc5d3859213273fda87aee781ccc451901 release26-maint +80209 6e2e2b62685ed7a9c070cc6f35295176614ac910 release26-maint +80210 41e2f054d53901ca8239309e5e61f7e2a330fad6 release26-maint +80211 7a564d74fd4a8a378919de5b5acfd991c6a40fa6 py3k +80212 789612cd09705fd271d572aa542479f34e798641 py3k +80213 83682e7d59a644391e60b834f8922ab4558b7e51 release26-maint +80214 ce605e95000806ce2754442b203b87905c151f50 release26-maint +80215 4092e4566db3ff2619c20226742f2e93822ce282 legacy-trunk +80216 7f92632f912d6c7a3461b651563cc04685a51f4e release26-maint +80217 b514f8311f2855d5d5e56b8e04c3f9d8edca6c4f py3k +80218 bcfb6badff8841bc0e4cc00d2a6199bdefe9272c legacy-trunk +80219 71860cdb488691e60147d397f1069473d551c74e py3k +80220 1f02b43e09089247cbdabd0365046d226ed1458b release31-maint +80221 2f311dab06973580b35582e14a275a5bce74a82b legacy-trunk +80222 98b2cd10ab05f01d2a6cee2a77efe67711038f43 release26-maint +80223 f77e37afc870a438cdc70327c04104b1a6be5ceb release26-maint +80224 7ad6ea97d440231586701a05a8110a6455ba973c py3k +80225 301fbe8bfad1859e175cf01e07ec89f64ac0a015 release31-maint +80226 32285313896c840102f9e31cee4f131c1d3b59bb legacy-trunk +80227 7fef8796f777042d7b82b5d83d57eb96c93a1304 release26-maint +80228 39b561c53e9ad7bbf61c0a8acb08c9a53d36dc6e py3k +80229 c13f825fdeab76b2490d742450947eb0fa698c6f release31-maint +80230 be17bda5a658e2ab1b995a36cd2fb0e9c10d1afa py3k +80231 359954cf0ccda9d0e2fc06085ed80f6659a00e21 release31-maint +80232 5927fdf5d48c5aeee17a282d0c5cbb231a32d2d2 legacy-trunk +80233 8c9828c150409f27f11ea3f20b65973cc6571c4b py3k +80234 bf8d5402abff29f546cd2352f2fd89628199b1e1 release26-maint +80235 1fb6081420404f5daeb759d6ecdc6ff18ddc5810 release31-maint +80236 5f5ee94f19263df7e56098bc73c2b53006de3b7c legacy-trunk +80237 c237bf3d043caad0bbc50091374be945ad28a537 release26-maint +80238 ef73ac71e29502f6dceff3a369417b94dbe5eaa4 legacy-trunk +80239 e0fca3e7ceb94bdc57411f67139e759a391ea6b1 release26-maint +80240 6203f4716585f2ee58cfcf557cb8c6e9398c7167 py3k +80241 8d08fdc97aa4c533cefa8b084dd68c63d8ec15e5 release31-maint +80242 dc73ee2a8b9ec6b0bb578a0e068d1be9fd17d323 legacy-trunk +80243 725be8f9418b83e424e3cc453cfceb980eb5db08 legacy-trunk +80244 82de0b488f2dd731cd60055902b7e5cad6d6de85 py3k +80245 b018319a615b35230c6ec504b9e9428429e47236 release31-maint +80246 f2732ccc12b470d494f2a8ed915747ff26bdb2a1 py3k +80247 3973898056b60fcb6a80221ce24aff70f45e3a00 release31-maint +80248 7638223f2e02e9512378af880a66d050459adcc9 py3k +80249 8de285cadb2403305d2aaacb01aa6381f111421b release31-maint +80250 ae2781922a6de5715f9524e78bc0fbf02fce76d3 release31-maint +80251 cea38ef60700ef1b8af7d2bcdb60a9ee3f682075 py3k +80252 82763b200a793795608f870787915b4d47f81f2f release31-maint +80253 da87049930016fb52075446630b39897c1380d9f py3k +80254 bb8fe79dc5cb352fa4aa30a847c3ec52b3b35106 release26-maint +80255 7d3432b07ea1a62dfa827c3350843499ee0d2f18 release31-maint +80256 be10f4faaf12ca140b6f1f893b29db3bf8cd4b66 py3k +80257 c2fdddb2b4a55afff5a235dda122006ecc14b730 release31-maint +80258 40a3a633c56484fd68f150dc7a0d11c384cfdbd3 release26-maint +80259 387428fa69fcdb0e52d011eb32f958fa121ecc52 py3k +80260 e773e24b14e6bfe755f31f5338a3ebfeff5defb0 release31-maint +80261 7cfa7975ab0e19e02363ce059bf1ba47052efda4 py3k +80262 7ca1272f43a34ae3aac38296a96aa207388d41c6 release31-maint +80263 73a6165d002bd4644e69352be742d5fd4d3b3487 py3k +80264 d071201f2612d67ef307280cc23676d3d248e082 release31-maint +80265 6eca7fbd539edf10fbb093cf724cb45018cbd51d legacy-trunk +80266 ae272d212a9dacafd6d914d493fe0f06decd8c30 py3k +80267 4e5c6b29d9295fe7197f019cbce7c3256135dee9 release26-maint +80269 1fd2709ed3fdb9e01317427498cf564522c0aff5 release31-maint +80270 f88ea1b4fdbe7c96998ab2f7879a326105bf68b3 legacy-trunk +80271 e317e84e8a1aa1a9db98d42341a0a223aa4e3031 release26-maint +80272 07035de05d4bd4fcb028252c12b20e431b1754c0 py3k +80273 0f01bd62084efa6a5ee1a8a41550ee6c6739f765 py3k +80274 6da717bfe425784eef14f6b53f5ce1898a7651d0 legacy-trunk +80275 506faddc8a9e72f893bf5cdbbcf42e87857d4832 py3k +80276 57d097950968736b4494fc24ca5ad723c7173b32 py3k +80277 7c8eb2ba91298b9ef68042939f74da553e49107d legacy-trunk +80278 d1d209f2c8039d87c06de0e59181011e8762afff py3k +80279 d7feffa78fa0167495fdb5f480206e6f8f611500 legacy-trunk +80280 d09f84258e522ddf7c271ec48d53defe4c5392be py3k +80281 a22f2ae8564525185e48ffde2303b293c46b6009 release26-maint +80282 4ddca7fd363919008ee56bdf85d69fa2e3827c2e legacy-trunk +80286 bd45e011099014eaeba6a37bdcc48dc67a6f4f6e py3k +80287 259efe5b961b1dcffd4341dad1a8bf04fc897cc9 release31-maint +80288 86d08cb6ba5c1a4df3714135225e2d63c4899aff legacy-trunk +80289 19a9a457a47ac603159d163a443cc2f034981ef9 py3k +80290 8b36f71752386b9d675fd51dc288d8f10e2dcb92 py3k +80291 af27c5a9feb81486ce510c11c2b6ad0805dd9ef8 py3k +80292 8b3445dfa718ecf17e98638b8c905b01b355f712 release31-maint +80293 f34fb1510cbc50556bf9c3b99b7c950de19fedd8 py3k +80294 cce0a5b2015e249e17291bb1bdbe4e5e14bd50a7 release31-maint +80295 f4047b5a0f54bd53f558dabcf1f80c288adf594a release26-maint +80296 473a0f6788061262a3c1988a579e1a879224ef18 py3k +80297 d95ace528d65726e2621e1452584a148d868894c release31-maint +80298 f5afadb745da1a31d30fc979f49cacc3136287fc legacy-trunk +80299 1b43ee1ee3d88525d1ab8bbc70b9853a7aa7bd9f py3k +80300 a2a4d9dc7884f4ef49a966ad0e87d6eacbd41b0e py3k +80301 7039c6044ab6534fab175fddaf4c96ff989e342c legacy-trunk +80302 9b92e767113585718bdbd7045be75c053b1a5b6d py3k +80303 8e2a7884929da2d1f7962567dd917a817201a87b py3k +80304 95ccafc1447581615c7a7f62fb79f45e69bf5b5d py3k-cdecimal +80305 8a91cb36e094ccc897a38875ba33407ac78e2dd4 py3k-cdecimal +80306 2db06fae8c2ead654fb9f66d6e0a1009e0f281a6 legacy-trunk +80307 94254231aa6af9947f581feaa323033032e51e81 release26-maint +80308 819d813475228e72c0742dc5fab77900a5dfafba release26-maint +80309 c2905b0ef1d24d4cd9e7e371c083eb9ac5b74bc9 py3k +80310 0a7a25bbb34f72b4eb6cb0365744af35dbf4c8b6 release31-maint +80311 6d836b10e370986e901808f37e57a7273a05860e py3k +80312 a55827b0ec3bb95345373be636bda4944b4efbf3 py3k +80314 c91fb506f08df0945cbf98c95aec2991058e1b5c legacy-trunk +80315 c1d8a0055fda6e40a3f6f723e0d760ebe401555c legacy-trunk +80316 9d86f0701d9c9887f6678c9ae00a69d724be895d release26-maint +80317 f36a0ebeb1639157fd79ff76bbb847e95a8a0cf0 py3k +80318 a0b8af1be560bdad6075ec4ea03ce3f2017916cd release31-maint +80320 9ba03783ece3cb45dadfc4ec27bb8c378dadd08d legacy-trunk +80321 8e4247411754242c3641fefa127954e5d7656455 py3k +80322 8a5b2d06298d7f70eb43be8b822793569bcbe4ac legacy-trunk +80323 a3ce275bf09573b62154ed116bfecb782e416e57 py3k +80324 888c75a1be55219bf37038c512e62fad69f7b520 py3k +80325 768ce10799f2d853c4e4f0161671bc7f780cdf6a legacy-trunk +80326 92a633a30acb6ca125267c287fce2e3ccd4bd5fe py3k +80327 67b81c3284f9b085f2f66a22c8d10c8b7b524049 py3k +80328 1c105b370746053052e024915cb004c1daec9323 py3k +80329 e091d97d50d58304dbe450249c377d69ec00a98b py3k +80330 07379fe75c5707fdf06d65ef3e48554662c2ce00 release26-maint +80331 57aa31012ca51cc3da835cb89ef63d413f71fba0 py3k +80332 92669965c997194c2cd99d11b5c63cd0e934abb0 release31-maint +80333 b19c616d5b4ad8ef1083288342ce9b7ce5ba8d92 py3k +80334 7d49f021c842093b0cd82f1d4596a8e80ca1d77a py3k +80335 9f4f670b148cba6164cb50ac044032ef6fdaedfa py3k +80336 2b09d821bce1e897b9f6097673943136083a4723 legacy-trunk +80337 cad4e09f02a13307db03d899160875b192b8b955 py3k +80338 4b01e80d6c1ff68ffd61cdd548473c46af4761a9 release26-maint +80339 b3875d1b38473933e80b02487a835ba8bc683120 release31-maint +80340 186bc3b80f571229ad53eef099042425b6e7d3f2 release26-maint +80341 94b64940dac464c7c3c631984e2a1eb4e01b6e84 release31-maint +80342 54f15020288a46c6fe63086c339047754ff206d4 py3k +80343 23409595137071cad3e71db33bce8779f07bbec3 py3k +80344 5c625a048f9a56bb3b296c46c1f5b008f1a799ea py3k-cdecimal +80346 104e8c801e5d3819c4e1c878dfa2e9aff552bf61 py3k +80347 c449817f4b54dd494dd3c4a3553fc9ab1ab06e51 release31-maint +80348 6b7e20000f976677a675b90d336fb118dce6a121 py3k-cdecimal +80349 3f2773ae8448ad229174e39ad33f3f7c9d59d9ad py3k +80350 54780042d1e7d743567e77b6bdc28352f0bce76a legacy-trunk +80351 8c0517f50c4e94920350e8dac8f5a52c6b25df8a release31-maint +80352 de3945101a6e00b61c519181f4a07a079d43b924 release26-maint +80353 7fc24b4e5fedc8e4b804632c222b123abee8903f py3k +80354 8899f408043c47755012cb2a2e6c964caab432e0 release31-maint +80355 3d737f2ab90140d00839cf4109cea18cb9bcf405 legacy-trunk +80356 2c3d7bd7163648a0930b8b195648f750a7ed9c47 py3k-cdecimal +80357 736cf751ff4f5a573e2c113dc2e35d13a8b406d1 legacy-trunk +80358 0e64ba32292ba57f2b2ae8cef54fe76f3d3209a6 release26-maint +80359 b3d20d446638982e5f683e10ddf0346f920d8c68 py3k +80360 db716a74b517fc5d92f25c304f211f90e727f819 release31-maint +80361 dd18cccb55b08d9e99cb3b0f83d1c78722086e92 py3k +80362 9dc864ef6425d5ee82f84269b8c79c462d1bac66 legacy-trunk +80363 917d6a74fd4f3a484b419b29621d5187f36f9d15 release31-maint +80364 87c98fb778b4fd02cfcdeaa02b1c5f3b98e552f4 py3k +80365 5b726c601e22161a6a0cb63d7854ec2d538dc92e release26-maint +80366 3a8a6184f40a54ed7ed98d90a8cc8fa4e3c31897 py3k +80367 26902d9be033c6c02a89574d077ba471df9c4d7c release31-maint +80368 c013a71829bf23fc7713eb89af169bcc1ac7ff56 py3k +80369 4ad904602461ba0cc91447a1e3da71a2087e7b7a py3k +80370 59ad244fe2942900527905e21e36c96554409171 py3k +80371 87d988235c518e72fec1fa8aa061c31cbbf6ab03 release31-maint +80372 31d28f04b8235596bdb274c7cbcb177615ecd54c release31-maint +80373 88c7dd3d7579b6cb8b8fba62521cc56e3705351b py3k-cdecimal +80374 66c9a959c07efe1604adf1baa653980beb742217 legacy-trunk +80375 b66fa7770bbdfcfcdcb173188917b158388898a8 legacy-trunk +80376 96190b5b3f6db88ee34c41f74a08553752728d09 py3k-cdecimal +80377 58963a765471d7f18fa3c630b656986d2e9fc66f asyncore-tests-issue8490 +80378 f632a3861d1255b6a4033bb72947bfc75487b076 release26-maint +80379 b45dda0b538faabe1f554f8b72f6240c53908eac py3k +80380 4b7f3ae22c8fdf8f93230fe081327d725b2a4d43 release31-maint +80381 c4b53433735a2f885f7cdb3e81bdf5e256f4ce04 release31-maint +80382 d2fad4210dd5fb5b42888d4cb7ebc6af890bfafb py3k +80383 149badf73bcad16328e1167c19e1095ea38d1c00 release31-maint +80384 2fe4738eeb23619e98ce8f00014e24b9edde27ab py3k +80385 b05d025bc0df6ac0bc75a2e0bed8113e35dabc62 release31-maint +80386 ba12f92134ba49195e01e546f9a7ec61be22ab65 asyncore-tests-issue8490 +80388 a8e093a240949249b14d0c1393a3062bf9903bad legacy-trunk +80389 edc7f33051050e4f376a88b1f1d127bbc71b3754 release26-maint +80390 473801ae9e8ed7893053aa1d4315e25dbb0584f3 py3k +80391 54526eec8bc6e6470661e8bcd8b256d892db2f2e release31-maint +80392 c9a32edd2ba7c89426156ae5826546c1acd24804 legacy-trunk +80393 8dd1241238010c8506dd71d0292895856f21e4d8 py3k-jit +80394 1d18d73f29b53d179a6509e9df1691316d305561 py3k +80395 9228c6ac6cc678e3b86e629737999ac44c90eabe py3k-cdecimal +80396 5a524c6d4e83523469941598649189efb446a1f9 legacy-trunk +80397 3dd606353ab43b9603c150feb1eedbffc628ca6d legacy-trunk +80398 052d48515c762fe77c337d488723713d4255bbfb py3k-cdecimal +80399 b4ed1727df74cc0cc3c0a1c26588977a90f6f3ce py3k-cdecimal +80401 562967881dc525debc2a01bfa47d3ce3cf0dbeb3 py3k +80402 e6564da01718a5b25fd49719efc8f72862bfc203 py3k +80403 d2c512d0ecb62a348c2e9b236733dccae23ce82f release31-maint +80404 86fadaebcf66d3a010770269f3d2aa8dabdb1ff6 py3k +80405 c6b4f4f2b9a8b70406b7e093485c5755f1dee74e release31-maint +80408 2258250c1fbb3e7c15f2b35579527cfd2aa9832e py3k +80409 d426bbfd5bd792eb9183f53b7387447da7e63366 py3k +80410 fff81d72628e3ffa10b5f8402e5b001c2fc3b9b1 release31-maint +80411 e7606c1541f8b49f20ba0958eec03b7e063244e9 legacy-trunk +80412 a059ea966b8cfd1578f2e34e110350b813b63b73 legacy-trunk +80413 8428eaa2d3ad101ca3b24fc5e4ff6b1b220de41f py3k +80414 81ef1e8452fb059d915ab751ad5053a9ee3393ea release31-maint +80415 612e86ab05f131b6a0029788a73d695f981050ca asyncore-tests-issue8490 +80416 52cd7e040fef0d162b87707b4afb7be94de7e356 py3k +80417 610a8efa88db6561b378b721f3d7df9c78d7ef79 release31-maint +80419 0ec16d831990584fb327e0a8859c8246c037472e release26-maint +80420 fc97784e5cc21f29e566b61cb130c787cb150e72 release31-maint +80421 dc8c8d54504e184357380acf15ec587a31ab2cc0 py3k +80422 67a604829c970c7bb61aa4984212a4165fbdd48b release31-maint +80423 2c31dac694ff043c8a7c8ce513704511e02f789f legacy-trunk +80424 e79a6c802934189f69a773fbb435d2cdaf5e253f py3k +80425 74e49fb5ba12b2e3ac39b8eb4689c4231fdcc57f release26-maint +80426 81aa00284bd211900cef0c9069f651f725f5b4ba py3k +80427 54e5ab29b30bff4360f2bf975b91074ff3e560ad release31-maint +80428 d7c783ef45486feb847890b4767a454a62c84c5b legacy-trunk +80429 7691899e185f2771360e6f67dbc6e98c7900308b py3k +80430 95c5e094b38064d54e3cee62449160d7b0b9e10f release31-maint +80431 068a2e7157acecbd6c3192b208ad4cb0fc17ac9b release26-maint +80432 ca0cbac7b8981cdf0aa311ac6e988dd5e3b7fd08 legacy-trunk +80433 587df0d7478533a8d09fd8bcd05533b9daf304a5 legacy-trunk +80434 672adfc5db4799bbc748365bd8245cf0f1d4360e legacy-trunk +80435 65d6c7bc5d5a4647b7b6c0c446a3d0628433ac07 release26-maint +80436 80810d82318fd073a49f2046081a8ff89c064b6e py3k +80437 d81eff118d818ef61f823d9ac965aca833028809 release31-maint +80438 5e69519c4e37db2e18b604446766663a95850e55 release26-maint +80439 3b8341d05216ec88f958a6d6cb87759daf0e5bc7 legacy-trunk +80440 2a768ea060230e5c84a814e8b196b789ae249700 release26-maint +80441 64461f68a10e01abfab1f52d733c9275ebbcf861 py3k +80442 91f9168aadd0e33f482bc953b61b53f391c24aa3 release31-maint +80443 f4fe53f866275652ec18661a9c3bccd122898aed legacy-trunk +80444 e9d888c08bf8a16a67cd41f5fc83d0b8e0e67715 py3k +80445 c39acbb63ec3f51c9dcf3ae019ca1732b7c635d0 legacy-trunk +80446 24ff8740e4810bc7625ea8f69712a48e01171564 release26-maint +80447 3a9a22d7b22e8126ec3cbe951428cf0529900519 py3k +80448 7bd38472ea21225103ef4f1187c20496c2907fce release31-maint +80449 e4c1ebcb46048e17fcf37a9a6dab8abe2b020250 py3k +80450 79128efe8a993a1c67a55710742bc0d6ab372832 py3k +80451 a09d7f414cd15c1627d6112639aea22f3e65e061 legacy-trunk +80452 76a052eedee67f4195c1bed23f8ae89e789ecec8 legacy-trunk +80453 ce4916ca06dd037ca12201e58b936fddfd417a72 release26-maint +80454 a51ad8f09b6f7f16f149134453c436a6856c4cfe py3k +80455 5ed34f3f6c3551c2525ba912679e3258c6989855 release31-maint +80456 a9196119d335b2e0c21cf3165a008e0abee60779 py3k +80457 0ff8adde609cf9e177e8d50abbf021e6a4f1c515 release31-maint +80458 6aff9b0a288d5f455044206a256821ae92440c46 legacy-trunk +80459 7e2229877459fe3522583ce28f922fd9d7679529 py3k +80460 d5ece48e1606dfee62b0698e72f227060048929f legacy-trunk +80461 920f34106c344c6f92e07e83559d45b577ebf603 legacy-trunk +80462 46989ccc652959cdfff7c1ce67f93bbccfbf006f release26-maint +80463 0f87be6333da37008fe112b676aa7ec6681cc2ff py3k +80464 d053bb3d7842cba1fc452302c93360aad7f399fe release31-maint +80465 eaf562f5807de191d41173a8a51b753651ae16f3 legacy-trunk +80466 06322aba84faf577b225e6ec74df361175878744 legacy-trunk +80467 9808db97985411490a51560066aa5a6c0fd9e619 legacy-trunk +80468 bebcc224c7c2c3be7297788cf3445fef23f5d80b legacy-trunk +80469 5e2d61751d9809f3255abd5061a35cfff0a481fa legacy-trunk +80470 0363c697e0da30808c8091aaea4f31fd32ae1f57 legacy-trunk +80471 c2ffd20d6cf896e9fc0a64ccc20ce9dd97df894a release26-maint +80472 ede16a2792b4c859733fe37a94d899f70f2c0de1 py3k +80473 03f31f7e76276adb9324478a503d5104b4e6c12a release31-maint +80474 d23f626a737991aa248bb1500ce4be7fc89c88ea py3k +80475 fe0c47dd5f84f140a677b7af0a9968446e0b15fe py3k +80476 6fb3847d39ef39a057852fc1cc1a2b52d9fc4910 legacy-trunk +80477 c36c836ff4651265ce34aebced7c63901bc8e6be py3k +80478 b9f2102ad5f02685f6ce6f3d4a7f4d448b2f3137 py3k +80479 edfd0e1b9754d7e5d59217c74e02f65e4458305f py3k +80480 5ac0aae28f4c022de2a7bbfe9edd5193f178582e legacy-trunk +80481 96ca50cb2613593afb23d7ea81b1d59a156bf088 py3k +80482 d804dd95737c3af3e1e8de6bc57af0271e328561 release26-maint +80483 c1fb7d5ee4373b94a911cd3db084d24fd0ad889c py3k +80484 5f19622207928809cbb6472773651a03d02a9566 legacy-trunk +80485 e98266c51a0e08e1aedc11de8d5e84d252b478ef py3k +80486 ea43f7f6e84cf95f7c9457bcba11e833babda4c4 release26-maint +80487 f523e40df9c568f7bd741cbfc6d97f1eedf09c64 py3k +80488 c02144b1c98ca0a1f2576bd4de8efb6678c667c8 release26-maint +80489 6548c23676a687aa2deca3ff1fede3a2855995e4 py3k +80490 ef0a8981c37031c0d5f40857a99c2ef95bde5f02 release31-maint +80491 9165232e6d1ae44c703c6c71c586001e2302cb02 release31-maint +80492 8c717912580324e7fd1135a9b6273e4360049f4b legacy-trunk +80493 2a030c1ce972d58703703a96f64d8635baf6cbe1 py3k +80494 b71826249fbe13c7a34dfc1da4e5f0efaf73bc94 release31-maint +80495 aa6854a6f6d1d084ae0b5f7f6145b84bdec5a2f4 release31-maint +80496 d2a4e96b54a6cfe579cd4251360c123a18f894e3 legacy-trunk +80497 ab8fe947732343d2e477ba5665e4ddf4b3bd25ce py3k +80501 efd70553a0989232ff1f6b47bdf3b53c00f57c6f py3k +80502 c03a3c6a456260b6f8c055d9f41d14a95cd8889c py3k +80503 d63bb35de2f00aa383b0e3a4b4c99c2318498201 legacy-trunk +80504 048f6a92bde3a6b8d753b0c1a1c845e94a873351 release26-maint +80505 10daf634e24f482698acf794e746eded3396645c py3k +80506 cf204a73783d85dbc04db4bc8e59b1eae4567b37 release31-maint +80507 7fc211df3d5b20504a4dab22df9f1e685e228acb legacy-trunk +80508 860073505aca329d40bc9fa0ebe11430dab03b9d release26-maint +80509 3fe8cf787353037484f3d6cd10d6b0a956faa56d py3k +80510 b877d2d04c14675b120e84fdb4717bbb006d6259 release31-maint +80512 309035c22dcdccfb6bcdec6b0625ad5f3fb0f481 legacy-trunk +80515 3b244eb20fa13b18f1513a4a701bcfe3fdf09882 py3k +80516 d5590a987cb06e0c214134735c958423a644c9fa release31-maint +80517 dd466494546dde3726ac5d84fc2d6dd4d4dea029 py3k +80518 11c9adaef96b0bc361ad95ac6c8bd078c63950b4 release31-maint +80519 1571f09f4a2775dd386a64e0446621ee21df73e7 legacy-trunk +80520 784cfbaa229f160cdb6a0ffae9936f6fd6435be8 py3k +80521 83b93036ec3d7c65bda3967c3447c77613515e7a py3k +80522 18b2dbbbc5b2523725c02a8b1e00dd2e2fdebe7c legacy-trunk +80523 c07d2e5acf65c1f36aed6804beb5171509e4c028 release26-maint +80524 22de6c71cdb415216edf7f3f3348b1dc1c16b554 py3k +80525 46aae406742d9f163fbcb4b4c3dfc27d5108a353 release31-maint +80526 712301506730d74213f0d4d42d0c85385336ed01 legacy-trunk +80527 6da9eafb1daadbedbc030d175cce0a6b041461ae release26-maint +80528 e25c78a82a083b8fb996e1e518ecb2596e25ef3c py3k +80529 d447c60fb4d886c4cd773e8ac50338f245a15107 legacy-trunk +80530 1e1b2351cf12fb4582c937ea2c7fe998c4ee9c36 release31-maint +80531 ffe99f522d863bca9a41bad9762fc2ae5c4041c7 release26-maint +80532 d62708ae26a5536c0a05777533ed2332ab022fb4 py3k +80533 c869408d4d3eddc1840964f17a2037bd5bb4cc64 release31-maint +80534 61ae664de56ba05a17496256076bf9a8e0022738 legacy-trunk +80535 969ef5eb80c435327370764ba8d902d0580e696a release26-maint +80536 f10a37878d842d27219aef6f1a15e424211ba6c0 py3k +80537 71152ce701ea5d42f86775b8fa85a49a2b01ac16 release31-maint +80538 5c382bfc015a664db98e8fd176762605fd82f45b release26-maint +80539 6a90dc967fed00c1376b801bd1dbed82d63abb3e release31-maint +80540 448ef900081ce2c886c386f87c9f93acb8504a7f legacy-trunk +80541 eef4b954d644390e47fa9b2c25d3cac8db7c4e3a release26-maint +80542 cafef7454df9ecae69cb1e39f53ac3cf2d6abfcc py3k +80543 164b3acad9daca13e00f9d09e2b28a7ee3d2d5dc release31-maint +80544 adc0797ba9212f31edd7172f988cabd3e394577a legacy-trunk +80545 3691d75b0626384164ed83321268754027b5ce30 py3k +80546 6ecb3c83fe81bf05621d1ede34449e742d3839c8 legacy-trunk +80547 17cc2f53256313ab9d5348e002b88b17dd0131fd legacy-trunk +80548 ccb1d5ef04d6a922cdf3c5879c157463231a7f89 legacy-trunk +80549 ae6f5865b386041d1d8b0f4a348a7d3b60f4f136 legacy-trunk +80550 1ab24941c996afe9709ee474cb21d11f8ead68da py3k +80551 3b6979055f5ae1894753b51957498af3ca8a35f1 py3k +80552 6d9d8545861eea4b4f93e61238eaba949c2a865a legacy-trunk +80553 137916543efae78826a53f0d43299217974a5cbb legacy-trunk +80554 c7a5822bf294873638e2791fd54331861d3101a9 legacy-trunk +80555 07ce5af317ee2b3be296c81f41364db9fd7118d3 legacy-trunk +80556 fb10ef0efa23552be7efdb9327960c6e60ee5d77 legacy-trunk +80557 fd3abf82ac9605ca28acc8a051fd3323fe2d2e83 legacy-trunk +80558 316b57017d0f2574c200b9fd04718bceaab2fff6 release26-maint +80559 8c646967ba6b7f394841e6306f67458cff32b97e py3k +80560 827920c546af5804f657cb2d32cdf9a0d4c8a9c9 release31-maint +80561 4a69d32a17b9076e726087c72d3916c542d13352 legacy-trunk +80562 45721b9ca2204144545e79050c6ee0a9e0ad0d13 py3k +80563 81d7033d95a35e43a8011be87137c624d4a9aa21 release26-maint +80564 b88aa13ceaf2541a46ad1487498745fe8e3f6336 legacy-trunk +80565 967f7bc2dcc863541f12d76a3ae3b904bcd72a10 legacy-trunk +80566 82d4872413067b96044931f54d620e522b7d5040 legacy-trunk +80567 b0f342ab509518a6c0256ab1d56083eb86c24ee3 release31-maint +80568 f090bd72acd82a6104119af60ea08f4897073fa0 legacy-trunk +80569 0dc2115f6bbeadf087222d3b592dc3e7ad2ee9d2 legacy-trunk +80570 baefd7b425f1781cb519ec39597528b20b68c6ea legacy-trunk +80571 3a048420003438f576d20878b22096eb22d41651 legacy-trunk +80574 e84a4cde79c7ca0b613b2b4734688b9f51d0b704 legacy-trunk +80575 ec7715ea2c7512bedc223455268c02776f2bb4d0 release26-maint +80576 65be1e678e63e268c7f6d034129078cfb6b57a95 py3k +80577 d74ed7e21e6291a9ffec9a0ad198a21b08dee408 release31-maint +80578 51e30b916fc497cfebaecea5d69ea7cd7b819bc8 legacy-trunk +80579 220d4767fa9781bbd56979ead178323dedda2189 legacy-trunk +80580 0b5c48c762243e7fac5957a1bead7fbcc574a9b5 legacy-trunk +80581 c9e40cedc8bc25fefcd96f1bad8bc798771f6735 legacy-trunk +80582 ff1a593f8d23c1f77882cdda3ceecd44155217f3 py3k +80583 57548cce1ea05ab61444a67d4e3c48887bf8de46 legacy-trunk +80584 1e1cc672ebdd2765f3a8fd9f81aae8d790a253ea release26-maint +80585 04a18e59cc2c404d02d43f03029344d258341f83 py3k +80586 cd88f5fe2d0652300d9383be86e2884c8dfda463 release31-maint +80587 fd7ec607e101a5943c2d49a17198ef4a39fc8e70 py3k +80588 6950eab51ffe617da0134287c3a8c5d0530d931c release31-maint +80589 a43776553ab530783cb4cdc16779efcd5e8f4bce py3k +80590 05fe137b7eff0356868c5900c3ad1038483e48fa release31-maint +80591 721692ed4a7ca99e9d99dde7a11d73976c987be1 legacy-trunk +80592 97ce6ce6a28948bc6f455c883bb6f6a35711f5f8 legacy-trunk +80593 0f65fbe66e3a3bf9a68ac489368c6196087ac744 release26-maint +80594 59b2adb52b16b189323464d20f27d3bfc7534c90 py3k +80595 e7f05db5f3b03274468c8feafbc66222c23bbb34 release31-maint +80596 807fcac4f17b53a46a63a1b23c0521a2fdddc895 legacy-trunk +80597 ea83a61f6430e1a5e3b7a60fe37fe88f5f0238d1 release26-maint +80598 0f3f8b9eb6ff8db1da9760c88eaf39d227a8c7b9 py3k +80599 1d2b322c46be345d0ffa7b1b8e2c78480fe936b0 release31-maint +80600 493bb4585e380f0990a5a0514732e8e849c5b6f5 py3k +80601 d9afa5d121ea7b689579b326f9cbaa2ba7a5b08f release31-maint +80602 94e3e989ae23f7dc4b7727a17117b78eb91ddc52 release26-maint +80603 185de31c8a6c9a946eb298d492b951102ecfd776 py3k +80604 007319a9c888cfd6500d39715e42efb29ce0ed6a release31-maint +80605 5f8830935d74449426c8e433a00943ba7bb856cd legacy-trunk +80606 593a225502757d39f5583a517b7fb0359f71685b legacy-trunk +80607 2d5c345f34b99cc873ab8d9bd5fb5cd17c406281 legacy-trunk +80608 01bdd53f74899ed8a4173695a17b398e4e1088f2 legacy-trunk +80609 8400913fcc555d664a2df17185deda3a723b9c7c legacy-trunk +80610 3431e133913c9cf84e9c76f07f67fe58b5dd1a0d legacy-trunk +80611 486fe82bafb84f785ff852bd0c15fe5d621f8064 release26-maint +80612 778121b2388b3d15fd7982298039ef28bcfac161 py3k +80613 e918b84ef968cc89055ff22acc01bf7f982c6528 release31-maint +80614 4b57019150a8b3dcefcea7c26b25544e9ab0293a py3k +80615 77ddb8d3c43354d5e3a903c06f08c56ee7e12dbb release31-maint +80616 4d9634b8449bb8d4843a11182420235bdda2ad56 legacy-trunk +80617 6cda601f4c5856fa6225abc19c7ab79808ea0354 release26-maint +80618 9e50572015ad5b19155768ca78ef051d468195ce py3k +80619 405237b11104253841085c753c5a3586655fa46d release31-maint +80620 ec6e9e0e316d289cd59d240b482f5a7384cab99e legacy-trunk +80623 47fc6fe5e454fcd18d9637ac3dc78ae887965180 release26-maint +80624 fc822af11bbc68b681aaaac9d4f0540dd8c44377 py3k +80625 d66db1b22d10989496a91bc7cb20a01973f0b467 release31-maint +80626 4ddfb5dd4bb794ba60e856eebc0c84e45c4196cc py3k +80627 c482b41ae8554fa4c37c11335b3e08d221c6619d legacy-trunk +80628 06e0110b08208b91cdb4a3eb1220a5e606b924ea release26-maint +80629 f6270027e499f196b00d5c9836e8bfbdec4b3fc6 py3k +80630 ace3453778000cc03db565cf254a285340daf3f8 release31-maint +80631 c90881927bada6d909ac5d4fd25f5aad71786eb2 legacy-trunk +80632 b6b3e4f777c96e6b35a772294ec58aa143ed9c80 release26-maint +80633 9cc693f9a5de03d7a6afd4bea631cccd43d86d2a py3k +80634 f32b8a3ae9d60294e310ebdd28844adf76ff4593 release31-maint +80640 36a4179810f0b670fe4780c8919d49140f220cfa py3k +80641 699049b3c7d713f389f8fbd837a9c2f8bd5a2db1 release31-maint +80642 2d2a858fe3e194cf9d093fc37cb55c1504c97bf9 legacy-trunk +80643 7e361a6a2ac822e75139618b52f071e37dacd8bb legacy-trunk +80644 fe5a006af52bde72cf28401df231225ee7ffc1ac legacy-trunk +80645 9fcece405e29511db48cf4f6d7f4775af40b209e legacy-trunk +80646 5a48865bbc1e6b03cd69534efe6a94d0e1bc718e legacy-trunk +80647 c2e0b93f869f41cc5a4556cff1f0a5d9985bcdc6 legacy-trunk +80648 bfd2541d8ec5a350980229a14968e6984df06a24 py3k +80649 10206cb23c8021bfb933136ca75969d84f472880 legacy-trunk +80650 621d2e984d1876d08dde6bb0b188373bd2ce6a69 release26-maint +80651 2d3aba8cf6a348c67a288ba5b0d155611b223ec7 legacy-trunk +80652 2bdb8ebfc4a9523d5951cdc1be750575195cdf1b legacy-trunk +80653 1b894594490fbe39f0f2e6d6fd5f8709ecbb658b legacy-trunk +80654 7a35e0b8ae08c5b527448c155a036d66bd5536bd release26-maint +80655 e47aea86f714334efaa1204ed115ea2bf3eedd3c py3k +80656 091d977c4d3743cd947c21101d7a20b4f2715fea release31-maint +80657 bc6230c66c141e0abbe211300c70967fd4c2fc2f legacy-trunk +80658 00ac4688cdcd0f3d33e268f21234cd5047c3c949 release26-maint +80659 7a9d172a15e909e1d43f4b06c958558eda50b126 py3k +80660 af810431bdac9f32a5d5c5f5526ad34e5b2609a1 release31-maint +80661 591de6c9ffe94748f54bf1753fb149fce96b110b py3k +80662 51cd53d3f600bfc5545409c36714e8cefd85de29 release31-maint +80663 774230078926ef7f6e43d1191c32518873e9b4ce py3k +80664 b25e4ba4af616e933a90ef976959147f4b180262 release31-maint +80665 8fc987cac913f2cdad4824faa46dd198ca5aa438 legacy-trunk +80666 3e4513947c57bf3bde1713e6762de33dfaf9ab9c py3k +80669 3c4cd7ddf1d0174664b0e8605837a055557a1733 legacy-trunk +80670 3eb6ead99a61ad1280e285844452f2a5854151b2 release26-maint +80671 c9060c1c1f9054268dbc820d2458b22996c18b9d py3k +80672 8e34d59badf98f7d62fbc9b942a8b5d23aab1eae release31-maint +80674 ab642379ddc029456a2ac801e0a4ee1f39661df2 legacy-trunk +80675 abfc7ed355e4e112efbf315a41db9cdc97009545 legacy-trunk +80676 5b6a7f2a05c6d16d259149ce39b4e300252d6a1c release26-maint +80677 55e0eccc7f46f347df400f3a48221e6727a4e702 py3k +80678 52a3ab5e8e8cf659d7009b1ade612c6bc6ef366c release31-maint +80681 3ebac0e460e039e3984c6940837df57d6fc14bfe legacy-trunk +80682 245e433d60eb5dc53e11d3f1bf5f8a84f445b15d release26-maint +80683 19304d823c8747c097a45a10700bc0057b78963d py3k +80684 82da290ff7223e6bbad163c56982c6edde62182d legacy-trunk +80685 2db4b300a42085642c55d875fb9be260dc1c8fad legacy-trunk +80686 58be3af130e26a9eb94e3487bf555a0077e64aa4 legacy-trunk +80687 f89ba10f97349599e70bb90c2a71ff9ca99c2f9f signalfd-issue8407 +80688 e28fedf36359694d3098764d3079d728981236fa py3k +80689 21355daaf23a46db976c2914286fb68371a08f19 release31-maint +80690 7b307a302744758d20e2022102fb03465a273c80 legacy-trunk +80691 f0e21ac795f475c38968d356e0782c0b48afd157 release26-maint +80692 fda1ddae049c676ea1446ee5cbd8db88d40f04d9 py3k +80693 4685709fab3e13770651170aebd1f0eda534ff92 release31-maint +80694 9f4ca00610e338b10c4cad498ef67b209171a4ae py3k +80695 fd26eb9fb0f92a4a39a942a1b47b343f8f6641bd legacy-trunk +80696 94b52e5cbe2943beb4da5613286ce9d0d80b09ad release26-maint +80697 abf2201dc37cbef1c0418af96071f4fa03e3ee6a py3k +80698 21369d189d9e479f430f3628953c28ec06303f4e legacy-trunk +80699 7d98e0ea9db354e3093ce5e77355569978b152f7 py3k +80700 d95df2622f9f5b77479788f8dabb602359404c78 legacy-trunk +80701 b1dd771545e2127e3d9fd70418df48ace13c37e4 release26-maint +80702 431267626a035ce4e92898a6b44c362dc5de1f5f release31-maint +80703 cf0361c02551d09e2a0fc656bf25a582d73fc91a py3k +80704 b3c3b12460d4811091ef0cd14a812e8cfc8dbf2a legacy-trunk +80705 8b75329924642eb99e0560417dbd2217ffbe6dd4 py3k +80706 c62b1d02551ae286416a63a94a563e7d6f7f633d release26-maint +80707 a77467bcade0b783a98150ba0615c93ea1916e18 release31-maint +80708 03c32092d2668281c2bacbdb084025b327f345c0 legacy-trunk +80709 62b9a7431047f6e99d072964b44ac3b110ba9383 py3k +80710 d062b8e790521e13f7f93a96f273f7fb765b5c8b legacy-trunk +80711 b7fcb2af8cb408de67abe851e0008d396696407d release31-maint +80712 56d831e6f50881addde8524c7bba00262b600999 legacy-trunk +80713 4767c666b25b08b3bf59b4da1fe76741a573627f release26-maint +80714 5d4a5655575f2c4c6da4ee6acaf03b92a31f19bb py3k +80715 3ed28f28466f606a16ad24f8881f659740dfe0c7 release31-maint +80716 f992ced32c20578a29301cffe2326835cd830eb2 legacy-trunk +80717 d92ff7081b2039d6cc8559c1b233b0bee15c749d release26-maint +80718 f0255ef4dbebd1f238ed591bf076dc3a949a7bc3 py3k +80719 7aaf59d8ef0bfbb4adbd9a4fc34c3325fcc6249b release31-maint +80720 9b438bb06d4d623e2e2358c56776bb290af62f11 legacy-trunk +80721 fe3bf399a19c126737eb45824a92457a2af8c9e8 release26-maint +80722 81cef5b74f1a7ae59837e2b9c78e0e0341579159 py3k +80723 ca01abd8ad8716fc37162c40a28a8a8b8455dc7e release31-maint +80724 4fd3ab5fa71d606ae7e2803129298de7beaf32f0 py3k +80726 6850aa786c18767e7a3d24d3e92d36d9c55b8e93 py3k +80727 512d61a692e4eb37ed573fb7c09107b1584a4719 py3k +80728 138bb5c930747faeb64e483e37f205d4a4dc465d py3k +80729 18cc05e82752271e664b53fbe604516d545bda9c release31-maint +80730 e9910d1932146e0a5392134df0640b286ec91352 py3k-jit +80731 181cd1492cb0c75ba97db32019fbb81373138a21 legacy-trunk +80732 a118905272299fb5e6a2007349a0aaf704664d1d legacy-trunk +80733 02e187baaf514d7b962c3a04e4ac319a977ecd51 legacy-trunk +80734 0cf80b70f838a0381a32cf7b55f364845d034dc7 legacy-trunk +80735 982eec9a8c28853afd5e4d8f9894070e8d58fec7 legacy-trunk +80736 eb470b85e67afa65fa3bd3002379f141d3dedac6 legacy-trunk +80737 7ee562ccea802c136987f1b2f90a99d2d994497a legacy-trunk +80738 636591f4c2162a9100032ff00aff489ddc1c26d8 legacy-trunk +80739 8142453db80ca001b5178dfd63cd3ced635c1d82 legacy-trunk +80740 7c62e72d856b292327ebd289a02aefe0f79c70ba py3k +80741 f6569e34bd281aa1e21eb11793825cd1234e409b legacy-trunk +80742 7695f6a7e3a3b64262f72f99e5338374f7b6313c legacy-trunk +80743 66fbca287a011842c101b662f249242a6bdf1540 legacy-trunk +80744 3c7683d6a3c471364e2983656e2e8552e587b23f legacy-trunk +80745 85d693e5f2293bb41a152f1241e1525b3325afdf legacy-trunk +80746 55a593cc32803bc74dbbfaf3c69a4151ad660888 legacy-trunk +80747 cd33d6cd2101956433952afd32c26d5b7bb3d881 legacy-trunk +80748 e0ee0951e953f151cf3fc08c7a09f75245d55392 legacy-trunk +80749 5ec155ec7db270a4e50efba89b05cd81d2c2549d legacy-trunk +80750 d176aa4732875678f4deed48c8d05a0f57118ebd py3k +80751 a51537e704a9b444e6ce5984c802cc895bc6ee16 py3k +80752 b760f6ff89eab27a24cb50e5bfec5e4eb4c99ec9 legacy-trunk +80753 c0ea07925400284ff49c1ee714e9dc253af56a9e legacy-trunk +80754 ecc32e2f46566e5dec9f69b4822532f519400b1c release26-maint +80755 18334f23f686fc258964024d70b9c14667e7e650 py3k +80756 1143972f04bbd577880f1c3bb202c01441231c6e release31-maint +80757 1b4b506aa042769f90afa11a1f3466f045436dfa py3k +80758 f550ed89398f58e51ad95e2e524e792fc7dac4ce legacy-trunk +80759 6f4668b97d684035439bdf38f59194374bc1e162 legacy-trunk +80760 c74299de801aba35b36209495207cdd853988613 py3k +80761 f384e11c1bb5f68a877d8a953d7ed7b3de9fe343 legacy-trunk +80762 3907d52648a0f2561335e70eb8108e87d80811b2 legacy-trunk +80763 adc2ebda7636aafbdc7501cb076c776958837a3b release26-maint +80764 0a4ca892a59e5e92981913f768059e805ae90616 py3k +80765 9ba6fcec4f149e17a2212754e5c9394b614e072a release31-maint +80766 d92280517305371c052bf12e4db67cadd7e0d27c legacy-trunk +80767 8c9b785b1849d06b3d7adddc450188d6d2f6a63b py3k +80771 d49f1310e23f902ad8ae37e8d575047e4d607c3e py3k +80772 6e4bfcf2080c716166ace47abb2ddf944dc9956b py3k +80773 cf48535132e0dc07ed0e3b7b02b252749a7e2c72 py3k +80774 e0105fd52032917e300595f3605e5afd5d32f696 release31-maint +80775 d74ac7cca60770a112daa3d2e7865b3306ac678b py3k +80776 134a63af22a9a58a8656c281e73ea7f91a2a596f release31-maint +80777 bb51e4bbff8c28b223cde0118e29500a40f2a644 legacy-trunk +80778 dd60de2fae3cf6d3ada2c6d8512944460ca89817 py3k +80779 4380e04343ee985a7a99a0697f26860d48a7b584 release26-maint +80781 b7ae3a6b1d84b2740a72643a7fd6b3a5ab7dc9ee py3k +80782 f4411a3cdf139bac779e2bedd1d767019f812f78 legacy-trunk +80783 31a32e4e0256ff9b13b154c8b5aafa4fb01d830c py3k +80784 dc68520988a7f9b96a250043b7edf689bc0d2cb7 legacy-trunk +80785 813daee94f7383f1ea134a1fd1ee57fd581e98fb release26-maint +80786 fbb5cd345b42e91dc23fd39671f38b1eea26b6ca py3k +80787 7b299404e7810cd6b9669928df2494cfb7d97e5a legacy-trunk +80788 f05a2989379ec9a6b3353c26e83870d8724b9c87 release31-maint +80789 6db9ba42e46872380e09bf754a0a5e6861c90b44 legacy-trunk +80790 35221c0158b5a72fd14f23c6e590a52e994d2211 py3k +80791 ccade5772674643757788de43dad295a5d5e01dd release26-maint +80792 50a4ec37361d00de40b188fd7d87bc89b27095fe release31-maint +80793 b608e2ed9f75891bbfdf4752ad03c8c4e63f6911 legacy-trunk +80794 4b68d6c8cd52c4e06f7a7d58e5cb574c2e69e7a5 legacy-trunk +80795 35932a24be8509cd9b627b7ed8e6e0a53d11109a py3k +80796 d4aa35907808762ded098f8e1e485efbdcdfe159 legacy-trunk +80797 627f11440b89e6225bb48798e90f2e8930c00b52 release26-maint +80798 7483ecb621e0f60bd881c7e035184599a49ad7eb py3k +80799 8ee80c2f992679c7beebd2b201541a1ab4b76aeb release31-maint +80800 575e938a8ca525b23e80cfd8380bb5dc5584656d legacy-trunk +80801 189a2de3e0345f044e580402788baf28d3b9a880 release26-maint +80802 33ac109de0cc2d2004a4b09a4f4b6d6d45b9f365 legacy-trunk +80803 80d05630263add258ee3a75e2fa3802c5789da17 py3k +80804 f6785bce54b5332de5e56f791632c569309e786b legacy-trunk +80805 1f7506f237716fa085a2a4abebc0c4aa3f0459dd py3k +80806 90f4b62d4759d048a5387642672c551b753c10ef py3k +80807 6899139301c9e87c390c0eec27303ff0438bcf19 legacy-trunk +80808 3b58f2441cc87fdd6b6ca6b5f3245e7b244df857 legacy-trunk +80809 94538b044cbefab0e9467e2bd7193a56a77d93fb legacy-trunk +80810 f95c259b80b3ce5ad559f9f846e1762bc6538031 legacy-trunk +80811 7be8129ee0fd21dd1899050a49951895d99ee044 legacy-trunk +80812 47a2700c00b49d865d1cd294d96c92233f900cf1 legacy-trunk +80813 5cea27275af12582b078c3396b323e6c8a7dc2c6 legacy-trunk +80814 2d8fa74f9263e400129db53c41424e09585cae96 legacy-trunk +80815 fff439f089fe55ab54b8c7394fe21b94059f4632 legacy-trunk +80816 6fb6fa802221e7f584a3dbf6b9d24cd81858e10b legacy-trunk +80817 845c6d800302446ca83b84f0b0cb50780e716605 legacy-trunk +80818 77b78607600e524d2e867dd54d8b64550f4ba12a legacy-trunk +80819 3fe4c34f78c029f78e8e3339dcf1cc89092523ff legacy-trunk +80820 95c400b9d74ca37a6fc727c908fa00b32a807cbf legacy-trunk +80821 0d14827bcc0dfa9ee20d32d88c451d89c89ced93 legacy-trunk +80822 8e3b5fbc1e41bf1b3f706a439aca66535fb47997 legacy-trunk +80823 0378f6e346f03259870677506a7edaa2bba49df2 legacy-trunk +80824 88466ef1f0cde681808bd323764b449bbaa9cead py3k +80825 8bf34594b66f3153b980e86b84909811800b9d91 release31-maint +80826 f3309042a0b31bee16c23d99335297b9b6edbceb legacy-trunk +80827 03ba60d1e492a39845570106e292b3f5cb4e7e54 release26-maint +80828 944938abb26ce0609f0430d84366e33d93d12cce py3k +80829 f4ceb4ae0247dba32622811f735bbae7730a1042 release31-maint +80830 26b81c4e5fba47e4c66803c3a8965955649e4251 legacy-trunk +80831 f0fa944b15c0cf1f87060daf3f9277b202e58eb6 release26-maint +80832 9bea37a850884cdd22791c94a040f2fdc3d2dba0 legacy-trunk +80833 c424299b3884b40c76a90fb7b577f07f6a230cc1 py3k +80834 8b5dde2c31fb3f66605f3c956c91bf440f6aaba3 py3k +80835 78e7fc01c51ac5835f4d53b3f1e116c2c29d8240 release31-maint +80836 5dca0a3fb993c405ee3a5ada2fbf3972d00e2e52 py3k +80837 e3e466f53f9ef0a1422de6679dda4e2772031371 legacy-trunk +80838 995eb96cae686bef35778f0e4b95aaf29785a25f release26-maint +80839 b303c35254de41317d9c8704481cb3877a1a76c2 legacy-trunk +80840 6558d96ade03ad3386b95f244b2deb8c5dd5da60 py3k +80841 2f313008a41d45f2a6ecff64ac632bd5e5a2de84 release31-maint +80842 63d5b9d38b176fa4b1357a011dd63cf96b2401f7 py3k +80843 8afd6f28aca9d22ae9bee62a529073a6b5b2e298 legacy-trunk +80844 f11d4d2b44b67d4a1a7240916df392358a0e0635 legacy-trunk +80845 e1146b25f77322486433c8767dde23abef0a1fe0 legacy-trunk +80846 1cfb229844a78c54222627f179d6de3143175108 py3k +80847 e503bb8b3f615b36f37272ad73e09881b3539355 release26-maint +80848 dc2aac624ff8f9b636beefd3410bc0c2731b3de5 release31-maint +80849 016dbab351f2e13e6d0c6f632ee22ac793749f10 legacy-trunk +80850 85cc3edc7d46e42644bce8bb5741da26da356126 release26-maint +80851 aa7e6b9cab6d492dc6f70f8a1425fe8616bb1a85 py3k +80852 e21803c4f1eef5f8926bef6e65e49ecf183b6572 legacy-trunk +80853 d2a4400578a5c73ed6e7e6f3af2232fd60e97a35 release31-maint +80854 8942e96286dc64177eeb2ecd233ef1755fbcda0c legacy-trunk +80855 8b64159792bbb1f7168b16ba0edc650cf4d0a354 py3k +80856 5b55dc9554fcbd77e07d1beb63ffd191e12f6e40 release31-maint +80857 0ed1ebe5bc2fc93cf0f0213202e1436b1f66362b legacy-trunk +80858 e4a0ba251c4a4fdd0585ed46ba7f82da8e4d1d06 release26-maint +80859 b92ef8ebccb9760b4ae496fe597ef8ca0108f5af py3k +80860 39a2be4127dd44225cae2588d74820ee1b67db1e release31-maint +80861 3cbcc274597292d1c44c77a4d01328b8286208d3 signalfd-issue8407 +80862 9965ef825c7f7b2d8590dca326d6b49eb2856d0b signalfd-issue8407 +80863 2d8a3bb8fb608a73a270be55b1c8da346f77de70 signalfd-issue8407 +80864 3da67388b96a37d161e5a55a7907b94f6463d2b5 signalfd-issue8407 +80866 6254c028c63d2400efd1a93363af66bab75054d3 legacy-trunk +80867 ea7001c3f000ff691379434b5ce0054e9caeca0d release26-maint +80868 2166b63b6fdf86f6b9fd18f83221ac61e07a05f8 release31-maint +80869 b4b322b2e98b9901694bbed9e62cd655f34e2cbc legacy-trunk +80870 346c4c2e386e7435c5dadde6122a53a2c65610b1 legacy-trunk +80871 cebe2857000690ef21b25e42c20a457a02331852 py3k +80872 4cdcff0e9a36ed8deaa27653dac0c9c0c2e9f136 legacy-trunk +80873 6b27a95c2c522814a6e91f3a3b2cae40ff273c15 legacy-trunk +80874 e4e5486eccbe0e6372b48d314098e7ab27f28a34 legacy-trunk +80875 cc92502de4c951144b2ce7bff4492d969245328d legacy-trunk +80876 3b490963f92c874863cc1712ffc131187bff181d py3k +80877 297e23328c6c69580ba818b785b06d01dc7cf83d signalfd-issue8407 +80878 54efaf6d2f892a95a678216e2184b70c44b9e1c8 release26-maint +80879 0a83969b6f35db16eb2b6c8929e44aaec67dd345 release31-maint +80880 9af960fbaccc5e4e51a76b8e354e3a0ccc9cdc50 legacy-trunk +80881 53f9b84882a05695407d5abee4276a9f67e5ecae py3k +80882 ab0b2855c9e42913a2d5e16bc67ac39e005da568 legacy-trunk +80883 ade8293ba487a194b46815a4c7daef5707720d70 py3k +80884 2d3ae12ad09368dc70599bd320c9335ee41282e6 py3k-jit +80885 7e5bdf59a4871360e5c04db1a160cc7a099799b8 py3k +80886 693f74c42e5ef9db3a6c297d29e48f430db3121b release31-maint +80887 9d76af95c166da927cd8b239fa0dfdb906229f5f py3k +80888 8ad1c74d590973155401a6a146d7f7c721abfd89 py3k +80889 2aa605168f112e10369961d6cd83dcc70ab1d29a py3k +80890 f182e0922dc7476f365d7dbd1d5410b53189446c py3k +80891 f4230765ddbb178df58044242ad7f00b190165ea py3k +80892 548fa8edb7f0fb7983922005b889bf62b44c2415 py3k +80893 5ab4b4efcf61f37d52e163b3be22858eedb9d475 py3k +80894 a1c9a91260d91a3af5d800c667ece032173cb111 legacy-trunk +80895 a49256b226957a3093f17ebde76973671b315544 asyncore-tests-issue8490 +80896 b0b7ba26be6c191781210a03249e1f483448c524 legacy-trunk +80897 5fb3977fb341e37bc99474c519ce72df4305f417 py3k +80898 83c5f27af57c92ce0437d6904d067d98e3fedfdd release26-maint +80899 ca77ed739827019f22e13d049374c9ac03720f95 release31-maint +80900 0b0971daf58c0070724905d835399a7f50178fa4 py3k +80901 d6151488726f8ae764650330aff46fe6e4aebff1 release31-maint +80902 5260104db99d743406b15565a2ce5bb48e06063c py3k +80903 069e7efa645b510765ee50b76f773dfb77a4387e release31-maint +80904 5981b2da131a1273404dad2ea7cdd185901025ff py3k +80905 427c7500b2b70c9fc9f52465eccce4ba294c5abe py3k +80906 2459ee6ac7c7aae02e08e60910aecce614c4a935 release31-maint +80907 16321834156a040e827068a11d286e208a487f58 legacy-trunk +80908 5c9094792d1accf409eae4876db99a76c8f3c170 legacy-trunk +80909 490d1c2036e963561e68c55849911b890d1fa466 release26-maint +80910 fe7e56f986cd450fe24c534fde18d1450412dcf3 py3k +80911 e3a3ed614c7e09e3326a7b206848fed6c097044b release31-maint +80912 61c4ca94a366828d2ddb65ac546c81c40289b29a siginterrupt-reset-issue8354 +80913 e046adb104797f43d4657832f5c7e5c967a4db48 siginterrupt-reset-issue8354 +80914 e29942ea2fdf841f14e9a7a173173434f99b944b signalfd-issue8407 +80915 19bee8ea48d8ab57b529734431ab8103dedf6db5 legacy-trunk +80916 d02b3173c3c5b9210c2c12e8617a88ac461786e8 legacy-trunk +80917 35328f06921ce9cf59006a347fac53f9d1a23f61 release26-maint +80918 5a38e7e16bf8cb91884d3e28bcbdef0d32d61152 legacy-trunk +80919 facc691759a1c31969b5bb4335afdc01bdd2b2ff py3k +80920 7967bc7b018d4ae6185cba8ae2150cb8a0a235ae legacy-trunk +80921 9dabfc19d1ac4ff8f4ec9ce14fa9d0eaa28b6287 py3k +80923 f737d6cbb04561fa3927dd52e97188cc22823a6b py3k +80924 f50d5ca4690cb6799242acd4242dfebf7f394fc9 release31-maint +80925 71aa098a082e26239e9fc1d7956a85115ddd340f py3k +80926 b602676cadcd85b5a98274236c40b6c483a90f12 legacy-trunk +80927 f189819045079f8ac20f2e86d921ef5e378cce2f release26-maint +80928 bcb0cf924693bf05bed243a6f58e632c709f28de py3k +80929 368371fa7f5c367d4458e2a14b67be2af22ad899 release31-maint +80930 839953580b6dfcc5e229dd9755ff86a4142a9a0c asyncore-tests-issue8490 +80931 65461a7054967d892a54ebc2a0801c988e0ae7ee release31-maint +80932 26edab989d2f88554fb8624e6b9f6aa6d25813bf legacy-trunk +80933 f58b9dece25eb8bde99421b4fe3118b5bb2f0989 py3k +80934 9fe562a2f0e3145d83a2b5042f8e9b44af3bbc95 legacy-trunk +80935 e92fb95f231782e071b841cd5c4684ddbcfb8db8 release26-maint +80936 b4faf99c642f751064df1609bbcc4a796d57be08 py3k +80938 8258937e139c2263d77a8ae91be9a5c98e8c49d7 py3k +80939 48d7959167def7dbe9a9f5613e30f0a594624d1c legacy-trunk +80940 23bd61c7dbbcd556986b33a44b4092d99574ab17 py3k +80941 c7d0678952d3db8c791f672fb6835587e250ed2a siginterrupt-reset-issue8354 +80942 0e3982ae281d82375d72aa238da97faf233815c6 siginterrupt-reset-issue8354 +80943 c867d991e91f0d22451cdd33a26cc65bc39359fa siginterrupt-reset-issue8354 +80944 d6da381977ce516e4b4167d4c6b2c071f8ef174a siginterrupt-reset-issue8354 +80945 a90372249fd35df6664372ad30d007cc5adb3216 siginterrupt-reset-issue8354 +80946 cbdd013daf6d614dc22f49bc43775f3c92f8041e legacy-trunk +80947 e2bccd372cd63bbc6e4cd394c2b299295935593b py3k +80948 85ac27fa913fbaae2e7a00061ca0fb2063817244 py3k +80949 07a47a5145487ab7784ba91387bc9bf92d50406b py3k +80950 a77437bde31af31c7e4b9b792c4feaeadb380f13 py3k +80951 1abb3d3e3e8df52f6fdaee8a45d17772c58302e1 legacy-trunk +80952 cba1d21eab3d2cde82db91664934f054099a4d0c legacy-trunk +80953 74ae0eb932deadaf3e2e3e5542d60ea74abfe55d legacy-trunk +80954 53d76230fa186f56bd7a8fcf15f8ae754afbb554 release26-maint +80955 7e6f1e80b3c6567e70a0d67d8ecd2aae7d69b5c5 py3k +80956 4644cff2525be0de7e13b39b4029877751d244ae release31-maint +80957 f851e7b6e0d5c5d0a9196c1f54b9f391f22d707a legacy-trunk +80958 bede8507f0acd4c8acffaadc420cf0c5f3a5a958 release26-maint +80959 db1336cc851c2a85db0cf1b6243da97171ee7cee py3k +80960 324f89886a1cb6da32be2191d1d12bdcded5fed7 release31-maint +80961 d06ef30a441edb5bad57d2acf90d4ebad2bf4d40 legacy-trunk +80962 b7a0f021ff7d97358788fd4692a75d32027c7fac py3k +80963 c1423b0a9329367645348dd9b3853691c817cbf8 legacy-trunk +80964 4f7e5089fc97ae7af83fee92edf803a5dd99ac23 legacy-trunk +80965 afe2592354d97bc51ae4d9717143db1534e8124c legacy-trunk +80966 4a940d99ec84b1b2abbaaa0c924427a32b03df5c legacy-trunk +80967 930395b2de9036b0e727d824010ef5f5a2f7fe73 legacy-trunk +80968 3fae7cb492095b1291e6129005184bbffe51a538 py3k +80969 c5fde4a42cb0a5e157a6c1cfffb75047f5d9286a legacy-trunk +80970 f614dbec2f4f792d7d27d78cc572fdd931d10e0c legacy-trunk +80971 227fa7db50ded03a85467b0153db11e23235f611 py3k +80972 0d9732f6077692934dcd48908055d1c99370316d release31-maint +80973 b10c3a24d2f9db8fd41d8ccd54434dca33854456 py3k +80974 63d6f5fedbf314565b29c78b40c8ad323a0b097f legacy-trunk +80975 17d21e9e6320133fc2e922605830ba48e88bd1cf py3k +80976 b94c133db451662bad2930e16e53435e174b4271 legacy-trunk +80977 02701511b7596c0018ed45d716e25b3101d9f4e8 legacy-trunk +80978 33cb5b992d392eaf043eebc86d960565cf6d9427 siginterrupt-reset-issue8354 +80979 b7f02c670bd7c4f86b279e0513a22cd7a4f3f229 py3k +80980 703f8b11b250bdf3744cf7f9926503dd20295aaa legacy-trunk +80981 9f467c62d95408e412c98c2b022ec7c2d2372823 py3k +80982 285220f24cc8f3a3ee5261d730e440fb3cb98420 legacy-trunk +80983 478471ccf7fd19ec63a9031f25e6acde59e6ff14 py3k +80984 be1adf3c8a332c5af2b384a479bfb23d74f3faeb release31-maint +80985 e263ac2be4fd42068284d0884fb63cd448d5ce8c legacy-trunk +80986 2f7ab922121a40b71cad6da8c6b54ea26ab3cc48 legacy-trunk +80987 3293da83df1e3086b82e07ae3505a627ea3e0bf0 legacy-trunk +80988 e435888b8825e57f26671e4f647fac5540f744a6 release31-maint +80989 cafb6225ded86e6d21ee398ba896bcf6ff4eb130 py3k +80990 743355e3ef4ab11bc2d351c06c8105e179060f07 legacy-trunk +80991 8ff8f0a526dd07b7429cefa5623466f1058d0b35 legacy-trunk +80992 f2cb3af5562fbd904bb6152b69f141c36801a192 py3k +80993 dccdfbe577ba572d6646079fc67745e4d6333954 py3k +80994 24ec725941965a91fe3121d43576eee504536231 release26-maint +80995 31b9412cad01bd03fc5f2775f1a1023cea213968 release31-maint +80996 f2194e68881ebf437619ac0bf9509f478fad7a0e legacy-trunk +80997 d6df749780c54793c75f44371491c6b0bb45fd03 legacy-trunk +80998 6bb9891d4275bd42a69b3d903d13b687543c915d legacy-trunk +80999 88cf576f9ceea25f1f79fbb29d80bbfacffd2e6e py3k +81000 f0f4118c76e990f6faa3a3a6c3dde151657bdb57 legacy-trunk +81001 f191d5f80eb041bade5542617fe575bd9dcf543b py3k +81002 bed04492398ded60636f5a21a8689859acffbb2c legacy-trunk +81003 663b39d4a7ef7d6787b2ebbea800b19df2a1713b py3k +81004 4da7fba3370fca0e8994189f128c5fb4ee68cde9 legacy-trunk +81005 fcb21d2ceb73b29339145075ff48ccc41a1b6fce py3k +81006 ab9ae5676adae7251f5da12db96e4d744e190069 py3k +81007 435a8355dab6befc47141dc216c10db0f2b1eca6 legacy-trunk +81008 6fa8e1381b4993b15360f1d8e8d25f9e849604e9 legacy-trunk +81009 117b4b81b86402ff299d788f632be9fc4a064bb1 py3k +81010 2e9bc61c1c1ec7188cfde6a81792168ce1c04b21 py3k +81011 fb719049044fcc8ad7913d2ff34670f58043ed8c release26-maint +81012 2c9e095d52f00dd63b3a9d7717243e9d48ef4d81 legacy-trunk +81013 50fa3f4c829b341b6aab002945fa9d4b2c599713 legacy-trunk +81014 dd1c8ff2e990308174009cc5edcc0ce92c759b8b py3k +81015 1139b5d996b0041492b0c04f78ff60e8419d6f85 release31-maint +81016 b966d5835d3b110ae351eeaa9d1b3523f623ed58 py3k +81017 d315a79f1eccee5452cbb15a4792d2686b258fbc py3k +81018 677511edf05c783a9ec93e3c1f0fedb8a0413da5 release31-maint +81019 03753316f81f7b137fd589fb6ca150123269c214 py3k +81020 6a2d0cc7d6049ca4e01fd5fbfed012adfed03c5f legacy-trunk +81021 303db226115dd6cdf091b02ba27229e72068483f py3k +81022 724e875b1941c57f1b21d7469c0f9a5658abd52a legacy-trunk +81023 2294bcf40e51957d180da1f54d63c6ce2c9e9e64 py3k +81024 3dc25d024a51c34b5ffc4642094c0a59c1c821ef py3k +81025 f8c19c5f5dd2483a0145d6912b9ac28e33f3f6be release31-maint +81026 d698fb056a459c9a2e40cc2644a4417c961a4f78 legacy-trunk +81027 b6e03ca8a206def331629908d8519992409a98da release26-maint +81028 19aac84ac1dadebaf8b7d6a110b8b85dae8fa9b7 py3k +81029 fd25030223b07027002e7d65956e4803cc706b7a legacy-trunk +81030 84baf6258c3bf38539752bb3c90e1e0ed7dbe151 legacy-trunk +81031 e38335d4df91de6427c9a21b541fce4f82d9565c release26-maint +81032 cab14be0ada159da9f7d94c5ee7c56e61e157bc6 py3k +81033 f197407bdba2f7d644922ef79388d5c8b4ac858a release31-maint +81035 5ea0f5858b722a12a7e9a915928b153ff481ab67 legacy-trunk +81036 bc0cea58447847f23d1b42604fdbc503420677fc legacy-trunk +81037 5cad10b277a4783137e8286bb3143ba990e5dd36 legacy-trunk +81038 69ce6c937d6ec9ee4f87a868d6850af15d876879 legacy-trunk +81039 43d0169df943fa0335e7cfff120f75efad5300d9 legacy-trunk +81040 313f85586ef8eb8354a01d154499e04372711fd2 legacy-trunk +81041 67dc0a98b8f6fc925dd73e77c0019d1da7575ccb py3k +81042 fc46e437227d6291d11f89fd5012941d38a53150 legacy-trunk +81043 5eb0e545161247cfe6fed207bcce1e3d7e43f282 legacy-trunk +81044 fb19ec578853339c6000a4ef8a62ef8caccdcac2 py3k +81045 488dbe262f681d4a18e918216bed3765115f2883 legacy-trunk +81046 7f5a571b1ecb8a288072d8ede7b90ae41a5406be release26-maint +81047 20ae83821ef0537292df1f0ab9dca0144f90da5f py3k +81048 8c499cb3723a4b09e53c2f3bda238ad5fd7e66de release31-maint +81049 736d6ce9b60baa934dd4bad8cd4f4d537ee2054a legacy-trunk +81053 945738e187263914feb439f22ad005bb4ff97f5a legacy-trunk +81055 6a8dfff6d241b50012b9075380659db533afd94f legacy-trunk +81056 e64798b36ea4def06a672af7714ab945a8a2d4a1 py3k +81057 da6cf8f3d8c2ec86d259828f3b2766952ca87abe py3k +81058 f025b6b0fe0f6f9bdadb3ffdbae4a75f071ca70d release31-maint +81059 3148d70528b6067165c70674eae973c37c9af385 legacy-trunk +81060 e7629efc55d007e5247f69d0473a8eae9a426465 release26-maint +81061 0f8507f549429e0c2a472c977e25793643202904 py3k +81062 bbe9f98a0c020cede667fea3d9186fe8f7ced87e py3k-jit +81063 829a86e11bd7e14e90dbd64b4b7c3184833ffe3a py3k +81064 f1358aa33a6e234fd175d4c67790a7e9f06ad87d py3k +81065 cbfd27db8dc27807f6997bccd85ba287f345abef legacy-trunk +81066 fc9e215969d836a2af30e1961e8a63700b8acce2 legacy-trunk +81067 5ab0443856cab8a2e5344704665dbff81db4677b legacy-trunk +81068 d604fab749dd7403bd8d423af323ce6380e74b2b py3k-jit +81069 c75512a85fd1aec3ba33ee7e6163cab47a226af3 py3k-jit +81070 b66ebb777568b0e9e20aa579bc1d72ef6f0a3425 legacy-trunk +81071 ba0fe024e89fd4ca5556e315d9d955de484aa678 py3k +81072 45408cb4b7232b9f24d9cccb2341041d439b1358 legacy-trunk +81073 649d6710a81ff756853064dc39acfad8ab33739b legacy-trunk +81074 f80e93582b7fe6de833ee3c4fbcd4def18756a6e py3k +81075 00220ebeed0a8f24b4cd7d035635abad4f0abf66 py3k +81076 8ac0f0db5f5975feca7ee47bce118aa8d3319e9f py3k +81077 f15d6f1a2fa30ed83d7c235e6d763c374af44cfc legacy-trunk +81078 1f69f2819d31357d4edebb267ee3efb449ef3942 py3k +81079 c0dd33a5adbe6c5a2a08264321d39b8082cbf0a9 legacy-trunk +81080 0ac11db5fc96e470539d2ecc5e2cfed59cec2848 release26-maint +81081 011940baefb0be91358201206cf4626482f92115 py3k +81082 fb62e3a9d886ffbaa1c473fb8815029a08853370 release31-maint +81083 9c321aaeef126086a3827c23e346f5ec30ff2656 py3k +81084 81a3a3226cf5dd45b4d72b19a8df31aea263d143 py3k +81085 9dfed8dd1c6d989543a424c408bb996ba7ec8c81 py3k +81086 353f40eed1bc6d4ecd7ff0e25785ae6fdf149be0 py3k-jit +81087 4fd7fea59e5b2bcf370a65299c14b6bb42cd97d6 legacy-trunk +81088 3e6ca4b03c79a4d4f56eaf690adbfa28a1949320 legacy-trunk +81089 811fc63190a7cd1a72d7ff5e7b816adbd4df820f release26-maint +81090 dff6fc3888c62e98e9c4ce01e5759907e047e6fb py3k +81091 86801d1d90386bab06aeea972bdfc8a2d137f5a7 release31-maint +81092 30f4bbbade0b7117b53791c8505cbb1dd5f230e2 py3k-jit +81093 4959b6f5bc86cdc507d8da64109863af9bec2c86 py3k-jit +81094 5e3934a31c8dc02885bbd8a298f4b1bdc18f4cd8 legacy-trunk +81095 af2f84e662537c39f50b8bab84cfd07bd78a9f5f release26-maint +81096 54dc10988f154c0defe6aaf66331e69b78ca78e1 py3k +81097 ef4de053d577f85fe8aff98c73f8c466e38ed00a release31-maint +81098 3a8ca67ae4311b049d1f998c569008141bee8ce5 legacy-trunk +81099 2a70c80349b0ed0a02eb00b7756129b101c2bf43 release26-maint +81100 48d9664c47a3f587313168f1578b4f29b9919f92 py3k +81101 4b10ef8a024cefa33077e1c3484c2e59a3f05cd2 release31-maint +81102 21a81c7aa4bc50f78a30078131eba8a8eee13820 legacy-trunk +81103 b9d4adf8b17e9ff0abbd571d7932525ffd15b8e4 py3k +81104 4b8963cf80b286d68e518ea6460b7fc42eb36555 legacy-trunk +81105 b7604ea2f47e7f5e07ae9f17060aa10f7cbf47a4 legacy-trunk +81106 73f3b885175db37e01a096157472daa2dd606ff6 legacy-trunk +81107 773714e5eaaec96301d1cd9beb26a1f39d0ca20b py3k +81108 2ddcd30533f72fd6076784f69aa08a18859fdea0 legacy-trunk +81109 6f47960b564789dcf8e8183a525626e865aba8cc py3k +81110 efaf62c2cf7599b48cf3daef28774b364236c87d py3k-jit +81112 5debecb48282daa0488cb7100eab25783fdac83c py3k-cdecimal +81114 b6464014caa07676bcf9cc3bc083e12d85bb77b7 legacy-trunk +81115 e1836a7b6b6e769c9683211356b9af574cf236f8 legacy-trunk +81116 1b3ebed8b6c652a5e6bad84ecd889e3c25ad2392 py3k +81117 013d76aa8951c2c4862e7d1a4c4e2f19f5277182 release26-maint +81118 330273ec602839abeb7824310f4b25d0641a6436 release31-maint +81122 c1ba8816b187e93565f728cc4586b39ca82f9cab py3k-jit +81125 9ec7acf0a005870fe8896e03d92b8895d76c0c8e legacy-trunk +81126 b554eea2610cc8d702e63323744106f4d533177a legacy-trunk +81127 91f462b904b1fd2868de126d3788ea65b934558a py3k +81128 34a686fbffeb9e5a65b33a9102e5384f791cb21b release26-maint +81129 1035a8fd7dfb95711c75458f300d02063fd43dc3 release31-maint +81130 06c6d3a67c17b1f879bfc16a4e8fade5844e6640 legacy-trunk +81131 2c29cd5668c772852e63fbad16d251af7bb47cde release26-maint +81132 e55632aa68e9742ed4eed9fddd25d91f085ef3b6 py3k +81133 90a9a34e5eb523c3eae2fc60e14d60783f39ff32 release31-maint +81134 8410f83fd159f6ee50870be9f24241d87d9295c3 py3k +81135 68bc35775d3134017581231160ec0d1bbe38fc06 legacy-trunk +81136 c806edf8d7340eff1b2fb675438fdbd1f1baf344 py3k +81137 eba49478aad965176aa0fa315466381e8b51e590 legacy-trunk +81138 431a151e102d526ce82ced534fbcb2e8550a81f9 py3k +81139 5361f6dd1399639c7ffa10b38b5635bfddb6fbff release26-maint +81140 ee596da862f827e6e99c85f3b9ac4df4222c0ab8 legacy-trunk +81141 6cbd4bca097a0afd39c8b5d0f784df5d46943c88 legacy-trunk +81142 1698c55b2af94bce540854b08753e5cb3c31d5cd py3k +81144 93790847174a747ad4c3fe3e7fed357f8601e219 py3k-jit +81145 06364dad8ddd15a4f041e7a6e7ece1d0d2f505db legacy-trunk +81146 e4f269615a25cce3120263053f1066a81e20f16f py3k +81147 b386eb83475f49f67af3dc7cecd8df42f89133b6 release26-maint +81148 da3fa881a800390520bffe699db144a3d6ac8e61 py3k-jit +81149 e096aae535b9b5ba93a7cb731c283cbf1bfb4b5f legacy-trunk +81150 2fa73b29b30597507b6fd068df32fac28a338b54 legacy-trunk +81151 cb9e09f3fa8eec3c9a45ba46efbd3d8d72042dd0 legacy-trunk +81152 31cf1b12530a9d0aee3c25dc83299dc980f742eb legacy-trunk +81153 ae4bb6701078e0e3bc45784b904a4e06e5644b63 py3k +81154 ca496bfacd1be5b7e0543a0af8a4ef19f076e71d legacy-trunk +81155 ccf1ca73c0e9789e5e684839c64f4d158b3d0a53 py3k +81156 9e5b73ea6a7ce1fa1c764574bd8421ef3e1fb15b py3k +81157 9f62f5865b441eb80990a7212983a932a43c1f91 release31-maint +81158 2622796aeca94ea2fb64ef3e118455e0577c88f1 release26-maint +81159 58a56aba0eb2c2e24b53ea9a51d6ff5e4a3832af release31-maint +81160 a6a67b734d8b3603bc62559371e8c4e17ff5e2ca release31-maint +81163 742f19b470204b85bfdb34f8f8c01be03e796412 legacy-trunk +81164 0cb0fad514f37521c66a3a79a5c7f008578fb57d release26-maint +81165 3b247af6cee792dccc446ec6c54b5b20e10d99d2 py3k +81166 252fe5c4cd53f86dd69ab4b2119a517dfeb99a9c legacy-trunk +81167 eaf81a130ad6c4499ce2d08cd41f31eea0de5656 release26-maint +81168 9ee228d089edd28f86acefc8c09c550fef11cc30 py3k +81169 2b0af69aef97d228ecf72c2a8d3177b14f0a58d8 release31-maint +81170 ab31b009a1ee2934b0b6e8f15cb7b6d8814a5757 py3k +81171 9c1a2bd51528c3a7d552c00523e35db2c880b803 release31-maint +81173 309d9cf8480850e4f8eab39ef99a29387fcf58bc release31-maint +81174 59ff7d812ae342f6514e03d17d451acac4839d30 py3k-jit +81175 2369d4f189e42c67744155039bf09743905b34f2 release31-maint +81176 114c4a42fc1d03073a3dfea1e3349aa9c820927c py3k-jit +81177 a814e7e72900faf48fd88f1071a2da55b4b6ede5 py3k-jit +81178 fde9b43545fbaf83c116a961e5429a6a6000972d py3k-jit +81179 e6bfe93b65bbda243f5332d0fd9c2cbf74344658 legacy-trunk +81180 0d028d3590da03d8957f8a53cbbeb883eee8fbe9 release26-maint +81181 fa902f8e0db0edf80a66bf37af46a1b78b53834b py3k +81182 0e37a95cdcfb5c73f776df08d75fe523b3b91ffc release31-maint +81183 772036a6f7ef02879c3c5ef27fce6d470dc5b415 py3k +81184 363effb5f727f8864d40d17e9444121c0aafa34c release31-maint +81185 edef88f6f1ab61127571686ecfd390c007347355 legacy-trunk +81186 05a2ab271b65f4836d96324c22adf0673d3dc87e release26-maint +81187 98c161040002c52938baaa8af60f78abe82e8d99 release26-maint +81188 d972d052ee2217ab38df0851552e0ea36b253db8 py3k +81189 c4e11b0c7ee5183bddc22c2aca4fa7f776ccc322 release31-maint +81190 47b4da86b9b9f5d0f288d0c428302e0acf514190 py3k +81191 ea5685d9940a3b9958b3e04752a08155814fa323 release31-maint +81192 bb9ae12633a99a84ab0dcceb15e65a5970113638 py3k +81193 f3ea7cd735ece741622a891273a3c0a9882be83e release31-maint +81194 b5ba7ea4246b2ce6f12f837b9d15917195953e27 py3k +81195 e909601e02199d2405876b9e15fc5f80e7a27297 release31-maint +81196 1e149b50aca618b37cc99b787dde33a40556424a py3k +81197 9311918c0649dc9869303338517fb37bc9e6725f py3k +81198 042e6a396a864472e2ec02aa5a98a4c94dc70886 py3k +81199 dcf47117158f0128199882f534f59c186d5b7d78 py3k +81200 d2e6754cbbd5e7447677dbaeda480ff5506e3fe9 legacy-trunk +81201 e4dedf54c41e2412899ba7b0170cdfbf3c395d95 py3k +81202 9ade3e623710f048de9ebcefd75d069fe58d9a6c release31-maint +81203 ef0f634ad5fafd7b5689f9fda3d370494bf90833 release26-maint +81204 99383f1bc17c8f5155a608af14871efa770f610f py3k +81205 a0a5359f8d1369f2f5ad3d3a3e68858b8d7f00e0 legacy-trunk +81206 186890d7fe724361aa8a35b802cab01ee97acfe9 release26-maint +81207 cc9b8280e3f5fd0afd8b389f79192a75238210c3 py3k +81208 7970c499014427c462cd542d43848a86f3f0047c release31-maint +81209 5468f3aee4ae1b1120c1cdf4a32099bb198b5cd6 py3k +81210 f59f3c73734db3656002cd78ee974072f7c2e55d legacy-trunk +81211 779dbc50f1f88def72933e3bc0951efb2267664f py3k +81212 92d1c8819071fc2b1a82900e486968b2bcb1777f py3k-cdecimal +81213 4652fe0c3b8974afd0869015e9cda3200acbf2c5 legacy-trunk +81214 ec19919e27cfe6904d7c69480cbeda3ad72219f1 py3k +81215 7f053e25b3352d4a6c8d5f3ee339fcc5db4ca3e1 py3k +81216 378b1cd8472eefb1dd0a0668a1ae9297631dd141 release26-maint +81217 9e4385db370ed87bbab280db6d784189386bff22 release31-maint +81218 6990c6db7c3994c8844d46e6624040f8078eec68 py3k +81219 4c958e4893ba69f819a6bee72f1316c00aa7fe41 py3k +81220 1d4dbfa8ed4f2af5bdde0e4a644247c2a537dc6a legacy-trunk +81221 cf26f011496ed2be3d8bf2b30472a44b0feb144f release26-maint +81222 8002148c1a1b7da0f90c9c7b57ea4a1328ff053d py3k +81223 ca9d2f0a8b8acaa11b5c9d46972066c2b4fc2246 release31-maint +81224 f36e0e2daf432e6fc394a22eab3d80d8e39bb420 legacy-trunk +81225 f350acbce790f1e4c2c7bad1bbf1afe458aaee78 release26-maint +81226 f5c6455c143c675473a9a7e75702b4842c15ffc4 py3k +81227 6886ee9cb72c908dad9bc7b362c0d6d1245b23b6 release31-maint +81228 d08da4544e312148dc1c31ba83b065b784084355 release31-maint +81229 ef22dc065e0e11b43b9afef1998b4c333b130d15 legacy-trunk +81230 e57650a4ca81a6470e3dfae041fdcc3d27bc6892 release26-maint +81231 967826dd5fc6c13184a86bc22bca38a8dcd62ef1 py3k +81232 844bd7b8421b73c3abc1b9d610248325faab4ba1 release31-maint +81233 4bb03cc1d421f6ce588365af979985421ef2fdb8 py3k +81234 b29ab4e767362eb4dca76172d0a72ba02f883bab py3k +81235 2ca4626d9c930348e6522e7235462bbbcda1318c py3k +81236 e20a677af0004819cf084c243a17990206a20ab9 py3k +81237 08abbdc99be68de742c9dd6502d125cb3a7f4f93 py3k +81238 b4cfca5c428e52147aeb00645c04c28418bdb5ee release31-maint +81239 a09eb3d59ff7f61ef0ca641db2f3ea8846d130c7 py3k +81240 f837612007dc9ab777707918537037a3cdd14eb3 release31-maint +81241 8a0079d8d1cef4393dccbf70941948c9dd7d7cdd legacy-trunk +81242 7a7ae476df4fe042505be9d8a65714bab629b306 py3k +81243 c17783aedcb88abaf9d3a33c11f3f0e7abbcb54c release26-maint +81244 8b6401ae126278124d60a77211955f29a08fbf24 release31-maint +81245 3f1a6b0b790c7dc585e43dab62850e19c20b2e0a legacy-trunk +81246 4d27e880724abd1e18bb46561107d7210b6d533f py3k +81247 bc00e463a95bf5edda260b5ae5676a713c81c603 py3k +81248 a33bee14abc51b209327c0a957dfd6b8bd2b0239 release31-maint +81249 dddd1bc7e839170e267b8bf469623ed13a5448cb py3k +81250 894c8e42074a93b1ee05c6deff993739abe9982b py3k +81251 556961f4f16da712c83d3892b0f1fa68ec2ba94c py3k +81252 f3f95ed82744db02e5a12429e71e7f97782dc2df py3k +81253 31cee2cf7c376aa33ec12905901886592ebec908 py3k +81254 ca81646dd29cbe72c62d4b5126a068764698a721 release31-maint +81255 d293991009738202397075467fe94e08a0f0e826 legacy-trunk +81256 d12b65a79824f00c8ef5550dac8b61f323dfe04a release26-maint +81257 c86eeb733316ba34effb80a7d2e315e4e5baebc0 py3k +81258 93a2516987e00221187a8a19e09946c1eb3c76d1 py3k +81259 0b04c5ca577d16d4773411b3eec82d56d08c655b legacy-trunk +81260 76643c286b9f05196db03d8851796fadb7211360 release31-maint +81261 b5f2c4421a3186beee456107662393b695ccc179 legacy-trunk +81262 09932653561b9de47dff24bf496392a74305722d release26-maint +81263 ec595ff257e06401a523b042a7099d20d3976d6c py3k +81264 ff4a968ca7bbe76e729629e35d90c8a39846dbee release31-maint +81265 c981f0c8678b49875f96f752a7dfe59927604c9f legacy-trunk +81266 39eb91a5f9dca836bf2aeba13f9d812ba619ad44 py3k +81267 d6cb2f10e65ef8734928fc6aca60ea781944b659 py3k +81268 b9a0f26fa2c96337d1197bd0685e194a731401d4 release31-maint +81269 7f64fad177dd6c6cb9c14e43aa8b2da26e92c69d py3k +81270 f01ab1b13d0ae77a32407e18e038a54a224ba600 py3k +81271 8403f506d9e54a4778beadbd8438bbeea9639fe8 py3k +81272 de7c8580f9ebe66032096849e726024ad464eb01 py3k +81273 bf14b9638c73a5e9a8e0232ab417e81dc7f8ac50 py3k +81274 5dbd2c29b0e96ebe03d6b8e1822da52a5a11b738 release31-maint +81275 f0fcd69187cd26d0776c9449cbbe2cf22b9c4aec legacy-trunk +81276 dec88702c9bc736d3345a8a7140a9a634eba4cb7 py3k +81277 1757bbebf75adb161f0dcab9298cc0c60c93438f release26-maint +81278 82dbf93f760f4e8801eb65fbad233e0919372952 release31-maint +81279 e746685445deeb1035b9b558ceec0579f6ad9358 legacy-trunk +81280 666607ce4ada9dbcb94f5dcd2b71fe035f6c1d5c release26-maint +81281 455d3fbb14ecb75acc26de04c3880e856a440919 py3k +81282 871bfa1fda590d12b73c5ff7fc3eb928f70abe55 release31-maint +81283 f1e37a8fb2d12b899a6a01640b56a15fece9f323 py3k +81284 1e52bed877c177f645883b06b1f23c09fc1efbcd release31-maint +81285 8da088d6a95b2f1ed78e3c935eb714560bf612ac legacy-trunk +81286 6b38926a5fcdc4eb7aa737e0fbef92d9760e4af9 legacy-trunk +81287 80dc570177c668a62b1262569176315eadfd8f3e release26-maint +81288 197511c4b75a97a3c04a67b1ae943f77668221c2 py3k +81289 ed0a69d66c113508b76fff0b5a32489fc5fb99b8 release31-maint +81290 bec818a76902a2f4ebfec8552e93bcbc93a833af py3k +81291 cf74ec3e1f82682832cee6f2145f2f1192ff4950 py3k +81292 613b63f58bebf2984cfee2d491e3d4c318f3a8fc py3k +81293 859b838ecf3db65efcb7dd91e7767cbe184aa490 py3k-jit +81294 d7d8046f7a52ff6449c4b8be47561fedcf6cfbef legacy-trunk +81295 e8edabd5419b3e346b795748aab727d5f67dac5b sslopts-4870 +81296 b75e62fcae81a7273b1d72ee6032b7fd9a95afd9 sslopts-4870 +81297 28590d5b6b8b0867e8586683dca0206338b7b033 sslopts-4870 +81298 f247146f8a959efc7229c70c14eb47c7f75f5ce4 release26-maint +81299 26d7605203dcc207309c86530cc7946cbfe8ab5f py3k +81300 15fa59fc149dbcca99e4604cfc5bf9c5255d4579 release31-maint +81301 5f31350afb6098ad7b5c6b3e7b5f383225405a16 sslopts-4870 +81302 6391055efca0db960ce06c06d8c4bfc542533c0d release26-maint +81303 1065d1c53309aec4cead56f295fd5cb8f4adae50 release26-maint +81304 f14f42f32922e3ec99f8736918300688ff06060d release26-maint +81305 c9ed0c3f6dcdd7b1df64ef659e69d678f28b8ca8 release26-maint +81306 c99fca03fa378e27ed87474b5909309992bc0bef release26-maint +81307 18f62a7a7dba8237b6beb5d409ea23842e50c5b0 release26-maint +81308 f76f81044d4083d53a8f9fac69c824c0800dd461 release26-maint +81309 ef72f15864a998f527caf47eb97fcbcaa873be06 release26-maint +81310 05269573d2172f0c4455f677cadb4f5298b06440 release26-maint +81311 c1c1e8c8dc9cd1ad7472f9f9e7f4f016f13679ee release26-maint +81312 6841b2a16a51d5a595231d9a00fd35f0122f4041 release26-maint +81313 ce3809b834736809c5b8fe9bb606a0e8dda20ad2 release26-maint +81314 7fc48ad16087ef3cc2605815818952cd70861894 py3k +81315 7f15a60061627df9bc5714c0299cd54934d6344d release26-maint +81316 aa777d43f22f5e9462b5eb9d3365308eca96e6b5 release26-maint +81317 c8d166ec54301df3742ee8d38587bb0b60a34748 release26-maint +81318 75d7396556fde833017a1062aee28feceeb381d3 legacy-trunk +81319 942b3c168f15daf58b646b489e15180d0ce00c25 py3k +81320 1504cc5a15a1c4e33f7c3bc0038eb81853cea676 py3k +81321 846866aa0eb66ff7af9cd86d69b4f5a5bde1e7e9 py3k +81322 9999974ff50695bd5f03fe85b963cc772214600e py3k +81323 7ba851d1b46ec4f40d00e1c7c857f7a79c522604 py3k +81324 89ce2f6d4b24174bfa2cda62359cbc0db3597e16 py3k +81325 7dcd1a269797bb0da3f0edcf37e3225fa9a088c1 py3k +81326 81d78dd273b09f0d683788869c66ecb7e29212dd release31-maint +81327 8b766ec69685d4f6cfa39d93fa75cea26ba297d8 release26-maint +81328 9a23309dfaa3199415cf6f70d5434f6beeec4ee0 release26-maint +81329 b6d2a27c3e3b442e482725b8559cf3305cd8fb38 release26-maint +81330 083f686aaf15a4d9956eb7eefbecd84482c91f7a release26-maint +81331 f37ecf4a8ff10ae8e03cdfea1bb5da46c9e8924e release26-maint +81332 77eb1fb59c7807ea8defec0a9dfc70d6730f8c84 release26-maint +81333 3d0ae8ef0044628ce39fe57a8ebb649faa9d0bee release26-maint +81334 28bbd31cbcab6d696190223c33d393715974203a release26-maint +81335 f5aae85b6864e694f5a055cee30cc8c5110b4d5f release26-maint +81336 7f10aecb06322b33bb25e0f5018d4bf6a8bdfa77 release26-maint +81337 ae4c931a71f06969577262a8a558fe912a15d566 release26-maint +81338 1a34de0429728707bfb0e80bec25ec044077f869 release26-maint +81339 d1f265cea70b7436a9c058cfae0a328e33ede3c8 release26-maint +81340 a72bc54ec71df861bacc1389500bece0bc73d2c4 release26-maint +81341 6ae073326e7fb8245f814498de1d0c109f614549 release26-maint +81342 f490d158198adeee152bf8d29b4ac868a2f98ba5 release26-maint +81343 bf4e83de4ea5298a8ee818459e6dcce3914f3933 release26-maint +81344 07410aee7fc0eaf8c5b5979f8567189311dd2410 release26-maint +81345 34e8bfeb0b9879d11b7f30fe6f111a9d51cea9a7 release26-maint +81346 5906a0fcc826b51f28dc33ee72fa98ff2eace61e py3k-cdecimal +81347 8f6e67f693ff5e36c7e84815765166755033d1e5 py3k-cdecimal +81348 65b561f396793c4d09a116d6171614928a56a677 py3k-cdecimal +81349 e023ad3e2caccb25279a44c1f931a019c0768e67 py3k-cdecimal +81350 8c6f981699e825ac0ea5cbda071eedc8dbcb3f58 legacy-trunk +81351 68525ef36b668c357e05f8f6aa2d081f49e3b6c4 release26-maint +81352 4bfb00ce12b859e95d1425d46d5e1d0354fae3e6 py3k +81353 49d7de9d7b1aa01825c2003c269736662285b852 release31-maint +81354 20a356eeb0f70103deb151b4d33d25a4ab3eb0d7 legacy-trunk +81355 21bb93e0988c41b81b0358bd077b0c57aba5a72c release26-maint +81356 5bf4a8633c58b855b0f8c73e37de766e50a47773 py3k +81357 eaea808b7fb8671a884d1fe2dd17a2cfcff8c42c release31-maint +81358 b7f71f60437b596c55adad00c28a3a4b2c600981 py3k +81359 0cafc20e563763465cc06df1a0e4d7e3d62f6e99 py3k +81360 e68e028d091e83540d1940e9401545be519ea891 py3k +81361 e5fde7ad1b7cc69402383066b694fc502a86ce0f py3k +81362 ccdb09f79a038555cae4e19142d761fd08263c17 release31-maint +81363 ba50888cc03914fd001401285d8dd088c5a17269 release31-maint +81364 deed5fce82d6069f051ad1735f2c6abd38c732ae py3k +81365 c1c77674dbc8c29d17dda89d913f5eb1bb8ca277 py3k +81366 248a915e35ef0161db7e2bc1c8eb3c5d4ec064b6 py3k +81367 23ee8aa857ee36b997d0afc7caa2a86b4f2add9e py3k +81368 82a4483d9c4a9427a2f4245d6081df2281a5b43e py3k +81369 1f3e7812612b8ba126ae2a8ebce1bf7c25417b30 release31-maint +81370 743c207dc2b42056969b8f5dceba9bc1a1a2447a py3k +81371 021f5ec5d2d4fe37d10fdf251a3b15a9b10ef373 legacy-trunk +81372 18dcd903c55e15b2453da84c353d8a066bb80034 py3k +81373 da941507ed93c44c403c611f080cd6775331995d release31-maint +81374 b84f8d1a0522c6f9294ff279028f7d8bf217fa07 release26-maint +81375 503afc62d632e178f86fcb61141404e180cb59bf py3k +81376 fd72af0060c8540aecd9540c4946f327e76409e7 release31-maint +81377 5d6b76890f17f880fedee0a004e82c6507c2a3dd legacy-trunk +81378 129427b5e9141ae8dc628c2d1f5f0231796b9022 py3k +81379 4d83ba5d0af5b4581808f08105c9cf8b01d6140d release26-maint +81380 62c0e5f14138f69610f21abe80f594e0da5c4b40 legacy-trunk +81381 55e2368f72f274e6e930aae524a2b5fcff0c7cb5 release26-maint +81382 d93bd525473c5f68781bae247bb956c217517a46 release26-maint +81383 3271af035d0178cdc55f9a9b3d7e9d99d62cc834 release31-maint +81384 f2d3bf9da9a8154a6bdd2cc9489803e2db7a45da release31-maint +81385 6fe260bc0987dc2c3cdef5f080be0a71b949a8cb legacy-trunk +81386 b3b265fbaabdf9eab42c4da604418c107c9a2d85 release26-maint +81387 1e6b435e8eb6a5281bead760a146659061ca950a py3k +81388 9dd522f7c0de21cccbd164eed7d026eea931790b release31-maint +81390 7d4ee0dc87644017efd5307479ea920cd2dd01ff py3k-cdecimal +81391 4f9db35a40861db7f77553856d1119b7a16ce6bd py3k-cdecimal +81392 5ee47f0b26b02a07c37db56004500dcc4ce58479 py3k +81393 2228c25cce3e72feb38668ac28f5c0c32be55cb7 py3k +81394 37032b2a592db0234af16604b000d16438221069 release31-maint +81395 38719f11619bcd8915f5d22ad49ae1e0ea4eb2ec release26-maint +81396 e3daac066b92e78e2bf18ceff94bff8cfbba0af3 release31-maint +81397 d6016fa58df6b5ce1f37a59f613d95769f437c0e py3k +81398 c2917ac5d526dc4d3f62bd61d3aa808589439080 legacy-trunk +81399 3f08d98c8fa5f0716335c16d40bdb3f3294fd2cc release26-maint +81400 795762b5e0d6e6b37ede8e1ba7fbf923a0f6d415 py3k +81401 9db8c414921f7026dd34be60988d2e9b38d84885 release31-maint +81402 e1940ddb3f565a6394fa5d6a7c61a10415e40a00 legacy-trunk +81403 441491572fce3ad8dc90e2b548ec5888d2c5c55f py3k +81404 b072b9fb0fd2decbe04f13bb4aacb42ad0b8cb9f legacy-trunk +81405 f138d1bacfc428806642001499bc716d33db406b release26-maint +81406 de61a69712dad7c45afca3f272d1dee4fbc2fc99 py3k +81407 6ca2e6b3bf31779e6e05767066838effdb655343 release31-maint +81408 73416b1bbcd5bcaaff227b5665416b6fb322786f release31-maint +81409 3d64d1afe6779a7304b0dbdce52a1bc23824863a release26-maint +81410 e1f4fc63d2b3d2be4af17df5556bfafb9a617c79 py3k +81411 506e9be86139384e5edb07b084f6eeaea0d0ffc4 release26-maint +81412 e9a042a25197138f6e2308f7f4baf6a66c220b40 release31-maint +81413 946cc5ee295110f345d53ff62f7cf9fecf676d28 release26-maint +81414 0f096829fc90b8b35d9335877c0f500ad1828143 legacy-trunk +81415 ff3c676613adb170af80a1a32556311e8c1ad9a0 legacy-trunk +81416 8542b77a28ea96586c0081d65a3c4c52c80dbe7e release26-maint +81417 b0250ffa226775defb35edbe390c887a702bfe06 py3k +81418 fff29d3e7a39215b17db89730a610cef0b64120f py3k +81419 1b0467661ef5a90f41f86f5200a28b4ec6b1342f legacy-trunk +81420 fbfc353647e3c1b35f8fa291c513457e0f605d33 release26-maint +81421 29b56c38a033dcda10c761ee4cb131d33d8919ae py3k +81422 abc3f5a1cc5e8cacad35d15ba5ce3cec73a5c6ca release31-maint +81423 06b09376cc5b042ce0d161b30344a5d8cc34e553 release31-maint +81424 eca98bdc8a14f40b232a384e2e19bb9d952a76e0 py3k +81425 23e38192af964883fdd6e1b46c962434a6ed6588 release26-maint +81426 3163da22d58502acc7dcb32c085de3803036394b release31-maint +81427 8b2d9d101c85a4966fb2935a4e71a99e0924684e py3k +81428 6985c6b9d978e5713a35019009014daa16f163bd legacy-trunk +81429 b14f39d0f20a2dae54f4937a336a2a6274684eda legacy-trunk +81430 6a08eeb4b3223929754ae7ef5071d6bcf2c1fcf6 release31-maint +81431 febd9c288e76f80bc93af82197d8d413cc571c3c legacy-trunk +81432 f05d2996776e0ef4f3683fe21ffa54bccbc51733 legacy-trunk +81433 11d58516033f7d54329e0a6e6128d1b2e2f54cf4 legacy-trunk +81434 5d674970acd9a068cb71c52b7b4a20ef8bbe3cfa release26-maint +81435 495ebe04d4798cbc0f686adc847825d920cccc53 py3k +81436 6ef7cfb1f8f4831c0b005ec32d52b6de44c8c880 release31-maint +81437 8c8d40ce5ca15a444cff9c6e1315d60f8bc67e03 legacy-trunk +81438 f389563ff3723e6265cbf05d7837d3ea91541849 py3k +81439 e20eae3b5fe4540a76a304cae9d51ea45c997a8c release26-maint +81440 c0dbfb6a7d567303c7bbe38a47d9fe1b5425a11b legacy-trunk +81441 3a6e9637c33dd9be3075991d5fe3f767ca9adccb release26-maint +81442 a9cad5ae405d8d2a95f8caa1cac39f95b1f2950d py3k +81443 72fa00ac38be3e0dd86ae78608376a92cd8da1a6 legacy-trunk +81444 52495ccf61cc88dee735f2bc15d6741ff0cc3a7b release31-maint +81445 95413ebd4081363883e25b241df84495b070a9b2 release26-maint +81446 2d0b098f6cb7f9870427ace93348353176d517f4 py3k +81447 194f488b8ad1a77b45eb89cc4e8ac814b0dcb5e2 release31-maint +81448 1acca9c45562b8ef47af8caf6064eec67c1369c1 release31-maint +81450 0e26cb976c4d90bbdd38a792297464790b6ddb43 legacy-trunk +81451 0f528ee15ef72060b713611ca46631d7488913ac release26-maint +81452 022c93ed1b8e8f4bd68a44f67da82379123948fe py3k +81453 55e819cb5361035925c82d64f36744aa9447a744 release31-maint +81454 c6dfc3dd2d5df4a1fb31d4a99f4f1ab061d43167 legacy-trunk +81455 2ea90920cc10d3a1981d3cb41e644ba7308a39b5 py3k +81456 14d23bddf793334ae69ff93133590eb7d40e944b release26-maint +81457 815ba3872f8504786880f520e200d190b2f308c4 py3k +81458 80be7218767b712b7606c62bfaee0caae8ff75a7 py3k-jit +81459 99e9ed214aade6dc03ab4329cca33a20f97cf653 legacy-trunk +81460 2a389734d57020b9260fea765a7de9cb3ff4a1aa release26-maint +81461 1af27350f41bc6fca7e5a46f0469003355e195d9 py3k +81462 846dbcf970abea5c85e3374938166ff9050691dd release31-maint +81463 b739d3034ec751258665149a816d6cef1532982d legacy-trunk +81464 9a0239c0ea3b41cddb9d0c92ee402bc7cfbecd1c release26-maint +81465 0a647d08e685faf0b977860c73d6e2fe9da35a09 legacy-trunk +81466 f205d66056f89dd9cff652923942f3116912356c legacy-trunk +81467 755a1bc56326ee05a7b3d50eb4c283ef41568798 release26-maint +81468 d6a88969717f55bc8dff70c90bebd7b8d9333e73 legacy-trunk +81469 63b578d833ee7ad93e28a3f7c578a96db18fc73c release26-maint +81470 356a6fc9e5785c3f6765462b1994f6730331b598 py3k +81471 bf82c1d04e06cdabfcdb922815b14bd412bebd19 legacy-trunk +81472 9726c217388582e1abbee616b13ad300c3333b7f legacy-trunk +81473 ab082e387dd5ce29583ecf1675f2c950cb37aec8 release26-maint +81474 830cd89b01e8f04f5e123efeb67392c64441f745 py3k +81475 cd4936691163fdc29a444eaf2445ba3d54e7f29f release31-maint +81476 6fee26c89f6e4b2a7629066e3049374c86aede52 py3k +81477 6dc9ec88546391c731818abc67e71e7d61100190 release26-maint +81479 ee76f0a065c24c9fcc29d4ea3d2e7915bd9b7847 legacy-trunk +81480 1e06a6c312341a31fedf86a702bf4f3889142fc5 release31-maint +81481 69207f801b31664543ba491b6acfbf012bb79a33 py3k +81482 4e495263611345b7840f1eab9e2bc47b34f5b7cc release26-maint +81483 54b51abb695124dce712640f079bd097277d8b1b release31-maint +81484 1e8c92316463474e6aba5f56673d1823535a3bc4 legacy-trunk +81485 b0dee32a1c6b095dfaa937a973d38b6374a048d2 py3k +81486 0bc8ffe6ba9ac85dff85e122e28d475d4b143e4e py3k +81487 a0a6e8bfaaf72a09391a518c2bdd07dca8e56c5e release26-maint +81488 dca3cb19dbdd47125a7aa9a0622a7d534567e206 release26-maint +81489 21fa09f250e3006cdc0bc52859dd533b015e5759 legacy-trunk +81490 40cad759a3554755cde7988fde015163b9509f1a legacy-trunk +81491 7750579c375da1d92889468c070ebaf20ca23318 py3k +81492 e64ea1619820c0b9a3fd550e491591c1c486e326 legacy-trunk +81493 036017f2e74c6a46e49e26b76e13803e484d11c9 py3k +81494 2f24a2ef7331c62edf160925221d3413c75cb326 release26-maint +81495 8ad61780535efb4adf840f777df906887d3b22eb py3k +81498 b038fda593f6d58e1e95365f1e9dd0c3d35a26c0 py3k +81499 c56fb63c648f49832694c411497dcce2f6bbc41d legacy-trunk +81500 ebda6803f8d5c3e1a767ecce111cf50f338f56d2 legacy-trunk +81501 90d6314684d43be45e59b2b3e8b60741f9269a5e legacy-trunk +81502 e3b5338be058891bd952ffdf6792166c52842224 legacy-trunk +81503 4be21a08dd70716e68cc64365cff3ee5d3a836c8 release26-maint +81504 bf04eaf1af748a83bd742efb049342badf92a998 py3k +81505 6144760e8350d4c3b087d9f1638e5333061483ed release31-maint +81506 58491911182ce13c2107a9897f57c03b3393a810 legacy-trunk +81508 f90368c87b33e68529ea10bfc717c4f4a4d0f2b5 py3k-jit +81509 a8eab670326664cbaa8cdb183447a8f1dfefecb3 legacy-trunk +81510 693e2bef4ee3bc8204b35d7737ee74bf72f3c1c3 release26-maint +81511 7f41d75ad435d2d836dfc7c8da0d1c1d7e3463ac py3k +81512 b73bebdfe5259c2ab7c39a8d77353b3a10c7f16b legacy-trunk +81513 703287a99939170fc0312c327fb726c3c618ecb5 py3k +81514 4e00914ec447bbbff575841b01f50e5bedbee9a2 py3k +81515 5bc4fcf04143d6c5d29924b3dab44e8409486fe2 release31-maint +81516 ce261723b3562baba8d282b45aade8e9fc51fbde legacy-trunk +81517 7819ba77e45c00063c6ae3098d27113c4c2354d2 legacy-trunk +81518 2297cd57d945f2fa9c4b6879b38c1c7604c39e98 legacy-trunk +81519 22cadf264ae5217f239e4eb396d33cae686bacc8 py3k +81520 13212d74ce008e9084e9cf19f304629e9afac715 release26-maint +81521 54b488cbd37e39141a6fa16830c35a649ba5cb4f legacy-trunk +81522 761ac9703a96c141f17330a12488885e34a2e2c6 py3k +81523 e8a9393a0748d5d504290e0d699244a20658d465 release26-maint +81524 d09c9a937e10bf6a712fa9ca8f2a0da9e47292bc release31-maint +81525 8ac3d527745c4e3aa7d896f91160a19ecdf18910 legacy-trunk +81526 47080080ab619b571249802851aad2ab3a358cd0 py3k +81527 44f4222d91bd70f1d0891d713af5cc9502a1867a legacy-trunk +81528 6dff3d9212a865c21283a19e7bcd1a07af8fa31f py3k +81529 55dc9ef15ab1a245f4430d0d27ab536f3e9977d7 release26-maint +81530 82c2426f7f3e9a07af921434ac3e33d84ffafe84 release31-maint +81531 f1337fe6b7b779ec23051134ef3542927fac8e44 legacy-trunk +81532 e4af702d61b7d3cad77b1550773a2fd2623b92c4 py3k +81533 4c2d6e1b890ed6cc436ac999aac526fb1cde27dc py3k +81534 93c5e6241309668092498c929d3a49946cfa9b6a release31-maint +81535 080e550916edcd9a84a6cd5e01bdf15cd2fa89cc py3k +81536 f788aff572d11c9598245c97c264bf18c6e8d590 release31-maint +81537 bd5f5df7ed7894c7aabe9a3f4a6dce4d4843d3d3 legacy-trunk +81538 6a3c2f094bbad7c7ba286330a1ecd41f019a3e0d py3k +81539 8dbbd90eeda86e7c6a125aeadb86d4e91e78dbfa release26-maint +81540 9f79cb98d55f44edaa9913667382f920c4cc6c7c release26-maint +81541 81a580d947ef4e8ac88f96be200774843c3c8968 py3k +81542 19b3e4853c74322c0d7a98dfa788d4ddf0b9aa64 release31-maint +81543 49d497790607f92eafa4fc78b75d2fbc9f4ad8c8 legacy-trunk +81544 702d261f3a29abde1b8755c2e304ef46f80532a9 release26-maint +81545 9aec6ad53a1b974abf104f34fa19fc848fd8d6df py3k +81546 9b8b1403f8dda8540860645c8fd15d9745a20368 release31-maint +81547 4f982e94ae16aabf204d5db236a7dacadf1aee06 py3k +81548 8328c5c3272c35104209ee24ad44b095483159da py3k +81549 602703d0560af53a0dfceece394a8f00bcae6b00 release31-maint +81550 fd99467ab4d596502ed3d667f595bfd33332814d py3k +81551 56a54936da1dbd492e1b6266e672786565291ad5 legacy-trunk +81552 c4f73975a440a92de180857d1ef04edf7ed7a4cb release26-maint +81553 e3ad1b8c452128fd6be40899e67759e963625e33 py3k +81554 8180abbd07cb2e60afac25a38d96ec47bbae418f release31-maint +81555 4745e13aa9e436429a79cb45a937aa377ddbfc6d legacy-trunk +81556 7cfbffa6a30b282ba4ed64e5761f69e3a56046f9 py3k +81557 c42ffb3d63afc78a15d4e70d2bb3264e06bac1a0 py3k +81558 3f4d2a81810c5cc7cb13e561d725b6349c5e163c release31-maint +81559 1307d978789fefc3dab111060b84aa3bdde41c2e legacy-trunk +81560 7f312f60fdb0518d555d9c8e0e39be68d4bc09a2 py3k +81561 01482700434d8a09a3e36233c77892b7ce36ce22 legacy-trunk +81562 555ff58cb7cb8a7ae34128f456b2ef353a0f43e7 legacy-trunk +81563 dda0e1add8b3126b13f61ccaac4b063e0e963c84 legacy-trunk +81564 c27ead51c7dc632319ab35a3c496f211f5d1d636 py3k +81565 cfd215d9499c3ea1fe53219b249b953e06af683d py3k +81566 311a253b58b75d10bd04f30c01dda2300b064be2 legacy-trunk +81567 96a7a3cc5897eb408ccd494336c2922880d1a71a legacy-trunk +81568 6b89de36a74fc290faaa0ab8bd50c4c597bab390 py3k +81569 0ccf0fdc596652e131b86835e8fdc531378c7467 release26-maint +81570 4b142f7b3812d099cb864305cea361eba9dddfa1 release31-maint +81571 5ccc71dcb5dea4417db85b94986d1b90070db05d legacy-trunk +81572 c9beccb63ea909a43c037df22a30f4bdaa8c12fa py3k +81573 f501be638878a15b2fcbc513591f99fd73892a63 release26-maint +81574 25f2a0f0e9debd308a221b9baaa972275ae9bac8 release31-maint +81575 5cc3a0c14802ebba05060aa274541e3239106a79 py3k +81576 7fe9b790054badb8654e189a73dd2fdc0b85588d release31-maint +81578 9526a908a258db866ba65e728caf90042cbc000e legacy-trunk +81579 1a5928b2593c90f768cc31334e7b8a973c7b4fca legacy-trunk +81580 bd9cb24ba68b42d530fb9c719f469eb8d4a35ac1 release26-maint +81581 62194155789836ec92561558b0c1ae645fe04456 py3k +81582 7c947768b435d9389996dd5acf3f8f8e32d72d64 legacy-trunk +81583 f12b01e68f644fc20dd98b9b449dab28681246b7 py3k +81584 b697e21d1e7867f922a295dc6d3fcbe32cc979fc legacy-trunk +81585 f000754c8943e180690348819f05f0bbeec8e142 py3k +81586 4415599b70116fe49149ecf644a16ec20cd75d78 legacy-trunk +81587 2cfb18f1c2933cd509a5a4a40f0b736b0e2bf572 legacy-trunk +81588 308edf11c7cff6852a61417c20545191f3334270 py3k +81589 9a04bdc4808983f2f17aa9596c145b911a1b9d61 release31-maint +81590 852d5ea625e749523254ad860da626e21c5f8974 py3k +81591 49ab5dbc4fac9c43b4b4343426821f8e2a52bace release31-maint +81593 d5c79d89b393afe6f6cf6ff6aee9a48170e0ba7d legacy-trunk +81594 2b587e7f0299b9f8d61190a194a087854dc73227 legacy-trunk +81595 b799f862fb218b42bc7c74c252b94219ea455671 py3k +81596 322bf4ff4d3d6efa5448c2ba99a39429cefbd6ec release26-maint +81597 a91747336eae6024f66386180c74c3e94e8d37bb release31-maint +81598 0372b4c7b9f4f6a27f3dae8721dd4ed426319367 legacy-trunk +81599 164193ade4baf0e746531fee6bafe3fff6c4aa0e release26-maint +81600 63e78fcf7f94ace661c0747e8953fcf22b727027 py3k +81601 a7a9b58d1c186752807acb3a83ba4bef3a679f09 release31-maint +81602 6e71eca6278cb57583192b88a90a7c9b69d1c8e9 legacy-trunk +81603 5d43b96636c8887fcccba229aff4bf57973bdb30 release26-maint +81604 0470dc63d12a9803becb0620b787fa319692bfc7 py3k +81605 9fa5ed4ca0bb5b48ca0e3a7ceb5fcde91a7f45cd release31-maint +81606 ed79da3a591c4a809b8624830ecbae8d6e312974 legacy-trunk +81607 6b7af5a25d2e8d2a3c048c5efc68f7b539ff26d9 py3k +81608 05d6b25dd19715ab8587e8e7b7b89675796fb49b legacy-trunk +81609 9a4b02baa7c43130e8e2b0bfac5735da5fed347d py3k +81610 3edfad2549c6178da134748c893d7fbe3dd814c7 legacy-trunk +81611 5833795061c5d97085e958c7346f1ac477580b4f py3k +81612 e766c0d86cff9d1e5ba6e3a57ccdd181d0fba503 py3k +81613 66b3eda6283feac6a9a4031f3e03cd5972e8b43a py3k +81618 3242a0d22de638ab72dd419f9a4a2d2c9ed744fb release26-maint +81619 cac00cbbe77094339ba1abc193edf1bd2e2c930e release31-maint +81620 b1b317758676532c652e3fbc0bb70de61635a901 release31-maint +81621 7945045c3a759205e25e157ab6079be951c7ab70 legacy-trunk +81622 c963478b9092decef413cf60a99290d6a9d1a363 release26-maint +81623 8e21c6831c7fa6b3f9dbdcbef51361911f0bd7a5 py3k +81624 8a13f773a97639e98fc7dea17d857622d16b74ab release31-maint +81625 3e6425c221ecfc5a5e06008fa3d3ea2e58b82380 py3k +81626 ebb9130ab0c458faa06ef5314949d6167cf75b9b release26-maint +81627 57b90350372f8c026f6c6e580aea0adb49398ac4 release26-maint +81628 714653dd4aadad453ccab9bacdec11ee083c37e2 py3k +81629 dc2768c998de1250aebeafcfdcc2c34370a5d22b release31-maint +81630 66109d0e4e6df1dea4b7f98c0a11b3aea2f1a585 py3k +81631 ebd65ec54d7e9bef5d6d5a28cd7a0ac52265029e release31-maint +81632 62ca540d8b6e6151ad12e9598209b7004f7e9ed8 py3k +81633 9f92cbaa539d6a43c58229583ccfbcab3feb2f71 release31-maint +81634 f81271c18eb01adc6599b91648f81efa61b478e0 legacy-trunk +81635 53ee47322dd2a2c2a34826b1c435049617674bc2 legacy-trunk +81636 d69b1a2d9bf0ef10481e347f8f31fbf0946aa7e4 legacy-trunk +81637 d4260dcafc7fb62b53703bc4480ab0b2b14f2fae release26-maint +81638 9c0c27a9b71c79cf2116fe6c9734f38c2c1bba60 py3k +81639 10977708db2eaab3ec954d9f0c071ba6387424d9 release31-maint +81640 898ebb2990dfa59f19a7fc79a20e69bebf7b4b79 legacy-trunk +81641 2de71233b69b0d2016ec6ab6cc85715645aee999 release26-maint +81642 e4cbbbb7863b92db9ba673d9ecc1bf729e702b4d py3k +81643 cfe138600f64c4c7b15e1e1ac80b27ecf47f368b release31-maint +81644 a03b9568359c55ddec297a3dfec4eee4981e4901 release26-maint +81645 8e294df0e382a46b1ae062e1e821c8b4dbc6f37d legacy-trunk +81646 7b1126b5be2d6f0d14530390d073a3e71b7a031e release26-maint +81647 379ee212153e03f8af0f60cc6fb67dbc7acf526c py3k +81648 d20db3ee845755f5e67b50ca69eb665c297dfaee release31-maint +81649 bd47cd1f9bc2e8bcc26309809adea50b1cbc2ab2 legacy-trunk +81650 34a637bfd4be78b9e461d4f333c40cce87e81f6e py3k +81651 ea43b406450f94fc26beee57e8f23c1f764dbaf0 legacy-trunk +81652 3b8070913169496f8ab3ce05490a4972542c75cf legacy-trunk +81653 b47c4cf25f022d75906041e3386a88267c8e7e89 release26-maint +81654 c3adb91ca58947099ebfd8f115d23539046d42ac py3k +81655 dff5f09b5a860182dcf6ca732f41a5550465e452 release31-maint +81656 97edf0ea03f9b14e2a49d48a6aa15ca80cf332e6 py3k +81657 dfbd345f53f03a585e7c042265d70bd3c5f02347 release31-maint +81658 6b07294b13520e2df5656d3d0bd125c567edb2cb legacy-trunk +81659 dd378b885b94036540f2c959501aae742e9f95b4 release26-maint +81660 bb63eaefc5a68d78fdd5aa822b2e62c94c8b4b72 py3k +81661 833de79885e4fc92c6840f8a12f7bfd6f192525f release31-maint +81662 f6e90182686bc615d47ee8496c8d90981113d879 legacy-trunk +81663 291b0bb63fb76bad8400311ac575721878f8859e legacy-trunk +81664 ed983b116a7de00ad71b2f570c4cc7975490d121 release26-maint +81665 8bbd4eb4efc41e3c3777c35b23dead1a3834fd37 py3k +81666 cea5ef682bdd4c683550a0b92a9dfd70d7b5cb4c release31-maint +81667 9af600a66115701089fc75cd6ccf0485cc5f8f77 legacy-trunk +81668 ae11f56ad5d747daf2071b7bf730fb6d74e9497b release26-maint +81669 1b4c30742a24a3c679e80b528d90e3e282bb29cb legacy-trunk +81670 bfbf2d650f26934d72899ddedfc8e1fd32a3a213 py3k +81671 0534ce01ba5029b3f5461ba53fa4e2246b363fcc release31-maint +81672 8825a7e6a5f01e697d361efa5459eb21bc75956d legacy-trunk +81673 3797ee57d3d6e385bea741463ed726f83b2b8f61 py3k +81674 16fbdf10d10018fccdc83f13053de69121c345fa release26-maint +81675 3d11ba7989df0b508ec90f6ad853900b637e0313 legacy-trunk +81676 5e28a3dfdeef3f4f1c67425afd6448adc09ecbf4 release26-maint +81677 25b4163ffe3fd2e69d75bee8027c4a430be6c015 release31-maint +81678 38ddeccf02a94227c52ef4fd7c97900fe42c5320 legacy-trunk +81679 11acc57f5804cabc0c084dcff65d0105dae53929 legacy-trunk +81680 6e120d93112eca42f7f479650bd890b35855e73a legacy-trunk +81681 532e9e6ac825f1cfb36af7463fd8b7fb8d7b5f14 legacy-trunk +81682 26803168ce8a7472df5adac93a89038aed8a9082 py3k +81683 cb4fa3e4b8d5768019a6954f735fab45b9d1daf4 legacy-trunk +81684 dd66368217c1626e31f4bebd843bc9aed83da108 legacy-trunk +81685 22c0e228d5a7c12f6343631a304abd8b694bbb1f py3k +81686 bf2103a22e0078e6a3d4a5d2b3a914bd30f9e34e release31-maint +81687 3b67fa3585f07c5507e915b6038175dbcc69ef46 legacy-trunk +81688 9fa5590259f464b0d54adaa4954fa5849d484f32 release26-maint +81689 077d2938439918d63acd01f421d3c99589bb6d06 py3k +81690 7b59b1f633cb4e268a2fd08b692737a3f1488ba5 release31-maint +81691 eacbe774f029e4d89e7fa477ac9b43e518c460a2 legacy-trunk +81692 419901e65dd219da68eef0bafa496667bf8233cd legacy-trunk +81693 8245683e6ec610cbe90f73a9a489a03d3538e095 release26-maint +81694 109a98f9fcddd34bba96edcf505e2bc9aaa88ccc py3k +81695 cd192d1fcd6763b1c3c5d1ba07c73b8246c6604c py3k +81696 84988bb91fbf6399b8ac62f2cbd860a46244e77f release31-maint +81697 c160af09c5b0165ef3d12dd751319f07a3917859 legacy-trunk +81698 2b25b50eaeadd5589c5997ac4b728283a532237d py3k +81699 0c7764aa694a186a4105d49ba4d90daf50863091 py3k +81700 4c0b2bbdd82d17047a8c1f592810a6a8fac443e1 legacy-trunk +81701 a80c1b964a6fe96fb9fbb86d7dd00ad7ef55f367 legacy-trunk +81702 bbaf6062f241436c9c08803819a054856f4763a9 release26-maint +81703 f214e1bf031d297759d271fdf18c26ef8a033e73 py3k +81704 52e92e77b3114d47f931727330402f088cf803bf release31-maint +81705 734448e856aa7c6cea010bc151a8bde75be34ac6 legacy-trunk +81706 09176d0bde3849e0d1e9e399f8b23933faff8635 legacy-trunk +81707 d7541a490cbd84235dee7de21abb74965b1c35e2 legacy-trunk +81708 9bb5c22ef13423c5f22c426e1859b1ef7a9fd25d py3k +81709 5cdf26576e8ea1fd404174a9e3b79a34642b5c2b legacy-trunk +81710 142cb6f60fd7e951c52c7537d6dee620445f4ffc legacy-trunk +81711 23ed837615aab49e105e09361016283b6262fdd2 py3k +81712 dda9bee5c84a000d08c19c9ba60d76ed01845121 legacy-trunk +81713 60613e81fb1e852d13bc7ea729fe07e564abd696 py3k +81714 5909e1f76be740d62c2a0844e07a70e7c90b882e py3k-cdecimal +81715 2b5702d88f275e8fa079bf7ee28fab7ad840a3f5 py3k-cdecimal +81716 c88648277138f1bc5b6c0bc50f29d4013669a2a1 py3k-cdecimal +81717 6b5013fea81bbf0ef547881bf03c011dabb14d9b py3k-cdecimal +81718 61f546e861c12f7617b98fcfe58e536bc901f4f6 py3k-cdecimal +81719 0829f602080b9db772e9f4c2d671cf38e2fe3fd9 py3k-cdecimal +81720 6f1f05c725b7c0f577a1d6bea3fabfd052b95e82 py3k-cdecimal +81721 1fd365d3695962f31c9a2e468e93da0f11108a10 py3k-cdecimal +81722 a409a5ab83bbcb2c78e5c3d957be5ab738615fd1 py3k-cdecimal +81723 a56105401d526d4237dd1bf3fea8bbad9489ea07 py3k-cdecimal +81724 09c05ad45b5f0bdf71891c0b80c99cff71e68e97 legacy-trunk +81725 09c06ca27f7f846ced38360a9c6b5eacfa52d916 py3k +81726 43e9a3e61796e6d8d002d612c237e36d2f5861cb py3k-cdecimal +81727 cb50db9412c704c8e77a44015d14bda5ba3ecc98 py3k-cdecimal +81728 be58814e25d785152d8dcb28f9b1642182bed11e legacy-trunk +81729 3a571fd8c3bea0b1a0ad3169e56a57a8f067907f py3k-cdecimal +81730 ec174f42f15bd90ddf2d156ad17ade0f3ac10ec5 py3k +81731 0e3ec418845adc75578cf9d1bb7d82fa1b55cb55 py3k +81732 aa5ce8615c4fc70526ecd491daef855aceb91e2a py3k-cdecimal +81733 2f282f8f938848d3210fc3bb250b5b116e6a4a0c py3k-cdecimal +81734 76cf4acf7b43f2d62623c559200c1f86d7e28eb3 py3k-cdecimal +81735 986ba0ec2c55f35055e0c9afa158ce1fc653158d legacy-trunk +81736 8fa4a5e5af552df78d8e43ed830ebe00b1956e1f legacy-trunk +81737 06bd4a44839d96d5460aa23442b6587b6715b0f4 py3k +81738 72dc0ef394acbb464ebfacb0d5b188a260024a13 release26-maint +81739 f86c6a6e174414822368d1e32c5b50a64ac2c521 legacy-trunk +81740 67c33cb9622da8ec426546f0cf54693454c80c38 legacy-trunk +81741 e12d87c4559198e16ec6d12003a26931ebb14db0 release26-maint +81742 1c30f9eb40b826072bd966476f88c59a13f96dcf py3k +81743 912517ccdb3fd6fb86646eab0e52080e48065a4a py3k +81744 3721d4e5b2eed3748dd0dc249e89949a30b92843 legacy-trunk +81745 3662d2b5afaaeddb5dddc6c8889790ff4f5ad74d release26-maint +81746 d0d057b5d3613285a82b78ee874383ec8c4ec94e py3k +81747 8b87015512539a05bd0c787f598693dcaf3d019f legacy-trunk +81748 ce9209811c0aacfa1503c80ea3bdf4b9fc21ab15 py3k +81749 4a11522980b7b8e53680eb9cf5d90d8a78217bb5 legacy-trunk +81750 af2bde72ce61a2c3273084640123a47857cb06a6 release26-maint +81751 5e1b3b634d5346492b7e7df0d5f48cb1dacbf2c4 py3k +81752 610ba99b8d0da3d02bef1aa6f2727d2372196e69 legacy-trunk +81753 2d2b3824e39a510431d60fd0c7b478a62849dff3 legacy-trunk +81754 3d4f1c259d2d0ab041d85583b78ac8e93b1a952c py3k +81755 9c3091024bc8486d6342b1cec068a00aa24398a1 py3k +81756 ca263d2005e7611e5c644a084869caeb81a14ee9 legacy-trunk +81757 0a4b33e4ee23636522746fa3d2294017ca38bc6b py3k +81758 5032f1d5a1e15c183591c4517c7e4468fc9040b8 legacy-trunk +81759 c1caee32544fb79f74fc8f0c862da4eda16b4545 legacy-trunk +81760 1d9b7d052bcc5f5722104b736848cf42b44db332 legacy-trunk +81761 742d329dfdfd95cf0053b52463435ab210a8f6c0 legacy-trunk +81762 da7a8ff7649976cae4f9c1f0ee7b7490d8d2b781 py3k +81763 d7872ddb4b980808af58b036d33f13572d78e959 legacy-trunk +81764 cdc7ca8db8d6ab44960dece234f96ee8b251e77e legacy-trunk +81765 e0de33767c298cdc9f0156c697c93c5f5269b85d py3k +81766 1410ac60a754121f900b3e06a98e71d79b600dcc py3k +81767 3e0bc0e17f560ed4d72fdfa9bbf8409e4bf3aed7 legacy-trunk +81768 26bb538ef6ea58333135130051bd2c2b787e7847 py3k +81769 e1caed6954481fce61d2cfcd62d8dcc5a1647119 legacy-trunk +81770 4dfd91742eb9bbe21b33a1d1be827418cbd330e0 legacy-trunk +81771 d13dec1468b87489c06b44564af52d285a740bbc py3k +81772 cd8ee019989d17557f66e8aa50b84a1a9ea2b230 legacy-trunk +81773 fdda3f46142e4f97b1464a1ab58e9074725d06da legacy-trunk +81774 0e7c7f18cd24b03ecd2fcc8dc1903a0d524050f2 legacy-trunk +81775 381c5eeb511038d091d8e0808c4b85087ed2f684 legacy-trunk +81776 6a28ef29b1103944351e2ddc130ad0be29f771fa legacy-trunk +81777 589b611d7b4fa28c7227b4648174528e1fb2a51b legacy-trunk +81778 301b78cc999b29bf1a4c4a6d5961855cc7ecae37 py3k +81779 68fd22595db5776092398eec4153502fa4147623 py3k +81780 c4d4ddacf9a59686a07b5ab8b89382eb908cbb55 py3k +81781 849650507052e6f46e47dce1bd71337c47355b15 py3k +81782 475cbde1ed19a7f40e240294f42da5a6729e8158 py3k +81783 6a1d6d8cbc5213a6494297c25a4b6b03692f69b1 release31-maint +81784 3143396a94f1ee35eb6f622ee2b7c8073642b307 py3k-cdecimal +81785 495bb73b1cf1f3a56662ffe2fde83e3f63f7b55d py3k-cdecimal +81786 43a3f2acc94ec2e160e008f519face9664add449 py3k-cdecimal +81787 3038eac42f7dc7e4dd089b50a7d810d1e46fedb1 py3k-cdecimal +81788 f6daf530f89ea63dc6e61407298aa737ae63debf legacy-trunk +81789 ed0ca38921c76753153689cac4ef54231e4d887e release26-maint +81790 df8dc8d1d571c6d0051c16e6a10f9eb5eb66a119 py3k +81791 734fed5613aefa94cf34b90ae9e59a90dcd50fc5 release31-maint +81792 9d49b744078c65df7a1692dc0de8e54b7f602a7c py3k +81793 cef374b14f5bee535072020a941d40fcba9f07d3 release31-maint +81794 c3f2ed4d8e65ecea41dedb2aa52d63fc57476e51 py3k +81795 c32b038e0022e6e343e35cb677276f7a22fbf0d8 release31-maint +81796 ed26ea78536ba3b9b79e446263f17cdf10c3d789 py3k-cdecimal +81797 ff8ec94beaead8e723175360069b6e311f21cc43 py3k-cdecimal +81798 b1b7af5183e35bcd379f6a2a63df55a4c2e3d805 py3k-cdecimal +81799 736fa36ea81e202db9919d219ea2d6f8fa1aaa44 py3k-cdecimal +81800 a22d8988899501b6397587eb2ee92fbe52902961 py3k-cdecimal +81801 6e8dcb8e9e6bfb9851303b1f116a51d9fd732b18 legacy-trunk +81802 2d7430dedec38363eaf003084cae1da607ba0105 py3k-cdecimal +81803 fe2a0e1ec95dcf901f9d4ebdef52abc0510715b9 py3k-cdecimal +81804 0efa1ad8bb7506ab157229041edf3acdd2fc16b7 py3k-cdecimal +81805 b11cc1f1a698c509a1588869c6abb6c613e10400 py3k-cdecimal +81806 0d9347934cc5b4a92aa2654e6056044755a049ea py3k +81807 600c23127207d8206576889b5ea2b5e10bc86d3a py3k +81808 fd8fccb2ee908cd4fd70bb7b1c00e0073ec2a3b5 release31-maint +81809 1a1016fa072300fa6979fcc0fcd078dfcdab62d5 py3k +81810 e932dc888517b1f87f36c91f34b934ba57142d2b release31-maint +81811 9ce5563eecfb7940dee9698220f00572543cbccf py3k +81812 6342d1467a4d448d28fa734ad8e30fa1c13efa7a release31-maint +81813 a2145a06a7268f2030909b4167fda2ae3db7af05 legacy-trunk +81814 95cc1e6d024694aa5fbbef871b7449fc395f9b6c py3k +81815 538196cf91ff7829136deb33450473a32c0d24ec release26-maint +81816 2f61e3a146b1cdce411b956744507c94fd58bdf2 py3k +81817 f5ce5e1bb23a2136cd8fd0329b8fa7599311ce11 legacy-trunk +81818 f2c4dd22ca61a21075daf832424a6ec12732f4c1 py3k +81819 822280cee04b527f8c28ae7e85c235b55a70bcce release26-maint +81820 26fac74ebab329e1d1c7a4debf68321abadf4aa2 legacy-trunk +81821 fecd8fb7bbef5db077ed79983b67d7443def7e4e py3k +81822 b44a2fe531ef51fa785063d130cf85e999bf102c release26-maint +81823 d3797e9dfd2c197587c0d268167749d942c9503a py3k +81824 dddb98ef3be5ef9066d5613e6e2763058eedb7ec legacy-trunk +81825 e5f0b27bc1783798c65e8fb4e571f85ef2128571 legacy-trunk +81826 825f65445a0a01ef1a750aedfca525e6f6ad96a3 py3k +81827 5c6e75a8d61d55e63fc79337efdc7bd866e57fc9 py3k +81828 3e86254039b9096fa48864ef101d915757b246c7 release26-maint +81829 2718158c58d00ffc78bb4cafe9063916d01e84a8 py3k +81830 a360e114866b554d8ff1b1adc5ac4c839d3bcb40 py3k +81831 4f61332af35e69fbb14ecb8c7058a2ddb2849e45 py3k +81832 b9518606cddce91d1ae97033bc6145d573357fff py3k +81833 d2264f9ac61ecfd6cf08333f2db3f2735f0044fc release31-maint +81834 35b4c356f24a62812bf890ebec6eea139898f0eb legacy-trunk +81835 1166fb7efb07a6e554e95c3366419fe3d76f5e9d py3k +81836 d5ec243caa1224afb764c244bf4c0496991159c9 release26-maint +81837 b5af5c93135b24f34145d66a7974a06f0495cfa8 release31-maint +81838 6509f9a3cde5ae27e0457ea277bf7958f85ca7a4 py3k +81839 9f7b8b32b074aa91d31352120a4691981a70990d release31-maint +81840 a06ad73835523f2486f036b501635aeb4abaa564 py3k +81841 d281ed59ff0be4f2402f4f1695214f67c1059807 py3k +81842 7ccc558114131f09b16ecdd1e6dabfadedb59d12 release31-maint +81843 d92708cf1c1fa3364b5641093625e7ee54cfa2a6 py3k +81844 a25ad9c4ace0018f852bb4374ec155e8833a89ea py3k +81845 d47fe4134e7d11bf4036107c82e65b7f31652473 release31-maint +81846 f83f201b1276084da73cae5ef7e9828c4b42692c release31-maint +81847 1966c1bc9048e4eed1a2010a5d0e22f9266993a4 legacy-trunk +81848 27d9bcc7e661ecbd7fa7eb985ccceecb878d9840 release26-maint +81849 2cfe15b3cdf552c076c5b612ab51395a832350d8 py3k +81850 b2c1995633bdc85ebc0edccfa70cb3c9de3bc900 release31-maint +81851 d32b0e80faacd1d07725356638e4a782b34995d6 py3k +81852 6f3855038919b622b994b871b2954eb80ec770df release31-maint +81853 864ac7b3c3d6cef3cf5a2a62806af5541ccf9640 legacy-trunk +81854 d7113cacd428b61b5d8a3d597d46d75246f0a24c py3k +81855 6e6866cec37ea2c007cc9276039689e6c9abf21c release31-maint +81856 96a5133825d2366881817d78ad7e7dcc36463990 py3k +81857 c60402fc066f10c03a65ec0868e617e5024bb9bb py3k +81858 b6ee205b9498bd0fe73fa19f3821ee3d6353e1a0 release31-maint +81859 f1aadbebc577291231228fdf62e83921276fed77 legacy-trunk +81860 ba2f2d08504b05006f175b4581466d3450831113 legacy-trunk +81861 c1145e668d720864488ddce00195bdac5595738a release26-maint +81862 865e34cd7e5b769297cadae070c0f1e20d839cf8 py3k +81863 3375239d4370e2e66d87db46883d6212a72e6111 release31-maint +81864 329c129e07b68af26279d48e9ccfd8c8c8ee8898 legacy-trunk +81865 8f58b9e596688d42e667ace64ecd3c0af833da34 py3k +81866 a2ea1a23186b08767016808139615fe6ae4917ad release26-maint +81867 f33e464a9a60aa9f04978c6cf0f557fec08d60e7 release31-maint +81868 5bf7336ea0aad89bd248220c2984d91d7517e2ed legacy-trunk +81869 77c0ca69d5184d8922c5e17bc755563ae6cbf710 py3k +81870 1429ac6bebc3f8d9a7ad170d9122752454bf8637 release31-maint +81871 ddb47fd612a6701b37d5cf3564e0eab00d3584ca py3k +81872 e087162573acc676926f2e8fbdbb17b4dd2bb778 release31-maint +81873 fe5ed70283efe60941a7eac3548414e3391d2058 py3k +81874 8cfa0dc38aa742b98039184a26c50fbfc1eebcbc py3k +81875 ff50d45e061813532d3f60764897c6799d8cfc2a py3k +81876 cd1024281b732bb848e09b1ef04e6e4fdb6b0614 legacy-trunk +81877 f294473d879315fb326b768e7de46881352f3d1e py3k +81878 7f540fe775fcce35db7d36eb865f59684cbdb4bd legacy-trunk +81879 5fe4ad5b5ab9eb72a2fd8304adfda72f9d2f2a2e py3k +81880 dbe7ae666ce229d694e8a9670917184673b8b028 legacy-trunk +81881 0d166e57884df417da818f17af098cb7652e474a legacy-trunk +81882 a8872b6505776a64d0f268d047ff6dec4f763713 legacy-trunk +81883 72f774903772016cfc7436f174b3bfcb48a3ef6f py3k +81884 9e12c649d31275f2c1c794c1fa3b4b794bcd7884 release31-maint +81885 aeb47d30fba4e38da1e8f1221e4d062042371e1e py3k +81886 076763c667f9565b8e28291eefa7c47ce4fb3c54 release31-maint +81887 8c3a222fa6d158f5fbaeba3c63f53491d71a6eef release26-maint +81888 4c99da8c1e80e7fecb3c8573e67b20d7c98ee870 legacy-trunk +81889 7ef46a61dc97eb752f480869de8d7315fbab3d95 legacy-trunk +81890 3420dfc559bbb83f44f6bab72c9914a11e8656de release26-maint +81891 8319ca0d54349310c5ed7662d0d7bec5cf4f8466 py3k +81892 4467c4c1d38ecfffaec0f22651c5839d95701e25 release31-maint +81893 26685311d3132410a4771d3b53cc9f120f1ed86f py3k +81894 4c3be74ca50127f0638b68fde18c0584c4e74f51 py3k +81895 3ba1b5b4c108850084c1bde41c9744abec32711a py3k +81896 ebc4e896924e2a8c4e00736f002bb407ff6f5c5d py3k +81897 6adc83d999d0e452d0366b9a4d10b786d6dd2c42 py3k +81898 6ff88dca8133987c17811db17ff080617f9ed228 py3k +81899 cd596a8f91f378618ccb519a2801b598d71ea8aa legacy-trunk +81900 b091a7e4285f93cb5fa3df3014af60d839c86e16 release26-maint +81901 2a8ee11e3e18a3d44712a491546c204d8b70ed79 py3k +81902 73d82b0b6dee4da5ce9dd5a884dcd2d6b5a2e707 py3k +81903 50c2391749761939ef2a1e36c5a9a291d23bf1f7 release31-maint +81904 7db7f8442414fc4b87ae29f6b016742de784886d legacy-trunk +81905 9dac58163b7999ac53097a77f79a28bc327159b4 py3k +81906 661519fec3b8688fc75085a7b19ab034cb6f3581 legacy-trunk +81907 98245464b6654a05da854223aa91c2a2b540a4fe legacy-trunk +81908 7576260d1b6541500582f2e9d23c07284a071032 py3k +81909 22c045d1bc8ccf93cf2a4301b40a1272249d74ef release26-maint +81910 8d5dd2276680564f73650e164f79f8aba0f31d4b release31-maint +81911 88aec5124185dfe41821ef815590a7b2333b58cb py3k +81912 44dc98502ac323a5cdc9157ada96cb199a863863 py3k +81913 a653e306108f5343acbe6b8664e6103fc3b626c7 release31-maint +81914 bd8a1fd4c316f20dec53ff9185a16cd3abc9baeb py3k +81915 c8bc2d8e9ae1cfc6b9041fef70a7b7101027f9e1 release31-maint +81916 f52aefdab1820e68a2e6523fc6ded0483d18ed3c py3k +81917 2b2f553f1ce611058404f1c63a215bfc30af8abe release31-maint +81918 f60aaf99b836bf6eee1816997c40866a1e765d56 py3k +81919 a2551b30f049649853d418184d2976c2bc320870 legacy-trunk +81919 fe6be0426e0d353db84ec869a5b02dbba6c3d4a5 release26-maint +81920 0167f91721a84c618fe23a9cc564f058ad29b045 py3k +81921 8624582809f9c72d4e347dc5a5cf9c8302a0b88e release31-maint +81922 d9282065f5c9ebc24fdec70335dceb06b8ce2a37 release31-maint +81923 137da7ce5e8ed1bb7af4f7466f558cc8a1456935 py3k +81924 72169ffe32a02ce1def74df7a3030aa6445fa6c5 release31-maint +81925 6eaa79be0449fd04f6dda7b00aa218579d934ecc py3k +81926 10319217af4430df4feed5c1e7e1eb626ca53642 release31-maint +81927 3022904f99711bb97e271c9f00021f5cfecf2288 py3k +81928 8169f33f22688f24a2a46b6df3e9ca48ba00c4b1 release31-maint +81929 444c025e298da3696ef090b8a5b42aa8b348a7fc py3k +81930 e80dab3e909f7b33b913cbbbddd2672ef1650d86 py3k +81931 a10a7ce97f45a7b485a647f9110718298a7beebf legacy-trunk +81932 84dab29bdea70a392318438c91766ebe949a69dd legacy-trunk +81933 c2b923834dea75deae5a369cc63de8bab630f9cb legacy-trunk +81934 61d4cc6781655de999c6b8e81757938ded9dbc98 release26-maint +81935 80110fd431911929198695864e9d5314d322991b release26-maint +81936 6ce7ebcf9358de5f9563251ae3bb9cd9a157c961 py3k +81937 52eb0c093b6887b9de865abc68ae575a089dfca6 py3k +81938 a490aa303d8addfb8302095c7c0860471103544e py3k +81939 4e9dd6d8006380ddbf5d9e98b55531afab548bf3 legacy-trunk +81940 31f01c881c460f36c069ab33fb57aef02810bcaa legacy-trunk +81941 aca13a5d6144d38b68626a8899b6ea2a6abeb518 legacy-trunk +81942 41ed58ed5c93bac1d68e5963a4ccfa965e9d2caa legacy-trunk +81943 8f27b61a40fa9905331a73039c880570bfc35a7f release26-maint +81944 606bad58434464d31ca00b9ae931790ad00f2b73 py3k +81945 db55167fa5e79888e77db4774c957e879ad5e29f legacy-trunk +81946 5160048d53617110c183b3f8e906b4118ec7c672 py3k +81947 bd86bba5ed33a01eb33595ba9b6a133953b7cf61 py3k +81948 e55fad3d5ae484c41cd172e8aa9a83c244d27d37 py3k +81949 9550eda1c0964e64cb6d761e831f5cc4feb556bb py3k +81950 9b333bf08d45f75c0b691c00a835b7e83fbdd5ea py3k +81951 44cac5c565b7f099933675ee9ac6844509fcc233 py3k +81952 d06577db727852c50bba4296d9d382c0bd737d64 py3k +81953 73e5354f92e71428acc1318b8e8d447579242e9e legacy-trunk +81954 e0c4daddfc5469ced07790d1b77907569d3df0e6 py3k +81955 b90e335a609a9791c5d96026c84de5f5049f9929 py3k +81956 8bc0bf22014d831a844b50d285d9f87bf63dbd1c py3k +81957 0a55ade6d85781c38c820bf76b226603597681d4 legacy-trunk +81958 0b2e0b6839a2735bc8f21c9aff93d0ff3f112d68 py3k +81959 b00c736555de70e3cd2eaa47c02ac47b2567c90b release26-maint +81960 0f5d114eff01442a3b210cdffecc8cce8723fc0a release31-maint +81961 e585b2431c4a5469d5b498b62a80cea8d57ab3f5 py3k +81962 5295b4dbf355a84d69108487e157757557e10970 release31-maint +81963 b9ecdcec0ff0d8bdc1f88e43dd250dcbb26f316a legacy-trunk +81964 8f137a5c413ca31627e9f79fdee79e3052646a8d legacy-trunk +81965 7ac6148e6a7f84a6bdee4ae695a722c340020f39 py3k +81966 4eac135a33afd694d3703852e43ddebcf8a96ba3 release31-maint +81967 cff0a923140be8ec8b788fb8afe6e6c117ca0a3c legacy-trunk +81968 d064e8934f4d0cce04c95ca5a80f90e581fa5a48 py3k +81969 2e52fbcaaa73bddc23118152529d510e1ab3c540 legacy-trunk +81970 1383b84b17acf76ce51f57300a17119924b9345a py3k +81971 f82d96b9f03edaaadecb45eb4ae15327ddfc1237 legacy-trunk +81972 b084c0a934a7e96381749d8f5f7cacb06e5dabfe py3k +81973 b32a2816f6e9c7844393bdf512d9874ce2bdec53 py3k +81974 0840a283af5f9ab62edaecb719d8efd83992d4f8 py3k +81975 9cb90169b25a863df72df8f5f58e7521ba6e5012 release31-maint +81976 99b80c288fac45eed0f823e672ee6b75c5d5e225 py3k-cdecimal +81977 92b8b67844e1017d66e69f83e678a86b3a480088 py3k-cdecimal +81978 867b976e349dad23997a87815500b13dafe7ec1b py3k-cdecimal +81979 0723ee19547b95615c06dc115457c72c3b05aa52 py3k-cdecimal +81980 d78b15808710a7d675d8baf9412238e01facf139 py3k-cdecimal +81981 b78a918b7a0ec64be89c2c8dacdf0fa95aac16d5 py3k +81984 9be60c185032a65e22a596189482b47727c7d01e legacy-trunk +81988 ef5de56f24c64cde0604b3f71145f337b2225f01 py3k +81989 623b738116d242f0bbcbfbdc5d5916e7a320f33c py3k +81990 95b5ca2468cc60a2cd2464b3e337995d21f471c6 py3k +81991 a57d59cccb8fa5ceb2a3a23d31579813e01a6331 legacy-trunk +81992 6f9b0c240191df73c2f1057b196216b60e92dd0f legacy-trunk +81993 8f3fcc239781b764c3513b1affaa0df8b08e31cb release26-maint +81994 0ebc72e366a1d96fb8e8cc6955f7288a9e84ccad py3k +81995 7ac0f67ebbba894bcd9b0b65fa93a6367b6fb586 release31-maint +81996 91bb572b756e06d476d6bda00b04fc8e98063356 release31-maint +81997 3ea66e3a129a4f97b3b7c6c485e727dd45cc0488 py3k-cdecimal +81999 e43ab52b57b23439e988ecf34b4d75e8a50c523b py3k +82000 32c4fff445ad2cfff097ac8fe4f339a53250f183 py3k +82001 49dd599150ca715c21e0a79aacad69c6fe91645a py3k +82002 fa8977324ed8670ab0ae17f59c2f193254ac378a release31-maint +82003 f19ae5cec8ce79f1605f93bb1b5f563d8ab80b3b py3k +82004 354b751e46d61cb71f5940b00886248aaea75dd6 py3k +82005 356d0ea8ea347f0d7d0adaa76516a25e6c6c99f0 py3k +82006 2466afed6f5ece69e153ba63d72ead7e8c0e3511 py3k-cdecimal +82007 b8488739879ec98a50133e178de74b40df8e2c2f release26-maint +82008 81855cedc156f598cb6938d7d8ae585b51e07768 py3k +82009 48f5859760ef4a3bb285f6b7e6f83e7915433556 release31-maint +82010 8a87c5afaddabe31586610cd695fa481be11074e release26-maint +82011 58413676befb64bc30947a7e924bfb5eca2d3c52 py3k +82012 22ea696aa77ac63e53d22b6cdd443491c3014eec release31-maint +82013 7bc81f8535ea41604b4fd9a97895086dcb3473c7 release26-maint +82014 adb8c81cc39a44f1302f489256b463bacb9ff527 py3k +82015 9dc84c424e413657af87f387916cd475b46eef0d py3k +82016 422a183e0bbdcc72a8065d381e964b578d780c33 release31-maint +82017 0030a74706660116bdb2d3cc054e97f0dde4bb2e release26-maint +82018 84fefbf1d6c080b2b15131c2f84eb9496250e6e3 legacy-trunk +82019 e753562cc023c03f1aaa350824b055ccee114bc8 release31-maint +82020 c41cb484f0906ce0f6c376539da736e435e0c12a release26-maint +82021 d30f6c59f810757691f53ae0d9ad907b57279171 py3k-jit +82022 d3377ebd3ee54ffd77faabf2510a6a21c0a60386 py3k +82023 b4237703a0cc51411feeaf079cc49fd31db68e41 release31-maint +82024 81135ccf5f55e3e20df6fa9d50e375e72739a5aa py3k-dtoa +82025 55e24c243e2f1a87cb9c04aaf306cab39b727466 py3k-dtoa +82026 c6845e83086f5f831589784fd2d4909c19c6aef1 legacy-trunk +82027 da3c4794d6dd6c519976f984ecfa6c976f2a186b release26-maint +82028 346ce255a52fef1dee1c6af1bc42d785d2cb05c4 py3k +82029 e4d50640f0777c4786f6143bbcd47bca010396c8 release31-maint +82030 735782a275f50a854c7b518b6dc5912e367dbfbe py3k-jit +82031 f3413553f8f5ea1a2692bdd76875729662f44ba7 py3k-dtoa +82032 856276952e086397a5057d267d4b5224d3ca519c py3k-dtoa +82033 bcc0a997f321fcae1d4e141175cedf656fb13670 release31-maint +82034 6d3b05a429b5aca5e2f50fc4419ae680cca77be5 py3k +82035 2dd1fe7047ffd9fd766afbf5afb21688624fa920 py3k +82036 1b08a541551aad867ec59f8b4caab32e4fdad901 release31-maint +82037 283d9472df4ed3b7a5bf8004f4f1d6e1b830095f py3k +82038 807cdea47817bbe782e786714a12d89f8d1ac928 py3k +82039 017e60ae605f4be1e213652ae01539095b5f2e45 legacy-trunk +82040 f5889f2ac39bb38e2269051d325609d3bf98f345 release26-maint +82041 2bb0a27a3e35c427ca0ffb37258938a71db8e4f8 py3k +82042 8cc0e1c9ba6d609fb8a535b73d07a3825cc1abe8 release31-maint +82043 cb4997b6aa8be698b9fa8939d15aae2f7ca56b3f py3k +82044 2cc09f06950b04825e2376e3e10af8354555277a release31-maint +82045 4d25639a3b14bd6bce2d8fc480e00a6a1edd93ec py3k +82046 b1d6ccad8ead66664f06b0b9789b480d07aab4e2 release31-maint +82047 84ed3446a29a1b830f6bae7d0af360d57a19c520 legacy-trunk +82048 1764e0be484c6c82f400c9a26b35a82537d5da9d release26-maint +82049 2fe0802c42c745dce72c5fe07805f1f30b62307b py3k +82050 c2e73d844d822bd32e84ddbaa930d9b58bb66ec8 release31-maint +82051 c48ddc96f454ae28b42fb8657bbe5c5715fe5d8c py3k +82052 6bfdcd25eea70df03e3cb1326de8c300aa148652 release31-maint +82053 5c0d8c284c32dc8e7a02693f292d8be0e61875d7 py3k +82054 6a9990ef4a6f5e9732a398b1dab27d83391c30ca release31-maint +82055 46ab5e4dba6bac7d1e7bb20dbcfe0005e28a663b py3k +82056 1da7733e8f24731a0b88dbd6907804ca02a11dc3 legacy-trunk +82057 f3dd930665bd17936308813304a2c4084c5bb091 py3k +82058 da1aafa55ae0239ee526fec84a4c404266a131cd release31-maint +82059 907f564476be669ebeaed418efead2ebe60bfcac py3k +82060 59c60a59b27a57e7c4e162b6bed264df02c6fdb6 release31-maint +82061 9d4d4ac0a7bfe81174af4d0115ecfd0d4a6ac190 py3k +82062 07449b3679357db2eea96a8302df87c03cba5b5c release31-maint +82063 fa830371c724174fba1b53a0991f0a3d518d2106 release31-maint +82068 4d69bdb71c9ad51cdc686964526c256dbf278d3d py3k +82069 46356267ce8fbb59d9b067528857da8102fad5a6 release31-maint +82070 e5f5008fd56d50f49803b5e5db2f89bb70b92837 py3k +82071 bf94eb8faf62537fd7446be43d89c9b22b3535e6 py3k +82072 ea25129b94feec50098482c4efa825ed71d53656 release31-maint +82073 90cc266798a24fc50c15b7621c1b348489201164 py3k +82074 c54dd576dd055482f1cc173044ce7ed0d58d6361 release31-maint +82075 da558461d9a94bb7ee9e79fcc2bc0e24fe8ae708 legacy-trunk +82076 ef8a2ab26e9fefefb39f57f9fc320af8fb94c981 py3k +82077 1f0e0781f73e461b1a5990b15b1eb59f89f39819 release26-maint +82078 5de52eb252da706da3f6954d50e1e84a7c13c0f9 release31-maint +82079 dd7005145f6e65f236eab5f208587993b2b3d3cb py3k-dtoa +82080 18bcf6c2d1e37b281814f4440594d8bb7ebd35a8 py3k-dtoa +82081 f6767dde9b2989b87ff0631660c7a79686a4e25c py3k-dtoa +82082 b4a5a869e1c59d8af35999a266e8edbc88a677fc py3k-dtoa +82084 3afc7d8a445aa5ac95f217c5387c6379b5c5755d py3k +82085 0da4c7d1f3ef233e5a343e64fd5c2949ddd5773e release31-maint +82086 b9019f0dd89d3e17691252d128f10a835f10bdae py3k-dtoa +82087 429b329a03f8334a628cadcf2e3a633d100f2a49 py3k-dtoa +82088 343005c4a4e3f5e1e1da0699962672ac6f722144 py3k-signalfd-issue8407 +82089 446a966858f1481e7047bf027ec276e45b722efa py3k +82090 c4f5c734da6e4c137ad0626933a00876c59848c2 py3k +82091 5a28c6cb47527b9d47793febd8fae08d73493535 py3k-signalfd-issue8407 +82092 069535e50a9e4fdd4df0db6bde6ff91255f59cc5 py3k-signalfd-issue8407 +82093 466c162c730c20cd4dc76d34ddaabe4f2f9a6733 py3k-signalfd-issue8407 +82094 89a42e0713ddb9eeb09df50130b3abbcb9849fe2 py3k-signalfd-issue8407 +82095 ed07740c7667aff9e9a70fa551c05311e799c9de py3k-signalfd-issue8407 +82096 880bde5ab7c5434531cd4d32678bc7e7fb46020d py3k-signalfd-issue8407 +82097 ac5f5537c73b6de4754ce914e0cb7d18d2940f5e py3k-signalfd-issue8407 +82098 80d4800774339eeb52bf69ad6c763afe8f6be766 py3k-signalfd-issue8407 +82099 f73fa35f6f05de45b5da681df093533e4c940654 py3k-signalfd-issue8407 +82100 35f801526278d4a4d268a26df7c68ccb01fb48e9 py3k-signalfd-issue8407 +82101 5cfe05f2a4e9c56ac0ca362038555d5032cf9f2d py3k-signalfd-issue8407 +82102 cec1b5584517b097527e34c82595d6974932f5d7 py3k-signalfd-issue8407 +82103 80613dcf80910d6d0bae3972953e005371cb1807 py3k-signalfd-issue8407 +82104 483f362b8ec3043832a6117f445a503e865a9700 py3k-signalfd-issue8407 +82105 306336a1ce291170ae3804364e4ffe16ffbbc7a6 py3k-signalfd-issue8407 +82106 a56faa6b8fa02fd6649c119e65e5bf9f67e18b6b py3k-signalfd-issue8407 +82107 1991a9aaff5e398515227e235456c62e2073e63a py3k-signalfd-issue8407 +82108 b614647a340052b7173e01345e26dba5ab56a8a9 py3k-signalfd-issue8407 +82109 ebac2eb7255b6553b1e73d7dd8ba599a608488b8 py3k-signalfd-issue8407 +82112 93896a0946c2ef584a97c53df05948863a722b07 legacy-trunk +82113 5c84fcc1d906eaec9b5fd40035d7b5192319f0cc py3k +82114 6d9746cd935c60d7f59774f52e24d8008f8beae5 py3k +82115 654e53e75cd2b02cac3800711721e771d0b9e553 py3k +82117 ee35f71567612b1e5978d5caf2be40923fc4e57f legacy-trunk +82118 c91538c1a7e6c0778808d99858c5773021194771 py3k-signalfd-issue8407 +82119 6acddb5fe8e21be6dac08958d730259bf887a042 py3k +82120 bdef454f7212a8babe00df6c9d91c57739ee53c8 legacy-trunk +82121 923735137030f2c4c907129b137d178131be8496 py3k-signalfd-issue8407 +82122 3f09cc38e97e30ce3341da35a2a279085e1a3f9b py3k-signalfd-issue8407 +82123 965a44c2b297b9b6ce2c8740eb18103fda96dda4 py3k-signalfd-issue8407 +82124 53d3d068bf4c4b9e720dea8e5f1a78a8a2185cca py3k-signalfd-issue8407 +82125 9863bc8630a39dd73aa6e7d68bf5def26836bb77 py3k +82126 ce21eb5c17a5f303cc279b054c404f7f70285ada legacy-trunk +82127 d014d1f65823195c11afc31a2ea67db2ec5fde9a legacy-trunk +82128 dd88057b27b1cd9f5be9bdf1aa425badda1b3989 py3k +82129 f3d45c443b1379e18bf7d8b6872fd20a72768717 release31-maint +82130 1a86d845fbc6f394add6a420c27f98a8250bcb5d legacy-trunk +82131 73f8faca290bfeb640ccfbe41eb686c025259ef7 py3k +82132 a101d073a5cd1fbc454fcb5c2f0555d5665e9cd5 release26-maint +82133 1af95674588d1d3ae2ca885ed032160f895e2b83 release31-maint +82136 5817395a048e5ff14fc85147706efbf605f507fa legacy-trunk +82137 13e5b0b2071a2a42067fb03facc931409fa6ba50 legacy-trunk +82138 7e4cd703a18b7333e887b55c9571040921c729d9 py3k +82139 1f10c912c127fc30df9fe632216cdff058f91dfc legacy-trunk +82140 daa91888da52a39663594d41b0bf37819a2920b7 release31-maint +82141 f268c2ae0835f424b3b07dde9c94cc5417c3e022 release31-maint +82142 af751a1d6f44947a24143aec55a4a70779238ae8 legacy-trunk +82146 0cd99f8c30e1390008a95e140c64c29648904b8f py3k +82147 0afd760e7c76531b0dfd41ab30055a1448f20dc4 release31-maint +82148 0b7acdbd02eb343842968c7859c3b2f37c5afa89 py3k +82149 5a325e0f1fd01357f84b58b5eee15364c4367ab2 legacy-trunk +82150 6e5d21e223d2248416f68eed0d4dae9cbeb3e83a legacy-trunk +82152 56ed68c215a71ff97a42ff5968f569522ab3c011 py3k +82153 5d32b6afb52eeed9264d52605237d63115437efd release31-maint +82155 108f94d53edbe2a1d0ab830b092b4b174c3ab898 legacy-trunk +82156 d9fcba4cc14545a9a84e4fdf79f80b0332a4ea7b py3k +82157 f918d35ec56b8528903949e60fb0301997a01a48 legacy-trunk +82158 376e81f9ebb1d391f7c9ba0c6d15576d974db961 release26-maint +82159 906063ce711965959c99db45bf8510ad93f67487 py3k +82160 18635cbd66e0a33ad429e5541a7ff7097a2ff468 legacy-trunk +82161 f78fcb1b23f5b8e00103dc16e0802b51ae007f3c legacy-trunk +82162 1c695c0aaffb48c2d226c5aa7f2e0460fbc651aa py3k +82163 4e24dfedf80c51e5009aab9642aea68861a66470 py3k +82164 a1206a69e77a53b90cbd66ca04d492af2d1e0a3d release31-maint +82165 53a152b400a7e5bc63c3e728d98242ea12b1a6b0 legacy-trunk +82166 f17a2c1e291928c463716e004717c8d69b9eb2c2 py3k +82167 4dd8cff6b7beb1f6f103c4cce6e08d046b880c16 legacy-trunk +82168 d15be8b5c7cad96d4fbf3d06bd1aa90d50d6aa0f py3k +82169 e9fb042e46fb50005f77ea16433e4f4185ef42dc legacy-trunk +82170 8836d271670b6bb864f1ab3c44d652a992268379 release26-maint +82171 eb95af0a99cbb1ba0abf5da5a4196f9556b3d36e py3k +82172 2907ce8bfbb6027617b9fa409fb6204dbb8c666d release31-maint +82177 ca4f2e9869b6752fcd9cbab112b11d926d77c6c9 legacy-trunk +82178 426ef9c37916fafd3b8b5da46697210e9b29f6e2 release26-maint +82179 074859ecdc187322da962367ef0d7aeedb51270a release26-maint +82180 76bc6b577373cf54dfedd1b10b2f74d493583c7f py3k +82181 c8d5d1205fe830a5b1d6a420601b61babed0ca16 py3k +82182 0e4637ea20d0013a570dc912068dc743851c3880 release31-maint +82183 66ef9a77c8afd5cc1852a67622aae32e81aeac05 legacy-trunk +82184 3cf35231f7d3ed375a1a99dfd85b6ff0bc666af6 py3k +82185 3afe361efcf38bf88665ea71231740af7c177f5a py3k +82186 cf79741f7a23fc55fe5037a75bacf3a4ec1c277c py3k +82187 95d2035a164b9b05e0540d66a83657c14c5114dc release31-maint +82188 5f45692489da1fd3561d0639c6804f3d10da7edf legacy-trunk +82189 cb1ab8e9158107087e01c3f9ea2fe885e53c3e79 legacy-trunk +82190 61fc84bc4b146265d0cc9bd94473693ae1dce127 py3k +82191 b17fcdd38a5b402a0a0119bcb60c123709118253 legacy-trunk +82192 0d4245412d0b533b55995eda2a8346f03d284138 release26-maint +82193 c55157e03ab943f98bb2a4f46986825ef6baff80 py3k +82194 45baa429fc49ccd9915b6d320455316eac95a27d py3k +82195 3d6f0a2050e2926f7093da2b1ce95126bdfc558d release31-maint +82200 5d538d1e7098d96aa1b19ac55103677da1bae066 py3k +82201 a39b52ee0b1d4d92eab62aa99dfaec903bd8f847 release31-maint +82202 8939701416082a29be5194f0f55d0f515e6f6343 py3k +82203 34744a76143a8e656e1b61a7c94f3d3d68233c10 release31-maint +82204 21e86dd328f157ec5fc7311f7519d5d3b3d97281 py3k +82205 b8b0a15f8a7ca4e8431ba9a0a53eb384f2fd3020 release31-maint +82206 bb6222a4ed2426e9c7becc9875f1c095b0e1fbb2 py3k +82207 13b2a592c18683e2fdfe0476a0813b5ad0aba000 release31-maint +82208 bcc0e825faa0ca80e933a7384dea8fc94929c0e1 py3k +82209 c4dd5a889ecdfb683fd96586eec6c2da50b39976 release31-maint +82210 46b487e4a75b8c39f0880fd3c9c8683a4c63e922 legacy-trunk +82211 57115ab06b278006136da39ef4db77b4a925bf36 py3k +82212 598e8dc18b83e89d6b702c9425a1fd0abb9cb962 release26-maint +82213 ef642e24047ab6815648f3c9e2dc79b111e7ba35 release31-maint +82214 4e099e5004a1e825cc244f1137116a6a578d6a57 py3k +82215 d96acc41c59f2f477d4ada51b4edc228d4dda3f8 release31-maint +82220 69fdf68e0b5b46041152b21b0c08eb947a5e0715 py3k +82221 ba55844bf5c0314b69553f1bb737b26eb9476c8c legacy-trunk +82222 83ca0ea9ef1fb216cafcf50e5e6abbe0df6a64d0 release26-maint +82223 1c5c146de6425d00e09d0ac835b9f0d9d5e5f823 py3k +82224 0c87490767bf1c516792636cc7ae2174f806c901 release31-maint +82225 b663cf6bbe8b371cbc4b106d8fae96174926d953 legacy-trunk +82226 09eb3626d2aae811d6e43b30ecee3933d37a578b py3k +82227 3d3108ac22b2c6e5685519706a68da50921b9cf7 legacy-trunk +82228 2cd22257a86d7b8069a630e4a604d06e9e5dce9d py3k +82229 a34fd6f8165179bfa352fdf1e1a8bbe80047b9f0 legacy-trunk +82230 e24990d0544ffff9f24a676aca50ac5a9a11f141 py3k +82231 f232c569d225d7c1470d26c6c01a5ad7a5c8cea1 py3k +82232 c51bf3153f2ca89b40a88b604b28c0af134f32bc py3k +82233 1ba0ab02e3b85707341aaff12237defd327cb2f9 legacy-trunk +82234 cb6d9bd559efd3ad336e594855cea1a9f44eea8d py3k +82235 a456b00c3b753bdd965ee785817bc00a575b4770 release31-maint +82236 7dcce6a281ce2bf6a5d47e8999f0e93420cd72df legacy-trunk +82237 152b44642b2c417eb6ae2ab024d3fe6ffcfe4318 release26-maint +82238 4afef2e40b633249bd60c3656b4ee53f66aea1de py3k +82239 21552a48ebd1968db9158c495fe49be5770a5324 release31-maint +82242 2f6fed60613e12c8e92113340ec6ac5c1b0f47ca legacy-trunk +82243 7b04d9a698aee676c2b058dbe9ba254763f13f56 release26-maint +82244 d171276ed76da72334b780062fd2afdd15e3d220 py3k +82245 1dcae52c495c846c1cfcd6d8db9d1132b4454974 release31-maint +82246 29e509793d3c4818a8f0c570bf695d905355a48b legacy-trunk +82247 adafee9589e4429adab07ff2cca51ff0bd30cc12 py3k +82248 ed89b1aadc93d2d1da7908935589383a40d4729f legacy-trunk +82249 c912b5b24c8f2d1b24a70745f326a184c709c39b release26-maint +82250 014e7c00dc2805831f2ef24f14699ad25be1c7e5 release26-maint +82251 396eb660ee9b40bd9ef25852f502307efe6f3be0 legacy-trunk +82252 352dda07707bf928d3db9e9ce4c8d8f1cbd8fd21 py3k +82253 a39ceb6cede315d8335823377d2ab325a20496c6 release31-maint +82254 456d6c5d26dc6e6e5ef65967501a20d658af34cd release26-maint +82255 7fd3f6eaf6495c307deb4596833087c1eabcdc23 py3k +82256 706688fe45935673f953448b78a7b22cfcc315f7 release31-maint +82257 5fb3f1a74726a6b83d9aab4dc073f81fe1215b73 release26-maint +82258 f6d5ea769272796343183029e42f964267fc0380 release31-maint +82259 e4753855ec01bbe516147227b517f7f8651a5935 py3k +82262 6ea6d85150b12b81b79348a9138e46a8a99f8a44 py3k +82263 547e65db4d3882efeb99337dcc24fd9e5d2f9848 py3k +82264 6b454377affed58f777d5060cdbd8aa53ac83526 legacy-trunk +82265 815284c9d719154da379320a11ada9df01193c4b legacy-trunk +82266 676a480efc08cbda4ce857b95178eb8927ac2f43 legacy-trunk +82267 f79be798130f2b1cfc85b2fbf891ae683da6d8a6 legacy-trunk +82268 ee1ed80d7963391795cc25157b4e32860df8006b release31-maint +82269 1a3d8ec0c5fa8ab65dee1554b43d9870066566a8 py3k +82270 5b38b5234dedb72adc746d526844ad751d36c00f py3k +82271 02842ecd8e5b94ada8bac3bd62293afc57ed7f7e legacy-trunk +82272 a3dd39e36c9df19c600ff5f81a9fcd3d2d43d7b8 legacy-trunk +82273 f1174e79f7f43e7597f6b73c5133fa0311449a00 py3k +82274 d3c75c2f46be26bbc69ef09fc2f681ab1b34f691 release26-maint +82275 02044573eeec1eaa33c3aa46730b8f59f43ca074 release31-maint +82276 6b03124937559e709b4d82ea1a7da8cb1d9673db legacy-trunk +82277 c50563824094449a7802954d96572a794aa7a4bf release26-maint +82278 c88f7600bb17bae7085816e044eb41c3d6c7ad9b py3k +82279 f505df03a7d7cbf739612d7247dad19aa415a7a7 release31-maint +82280 b04cef55fdf43cc6c228c3a6159b01fc8dc688b5 release26-maint +82281 7d928029bc0e9f36067e7c0d7fb5b9e3377a3a86 py3k +82282 eee2579283001a98049568f2ed4b77cdf1d432c5 release31-maint +82283 dcf9bcd9a1e081047ddf3f03b2f9e20f8b9f3ff7 py3k +82284 a18323fbaf958fa47a1530043e11012dc7e21f5b legacy-trunk +82285 deed156d33d806f0ddc368bd740d98120c524275 release26-maint +82286 0be2439bbcd80185fece21fa30d3ebe951f300ba py3k +82287 e64746e02e410100f26e2b8a12e17cf07548ab9e release31-maint +82288 2818283c149a2f47be380bd2d988f6cf4d3501b4 py3k +82289 933a3556f5633588fb12b3688d9f1c7f3ed028c9 py3k +82290 ec0fd5a6bb456f787e0427eb0b51cefabc791627 py3k +82291 cb6f3a441ac2de16e1edfd6dacc681ea4f9cf054 py3k +82292 2f3501f8d456fdfd40cda0bc290729ada43a6691 py3k +82293 358d86a572fb189a243509e86595fea41766b8c7 py3k +82294 cbd5139e8fe48975cdba9d3252c9d73b6a864fe4 py3k +82295 08973e608a2a440f5e75ad6bdad94b36e8ba1c0e py3k +82296 0555884e986234b832093a739eeb706147c1cbc2 py3k +82297 820f3b6cb55118749771fd3ca9db244b2fce2ee8 py3k +82298 504c499e8c9582d5b17db66a731b2660825e3212 py3k +82299 9f2294874910ceddbb1fe5faa6173e50ab9d1358 py3k +82300 8a7ccb961814591f9bb878647d94c1f5600a2edd py3k +82301 8df6192590564e65e67a64fc061a2d23fa296922 py3k +82302 32651ee779ed00cf172075e1ae3a1500977aa34b py3k +82303 3670c66ee149a5c383996b92731d9048cebd5d54 legacy-trunk +82304 1d1797af46220b572052d10a1eba16344f90f504 py3k +82305 aa262c5b18b5326dba12cf2be89338d8bb9d68c4 py3k +82306 935075d335fe8be7bbb8ee375d86cf5a24f3399d py3k +82307 46fec77f95e8d15ed02476926fcacbd568d54a2e py3k +82308 6ec825c9b3b501f2ac128832db73f2f4d84e7b6e py3k +82309 2e37603ca04da26b413715bd89dc2e852b0f52c0 py3k +82310 4aa5b9589c4212092382c1a3d967f4b215551841 py3k +82311 a857dd40796482faf42b816aa39db285ae11e81c py3k +82312 2bc08000a85727e10ea948341d043a5adca392ea py3k +82313 dd30bc5d184e9146aa8e45b4fb274f89a71e39f7 py3k +82314 4893e4009f5671248b86b0d19f74c9891c38db7c py3k +82315 9f699e514a62c27e528683fecd1049bb31cbd490 py3k +82316 a9ced423dace75a2732a58103ca0f81d90c8270f py3k +82317 47e29a5c3ddfff250de363c5319dc594af964dfa legacy-trunk +82318 3bdcdecea5610e26f7534fa962166fa9d89c7291 py3k +82320 b07b2c954a8077f4c9ad3fc489314ed8574f2ca1 py3k +82321 d7e3423c9da8201bb4b2ad3e23e924430ad03ae3 py3k +82322 e42be6e6ac2d73642d3f02a9f3a1fefdd9c17320 legacy-trunk +82323 fd1a11293e62e1cb4bc20179b846499d940d5ace release26-maint +82324 9f0188e4f81a88627094fe1ba3e63b8e498fa230 legacy-trunk +82325 2003b70a9baddb6510e8fe9914b4a9dd11520201 release26-maint +82326 eac64a4610f12262b6b55b143b48daf47e308f16 py3k +82327 b8d365da1798941b753125ed2bb58f951c3a2e4b release31-maint +82328 28f9a000a379d4c5e108af598f1103e8fbdf0515 py3k +82329 3cd16ac51877153eb2fd8651ced5136f10bfb604 release31-maint +82330 c0a49b6a6fb11d88068096a89de9d88095bcd859 legacy-trunk +82331 f816b991e5b31ca7721e8c2710e945d37de39af2 py3k +82332 8827617a07dc91f6e2d643685d722c9456b6db24 legacy-trunk +82333 d71411a0a47316aeb38c1ec9a8d140367cf6f018 py3k +82334 2dcf47b5943f4ee4f5d93169b6110e1ec54a6a43 legacy-trunk +82335 37ce5adae8b9b88e974a5d9a986c9cb0d95cdcf0 release26-maint +82336 746579a9ead705ce7fcddad588c53a1ad73a06d0 py3k +82337 25b7221dda691bc5ab34e5aae955e714f9edf1e0 release31-maint +82338 3cb3ce7dcab850f8f15cdb7dffbe257ac5c07c00 legacy-trunk +82340 02904c6ee502976113d2a6a945134e87a6c39f44 legacy-trunk +82341 2520b818da052193d8fa0f7350a86ca43035777d legacy-trunk +82342 c8bdb32b04aaacaab2c999dd25b7184676163781 py3k +82343 68b670f3614e90b41ddfbba7dc128d5955802495 py3k +82344 ce0325276d2afaf240381b22d4279612dc90eb39 release31-maint +82345 9ca9524d3e578a41ad5842b2d52c967e04383758 legacy-trunk +82346 69f6d213028124c730995f7eb9c575143936fcb2 py3k +82347 b817e716516edf03bf8635d764615279db80aad8 py3k +82349 95f8b25e53ce09e4ee8131db3b58513f574458b8 py3k +82351 2cf4ca1ed6d6cd6f3aedd06da785f773e90fc06b py3k +82352 acd8648865aac5e1f3ce7687cdb65af3968740a2 release31-maint +82354 dfbdb98c92e7f1b7f3f6d773c6be5a7ed162bbdb py3k +82355 0e16ddd441578ebdfccd79101f5ea5d2012485aa release31-maint +82356 2a8c68ba000ba4f2075d9f693dc8971081566469 legacy-trunk +82357 ebfb6bc082d92ed9a4994c014793da759835718c py3k +82358 a4e1c56be532ce58f550afcdd4b0dacfafab51c8 py3k +82359 2f9051fe6ad9c651520f4a1a6e32fd43ad3c91e3 py3k +82360 fe44828ea7edde1deb5769149f5419edd6e297f3 py3k +82361 c51929233e19549f1040213e1ed5769242ae6987 release26-maint +82363 14f94c01a002a581197d3e8894cc18fcc5de009f legacy-trunk +82364 f7b54352771d2cfbb7c208496dff15ec5597e3ff release26-maint +82365 b72c33f496ac8e1d757730695e929862208fd638 py3k +82367 7199ff386f9ec7cf2c9abbcaa8602b7c10827ef6 legacy-trunk +82368 2f8d17626cdff44d5cca01e83a6bb305c8a5788f legacy-trunk +82369 17f17dc6d48bc4eb9f80aa04516a64472ef82203 release26-maint +82370 07131f08c3de195c0383591c345b4aa323ee1c0b py3k +82371 2964243748361656d9010686703586bc94a6f0bf py3k +82373 9e291ac07c5bcf57250f53ed45c6fa90e36fc45f py3k +82374 0fe97932642e77ba7e42d4359da731e7739023b0 release31-maint +82375 5072590b4dfdc4f03e702e053e3d1c679ddc7a8a py3k +82376 290bd0c150a6458d8172a1409197ef1498bf568e py3k +82377 158166ef6f06d014fde08995dfae7c7f855622e7 py3k +82378 a92ac75701183aa15fe294668a24ac28e1501bb1 release31-maint +82379 b5dfa339499c284414c604756af51b59dd7c7a6d legacy-trunk +82380 b88da4f77f686c75d341110704ff2a4d364c140d release26-maint +82381 fcae959a2fab52f406e7e721b5cda6f46ebe3b95 py3k +82382 321edba5f795bf6a00fed6a6b615bfc8e275e45d release31-maint +82383 25fbf023102d9b90c67e48a42c4e46f16b011676 py3k +82384 e6bb990ac9f6870204bcc6021028bfa76a6bc2d8 py3k +82386 4fce25abfdd82fbd051bb124c6079d8b3863a606 py3k +82387 16d88eca3c33a19df25dd65f322db20a218f61ba py3k +82389 d34ce0de941ca89a4c33d593c551fbe86c9ef0d2 release31-maint +82390 e6f1b3d1040a475a0476521babf15ee4289b3348 release31-maint +82391 2bc54da4b82c1ab4c29e470d72a6ff689bbfbe6a py3k +82392 30843be2e11a26c3451e16014c3a7541b8956f8d py3k +82393 043ef04f64d22c7b6998834dba6013ef2c643a39 py3k +82394 30e1d8d08105780f33f2ac4fbf1ba73adcaa99c0 py3k +82399 9dcc93fe75282edf8d2d82f7a48119b571cd5aae legacy-trunk +82400 c5afe95527793c828846b386ae4083f0e92a9eb0 legacy-trunk +82401 9f5430e4777007e3e73cb505e72c54654dc3b8a8 release26-maint +82402 01c9581c7e3f494dc0f0323cc1057eb8bc09d1bb py3k +82403 e9c8a96584d434e10623cf4e30c1b9f0bfe84b07 legacy-trunk +82404 76bc255d29fdf4e3be70e06877fd05e38275bb1d legacy-trunk +82405 db6fd405e594fd6c3298263450371f159a8fa861 py3k +82406 816cd858d331a8d5066439cc6ee8739ae9701f3d release26-maint +82407 3e878e269b09ee5b1d0461aed4f4f7cc48a738b0 py3k +82408 3a93a06e5e30cdfa894b757efefb37d7727acab6 release31-maint +82409 b04616be7f14d7060447f033d486634d244d9950 legacy-trunk +82410 ce81422ee35b31058e8804fcceda8595dea97773 py3k +82413 e0d5a4a49112a28e11d07997897a0741618522b8 py3k +82415 8b8f369941c1edb428906d5279bfe3346cc3f0f8 legacy-trunk +82416 3185b055f93766d2acf4fb83ea871b054e9c6f8a py3k +82417 a89a3d92f8aeadfb825c54366dc92f3a95492e74 py3k +82418 a9a267a81dac423ad58bd645a0e0dad3beed26d7 release26-maint +82420 c53e135a08b690a9045727ec3977b5d00da20955 legacy-trunk +82421 a92719b49e5ebae85f03bb7a3a9aa7c75ff08401 release26-maint +82422 fa11d2b4f98a2eeb1161e67f38bdee7a9070b463 py3k +82423 13c06a6f467676e6dd930e35ac88289e4b4db830 release31-maint +82429 43f06ca36ab30d168a0cf07dbaeb436deea093f1 legacy-trunk +82430 fe9553a6f798d7119386be66e92d5fb440f8d2cd py3k +82431 6d0dedb3a24ec0767447e1b999bbe1fbb43266c1 release26-maint +82433 ba9cf0df21b0099072f1a3ac80743fe9be6bd0ed legacy-trunk +82434 fef6348c2dd6cf21b5137f18a975e2631f7e778c py3k +82437 4b0c88275f3b64258539441184e9c3669af989f4 py3k +82438 35370d7236c9c6ae62b642050588d82a098c76cf py3k +82439 1786628ea6ff6410db903ef24ef124ed5866e79a legacy-trunk +82440 e17b1cb1b61c9cc63f60fc1ec9c09c4a7007b285 py3k +82441 f430a89196c9afef3def78a2975d3a92e241e958 legacy-trunk +82442 3304dc56dda4407f8cc65288708d889afb67a475 py3k +82443 b3bfabc0447c518a7f8b6b53ee803e91ab02ad23 py3k +82444 36abd7554bad8cca276736ddf4f4c3b61d5e242d release26-maint +82445 8a689f297970c95c4069ca9f9106af6e26997938 release31-maint +82446 ef6798a99ead2eb67033a9787b83f298f3444b56 legacy-trunk +82447 b540a612f6017015ebc595e60e344afea9c70ba7 legacy-trunk +82448 7f1496e41124738def4a678ffbf6eac1ab6d6d35 py3k +82449 e834c5d3a9a33e304586f091b119a19058bb5db7 release26-maint +82450 aec422111cdea35737f09b9cf03f301b07a6f8a0 release31-maint +82451 f1ba4e6d6c123173421dfc30a8a9a700b3699a89 release26-maint +82452 61ad6894ed6aa76c0a3997c85e9da8a97715f5b0 py3k +82453 cb7800c649123cc7430ae312aa662fb5a59faf6d release31-maint +82455 de16a915bd2ac7d587d20c33706a16658c350204 legacy-trunk +82456 529b2175339bf0615779ff2cb84e7c39707a388c py3k +82457 43c04711aacbcbab524adecfea84dcdc55932903 legacy-trunk +82458 31443cf4def2f2c1b564c4b7e816d4eb4896ee88 release26-maint +82459 fa16acb2ffdd6185a63adbdd9bcf137ac672e6de legacy-trunk +82460 c72fd8a2ae01d066b0fa8e8cdccbfafca71a34b6 release26-maint +82461 1eb36f169c9728ffc703739f40ba4b4c6f6bf6c8 legacy-trunk +82462 d3fa199b4a17466d9d356eaa6e52ebd4ec38f398 py3k +82463 8bf6d8beafe1d54e8c7013f663e8c8766ec59621 release31-maint +82464 f271e1d0e9c4424954b1c8f76a4b7bd7c2a4f6ae py3k +82465 d831fc0c26342c33cd753b4024c15a776498f350 py3k +82466 b8b11d43494061d42f4f6a1910bbb6b8639f8cdc legacy-trunk +82467 b0be89f70ff9b76edc0db41ca208d91cf6f70b36 py3k +82468 9900a998b460ced00c5f242d28d2a8e3de9a671c py3k +82469 9dc5f385f4942c4795dcd4ec06ae7c3c162119eb release31-maint +82470 4de13feaea01805e1481c81506dab73b523fa1ba release26-maint +82471 ebe1b3ff8d30218185a457eb0123975375aba464 py3k +82472 61cb9410a8424b508513719a42fc2ae4cd021b8e py3k +82473 4d3b4f34192b239e87d8ba07736620156829cc41 legacy-trunk +82474 32396e80048f9a8706b16ae61bd829d89d319f06 legacy-trunk +82475 69756cdf537b4fa37dca9d7c8f0f39938a248e0b legacy-trunk +82476 8e20ffc6198673caafdc7201ab9bff680956fa97 legacy-trunk +82477 cc4bd766fe109a5721d651aae3656707b39220eb release26-maint +82478 c5855dddf0e1fabae981a75ed4a93465092b899c py3k +82479 5613d2e1d779527eab8c4e8ed7a268d2e084b0ce release31-maint +82480 aae7381ac0b2d0a5c498eb52e33d7c97434271c6 py3k +82481 d97c245233210c79bb64997bde91ab478c986683 py3k +82482 2aab957bf61fec65aacbade5a5e7ff6e209db0e8 legacy-trunk +82483 6cfe7b904649a073c20c83646c044fdfdb56177b legacy-trunk +82484 5d834fcdf980cdfa1fad04bbec13be348935f8df py3k +82485 233c8dab8ffa9f710529b0671fa50efefd56430d py3k +82486 ac823e716d5717e8ccc0e102f167a3db8674cf17 release26-maint +82487 bb211a2ddabd5f0b862cb8ce2bf7584d5a0ff405 py3k +82488 55edf79ad8277f399c47d09e31453e62e47f6327 py3k +82489 d35f8e5b4197a8d7a1504ff474df2f9e8d151301 legacy-trunk +82490 40f19b0bfa61a56b4140d1cf65ac02eb6cc7d105 legacy-trunk +82491 6acb25356d2f1a69df14481d4f4d855a1994927e legacy-trunk +82492 be8e1a6ebf7abe75a3814c42d32903b89becf886 legacy-trunk +82493 4ca5d0aea41d3609cf466bfe8359112fff25a763 legacy-trunk +82494 8bb93288db6d68e9c18a85cab95edb2e03d152b5 release26-maint +82495 29116b2fcffe928137164e275858fb3c6906ddd7 py3k +82496 7184421f83b564fab59fe2fb30b422766aa02c40 release31-maint +82497 b3b912d453a582e41dfffe71a914e1cfde7bb4f7 legacy-trunk +82498 99c84a51f5765bbebbff7508fafc5f4e01a540ae legacy-trunk +82499 2d5f5150dce24da7cb686beccee02b2975583a07 legacy-trunk +82500 80c8b4341312a339a00f37631c3855007878d7cd legacy-trunk +82501 54fdcc0f4bacf37484dbbccf2d7aeec2bc82a718 legacy-trunk +82502 2145593d108de62ebf770987a4ac2a57d268c9d1 legacy-trunk +82503 7f7d823402c69ae6232ae26093cd482a4f357f3b release27-maint +82504 3f46f8a9db549519339fb9d598b4bb0fcfdabd23 legacy-trunk +82506 76d90843dba613c501381f5635b5aed6af441df6 release27-maint +82507 36d01c017b9beef917f5bbe48078512e0e7f48d0 py3k +82508 194b6e62be950d0cc98ea5cba5ec23656d050b31 release27-maint +82510 262529d1c315cd19e9d65d1041dbe7e42dc9f98a py3k +82511 2aee829edfe280228bcf98a9bdfe3a2de1b9b9d6 release31-maint +82512 d76d0eeb23cab843abc637aa9423af0f4ff21c66 release31-maint +82513 976aa4a8bcf307abb52ec00e3312c9a2b12be88d release27-maint +82514 e42baf678d1440062022aae98e86d763f2e9aa4e py3k +82515 fe46a8dbaf68ca744df6aad9166c93e58a66f319 py3k +82516 178455a2f1aa5bbd9600a0af1f65b29ecd02fd8f py3k +82517 31a6854f78139919f921e4bc866a89384eea724d py3k +82518 34d827249ce0bc298fb9e3d2c0c82cf7a5badc17 py3k +82519 fa71512a74f914d69760e9037b80fb1adfbc346f py3k +82520 6c3c543ede8c497eeef4f72c0e7c00b2a93df947 py3k +82521 2674d3bddb181e8e33c67c0c75aba765f5cd2f88 py3k +82522 34f015bca54edb3339164f763767c6a0a48fbd19 py3k +82523 32682b253ffc817e16da9a6e1215af3afec801cb py3k +82524 4c30a6f40e684e6385383d97fe7cb5dfdfd4f12e py3k +82526 4b934803cd341424314dad870c2f8fc0d86f6235 py3k +82527 13557594e20b7ad0864749101bccf8c3752ae486 py3k +82528 b67f720998a8801a8ad8b74cbaa83e2afb0781d5 release31-maint +82529 0f6548a86768b328106321b884893ced36840a2f release27-maint +82532 ecd71b6127e42678dc1a2b1f571f641ced0a28c3 release27-maint +82533 343903118cb5bb671e169c451bec499c6fa50e75 py3k +82534 124a76ae7a70e7570d9423ed7a65f6d4949b9c4f release26-maint +82535 f0691b4a383b82aee853a13af739964fae85dc38 py3k +82536 3fce6cdb47337711695383193b474df94ec7a8c5 release31-maint +82537 1eaf4bbe4b1c1c18b91cece9d99c4668ba4f3d8b py3k +82538 61caceccf80581353b84d73c0daa109916a1abe1 py3k +82539 18282039c5c9c006dc5fd5f3f0621fa110b31d96 release31-maint +82540 9393261996cee230c65285add7e30fa5f7a906c6 py3k +82541 9e354ea382cce7cb00cef5be2bede0cf99c39f31 py3k +82542 767b4c57aea4d9bd7a40f6ff3a9c56a8c096d6d8 py3k +82543 383039ef26a0e09e5160f6a9484c27ed190342b5 release27-maint +82544 3ae913a9cda90ea3e25d979d27544f9241661f06 release31-maint +82545 a63f6baba6b54de98788934cd38fd1d110ef291c release27-maint +82546 be662d1243859ed437c0869b66d3b7979abf81c9 release26-maint +82547 361431c4d344c44acf6e6edce07e2004760bf558 py3k +82548 7ce6e364e1183067e7ca8379fad2681f463a92ca release27-maint +82549 3b15486608f05becd14c76054c5d99ba4548268a release31-maint +82550 b0743d52b6a317b291f753d5ebb7357ac1d852f6 py3k +82551 343cf5a08ff00f07237c19095f34b194e76c42c2 py3k +82552 c6f16b8cb858db958b184bd6d4522210a7fa056b py3k +82553 d2830091237cea3cc235a6d051fe032c310140ec py3k +82554 692b7989cd920369050e75bb6ad0b55b3cbececd release31-maint +82555 fb360c07905976b1d0e776fcc6d69a62917482b4 py3k +82556 3aa22428582a38a271b9eaee6c34a1c327e1ff00 release31-maint +82557 837e3cd3d0834633deb19ff3eda9e6161bf5f1e9 py3k +82558 d880c114317567bc899cee684e8b357afb3fde19 py3k +82559 c1a23a540a29df626c8d547f8a810c948d16a51f py3k +82560 fe5217a8affbdc0f4ac768074d9aaf2cb66e9128 py3k +82561 46abde071fffce0132cd3c8779cb09f6ec0d2a5e py3k +82563 a1c456317b7c3a2368e6e82b3a1d77ed0ec31f02 release27-maint +82567 7ffd2a44942cf656278d04fd9d267b1ef749ae67 py3k +82570 dcc2e8bf64cff61fdbc987765926a4a566a53f37 py3k +82571 01450120c0dd18d487b1d3b4d5d8d42308fa6539 release27-maint +82572 e1f48eb014c7046aee16ff9ce0cd56f706814282 release31-maint +82573 cf4f7f98f19e72bc1cb6f1ecb8414a1177d9d8f7 py3k +82574 e84d5164414460a36fff780c27f7324859612b67 release27-maint +82575 c81fc1ffe946703c791efbfc0fd1ec0cc3c96f00 release31-maint +82576 726483d97b5c0936f80fefcd867203f95d27cf67 py3k +82577 a7c8b4a6678bf1021300ea706d3f891042cb1777 py3k +82578 36d5e2f5d60043954a155d046e31972ae55f9adc py3k +82579 8ed7d111b2c97fed60e6ac42841fe0523dd25476 release31-maint +82581 705869d1bdf0fda211f099c1d4259652f4ad3f50 release27-maint +82585 4001d458f0b20cc7f3a14dbd8ceac9c37e08b783 py3k +82586 ee9ee2f9feb9ccfc0b67bb16f10f1c27c0289808 release27-maint +82587 9d5fe9361de21de68cbff37b963c2ab923c8e6e3 py3k +82588 680bf6b8ab8240a96eee9b43c4f1e0f3557b8b17 release27-maint +82589 6ec5722a07a5f2abe8a76cfd779036e8ec16a8b9 py3k +82591 b6fee55faa1bbbc8086b6b92f9f78d07a9e4c669 py3k +82592 3b73fb80807aa1bc2fe0f98d818bea3426deac4f release27-maint +82593 87cdafe3bd6c70a362cbdf29eee94bd10f412bad py3k +82594 8bbf24e51ccfaada3d72f90a4fbca46d4ffe2bf4 py3k +82595 5097b1b496012e1e340f9db660fd5e0fdf93811d py3k +82596 a07ef5eab90bb25b104e6585daa0f1b76f333943 release27-maint +82597 4d291ad0789149fc11d016255afaeb9805790b1e py3k +82598 3dc21907387574e738ac7f23e43ca5c8e1d49a1d release31-maint +82599 91457b2014e40b6191620e9e751ecb24accbc569 py3k +82600 870b6b455ef05d1b53a330938f80bc7665593ce5 py3k +82601 1f2814eb4d1dd1b1a6714338d83fe11a6e734ea3 py3k +82602 86890446a47bcf5284bdff3a2da191be2610505d release31-maint +82603 39c7d54f2848c0d1fa2e3008f74be9f5086d9e26 release27-maint +82604 1f37d082a9aaf8037e03f6b305dc78ed109cbebb py3k +82607 f1a4147b3c023ccea7c6df8fcc6130a9d3907145 py3k +82608 2399e0451d0dec86601f34c1fbbce31ee28a0ab7 release27-maint +82609 d36dc37c67f887063edefa3714c080fcfa96400d release26-maint +82609 74b0eb765a5049b253e1cc351da8ff39e3082c66 release27-maint +82609 0728b295f53bd6a3d70f5f5c725a855b8f3af229 py3k +82610 202f31d40389ce3f659fb156308e82cee003807d py3k +82611 0618c6231a1f192716599cd602ff4ba00222fe9f py3k-dtoa +82612 e12aecdc332c787796df29303cff61cf11d75b85 py3k-dtoa +82613 4fe493d99dcc1c217bcc527b0f363fbc00deddcc release31-maint +82614 70b0388f9d3f52565a85890caac3fb944e30e2a4 py3k-dtoa +82615 3ea6f69db242619824b08ba822b7fdee20cd2f91 py3k +82617 5812dd44807af96517ef2f3af811c1ad4d7c83a3 py3k +82618 d2b1689a3381ec652d7c4ec8523c9276ab48dfaf release31-maint +82620 0562f2e0528d12dbd2e254af04d420bfd099864d release27-maint +82621 43aba09e8946936ed53e2bab82ab68deb98a21b8 release31-maint +82623 912ab2fb43f58b0129883934abdbf467d0770a1c release27-maint +82624 f641bd546de4128cd79ce793207d2300b4ef8700 py3k +82625 e655849e79c6c82a9d497b78c06b0431ab39251f py3k +82626 87555f45cd6be5867d82d9826694e2a4ebbdc7da py3k +82628 74b2cbda9bda447f9978381235593991581370d9 py3k +82629 ccf8e6020cf34b5f5ec88dd5f268b133746af10d py3k +82630 f6266c459156306c9babd5fd8f32d776c3d10c0a py3k +82631 e7da968e3e5a0da64bad9ded9f4af5a204688341 release27-maint +82632 5f3e186bef0f08353b72ad394099a1cb2c4f665e py3k +82633 34e3dbd47e4fa3ed0b6f654a2ced4139cd7a531c py3k +82634 946464fd69210d70b4ac5ddf679e279faafb5ee2 release27-maint +82635 553f10b037d9ee233bd51ac0c83919cc7a5f8c5b release27-maint +82636 384f73a104e94e10d79e9c193e7fd0e2f2c84884 py3k +82637 382dcb0c6073a1468bf470b22f72cfe074ee6494 py3k +82638 55a024f51524bfd037188d61f8aeebbf2321f5a4 release31-maint +82639 8c6b3dc652fb92322a8d34f6a63541b3e3d32649 release31-maint +82640 a0082a74d125a2e85f8cd05a53b161066badb556 release27-maint +82642 040679087d0352b56513ce529423c2920c226619 py3k +82644 ca05371cff10a2f9d0f2a03b51384484886871a0 py3k +82645 f845ed1d89d5bb8c030a8a1710cd80b51a2b581b release31-maint +82646 ca0a3301a7ea1baabaf5c02dc653b27fb89fb34a py3k +82647 10e6a5430b7944b6bebf153e1d6faa3a405b8090 py3k +82648 c7305ba846197b935bfeda05d948ec85f62a1196 release27-maint +82649 d156f7b39c3c34323faf947b9fbf2036f8186571 py3k +82650 5bc7dbd31d1b4946c395dc6320cd4ea1e630ebc4 py3k +82651 b044625322e316c6484a53261dfdb3eb4afe0af2 release31-maint +82652 a6318dafb8eb5c2d819fd70822dbeb5e5ff70fef release27-maint +82653 3d8a7f701cb1c2537f581a1780a126eff6552d69 release26-maint +82654 09f5fd013c0be2fe7bb0f49464ae31e726634a97 py3k +82655 9752b85c01192fe838daed0efaba52706d026c51 release31-maint +82656 6edc3e2a7da4aadaface4569b0fc7bbb355443b2 release27-maint +82657 974f8d8bc0d44d15d8b8df53852ebba8ce7d860c release26-maint +82658 c8becf606a0aac096bf85f496d68b963828674ca release27-maint +82659 730b728e5aefb56ccfc4e9c2cc934c2ad8638059 py3k +82661 7a216bc2bed650b9705b688a8c0b68e2743cd6d9 py3k +82662 3528c4e780bf07b8f902ace75370d767857c0fbf py3k +82663 e4bda4a520ca75292a17160b5549d3d634030ceb py3k +82664 ff2d1b2cdc69139f32de784713d1bdf05d28e231 import_unicode +82665 c67f98adb8f361cb193676c8f51c9156e927ab0c import_unicode +82666 5b63185372d1f37aa71d6f12bcb3467377cc97c3 import_unicode +82667 16e348f165f85d34d6eb8b9749542f4dce1effb8 import_unicode +82668 44bd4ad1f6d42fab2044506448500d237037ed3f import_unicode +82669 5b6f03f391dafe2460a0a3998583b56297de7311 import_unicode +82670 e96279ac6d1468a34d1a7f432707538e0b428160 import_unicode +82671 a97f7503e50c4056fe30ba5f43492520cddc21c8 import_unicode +82672 60fc9446aa2e035376dfa07113cea6ffd6c931cd import_unicode +82673 c30d84807c62d095e84dda5fd32750bdaa3eb379 import_unicode +82674 dfe260231c49c14298ae13b514dae3058f460aaf import_unicode +82675 0cd9416a1c1e67b7f409e6f333a7db61225db159 import_unicode +82676 f735bb2b06de18598dc308a194482123b32651af import_unicode +82677 bebcb6ab09a565b1376de1a70bd859a551af6d2d import_unicode +82678 c872e4faa1e742391ebe0725fc83336edcb81970 import_unicode +82679 14da7c3e92232b14c38d7f00f51a7c70c8a2e0db import_unicode +82680 0952e2df3c4d1b984cc0eddb765d98b22fb28224 import_unicode +82681 76f36ca1061f44fa5a7b913b692424f37941aee3 import_unicode +82682 22b9388d7c0ef90a7e6614cee404bf05d59feac0 import_unicode +82683 e4233e9c846122651dac815be84217640c792c75 import_unicode +82684 e766f7bcb2d55c34774da32be5cf9b8eca3da361 import_unicode +82685 5ca41deebd0ffa2eef8630dda7b8fcdd0f4e4f75 import_unicode +82686 2e9fc532d1d1bd9bc81b05b94990a04139de2c5f import_unicode +82687 e1d86cf2cfe44be09453f1ea198be0b9182c4efa import_unicode +82688 e0fb49ec945cca572429467a06895363358be207 import_unicode +82689 a2c7f2060e5bdbd87cfbafd54779fc59f4b63c85 import_unicode +82690 1c1fd95e13b42ebefbc2681f031876e2442558e1 import_unicode +82691 0a30b56ca3ac9de1b15c8a366fd0dc16eeb209ad import_unicode +82692 360e1a08e53b9480aa5dcb38e099eddbc2963ff2 import_unicode +82693 60fbfaa7d93dfdb19d4db13f932a2c1d053ec34e import_unicode +82694 950b4754bbe2abfc0c501bbf1f60b9253a581194 import_unicode +82695 ffeb85128c7e848331696b6e14b23a4ea7f98ea9 import_unicode +82696 01e4e3d3774d6045c29923584c08f7e8452284c5 import_unicode +82697 e81ed3ad069d9ac2e5ea9ccf893a580afd903c80 import_unicode +82698 1adc23dce9717c4840100ad2e3392e4c6363ba33 import_unicode +82699 177a82ecff67106abbc4c67565c0f51cbe600253 import_unicode +82700 82497f1c1c5415283aacbeba03b3aca734f07809 import_unicode +82701 90ca45d656c2d657055ae567bfd5cb035249f8d9 import_unicode +82702 30bbc1860fbb2e7bd06669c466ae774874a7fd62 import_unicode +82703 865d18afda1510993bceb4da206a05426f6c5b87 import_unicode +82704 7af229ea2e665a9ec1aea6f771c5e0f0dffeeef4 import_unicode +82705 a29cc3850029f57e72231aa3d36c6b3a9cc848c8 import_unicode +82706 a421b4b45aa6620f2d1a451f5b1f82f70af68e64 import_unicode +82707 a7bb84f8498a1f6bc55bcd1c2da3c6e1b055372b import_unicode +82708 af7ec1691047bcc32a0625708fb12ee3591fb9d8 import_unicode +82709 68b0e72ef4f221d0b5e6a3bea752a4bcc8966ad8 import_unicode +82710 8e70a5ec1aca629548e9c27f117305df9c89cee4 import_unicode +82711 6dca93702e6bd02ddc7eab42ca1b97b81770cfe8 import_unicode +82712 76c35d8a26a0120d8d0b793824f9d898e0eca3d9 import_unicode +82713 a7cf903b17dcb1e256f7277ed58e6c5b28bde480 import_unicode +82714 78e6a6fbd3621bd8f7103497321f485771a29f8c import_unicode +82715 ab17b0c22ba1d24e054db9394d50cff71b962e0c import_unicode +82716 095b2972c44f11236c0e29303c237d004ed9c50e import_unicode +82717 36f6ed0651e1340ebf81e49d50b9220f9f1e4c9a import_unicode +82718 852e4a75e156904ae47df9bf5bedff6d5c46f175 import_unicode +82719 f0ef83d913545bde309c4b4a00fdc08134b2cea8 import_unicode +82720 ecba8fa5c743ee0a23965591689202a589d61370 import_unicode +82721 8dcf841f1bd405fecbefb046ad4b4253318650b0 import_unicode +82722 bc0b4c918ddb4a7d3e892ce4984ce7950a0304de import_unicode +82723 0e782a6e6bb76e3eda76a7ad2fcf08abe5eadf71 py3k +82724 c7f3617028a839917b512ca5ba57bfb86de8d2d2 py3k +82725 a2177262f6b7e5a744f742b40db77ed91308cda5 release27-maint +82726 08eee89af7b99d13a0598df592778e9a962328a3 release26-maint +82727 8c614bc766b45399f311de0b32eae281806a0a61 release26-maint +82728 0d1220175f29ed01f00966d5caa6ca9d47c272c3 release26-maint +82729 8aaaf01fcf03eca441ab84e9f38d3b1e0a0afe6c release26-maint +82730 f3bfdff2146aa4e10323a50fcc4a97f99ce373b1 py3k +82731 cfcf6f63e0b4ac05b52a091510e5cd5fea6a1ff5 py3k +82732 585c70dc1eaa4f7eefbffb1a7fb31d2e07389dc7 release27-maint +82733 db293fd7528b94c017cdc2c06b55d3737f7a366f release31-maint +82734 523affd4d4729370907cef359d0c549df1c392b3 release27-maint +82735 43a0fc184a58174912eaa14ccebfd7af5bff3de2 py3k +82736 47d49b406203a0f2a97f15e1e068a28f3764054a release27-maint +82737 e0dedd2dcfa81e011a9671d5d6cfd07c0c4bd70b py3k +82738 7e94c03bb84e153ec1f11e4a7da0c24730146e4a release27-maint +82739 10c0630f1c143a56753c3c40f5f00f8ef29c5fd9 py3k +82740 089fd710dca8849159e3ecc5153ba277af854d53 release26-maint +82741 7d9ab35e43bc66af9c42d9ed788bded302679a54 py3k +82742 815ae7f3732beebd1a6e1ca312a6a5eb30f22f14 release27-maint +82743 5ae7df6c93ed99b4bb157ace86560b3a89d32f63 py3k +82744 e3f83f56dd3cde936c7d190ff38987f19cb88ade py3k +82745 e97cdd5c5e4fc9915692b81c66ee3392b40f5b03 py3k +82746 92a9dc668c9529f018a620b4707bc09ce18616c0 py3k +82747 d41a31f5bf82f624af219f969a7e56ca53559953 release27-maint +82748 4eff9c35c54a7bb9854fe1b63134a5ec52e7abfe py3k +82749 fba9e91e88dcdf0c749346bf66d10414e659ff7d py3k +82750 c70d50d21f851a6a57140699ef2da9e7bab3cf54 py3k +82751 de1b9fc3e1e7220f432f607b58a4613faa1e567f release31-maint +82752 8ea60ae14968f369a29c3422895d695c58517320 release31-maint +82753 bd19c7178f242c384141f622a3307aca061b17db py3k +82754 f4781aa82b3750b1d489d60c31b76a49c39e03e2 release31-maint +82755 5025ba0553b6329eb158d43ec16c258c59f926dd release31-maint +82756 63613c4f6317f06a05165a3e726f610d35108206 release31-maint +82757 4d222ee2a1c85476dc0d6ced5f82cf91c0a3f824 py3k +82758 7b57289ebe0d4ef991f55ff1c97c904383e53cb1 py3k +82759 983e2c0bf8dcdecda99bf9120761f285a0c3c950 py3k +82760 35c59d11ae13832793b308b41c74c995e84fa945 py3k +82761 bcb79e1aa00f7f44d08b6c78567a551382f632f9 py3k +82762 33de9caf709000022a972bbbbda506b12b03b809 py3k +82763 254ef5205128ac6d60291b6e29a5d00c53ad653c py3k +82764 94378470ae1c90783f22e788598718c3d47a80bc py3k +82765 ff1a8037648c4bc9c548758749507a71a516000a release27-maint +82766 8be2b9e487187bdc2857bfb82814de85816fb8b1 py3k +82767 aac092eaf9d182d156bc2d7a200c936fa26ebc17 py3k +82768 0fbdc3fa024be58e8f1b1d8887ef8d8e8d45b03b release31-maint +82769 dab286d2ba82ffabc992a2c17d6bc780c9d729a7 release27-maint +82770 49861dfb27018021115f0a2103e2360c0b2142ac release26-maint +82771 ed3bc7a96ffb4ba37d3b6039026ea1a762e600a2 py3k +82772 acd6cccce837b9351610646166e6eda7381eb702 release31-maint +82773 429d0c7cdb856dc59b23a19beb182c171277abb1 release27-maint +82774 acef5d6608330098c66f3e1ca86b43e8b9aef4c9 release26-maint +82775 03f73c46f89c7ca742c89e5ef4b03df9caa31153 release27-maint +82776 03036afca5491a014497168e2b2a96242e8cee77 release31-maint +82777 5e60c7db0f510edba316fda9a8fc5bcedf28236e py3k +82778 28755eb53f389460edb0b2e2a2d4fe6d06262756 release27-maint +82780 b58b4aa469c4f8178f72efbf2a3e7541fc9ffc5f py3k +82781 1636124e5ffeeb6cc1122951ab4a333f9fd710c0 release31-maint +82782 7e09c64d4a64ce0d26471c279d05a486aa4fd04a release27-maint +82783 f755d1ab80746db6ca50eaf130a693fe46255375 release26-maint +82784 50f4f113bbc3f731fbf03210d29acb5cc19c5995 py3k +82785 a99e8adac081dfca25bf38f5c1b0a2b1e34305d5 py3k +82786 367d61e6a70f068f175b749958bfa5f39f5986d0 release31-maint +82787 55533d5828b031a6aab62f9e8c8051d5255c8ae6 release27-maint +82788 f0dd03bf6bc5fc077d7a55013da062504235d020 release26-maint +82789 5db2e07c4451fc2b3912290e72b04ff6b364aed8 py3k +82790 ba0f6e17eb223c03bda3a6aebfae7080e1b3f2a8 py3k +82791 0b071e1efd414f0bd419d85925bbe6f8b7a7bd43 release27-maint +82792 81d0557df647bff5d6382df4d5fc0b848cae3b79 release31-maint +82793 f97be580d8c16eb0f9ab61508f6ae914dc3d17a9 release27-maint +82794 b915162427ab4f6e74976946851e1f9afd2e9d54 release27-maint +82795 424e3fcfd3ad11e05175454898a02b36890d2879 release31-maint +82796 ce935e71bd07e518e2c77c419b01800bcf95625c py3k +82797 4707ede4d14ff14e71b235489150309d2007f83d release26-maint +82798 c8b77efe8b56e973773eff7c10f2a38b78c0e3e0 py3k +82799 0e6fbf518853febffd773ce4f00dc330ca00ffda py3k +82800 edab501f9df8efe1822256a1a4fa52e3f6db5667 release31-maint +82801 297f2c28f1829339f4a8b1f3c0d08bdc9f917c77 py3k +82802 d5d512b865a75d3db24582f70a06950ee39bd4f2 release27-maint +82803 5012ffae18fac6b92cc37ea13f0546d20e5ca46a release27-maint +82804 90bf0631bfb8ee870dec7db9aaa49d6bba8dd824 py3k +82805 4cb0e87c07ca36a1f0df159044b58454ca9b2e91 py3k +82806 612e12631511b224d3b4d18040efa68103706f72 py3k +82807 d090f6254c453dce7d74dfb08e776c9e2ff56c9e release27-maint +82808 365eeab4a350260af7e107612a8f2660ffaae319 release31-maint +82809 fcfa7bbe185eafc0a9b157c629f125a11bd843df release31-maint +82810 7f5775395d328b0c20df1ca0c417e4a2f5382aef import_unicode +82811 be13ff3755e9fab71631cc8e8743ebc5496d704f import_unicode +82812 81f0f0d53d1084e6172ae2603de507ee7856ed12 import_unicode +82813 d13914ecd370ffbb49812f5efc7b6ba384658f3e import_unicode +82814 189fa92d15dc597829e75f04db1d986bf36d19ac py3k +82815 b1438d26c167b8621de8c2289e7041ecba1f251b release27-maint +82816 a352b9156ceecb278849859903cd0d5e4e5d887f release31-maint +82817 0f4b7c07d1b37b5211c7c235f1093420ebc6f4bc py3k +82818 53e7ae8ca039148cd4a125668dd71c28f37c6334 py3k +82819 eaccf1a1cb903b4dd6823e211f899140a9fcc01f py3k +82820 4c11e4140ced1fa388d74d6abd94fea088443998 py3k +82821 06b3891a639534bb4e4352bcc712f1500d871adc py3k +82822 1cf43c6e6566b3629ff32c3b28747bbb1e7f6bf6 py3k +82823 1129d4dfeed6fe1d1bfe8c2dc91a7a9adcb01770 release27-maint +82824 432908d521cefeeb95752dbcf4d698e0f0abf160 release31-maint +82825 32d8b22b0e7c5e6290d0f4e7cc94707ef5d629bb py3k +82826 5ca22a1be3cd2168e314a497bfd98a234fb72815 import_unicode +82827 194384b5380e52438d2abb4aa07360ba574102f7 import_unicode +82828 4dd9852dae9b3e70eb9941a0afcd34b7d060ef80 py3k +82829 737519ef162e6ef2766a6ebb146b07d4e6f8406b release31-maint +82830 ab102a2260383b12dc57394c0556830c8f656408 py3k +82831 3f37e3ccc13138787ecb87a3671c26e09c9827d1 py3k +82832 6576fd4c0d2e3118d494d0edf0eb2411447b09f2 py3k +82833 49b83bfcfa8fbba3ff96d6b536c738d862e8feb1 release31-maint +82834 849f6e220aa0d2310f8a63326050110bc91c4314 py3k +82835 30f695ec949bd225538d48a1dcc37ee0be28dd9a py3k +82836 8e42c7a5dab8d8fb64da10d2a00de1c68bc42256 release31-maint +82837 f5b18f268f57d8e9602ecef260cd05a1b01de255 py3k +82838 0bb4dad81614b79f226fd32eff38ca106cffa4cd py3k +82839 664a20f4a836c7822cdb561950ee9262671454a7 py3k +82840 7eaba413fda4b8f257602a056f92b15e1ca0c397 release27-maint +82841 94f529764c3873c651ed45181e80b268bb35e187 release31-maint +82842 fcd4123aed9346c679ff8e8eae60d764cbb3dcac py3k +82843 60fdf147032cf15f979691d7b62843334f60d421 py3k +82844 64caa748a28eac91d5a056ebdebbef9050e183f5 release31-maint +82845 4ef639f4d8100b4290cd55ac96399111a2ddb675 release27-maint +82846 1f99823f4fae78a1d75e9c962a7a5bb86011fc44 release31-maint +82847 5b352133c4521c9e828b32ea39c0bce9a9ad5bb1 release31-maint +82848 b9eddf3c1e90a1e689a62cc62ebf050b9af4cab6 py3k +82849 edfd7ea48edb25ed6fc91b840800e113737ef913 py3k +82850 b5749dd8c421bb1d0824652692caf6afa68bd03c py3k +82851 daea978a48ae894f76319ace5574825f62aa57f3 release31-maint +82852 ad51ab8b64bd03e911e172e985239139750a3319 release27-maint +82853 4fd5ba35df6e5695180d0289ba51822810e8c8a8 release27-maint +82854 98a4e96f1f67401ce6d9a617d2c34a40c5bb1ac0 release27-maint +82856 31a3d76f383519fe6b546854ea16c52ba506174e py3k +82857 2c7579e04ad21455fafefaee42818cf3c89f54a1 py3k +82858 ef67e7481244775d58de95bbbcd29837750fb805 release31-maint +82859 aedb53d8c2b8cd54721a9652f269358959d750dc release31-maint +82860 67edc424e97b82cdef854670696b097102165883 release31-maint +82861 e607fe15f2d69425f458a6ad94ea59fcfd89fb30 import_unicode +82862 1e367afefd7e0e994132eb4d12067eaa809f9ccd import_unicode +82863 a5fb707cabdeebd86e99514d9d670dfe568452c6 import_unicode +82864 d493a1b4457e9a911f57125d4d919408b595b9d5 import_unicode +82865 20bb6fd0bd9c35f5b508f561d9b8459ec6eb0e4b import_unicode +82866 331e37e052cf3bc53b75b80a67316611fa69ec89 import_unicode +82867 3c9b3844f9788110ce702c4da408df33be516f1f import_unicode +82868 0916e8585acb2d9e7d92a3894b30c1cb29dc2458 import_unicode +82869 7f0dabb7fd8dd6126a594dc6e86eb0de27b15753 import_unicode +82870 5b1b7f5574c001bb8a827cfde044060b526472f6 release27-maint +82871 8635523ef5c639550a76fc44b3fadb525dbf62ee py3k +82872 d4f67b8649288a4b508ae25affe4ac03f68b0fd5 py3k +82873 ad95e23129c76cb26d90b5398a00460e5601f466 py3k +82874 d30b9dffb86d410753d3ff86af36cb2e6d9e2bfb py3k +82875 77023292fc614bca954cb817bf0d8fb70aae9649 release27-maint +82876 18bdc43ce5ed28e5de1f34ac12c1cfe6ed8842fa release27-maint +82877 7d7e63eb3b53018454dc453beba0af861cf67235 release27-maint +82878 77dfe2a775d19990c3f3b7cd7a377e0d463aeedd release26-maint +82879 eb0075e60725b9f1323cca3f93737fc7e7192cf3 py3k +82880 41360f8039abfb346262e8a4e022df21bc3a8f53 release31-maint +82881 d74de050c445dbe9eca83a5961c2ae5942b43c51 py3k +82882 4b456780c8d8af429ad9fc320ae3e58b721fafae release31-maint +82883 6141cb2e26e1470039bc0b42036322d23c547287 release27-maint +82884 0f24314010212771963e59fa9a6eacdfe7b3036d release26-maint +82885 c0e0756e0996634eed5dc9ccab0343805da2e9d4 py3k +82886 3805ffe8ff38315eb6e222500ede417f6d36498a release31-maint +82887 6c763d631dba0594767e2cd72f5efcd077e28f70 py3k +82888 2b68a844145872ffafe51c283396ca6c1c912807 release31-maint +82889 d4f61b36cce6e6e70027a9ec25e0b271bd67c5e6 release27-maint +82890 9f1d9aef374c77d999add2dff320cd79333105eb py3k +82891 0f83ca12075290bb05d364ce20155437708ba8ff release31-maint +82892 96757c690b05f2df4bce9eb69c71fca4d011a2c2 release27-maint +82893 c708c946ff3e43e7dccfa90768ff81b8edddd306 release26-maint +82895 a1f7dea362196b6b1abc4450bc7a740fd48dd038 py3k +82896 a2973e705057a71c007cc6c53d2f064b6aed9e49 release31-maint +82897 0b291e2ff00fc91a97e80b5050e66a5abb9dde42 release27-maint +82898 6333d3a7e5c739e9557179d125063fd9d9680330 release26-maint +82899 46927810279087a338ac125f4374550e80406793 py3k +82900 4fe28a491a630893ea5a6c9dba28cbe6a8851757 release31-maint +82901 c745df9462e677ed812ee86f62b8022370f7e4bd import_unicode +82902 ad263cc386a542232bb2eedcf3644a11eaaa0148 import_unicode +82903 fecff04d0ab13b0e89c63b8716aacd52bddb1455 import_unicode +82904 7cdface1ab09626ed1e4aa6cb6a565f6b93f089e import_unicode +82905 730c8b907d7dcc8791ef6e3400bb9b6a375a8110 import_unicode +82906 ff9ddc161ee3d0697ba1c1e98fa628e92fdc8bdf import_unicode +82907 7b71b6dc7444e0a1ccbc04e35b51e650383db527 import_unicode +82908 89f97a1213cd9b047584117c828a8cfc4c8e7b93 import_unicode +82910 2026ea4428899c93a7ee36207ad894ca0eb2b144 py3k +82912 0b753a3fe4b0e179e45f978e02f1fb46eaba1b29 release31-maint +82913 5fffac9ac7d6c26956f79d913ca362f2e5decdf0 import_unicode +82915 1f27a05c6c31d4a13152d3c39f7f759c7d4461aa py3k +82916 24f7fa2581e6f1d4d2e0fa11d35b2b54d8ac2e42 release31-maint +82917 e7031983e6fdf3c548537d7c8f9c215f50bf5333 release27-maint +82918 e2ec5fbc6cf137cc64ca0c3a59b800dd94700a92 py3k +82919 a0b95377aaad8d6e9bdbe140c34fbdcabe934c87 py3k +82920 7cbf8c4e272791fd78b1323c3a1dcf04c57d8088 release31-maint +82921 84ff41794d3f2b48da26e8862eeefde17f933dfa py3k +82922 3c73010bd0b0cf7f2d825ba9b2d2ee4cbc34540d py3k +82923 7a00ca4b9592b85a65ee2105d2383e087d9e491a release31-maint +82924 01711f60fffcfcd421ff119b5e6e22ad63b56eac release27-maint +82925 4c45a32c3cc998ee522d284c37141d3c2b1b3892 release26-maint +82926 eaf04a3f451a2dbb01ff46d1d9c0d9d17ac66f44 py3k-cdecimal +82927 c741a1f2297698b9678fec0e0f05c1eb32b0338d py3k +82928 fa8f388342878e2698b45c57fc4ddde7c2b90bbd release31-maint +82929 e05b646d6b98501f8137e8cada3633a07334c97f release27-maint +82930 b22893be08c71e173f6683866579aa6995cdf0e6 release26-maint +82931 cf4b833a47de85aec47580044fe5d6eba52d67c2 py3k +82932 f28330881db44e80523b7408e3fc1ae45eee77dd release31-maint +82933 905fa57194030ec56b02c29b341e1ae05a2df9ec release27-maint +82934 2a79b723abdcf952e1239b0d9542091870003827 py3k +82935 8c440cf90776d2d4738c769a5df5f5549fc97ae0 release27-maint +82936 9e619f16f66aa424c4f81699425226b56a0e0d5b release31-maint +82937 3c78b3cfd462cf48abbdb8c4ab0de6b94fdf1b8a py3k +82938 abf69d402883b7b3de2c3c9a927e8356f24adfc5 release31-maint +82939 d1d81246b22996e3f56817e6d506519abd83566e release27-maint +82940 1e21d94e05f4629346ed0def2b36e6db831e6c0f release27-maint +82941 2683333755f362b6b547a00423bc95fb91a74011 py3k +82942 68036f2b5ac8d9f538930c502cedab306e86d3f0 release31-maint +82943 b1dc60b3c7aebc2470b2cb4cd3998f744e973f14 py3k +82944 db2dcca240694727bb091f94a7b92f05381ad3a9 release31-maint +82945 19191559ec02c5dfb2fe9d720c1534d6d76f9366 release27-maint +82946 c16b3f6ac511b62473d79b24c36459f0c7bbd4df release26-maint +82947 211e318d23efa8f6cda29f2d25258bc01c759fbc py3k +82948 db3ad6ec0a4b16d97e2c21b313ffe4c917928629 release31-maint +82949 978683fde82037417d81844520f2d87b1da0ebc7 py3k +82951 6dc3d22283ff54fc4b61f0fa9d2d4eeec5522589 py3k +82952 16e862a5b6f26ded987c087a38bee346ab093c1b py3k +82953 4bf03377584db07649b8de35e6ed26d53a59ea90 release27-maint +82954 41ab161d47a7bf45dc58b4796176820e2daab541 py3k +82955 7e451ce90c1a6244a3b4e9b018a69211e091d640 release31-maint +82956 0d91812f62609687f0b23da3922c51d76bde4a03 release31-maint +82957 31df6f8e9f1d4d049d9b2b96ae8db87747b96c40 py3k +82958 67f8f05cd40dc0e261ec2abef0d78b145b63bcf6 py3k +82959 ccd3e54562fa7a0d653cfe708a18089ea3262701 py3k +82960 a4dae7e2df7e6663f0d3cfbba3acec853f0b9552 py3k +82961 4835106ece0c5324a20c6226f61d99c8034d9ffe py3k +82962 a65c99f94890095b0cca4a30226ee5c37156249c py3k +82963 bb7fc08f723ec7db7fb1df9ef6368cb786a418eb release31-maint +82964 2f955bf93037b6d68cbb84b2d4c1386db8342009 py3k +82965 25216a7e234d6aa385cb3a24fd2a1236904caa4e py3k +82966 d35782ac21f861f969996dd7dd81e6cb94149c2b py3k +82967 b7942915480f78ba5396aa94964161290e77c908 py3k +82968 c90021fd1fbfaffbfbdb4f33d14f475dbe6c3894 release31-maint +82969 c96a722be1dbc1c4e0d0bb446d07553e34bb2bd2 release27-maint +82970 b9c989a2fad31377cb259049e37bb4b6ae4c8ced release26-maint +82971 aa0b56dd14af7b8b5d43ae0f4dc40483d646edbb py3k +82972 ad66eff9800bbc2cf246726aabdd3cf67bffdbba release31-maint +82973 354546846c297ae3e13298c9533794d2bd6985d9 release27-maint +82974 3fdd9b43024c621f12fc2692b8c5c0ceb86ca24c release26-maint +82975 7f313ed9e88f32439a0e4d3b15c9ea38a1161afb release26-maint +82977 a1121409f96b20defaa4f47512f19450bee26b41 release27-maint +82978 73ddb8b2b5747e8c32b3a16d42e5df3b6bb65101 py3k +82979 5cff058d6ced5c159b1afdfa38923c627455b3ce release31-maint +82980 3fa605688d035a545b602013bb0c0c16e758211b release27-maint +82981 e1bc2c8935d20a7e8f702d19e78f230aab2a14e1 release27-maint +82982 1c66f72f6bc93b1db43c0353ecca4208d30464f3 release26-maint +82983 f241592ece4ebe5dea93005775089ef69272b9c7 py3k +82984 742fdf7f654005626fe77c71bfce5b29ecc4633d release26-maint +82985 872b34cb268851442e41933801fe66439dc6a45c py3k +82986 b2f1385a235e0d8986e2974dc0ae7349db002b01 py3k-cdecimal +82987 3337a2955e11927b3dfa7ae88d74a957a9000e1f py3k-cdecimal +82988 169347f9d4c4f25db07c9fd84fd374971e6c1423 py3k-cdecimal +82995 9c766cd211db0eaa627a581b101328d08d8da041 py3k +82997 a14a78692c7a1580ea7995553602f60bc2e7df74 py3k +82998 c0d8fe25e266ec8661f34f6e979d4674b00524e7 py3k-cdecimal +82999 1e261cce411645a36b57c87f4848f5fe2be25877 release31-maint +83000 45ed0cf2c386a6fbc97e606f420436ac2919a0e2 release26-maint +83001 c1620220a43d28f770082309f845f4e2676524f9 release27-maint +83005 cbd6f5d24af9061ea2abaaebe2b112c0643bea96 py3k +83006 9057ea0144617f286410eed28626c6e5837355eb py3k +83007 75af4a27a070971a03eb4dbc38be7a6bb46b1a1d release27-maint +83008 d0ba3b8b0d482b11eff96d88dc68235d7db76889 release26-maint +83009 bfdb5f08c0f81fb52c9edec95fbd0a159abbb494 py3k +83010 15edd5fbbcae1d3bc18d096759173f5877cd295a release31-maint +83011 fee4994620fbf9851ac13d8706fc1c1e1cbef180 py3k +83012 f4eb1c6a34ef430ad0ebeb2f6b1e1e5cb2d6e6b0 release31-maint +83013 7079c607814caab4c0b183a653c7ba58610d7c50 release27-maint +83016 5b468687768cd518ab82c67107fe3068b3ca6ea3 py3k +83017 70925d3c027947f6993698223c84a142b3871987 release31-maint +83018 2f1a836f0fac1a23f0db519f7c8d195788d72d14 release27-maint +83025 20e56eccdf5226386ae41cec32edf0468bab2295 py3k +83026 4b40bf91ebeb326e597848078e054ab8079fa2a0 release31-maint +83027 bb68e53454b6d64c6d360b32320fc82559e6fbc2 release27-maint +83030 367529dc34d11f12534f2b3035cb296aeb5fb43e py3k +83031 e5cdb12768cb4ab9ba940c71cf143931dd30d96f release27-maint +83032 7b5d1527c0ce8a309065685eeae93feac820ec07 release26-maint +83033 520bf4d1cb66516b910746ba8b1677056720b660 release31-maint +83035 4545ff5061b7a7a2243bfc61c3a83a16f0ba147d py3k +83037 9dbbe6e7b668c15846d7c9fb35a6e04b366dac55 release31-maint +83045 1f4ed71b68e2246e5dd61ee5af2b8ea3313be6fc release27-maint +83046 305902b3c1a009fbcde1747a53adefd61775fd53 py3k +83053 29a3eda899953dc2b31568d0ec6725996160e351 py3k +83054 ee01f5481c680c90cc3cd16d60f889d7b7962c18 release31-maint +83059 3e609bf462ff311cc306d08e41658e895ba67463 py3k +83062 1c441e39dbe46d880f7f17fa16084eb0670f0365 pep-0384 +83063 88520fb45bf2ed4a3b79a63d47dc03f03a654731 pep-0384 +83065 591249d98383ac6341ddbc17639439d887d6cfbe py3k +83066 16edd4fba6a5c2d6be040f1a96ea22c5c78c7be2 py3k +83067 2ad8e8ce46c6b8f8e69f369a906349944fdd4655 py3k +83069 5a698a152f30235d049948354d91aa255d607eb1 release31-maint +83070 721e728ac060f0a40bd01f9ebc2b6496e7c9b4be release27-maint +83071 535cab1a8c00496e3cf5873d1f313045a716ed66 release27-maint +83072 37d84891c671a2d17b45ade4526af948619a6b7e py3k +83073 8ef957c381fda727091ead0ef4312012f5f1f96c py3k +83074 faa5f017fea5d89f93b759627e6a42c65aaf7daf release31-maint +83075 e60fdb348bdc6110ab0ed78e301ce1d0f8649847 py3k +83076 c483f9497872b6321a9d5abeca82ff39450ee28f release31-maint +83077 bffd399b764c6dd67d8353938300da82adeb24df release27-maint +83078 76e079225079c6f5390f3dcd94afc2e6fb10daa6 py3k +83079 996ee9e038167075e7e135da29518ac9e5bf937f release27-maint +83080 3a93fd2ebb40cec2bf6a1c56b9af5ccbab7587ac py3k +83081 c0cf7d7001e2320c2b827b86750925fc4d798f9e release31-maint +83082 5ce3c06448a78ef46f1efe25aa269007961b2781 release27-maint +83083 bdc069a1a721b28ad21849232bd5426dda871506 release26-maint +83084 183c5625e00bdf68d0487f676eb6cbad9203ba0d release31-maint +83085 1ce84c61f3b13600139a1216a3bf0a96449a3942 release27-maint +83086 e267ee9760bd14a8b4270e12af982c941fa7a67d release26-maint +83088 10274a7bc537761fdbf82630e1a369481888a869 py3k +83089 e6383c81da41ca056b5cf617d19edc9bb3327e1d py3k +83090 f523b39852e7460cf77d950e6fb486e9728ddd6d py3k +83091 0483b8e8bc59f17c781b5497b7997af81c3cc61f py3k +83092 2855d63631929ff5574db3f14d9a3ae49f9dbf97 py3k +83093 ec42b728264db6cd4d680ff14a0e711d82a8cc9a release31-maint +83094 2786d62cc79c38a7a0184871582ce51446670ea5 py3k +83095 764ec9bbf013a1f0110a73e033a7c0e96048fa4a py3k +83096 8723c1dd1d25c1a84bd9f2e8cd06659130e72344 py3k +83097 1f8fcbb6396bc69e6c9200b59bf2726afd0a26a0 release31-maint +83098 97b841b3b0b47bc6922c910c1c06307146836943 release27-maint +83099 060de060f03ff0b6d96bea7a21d5f212eca8c0a2 py3k +83100 68619c372ef013f9dbe8da31de3aca41f1372adc py3k +83101 580c789b785d5d739609711b12fa3757a8017e1a py3k +83102 383e8463f56c0004b55ca1bbce11261299349869 py3k +83103 0f2b0f37764246ec142823b6462d2f098776beca py3k +83104 227dee278638a7f78e2152bc2a705a8f02c31b80 release31-maint +83105 32facbedfd0ebc4ea362285d462abf2cdf23949d release27-maint +83106 482717960257a090d130aac28a6a77517631b20f py3k +83107 e437953425d7054327f76e28f7ea48a8cc55c70b py3k +83108 af9341324d3d82e18386a80f0afca77450d3b59c py3k +83109 71f1c0be8aa776548ec3334f84aa600cf3c33dc9 py3k +83110 db37af07d4c2712084a6facae34eb34cdac74c1f release26-maint +83111 f9970391eeab28c2a6f1c4e14ea76bc20c5aa990 py3k +83112 afdb533230659a427a36b2f65b37bce3b1f8f009 py3k +83113 e773884577a5334b771aca20d57167087e46ef7d release31-maint +83114 89931c8368574a8b4642e27fc64970a914b55cb6 release27-maint +83115 4ed60c4bc8b60169bbb43a6ef5204d76e9a3bf5b py3k +83116 8fa424aecd0db8e6ae7107ee9c65beffcc6c2d5e py3k +83117 dc2a7c344baafea10ba0d910bcf1114fe6a64fff release27-maint +83118 935780c62c59577009dad00a5afa1e79f8a6b51d release31-maint +83119 ed328e672ace1a3d8a7898ba2c6250a7c9609b36 release26-maint +83120 5aa726414f8f08d46605a5c4cca09f93e2c87b95 py3k +83121 b0af63aa09eacabe566994b7c4c350db44e371a9 release31-maint +83122 8072dfd97e1ddf37fd0cdfa99997d3818d07908b release27-maint +83123 c3866cd91ae00e5ddc23feca72813a1901652b15 release27-maint +83124 ff6449643142e24cd2d0c50f35e6a601c178c941 release27-maint +83125 33e4a47a6ad10db553303cc2b338d1718498e884 py3k +83126 d896f3f94a4df2288f56e607515e033dd2a691d7 release26-maint +83127 4ccbc29c7f11329a70977dbbd5ab1376b9ac23b6 py3k +83128 3f245be59339bffb1c8d16c1bc9c4b84f4366106 release26-maint +83133 ad5f2793f7adf08f65e88051e1b52af09e4f9470 py3k +83134 f8126367a2deddda26c363e47fe53bef09d23ffc release31-maint +83135 3e6592581d0f5a82264566bf5f5b0cf1bb8780e3 release27-maint +83136 5343ea7c1986349b97d6ee7dd6ef06380edcbd7d release26-maint +83139 a16b5bbdf19b4282a4554d38d6d8c036a43c510d py3k +83140 9ecba8a1012551a64f995e7aefe5868564e0f4da py3k +83141 2c56f4ab36f26a4b3c85041cc6f16a857de2dea1 py3k +83142 2dd299e7a6dbd371599406e9f4dc49067cc2fe44 release27-maint +83143 ef9b39df59368062b47771fe3fb009d2631bfdbf release31-maint +83144 b19f8a4929d5b3b8b5496ff838519c2aa244286a release31-maint +83145 fdb0cfdccf85825f280a835e363c9600845f8a49 release27-maint +83146 d86c18568e897574a5a12fe0b280f61d6edc5312 release31-maint +83147 d33ebb3ef0b107d875a2976833e4a1abb28ac8af release26-maint +83148 904b3a1616f37c38259d83883f3057dcea02c963 release31-maint +83149 9e303d6715ce89aa66c539079dacb798299b2384 py3k +83150 9ecbdefc9849ab909a03bc62be9de5efb4bb639e py3k +83151 513e498b223c2a6d071be29a793f36aee2212ec0 py3k +83152 10ce04140096884c251a24120ba52a3fd2a54fe6 py3k +83153 fe8a2ce914ea8cdaac27a58e9edc99b03eae36fc release27-maint +83154 fdb71d6c18224f810e2c8fbc4c87cf3afb611e63 py3k +83155 eecc018aac3eddd7bfc809572f4e588eed7bdf4e release27-maint +83156 55f45e90674d6c055eacffd8b744b8162f2fba1e py3k +83157 f6b92808b9b34356e4323adc8050a5dd8e6ac759 py3k +83158 74b16f439e07ba041aeeb43b8da02017532005dc release27-maint +83159 4d3de16d02cc288ef8cbd8f4df94dde39bfa9a8a release31-maint +83160 c3be20c390a27098b02be38cb193414d49a8e26f py3k +83161 2ced1ccd35ea40ec98a1556e4eef02151a7115dc py3k +83162 6a99d91be0f8bcb8982b19df1b553c867257b316 py3k +83163 7a41e0c488550c303ff6540e18c84000b8e2760f py3k +83164 ccb2199c16ba0ee2134bdae09b7664e3b7c2a4b1 release27-maint +83166 f9a007afd40f372f8deaadeb528c2c952cf3831f py3k +83168 35c1456234802e1181ec84a47340f8c5b5d27ac6 py3k +83169 3e9b92cfcacc51f7b444a295e4846650b254602b py3k +83170 0970577009e05717d0c5c036b78e8c7b013c5be7 py3k +83171 adefd5c0235dfb34182987ea2e92fb4f6c55173b py3k +83173 bc03476ce9019b03a257345b57b4e6aff34f067a py3k +83174 0b84094b15158ce643ad43906bdd343ba98e9464 release27-maint +83175 3355356f1c74d448ba5e503626ae296cddb4a21c release27-maint +83176 5522433150e1d98cb15e0a9ad997722305c5f2ff release27-maint +83177 f9b860ef24bad92129865041a180cf361bce1665 py3k +83178 e1c3adfa5744df732dbf514452dbcfb9b93e2bfa release31-maint +83179 dfe0095fcab0f6f5c8cc7cd7471a725d1977a96f release27-maint +83181 2df733951bab47c3577015012f720c1fc155c771 py3k +83182 f214ad09c3842d10544602619bdbe893b5a8b772 py3k +83183 e2d62b5a873011e6d9e6fa1ff7fb09d23aa4e500 py3k +83184 e918afd350868842d95da029d0b872433e9abd67 py3k +83185 fd9b421cdbaf55c54c7a154c7d0f918f97f69811 release31-maint +83186 5b5bcf4b9fb021a6e0121de47b3855ff084435da py3k +83187 c3f5833db8431cdee3a5b12437e69e4c97c5bfba release27-maint +83188 685d3918f2a5e1bc94417bfb5997bb5d26f3bf5d py3k +83189 b5f3f742331867194d008bd04b51d3cc19ed9299 release31-maint +83190 1cd454da4928b3eca6524ff753aa17429c4d82ae release27-maint +83191 803250f5c4c268f443be27acf345a5221e8ac47e py3k +83192 16f5cfb16c6acc296c4ae247550ea357c3816ae6 release27-maint +83193 43dc129892addba0ae018c72bd71d9f4e8bbaa93 release31-maint +83194 e4ab0fbbbc9460ecb070d5b3f769a77ac3c29f17 release26-maint +83195 4a7b395edb69d76ddc1278cf183db29c29a9cdda py3k +83196 5edce14b62877326f00afdfca434bd24951caaff py3k +83197 ac7eb6eaef68877cf820aefeaf5836e813c23c16 py3k +83198 74fd7e80b1be423688a5e664e3a308bd1def0488 release27-maint +83199 5d45c651348be3b8f2f59bf6218a6f562bc4c48f release26-maint +83200 315c2b524c59e9596114c45d2ff07f68b689a2ee release26-maint +83201 306833ef119d1cb5e9cab515a9018959decd60b8 py3k +83202 bb9eef8d1ac6a4fc58d3f5ad9485ee2a6e22dde8 py3k +83204 8e8cb168a089f746aa170004d4b3f94ddb68fcf0 release27-maint +83205 e0bcb9703442dad884e43d971e5c337884eb5a90 release27-maint +83206 6d31b60372c4837cff1c6d226141668f2d9286df release27-maint +83207 1743dfeeb9b03d6b7b5984a3a0497d1194e9e2ad release27-maint +83208 ea3b535136e7f85329e4cfde51387548ba018490 release27-maint +83209 9bcbc343778f3cdbb9280d2bd0eb8a324e3c2fe5 py3k +83210 3119c4d7276b15edd61899f8d8eaa210223a3385 release31-maint +83211 0bb47c51e933f868ee3b4af80663ab97d54f4073 release27-maint +83212 aa19a7cc1bf352bbde863f9ae1bc6aa4605786bd py3k +83213 79e376824b388a76b2d72d3461b51149a653d8af py3k +83214 0132e4ee9e7f241c030c565baa4e69ba599634f2 py3k +83215 d55d21c396c5cd219bc232459d7e1fc5b3050fd7 py3k +83216 be6d014df9560a9de5de74d9eb4ad76ca538df7d py3k +83217 51466d67722e061011bd1262b14dadd1285b9302 py3k +83218 3d99696689f9b2ad91beb2d0452bd671ad6cd0e0 py3k +83219 e2e32a869810df8f7c1af156e90ce80ed6e26856 py3k +83220 e5a2f50fee64e1233a728de657addcfa88437f3a py3k +83221 071609060f055af9361a5ea37217af3d6baedd52 release27-maint +83222 52bc19405c0f3323a3d5b5200b92e0f0334fc237 py3k +83223 054f3279e3cce9560b3956451e02aa5b32883368 py3k +83224 ee37bcb8f03e722eef9f7ee89847d44c41750c1d py3k +83225 056436065290f72b5df7d30b70f3f7e0fca02bbf release31-maint +83226 a27468af5ec2db5ba6434d9c75f46b55574b0b47 py3k +83227 0540e67d79241f79259fcda13d88e4e2f499e03d py3k +83229 f6d3bf4faa9a7b5857d83d3b15f0eede21a4070e py3k +83230 f20ff99a24275f2dfd3025a1d2395e219ebff5eb py3k +83231 834715faf165a500be961e4c203ac4dcf99f6115 py3k +83232 c55faf47459e2eb773e74cf3b3bff0c498f63496 py3k +83234 1250b068f31701d9aaca2c7f3eca8a6e2631663b py3k +83235 94b3903de1076b2b325675f599d5186e2e437b48 py3k +83236 91cbb55e20be54fa259bdddbcf944d7cce64840c py3k +83237 16189b7da3b62f46f7e6b6a6f528ffda3f4e2002 py3k +83238 f435b7b9869097c7dd367bf006f0e223ed2b4cbc py3k +83239 29ab536cfef67f29d68a15d117dcf7e0dc741dfe py3k +83240 902131b319227d818a7e284e171455e95167404c release31-maint +83241 b75ca25a140bacc7efbe4b3c9eb106a350d79de2 release27-maint +83242 89d78b667d07be5412056b2a04660a4dad19c466 release26-maint +83243 4ae0e13e94663eb723edefef815dea939da145ae import_unicode +83244 9707c855148f68e4dde126bc21561382248a2a56 import_unicode +83245 8a79caa4f473271ded7bd02cb7da1d7adcd7005d import_unicode +83246 27c6a9488948fdd5777c366f23a0ddfadff292c4 import_unicode +83247 a15e10d1cdc0dff78e087475573f7d4759e77fe7 import_unicode +83248 9a74c75dd82525fb1a43ffe05d0ac3c644cc63a9 import_unicode +83249 ed090116b734f7c37e206b9ac856deaf6268719c import_unicode +83250 6219959109392e0e595313ff02e210b3d0018e3f import_unicode +83251 098356f5c8461d34dbe17a941a2c714b02ebef58 release27-maint +83252 326b15d8c341365875394a97ed8c9616852080b6 import_unicode +83253 de3fff4272c84b8f4024cac5f9e73399d5d9d138 import_unicode +83254 807beefad51c4be567d3acfebd4c53ee7c58e9a7 import_unicode +83255 06338157b4f7083e0b8dd37470564db4fb41e33c import_unicode +83256 04e4925e5a8cd6ca910d31a822840d56ecfee65b import_unicode +83257 dc5da02136e98982c02c8e50b566c5d36776a8f1 import_unicode +83258 a4e0b7af4ba44b02057ed84103006daaac57efa2 import_unicode +83259 a966c3d43a7eaa611240e9f8c516c816b52f42df py3k +83260 cb18bc8dd4693a84cff4da9e7fc8b81336fc75eb py3k +83261 0a1748e13de96dc557c5eadc017328443e1c3599 py3k +83262 0f6a1e476d310caef043025a348e6ef8873e2a37 py3k +83263 48557db0eeea18f8925371d5a454520746b3155f py3k +83264 24975aad426809a8b04c2c77ecec5220d4e6abf9 py3k +83265 7111b797ec115fc34a4cfbe9d5ddf824150b94bf py3k +83266 c5bfe1860a5d80e0dedf7f23c37b78790279e598 py3k +83267 294123aed46b6510de3e6897f51c7ee34a36d1fe release27-maint +83268 9704b9d810e5b71eb759468ce8a8961ce44338fc py3k +83269 840633d372bcdaeaeb2d82a0ce480954ae9a732c py3k +83270 efd97a0393749a5f5e886c5e7dd5ba735e22c386 py3k +83271 0376e6435f57c12d45e168053bb6112dfc3148bd py3k +83272 1c5f60f381b264acd6f7144f07763687cd531b04 py3k +83274 ad98b525b587c66ad6afbe622126cb46dac208ed py3k +83275 40d6a7c15836a2f16742a0e4f5b65e9a2c2e6874 py3k +83276 a1e2af6537dfff2241d0434c6a64653baddfe07e release27-maint +83277 4380fb226b112705bf5ed53d316cf728ae077409 py3k +83278 579b339ab15f566bb5e44ffba00d518993f69f9e release31-maint +83279 298c969f565b965bf7c1bb1d9ab0736685acc667 release27-maint +83281 a7cc08b4ba269d9a74a8a48ba1cb7ddc28301970 py3k +83282 abbb49ad1fc333069e242558ee2abadb0dc82d31 release27-maint +83283 381180a8f44712bc134405d61ed241db0bf76697 py3k +83284 934b090dfec80ed4b7ce4b6b0a7174f8fafcc1a4 py3k +83285 fe4bb7cb1fe87b2c102fff1b27dfecb52027a350 py3k +83286 2c9a8e6112b399201168541bceea55da5e576bab py3k +83287 46d2ec78ef79576ca5b9c63574c813b559290864 py3k +83288 bcf93e3766e8e403be30a18757507d95bf99972b py3k +83289 78a3db2f7e0f1710ee91b92bba62a5c1cfab0565 py3k +83290 20cc9317969586d9fdbd010486fd5ac4693fab05 import_unicode +83291 c3b673b946123f93532a02b954007c18339ad91a py3k +83292 b803cc2d6a5cbf77d1a4ac7c07d70bb224f49654 py3k +83293 670d4cbf1464522ab5406efc1610703d7007c9e2 py3k +83294 7871aaf111a25d29901694c1b85b7ed3f2617ccf py3k +83295 1002c3dc90d1a5a7b2920765d47af2628d1e3e2b import_unicode +83296 467019588fcc7b236dd3eff96dd7929db1262a76 py3k +83297 08b943a1a9344d3c80c062434030b5f3ede89d3d import_unicode +83298 c7dc5c7b7af195f74c666a6060407244a9ea5b7c import_unicode +83299 3e74873f21ea59a3be237492e2571aacc0394bcf import_unicode +83300 8cf6d26449757f24e79da5bb4dcf0249b0c62df0 import_unicode +83301 65ee0bc97475f132d5f671a6e40945e09a4799a6 import_unicode +83302 d6ebedcd6ec4e8e5485f01da66b8d750780337dd import_unicode +83303 5105c12c31b27d9b2879228492d54562f41efc73 import_unicode +83304 882fd855f102b4392ef13d9f40f688319504e5a0 import_unicode +83305 88adb64a7afd9be7be2c6c12744e0125020174c9 import_unicode +83306 004961801d18656266ac5c57be2307314659b1cb release27-maint +83307 845cef2eb1d7c7e731c652b5191f9dd281da17e7 py3k +83308 7c4a77604027732f600476f835f4e2ab6715484c py3k +83312 661e4bf85c5885d2dc020b6a08ab74c7f25b311c release31-maint +83313 c2ea05161c93097c420f4d5d08b284a4bcc2d3d1 py3k +83314 5894590e9c8d5fabbbb70b2a0664927a3254d8c9 release26-maint +83315 c3b1362665388ac9e008d9dd3262870dd9852bd6 py3k +83316 32d94f316da9847ffe26b4cb22743cc253f23c45 py3k +83317 7aa9757772023db144643cddd486fbbb45503e13 py3k +83318 6b23aa3000321d79cd199ad6e7c18a79e4b7036a py3k +83319 e17b1600f4406b6ee19f02ecdcc08f4ab88a276d py3k +83320 550b38caf5c1fc7bfaa0001be6748d39a4d89040 py3k +83321 8b42693e95b8c3783b529abb98b3c5f1c877d1d9 py3k +83322 f574a071886dd7c4ac4eb84d6f2e3eb4abe97d20 py3k +83323 790353becf8cecb9c5512b4e6a1270f873c67582 py3k +83324 57ea00516edea9561931494a9b204240f5f2f317 py3k +83325 6f8defd017d736e70532a1e05e5b1b9ea0a54d39 py3k +83326 6e13ead389560488112e6cb1aa3de05a3802ccf0 py3k +83327 a45b38dcdf16ca0067daf296882fd22fad1c2a16 py3k +83328 74551c0b513b6c983208bbbbaec3a2911a6babdd py3k +83329 fb6a13807ac95ae31ab55990e5e05193edec5d2e py3k +83330 fc815f3b2781274c8f8f9af154a914b89e899616 release31-maint +83332 1b50e627c63ace5f02388da029b1046d76ca4860 import_unicode +83333 19ff360327e783821abea1f968ade012ba63ead5 import_unicode +83335 043caac6c8759313a8bf374d26fb28420f7786eb py3k +83336 29e60ce63ae5be06e1e7e3a860d8139c94aaca16 py3k +83337 e486d19f2b0b81c3b90629de4549998e4754351a py3k +83338 8a801a3aca3499a1aa0c24128419d930adc8e9b2 py3k +83339 43d14bbd6eb117842b7bf1f673b74cdcd9f2c299 py3k +83340 ded58e449da332e6f561f3ab46ce0d21ba3fdac4 import_unicode +83341 125f54a70ab8fbe8fff5289b7a75a25607d19239 py3k +83342 5947b1bb0fecdc17e513fc7d4e8d3c2762955db7 py3k +83343 b37b7834757492d009b99cf0ca4d42d2153d7fac py3k +83345 fce78a208db270b03cc89554859831762fef4963 py3k +83348 09ca46490707ef9de43e5cd509d3de94d7fba94c py3k +83349 a6b718e814480cfc6b31e3ad23f0b684dea1ea38 py3k +83350 c55876a6fa3cc000a93aefeddb6e36f5c0270498 py3k +83351 b12dda62e93bb94ac0a3e080c44b4638b5ed89fc py3k +83352 e01d26a346899c8ac579e49099d7ab2be9bd71be py3k +83353 4da3c570343bb11e09b516a3ab134fa800f078ac py3k +83354 25f6d570e7c1612613f7f21806344a413b231a09 release27-maint +83355 be61c808b52896f2e2abf85acb97fdf2a629501d py3k +83356 e250e88524d5b09b2dcbe2021c335792e7b63a21 py3k +83357 8bdbd32c2ebbdd6a02bbcd1e237fa0267d32d2ce py3k +83358 f9cc09dacedadd4c52b91da260f30e72ffb3a2f9 py3k +83359 ab89d0f52a7f30b7b609e74f960784967fa7d6e6 py3k +83360 9eb4ba45a6b286b6c5612c52e54a102096415622 py3k +83361 e237b15c2be99424362c5a9451573078598ed898 py3k +83362 6ec668622d64d9ca303fe055da92c8e382391efc py3k +83363 6eeed352663427478052a714e33187a27a47bd4a import_unicode +83364 b24841c309be54681511ca4730c49966961b8c7b import_unicode +83365 18b2734f7f38cc5eeb296e070d499ae30b4ea991 release27-maint +83366 263fada2565da233c21d64d5c85c7d47a88ba60e py3k +83367 26565ebd5e32ee7d4165590a2102fe2f317439b8 import_unicode +83368 6f5ba71316e7161b77fffefc397bce31a71a2756 py3k +83369 af692ee90f6838056e8ff9c92eb14739b1b8a352 py3k +83370 28f37a2b444bf354c7ae74c729f0e041721abdca py3k +83371 e2a9f633d6126faffc74229f5c5313f04df77fb5 py3k +83372 1ce9d4fb13c26520209ba7ab7393f49cd3686337 py3k +83373 65af7be614a4818c8f44a33a8b392c4972b1277b py3k +83374 5b24d1e182699d11fa8385339724d6393cf44187 py3k +83375 21d8c42c0b107800968d0ccae598ebaf2133832d py3k +83376 2812bfd84b5000a5ac57fe23e3399920a8d63deb py3k +83377 387043d2080b53fd83a197921623c7867a5ffd43 release26-maint +83379 f29c319ff5679a3f641e488f16915d69119c19fa release26-maint +83380 4603a5c4675a432025550887939bf06bd4d51378 py3k +83381 e80577d56a8fc483d02bdd42ed98c7f8fd702995 release27-maint +83382 dcb16d7036538a1d37e00a82a1701b461448fca9 release26-maint +83383 edda7596c8312795fb295c131f772ce095133fc3 release31-maint +83384 78bcaff0dd2b02acbbb7bc18a6fc571c8876d270 py3k +83385 dad085c8de099b1b697502d229e92acdb8c07d27 py3k +83386 6de70d49b9165ad85f671fb581a416598aae2d1b py3k +83387 970b7cd52453b5ea37cdb312e8d770ba474fa5be py3k +83388 7344427e87dfcb359e84201a52413f553d51b18c py3k +83389 6bf292e906c2c23eb104a0df4148ae9b94e79363 py3k +83390 3c4bd8613383e4d6150398da399b3084473cc5de py3k +83391 5410e1167f7d3c5356484685f0bda49a2c530029 py3k +83392 6ef32d208fcc4f4e75c9a2f3175baca2f4906e32 release27-maint +83393 31f4c4b6c44503306f3a43f14c7a2fca6ca4aaa8 py3k +83394 a4ad10975776c58e9f5e4571d71c5b2975e741d3 py3k +83395 66cb15c62db42e6d750ae6e9ca6e75b2a29f1ef8 py3k +83396 f2f79619f6a494705a8204e17edf49b15aa620a5 py3k +83397 5ee3e2712d7dcfbf7a238de283dd3ac387fd2aca py3k +83398 cb231b79693e46dfefe2afb0172a383a9595d148 py3k +83399 6d35d6e585621ff3e6f1d64384b08540ddab3a76 py3k +83400 897fd51051bb6f26aea0bc9eea105ac88de3bc00 py3k +83401 398fa7b7753ae0a66869e9622a6c864c98d6f087 release31-maint +83402 51aad509c20f15159551ad8bd3663b077a98c828 release27-maint +83403 1f0271c036e168fe4ab2040c01929af9fe718669 py3k +83404 cc2f864bac9cee3b8c87a9b3444be617df3222a3 py3k +83405 135b991d65b60e68751b05d537b6680f4fcb9934 py3k +83406 cf989a34c77e3039ba05755b5201a8523a637be8 py3k +83407 88c3db6f479e43b9c878d55e6cf63edbf9091f6a py3k +83408 22993d27fc8dee4cbe0a2f3935181e1b21618c95 py3k +83409 0be5504213d380f0fbbcab9461d03be18f85b827 release31-maint +83410 e3165eeaa700c58d1a6029f0d19108728db838e3 release27-maint +83411 74599d3954e28d4c9f746193e3578db765f73c81 py3k +83412 0fe55c286edfd47264c97b8b00c97076f90a0583 release27-maint +83413 76605cfc4cf383bc8ebfff3061cc03faa69e1bf8 release31-maint +83414 625c21dde1380f81f54d4a2f26c0ffb8261d9e46 release26-maint +83415 c83ba55151b1f30d2ced5983b74ed09402651a98 py3k +83416 30202c00140154d53d45b3c7664227d83958cb34 release31-maint +83417 ef75ecd0e1a7b32a9540c422e6c2f663da5c8e55 py3k +83418 cc33508e80cd7819297b9a1dae7a34115ffec2b3 release27-maint +83419 71fc92b88b19b801e8989b38d1ebe86a6a37052d release27-maint +83420 01cbd932026448a75105cfe05da09686e5bf36da release26-maint +83421 84363c747c2120aa42b48a1ba04b17e0892be2b6 release27-maint +83422 9ee196a7f9a2a32be44f87611ed57a2d2c065828 release31-maint +83423 dbc8da813630e610f0fe5088546ffee02169db23 release31-maint +83424 9de07c55fdda2769edc57985fc9977682f71e023 release27-maint +83425 bc66e1566a1928472abf2ace1888b022f9032709 release31-maint +83426 bf5c630daaf752d268433bd823a273a90481514b release27-maint +83427 93b3ae63d2f31388417fbf6409c41f5d91f136d1 release31-maint +83428 10c1b6141d535c5debb60a13eff5d208fa953781 release31-maint +83429 9f2fbee420dac2a1dcd3320b1f8fd78989ffb968 release27-maint +83430 0dcae455ec076dbd38f5e9f7b049d5cb56ebed0b release31-maint +83431 ba342796230637a8f7e432f8ccd15c55803b883e py3k +83432 661e0b0b40bf1f3cc8d05c8cabe5fa1356088056 release27-maint +83433 20c7244bca7803765e0e675a46b824b31e25b4b5 release31-maint +83434 b49201484f7fe5f3a045d73f7debf39a0f2da879 release27-maint +83435 91802840f0f783f1dd55445e5dcc399d45dc3fd9 release31-maint +83436 3499ed6cbd077cd56c46d25535517030e2fac60c release27-maint +83437 4903e7577454858a5714ec9394b61fc40855f514 release31-maint +83438 46b14a2950d00eb765363ac01ac89d3935744918 release31-maint +83439 4f679104cb86bde643c19b730c9a2fc4d46be789 release27-maint +83440 404a9ac1a9a2b7ee3fb65e5da108c1a43b4d634b py3k +83441 3c0ffe39557dee55dad4ef8edd72d96e8c9d0e1b release31-maint +83442 a8cfef88408f3c455ce434a79bb13ee993cb6d04 release27-maint +83443 720798a1ee71922faa734aba5dccd77f7dc16720 release26-maint +83444 765bfd8ec96898cd53d9467af6992156aa5a6b3f py3k +83445 5af361adaae9fddbac7f40b08ae38d2e4ce34c38 release31-maint +83446 75b3edda3c2bd9538db697f35bb82e153b5fab0c release27-maint +83447 146fef0249f9ffc10df879766860183cf1ed5be4 release31-maint +83448 415ea2c3cfe8a9c0f0832212a2cfe3d54eec5ae0 release31-maint +83449 4a002da7fbfb3d9661b68b22e4ca0b33fbf0ea4c release27-maint +83450 3d7823e6897b7612004537b2476f6b2c7823d79e release27-maint +83451 2ca842dcbe11e844f01ca2cc14eef7172ac52e0f release31-maint +83452 473a8068f6c54a4273593fdf11b09afbc3877a51 release27-maint +83453 beab2fb296ccdb6810670620d2d1cf68bd3dd7ef release31-maint +83454 01d9ca82fd4e4ee303efebdc8b8a3803fe3cec9a release31-maint +83455 aad5766bf36fc6ccd98f27df936f5037aa9b889a release31-maint +83456 c706f8679dfce3f4a57cf91e7b18f8fcbe2178af py3k +83457 8c1045b92b6f19d27d7d9b807a5ce7a2a0ada68a release27-maint +83458 f04f42134a92174fd03863e704ce5ded145813cf release31-maint +83459 2bc1fc2d8cc09d734d5b8a4be72da0d5fd8fc312 release27-maint +83460 69f87f9d33e7220b6beb1695fc825e064b7276eb release31-maint +83461 bf68225dd2bce6d5d9571d3b9a3838af6506c16c release27-maint +83462 9ea5db567bdd8bff92807699e40daab3d04e3515 release27-maint +83463 c432adac116ad714882c3b26fceb24b16d40eaa9 release31-maint +83464 93d124a8195cc48a5b9e2cb348eaae109ade08fb release26-maint +83465 9f1eecbcc36620de158333e8458877a5bd710ccb release31-maint +83466 198b2cd3a6d1b87b8ac2b931a1e817f5eb40206c release27-maint +83467 395ecae602cb101e6dd8655e04b6335ffb8e9040 release31-maint +83468 5b7e35aa1f1d173a8fd0ec53deed5b31367da870 release31-maint +83469 cb5222572fcd93eb5b26ed5eb8618a8a949d09f9 release27-maint +83470 cd11e1a1fd89bc156e43c077b321bd8c4ab5197d release31-maint +83471 f35414642dffa335b27b768454f0cb8f95728e5a release27-maint +83472 228a0ef23a7b2e54aa4287cb662dab04ca9403b7 release31-maint +83473 92f968d874b86e81dee6c1b4935209f8e053054f release27-maint +83474 f46dcd8a31135a830a6da929879db1a9c3f23be7 release31-maint +83475 27544fb0f7f148590494470a3eab8de1f2c39082 release27-maint +83476 1312e594ebe7848e67507b0bc2c6742d51ee653d release31-maint +83477 9bf7a0f42eac39f539629166997549609e683262 release27-maint +83478 6aea70928a6ac6d4966c96d44c6ad5311df2350c release31-maint +83479 1abdbcfaa089d080b136ebafdd5689445a89fe7a py3k +83480 f36a04078bfdbfeb264d79332156d035ee038e45 release27-maint +83481 ebd4b28f46a0f29bbf9de5878c68d260b3c1d684 release31-maint +83482 0dd480038a8872c872d7ea91181df352bf444d44 release27-maint +83483 d15b43c272fbb6d647dcbd81765f9428ac5426bd release27-maint +83484 9501cd640c8e87e2ecf117692270bcda68c95d9b release31-maint +83485 8f8ba4bfbfa5064764bc2fc462fef65b31d45785 release26-maint +83486 743406749b2d705cc391d141e88dfdf5185c1261 release27-maint +83487 e8fc9a9e1991a079978515642cd36bc6a52a6d74 release26-maint +83488 de6def79326c936676f1ddac511e8af8ab3f3115 py3k +83489 2a4b2fec8277c7b8f5fb5c32208e6302ccc293e6 release26-maint +83490 2c253f6e02e7f9254095c9be37cf829e7e3ca211 release26-maint +83491 38812948c53211177c9991d78ce88651bd5ffdaa release26-maint +83492 97cb1dd8566eb235cce69752ec78556195d66bfd release26-maint +83493 5fd09e410d36bf360ea1e215b4248756a64901ff release26-maint +83494 b7d5cbbea180cffdb408bc93d20ae9d0d17668fa py3k +83495 61ad81a774c55063fb129ece9df28747e1938003 release26-maint +83496 9c75a94187c73f6a78945860024040ac27b5732c release26-maint +83497 0db65c6510daa568f0ee1b396a90790c059ac01b release26-maint +83498 3174d5ba46e38f1b801eba0b6333510c05187800 release26-maint +83499 bc10a44272dfc7ef8fea9e7b06292a0f6a75e4e0 release27-maint +83500 fdbfcf9da2c710cbfbca88eaeb214f3397370967 release26-maint +83501 8ada35e9f45d0f137ea53c240de37f19e440d71f py3k +83502 2c36750161451dd502c31279d343ad0d022c12b2 release26-maint +83503 e48ef7131cfbc7f44040d65268255316171eff6b release31-maint +83504 c9663132390dcdc66be409eafc906d6bc6a642aa release27-maint +83505 0aac7b8771e17fe3a82b97514fbf883550a18da3 release26-maint +83506 8a149a9f9daf6571645006eb4e343c6608d76c22 py3k +83507 2e97aebade4ddbcf36e36419788cfe8cea9d39a4 release31-maint +83508 63b2349ef790d4f46b7c0e48fd742d54e040363a release27-maint +83509 72c8fab9116eb08bb1c283f4a942e250e91cf94f release27-maint +83510 de9f353ee865d9e585b162d63b16523c630a1753 release26-maint +83511 37d3cd8c10fb451197e54e7bdefced7fd05cca26 release26-maint +83512 751c6dd71b5ed55d495ce4075141e1092f2007d8 release26-maint +83513 eb6f99254313738ddc78ef028eea7eba66fa3124 py3k +83514 185e3f7266e90d743a3971f5a8d37afd0a7c7af2 release26-maint +83515 30086aa33123512ac34ef4cb9d8d00cdc57b80b2 release26-maint +83516 d8dbf2400d8a21c9e4eaab48599ba98897e815e5 py3k +83517 8a2a82bb71c82247e1df08727b1b1c6dcfc81b08 release26-maint +83518 2dc0b7131c721080ad9169c698403ff78406c926 release26-maint +83519 07c84b9814014862d03da6041a06804e3ded2c24 release26-maint +83520 fd4b07ab797699640065010dc3deb9fa9b17c01b release26-maint +83521 39e14df765e431b9a78fa4753a3c372d196a833e py3k +83522 904ef4bbff5e564bf416d0650af97e7e8d70b254 release31-maint +83523 b6144daa4339a18ab10e6e1ff62d643e2ca94a48 py3k +83524 61d3481eba741d757277e27b5742bba732034b91 py3k +83525 77bbb05d310e63dde6ddc5ac6a306609e3da8ae4 py3k +83526 9246aadfcd789c23f1339ad5a01f4aada673d52c py3k +83527 eb790495c6a4502c9a0eb1565cb690d8244e51cf py3k +83528 a349fad507a2245815e52bd97fbed9bb0cf823e1 py3k +83529 1640efa7ff29c924b8878fcfbd19c948fa1067a5 py3k +83530 b08d350620885f02faf24925072fd70e5838e379 release31-maint +83531 85cdaf5f3cdc3e14c081e9f27987486e85d8a74e py3k +83532 a3149c93165656e8f95005359908fe2cb358f64b release26-maint +83533 6baeba54fd24bd71bae005590a1faba01bcd0c4b release27-maint +83534 3068e00a320768a5c0243fc34f5c6389ceddf790 release31-maint +83535 3be2464c0c3946dc22857d2ce39aebb8588a75d4 release26-maint +83536 d7f3085d1b03e42fd76a835d069d1e5396e9968e py3k +83537 7c3b849d181ae2d981156249cb5f5fec6000909d release26-maint +83538 516f9e34af2096da09f63935de96804cc7cd2212 py3k +83539 ca632bad6d60cb46a5bc1328ccb79ca0f6063caa release26-maint +83540 dba99828d91c3e8ee1977d11c828bdf21345c7a3 release26-maint +83541 6536150dd4f42865d2844771fad2cd2f29c6c205 release26-maint +83542 58c22d30f74936477ba0bd6d9c874d77d397331f py3k +83543 672493ffd753f99cefa96575971dab6941b7f48c py3k +83544 cecc6d2a5b49cbcc44d97a05d77aab7b4ef31e66 release31-maint +83545 b6c5fcccb6de5d57df9d5282e57a2a5c623a9560 release27-maint +83546 7202c9a20566629dad6d167943348af9f9e9b800 py3k +83547 0bf36cdd8334542510c5edcfcac639342fed6b8e py3k +83548 6e3c2093bb21084c01dca42dfbf58c235d581e7c py3k +83549 f8ce64a96c89602a5f0b95e909ab8a2ade4ba3c3 release26-maint +83550 a24c9a7401f453517e356ac010ed725128010bb1 py3k +83551 699fcdaf99812ca91ac924b75da563aa75e4f459 py3k +83552 307e1cee4a5810f40eb4a371a99c282fe25be0e8 py3k +83553 7f68f85543d4f91a7e224a4b671f17fb7b2cc4a9 py3k +83554 7f071087d820d992db16a7b15007e0acced43a00 py3k +83555 62d8cfccd18b44f56e96c97632abcd27b7598ab3 py3k +83557 51102abdec50212f056771342cb1a557cc1e4a2c release26-maint +83558 b4f6147178e5c2f79272b4224e88ce19f0700d95 py3k +83559 aff8d7bca3f333fa996546e9ec519f65f5cbc0fe release26-maint +83560 4874efd1f657a36f770d4ab90dcb34aaf66410af py3k +83561 7ebf5f9011b190d2e83944a6ed955793cc80faf3 py3k +83562 b4b89d1b42cd445ba5b146af083b967dbc862021 release26-maint +83563 bb2dcf1203c4c470f41a48d2c75b12b3d39f0831 py3k +83564 ac29f70c61dba3446c75bde2b207e896475e0550 release26-maint +83565 42e19c14b1492a5c9a63333c5a8916aced4b6165 py3k +83566 47ba905a7e87dc61b78885492abd78cf4069144e py3k +83567 d0bb80e81b39a63c463d3c674e0cc26200317be1 release27-maint +83568 37ba47232027a602994af11ba55f0e341bdcca99 release27-maint +83569 ff6fabf25cef4957c93e79a42fe0bca6cebfbd94 py3k +83570 df378e44ba9ad3ef84e025d2e908db5219ae25f6 release26-maint +83571 236393c554f71490decc6f2caffc31397f560bed py3k +83572 79588d4867bcb2475d62681a724e29513690904a release26-maint +83573 dc94134186c8753c6c0e536c39267fe5faa31cf9 release26-maint +83574 8816f4e9f712cf3b7f19abd14c96cb3a1ecda24d py3k +83575 70a6a727ecd732935385a5bb9dfd89a239207b85 py3k +83576 649476c663fcf610e56dcd45222daaab09f55a39 release26-maint +83577 cc336692bab905475b9c75e5e3b2f2a150591c9c release26-maint +83578 959400ae05b046c60ed893afcfa1e60c3acdb2cb release26-maint +83579 319c9f9dc4561946dcd5bb48a1d339048faa1999 release26-maint +83580 3d011c2ec237cd93558eabef7c0af927b6e31633 py3k +83581 3af6cae5e026bba73cd6456fba12e6a07b2fe2a9 release26-maint +83582 d6ac3d09b79d4a77ed75733f6b7b0d2fb37f447d release26-maint +83583 b85cf85b7edbc54e515592869c53b7ce1ff83960 release26-maint +83584 cea6ed7a0aa11a0f8497897411c4becec3fe8906 py3k +83585 4dfb8a61e69fd038f382e80cc401d7f7082acbd6 release26-maint +83586 76e1c5f31931f0fe079b6e45309d0abea8abb789 release26-maint +83587 e971c104a5c21e3d37480fb84dc257813df0eb3b release27-maint +83588 fd249750cbae5a4e6004858b998a1814fca99d52 release26-maint +83589 6f81d6f9a6d1c4a7dcdd358255cf64cf48c93bbf release27-maint +83590 6730cf9d627a5dae81b4975aae213ca3ca1881ee release27-maint +83591 7449d04213c6e41e7a74436993a03723604129c0 release27-maint +83592 21620d9b08480ce3adc366dae682b79acb78d867 release26-maint +83593 595676e466c0d430c0ea210e7fddd07c8ffbbee0 release27-maint +83594 a9cd2550ff40aceb0d764f2d02409a65db58cced release26-maint +83595 13d2bacc56a415452d7f1029b25de210dc883c80 release27-maint +83596 f3fef20a66dd08bd2beda10a4052852b045f9d0f release26-maint +83597 29d34e4d0a9a367ae8043285ef7e8047c28e8cdd release26-maint +83598 61b69bf1eebdce11afcb30a07c8d801fc4ba2491 release27-maint +83599 f2d83a13703fa9fc15200a8d5973bae8c67f363d py3k +83600 5c4cdf33c1325a7056e7880d9e577cd6ea35bc77 release27-maint +83601 12c91f4bb41449abac6adaffc2d6c8dd0bd7ea6d release26-maint +83602 63fb8dbbfda25e4294b9a3fbde4bedcd2dd70b48 release26-maint +83603 443896f324ce20fa69606877086c03fceb800290 release26-maint +83604 a2f013021e1ddb1bff0856311994574c15e32e87 release26-maint +83605 37d399aa8c16fda675e92c645778fa5515d02174 py3k +83606 fd20eba1f2011d63042d33b9a4ceefdf286aeba9 py3k +83607 4750a8a8b4cf41745f23b095b1e90fb32e7a837c py3k +83608 638410a2904681cb08269e869bbfd87418cf6afb py3k +83609 7a47c4d30f6e1b3f46ebd0b44f871d017103f899 py3k +83610 d485c680c65fac9373d0932ea9cffb6b16e62cf2 py3k +83611 952a8de5ca65a177d94ffe4dba63dc9932299387 py3k +83612 593d6417edf1079f2c3e53502f6057e62449ec6c py3k +83613 20242af243d20e23077cbd435a8baa23e7aa61c1 py3k +83614 2d03d6c4c829c290d90514f1f5fee74ae23d5794 py3k +83615 4482a42885f75a5161dd6eacd0522a2d841e2a18 py3k +83616 29f20ef10755a0aa24a0a114af8c902639e93576 py3k +83617 6015b6ec81f2c7703cc1b21db28f0705077c501c py3k +83618 031e6b348a8e8af9d3b13e4c36d856471e5ac5b4 py3k +83619 762d89faceaaaac698165b475758aaf6b566ba83 release26-maint +83620 4540b6f428d3634748468b371f22a870898a7463 release26-maint +83621 d57552abf180e58dd240c58658543bf5d965c41b release26-maint +83622 b92f0c49f0e8f9ca6565b3bab519df3b305f0336 release26-maint +83623 68cfc84e4db1c86c29499fcdd9cdb34df6a86017 release26-maint +83624 4c0b37d869caf8786b8e8138e83eb160c6074f50 release26-maint +83625 a6934a1bfa3b0fc6051e193ea00c5d1365575bc1 release26-maint +83626 657ae877c0bf200060cae1b800fe3548d3e44f2a release26-maint +83627 8c79909a7ee7a61f93e7c127638fcb30d7acdcc9 release26-maint +83628 4df72feb39d90581ccda5fd107063660da3aac52 release26-maint +83629 ef119dbbe88766155c8a4e4b7d595c60dd1f3f17 release26-maint +83630 a88cb8005110f573dbbc906cf1d1b8c3be8c9d28 release26-maint +83631 b1e043de9c5a584014bca5826acefc5f93adb987 release26-maint +83632 5cf679be3dfc4ea8f3ff86dc25d1740bbbcffb1c release26-maint +83633 6fff0ffff85b4efbf0df3353200d79e82af339b5 release26-maint +83634 2aca34460fdb409cf5c11c320b31214103d9d4b0 release26-maint +83635 3efb4581790a31c778620d496458cd5a4a24f3fa release26-maint +83636 6a6c13a7f03038a0dc84d3be661425ff506f5313 py3k +83637 30a800d7eaccaaa718760fb1228e5f874747ec67 release26-maint +83638 e7e7c56718af26f5560662ddc1013b87bf348159 release26-maint +83639 19964944cc013e7c1f51de7c73506b2de9dd555b release26-maint +83640 86d119e94da3a06bc02be76bc977b4fe7c464d32 release26-maint +83641 63f38379e4eda0b6761d508acca3be7d5abcc3fa release26-maint +83642 7b584a13bc965abbbf696338cb3cfc77c63931de release26-maint +83643 f3060e6fb717585da46fcb62db21ebe678e15cb3 release27-maint +83644 18c8c5004109ed728d88e0829ee67e664798156f py3k +83645 6945416c8d045c68aeafc8642abeb7aae0fe20aa release31-maint +83646 517859cb0e920023d5aac0933b3451b90ae2baa2 release27-maint +83647 c82b6effb69531a5f3c88fcccc7a99251bc5e6cf release26-maint +83648 cdf6a3a5040746d310a524fdb85ec0fe5d0e585b release26-maint +83649 1288a25932876f6345d27aa786a1596881daaee4 py3k +83650 57105e875604fefbade137667bdc5375c4d51059 release26-maint +83651 ebc90517b8d96bff82a17d03d52be8bc08787185 release26-maint +83652 e1ef52633350df64364c72b8b3c414d0966b8d69 release26-maint +83653 f864ffb8f2edef686c776e759b786355d869343f release26-maint +83654 d265f91c387d2fa840885942f4c95075fe66d503 release26-maint +83655 a7937da62591c25e8ca701947a7a06c39b500aa0 release26-maint +83656 48c59e90553251e7f58420abc0b37a56c72e4db8 release26-maint +83657 7cee1b9609e47de03ff08154444f91130f2f7c7a release26-maint +83658 b2066678d937cf990fef5e880ee582903b6ceb06 release26-maint +83659 e210ed63b04e4238c821718f6f15900f2cf83cd3 py3k +83660 3dcfe29d9ca5447c0f86d40296d68501ef8ef95c py3k +83661 a3f645381d61ce2e1fae62b41054235633696b02 release27-maint +83662 f9c4f099a24dddf774959181ecfc864e227ea3a9 release31-maint +83663 66601fb90d3df6448b07fa814ff953413fb77f98 py3k +83664 71ae523eba5baddf7b81a8bca8b7730e05c64ebd release27-maint +83665 45dba22a74fc9a39e818baa03c648e6ff0e7244e release31-maint +83666 9d9a83b25045781febe7d0acf11737758f00b9f6 release27-maint +83667 af3655f2f248c3d344f21ef75a08da44032b9277 py3k +83668 33e9be2fa4d2391e750a3a6c2c2afe98c872d55a release31-maint +83669 63e1d0dc44ee07a16f696ea878ce4f5592a2fe1e release27-maint +83670 33d2f42455610336be27b4ac019cf291e350734f py3k +83671 dc20df9c9ba95f0ac6794867fc527cf250fd4021 release31-maint +83672 03aa05ebd9bc5bbe994b41cc7e4bfce680272ba4 release27-maint +83673 71c4315d49f27f2181fba81dfbe2fcf682b1c43a py3k +83674 ff4456dd4a78ca4d3aa316c41d58002ce0222c02 release31-maint +83675 2850bd9192770d4b1d6287dc8e29a737e8ae0284 py3k +83676 23c089dc5cff0e90740e6f95825d2ed772bf71f7 release27-maint +83677 d6b336dd645776fe10f46896966f0bad5e0ce29a py3k +83678 9d68e7845e42050950f43125b9fec931510d13c2 py3k +83679 c4bbda2d4c49865d26eb39f9ce8d9770b4b5790a release31-maint +83680 0420f547f3bf2411061c681d380526ccfce80c3f release27-maint +83681 398a25cd612ddaaed5ce9fec048192535340ce29 py3k +83682 9719e5e8a8af92ebe8e17415c09eab0b9591df65 release31-maint +83683 b33c80f7ab1766b5c770028ee4edf218807e923d py3k +83684 f2838eb1bb1ef90af95707dae86cd1d4a6406fcc release31-maint +83685 8a9e976127ab13976f7123f024d1768bd0165f6c release27-maint +83686 3775bf8299b31356fb8c79bf2132ca2051a5acab release26-maint +83687 f43f6d173076e9ab5a7e67565387b4e140349fe6 release26-maint +83688 cf9fea22c3a9e161f9c2ace6241c2432ff48b33a release26-maint +83689 d686f3033174a93025ebef406989259192a1d729 release31-maint +83690 20d73fec9f62301dd243dadb3f03ace28da0650a py3k +83691 c1dc9e7986a2a8e1070ec7bee748520febef382e release26-maint +83692 5a73dd15be084be5d8122ef2a82defd7cb6978cd release26-maint +83694 21a9c940110d265e3d6356c7fb87372835c9e2a0 release31-maint +83695 fca3c9fb5a1b63c24571583d366c8bd5e1fc7654 release27-maint +83696 bf69509626ff954a1ccb21248e4c679540322560 py3k +83697 6e795ec38e80082850c2c9ba161bda87a6ce7456 release31-maint +83698 af39e255fead056ad3012bbc76d4604533b507a5 py3k +83699 f0eca74f00e14b2df2258a9827076ed4ea6916c0 py3k +83700 1489f399aba1e71e06a1ff436d61b639284401ad release27-maint +83701 f4c9f6f1fe76a62e3a6b0b7876c6c62c028e8193 py3k +83702 915b028b954d75c3ad83aa9264e33e8f3e2dead7 release31-maint +83703 583343578732e2eb34d83ec94c0abf048faeff38 release27-maint +83704 b3fdd445e0379d731445e52dccf857fa9c90260d release26-maint +83705 89893a002273eec559e237e7a9f6f68039567683 py3k +83706 ba73531475077786cf8fccabda156add2a0f28cb release31-maint +83707 4c4d8ade9dbaa16c533a1f692ad802d0b5cd7d97 py3k +83708 f598423a462169f731200dddd268f418145a398b py3k +83709 e688635970613f51b25687653863eb24104295f1 py3k +83710 7719cc7ecf4546aad2f03b8a7f3de7d5d63718fe release31-maint +83711 e5f1258cfc5895f10698f1be4f0837d900cb5d03 release27-maint +83712 6c12b171792e250f8e75bdf40fdef47e7f15c8ed py3k +83713 5931112eabe77fd1087f1fc6ad73d343a3d2c794 py3k +83714 716e601570da1c519a49248f63042f3e42b6b2ab py3k +83715 485c054c9aa165150cc4a0df0cf42120c97143e3 py3k +83716 7042fa539e7c8154cbbc00dbbe96e58d819ee4f1 release31-maint +83717 c5a282797d5e352edd0308bf1f46843bc5f0fec0 release27-maint +83718 0e4529d733ac41a1cd3c31f4894fbf24b5d2c909 release26-maint +83719 576b765844af92da5336ca15d49771f9813f59c9 py3k +83720 b39846bc7ba5567e3f4a7bde3a6a437b83dd6ef6 release26-maint +83721 cb34cd630000200a39cfd26cd596185f5db1a082 release26-maint +83722 fd7f73e1256800c70716be64a95814573f78b860 py3k +83723 83043c15256681e6ea5ce85fd0e4c3265685faa0 release31-maint +83724 9de56c4317c943e0a90a31f0441241432c05bd17 release31-maint +83725 b4a5332d2bcacca822efc67f315e9232a64a9806 release27-maint +83726 2d88ca64a90bc1d18e78aaedcfba303ac9206de2 py3k +83727 828227a0053898bae427a3225d9c90bd28e11705 py3k +83728 35fee9211f3b585c9da5590f93aa192fdcf31596 release27-maint +83729 8f4f468fe29e08afc61bd4ea619984b36d6a76b1 py3k +83730 9c7046fd4d6672097bc0509d47fd6ab3c8eb2663 release31-maint +83731 ca7ed941bcb934413edc4c34693aa6341d1addde py3k +83732 ca6d6ed23b238b79673b04ba4f48674ca12a2e59 py3k +83733 95fd4fc27b9bb5ecc92425e8f22583d348ef33f2 release31-maint +83734 56ab9e111c1c0f5b7399a76a121da778282b14c9 release27-maint +83735 3474ddf1ebfe4a3841b3e9cae0c3375a3c5923f9 py3k +83736 eafe07d40eb7359e07b1940e9c9fc68c332d99fb py3k +83737 c15acd1e916b3504f47b0081e8f1146e8d5dccf5 release27-maint +83738 a185caedf32cfeddb8418d1f1931d7301d2f99fc release26-maint +83739 35bd57d3d232cdbd361d7d791fa6a7479cc90c63 release27-maint +83741 8100017939f499c7f856a35787f4020ec9fc2722 py3k +83742 6339a7b3245ccc3efafe67213659ff2f31e81a77 py3k +83743 67652a7f0aee23787a2da111bab9212f3eee00ce release26-maint +83744 c16803bbd790d732a9985e9388c8830f83ae1ac8 py3k +83745 72f006704fbdc81452f4572ae032ceaaf1727dca py3k +83746 384d2189a96a901f69a1e6601be4d4c3b42bfabf release27-maint +83747 29226c08e547d8880a44ce38b561f66c69b6d639 py3k +83748 a03739af9d385eb2b5f921a572f80ce792956d5e release31-maint +83749 fcb7e35924e634fceb31d2b8246dd69b85867f91 release27-maint +83750 bb2a315d6a035002d13a9923a42b83faf1fb91a9 py3k +83751 f806fb3d1f277639b7585c29933ca9ac1af81b6c py3k +83752 88cf9a0ed11813f598609b45aa7d1d9b95bcab8b py3k +83753 6b28b88f6c4e885f4c8f12faadcc4e32220a5f30 release31-maint +83754 b906e9e5f2a7fa93840b5c6e5144d29e3e11ca57 release27-maint +83755 76f8402ca7f3540ef0324cffeb8a1f8dd715c79c py3k +83756 fa6314b141dc42d27a79058da8ee7497e3e72f9b release31-maint +83757 0f8a4fcfdd1e594c3e044a6f59679ce6a37cc06b release27-maint +83758 b06222f155ff5ed5b35a670e5835a52ffe327a31 py3k +83759 ad292fce79f9ecb362ff0fb43ffc1f784e712c75 py3k +83760 2c10510a1aefc5555dcca13f0a9bcdd1104bd33d release27-maint +83761 bb2608f73eb7c6d3482f8d94ccfd376f097b40f9 release31-maint +83762 f7bd28b3c68394d1d6c9c03998ab050fe441584a py3k +83763 8ce6909696d42f176281998c84e13005da8fac33 py3k +83764 d14e1e7248ba3f6faec90a0b6068200b40f52d23 release31-maint +83765 3075a7e85c1881436ed56820045c0f846c9bf606 release27-maint +83766 76864ac5b67d01263def81d270e2064b01290bb6 release31-maint +83767 06bbdda132f354958cae758850669e747454392a py3k +83768 43e6bf86c37f2c3048d4e4056bf5d6ec79b27e0f py3k +83769 08aed00fbec339a0d7f3c1ff551739e34a02e340 release27-maint +83770 260abe9cefac28a238c2a88cfa8efd9d580fb140 py3k +83771 7bcf6255de2fff3d2b991e5f703978ea0a49f0fc py3k +83772 394e48c516c4a3b12366eb877b9d0892a8c44872 release31-maint +83773 40b4837833a8b532ff37458a7aa5212efd06e00c release27-maint +83774 9d1c65f8323efc2def2233f655923fc0e379f46b py3k +83775 063279c6fc160e0ad393be1c8f5c0d205e8a2c3a py3k +83776 bccc84e04a2cae73094a4d3c8b0fa814eef49723 py3k +83777 ec3217a9e5216dfb2ef3d72e20a053ef10a9b38d py3k +83778 7608532f933a46eaf42ef07b8d64075fc63bb7a0 py3k +83779 275acfcccccb08b57593fc57ceb44419e438bf39 py3k +83780 9b802b6b439509d3aeeb754b1b9d867f0c846556 py3k +83781 f27b27c82d8ff48bb3adc505523fa05579eeebcb release31-maint +83782 7175d1805cc0df60aec1c467f9def3641f89d82b release27-maint +83783 0ed665e8a115429bfcf5ad23db6d462538d71aa8 py3k +83784 28136af00ccab6d47c9cebb15eebae3f39165644 py3k +83785 4e3258894889fbdaaef2c05a49e21c3732fc2e77 py3k +83786 c6d8926c99df5850b73254fc0bd76bc4ec4ff014 release31-maint +83787 87f333038035e78c1f909a94f290b6cf60f62d3e release27-maint +83792 c1d7f7fe47a0570707e56964b11e067144f43023 py3k +83793 fb06fab16a3fe605b92a39fd0212a9ccf80ff76c release31-maint +83794 ae8c25f94adf4d3519dde8d1881471e1c6125b84 release27-maint +83795 d95fbc4aee7c3b8e61221a7c99f9918111704f43 py3k +83796 9d3ba0d665a6508c417b5358d6edb3a8ede1c0c1 release31-maint +83802 24b3ded518254c3af7b3372c729168aaa038bf4e py3k +83804 4efed62eac3a86c1edf624551de26bf315987ba3 py3k +83805 603c35508b363dc3bbe5cee77f816ec8040dd080 release31-maint +83806 7099ec0bcbd2c9928b2608dd1799fcc7f2f772aa release27-maint +83807 15839ca43d96a35e3f189f156a461269a2b6dc5f release31-maint +83808 bbe2223e37506a04b56b88885494eedc52c23ba4 py3k +83809 4bcd53617a656bed7350a6838a4b616c7042c86c py3k +83810 28fef9e7c3bb732f1f160968a0e6d539880a9052 release31-maint +83812 924738aab70fdd69ded150a296bc976131b8bee5 py3k-dtoa +83813 8c210e61ca775410f72f84da13e68c61c69b6a69 py3k-dtoa +83814 bffd1e2854b3d36b15358889770073d7510f1116 py3k-dtoa +83815 a0bdcdd0f086437c831cfb182407e85a4e97da72 release27-maint +83816 e41ca6672f822e096ce6e6985dd20c36c550cc8a py3k +83817 f4d92c6d4d42a53d060a73e83abf9b3bfd0f1838 release31-maint +83818 bf3359b7ed2ed5a7b79bc28456ae30bb4425f3de py3k +83819 e61a094b4818d459317fe3c620b5cedeaf52e9f7 release31-maint +83820 4b24b7a420c927fe52af02d34ac0049de174127d release27-maint +83821 01787563e2cb344fe934173a407be5c9b2276fb4 py3k-dtoa +83822 0370c11fd21df3d4a944f70abdff32db034625de py3k +83823 b6feb67a05f1f16fab7b3e51fb6c75ce4af2d7ba release31-maint +83824 e16560585e35c6b364e33fe60314f10994b995d0 release27-maint +83825 5ea707d2caa88e9ff31b6534e1ffee80bd82af69 import_unicode +83826 be159f3db5d6ae0de3162dbd250d7b6426af1b28 import_unicode +83828 1086dad50c7480920d830e1ec58576f75f37a459 py3k +83829 6b2189d8e8c44d2f4220ba1cbcf56dccec617f96 py3k +83830 b4f54639b7b195cf9b78051987abdb2bfbb4417d py3k +83831 983f110a224e2a45eb5983f9f75f0de38efdebb1 release31-maint +83832 cc5a246b2da1bb82e8f17f4468d6813db4910eb2 release27-maint +83833 75ebe6cc8083351a55fb1e7693cfb2fd754d9338 py3k +83834 c52f5df504488975d9ad9a2a930e6186ace453c6 py3k +83835 8683aea4b72ef8dc7991ab3d8f84157081fdcc79 py3k +83836 e13ea83e2edb3de22e72de5374e2761eafa45bc7 release27-maint +83837 40d11b8139da50b047feb2f5f8190a9562f4fd5f py3k +83838 515e0d705543fe57597e7a29440e6e69de199af9 py3k +83839 08e05d424d97a6293038dd5ea3fd80cc54000d8e py3k +83840 60ac41ae7f3120d056cd60d9bb1493d4436b5140 release27-maint +83841 b9d1980217458942876e2771e4fcffd083d2625c py3k +83842 df258915f52fcb4aaf36cf0b596d7d917198f87d release31-maint +83843 5e7f15f2c0be6cceb1f39aa345a2bf80614dd9bc release27-maint +83845 8b3796cc309e8f98059eb2cb46fe8cc69bab6a87 py3k +83846 cc0ee6bb5e9b871edfd1928b05a771984644d660 py3k +83847 feffc1a2599c73e759c0e8511645741092bd4b4c release27-maint +83848 76ba41b77f53893952849f71361e9d6a3282c7c9 release27-maint +83849 44619a566b6b63613f9ba9f0c0d200b81f7aa088 release31-maint +83850 fa862226560912071f657c3d62b774d9a98a5675 release31-maint +83851 57e631f088d73605432847b3a44f9131885f0b54 py3k +83854 4ca497f4819cfdad826701bba67d1e3e51ac2e7f py3k +83855 77c6f60a1b240b509ddccb4a29e0ca36ee5fd7f7 release31-maint +83856 55c70e79c688867c11d7288cf04402ad623659e8 release27-maint +83858 55397533da518a03bb43c8a3b2d537f102828f44 release27-maint +83859 eb5aa91f0e16f6ddb14749937e428be7f63edfe3 py3k +83860 7d4425e308f7b85266ebb203a8f46236e4d58fad py3k +83861 1bd3534136a03643573ea9bd447d5a6985485f78 py3k +83862 1ad5922aec453e470317f1f0af1a7402779dcf0d py3k +83863 d22806818fe3a53db403e2b22142fd614efdca6f py3k +83864 ea3a2d1bded2a05b5dd07335ddf1bcd3fad3fc20 py3k +83865 8d6b4ffc0512aa471718ac5c269c552758e60b6f import_unicode +83866 021351595fac36b217fd22ae1689d62715a6f8ef import_unicode +83867 0da3b59c3d380617cb5b6bf54855af930fdd9c12 import_unicode +83868 f812b79641199a0e96d90ee7ff9c9cf49334b91a import_unicode +83869 3f8cef837f073c2bc37797051b2a5fdb96ef14cd py3k +83870 10c95c0f34d355be9f5d697e9874539b2c8c6efd py3k +83871 52354cb29644926a1959dd2a2b424149ad28bbcf py3k +83872 9c445bad35b086d04173130a5f984c5b83485cf7 py3k +83873 7f5e115d76dfad3f648853cd2f17aefc2af4db86 release27-maint +83874 a13bdb2b8398fbf191d3212cc221d9897c1994bc py3k +83875 8ce1df3528b76fcb2aee2b70ee70e9aa9e29448c py3k +83876 c7995e9bc2e36d9f1a21671502c570cffe73bdaa py3k +83877 8b93cf33b987c8779decf5801ba15c51aea9786d py3k +83878 688edbbbe658175e6b8fe38057e7fa7c60bf198f py3k +83879 5e3c61cb70141d3630d3ee0bd226dd82f30d2083 release27-maint +83880 9468d130428425d265219082c4fe9edfa6e9201a py3k +83881 3ae95f207606344f423b55efb28b58827f61aec4 release31-maint +83882 7b7ebf558894854738c41834d134e5d29daf877a py3k +83883 001529d647fe49daad1401ff323553fd5e8bd652 release31-maint +83885 3a4be9d25a5f83060cd27d81e967de2728a28068 py3k +83886 5ae390ac6c61d8ae9a6d97a4470d85a795875303 py3k +83887 5c0d5de56fdf9aabe895017d85fee601fe1e7929 py3k +83888 de0809772d7e703e0d09118669a41f191fc63fce py3k +83889 8ba09cdb6fc48b2adf0ec6bc76c1821e893a8cf7 py3k +83890 795eb12403b94420db488c4038f6ddeed2a4266a py3k +83891 dfbbe7b30e901b36fa4518489b39769727a16b8d py3k +83892 e16079c6a48f583cd368d8f4f0806ffcf7816ed8 py3k +83893 f1627cfcc89050b6f75369a9f431d563d9deda0c release27-maint +83894 c38f3b969b4ae50444cdb5b66c70bfb37e973367 py3k +83895 7dc37ae175fcd5707e74e60a51e064cff9749d2c py3k +83897 6fb031037f29b50bb94d1702309cfa7232b9aa66 py3k-dtoa +83898 355d72737364fbdd8599e8f3373a488cf5273bfc py3k-dtoa +83900 72d0504e648960424fb2cb51dcb8dfb791bd4bb8 py3k +83901 c89ad6f9cddc18223ce4c71584ceca49199d129e py3k +83902 95117aab9a86df72d2f19bc1d1fa867d547a0fa3 release27-maint +83903 50388a83ec3f7e0b2c946bc2b2e44f8c984cabbc release31-maint +83904 50f8f5247c810aeb8018e4ca37a44e05b67926c9 release31-maint +83905 0ae706a71a3a50dc1d15b95d0e9554bd02217b86 release27-maint +83906 a56d8a80b8839e5597dfd305a76421a6389b3119 release27-maint +83907 46d48d715442fcbb802eed39756fd320929fb82c release27-maint +83908 60076f28c023ac6eaa28858239d8bf7e9cbf360d py3k +83909 c2e1db30f7562face50da1a548df7d56db0f704c release27-maint +83910 30cc27eb354acf51c46bde2f2710514ce6b8f1cb bbtest +83911 9853658a8355bbfb8e43883255b12012204e7984 bbtest +83913 29af9abc76cada153fac71862f9034af2b4851aa release26-maint +83914 b1892b7f1966f4ec8b9307ffc49910e513f16f1d release26-maint +83915 4c523e1ef10f2b721f6074c2bfc613412cd3ef83 release26-maint +83916 c3912aac1b73f60f9b6ce977bc0e9ddf26f97f8d release27-maint +83917 6cd292c9c2960e809752c58011b9ac4c635a5fc1 release27-maint +83918 37156907f359cb9da5a89a2c9aee66885003b144 py3k +83919 109bde5e41b944ef3ade98ac6148f6bc26e4a58c release31-maint +83920 b65dce5902a2847bfc539a75d442fdc49df60aab release27-maint +83921 ff9614edf3a0546fc6f15b9f2c05580fe6b43629 py3k +83922 14fb67e7fa0468c107b6d1185d84301397fb3c28 release31-maint +83923 fa485dcea613e915a39e14915824bbc31efc3256 release27-maint +83924 bcea35a2d2d2bd95e105d8e8b12c1d50421da274 release27-maint +83925 19af08287cc79293f16149559b851987cb94b1d0 release27-maint +83926 ad6c8e228712e4c941c9fa8ca521ed8445264e6f release31-maint +83927 c2db27aa6bf2500bacbbc8f539c5e400f3c0369c py3k +83928 1322ef3c4a6c8292e80d99aceaed4a46dcda6a77 release27-maint +83929 dea1d268e34ed67f132cd9b0581d1d2a6b5ba356 release31-maint +83930 9e003a2620933c986bb5f1380a1a78b7519bf5fb release27-maint +83931 4f76ce69aed0dc27444bd345b98071395e32b61c release27-maint +83932 39092f86b0af32dea5c0b0950b1ba02cee39133e py3k +83933 a3853bfa251816dd571e4b6c5d8be278c155d076 py3k +83934 3d6a02f0a2d8a7ae3777c05eb98e6b114d536209 import_unicode +83935 7e525e125b715e39a166f3abe7aae9a7d34cb390 import_unicode +83936 7dd5f5cfa179467679354b2b40057442927c0971 py3k +83937 0a1ad9b114962255d23050e904122ddd6316794d py3k +83938 2cb58174aa7da072c59d5531b4e6c09be564e3bf release31-maint +83939 29e20bdb2b11ab0ce14673669f2a3bd5d2261df5 py3k +83940 40556ae424b7379f4e4a612f2c9dc27d8e918004 release26-maint +83943 68969b9dc3b060056cdda6dbf0528d35f2c3299d py3k +83944 7364940672f0044713eea48ac3fc47317ea711f9 py3k +83945 930b2803c7166b223ce170faef4c481aa6ccd68e release31-maint +83946 c3ff6e910068b2fe877d50de5c8d0fbaef7f8906 release27-maint +83947 56066a5825ca20bcd5274c4ad69b85e4019275fc py3k +83948 76d463c99006396dc415123381a1eb28f3ea364a py3k +83949 9108e7dcd7d805e7bcd08db1dd6c615a06a776c0 py3k +83950 a1de4639564e5af1d9e2f742dcbd859c0d4381c0 release27-maint +83951 f22e950551ad2b89c048c45d80ba5bb07bdf5826 py3k +83952 3fa8f41a1103c98caf2694bca7eea62110cc6f31 release31-maint +83953 d1b035e24372be017dfdd4dd24d0b136d474965f release31-maint +83954 3dbbcd34d494e258b0c9fe540db5bf29905e3ec8 release27-maint +83956 8499ae5d97196a72a5b874b3cbf90a83da4e7359 release31-maint +83957 ab2d94931b0c105fa53c60239fcb39b81ded43cb release27-maint +83958 59db363fa5945c17907854bfd0022cd64c7ba187 release27-maint +83959 fd4606efc700abb2578dbf88602015fe9925afc8 py3k +83960 f7d8aa10c3efa768a75c160a0481bb6f44b0f992 py3k +83961 ed66b24171af12e8b7565bf9e9e0c5f4af9aaa87 release27-maint +83962 68c48f8aa55538234fd5ba6ce32bfe927932f2df release31-maint +83964 5343f5714feec51ad3cfe1a7a5a6840e20c62275 release26-maint +83965 be83d293a1e9af9e67c87052f2d9ce8a011abdec release26-maint +83966 005721e50e0ba14fb38bb2505f181114101fe2ea py3k +83967 64b5c6f29601cd89e4fcdfa77228252cd96ba4c1 release26-maint +83968 cb461a9144db03543c6552edd003e2af8dc34d63 release31-maint +83969 d2b721185bfa2cd1274448f2ab6960e62b91fbeb release26-maint +83970 4a5ad918f7af4544b91f1873edbf34bd1dc00320 release26-maint +83971 87b2da840252e7abafc8f927611e9d6fcf5bb6fa py3k +83972 03e884fac4dba25290b78be60445ff814adb8423 py3k +83973 2dd964dad16854f2715ee87913f254bf87da389a py3k +83974 a449ce1f385b734506cf0327975a1229744c747f py3k +83975 aa89cbb7bc219bea118c1454a5dad1af913bc550 py3k +83976 fa2d9720a66cb10f61104171913207d4ddfaeb94 py3k +83977 d6f8e86a1bec22c3afcb5348d7535132192cab12 py3k +83978 7555b0035a777411d84d196c8d2d156dd8b0d6fa py3k +83979 27b553cdd85b646ab9d4ccb8b4b197d99c16e20c py3k +83980 f1d922d820caacaab4d678bf86ad8b40d3ee3dda py3k +83981 913aa8a4304c574b2ed222cbc3bc6574935128c7 py3k +83982 3a80e67a0d3725a8be7d1cd3eeeb3a85066b5d53 py3k +83983 aa9c8e82c43576bf175f7ababa7a1340cad7d6da py3k +83984 d4b670aa6d6b83dc673edc9a7f92e42496258c06 release31-maint +83985 068291d44fd7f8a1a5c0e54c5b0c38ba09557439 release27-maint +83986 e54baebbd6ff01043752cbdde524f7f45e1570bb py3k +83987 291c9afab12ce05d8db2c5fe7ce2c9951fb8ffbf py3k +83988 4742e7aea2f59ccf62d80981bde2579142d385c5 py3k +83989 7be5916333dfda6f077d9b3342d5c313e8fbb1d8 py3k +83990 50c0dbaeaa048011697f37ddd74a8a9b4210a6b9 py3k +83991 ab6946972b7fdbbd48ff9db00e0c4e36a2fb0663 py3k +83992 d8686c6e6b5ebd6d322e045f0745e8fca59c84e9 release26-maint +83993 3af597f1232af68a15d09c53b0ab243afa625cbc py3k +83994 d54da9248ed9ffaf65f651ca71988cdcb130cd82 release31-maint +83995 70634c3e03107a1ddaf3261dde91d21e4c0993dc release31-maint +83996 f7639dcdffc36dba4db2118a04cb8bff3105aa08 release27-maint +83997 94232a0c45ae34865e0e9becb4dcc16a74b5182e release27-maint +83998 cba2a9611170147728051c6814dec528e30419fd py3k +83999 1b55b71c7c210eaa4ec57f1fecbe9119aa198d00 py3k +84000 f8b4ebe9c41b9d9d6e873cf36159f8b290174671 py3k +84001 38d2b64ab7c15fb75bf78bf37477b0cbf807878e py3k +84002 d4600ee5e82f0e97164e307d7957f63e886d3223 release31-maint +84003 494a1b9545696b5b726d1e16f58fc37f2dd2e8a5 release27-maint +84004 971249c74e805d8b76fd7879ce77305a3862be8d release27-maint +84005 981555e9986e3294c42146e5239ab960fe7c7ae5 py3k +84006 aed4d7f12821d711a0c0c52a38d95b6961175c46 py3k +84007 063c99d8032c51875233bc985eb085e9e94cb8c6 py3k +84008 794eb40bef3a6554a899c0675c9e9f5fdeee81c3 py3k +84009 2d7bba1cf3bc5752923cab40604e0638d48fea3a py3k +84010 293e332b8b4b05a69722ce9637c593873ed83993 release31-maint +84011 85adfe57877b1c9559508df8db2fd26dbb110553 py3k +84012 953010c0b1687ff9f465916e8fef7fbdaecd8e4e py3k +84013 a6592fcf75e77ef44a696c84c3cfc366682f0ff8 py3k +84014 e013850860faf135b7791e219e5b8f16a16b8a20 release27-maint +84015 2b0df9e1f69ec9e6145ca2b02cc8ef0e1069b217 py3k +84016 f1d18f4d6163b59af32afcb24d96ab0464361cb6 py3k +84017 94b290abbafbaa53b48a1197d34c301281666a72 py3k +84018 a4fd37a1bf37435d8f501a497c899a949def3b44 py3k +84019 12fe4c88f9e6674dabaf804d9de2ec8c9df4237b py3k +84020 27711b0cd1f03b54a3b75faacb7240dd829210cf py3k +84021 28544d668ed0dfb4657f413a81377c3c9326feba py3k +84022 ef75955138d22759e6e3375bb5fc3f10220c1835 py3k +84023 0aac40c77444342813fb20eb421ee53c079f82f9 py3k +84024 b7ab77fd27b707303010544a3c5e3c333f0cac48 py3k +84025 2c6d13c40518bea236c17cd35d2ffd9172b93cde py3k +84026 b7220e429abb47480111416ab21882385cbcc002 py3k +84027 9bd0827017767365b656a04f8f4c833b00e5e92f release31-maint +84028 45b24adfd0649f088b721ac10202031834de5022 py3k +84029 ab670e414c269e7b4dbc997ae55522b342e70c03 release27-maint +84030 d360311f0e52476ae17db0d0b4b5a5320f38f857 py3k +84031 5f33653e3837eee006a113a03892031d63a2db9d release26-maint +84032 3a79aa2c4549fe35383eb53ea0650e85881e0e53 py3k +84033 f2923a1751d82546bbfbc2d38724f51d289ef003 release31-maint +84034 0e72183067ee7fe980b61f869b9e8c7e7e00993f release27-maint +84035 c68f271342d065df3911b63551f56891eb55cc5d py3k +84036 37c48790d08e0df9bc14d7fa8343a825732b0bf3 py3k +84037 656fe6292f9f6e9b76aa13722f2950a5fdd529db release31-maint +84038 b1f99335c6774e7b5e4c109d4d0a430cdceae2da py3k +84039 afae999782269f347eccb2e34d1de9bd29d9c902 py3k +84040 1e7dcfc040619b8ada5da9ea2755d20d756b23c7 release31-maint +84043 3a1b5b1c069b2a46530a333fb562fe6d57d48525 py3k +84044 95ce8da37e787fe5cba5f7cdc7fc6d19265c76e6 release31-maint +84045 d8d0abe61e83e7a008ab7da8f550a8b8e7f2a185 py3k +84046 05ba88292d4c5d9cc67c0e7ba640c2605f701982 release27-maint +84047 d667ba93f02ac88717a19e730887488218c66f44 py3k +84048 203b18d5c626dfa96390813ba7402f9592b5b1c3 release27-maint +84049 7538049efde89cb16b5ee3c6e134e084584737c3 release31-maint +84050 3534351c8300141a337ca6cd45d74549f08e1192 py3k +84051 8db5bd701ab360fa02d1d83645c0efe06d783391 release31-maint +84052 015f051297c5239ad39360d664562c60a5022054 release27-maint +84053 c233c84bf403b4cb04cf82b53fe9c1089922f9d8 release27-maint +84054 8d0ab555a1600dcd2675c1d0543da5f78067c62c py3k +84055 266f3a877f64c8ce6672291a8e201bda7afa6bfd release27-maint +84056 6dfc7da1791434402cc0b8ea09cc694b9e946084 py3k +84057 2b36f29c33fc6e47a3e1666dcacd561d413a02d2 py3k +84058 94d1dad5595534755d80081af69b12a03c80c8f6 py3k +84059 64fb0bd55d3cdd4bfa32af0c41de0720a0257947 py3k +84060 8e0991ba29f4573dab3068f55ebd1cf57c28d7d5 py3k +84061 f88cdd9a44ea6c17e19e8f59254bde4bf2fe905a release31-maint +84062 8f2f058b7d89122c27874afa069b05ce7faff9d7 py3k +84063 567d00920ed6366cbba74b18e98c769a4fe70220 py3k +84064 7a1adbec0db87657b822b9b3b5d0c87a78a4d52b release31-maint +84065 b9dd467d0574189161a2b05f6fd143df51217dc9 py3k +84066 99662db9dc41986dad4a071ef660a10af21afeaf release27-maint +84067 827a633e68cd3e44d54ae4952c8c57f04dec6ac7 py3k +84068 6fb1013e3079aa03f3159071c0b82a39acd5b5c3 py3k +84069 00875cc34d175127a62f6704a8ee143701460193 py3k +84070 9028f23db74be41ecfe776113314a3e7ae0009f8 py3k +84072 e783c7d5ae364648bacec2d1eb3fa51fb1253a00 py3k +84073 7a54848d492948f7871de79d8ca0fc7e6c0bf1f8 release31-maint +84074 98686b10314e98d01f9c8106657c2c6ddbfb0edc py3k +84075 de46e4250431c6b64b19bf8ea5417aac69e47928 release31-maint +84076 20fdd24dd9aaf24d3a4e3c0faf427078ee6d9f55 py3k +84077 79d572ea17df432d2035f29c3a4c160389f091e8 release31-maint +84078 6e8f5878849c8e6d39e07361d71a0d0710d0442b py3k +84079 d158808dbd5a2699a85c3b5f364119ce3761567c release31-maint +84080 673c4e8a01c47bbf945672eda894cc2774861ecb py3k +84081 b09f93fe29fbf80572bb3f4bf966158d294bf887 py3k +84082 a927a59cee06c57c8f93975d08e34adae686aa86 py3k +84083 18398f99fc55fd27fdc361433d2514d0b9473244 py3k +84084 134276eed28088a42733e371c11fab0dc0bbb2c1 py3k +84085 e9e0a00ccfb351aa4b7c041f517235c636b4e0de py3k +84086 85ae442ff8a5d3535872e05f4ae6fb8733b848a2 py3k +84087 8cc8ce7c3909411a1bd66f9e20734d388362275f release27-maint +84088 f098e1c8bc597668e45b720ccd4f2ce8f52b292c py3k +84089 92f7877088afe46979ce9eb0ec21961eb80c4155 py3k +84090 bf18dd70c180304626582cea2183bfab8ac160df release31-maint +84091 b4d88f9ef3f99234d1532c4665111d76dd6e1c03 release27-maint +84092 91d4c7b1bc25f8929f12fef7905bb5eb4355d14c py3k +84093 4b23e269c4d99a684c6096a687f6a526033f7839 release26-maint +84094 5d9bdf5aa07bfd48e78b37b92da4f4dd5345e455 py3k +84095 fc89b8deff1e1ccd5dbd8a293c3ef8d190786634 py3k +84096 aae3e0c510ffe50681eda7b1c54964a78400fbf3 py3k +84097 d52f9c8fe5d609b45674eefd2b0b6910c6d5b5ac py3k +84098 715c44b60ef3736e43af4669e53d78dd2a999b46 py3k +84099 a233be68d32ea8c9f302047fcf77dcb5cfe0d939 py3k +84100 e4432efc88b9f8a241652b85462f62f0a26553b2 release27-maint +84101 907f73e227a6b9e1fe8040fcf0c628bf61868b11 release26-maint +84102 8994d8d610d4499e8050b330774771f5239b3473 release27-maint +84103 9fe74eb028ab01f9c301bf027471f257dd957a9f release26-maint +84104 dee30c46739ebd1c89fa661e75dbe33ddbb42c67 release31-maint +84105 dc32a7d9da8029fc479319d858fa655cd432f9fe py3k +84106 e3df34544db9089f376b1906e8c4f82831e723ac py3k +84107 4085cc560e9ea5328872d2f4a47eb4ee821fdd73 release31-maint +84108 756f8b398230b3a9de6cedcc9ef8d5c77c674227 release27-maint +84109 be0aa1d1384cf62a86f855509195e9df1bf92b69 py3k +84110 1d83d92effe81104aa80b8e6c9906c640439b1dc release27-maint +84111 b089ed576b1325b5cfcbff453435963f0d5a7e50 py3k +84112 77b052c64ebbc2e2781a35560041de4fe74ebfc1 py3k +84113 4725082c282f03fe5afe9d1a98d45b09ca9d8be0 py3k +84114 17d5b030e8779902d82f76ed32a69d8d5e71131a release26-maint +84115 4df0d2a13aa14f13fbfa2a8ddae9cc10241e7f09 release31-maint +84116 41c6087f2e6dae8f14293f8eaee23c505ee1ff8f release26-maint +84117 8059e6b62463608f73fe087b5bc5abfdfd0f4f0f release26-maint +84118 e189dc8fd66154ef46d9cd22584d56669b544ca3 release26-maint +84119 952d650a0afd769cd62fe49dc0eaebda27bd617b release26-maint +84120 b662a39f0823ea94f35e9538e45cc0270dae8c4e py3k +84121 0c8bfd285ef9428170f27d9d218a9dd5688bac9d py3k +84122 05c4baa87549c3d5e2ed0f944f16765ac91d81ed py3k +84123 0498d68dad5d3791c2dd46a0597e2ce6dac49c37 py3k +84124 b91059e59d0dc2253e8b97ad8e5f23ef6408d063 py3k +84125 745bd639ed4dcd6acc8baa2ddf032365f24ae4ad py3k +84126 0ada7ce24de2cd4917a8b8c6f6c3a7b803d446a9 py3k +84127 97f47eac09db4ade87aaebcb143d9218d421126a release27-maint +84128 60a4777a73a062ff577ba8db62d481ee808d6c46 release31-maint +84129 27678ff0cda144d1a0390daa32308f8f00fffee4 py3k +84130 6cb776e57296ba3f1c754e575f85a3b8d90d5b77 py3k +84131 4548f4ab19cee3c43ffa9dec011b0709cecde50d py3k +84132 77bf58296c87059f6c4649e6228033f4f9a55d15 py3k +84133 b2a9a59c2d572bfa249088c74567211e4ccba49d py3k +84134 a049e220f0309606d8470406b60734c639b0e691 py3k +84135 6cc655416d639bfe282633b50ddfed8001d2070e release27-maint +84136 24e06833b5b3b727dbb0006cb53bc3d0edd35f31 release31-maint +84137 9dd763423a566ddc68a2d08ed80c5f926e95d08b py3k +84138 5fce01a51aa5e515459c1fbcc32fb51e375b359f py3k +84139 4bc9dfd95c80756b67a1f5af1a8998aa238ba3f5 py3k +84140 212a16f906a6725c8189b6b6a985e9addaa3d0da py3k +84141 6fd96c01b437126d9066309b9c44571a3574f51f py3k +84142 990a766ff9833560d708f23ffd64d9016f2ab13d py3k +84143 ca2a859e9bf63510c0ec3e8c7a90761f81dfb5b3 py3k +84144 caeebf7497c38d57d735189471473d97a32fce87 py3k +84145 27e17616933ef89f2c118c7ea83bffe37e56ac99 py3k +84146 ee3dcdfe2f87365f5b03396a5cae335c6fc82d24 py3k +84147 7925bbdfc805f0137731551981a221e339052f68 py3k +84148 6ed381355d0d448a031d46b2ef5191ed103da10c release27-maint +84149 35e67af806e503d406d186ddf261d7c37dc7af41 py3k +84150 b624c7417ad4e6e91bbc39b7031c3ee09a2af403 py3k +84151 2a4ceebdfcfb258ed6edafb5add36378d90700d0 release31-maint +84152 febaea1a6871effd83794180fe32679733eaa97d release26-maint +84153 39e1d3826f4ea0ef391ccb19d3fd4f84e94b9014 py3k +84154 f3d5837e31b786c3c4b369a9e3901ba95b891d1c py3k +84155 3fa0a95534024d8960980ad07998fca56683bcbe py3k +84156 fda9d1fe7f06b76d2b45654f044af39548a1be04 py3k +84157 51a7784629bbad84da8c2e7b339d42dbe4c60911 py3k +84158 35c53e7e2280dc7a9806c60b875cbd48eb24218b release31-maint +84159 9a54940a332ee69177eef7959f8252c12812840c py3k +84160 f783278790ca63939233a12b546da0ccf05827a8 release31-maint +84161 a01992e219c09033976b68bb83b48fca2a71fa2d release31-maint +84162 2b32312dcab1506ae9ebf785ca65aeb4d2ecced5 py3k +84163 686b18bffb864fae83b3ade87346512271358a37 py3k +84164 fc794add559d5aab744cd7d644d2443631a00e50 py3k +84165 4943078c90c9ad485f27de0ee6ed51a1a29adc53 py3k +84166 71400ce0c721d15708e045f6e167ad067a38c2c8 py3k +84167 bdd76ad3bc76b011600ab63ae87b6c7f95128a62 py3k +84168 ee765a67c0b11b19542c5635d7131d9199a2c79c py3k +84170 0ed76c7b98474bd645ec3b1489c639d8a70a7e0a py3k +84171 a8d8de23cb7785c4072ad91ce51062b0c874bd6f py3k +84172 c709351458a66af6997ed85402af45127e60cd0c py3k +84173 c130f432f24a039bf6beffde8130ccdb30397011 py3k +84174 ca557948a5cf67b52064457632d8d39b71402dcb release27-maint +84175 6cda5fd0a3cf23fc395fada0acd03fc93c6ea9b1 release31-maint +84176 b871244d7f797890f70d54c0fbb2b44531a783ad py3k +84177 8f97c64b233362160c4b7375848c3ceef5bac150 py3k +84178 749c22ffa36ec7577bd8135c84133a8a3adb585b release27-maint +84179 c370866f30a75aa9fac6263729f8449fc475d476 py3k +84180 df961064f811cfcd19d943c73404e74817fabee6 py3k +84181 23a598c01911f204205a4ed71406c2e275eb0517 py3k +84182 687cc854cb4bfdf9b498a3053dd5e2595eb7af68 py3k +84183 e67e07cb5171cd89529828ab573eb598344bd1a9 py3k +84184 05a3dfda04ffc6a325f8963138fe5a181c9e7e8b py3k +84185 790d48788874c51812248a95a1ee1e757d77b25f py3k +84186 80f98af17def883da435c77ebe8440793f312243 py3k +84187 228e6f001ae13b1411d91bf15c924ec4d7e69e71 py3k +84188 9adea94557539e4cc5c6bdfb6637aea5a2e04ae1 py3k +84189 ea0decd2acfb62d7b00d917537d4276b6760ad0e py3k +84190 4f831d45125f0e591b67c2e2f9ef08792ae9168a release31-maint +84191 65fe059b97bf338928b2ef98faea800492367e67 py3k +84192 ac12d948a89576422e816edafafc1a5cf9acb41a release27-maint +84193 a9e78f6f694e65a98a6279c579a7430f30743a2c py3k +84194 2cb2663e336890f58e67320df85b4a7ad1da503e py3k +84195 ab84a0c7d63c60f6cd5474ef1ea4cea4b891f918 py3k +84196 f6723d55de4b6ce71118f94252e690801c51fac0 release31-maint +84197 d0e9febfa00ac71af0968f9f2408b10ad2d9cf98 release31-maint +84198 857806147ee7341d6b634dd7da09d3760e24fa7e release27-maint +84199 f2430585963c5845ee211f34bab87f6d08b00188 py3k +84200 f8712a07b0b113216c18fbd38f9a29045c03673f py3k +84201 082eafa08802721fa73725b8df751cf1896857ad py3k +84202 f65bbfbb823ffc1af40ed1fe30a7716044d613f1 py3k +84203 38ce947c28fb401613b18d7429484546ecb7f169 py3k +84204 9155db659c20fff1f71db77b54b07f88319415d0 py3k +84205 a4ec7a6a6895e4e46b884c75d85875001d782084 py3k +84206 5d3ca1c018ae43410e03d120a85cbf5bde1036fc py3k +84207 052f42d0222fd9f590367cdd6dd79582e8bb3a66 release27-maint +84208 66143c23684da3bf54f4c89cefdde8ff0dd3b108 py3k +84209 5fd26f4526000af3eb954b3ccb40aa39e64668e7 py3k +84210 af4a91c940717b916e469469ce0d7aa157544d09 py3k +84211 88e843ce1160e820a34f3e309c69ffd649bb628b release31-maint +84212 ba6fde8a3a997d56dae02b775b80e04be09828b1 release27-maint +84212 8c6c72b6f1ed0a610559b0f8c83c6b3bc37756ff py3k +84213 54c9c86ad104b27aa4664bca98da55922a9d5e59 release31-maint +84214 c18eeb969102f24ad96ade316b14bbfdc63a3464 py3k +84215 38ceeae0d1f0796f02160f0036f03d755cd6078e release31-maint +84217 549a40ca2074d7238854d3290296c9a03059aa93 release27-maint +84218 3528ba7b4305ca75bf7a06c1cd31a16a5f14c349 py3k +84219 f2c7e4b1d8045c123518b7d6afdd3061431465bd release31-maint +84220 39dac0a8896a2786ba15ce444cb274850b37498b release31-maint +84221 30a0dcf5a3d8a581b5ee12484725058f965883ff py3k +84222 5a299d785987836167e2046ee829a20104b1a8d5 py3k +84223 87d468ae3c3c2cf714e7b8a185a4e55ae7565dba py3k +84224 d4e20f9f127a9f4fde69ddb45c6a76479b98fd19 py3k +84225 ab63c4578b1bd14414befc81104c3974c6df47e4 py3k +84226 65ce992368978658466311c1fad46a21a9fbb304 py3k +84227 f3db504cdfb1f3f5538791a54eb78043c8ca17d9 py3k +84228 8397f2e007ebc24e4eaa4d71bd64f2357e3f3f86 py3k +84229 fa7d1d5d2afb6015a9730afff39fb7adbfa7f330 py3k +84230 7d2bd8955edb83b0948928e8b4d3f65353caf99c release27-maint +84231 0c3d763f38f142a785eabe7708bd8859a3bf0745 py3k +84232 9d5916ab60e0f3241117c9eb1c12092f4d341932 release27-maint +84233 996604cde41f5fe80cd684ec91cfd3781e99090c release27-maint +84234 abcf9577d5db3fc554d04973c52de0e21f939947 py3k +84235 1efe823e1f1885e7d0d17bbc42a4cf8aedeb9a30 release27-maint +84236 c4f5d98ee87b03b1e8f5728a6904bebaf8499bfa py3k +84237 497a7e284e4dc8e00341da0ce6f60e56d08be5c6 py3k +84238 2f3ac834b53634eeba5808f50a543d090c60db5f py3k +84239 b18c80c6875400bfa9ac5314b149125edfbc55fc py3k +84240 dfd0229748efd4c1a65bad91b79ae6edba408dac release27-maint +84241 97a5fb1c96ceb3e185e484247b9501e4919d77de release31-maint +84242 8e184a8bb00e649741a2463b8907ec644b3dfcf9 py3k +84243 461a20ab433fee4b7b7c0c625f189ecaf50d6e48 py3k +84244 302fe25cd6b1188f2bbd5f048d5db3f87e017957 py3k +84245 10df93872ca730420275ab5b783885971cb1decb release27-maint +84246 f5dee30ccd39fd50d8494d904568a5b49308d9d0 release31-maint +84247 f9ab9c92db8db24de6c5e5e9435a1041cf7e2f46 py3k +84248 aacb15291d54610ce31b75f084ef298b02e2c975 py3k +84249 a34be03f709a349b611f23b9d6dcd5a1a036764c py3k +84252 01b0a6cb13d43c9ea35f52e0c4e54935113c852c py3k +84253 6e0fe1b83ff0956d5ac56540974abe3d84a8e9ae release31-maint +84254 9c4e85785d4e4c5e94068cd2e68842dcef8f34e8 release27-maint +84255 0130e574f5be5a38727d34ed0c0b8e533f013914 release27-maint +84256 7ff3fa42972183a5ba22d45ba99904d4aec958ed py3k +84257 a5a5872050e30384df867997837a16385f7da535 py3k +84258 b017a4ef7694faea93cd4c0b0528fee0c71257bc py3k +84259 4acfa3fe6a5eb52c152beaedcc6d7d62f3e9cd15 release27-maint +84259 e49c53f7535c08d5176a8183f809ae678c4ca8ec py3k +84260 e81906e92f99aede6640a650fc7456df871ec729 release27-maint +84260 6ab656765bca387f75d26ab74f8fafbbe90b1f4a py3k +84261 35304c2fe9e0bb88131a05ba30a68d0839952c45 py3k +84262 e91849cd06689dde3175f12bd02f9b436c5484f9 py3k +84263 f2e91e08c1c57f0ae03aff85db8347f0c20d8d31 py3k +84264 3acd86f8c552473ab9b626a99414cb4b20b12b03 py3k +84265 1c8834f3cdb963877c72441ac927941184c75fb3 py3k +84266 5948e48fbd880cd14ee4d98420ace93d7dc29ddf release27-maint +84267 8f5faf5696e7af2e118137e15b4b659cbc988384 py3k +84268 02e2d9eab730199c5baa9461902b3026dc66f5a0 py3k +84269 716d3d102c0aa126d591a58d294e1c0ee923aa51 release31-maint +84270 a412ceeef0f1eebac7fe7eea7d8d5c5da8db85c2 py3k +84271 cf399de12b5427d7abfbd944a1ccb3cd5e5fdd48 py3k +84277 7e1e343b708b182f7875c4703753fcd4b36c2583 py3k +84278 aa25b8677cc3f79d4b5354f8bcacd1ca10ffd887 py3k +84279 51a24a915408593b89fd10cfa329a62b354ccb67 py3k +84280 b535cde9327383f81df02eeb0d08bf716bdc5a8a release27-maint +84281 1a0859623882f71deef16f58fdf004621768e081 py3k +84282 42c70f17c2fede6116108568a75b0eec08b3c73a release27-maint +84282 9d4dc5855c515b8045293f1b40a6ddc9cb116301 py3k +84283 ba536ac7ab4e4db028996ebe9bcc512159d2dbda py3k +84284 e79ba555922a1687bb719dbf7db92878cc812d29 py3k +84285 76e9cf84567602b90a7c4a7707658feb2444eaeb release31-maint +84286 b95ec171f503643c7c96d2cba214ec0a0bca8dd6 release27-maint +84287 efaa47e92a8e87e033332869582ee49f0af2e32b py3k +84288 7895c4553bf5449067c50fefd8904c7782ce117b py3k +84289 90bf2243552d3343a65836f5c657c492f72752bd py3k +84290 e2bce1c596beb3a9ece7aa3f8a7f1b7b4700cb74 release31-maint +84291 e716aa2094fa8d96cb375d064361a69e53bc4ed6 release27-maint +84292 9f8771e0905277f8b3c2799113a062fda4164995 release26-maint +84293 6db7835b0a95afc1d4f0ae9f173948b854e7ba0e release26-maint +84294 2de9d4457082123d9009a7f25d0d94ccf65b7253 py3k +84295 c1a83f2c708757ddd2cf2b21ab09a5105ad0fec9 py3k +84296 d4a1f9142f7a9d477ea7842fed0ac63f821f4a82 release27-maint +84298 db29360cad0fac3a64993b9886f14df7a17a2bc2 release26-maint +84299 4b1296b262ca4beafc5ac57cec824977c6448856 py3k +84300 f91f29ef4ee7b5f5ecfbc905e27d9afa9a00997d release27-maint +84301 c1c4f8f85070da4d7b69ae36e9e0121c905e15fe py3k +84302 8fe36e2b8ed13c2222fd1d5b7d7e9da09ea198a1 release31-maint +84303 80a4814ecf5d6521d61ce600b6aa5b6d698da1c2 py3k +84304 be76b37fe7fd8409d3d2f27f282e9b41ec3d81fc py3k +84305 6180f4564714db133ecfd2537a0d6def3d8e6112 release27-maint +84306 f65e9c158c040623a967be53b04ec642f476dade py3k +84307 867699c9b63ff5845ec02f1744e3e76dfd718512 py3k +84308 1488cd103d7b8214f7a110300740fef6fc35ad5e py3k +84309 1e23c3b2e23259a90a93bf4bcf55560c5d0cbdfc py3k +84310 87bdf53ff4bbfca42996530a7f0e9a85b54331c8 py3k +84311 f6b3e64b76206780286bb25f35b4e30d6e96f3bf release27-maint +84312 053ff65be54cb363c5a2848156fa23cb742700b9 release31-maint +84313 2ccd043aad5c1090ac594b3c96a92741471e2dc0 py3k +84314 87037d8380bf4a39ef137f1f408840b90d6963a6 py3k +84315 3ac9a37e429ba62791afa26beff2a49e60336837 py3k +84316 94c0f97917ddc6928178ff72d0c21ebaf075a8de py3k +84317 0482b30ca466293ee82cbc356c225c8593c7690d py3k +84319 aefba899eaeeb4247a1af2f2abd1139adc745b42 py3k +84320 8330346b5c5fa8b6feb94dec849ffa710d182a2c py3k +84321 ebfb94f2cbc3564c892c5dc86a38a8b093d55249 release27-maint +84322 190375445241986a3a847c8a4d78e814ed54a0ad release31-maint +84323 65520556269501e39fdadb830f274dcdfe26ce8d py3k +84324 7915d266ee2b25dca465f704652d34e1921c0152 release27-maint +84325 ed83d546315d2e0a3ab3e0605fa053636d89ac3e release31-maint +84326 325d016c19f71f8474392dcd706b67f9a26857a0 py3k +84327 9d4afd8e8621154c1f8e695b602f94f5c4103b7d py3k +84328 debc2842b4b1bf94c8460818220e410519bb0231 pep-0384 +84329 0112f064cedfab2af8875a589a0c5cf1b4779192 py3k +84330 d0b460a47f7ffa58df98d5c610421e0e752d1ff3 pep-0384 +84331 093a095aa74c648999664b8f67f089bed884b42f pep-0384 +84332 1aba7339fa6c2b88e535ea1f1caf4950b86cf888 py3k +84333 cb1f5d054510e47a4cb306936f21a3b55a6152d9 py3k +84334 34dfee590a3071b1effd404c61eb2c2ab25311b0 pep-0384 +84335 d7162207318f67cb08ab48f92e87c739ab48128e pep-0384 +84336 33c4ccafc4f538a12cd6dad2c73b8c28af59e68e pep-0384 +84337 9fac1970d3806f23b5827c3dac52b546c76be70c py3k +84338 78e40316e02346afc677f9d35aa4789015a10371 py3k +84339 eaae0df6d0630e1524651bc0c6fed3fccdf32b68 py3k +84341 5dc06a059630adc36fcebac81d59d3bf52fc0156 py3k +84344 0265d5f7bd072166a2b83ab94693c8865a3d1789 py3k +84345 4c978cd3640fc9e7c44794b964bc584f38acfdf5 release31-maint +84346 b2e8dcd15040341fcf7618d21a060ef518474f66 release27-maint +84347 8f6e41c3a218a98f0026f5133c1f9aef870f5cde py3k +84348 5c89f9571ba5490ec46521fb72980c11b121d3c3 release31-maint +84349 3e20abd7def6e36008bad5a40ba7930d9cc9a4ed release27-maint +84350 4bb317eb496a08757a2bcfdc8b55b233f9dd3586 release27-maint +84351 9cba99068c54aa9fe8eccefb8b1b456c6b40f5b6 py3k +84352 9297974604ffdb319a9e6d9f1184ae24ec61baf6 py3k +84353 915da9f2da199e8b54a4d54da0efbf808885ae1b py3k +84355 80d2e7d1d7d534fa465912cab4ac401f409b6067 py3k +84356 9c51f38365632a1b7b785a278d514b2816ea0f0a py3k +84357 726705d02add21e6d2c1bc5507af3d36c144cc40 py3k +84358 efe9f6c8a31d4fc80d5371ebf88d05cefb3b0f56 release31-maint +84359 8ad59b523fd8a06426f540d5d36172be1cf51ed5 py3k +84360 e1dcdcb5201d484f8a0e5acb38561ff84e38e239 py3k +84361 294101f77cbeca4a1a7914734df0be8606b4f659 release31-maint +84362 e6b456f93447a1005cab1f46685b53ffd3c2df96 py3k +84363 040ee94a9350ea2437802050a23b398b2297eae1 py3k +84364 fe7214bc6d66b339ff1ff31a1fc6b1e9d3779bf9 py3k +84365 a492f1ac0575479e6b8eda70ed7157d07f0136b9 release31-maint +84366 5370d81a5f2d2b3004ec835e2cc6c9ccb90647b2 py3k +84367 0a784f6acae76824caaa3456b16bcaa2e76f47a2 release31-maint +84368 f92043c7ff9840e38bd622aca1d51a49a1743414 release27-maint +84369 ea893db23e738c6088c5041437fee1b4a5491a0e release27-maint +84369 4743738ccafe17ac9e5a3ce6d3431d81d8878b0e py3k +84370 84883607e21a4b1afeae48be8162596041f492c1 py3k +84372 7b2d0d77e4ac6e54773ae986990c424f4d063a53 py3k +84373 8038929333a9c7829b5700d085fe2f1d1f911bc5 py3k +84374 08f7ae10cc792aeab08e96d42cec51e8bc9fb7a8 py3k +84376 ca8f8c6cc2b1b2817e144c770cff6329696973ff py3k +84377 ac37a28ddc8f49b4a9b4a7ea867bda5f809d7bcc release31-maint +84378 1570f6e9a687459eb7eef4e19d26a412daf7dc89 py3k +84379 d503f7a454566b948bb1c76d3f5bafe58ae4fbf5 py3k +84380 62930cb05ed8b8a144ae22e35b0b086f9254ae49 py3k +84381 03268bf9a2564f84fcf1c8592831008ef7032fc0 py3k +84382 4f2905ea7809673f0452f32f9d1d2be5f98c1a86 release27-maint +84383 a0e756d92d600610f9bb819c5a3dd8630373bd4c py3k +84384 8c2160b5c81af7a8820ef64c9c618bfb330d5280 py3k +84385 9ca83c64f77ae155926d2f0a695486e32abd8b27 release31-maint +84386 2e57615e61f0f1aca6e517868a6b55cab1fa2c96 release31-maint +84387 9fd326af62d45c8dc2ac69032292caadb81bf05d py3k +84388 4980b3e9e84a18149b6bfb70dc8c67338c13a938 py3k +84389 7e9abd53b9298e70ff6e4acf068b7de22fe0e678 py3k +84390 2973daa4724b1ed6af3d9ebfb94ec5a921954c4f release31-maint +84391 d24870d00c4259f80c7764cf3936b20b622d62b3 py3k +84392 b3b8d08f9d06ecfbd8363b4bb285b0b0625506a7 release31-maint +84393 da19d02aaaaa3d6fb78e0e98a3ab8ff89950c7bd release27-maint +84394 5a3101f558edde343acc4439add0e409e5824b91 py3k +84395 41349817469768f7f2c28ab0cdff254d9fff3e38 release27-maint +84396 3d1c7262aa14dcc3878da6429175a5a1d189279f release31-maint +84397 944232521624bb78cb101f83fc9e32bb81a21599 py3k +84398 d850c37b66b6f6fd3075a56d029778d2e3c048d2 release31-maint +84399 061e27032e6193632fdcfa8f5d921de633b066ac release27-maint +84400 2dc17dcc973469f29ffaf3e32e03f9ebed152ec7 py3k +84401 de4207c9b9c128d82638e6c887077de90c517e7c py3k +84402 3045eb940597bc2c44b245e4e746ceb47d0751f2 release27-maint +84403 fa8b57f987c5f15b84594635e07d2aaa3f903452 py3k +84404 d66807c5038bfb66f4f333580c8a7f96be2041ef release31-maint +84405 6ba03322bc233bbdd2835ca6685dc87498d38f11 py3k +84406 063b554d3153f36f6ee47c6c41b5d0e0156ef16f py3k +84407 4d8a25a4d1f60805d824c1407db0062ead44ae6e py3k +84408 925e9113f0aaeff13b63dea7f8e82e402de2e46b py3k +84409 7a395bceac91af360d33b58339944a371c877528 py3k +84410 4547b1491169037c0df54282f6a45043e3c3f02a release31-maint +84411 fa4d78b9e3a2a6b84b8458ead72d57f74411f159 release27-maint +84412 619afc81c9731e15d5e1db2f8b5553bba2e34647 release27-maint +84413 fa9495316ca900d19176174d16bd00d627b7a1c4 release31-maint +84414 a3b6419296e584bf7bda529012c515849d797f71 py3k +84415 25edb6f438b926d99c91d7e93abb34a1d07c245f py3k +84416 538ae6224a5eb5efed98f7a58ff99f6d09cc1306 import_unicode +84417 d79216fc21ce75119cb97a1b53db166f440c6d71 import_unicode +84418 82eac3c2c697df0a10bb2f0f66a2b4e7b2587e85 import_unicode +84419 ed3d861c490ca2fc7043dd71942ec54fe5917627 import_unicode +84420 a39ba7acbe28704a28215949721be66dd6ff935a import_unicode +84421 e660e7bd799d70fca7a72fa34d8f4cd823e8216b import_unicode +84422 80641c7a6f4f9c24ffefecac07684719a0db4ab1 import_unicode +84423 3d7852b861284d9c6717a5eeb8509460f54da16e import_unicode +84424 b21fd94f4fb37b33818638fccf10312059f94735 import_unicode +84425 f0d0a070f128f2b70fafd8a3517faef4f4a5bc1f release31-maint +84426 93d6ad85235341dfc217cd8e4d7aa7e6751f4e32 release27-maint +84427 82211b1850d4da2bc3d702f16a4858295e40cdc3 release27-maint +84428 dcb2aa41cd780a003cd7d10ed2fb55b6b1259b2b release31-maint +84429 a0d8de04c3a82852bb877fa7024df6517b6b8be0 py3k +84430 1f04b0076fd815e394d7bc4bf7f0f6ab0ab862f8 py3k +84431 a7cadd7b34b526f02757d349aa369da53fa04553 py3k +84432 47b93cda91df5b2bd2c97d704e02a625f8bc6dfa py3k +84434 81a9ac73d6196329fb20ed08c014e1d94993ff55 py3k +84435 0260e04d2cfc829892b8218857e96acc49d2e61b py3k +84436 11fc798a8b432722e09f6ba0b478396a94cc1119 py3k +84437 bd7435a8708b637ef2fa2b8bfd735d54dbb09fd1 py3k +84438 55db60fcab5424270b5e15ef5f55b0bc66f61a0d py3k +84439 b8cfbbfe1839067e75e2e73e1081ab4557302c02 py3k +84440 d1c6b1ab5ba7854081724ea5d6ec98a1775b1111 py3k +84441 8b94f15cb650ba1aadeb259200f736cb1a0f6ba8 release31-maint +84442 4ad7efd909bce94bc2fa1eec323641344d4066a6 release27-maint +84443 16cefdfed6820d2c564762198e148dac29bdb4d2 release27-maint +84444 16d8a4e94dd087249622af9b3dea85f55c605ec8 py3k +84445 33cfaa32c8e80e75ec58be9db25b21862ac8cedf release27-maint +84446 8dbd316bebdf987251dca22fe2b60474c09e2cb0 release27-maint +84447 d56b3cafb1e655efb81c85688449edb2e609797d py3k +84448 b65d0371a73158b4b96e617f2808903fc5960e2e py3k +84449 b8ee80863d63fab807fd7c39f59a9cccbeba3c55 py3k +84450 7d1752d62050c9a3360fe84926eb09c3bcc2fc9f py3k +84451 633166d4fc12ad92a7d8c1c79e8f3ab7d1ef04d4 release31-maint +84452 83a6fff3f68334fd7cbda4c31781c10251136d5b py3k +84453 1270451f46049d7a9d9166ec3bc03bd0b194ae83 release31-maint +84454 35699f387da6e7d2d6dd676b18c64ec0a72924a7 release27-maint +84455 98f337a6957c13c908eda0b9ed4d73e952b58b86 py3k +84456 72640e71134418a70065a75634bc1de9847da86e py3k +84458 5e33b27c71a861721975934e8bfe3c075df16b3f py3k +84459 202747dae3cfaeb4d68b08181124e002633481ff py3k +84462 ba87caeecb914f7b183667448c970a683675d777 py3k +84463 b7cb27773e7291f5f06450b6a0356e2e2e6c05c3 release31-maint +84464 70019c5cf35f8ec7cb3fe292c37c8de365d87b9a py3k +84465 988718e9f93d15e2a937a6e1c86c0db42fd7fbc6 release31-maint +84467 06e5fd4959e8a1e40405f0d2f7b2cb507c094e07 py3k +84468 1f47206d577f07ace3d21cd157aea4d2008a6957 py3k +84469 f8ba9558adbf915ba2f92370142d28bc5b439b62 py3k +84470 3f7764c40c0bfb952a955d77c60a969e0f646be3 py3k +84471 dbc95762cf58635c65d1715d118eb7b4a726a502 py3k +84472 524b444a8095095a6d9cbac1be20e440d5553dbf py3k +84473 e92ada642dbdfdb717d33c8ab39dbe77a1239edb release31-maint +84474 895aeb4595c2f70e6ad50617b4fbb2ba1b195e50 release27-maint +84475 472dcf50ca71c87fc831b9997ffb75502fbff2c2 py3k +84476 53305baef588d857ce10b0622c218e3c34a55c7f py3k +84477 4052d3e2865bf8a1af47ab47917c00c991181cad py3k +84478 5e55e95d5c774b4fc2c1237513fd659d223d9f4f py3k +84479 68fd430859a49c3a837e1e8a11796a5511c8a26a py3k +84480 ea6d082a9cf80867cc1b320f1ff25ab101978df3 py3k +84481 40eb59e2f2d3506fde7da5a75f9e225908a26188 py3k +84482 e5ae03ef7fc13c8572e6344a38474861dafea911 py3k +84483 de8d3d791e6a7f41cb85c3e8096b0ab00762d6ae py3k +84484 03254fc83901163d3c493c4f40c7d0580dd76368 py3k +84485 e9cd15d539e1a3feda005cbb9ecb3fee2945e272 py3k +84486 b2b262c5daa863073a00c2b0ff449a091ee72016 py3k +84487 b70d33eefd960e4d0c2d6c348be2d567f259b92e py3k +84488 00c6957c77190b291bdbac3ba34fc0ae09b70e6f py3k +84489 90eb4c973f52aff51a5fa9f135223b643c896c76 py3k +84490 0af94ee99a484bdc2521b3d2ba7119741e587430 release31-maint +84491 9197bae619aa40b25982a544d42ce3474681d6a8 release27-maint +84492 ed45a26f6664da71986234abdd550d2621c726d7 py3k +84493 43319e292d64ba19a9280727af782dc36a05a30a release31-maint +84494 58b8101eac238e6053ad1825a196d3bf6480b49a release27-maint +84495 0f6ee59c2a763a82a75aede59513b419897a3ec8 py3k +84496 dabc115116bd748d211ed83ff0b9f2185079e55f py3k +84497 d2b8f11032124bbb2723cf72223569dc6ef50996 py3k +84498 f994e6fd06806214242926f683ed803e63e3c80f release31-maint +84499 8ece29c8bba28ed5a6e241c4d0e8be4d1472db08 release27-maint +84500 1b5ee6e845cdf01737d8956f9e77f36f5c925705 py3k +84501 72523121127327c022096d30e7b28a4a5a89495d py3k +84502 ce546a1b9fec1f60bedb3f3146d06f098805cd7d py3k +84503 a415cf94c7da7f358bc495ef8ae5d631166c8b27 release31-maint +84504 5997ae2eab371917874b73d26a3133c7c3a0b262 py3k +84505 c3ad883b940be4eeab752b0eabdef6df6009c005 py3k +84506 78ea4422df4c2c8d813bd37c5607705980bf6cbd py3k +84507 23cf54186f56532069cf83937749e8a8c86904a9 release31-maint +84508 98083f87645547262d981627c8b0641cedafc362 release27-maint +84509 9720836aa3cb893156d44c37769ad574c95087c7 py3k +84510 61c44793238d1714ecd0f69fdd51a908a24fc2f0 py3k +84511 b32cbfa967394e3392ec44b01f57a8385bbbbeb7 py3k +84512 c78eb016d1c51486da611f40795661f715d6775e py3k +84513 c4b34b2a5cc0eeeb5725aad7c003777dc3015d7d py3k +84514 0b0bd8102891bb93e6eabf60550b63c603785126 py3k +84515 7a34def35de74bd72fb65c1aece3c28b86e054ca py3k +84516 3c36849f06397b5a1f46204cd35454b911c6735f py3k +84517 a8d54e8023f21a62f3b36ba382f04dbbdac3579c py3k +84518 8bb162b01926f5af98bf499bea3e68851d8df896 py3k +84519 263b1077ab975b3dee09e66032ec60e9893c02c5 py3k +84520 0d86140755f0d495393e8f6610155ff9bdeea8ff py3k +84522 56dc2a5af20a1aedbeee4909cabd6f015d5479f3 py3k +84523 62098751da67b5eef9bb85b2157122a22dc0714d py3k +84524 16119129324d41faf3447a3693018f053252ed75 py3k +84525 7d9b4e018c62e923dce952ee68e00ef2eab919c0 py3k +84528 78c4dda7cdc63737fa2487e15251df1e95a2b8c0 py3k +84529 51048f6276ce84a3c99195941d050fba2c0efed3 py3k +84530 dc5892f73e036df8460cdec02cd7a1cba2c052ed py3k +84531 4f7b56b7872525617c56b7bfc8497f2e30d21a71 py3k +84532 a75e98937542bc53234329d06c42157e7ee0cc66 py3k +84533 b0ab832f8921281882e4e217fc0d3309a08fe533 py3k +84534 7814dc9f31a25c9377ec66c53e319c25a6641b42 py3k +84535 7e0d866ca8714824cb2a9f8e54eebc859838e768 py3k +84537 7a7b531bcb64d125dd3bb01f4b7031a7004598a5 py3k +84538 7887971dda483bcbff219f1eba59d30f0ee49f1d py3k +84539 2139160287a11a2d06eaab1622ea930e3111564f py3k +84540 56d4373cecb73c8b45126ba7b045b3c7b3f94b0b py3k +84541 1d0d33c0515ee8bc6ffe674d9a1c2ef69c91053b py3k +84542 5c99f8c90e6641654a33d377ef20ba33d878919a py3k +84543 c34892575bc0e4af1110051000f976a1cb4310ce release31-maint +84544 87aa62bd17156e9e288adc0218d73afafc33357b py3k +84545 8ef68ebec0e1e2e6b168fc127f678b5ca497d81f py3k +84546 69cb09f264240ca3c3031760df3a134d60f24550 py3k +84547 e558ac425a5185bf1b5608311624d0956ef12624 py3k +84548 071225af64a3d7056b0d5346a00de97ac128e365 py3k +84549 657f795199b9e7e349127effc2ffe297635e4fd3 py3k +84550 6324d23963a719045c534fcb113a41fd62f27e92 py3k +84551 d38937471f8984ac9605a9e57bafb22c71dc6172 py3k +84552 39aaa2a7fd4bf6ea2565e43cd1582b416b33dce6 py3k +84553 1d374e5ba2f132eb99b7d55c6dc411ce2ee7f609 py3k +84554 49441e88ccc14ad48ffc1c21a364d1161b76958e py3k +84555 d939c80c666bd3738b407799e276d5fac48f3111 py3k +84556 062ab51474874597ceb65e13a384473a9a1a7772 py3k +84557 047a9d7ca241dc1b8cff6bbac8d093fb8c48dcef release31-maint +84558 2c2a38e0cf3076551cac8577d16deaf4b1b9a333 release27-maint +84559 9bdc5901207b8cd80f73c75dc7cc5ec7bfba42a2 py3k +84560 4a1455d368ff5ffadc814f7e9d6abf55d73a12b3 release27-maint +84561 f6dfd6c563e1158a486c6f3a64edda52e7b8f8be py3k +84562 21405812f31270cffa460d7dc43554eab8ccaa5f py3k +84563 0c0f1d0eb77e980f70fb43ecd83d8670bd456855 py3k +84564 5413387959507119a11f699fb6489b3fd190ef39 py3k +84565 ef16b4b79d547f62989f20a8e4c4e4c9839966ea py3k +84566 6a8b5a618e7aef0c4f46ae24634000be6caeaca2 py3k +84567 b306105bf83dfa265efc025acf8a7e217ab93976 py3k +84568 1247fa7517721adca7e53541ab173710eca9acca py3k +84569 faaab5a657eb549b217ddb0d4b2b3b009c101a26 release31-maint +84569 1692c0b6031764156273f2093773ae783b95873e release27-maint +84569 cd918ac7bd554c896f593b96bb5954d2fa2ce484 py3k +84570 54b7964dd7a95e309021026657fbef0d37b3c286 py3k +84571 5678759a8009a707d856b5192659d3fac7bac60c py3k +84572 53cd8ecdce8ae671ab596237ff6d2af795559b27 release27-maint +84573 b32fda9f72ff95d14d1e0caceea0e1e646e49bfd py3k +84574 65642f085c55c945a9bb0530a490b2920d418ecc py3k +84575 11ba6397e3a4fe4747ae1156a07c186f8d12714c py3k +84576 c2f8418a0e1461391df612c5fd2388732347e2c6 py3k +84577 e07c4483ad3b6fb1515d77c890cc2d910e85d640 py3k +84578 9ced7f2f20b3f1d73ac73c19dc191058e6f2ddfd py3k +84579 94e1f236c88d7793f6bb17c4cc9e32f3057d342b py3k +84580 6ba20b9039ae699028f98240f91a3a48a0686178 py3k +84581 e83af141dffdaa8f55a27ec16c4402396fa858c3 py3k +84582 1a1e7254d965567fa4d1e6ac1de15d23f8b11908 py3k +84583 e4de2176f98e30f4c4e8b0ac7b5c4259a0bff8f0 release27-maint +84584 4ac8ae7e8022c44ecce71eb901e1df3069a1ae69 py3k +84585 adfa1e488734e2cce572b8c251548dde99c861a4 release27-maint +84586 c2199175ada8de81f2ce1faca5bda65fc89321c1 release31-maint +84587 6095ea9dcff40095020ced83526459ae8538b6c0 py3k +84588 1c22c1e453d4a1cce785384c8378df10d2e1a244 py3k +84589 84c24db13677c740210af2a46c83374e1b5a8a8f py3k +84590 3e5a89376df54404fcf51f09459b054c04d254ea release31-maint +84591 7432e508eb66a9e0c8adc4466e5a025a78f7cc87 release27-maint +84592 4a3ddb862a72cafdf5aa831b0e5e0ff18f8118d5 py3k +84593 5dd1e594d9195eb51290851a01a3a8d17901811d release31-maint +84594 4b68d47348a4dab785456229087a06624779c4a6 release27-maint +84595 770c3ec056856b4484bb3462782394e42d3c3a50 py3k +84596 89fe5179aec5f00c582f991939aa01491fdfd74e py3k +84597 91c7f44e4bea9dcafa183a42ebcd603b0328eecc py3k +84598 b2f7cf9c6776359f275160fad153d588e217317f py3k +84599 63ceef0453f406abd20f9c4f5f2219c7eb3842b5 py3k +84600 2400f55ea312530888885e0cf8cf89c02025fa62 release31-maint +84601 5d73b036573b787f5020156a6dd035fa568284ee py3k +84602 d6d4b8464b8cf6eb10284de15af9bbc0136c126c py3k +84603 af414b29d4678713c24f93dbb1aa97f98788351a release27-maint +84604 ef0a07d54dc17d30b849506216d442d21ffae1b6 py3k +84605 4c64e688f665efd625047114f876470473d90541 release31-maint +84606 d008f406dc98c9d1c3b7ddd4d651c69e514c6668 release27-maint +84607 c2d6f0cf926a2f3e3fa00a16612d990d3e1a5b5d py3k +84608 960de010081b763103a9574ad0a02db88d800599 py3k +84609 384aee6273e805b696f033a5efedd42d69c85f3d release31-maint +84610 03a6f7839d6d3532fee6bc38131166123a7f2eb8 release27-maint +84611 558f338e132081177ec6b0be35a9767c42927aac py3k +84612 e0623b6b43b637a32105c292f8d24afde9c8f69e release31-maint +84613 baf1a482b57d766f7c5e6579515654594a114b07 release27-maint +84614 8923e1493a344936ecb7a8c973073df354f8d512 py3k +84615 d27d4bd488dc839464ee0c52e024e6b8ea1e4554 release31-maint +84616 0fda82b1bfbbc538da6699be5cc42d17c7accf4e release27-maint +84617 d5331712b509d57f425e1a0d7404c91754c59e00 py3k +84619 79a14d3685401c3519d89185adcea6fb076cca5f py3k +84620 e3edd2f9bb6ac306c164b1c03578d4ae620e108f py3k +84621 e60ef17561dcec426b221ea2b22c092cc1f3e12b release27-maint +84622 a0b4b2dfd9d5a813cc4509c74021c2e3d1ec214f release27-maint +84623 851672498fe534db6e6557bf1195a16360bac80d py3k +84624 c47ff3a53a4a51aae006f3a7ab26f3ef8b1dba67 release31-maint +84625 575844427a95cfc1414ff0046da849ad67324c86 release27-maint +84626 aa66df772e237847a339e1a3ede46f915ba84ab4 release27-maint +84627 f8f66ebcd5b1eb71a3c82afb1eab6991eac5c70d release27-maint +84628 dc5986d0e5a44316c272c783ad1a3ab4caecdf30 release31-maint +84629 a4cfd5b5df96697531c9e8538f8feb6670b28425 py3k +84630 45b23f3f7f6b9eccd44ed2395986ee0fd4873ca2 release31-maint +84631 297f66cb37644a452708749a403662ad8d780e1b py3k +84632 b1865ca7b65c146ce0fc5a2be4e1a2bc3d92e357 py3k +84633 7c2eb5b6cc58c64bbe07116d8f985e2d69a7be31 py3k +84634 8627c3ec971126f4094791be8d53f0d651ca8753 py3k +84635 a2aeddc19b66b5c38e5219ac31b6e6e9e127b8d1 py3k +84636 b1cf3f7f304cf084df4e199e022cf7dd7a3a5098 py3k +84637 1322266f96115ad527c04ee6110a1fba5bf3c701 release27-maint +84638 441e94ce408716fad675dd02a15ac3fb489b41d0 py3k +84639 caf0b4b0569ead07227b614207f2cb8d2584981a py3k +84640 a58bf66725f86f0c0f884dbdacb2717d5eafa1fc py3k +84641 f8c896ad787f8d08b3725e64b71aeb00526b9fd8 py3k +84642 2c547210f8c9f92ae1fadb7270c77b16ec1c248a py3k +84643 462e0be3b6c46f6f7fe6b90ae91125712d378cb2 py3k +84644 c88550ca0fafb64ae599cad064053a8e6cf58f4d py3k +84645 63619b425ecaa3914ffa6ce9d39cb0ee71fcc219 py3k +84646 fea86c5e3385890a53e340a170d5a1f849f0d716 py3k +84647 71b264e1bb7164477911b18c5d5e6c658fdf0e8b py3k +84648 9659e8c40079b29f26e5bdd42b74e218dbde7a1b py3k +84649 ba54096b7a42890efab9b919cbd0b767660410b8 py3k +84650 38ca63518085f574e4013204cd52834178460867 py3k +84651 a51f467f5e1e80b00a5943b43567667b83317ddd release31-maint +84652 d13c2f90c169aa76a2f06744797ccd99a9448287 release27-maint +84653 027f81579b4a0ac01f562e5da67257c14aa82578 py3k +84654 d4927154b77b8f23610df19e1416cbab69936856 release31-maint +84655 fc76e8c617dc47c779d0c394978b28ab1e2532f2 py3k +84656 ae4707949cb246091fbb62e6190483d6225e6f2b release31-maint +84657 1b7ea43e5c7967b5536e4ce37cec09aa546b56b9 py3k +84658 6f14f02359e80ab38fcd2745dbc27ad16a40a155 py3k +84659 84217b2d8c0c06cd698fa60c526ee44287fd9f2e py3k +84660 bee683cae71fc79de90f8b686e466deaf74710a1 release31-maint +84661 f1207d9a9b07c136cc9122c31d8212a7c3d700c2 release27-maint +84662 2da5ecd224ffe7fe749cc7af3c0f4629b95e0e6e release27-maint +84663 5abacd3514851da274a1da7acee8a5b712b17cba release27-maint +84664 b304336e0e35b478d50d9c17abb6bde34bb5de55 py3k +84665 edd056c4a40d222560d69122ed71da85afbba55d release27-maint +84666 b8e5125e6fbd736b1439139ea4103ee6d4c47683 py3k +84667 457aa8da490a877feac052af04436d471004d627 release27-maint +84668 c20de96a435ac609504e22799e06ea956d6b1427 release31-maint +84669 9faa80d0111f1f32eeb473da9e5d51eb229d21fd py3k +84670 b314adc9bcdeeadd01ea330b0ac37bf297f88c53 release31-maint +84671 2eea89d093e2142108aab0740f30750ad45880ee py3k +84672 c6669f4bf8c54edc553ccbcc317c68d0ae38a90a py3k +84673 d0f9afcb0619eeb08e275d54bf8053828f66c031 py3k +84674 378e157ac025fc99aeea94b6332489d5ab5ed997 py3k +84675 b43d63bf0f78f104543a68f29891dda3f7b84e38 release31-maint +84676 21ae4046e47101d92c63adbf8c47ea65b19cc198 release27-maint +84677 7e2ceb5d28e33932fe21556708850e617f457f17 py3k +84678 390acf5134e94aa4c22bd6c38379d215fe57e8e8 release31-maint +84679 5c4be63cab4a22e19048f5f8c3ea2184c2e30918 py3k +84680 9339738f8504f8837209fd2d5697b23764c452e2 py3k +84681 16a42d5f2209c3ca139eb84e27a0c304f630ae67 py3k +84682 9f0d69caed3b2de16858fc08fc5877d76d8270d8 release31-maint +84683 e27030e0cceda8e8879987b89397a65b26460638 release27-maint +84684 caecb6ebc83c2a56a0fc8ac0bd56947b230d009d py3k +84685 25cc226dc9bd4ab0e24e48246ad739ff02c48221 py3k +84686 252895d491570d5a27452809b582717be409b24d py3k +84687 999d7d212f1792e04cdf3a8fc69b11825636513f py3k +84688 583079de37e1390a8238d314516d2e6b530e5465 py3k +84689 9265752a1c83d9a519d1b120893847ecf5e6c41c py3k +84690 e827b9b8a7b4a5eea2ccbacbe0da0daaa501d57a py3k +84691 1167e393aa4d6a4ee0aa38c763c8a69990310d24 release27-maint +84692 6accc2c65cb847801eb7dc24710ed39d0a872ca8 py3k +84693 56844b716cd7560ac1002fd70c1612e634c76b4d py3k +84694 586a411cac7c70f8886c8c750ccf9bb274120c8b py3k +84695 470a5360570cc01e7e59ee42d2b3d958a8600a6f py3k +84696 a608fe1e86f00822447a0db54f531398204306bd py3k +84697 f31e0c7c02e333d7920e233a6866f8299f4a00b3 py3k +84698 e080f11fca19b0dd20fa9d0784be1dfb4c6b14b2 py3k +84699 1764796e9eca2d355e4df7c0ccd32a6d58492195 py3k +84700 fe47ea8972ebe6ba3f88b6256ac91d79a5d573b0 py3k +84701 887ef39976d39dd85afd841121d225edb2e2638a py3k +84702 efc99a207bbe7d2d628eb666236b1cbfaa65937d release31-maint +84703 20a2153b0dda895d4b0a4c1bada0dc54a653d5fb py3k +84704 1cfad55de5bd660a2cc7296ed61edf3cd56f12e8 py3k +84705 5c9c04c29b2c0bfa8ceae7bd373f23b424dc6e14 py3k +84706 ec92a9fd77806f0a7913be709386bdd44f4279be py3k +84707 f72fd2cda3442f595042c44a407f0ef7276b9671 py3k +84708 cb91307f7072ebac94e6abe199186700ae83fae3 release27-maint +84709 e0a7b696855f40c94932e987ca54516c68bc722b release27-maint +84709 521eb7fee67a781cab5ed1f538dcac97ba5794d2 py3k +84710 1be874ce4eaef304424ce8ecf38a9d976b2fdadb py3k +84711 7cf3bf0150a4d5c6024cc7046d377d0d5e2a8e56 py3k +84712 00425209c46ee2557a76afb8ebcd0d6c3649d6d0 release31-maint +84713 6eb4afbe77e85480c371084f1fb287a797d48eea release27-maint +84714 d905c94f9ae1d1aedc627341615f1eff9a9074a4 py3k +84715 8f81ed8acbb02444ea741a665e648a43fca8b448 release31-maint +84716 601a0defd15bb2b992af1410f5cc7a31dffd0003 release31-maint +84717 7c8f3459d9af8a76c3216476beeb8630506946f7 py3k +84718 17a8f704f07d8942b57b52ad255260156fe40cb7 release31-maint +84719 fd6737aa88dc46dfa3ce79a4364a7351e67cb742 py3k +84720 533858a2989a2fb8d7d68a01a03838ee035a1232 release31-maint +84721 c4e7233f548dbde8feb6673ea439599c393e2bff release27-maint +84722 b007001fca710c5c060ee133aae8cce4cb89043f release27-maint +84723 a351086105c53ce1433f66d47bd903e5f72646e0 release31-maint +84724 5f3a64564c51a12861b0ae1f1dfeb41488f36193 py3k +84725 56714e9c63efb84c9c572dee94560ba1382aed53 release27-maint +84726 c35b42a8da3fb86d872148204f5da44e527e9623 py3k +84727 f3b1eea11ce195bb37c1946e1d9d6fa22106eabb py3k +84728 f4320e124b1fb1fb705e8b13e1c437f0d86cc428 py3k +84729 b0c9a82e0ec5a337ea64f029b2ad3721b381f0bd release31-maint +84730 852bb052156a8109c81b510e02fb299470ce20c3 py3k +84731 ed43ebda35f2e5df39864dc395b7cf38a2f7a2cf py3k +84732 63939afaf984b4a790cfed4c507ec3807a04ecb7 release31-maint +84733 ef6f03971fb34870cd19c02579c9cd04919e2085 release31-maint +84735 3808e379fc3ce93a778694fa93b28b1dbbc445fa py3k +84736 3774f4def754f1f8a6b5a9ad931029785f15c72f release31-maint +84737 fb90f2ff1764b9ce826996eea8d6a9d9ea7162a4 py3k +84738 67ed6d4f70b1a66fb926faaad6a7bb25f8b0b063 release31-maint +84739 7ac0e607c4d662a3bd647c52773ec37c0f348418 release27-maint +84740 d2e58198933be48bf1b9fd1bae8183116db25758 release27-maint +84741 8869b1b854348c4096fceadce3877e7394489abf py3k +84742 63bda789d73b63f7aa83e736e23408f791a6f55c release31-maint +84743 fa9510c796481a0d94658987d34819734cf54cb1 py3k +84744 b7e244f34cc80d03b751a672551a841c2d82fe87 py3k +84745 76b8dada06cbe6a932500b864966703d2be08406 release31-maint +84746 4b9c8526ea4cb70ce480808f2a63bc53460ace96 release27-maint +84747 6d282b58d90aa2fd36a8130986558d67299d4e7c py3k +84748 2bb4dd2ad5b50707a8a9e1421e322e462eb8f58c py3k +84749 7ab59233e83f69b5b371ff71188916209ce95ba2 py3k +84750 921029507ad7d44c4759c9060bf9f3e3d5c03fbc py3k +84751 c1b709076bf63a1d1b752229a679515a7b85947c py3k +84752 9cdba6864eb60ca2a5934491d195c9598d971659 py3k +84753 a3ee877fed89b5ed37ccb98d30c85d1eed110f51 py3k +84754 b186afa370e6d1055e51cfbdc2146e253b6467d1 py3k +84755 cfa119c3e43cfe872dd553d50538ba5205295540 py3k +84756 ee967f1c731b7d036ff04315d0502cbf88615024 py3k +84757 0de81647553ba04ab7141736e4af317520c91e48 release27-maint +84758 9064fc57d3fa907d1101ff6131bba5049aadec6b release31-maint +84759 1e89b5ee02f85ef9b2708ca446a9a16418566606 py3k +84760 584b1eda11414763b0afad0b5ab38295c366c930 py3k +84761 314d416f4d23e28c656dd57701e994326a6b550b release31-maint +84762 b1e766c79a367749c9be3eafb721ced552862db9 py3k +84763 add664924ae9911c04d7f1fc39548c7c3e1af646 py3k +84764 b0d26e8d8a330aa5642037bb189a574de2c5caba release27-maint +84765 2f8370538ffbb17c3acad9e64cdbd10eaea83cc5 py3k +84766 28e6a41c5ba0b042dc8fdb909863da56872bba63 release27-maint +84767 82db80b60b87bbabf3adf587ae4658dd762131b6 release31-maint +84768 d0fc35787467469432c41ed72b827cd777c9659e release27-maint +84769 1e922d71ce4bf6a18973f5337f86c34ef758af1d release31-maint +84770 bba8fa88d19a21b93829f5edc3a196165867c874 release27-maint +84771 a59ae93891319365806ac09c5c4718bc18e01b23 release27-maint +84772 274a0bf46871ef3a591f2b93a313efc82069dd3b release27-maint +84773 44199aa8932b7d14d03a0e0318a9b805a90dbbd2 release27-maint +84774 557e2537c9ae23538d9ddb4ea1eb49bdc459dfe8 py3k +84776 330d79fcb3d3d58628f8ceab3558153c9654a4ad py3k +84777 0f3b8f928ec13d8f91ec490e5b524fe90ba7faac release27-maint +84778 3d22ee65e4075a9b36b371c2a43815331e45b468 release27-maint +84779 2ad8d7cbceabb01720591282f135775b45e5bbe8 release27-maint +84780 ea121f8731a78bb555ca4250baed4efd0c8cf3f3 py3k +84781 6ff0ef1fcb3cd98e51b335874a8682aae8eaa4df py3k +84782 205ff2b02c77120ee20b177dc3b768be74647f68 release27-maint +84783 7dbfc7ef39f2b636d30a876451313d977c18d839 release31-maint +84784 557355e46ba619de53762f7530ebd4ed7f9ea5cf py3k +84785 77c89c89f60e112289fe79c43d97bee257bbb9e5 py3k +84786 2d084ad468dbd00c9890ca814960277df7e2e339 py3k +84787 8234d26b13c19ef569d0481818bc0fd0953fc944 release27-maint +84788 91a00b6b128bed0d04ec83e795fca2e0b36fa4d1 py3k +84789 ea8483f9e55aa66093320c2f1422a8654cc01987 py3k +84790 9f55faaa3193acc67242c322e9c633e4787c76c6 py3k +84791 e2dec9c0d13cfcabc107ac84bc43d8fcc92b1135 py3k +84792 cfaf0f7ee0c2c92ec3107bd2bdd626cb5e147f18 py3k +84793 a60deecac2424efd0a3ed04bc3a503c09c989d22 release27-maint +84794 3a2963b6f443e8501908fc71cf00803ba4581989 py3k +84795 fbe5d08a98661399bf6571e92e8bc9e677a7ea30 py3k +84796 69ed5ecb5026addcb522373e7af5afb6fc6a6f1e py3k +84797 44e43bed674a54e59138418811e241480a9ef613 py3k +84798 e5f0ff7d7a06ee90b3c6db993a9da5ae1ca82c8d py3k +84799 4a4fbe0227aa49525fbaa2b5e3d5d066eaaf37b3 py3k +84800 2d8e408593512ecc0d5d01850a8613e287d742d8 release27-maint +84801 20c45cdad9cf1e8d41e6c5c92076b8ac5121af8c release31-maint +84802 b274a90a8e2bdfe09a0a00543c8c39d030eb136b release27-maint +84803 a42db8f54ba1706d318ad76e5bbfe73ca42e811f py3k +84804 123f3514b45b527bf2621075571e47352dbb157d release31-maint +84805 db9e62c265ff50e593cb2e467cdf657dc2bede1b release27-maint +84806 7f99ac53014a54281f99bed1c92de2f47215481a release27-maint +84807 0e96f9fa84a24a69f5a1caa4c8134effcafe2e93 py3k +84808 fe5f9cc4076ebb796be7dafc9c5be408a6e5052a release27-maint +84809 80d1c7734df257e47a9c61bb84aa1889447d9a38 release31-maint +84810 0e29ae51d9bc6ae03a97f246134facf07cc18569 py3k +84811 905ee9e3da6de071a81d575bca96b8a549e57c8e release31-maint +84812 eded0caee621331002e9ae58bdbfddd02c9c7d79 release27-maint +84813 534853ba8cd36ab5f2ceec8ac7e865ed5a91faf8 py3k +84814 2bf2a7a4e17d6452be740566696c2067cb3094f7 py3k +84815 d7ae1b9f10ab7b68033d8876e8d626b51163de43 release31-maint +84816 2b9dea2a2fffd6291316c4ad8a19dd98648ad70b release27-maint +84817 071bd8f3535ac0dfceb404a26380d4979bf129d8 release31-maint +84818 3977dc349ae79430a07b5e9604d3cf5b1e37664b py3k +84819 9151d5faae3d6a8724a5b75bd72165bb6539efed py3k +84820 b81e8e3fa5bbe676dbda084fcec9baa0e0483e9d py3k +84821 f643d53c51bd8b172ceb1988ebd8a507740bb19a py3k +84822 e633e3a6b25568fa0edb39541279ed39d93b0c0f py3k +84823 b6951b05217b21aac68770b3ce3f62f76f453b3a py3k +84824 35848a3b7d8a5afbd2ad8250bf864ccc34d552ca release31-maint +84825 7ef5c6be723297ff7726dc43d20742aca4a81386 py3k +84826 9affb4d6e97e2d2eaee3e75e0f42564d145f0a37 py3k +84827 c779de64405a903d418afc317ca6670e3f179c6d py3k +84828 d88fdf5c5b37642e14b9fd8fc380ce5d38e40e2e py3k +84829 bed950cbd0c01e530db691c0c6bf2bf780583a40 py3k +84830 5b0187c0d0024812cdc20f3cde847776a9a1b5b8 py3k +84831 bce9793fb5450ed91b55aa41ddff79cc5fea9bf2 release27-maint +84832 a97d12e5465f7952974d4d0ec809bb0e05281be3 release31-maint +84833 61dfc79657d737d2c072cecc0fae02d1d20ae3fc release31-maint +84834 c0d3167773a973238ba68d799a1a2060416320ac release27-maint +84835 beb9d176503e462a453ba7f97ef972ce639e1ab3 release27-maint +84836 ad63f966923c41034163aabf0afc80c72665f8d8 py3k +84837 3edc26380e496ab0f3b86abb27cb5f65048eaada release31-maint +84838 1debff42ea46d113ec00e02e1ca40064291cba72 py3k +84839 f2ec0115f8b203e51d47835c0c93ae3a30e7756a py3k +84840 a16b67d4f30316d10cbc4131f6c3fead284bf85a py3k +84841 b5774b27b3dbd9aed2f881487025efca348dc690 py3k +84843 985072cd31d03b82fbc8b54597a71e8e59160f21 py3k +84844 d657e8a60126649cf9536c362c4dfec873735f34 py3k +84846 d1771b4cd0cba832ab7a1447366885388674e5c7 release27-maint +84847 1be950dcbb1a5f81aecf2bb4fea4ca583a1dd72c py3k +84848 2324167ec01d3aa20f63531e5c4396899dfd5c20 release31-maint +84849 3f0004736d2839ca446440c4b0e4c27e77ca8f7c py3k +84851 fd5c4cfed7cd0c3adb0b37a5b63dbc3409bc6721 py3k +84852 a177ddde45d1b74a16779ebee6df4ee22160ffd4 py3k +84856 5761f8e352ec21fdd6e763d8d02c06ff55830d87 py3k +84857 689a813f4afc0dd9d966bd0873c6ffd4e50a05fa py3k +84858 a8869af5d5d0ca675269ef51ef4be19f1d6dd926 release27-maint +84858 82589a889e070ff77711c7fce67a71e024ee0ea0 py3k +84859 c438f96346e90f1abedf7b3141abd971eda58963 release27-maint +84859 e3c3c30f14098088a4d1f98be5aa8b7fd39cd8a1 py3k +84860 fa47af73a691e006bf7105d7e6541135478261c1 release27-maint +84861 ca3542adee0daebc2cad6a647f69bcde1886d042 py3k +84862 e0641dbdc8f62a7e9ab63755ea84736b6c17b3f9 release27-maint +84863 e39ad5dc11cfe4d740063b197da93ac72c28a818 release31-maint +84864 dc422daa5dadd0bfc542878442da51ddce7745c0 py3k +84865 a431c48ad42b1a19831aa5c1d45a4c8996e4a817 py3k +84866 f77cb8d76e99157a40203a44deb6f51b27dadd62 py3k +84867 cd2ef75287365b6e9a554ce2ccd6cd9251748fdc py3k +84868 938d84257d110260dcc1266656ca81d7c0c6b49c release27-maint +84869 c87ed6f58b8309881f114200e87e1b5cd25f2970 py3k +84870 df39b0bc410673b581682c6ec1e493b176eb2799 py3k +84871 006490f0e71fd66ec51d3a4d44c21f316dbfabb8 py3k +84872 01dbb827717889625faa5078f6812e77e9c66b3e release31-maint +84873 1518171775149c7cadb1c5332ac345db4184124a release27-maint +84874 d060474e0e24585641da48fffaec99f6ba1dd37f py3k +84875 2f280727a307f6ed96c70cf485ee561762c16897 py3k +84876 2867ae902fa3147364643fbab80f5a4b2cb8b501 py3k +84877 d390400d71f7b96ec231a4c1f82682876f6a362c release27-maint +84878 b49aee38779bc0a9db267158cdc334ebf991e60d py3k +84879 4aa2a20ac335bf05a5ad5f5e29e8cd3080deccd5 release27-maint +84880 29ead54c05ad877ac1af85a10d84f8ae9e28e13a release31-maint +84881 2dc1d187ee04ae3ed3d1daf7749d1619f8c40093 release27-maint +84882 449d104e1836273aeae5d8b760ce13ed685e42b4 py3k +84883 4981cf0a9ca4cf9e177e93e7a273c6c82a056e04 py3k +84884 77425f2d7d7659757649083381589f51131a8a6e release31-maint +84885 04b45d451059f50f1efaf303f6d987d73528b69f release27-maint +84886 9291aa3d8d357237752b4b49e3bcbe4f2ef26c1b release31-maint +84887 f3dcb314c3e302e55422f86c46ec76a3ae606a17 py3k +84888 71b95942c3a49b88922f91888630b6cbb8cc36ed py3k +84889 9dc84522448612981289a257ebccc3a196414a56 py3k +84890 b69842b50e2638828f1b34b346c85ca2288b3b79 release27-maint +84891 65f5e2c3f2dd191980ffa6d3ffc99dede574502b release31-maint +84892 92588986b78bd28adb3d02c9485fe1f99a470890 py3k +84893 e5294ca27abe2d123040a3e3d396c7dce198b3b4 py3k +84894 f7a76fc97b220df3259c4d2e13306a9eb13224d6 release31-maint +84895 451139322a131195d70031bb314131b907dcb784 py3k +84896 cd5b9a70a685bb73398339bde18cc08369ea96d8 release27-maint +84897 501ae94e5bf615840dbcf02ecfd7bec6523b4227 py3k +84898 44c89c5993c83a18977d36c8de0a212459b16487 release27-maint +84899 0ace9eef120be1f1f1a49542c0a2377d2d8d7686 py3k +84900 a48e031d8178fb80ca0a9ec336fcaad15a79ab02 release31-maint +84901 785a96fcd340df2d594fa517ac41e0af4eea1ee5 release27-maint +84902 b29e8556015cb7310a185870e6fc9ae221142417 py3k +84903 a05433060941186e1994aadb06eaa695ed985ba0 py3k +84904 534af91f38454062fe26dc71782fdeed63f3dcf0 release27-maint +84905 933d4b5b7f3d68b78455b919a5bbd3fc74f9605d py3k +84906 76051eb07422c788f35d32c98a220074ead5d7dc py3k +84907 8dfbf66f369cf5a2e7aa562e7d8488e179e7934b py3k +84908 dd3080b80dda9194557dcf234a79b941ba7bad30 py3k +84909 4374b1eaead1776f5b92d68bd2864721d8864b9e py3k +84910 17ec9ed50133b8baedda60e28323c6764da14623 py3k +84911 036585382de19bb97f1510c02a7116f5f56a40a7 py3k +84912 4f4bdddac25b23b65324b6db37d8947c9677beb4 py3k +84913 76fd68bba1a885a45f07471dabbfafd62df82e26 py3k +84914 8e428b8e7d81586e23b5f92f9ca9b18daf14f449 py3k +84915 6c77757d088115a01cdd2931f002d70687a2e302 py3k +84916 b557253598b1f9cd3802033b01f9d7be3e704188 py3k +84917 ec028067049da67c751d279858db71d7bf6d40d6 py3k +84918 2cddf878e395553b6fae97997238a1e9545d4e62 py3k +84919 cf88171499b5a7850beee7aebda42feedc156453 py3k +84920 3a4afaa96ac3323c0dc457313191fab04e577e6b py3k +84921 486c2d6a75465d01f616ba16ac8a50d6ac7b29d5 py3k +84922 a88dff27be1f7b2eb09d09804bf4d9fa149b2497 py3k +84923 f35bd08c12aef2c46b4db79a8cfa7fde9bafc399 release31-maint +84924 6bd276f5d1bce799675f8c811f1b827983e2b0d3 release27-maint +84925 96db640674cb7aaa53ef0941d96277f54929be20 py3k +84926 3cace1289de488bacf620ba14ed44c875f5194b6 py3k +84927 38b0d5d0dd30e50a7303e4f43d65efdb1cefaa45 py3k +84928 0d0f1db634313f36313e14b99a3b52cb68f8d85b py3k +84929 00e4ce31d4040d5c34b657dd179cea59656823d1 py3k +84930 a6af9c7c8e67e8e46c797809b813c76850ac88e8 py3k +84931 861c35cef7aa9e5226d4cc2eb1e9eb529a1c9848 py3k +84932 2c73e6ce6a7568468c73836a1c7263cebb166822 release27-maint +84933 bf011e30fc07627b528ab8cf15b854d4978a6dd1 py3k +84934 47b10e4a51d7e8d4c0dff764e48ec2fa7673bbe7 release31-maint +84935 364d6ef7ccae4cc24177ee458d7d3c999c3d47ca release27-maint +84936 e90427984442cf5b989bdb304c0a5e33fad15e57 py3k +84937 603679d8532930892a2d887f056f088947ee6899 py3k +84938 7d45f539db97c811f2c575f0e6a491137e40ba51 py3k +84939 b1ec48b7ffdffeb52afdf2b275e8652ee76133a2 release27-maint +84940 d8bb98e42c2ffca38e8fa7c68ff3e15adcdfc549 release31-maint +84941 f8ce9f359f3a64f91dd25c6ef11a3a83960fe5e6 py3k +84942 a0e0cb893e31e320caec781ab5ec2d786ced3c1d release27-maint +84943 3359d2e0a9671709bfd60ce3d026d77b45c5bbea release31-maint +84944 e59a188258b348838ff7d6244c08f3d0b2593e34 py3k +84945 d6d655fddf22acecdc69c15c3eb37c2f2557b6d8 py3k +84946 4889a816eec169d8aa95dcd2eab7633f56380b16 py3k +84947 b1f5134b0049bd68ead995d585c2ca31f3fc95ae release31-maint +84948 4ec121156ee9ef49270ff41d5c83c2bc984b8f0e release27-maint +84949 a4ee8a5c684372445d860ebaf30503368d54bf62 py3k +84950 9ad69fc4aef75d1c301f85e407cad98d864d90df py3k +84951 8ceeb59f4550af51da474508f68e9a1fba723162 release27-maint +84952 08bd1a08c62f75e4d6393aedf5353180427cea5c py3k +84953 2b9327777832a244af21ff72aae85d0c94030db8 py3k +84954 9e2216420cd795b29b378f866a30a896aaef2a5c release31-maint +84955 c53770b1546dad4b929959ce353c732292c961e3 release27-maint +84956 c9edbce3fcad8c6cd2d543102a1be70bcfa155c4 py3k +84957 e1c8eb390507028a91020d6b6976243b59a1022c py3k +84958 05a5f71c1a78f7dcd8d994603210034f62ea2b2c release27-maint +84959 8208a43191e29c924700a9088b8cce1c980129d6 release31-maint +84960 8ac70b12ca61fae21487406743e1a32b8f47f766 release31-maint +84961 b3d0deaf50e5232c6d9bec75b406d5bedb2c39cc py3k +84962 d5fe040f4a48a2780fe3312d93818d5880083582 py3k +84963 6b9f88ddb4cee9149a1cfd5f7903f7b413893f78 py3k +84964 f2ceeaaac9380b5423e2c53d3d9651a2af05af19 release27-maint +84965 ebcd811558d67d60467a22500caf12bae24dbf6d py3k +84966 3474cee9c758a86e9427e31e1f5737cffd5bfd21 py3k +84967 d5001d6c77368efbdaef33629b192256321c5072 py3k +84968 f703a643e6ce07b8c1958fe0a74d81f62031f15f py3k +84969 225a6d1cf811f70a74832118dbe4165a94983e02 py3k +84970 9ea504d45eeaa7e1bf428f8a6429dbbcaf0579c7 py3k +84971 96e7ee232abf11e2dcb83ac17a8e9664e9d8eb33 py3k +84972 dfd5584eb1acb599bd42bee4a8224cbf9e94c615 release27-maint +84973 a676ac06eacc087d681cd3706771cae8e208085d py3k +84974 ff92cc356c3583134a2c535df4e8e612d6e8a75f py3k +84975 ee152852c94df946742f690fe62faad9aebb4869 release27-maint +84976 f4a1c796bc987453e568f62c5ba4b5ec2cc6a7cc py3k +84977 633c6b11a5a9e7851af971366fac9312ac24f59d py3k +84978 d560eece0857f06c3d0d53d8be686cd50fc19e8d py3k +84979 e31492f440c9e8e51a9be2b5c3e1b07f3404c863 py3k +84980 a0ecb8e2d769e7a3c26affeca55c08ee903edc5d py3k +84981 51d8fffcd260e80aa25d531180062f37fcc5842d release31-maint +84982 20f345fc036114b94f5f99fae47645cf9e829a42 release27-maint +84983 d088faa35456eafb7e62545322db419e4f8baf93 py3k +84984 2e5bde383a5c74aa18f2e44caf601a3dfd2a92a6 py3k +84985 0c77d00f4f824e288b4b8148bfe17ffdc92b36ab py3k +84986 ab3d92fea9fda5e5bf9de7e752e092af21483151 release31-maint +84987 1debccfbcbc9a8eed08a39506c0c067770bde818 py3k +84988 28d41d34a2e6155905548d53b3662a33d9c2b393 py3k +84989 7aca458461ab271e703ff8be154c3869182048cb py3k +84990 7952cfabbb8875f9874e7627df4abea8aee97e81 release31-maint +84991 87afe47429c56d17f4954550be7285cd6efc2a44 py3k +84992 aa56ebb8fe94734a32f109cc0ea850d9e51c7867 py3k +84993 260dc7de1e87be9b5ab7fe3aca2f1fc8204c9967 py3k +84994 007228d0e56984631e8800e76b819e1e8b6827f0 py3k +84995 235044b39a9211a56bb4d4c96cdee798e19beb30 release31-maint +84996 12e0dffef7bd24825bb3bd7935e344766e07e379 release27-maint +84997 f6a0eb730a9b784bc0b47f3ca5dc8dd023d795f6 py3k +84998 8cc4be648ab4906ddb4d6c1b65a616810d71be4a release27-maint +84999 260dc36c2c861ef7bcca89ed4e8285780cbb1c20 py3k +85000 b9453d504f8ca4aefa285df4d13b24fcf094bf2d py3k +85001 b278d93f958eec184383010012eefe384f0e8204 release31-maint +85002 e5b70793566edda5ee4aece534710285602e677c release27-maint +85003 c9e299249323825f63bbee8a088725fc2221b6b6 py3k +85004 9774c11e03f6b0b8d8532b1205717c02d71e4359 release27-maint +85005 4cd0edf0b3561970dfba5bd0beb92b343f6fd935 py3k +85006 c9b08c58f0630b91c9b3f882a583896c2e2a33c2 release27-maint +85008 0b48c6f8671fd4e30c198bedcd55624dbc6a8fd0 py3k +85009 c52f75c3fba2d86498a05396f32a7911c1b0f8b7 release27-maint +85010 6511165e4830d8ff6846d47995db7f1b2e34c126 release27-maint +85011 bc7d8808f195c9d25147c7af0340f83e91002b73 py3k +85012 265f7017772b87112f06561e7b51b367befd219e release27-maint +85012 43fd9e2b5e7d1fc3cbc4cfcc711016d7f172cd09 py3k +85013 63ba7a4e7c102231af6731a54f680d287519e5e2 release27-maint +85013 409d6c76c307e430cf224fc8e6e617478176a10d py3k +85015 403af35f49487b94e68110cc773e3539d1507c27 py3k +85016 6c68dbf932d0684f0e3e874ed75a1cc35468adc5 release27-maint +85017 ac8aa225c4175afdaca3287a6e6dd303dcdee697 release27-maint +85017 28e8ffb2accb69845b11dbe9e90724539d188a5a py3k +85018 26dfe44c9faa459f0d0e7e032d9118e16ec28ced py3k +85020 05c58b3d6d3941aad31c3ae4614d75b9fab55192 release27-maint +85022 7ac30d58b1d216d83a543064a4a4f20b7a3b376d release27-maint +85025 2fc73d7c7622d206ee9f319d41f1fa0a9836d9e3 py3k +85026 8881260d1d14fbd9d1ad1d8f4fd86e3eb03eed4e release31-maint +85027 3f0ffc8199eafcf0311e9c520fcf9cb328cccac9 release27-maint +85028 fd5e51035335b38b9d0db43311ea88cf9643818a py3k +85029 e938ecc5500548ba94565da782208f8fe7711c17 release27-maint +85029 52efb1044de5934f9731954599ae602f880fbbea py3k +85031 ff5d3e5c4bb595880be378f189ddd690339888e0 py3k +85032 aed04b3f0fe3822ff5374aca21aaee88fd602e2c py3k +85033 6b49ea11b157790b16f626dd72baaa933b07f7c2 py3k +85034 5a7bb85a5d99c35637bc4438365ace65e230f8ac release31-maint +85035 1dc2b50d344f85e63c9b4c150d4055c900baaac1 release27-maint +85036 7bda0a632b0d455c5494e12e7bdeb2497535a801 release27-maint +85037 4d3fbcf6f96a0e8238887d564e57d8e9246f8b16 release31-maint +85038 ce4a22fc9cc441c953203ae4e96ab5458b128001 py3k-ttk-debug-on-xp5 +85043 3d490c3a019e210b634efbb7a1104d88a996ee13 py3k +85044 f76ef1f462663706404cca7c12cc6f94847b2b04 py3k-ttk-debug-on-xp5 +85045 7dfa9900f8c7885cfccc9c0aa9a1496d4df444aa release31-maint +85046 e12ba42f861fc7eb050cc84230e41d738835de7b release31-maint +85047 e382ff741790262e9cb4d9f375c16a0a37aef7a5 py3k +85048 c8dc4b5e54fbd4e14cf56552c7b969dbd78e4a44 py3k +85049 3f4273d30b3852511a36021d56681c3f36b9d766 release27-maint-ttk-debug-on-xp5 +85050 098123a7a03cb7b1a5c12b7a4ab92a7d9e46b6b1 release27-maint +85051 4c48eba12123ee56791cb8f074a4b30708543fbb release27-maint +85052 694cb5d86525150cc1ef3464e6d1c08946ed5ef5 release27-maint-ttk-debug-on-xp5 +85053 a4b3998a7ad42da61003fe57e09475e68a2faeec py3k-ttk-debug-on-xp5 +85054 fafe842e3200cb8ad574928b1f8350a713ef137f py3k +85055 4e5d201ff29401b05897fe599b53ddc3019de17c py3k +85056 353f0c2baf77d2dd5f909455cec65aea12739fbc py3k-ttk-debug-on-xp5 +85057 cea37fb03dc0f49fdfccc781763997c54559b330 release27-maint-ttk-debug-on-xp5 +85058 45f56e30afa575f322d13753304f44f54b4dd7bf release27-maint-ttk-debug-on-xp5 +85059 9523dbe0b6499e9a10fb6bc31e6d5f8a8868cdf3 py3k +85060 e062884765d65adf8491ef28d73453e997594bcb release27-maint +85061 05ce585f64c488a89a6014dd637e55b7b751de02 release31-maint +85062 e332cd95f414aa089cdebd8b4bc5cd44dbbecaee py3k +85063 9da13e560a3a96dd54b3c1eaeff2bbee519af256 release31-maint +85064 afb2f144b98c23655a8ed8ba161c488938fabe67 release27-maint +85065 43b79d80f5aeceaba307cad9895747a2329b4b18 release27-maint-ttk-debug-on-xp5 +85066 7d9baf649f2d8d7dd2417f9ca96b548c75d45371 py3k +85067 64e4117f788754aff0423dc090a0b8e08a10cfee release31-maint +85068 d1bee7cf6c2f2ae5de55a9a91d68e5fe16925096 release27-maint +85069 fad78e86d16ecd35bbb59bb7cfdb68b2e6a14672 release27-maint +85070 dd94ac2a42b17efacd511d754c243f8d4f99b52a py3k +85071 7e275a4cf9410d4290dbbc4cd4784e19a1b68fcd py3k +85072 a08e42789e6d51d2246352dad48fbae7881ec689 py3k +85073 472a6eec196abfc14dd504389e3cb320e5fd6a24 py3k +85074 0f8c2eb89f46d5c0fab73b872e92fcd1aa140f98 py3k +85075 dc3833984734b2493edf21c218fb6b6326a1b5d8 py3k +85076 6c8adc200ee02f1d3a024f431b9efdb3b82677d5 release31-maint +85077 6c1f10e074556407ca943765c3b339e4c8b4fc6d py3k +85078 fb7ee0f2c6f4a047a701a1bf505e03d0fb3f3416 py3k +85079 c18423f4b9688c89a09fe640ae959cf50db85d3a release31-maint +85080 d12d550ebf3455ab8901ff4a519fef019c975b6a py3k +85081 5522c6b2af872ce10b440189550fd9521b02dddc release31-maint +85082 4cf77d193f57f5e076b1a19955eabbdee7ebbd34 py3k +85083 dc4555646e807d826f2650d89de89d688b90d27a release31-maint +85084 06f5e190855a3fd772848890dd2c8b9241387e70 py3k +85085 c869ea07cd9d268c9e6ec83fac22e082b0269bb6 release31-maint +85086 b3c7e51627fdc6990bda6aa650d6d01129e543f2 py3k +85087 7bb0513cd0b82892eb257cfe7d306837e4c2f41f py3k +85088 73485cbd6c9eb6ec4e00a05b6726408a247dd538 py3k +85089 59dfb21383f8bf9f6d16fea8e29559244a55dbf4 release31-maint +85090 0ee2113a4fde62366db673729cc537506039f939 py3k +85091 778cb8e6c6383040341ae4776a0cdf1cccc9485f release31-maint +85092 e12b104355308dbf725a95d5f3e9236582529a4c release27-maint +85093 7c7d1d96e2c33414bd49b11be0052149e808f9e9 py3k +85094 c620fe87c703b090fc7ea0fd94729f297f0ac73e py3k +85095 ac8d9cac30335e3a23c81fbeaa8d48c48351eee4 py3k +85096 191ed2ad5997c1fc56fa236935e59587b8cf235f py3k +85097 961f5354eb541f4450e50f4518da043178abab3b py3k +85098 800addc985719fee4167f737fda4a82f87006671 py3k-issue9978 +85099 3fb583c8e97e7f649029dc60e8617ac3a0ffa069 py3k-issue9978 +85100 f4d047491cb42a83f2a696270ed38785cfb1446c py3k +85101 941090ed96df4f07af78618359bfae89cff4eab8 py3k +85102 6434cdce71528523a9d2dd113e144377bd59635b release31-maint +85103 0b4bf6cde11dee0d4564dbd27cd6fad2f00a404e release27-maint +85104 1d15b567a74b283eb3d6f8b98d98ccc250b4bac5 py3k-issue9978 +85105 af9dee127e3c2b5d06a7ba39bfe7c33923762932 py3k-issue9978 +85106 c4c6d842d82a01872590d02a35fed3c6e4466196 py3k-issue9978 +85107 34abe36919e53a4a22c41c1fd0596832c6288463 py3k-issue9978 +85108 147258a0adf85cc4bc6acb9ddbecef72ea081dc1 py3k-issue9978 +85109 25e8b7827c7df396b4ab4af1bb2dce17099ea571 py3k +85110 a430f8fec4a0fc4dac8c96c7d874a725b5acd95d release27-maint +85111 0077ee30134c6b3d4d7b1f0692bb09efb9285050 py3k +85113 6ddcf7428227a224851d74b6ad21e93038dd0a60 py3k +85114 5936ec3c4ec027ff93fd0ba6cf050744854eb901 py3k +85115 01b96f78fb70b7beab8f7e212b81c4fd6820cc12 py3k +85116 1add8e5f3198518b323e77f2afcc49dea9d443eb py3k +85117 746e9150119adb708216044b102473ff2b64de8b py3k +85118 e710e792ef2e76b491ff604c9cca0acc91fe170b py3k +85119 ef168688af0a96f815dd271b31623a29fb5fbf87 py3k +85120 a9349fd3d0f7bcaea1560afa4c5cd893301f08c6 py3k +85121 ea4723aac478f4bd4498b12a3e2a78aac7e272a8 py3k +85122 4033f83c2df18d98fa276ef357aa23b9cac09e07 release27-maint-ttk-debug-on-xp5 +85123 9fe1dce2bfa44506298220b5b2833f29aa71cc73 release27-maint-ttk-debug-on-xp5 +85124 d9573e3624ec1221ef9d9dee1a6f89c57cfe6dfe release27-maint-ttk-debug-on-xp5 +85125 7add45bcc9c672c3843260c934718f26ea7bcc0b py3k +85126 d787ef9acb724e8c5974974e0a7c6cdd64138bd5 release31-maint +85127 b99f527e0d77c7033ec1de798c358d6172d5989c release27-maint +85130 9f27d72bf5df89308bf40c682a619e89cda938a9 py3k +85132 282c77db3d389bd7341b4bd6a8c5c085809d5e7f py3k +85133 cb2fbb5e640964e7f7de6df0fc7e44977a1a91d6 release31-maint +85135 04f53ca41596ee80103932307581261edf45afae py3k +85136 87f4b32905df1050ef0ac865f584b4daf532094c release27-maint +85137 597804b411259b8c0f565849a6494ce1c6f7a3ae py3k +85138 daece7a234dc91a8190643453098b0ad516fdeb3 release27-maint +85139 59de225a19cf8ac547a0cdbb49a9fd7c2e068525 release31-maint +85140 a9a30cfb89a5d34bf86f7017062cfba951589f73 py3k +85141 6f133e87a4f8b1eee0809ad55aefd5834070e387 release31-maint +85142 15c3671c17832d9af9b17ee19869fffa98c65211 py3k +85143 9b5e6a57ab1054291e77ce5108e3119bf96d61b1 release31-maint +85144 2f6831cd241ed72917498b0d9b5ad10a2cc8b54d release27-maint +85145 0622d4d08af025f251b6ffe6be5dc0cb3d1c4bb4 release27-maint +85146 2e6840c0c1266b4606e854586f7f2b2910d4e4bc py3k +85153 95258a6a0683e6a5495cd0d154bffeecd30afe9c py3k +85154 340d1bf5951e108b3fd00399e50ec13e16222887 py3k +85155 471dbd906aad011d24dd8b24d32f4b33f801a9cc release27-maint +85156 91e623890b94c1de042f67008454bd3308225fc4 py3k +85157 de418d9dd7331b632825d38fc6787191a88110a9 release31-maint +85158 ce475d35b50fc636e52a055ef52799025059030e release27-maint +85169 7c0f1837e8cbe25d47b38175ca3360f3f6a20186 py3k +85170 bebe5e35661e2076ea7a11a4286394f05ed4dfaf release31-maint +85171 a748bfcb69733cd9fd0e9387857b3462d93c0e0c release27-maint +85172 de7cdb7263502b7477864c9dab0e70ce2c05abef py3k +85173 0cc3ff8020ae65c96cd3bcd357aec28e90bf5f23 py3k +85174 428314eeb2c763b9ccb87c30d647a57f4b8badcb py3k +85175 bb5e18a9bde3ae227c3f1d02bfafd639b33f794b py3k +85176 8de535def1222e4b765f02948cd31d410c14510a py3k +85177 9048807be83abb99903e573808410bb50258f8fb py3k +85178 c990eb9b60a9e479b1ef5873bfb4c99e240ff93f py3k +85179 ef5c57217b203ea750cb8f4bf5551fcf12512f81 py3k +85180 1212e500a5850e94441134af05d1f5d51dacfd60 release31-maint +85181 f3a70d99d7e0fb5ca5b6d0512f47c87bf80d928f release27-maint +85182 070a8f664220e6c538e58ad74dcd348b562b318a py3k +85183 394e25382a59236b7d548b4ac3c09efbc1b51d31 release31-maint +85193 dec08789a9b4233f733ef3b15b8de97c6822ae94 py3k +85194 0f87085b290f4060fa80d9afd4ed6b9a3e218f82 release27-maint +85195 b9e26b0c461798795acf4cafe5324dfa7478a0a8 release31-maint +85196 9bbd4498658ee3712c1a3528b63e0ba9864f640e pep-382 +85197 3bb3ee6e60e0a82219b8926d6ad9a3de9bba2c6f py3k +85198 ba8cd2007d2922f54ecd055cf569c30d2198eed0 release31-maint +85199 139dd4cfb80f578d653c73baa5b30af54e8358d9 py3k +85200 f7c9107f7abde2f507aaf799c5c021e40e3621e4 release31-maint +85201 d1e0cf818ad299ffe645abe9a12b8cfff50ff1c9 release27-maint +85202 2c2ba1b30823f208d60a394900573fbe7d02ff14 py3k +85203 945a55d4e73ef82514073afb63a9bd385daf9de4 release31-maint +85204 f11dc9404d11861c2c11fd450287670cf9dacb49 release27-maint +85205 ad41fbf33e3b98d4d7b26853148760f4746f7c9d py3k +85206 32c32b70aa33bb3406c20c8b42877162713f8f97 release31-maint +85207 e1f6ce836fc5317fa3905dcdc843867ec53eb150 release27-maint +85208 9eb9e3f66e3ad8feaffdd5f756f688ce06f8073a py3k +85209 8bd0a063ceb9ce7a91411eb035d2dff3fc516cf1 py3k +85210 b77e91445d9b71f1a4419b6f9b326ee41e3492d5 release31-maint +85211 b334eaadb508cee24feae1359ba16762987f156d py3k +85212 6af7b4102d77dca1339791168126edc43dc7e7ec release31-maint +85213 3633d8fe55506a9a3d8715debe750aa4164c9dc1 release27-maint +85215 d161f8c964eb8ab6ade4c54f4b72535c988a4ac4 py3k +85220 c28fdeeea78608889958a9e24644defa50142e8d py3k +85221 5f20f7f15edf7045d9bf3e82a66dc0bd81cc26b5 py3k +85222 8fe8b281356c3db3b8531e116e86ed0ac6339061 py3k +85223 753bf23e45c5be8c237da2bbf54e40a8b63a6a15 py3k +85224 b065b1940cbd9fa3ce66346ff63be93057608ab4 release31-maint +85225 12c6da5acd73067c91d16c837c5e49d6fffbc63e release27-maint +85226 09816fc9cde557d116eb2a6c39852e89564c6ac5 py3k +85228 fb82840f0e70becf75a12a09fa8fecbc17dab17d py3k +85229 998890cff205f3245f7df0f3647d5c5d03c346c4 py3k +85232 3d4250cccce918265c7a4d50eafaa4ad7a12e218 py3k +85233 776095aa058d1e1093a4281c6cfb36352940d70d release31-maint +85234 c6ddbfb7ab4381954f6ab0b60cb64ab3c0428dd7 release27-maint +85235 79bb7cae69becb964e018d76c80cdf71910c5d61 py3k +85236 759e5d275beb399a1cb2b2d7d688123c2ab90263 py3k +85237 64ca01ec1715fb36e1837362d7257900d5140355 release31-maint +85238 cd73917f24783866efef4c109da2d2801806e2d9 release27-maint +85239 1c417811e508f99e85b1dc40e4c564bdf8b6ed8c py3k +85240 8bcbdd6730a75738cd051d39a64fd80e5646204e py3k +85241 7a0b41f1c73b852af4cf5d09117ee6c498f38cee release31-maint +85242 eedbe5ea44cb21593dab3bcdf31617860f888077 release31-maint +85243 eb7d69d896501cb96e164a0c921172e48b0c9c86 release31-maint +85244 a68f8763555b214ef73529c927721123aae0f985 release31-maint +85245 5370d4f0864809cee1e3ef629f7580da81e59d78 release31-maint +85246 a4c9746cb03c5a5ba842badcbd80c8bab8744e4e release31-maint +85247 bfee54781ba1f93e4d90dcf6eff07f17df3a5ee4 release31-maint +85248 c9879b3402e4ab72d2d39b45db5aa23e3dcf6ea6 release31-maint +85249 eb8e13784de7384c59fdbe476ae39cb02a12056e release31-maint +85250 b9a75dd7420d0566b73225872a745db69b8771bf release31-maint +85251 90e1735df4d962cee00c48611ca0aefe8e58eb04 release31-maint +85252 2de8323bd4eba2aa353cdb1fd680a193a7439a4a release31-maint +85253 a0479340f0352f2ae63bb36fd8d64f6169d94705 py3k +85254 f00440af941378dab44d4e1d074bbbc0c536092a release31-maint +85255 044cc8a9f19cfa1b77fad0b8ea361f9fea544d10 release31-maint +85256 6f9d15fccfa4acf1afa370f21fb3cfdfab23a768 release31-maint +85257 c61c02ac2099fbf7864effcbeb44067c93dbd222 release31-maint +85258 6959adba3b6a5d227db891981b298b08cc9fd9ec release31-maint +85259 a5c63b3a96a9a8f2242c3d209733b3ae84823f4b release31-maint +85260 28306244afa0f4589c1c59ed744038b82ddb493b release31-maint +85261 64989b03398ca2f8fb66884f219da9d93aa70f83 release27-maint +85262 ff734f225b47e9689bd2dd10585e702c6448d023 release27-maint +85263 cab458638e4db547e0df63d40795f2cf9d2e8829 release31-maint +85264 baa98ba85fd41189c0a95c150ffd455ceddfc761 release27-maint +85265 2c115bf52cff9ce5fbfc230cc4db0af5674ecda9 release27-maint +85266 285651a15355ecde40598994af95b42dc2078d24 release27-maint +85267 ce202152e21a1143e6e9beacaf802feb7e19cef0 release27-maint +85268 536d8650da3df0d967dc9778e3343ab2ac9896ca release27-maint +85269 e9e241a93f9ee30cef93810623afd7a80d9b92cc release27-maint +85270 78396ef4d81cd6b753ca58373a8cefa48f53f0bd release27-maint +85271 1a0e0669779ccaf6d8270881075613baf21e6df9 release27-maint +85272 521eac31a893a98a0d5af3446e835b0dff47c4b5 py3k +85273 1cfd3b12489dae94a1f64a797fc602c99d7b0b54 py3k +85274 9afed70d3aca1c6378ae2c34d3a5ddcff79a77ca py3k +85276 df844bb6729a4bc6618bade2c60bd8a58e90d75e py3k +85277 9257f083fcff22f43fca98ed0c7af976db3fe4c4 release31-maint +85278 0192055bcc3be9159076177fb5827318d0cc03ad release27-maint +85279 d672753a03f008ce9b284ad9be47d030c1847b3b release31-maint +85280 7018261f2ac1da1110e5776f630f7d0cdae438bd release27-maint +85281 2d99edc4f10dfb0cfda4a26a7fc1c0d0b42e58c8 release31-maint +85282 5b55e8a9c1071d36449448382bcf55fb8cb7fbcf release27-maint +85287 066fb3faf6d5392f2ef3223308d8e310e571864b py3k +85288 8629f7d8b5e337b0a097af8077925379d7046897 py3k +85289 d0ce3eb11b286ab5499992d1eb8b32df05f9332a py3k +85290 4da55c49343570015a4948f0dc1e3a9335376b05 py3k +85291 b8e78cfc94eba6ae4625e97b29566418a23a4852 py3k +85292 32dcccdc73f8f6fde85f8a583caed4498d786d11 release27-maint +85293 7c1031d3823cc4db4459287d3845040aa4168c77 release31-maint +85295 62c58dc912e816554b878cf76dcfc1fdcab06a7f py3k +85296 f237fde925fa7dd4e87722d7682b39aeb00a5bb4 py3k +85297 c1e9542b6c74aa63f08a6a44da7c83a6c8c6649c py3k +85298 e3ae5b00ba15eee7b65b40ca092b540549d92f31 py3k +85299 a62c4d5cdf6c7438170ec623cac85fef21f24311 py3k +85300 b2457eb834ae09d2846288379ecbf371599e853c release31-maint +85301 dfb34e5fe06619a85c2d88cb0e0719769b49fcdd release27-maint +85302 071f1f7af5223b88b21ef3c6a6d2c1dbe1170476 py3k +85304 39014f0abc328295b3b780c76127907498785e5d py3k +85305 7879a8ec7f79a9323ccc50aef540e8ff4f66bb90 py3k +85306 1f3919af8a536d18eed47548c05b2e869018c184 py3k +85307 2147cc15222715411900cc25257537c2d7b8e00d py3k +85308 8fd5d06462e6b8d5f161869e7c7c74ec94501448 py3k +85309 e4bdd07ce0c626938ccd9936ff23f159feda18d5 py3k +85310 1c4774b4e98a462ccd0020b05cdaa903d2375eb7 py3k +85311 77a6a249e24e8e62eef5f35f0eb0b12b66744f21 py3k +85312 fa6e50208d93095a48fb26bf35fe8ff4156b950d release27-maint +85313 39a0b943e3e1f17f122f1dec801f065efe7d527f release31-maint +85314 884c71cd8dc695a92b16c31387792aafc12c3d1a py3k +85315 a14e074fa42fc552c249dc67b127752444ceb53f py3k +85316 c411552cdc7cd3be89f612351572f601c3cb6ea1 py3k +85317 8c57602ea1b30c2aa21edbc7edca1e22f08c7fd9 release31-maint +85318 acdb32005c0ac30fac285f83949ada81652961a0 release27-maint +85319 6a2f8f692f048cc89e824c29e82dd4efc030626c release27-maint +85320 a9964a4d3c29f061fec190e1dec29024916f6dac release27-maint +85321 4c98eeff37e7f3c32ea9600a77691e5a0350f0b0 py3k +85322 1a041f364916bb3d3ab1b386ba405c668a071eca py3k +85323 4987344cee200128eaa275f90b8d969f7dbe53b0 py3k +85324 b1fb0539bf98bcb449649c210b82473ce1290c05 py3k +85325 dbe02e916aeccf4be8575d5018a5f7158e589c59 py3k +85326 5693dede9a3a08402a70ef01d1178c9dbf73ee26 py3k +85327 9c026183d82a4ea904189dc02ef43bc26b1b7a8c py3k +85328 aeddb187fcbeba56e37c470318f7d4233127b27f py3k +85329 0bbc3bb00fc4ebdbec7e418c9884814bfe779f8c release31-maint +85330 51575bdc54206feaf81a085a7e05d7459d053be5 release27-maint +85335 42d6c262c94667057ec425bdb2bbdbf6c9f30500 release27-maint +85336 0c4884db53e049025cfd566f5bc6923840cc33ce py3k +85337 6543fa4b145815234bb2b9f7716c151c2aa7aeee release31-maint +85338 7e01d6964d5d7e0ab077acbe720cd6aafb45971f release31-maint +85339 2d164b1aeb79b7de31cde4c295eb0127825be1f6 py3k +85340 a7ab048c6845d8e93c3accaba2f7d0c2731f8881 py3k +85341 e7c9a85fe963b58de0f684d6a39d3dc395d6442e pep-382 +85342 cf2c583b2cbebf18bdab49101f1e532affb73f69 py3k +85343 810b540ae650f76dc02be8ad10f5dc85d2268de3 release31-maint +85344 0f6fba65bcde7d291490f80bd6b526472b865d2e release27-maint +85345 b62899ed7fb7d5b3762f18a6d04e711eafc219ad py3k +85346 d475c94546bed654e95e833ef3c4586eb192fd37 release31-maint +85347 fdeb0dcb9a3fd0d19f463bda2a1f668e567b83ec py3k +85348 2fa9d7345ac7fa3c9481361132d4af464516ed94 release31-maint +85349 51d304ec6c11b5974f74ed588a5a8262d4b931d8 py3k +85350 a9a45624cedf1de32455cd2e26e8682093af8b96 release27-maint +85351 23134e1673d71ba9bd0f44870e37a81c6f6b98ca release31-maint +85352 ed5e598da150ef6b9056a072730a4b493a8b33bb py3k +85353 25d078739c2a4ed8385dd6ad16e71e7396d0b140 py3k +85354 c019e977f222c30bd36ea300712a875154343a62 py3k +85355 ef21f8c99fb34052ced36bebe28f9d4c5dea65e2 py3k +85357 da012d9a2c23d144e399d2e01a55b8a83ad94573 py3k +85358 ad15b89106de3be05e0f0396b067a87cedfe0e01 release27-maint +85359 4518b2c2d614f13817d8e875f950332ca5a718ef py3k +85360 cdc95fdddb7b2ba9daa0327caa5fe9c1f8bcf2de release27-maint +85361 5ede15e124581699093ecc45206fa0b7f5d3f00a release27-maint +85361 d50bfb7ab57c926bf07fabb98cb78aac060838b7 py3k +85362 475830424c1e81860599453b309a974e6e3fcac6 py3k-ttk-debug-on-xp5 +85363 5aaefa9752acb49a807adceca35d2085ba341366 py3k-ttk-debug-on-xp5 +85364 62c14ed6b8a0a624a9a059b8a044da7b8f5ac57d issue9003 +85365 2676af65514d4d97a9fa2b8b744283110fff583e issue9003 +85366 d4909a056d4e7803be8a0921e1817ab2e5d89f03 release27-maint +85367 41a9f951ebea5e1ac6cee6311dfcd73458857270 issue9003 +85368 0adb6440581ee1d5a6f3a6ea441fcc5e9679cd67 issue9437 +85369 f7f70529310f84b913c92c8146dffeaf7c7bed30 issue9437 +85370 9d6d83063ec22bdc423d411aec000b38d93fcec6 py3k +85371 cbde81ef4af7c02ec84e8a88c0d2e3241aed4cce py3k +85372 18b7259cd92d838ef69fdcda76837b3c8d5fe6d5 py3k +85373 97f80d0a1d5638a3a1f3e72ffa44f06e54407eb8 pep-382 +85374 669c3728750b1756fbdb8a29ead162bc39e1c013 pep-382 +85375 5fa125ae07a6417238a0f5d7401ecc8ae171fa42 py3k +85376 f3200be4eaa0984d8133b53a7ea0f068c32415ba release31-maint +85377 faa4e22aaba7e4b36ef93fa0ce61b0f0dca3313b release27-maint +85378 8cf1aff1859c6263a75a00eefc4812b5f8eaafb0 pep-382 +85379 6d918d910a9687f98e98e4b2394797ca3cf6717b pep-382 +85382 d24928c28001918b4dc6ec3e131ec925e65f01a4 py3k +85383 9c723afa44dabb421819a7c7442e68f4c28de4bd py3k +85384 4613e144900068243fc0d828edb7c1e119763ccd py3k +85385 9e147c349126c6e81d614c50b796b3df740add6a py3k +85386 ded61e26b8414f47add6ca7499a1f44369d5d707 py3k +85387 a817205d254a9f79fe7fdec23e3c2eb45aa9666c py3k +85389 39b38ca1ac04bd1b51acb1e95f1b5bfd14d3ec88 py3k +85390 2ffbfbc0d3cb16c617e2c89a646c946af1f0e39e release27-maint +85391 61731ec9a0481e5716068019461f3eb997af11bd release31-maint +85392 e2aa3b1d08bcbc10af43db0f2ce336e0b287a955 py3k +85393 7909436408e2ee08c4a1b12a79a6b20fb28a7626 release27-maint +85394 3e8d28886ad660d9c394b142f2aa8fb8eaab33e6 release31-maint +85395 f2f52b40c1f28d2804ea460e0c14f2cf7da08e5b py3k +85396 d7a71f1d1e341c2a9cd1c32d45a9e6ab37107f0b release31-maint +85397 21957b3b0aca093341c062625b53e54eb5c773ec release27-maint +85398 75beb6762e3b023679d20fb6dee9b3d187d3c244 py3k +85399 c0908cebf18410fc70d8ce3d92ae164f48a74573 release27-maint +85400 d0f60beb28f23f230479b2da23fe9823525a57ed py3k +85401 ead5364c4a59a733a4ae0dd26ba6bf25206b8739 py3k +85402 f29ce0cc1d4ce6b6cd0de20a3059a2c10b47a72b py3k +85403 75206df8e58c602850d0ef9fd6c1b668ba146b17 py3k +85404 2ce64960d490db6dfa473bf3d6d5c0d85ff715a6 py3k +85405 20f463a4584d7c42e0386a8f1006a38ee9903fac release27-maint +85406 246d3dfce7b103d0d57f24d19ee10e9056b7c9fa release31-maint +85407 23ec0be07e20eddf899c4c51477ec836745b0a37 py3k +85408 12327b9d33251981a58131a601e52589ab06ef0a py3k +85409 cb6e9b03d0c320c86b3ed6fd917f3b11efcfa505 py3k +85410 a1567893783f232de0a368bf65f9b7efb2166237 py3k +85411 bf5cfe9a0bb5e51e829513b6457410d451e1466e py3k +85412 d02d6bb02538525396fb2700ca31682ca99aea75 py3k +85413 e517c3f5609184b1a37edf4841590fb458f5a922 py3k +85414 5ef76bc171ad6d7d884bbe4a7aef5c497031aaa1 py3k +85415 37213438e21fafffe71cf70eab7d721e6945d90d py3k +85416 40ecb4d00f25ab9b146ebe92e021529da86620c9 pep-382 +85417 c48c09e693e6c918e48d2191decc5c0a09069137 py3k +85418 fa905700775551f475069464568c9ff5a27d017e py3k +85419 0d16d50c57a0f2342ce2857aa008085d0aabe49a py3k +85420 1875bfed5689b9d02929b68dfa9fa8bcaf921151 py3k +85421 3619c1214007d3d5e3d07d2357f67b22ad2432f7 release31-maint +85422 eeaedcbe281d5844fb35a3d034a3030ce4f8ef22 py3k +85423 6899a9ca5f3535db3492abda01f6c48f1583de74 py3k +85424 8b192502a4a9ad788390696cda37c26f13c6b788 release31-maint +85425 610c25b5cfa289bf754678b6d346fc65093f9b26 release27-maint +85426 a1eddc64b75049c9788105a93e1e3747bae59950 pep-0384 +85429 1960f58af785d4a70adbfc04192e782b816bf195 py3k +85430 a75fd31ddabbeecb038aec6bf4b4b5c71bd76c9b py3k +85431 00d13b2f81a3c31a123885fff0bbb7846bca65b1 release31-maint +85432 61c35472a4f81a4227771c1f80db70a83e15ac66 py3k +85433 6474addd2838b76977fdb85bfc623700cb347b3e release27-maint +85434 f2f7b70fc5ebe4f90aa435084b91fc94e1d7c631 release27-maint +85435 3335edce48a354649b2a8a8bc8dccbbaa7205155 py3k +85436 a4a6d823ff89516622f1523e4d196a9990bcdd2d py3k +85437 4755744724f20bad47796b5cd767fa06769eb160 release31-maint +85438 1f225d66941a9230265221c802036ea841c2b7b5 release31-maint +85439 e76f554158a85bea3af51d9d8f776e7849689bdf release27-maint +85440 e9ea09787a35cf93cf535f96649dfac126b0efd4 py3k +85441 4c5706bc2f43051fc68bf642e017a1d4bf6d0ee1 py3k +85442 49df778889e6facce396e0d1bccce6729a59a138 py3k +85443 a46711de92912072bd1878cacd71bfdaaa155d06 py3k +85444 78a12b829a9aa9e77c4baf9c342016a25d616bd6 py3k +85445 1e72abf073c56f5e31031202ebd83e36c8460338 release31-maint +85446 ebe14ccba1b7b51a84b18b9a069427c5f8cc2fba release27-maint +85447 6fd49d0521345dad1fc82e96357bac5ca7653e45 release27-maint +85448 fa27dd1298fe577650872dcd164f6eaa1402d4cc release27-maint +85449 2f3e0eecc76277bf53c1770a462789ee0d56fd9c release27-maint +85450 ccc424c966426bd1522202f2094f292feb0a494e py3k +85451 b5ce06bbb06fe2130310729245e35dc96219f0d1 py3k +85452 ea2fe9581c2d8f0a2037fa1ab0f84932122fe6e5 py3k +85453 30b3d7c5253d588eb50706905ee9192294ed2766 py3k +85454 3611ea42b792dc13c5548c968b5d378fe299359d py3k +85455 ba6581ecb6f1ee7a4832354b7889b0d2f942d86c py3k +85456 fd044cda97d8370fce33a13908ebc060b80f9158 py3k +85457 6ab0f9219660b882efd4df64c931615c8f581bcb py3k +85458 beae76ed5ebfe3f8e3c06bc866ad0e6cdf9b4bed py3k +85459 7d79688156db5fdbc900d8c77072e617b491e247 py3k +85460 dc200cf2f5658ac105def52d693ae7752d965d90 py3k +85461 2f179a3cb20660a32ccf815e7f44b15cc531da3e py3k +85462 82cde8b7372823191c998d400c47fba23ed7f7d1 py3k +85463 4a8e0d89755b64c2e903532ebfb6119b5ec05d6a py3k +85464 67a218570f4a4e16b045a3583681c1061a0eea3d py3k +85465 660afdaeb2d6e60723eadcb6574fa05aaaa8bdff py3k +85466 2853cad9cbc024300e057b004aa56d848870ae17 py3k +85467 e2c98c60dd64d0a5d2104d73fcb586a2410e1743 py3k +85468 b65206129b5c94c686d1475a93091288ddc544b7 py3k +85469 995c33e2263b1c910aab41af4f1a1ebaf7cb8879 py3k +85470 a5eead141cb46356f5ebcdd9d2e4cb518883a893 release27-maint +85471 6a848955401982c26d6fcdaa9572273664b3fa8b release27-maint +85472 71e76d03fc67f250774acbfaffbedf4c444f6af4 py3k +85473 d7f907357da7e950cbcdc41987c058f1b7cc69fb release31-maint +85474 813b51a6a417997d55c185794cff4c1eafe2a94c release27-maint +85475 982c8ec73ae37e0ed6d54973eba3f70bf639ec8c py3k +85476 3d9ef098daf2e36fcbc6d22f7a956ab673b0130d py3k +85477 a27fc0ff3678b009663407650f29ea4f21734f01 py3k +85479 08a9c046004dd11a94af9f1ec3122fad428db6fe release27-maint +85480 12442ac3f7ddbba3cbe9804a93289054e9bdec44 py3k +85481 190f247edb9eebcf30dffb2afd14997eeb0bc71b py3k +85482 ad40c0a3e22156a1e3c5ccf52d88d8beb5603ad2 py3k +85483 b83f0a667e7ceb2eed1c0d36d8a4b074da836f95 release31-maint +85484 07b6bb76ee43923c556fd009715f0c3a55d59c3f release27-maint +85485 078e2e47e52b06afe12d1819999eefda2167e632 py3k +85486 b886bf602513b4f7e97e15715ff403d5cb87c7e7 py3k +85487 90c2b65490c7532316ad0d715d3a67369c53c144 py3k +85488 80d3a37499b1b2b209a6ed8579f676b055474e37 release31-maint +85489 067e8b2000dd05792ef043a60676e5f5f5ce23b3 py3k +85490 3e79134c65357a762da25fae106e51ef3aa400eb py3k +85491 1a6013ee974b0877b94a133c60bd3292c478cc7d release31-maint +85492 253a26878585748fbe8bf6581270aec86476688e py3k +85493 b7ecd944b7ceb2ad1c7fcbe1082a2ba7b0bfb298 release31-maint +85494 d52d5d359db310010ef75d5ab5a7f25d5bee2826 release27-maint +85495 052c199ae19a9b09b83249d62a1752946a0bbaf6 py3k +85496 f3da8cd7411378b6d09d50688507b19c8530d2e0 release27-maint +85497 46956a25c2641bfe7bc8c5ac3ec56b1889988706 py3k +85498 6296632ad2cbe65f7031bbe1ce6ff1c23322bafc release31-maint +85499 4269267e6e57da24325dd76b3620341aafb29848 release27-maint +85500 6cf223ecaa6f0dc5327c5c1926e315f871604172 py3k +85501 ceb12703c6dba3302615ec0ee16d67766258b984 release27-maint +85502 27c051247233a6e24b36b1763e51b614cdabfe25 py3k +85503 4d5f0c4487eb9ffb365e9332d75a4ded33bbc596 py3k +85504 1782da440fb1e446f778dd7e4325ab5c866999a7 release31-maint +85505 fea8f21b199d74d7b408da95e7d535a90f06b257 release27-maint +85509 7d1e453b120b6e62b9a5061aaf624bcca8790fca release27-maint +85510 89a8bf5325cd15fea9e30ee8fa9378e83f674de5 py3k +85511 5e1576050749beba18b1c29ca3847e5849e2d8fe release31-maint +85512 1780684ae3ad97c0fbe6ca3aac71f07916b05410 py3k +85513 c3f2c5d35afafcd89f780edf10d83a99025a4437 release31-maint +85514 e512372f74946d6f8a3b6058680bf32511a6ea68 py3k +85515 cc1d8a2db3486e412837a09b95d2c904a4400ba6 py3k +85516 f63d747622bd517347f1eafe012a12ab9ef2a570 py3k +85517 453fd8182c2f96e9e0e17c3f33cdf72d502ea2bf py3k +85518 bb30393d1ea189ad3cb67b954e7f737802389f73 py3k +85519 157751cc4cd51883700e9936f2297c9cd6b52def py3k +85520 e773a1f23d43393e7bbf7a32f74b415079bf6031 py3k +85521 9c73fe3f47e269060993d35a77c3c504c9b84d96 py3k +85522 6a365b9a22ba9c3b01de5087b06d2a2a55a1183f py3k +85523 52025c3541d888fd19b0475d4be92d1adfd0b557 py3k +85524 1f5a28ba7477d02a3b8152029a2991a8ce603c9f py3k +85525 88bdef5360af03aceffeb7cf17859a90ec703a79 py3k +85526 320d0fa21658d1df741896b473523605b1961994 py3k +85527 4ebc0308f4b12ee3f8b58d9bc8aedd9e6c6a374c py3k +85528 0b50d87061344634a7113292ffe391230fa74b11 py3k +85529 80fe066c135a9047681b5e471c35453f1b8e5873 release27-maint +85530 41868ca52744c8ed2f3a7e0d454f746072bea141 py3k +85531 5633af59005702b95310056d1a5e4fa4bfe6187f py3k +85532 8f6aba23fb2abc75be9eb2c0cce94bf12ddd58bc py3k +85533 104358b5d4d1446dbc05abe0efbc8cdb23e15408 py3k +85534 dc25c50a7c11606884912d02b501136bd08005dd py3k +85535 6b8314376de2eeb4e456ee0745f85e2f16105ffd py3k +85536 92ea56b52d8f7314bc57aa97c1852a818fd30298 py3k +85537 9712586fa42f5f9fea0e3710557e81c8b838d7be py3k +85538 ac8680685fdeaa3e77f8085df54675853ee668c6 py3k +85539 d8384fce3c73b9daaf46a7bcd5150f18e0f96ed1 py3k +85540 78d53859395a4462e73f6ec6735c5631352b51d8 py3k +85541 f33bb850789ea852ed386645546a8dd259849345 py3k +85542 7de365c1986babab6dc98ee7b177f34e2644d17b py3k +85543 6f4cf73032fc9b8fc846b2aa2b416a27162e32d6 py3k +85544 9347b0a85caf586ac0ed16ed38c35f59a1a1880e release27-maint +85545 eec499847df7bb9d8384bbadb842a3d18866337a release27-maint +85546 b71aaf4e7d8d901baff06ccd155591adcab3f52d py3k +85547 0e2cbc31fc925e29622e84fbff3424c806ba00a9 py3k +85548 394c00b4c9194cfd726ea32b312821f8746f930f py3k +85549 844ed6dddc031efe964e35dcbb8d529c20ffa4fe py3k +85550 348f3369640215501499c7f2ea8059af91f970c2 py3k +85552 90052889ce3de33c1ae0a09b4d04fb3c12bce86a py3k +85553 292b1df01bad87c7c3d7175f6a67831f74819bca py3k +85554 3c4225bf87b412663456883ab8d5e3d5f6e78ff4 py3k +85555 2b17be62c74fcc8035231417600daf74f9237f5c py3k +85556 d4390b6bf7ec8e16f2e410e3955712f061d57322 release27-maint +85557 ddf2ead26aaa45ea69e08f11f131f193e5cd73c8 release31-maint +85558 4d6c63c65550c23699482682c4746ab67cbecdab release27-maint +85559 932f97bfbdc0c5049feafc821a8ab146d1417d12 py3k +85560 fcdc2fae50c081ac9b703dcac957f9fb0334d0ed py3k +85561 f98c3e2fd05503312452e10a8b5c776051c3b381 py3k +85562 fd5c83f7644750bd24aaff0cc2be8876b31793eb py3k +85563 3618d9d7902d3cb448b2517b0fd480d408ab15ff release31-maint +85564 0bd0e87a6851542246da5a7e3fe59f735d292658 release27-maint +85565 f9184e7cd25ce13075204da78df43b8172f76fc8 py3k +85566 dd0867bd955790d8c863596714d3d4f2c9582305 py3k +85567 09efffe700307018efe1b167e0ef6d3ff4c67e0d py3k +85568 76c888fd2380df26b80326f1f665b989295b113f py3k +85569 55ed5c524428ca22864db64d8b05f65468b5db5d py3k +85570 9ed68dd6b71ff72339b7ba97ca5d247475e3ee9c py3k +85571 60398450934302c106eb934299a8b465c125b540 py3k +85572 686a2a91f826080ee8e5c32b9bf7f0955f276ead py3k +85573 3f2e145c4a02e6620fcc85506cd62fdf25435ad3 py3k +85574 5181c3bf8970e17be13d213446a10bb63c8e46da release27-maint +85575 a442ecb70841f2dd7c55a0954759c6c64fa5f636 release27-maint +85576 0ba50d485f07268a347e505a6fad7cd3d2a5bf8e py3k +85577 b4bdd428eb2b1f239a324423b417ab54d3a6025f py3k +85578 b749dc4c374c167eba128c9a962525db1b26fde5 py3k +85579 e1dc9861b43f39c11227d6b3d0111e5268f23848 py3k +85580 6dcba93d626202ac059e0da01e181bef32b65d14 py3k +85581 df0e348e71762e9a5845cdbf80fbd6a9c495b346 py3k +85582 3794c9b50824fd7b5f83846ef8799c0621ebc266 py3k +85583 ba86f34f08da6bca1a88ac96e7f85bf382c27b08 py3k +85584 9306ff1c3d46f7d17bf1b0c6317d0b03522d94bb py3k +85585 340359d80ca056a20cf5245917c0f029121ff649 py3k +85586 443ab2cbabcbcadadf8990a9ea7e6c80a0fae88c py3k +85587 02830553dbd19929777932a60040ee877682f729 py3k +85588 fd5135cbd928df330e397e2688e7995c858b53db py3k +85589 6087b1f6ca9b74eb82ccb506f3802f569dbee2c9 py3k +85590 6b2668873f30d291c09663fe1fa3663d50ce1135 py3k +85591 43575b0969ed063c09f744da81c0c362cc888922 py3k +85592 6ece629445b60b3515b62a7f4b38d2a207092438 release27-maint +85593 1bf767f28db4df6234e2200bcc8e776bb07dcdad release31-maint +85594 0505eba623472fcefbfc1b6391cd71d36149de89 py3k +85595 c99cf9102476c49c5505d3f97e4b713b8efdcfa8 py3k +85596 eabc5c53f134eaccc51b705149c9c1ed3ad330a9 py3k +85597 2880e72a464bd1c1a8851ef59e82d030fcc990f4 py3k +85598 6e559793e450cee356532668085ab03becb28bf0 py3k +85599 15859740aae6c2d702c5c79c4e9b1a880ad9df6f release31-maint +85600 7025278c5a41a8b6c859341fd4731c0a4a2168a0 release27-maint +85601 f6216c5f06803ae5bd9e5f96373cdfface1fc32e release27-maint +85602 15e3ad0ca3648b9f970cfefed6dbce82f6107c5d release27-maint +85603 caa17a033176b29e8664e61f1052570e3a7fe239 release27-maint +85604 088402469016ba51f9b5bae0a838a9746708f074 py3k +85605 931f239082966ffcc9df693c44dc0d3cc615c828 release27-maint +85606 8733c6903fcca26dffbf09aacd4261623859cc98 py3k +85607 be60c960ac09a40e0425100097f34c2fbb131a10 py3k +85608 2e85047119d21baff91478c5d6906b02af1de992 py3k +85609 5b2af35b8b4b606a2c0b0b5a730ad3014ed46559 py3k +85610 d25346c0b9d08d62bac3bfb60c227e43bfa27553 py3k +85611 3b5ed8490ab2c2a32a06cc5009ae9eb7f0984287 py3k +85612 69741d4b8a60039d05da4b3099d0eb12c7913f05 py3k +85613 96d7e7874f8c462651e931c134f112d76998c8cc py3k +85614 966ec31b8342c7620883b28755448555a726a818 py3k +85615 5da837fcf67593aea5472478928d424c8f32bf40 py3k +85616 473b921e3a1f3b6d15ef796668262646a4ab4b8c py3k +85617 7ddf60c8896aa04189961cbb3512890677cf12db py3k +85618 a4dd383912d898dbdba65879ab83a7e40f4ad9bc py3k +85619 a9047ce1e81dac270c2cd9ece078f030aa81e709 py3k +85620 19ca70b463c5992cbaf7ebb7ae5325a8eac00756 py3k +85621 aa2e4637f6ce971642a4781ec91a41ec39b9cd8d py3k +85622 5737ad71e9e19e946e2c50b6b6305e346595650f py3k +85623 87dcebe78d67ca2b2781b68b3e759293e11c5186 release25-maint +85624 0999e3a44735be61e5ec16a01ba2d97512968406 py3k +85625 d699708dc2c1904bc930ecc5818f8834eb714b69 release25-maint +85626 5a2d3449b575e3a1057a1dbbdb00e55190d17054 py3k +85627 06608cc25fb204cae4760e5e33803d008512a10c py3k +85628 ce4d810257b44d8b5ad6eae928c9b515d05b29b0 release25-maint +85629 ca969092f45a6cdb892113ba2d391a6d0bdf6faa py3k +85630 311d7abbfbe300a1cbca4bf203ba695bf8face19 py3k +85631 bb21359e88b9464e2681d978f99e83c283acc8dd py3k +85632 31750c727ae3050c001c8022735e6e6f15971ee0 release27-maint +85633 bcb260d68b158aaed30bba52721da4c515dfbded py3k +85634 87e5b5938c65f0cac4308c588e212d65aa73fe84 release31-maint +85635 422a4fb0a491244d5434090b7a60214e4d06edae py3k +85636 073e1be76b47435894e6fdd87a9fea0eab14f09d py3k +85637 9b2250fb80d8b5bb4b901052eec24a8d2178402b release27-maint +85638 9e45fc805288a77c84a2523b94b7a5eae7fd34a6 py3k +85639 6844027254fae6b1bf96ae27dbad36bd34b1cdf0 py3k +85640 186af051d04f210b1c7e06e893d4e8dcebe76f50 release27-maint +85641 994b8799f28d68a5e4b90c2a82848712a9775abc py3k +85642 21dd71938a4472d246e583850650b76bc390b025 py3k +85643 74d81a3a0d565a187859dd6a9c300ce57cfbac96 py3k +85644 05d7b1991ff72e74f1526a8a1ec7553767363354 release31-maint +85645 b42f949648bac57fdc00119b3b7597a751e79414 py3k +85646 633de57fb73ae1163224097740d1a42124f0ff91 py3k +85647 3c9afa92f8fdc6532b1186798002c004972b1705 release27-maint +85648 623deae77324367d516aa4e1f2d42d528629d072 release31-maint +85649 39a2c3b10a7b1fefaff4f7b2633d40b710bf973b py3k +85650 9ac3fe2ca49eb5efab843bc855d10fd359ade693 release27-maint +85651 efd369981b8dd561cb6abc7ca253ef9fc6e9a735 release31-maint +85652 38ad57db88ac4be2f52c70751aa4b3108be57168 py3k +85653 244cbcb67dcd87e11b6363470b2b87fb6f51acf8 py3k +85654 39cdcc7d3e20d544eaa8a5c4aa3d6906868e8f7b py3k +85655 023b41376290a121c77a24b701470cae70a1b23f py3k +85656 3a47fbcb29b1205087c9e3ca9b02556a7dde7e66 py3k +85657 7af406f219a4e61b498adc71f5aa27fcfcb9ae31 py3k +85658 d58ce3ffb1cb697f1eedb4a53ea3b11276bd8ee1 release27-maint +85659 b0228af6db1180a171c7de12057ad9366053adc2 py3k +85660 95e3aeebb5abcd81e48175b4ff0d22995de15e26 py3k +85661 d1def7b2abd2f59b43254ba324097462f1db20fb py3k +85662 b2a9ca2b61a241b0ed8fd78088113008e34274a0 py3k +85663 c147f910af70086fd63deae0e3f620b9163b40d8 py3k +85664 e8969fb822fc2a279ae34be73f8e1e15c453a3d0 py3k +85665 f8fc2d03d7e42a12e92ec274863475092ead8e7d py3k +85666 e7580652afb8e6ce6a395adfeffc51563472bcec release31-maint +85667 a316581290080740f7b6320cd57334381b2676b9 release27-maint +85668 b1ca7d5a9c74d70cac144d429d712f78b773154d py3k +85669 b1bda1ec995fa1036de09faa33c3550b2f436f47 py3k +85670 e0ccb5f50e0c790637ee311527705043800371bb py3k +85671 16ead83f79cc99ce1417b3f0483a8a1eb4ede1f5 py3k +85672 96a69762b48161678160738f4390b4022b43fba4 release31-maint +85673 7aa14cac6f4d02739ecdb4b5d305d681d5938167 release27-maint +85674 eb8837efd84c5b1edaafcbe9045e7415fd976f92 py3k +85675 351d794d32f44329c107373e1daec862530eed23 py3k +85676 aa203d478bb810f6de2b6102fe4159a4211620fc release31-maint +85677 d397b02631b547d94c67b4b91384e95e6d130f09 release27-maint +85678 bea14f00d3e0100727ff7c0f88851d763e067ca3 py3k +85679 b0a8fcda06547d6d34e3347228259c251034e2fe py3k +85680 ce9f5ce33ad2a0f5d03cd08aaa78358361d2f84b py3k +85681 a4c10a44d9ae11bec9c999426e8744696eca1ce5 py3k +85682 17c96aaf93c87d107a3a30579849f949b34afbe7 py3k +85683 5b069892e413a9e115aba960494889cfdbc2d943 py3k +85684 8f0625954ffa3cdd7116239c5cc98a066af37267 py3k +85685 cdfd198a6f1de31366995ec6d850fa68908da6cb py3k +85686 752e4b5c64e95cac4162641dc4371640a565ebc1 py3k +85687 c72757033d44f853d0f64b59a280f2b060854e7a py3k +85688 68bd75c69db150ffdccb2037d42fdf3f41dd5d41 py3k +85689 3c336348a2e986fe4779c153f7874c4598711f18 py3k +85690 372c9807d75d9714e60643b90af0a1a8b0d96183 py3k +85691 77c13c9c6e59e39e968c4b4effb63f718e35358a py3k +85692 51959f39a7fb136a5ef29368bb738311b865fe7d py3k +85693 b0ba7eeb98a55e9442b1d0519d83bafdfea0edfb release31-maint +85694 2f7e01694926758665b169b4c89d3f1cbfe53282 release27-maint +85695 86f00612cbd60e9e16540e824bbdd6451f173414 py3k +85696 ecff41e068e6fe91e30d1ba488dffdbbb1d42c22 py3k +85697 82b083c96a39fbf71309ca83b72c3e2f282e5c37 py3k +85698 246c08c825a10588d806aceb12d8c142c8a92516 py3k +85699 503600bb25eaa898fe26b8f7638abbd6f2e2b7ec py3k +85700 3faff7e51f40deed0d46fb9f2e12ed12dfab5358 py3k +85701 15e41552dcbd7cc0321666c422e913702d73469f py3k +85702 bb333973de38bc3390826d05f1b71b9c3f2ec48f py3k +85703 27ce99fc252701475e9f99081a4bf80bacf74ea2 pep-382 +85704 1a905391e3ed6ed428b7b6b5397666195fc3b62a py3k +85705 8912192982cc837819329a3ff851098cd2a401ca py3k +85706 6628f86db2b6b78902acbb526690551f559fd2db pep-382 +85707 1ec2bfa54cabb9bb63478b5bb619c9fee333fb79 pep-382 +85708 02635baead5f5ab5a7316caa6e0ab14326d524f6 pep-382 +85709 e2ba1249a2f56366022b968791a8fa553c6c85c2 py3k +85710 d607b631305dc0a70208da8245ad0fd5caa1192e pep-382 +85711 4d55f0b090d580d82f5bd578c068fd2b19f731a9 pep-382 +85712 1303ceaf441a9c93f82e3d44200ee29271262159 pep-382 +85713 b47e4ee154032ce8b44c8aae2085eb4a089180a9 pep-382 +85714 70d2b4aedc09ea47f014ea221fe16f3b6859cb9e pep-382 +85715 59e9b58ddaf848d3ae0d0861da1463a876aea6ad pep-382 +85716 42b84d3188d10efb226b5b82eb2f310078afb9ff release31-maint +85717 4f0dddaf82d6a7477e44c56c431e75d503132971 release27-maint +85718 7717f8c45fcc37ff705231ab26a4880f2313abbf pep-382 +85719 6e8d2e2d8d828f73989d753d6e5ab2c27ccefdb8 pep-382 +85720 e3e6aa633f33b4e967f703fd57bf5f2104cc2022 py3k +85721 7072a5b281d37e5c972a7ae817225ad78a4acaf2 pep-382 +85722 b5025569cbd406cbae94b937c69aed9e4bfec0a2 release27-maint +85723 8e60d7a96142272ff171be7c06cebee6b1c6adba release31-maint +85724 ad8923760d5c0da7423859947866705328488129 py3k +85725 0511c868a4e38a4c40ba5f9583b53f55652edc92 py3k +85726 b6ad401377fc59bca9190cc153a17a3e21ffa27d release31-maint +85727 1f0ab729c632535b4e207308dc9301171a7f82b2 release27-maint +85728 04090ab3531e4323e143899df4eff4bbe5ade8f0 py3k +85729 c47ef180be39d6c4ee1a4e93cb4ba8b608701c87 py3k +85730 e11ac30199b10ac3579be663f8154c34be3283bc py3k +85731 34beab9595959adeed478376acc9c133b5e2476d py3k +85732 036770dd90967ca2d946f58d441f655a2e8d535c py3k +85733 962e1f4c9c003b482727bd4544403fc003bdba79 py3k +85734 086519c1e7d29a8247679ce6dcfee4e9bf4332ba py3k +85735 d3b61dc732eff2571f143ae33dc33daf19d04743 py3k +85736 a661b424ed47a9bf4337d309cefe054cef7846bd release27-maint +85736 a8eff39aeb0995a8c32bd0db960edc0f110e533e py3k +85737 cf634a397bec81a42a83d76f5d5e8e06db27d212 issue4388 +85738 d4d53b4db96ed3889ae5d6966350988cf8a56858 issue4388 +85739 52cbf459da8bcfaafbc7dba6f6cdfc12eeddd347 issue4388 +85740 edcfc4c89f3040155277d420a1b8f20493546500 issue4388 +85741 59aac0745ec75b8c5b2a92294fd6e93981da8846 py3k-stat-on-windows +85742 3baecd4e0c12a13ca61feef0e1563c809b57942d py3k +85743 6dcf61447c33f681f1466a37620e430906905659 release27-maint +85744 1618cb15b5b984400d8ae8a29204f2be64a23e73 py3k +85745 e850bb930c842f1b5c5d3e6eceb51599a9b67945 release27-maint +85746 5cf1e6e61c6c375aea8fa2c90ba85a0c0ed611c5 release31-maint +85747 50dd86f6f24ad4b878d7b829a039b3a53a0a330c py3k-stat-on-windows +85748 3016a6a4a680b84a3c0e4d2062011d725409a4bc issue4388 +85749 643a07cc9d7fb893981e74b4ad98872fb40c9074 issue4388 +85750 e53c80b016333287ef316f1c3bcd61bc84bb67b2 issue4388 +85751 d7ce37b9bced2036f1e706a97c686235a0f39653 issue4388 +85752 2f1a5506793115175de7d44fbff7507d7f284173 issue4388 +85753 f8fc24a1f9a6c2dbb665a53a1e64a745c5bde6b0 issue4388 +85754 ecfc0dd15d57f0d9a8af76218cb908de35982aa4 issue4388 +85755 e711b858617be72cc66419929f9abf255887c892 py3k +85756 98589d0f11012ac63f8a9de9af7a47348c64a1f6 py3k +85757 c5f97b0541585825c66dc0a43b8fce446d32ece0 py3k +85758 80c0469f98597f81e6c3861e885b6e12a04ec07c release27-maint +85759 8e6b7ab1e1a1407d6f09ccfe81f8389ab2e4613d release31-maint +85760 cbe0224701471c4729f471621b51ec224434d3d8 issue4388 +85761 39366ba5f1c1074b7d3ad193542b63594a54b841 py3k +85762 bec16a5e0cdac1ef38ee6644cb8971a1953cca5b py3k +85763 abda8240a6405dbe9a9e397898c4966ef1b23d37 py3k +85764 aecb56c3f4eb5e72f3cea937693f999848e9d94f issue4388 +85765 45079ad1e26009acc0f572440cac22ab0a774950 py3k +85766 3816eb1286c0ce5958bea95cbb689122bf6340ca py3k +85767 2e19d1f4b612ec893df0f86e680fa49b881beb83 py3k +85768 717aacfd2dcd6836ca98fe7fdd4cbd9805b2e6d5 py3k +85769 e8d5ad0c2f5bcb1e04cb83d6756e307c7846ce24 py3k +85770 a2bb50ffdff3d4f9f4127a234374fcaf7dc05b4c py3k +85771 2f94d68c27312777a834d6b73dc7c29b7313a06d py3k +85772 0b5bfba7a907e6b9a0100ae34f5cd3f84fd664ce py3k +85773 caa56cff2fb3a78eac2b34fd783c7dd17dcde4b7 py3k +85774 080145d3bbf7681a61578597fd9d8d9c5032a787 py3k +85775 e453e5ab207ca423c3257bb94ab081bce677f390 py3k +85776 244090438623e11f12c4374ee780d766825b76fd release27-maint +85777 e79c5767bd05d06f393cfb610a4866a45bc22281 py3k +85778 02c1626ff60fe2a0e9c5655982c04bca96ae38e0 py3k +85779 272b8ff60ba4c0843e0781c6bec9b413c36df5b4 release31-maint +85780 8787f4bb4b216051989ac55db4a7367b2d8462cd release27-maint +85782 bd1b31c37410bc03ac85111c5d10f5278086fb40 issue5639 +85783 6e4eea7543bc36894d51a8b33bc6eeb244c96de6 issue5639 +85784 7b5462951ac9b511e79ca12a2e7f9bad5b96d97e release27-maint +85785 f984469de0bb6d3dcd1b6f53fc6f5e43d24b20b6 py3k +85786 8525544968f3a5964fbe2f058edf7d9bc5841d66 py3k +85787 12eb244636109417c9466341bb6f26cc62f2718d py3k +85788 c6a0eb7f73bfcfd716f8ab29acb69ea205e65f78 py3k +85789 46bbbdcd777f55b6bc25e061b257d52ae372b59b py3k +85790 fe3557dbef8925235274015daadb72828db2ebff release27-maint +85791 31a0ab7ac2d5b5527cba5adb9ab2ae3432862074 release27-maint +85792 ea0f83cf7e995963226720174084329c66cce6ea py3k +85793 846c0e1342d0ba1aed51ac018723e116a269446e py3k +85794 1438d6b67052650f826150dd5b72ae20c6abaa8c py3k +85795 06dfaeb58bde01c368f3d15ef51948ccafd02480 release31-maint +85796 858af60b2dbbcd9bcc4c6ff0055109747dcc29b8 py3k +85797 d985ba9811e98ea580c13af75f5a78ed94761845 py3k +85798 9912d61cdf34c2b09200c40b295aec5a72bf8dc3 py3k +85799 cd80d05f2fd67db616008ac67f08c1b6ed0ebd3f py3k +85800 5b6e13b6b473b5fdc2ff50d5990c2ffc55bb83ad py3k +85801 3835bcbfb29c0c6b310265b0b4d12482acc020bf py3k +85802 902f577e7f94959b057391766c0e14a3a16b888f release31-maint +85803 be8ae6b17539d2995c06ca690fcf1f2e502500d5 py3k +85804 8d7f18332db7dd4194db71f1b3f114c9575b6160 py3k +85805 1a08f4a9eafdc43eaf3dab63eeaccbcbeda53d23 py3k +85806 a30e75820b8deef7101b21ce7ed76c3a78d52c93 py3k +85807 792005de277c86a8a4819ee4cfed02cfcfa731be py3k +85808 e996c61e47c7b39395615e9b869cd237852cf1af py3k +85809 098177acf73f2086081bb17aa2313319b382415e py3k +85810 b9dcfdffcb620c52724a1ddbed0e9bf505dad035 py3k +85811 ebf6741a8d6e379dc710f9a9087dc224d472d5ec py3k +85812 a94fb8db9f1a50f61b0caf54a777409de86668fb release27-maint +85813 db5abd81dc94ed6a68d807d892a256992992071b release31-maint +85814 18989ad44636ad75ef1858506ae94e88cadb35a6 py3k +85815 53639e57ba40923af35c433b0da36f0ce1629d70 release31-maint +85816 a4a27240fe0934b809b738ab729cacf169eadce3 release27-maint +85817 f148f864b168b087e89273806d277ee1d858ca58 py3k +85818 b172d7537b99b5404c968968eb3c13eb98d86871 py3k +85819 5b536c90ca36defb30f67858bfaf7dcc4b43f453 release27-maint +85820 a82072ca06baa051d3c001b19a0ddd59e67fd8ad py3k +85821 c5aebffc9fac465fa8205c87366293003e0bed5e release31-maint +85822 ccf2ff08866b9be6c2ad5c69020b12a4e01521a3 py3k +85823 b4e370c8e7caf4321251a8e82c70869df0453144 py3k +85824 39b9e9de372b201030f55efbb0e651e12e11e76d py3k +85825 5a05454e565fa78f3507638cb3da1feacbd544f0 py3k +85826 1908a146e961dc39f80b0d948df95f39260f407d py3k +85827 db5a5080f9b8a0ee1eb6d4dd9a682a93803d4c92 py3k +85828 cb6418f4d60b9cf649b03446048eef3457ab8590 py3k +85829 4e36065283cf2c6f76d75cf136ac3267798646ea py3k +85830 159530f0e406a864e2445978116de1a005d58646 py3k +85831 660d5f32482ef48943a06ec878a0a7463bddec81 pep-0384 +85832 f570da9a43f86e0cb1bb76c07822e784964b5ab4 release27-maint +85833 44d81922a88f35dbbec25d86c2ef653e76541d8c py3k +85834 5c1ce5c360da21fde3f0b0edb37f40cce167a291 py3k +85835 3a9c3ec5e9d2cffb0cfba645875deaa09ddcb77b py3k +85836 2352e5e44053e95bb686bfb768918c2e160d004c py3k +85837 0f07d2dbf820b8949250c4e90a1a41b61df2fd58 py3k +85838 4e92cdefe4c7437ff92a8f12e3bc663959ba6a8e py3k +85839 d7d323de35e76d28092926eee7199c50379bfc67 py3k +85840 9d3eba03fd25d1d7eea4c85f7d46031db0740888 py3k +85841 ceebb3f45f9fc62389d38faaaf2bad4f39122945 release27-maint +85842 772b55f02835de6768cb38f18bceb60a7c842db5 release31-maint +85843 d35100cc6c6b1b49035359562b5a36cd9f98a1c0 py3k +85844 e55a00cf678a7e971dcb1cf013fa03a7c5a5f1a8 py3k +85845 b9c7bdcaa031d8921654c628dde6cd3c075b83cc py3k +85846 e515d12418586e5133dc4b597c70420c47569a64 py3k +85847 32c4e8e95ca3cb5bf88dddd395d4eef0dac62e37 release31-maint +85848 841892e271f7f85141babbd0669b123d88f625dc py3k +85849 a9c79a9d2d91d09fa284ce4f49b744a1f1263b93 py3k +85850 9da5e04b0793b9926f101a8d03121fa687a08824 py3k +85851 1187156a1f32c116d7ba4a9da52314eb13dfb1f6 py3k +85852 c892e4547fedcc96265dff1a3ab6bd1d943c9834 py3k +85853 29af181de2f2d88f39a321313dc1b9b89df32045 py3k +85854 ba1c73e16c8b1f93a8aa5f9430b5a1e30e3d157d release27-maint +85855 ff6fa20bdaf8deccc5d84a60bf94c55636b87eeb py3k +85856 9e4a2809e55ce0f07443e6283331069a5ce48a5b py3k +85857 4b542217e93ed017f5eeb19c2ecbf57a8ba27eb7 py3k +85858 bf5da636053ab9926dc7adba650b7a969f0ce4f0 py3k +85859 6938d7ad60e41ae509cab4b95423c0ab48cf45c1 release31-maint +85860 df02093588d6bc2a1ed8880f5b4eb0a945c084a5 release27-maint +85861 4dca3f0e0fc0467d77cbce9b8629e5583f6c26ff py3k +85862 e9e3fe4c9e300e5acc215739d4a0bd78dc7333b0 release31-maint +85863 ebb82f01dbe26109c4f4da1db0c35c19c4581322 release27-maint +85864 59abdb9278f720324373ca2eb1ff830504ca18cf py3k +85865 0d50a911d74fe62ac0c695bae854feeef9dd3f12 release31-maint +85866 af06f0972d97a7687c6a1f2cf9f802734963b39b release27-maint +85867 051aa427dfedff59d2d2902550154c2742376a1d py3k +85868 214b9051841ea89e97d913340c862a522c3d4f7a py3k +85869 add1bc05e4266dbb9d084ed2d6938f28e257eaa8 release31-maint +85870 f5e3de87b14bf040790b51b052d538e01a41a804 release27-maint +85871 64de1746cd6e396320a2c8c1e15e1f3973565226 release27-maint +85872 3e78ede8fd21247b7abeb07d4ea3b7a29d4e7865 release27-maint +85873 e4425d68dadf2c3864759840ef0c7379cb8a77f3 release31-maint +85874 a281989a218b0c1d5e9fc55e7435579d7acf58a8 py3k +85875 3ff99089c02e304916bbccddf3a5a2c0d65a8900 py3k +85876 6dff581d30f381fc08e35d74cdd89071787593ec py3k +85877 e5f269dd318b87ea17e61e9ee97257406b9f12a4 py3k +85878 5a882f789ec1e7d58abf1d0c38fd4a3a0be909d1 py3k +85879 5b163f2a602beca31821b8feda6e7376ff85f79c py3k +85880 7ad35acb20b0d498c220357ef20f89b2fa4ad0c2 py3k +85881 2110d269a86ec00ed345b3e00af50b85834c3b53 py3k +85882 731233f904869d9f597c53358cbf20a277d4db41 issue10209 +85883 b9ca102a76d033434449fb77e3413488b93fcb66 issue10209 +85884 66b44cca29bb83305042e935cdc0e42ed9944085 issue10209 +85886 d07b9b0caaef1e4a94a8ca60ce91851fa218d7e2 issue10209 +85887 3f7d0342949186e51326d81c9666ab4cb89a9a8c issue10209 +85888 6f31f0af53576500a55208acb73efacfb003deae py3k +85889 5b8e688ea5aedd9cd5b9506ff04efed0ac115cbc py3k +85890 15eacb4c54228321f389613b0d7031d592bdfd6c issue10209 +85891 dc06aed9b9845f0cc69784f34189966f914493fc py3k +85892 5383ae8db3cdd1b5e019545e928f0e17f26ffd05 release27-maint +85893 1c114d39ae5262ac53dfb853bd6428b7271b9b7e py3k +85894 698d30b45116cbc40d96ede56c1195db1f0d26b7 py3k +85895 613c7b596fe7812de87b4017fe5c17ebcaeaf067 py3k +85896 1b7a0385c65f7ab8897731382f15930bee7d2626 py3k +85897 70ebdbd79a02d083cfb8bb61183980a35c2db96c py3k +85898 c6d86439aa9184518541f9e01de90564b36ad62c release31-maint +85899 41a30140925be13526e4b480005f4276a12ee300 py3k +85902 a56a2a803cd78ef9417e9d006e49bc93de37471a py3k +85903 b66ded4bff2137cb2c4a1afe56dd98ca1e5aa39d py3k +85904 6ac18576e8fa996eabfe8f0fe1b7c25eb11def08 py3k +85905 64cee8d11f2e8b8b65e6ecbd7360f1f7ba2c7a52 release27-maint +85906 e8c8400caa99ca57f9cbf36239bb8c6902e8d949 release31-maint +85907 4af14f9aa970565b20412c82573e7831c62699a9 py3k +85908 5e720f9d1e6c19d7fc3e3310d952f5600e30a25b py3k +85909 8c5a101a63545837035ecb5e551b51aeb6c73b2e py3k +85910 8a8f2aa9db0f990d5ba733ee28ea5c3ef47d73be py3k +85911 722b2a4fae0d196f63c6310d7e0a0e45ef0a8bec py3k +85913 4d23de4f41023c793cb6668de9adadb87e4f9893 release27-maint +85914 0860be9c83433a63f99c7f4bac66620e4d16f966 py3k +85915 16b92971c2d440c2efdab572e8a96b2933fa224c release27-maint +85916 050f0f7be11e2622499011c0ae5f506f86e77831 py3k +85917 f349888fae6439c0bbcbb2276df9c41e2e06de83 release27-maint +85920 cff78ffb932a276fcd30da3483327c1852921ef1 py3k +85921 0b5e6f7edf6e62afcf8fe84512af2d9c37c1b0ad py3k +85922 8e6338ce084664beac7f5e2e6a2881b344bc300e py3k +85923 4a7a3e51cd29a0268ac751f94819d3552ac6034e py3k +85924 d14726f4b4107b56e188b8a81fa672d2ebf7cb27 py3k +85925 cf1d27321c7821728a7dc02fe1739804e33c8f95 py3k +85926 40427760e16294aa9474463ae2570d594d48b14c py3k +85927 372d6aff15be8c64e6e289324182e899a717ef16 py3k +85928 8fa132a3afb5be9fa5f91353f6b6e784a10bcbaf release31-maint +85929 5c13cd0f99b45e4596a8b8d873dae40f5516c090 release27-maint +85930 1532ca21b920586764d5ed13cae9899c8bbfc5e2 py3k +85931 61a9ae522dcca6b49602499e88dc1382fcdd1ba2 py3k +85932 f3a1eac635f98c7ced74b62012d92d0d9e02e066 release31-maint +85933 f8d344849596e1516a4bab4184efcfdfcda4bca5 release27-maint +85934 a4fd3dc7429970767a961ce02071af661920d126 py3k +85935 8b32e4f6bd99d2fb3d5a42ec62bbf46029228092 py3k +85936 b18275b117d210b4118d583e01550270410940c1 py3k +85937 a0626f9727e0f2d08a29533977265fa209d8738e py3k +85938 765d421d943c73514f0fa834b7e49d86221071ab py3k +85939 1d55cc284d4ab5afe374bdad3d92009a9a8029e8 py3k +85940 2c2eced635f60d0a3b7799904d6d687ea68632c2 py3k +85941 eb50c48d9cb4908aa4c55dab3fdcdb5f3a2ee580 release31-maint +85942 3da23deb6e9a519eb6f9857daa2ace34506107c3 py3k +85943 d161714e7c928c4e33a37f8e025ef4ea8e674b7b py3k +85944 556f591665499c242114967c07fc838ad5736a2e py3k +85945 beded47bb17f8b0e3e06d77746478e97643dfd7c py3k +85946 926e8b6b6c9d6f783adf3f1f7ae92e7b833a8fbc py3k +85947 e727cf354720108332fdcd02dcbf93a38b87993d py3k +85948 5386f1f428a15eab58e7cb36362c67b4285fd1c0 py3k +85949 f24a53ede9ed8e84cbc914ac3aae99e9441e77af py3k +85950 1c020bcd50cd7eb450dda64325f9aee11bb74090 py3k +85951 5c013ec27327ddaf91693e9698bb9a7cac5dc211 py3k +85952 e38d2d173085ff285ec469ae650befccb3357cda py3k +85953 40ac45a092b77d4a17c19f646302969cd184f7d8 py3k +85954 c85f5339068a11b9b1511651a5a695dceaa1409a py3k +85955 64ef61d9ffdc4141ca2121fe1bc2ac2831c57e14 py3k +85956 3ccc6ab546c3b1206372a2aa9298bebb0a87ea26 py3k +85957 3fdbc6a4b0d0f7d8102471145abe8c61dd9d76e4 py3k +85958 1883029c7b8a749416f247ca7edbd7ff614e7817 py3k +85959 baad52e78dcb3ca2f0a7b1d893ea31dd08ceefce py3k +85960 0f765c33f4de273f87765bd63427011bb5724f17 py3k +85961 3b210d048f5dac49cdd1885fde067388d9d2f27e py3k +85962 98ceca251988e2ed38a96b288fcda3637e866c2a py3k +85963 9b66a9f137b6c09880c3b55212fb9a7a12611c57 py3k +85964 603010af80cf367f021051ff2de6a8d7f20e7dd4 py3k +85966 64a97c4ebadcf494b9bf13c78d9852e83875ef11 release27-maint +85967 182cb3f82b0b65783becd704281e1431e6735b5b py3k +85968 480e45828d4b19120caeaeb9a3418b79f1d2a6b7 release31-maint +85969 0a2ec174fbcd628c123d68977bd0c575b77c1165 release27-maint +85970 90bc71d6bedfa17263da98b6aced7c085dd71a4a py3k +85971 3227b6f204cc4b260cdf7f584d1265160108699d py3k +85972 abbd9d26ae6c64ee48353bdfc6f59ceb3c79c327 pep-0384 +85973 ea7b2600fdc598af35e0d42ea442994933d6226f pep-0384 +85975 710968a2e163b8d9724c46db1f2e4b55a43c14fa py3k +85976 9356d765d78e3d1b098fc3017e3bd4a58adc9a66 pep-0384 +85977 f9721a8f87bd8bd3d83dabe5899a6a7a21750d80 py3k +85978 ef6dad7517c5c54f9870a4bef296aed3de1766bf py3k +85979 e6af146bb38b8860c470d9df40a8286a17dbfe4c py3k +85980 ea14977a36def88abdd5f5e0cb7227d62a30d90c py3k +85981 b03779f00739d4c6c94e8d0257f0260086602bd6 release31-maint +85982 819b1e0535d190a6d54850f69f83b752d2166486 py3k +85983 b7180afa0dff2f78e75e0bd7d1d01a8c1dfb0826 py3k +85984 36ea71902fc8d1c982aa21ca786bb00e94e39f1f py3k +85985 3856c61b5c8bbbed3d35df721824e9f4e3a022fd release27-maint +85986 b01fc3a42d35fb8bd9d4a964392098cf2a1d5100 release31-maint +85987 72a2d4d940032d255be4a9588c8c3f96b6ce71a5 py3k +85988 d698205543bd7196095f59c3bc5a4919bd91938b release31-maint +85989 e203ed071fcab4371cac3a4d0642e6bb82487d79 release27-maint +85990 b943965fc42bc91f70f3d2f88ed673297e0aa336 py3k +85991 8d8243483228c03fde9c856b14fec292a7aaa9cd release31-maint +85992 24b18cd4d5f3549724adbbfd73bc2d5ebdd9aa2f py3k +85993 42ad4ae6d8eebb6b240a975d2f1a0642e963f3b5 py3k +85994 624e831ce700291fe8e13cd26658bc37b2e26d32 py3k +85995 ce53fea7f9573f8afe8b6658bd8f907f7aeed600 py3k +85996 5b627035a922f7a41215588339b52effba689196 py3k +85997 9251ba272f2ca33f08abc51a8e8a526ed686fc86 py3k +85998 0bc2b06406f8be3a316124e8363ab3a92e91461a py3k +85999 1954c8e31cb38a89d67b315c466336a90ee592b0 py3k +86000 f182518f3f428cccef378c975f442411fa24e45a py3k +86001 71f4f3b1c3356eec5c8cc5e16d2dce0b3ffa61f7 release31-maint +86002 9f10968f511d73f1bac3f9374736498a6fd5cc91 release27-maint +86003 736f3a10d1733103275ea9005a5f01dd142437d2 py3k +86004 06e21500119a29cef071fe67b88c2f2a91d18fd3 release31-maint +86005 732ffa86c798a9ae6bc29e7b833ace2c24a78a65 release27-maint +86006 211858723b8ca94b57ebd63668188e00d0b9b9d1 py3k +86007 2e1ad7121e297f176aada2d61f44aa0a0853631a release27-maint +86008 459e95b6931be43a3203de154af469958b489fc9 py3k +86009 87709c6e56905737b1099e16bc8cf6fb61946eb0 py3k +86010 90bc0c5d722f774c5488add6f5c752c8956d88ed release31-maint +86011 305e93fd5b6d4aedb6f35d7ce1f36f62982578ec release27-maint +86012 3a7559ba8eb592036a2ace0d1836dbd012c5de79 py3k +86013 49a31ae0348a58c14a3de211e1eec88157e22ac7 py3k +86014 612abb1e767621c7b6b27fdc710410941f66c5b8 py3k +86015 8be08761ddc0be57f454dfdb3306017790e99d68 py3k +86016 97f32ba5ff854a6abd2ef937cc799d52965d4777 py3k +86017 0ee86fd902f1ef35bdea64a39c35b9a69feaf64d py3k +86018 0ec3170faa95e582e5f0a965170a9341c277505d py3k +86019 af9f9efcbb9db64d65a3f43d3a505ff272367d4e py3k +86020 085de9603b629ff21450e0a602fb9e8dd1690a4f release31-maint +86021 7608dcaf786ddddbfb0df07d3767bff4209a051d release27-maint +86022 94c5ad981c1b7f61a350c14af6408760f01e01d0 py3k +86023 b4819838eb5b73f21414da94c17f94b10f9395f1 py3k +86024 21872c24a25b909cb448222a482d452fd5ec2871 release31-maint +86025 9e291be489cf5514fb4271b4b21ff62d933139f1 release27-maint +86026 fc8658619bdf49dea3ca419faa7e3e0b57189ad2 release31-maint +86027 d8d33648d1b2c7e8ba2947f667ec58e7dae912ba release27-maint +86028 c9820731883d9bd4ff4b0a0b91aa335914fd6345 release31-maint +86029 f3afa10ce77719e3bbdc02a817cde366130fbd83 release27-maint +86030 131e7cc9e416cd61881f903b3cbc1ca6c28a6df9 release27-maint +86031 32c191a5c1cf9495bda0fc46881cb422f5778f73 release27-maint +86032 b89b0c7f37094a0b733a096ad4a48596483f39e9 release31-maint +86033 ae06c048de2472804318e8eb5060d134bbf0f9fa release27-maint +86034 3217b10f8413a8ad798ca709693603e34cca9e10 py3k +86035 9b81429620f4b7745eeb3dc2db6fbd269dd84ad6 py3k +86036 4127ab1f6338c2c80e4356742688c57b7f5f5c32 py3k +86037 97df5dde9f81ba6d4e27ba4e1682edaffff21833 py3k +86038 a6830cc822aabe333d952867ff96769ff044979a release31-maint +86039 140d471b061a53d172f9e42a620361b7114f3733 release27-maint +86040 75ac13fe7da03bbca4c33e910b9eb2b0d2cb3730 py3k +86041 6fa48fa2a86568c95835232fb790e365041ce3c0 release27-maint +86042 94432e4cddcf6241c9303d087868fd64344da222 py3k +86043 5c5b7a9bac05c6459ce8d9248a6147f16adf412b release27-maint +86044 497964cf9e58e60bab7fb1da9819941c5055a701 release31-maint +86045 5bdc0d6c693933bc83d92f0d26514a9843cefd19 py3k +86046 5757942593a0ebb5079fa216c1306f7e4280bd4c py3k +86047 de1e5eea7e75d105be08ac4bbf2c20090e1f33f7 py3k +86048 719ebcb934f3dc4401556668c1ae5c07606f92a6 py3k +86049 bc6cce4ab3c6367700f9d6ad2a48ad9e29d9b06e py3k +86050 0005a181d10bbb94fa0e122dfb939639e4167398 py3k +86051 ea2c2fc019d65c413be1b62ffed3c1435add8178 py3k +86052 41d5d3d7da218f9a24e7039ebc6f4e2af26d35e8 release31-maint +86053 0a94923783a47d40198e4251736e6f84b6954881 release27-maint +86054 43acc9543416b45b050bfa87ea3c7799738d0925 py3k +86055 9103aa9b2704c9b59cc30eb8c56f27cf8787a292 py3k +86056 0599d2188837ec421f0956df97fcffbebc92af8c pep-0384 +86057 feddb9a83aef1c6ac68153c481467e1b5d179226 pep-0384 +86058 0892b2c3636d9e0c28c30eb76f31f7f08493ab21 pep-0384 +86059 97b9d4088914e384b1b23a31eb1ecfbf0438de42 pep-0384 +86060 12433e989d9c9019e73d3aaf13cd0cdc362632c7 pep-0384 +86061 3933ab6f6f7ac93d9e7889f5f7ab249ea0a625ad py3k +86062 53b51f5e95c4ccba355c55217ad12d959a70c057 py3k +86063 d0f1ca1a81391cd3324dab98a2e80e4fdc38397a py3k +86064 b642441da1ea590fb270cc4239af31b35c0554d5 py3k +86065 eaa50725122b66c592e33f3481c39d4b92d2e3b9 py3k +86066 a2ce8218e0292dcdbc93173afd7e7a3b4fceb963 py3k +86067 6470566196b3d35d5387f60196c98875f7af8bad py3k +86068 0a3ae4a255de3ab75505e1fc84d0029e13c15684 release31-maint +86069 fb12eeb1e7a9ba218ea9ee5fce5fa9f097995daa release27-maint +86070 d0b20a6521d2146ed587bb49d212cb5f0c3105aa release27-maint +86071 b5e1e6f31437f2c756c655d87ab7a2459844b208 py3k +86072 c82487513e76906ab407021c9eb81086b7982194 release31-maint +86073 ff2c5c9c079ba06c3e9a77343765c811fe738f62 py3k +86074 7dc136a010137066b2a8f915e15e93327e69a6a9 release31-maint +86075 451c9bb75159e42afd921f85596f87c897501846 py3k +86076 720d45a6e3169d6b55c62fd950fed6b745e68b4f release27-maint +86077 fe2d19b2a5c6d2df8f8b0a52ad8f569af946dae3 py3k +86078 ba2ae097f5675312b09e1daa3bc6dfa056dce68e release31-maint +86079 206ded943534d36b65f410b3dc908caa199b856f release27-maint +86080 8e65849f71f50938e6dffc63e623c229b77cef1d py3k +86081 beedc7856f5b139299c760bf4a9098096e0d0d71 py3k +86082 9d1133c1863e4c066c1481b4d59d77cfd8b26641 release31-maint +86083 9db8579604027235fd67a3598c6466212b6a4048 release27-maint +86084 f0300584c82444c8bbfa93fea7a61830170d99e0 release27-maint +86085 e5db32f4f4cd682a27f837b57cf35a6fa84d0e90 release31-maint +86086 e71c2e1daf570bfbdc4ca97beb0bf3e5a88e547a py3k +86087 493a2d407c94468061ffdb72226d5e4039d54010 release27-maint +86088 43d2d5afbf738b591433f08855ee430a4c885b0f release31-maint +86089 7c58faf22e9f2ec5779884cfb8a08b4c1d9df7e2 py3k +86090 cb9e10034e4a65ec271dee0c033342cab7c45513 py3k +86091 848912789b794ab405ea926be24e26882b606825 release27-maint +86092 d8ab35ec486e908663bf88ee054d005a1239aee4 py3k +86093 5952b937ab9a28b2225d3c98c6befa3ed0f8dad5 release27-maint +86094 b3c098c3a82669f2194e3b39bf130c62720f5c9c py3k +86095 621f3e9aceddc5e78d68f88925ae63b9e2590a99 py3k +86096 3520fea5e922eb7a3107bb55fb17f3fcaf867121 py3k +86097 52084ea63c42121a97a4589b12fb08ad572715c2 py3k +86098 c791d026100624b431163311c4086c28d5eb08a2 py3k +86099 538f44b32b0a8db99067a246c10679e4f3473917 py3k +86100 ff816889aa61fc6227ae85da89f043d98d4d7036 py3k +86101 9c7ad0ed66cbecadb56abd5fd6fef52e6a976a53 py3k +86102 be1d7f619fc0f0061f86f15ee74f2829af04672b py3k +86103 8e19ff964cc8da1620b587e7823b73730b860dfa py3k +86104 4ea94c5f6d1025254d9793ee5beeb05749d99e3c release27-maint +86105 889fd8ecbff42449da53fad64beb137e03e72416 py3k +86106 a37d6d81f4b1e9d5b8a04d7a906649436247a7b1 release27-maint +86107 a63959eec8ff4addbb894964d300bf98e72c50c3 py3k +86108 b346c8d33e5601ec7a09b95b8b9f641a36628c8e release31-maint +86109 deb23cbab5ab62353956e608392b0ce6a3c1702c release27-maint +86111 ff6f39b3c38e46bd5a524b4646786ccde1e0ae99 py3k +86112 573db2af2dda74f2337dcae47dd1cb99aff1e5b6 release27-maint +86113 f3b7188171c02cb5cd7a7f796274994eedc13f3b py3k +86114 36872a0ed94335d808001a20351f1253fcdf03c0 py3k +86115 d7edd15ba0f2ac104f36c73e67a6648dde3cd0f9 release27-maint +86116 15767902b545fc7bc42bb3a1a8b596b818cdb4ea py3k +86117 49f18a9533cde26208e07e5bee1796bf01e1920a py3k +86118 edf406eab1db7fa2e039a4a56f6a31592247b7e7 py3k +86119 6eed0fc18818c10a6536f926f5b7da2fc833ac22 release31-maint +86120 4ccd068cba0c9b0226b11e722ad36db4e9c6fea0 release31-maint +86122 f4f79556a522e04f0638fa938bc61e1e61389353 release31-maint +86123 004d5f165738decc0cf2ccc381f633c40fcc045e release27-maint +86124 a285843e958a4c3a77c3351c20abad3443ebdb91 release27-maint +86125 457792afdecd610bfbbe2fdc099794e53d3d03f4 py3k +86126 23b49678401f18170ad1d43f40ec8920353cc1fa release27-maint +86127 53fb9916327e0febd548087e70d544262a6162c6 py3k +86128 109538716c591d1630e89f7dfe95ce94db2c2c12 py3k +86129 0ce0f8ebdd2985223823237d51987d461a77fd9d py3k +86130 191067f49fca0552f266e6bc967168ed7c534568 py3k +86131 f980f944be1935426d4f4df14c56695e6fda0444 release27-maint +86132 68341f9c59373fbe86beb2ec5f6dd9782bfe0dcf release31-maint +86133 2697326d4a77d3ec87a935990252244805a1cd58 py3k +86134 a9dbc87a3ff4aca74762642665a142ee7aeacab1 py3k +86135 6d20dde9609c91e7ef6b30201a30792e3752d2ec py3k +86136 b96edb02ef630f719fe9d663a4b2df0569ae2518 release27-maint +86137 2d422f10022ff071477b4af51b186fbdc67b2848 py3k +86139 58e54f563de7cf3d42a60acf20db460a5499c273 py3k +86140 8a4e263796a3e5ff595226e8ca16583e81531ce2 py3k +86141 b8c206e5ed44acfd3c72ee27ef3bb9353825c41f py3k +86142 8ef32955a3494e9c6c4f9cabe8120e2f4f9c9dd3 py3k +86143 5b065cf60dde12a069f8ffade3e0b46d754156ce py3k +86144 f255012b346bc94a160595d800ab7b1a3c4731ed py3k +86145 67085f2021429122fa12edab7f228a1d9372d0ed release31-maint +86146 142d5390ac5c6a02aab2f9c42368e3ec9a359714 py3k +86147 4d1ab2d25baf6d8ec4bb95bfa841a80a41ef98dc py3k +86148 dc30382ba89a1307c840c5d9cba9a303e9bdb930 py3k +86149 f29f62c357e14c95fd246a83c86067035d787829 py3k +86150 81b0e89e3df3cd943aff41ec5d7b78149c2d4e31 py3k +86151 8a5f0873d738021985ba6e824495559e214bdb21 py3k +86152 8d659a5479ca84893a39ffa840198d5635d5cb06 release31-maint +86153 46241a35b5fc507c3df26686e918479c724f28d5 py3k +86154 299735e5fd7f9114c33abe2e527584a71a440ab6 release27-maint +86155 c967314ef61e73f2e76c4edfb410fcab7d6ea243 release31-maint +86158 71ac523a6b12384223e87b468413a9475b30f2d5 release27-maint +86159 e1b61b052c66bd3f4a098132b4102606621564b0 py3k +86160 1e4d46a61fbeeeeb3eb45090f98ea6b7ec86a313 release31-maint +86161 844ece37376414cd3f586a2fd1905697a892751f py3k-ttk-debug-on-xp5 +86163 7c5d1dce39faaa6c0c3700a0d93652847beed278 py3k +86164 5231a5a37a7acfe8673b12418a654f933fc5bfd6 release31-maint +86165 beba2de200dd165e2a33c4e519ff987f41747b42 py3k +86166 6e07c7e4c7cca948565af09867dbd0fec1142454 release27-maint +86167 cc7a88e0889939aa620e247071db6d53d2af0247 py3k +86168 ff6585a2a2432c1aa1cf48e1514ad57e7fcf633d py3k +86169 6631e5f6d2cee422e32ca0c7dbc77ff6d602c660 py3k +86170 05eed9f0ce01552608eab0d69c02f3c6e57f2f2e py3k +86171 4294e2c002454001d474f9964d91e46878c2baae release31-maint +86172 1f45bfb984737017c2f874c64b202dbc0a2f0988 release27-maint +86173 ddf000aef5b07a44ec4dfb98c399cc9517680dbf py3k +86174 3292cc222d5cd86133ddeda545e89e33240ad5cf py3k +86175 270b50296ea9fb0ed075b8731fd42d631c951191 py3k +86176 ea5aef32a17f1736c964e45ad605a49ca01ded89 release31-maint +86177 4bb9c974f519876c70048a6136b14a9be6defbeb py3k +86178 4ee682fbec30dbb14642be2bc0650785584afd4c release27-maint +86179 62b3a0a99b19e4a6d567ed3899cd8a86d203a5a9 py3k +86180 2d5dbde64a358b26993456491182e23b81bf1604 release27-maint +86181 48e5549e2c2589f3dbb1c0e5128a62c59c947f78 release27-maint +86182 7ab72ba38fe02e12b14d8b1789009cde9a0bb46f release31-maint +86183 b836f04759cd3633faf62ff58c94c56f20553199 release31-maint +86184 947b5acc64bd927e4d0676280b08cba6a93747d6 release27-maint +86185 6e1ae323fde626b62fcab2daf2d61e1e7a5f1c4d py3k +86186 430d50e3ac531a4f38b120ca8a7f73a87a878bff release27-maint +86187 8cf8bb5dc5f86ea2c011c9409e66e004f56745c7 py3k +86188 ec9dd973532f3c0482907ad4da235c237cc75228 release31-maint +86189 bb66a4f5ebc2aba8559b013858a963a289c29fbb release27-maint +86190 1ce69ee69e8ec01854248c710d25bf4852081578 release27-maint +86191 4c1c48b3af6626b606805d1df6af3242ca6bc03d py3k +86192 79b3fc681cb09486b4a1bf218214a83b0bb7bfbb py3k +86193 2d05e9fdb597f02dcc1944fc27e09d99faf45bd6 release31-maint +86194 7d28087fbaf3a9a697f47287057258b740031a27 release27-maint +86195 b0249d0839edab123e8346c116bcb9155d7f1f80 py3k +86196 1243ec679c298ba64ef2f5614d21e08ea6d722fb release31-maint +86197 62ff116443391d0e3d995b43b7dc4661db14da16 release27-maint +86198 18896d580290aca306e9c8ed2aa228344e640bdf py3k +86199 c500b4138f7b9c1179a80d9ebd8e30177d4892e4 release27-maint +86200 62085733f7dfb9ec2aa22bcf420d9767c4f883c5 release27-maint +86201 b254c6507c35d2740894eb2c325d1d62540a4037 py3k +86202 259a9bec2326c691affce617ddd26ee98ea40756 py3k +86203 ed35b11ebec68ce7f5d60897a8a3a31419fd02e6 release27-maint +86204 2a332e715766386edc8fccab12977b0d1a754c63 py3k +86205 e213e465a2dc8552c98e5c577a397b25f583752e py3k +86206 edf8c4b00041e0958a383c90684777fd926a9188 release27-maint +86207 fe8962fc0e11993ddc405159a25ec2cc7b9f8d3b py3k +86208 239ffee5edae529446ac34c3fcaf1e3b9c47e29c release27-maint +86209 5b211dc968dfc7bc9a9ff3ee3dafdcf21f2beecf py3k +86210 d31eaec883eb3ebb7108acabb6bf5e4d581042ec py3k +86211 49b0d423023ed74fa30c8bd5973316b6ae31e1a4 py3k +86212 c37bef8dcea2cb590d105cb9564aab664690eee6 release27-maint +86213 edefc5d2b3d74e9fb5734d440db1bf8204e5d329 py3k +86214 d33d62ab91ccacf6e3793a915882b071b91336f1 py3k +86215 73ca6dfb22aa151382038912e080e66c4c16b186 release31-maint +86216 185ab7c4b94691a88eff723512ddc13469d275f5 release27-maint +86217 385d239bcbfa780666b15473b3d595c77bfe5264 py3k +86218 82221410562b3db08cf1d930cfacdb745c738411 py3k +86219 458b05abf9873d9a76e2bc3e7d49d4b823a8c026 py3k +86220 571d317b4cd5f2f3e6531984b9a1524fee1da8ac py3k +86221 5ded25e06a9afbac2fa90dd5ed440fa3709ce1e7 py3k +86222 f90ed37ae16f0a442f499ea061c9c84713c20395 py3k +86223 3bf86785cd9c5e3791b552bdd11c9494ec0f561d py3k +86224 10e0580895ed4580420a8a31e32522c28e1713df py3k +86225 fdd3681b14399643249eb34e71e3f6611d0c8152 release27-maint +86226 e3fd1205b1055e5856e91598d693305a66728fd0 py3k +86227 3207d9f4d00aed32e80d57f832055b089def7cb3 release27-maint +86228 a090bf716a68735679c1a4fd0a3838461451c4fd py3k +86229 9d73f9827c9f4a5f9b3cb43daf5c3d80175f5031 py3k +86230 53ec38d31988a1d2d591120bd14aece2f0393b5b release31-maint +86231 8911f475ad3d2ff3cdcd162502bcc1fe85417a73 release31-maint +86232 96dbb0c168b67953137e508ccb91ee79e5249f92 release27-maint +86233 acb0a3cc1e18c709d5b632b221c04b683684c125 release27-maint +86234 9f86211f0a4273bc901b8655ec5a56900a2f75c8 py3k +86235 2223afe3eaba948049719f7f546109be04601640 py3k +86236 96f30fd54e0fea6fbdae3f97c42291535a7b5e88 py3k +86237 f5dd4a54d79b515f9fa297d5993c875d1eb76e40 release31-maint +86238 a17b21c27a3384749273e7855b3495f6bedd89dc release27-maint +86239 5d84f1b73d510282d559436f43113f3f714996ef py3k +86240 ff072aa70c1da74a91c15ed081fc8260c10b8f22 py3k +86241 ccd99d5479dce7917a9585d0af70447042b9dd94 py3k +86242 d43bf30faf6eb85007eeef78b9dfd4cf1031f4aa release31-maint +86243 636fed8e78d63f62af1820b61eb6f839dffef007 release27-maint +86244 b5648e10c23a7dc1a82dcdc28be9c57c229fc5e6 py3k +86245 2b7eb0e86d07cdfc5ca51e35ecf052a10ebdeff0 release31-maint +86246 df34991c7d0e95ab7cd0a849633ab1740627329a release27-maint +86247 fc48375079a6ae69a0e7573c4c16c78006a72cbd py3k +86248 68f8a95b50c7fae26c3ec20810a79a7445f69d17 py3k +86249 5115d4a2d89824603d0e187a37a0e1384b3d7018 py3k +86250 7cb8043581b57feff837744ca953c567d058b2fa release31-maint +86251 3045ada39269157627b12ff20fa74f30950ee86c release27-maint +86252 6ddc57634de56ed331a6b58ac1a2efb78096c82c py3k +86253 ba0aec67b99a0a8e3fae6f86c0fc1aee19104237 py3k +86254 8838c56b695251d26166822cf3d1519f19af6e9a release27-maint +86255 3bf42d910db8b87874ba50e3bd4b4b1608e65174 release27-maint +86256 ff1257128c750e7d694e31e5c9f4746f724867bf py3k +86260 f457c46f909836c9c1fe18b28a1a4b8c3a9d16c2 py3k +86262 e8502567efaf49e3fabdaa972d31ede12f560bbe py3k +86263 be5469808ce9b8763a726426f96d5fb3e808b631 py3k +86264 3826adca7a3bf4ca4188707f341ca59c800773c1 release27-maint +86265 4feb51f6fd76bd9aac2d489f144883adb03e8d8d release27-maint +86267 073b07b3bdaecd59e13643ec13b924fa073ba68c release31-maint +86268 db65743d062fc5af21c8641f05e83afdc3437dfd py3k +86269 762b944503675e4755a3fb7238db96f73107d67f release31-maint +86270 f0c7e2b112739f3dd85eb52b818c5daccd708eef release27-maint +86271 4348c9b6a72d6d94b55176dcb0efd944a8b50068 py3k +86272 77b8c95f0c1b53c019a3b40d624e48912e479d68 release31-maint +86273 97b95ae2348b2aa7320cdc158780910334760069 release27-maint +86274 7a9dba89a7ce846b49b3820fe418b6c26b2c4220 py3k +86275 10bdda242654550f9a3d89635300f226183dddbe py3k +86276 af04aae193fff659e67ab37693252bd5d8fd8052 py3k +86277 70425fd4785650bad4c7f7dd5a5f5c1c6f3d68d7 py3k +86278 2cc3d62f06808993f455a8ac9274b3ec0b8e3276 release31-maint +86279 1499db99c4cdcf2df32264679a053b30343a9beb release27-maint +86280 286424e75cd924e1a2162b502ada4f819a163aa0 release27-maint +86281 37f43de65d10e9f82f76318907b0682be76e2729 py3k +86282 d03632c368d37285f1c6b9e0a5fe4217cad4a009 py3k +86283 61bbd4b75874e2084c36e834aa0346f93e7c375a py3k +86284 f6b8f336e00aa3767893faadff5d82360dc52df7 py3k +86285 b603d248d4ad9110d0fdeafb5f189745a5965ed1 py3k +86286 b1c06fa48cc4b093991ab45b1f0f014b5fade9fb py3k +86287 328992b0ea79af4e8744814a621c1edb220410ab release31-maint +86288 dcf17fa8482176e76e592190a730e0bd0f169bb2 release27-maint +86289 3979e0cc33c13320db048ec1c04d09df2a8383b2 py3k +86290 ad6490a56d158b9b6fd0ef0cc4f4377bcfaee5b4 release31-maint +86291 745d0f16df76a8b010ab716885f40af7346d2702 release31-maint +86292 6e843211664d72169a577f33c86f32c0c7f5dc9b release27-maint +86293 e49ebbd2c4961ed2a7ce78ac24a6229ce14135df py3k +86294 c08f7d6a023169eb91b6917486530ac2224a6b0b release31-maint +86295 5384e4e46374dad5bbca26c3a49d9e7452618937 release27-maint +86296 0543c02e941c1024c63330b47cd2ea95fa7fb040 py3k +86297 2262f6c44ebca66934af442bc28a6590f469c44f release31-maint +86298 8f09eedcd70a0a893e873ff54ed8018fb1679383 release27-maint +86299 fdcaac0e010a035991770dd9729438883cf72f32 py3k +86300 335423d736a7ff43b1f7fbe11d0eb8703593e2e2 py3k +86301 e8f1ef5fd42383967b532384fe21f6d0b5242f62 py3k +86302 418dcb1c45f7fb801df58d600531d7a91d7687ea py3k +86303 80473ad697ac3067597ecf008d34cf266a2d714a py3k +86304 8154db8a15933db5d2601e86b62ff39d67e6e915 py3k +86305 f8208c33978f8f4f7fd357c4a0d5f8602e5efa10 py3k +86306 88d04f0143c7276efab7f08e961bdb39879c5f87 py3k-cdecimal +86307 855a10efb10a29afe1d294bfcf89d17582feba62 py3k +86308 76bc718fe7c92a9e731a3b68678e507a79870237 py3k +86309 3db17a494dc94d2556e9fb34bf147bb5f3f75a0a py3k +86310 3c1bfe54cd2096a186fda754ac8a9ac8979f8fa9 py3k +86311 6d1294adfaf4409c078fa93f4536fedc3bb30ac7 release31-maint +86312 96c80f42bce6cb97c10c42a0c0c180ded7c734f5 release31-maint +86313 d55b7d0bc9737fc06f14dc17e60417dad57359a0 py3k +86314 074533a75962e0a20d0c61d601db7fe94b5e1ced release27-maint +86315 1ffbd6753a15437ad405dfcdcd4f0f87d2b11e1c py3k +86316 2948d5fb1ebeb5f98a190c93bf77387e4400b6ee py3k +86317 2d6824884435b7b73b6286cbfb4096e1b11db141 release27-maint +86318 a8aacdb4520e16e8c1f9d5a21adcebf355dd5b0f py3k-cdecimal +86319 b0de0ce8a7264b48db830b9cdd56a26f1df2e527 py3k-cdecimal +86320 8378eb807746bb1e27c6c329bfb837e40b1b4569 py3k-cdecimal +86321 1698b0f640b64e5e24030b2d61ddafca863538ec py3k-cdecimal +86322 ca2b937e1a8d1265ef3c691f911599dd0cedf7a2 py3k-cdecimal +86323 2b1f84a4ad33c15f5da2f8edf034824b2b07504a py3k-cdecimal +86324 070368175b249c574e556956f4b13ead07527587 py3k +86325 3bd73113e8107ae5a0e710a4c1e16485b72aa8f2 py3k-cdecimal +86326 427080f2aab5ed35a3f2316f93b9792eca49edc6 py3k +86327 3f1034b434783c4020c705cedc790301f35b01ec py3k +86328 f3c533857fabbb796d33c7c387165627a71a7e33 release31-maint +86329 0ad6a0d0149aa82a2520d143118123b134771247 release27-maint +86330 d6d71d4d6b6506b7582c74c4e88e312e1c891738 py3k-cdecimal +86331 18cbaba61fa56443b203b17248a88f4fd4da0e8d py3k-cdecimal +86332 00bc3af89b7cda1564d3a1ed3f6b5761ecd2d0b0 py3k +86333 8ab1de0813b3bf74634f68fa79480f7e0281d053 py3k +86334 78803cf14a94afb3c84d3229696bce4efd0ab068 py3k-cdecimal +86335 ad648f2b5e0005df2a6342f273c6ec0464f82ab7 py3k-cdecimal +86336 44cd040dda566625a95518d3f193fd18cf64e7fa py3k-cdecimal +86337 428b612cb076d83887d5437d56e1fc4998256706 py3k-cdecimal +86338 bab7e703e3ea9d11472b304c24a85bb07526564c py3k +86339 56b6ccca1d4cb5c7e55a66473e62ab028387c70e py3k +86340 900811f6705d75e443203e6c5170514b97bdb071 py3k +86341 1b5f47e2e0f030f14a815f6971fb9d783362036b py3k +86342 6a2b9117d477b760ca2d0fb4cd3bbd90f1494aae py3k +86343 76a1c5e88352f73d2caf746eee5012e5d6cf4ff3 py3k +86344 fc3b12ebfb9a2b43c3db1e5ada481a3a6bd440c0 py3k +86345 75e02fdbd33e6ccb2393cdfdb9d5aa60c1c7a6af py3k +86346 306339c317586561038966d95b4fe415312c6468 py3k +86347 323d43e8953af91c954e96aa74981fb7df29c852 py3k +86348 9a66feb07a0ac12aa6adc0f802825dc515d73c99 py3k +86349 b347b5cd41126983624b719676617241dfdd565f release27-maint +86350 640a08ec8fa294c6ddb184814bac86512a09c8a6 py3k +86351 b6da97930f631faca9952c34f5a261362d4ee2dd py3k +86352 b4938c34b80360cc7b14424e3b23125b0a6f693c release27-maint +86353 448ab7516c0a06d6a892b1ac5cba195680eb6bbc py3k +86354 646dfdc48ca86f1292105aefdccdf73466af3154 py3k +86355 194f30dc4703459415d9fc45d7de0da81a5c1033 py3k +86356 94d0ccb63b464ccff6024a74758ca35272b72ffd py3k +86357 74fa63aab3fd6c797d0edb26266ed3599a8f13e0 py3k +86358 6f2a921d97203158957f4de16ed9caa93f180a17 release31-maint +86359 40eb0c9a3f923f994e83c8b54e5bc1d03bfeb0f6 release27-maint +86360 8618df6ecadd9b6669077cf609d36e7dfa20ec0e py3k-cdecimal +86361 fe9cf535119027b7f1a7e1a45bb7edb8740ce2a4 py3k-cdecimal +86362 73672e445cc91323a170637303bc09f1dbeacb45 py3k-cdecimal +86363 7a840b6d2f224975c9e777f37db09dfcc831d3a7 py3k-cdecimal +86364 60005914dfc760a823093f601c9040452f57d8e0 py3k +86365 9c09857bda0b49d03f8d0d8751bfc91ea1da0830 py3k +86366 af26bc09495e3ce14bf529bd156c4a9a0a9b3741 py3k +86367 312ad8f98fe3717e5a8a87beadad2608df8ce4c8 py3k-cdecimal +86368 e33f16ca9ecfdf667f4bf5f4f85f3f51acff21eb py3k-cdecimal +86369 eeebb622fd08f8502250f0312ef94048138c5e54 py3k +86370 0aa8af79359d5b50c5940ca1d8fe26fd0a6d4a5c py3k +86371 8f5d2b527634a8c1f2e322ca46c30004108595f6 py3k +86372 bb9e47c991b4182fcb2c03910f565c3234b6fb16 py3k +86373 65364c44e2958e8eec7d873c8fb0f2cdccc6f2d2 release31-maint +86374 d0fc106617e2a7057481849b65b3618092be0a8b py3k +86375 c4dcbe51c2e338ce5bb7e698a0b34c21b55244d5 py3k +86376 9fa52478b32b9fa7f9caa218b9483be04439a4ef py3k +86377 557bbf6b3d70ac8219fa6c00569bfd663c372e31 py3k +86378 2dd519e599cc23d7f5abc9ab195ad8e2941bb8ae py3k +86379 49196426ed2f143225855090fb6a0ce6e698f54b py3k-cdecimal +86380 16a46b6e70544a1499630d1bd664e1c8f12cac7a py3k +86381 f00502f57b28ae80d84f2e9cb64ea3243b7a6816 release31-maint +86382 6a281f040bb134f22c5a183edf9febc82207ebc1 release27-maint +86383 57428e3123acc341c6653fee727741e82ec66020 py3k +86384 1b16bd2bf6c7d0cabcc3581e3c74828790daab00 release31-maint +86385 ae926eccdd0ed0ca90241d9bf4152c6b7ec14c04 release27-maint +86386 1817a16d1eab6a960de77bbe67b626f483dae525 release31-maint +86388 eb4a347b98c16cdc3b1f19a3439cf8f3e9648fed py3k +86389 1817b7088d8dfed1d00d6f3d23a33d7016adb7e3 release27-maint +86390 f93fabdb87ab418311ee50f03ba1c7853ede3dbe py3k +86391 e02758e552e925788ed7f4c0fe5e76021a1f79fa py3k +86392 961c9e8821dd5db55c5fd72260154715332881ab release31-maint +86393 a5b39d89dccb7060e8945673920b8b064458a328 release27-maint +86395 06f76ef27f86c04b25ab1784efc9dc9cf0897478 py3k +86396 dea4f7641940fe3d9a33820f246211c9390da636 release31-maint +86397 74a5894b95134f089ef535259ac2cfb36c3bb5df release27-maint +86398 8e6a1cd1f42bf3f7200e1a4a21588a7342073c17 release31-maint +86399 7cec0dd391d69f736e3b6fe53eee65876f0b0cb9 py3k +86401 31b1aa30306c563d06492da095ecd068c562cee8 release31-maint +86402 e546f7605cf1230ab0d333465eb5446868af36c5 py3k +86403 c5e049fd8170c8a4acb31114daf35a6a1a089821 py3k +86404 aafcd5e0faf1bf9ec8c800a1384bb4eea8812df4 py3k +86405 67eb3f53deeb929c837e55d8d4a3ac2266bced0d release31-maint +86406 5b9ec5acdac4274ad44d6af80aad5a8e5da2fa36 pep-3151 +86407 779377f3077d9e061e64f7b9c4d4eb6f8620a0d4 pep-3151 +86408 723ed1b77871ba21e54654df6dea64216f71ac55 pep-3151 +86409 b522abfd2fde70044c20378778380c7ee88815d3 py3k +86410 98bd3ca1ed8636f96b513ba47441bdb7db450ea5 py3k +86411 c69aa07282a88ae82ca678dfb5278b4206b47d9e release31-maint +86412 12da5fb81134018ff88e730d26340bf8e9214f3b release27-maint +86413 5572b86967ff76e6b28d51f12261949cfda608ea py3k +86414 857d9fe601698263c3dcb4613d49b68c2c61cb13 py3k +86415 166c7be72e78a66256df1053b7a5a6205b313c6c release31-maint +86416 df2ebddc28c632b22f2bf84ecf27099ba6c5cf2e release27-maint +86417 c3d85d2ae1c87a3f969ec9a8739ecca7a85c7bc6 py3k +86418 1a65290e6d03605c0611799fd031dbfc1e6d4a0d release27-maint +86419 50307a7954245203868e6300425a63b99074bcf4 py3k +86420 0a1a4c444381681dedbb4192d1e6135a4da4a88b release31-maint +86421 be50c91e6da53f41cc594fd6408101cc85aa876a release27-maint +86422 62ab39efe1c4b4956a978a0cd8b08092eb629df0 py3k +86423 ec42112c21009ba3e702c978d876364b37ffe116 release31-maint +86424 8eb1c9e8187bd8504145df1b0a49448aa95b8f6f py3k +86425 c9d3e12bcd42e6e9a8f5e567839570e53162c5d5 py3k +86427 0509ecdff8ae7c9585223e1849c534e871af34ad py3k +86428 56fb1e77674861842b73428fc1fc10777ec91267 py3k +86429 03296316a89231c68ef6baabd8f7b48b70bacc5b py3k +86430 0a27c9db9ac79331a2eb6d88de77b346ba4bfc9d py3k +86431 8d6516949a71d075855ce92a6b96e59542f42469 py3k +86432 126102ba748f8f3f2d6dba37e586a9f6f4f33931 release27-maint +86433 6aa7783ea0e9e6a3dc5e5a9e597ebe853948333e release31-maint +86434 d2ef88e71b4ac9f744ec917f92645c0d1c08c866 release27-maint +86435 e2ef47bc281d49832f46ac4944bac793ca386798 py3k +86436 ce4127ec5eeb7dafdeb0c0265154ef01fcfe7bbb release27-maint +86437 f6e813b48af3dacae7b62d22b908edc4d085a287 release27-maint +86438 3d548b71d08281ce582734cf27ff019311facc0d py3k +86439 c21aef3ff5e2f37c6ee1e047baf7319a3584a6b5 release31-maint +86440 ca0eda40021481426b0aa013da817a179be77e03 release27-maint +86441 5ace1da3275e9e80fe3f1603b9fc967e128a4195 py3k +86442 032462479e0bd32afe678741c438aa5d7cdab262 py3k +86443 5fd917d41c9c2d37ddd3f89d8dd9f51ddb916c09 py3k +86444 cabc76115478499f440de7dd822f0eca4ae7fa65 py3k +86445 a83d9888a0d9aba07d046afbfba9aa1610500386 py3k +86446 d12b993629a167819a3a9b84c3c301218f3d95f6 py3k +86447 6bdd32cb55a9a2f0fc84a823e7537f00d828ce0d release31-maint +86448 4c4fe7139c68e21bbfa482134f54358a36dd64b0 py3k +86449 b11a84de44925dcb9627e1cc1259b076176a66c8 py3k +86450 c6b2f417830eab4565d8bbe785313650a8b6c664 py3k +86451 d92a5b850f5e56808bedc01723906ed64c5e6e2e py3k +86452 d9e6b8a7707052bd409ed46f8746756ef5359d12 py3k +86453 d18e9d71f369d8211f6ac87252c6d3211f9bd09f release31-maint +86454 d5ee96e7acebb3fb520ab383819a4fd10c6a457b release31-maint +86455 63d9f00fea0730c1c437a50f64a42b7792bdcbfb release27-maint +86456 4d45a4af32a96f718c13f792742e2630133bc3aa release27-maint +86459 5022e5b73ad197c166765ce7c0a20465a541c372 release27-maint +86460 ce388fb1be01f9219b5f84066c99531e1c34d223 release31-maint +86461 0f398188c7f606100249bd0f93c4be5456a89327 release31-maint +86462 b7d02ae45d15351748c84f588cafd9f2e80b0def release27-maint +86463 fcabe47fe1de504f03ebcf6eacd43297ab976c70 py3k +86465 24fc8c852d13a4765651be76886228b79ce582c5 release31-maint +86466 b45eabc7c0046c517c414b1d9b0ad7884706d7a0 release27-maint +86467 ba014543ed2c235c664fea4a2a757cc9510e9461 py3k +86468 68332713736514698279db214be6380e4a08c1aa py3k-cdecimal +86469 628959fb40c339a6921feb637465326965286ca7 py3k-cdecimal +86470 e45d0bb780dcb3cf20aafd22d1147cef3f50fb75 py3k-cdecimal +86471 f723aa157a82d9767289e8625468f2c498e6b3c9 py3k-cdecimal +86472 da03c6505240eaebe2190f8054b9aa95d63be668 py3k-cdecimal +86473 69c9131aa3224e767d8d76216d9f247b0b5ae927 py3k-cdecimal +86474 33582710e0141fec04a9c6b8c36bbbf3838f2466 release31-maint +86477 98c8e793c0b3dccefa4e5be0bf186b4ab8b4d09e py3k-cdecimal +86478 0df6ac62272ba95d22b3e5c82776e176048d2f3c py3k +86479 4b8ced5fefb746b3833b689ddb79f6c57a397ab2 py3k +86480 34627dca2196ed8c32363a9eaa0e908ca70fbd0d py3k +86481 52fe60216e893232217adb97381d2c2c298120d0 release31-maint +86484 ae6610ca90a19cf68319c10f55249cc9890c3ef7 py3k +86485 55abc0965e9d765d30336aca29b20adb5add0f32 py3k +86486 bb12374c8dc6e7ac15100f0073703576151bdd49 py3k +86487 c4fe4b1300d578953150ddf1b73a4fc2769c3aa0 py3k +86488 ef1db7f5c8a9f21055b3f3897cbdbeb49af47f0c py3k +86489 ff6b2bf75d812671adcb759e059bd13918c66a2d release31-maint +86490 4679fbdfc817f66b15a630cb46dd1cf1e903de22 release27-maint +86491 586a92cf4cc7f47358ab998c949d062ef752c98e py3k +86492 c9fb30fd1f0a5cafd22e26aa4a191fd3072de870 py3k +86493 0d1b66230247c55ce28baf043480100f9a4704f3 py3k +86495 52bf79fd6d6c6f4b6a629b32a2488cecf2c2e45f py3k-cdecimal +86496 d54c8f16c51c2bf5fff42f2253c2834ee2a5a4f0 py3k-cdecimal +86497 bd68cef4f1ee0988de399dddc833b69d3282c769 py3k-cdecimal +86498 7826d907b765bd3e26681434d72a6edb47ee511d py3k +86499 d8cc95d7de62a1fbe5ebfe67a535d30b0577f083 py3k +86500 75a82fe274a7c86fe7a5662ae2348002147ba916 py3k +86501 379029714e2459897106a23566cb8085cd87e03a py3k +86502 94bbcecd958257db0a1d2305f3705f06842c1eed release31-maint +86503 52e5199b65133e0563cb01c27145da402414aa13 release27-maint +86504 b41404a3f7d419b1af24c4c4876c8c6644b1f365 py3k +86505 66e8d35d71fdeafb781a92957e1a10bd3cf839c7 release31-maint +86506 cdc39f6bebf10bbdf7552de126a246e920469663 py3k +86507 af13fb6fb3df7e4a6d9f5bdb619bdfacbd92db44 py3k +86508 15bd50ee2c4c3e9868acc9c6c65301beaf144bff py3k +86509 805c28dd67b3e21b077281e4c9b52639f48f77d6 py3k +86510 483bbebc57bffb5f69421fdfa4ac2ab679e722b4 py3k +86511 f9fb92ea4850292807847f01a85ecbb34674993d py3k +86512 e105e6ac8536514d693638ca3ace49ca6544520d release27-maint +86513 27e32d52005560897525396de66ee21621e0acbc py3k +86514 5bc463b04c8333d31f74a6f350825ec57e961e56 py3k +86515 019421a89ef59dc0b16fa693d48dc0e4fc51b149 release31-maint +86516 8b6faea3057340d56fef9e54dc879bdb95b45dc3 py3k +86517 2978160f491495bb1352a0a00d20dabaf41166e4 py3k +86518 82b161fa28184124d967ecebbcb1395b57012e2e py3k-cdecimal +86519 f0ddc91baec04a4729fb4c7e34587358b18bf707 py3k-cdecimal +86520 bb2769389c531473e0e9c8c147fd9dbc62a91ff9 py3k +86521 378d4f4e9cb50d8fd22794ddb2c499ea44e07252 py3k +86522 fb7ddf1d35940292703e701de867a5c1f5018464 release31-maint +86523 932a3ffa4e5611ee9706a2b16b1f7a41e2a6ea6c py3k +86524 a019bb4ffb50e557569d9a2a6ee8b1ce5a441c9e release31-maint +86525 1daa40b412117268e4d20425e0ba7ebf906e169d py3k +86526 ae315a7f62d27811f3d37911a3c170109dcc5917 py3k +86527 67ab7402e0decdeb3af4332e6e1627a76df56135 release31-maint +86528 27c5453a147f511cc28e3890742d5a431b3b9606 py3k +86529 b8420e767638e5626e49539668efe02590d7d635 release31-maint +86530 0cca73b0a5bf008777ef945961203ff04edab13c py3k +86533 a1da8243b63e6ac27d02677d04d9e5815b52aeca py3k +86534 420301400403f0e239a7a7729c647ea97f697584 release31-maint +86535 e983eb2229dfda0e7ccc1407cb5df5e06638eafd py3k +86536 4b3a5502002d218900fe97141e6691fccf9d5e42 release27-maint +86537 d9c89072044e48d75bd4891a9641515b85ab7fe0 py3k +86538 e37344a8f0c91c39412727bafd5689747b48c310 py3k +86539 350898e095aa6fbcf05ef9bb8dc643461880cd45 release31-maint +86540 b9be45f433b92db85300e039320d049392e2c308 py3k +86541 51f72c5fe28e4bf1ac86c809cd41968b274f78fb release31-maint +86542 d4f5e27ed186b6db36adec7bbbdd0c88f211b31a py3k +86543 4572d28dbac733a3d711fa47dbac39f81aa4976b release31-maint +86544 cddcbe3bf57a2e83797ccd5421678416622e18a6 py3k +86545 c64ed6da48b9ab38b5926383d00f05acb2047a39 py3k +86546 d22aa5ae77625f769e79d96605964a036244574c release31-maint +86547 5ed37c2c05741dee9ab10f698ba562442acdbbee py3k +86548 e9ac3f3111995781fb9561ab5b1bcf0cd896a1d0 py3k +86549 84a305e2e548893174c6a530b0391038ec4f4380 py3k +86550 4b4c72132ab6eb2b35cdba9aee9e7c3aad01266d py3k +86551 e530fc7682bf2964ba6950431b8744ffbdaeb124 py3k +86552 40970e89e60aba39f4752543533e607193c80dc0 py3k +86553 825e480c930da1031ec7917d09c44f01239ab2b6 py3k +86554 f079643915b53e9cf018f6383af93887b8f7c92f release27-maint +86555 245f6ca3b2330feb4a2781bdc42760b2a918dc54 py3k +86556 53dd700a35b6f2fe677007984111edec21ead6e7 release27-maint +86557 ddb3bc8e6990df4f1a61564d1fabbf3317234fe3 release31-maint +86558 19b711a77eff1b437d66464b00fec909481abc2b release27-maint +86559 2dd53925f0071dd65e8e13307c48201d72d251ec release27-maint +86560 5d55c5bb8ab1c4054d7640621af1ee42ee425f8e release31-maint +86561 b46bce87d2af01e4589824d9ff92d3391782ca7d py3k +86562 debc766419122af608a76a5708850a9941bff68f py3k +86564 40b0c69bb2bd7506f58de8c9e900c309172ca021 py3k +86565 c20ade63f3dbca1b8a27824fbec606117c7cb658 py3k +86566 4ed6101f8ab255543cb75cfcc035d9cf76694b49 py3k +86567 7f32c5f56d1a118d7e0370293f5da2f5ac408972 py3k +86568 a1936fa63580d62c931f52304985289899f185e7 release31-maint +86569 59e56b82e6cb2cfb5953297e5b125a1dd387923e release27-maint +86570 4e2da527f5b1db1afe18481ca6f5aa36cef4a50f py3k +86571 aef8f1850d24d70dbe22197be0753d93191686ff py3k +86572 78a380d57fea194ac324df985baa9a701fa58a43 py3k +86573 51e1cbdd8fd2856dfea3b6480e4cc7b58a3c3ebd py3k +86574 2ae4eed4a3b3787e849afc8fcd6c6f0457857a71 py3k +86575 838f6948deb8b6f80568fd89e7100f2e136bab20 py3k +86576 3d2f55ccd660ec61535ab64cdd3fa6b178d97cba py3k +86577 80b48a3a24734c5388f1881ba758e1251cb972e2 py3k +86578 d57181acaf8c43d643a38efdb1479a727cc32738 py3k +86579 1ef4651feef89b802acd73e53c390b12bd5a1386 py3k +86580 41d58bec3e08b45a380244533ed99e856a779c84 py3k +86581 4e512a949b60c048015747c584296f984eaae960 release31-maint +86582 a7c22107aecd04572bf04c384cc0ef1608604981 release27-maint +86583 66d40b6a2bb1ad80dbf8d452c6652e59c984ee56 py3k +86584 3a0e7000dc8f9d708aa5eab5161d647b711bfc3e py3k +86585 ea8355cddd9f8197bf857872304c5b72205931b4 py3k +86586 bc9dc7e7f373dac6d5516cb824db49b63088e519 release27-maint +86587 3c9b1c05ba9ec57bd4c1a9c397bc892c9f04b681 py3k +86588 7cdbdbf3480b8f02b9d097f8a0de5a256d082bd8 release31-maint +86589 c404c2a346a5844b5a958db02e36700c4070f73f release27-maint +86590 631d844bbc45932d588f54b67b94bfde6d53738b release27-maint +86591 965f859e60aff91768ef6d6317cf9cb73bc70836 release27-maint +86592 50751822f62230665aa1fc49b27c35fab068220a py3k +86593 c06ed25e69b83327d5b5c9dab58c4cc12c763c4a py3k +86594 4f29aa8f9f54b1a25d69b40fee91f28b9c5304f4 py3k +86595 43e50bb923a96eeaa58e19c990f946541e9ff526 py3k +86596 9fe76c26ea9fe7bf3beb34fdd1299cb180ec6ea8 py3k +86597 dedf719b26a374d2924a2b00a6d37b24da9ec629 pep-0384 +86598 1293f819ce36622e4ac37658334d5b205c349894 py3k +86599 53be1a67e964aecc39394ab4a0ff328815cebe88 pep-0384 +86600 13a2a5de1b7f6ebc55306c56c91594091989becb pep-0384 +86601 86e3f6324e6502350e1e1bcc644394a4fd0a0ff2 py3k +86602 44b31219aecd332ebd2ceb2c9be226480de7c953 release27-maint +86603 671e6bd181143d2846dac12805a001bdc3dccabc py3k +86604 b6d7c5b6f1f2013b0141f5c5b2edbf17c1a3dbc7 release31-maint +86605 f5db53783922d27677783988f2b9ac7b4ef70039 py3k +86606 eed42d2835622df8aa49450b567f49b6e09bda3c release31-maint +86607 6eabf8c1a75c7e5232cdadfb2b5f1882418f058b py3k +86608 9fec6abca7d76762262efd64a6884beac0f45e5b py3k +86609 4ae2d011a80ba5ceb4a453dadd62dec69cc182b6 release27-maint +86610 59307aa7d2fe67a081ae4ef7133717c4d83a2a2d py3k +86611 4335693df25979d9bf87520ba077e1b9b562bcd4 py3k +86612 1cdc9c1c430e85c5b653ad1263d41f817f410f3f release31-maint +86613 7aec238682877b39b2c46284323d748daa77c368 release27-maint +86614 10a1c399864e463bd07417b23e03ae85fea6dc60 py3k +86615 cfd538311b6fa60fbc935836a4ea407d9e51986c release31-maint +86616 48fdc2d8f896ec74d50792629876f9789ff66044 release27-maint +86617 7af19e99d2f85eb97ce0dd3c74727024590556c9 py3k +86618 238caaf6852b733ef050d1669af9877a72d131dc py3k +86619 add7e9721f809471361eb4ab4a3c5798018a51de py3k +86620 e01237831ad2fad69c5fdbd124b9071f20d8d501 py3k +86621 398b21821d1b4a00a447f2c326b2cea2b0445c25 py3k +86622 257512b97f823d3e700afabb879bf00f90dd5762 py3k +86623 1b448fd7e1a248c4932157af142a8f27f1a6d590 py3k +86624 acd9628248191489e0631b8ab39da57756abfc5b py3k +86625 459a69025d9c16bdb9a84260322289b628987541 py3k +86626 62182abc116abac55e8ffd76b3c4d16a2ca0b723 py3k +86627 07cadc2c6438299fe3c4e2daa1be6b8695d9cf3b release31-maint +86628 837ad5854fc93b40c514292d0fbbf6923c03e518 release27-maint +86629 2beb25369289752674342c0ea875d799c0fce521 release31-maint +86630 5c06d3d1b9c90d5038f7eb2ed3a8cbbc8c9196f0 py3k +86631 544b453e60a58eec0e6a42834d706ca03be1c862 py3k +86632 2068255b4da00a18fc6cbb6afc8cbb1e905e5846 py3k +86633 fdfc6dca80483b3d13fce5ccb6dc19240e473d52 py3k +86634 d29a67c26600c76834b90c6178f6f5b2c8253b09 py3k +86635 9a0c2401c6a6e1f01bce7952130fd5531966138e py3k +86636 f54768a5e2f55dc6e1e77920205474ba00430748 py3k +86637 614c84670c63d35a0f27a888d86985390493fe7d release27-maint +86638 c13f8980ca7fdfb38c45b406f8a93395a8794db3 py3k +86639 f8ceb6afd7a91aac9a79799159b9b6dcf4395322 py3k +86640 9717153d558d049e4c352155e99e871dc718c6fb py3k +86641 61d1ec307bb0db491eb6cbb1b20e2ab7e8169c76 py3k +86642 322aa3e82768be3bc7c286a87b5e18bf5b737420 py3k +86643 179dc4c3470f3cf76dfb9c98c2791107bca54743 release31-maint +86644 943a8649900dff98551ec225554ff6ea89a3a285 release27-maint +86645 eed3288ded895fb2d89e4ac4e995b520deb7de89 py3k +86646 a784457e000e5c3c9857965234482b6c8aefe278 py3k +86647 1ef8e9a75fef3c722305f648b7b484ee644810b1 py3k +86648 22bcdac181bca911be801ac6a45d14f444de6d40 py3k +86649 1ec0580d9d9d7b6789f29db88128cd5df71e37e0 py3k +86650 5ba8bfce7ec1d6dc06135b4971ffb00d22c5d0c2 py3k +86651 8ba16aabd5646b7286588e19adaa0de4d06bda15 py3k +86652 485dcffc88b45e1685ec1cfc687ce64cd035b375 release31-maint +86653 f47fcd5b501dec1a82db3f8e4445494a6b7df54d release27-maint +86654 7b14f1ff602bb508dd5549a97414e71b3299a976 py3k +86655 add8a03ddee6e35d476c5e669682bc44f835bbe4 py3k +86656 07a4870f60a07f0f53cd5e0f17f4851b32572696 release31-maint +86657 a081625dd6c627eb3547ff65050d74e2df08ba0a release27-maint +86658 ffc372c8cfa0c763e3c45f332b4d1f8088132ab2 release31-maint +86659 5d112c787d6e94f0d17fb487d232cd9d16dbb2b2 release27-maint +86660 f02f3b33dd8f91f42b1c7030302a82558b0d45d4 py3k +86661 5abfc1cc22d11f3c8ca1b6a08bcc727abd7e52fb py3k +86662 66e0f5c65158689e3ca61deeee50f694e20f3448 py3k +86663 c5ca1a9b1fdf5f2c4f7adfa8c8e1ef83d4e859e7 release31-maint +86664 0b2716f8afb5904d42829b499b17b7f55be0a267 release27-maint +86665 0efd42589f171e3818a881e906a6c87aa2b2c9c0 py3k +86666 dc6a27bf85928ca75e3baabb40fb15436bc8e7cb release31-maint +86667 9a19068ba8b10e113c44e1489e6cd648210470cf release27-maint +86668 102db0cffe51f6cc4c9ef07ddf3d48ff0f2fa561 py3k +86669 3e95f089237a9e27997d21fdc0c2d1939297002b py3k +86670 0813c2acf74155194dc0d009da68bfcb8b74333a py3k +86671 ada67de64919971cab9bc2262c073df5200ac97d py3k +86672 5382ca95c3f6c316d8fdbf96c902305947dec2ed release31-maint +86673 d6b6f99f5af9e0151a228431fd1eb4ceba442f8b release27-maint +86674 aa64d4f1a79561535caf5b167273854134c68ca7 release31-maint +86675 2ff758315fa10c5b886dc6eaf248ee66e3f53ac2 release27-maint +86676 7b70512827cf394d29e8b5ac1ad649c749065441 py3k +86677 0a9fd5c94dc359589d4ca122a8b4fc812686d5ee release31-maint +86678 4c2b2be71457f750bbc6c7679734a10bb01132d4 release27-maint +86679 c6b7df1bdf50e48b60dd7fd24467e74ec7a4638f py3k +86680 7ee590aeb2b342124eeb36db0421e1249a256ff0 release31-maint +86681 d9774121a6dfda7f5e90b945f7f7340bec6f83df py3k +86682 6f25cac2836ead79639eb84e5ac139bd1044dea2 release31-maint +86683 4f35866fd8cb12ea85efec606ddbe63f66964c81 release27-maint +86684 f150b678548edf09c982dae11d7882cc7d083b98 py3k +86685 3362589c0c02abe2075bdfbb95ab4b5e529ad1fc release31-maint +86686 e0eccfa9ad6ba0a04bdc7d4b24c9e25a8a0787f7 release27-maint +86687 82ac753bf62a9a0d900476be6126d8abc35feb43 py3k-cdecimal +86688 e8840331f778e77dbe0de5996b2d9a9e71b2c95f py3k-cdecimal +86689 aa4deaf344d199026e7c2dcc2c2c5a534b46f0fd py3k +86690 dcad706b38fc48b8deaadaff2b96fe5635fdf7b0 py3k +86691 0c668146b126a6fd42a15002bae8d3c9358dd6dc release31-maint +86692 8dcb17781e8324ff0ac25631a10aadffda2209bb release27-maint +86693 127f5168a774f9cdef55f46081a75055a9e63f39 py3k +86694 98e1ddd505bc29afa4a8fc4e8180a2a6a9d19055 py3k +86695 58ac5160d1b7bbbce78d151dec0edfb5a6b6dd39 release31-maint +86696 3f62350edd2e936467e370d45216366b43aa1654 release27-maint +86697 40109301828544f043a146800fa7f7e50bcc788f py3k +86698 cc9c51f9524f9dfe1b3216a944e66305d9c59eb9 release31-maint +86699 2c370065c1b4de9151f03844e5985bc020466d07 py3k +86700 260ff379115c7b7c45e9e0e6e3b8138131741041 py3k +86701 dcb60bf26dce98a60e187cb486e066a0cf07194c py3k +86702 5a69a589c6f08697ede5de3e33195a14855780e7 py3k +86703 a739883ee6c560617fc743aa665cea5e55dea946 release31-maint +86704 952282a5047fc21ffab22851b045717acfee5acb release27-maint +86705 3303abe29d0b38d2268a19e49ae54d93c747e2bf py3k +86706 a4b7a41dabd94c836115ab7083905e0d76ebe90b release27-maint +86707 63f114b09cafa920f4004ebb36027fefa0b634aa release31-maint +86708 0ce57951aec62a92311432e3756c2897ed4a1c7f py3k +86710 c86f1710467e7a5d4ac8861a9c21d87789c6fc7b py3k-urllib +86711 6ca2890bab678dfb5b03ca3188f96af7da5e8e7e py3k-urllib +86712 0f8c52ec9f7f15c1e13ddf719f190be9e02c5bf8 py3k-urllib +86713 9adf397f56e7b43c7da97176eadd019cf7d673ba py3k +86714 8b4a531ad352a448b8d7f9a93a3a9411fcfe5bfb dmalcolm-ast-optimization-branch +86715 1ae51d13c25b9235606893d1837bd36fa2f5fd68 dmalcolm-ast-optimization-branch +86716 be0f4d8bfceaaca56427a1e211adb462256654df dmalcolm-ast-optimization-branch +86717 9f23c5f4856c0244e87936480693f5b162112c32 py3k +86718 bab9c207e1cf8ad16d23244d0da2c143e7deb491 release31-maint +86719 1404ab076b58f44c623c6f1babaf95a21b2d7e4f release27-maint +86720 436daf095e8968e5ceac4f91adcaec58b9dbb7e7 py3k +86721 0828814e03addb820a754dba424413bc5a293549 dmalcolm-ast-optimization-branch +86722 61f9d3bf234cf0f90df92b39e7fbd86cbc4caf5e dmalcolm-ast-optimization-branch +86723 0924f40bb6dc51c5bcf66248ffeb2a4c4775c7ca dmalcolm-ast-optimization-branch +86724 4258e28cf44060ae43d9b3980bebb0fa629d0c2c dmalcolm-ast-optimization-branch +86725 652baf23c3686e520aed3d0e7b77c6e5a4a2443f py3k +86726 2889ed7341e07e9ff94ca15c79362a1486859a71 release27-maint +86727 0a1baa619171af324869ecbcb6c71440298759ec py3k +86728 f3a61dafbf6bad88f15f81d7f5303a55d47418c3 release27-maint +86729 4fed0065983141ba02ac064624bcb67d1bb3c49f py3k +86730 83b0517d0fc5e02f1e9ebb56062178d48c70fd7f py3k +86731 a763ed3d6e8caa87ac17ab8200e937de5ce923f1 py3k +86732 82da2abce7220c34630c5f9c90f332711a4444ff py3k +86733 9cd1036455e7d6285b4c1fb343d321b1e6c47739 py3k +86734 395ac6e319a8959b32117f15a0cca376eb08839a py3k +86735 26f80f724b4ff169006571a5f3f40a0eeeb367ac release31-maint +86736 2532c4bc0373a168ccd8e6779c8afbbe75725122 release27-maint +86737 d6e8b7e250c65ac37e939dd877c7500a4a70b4f0 py3k +86738 b73812690c6e658fbc99fd7dcd04d3f7f87d9d1f release31-maint +86739 2877265bdb01ca15ab15ff6a70b5b458e873e16a release27-maint +86740 98ca655323c05cb3d1aa7326d8f379a6a352784b dmalcolm-ast-optimization-branch +86741 4dd7eb2d9856cef3fe4162e6742b3b99bd89f400 dmalcolm-ast-optimization-branch +86742 858e86db442f5ad81acb44938818a73b443645d5 dmalcolm-ast-optimization-branch +86743 cead04b3c5ed13f2f5b3bdc4ff1fb8997742d300 py3k +86744 0cb26526419d88b7a46d535ee37a5716778ea2ff py3k +86745 c54c411d3da7a14b6b3e89e025941f2dd6286404 py3k +86746 03d933948bf3eaa8c79c649debd56cbb6cf59516 py3k +86747 67882105dd6558bcb50c3f27725ac9717cb8e6e3 py3k +86748 4d3952a21e25760a29a0c68c753328eb46145e94 py3k-urllib +86749 ae82c770769cad55f1f206958db87c53f5e7fd44 py3k-urllib +86750 1178e2545dcb5c682a2065c52b3ab5c4982f9ec4 py3k +86751 eded691497b748c3ceb8ede0c1b167dc728da55f py3k +86752 f3df93e262675ac5b9ce8d771f806e8977f5eb64 release31-maint +86753 0da42cd0157655dfceb0ce21105878abfd1f9ce5 release31-maint +86756 457c7e704ec299c39f61527dfb66ea05d2d1ee92 py3k-cdecimal +86757 2d6cdc8185cae575cfd23dfab3ed10e834958a0b py3k-stat-on-windows-v2 +86758 140d8a657705433a8345ec84c3cfb5d2553d17cc py3k +86759 06d23026f904569b7ee158f2ebcafeb780419985 py3k +86760 f59dbf28e12c3f6b9cc8a9a446b20c82dc385765 release27-maint +86761 e48ed2ef6d5ffb392d1bd78b90362682d97cbf5a release27-maint +86762 7ab4fda77031276553124b8b0d9f280b7db945a9 release27-maint +86763 19232020e491d78ef1b06a3d7a93ec7967510e17 release27-maint +86764 8ce9ae5a15427b07ddfc0a3a14a6064aef265fcf release27-maint +86765 6c35abc7d0d2192e32139d21bbf9725d8799e18e release27-maint +86766 45ab55fa3dc0df958164bc014487b00a37ff0042 release27-maint +86767 77771b085eca75d4b77058a3c49dfde641c26919 release27-maint +86768 a803fd841fd17c3c4358f28d0b1f62bb58dcc86d release27-maint +86769 d6c5750153bb118644be106959aa15527cbaf139 release27-maint +86770 37b37b6a8972bd6f0568d91f9588be6ea07f256b release27-maint +86771 2955f337969e81644f107cc2e78619d20f604598 release27-maint +86772 e10f618c967ac293c6b2a16e584a1086dbd5965e release27-maint +86773 835c176239d0257b2e69660219115decce40d175 release27-maint +86774 fb2aa45a1b22e3b1b5f3343846a1fe0c53129ab2 release27-maint +86775 8b6a9ecbe989c0b4c0b7bdf8ba5f9de575f594bf release27-maint +86776 2e58126dbad08703be2f33c38a87c41de6b56ce7 release27-maint +86777 4136515cdfacdfc784498a2bb7c14d3ab8247ba2 release27-maint +86778 7c0eb8d56146b9aeaf397c4e7c0d4fb7f0160a16 release27-maint +86779 71b771519333a04b1233d1ba5afdf266847395a5 release27-maint +86780 a372fc4862816674168442811520da29dc7a1761 release31-maint +86781 45e49269e0d8ef1dd28223f649a2eae7ba69123b release31-maint +86782 e7593feb5ad5c3fb22b7488109f7b77c3e30511e release31-maint +86783 a9f0ec604c8ad0880bda197d1db19e9a59bec020 release31-maint +86784 05ee6f8c0260aa5be1e5a1f4f7689144d5e9fbdc release31-maint +86785 39b5af773e7596ab77719af13d0656947f59df27 release27-maint +86786 9bead909d8efedec7f40634d60369be54fb68db7 release31-maint +86787 9b344be1be9a7e9b90254eb4ad2bec80759abee6 release31-maint +86788 3ee6d038af9b46e80934fe970cee0e6771267e2f release31-maint +86789 7281937b2d65b3d58bc7cbd589b4373944c5effb release31-maint +86790 9d6e2465f5925464fb094dee5e18ea2d6ed1d829 release27-maint +86791 4ea1c6a4e92d0fb996b44982e1681ef7da712bd2 py3k +86792 2c16728162fddbeb6b2fcb2f9fa22877ff1f26a1 release27-maint +86793 0000bbab08b4476846c021e4597921fd0652e3f4 release31-maint +86794 b0e97dbd98b8438e1c6e81762b443c4895b4af0b py3k +86795 fa017bcaee10003b2388a1df32417feaeb8665a9 py3k +86796 5084ce948437859d51a26761504671a8cc0bc3e4 release31-maint +86797 46feaec729bdc67bfb20491fdacd6629f4a70f9a py3k +86798 fb5c45d38e2af5150db258c2f543386900d39b92 py3k +86799 ac5207dd8d9a334663f787488698a54e3a7759cf py3k +86800 aceb4516a8d44a2d50ae5c56e643a0cbae315d21 py3k +86801 bf5f4174b8c2d5888a08b4cc6b639ced5b1e027a py3k +86803 231b0bbc1f90464c5dd322879ef8ab02db7c7baa py3k-stat-on-windows +86804 329842df06a10a3f6915b3c120edfca015198f55 py3k +86805 0e1dd4548aa17c1b08bf7ed8ea228f1ed666288d py3k-stat-on-windows +86806 132a94ec0ce80d6ee65a77ee6504b3dbaef05de5 release27-maint +86807 4279e417b2a024b0cb4be802d11209d2ad9e2032 release31-maint +86808 fadf74c0c5043d9798eb38a602da6760ae23de5b py3k +86809 786ee11e0c841a0b53e6147102dbed539adb984a py3k-stat-on-windows +86810 c7a342a798e77137790046f98ce199c192a72b4d release31-maint +86811 749b1e71391cae3622e42805f367b2f6dd1bfe09 py3k-stat-on-windows +86812 c8163c2a1b6f4de141660e3fb391c992a7273e8d release27-maint +86813 c82ca3beb4df15e9532dc1375f39fdbc6dba9827 release27-maint +86814 9feff177f44d1269ae23d63690cb6311c0ef8b76 release27-maint +86815 ad79f9b3a021970af0eed4e2c7f41fd3797d3459 release31-maint +86816 f22225a9d72082af66a9333082a011e3b4df2d7e release31-maint +86817 ea4ec6de9cefe09a86d8b324a2c8d0d846280f6d py3k-stat-on-windows +86818 abbc58a06e43d48d9ef3f8b54e6ef649d7534443 py3k-stat-on-windows +86819 96ca99dfefd8ee71b403da96db9bed6d6ebe64ed py3k +86820 86a6539d2c2535deec51947e49d6bf382187d45d py3k-stat-on-windows +86821 0b6340730913c4cc557596e6d821ee62bd4a55c4 release31-maint +86822 b4bfdc52ad5106b174a9dc1673efc8c8e3347cc7 release27-maint +86823 ccf2633b95dd89f5c1ef15896435149bdcb694c9 py3k +86824 63341dd360af5f7038702bf6d914fc07dd90a1a8 py3k +86825 fee98b604139c7f5ba813aa77286fe4cfb9f2dc5 py3k +86828 596239da3db79ded0c582ad884fa6a55de8580e8 py3k +86829 d3bad41ad7017778884541de273429db4d8ad923 py3k +86830 58c2ac60ccb9dab4d25e7e2e90dde2769bdb497f release31-maint +86831 82ade213a66df92fb743792117f5f0dbd0bf6fd7 release27-maint +86832 5395f96588d4f0199d329cb79eb109648dc4ef5e release27-maint +86833 7e38f8fbbaddab8a16a665a494afecfcd50df3e8 release27-maint +86834 a4f75773c0060cee38b0bb651a7aba6f56b0e996 release31-maint +86835 dc26e4a7d2e60d0523e610221c559715e8298e46 release31-maint +86836 63ab39d11860e15628304032db37bb5a9fce1a2d release31-maint +86837 8737fb17f44401a0a2e97d54c9ae50d5fc4cc735 py3k +86838 a27fb1e6e09d44e4f11d77f497216744bdad2eaa py3k +86839 41cd092be93aa40644bc885c793f7543c41d9c9c py3k +86840 f951274af3c7f57cf0843d0df5b9d784cfb1abcb release31-maint +86841 72f0bea05457790084bf8278aba06e9f02f5f8b4 release27-maint +86842 1b77f2eb16067866a8b925e9fdee3fb833905b4d py3k +86843 0f0c6b879796bee77ea3b75cf02daf23b23389fd py3k +86844 d0a16f9f3741fd3c934cffd39490761f756cdc86 py3k +86845 53818e4c4fca56488407d9ccb2f8c8c1ba65f661 py3k +86846 5be3efb47bfd58368786b52e31c0a458376e6bea release27-maint +86847 e0a525202c77cc679755ff81ee35352e1ebbda64 release31-maint +86848 c4aac8e6988865b40ef7a8f71786bad8875d57f7 release27-maint +86850 27ee42b0faf6ccb07e30b21d9d6f64b7ce780c70 dmalcolm-ast-optimization-branch +86851 72ff4353221480b63d681853b2c802bd0ef94f81 pep-0384 +86852 d24aa3b1ee2816974498fe31335a6d9006276ecd pep-0384 +86854 03d0d186713b4fe497cce84d0a831731425c93e0 py3k +86855 bdd57841f5e2f46f8c0d6a02d42708ec574447b4 py3k +86856 93cd4de8ee0b04a1302facb80ffbd42626d8b056 py3k +86857 69ec77526180fbe90e0b246d2b8637c78cdffd0a py3k +86859 16e3c95bc46c5a4ecbe2976635c1a7f8feb56aec release31-maint +86860 7a5f26548e1c28530c874ac12861b93ff758a417 release27-maint +86861 e5fcb4226b42a6736f43df31470ee7944ee8ab40 py3k +86862 2e0d9009ab6b9e1c71e1f96e72d9d3f302b29dea release31-maint +86863 8fd13c5d3882397441b97076a734f01ab93df6cd release27-maint +86864 e812db344a65d552ac0200e54e77e1f8f24fccac py3k +86865 ead530703b9be5cb89fa4c231fe7fe93cf357a67 release27-maint +86866 667d2834401719da2fa4395d97a28de3964da9f5 release31-maint +86867 cd6d0caffef24be06d2ec8806b6c20908f30dac5 py3k +86868 b0ff333ec3da1bd6326a1547a172a0846f8435fe py3k +86869 e89aa9147624ca639b9ace3b3a5800217c616e6d py3k +86870 e7392ffee071a76ac0ecb518051c252222083f13 py3k +86871 6ca8922dafb53b59d8e797deff7dfacf45f942b3 pep-382 +86872 0cca966153951b963bf19f51a0808b1a38dce2c0 release31-maint +86873 de6e79c5b1ed443ff8d54b2ffbf867d84284dcc7 release27-maint +86874 6799d54db37812abf10a1d2e208395fa78503f4c py3k +86875 e32a300acac2fc86c7d3c43ee3d148471281acc8 py3k +86876 9e9a709b389ecae36b146f9078911b1ef69176e2 release31-maint +86877 ed4bfb75d28d880645c834579af5b6fa80a7ff3a release27-maint +86878 312b2916cfd45d8bf311bdba26293fa88495860c py3k +86879 32e675daa0e51bfe2f54d372ccbde2c4b7c3eae6 py3k +86880 f16bf4cae5d737faf436f0e1efdcb5f44dd471bf py3k +86881 28b67b570f2bf9a59be4352db14cfa2255ded432 py3k +86882 b405a7f0aed71b8da591bffe0d7e20def04b9b39 py3k +86883 8304bd765bcf77f837f5169a88b5d744b5e2d032 py3k +86884 724920a015f701a21dd7e329a48f54e13d1de1a9 py3k +86885 eda8da3a75b3c6247014369ded5890af209fc79b release27-maint +86886 deb9f2d37b63bd131aa948868ade3fde48c4e409 release31-maint +86887 fd6e5653b31025062fb7ba639cc22986f2fb01f8 py3k +86888 18399e620b4110cd496cc97ea3ea9c8ecac05032 py3k +86889 e44410e5928ee3114c658df67cd180e5b50115d9 py3k +86890 b80f5bf26e987b8d550a533dc88427544af29161 py3k +86891 f79928adab579f3cf1abf8fdcbeb7afe7c4bce4f py3k +86892 7ea02f31c252cbeb43e7ebace4921610a5cbe84e py3k +86893 2f6d0f361ab92c97c7976e40a67105b0a43174d6 py3k +86894 340369fb2e70ef499176c8a34aab337665149da3 release31-maint +86895 7467a1c11aeb465446588ab6cf8261111d716f93 py3k +86896 656d24d19749b0b2fac3d9ad7ca7e8d2da177a53 py3k +86897 d610074970d79e3f557b27d1c6b5c987ac32a02d release27-maint +86898 04e8bd9a1abae379989d531c82c842d4585c00ce release27-maint +86899 7fd2c7dbdda6838bdf8cb58b90bd026d6a3a0ba8 release31-maint +86900 2984b57d67da493b899b3d320551ddfb44d2f91f release27-maint +86901 2b2fc42621701f8969542312949a7708c8fd9fcb py3k +86902 11552ea6a944c3b336907b1a009d5d9e0362363d py3k +86903 693f7430c3ca50807b3050c7160f7c35a984af9a py3k +86905 fee3a2f243e8e7f2b01d9f10447f162ab3fa373c py3k +86906 0923d9b3de6ea822c29d51a2f1318eb46eb4ee0b py3k +86907 5cb53f094c1a88d0c1ec58de1818cfe780993270 py3k +86908 9184a3909de0c99392dbeb374e4543293d52944b py3k +86909 8b95ea31725b3ee81ea268c7150948d8d65cd46e py3k +86910 38bec90fd8ab603d8ff8891948ed9b9cc9088c7f py3k +86911 00c8cdf53936b35abc21af0143f2938dd9334c68 py3k +86912 14896f1313db09ff4caf3510ff5f0ca7b0b430a9 py3k +86913 ff7c5937790300a62c15db8d64621c39b1b67b09 py3k +86914 7180985c1c223d3320d9b266267ac4e22e5ab879 py3k +86915 e5c28d6769cfd1716f2731e3dbc1aa9597b9875c py3k +86916 2baad8bd0b4fc865f2d8d4be29c42360d08195d3 py3k +86917 37002e4ff6772fbfec91c616c853d3c304a1ebde py3k +86918 5da093b49c2a2d342368c2967e50df911074fbc4 py3k +86919 13c71c8c5c0f85ed15c32d905365629ef08be111 py3k +86920 4e18b9be25a408e1b8d3e6756dfa63d29be27760 py3k +86921 cd88767b8d0c9ff14912cf5b090058b7359fe414 py3k +86922 43965580c556db9454bf70140868dfa7db2963b4 py3k +86923 c5b548fd0c8c826132c257cc4c0c46274cc0b2a7 py3k +86924 b9317a9a3d3ab747f63efc191968ea131cf71742 py3k +86925 e31a4972084af5269527fc10d06e83f7783e0280 py3k +86926 078e5c7b3159f0cbff0e677473d149dea35c9aab release31-maint +86927 e7844b7f6ed49eb82e4893287435a410c88a857e release27-maint +86928 09ed411a1090628e6c37709348234bd639dcc97a py3k +86929 90b6cbf2b11b613cbabb2827eec2726138e2a2f0 py3k +86930 89cda0833ba60391c162137940d48fcec2326ad7 py3k +86931 0ddfa5bcfbd3703a7f295af666de7b034e7bb200 py3k +86932 d2ea711ab107c5b48690184fc2f852c6d43f8a45 py3k +86933 dc73472935c58dc92613f8ac447db2cd95ba8058 py3k +86934 7e4833764c88c0037a1f9dff7d4daf70636444df py3k +86935 9a2058309c1aa607d23c1689e02aa73e0c44d11c py3k +86936 b8bbc0fc619188c42e1ee40332abd272c7634a18 py3k +86937 e339fca6e51a1016f1885706da4094451a34e7c1 py3k +86938 a3630dd922180b219fb31fb38acd42bc39c6c470 release31-maint +86939 45af5a068cc7f406af81f36e95a1598decc3b175 release27-maint +86940 1add8cef7527fe9a6ff64912931791ab72031086 py3k +86941 5f2412843bb91e6d1df293e8ab18b1074d906d4e release31-maint +86942 8629c2a234db036d3db84690b84d6ad1d7293981 release27-maint +86943 dee20155fd65748d8fc27b4bd8252f427960f406 py3k +86944 18d89a30fabf9933691f4688ee2414cd8b1ba564 py3k +86945 e11f7e662369106d2a07b03e0ac78f8e9da2e563 py3k +86946 996f84e505be352dd0945bc03dcbea4a1dd45f5e py3k +86947 bf495dde20e3932da9b72cb296e7bea0a5b371fd py3k +86948 1098fab85e472736a88af53ca77d57c9c13876be py3k +86949 f90582c6cb5ff6b72351bc28bde477aa6e4698af py3k +86950 64c642bb7ff79ae6b251ebee2e5ef4b0050bb5a3 py3k +86951 e02021fbfe22b5c53bbb9aeb8d773bea6bad69f1 py3k +86952 1cbfeffea19f767da6a32a1ea976f9d03396f67e py3k +86953 6e49af2e089109fc8a286dd713de6f64517e9833 py3k +86954 d7de31ae95a447cc50b7d135a53150aa1db22c11 py3k +86955 d7fa17a4669db85aabd150961b396a76d329629b py3k +86956 c614f78675d4a701243648a4588605a966394ad2 py3k +86957 09d23fb0d428edd4041268a4c0ce3ddfc539b9c5 py3k +86958 a0cf64a5291e75a31ce23bb9d9fdbc6d1226ed3c py3k +86959 7851bfb1bd7339f860edb3b16789653d8b33b89e py3k +86960 76854e45c465270f2d0018061506cfa048e09386 py3k +86961 8bf90b8710d037827c914163d509641eb908ea1c py3k +86962 a5a3ae9be1fb039528684bbc2289fed26d418c62 py3k +86963 107561c58de10435315c3ad1c8f2d5c7c8397954 py3k +86964 48c28c281d57affe46971cf9c97ceaa1180d0c01 py3k +86965 38353ba408a1d8426da75f051888e4a2020c86ce py3k +86966 577a25d655c4aafc187ec408905fc34789f8ae47 py3k +86967 81f4d1fdf5734132ed303a62912d4f02abeb1813 py3k +86968 7c1b4ca45db6dd9e0c258b961dc51d2537d35043 py3k +86969 94fa53b58ee5348eff15cac6dd9b2d4e5dd89d33 py3k +86970 78216263425d1581e9ff8efb7b9978a4ca50703f py3k +86971 4a599902310db8a4d99dc86b08b01a555441f134 py3k +86972 5b68675d7269c6a5c049dbe37c2e61d24884ab20 release31-maint +86973 fdb35231ebe259f52e28318b11d9ab91ce13f93a release27-maint +86974 fe2a56a1ba74434cc011b5b708f5e0fb2c3d9e84 py3k +86975 faad1797fc92cd61ee57e93226b30599fd899cc3 py3k +86976 5fda519834df852b8e4f663b7526bab666815cf7 py3k +86977 ae10282e7f4ec7f2d72c465c35b2214c79360669 py3k +86978 301d23d6dd9b6ed80338640dae71e85842894e0a release27-maint +86979 523a6fc53a705c45cfc2899a390685d6d6ba8e22 py3k +86980 b30048663b7bfe61e7b52de0ba98310cacb3702f py3k +86981 3d2bfd20c2f4d92df54bad75f52e4635406738b0 py3k +86982 3214e231a1c4593e5fb30bc9dbdb3a0db2e8b519 pep-0384 +86983 22f0cf1a2711b244718011f67633dd4d8e083f4f py3k +86984 f74f5a083b6f7857b7f754cbd0daa2b4a85a99b4 py3k +86985 83ad00a3a489181652d4bf2ed5badc3abc426edd py3k +86986 b034832414f787806d2aa53a8f8c761a5b925a33 py3k +86987 665f0fc6ddd7bf38df50111919d37f6e52337fa8 release31-maint +86988 7ce9001d7a771d244f429cfa254fa2ede28a571a release31-maint +86989 3182c6087e52ee10f6ae14d7fc4830874168c60f pep-0384 +86990 556df087de4fc132e9dd406d084b9de322b5bb91 release27-maint +86991 e756ec8f4143bb9a3f1483c4c322606722b2607f pep-0384 +86992 5a723b7aefb70f728ccef3d52353bc5aa41116b3 release27-maint +86993 4c98447329257339b959d17b2e3fb08cf25ec824 py3k +86994 bd3ba89942e316d35ca9a221c52e6490b7df8d08 pep-0384 +86995 f895a2221fe13b009fdb5be0295b1c6d2bf93a6f pep-0384 +86996 3dfec8f14e732e7bd6e035e66b45f202ac19d8b5 py3k +86997 3d9a86b8cc98046f0d7456479829410e386be6b3 py3k +86998 62b61abd02b8d70953976878ed5ce2c2157914fc py3k +86999 1486416c86d97d821810739bbfacfd8e3cba7cd6 py3k +87000 6b03491ee171b49bf170e332c1deee6190e60e4b py3k +87001 4cdafb02b20e157452af4697afd8cd7dc47c8396 py3k +87002 5ec4ed518ef8fd849c93396bc0ba1f51a6ee2154 py3k +87003 a6e949a6ffc9c9f1d725f58f0980117b17ba560b py3k +87004 d6183bcebdde682e94320660aac18ec2de98963e py3k +87005 d29b55ac1631938060f9424b4a14f8942d8ad989 release27-maint +87006 7c23a68fa3de86a37de991f6a16bba6946b2d67a release31-maint +87007 7b6af56ee74d08470d0c11285b6c3f15c0e9c77b py3k +87008 a2fabe224e8736321383187e2b882e8c388ba84a py3k +87009 a907110df25a089789be0b87c5317bf74af188e2 py3k +87010 b37da60c9072a16300e5ee133d3396b6ea704b63 py3k +87011 56eed8f407bf9469a4dd26fda14f8ba4b034c483 py3k +87012 1d3531aacea0e1095dfe56461374fd72ae62500c py3k +87013 4df8b4342e70243f79516104a64b3e9197f48b83 py3k +87014 b1e789631dbc421d3bb6475cb2ca28ee01a7591e py3k +87015 51d28a0d1c32e8d8bfa5a24785dc44039cc76877 release31-maint +87016 3aaf37c24db8fa7786eedacc4a5d77d2a33e3f73 release27-maint +87017 2e1fcf28c9145cf670ac8ee7ed8e34da64d03ae4 py3k +87018 893b098929e7efee4f753b5dae9085835d3b7526 py3k +87019 713c6b6ca5ce22ea3ceda80dd1cd4abefb7a0775 py3k +87020 8b02f7f9475b2a37489a172cd8eefc339b6f77f7 py3k +87021 f35a6d7e325ff532cb396557a636ef2564f3e11e py3k +87022 48c40709417b9c60dc4bdcfb7c0d37512816b3f4 py3k +87023 f82eea4781f1563a3582198d7d30233f0ea90ec4 py3k +87024 7214dc5bff5cfb798915457373448c1fa345aeb6 py3k +87025 c2578a68879d9c5b7eb8cf933c2731c7a3d8cff1 py3k +87026 296e6f85f56d416301a7f595b7db86f5c9831fbd py3k +87027 d582dabb30f85b770f02fd739d0e4a127dd9b59e py3k +87028 48450f05970b9008141c7636f233fd207e352751 py3k +87029 8cabcf4f90338b5a9a5055887288ce6d2318b106 py3k +87030 bede83e208534c2dafaddbf2f63ea3da9d641421 py3k +87031 de7f28a640e5a69cb6cbec34f73d86cebb624644 py3k +87032 573a672762171f04d2160d4215b2ca8c5308654e py3k +87033 a8f3847619f4db2487fbc6b76340166139ef7e8b release27-maint +87034 9b603611f6d4c6d4aa49ff36e76f496f0fb0fb24 release31-maint +87035 294806cac8c54be53bbd5f5e8f0447a5d227cd43 release31-maint +87036 ddc6c47bf825e398e0f4ad51e04a1390148dd3c9 py3k +87037 f14f619d705002759045e02644a3deabb639a2d5 release31-maint +87038 b32d19eb4338ec156fde8425b4562a0960324f13 py3k +87039 fd638ca74634aa17fc38287d46565a1a913a1a75 py3k +87040 ae3fa781eef2e4035fc21ac8920e3cdde54a6366 py3k +87041 f1be349234c3e4df43d0cf3bc5979e5b042bf9fe py3k +87042 cb6d5d151bb421a360606c7f0819399bfb90f2e3 py3k +87043 f2a4ade36a1ea813054c92a56a27bd7fee06eb6a py3k +87044 b55f3d639cd86f9547d5683cedcd8167ca90b6fd py3k +87045 c2ca867cdd1a20787010e033db4830e4bd360443 py3k +87046 5eebe4ad0d878d51407daefafc8c0d7924c82948 release31-maint +87047 0fd6ae0a8567da1891fe5ae4d0da94535d994649 py3k +87048 9832e96e730a9054e207de29a545c6557fa02daf py3k +87050 75711d1743cce687f69bac8953fc952380a06cee py3k +87051 4e62927a2bda9599477066d59b679534d7730820 py3k +87052 779a23a08d8ceef073f968aa27e0387277bad863 py3k +87053 339dd622de5a583248414670459d929994f1e9ad release31-maint +87054 ba709ad3ff4ca69cf6ce8417c69a101a11ab5147 py3k +87055 04cec2e1ca41a874cb859f628f8e4dcb6943f557 release27-maint +87056 1827a8ac9b18e9c846c68564e55392e8bd82477f py3k +87057 3fee88e6442a3da25f9f5dafa691d4973fcf7cf9 py3k +87058 dfe86da27e68c38e6848aa4c422e5eb31f223549 py3k +87059 6825b2cd9b81c38bdf29086eb8de307013580804 py3k +87060 3d1bcb54a82b66cf4efba5212af05dfa4649358a py3k +87061 b7f08a0aea2886512d91a2e7c2f484fc863c78ea release27-maint +87062 11094b5288f9897e23ac57586d376e79f940ab49 py3k +87063 56f42e184a196e9870846cf06d8016cfb374a606 py3k +87064 2f5cd1869b1a5f6c1c3c21b9e1c961f1f505d4ea py3k +87065 ec79aaf8c0bfc2c0f3f3f959c95529d92b3bf3b6 py3k +87066 8358dc13a57485b0898e6cf4b71a1f36d646f541 py3k +87067 1ccbbddbea881e7be6832a23f6ab4175a1cb8fad py3k +87068 83955e461c4ba735aafb36c486563c342a6645cb py3k +87069 6fb56404b6bb23ed525addda62ce4acb68f22edd py3k +87070 4d0bfc30372464932e492ee572fb2fd54aa74f0d py3k +87071 c38da4c54184e8f07af7f9938f4bc63474cf7254 py3k +87072 073176f03813f0e4da333f69bc08067bad1f4982 py3k +87073 69a50ba44e65b7f9ca6fd561e57170b07441740b py3k +87074 285e0cfbf90f31389f2b909e9505b6fbb9f73902 py3k +87075 5c3ac8795e9c4d43733652e7a414b7ca02af921c py3k +87076 681a8e89c65c8238adae6e4ae7ee660442dc708f py3k +87077 b367b532a82339a4c431041ce2844f3309c8529f py3k +87078 cb3cebceba50fd2aa7d8145d3657607aaf4c084e py3k +87079 b8eed7a56a8cee543d505d16a71870f98fa307db py3k +87080 59f972b1d56701f15fd6ad8e2a4324844940d771 py3k +87081 597c3069afd3991747010b2785b775d8162b09e0 py3k +87082 3f24244b10fd88d6fc34cb2587857f870d62cc24 py3k +87083 8170555416ac448823e398174140f8b8921ab20e py3k +87084 5f286ba01396e7338e871e55e006bf531edc7fec py3k +87085 4965be90fe199a83372d66353992402f6fdef6ea py3k +87086 902db4722594c2f9055e572e3d52672565597397 py3k +87087 9079ecd433a22589456a85a89038050519a17eb1 py3k +87088 b635cea94195780c8716e236479af319bcc26253 py3k +87089 f448dd6b67dbc0fe569015ce6be5064dbc8c3d79 py3k +87093 062907f685ac4e71fe717ba0b193abb46e8fcc1f py3k +87094 23ff4a0c375b3332a97e5798058bc3734defca01 py3k +87095 1e4a6e5576af4e4702badc8e0fa7cfae5fe1ad76 release31-maint +87096 26edfb27a0ce8e943c5dc8d56055cdf4776c73be release27-maint +87097 0ae07caab506fef148119a1c5d2ce6902a08d527 release31-maint +87098 26c6593571f1fae7d02343f362db3e8a09fb5302 release27-maint +87099 e115b2bfa9d7c6539d0d81f6b55a3ef526edcf3c release31-maint +87100 15a7570e3ffd03d276e0aadec224819783e266df release27-maint +87101 30eaca4735cb8c8e61b5f92fbba8ed4a4efce214 py3k +87102 c4898cef4715f08fe73bc27c693c4ebf35f80dba py3k +87103 27d6aa4f18111f52388420ecf5770c3344ea0961 py3k +87104 2513d892b25418b5d0aa2abe553be9385575c22c py3k +87105 868d56ac1c5906628f3e8122d0ec13ef3a48ea93 py3k +87106 c2349b6bffaf2a49d3af43b6f7f81df8fa5e4afc py3k +87107 4a94c2dbf9e84a451efc66ba35a4f672451f0d15 py3k +87108 87f23c7949ee810933f9417fc5c9462a195ef7de py3k +87109 a1f36b9373bbaf191f51a8329c8eb84a0d6c70da py3k +87110 39009841471b597a3b2b78e7f5e3f083e993a2a4 py3k +87111 6ef1aeae42beb6ec851edfb031cc205c98111320 release27-maint +87112 11fc6c3808b64047ebec24b324156b7c2cc71d90 py3k +87113 2fb1ec5c735eb2037afdd156be0145f240fcbf4f py3k +87114 121ed848c670b2b52e6e26db8321bdf407591799 py3k +87115 396d9fa4fa2432aff88f5e4e7dfa6796ec7e95f4 py3k +87116 ab13553702f55c25e1b3b67b9c95840ae4ce2fac py3k +87117 417f8cccd2089a699854f99bccba1982333c0060 py3k +87118 50de9f1a6d54703e4998a77548050b21b1874778 py3k +87119 788984b7da6f2eef18049f089c524ef899028cab py3k +87120 bded067f91e8dd8b57cb6b631d8636318c9df354 release31-maint +87121 75cab6cd97c63523a439b1219527fb5f43512ebb release27-maint +87122 786fbed78d57d777250c260e5748808344546d9d release27-maint +87123 aa30b16d07bc454ffb625568a1e4a01819bf03a5 release26-maint +87124 f4f56efa2870201cfcd535e0534a768b86e87927 py3k +87125 9e72b6d0f48ba3f9257bfe62bb776261652b2673 py3k +87126 0821ef122d531dce1a793f26ff76d149f481ecf4 py3k +87127 a46e19e86680165339611aaade47b30b1e0772f0 py3k +87128 c718cb786aeb5fc580297eecdf2072f28655ee88 py3k +87129 324d93d685331df6af98ca84e3f97f94df082c43 py3k +87130 d94d365d7ce5ec6fb05e827406046691ea506cfb py3k +87131 5220122e3e9bc7d39fea736d9c9e6be097f3b355 py3k +87132 7b7f6ef4f99c7ff61240153ef7bc5f86f398dc70 py3k +87133 95a73e4b2ceb3e029f86e3a914caec43b9c9ce68 py3k +87134 4c7e32e5928857f806b1341ad2afba0f89ac8766 py3k +87135 113925b79b97b03c6eeb74abeb7ca4303c28200b py3k +87136 d57591bdf61e8e983654edbd25c9f3b80cc1fd6c py3k +87137 50d170bb71c7531861467ccc575d04b96823d4e4 py3k +87138 b84261bd6d4a4e6eb0ba774214d142f4cabc53ad release27-maint +87139 e0072bddd2d55700a38cfabef67da98aa94bad0b release31-maint +87140 8d4feedeaaed345a4ff45a3105d1f512755c2b54 py3k +87141 169bf01bb507e07894aa3d8303da0fc4d38e37ab py3k +87142 21df8155c770f3cfa6669440012c9a91c22140fe release27-maint +87143 f8bea9960462118bb61b33d0d7347bb6be9dcc23 release27-maint +87144 800563ac057edae3e6e251e5e3bc03a88d9c9c9b release31-maint +87145 d28126ebd60d02da9722345d123bc6115692f5b6 py3k +87146 6e9f397bba025e2ab3ee206b2c56e81adcb61880 py3k +87147 c537bd37f508af13c2128f42d521ea2560efa298 py3k +87148 1b659a00570bdb4b7db0a6e32fcd096cdb3bdc56 py3k +87149 740302bb3adfb384b67646b4168b9db479d82e99 py3k +87150 bbce42f6dd7dbbf26a9612d322ef63b3bdf25680 py3k +87151 3c589ca41d3a3d1b1615a2664cec8340bf838395 py3k +87152 1486d3171c68678af57b1695967f7842c0496a2f py3k +87153 38dc4139854c8cb8ab6c7fa48f496613495c657f py3k +87154 9cb2ecbb1f0ca9b76e42f92eb2537f26683c9e36 py3k +87155 8c254b64a43804cd291f5cab9f33271071340955 py3k +87156 8de33562855faf9cb96ac63f8df4339cc8168c30 py3k +87157 c86dc2bd3ae81313e47fac93f22aa74d3fa6fd28 py3k +87158 74fe73c10611d23d1e38b63559de5ca099b9d8cb py3k +87159 738eaeed0b1a24729d16029ed6d47f346e1d348d py3k +87160 4f849720bf413730f6dbce7b23ce83f45f1715d0 py3k +87161 0133b8cb7d806d37e35733d7b49e96506c4588f6 py3k +87162 330a9852396df88efd6ce92e5cc29c383096cdeb release27-maint +87163 7253be96a19ebf1688a6ebc7f48043ee2e48be66 release31-maint +87164 fa55b03be57402e1894f4dfc6391f474fb396609 release27-maint +87165 04ed9dbc6e051c309d69e8b8c18bd10c3dcaf0bd release31-maint +87166 714b8e1ef7263e2809c9ad9a53f0598b083aa51d release27-maint +87167 ac3c55271fdd42a01c13e64bf3af6c28becba71f release27-maint +87168 aa99dc8f705dfba92d55fab66481f4bc0bb7daf4 release27-maint +87169 207ea9a05062f242a727615016b34d9d9eb53561 release27-maint +87171 d6c702d40ffb2de8e1bf427562f50c517550a72a py3k +87172 353079af4f5275c9119d23a15a48c324d714d965 py3k +87173 70436b46e434d2d92e864874971a33af0a54ad4f py3k +87174 b1bdef56966ee1349fb69138b11436146358257d py3k +87175 8d38c6a27181c1d157d860017b39543ef606a75c py3k +87176 a811f7c10e8250fb4e34481c1604156cf218c8de py3k +87177 f22d91332db94f6a3f60add28a8fe8434064be45 py3k +87178 306d88a3235723d353d5d127f8530d6d976a2ee5 release31-maint +87179 b97d843d6456296ea137418a95dbf969dfefc6d7 py3k +87180 263c998b2f459c871561e27d4509a32c4dc22f72 py3k +87181 3b628554e1aa15e3f82ca761a5fd8ca3ae1e10c2 py3k +87182 612dd5f2aab31a76dbe8ae891e3b42528961d76d py3k +87183 ce287768737006e509b109ac964da8172ae90eb7 py3k +87184 53bdf1c81486bceda1f4588f5dabb09669bd9c05 py3k +87185 2cf7bb2bbfb8eef7b69424a6f604260759578796 py3k +87186 999b1aa246783aef90e2675a8f372ab50ab8f1be py3k +87187 15531cbe3f55fd3ecf1f0e4734c98cc002a6041a release31-maint +87188 0eadd1b2d258c80462207b99734bc1d62b39c78e py3k +87189 5bfa436a287bf040470b2e78fdab7efd3315f942 py3k +87190 7aca32a2890ef204a688f09be4c5238aac600889 py3k +87191 66d9e3881761022a277a9de8234ab455d590e696 py3k +87192 d02e76dace5bf11e31375752ef24e8928f0e3719 py3k +87193 554f26ce33e1999ccf926c0bbd72d88acda22257 py3k +87194 3242fd1771664eb074f0678b250b59eb34a1cb90 py3k +87195 b74051cad717823707ea0473a0a80ad881b1abb2 release31-maint +87196 a91b3168fce2981ebe1f57326b71ea5bdd1656a0 release27-maint +87197 cfe7ca1a7bab245f59cbdfb33635dc380641f922 py3k +87198 f3130c2c46f5a4ee43a1d3dd0c6beb5db6cba18a py3k +87199 99eca62d691994b6806d9e45ed76bd6a2cc85899 release31-maint +87200 8081762eb6d1aec1ae60951868f88dcf6c2aaa54 release31-maint +87201 10ee4f32b91c402c847a0f45555a537233de0b03 py3k +87202 b7cfb5f0fc55b36636709cc109d7157e9d6b47bf py3k +87203 ed2ac21084f4d993642551a43a5c8fcefa3be70b py3k +87204 2872f46e81970d4a04c8e5c3bb0ceb437c2d78c6 py3k +87205 47088e5cb40131fec34e3ceaa2c8b6c572eb223f py3k +87206 eab8f91f5754dd87ed8bf7f68dc2160c594444db py3k +87207 de05d846795e4b7761a232f373009cd621e6b54d py3k +87208 fa3d0787299341110e71533db3e8cbe6d066f3bb py3k +87209 06206f001bcd4c721e30bb26b2a83e8fc14237ad py3k +87210 bc8809b3e4be7f5f1af1833ba505467a39e1267c py3k +87212 f7e9ea8c61a0277753cf2606c37f01c1e6563bd0 py3k +87213 668c4218ae26e736fd2f1d755d09c3117c3f344f py3k +87214 4f81b5d356ccd45f4fc9eeacbf7bd155ab456be3 py3k +87215 794f54bb971380c4438d98541b6c7ec2c5ad4eba py3k +87216 f8cf97314aeeae360f4f99f274af6180ca7d37bf py3k +87217 c28771177fc405fd02ea345aa95b0c425a0afedb py3k +87218 19116191d52d8ab3d9efa6bfd58725528e492e44 release31-maint +87219 baf0d189ed0734b74f2d1433e5e3905408830db9 release27-maint +87220 16b6ae75de9468203cf0e388827357029b1187aa release27-maint +87221 10bfd3c129dae271bad676d762ddecf4e5f2eb2f py3k +87222 262ba0ab4e21ef1e79c602c366e800808fa15714 py3k +87223 7f8cdcfbb08e1835fdd41d870d1f3c0e9ea5e287 release31-maint +87224 ac8da5578493c4d4b009b59eba5fbad7c07b3c47 release27-maint +87225 b084b50e4aa6dc9183dc0e8276487d957688b82d py3k +87226 71fb03274a89cc3a6979cc14d7673c7a6151154e release31-maint +87227 9ac8699d88d61db31ddd4ee3b5adde4495313afd release27-maint +87228 6f46afc51434ca89109679a1a8f25522bb0c65b9 py3k +87229 59b43dc34158529ba208dedebdd73fdce381a74d py3k +87230 da20e7a01fa63a6d8ab34f210da128ce441564ee py3k +87231 69b85964ec888380091979a1758067b04ff37670 release31-maint +87232 8ccf58b0a5da776006d7fc98d9e6975c82265a78 release27-maint +87233 767420808a62aefa31b4caad1f63014a5eb7fc0a py3k +87234 072ee3f743c21f3770ccf13ad48e10a18048063f release27-maint +87235 b066bd0b64e7cf6842f88d986fc9c29d7c352b43 release31-maint +87236 12381f19e2adfc8f16850e9c65c6ca67167028c1 py3k +87237 3110d4a48878b4d517c203024b76a0c67c87fc40 release31-maint +87238 f3ad52f66b8a42a5793932c722d049f89c26edc8 py3k +87239 6afbe4612d4943bf7dd3b5d485b7b4e278c55994 release31-maint +87240 79a2b6a1280511dfbf3b885fa00ae86708408011 release27-maint +87241 d18f4313b197e56b2b221d438168283b3cdf0ba8 py3k +87242 783f311ca8693cee032dfdd479da5e61b051da5e release31-maint +87243 8d7171b3cdd69a73878eac094089d0e7eb34dd50 release27-maint +87245 e156519a1c603744f7172eec7d778449e2cd8915 py3k +87246 38aaa72c0131a95692801661532007189005f2f8 py3k +87247 d6ccbd3f5b4551ce4fe2d3d0f034a76e9672dff6 py3k +87248 40f543636846c78b6c0bc61496bf618421e1a302 py3k +87249 f9d095596ea96401dd92092a58f9e9a9403e705a release31-maint +87250 d709d114cde3c05c4a07456dccbcd25ab5ca0c46 release27-maint +87251 531f423b019d31f51e0adc49a680dba19fbe266a py3k +87252 7c3715b10cdd45be2bef6b2028d309dc47b15ebe release31-maint +87255 4ee4086dd1b7405d0bc2888897461d6f57cd1daa release27-maint +87256 a61544778fa741c9855f915a7bca76e94483a283 py3k +87258 1c027a083a6e90b7b39fb71d7627b7dd86a1dd0a py3k +87260 8e701bffe6e2c0b2e37a819de2f07c3ceade780d py3k +87261 17858ab2cd92a48098649c045b458cf67294ad6b py3k +87262 cfb7f6322fbbbaabfdd9eb7d923e0cba0e23c70e py3k +87263 79a90fa079a8bf18027d1527fe16bbc48891a94f py3k +87264 aa428aa9b68b2a7227756175c2012476b4a74898 py3k +87265 40125cddafb90529d12ed05d91fb343da996ab5d py3k +87266 a96a2bccdf8a27a123c6776ec213269ebfa832e2 py3k +87267 019ad9f32c13e8abaa270df11085cdeee4375ee0 py3k +87268 4716308404263eb19c52ce296a8a4680061519ca py3k +87269 afe5f6b1c7667771c1a828d977b2efa8476ce01d py3k +87270 23ddbd835950b89c198d660958212e3e50df2951 py3k +87271 a0fcad9070ad1c7c9bc122c46aebb1ad468a5424 py3k +87272 6da37c34f8a303240e8bdbf51a17b1ebbcbaa3a1 py3k +87273 b580927872137744b19acf8f2f3b963cbefbaed2 py3k +87274 4dcec146b99d46eee45c4517c84d3ba5c907f038 py3k +87275 a28e8721117c26c478637f7dcfd9165b629fede4 py3k +87276 9a2e56d1146df2830c9f6784fabba4458d466858 py3k +87277 2d2997f19e90c5986a4b2896784497498f86a5e6 py3k +87278 2613183ec0251b0c87af3a0b868fc9438853fcd5 release31-maint +87279 5b44059247db62ba88f5d75c30cf309d6f9c5a5d release27-maint +87280 00f7f51ce8ba5947b122559f66a1775e8afe6482 py3k +87281 ff07a06f6d65d0a30167e91fb267a2790a4c9bff release31-maint +87282 3b5cc6638f3d10d48165d40bf431ad1fe0f8b613 release27-maint +87283 5ec2c2bfaded52310db12f2ac088359770bd0579 py3k +87284 9cc1978ec9d498c491233f7a5dc1f4e6ee009ced py3k +87285 9b1594c1544b7ecc8743466e71c07423163313a5 release31-maint +87287 80e3ad5a631d5753a30d70db9fc3b2176c29243f release27-maint +87288 4ae2c21116f1df3dda8dc3060f94eab783ead098 py3k +87289 7f549908bf5032a9fa402d7c82ad6d1ce6dfcc9f py3k +87290 a51a4f5e87e49e23b0865560acadb59e253bb51c release31-maint +87291 56999495a9bac5bb45b5727341287c11e612ed71 release27-maint +87292 b750c45a772ce8bd961e1563b7a45043668f2664 py3k +87293 f59cda57a7fa83394082e70fa5de9d37bd1eb64a py3k +87294 ad9b5c5d2831f4bd025ec16e6c4f349dc40f9bae py3k +87295 d2d526db27736acbbe40a87d28c1b3f315f95cab py3k +87296 ca7a5d127d57cdd4ae636159ec8576e009cce19a py3k +87297 ecd28e84c44b0f4c4e77c96b52970da880afd448 py3k +87298 9c1fcedef2c19d5f5f99c711c0aec616141b4588 py3k +87299 3de6cd902624c7b908f0e0baf0a584e7d72c2d53 py3k +87300 3f1752d4253bb13fd9a19af53a1075bd19bd6a59 py3k +87301 1aa4e5ca9174217437e19dca956854fe16c9a91e py3k +87302 de5b90daabb42e12147b9931068573bc1fd5c29f py3k +87303 e08c20a67f647fead878f3237d8710276589b56b py3k +87304 a618287eafd658b19f8b0e6881763b13151f0226 py3k +87305 0037d65debd8d98c9e4127e7a009faff30a9a220 release31-maint +87306 7e8eb634f0a91c547e87ef274b2092bcfd00c0e1 py3k +87307 2aa050a44aa81f4650a75ed70a31db30c18cfb7c release31-maint +87308 59e230297bffaddd4d36d3ec99bf0bacbb629b4c release27-maint +87310 d84ec85600b1a9804d6b54e952d5805c69d08266 release27-maint +87311 fd72614b9032101a57a43a4b00f7930d79128187 release27-maint +87312 4c0619b832e1bce3e276c3cb0fa24f7e472a4489 py3k +87313 d9b4426479ac6178ee7be5f7b020ae03ae283ec7 release31-maint +87314 c6883ec4888042b3f8302d8106ecbe3a8da59af7 release27-maint +87315 5b92fb02e83bc5fc9b8705b7b6f07c0e20a117fc py3k +87316 ab65003346c11a151c52b0d7c2a48702980272ae py3k +87317 436bbc7f0aa68aa756595a0656a2cd4d08df07e8 py3k +87318 dc32788f0e4e3258bbd99e54f7d5a16d90f93c7d release31-maint +87319 fc2f0c86b497cb938d54bd0cbca086f55e83eea4 release31-maint +87320 2c429d8c5ee202a3723803d6377cff5846b60d11 release27-maint +87321 85c2fe31b11ec09846decedbc85d3d6687de748f release31-maint +87322 4d2b428d7882258a41a474b8fb3f2761c00fb2a2 release27-maint +87323 e9d924fe37e03a305e6a6ece2b568d2fcf58cd35 py3k +87324 ea8f94ce82932696de2ecec36f2d2acd550f03e7 py3k +87325 aed2bbafa550e9dfdf41d322857f024b75b4c76d release31-maint +87326 2391ce35ad697f2b26437063def9d85a958616dc release27-maint +87327 9bfd6abf01ca29cde4fbeec90f8e248797aa7f77 py3k +87328 074c21714a0278e48293495c399441e055e4212b py3k +87329 0c2a7e5785c86112ccdaa5e298bc62d119982997 py3k +87330 7a55b808e491c10276620115424a26d9e22ce733 release31-maint +87331 69b3a151aec57432193d36eeb9ff34ce39be8e55 release27-maint +87337 07113d1ef8e51a52fd547dda6710f15a63203829 py3k +87338 61935c8dc09e0db5c966265dfb8094457f5a5e75 py3k +87339 016b425f0cd0ce44eb34fc37563dff0c9bbf224b py3k +87340 b6d3fe70802f3290d63adb5b98fca7b4e4071fdc py3k +87341 5a6a1ca24e04cfaa15f7713bb77413b9f51394d5 py3k +87342 c70aa011c05985e462ebdd46fe19f420c46caf5b release31-maint +87343 341b93d831571d848acae6db183e74daee0b6423 release27-maint +87344 22db4d2f655498999da528efc3cb39d045a25b07 py3k +87345 0550a2447c1e631a039a748cf9ce97b6079ba49a py3k +87346 3a2953e21f785734687f1d7c9538a21cef3e546c py3k +87348 5bbf5b6d36580525c47a5c7bb73a1e0ca72b8725 py3k +87349 ac8c6c7c0cb356754d9a94175df049741f795dea release27-maint +87350 892236137db961812b49ea9cfcf5c0e1b1598ee9 py3k +87351 43bc5922f2990645c5135fe63e6062f9169e7e2d py3k +87352 61bc862667e6e3d9f3b13a551c42152c03dcb9d7 py3k +87353 26c0f769e9b471d1b90b7759a6bb7b59f0d75a11 py3k +87354 28717de4c562cc3a9d1af3d9767f6c08ed94f54b py3k +87355 409ba25087122884ea066f8e2375f1bc3b967982 py3k +87356 a5ed4a12430aa7b1df87d3c5850ec087db143ae3 py3k +87357 884b14ed8f543dd76a1074558c8a6b147c372aee release31-maint +87358 68a42b944fe398aa6b4944bcc9c0d2250749d0de release27-maint +87359 cd27c3c44234afee5a542b18cf4b778a9838ca4d py3k +87360 a0a995e0e64019f6c0b861529999fa88f52d16a0 py3k +87361 78c152288f53a8fd33c3f6e44369ee2c980b4d97 py3k +87362 4c042626114831f71dd70cd243be54c872208bb1 py3k +87363 bf36d6bdde60b4af050b3e5d9a4cba7c205ec5ca py3k +87364 9cf1512f8812c2001e0e751d6f92cdc5a20ff6ae py3k +87365 c7a0537c7f3c286708e5fb24dbbb99eb73d82286 py3k +87366 a06647ff5d9818e1fd19f5006c549020994ce795 py3k +87367 e65cd21d5f7314ee7a5108441ca9647a45babfe0 py3k +87368 fe7a8a1bdf3d6bc72103026262eaaf76338765ad py3k +87369 72f536d10750f4b8f14d3fc44cbb31f9004fceab release27-maint +87370 6fe94fc02fc758d30ed74e5c8113e2f675c912cf release31-maint +87371 7ac03ec3b278b95d95b359b6ac09727bfaa1c0aa py3k +87372 8adb75c6930472874ba135610f36b25f240464fb py3k +87373 0b94635ed2f6fa8939339c42628440a336366415 py3k +87374 44010039bddfa699d48afad75a75f680c35ab5b9 py3k +87375 381556369caf6a2ef34de3b3ba907916acb65bb3 release31-maint +87376 5f49d3cb194f970d51199d1c39f339e6dde0f8b8 release27-maint +87377 736964f708dec238fc51a073f0ca9ade045038b2 py3k +87378 29db97c176c9cd9d01501a2fa2474bf4a986873c py3k +87379 515de227700184d13e74d19a6a9b70e58b56c2d3 release31-maint +87380 7a48590afd92e4bf8f2a81c58ed8498c47dc841d release27-maint +87381 c2d5cd032bc9161f9425bc941b9cad24ecda6996 py3k +87382 3c182f71d4c9c56607eaafe7c4b6557a0ffe397e release31-maint +87383 965314f12f719db9c3efa5220af64fbed4b51fc0 release27-maint +87384 9385c536f45480279712edac86bbd63b88762856 py3k +87385 ee9bdacd3cb610099979b9c70bbe1ddf76112330 release31-maint +87386 0af94f976d5018fd2c5b06bcf5b8494f931286db release27-maint +87387 dae5176d7b7f300c22e1b00d61928ba427c49aae release31-maint +87388 d16add56dac034b9eccda0c8ca67beef9d104b16 release27-maint +87389 552bac7558e7792b0b41b17e68f9807d9e5ba452 py3k +87390 4e22202e62f83cd1230a2a0c3d3dd18327c20987 py3k +87391 9fb89faa595833a20049d373c5d2b94fbcecc3c3 py3k +87392 4e2b860e657c9abb42dbc35c2437e762250662c0 py3k +87393 e58fa983a94ef8cfc0ab251eb96efa201941edcd py3k +87394 4fafe97d0adba6f04032922d50e047ec30aebc43 py3k +87395 5b8026faa0a73d61791576f7b5f47ec8501062ee py3k +87396 13b4a0f52c2c2cbf4dd6d6d32fcaffc428cb6575 py3k +87397 7c30d0f1028c4d37546b651895506bf2e38b538f py3k +87398 47cc48965e525348bfdbc44aa90cc2e4c2fcc191 py3k +87399 6f56b247a7cd28233cb08757fa284c3801d337f9 py3k +87400 e3af5f3a7904c0d5343ec9633ea66e7acfd23a66 py3k +87401 9b26248830f65ca61de8d762a1bffbc9760a6bfb py3k +87402 fc96bd18bdc61c589242030016db106a08a43285 py3k +87403 6d5627a066778ddd9b1eb665376dd2ec4ba25e7c py3k +87405 3d86cd9fc534aefaaf5736cbd43aef986a89c945 release27-maint +87406 0c4afc5f5938e27be950213b9a59bc92fec4dbc5 release27-maint +87407 47dbf3ec1ad7d829d16d384388c29ab317f3d42d release27-maint +87408 24894fa7c58c50c5bfa68b797e6923d13f5d0193 py3k +87409 51794ada6810af498d5721c4356d26a304b2817d release27-maint +87410 22a0ea7d974eb6d236baaa39446140faa97c9029 release31-maint +87411 f567a6c8593645d8776734f35b323eae8b6c3b34 py3k +87412 fcaa987ccea020627c4f0f797656722f1afe0561 release31-maint +87413 367198b733cdbb4266fa14138fbc8036b63a1024 release27-maint +87414 b168b2cc1b21d2e243a8a6ce9117eb65c63a33df release27-maint +87415 815b691755fa0bfc244b35255921d265e7f43ff8 py3k +87416 8685711586d431ec6bd5d35c07f014cacf0ae6b4 release31-maint +87417 564a41666ef6f4b1625c76df52d61a1eaa3a1949 release27-maint +87418 8b53f256159aa3aab840ad8d33e432a2f62915a6 py3k +87419 52d29c7158fe20792a3314967645e77490305b1e release31-maint +87420 cd1dee55ace84ee69c96aec14cb9e3599d0464f0 release27-maint +87421 204bf433d366a307e46d9fbcc2953f7e2c3dc2d9 py3k +87422 098c97e95d9319f5c76eb38d6b85ed1429364e00 release31-maint +87423 0daf391a1f1df868d700f49d77febad9d3ba0c21 release27-maint +87424 d5c8ce3a70d4898d5f9bff7e476b08f2f205e0f3 py3k +87425 2f2de6cc62c78044d160848815881fbc420de5aa py3k +87426 572f73ff28c222fe402efcc9c870595fa351c6f8 py3k +87427 a84204f116f8b67f4e2c09a8c7fdc801cc831298 py3k +87428 5cf8555e5be55ae1246a3e905510f39aac3a5734 release31-maint +87429 595f258806eff0adbcb5a459169343848dd114f8 release27-maint +87430 438a4698004add5486cf7bc4bcdc8d42834ea4a9 py3k +87431 561ea640188b344d604ec0a2dd1380ac410258f4 release31-maint +87432 3f9051d86603291926afd0c0fb3e01404a067941 release27-maint +87433 8e7d4c3974587cd35b4598c226340cc036a66547 py3k +87434 53a41a117411bbb0f0159bf3eba2cd5eaabb0aea release31-maint +87435 c63ace5a5346bb0a9b15213720905032a4c7605f py3k +87436 a82df209858a64dfe11ce197966f1d5fe1b46d36 py3k +87437 6ff50cef984ee559b29977f443a23f7bf560db97 py3k +87438 92502b3674cbec78cf82b230afdcafc61e6323fe py3k +87439 6f48342e9e3df69b2e76f19ce6b0421f514b465e py3k +87440 99d1463edb56c1ed75ec851cd2fc0c617e4b59ff py3k +87441 89a416fd7c29707bd41ff845a79c1ed76b06db44 py3k +87442 6a623a7670622c72c3d54d863d2d6d9c58e98767 py3k +87443 e219fb4134e3bd7d6c82772530b36f9641a892c1 py3k +87444 4dc248ac264f5890418f326a925a12b9dbfe4a1a release31-maint +87445 cf18d9e51b9d600433a3a7bde3eff3de925dab22 py3k +87446 36ac3d9d74c150529a1cca6e54a41ed92a25f4ce py3k +87447 83bcdad25335f8b218aa105eb9c354d946920ae9 py3k +87448 121ba04f0fbb101abb397aabe04f6ce9e8a62d5c py3k +87449 2192bb95f54b0dae1e3f89580df8ce6d9cc3187c release31-maint +87450 93f56194cf5b82c33be237b0f0b4323686a412a0 release27-maint +87451 765796a34abe188d04593526e6dae66803d89452 py3k +87452 81982aced86bc95c735e0bbfe87268728166f45c release31-maint +87453 b5d03ceb8d79078e393b7a40c047b784216583da release27-maint +87454 d4e0da76188b60267aba58dc83d1f3adac3bfc9f py3k +87455 3b615ee787b0f067e47d4f75153b213e583380e4 py3k +87456 c34ac9f9de8317d3626d69c3e1455f0385226b09 release31-maint +87457 5c082f197ddf773ed9eb2a19108768570de9c43a release27-maint +87458 fdb8b02c1e65b3523fbbce8aba20cb4212f331bc py3k +87459 e1bf3c1c95613425adde85d97b734efb9ad2a1db py3k +87460 caf89a6a17a7e84ba0f4ba2a14b0faa32c4070bd py3k +87461 cef2817ea15725e94f092775a1490d7055706724 py3k +87462 d5faa9ffdf2a93384e22df8c2299c43a068c84a1 py3k +87463 096731620ff2aeaccb5423e7397cef03454f2a72 py3k +87464 c37d6db02c84d03dc66260d3bfbd9510646452ed release27-maint +87465 d2c28a37f763067504420e5a889090700dd7dc26 release31-maint +87466 89ae2c3b085cc1b397b62c08eeedf67c2c2da728 py3k +87467 51324154f893f7b55e119ba08e58291a33b8b7d8 py3k +87468 1c560f4b5e5b49d04e2ccc22cbe559104e706586 py3k +87469 968db3e5b1d80008fe66270c668783afa638fbbb py3k +87470 6187661cdc088bc2b201660e37cd9aec9e273f1b py3k +87471 39cea980905d3d2c31ea73569260d4288d1b6b84 py3k +87472 2e9670d6701731e5cfcb3086f6c2fdab1366df2c py3k +87473 c510c1505ce7234eb039f503ea1d669a3c9b165e py3k +87474 5701a8084001917f6fa2fc16ac9e77eb47415efc py3k +87475 84c1d26797078ff8f0092170da73623df7ee1484 py3k +87476 2d82cdf62b2cde2fd58536ca577042a5784746c9 py3k +87477 6c8a1c11761b48912428d5ea2dd64d1592a4c035 py3k +87478 8e9a47db393cefbe3834a492cd8687cbbe8f4ae8 py3k +87479 ed8df5a90cf19625058d22d936d1d144f9d96240 py3k +87480 9503b066252ddb1799b38a21299c61801bf4b329 release31-maint +87481 d51afe47de732a40be5d159f74f39e3102cea70e release27-maint +87482 fa4de66c7deeb3c7c8fe3bd1974e3909d7cc4346 py3k +87483 c566c4131439f1778f31530b9a10ddf7471db971 py3k +87484 a67b42bff4718627ffe31309545dd0261f1c0efc py3k-futures-on-windows +87485 38d66980187e284645b081e6b1f2b19b88fecd85 py3k +87486 678d8336f4c3dc66e3573c2857da949056e5679b py3k +87487 1b2160ad4c6e4a6b91762b40dbada92f17b69d80 release31-maint +87488 488ed550b7f888cef8eb05bd5179341e14259acf release27-maint +87489 4b926a13dc5428faafcbde1f70bec2e9cc266e6f py3k +87490 a01533b01b9c9bc168fe7d10750369377e36b4d9 release31-maint +87491 d5bbc65bc2b3e01a34eadb3c6859070d620a4ba5 release27-maint +87492 c17a49972244147486a795fbcdc2ecc75cdf6b0c py3k +87493 bf09ecf68a1999861b71ea14268b7d44f9d0c316 py3k +87494 4d20aea605c5fb4400c3b7b12670bb0cb6e1666d release31-maint +87495 fbbefcd6a1a695adfb6e0cb47a934fde1f4c4c80 release27-maint +87496 f4ba54e0ba774506325683198c8ec85018094ba2 py3k +87497 c2ae90acc90885666089d4c5d4e1275168430383 py3k +87498 108bc126930f7f8f12eebcf4bd4c109e712e6678 py3k +87499 e20a6436a9270f8ae7f50b25d1ce0e4620c876df release31-maint +87500 dd6d1ecbeb56d3ca332ae2d9211c6c46f4e30e12 release27-maint +87501 bcd6a65b8b223e55a29953275309ea1fddd1d6c9 py3k +87502 442f1da01a8982d4aec47fdf5f2904a2f9448cab release31-maint +87503 d4d3c89ab388f0c951ef4823a392ff2234f213b7 release27-maint +87504 93e95b2e1a1a23b3b1b5be9cef62e03c3a6ea385 py3k +87505 4bb7f7b151fea9498cb52671972bc7c77d34c183 py3k +87506 66d8446a019be7679944cc3c9076ad98af6629a5 py3k +87507 f61196453c781e706fecb18deb07992971c24ade py3k +87508 22c12a5d8ed30515527059bc69c06d7a7376a493 py3k +87509 5dae04d49e15c99de859cc2528e237c191f5fee8 release31-maint +87510 c694685b75e243a1caa7b2b0188b43a66e3bab90 release27-maint +87512 664705dbfe6299e19d3013b472ed0591742640a1 py3k +87513 efdc5d0d81b721c28ca63e873ad4635cece9e660 py3k +87514 bbf751fdf420677c54bdc2346efdb6c779d2dedc py3k +87515 2d09af4c137c9c6f3cf4b1553fff5c4706428408 release27-maint +87516 89549535d975874230e2b995fe3c15a2c111d83e py3k +87517 6f19622dd342b4d92f0c7e7b580f0c9ec8c16b20 py3k +87518 fc834b323f267dd44dfe9ae7ef9197d278be5aaf py3k +87519 5605f6920b638e408e9bcc5bfb542ba4075deeba py3k +87520 305af6f5cabf94eb42b957096be126ca9a12488d py3k +87521 53209d00d3ab192e465c34574ba4d1eb93c368c0 py3k +87522 0004013ae984a9c4153032e3bbe00e780b36a628 py3k +87523 109defc1a8cfb2e2b2f42073d3da6060e801120e py3k +87524 3a4816c36df7fecd79694efc21cdf18d943f8c1f py3k +87525 e0c52c0e85862330cf2335d66bf4f7f1a379a55f py3k +87526 7d551d5ef4fcf4698ed62ca8853b76a9709899ad py3k +87527 cd6e343e278e8c24b108a92cc504a65d5886c11c py3k +87528 61448cdc0fa8c0f5b2e327a8389110eb75c6a909 py3k +87529 ef93531d0ac47c921fef29e8c0749d4c54363e27 py3k +87530 2e2476fb83eff90ed7cef053ca251277447d0567 py3k +87531 4a7739c5274b8a5b82ffd6413819191bc04ef9a3 py3k +87532 880586b8d0d0157baf4d9ed6b550302ce44e8cf3 py3k +87533 01714efdc6cf12094cd70e548f8827e7394998cb py3k +87534 8fcb8f2655a59240853cf16efc8fa51af22a7795 py3k +87535 14fd0dfb16ffc36269a6ad93b8226d7c9276438d py3k +87536 f509129834617c961ac37643df71a35a2518bf4a py3k +87537 b901da561cd14070fbc76642352c0438f380efaa py3k +87538 a8be05673f34377f0f410498feb8b8c105c1c8c8 py3k +87539 5aa433a277f937fc78ca2cee027c6ec6bf98afe3 py3k +87540 a4ec20cc90666821b165a96de6830c9527bcf3b2 release31-maint +87541 54f1d565155574a773b3315643792c8224e70d9c release27-maint +87542 18bcee8569bb37a44e2bcc9e852037c0ba249f99 py3k +87543 cc78a6befbf2f1f6eea4b580f28a159d7a84d64c release27-maint +87544 05cccd4257a22a87842937fc29c7ffaf175c366d release27-maint +87545 3546ce1aa355bc67419e65bd54a1f2aa7c477865 release31-maint +87546 52a8617461297bb95946c7f9bae68a0704a1e1fc release26-maint +87547 6ccdb1e01611574d1be03e9fe521b4efa3d2f2a3 py3k +87548 69460c805737be8351f5ceb2e50eaf55eb7eb401 py3k +87549 b7be652daf6ee322207b3a40cabede81dfa05c7e py3k +87550 77dedaa36d3acb8afc31c365b2187b9bb93bcaec py3k +87551 741b93bc68a5bebe8d71edb4290f467307cf27ab release31-maint +87552 9559e1152595b95dd2d41732f65b4ea2584324f9 release27-maint +87553 0d97bb99425deca1facbf9052908ccada083f1fd py3k +87554 5bbc1dc459a581f676d9583b24e6c2d9c671e5b2 release31-maint +87555 1df2021c7c3c47d2fbad08acbd502bbb70a9beb2 release27-maint +87556 24988f9f850b1c3ea016b1624768fb4f2e644c13 py3k +87557 fa5988f7c8bd2570648c54a208609f834f77b058 py3k +87558 2a773bef40c211743e04c65bfffeed8ecab71d31 py3k +87559 60323a0e80d7c1ffa2b32fe24e3dcd3a2d85f6e0 py3k +87560 37a915bdf827ba514256eebb2d8eba2612e078a3 py3k +87561 427f9f1550485e84428a8efb8d7d5095042e79bf py3k +87562 2b40e4c7777553726e722dc5c8d28ebf985ae2e2 py3k +87563 b0faf7a4523951143400e7638c5aece9c6e9ef22 py3k +87564 8b5eeb5f454664bc7d6db683671072eb43c8f34b py3k +87565 e2e59cb4f50cb2c29c002710167a2a42410e02f1 release31-maint +87566 00bb0406bfed9401aaca4ffbd378ec3b2522f6ca release27-maint +87567 ab61bab321c10119670217aa1f793b0f89ef0913 py3k +87568 7e716b9a403d14949df2a4e95ed67b27f63ba91f release27-maint +87569 f0697ca8ad476dd88af36a2692b218b22d70554f py3k +87570 2e592a4e68ab8f6071448c0eb89733855ac04143 release31-maint +87571 2e1dbb252f257819a01293d47e4dfcf82b550a66 py3k +87573 10b8366837d80de735a1bc2114942eb1d1b320c6 py3k +87574 41d5b6ca1923ef9f4b7078bf113699ee4b7f6fc9 release31-maint +87575 e8e64eb4ca4cf57f48dce13692aa47af11818a8f py3k +87576 9138634b8bd14602dd25faac5aaa4fc8e73aaf83 release31-maint +87577 4c83a29a712f915da4f9fbae213788bd3e60ff48 py3k +87579 87e6bdb373d13d55f98e6a10a0398b772c6347a9 py3k +87580 16319f9be97c4eb9a15ae30813a4d1fdc295fc77 py3k +87581 54ef52f971a5197f3ce6a021a8304eda1abac3e8 py3k +87582 63bf84cfd8a614eb8560012c590dc4c8fd440d29 py3k +87583 f0b56a38a5243be017c3ffa8cd1aee3e4db5890d py3k +87584 44eb09a55393f07be9a4b9b81fb3b3745522271b py3k +87585 f37f96fce7b94da7f33729d5cf7664c92eaf93d9 py3k +87586 fdb6bd1d5354ce836e47149c400a16846298ba66 py3k +87587 8c7df0356036020fedda0685cb9f3a0f2ccb19bb py3k +87588 cacfff349d48d732cb0fd8a9422fd4395d8daecb py3k +87589 0dfb8397a973bae6b16d1a7f1b6956649b21142a py3k +87590 702037c039ff01394944debbfc3f3a2cdcb72f13 py3k +87591 c72ee6e3b7df8bb9d18cbf40fa2df04315714429 release31-maint +87592 a13b8663febac77ede5433cf4416cd7dc583c025 release27-maint +87593 5510063b39d401e0e8f99c0937044da29feb2db4 py3k +87594 3fe66fc2217b301a9be4e680d50766a4c382b235 py3k +87595 b68f387fbb48a8be453a1e38265dc8f7021b3f06 py3k +87596 875721da746d35b7cb9616ebff5619f64261bbf9 release31-maint +87597 53db290e46ef93b88dce8ce6cef35963b8eb9768 release27-maint +87598 8f924caf2e5e98dc984cbb51359dafa8678591a0 py3k +87599 eca25f1deae731830bbec2453dbe8f1fb13de270 release31-maint +87600 500eb3d0897f4913da88ca220f7fccbd0dc414cb release27-maint +87601 3bc74616c9ffc319a223e7d96b82a326c6f76316 py3k +87603 fa8550213bcfdde7232cfa346957282416a37150 py3k +87604 33543b4e0e5d615058805bf5674d876f65957d3d py3k +87606 cd8c9b67f033852664330557c17764599f3095ce py3k +87607 5dba67ca6ccfb55c017e8a661f65666adbcbef7e py3k +87608 7bb37a4cd7cf759ed01756d0d876645012a153cb release27-maint +87609 5db89853cace196807c01ffc631a881cfadf74b2 release31-maint +87610 900ba07e4824b8e08ec96c35af1619b6227b3e30 py3k +87611 cced0a7ceb43e804157ac1f414f7293d38425201 py3k +87612 415a792e12493b8c21baaecd77d558e4d988ea2b py3k +87613 a9aa5e4eb8c3ae55f90d161edc8ab556edda1d28 release27-maint +87615 f8c2d890fd1054b9d35dcca8e092b3c4526053a3 py3k +87616 8dbf855c90edac781969eea46051b770e42015fe py3k-cdecimal +87617 57857a60fa9785bee0492c35b8b3ac4e074fc11e py3k-cdecimal +87618 dd49455d8a8c9177727be9c5cc8adc40669bb6fe py3k-cdecimal +87619 6af9e8000332978a4a3d8d6b80f41f1047815a2c py3k-cdecimal +87620 a6cd84ca7b2a79650f442e07dbcd528b5f253979 py3k-cdecimal +87621 aee454400ed717b827bfeae538f33766783d2874 py3k-cdecimal +87622 4aa66e51488f3945adbf7f1ff52cbadb904d6e2a py3k-cdecimal +87623 0b2ea90300c0c9bffea51513296159fd0abc38a7 py3k-cdecimal +87624 d2ca5b3104aa3cb97c14d705c237bddcf7092d5d py3k-cdecimal +87625 d393ec536ca9d5d3ea32012237d1948690629d08 py3k-cdecimal +87626 3feada72233c4734e72c94237f2b4e444877f310 release27-maint +87627 dc6245bfe5661af96fc926c61bf1d98766335f37 py3k +87628 7436daec94210e251fb8a690252dcd9da52c9acd py3k +87629 4496deb26265da3607e086ac5033e684b8aaeb22 py3k-cdecimal +87630 798aa3fe0347b59d99bc087ea3518347d1f47e47 py3k-cdecimal +87631 21e4f1aa2430c2fc5996a37c670a4a1aef6c3966 py3k-cdecimal +87632 0fc2493a3863d7e2d15330816244f621b70f2fd4 py3k-cdecimal +87633 5d36f0a53783ade40bd1be7563c42341c151a9d0 py3k-cdecimal +87634 e70c93612d7fcbd2bc99f1ff1f633ca3fc4765d4 py3k-cdecimal +87635 d44ba752103f23b7aa7829a9a8b367615bcdd62a py3k-cdecimal +87636 16e886a76c5a59c498cea9a704b8831f6ff66fc3 py3k-cdecimal +87637 fe723b8d7c5fe3097afc89e7aed5dd75fc2dd609 py3k-cdecimal +87638 64014913eb8809b85fdb6c9e2729cad0c4b9a2ce py3k +87639 b344377fdd8db56b40109d8157599d2262924cfd py3k +87640 3365c7b648937dfe52d0a56ecc92783ddf94d1e6 release27-maint +87641 8f33b502183bf0394812ed51cabfa3d1a0817b05 release31-maint +87642 ff1261a145733a46dbfc0b14e09173382f9d2543 py3k +87643 9ea12e86d565227f3f69f29a9d5354376cfbf1ea release27-maint +87644 152a0985b138b7918d17d7c8ce5b4e32adfdfa59 release27-maint +87645 0afc4139cc70291c4a1f3024387434ad625ea78f release27-maint +87646 0cae21de992138f4d55a64f62bc97424a4f8ec99 py3k +87647 0071a17346909907aa6c502d7003070e39bdba1f py3k-cdecimal +87648 6c463b07dbdb72ac54d410df924deae2085731ca py3k +87649 dbb6fb2c5b9d7e6a099c8af92f05b4c2cb77d028 release31-maint +87650 eb954c765521aa727d4264f7420e3fc9bd449b4c release27-maint +87651 a5ae3a17d5fb181415fc32c5f44baeffa6a3d4ee py3k +87652 e0e4efb63354cdb6f466ce50632283aecc37fe7b py3k-futures-on-windows +87653 256f794c2cc0284440bf5ecc7620f33870e02fd9 py3k +87654 581e672478f7ea4a1f3272be7ea806e82925eb28 py3k +87655 c4d67fa909dcd2da19d1c41ef056a207662bb480 py3k +87656 b020df9ee3816cb0a9364e40c4ea7ab85023a0b7 py3k +87657 d39efa54deaf04930998e40291728e2ff714cbf0 py3k +87658 4260e30252eb2bb7d55eb483dbe5528d669bc57b release31-maint +87659 730b1af092387483d0728881fa89f06dd6f6b38a release27-maint +87660 04aa5be706ac017711a1aa95b1a9f534243fa0d3 release31-maint +87661 a5daa14001a8eeba4ad0297b667ee5962a058f8b py3k-futures-on-windows +87662 f89e37cd6c6577168dcb3f0253067c226dbe3ab4 release31-maint +87663 88e5ae5b7dc26a01c65bae9523281d79c5c13bd4 release27-maint +87664 e28868cf982589c75e17d0d40de3a298c7a837b1 release26-maint +87665 746143ec1f60da12954a7ea671f91536f40292a0 py3k +87666 4af987ec033a0d06e13199f89a52efeaaeca10ae py3k +87667 28538f2e0cc247f3f5f89a4708fa4ffaf49384d1 py3k +87668 d8ed0cc9e3382c2694ccd0f4ea312acf3b5a15bf release31-maint +87669 93b7c0008b085e07a29444f8961a9f2f7f2c10b7 release27-maint +87670 73b24476ca3baaf707e7763b7bfd7f72250fd533 py3k-futures-on-windows +87671 a048d0cf2ad1d821078495ce39702bb4473daa95 py3k +87672 5384e720f28fd198360dcd66e9856fb13e9bd77a py3k +87673 439bf9680bef26603c8f4a77192918ae3737e206 py3k +87675 e8bcc7dbab7dc20c339f38313f8a44c4da543ceb release31-maint +87676 c898dd215ba066574f7ae48e19a76f8835ff563a release27-maint +87677 fa59ac1164840de9c18b492cca34366d8266839b py3k +87678 5776f424d857812d71fabd671586137d2223e320 py3k +87679 28119061f7d01188de4258119f63040fd8fc87ca py3k +87680 80600c0c33b78b1dc85d71e8a2da02204c274a4b py3k +87681 f5b105c9f46bf6f2abc37ce14a67ce5c2eb03bfa py3k +87682 ba16ff86d4f6cd1596da260bd3b3a1789bfdd5d4 py3k +87683 dba9b9c7a2db76f84770ac213f6d9386aa654103 py3k +87684 6cb7ed7b6697e5352a3ff4ee441c0457e8ec19e8 py3k +87685 948692712fd710d4c3118f120a2beebbea996a09 py3k +87686 931d2320f56a07b471dd463384f035760d697567 py3k +87687 4c46f6632ddf97764bed042e470c8a9b09830e8f py3k +87688 77483f3e491a79360c009dbc4cd456cafe3eaaa1 py3k +87689 c417d805768274097cd35c9b0f001f3ab0c8cbf3 py3k +87690 747c55a94cb0e5e518dfe6686c6a217fb1f6acf7 release31-maint +87691 6b7d9f1c2ce51a84cf0a23268dc4af8084701f9e py3k +87692 245359382b0fad3e4328c7bdb50dc530adba6ecd release27-maint +87693 feb23e24dcb5c70f33110799cf7296a2d41a76d0 release31-maint +87694 a33e1f02091f8fa15e7b82b074eb2c959449e903 release27-maint +87695 a66a6e42538fe40913f6563d2bced4afe7a972f5 py3k +87696 e9a51d46357924431563a7a62e0948e36c34b9da release31-maint +87697 a476eb087ee9768331e83a352480483557597abc release27-maint +87698 8ac4bcca8e3161f2efb7bdaecc17e79f244bb1ae py3k +87699 9aced5aed11af5ae17bc7f444b5b8c366d7ce722 release31-maint +87700 b0b4414c0bdc21de4365247888087dd7311f609d release27-maint +87701 78de3a7fb89634e296bc2574a5d2a5411e3bb2e6 release27-maint +87702 275fb9849491fe15a7f20bc1bb7c6ec263f4e29f release31-maint +87703 f498ea978c6fe0edc9da5ea88e99c40f8b98e442 py3k +87704 611567ec4d7b715cb8068c009242fdb8d73441b7 py3k +87705 8c18992d3750ac23dab7901c66c517c184adbf51 py3k +87706 f60a899a204e5b28edcc6eeb41377b7c3d4b21f3 release31-maint +87707 4094bc13acfcc4130f3c2496381431813d628dc9 release27-maint +87708 9f49ee5239756109802ee7432f607e50fd12088e release31-maint +87709 5bcf108a3f5dff27da210788ec33b69e55b02bc0 release27-maint +87710 6e5aada4fdd5f1768862beb4bf70513e425a05ac py3k +87711 5011870ec86bd4f18b2544be4b6a26537b52aa21 py3k +87712 a7c499266a9fe0251b6e718f8f8aacddfe3489ca py3k +87713 8f509c5260a98ac398eae8582f1357f16db1ea21 py3k +87714 893273d793c6ef51c5529c80e2b782b924032035 py3k +87715 731dec4e75138164ad9c8b3ddd0a810302d63864 release27-maint +87716 9ad896426f796418013baf359aea4f80cfceef73 py3k +87717 70bea2dadef8a714d2b3a7d3fcf6564e0d7f6b94 py3k +87718 8b848d3c6ad014450899fecd0f8ce2a471c15cdc py3k +87719 d36e345a1a3cecbe9ddf8f66000fd0f12c34b379 py3k +87720 f0eb3448ce38459293407c3fa0c94428d79d89c1 py3k +87721 9cd83c658ba4620bf32338bc6fa967fb14add2f7 py3k +87722 374dc910db33ad68c073889f7a956dd48ced07e7 py3k +87723 18dbc3ba16c0eafd80c672f378a67c47f2feb13d release27-maint +87724 c007c3dbbd3fbd9ee3bd5b84cc6c76fef1e96b86 release31-maint +87726 ad2f34380aac8678474bd653ce1396bcebdc6c5c release31-maint +87727 3e1c3d2a86890705f1372769045ad6a9bbd34462 release27-maint +87728 f78e7db1d5e864ece799d9e7e1957973611a12e6 py3k +87729 4549426ee4d652ebc85dbfcac0d20365013068c5 py3k +87730 f4a808f5a66d1ceddce44351837038c7fe6cf0c0 py3k +87731 a7d15df7d67d3f0f1131fe48c08ebded8d07f5cb py3k +87732 98c8aa237fc1cc1398e2d8d5701d8516014aedbb py3k +87733 3bf4d9f1660a4c1dcea535b9444e6492cd69243e py3k +87734 cd27982087eac4bb2418e5930bb5a700c7c30bee py3k +87735 8aa8dca46684b54fbcddee579df7a1e68fbba691 py3k +87736 1e62a0cee0922c3f9fb837c519f8a39338e3a37a py3k +87737 642c8806830f5fb42024101d1a81729ebd687c71 py3k +87738 20043da78726a394a2b2b6d2a3050f62a5851b03 py3k +87739 629eb3b69909f1ccb6f1e0aaded3fa49b504aa6d py3k +87740 3478d007df23722df9fd37fb2e7f45ce064cb57b py3k +87741 a3b7c290754a0a152381a8ca813cbef974896a40 release31-maint +87742 a6bc497b196243ced8e32011101a9c5c4e7d8370 release27-maint +87743 7c5c37b962816b78754e905ca9dfd3eb75917f73 release27-maint +87744 8af6e8fc0205bccc658027d1ef3793ce76268bcb py3k +87745 4557d495a4846c3e5225f5fd5a0c6a548a99e245 release31-maint +87746 08192265d172c4c1089747b6c0812923d2473c8e py3k +87747 c0fef8a144fad98de8ed6ae0d290d352405b132c py3k +87748 efcb14f94e76913bdfc1613e7698728af392618a py3k +87749 dd3f28ffd029089d08d1f16f3528f6cd0b589844 py3k +87750 49789a52a9762444336d482c28eb36906c369cb8 py3k +87751 0effb175c9819b9442e250c64ccc985e71e7403a release31-maint +87752 85fbd775534eb7d80836ac8bf54c995811d5e1de release27-maint +87753 a0d4eda8da0af0fe8c041666942c21a5efae2fa0 py3k +87754 4cc47a9083e389996ffad4e9b6b39628bb2f1682 py3k +87755 4a82be47a9481b1c03bb951ae8e8c68c5e9a01e2 py3k +87756 de862dc0cccaf69121e1e8e748469430e0f00e4b py3k +87757 2961af80d54558b67ec4b35c763f7f30ddbbca14 py3k +87758 5060a92a8597e50eee398a17c0e4958d543bc9df py3k +87759 e9348d68cfcd0008e9d8856869201416102b2424 py3k +87760 c0425b5ede47ad6f2a7d11b4203516fddfd073e7 py3k +87761 a44badf9e00f63d3dc5df9e9d7061015be5fc4dd py3k +87762 bc57fdd89562b1723198700d18a4aa09401702ff py3k +87763 799cd15231117f933990053a0d6fbd413bc17fe4 release31-maint +87764 b7426be6bbb4ca1f38faca7915ce2d8837145fef release27-maint +87765 745225ae29ef081bfed60e1b756a5d1ef35a4c22 py3k +87766 912fd20de0e0720cb044fe47ebe30f27cc936f2c py3k +87767 132374d537e4d10d76d6ffe768f3e842cb43188f py3k +87768 ed02592306112a0ce2d702328188837073548e3d py3k +87769 bdb57f463c85fb54f3f9d2d12e0f74773f4e97e7 py3k +87770 4bf3a5a041209379f77ad771a90353d484458aa5 release31-maint +87771 0762898fd80286e87ff9daa1d0269d29d1ee03c4 py3k +87772 8f53a4e896313c56dfe75f21485e6b58cc805930 py3k +87773 de38794d174989a39ed5ef21865f269a9ccd9d11 py3k +87774 f06c278b4f2123ebbef7fc1a44d91d410a85e3e7 py3k +87775 58b784553ca4f5a842ef2e8d2c914ab723079fa1 py3k +87776 92f61a692e394131adb35a30d466a99cd0971836 py3k +87777 510f7e29e72817ee1f6ad8948c1dbbbf36a54f5d py3k +87778 20e3af1d530a8fb3992c73c1d692f4758b73a989 py3k +87779 cf9e1f7464dc58ece9a772ddefac639908f9307b py3k +87780 92f2d7d28feedb320d6a5a1ee44f1fbff888fe47 py3k +87781 34d891580f38d456f0235006846c8bbc434751cf py3k +87782 247b7ba6ffad448918907b4b7d0114ddca6a822d py3k +87783 8c448a4277a0d4fb9a65ca5cf8b867f486ae6906 py3k +87784 abb686a5a1dfcd6c02ff457a3f22722acbb58b4e py3k +87785 c9b484f2a0b7074957ec26859b1599c7c5255f35 release31-maint +87786 71e1a996183619a3a262305b48fcde3c1ea4dfd3 py3k +87787 3d824b5137ddb133dfe57a586f570a06536deaf3 py3k +87788 d824e9cfbee86df0a5b3519a2fe6fb76e3727270 py3k +87789 a3288a4e2ead9ad10376d3bca41f23fc2559ff0f py3k +87790 142288089c1a4656a1a2d962d9c8eb8e3f1f2212 py3k +87791 5d666854842842f91caaa359c218e72ba31e0371 py3k +87792 ccbc84222fda58a3606ccfb949cc1d247b5f429c py3k +87793 1774d6a2f5bfef8f1e6b41459b154886cf75f39f release31-maint +87794 26836e47dfb91c471b6a191f56d5d84c4e4b6b11 release27-maint +87795 d2a64612d235b6ef242ed9ac3fe3d7b27d5280d2 py3k +87796 64c245313cff9fdd46e54dcd3c5b3998244f4019 py3k +87797 a4cfb27824164afd1ccb255c727008a4a01d4aa4 py3k +87798 591922299acc1118ad033a7ab8841fff1697807f release31-maint +87799 b332e73b556707c4a1088b0089d03e67162c8c15 release27-maint +87800 7e7fc94fd0d414fbec233e7a24b5266b6fbf3398 release31-maint +87801 419ca089d365f3014a4e02b50a94ef30f765d721 release27-maint +87802 6a1d080623d77b825c1de77299f386833b6c35d0 py3k +87803 7222697964fc744399c8ee118bb3948ad15dd1da release31-maint +87804 c7fd9b6aa002ee301ce3ff9e8e7c16f2eeda0bfb release27-maint +87805 8a302a09ee83a76905eed2e057fffe8b90a6b032 py3k +87806 020da9b87daa891334bb78438a104f0aad3ed727 py3k +87807 1d4dc9df24967282356fb968ea48400d67246c84 py3k +87808 01b253331a86e0680b7d4b7fb4a68823a8729b46 py3k +87810 7ba5f57c74e57628ca41cf55f630d942cfb191b9 py3k +87811 7e5777e1f0fda3f136c9c146e930bc2dbb30a29f py3k +87812 12cc81062d4a84f670b8ba883d46e893a0259c83 py3k +87813 43c8c1bdd94fd8aefe9885e321c11f861074add7 py3k +87820 83d3d5e0687efe4d11887e0bead39bb7a145bb4a py3k +87821 2ee6b444c93dee485011606034b9d79a040c0f10 py3k +87822 5260fd12c763ddd3c9d323f5d3134953412b3469 py3k +87823 0b0a2b6c3ad983577b84272dd5b6bc478e99a68c py3k +87824 0933c3753a712b9f8af2d23e40ae0dda1f8ac254 py3k +87825 14270fe84dc771f9ddf8675dda9b008364d410cb py3k +87826 3ea280997001d423aa4a8f04fdd86c90ea944a87 py3k +87827 377815985caf0d03c3e368b9b4903a4c3ce09ae9 py3k +87828 5f8eb9e7acdc065ae3a006e1791feec7926583d6 py3k +87829 12074f3ab8095f91a47368abad71d1f6fafc5a12 py3k +87830 df9a0616004d92e97f871a8a95de397d0d90f59a py3k +87831 133dee82a009616e1c0dccfa5dba8f92b1733893 py3k +87832 3e75cf3f6355567dda86f0a667fa7772ad6e98fd py3k +87833 66587e90fdfb627f88ab1ac7a29f3104da2a8fd4 py3k +87834 f5950df03ce210c50ccd9651ea4c066cbbd94932 py3k +87835 6a5711965571ab206b549ef4f00636690d461715 py3k +87836 54fa6216585335b23ac54dc3beffadeb65b40e41 release31-maint +87837 0de1905a761f87ad82345c66f4ae32ccb357ef89 release27-maint +87838 080a0e96b482b13c0887ce2eb629a70777a44db6 py3k +87839 b0b79c3734acdfaf9ff43e75fe39a900e6ed2879 py3k +87840 cad1811d9e13e9fe815d147878eec306047fac1e py3k +87841 397b99f5912e76b6c57511ff987d51939bf733de release31-maint +87842 631e830016c0e74f5d934ad35f07fb4a7cb8b535 release27-maint +87843 31465968ae2635c65f707ee825fd1d142ad2164d py3k +87844 c6b8c5b564a8c4486267b289b5392b354125d71d py3k +87845 8757cd65929194a4b4c80ac0cf3d08f86658fbaf py3k +87846 253d91e4f6729144256896f0cc0696c515ec2540 py3k +87847 3b79ec83ce21666f4b5065a775c8991d4eaf39c0 py3k +87848 e480604767c4d3137822782609205bec44157dca py3k +87849 15967b7f058f1b782a9d0b61ffab4ab21eb9a48a py3k +87850 0e1f4df478f668a74db17dd5b7e55bf7550cca44 py3k +87853 6492a713887e8d9350cd063e8c4dcc3931f5a024 py3k +87856 dc9a56dda4287f7760866431d2b21a6984222ad7 py3k +87857 90cba6a672f0e9bd7c3b6a54bf5cb99c6628f6f9 release31-maint +87858 d6566a70caa0a84b4f217a2a7e7f204637567894 py3k +87859 8239ec6f39e625510897e937e9dfe55dc0fcfbb3 py3k +87860 c03f64c71b05ace0ecbc5d2e767fe6cb28f509c8 py3k +87861 09323c91109d2fce1e5705538404765ebe55e4d6 py3k +87862 c6d4534562f40a1272dccce811d3a6522ab60e72 py3k +87863 f12da53b8d6830567eb5be7829cdb9cfd1547bc2 py3k +87864 abe201dfd3dce2fb711889ecdadd6d643ce3eda4 release31-maint +87865 075974a90c31b0c7ee05e26d82653d545824109b py3k +87866 4d1927091b39f79fa04b05230bb2902a9fa9fe21 release27-maint +87867 ea0b94d4754d755befa48756e80ac21cd36fbe3f py3k +87868 20517aa3a3589ac6089a8f81ab10d1e7592db2b9 py3k +87869 7263bd90e110d466a44d2c8f12aa74d3a042c543 py3k +87870 3ed3c7c6b605d78070e0ba15293d4247c3e54175 py3k +87871 1f71c43ad7e338ff30e5f73e093afb8bbecc5e92 py3k +87872 615778be98e99525e7dfe27120cde0f21589393d release27-maint +87873 8bbff1c24a312a0bf7338438eb967d3bd62a0b24 py3k +87874 966b87f2395cc9c72b69f3da94a19cf59b07fee9 release31-maint +87875 adc7e1671d8c395a2b8885630e244a8d8e71c3ff release27-maint +87876 9f13dc439dc51c6955d22fbae2eaac84527d8a2a py3k +87877 19c05051bf1a02d20f8d210be6055279ad490608 py3k +87878 9b2e60ae4fef97db30d7372fa1c6ef2e5aaa362e release27-maint +87879 7ec21653a4d1e572e67e85c3494f96debd7f49df release27-maint +87880 95301a42852f5425e9ae10d9a81bcaf1194128f3 release27-maint +87881 2e74369b4f4060ac6779c628f3ec0ec3bccc8f1a release31-maint +87882 0c94c681fc5320dc280881323487d46b9a0c41b9 release27-maint +87883 e4d07a6f7abfc16619fa589311cccc9ab5fe6a8f release27-maint +87884 5ab96364e761900d4532a71e78d942c4df90bbb6 release31-maint +87885 de762b01c3664b4947ca38235eb9b561a2099e3a release31-maint +87886 58a1b7e8e7532369d0fc5f99ebc13f7f1d663f34 release27-maint +87887 5f77907b0041e7e12a914ff9bbf56f54937cb113 release31-maint +87888 4ad6196f30a5b2208afa7692e897d32e4ab540a6 release27-maint +87889 e1b80e39e40f30c32750a2b29176f05f7c57ff52 release27-maint +87890 b33bf664c48aa495e8eb97237bb2b7620edb4a31 py3k +87891 1571cc072fc2ae308e79993476d2bdaf84aa1755 py3k +87892 681d0542bbbd07e64289e39c7053739d06f3bd08 release27-maint +87893 ffb2c24bcb626dd8e12e8f3349a09a2991c93404 release31-maint +87894 4bd296c49526f63503561b24b772c6140cb53c58 release27-maint +87895 a22d61be4842b40c745479f09dba3e9dc9e420a8 py3k +87896 fe6fcaf7bb17da4ff05954cac6b97f1573523355 py3k +87897 f8c683184affdb7fffbbcb5bfe4192d593c48f89 py3k +87898 974b27c9d849df4c9d5a2316698bdfff4058888a py3k +87899 1a37f4ba1f920183fe821672a473f183a87d3dd7 py3k +87900 c2c4a9944596f4c136e0487dd3d3ee3cf873fb71 py3k +87901 c4a52526e77fa64216db34bc037cb877b9b2346f py3k +87902 b5a79b5ca20372a6017b4aabaf5f714f93cac5fa py3k +87903 3c12ab9e214e9ecd5140e2122437b2b9826750b4 py3k +87904 ea3ac62efe67cd4cdf7fa275c8b0f47ff34b5c36 py3k +87905 a2b161f175252fde7d14fbcfecd1e97f0051f83e release31-maint +87906 567d961be083c574ea634d915c0d191dbec8b0e4 py3k +87907 ec58890975f1d2f0cbfc9abfebf16dbeb20cbf68 py3k +87908 9855c8cccb36c0e04ad1954d20e77ea48c7c06fa py3k +87909 db7a32d90cf4a2d9358b70cf34e9d6cd4fe33c84 release27-maint +87910 3e6de8851f2310165f79d1eb340bd05d6211d97f py3k +87911 1450521b9d93f4ac0e5eaa62df11cfd8a3107a10 py3k +87912 e0a66aa3427a6969b3ca8311d0bb8375dd4ea246 py3k +87913 e47d8d955bd61083df19c31dbb36b206938480c3 release31-maint +87914 ae994bd466178c92e893fd4435fd0ac3ad68fe9b py3k +87915 65add7a40f7022f29c4905b3601d12829f2b6b47 py3k +87916 edf301af261613add0b739d395c71b655af86917 py3k +87917 ac6cc1404e15057440ecea806c7fa007f97e5800 py3k +87918 1c65ab44d3671b3d48fca41b627a1545e170ba14 release27-maint +87919 d70522cc9d4fe7a642e1d573f197bd70c01c14c3 py3k +87920 ad0eb57eb2b5b876d97a07351e59d2a8bf1119cd py3k +87921 c0f3ac19392b6193438f8fefcc415be058c10627 py3k +87922 b16b0d754fc93a57eac6d91016f0e8feb86cd126 py3k +87924 d573971311242ae882bc0ab9e0595608467e2b3d py3k +87925 db8d15933121c27fb60ef7d9fa4b41c282e9f209 py3k +87926 78ff08ccd18b7fdba9d1fc91eb444e2507df03f4 py3k +87927 751372b79ed6925a7714c455d2f67b35bd231b77 release31-maint +87928 20969821bb614a3ab976252de30792827298d295 release27-maint +87929 7b51594a15ded158d4bb274385eebc2c9f36e86e py3k-cdecimal +87930 ed6d053eeba5eb672e889dc88953a36c810a2485 py3k-cdecimal +87931 9fa07e7cdf3862af507f3395feeb5a30224c1b0e py3k-cdecimal +87932 4b469c87d7e2ea8133522439fe11b92478c38472 py3k-cdecimal +87933 830952a71d2177d81a4adefa33b66c79fb45941d py3k-cdecimal +87934 048ad0717a45229af30b78bc97da4a084b9733ad release31-maint +87935 f827f703ef65c0e403c2ea8cd589d22d7d36ae2e release27-maint +87936 a3c37958a20948dc58a1d20e379471ef54c344b5 py3k-cdecimal +87937 707f8927d663060b7c2ec7d6a12e22cfa292167f py3k-cdecimal +87938 2244ac6c2a9bfbfd3fc6d318e4306e5316fa5d8c py3k +87939 54c8644453f9134dc1b85dec5f2a70e1d3954f08 py3k +87940 c0b95cdaf460a2a8233faaff9078640f28e28fff py3k +87941 cb754a582b340c59019c4d430430782e7eae7eeb py3k +87942 2581a17b29af03319225b03b87b0043b1debe04b py3k +87943 df34bb0869bc852d4b4fd07ce267b1ca77044531 py3k +87944 ec96b5b5723bcf43267501245c47c98be9cf7419 release27-maint +87945 1b1a642971497ad0ce580d671af83177fc629fca release27-maint +87946 7f0d0c9a2d729399c2f28cc39028cc5290fcad66 py3k +87947 269cf46c09af5b8337b90217b226902464ab29b4 py3k +87948 fef521f45af3a90a68b6740971533d51a7837dd1 py3k +87949 49b0b2bc0e8331bdf9e420bdaf32f81bdf1b6d8f py3k +87950 4350721dee553f3cc615ffb4643e72d211c20ae5 release27-maint +87951 6009388ca5a23ffcab76215bf3f9ba1c98a21c11 release31-maint +87952 74bf93be567102d118f43428334fca95e3147a2e py3k +87953 601bcb6ff752d75c702f1bceb2480d1703b6a7f1 py3k +87954 236e11ba18c57396d572e4b82e4a571ef8f936f3 py3k +87955 2ea1cfdf929bee09386e563c0c241140407056f0 release31-maint +87956 ddaa17c098d93dedc67cb76af607f82355941ae3 release27-maint +87957 91446817cc3e8e73fce40a793d750dc260e508fb py3k +87958 a50214966d2482ea6eeae27f6ecb2a074b16c0f7 py3k +87959 77fe3f16087af9f1c735e61a8aed1014de6dea3f release31-maint +87960 aeccbd16970f8f65a22f6a57ef098ee30e8d942c py3k +87961 e15260a44e4478fa46df70c2ec7920b03daa3aff release27-maint +87962 5048b27200d74a1075cfe5cbe3e075e52eeeaea0 release27-maint +87963 6cc5277f5e7aa333521ec7456fe15b3e6aef7af0 release31-maint +87964 ac0eb5df2c05bec18e3a977c2c9c208a58ac6d09 release27-maint +87965 d120218d80ab43b4c7ee92a25baaf3febd3f21d7 release31-maint +87966 3eeaecf005c14d38c4f7d205a359db1ef69c432c py3k +87967 6dcd491506ed50533188472a5959b3d82b7e142c release31-maint +87968 b9b551ed0858d2b7db1433b031e815d442127028 py3k +87969 45a391cdc68ac28dcd3d4abf8a2a0f2369fa3f1a py3k +87970 4abfb7670eadda907bd61e22e1521970233621f8 release31-maint +87971 41bdc032e71acd7f445554a511eaa9f5cb06606f py3k +87972 e1cc35728481eedd4b753e60ab71af02e73909e9 py3k +87973 4e86d695ba98a58229de482e352d0b683f96e1a2 py3k +87974 c669a6976bf8cf2b7a74736105e552eb4ab025ef py3k +87975 ccbd6587f8ed5c8722d047225ba3c01e1670bdbf py3k +87978 f916c2aa238fe8a20ce658a2b9faa085ad03469c py3k +87979 efdf25617b7cd427ea47b894bec3b8ac2ae9e549 release31-maint +87980 e125d92f7438e12fff8f3cd3dc6598c73c180501 py3k +87981 8719dd712384db5969a5293ed2a4dc1973e43fcc py3k +87982 10d67db679420f4e753795cb426195a46ded0fbc py3k +87983 cbdc8b1e6bd39ca1c5a9b4c0c7969163c03bb7ef py3k +87984 4eae33f3797c5d1cd22e69d49841feb7cfe87739 py3k +87985 25d53e4497d8527d89e2600b7d85d79f0d9a13ee release27-maint +87986 2f0894c02bf2b88ca022f19a3e92dce8ef82b807 py3k +87988 7cbb5f3b6954b9ac2f25b298a51a6b004b64fa5f py3k +87989 7d658b49b3e14e9b163ec2b3bc16d9491d145010 py3k +87990 3ac9b7cf7614cde02f5ada05345b303b856ab770 py3k +87991 608f3a6158a8c813378907532161eb1555819a8b py3k +87992 474b2ce0794ffaffcae4e36dc51fd951f455a1b7 release27-maint +87993 0353b1613aa814bc6c93e2449e22349be1288a40 py3k +87994 f19824aab39c80bd46ceccf989ba1603cfa8c61d release31-maint +87995 244a27477396d4a29804a4bfbaae1068c372f9b1 release31-maint +87996 f6e9ac4b88136b38d947c1e6015ffa291af16aea py3k +87997 7f8888b4fdfcafe9a3d00e82219a65c9e1fe737c py3k +87998 d864328a74e4142aa286f822c4b827d1b70cd930 py3k +87999 96ffe4a311dd4d5f0548c3bd05d4e33bee4cf36e py3k +88000 3593b0d9caa74c9048b09d84e019d4175f00c026 py3k +88001 febe04a6d4864dd88a882f17f33f0102b47f9623 py3k +88002 4430e4d635947a2a14bd58b36444225881a5b218 release31-maint +88003 18ab8e0e67025bc339bb42ddbf3be048932229a6 py3k +88004 2afcdf68a3891f7952ba1c8e33334d379b64501e py3k +88005 b04da544e13bbf543d7fcdf2fcb440056d683619 py3k +88006 48454765d8e0ce6550a04c4d53ab37a28a97c868 py3k +88007 911d0a74609e218020d3dfe2ed0a184c050c5508 py3k +88008 7b2d7cedafb0a1162f0d25bfc8fb60cdf570c3e5 py3k +88009 0b4c995299ddcedd1527a2cece2b907a26efb126 py3k +88010 4dc5503731fea1767cd6cae8ed9a8c0f3ae39de4 release31-maint +88011 2930393f0bbb91da5c4e60455a5e6dae41b83aa1 py3k +88012 ae09945833451bb8cb5c7319ef1ae79f92f2e998 py3k +88013 c0c594aef84235e700a2f32ac6f4929dbbbc43a1 py3k +88014 3969a6ca16af29176c4865283b86f2e08de5d29d py3k +88015 3f99c36d00b8ad5f27c569ec018672c16275715f py3k +88016 93b7c0580c43469bfba17cf5118845d8c14a342e py3k +88017 f130be01d2300d99432f3baeccef1f4baf791230 py3k +88018 beeab0fa41e5eaff696aae59f232c6b47e00372c py3k +88019 b03747ada44d6a802513612a2a49907e2b737614 release31-maint +88020 ef0777af9978ee2b27f44b989f6acfef6f4c05b2 release27-maint +88021 b8f97d8cd485f27ad35c33dbda84ad04f20eb022 py3k +88022 3c316236eabd2aed77db59dd06f9748de92164a4 py3k +88023 41d874ecbd81fb46617f78db015a54e0ffe879ae release31-maint +88024 7acb839f36132eb48ac6e80f065ae37ca97bb7eb release27-maint +88026 8ddcae2b64b471fd3eea70249c22af7342d22e1a py3k +88028 4a20e3ca25e9ad781434cf81f5ac34f460858df3 py3k +88032 9076e4220fa4f0d370e7074ee2027bbe01def959 py3k +88033 e84d5efa6d754b13e467dc9b84086885f3c2ae85 py3k +88035 ab9dc42547c098e347864f6a205b4a5966dbde11 py3k +88036 865d5b24bf28ca41b536befc326407c03e74a4d5 py3k +88037 fe1023af6b5969d4c514c42e91ecfcefc12be6aa release31-maint +88038 ada702c04d14c374bef61f62f1dbbd56410dc68a release27-maint +88039 42efc11ab782d0d1d02c58f87c62d159c7be999a py3k +88040 8565e723b4a0ea3daa14b535ea245ae741ccfcdf py3k +88041 fc1d159178955fc2196b1d82948ab8db1494d3cc py3k +88042 b1104b425134c6e9dd1638ba4bdc46cc68c0651a py3k +88043 9f282cfa89a2186a5e96b3f35e533797578f1f60 py3k +88044 b7a97f11b41b376d941ab44d33b1bf48a4ca02f5 py3k +88046 c91de326835e978fd95fe9e560bd0569535365be release27-maint +88047 1f6e045e8a69bab5c55cf6e2e8bdbf66b77a032b py3k +88048 d670482a5821175f9cf911723dd05435b1d21348 py3k +88049 45da83327635fdbcd5c48453a128bcb151adf0e3 py3k +88050 2cf67c6aa6ee68f0abe807a653d21dead0ef1d1f py3k +88051 384737a74080e3e174b5e85c8fb650d5657a7625 py3k +88052 4724b94c574568b6238bd750531a1298bd68b4d8 py3k +88053 368e91031880200b084f3f616d8f1e2cbdffc62b py3k +88054 aeefa221bbe652805f0f52f846143faa3919503b py3k +88055 691bc2c2fc22d55ecdd55f2a04ac6beb6adbe67d py3k +88056 525aeaa3d53f29fe50a4965d7872f17fd2c67afe py3k +88057 faec1b5a96db744d76b99b1e12c856d0a76f805f py3k +88058 36910851a715cfb5f554ee322460d713fa4af700 py3k +88062 7b31beb88cdb2f1968304e028cd489c0cdfaecc3 release31-maint +88063 3674dcb41a94f30c070e9efcdaab95989dfd700c py3k +88064 dd87b0efcdd834a2e5bc4591041af62475161cad release27-maint +88065 c59cea2185476735d0b7dec735a99b81f595f0fc release31-maint +88066 df8b6a2bdddd72f8d40a826430111a9a6eaaadd3 py3k +88067 811b4fb8f0cc69201a4b179d0cf271b8b0ac5d43 release31-maint +88068 1f6d1418cc183167bbdaf6bc0b6a0c5fe80b9b76 release27-maint +88069 a78c6d0c3f69cd9f763b217a0c33334ed147cc30 py3k +88070 6e8e0fe18205f00a25269e1b87282d9e37267dfd release27-maint +88071 b948dbd1fac1b4b7c6b411c1afc611a5c68a28cd release31-maint +88072 cacc35a1e0c3d159de8314949c6d47f4ff7b80b0 py3k +88073 d35a24a947178d493e437caad2ca0615057e12b5 py3k +88074 4d275c58214b313291d29da3a8b52cc441ffe7da py3k +88075 ede260a53fb50a87a9ff4e2cb273ad8bd9055546 py3k +88076 295ff55a265e7b8714fb1050d37693cf9814e56f py3k +88077 9a00de250e1e4982c2cd21200216c932ac2e85ce py3k +88078 89628f3ecdcbb7b9afd1340d5e77ef00319f9c44 py3k +88079 415173f87f45d821dc1329990c4e285a652186f2 py3k +88080 6e68265389743b13ebd5aa3b3a9b093c384c7d74 py3k +88081 fd8e80fc2d94364ed4e942627d4253df9802f665 release31-maint +88082 6101629810e00dd2516373dcceab0887733ea9ad release27-maint +88083 99eab5edf99dec72fc7d03976027dc583b2d624a py3k +88084 57bd0d864cb037a147cc1e10fd4774e0e74be4d9 py3k +88085 f5a3b6397a538d810229c36c4f9144092cdbf00a py3k +88088 ed8f058dc64b075cf56e2796830216f54daa253b release31-maint +88089 52e802914cf89620c8ea786662232c4d44dd1ac3 release27-maint +88090 2d42f64b28fdef21cb8a599310c6459c4a4e2fbf release27-maint +88091 34d48848d41bc811b3622fccafd2d1f7bfc7cbb7 release31-maint +88092 f441c6e3a769129c11804c7ee8347efa25755230 py3k +88093 4e0bcec809dd8094b99f1f51727d00d4276a6ea0 py3k +88094 761e9ad165ef1fc19bd3f5ec3fd4e2880b1e3f7d py3k +88097 fc5d02ae52dd6bd8275203d572ff548506f75395 py3k +88098 2fde5abfb5f1b7fba0f179dc32d384322566cc0a release31-maint +88099 eac5457ff195b08ef7544099b31c54c3b233ed6f release27-maint +88100 496ea5028c01ac5d72821753411fd70435bc3b69 py3k +88101 3824bef376cc7feacf308809d42d7884182b71a7 py3k +88102 109af039f44f0d5966272aa56d31a1061cd3b874 py3k +88103 cc8975724f9a8bf48a5b3ee422a0694295d40716 py3k +88104 d7058f74bd04b4fa6fd5a8f6d7cc3d9e477f6379 py3k +88105 41c51f5cf5d99480062d50070217800be08168bb py3k +88106 a7aa8373b5fcb5204a71f896b8d1a112b05109ef py3k +88107 3c1c8d426966301abeee38717f92d15d7f8e52de py3k +88108 991470be0340be0c6badd6f02fc0224e9c6b2a52 py3k +88109 de925361eba5116769dce35e16f2af94dbe0bac4 py3k +88111 91abe855072a366d2d8818c0502877336d6dd3c3 py3k +88112 07e1eb244df88b36800f2ba687a2822e673c6482 release31-maint +88113 02ec1997d75e87cc5b98f38b14da6877e3320f9d release27-maint +88114 c35400c36304e897a840e48b229f35c73afc5a38 py3k +88115 a925ea4e105f814ffafc9fd9f314b91fbf374de3 py3k +88116 b880c8227c0272c2d219c1b769fa40311aa81e20 release27-maint +88117 233cc740274b7126b47fae7895b44a024f54b3ae py3k +88118 e4e4bfc09e18db3cfcc49a5b0b296eb904c7f0eb py3k +88119 6b8b6e5aec0a5f448d6851a4bcd93d10925d4482 py3k +88120 7f7c2aab861c11a840f44ba41f368dff02948a5f py3k +88121 da44bb0cd4e992d876819ff77a2e1d23d4f0c625 py3k +88122 fbebf0f060579809b3fb23e11f86b7617bd91ee7 py3k +88125 3b3c53630637a5a3b748daa21a9bbe9f50b2e2ad py3k +88126 aef482420e96ccba38fe80729db4e8fb8a6a3916 py3k +88127 ce40754a842a3db51c1c62485017284e1253d47d py3k +88128 3d33f41e818dbf1ce6ac8d01f0ab6c9fb85a27b2 py3k +88129 93e98d40f2a5a5499d12d232d0b540b358ddee4b py3k +88130 5e70eee86c6130b1bd2176a53028b0687c1be7ef py3k +88131 c8396d27f56e8d659ed92834f43e853266cae2f3 py3k +88132 f36538ba90a8fa30a0ec81939f98863249aa4882 release31-maint +88133 df91a018de3ab5058cca0613e6e3a32265ea6fac release27-maint +88134 fb668aaa2fa4f0d75ca8a8855b5f80a8f885a589 py3k +88135 e4e32c4ff62627a3e5c0b6416d923bb0e945ed86 py3k +88136 cc2162708bf62b5bf75ac1400aaa6a71a018e94c py3k +88137 8e0b617c6c2216d349d81894f036ce4d384bb44a py3k +88138 1648011c65da9a0c26dbbf467d415a64de940dae release31-maint +88139 24161cf405f4c2237430b7fe96a097857d4aaed2 release31-maint +88139 de8db7aaf7a296057ae26125b99618c961b4fef6 release27-maint +88139 c40817c95514b1471db2670e3474748ec84390ba py3k +88140 b968053afad0dc51e8b087e59ff11e594986381c py3k +88141 788b01b5a74ea17c60f77d6b2d1e9fa80f5b578e py3k +88142 30c91342b6ae6365b733b13360721dd94b072d77 py3k +88143 b3cadf5cf7426c5b27820e4f7789790bdc5b0010 py3k +88144 08673e5f549a27cc71581e6799ef7d0d6abf6c13 py3k +88145 baa922b46237db2b29a2840314dd06c371e13956 py3k +88146 4f7f3995194a1c8b03d438631bd68aca4e13810e py3k +88147 4c4abfb884fb48fe15ccd6ac6eba59ee8fd52d23 py3k +88148 bcf030f73eeeb4157cd9df8f2350a7ed50b37f39 release31-maint +88149 b8c0ca35979a2cde8c1f87ffe4250d3d874d56de py3k +88150 431ddcdb43106ad9b6beb38a64b6d9f30fd106b7 py3k +88151 fc2ade88ab4179fb8c1ed3989eacad70a000c56b py3k +88152 d1c06306c19be82be39b24bb6fcf6d5ebc91b359 py3k +88153 a0a5c5d9aa4fdf1f164427d01f9a2c70677bfbc1 py3k +88154 3bb21df64aa512015eb4bc46918e59b1cd4cea00 py3k +88155 4063e526982f26ba02c263a2be7debc88ea6654d py3k +88156 6f40b4709e9a52fd8eca64a17bc0b412e327ec70 py3k +88157 5a65ec28771374596f2ee4cfb0239ec3266cc23b py3k +88158 dd27df8d14efc197feb179988959a52930bda5f9 py3k +88159 2de699e5f8f31a5321e20781812dc418c643c9dc py3k +88160 90a2d9b702bcbaafba9cad777216aba1d5e7ecfa py3k +88161 f3bfeb2fbcfb06d5f3beb28014cf499cda1dd4cc py3k +88162 03e2a87557090aa52ba028b4dbb66bf743e235fd py3k +88163 c175f5dff39604bd907e4528e7b4cd840fc4d75c py3k +88164 825ebadebf9ba292185ed6edd348b353372406c7 py3k +88165 1e3f169b9e46ae4e1ba831229192bc5cacc6dbf5 py3k +88166 70919bad745841d0266c7abfb7c1ee6a238486e3 py3k +88169 7f9a98f766d75c9b59448902cdf5491cd45baadc release27-maint +88170 473e436839ee6391e2c57066e1cd51deb9c3ee7a py3k +88171 8a30a2cb4b9e3472d892dba36d8dd0d90ba25e8f py3k +88172 598c195e52f36086fe939028dce71c48fff12322 py3k +88173 3b93d0099ced07c7a5cbd4aa8a9eadd0378984e9 release31-maint +88174 b0225957e0065995fb21a78a2a303163a0408519 py3k +88175 93a41df8c7378cfab6f768856c98e2fbd2ccaaf1 release27-maint +88176 0b5298e7b2d5405bd72379ed66b368328898871c py3k +88177 eb4ba03d7c4df323223c76bbc61d2c81c1c542bb release31-maint +88178 0d6eccf00b5bd67d1c2099ecfb7e380937096423 py3k +88179 71281017c43fc43ffb177d2ad81f05e6ce3fa1b3 py3k +88180 fae19e5517b65be2bf3073d33750381720d60e3e py3k +88181 03220ed48bcae0de0fccdcbc0ad8c68a5b0cd879 py3k +88182 c2bd692078d20e73ae4196d2e481e2ccb874b48e py3k +88183 32c896688c91d068a863b763d2e377835dc4bc90 py3k +88184 08f32d11b7efba25455dc0d69972d976f06b9cfc py3k +88185 89a3f6c12f0212dd61ff5ae009c23a26fefd3792 py3k +88186 757a9b1836b19f2b67f6afb6b13daa6fd0940997 py3k +88187 00753d04bbbfb33d585a1d167bb9dd00ae02edd6 py3k +88188 3cabce0b6cafcacc9018fa5dfafca3e0bc2b804c py3k +88189 219754e9c39c2fa0628040c9f2a75a233b69238e test_subprocess_10826 +88190 705780ba9e3a053b5c8c52b376dc479d1cccfbfd test_subprocess_10826 +88191 776c3c294bb735c489c046b88f8875c0e4f4a7ae py3k +88192 f6392c4ce61987777df7fc934fa0b89e5b3eb4c4 release27-maint +88193 32fc1caffb17026fa85a7fc22e5d10a56d5e9b54 test_subprocess_10826 +88194 82b7f53c2acd4a93a7db3c6e44202c74c98ea0f3 test_subprocess_10826 +88196 f98ad65090295a54424d5b59e236670c4931872a py3k +88197 65b097aeda8013ca7727c599a803343ef840070b py3k +88198 7b30d9cfa0d9e51884b54f24adabced520dda5f5 py3k +88199 48718b19c0dc082e0ae201bddc7180df8c7feffa py3k +88200 bdf9864fd276085303a9a160fd4d96947d53b1c8 py3k +88201 1f215fda23838ce37587781d9af1fd1137ae8901 py3k +88202 a675a446862084397885d17a30618b03f3bd4f23 release27-maint +88203 1d3be7b01d845ea64ec0f9340d2df842df17a045 py3k +88204 8eaa32797f92e292e945d0c0de938e9204cd2670 py3k +88205 ac47d11a8ca24d461f60a479bce0f71629b46ca6 release31-maint +88206 44c1b56d7787d715223296437ec43619588579d8 release27-maint +88207 8056176c053f05fc117ed9a52652999e49d1f043 py3k +88208 279a0c959f7daef0b9c2613ee39dd2517fe09a2e release31-maint +88209 591d54ffe969d7467cdc1018b8847ad0ad09aca9 py3k +88210 f82a04cb150a2c068f159c9e39d720ca3061acc8 py3k +88211 b0ab33522dda9f83cbae143dc99d07a3ac22099b py3k +88212 0e30d413b9e97f46cca980d764da87fc528e3d77 py3k +88213 bac296680cf8467bcd2d917b6a9c6dad9d2b99cd py3k +88214 b22cc7563b2882311bd9adea46e3978d3184463a release27-maint +88214 fc2ab7cddcf0058a51f9152f8f19c030e03daff6 py3k +88215 dd732867296831e03a1782201fcb30d48c17952e py3k +88220 d21cb6a7a14ee9ac33a0327ca2a92d626465bf8f py3k +88221 e7959309f59c65b4ea28636d7b2389cae23d744a py3k +88222 e40643a3c31dfff3aba76efc65f7865dbdfa6e16 py3k +88223 7c7ee4e11850d077f75576faf57b85ce7f84cf9e py3k +88224 2db617e90ca0c120d3c3af70f02bcf70bada8c69 test_subprocess_10826 +88226 3ef865327d7b0580ec0b0214a12c8bd59958de49 py3k +88228 852186e5ae2ac69e21d0421302498167c6071df4 py3k +88229 cf7500f080fd3ac63e430c64f9372915481c2cdc release31-maint +88230 d7cd1b62608b9831c541f440a60a2b396f52973a py3k +88231 085e0dd63796b80d3f8dee7f90ed73dafd9b0966 py3k +88232 5c51724bf41116a0832b0c3376dbfa8d212b4371 py3k +88233 be11e5653fda9754fecb414b4168f34e728ca17c release31-maint +88234 64713e31683f8b71e24b79cf987db9c031d55816 py3k +88235 334812ba587422bdc4b890f79bd34c1785c53e74 py3k +88236 6a1fb94647cb4ddfc8cfa9dd67d88f3874076335 py3k +88237 2aad707eda6278a2a3c66569065ed414ab303138 release31-maint +88238 f12fe685e44d28dc973c612d6eebad6600303a64 release27-maint +88239 791f52fbe5e060afbde459d90ccc77c928447526 py3k +88240 5f1ad65a1b84c777fd534139025e076545bda906 py3k +88241 3c7772fffbad34a26302cd331246db955e445e54 release31-maint +88242 c690609995a627627373d64fc8afd7793ce40d1c release31-maint +88243 b0efb6f0fe943263f765e300ade011c0d8daf326 release27-maint +88244 0c604e65429e32b82347d9731418575dfe2884f3 py3k +88245 46f07dc437ffbd7925a531feee488790dc3f7ee3 py3k +88246 8a19f6029ce597e2974a2e4bbf075b384509c9ab py3k +88247 c82588ca3a7909dca7d6f901093ccb4c9f939281 py3k +88248 d3b4fa2dd7288ec701152f7707751f24f00dd651 release27-maint +88251 2c9372a1c685b5b90e4bcaa555b086fa61e1120c py3k +88252 dc501efa05b4125bc5e5be63ce939bf21c3f5710 py3k +88256 36eeb282cd844ea890d2187f3f1a4430d717937b py3k +88258 bfa5835e10f0e7185ad74648b91d607d6d37b881 py3k +88259 595c2b56681ebb76dda86f7031bb90852a26b111 py3k +88261 dfbd9568f49cbe90173b663df0166ceb015dd406 py3k +88263 2bef7ab6256b421244459dcacfaab53eca60bd8d py3k +88264 93c4081dfd195cbdb07be8fe1825c321dc0a6004 py3k +88265 26574b027042c88031a78a769ef8b5b6701b1ee4 py3k +88266 acf3e24dd0d0dfd1e20c907d696d3da965a8f56f py3k +88267 7c3dafbee9d0b6b1c11215a52c169c7683d0ccbe py3k +88268 e82501812ae3d3165635d97f6f97a9f8f1dcf70f release27-maint +88269 a9dddfbab24179c0b69eb08311cd6e7ae195b46e release31-maint +88270 18207b9d9a60f815620be56e05ca0f5c9768d324 release27-maint +88271 0f0c5f9ace9f3bb4b520bc4f44d943ede9c758b0 py3k +88272 de6792bdd96593bd51e210b879792212a6a18800 py3k +88273 086c2bcd8d74e6b447468f74635fae264ab6befe py3k +88274 4a272225c3de71e61a07185e4403b924bf0b886a py3k +88275 bc09db82a5d0f5436910e510f87872600113a374 py3k +88276 02efdb9e09e90ec259003946d4f44fcc19ba1382 py3k +88280 4f94873846a3fa5ff94ec2b579af9953b2350c40 py3k +88281 0a9f680a2cf05c3baec4c69a4d67c0dcd1990b59 py3k +88282 987e6615a0796ad9004fc1c3aa090146bea5b40c release31-maint +88283 a6df3c3e374236124ff96890c763462d1c27a5bc release27-maint +88284 31f40be922524c6293ed770662e570b0b0262f15 py3k +88285 8fa73a0885c95e8e16f5da702ead0242cf7ac3a7 release31-maint +88286 ca909438cf9f891bf0747444e4ffe639eb023f24 release27-maint +88299 73c49579a487c4bd1b758d8c5ce288f14a143483 py3k +88300 900fc1ee4487efe187800610f863c560b433fdef release31-maint +88301 944adf7eda2ebb1ea6114b516bf6a12e9b91b1da py3k +88302 9e65951266a20512950157eeea6ddb899ecbbf97 py3k +88318 aa873004cea80de7adfbfb15c26e9300c9f68c9b release27-maint +88319 773cb332cc63b6c6a7c5534c28061c4985840e39 release31-maint +88320 d33903eb3388541faed7c43a9175d1084b08f3df release27-maint +88321 17d6f165eae97f9b4ec6cd71f19e5b8cac08a53e release31-maint +88322 5be701139089cf8f84f5922442e4de3252882588 py3k +88323 8e9969418dbebcb8bbf449a656f439a3846ed947 release31-maint +88324 b21786419bb833db13670102439531c1ed5801a2 release31-maint +88325 782bf5f37acb06fed6f04bd1dc3f1fe76ebc397b release31-maint +88326 2e3c5841a0a6640ee76441a66068d17d960b3060 release31-maint +88327 a1d1bfc383efcf6e1d73e84b8653c085f815171b release31-maint +88328 6270946115d0845c5f99bd357c6cb2f828d87a72 release27-maint +88329 038643d39fc156df3b362faea550bb52c2fc001b py3k +88330 4506495658631beb92f0c6168e7fc7b4bc90b1aa py3k +88331 8cc10279ac7dd6e4675393ec83b8ac103c08429a py3k +88332 e5668adc1ed9e6aba06df6985af539f82058d652 py3k +88333 07746be0bbad47e66c1580c2a31c0121887f2a08 py3k +88334 0bba533c0959f625400d5ee7782285dce0fd18d8 py3k +88335 f902fc7793e12b48b60138c286e5acc3d9dda813 release31-maint +88336 f22c99db8a4656ff560c9c6f27cddbefb723aabe release27-maint +88337 ce8db485e26e43568ad38e63c8e4b6869e9e5d14 py3k +88338 dc56c8271fa851fc70d49ac7167ec82d8175bf22 release27-maint +88339 4355212fe2c430311a82b08b923305fe2da11d07 release31-maint +88340 ccfb5ba50a44e9c1c074edb142f81742dd20562b py3k +88341 5a50485a375f11c8e160e89b25057450379f83a5 py3k +88342 bc685adbaa15ce162d461cc126537882fded3df5 py3k +88343 460f2f1c5ec83fbc0dd6d9816a16aeb480828ae2 py3k +88344 bb3f6d3cc0b3c37ddf1db9f834b895e4d3b0e3af py3k +88345 5267e5263e477d4ff8665607aa5828cbbb2bfadc py3k +88346 39b5fc6c792d4b5969dc88e01e19a96782bcf5c1 py3k +88347 88d69c2f9efa32335e34df4094af7667e5c4afaf py3k +88348 9b33d65cdae4aeb65cc28b82d30d19c60f445e05 py3k +88349 8d25925910b10b556dc8f19cd9f7b40f3238f25e py3k +88350 0da68e2e4d780b68bd5faf7b3d71b004d86a23e8 py3k +88351 aca91c55f38d450fffde75e24af5ddca57faabc3 py3k +88352 abab2c53f58fd337406b4ba01f046aefc336a2b4 py3k +88353 405a44c6dcedb457c3d39d404399dfc5c9258002 release27-maint +88354 b5e36a549c253791ea49c39cbba482b3a679949f release31-maint +88355 8e20986b3d6e9b8ddcc6a5f24ca15f313e8ba907 py3k +88356 516b9db6afe4af48c991674c0bd04e9157d88172 py3k +88357 394cb02247fc36b9167c0620b492452d5295cfa3 py3k +88358 b7b1dce3e77f29653efed13e4e10a17620ef4fcf py3k +88359 d61ebfce18ed3ae12b8dded74dac251fcea65c53 py3k +88360 1518b935de10e707305918bfbd60e6a9b708595f py3k +88361 b5702b20b4760e591bd4076706fc9032ebf380cf py3k +88362 b4c7d203c3d1430ccb7551d42c9c9d2f4f37cd88 py3k +88363 3b9d7b84561839280d88ec11123e6d7183f1cac8 py3k +88364 09f07c7dc3dc25de1589c3044bcd658b78050767 py3k +88365 3e021366e51fac62aa54ecb9c81d7f5a27d71773 py3k +88366 f1faec49350dcda6e89cad20c8f193d1de0ba748 py3k +88367 bce758939d7993bc03a817f5ae914abcdd896f1f py3k +88368 1d9c5a2aa694e7f2e525aeb4e1d45241e7c6d8b8 py3k +88369 261367e9e6c1c8a1cd6b02c81d43047c3d0ff250 py3k +88370 3411cc7f64df669c4a02bbd86de3e690e3cdbe13 py3k +88371 9fdfc05efbb5bfcf7c7a554f1796948095fc508c py3k +88372 946ece26a48f3bfe9ad8d5c142bfa255f37b4d9c release31-maint +88373 68d617dd30cd39198eefdb000611c8fa232ceecf release27-maint +88374 7c71b0a5a29014b9600f603c89dd8845f1e5b347 py3k +88375 e9fb6d50459af5c5dae59b510ab159e1c908d99a py3k +88376 bb757facbfa6112036d65c54fffc29116f5ecfe5 release27-maint +88377 5742c79086a87980476a3d0654d8e1fd7aecd1e2 py3k +88378 f52e35c75e33c6f8dd17d7b87f8d07e1b57ff7d0 release31-maint +88381 d6966d9b7609fcc731b3f98f96840b4329371d31 py3k +88382 dcf1791cb1767a516874893bee0a4bb30ec8a71c py3k +88383 071d25afadaa896e971cecaf33a6c67374e09fa2 py3k +88384 643ac946eff49f4755a1a12a2666479dac3868ca py3k +88385 146e81e4e51e4a95475f71290c41027f8ceaf072 py3k +88386 f5b889c36f990a6df8b0195e1aaa91a0c62f26a9 py3k +88387 5dfe0c42ffe8d4229ddc5f12e5ea8c5b3dff2004 py3k +88388 56e617c2b5e83ec170aa7115a3c4898a8f91c0ec py3k +88389 72b42dc041f3ff5876b2c55964cebc76ecb764df py3k +88390 037f16b02ca552c6fd6c892ffb6d60851b5d0f40 release31-maint +88391 2b4822b7c424ec59837be61065bd81ebf38c3b77 release27-maint +88392 d1b5d804d2a5452713771828029d8b5762606c69 release31-maint +88393 8084c668b6377355584f8210c82b39c4cced2f89 release31-maint +88394 b409d7ecb6657426246d941a838c1c9fcc71af4b py3k +88395 12acaf7a4955dda50b338a085e1e33d7b2ed0f8d py3k +88396 4d2a58918df158762fc55e0e18728b444919355f py3k +88397 89d52effc30aa7d39c27ac0d859bf4be6ce8b13d release27-maint +88398 d9b713e95f39e90d3a5a17130b5ae8a6451d6665 release27-maint +88399 02b881326f6ed82c0e0969b75b5a62cf86b6e09e py3k +88400 20d82873aa977a9f56f18ab00c536340dca6e1d9 py3k +88401 06a657d1a3ac199f5d40a2a44975bc36a3b57082 py3k +88402 c310d294fdde0fb07696736cfeca5e39679474e9 py3k +88403 2cbe9d058f7e92b1db4c85d0a27359a3db1ba8a0 py3k +88404 111577bf5ba8966f7bca98ed79cfe13590aea346 release31-maint +88405 11c67a6084c8ed4f2f3111aad19e2ae050366dd8 release27-maint +88406 bbaf9304a0d04a0cc4258f257351e081d2084830 release27-maint +88407 f3ce4abbaaf85e8fb3deb058e20ab5c6344fcf7f py3k +88408 883a023eb9433d62f0273c6a706fa9ce51f31a09 release27-maint +88409 7d320820f462dd83b53f7422ae4d6f4cfd549910 release31-maint +88410 ba95c0bdd8a8d78349e1096d484a2620bf84df76 release27-maint +88411 106603ca53c37c0d5a822f081b40e1c9c52b2b16 py3k +88412 6a543116bf17475c228e7604f05768e78216a219 py3k +88413 18c1f52896501c7ee13b038454a39acb45a87979 py3k +88414 93df95e403d1a486151f3e4a91d5d36067452aea py3k +88418 b45f4f39f204d865c92dfc07b0d3234aa9057ef0 release31-maint +88419 0885514d897c0c4b7cbe2ace3e424f8fd9c4adb7 release27-maint +88420 5baac186f0c28bec5a3380ec206e426e230f3a34 py3k +88421 03ec61e13460b271aa5f79dc64d4a9299782b0a8 py3k +88422 d1d9d7e00b4a5a198882119fd138d26cd97c5df6 release27-maint +88423 d8031ba38e16d3edc8ac3bb5abdadc6a74425536 py3k +88424 43af9e36bdd58a2ba78d6b0de2ad470bcfb4f3ab py3k +88425 2ee2c76082c8c6aef5e6255620da76713165ab0e release31-maint +88426 9ff3b669548f832a929d8abab4516b12f04f57bf py3k +88427 7a89f4a73d1afd66449dff7d0b5731c76dde4220 release27-maint +88428 5e7dd657f9eb751f3b14e6eb5900638f5202eaa3 release31-maint +88429 907f3879235a8d4aea61028a28a8e7c34fc01ff4 release27-maint +88430 ad2f8c686e0855a722d3007359d231da051e2627 py3k +88431 39cf20d5ad4c5ea5537a9f1cc305c53dd89ec932 py3k +88432 6d39daededd5536e79fc56d7325f15c935d53eec py3k +88434 6c1ca9deb42a95286bb27eb55b6ca4c42e5ca48e py3k +88435 15a8e22c4101deda95aeaaad018163773c91e662 py3k +88436 22d94f55b0c70342ab87df96bf79aca77f27fd4f release27-maint +88438 92debdf981c5f3443e877f58b4861157b7cd2864 py3k +88439 6cab9a99410503540fe21ddb9207df30aed7202a py3k +88440 5af035589aa7772effd0427c674c29e9e2676a67 py3k +88441 5e37669172c8d27834daf868e6df28ccd81a3081 py3k +88442 101bc66951c7ca4e639bde869af415c347cffb93 py3k +88443 788eafaef7dc4820db78cb49a57a0adf63fc50ce py3k +88444 5900d948fe57a4399dc2ffec3ba1264b217d4e16 py3k +88445 496ac4d1a9abb965c9e119e244e63c7db16d1848 py3k +88446 a222a015e28d8ae9af3899258dc6c15c3d40add0 release32-maint +88447 66381cec6c7325c30606734dd37665dd104d65eb py3k +88448 203945060baff206a6a77c86baad88701ad44f78 py3k +88449 0f52cfc91faec0899775487c2fdb0445d30cecf1 py3k +88450 441907c0814e5c71e8ce44936498bfab730ed7bf release32-maint +88451 a83cc961c43a2d3269bda4e73ceb98991ac34219 py3k +88452 35c0e37fe950123f0bcec5c594f5545b9e6f6f89 release27-maint +88453 aec9527f6223276996721958d8c1c3562d9a5a69 release27-maint +88455 bf864395d1c88b1c32c2af95a88a84681658b483 release32-maint +88456 7b011cf64f906c22fa8cae4cceb7584a8d84c255 py3k +88457 371f04e1bd3f8b3e92bcc2de68b69d47b47eb0d5 release32-maint +88458 7902f5be2c906bf0b76aa437d5706dac7bc14ad5 release32-maint +88459 983630797338e2df7b0aebe0f33b41cb6ffbf5c4 py3k +88460 51a080bacb2508d5460bac03d01b0cd7e4240bd1 py3k +88461 da5dd3e23c870252089c0c4df3dc94d22ff8dafb release32-maint +88462 6c1e05a4b541f1e201af349ee418154cb593cbdb release32-maint +88463 27ea3ae362cd51ff6a2bb02db174229f83d3aa2d py3k +88464 954cd5db51dc35ef43b8f43945cdd2fa881f5ef0 py3k +88465 9f8146f45eae87c92895382a0ccd0067ffa5f085 py3k +88466 a1f35c21a712c1185f5c0a323b50bc36839d51e9 py3k +88467 614e32900ef7db86c6a0c8de1c087398d5265f6e py3k +88468 eb8fc1ce1c81eb83fa76e2619b97aaba9be2a502 release32-maint +88469 482587180255a51b0921645ee6841e36b48104a6 release32-maint +88470 b17bba1c7303ce7e59dfbc278f64e55796732f40 py3k +88471 450f8d51dda869b3f35829ec2556a1cabf749615 release32-maint +88472 ff86a179bc13ca7135370b573a2fe5e3638598d7 release32-maint +88473 1853989f74e76ab475cb2645467bcb9a88308a20 release32-maint +88474 158d6def2ef87f3129ae0d41c6fd206a1bda3572 py3k +88475 a036c30ab5ae4ac9d705bfe7f64ae3d61650c993 py3k +88476 ab1664b298fcdb1f8e96c9b3f40ac97ef9160de1 py3k +88477 00a4ffa72dbe3d1ea1d2d46f35269510479072e7 release32-maint +88478 bb857d9c307120c5dfa2224461cb459c7775fd26 py3k +88479 284026e00342d4aee3290c80ded2b1a617e4bb4e release27-maint +88480 2b8e6a21aeaa1954b39dbfae321f9a43f2819eab py3k +88481 ef28aad3bbae0f57f264a0abde5d54a8b617da71 py3k +88482 b4c15d87094d9ea517dfdfcdd45dc58e8a710a89 issue10276-snowleopard +88483 23de3aa722306d2bffeb0feca14575b11ca19377 issue10276-snowleopard +88484 f5e9c17b85ad06b17bd5d31cf8815b0fd537310e py3k +88485 c6060ef5c405146ced22bea48ddb2489e895ff4f release32-maint +88486 41c5280330fd6242d71e3f0a9221e7728611522b py3k +88487 4295e095ad4fb8e92bcf61e60a506e9df44a41db release32-maint +88488 b55869598683fa9b5b7e049132a9034d07326e7c release27-maint +88490 78660714f17a3557f8b5e417fabba22c743eede0 py3k +88491 67ec26cc4b4f7e31d3c3cd484bfc727775cd77b9 py3k +88492 ce20ac41e31fd940404cd08c6f832d986206dd40 py3k +88493 fed768b71136183f6e242566f80afaea43db7e8d py3k +88494 7f85fbc16caedd0838282f81cdb98d657410ce3b py3k +88495 473d233a04781dff3792739f978d3440068ea67a release32-maint +88496 ae186b3b2c556e1cb32b3c1e9867a0d5fe383235 py3k +88497 19df47839bcab55f7f631936a1168b4d3d91cbce release32-maint +88498 ea260d393cdee3c3e3614f957deb72dbd77fb070 py3k +88499 c90e0e5b0d25471051e2ae6c132f454f743bdafe release32-maint +88500 372b2ef0ff37b6a1aa12e430cb2dec999b64793c py3k +88501 24339bf0c7e66a7ea1eca2a52c24f28fcad4fef5 py3k +88502 30411af34eebfafa755fe338ff38e542d3702a5e release32-maint +88503 5ce499180d245f80b66a057e8decb2a335ad1dc5 py3k +88504 980697769866205d09d300201ff8525770487c3f release32-maint +88505 247a2810932aa55c125c561065c2927434c40955 py3k +88506 a7515a94fdb5b50589b23f121f60ed4a8def6c1c py3k +88507 e2f96bd29252e621bb9e1563fbbb0eca8231de53 py3k +88508 6482dd1c11ed1c1afb99d234e2830f34c9f34786 py3k +88509 16ee42de0fab92f190c8cca274c94ed46b491d1d release32-maint +88510 2b54be6551698a71856a52e5c1aad122c8843335 release32-maint +88511 327a5a78a257cfe27acd901c65e084ba719618d9 issue10276-snowleopard +88512 2f8ec77d32cd4718aac7415553bf745d5830aba3 py3k +88513 0586c699d467a64c3e23dd876d2d362e633d890d py3k +88514 62994662676a7be790e0dccc632818b788f6bf21 py3k +88515 0e9f3bb63d00b7aa50ddbb1e5768a0881e22dd6e release32-maint +88516 2f89cbbec0b484d11b964105d0dc32496faf28a8 py3k +88517 0874698b1201df9c2ec95d09de81088d5dc91892 py3k +88518 ec3c06761856dd630a95e3993169afb788ee7ec3 py3k +88519 ac0d8e21a47deb55eac927494a238c1862d70043 release32-maint +88520 44cc9ef43127f8b6d9b5fa41fcf7a61397ba7dba py3k +88521 f2edaf62d823fb66fe79f4dbf1bff7383221e080 py3k +88522 7f8da10bfcefcf37edca79a8bade78fbd21b2cd0 py3k +88523 165d015a2baf07f337d0f562d32dc5f2bbf0c628 release32-maint +88524 03f7afbc160848d4e17b660d3def57d7294fbd19 py3k +88525 c8c57e766428531df68baa1cf57fb766bf70926d py3k +88526 74861a42a6e6a289c3ab5b7719bf0cf4f0b75023 py3k +88527 ba1aeb3621821f22212914f55d8718d654c51f6a release32-maint +88528 035efdaf8229c79c420d10461b068de4c764cfe0 py3k +88529 2325fe36aa345663e94efdf2462d0617ffe4f769 py3k +88530 5a9d90d4f89eb80f1343bcf385b77e8515fea86d release32-maint +88531 aba16a5683d3685eee1d61aa74563cb6c180ecab py3k +88532 32386fa67a12a76917337a3c3b83842867b199d3 release32-maint +88533 cf9176f2a6205adc4f3404b6e9266d2a2c7cab85 release32-maint +88534 a1cfe815d97aad0af492eef5e8e229659c513227 py3k +88535 5a298afacb9554757b7d121ae90c167cffe25572 py3k +88537 de5c3a39ade724db4265b28f0f600fc3785ba6cc release27-maint +88538 e8dfe602efa1cdea98fc5ce1a88a550d6e4dd7a7 release32-maint +88539 9861dc1183222fe0bb59bfaeeb131309130b2cdf py3k +88540 8ba7653280306a43f09286e6939bebbfa2cfc4b0 py3k +88541 7326f064d83afea520ca663c8f33fbaedc9a9854 py3k +88542 609f2b823350e42c2664ebb018cc852a68769420 py3k +88543 bf8906ce104b503dc8b285b6b341d03cd343f1e1 release32-maint +88545 fd6ec5e084a2c7e6e1d35e614fd76474900876db release32-maint +88546 db7ef34eedaf5beb9cd925a63a0c4c17324784a1 py3k +88547 3e4d959f8e12edfee2ea5f5d0717d8ee53328d93 py3k +88548 feab230bd0dde40a599f043e7cc52adf9a6c9f74 release32-maint +88549 cc3c3a438398ddaf09a72fe4b41c6797619586ca release32-maint +88550 570c5939bc03e7228b9204057f6f98ea7f63c547 release27-maint +88551 cbcb26a9d2bddd9204cb940f1f62fb3c846ca315 py3k +88552 45739ca63eb345b00a1ab101098927e334e2f645 release32-maint +88553 236c4dc6f0e7d7bb82647c6d833ecebd0eba4a8e py3k +88554 c8c0e42944a1697a699c3ad2a98308ad0110d66d py3k +88555 364e4c106297eafae6f24abb9c41725ebc63d61b release32-maint +88556 b245d69b4f0ad4e7af8690a3f5d975f2f73e6ce1 release31-maint +88557 c79665fb267aa37470cd2365d172d9c7de02d622 release31-maint +88558 614a8c7b9525ad0628a2d64ba1e00d7909524d16 py3k +88559 92629ccaae7646e54b2c50327dadcdce5f46d9b8 release31-maint +88560 585db068069ed616eed44f2533755e491c212c5a release31-maint +88561 eff2e8f15bed08f265a0ad30ee3af52b8a855601 release31-maint +88562 5b35bbbe32e70ab670dab41937b494363b8522ff release31-maint +88563 e3c68415a32d100c6de32cfb9273497e446bfeb0 release31-maint +88564 d356649504f9f476a71e4b1b5922ae325be824ea release27-maint +88565 8eeee9d6d32b9131fc21dd79db518e616dfedac3 release27-maint +88566 c7c76cfbdb4e019e79f662e36b1617c555119353 release27-maint +88567 3e5f2e2a84abe4e8d134dc7c654b72dad9ed666d py3k +88568 226f001a701ff34afb5f0e88ec55858a855c9a80 release27-maint +88569 34ae316318ef454f9c2393d2e3b7d600af7f0393 release27-maint +88570 720a2f44cbf2cca0f74c3d3e59b5683ce9f502f4 release27-maint +88571 78db3d0c6db72a1b6d19f09816b4669b28e8d16d release27-maint +88572 b356b871bf67d2b50fe30be87d5062843ade6ab5 release27-maint +88573 01c96b37586dd67c49dfe7d6c81a9b114233fe35 release31-maint +88574 03526781282ae258bb6d4d195dd78f537beceb43 py3k +88575 740ab927bf898bdccc6f14e950e3a14dd78b93c4 py3k +88576 b17a064929b04c8f76a3e692c02a0b9a85b0f1a3 py3k +88577 9ff7bc3610604338defad1aa2e3a3bf4a7f078ef py3k +88578 eb5ed3da686234a0158b4e1b245fd7ebec9eb498 py3k +88579 1762d79eab65f5fc3b6297b55934774293de0b71 py3k +88580 7fd80c61ddaa3f80eb24ae4f26132fba0af78abb py3k +88581 d3f93a12d6a915ee42301300096e71ba7964df0b py3k +88582 636b2b552073d1f0b82beba0a0ed457eb47246e8 release32-maint +88583 fd40110d5d8737f8ad7a224922c9209d34f67a7b release27-maint +88584 bd252c12da1d883c41d3bb60a28f1a1a3d3863aa py3k +88585 f4b1a65795417b4bbe8ed8947b9ecb182d2ada3d py3k +88586 be6c38d1817b3020b760400aa2f5aef717a9c923 py3k +88587 36c1b68b05865fb9fa189b5b9e0d1f88088a32bd py3k +88588 19d07fa42004b1241ef6931a8b21ff803bcfff09 py3k +88589 842fee6ae0e5030890edf5d7093be5b89a5386dd py3k +88602 7ab569b18c98f884aba5e5cb52751ff63fa9aa74 py3k +88603 8c5b811484bc2d2ee1346a3da54652ce834920e2 py3k +88604 12ca477c4378c1758d0999516e09b4491cf0ad73 py3k +88605 b7e85fd0d1c92db9ff9b2d07e7ea7ff0fbb61985 release32-maint +88606 18636b871d01742299cfa80d39859fdc1fbe8d76 release27-maint +88607 4b6052320e983ad798d41d30c496fd9c17212407 py3k +88608 a038342872a34c54d7093a746838c1eafa641c17 py3k +88609 a9eb0087b602143bd659fb1da95a077f24380a3e py3k +88610 785933ba48ac6b04761e50f4209bc6080146e4e2 py3k +88611 66ed71a6e29a8f1bf39bba3f68b26f0fa620844e release32-maint +88612 675b48c4c88a1bb71e8bab51edd0738c4f1d1617 release27-maint +88613 706be6ee9668b464405bdb65b6d835971fd5a933 py3k +88614 6f12aadffc9fb91d3e139daea656572b83b73da2 release32-maint +88615 8b3ef719bced2daa8f840b019142c6b3e5049c26 release31-maint +88616 db46eda20fd029fb7012094c4a405b41317c8e4c py3k +88617 a74924eea861a9de961f57d3ee7d0663f21d994b release27-maint +88618 f71acc4b234102b67579bed2c137e0f02e67e65a py3k +88619 87425dc23f26e5def1ce2c6a02e3b033ed3022f2 py3k +88620 d21900511675cea49a90c7acbb02a1ee5efc5d30 py3k +88621 27961dca833302c1f215f0c9657f082e929bc134 py3k +88622 17d1c6cede7ed3bcce252153aedaa81b284d06c8 py3k +88623 59f9ed12f17a4efef4318304585d1602eaad1cff release32-maint +88624 3d3ba452f8adec533cd32861bc7f797a331829b3 py3k +88625 aaaf7b58e2090c2eb65086ced3434b0a6c7c0093 py3k +88626 267dbd6c98c319301e95c701cbc1a8706ea24523 py3k +88627 53a45fb70786fa3dced131d76f937a4d4e68fd45 py3k +88628 73c5abb41296d69974f6b231b1399d02ab0ade8e py3k +88629 2a19f025b974aa5bde333d8c18b050e49fc1a1c8 py3k +88630 a867f02d8f8d7f6b2d9c0ee5171ee3d9d07a4181 py3k +88631 654c9f13cfe9e1072f4fbb120a56d55c02c83ce1 py3k +88632 f4555d34f340a309b102b0311637867fb1a049bc py3k +88633 b3226ad9a398df9dfb6f59072273b0cf179bae6a py3k +88634 ba8e302b626c008d1d31f39f896eec7acfa81732 release32-maint +88635 c6d303b99c82aaf28a8cf181f792e2a44f416c4b pep-3151 +88636 4dd93d0f5d1e078de731479b23292ea3059f714f py3k +88637 6808d5dba1ec13f0fa988ba925e81dfd5dcb464d pep-3151 +88638 9eb202e6320e4adc97edc9c289f67193f05dab2d empty +88639 4092296a3d8da5b1f1a062fac234a14ab7a851b5 py3k +88640 7fa86a9195672c8d8884eb76042dce03225b34a1 py3k +88641 60a5b4b2355de5f7366657c83fcb5d27f1914c23 release31-maint +88642 0b596ff6d469757e27320170c3f68e2a1a89f1ee release27-maint +88643 73daf91c615c53cc78b5d49c8640c5aaec3bbb9e py3k +88644 7641fe089da1dad7caf3f09328dd4a900d673c3a release32-maint +88644 907d5b2ed5a19f5e23d615d2b214be21aa0fb28b py3k +88645 5717dd2166ee05846252fedef7d8d49854523349 release32-maint +88645 7eea2a574dfc84c709180945388c8ddd633bb5c1 py3k +88646 764b99ee8c8109f40cf8f0263d16236bdbcf1f5e release32-maint +88646 c86f90340cd7d2272d67eb1c90f415e3eaac753a py3k +88647 07affa0338bad2941051a3ec869ceb4ef4ff20e9 py3k +88648 31d4b04cb5b0567d2ed4af773d188f845fcaede3 release31-maint +88649 97d050c3172f9e2edc82b29228dbd6891fcd2ba0 release27-maint +88650 276de9b293030c104deb7c675e3af69969a98742 py3k +88651 374f0b22e4a4c5b1be40d061d5f8469ba1d54b2d release32-maint +88652 09129aafb9536bdcfbfd7a44c3bc2e1d02972e35 py3k +88653 fed2c6d49f198006e54b3791a495f7bbacbe089a py3k +88654 979da8f139dd3d6e219f0babff476f95cce6a521 release32-maint +88654 6a8fa2e9b1055cad7cc21839903f9f3983c35780 py3k +88655 cd14782886caa28503bb356f5b3c37a41e211b41 release32-maint +88656 722aeeb57eabbdff9bf51b4f843ea1fc40fed019 py3k +88658 10256bd68787915f8f3ffd594611d670069027e2 py3k +88659 59f74aad97031f19deadce8f869045adfd984790 release32-maint +88660 c77b25adfec23c4141a51cde1a859395d9310c15 py3k +88662 a58129cdd3657324a2ef0884d49fdc4dbfb4c516 release27-maint +88663 8687a1b73516cc52031c770982d92d92fbe4dbdc py3k +88664 1909c12ef06c7c1c2e2242629c3b82d1d7744875 py3k +88665 6cec091020a2c9969ac8aa297daf2f36ded49fd4 release32-maint +88666 742d73a9942574b5130c94de1f3a286c1e2270cb release27-maint +88668 650d14820bd8c66df4a0baa5d1ddae3d40875b0f py3k +88669 a9565925ba7061d637184064d78fb52f8dc82b23 release27-maint +88670 a5b5fda6689c653d85d6f47e7e0a46d4e21d1b3d release32-maint +88671 2f07d375ce6eecab471e5d8ebb889106f169da10 py3k +88672 45650eb34685117a7b86f756fb126dcb2f3fd511 release32-maint +88673 21436e48161fc3170201001ccaba7a55b39db575 release27-maint +88674 dc8626e08577d6b1fd12e40fd59c9e523008d6a3 release27-maint +88675 728fbc26359c107ff755ce5bb6b9b3b080f1bef1 pep-3151 +88679 cbd0608103f6106efa1d6523d9e0eab994dca14f py3k +88680 b7d62bc0199889212bdcd40d5d04a3ca988d345f py3k +88682 2ddca55e098dda2b1a6856a359e19f78d985c688 py3k +88683 bbddac5c18d3980e7658a09bd4fe8541798c353c py3k +88684 7c6b21db00e3e3f155d2b8a91d12cd284820874e py3k +88685 a2d61117c2d2649f9090f689aa85c5575a6d7339 py3k +88686 10b838f6e5a1a94ba73a1d3c65c950cdd8d5db33 py3k +88687 fdf32fa0f440e71e50d0ffc35229d6a14c7d2a42 release32-maint +88688 b294ff7573365cddcca8a27c1649fd18d199448c pep-382 +88689 f8a77fd675f5a3ce051ee404c7b56db1c72ebf1d release31-maint +88690 44734d3753931548ac4a8ed9282b0349b8b60152 release31-maint +88691 2611cbd75c4f971cf6fbf6b3372799667b595030 py3k +88692 a366096b95ad2a6b5f8a86b4a908d22871b8cdc9 release32-maint +88693 1797300f87b99865b66581cedaa8476d2458751f release27-maint +88694 9acc9021f11e3021836c89ce82583bbf8ef97a93 pep-382 +88696 8e07fc948680684905f26eca4e62cb8fbdaed648 py3k +88697 9b7254670ce9da002753ca00c248eabf5ddf3fae py3k +88698 72f30f8ef331e9b5f5140e8f31ea7dcbeb9000a2 release32-maint +88699 b82c3e593db6555fb8165816bc7a29ca1b227c46 py3k +88700 1d198518cb875c39e53aee3af7d54a66fc12d3f3 py3k +88701 5dc3493e07a9f2a830e79ab3081c0649030c3d16 release32-maint +88702 da95440d92b36b00821871115d33b0c5108c11f3 py3k +88703 73a499f0eaf1b0aef2844a61a19c1340997f8d7c py3k +88704 87de017da4bf7cb3d60276517d21830b3ae9e0d7 py3k +88705 7290b8f3c9fb9984669d0807e984bec713513f03 py3k +88706 33e768d23b16a5710e4f522a6208e92bcc2d3ce9 py3k +88707 6f117d27ad1c5e63239dd52c32562d82425af867 py3k +88708 c7a9363622819f3eab772c780434b23471fe0b25 py3k +88709 378ee328b60e0b1636aa24757bea1a15f9281ae4 py3k +88710 a1dbe53f379845ff636709b08ab456337c865c93 py3k +88711 4dac4769ea248aacc83077e57a64d2c1341c23aa py3k +88712 6b12d2b68f25333dd5affe6e3e8f46b55cd42424 py3k +88717 0dc6a90dee219122abf566ac858aea65c430082f py3k +88718 6c8ec5f8b9e51bce154e118efa91f71b0096ebd0 release32-maint +88719 a4e7fbed753c731a55267ce71009a80d82704d4a py3k +88720 738feec9ced01fc313892db3b10589fb6025b87a py3k +88721 20a5a08c3b6ca9d8a408697b957670d5e3d629c0 py3k +88722 208a5290fd38ec8c4fe138e79e823d018743ecc6 py3k +88723 a1727063a7dfeb0d2a63a6b1a29f46fec32b0582 release32-maint +88724 f5398fb814289b24a8b05faed344f7f90b7756d7 py3k +88725 2fce9c742cdeab4ded11152ecbdd9067e10ef0e2 release31-maint +88726 ddc0bb6a7b7c72c7abb7b1c480dea8fd918db9ce py3k +88727 58cb0fe06daa3651953551be5b11b14501547b00 release32-maint +88728 965ab9911fcd0ef14afe0da9f83555c68978e7d0 release27-maint +88729 f2046dfca73113672d59b5046ff86b0b03b41d09 py3k +88730 b5281f5fade4dd567f1f1d56fac9ce7d57eb9f99 py3k +88731 bc9efbbe63cf3eb3a3b7c1b9246c544f6fa5feb2 release32-maint +88732 a8389468e65137c5065f702c846b9c0e561e5972 release27-maint +88733 08804aea08f1c48a16c849da12707e51a87d86d9 py3k +88734 2f5f755b26878cb0fb35c0c59073aaf18ebe3683 py3k +88735 d2b5bde5c1fa4c94a747c670163d6ac701f96096 py3k +88739 1a05bc36a3340a4e6b5961538543f10e9bf8cf7a release32-maint +88740 3f70c54d86d89adcf7a7452025967a8f70be29cf py3k +88741 e2dfc8f24d3f6ea83863d2e32c0c303e026aaafd release27-maint +88742 93fd16670774a277b917390426b84c28ab796c7a py3k +88744 e74209b9b2f5288f937d6e3411a2cf10a8646b04 py3k +88745 e7b6adba571aa93a44145f0ebf7b5bba2e385931 py3k +88746 50b38e4b0231267b91755c4d1a00720f38195268 py3k +88747 0e7180e4c3cdb948418bc17b574d1ff651429f4d py3k +88752 85a34a316969278593d454a86ef43a2f76c2d76c py3k-cdecimal -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 5 18:09:06 2011 From: python-checkins at python.org (georg.brandl) Date: Sat, 05 Mar 2011 18:09:06 +0100 Subject: [Python-checkins] pymigr: Progress update. Message-ID: http://hg.python.org/pymigr/rev/32acd09d6bb4 changeset: 128:32acd09d6bb4 user: Georg Brandl date: Sat Mar 05 18:09:03 2011 +0100 summary: Progress update. files: todo.txt diff --git a/todo.txt b/todo.txt --- a/todo.txt +++ b/todo.txt @@ -22,25 +22,25 @@ -> done * some hook should prevent pushing python files indented by tabs. -> done in checkwhitespace.py +* check if we should speed up svn revision matching/lookups (since the + lookup WSGI app can reside permanently in a mod_wsgi process, building + a cache at startup should be sufficient) + -> done in lookup.py -Checklist for the converted repo -================================ +Checklist for the converted repo [done] +======================================= * close unused branches -* add .hgeol in all active branches -* commit wrong line-endings once -* dummy-merge maintenance branches +* add .hgeol in all active branches and commit wrong line-endings once * clean up tags on all branches, correct pre-2.4 tags that point to nothing +* dummy-merge maintenance branches * install same hooks as in test repo Optional/Low priority ===================== * find a nice way of modifying the templates (possibly involving jinja) -* check if we should speed up svn revision matching/lookups (since the - lookup WSGI app can reside permanently in a mod_wsgi process, building - a cache at startup should be sufficient) * investigate roundup-rietveld integration changes required * set up garbage collection of unused repos in /home/hg/repos ("unused" meaning created more than X days ago, without a single changeset @@ -50,16 +50,16 @@ =============== * set up automatic (?) installation of changes to ssh keys, decide upon - account managers + account managers [done] * adapt build identification for Windows build process (see build-identification directory) * adapt Python-ast.c version generation process * discuss conversion of the peps repo -* remove old hg mirrors at http://code.python.org/hg +* remove old hg mirrors at http://code.python.org/hg [done] -Buildbot --------- +Buildbot [done] +--------------- * Experimental hg buildbots are already setup for the non-official mirrors at http://code.python.org. Their configuration must be moved to the official @@ -79,8 +79,8 @@ (it would be nice to customize that form to make it more readable...) -Tracker -------- +Tracker [done] +-------------- Activate the new substitutions in the python-dev tracker instance's ``extensions/local_replace.py``. -- Repository URL: http://hg.python.org/pymigr From python-checkins at python.org Sat Mar 5 19:50:26 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 05 Mar 2011 19:50:26 +0100 Subject: [Python-checkins] pymigr: Tentative instructions to recreate a feature repo from a feature branch Message-ID: http://hg.python.org/pymigr/rev/418a54dc5744 changeset: 129:418a54dc5744 parent: 126:82522e6d54d4 user: Antoine Pitrou date: Sat Mar 05 19:46:09 2011 +0100 summary: Tentative instructions to recreate a feature repo from a feature branch files: README.txt diff --git a/README.txt b/README.txt --- a/README.txt +++ b/README.txt @@ -94,3 +94,57 @@ [mail] notify = python-checkins at python.org + +How to recreate a feature repo from a feature branch? +===================================================== + +Let's say the feature branch is 'pep-3151'. + +- Get the last corresponding changeset id from the revision map (here "cpython" + is a local clone of the main repository): + + $ grep pep-3151 cpython/Misc/svnmap.txt |tail -n1 + 88675 728fbc26359c107ff755ce5bb6b9b3b080f1bef1 pep-3151 + +- Clone the full history up to that changeset into a new repository: + + $ hg clone -r 728fbc26359c107ff755ce5bb6b9b3b080f1bef1 \ + http://hg.python.org/cpython-fullhistory pep-3151 + $ cd pep-3151 + +- Get the last svnmerge'd revision from the commit message: + + $ hg log -r 728fbc26359c107ff755ce5bb6b9b3b080f1bef1 + changeset: 44201:728fbc26359c + user: Antoine Pitrou + date: Mon Feb 28 18:08:07 2011 +0000 + summary: Merged revisions 88633,88636,88639-88640,88643-88647,88650,88652-88654,88656,88658,88660,88663-88664,88668,88671 via svnmerge from + + So, here, it's 88671. + +- Get its corresponding changeset id: + + $ grep ^88671 ../cpython/Misc/svnmap.txt + 88671 2f07d375ce6eecab471e5d8ebb889106f169da10 py3k + +- Pull that changeset too: + + $ hg pull -r 2f07d375ce6eecab471e5d8ebb889106f169da10 ../cpython + +- Update to the feature changeset, and merge with the other: + + $ hg update 728fbc26359c107ff755ce5bb6b9b3b080f1bef1 + $ hg merge 2f07d375ce6eecab471e5d8ebb889106f169da10 + +- Revert all files to the feature changeset and resolve "conflicts": + + $ hg revert -a -r 728fbc26359c107ff755ce5bb6b9b3b080f1bef1 + $ hg resolve -am + +- Commit the merge: + + $ hg ci -m "Merge feature branch pep-3151 with its ancestor" + +The repo is now ready for further work (and should probably be published +online). It still needs pulling younger changesets on the main line of +development, if you want to merge further. -- Repository URL: http://hg.python.org/pymigr From python-checkins at python.org Sat Mar 5 19:50:26 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 05 Mar 2011 19:50:26 +0100 Subject: [Python-checkins] pymigr (merge default -> default): Merge Message-ID: http://hg.python.org/pymigr/rev/dda2911e18f9 changeset: 130:dda2911e18f9 parent: 129:418a54dc5744 parent: 128:32acd09d6bb4 user: Antoine Pitrou date: Sat Mar 05 19:50:11 2011 +0100 summary: Merge files: diff --git a/findxtags.py b/findxtags.py new file mode 100644 --- /dev/null +++ b/findxtags.py @@ -0,0 +1,36 @@ +""" +Script to find entries in .hgtags whose nodes are not in the repo +and ask for replacement nodes, which are written to a file. + +The file is then used as input for fixxtags.py. +""" + +import sys +from mercurial import hg, ui, error + +tags = [x.split() for x in open(sys.argv[1])] + +replaced = [x.split() for x in open(sys.argv[2])] +replaced = dict((x[0], (x[1], x[2])) for x in replaced) + +missing = [] + +r = hg.repository(ui.ui()) +for thash, tname in tags: + try: + x = r[thash] + except error.RepoLookupError: + if thash not in replaced: + newhash = raw_input('Enter hash for tag %s: ' % tname) + if newhash == '': newhash = 'xx' + try: + newhash = r[newhash].hex() + except error.RepoLookupError: + print 'Error!' + else: + replaced[thash] = (newhash, tname) + +f = open(sys.argv[2], 'w') +for oldhash, (newhash, tname) in replaced.iteritems(): + f.write('%s %s %s\n' % (oldhash, newhash, tname)) +f.close() diff --git a/fixxtags.py b/fixxtags.py new file mode 100644 --- /dev/null +++ b/fixxtags.py @@ -0,0 +1,30 @@ +""" +Script to replace nodes in .hgtags entries according to +a file written by findxtags.py. +""" + +import sys +from mercurial import hg, ui, error + +tags = [x.split() for x in open(sys.argv[1])] + +replaced = [x.split() for x in open(sys.argv[2])] +replaced = dict((x[0], (x[1], x[2])) for x in replaced) + +newf = [] + +r = hg.repository(ui.ui()) +for thash, tname in tags: + try: + x = r[thash] + except error.RepoLookupError: + try: + newf.append('%s %s\n' % (replaced[thash][0], tname)) + except KeyError: + print 'Not found: %s' % thash + else: + newf.append('%s %s\n' % (thash, tname)) + +f = open(sys.argv[1], 'w') +f.writelines(newf) +f.close() diff --git a/todo.txt b/todo.txt --- a/todo.txt +++ b/todo.txt @@ -22,25 +22,25 @@ -> done * some hook should prevent pushing python files indented by tabs. -> done in checkwhitespace.py +* check if we should speed up svn revision matching/lookups (since the + lookup WSGI app can reside permanently in a mod_wsgi process, building + a cache at startup should be sufficient) + -> done in lookup.py -Checklist for the converted repo -================================ +Checklist for the converted repo [done] +======================================= * close unused branches -* add .hgeol in all active branches -* commit wrong line-endings once -* dummy-merge maintenance branches +* add .hgeol in all active branches and commit wrong line-endings once * clean up tags on all branches, correct pre-2.4 tags that point to nothing +* dummy-merge maintenance branches * install same hooks as in test repo Optional/Low priority ===================== * find a nice way of modifying the templates (possibly involving jinja) -* check if we should speed up svn revision matching/lookups (since the - lookup WSGI app can reside permanently in a mod_wsgi process, building - a cache at startup should be sufficient) * investigate roundup-rietveld integration changes required * set up garbage collection of unused repos in /home/hg/repos ("unused" meaning created more than X days ago, without a single changeset @@ -50,16 +50,16 @@ =============== * set up automatic (?) installation of changes to ssh keys, decide upon - account managers + account managers [done] * adapt build identification for Windows build process (see build-identification directory) * adapt Python-ast.c version generation process * discuss conversion of the peps repo -* remove old hg mirrors at http://code.python.org/hg +* remove old hg mirrors at http://code.python.org/hg [done] -Buildbot --------- +Buildbot [done] +--------------- * Experimental hg buildbots are already setup for the non-official mirrors at http://code.python.org. Their configuration must be moved to the official @@ -79,8 +79,8 @@ (it would be nice to customize that form to make it more readable...) -Tracker -------- +Tracker [done] +-------------- Activate the new substitutions in the python-dev tracker instance's ``extensions/local_replace.py``. -- Repository URL: http://hg.python.org/pymigr From python-checkins at python.org Sat Mar 5 20:32:01 2011 From: python-checkins at python.org (georg.brandl) Date: Sat, 05 Mar 2011 20:32:01 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge tags from 3.1. Message-ID: http://hg.python.org/cpython/rev/a0752d92d207 changeset: 68261:a0752d92d207 branch: 3.2 parent: 68257:3c9232a684ae parent: 68260:9e9aa450a5f8 user: Georg Brandl date: Sat Mar 05 20:30:52 2011 +0100 summary: Merge tags from 3.1. files: .hgtags diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -69,6 +69,12 @@ 4353fd0843cb31b356adc50f93d220e2e7255ef2 v3.1rc1 0b87e438e1b53e3f812cad963a7fdb65d198ba2f v3.1rc2 a69a031ac1402dede8b1ef80096436bca6d371f3 v3.1 +35efb1054ec6ceca72017a587263cb6a9257340b v3.1.1rc1 +8b9c0f573ab29c41c6c5fdcca82a1fe0ff5355af v3.1.1 +149b8b87514d10416b598884db5f74651f625b38 v3.1.2rc1 +960efa327c5d9c18df995437b0ac550cb89c9f85 v3.1.2 +d18e9d71f369d8211f6ac87252c6d3211f9bd09f v3.1.3rc1 +a4f75773c0060cee38b0bb651a7aba6f56b0e996 v3.1.3 b37b7834757492d009b99cf0ca4d42d2153d7fac v3.2a1 56d4373cecb73c8b45126ba7b045b3c7b3f94b0b v3.2a2 da012d9a2c23d144e399d2e01a55b8a83ad94573 v3.2a3 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 5 20:32:01 2011 From: python-checkins at python.org (georg.brandl) Date: Sat, 05 Mar 2011 20:32:01 +0100 Subject: [Python-checkins] cpython (3.1): More tag fixups. Message-ID: http://hg.python.org/cpython/rev/9e9aa450a5f8 changeset: 68260:9e9aa450a5f8 branch: 3.1 parent: 68251:255bb3ae7030 user: Georg Brandl date: Sat Mar 05 20:29:01 2011 +0100 summary: More tag fixups. files: .hgtags diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -61,10 +61,6 @@ 16ec4bb14a68ea428acf09ebf0c92981da2646f3 v3.0b2 509e30a7968e01be329ec121540b3e755fc4e566 v3.0b3 507ede9c7f7f475dfafbd4a52c22d767d10a2bc0 v3.0rc1 -d7196fb94f25fc8da5c993480d5e055141473be4 v3.0rc2 -0000000000000000000000000000000000000000 v3.0rc2 -8280948592bb2cddd8a0545589696d90cfc09443 v3.0rc2 -0000000000000000000000000000000000000000 v3.0rc2 8fae465a39627b590385462e6095eb63af45240a v3.0rc2 e83a60c69d53f5551a306e77a6d38e9b11485496 v3.0rc3 bc1ce368986e45b1faf96f93995df46bcd75e7b8 v3.1a1 @@ -73,8 +69,6 @@ 4353fd0843cb31b356adc50f93d220e2e7255ef2 v3.1rc1 0b87e438e1b53e3f812cad963a7fdb65d198ba2f v3.1rc2 a69a031ac1402dede8b1ef80096436bca6d371f3 v3.1 -f2a12f5259e7edd223c750e05ef56162d6a5345e v3.1.1rc1 -0000000000000000000000000000000000000000 v3.1.1rc1 35efb1054ec6ceca72017a587263cb6a9257340b v3.1.1rc1 8b9c0f573ab29c41c6c5fdcca82a1fe0ff5355af v3.1.1 149b8b87514d10416b598884db5f74651f625b38 v3.1.2rc1 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 5 20:32:01 2011 From: python-checkins at python.org (georg.brandl) Date: Sat, 05 Mar 2011 20:32:01 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge tags from 3.2. Message-ID: http://hg.python.org/cpython/rev/5738c611ff2a changeset: 68262:5738c611ff2a parent: 68259:1a9595f1b1d4 parent: 68261:a0752d92d207 user: Georg Brandl date: Sat Mar 05 20:31:42 2011 +0100 summary: Merge tags from 3.2. files: .hgtags diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -69,6 +69,12 @@ 4353fd0843cb31b356adc50f93d220e2e7255ef2 v3.1rc1 0b87e438e1b53e3f812cad963a7fdb65d198ba2f v3.1rc2 a69a031ac1402dede8b1ef80096436bca6d371f3 v3.1 +35efb1054ec6ceca72017a587263cb6a9257340b v3.1.1rc1 +8b9c0f573ab29c41c6c5fdcca82a1fe0ff5355af v3.1.1 +149b8b87514d10416b598884db5f74651f625b38 v3.1.2rc1 +960efa327c5d9c18df995437b0ac550cb89c9f85 v3.1.2 +d18e9d71f369d8211f6ac87252c6d3211f9bd09f v3.1.3rc1 +a4f75773c0060cee38b0bb651a7aba6f56b0e996 v3.1.3 b37b7834757492d009b99cf0ca4d42d2153d7fac v3.2a1 56d4373cecb73c8b45126ba7b045b3c7b3f94b0b v3.2a2 da012d9a2c23d144e399d2e01a55b8a83ad94573 v3.2a3 @@ -78,3 +84,4 @@ 865d5b24bf28ca41b536befc326407c03e74a4d5 v3.2rc1 acf3e24dd0d0dfd1e20c907d696d3da965a8f56f v3.2rc2 18c1f52896501c7ee13b038454a39acb45a87979 v3.2rc3 +a222a015e28d8ae9af3899258dc6c15c3d40add0 v3.2 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 5 20:41:26 2011 From: python-checkins at python.org (dirkjan.ochtman) Date: Sat, 05 Mar 2011 20:41:26 +0100 Subject: [Python-checkins] hooks: Rename buildbot.py to hgbuildbot.py, to avoid shadowing the "buildbot" package Message-ID: http://hg.python.org/hooks/rev/dd265d16db1b changeset: 46:dd265d16db1b user: Antoine Pitrou date: Sat Mar 05 20:41:25 2011 +0100 summary: Rename buildbot.py to hgbuildbot.py, to avoid shadowing the "buildbot" package files: buildbot.py hgbuildbot.py diff --git a/buildbot.py b/hgbuildbot.py rename from buildbot.py rename to hgbuildbot.py -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Sat Mar 5 20:42:09 2011 From: python-checkins at python.org (georg.brandl) Date: Sat, 05 Mar 2011 20:42:09 +0100 Subject: [Python-checkins] cpython (2.5): Add tags from the closed branches. Message-ID: http://hg.python.org/cpython/rev/7790ad8332ba changeset: 68263:7790ad8332ba branch: 2.5 parent: 68243:d218c0ebfc45 user: Georg Brandl date: Sat Mar 05 20:38:24 2011 +0100 summary: Add tags from the closed branches. files: .hgtags diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -35,6 +35,8 @@ 55bba197d4870cdae62aeca00e20240a756b84f8 v2.0b2 e276329cce036a5f9e9d3451256dca5984e543dc v2.0c1 2fa4e35083e02342ca014bf5bfba46aecb816c31 v2.0 +83459cc191c1c9c8cc6b08ada99c02f0af6ad54f v2.0.1c1 +73de94a722d206a45c0b49d3011c629ead4d62b1 v2.0.1 b60831eeab5a06dd3c5e8297a99e39297aa8794b v2.1a1 b382f1f07ec6b2c95551658b30c6139eeb32077a v2.1a2 d0c830db5e68edd4aaa3401216e610c9ff145826 v2.1b1 @@ -42,9 +44,35 @@ d611276e9ad53b5d32d1e8065e1d811c32f7d96f v2.1c1 ff065e674af6c9ab895bd9eff7d9e9039a376c7d v2.1c2 020e95d8180d7943fe54701e1db0a7d7d87e2b1e v2.1 +22bed2dd1b286564dea4d9a67d4ed80dc3225193 v2.1.1c1 +572533a3038d1832c8a200fb8718112dd83758e9 v2.1.1 +f76a425b14e4ee8ade5e9239598538534b3a90a4 v2.1.2c1 +cf31b10e45b48615094cae90e3c5bd072587d8e6 v2.1.2 +7d1504c80fa072b4ba86edda13a13b0a05ae8eab v2.1.3 08796a137f1ada2462f7a3177306df5f67a767e1 v2.2a3 +765434e7aa019c1bb82f9813b8025830867cbdc0 v2.2.1c1 +11c952c7d4be6638040764910be80bd9c3c17de6 v2.2.1c2 +4045e6e92fafabad42f6c9989b67076fbad452ca v2.2 +394790316aa380d22e4d670bc69a639e725f0300 v2.2.1 +0128313c2855d71753f00fccc60bb39ed92a0c54 v2.2.2b1 +61d531533a86224a1c26917c18013d91f592fbfb v2.2.2 +ac77b91342534d09b1e432e1dc3b70dbbec3a919 v2.2.3c1 +f4f134ad46abd0bc973d3f6094ea56e62ac5c492 v2.2.3 d054c29647f90bccb8345bd779bca1eecf2dd7f2 v2.3c1 fce5c9e9abc722394cb2e909b7e2a39080d4448e v2.3c2 +fa65f6527fe134aa97e03e1b2af365d443b67dc7 v2.3.1 +7d7362a71253bff4fc1b0c825c14569778db8c36 v2.3.2c1 +be2533fb10a587c8da89b18c5f381f478d720593 v2.3.2 +d21d4ba2f973467d30794a3d2ac493658180e503 v2.3.3c1 +a8f1286f217129cdb53e320ee125d2c2c80e1377 v2.3.3 +3639861d02646af1da3123c25560c4db3d7edbce v2.3.4c1 +a74f9081c6970878cabe151f969617587915400c v2.3.4 +2639b10daa985b20b3cabec45169d523cac29d68 v2.3.5c1 +d228509424172f977edad4f7860a9c747cd655c8 v2.3.5 +b21427ff26475f9c7f4a701da324e951c2b162fe v2.3.6c1 +3b6fb5439c1061a941401245076c315beafcc787 v2.3.6 +893c7bd4a92bd889a85e691f49188c37b0a72357 v2.3.7c1 +2022943ad450c41d64708fb5caca2d2672b5b8f8 v2.3.7 92ca658fd420095b6284c9ce6e9082a80285ec9c v2.4a1 055fc6955f3c6522bfeb7ed4c671c97d5baaaac2 v2.4a2 186b72550e53533ef6175f6411f932c1298193d7 v2.4a3 @@ -52,6 +80,19 @@ 7e387a9dcc79954a77695adef8b593da35be1214 v2.4b2 ff80d8bbef6e13426c8a85d7f9d837b8f8f89834 v2.4c1 f31e18d313c7a4fc66914b2d27e130a0f72c0b69 v2.4 +1195f9ba3439097cc5b5a367e3ae1b43f157b264 v2.4.1c1 +333cf303543b680ec5e3fdf7e8c9661f9488a50e v2.4.1c2 +f9054d235870029afa33ef945bca7ece99616c10 v2.4.1 +d02d387554e200befceec999b788f4593b434b49 v2.4.2c1 +8d37276fdf077d6d23d963d3f7f95381d00f1926 v2.4.2 +7c5be7c0fdfdbbc0ac1d91c07038bc81412da412 v2.4.3c1 +8cca2492626ce408cd567110811c0692fd1d37dd v2.4.3 +baaeea722b1c97ca03179e5a02a4717e7017ba2a v2.4.4c1 +592ac93532efdfa9a40f47b96b1c1231d2eae0e5 v2.4.4 +1f7d628c70a9aefe762c2c32210876faf8d64c78 v2.4.5c1 +d8df4aa06261de5e4c0aa051e448697d4791e437 v2.4.5 +a6c3c715e2b70740c4b6b4f7dc6f47b16a7e5905 v2.4.6c1 +f3f1f1462c82536bb23796e70c85522144ee24db v2.4.6 67192da3e69c985bb1272da932d7de6073033fad v2.5a0 896f9fead17e720ec4a21de3ac214518da84845f v2.5a1 26d0770f2b7ee289a39a3b55dcec1c1ee65849c5 v2.5a2 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 5 20:42:09 2011 From: python-checkins at python.org (georg.brandl) Date: Sat, 05 Mar 2011 20:42:09 +0100 Subject: [Python-checkins] cpython (merge 2.5 -> 2.6): Merge tags from 2.5. Message-ID: http://hg.python.org/cpython/rev/50166a4bcfc6 changeset: 68264:50166a4bcfc6 branch: 2.6 parent: 68255:787b969d37f0 parent: 68263:7790ad8332ba user: Georg Brandl date: Sat Mar 05 20:40:50 2011 +0100 summary: Merge tags from 2.5. files: .hgtags diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -35,6 +35,8 @@ 55bba197d4870cdae62aeca00e20240a756b84f8 v2.0b2 e276329cce036a5f9e9d3451256dca5984e543dc v2.0c1 2fa4e35083e02342ca014bf5bfba46aecb816c31 v2.0 +83459cc191c1c9c8cc6b08ada99c02f0af6ad54f v2.0.1c1 +73de94a722d206a45c0b49d3011c629ead4d62b1 v2.0.1 b60831eeab5a06dd3c5e8297a99e39297aa8794b v2.1a1 b382f1f07ec6b2c95551658b30c6139eeb32077a v2.1a2 d0c830db5e68edd4aaa3401216e610c9ff145826 v2.1b1 @@ -42,9 +44,35 @@ d611276e9ad53b5d32d1e8065e1d811c32f7d96f v2.1c1 ff065e674af6c9ab895bd9eff7d9e9039a376c7d v2.1c2 020e95d8180d7943fe54701e1db0a7d7d87e2b1e v2.1 +22bed2dd1b286564dea4d9a67d4ed80dc3225193 v2.1.1c1 +572533a3038d1832c8a200fb8718112dd83758e9 v2.1.1 +f76a425b14e4ee8ade5e9239598538534b3a90a4 v2.1.2c1 +cf31b10e45b48615094cae90e3c5bd072587d8e6 v2.1.2 +7d1504c80fa072b4ba86edda13a13b0a05ae8eab v2.1.3 08796a137f1ada2462f7a3177306df5f67a767e1 v2.2a3 +765434e7aa019c1bb82f9813b8025830867cbdc0 v2.2.1c1 +11c952c7d4be6638040764910be80bd9c3c17de6 v2.2.1c2 +4045e6e92fafabad42f6c9989b67076fbad452ca v2.2 +394790316aa380d22e4d670bc69a639e725f0300 v2.2.1 +0128313c2855d71753f00fccc60bb39ed92a0c54 v2.2.2b1 +61d531533a86224a1c26917c18013d91f592fbfb v2.2.2 +ac77b91342534d09b1e432e1dc3b70dbbec3a919 v2.2.3c1 +f4f134ad46abd0bc973d3f6094ea56e62ac5c492 v2.2.3 d054c29647f90bccb8345bd779bca1eecf2dd7f2 v2.3c1 fce5c9e9abc722394cb2e909b7e2a39080d4448e v2.3c2 +fa65f6527fe134aa97e03e1b2af365d443b67dc7 v2.3.1 +7d7362a71253bff4fc1b0c825c14569778db8c36 v2.3.2c1 +be2533fb10a587c8da89b18c5f381f478d720593 v2.3.2 +d21d4ba2f973467d30794a3d2ac493658180e503 v2.3.3c1 +a8f1286f217129cdb53e320ee125d2c2c80e1377 v2.3.3 +3639861d02646af1da3123c25560c4db3d7edbce v2.3.4c1 +a74f9081c6970878cabe151f969617587915400c v2.3.4 +2639b10daa985b20b3cabec45169d523cac29d68 v2.3.5c1 +d228509424172f977edad4f7860a9c747cd655c8 v2.3.5 +b21427ff26475f9c7f4a701da324e951c2b162fe v2.3.6c1 +3b6fb5439c1061a941401245076c315beafcc787 v2.3.6 +893c7bd4a92bd889a85e691f49188c37b0a72357 v2.3.7c1 +2022943ad450c41d64708fb5caca2d2672b5b8f8 v2.3.7 92ca658fd420095b6284c9ce6e9082a80285ec9c v2.4a1 055fc6955f3c6522bfeb7ed4c671c97d5baaaac2 v2.4a2 186b72550e53533ef6175f6411f932c1298193d7 v2.4a3 @@ -52,13 +80,38 @@ 7e387a9dcc79954a77695adef8b593da35be1214 v2.4b2 ff80d8bbef6e13426c8a85d7f9d837b8f8f89834 v2.4c1 f31e18d313c7a4fc66914b2d27e130a0f72c0b69 v2.4 -3dabd9bb496e9a68cd6cd94b7622973fc766405a v2.5a0 +1195f9ba3439097cc5b5a367e3ae1b43f157b264 v2.4.1c1 +333cf303543b680ec5e3fdf7e8c9661f9488a50e v2.4.1c2 +f9054d235870029afa33ef945bca7ece99616c10 v2.4.1 +d02d387554e200befceec999b788f4593b434b49 v2.4.2c1 +8d37276fdf077d6d23d963d3f7f95381d00f1926 v2.4.2 +7c5be7c0fdfdbbc0ac1d91c07038bc81412da412 v2.4.3c1 +8cca2492626ce408cd567110811c0692fd1d37dd v2.4.3 +baaeea722b1c97ca03179e5a02a4717e7017ba2a v2.4.4c1 +592ac93532efdfa9a40f47b96b1c1231d2eae0e5 v2.4.4 +1f7d628c70a9aefe762c2c32210876faf8d64c78 v2.4.5c1 +d8df4aa06261de5e4c0aa051e448697d4791e437 v2.4.5 +a6c3c715e2b70740c4b6b4f7dc6f47b16a7e5905 v2.4.6c1 +f3f1f1462c82536bb23796e70c85522144ee24db v2.4.6 67192da3e69c985bb1272da932d7de6073033fad v2.5a0 896f9fead17e720ec4a21de3ac214518da84845f v2.5a1 26d0770f2b7ee289a39a3b55dcec1c1ee65849c5 v2.5a2 d49b198f545cd82fbf735a22979c332b8a97eecb v2.5b1 03b6fe57cd6df5bb34ca19f4b760b943186cc806 v2.5b2 c0abb18299b442e1160d2f958bce18f66850caa9 v2.5b3 +2dc64d570e8d7a4498ab850108c85709c276df93 v2.5c1 +cc3cb3a8237ea545db917d84c49d8a0a5e175cc1 v2.5c2 +c10a71cf16e471425e6d7564e3f7a648f14b702e v2.5 +4777c4007b5b194423953d41b1e5e6adaaba6c5d v2.5.1c1 +490d8c09abcb814950be7bb7a25c3ff2047c7eb5 v2.5.1 +0a8aae575cdddbf3d133fcb4eed91080e3fe41f3 v2.5.2c1 +1d508bbbdb49a2b11629ee186a63928291b08694 v2.5.2 +9530d334d2624219e7ee1aecaf33532e910266bc v2.5.3c1 +3cc056d21c2f4435a534d23345bad9c0a9d9b3cb v2.5.3 +a0a6d9909312ad9c1d844af66e9c91931b93852a v2.5.4 +657f16582943739b906f66f7efad4014492c8b1c v2.5.5c1 +1dc91e9dd5c13a4bc2d3bb7d4b5896ab264f2325 v2.5.5c2 +7098a46f0b75e5aacfaf81d65d72e3613b023532 v2.5.5 2d0bd095c420b0711000d9be66848f6cfd972b3b v2.6a1 eec144917a189be11ed5efa35c6604d03bc62bcc v2.6a2 48e9fb0a721799877f26edaef01ac6e6029b6812 v2.6a3 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 5 20:42:09 2011 From: python-checkins at python.org (georg.brandl) Date: Sat, 05 Mar 2011 20:42:09 +0100 Subject: [Python-checkins] cpython (merge 2.6 -> 2.7): Merge tags from 2.6. Message-ID: http://hg.python.org/cpython/rev/21d13848ca0d changeset: 68265:21d13848ca0d branch: 2.7 parent: 68256:b36cb4602e21 parent: 68264:50166a4bcfc6 user: Georg Brandl date: Sat Mar 05 20:41:44 2011 +0100 summary: Merge tags from 2.6. files: .hgtags diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -35,6 +35,8 @@ 55bba197d4870cdae62aeca00e20240a756b84f8 v2.0b2 e276329cce036a5f9e9d3451256dca5984e543dc v2.0c1 2fa4e35083e02342ca014bf5bfba46aecb816c31 v2.0 +83459cc191c1c9c8cc6b08ada99c02f0af6ad54f v2.0.1c1 +73de94a722d206a45c0b49d3011c629ead4d62b1 v2.0.1 b60831eeab5a06dd3c5e8297a99e39297aa8794b v2.1a1 b382f1f07ec6b2c95551658b30c6139eeb32077a v2.1a2 d0c830db5e68edd4aaa3401216e610c9ff145826 v2.1b1 @@ -42,9 +44,35 @@ d611276e9ad53b5d32d1e8065e1d811c32f7d96f v2.1c1 ff065e674af6c9ab895bd9eff7d9e9039a376c7d v2.1c2 020e95d8180d7943fe54701e1db0a7d7d87e2b1e v2.1 +22bed2dd1b286564dea4d9a67d4ed80dc3225193 v2.1.1c1 +572533a3038d1832c8a200fb8718112dd83758e9 v2.1.1 +f76a425b14e4ee8ade5e9239598538534b3a90a4 v2.1.2c1 +cf31b10e45b48615094cae90e3c5bd072587d8e6 v2.1.2 +7d1504c80fa072b4ba86edda13a13b0a05ae8eab v2.1.3 08796a137f1ada2462f7a3177306df5f67a767e1 v2.2a3 +765434e7aa019c1bb82f9813b8025830867cbdc0 v2.2.1c1 +11c952c7d4be6638040764910be80bd9c3c17de6 v2.2.1c2 +4045e6e92fafabad42f6c9989b67076fbad452ca v2.2 +394790316aa380d22e4d670bc69a639e725f0300 v2.2.1 +0128313c2855d71753f00fccc60bb39ed92a0c54 v2.2.2b1 +61d531533a86224a1c26917c18013d91f592fbfb v2.2.2 +ac77b91342534d09b1e432e1dc3b70dbbec3a919 v2.2.3c1 +f4f134ad46abd0bc973d3f6094ea56e62ac5c492 v2.2.3 d054c29647f90bccb8345bd779bca1eecf2dd7f2 v2.3c1 fce5c9e9abc722394cb2e909b7e2a39080d4448e v2.3c2 +fa65f6527fe134aa97e03e1b2af365d443b67dc7 v2.3.1 +7d7362a71253bff4fc1b0c825c14569778db8c36 v2.3.2c1 +be2533fb10a587c8da89b18c5f381f478d720593 v2.3.2 +d21d4ba2f973467d30794a3d2ac493658180e503 v2.3.3c1 +a8f1286f217129cdb53e320ee125d2c2c80e1377 v2.3.3 +3639861d02646af1da3123c25560c4db3d7edbce v2.3.4c1 +a74f9081c6970878cabe151f969617587915400c v2.3.4 +2639b10daa985b20b3cabec45169d523cac29d68 v2.3.5c1 +d228509424172f977edad4f7860a9c747cd655c8 v2.3.5 +b21427ff26475f9c7f4a701da324e951c2b162fe v2.3.6c1 +3b6fb5439c1061a941401245076c315beafcc787 v2.3.6 +893c7bd4a92bd889a85e691f49188c37b0a72357 v2.3.7c1 +2022943ad450c41d64708fb5caca2d2672b5b8f8 v2.3.7 92ca658fd420095b6284c9ce6e9082a80285ec9c v2.4a1 055fc6955f3c6522bfeb7ed4c671c97d5baaaac2 v2.4a2 186b72550e53533ef6175f6411f932c1298193d7 v2.4a3 @@ -52,12 +80,38 @@ 7e387a9dcc79954a77695adef8b593da35be1214 v2.4b2 ff80d8bbef6e13426c8a85d7f9d837b8f8f89834 v2.4c1 f31e18d313c7a4fc66914b2d27e130a0f72c0b69 v2.4 +1195f9ba3439097cc5b5a367e3ae1b43f157b264 v2.4.1c1 +333cf303543b680ec5e3fdf7e8c9661f9488a50e v2.4.1c2 +f9054d235870029afa33ef945bca7ece99616c10 v2.4.1 +d02d387554e200befceec999b788f4593b434b49 v2.4.2c1 +8d37276fdf077d6d23d963d3f7f95381d00f1926 v2.4.2 +7c5be7c0fdfdbbc0ac1d91c07038bc81412da412 v2.4.3c1 +8cca2492626ce408cd567110811c0692fd1d37dd v2.4.3 +baaeea722b1c97ca03179e5a02a4717e7017ba2a v2.4.4c1 +592ac93532efdfa9a40f47b96b1c1231d2eae0e5 v2.4.4 +1f7d628c70a9aefe762c2c32210876faf8d64c78 v2.4.5c1 +d8df4aa06261de5e4c0aa051e448697d4791e437 v2.4.5 +a6c3c715e2b70740c4b6b4f7dc6f47b16a7e5905 v2.4.6c1 +f3f1f1462c82536bb23796e70c85522144ee24db v2.4.6 67192da3e69c985bb1272da932d7de6073033fad v2.5a0 896f9fead17e720ec4a21de3ac214518da84845f v2.5a1 26d0770f2b7ee289a39a3b55dcec1c1ee65849c5 v2.5a2 d49b198f545cd82fbf735a22979c332b8a97eecb v2.5b1 03b6fe57cd6df5bb34ca19f4b760b943186cc806 v2.5b2 c0abb18299b442e1160d2f958bce18f66850caa9 v2.5b3 +2dc64d570e8d7a4498ab850108c85709c276df93 v2.5c1 +cc3cb3a8237ea545db917d84c49d8a0a5e175cc1 v2.5c2 +c10a71cf16e471425e6d7564e3f7a648f14b702e v2.5 +4777c4007b5b194423953d41b1e5e6adaaba6c5d v2.5.1c1 +490d8c09abcb814950be7bb7a25c3ff2047c7eb5 v2.5.1 +0a8aae575cdddbf3d133fcb4eed91080e3fe41f3 v2.5.2c1 +1d508bbbdb49a2b11629ee186a63928291b08694 v2.5.2 +9530d334d2624219e7ee1aecaf33532e910266bc v2.5.3c1 +3cc056d21c2f4435a534d23345bad9c0a9d9b3cb v2.5.3 +a0a6d9909312ad9c1d844af66e9c91931b93852a v2.5.4 +657f16582943739b906f66f7efad4014492c8b1c v2.5.5c1 +1dc91e9dd5c13a4bc2d3bb7d4b5896ab264f2325 v2.5.5c2 +7098a46f0b75e5aacfaf81d65d72e3613b023532 v2.5.5 2d0bd095c420b0711000d9be66848f6cfd972b3b v2.6a1 eec144917a189be11ed5efa35c6604d03bc62bcc v2.6a2 48e9fb0a721799877f26edaef01ac6e6029b6812 v2.6a3 @@ -67,6 +121,20 @@ 1ebb2a8cc06c94471d72b5476c2050c4d115a1aa v2.6rc1 525792097c6308a78a76b7b5f56bbd8a24c26acf v2.6rc2 95fff5a6a276520b2e7e0f75fe303f49376567a5 v2.6 +cabf303e787aa5cd7209b40e3b2caba3ee75c5a5 v2.6.1 +01f1ae83631ae82bd8598a11c17e3f9b3f56c38a v2.6.2c1 +4feba09a826ba99e5b482707b3d9643eba34156f v2.6.2 +1873542c00000c4b7ce2c7992d1f2d87f866232a v2.6.3rc1 +00c3396d7a8c4ab4c2c841d61013a073ae921d0f v2.6.3 +25aa90a6865b63133962dd64626c53c7b6fd47d5 v2.6.4rc1 +ea1fdafbe4fe2458ac17287e0d6c709ed00fce5c v2.6.4rc2 +8803c3d61da275c71cabe9e9d0274dac9902e2c0 v2.6.4 +c9f68e42ab796a3bab4f8cf3cc69ce10503cb990 v2.6.5rc1 +fa4630916699046357a5ac16884f3fc47bd0eaa6 v2.6.5rc2 +99af4b44e7e490390817a597a542546d749e698e v2.6.5 +c1dc9e7986a2a8e1070ec7bee748520febef382e v2.6.6rc1 +e189dc8fd66154ef46d9cd22584d56669b544ca3 v2.6.6rc2 +9f8771e0905277f8b3c2799113a062fda4164995 v2.6.6 b4107eb00b4271fb73a9e1b736d4f23460950778 v2.7a1 adc85ebc7271cc22e24e816782bb2b8d7fa3a6b3 v2.7a2 4180557b7a9bb9dd5341a18af199f843f199e46e v2.7a3 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 5 21:55:37 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 05 Mar 2011 21:55:37 +0100 Subject: [Python-checkins] cpython (3.2): Lib/email/test/data/msg_26.txt had its line endings wrong in the SVN repository. Message-ID: http://hg.python.org/cpython/rev/3e5df0aa7202 changeset: 68267:3e5df0aa7202 branch: 3.2 parent: 68261:a0752d92d207 user: Antoine Pitrou date: Sat Mar 05 21:49:50 2011 +0100 summary: Lib/email/test/data/msg_26.txt had its line endings wrong in the SVN repository. (they were probably converted right in working copies through an SVN property) files: Lib/email/test/data/msg_26.txt diff --git a/Lib/email/test/data/msg_26.txt b/Lib/email/test/data/msg_26.txt --- a/Lib/email/test/data/msg_26.txt +++ b/Lib/email/test/data/msg_26.txt @@ -1,46 +1,46 @@ -Received: from xcar [192.168.0.2] by jeeves.wooster.local - (SMTPD32-7.07 EVAL) id AFF92F0214; Sun, 12 May 2002 08:55:37 +0100 -Date: Sun, 12 May 2002 08:56:15 +0100 -From: Father Time -To: timbo at jeeves.wooster.local -Subject: IMAP file test -Message-ID: <6df65d354b.father.time at rpc.wooster.local> -X-Organization: Home -User-Agent: Messenger-Pro/2.50a (MsgServe/1.50) (RISC-OS/4.02) POPstar/2.03 -MIME-Version: 1.0 -Content-Type: multipart/mixed; boundary="1618492860--2051301190--113853680" -Status: R -X-UIDL: 319998302 - -This message is in MIME format which your mailer apparently does not support. -You either require a newer version of your software which supports MIME, or -a separate MIME decoding utility. Alternatively, ask the sender of this -message to resend it in a different format. - ---1618492860--2051301190--113853680 -Content-Type: text/plain; charset=us-ascii - -Simple email with attachment. - - ---1618492860--2051301190--113853680 -Content-Type: application/riscos; name="clock.bmp,69c"; type=BMP; - load=&fff69c4b; exec=&355dd4d1; access=&03 -Content-Disposition: attachment; filename="clock.bmp" -Content-Transfer-Encoding: base64 - -Qk12AgAAAAAAAHYAAAAoAAAAIAAAACAAAAABAAQAAAAAAAAAAADXDQAA1w0AAAAAAAAA -AAAAAAAAAAAAiAAAiAAAAIiIAIgAAACIAIgAiIgAALu7uwCIiIgAERHdACLuIgAz//8A -zAAAAN0R3QDu7iIA////AAAAAAAAAAAAAAAAAAAAAAAAAAi3AAAAAAAAADeAAAAAAAAA -C3ADMzMzMANwAAAAAAAAAAAHMAAAAANwAAAAAAAAAACAMAd3zPfwAwgAAAAAAAAIAwd/ -f8x/f3AwgAAAAAAAgDB0x/f3//zPAwgAAAAAAAcHfM9////8z/AwAAAAAAiwd/f3//// -////A4AAAAAAcEx/f///////zAMAAAAAiwfM9////3///8zwOAAAAAcHf3////B///// -8DAAAAALB/f3///wd3d3//AwAAAABwTPf//wCQAAD/zAMAAAAAsEx/f///B////8wDAA -AAAHB39////wf/////AwAAAACwf39///8H/////wMAAAAIcHfM9///B////M8DgAAAAA -sHTH///wf///xAMAAAAACHB3f3//8H////cDgAAAAAALB3zH//D//M9wMAAAAAAAgLB0 -z39///xHAwgAAAAAAAgLB3d3RHd3cDCAAAAAAAAAgLAHd0R3cAMIAAAAAAAAgAgLcAAA -AAMwgAgAAAAACDAAAAu7t7cwAAgDgAAAAABzcIAAAAAAAAgDMwAAAAAAN7uwgAAAAAgH -MzMAAAAACH97tzAAAAALu3c3gAAAAAAL+7tzDABAu7f7cAAAAAAACA+3MA7EQAv/sIAA -AAAAAAAIAAAAAAAAAIAAAAAA - ---1618492860--2051301190--113853680-- +Received: from xcar [192.168.0.2] by jeeves.wooster.local + (SMTPD32-7.07 EVAL) id AFF92F0214; Sun, 12 May 2002 08:55:37 +0100 +Date: Sun, 12 May 2002 08:56:15 +0100 +From: Father Time +To: timbo at jeeves.wooster.local +Subject: IMAP file test +Message-ID: <6df65d354b.father.time at rpc.wooster.local> +X-Organization: Home +User-Agent: Messenger-Pro/2.50a (MsgServe/1.50) (RISC-OS/4.02) POPstar/2.03 +MIME-Version: 1.0 +Content-Type: multipart/mixed; boundary="1618492860--2051301190--113853680" +Status: R +X-UIDL: 319998302 + +This message is in MIME format which your mailer apparently does not support. +You either require a newer version of your software which supports MIME, or +a separate MIME decoding utility. Alternatively, ask the sender of this +message to resend it in a different format. + +--1618492860--2051301190--113853680 +Content-Type: text/plain; charset=us-ascii + +Simple email with attachment. + + +--1618492860--2051301190--113853680 +Content-Type: application/riscos; name="clock.bmp,69c"; type=BMP; + load=&fff69c4b; exec=&355dd4d1; access=&03 +Content-Disposition: attachment; filename="clock.bmp" +Content-Transfer-Encoding: base64 + +Qk12AgAAAAAAAHYAAAAoAAAAIAAAACAAAAABAAQAAAAAAAAAAADXDQAA1w0AAAAAAAAA +AAAAAAAAAAAAiAAAiAAAAIiIAIgAAACIAIgAiIgAALu7uwCIiIgAERHdACLuIgAz//8A +zAAAAN0R3QDu7iIA////AAAAAAAAAAAAAAAAAAAAAAAAAAi3AAAAAAAAADeAAAAAAAAA +C3ADMzMzMANwAAAAAAAAAAAHMAAAAANwAAAAAAAAAACAMAd3zPfwAwgAAAAAAAAIAwd/ +f8x/f3AwgAAAAAAAgDB0x/f3//zPAwgAAAAAAAcHfM9////8z/AwAAAAAAiwd/f3//// +////A4AAAAAAcEx/f///////zAMAAAAAiwfM9////3///8zwOAAAAAcHf3////B///// +8DAAAAALB/f3///wd3d3//AwAAAABwTPf//wCQAAD/zAMAAAAAsEx/f///B////8wDAA +AAAHB39////wf/////AwAAAACwf39///8H/////wMAAAAIcHfM9///B////M8DgAAAAA +sHTH///wf///xAMAAAAACHB3f3//8H////cDgAAAAAALB3zH//D//M9wMAAAAAAAgLB0 +z39///xHAwgAAAAAAAgLB3d3RHd3cDCAAAAAAAAAgLAHd0R3cAMIAAAAAAAAgAgLcAAA +AAMwgAgAAAAACDAAAAu7t7cwAAgDgAAAAABzcIAAAAAAAAgDMwAAAAAAN7uwgAAAAAgH +MzMAAAAACH97tzAAAAALu3c3gAAAAAAL+7tzDABAu7f7cAAAAAAACA+3MA7EQAv/sIAA +AAAAAAAIAAAAAAAAAIAAAAAA + +--1618492860--2051301190--113853680-- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 5 21:55:37 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 05 Mar 2011 21:55:37 +0100 Subject: [Python-checkins] cpython (2.7): Lib/email/test/data/msg_26.txt had its line endings wrong in the SVN repository. Message-ID: http://hg.python.org/cpython/rev/54a2ac6d91ec changeset: 68266:54a2ac6d91ec branch: 2.7 user: Antoine Pitrou date: Sat Mar 05 21:39:40 2011 +0100 summary: Lib/email/test/data/msg_26.txt had its line endings wrong in the SVN repository. (they were probably converted right in working copies through an SVN property) files: Lib/email/test/data/msg_26.txt diff --git a/Lib/email/test/data/msg_26.txt b/Lib/email/test/data/msg_26.txt --- a/Lib/email/test/data/msg_26.txt +++ b/Lib/email/test/data/msg_26.txt @@ -1,45 +1,45 @@ -Received: from xcar [192.168.0.2] by jeeves.wooster.local - (SMTPD32-7.07 EVAL) id AFF92F0214; Sun, 12 May 2002 08:55:37 +0100 -Date: Sun, 12 May 2002 08:56:15 +0100 -From: Father Time -To: timbo at jeeves.wooster.local -Subject: IMAP file test -Message-ID: <6df65d354b.father.time at rpc.wooster.local> -X-Organization: Home -User-Agent: Messenger-Pro/2.50a (MsgServe/1.50) (RISC-OS/4.02) POPstar/2.03 -MIME-Version: 1.0 -Content-Type: multipart/mixed; boundary="1618492860--2051301190--113853680" -Status: R -X-UIDL: 319998302 - -This message is in MIME format which your mailer apparently does not support. -You either require a newer version of your software which supports MIME, or -a separate MIME decoding utility. Alternatively, ask the sender of this -message to resend it in a different format. - ---1618492860--2051301190--113853680 -Content-Type: text/plain; charset=us-ascii - -Simple email with attachment. - - ---1618492860--2051301190--113853680 -Content-Type: application/riscos; name="clock.bmp,69c"; type=BMP; load=&fff69c4b; exec=&355dd4d1; access=&03 -Content-Disposition: attachment; filename="clock.bmp" -Content-Transfer-Encoding: base64 - -Qk12AgAAAAAAAHYAAAAoAAAAIAAAACAAAAABAAQAAAAAAAAAAADXDQAA1w0AAAAAAAAA -AAAAAAAAAAAAiAAAiAAAAIiIAIgAAACIAIgAiIgAALu7uwCIiIgAERHdACLuIgAz//8A -zAAAAN0R3QDu7iIA////AAAAAAAAAAAAAAAAAAAAAAAAAAi3AAAAAAAAADeAAAAAAAAA -C3ADMzMzMANwAAAAAAAAAAAHMAAAAANwAAAAAAAAAACAMAd3zPfwAwgAAAAAAAAIAwd/ -f8x/f3AwgAAAAAAAgDB0x/f3//zPAwgAAAAAAAcHfM9////8z/AwAAAAAAiwd/f3//// -////A4AAAAAAcEx/f///////zAMAAAAAiwfM9////3///8zwOAAAAAcHf3////B///// -8DAAAAALB/f3///wd3d3//AwAAAABwTPf//wCQAAD/zAMAAAAAsEx/f///B////8wDAA -AAAHB39////wf/////AwAAAACwf39///8H/////wMAAAAIcHfM9///B////M8DgAAAAA -sHTH///wf///xAMAAAAACHB3f3//8H////cDgAAAAAALB3zH//D//M9wMAAAAAAAgLB0 -z39///xHAwgAAAAAAAgLB3d3RHd3cDCAAAAAAAAAgLAHd0R3cAMIAAAAAAAAgAgLcAAA -AAMwgAgAAAAACDAAAAu7t7cwAAgDgAAAAABzcIAAAAAAAAgDMwAAAAAAN7uwgAAAAAgH -MzMAAAAACH97tzAAAAALu3c3gAAAAAAL+7tzDABAu7f7cAAAAAAACA+3MA7EQAv/sIAA -AAAAAAAIAAAAAAAAAIAAAAAA - ---1618492860--2051301190--113853680-- +Received: from xcar [192.168.0.2] by jeeves.wooster.local + (SMTPD32-7.07 EVAL) id AFF92F0214; Sun, 12 May 2002 08:55:37 +0100 +Date: Sun, 12 May 2002 08:56:15 +0100 +From: Father Time +To: timbo at jeeves.wooster.local +Subject: IMAP file test +Message-ID: <6df65d354b.father.time at rpc.wooster.local> +X-Organization: Home +User-Agent: Messenger-Pro/2.50a (MsgServe/1.50) (RISC-OS/4.02) POPstar/2.03 +MIME-Version: 1.0 +Content-Type: multipart/mixed; boundary="1618492860--2051301190--113853680" +Status: R +X-UIDL: 319998302 + +This message is in MIME format which your mailer apparently does not support. +You either require a newer version of your software which supports MIME, or +a separate MIME decoding utility. Alternatively, ask the sender of this +message to resend it in a different format. + +--1618492860--2051301190--113853680 +Content-Type: text/plain; charset=us-ascii + +Simple email with attachment. + + +--1618492860--2051301190--113853680 +Content-Type: application/riscos; name="clock.bmp,69c"; type=BMP; load=&fff69c4b; exec=&355dd4d1; access=&03 +Content-Disposition: attachment; filename="clock.bmp" +Content-Transfer-Encoding: base64 + +Qk12AgAAAAAAAHYAAAAoAAAAIAAAACAAAAABAAQAAAAAAAAAAADXDQAA1w0AAAAAAAAA +AAAAAAAAAAAAiAAAiAAAAIiIAIgAAACIAIgAiIgAALu7uwCIiIgAERHdACLuIgAz//8A +zAAAAN0R3QDu7iIA////AAAAAAAAAAAAAAAAAAAAAAAAAAi3AAAAAAAAADeAAAAAAAAA +C3ADMzMzMANwAAAAAAAAAAAHMAAAAANwAAAAAAAAAACAMAd3zPfwAwgAAAAAAAAIAwd/ +f8x/f3AwgAAAAAAAgDB0x/f3//zPAwgAAAAAAAcHfM9////8z/AwAAAAAAiwd/f3//// +////A4AAAAAAcEx/f///////zAMAAAAAiwfM9////3///8zwOAAAAAcHf3////B///// +8DAAAAALB/f3///wd3d3//AwAAAABwTPf//wCQAAD/zAMAAAAAsEx/f///B////8wDAA +AAAHB39////wf/////AwAAAACwf39///8H/////wMAAAAIcHfM9///B////M8DgAAAAA +sHTH///wf///xAMAAAAACHB3f3//8H////cDgAAAAAALB3zH//D//M9wMAAAAAAAgLB0 +z39///xHAwgAAAAAAAgLB3d3RHd3cDCAAAAAAAAAgLAHd0R3cAMIAAAAAAAAgAgLcAAA +AAMwgAgAAAAACDAAAAu7t7cwAAgDgAAAAABzcIAAAAAAAAgDMwAAAAAAN7uwgAAAAAgH +MzMAAAAACH97tzAAAAALu3c3gAAAAAAL+7tzDABAu7f7cAAAAAAACA+3MA7EQAv/sIAA +AAAAAAAIAAAAAAAAAIAAAAAA + +--1618492860--2051301190--113853680-- \ No newline at end of file -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 01:01:43 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 06 Mar 2011 01:01:43 +0100 Subject: [Python-checkins] devguide: Recommend to enable SSH compression Message-ID: http://hg.python.org/devguide/rev/dfb221f095b0 changeset: 367:dfb221f095b0 parent: 365:f8977b46f50e user: Antoine Pitrou date: Sun Mar 06 01:01:21 2011 +0100 summary: Recommend to enable SSH compression files: faq.rst diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -44,6 +44,12 @@ are typically available either online or through the platform's package management system. +It is recommended that you enable SSH compression. In your ``.ssh/config`` +file, add the following lines:: + + Host * + Compression yes + .. _download Mercurial: http://mercurial.selenic.com/downloads/ .. _OpenSSH: http://www.openssh.org/ -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sun Mar 6 01:01:47 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 06 Mar 2011 01:01:47 +0100 Subject: [Python-checkins] devguide (merge default -> default): Merge Message-ID: http://hg.python.org/devguide/rev/43207f6c834f changeset: 368:43207f6c834f parent: 367:dfb221f095b0 parent: 366:de5c0f9585d2 user: Antoine Pitrou date: Sun Mar 06 01:01:40 2011 +0100 summary: Merge files: diff --git a/gdb.rst b/gdb.rst --- a/gdb.rst +++ b/gdb.rst @@ -118,7 +118,7 @@ 902 options.profile = False 903 profile_me() 904 return - 905 + 905 >906 u = UI() 907 if not u.quit: 908 try: @@ -214,7 +214,7 @@ builtin 'len' = (gdb) py-print scarlet_pimpernel 'scarlet_pimpernel' not found - + ``py-locals`` The ``py-locals`` command looks up all Python locals within the current Python frame in the selected thread, and prints their representations:: -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sun Mar 6 01:11:31 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 06 Mar 2011 01:11:31 +0100 Subject: [Python-checkins] cpython (3.1): Issue #11391: Writing to a mmap object created with Message-ID: http://hg.python.org/cpython/rev/97a5590b9291 changeset: 68268:97a5590b9291 branch: 3.1 parent: 68260:9e9aa450a5f8 user: Antoine Pitrou date: Sun Mar 06 01:11:03 2011 +0100 summary: Issue #11391: Writing to a mmap object created with `mmap.PROT_READ|mmap.PROT_EXEC` would segfault instead of raising a TypeError. Patch by Charles-Fran?ois Natali. files: Lib/test/test_mmap.py Misc/ACKS Misc/NEWS Modules/mmapmodule.c diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -237,6 +237,14 @@ prot=mmap.PROT_READ, access=mmap.ACCESS_WRITE) f.close() + # Try writting without PROT_WRITE + with open(TESTFN, "r+b") as f: + m = mmap.mmap(f.fileno(), mapsize, prot=~mmap.PROT_WRITE) + self.assertRaises(TypeError, m.write, b"abcdef") + self.assertRaises(TypeError, m.write_byte, 0) + m.close() + + def test_bad_file_desc(self): # Try opening a bad file descriptor... self.assertRaises(mmap.error, mmap.mmap, -2, 4096) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -560,6 +560,7 @@ John Nagle Takahiro Nakayama Travers Naran +Charles-Fran?ois Natali Fredrik Nehr Trent Nelson Tony Nelson diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -37,6 +37,10 @@ Library ------- +- Issue #11391: Writing to a mmap object created with + ``mmap.PROT_READ|mmap.PROT_EXEC`` would segfault instead of raising a + TypeError. Patch by Charles-Fran?ois Natali. + - Issue #11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), send() and recv(). diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -1075,17 +1075,22 @@ prot = PROT_READ | PROT_WRITE; break; case ACCESS_DEFAULT: - /* use the specified or default values of flags and prot */ + /* map prot to access type */ + if ((prot & PROT_READ) && (prot & PROT_WRITE)) { + /* ACCESS_DEFAULT */ + } + else if (prot & PROT_WRITE) { + access = ACCESS_WRITE; + } + else { + access = ACCESS_READ; + } break; default: return PyErr_Format(PyExc_ValueError, "mmap invalid access parameter."); } - if (prot == PROT_READ) { - access = ACCESS_READ; - } - #ifdef HAVE_FSTAT # ifdef __VMS /* on OpenVMS we must ensure that all bytes are written to the file */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 01:53:48 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 06 Mar 2011 01:53:48 +0100 Subject: [Python-checkins] cpython (3.1): Fix buildbot failure following 97a5590b9291 Message-ID: http://hg.python.org/cpython/rev/e3eaf7dbb2b4 changeset: 68269:e3eaf7dbb2b4 branch: 3.1 user: Antoine Pitrou date: Sun Mar 06 01:47:18 2011 +0100 summary: Fix buildbot failure following 97a5590b9291 files: Lib/test/test_mmap.py diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -237,14 +237,14 @@ prot=mmap.PROT_READ, access=mmap.ACCESS_WRITE) f.close() - # Try writting without PROT_WRITE + # Try writing with PROT_EXEC and without PROT_WRITE + prot = mmap.PROT_READ | getattr(mmap, 'PROT_EXEC', 0) with open(TESTFN, "r+b") as f: - m = mmap.mmap(f.fileno(), mapsize, prot=~mmap.PROT_WRITE) + m = mmap.mmap(f.fileno(), mapsize, prot=prot) self.assertRaises(TypeError, m.write, b"abcdef") self.assertRaises(TypeError, m.write_byte, 0) m.close() - def test_bad_file_desc(self): # Try opening a bad file descriptor... self.assertRaises(mmap.error, mmap.mmap, -2, 4096) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 01:53:48 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 06 Mar 2011 01:53:48 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge fix for issue #11391 Message-ID: http://hg.python.org/cpython/rev/92ab79ca4eeb changeset: 68270:92ab79ca4eeb branch: 3.2 parent: 68267:3e5df0aa7202 parent: 68269:e3eaf7dbb2b4 user: Antoine Pitrou date: Sun Mar 06 01:50:56 2011 +0100 summary: Merge fix for issue #11391 files: Lib/test/test_mmap.py Misc/ACKS Misc/NEWS Modules/mmapmodule.c diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -234,6 +234,14 @@ flags=mmap.MAP_PRIVATE, prot=mmap.PROT_READ, access=mmap.ACCESS_WRITE) + # Try writing with PROT_EXEC and without PROT_WRITE + prot = mmap.PROT_READ | getattr(mmap, 'PROT_EXEC', 0) + with open(TESTFN, "r+b") as f: + m = mmap.mmap(f.fileno(), mapsize, prot=prot) + self.assertRaises(TypeError, m.write, b"abcdef") + self.assertRaises(TypeError, m.write_byte, 0) + m.close() + def test_bad_file_desc(self): # Try opening a bad file descriptor... self.assertRaises(mmap.error, mmap.mmap, -2, 4096) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -31,6 +31,10 @@ Library ------- +- Issue #11391: Writing to a mmap object created with + ``mmap.PROT_READ|mmap.PROT_EXEC`` would segfault instead of raising a + TypeError. Patch by Charles-Fran?ois Natali. + - Issue #11306: mailbox in certain cases adapts to an inability to open certain files in read-write mode. Previously it detected this by checking for EACCES, now it also checks for EROFS. diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -1106,17 +1106,22 @@ prot = PROT_READ | PROT_WRITE; break; case ACCESS_DEFAULT: - /* use the specified or default values of flags and prot */ + /* map prot to access type */ + if ((prot & PROT_READ) && (prot & PROT_WRITE)) { + /* ACCESS_DEFAULT */ + } + else if (prot & PROT_WRITE) { + access = ACCESS_WRITE; + } + else { + access = ACCESS_READ; + } break; default: return PyErr_Format(PyExc_ValueError, "mmap invalid access parameter."); } - if (prot == PROT_READ) { - access = ACCESS_READ; - } - #ifdef HAVE_FSTAT # ifdef __VMS /* on OpenVMS we must ensure that all bytes are written to the file */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 01:53:48 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 06 Mar 2011 01:53:48 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge fix for issue #11391 Message-ID: http://hg.python.org/cpython/rev/f9f9662dfb1f changeset: 68271:f9f9662dfb1f parent: 68262:5738c611ff2a parent: 68270:92ab79ca4eeb user: Antoine Pitrou date: Sun Mar 06 01:53:19 2011 +0100 summary: Merge fix for issue #11391 files: Misc/ACKS Misc/NEWS diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -234,6 +234,14 @@ flags=mmap.MAP_PRIVATE, prot=mmap.PROT_READ, access=mmap.ACCESS_WRITE) + # Try writing with PROT_EXEC and without PROT_WRITE + prot = mmap.PROT_READ | getattr(mmap, 'PROT_EXEC', 0) + with open(TESTFN, "r+b") as f: + m = mmap.mmap(f.fileno(), mapsize, prot=prot) + self.assertRaises(TypeError, m.write, b"abcdef") + self.assertRaises(TypeError, m.write_byte, 0) + m.close() + def test_bad_file_desc(self): # Try opening a bad file descriptor... self.assertRaises(mmap.error, mmap.mmap, -2, 4096) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -55,6 +55,10 @@ Library ------- +- Issue #11391: Writing to a mmap object created with + ``mmap.PROT_READ|mmap.PROT_EXEC`` would segfault instead of raising a + TypeError. Patch by Charles-Fran?ois Natali. + - Issue #9795: add context manager protocol support for nntplib.NNTP class. - Issue #11306: mailbox in certain cases adapts to an inability to open diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -1106,17 +1106,22 @@ prot = PROT_READ | PROT_WRITE; break; case ACCESS_DEFAULT: - /* use the specified or default values of flags and prot */ + /* map prot to access type */ + if ((prot & PROT_READ) && (prot & PROT_WRITE)) { + /* ACCESS_DEFAULT */ + } + else if (prot & PROT_WRITE) { + access = ACCESS_WRITE; + } + else { + access = ACCESS_READ; + } break; default: return PyErr_Format(PyExc_ValueError, "mmap invalid access parameter."); } - if (prot == PROT_READ) { - access = ACCESS_READ; - } - #ifdef HAVE_FSTAT # ifdef __VMS /* on OpenVMS we must ensure that all bytes are written to the file */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 02:11:28 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 06 Mar 2011 02:11:28 +0100 Subject: [Python-checkins] cpython (2.7): Issue #11391: Writing to a mmap object created with Message-ID: http://hg.python.org/cpython/rev/2e4468841c4c changeset: 68272:2e4468841c4c branch: 2.7 parent: 68266:54a2ac6d91ec user: Antoine Pitrou date: Sun Mar 06 02:03:34 2011 +0100 summary: Issue #11391: Writing to a mmap object created with `mmap.PROT_READ|mmap.PROT_EXEC` would segfault instead of raising a TypeError. Patch by Charles-Fran?ois Natali. files: Lib/test/test_mmap.py Misc/NEWS Modules/mmapmodule.c diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -239,6 +239,14 @@ prot=mmap.PROT_READ, access=mmap.ACCESS_WRITE) f.close() + # Try writing with PROT_EXEC and without PROT_WRITE + prot = mmap.PROT_READ | getattr(mmap, 'PROT_EXEC', 0) + with open(TESTFN, "r+b") as f: + m = mmap.mmap(f.fileno(), mapsize, prot=prot) + self.assertRaises(TypeError, m.write, b"abcdef") + self.assertRaises(TypeError, m.write_byte, 0) + m.close() + def test_bad_file_desc(self): # Try opening a bad file descriptor... self.assertRaises(mmap.error, mmap.mmap, -2, 4096) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,10 @@ Library ------- +- Issue #11391: Writing to a mmap object created with + ``mmap.PROT_READ|mmap.PROT_EXEC`` would segfault instead of raising a + TypeError. Patch by Charles-Fran?ois Natali. + - Issue #11306: mailbox in certain cases adapts to an inability to open certain files in read-write mode. Previously it detected this by checking for EACCES, now it also checks for EROFS. diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -1154,17 +1154,22 @@ prot = PROT_READ | PROT_WRITE; break; case ACCESS_DEFAULT: - /* use the specified or default values of flags and prot */ + /* map prot to access type */ + if ((prot & PROT_READ) && (prot & PROT_WRITE)) { + /* ACCESS_DEFAULT */ + } + else if (prot & PROT_WRITE) { + access = ACCESS_WRITE; + } + else { + access = ACCESS_READ; + } break; default: return PyErr_Format(PyExc_ValueError, "mmap invalid access parameter."); } - if (prot == PROT_READ) { - access = ACCESS_READ; - } - #ifdef HAVE_FSTAT # ifdef __VMS /* on OpenVMS we must ensure that all bytes are written to the file */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 02:32:09 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 06 Mar 2011 02:32:09 +0100 Subject: [Python-checkins] pymigr: Add a todo entry Message-ID: http://hg.python.org/pymigr/rev/701e6a102229 changeset: 131:701e6a102229 user: Antoine Pitrou date: Sun Mar 06 02:32:07 2011 +0100 summary: Add a todo entry files: todo.txt diff --git a/todo.txt b/todo.txt --- a/todo.txt +++ b/todo.txt @@ -49,6 +49,7 @@ After migration =============== +* fix the lookup app (it doesn't catch up with new changeset ids) * set up automatic (?) installation of changes to ssh keys, decide upon account managers [done] * adapt build identification for Windows build process (see -- Repository URL: http://hg.python.org/pymigr From python-checkins at python.org Sun Mar 6 02:33:20 2011 From: python-checkins at python.org (ned.deily) Date: Sun, 06 Mar 2011 02:33:20 +0100 Subject: [Python-checkins] devguide: Various review comments. Also expand the SSH compression recommendation. Message-ID: http://hg.python.org/devguide/rev/1b38c3e1ea75 changeset: 369:1b38c3e1ea75 user: Ned Deily date: Sat Mar 05 17:31:33 2011 -0800 summary: Various review comments. Also expand the SSH compression recommendation. files: devcycle.rst faq.rst help.rst patch.rst runtests.rst setup.rst diff --git a/devcycle.rst b/devcycle.rst --- a/devcycle.rst +++ b/devcycle.rst @@ -94,7 +94,7 @@ Based on what stage the :ref:`in-development ` version of Python is in, the responsibilities of a core developer change in regards to commits -to the VCS. +to the :abbr:`VCS (version control system)`. Pre-alpha diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -44,11 +44,13 @@ are typically available either online or through the platform's package management system. -It is recommended that you enable SSH compression. In your ``.ssh/config`` -file, add the following lines:: +Mercurial does not use its own compression via SSH +because it is better to enable compression at the SSH level. Enabling +SSH compression can make cloning a remote repository much faster. +You can configure it in your ``~/.ssh/config`` file; for example:: - Host * - Compression yes + Host hg.python.org + Compression yes .. _download Mercurial: http://mercurial.selenic.com/downloads/ .. _OpenSSH: http://www.openssh.org/ diff --git a/help.rst b/help.rst --- a/help.rst +++ b/help.rst @@ -4,8 +4,8 @@ ================= If you are working on Python it is very possible you will come across an issue -where you need some assistance in solving (this happens to core developers all -the time). Below are some options on getting help. +where you need some assistance to solve it (this happens to core developers +all the time). Below are some options on getting help. If the question involves process or tool usage then please check other parts of this guide first as it should answer your question. diff --git a/patch.rst b/patch.rst --- a/patch.rst +++ b/patch.rst @@ -138,7 +138,9 @@ ---------- If this is a patch in response to a pre-existing issue on the `issue tracker`_, -attach the patch to the issue. Please provide any details about your patch that +attach the patch to the issue; use the ``Choose File`` button on the tracker +web page for the issue to upload your patch file. Please provide any details +about your patch that would be relevant to the discussion of the issue or your patch. If this is a patch for an unreported issue (assuming you already performed a @@ -155,8 +157,8 @@ --------- To begin with, please be patient! There are many more people submitting patches -than there are people capable of reviewing your patch. To get your patch -reviewed it requires a reviewer to have the spare time and motivation to +than there are people capable of reviewing your patch. Getting your patch +reviewed requires a reviewer to have the spare time and motivation to look at your patch (we cannot force anyone to review patches). If your patch has not received any notice from reviewers (i.e., no comment made) after a substantial amount of time then you may @@ -178,7 +180,8 @@ your patch is committed. Balancing what *does* and *does not* go into Python is tricky and we simply cannot accept everyone's contributions. -But if your patch is committed it will then go into Python's VCS to be released +But if your patch is committed it will then go into Python's +:abbr:`VCS (version control system)` to be released with the next major release of Python. It may also be backported to older versions of Python as a bugfix if the core developer doing the commit believes it is warranted. diff --git a/runtests.rst b/runtests.rst --- a/runtests.rst +++ b/runtests.rst @@ -4,7 +4,8 @@ ======================= .. note:: - This document assumes you are working from a checkout of Python. If you + This document assumes you are working from an + :ref:`in-development ` checkout of Python. If you are not then some things presented here may not work as they may depend on new features not available in earlier versions of Python. @@ -49,10 +50,11 @@ test suite has not reached a point where all warnings have been dealt with and so we cannot guarantee that a bug-free Python will properly complete a test run with -``-W error``). The ``-r`` flag to the test runner causes it to run more randomly -which helps assert that the various tests don't interfere against each other. -The ``-w`` flag causes failures to run again to see if it a transient failure -or a consistent one. The ``-uall`` flag allows the user of all available +``-W error``). The ``-r`` flag to the test runner causes it to run tests in a +more random order which helps to check that the various tests do not interfere +with each other. The ``-w`` flag causes failing tests to be run again to see +if the failures are transient or consistent. +The ``-uall`` flag allows the use of all available resources so as to not skip tests requiring, e.g., Internet access. diff --git a/setup.rst b/setup.rst --- a/setup.rst +++ b/setup.rst @@ -31,7 +31,7 @@ be tempting to work from the copy of Python you already have installed on your machine, it is very likely that you will be working from out-of-date code as the Python core developers are constantly updating and fixing things in their -:abbr:`VCS`. It also means you will have better tool +:abbr:`VCS (version control system)`. It also means you will have better tool support through the VCS as it will provide a diff tool, etc. To get a working copy of the :ref:`in-development ` branch of @@ -49,8 +49,10 @@ You will need to re-compile CPython when you do such an update. Do note that CPython will notice that it is being run from a working copy. -This means that it if you edit CPython's source code in your working copy the -changes will be picked up by the interpreter for immediate use and testing. +This means that it if you edit CPython's source code in your working copy, +changes to Python code will be picked up by the interpreter for immediate +use and testing. (If you change C code, you will need to recompile the +affected files as described below.) Compiling (for debugging) @@ -123,7 +125,7 @@ Once CPython is done building you will then have a working build that can be run in-place; ``./python`` on most machines (and what is used in all examples), ``./python.exe`` on OS X (when on a case-insensitive filesystem, -which is the default). There is absolutely no need to install your built copy +which is the default). There is normally no need to install your built copy of Python! The interpreter will realize where it is being run from and thus use the files found in the working copy. If you are worried you might accidentally install your working copy build, you can add -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sun Mar 6 02:35:24 2011 From: python-checkins at python.org (dirkjan.ochtman) Date: Sun, 06 Mar 2011 02:35:24 +0100 Subject: [Python-checkins] hooks: Fix encoding of commit messages in email notifications (hopefully). Message-ID: http://hg.python.org/hooks/rev/25778a5508f3 changeset: 47:25778a5508f3 user: Antoine Pitrou date: Sun Mar 06 02:35:24 2011 +0100 summary: Fix encoding of commit messages in email notifications (hopefully). Mercurial uses an ugly "localstr" string class whose contents are determined by the current locale (*sigh*)... files: mail.py diff --git a/mail.py b/mail.py --- a/mail.py +++ b/mail.py @@ -8,6 +8,7 @@ from email.mime.text import MIMEText from mercurial import cmdutil, patch from mercurial.node import nullid +from mercurial.encoding import fromlocal import smtplib import os @@ -40,7 +41,7 @@ body += [CSET_URL % (path, ctx)] body += [line for line in log.splitlines()[:-2] if line != 'tag: tip'] - body += ['summary:\n ' + ctx.description(), ''] + body += ['summary:\n ' + fromlocal(ctx.description()), ''] body += ['files:\n ' + '\n '.join(ctx.files()), ''] diffopts = patch.diffopts(repo.ui, {'git': True, 'showfunc': True}) -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Sun Mar 6 02:36:25 2011 From: python-checkins at python.org (dirkjan.ochtman) Date: Sun, 06 Mar 2011 02:36:25 +0100 Subject: [Python-checkins] hooks: Hopefully fix the issue where notification of merges to buildbot Message-ID: http://hg.python.org/hooks/rev/d2aca4834bb9 changeset: 48:d2aca4834bb9 user: Antoine Pitrou date: Sun Mar 06 02:36:25 2011 +0100 summary: Hopefully fix the issue where notification of merges to buildbot wouldn't notify all changed files (because they are copied from the second parent). Untested still. files: hgbuildbot.py diff --git a/hgbuildbot.py b/hgbuildbot.py --- a/hgbuildbot.py +++ b/hgbuildbot.py @@ -84,9 +84,18 @@ manifest, user, (time, timezone), files, desc, extra = repo.changelog.read(node) parents = [p for p in repo.changelog.parents(node) if p != nullid] branch = extra['branch'] - # merges don't always contain files, but at least one file is required by buildbot - if len(parents) > 1 and not files: - files = ["merge"] + if len(parents) > 1: + # Explicitly compare current with its first parent (otherwise + # some files might be "forgotten" if they are copied as-is from the + # second parent). + modified, added, removed, deleted = repo.status(rev, p[0])[:4] + files = set() + for l in (modified, added, removed, deleted): + files.extend(l) + files = sorted(files) + if not files: + # dummy merge, but at least one file is required by buildbot + files.append("Misc/merge") # add artificial prefix if configured files = [prefix + f for f in files] changes.append({ -- Repository URL: http://hg.python.org/hooks From solipsis at pitrou.net Sun Mar 6 05:09:27 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Sun, 06 Mar 2011 05:09:27 +0100 Subject: [Python-checkins] Daily reference leaks (f9f9662dfb1f): sum=-11 Message-ID: results for f9f9662dfb1f on branch "default" -------------------------------------------- test_nntplib leaked [405, -416, 0] references, sum=-11 Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogZjlSs0', '-x'] From python-checkins at python.org Sun Mar 6 06:00:08 2011 From: python-checkins at python.org (ned.deily) Date: Sun, 06 Mar 2011 06:00:08 +0100 Subject: [Python-checkins] devguide: Updates to the triaging page, including describing the format for Message-ID: http://hg.python.org/devguide/rev/44b75230d5a3 changeset: 370:44b75230d5a3 user: Ned Deily date: Sat Mar 05 20:49:54 2011 -0800 summary: Updates to the triaging page, including describing the format for autogenerating links in the issue tracker to Mercurial changesets. files: triaging.rst diff --git a/triaging.rst b/triaging.rst --- a/triaging.rst +++ b/triaging.rst @@ -11,7 +11,7 @@ Title ''''' -Should be properly descriptive about what the issue is about. Occasionally +Should be properly descriptive of what the issue is about. Occasionally people file an issue that either has too generic of a title or end up thinking they filed about X but in fact it turns out to be about Y and thus the title is now wrong. @@ -26,12 +26,12 @@ Stage ''''' -What is next to advance the issue forward. The *stage* needn't be set until +What is needed next to advance the issue. The *stage* needn't be set until it is clear that the issue warrants fixing. test needed The bug reporter should post a script or instructions to let a triager or - developper reproduce the issue. + developer reproduce the issue. needs patch The issue lacks a patch to solve the problem (i.e. fixing the bug, or adding the requested improvement). @@ -48,7 +48,9 @@ Components '''''''''' What part of Python is affected by the issue. This is a multi-select field. -Be aware that what component is chosen may cause the issue to be auto-assigned. +Be aware that what component is chosen may cause the issue to be auto-assigned, +i.e. the issue tracker may automatically fill in the `Assigned To`_ field +after you press ``Submit changes``. Versions '''''''' @@ -88,15 +90,15 @@ Various flags about the issue. Multiple values are possible. after moratorium - The issue is in regards to a language change which is not allowed during - the `language moratorium`_. + The issue is in regards to a language change which was not allowed during + the `language moratorium`_ in effect during the 3.2 development cycle. buildbot A buildbot triggered the issue being reported. easy Fixing the issue should not take longer than a day for someone new to contributing to Python to solve. gsoc - The issue would fit as, or is related to, GSoC_. + The issue would fit as, or is related to, a GSoC_ project. needs review The patch attached to the issue is in need of a review. patch @@ -136,12 +138,13 @@ The issue has no clear solution , e.g., no agreement on a technical solution or if it is even a problem worth fixing. pending - The issue is blocked until someone (often times the - :abbr:`OP (original poster)`) provides some critical info; the issue is - automatically closed after a set amount of time if no reply comes in. - Useful for when someone reports a bug that lacks enough information to be - reproduced and thus should be closed if the lacking info is never provided. - and thus the issue is worthless without the needed info being provided. + The issue is blocked until someone (often the + :abbr:`OP (original poster)`) provides some critical information; + the issue will be closed after a set amount of time if no reply comes in. + Useful when someone opens an issue that lacks enough information to + reproduce the bug reported. Requesting additional information and setting + status to *pending* indicates that the issue should be closed if the + necessary information is never provided. closed The issue has been resolved (somehow). @@ -152,8 +155,8 @@ accepted Submitted patch was applied, still needs verifying (for example by watching the `buildbots `_) that - everything went fine. Then the resolution will turn to *fixed* - and the status to *closed*. + everything went fine. At that point the resolution should be set to + *fixed* and the status changed to *closed*. duplicate Duplicate of another issue; should have the Superseder field filled out. fixed @@ -181,18 +184,22 @@ Generating Special Links in a Comment ------------------------------------- -Comments can automatically generate a link to various things if formatted +Comments can automatically generate a link to various web pages if formatted properly. -* ``#``, ``issue``, ``issue `` links to the +* ``#``, ``issue``, or ``issue `` links to the tracker issue ````. * ``msg`` links to the tracker message ````. -* ``r``, ``rev``, ``revision `` links to the Subversion - revision ````. - -.. TODO update that last item to the format choosed for Mercurial: [CSET] - - check that [CSET] works - - check that rNUMBER links to the hglookup application +* a 12-digit or 40-digit hex ```` is assumed to be a Mercurial + changeset identifier and generates a link to changeset ```` + in the official Python source code repositories. +* ``r``, ``rev``, or ``revision `` is assumed to be + a legacy Subversion revision number, a reference to a changeset that was + checked in prior to 2011-03-05 when the official Python source code + repositories were migrated from the :abbr:`svn (Subversion)` + :abbr:`VCS (version control system)` to Mercurial. + The issue tracker automatically translates the legacy svn revision + ```` to its corresponding Mercurial changeset identifier. Reporting Issues About the Tracker -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sun Mar 6 06:00:11 2011 From: python-checkins at python.org (ned.deily) Date: Sun, 06 Mar 2011 06:00:11 +0100 Subject: [Python-checkins] devguide: More miscellaneous review comments. Message-ID: http://hg.python.org/devguide/rev/3a213a6a7dc9 changeset: 371:3a213a6a7dc9 user: Ned Deily date: Sat Mar 05 20:57:35 2011 -0800 summary: More miscellaneous review comments. files: experts.rst fixingissues.rst helptriage.rst diff --git a/experts.rst b/experts.rst --- a/experts.rst +++ b/experts.rst @@ -273,7 +273,7 @@ FreeBSD HP-UX Linux -Mac ronaldoussoren, ned.deily +Mac OS X ronaldoussoren, ned.deily NetBSD1 OS2/EMX aimacintyre Solaris diff --git a/fixingissues.rst b/fixingissues.rst --- a/fixingissues.rst +++ b/fixingissues.rst @@ -21,3 +21,5 @@ or not. .. _"easy" issues: http://bugs.python.org/issue?status=1&@sort=-activity&@dispname=Easy%20issues&@startwith=0&@filter=&@group=priority&@columns=id,activity,title,creator,status&keywords=6&@action=search&@pagesize=50 + +.. TODO: add something about no active core developer for the area? diff --git a/helptriage.rst b/helptriage.rst --- a/helptriage.rst +++ b/helptriage.rst @@ -6,9 +6,10 @@ Once you know your way around how Python's source files are structured and you are comfortable working with patches, a great way to participate is to help triage issues. Do realize, though, that experience -working on Python is needed in order to affectively help triage. +working on Python is needed in order to effectively help triage. -On a daily basis, issues get reported on the `issue tracker`_. Each and every +Around the clock, new issues are being opened on the `issue tracker`_ and +existing issues are being updated. Every issue needs to be triaged to make sure various things are in proper order. Even without special privileges you can help with this process. @@ -18,9 +19,9 @@ For bugs, an issue needs to: -* Clearly explain the bug so it can be reproduced -* All relevant platform details are included -* What version(s) of Python are affected by the bug are fully known +* clearly explain the bug so it can be reproduced +* include all relevant platform details +* state what version(s) of Python are affected by the bug. These are things you can help with once you have experience developing for Python. For instance, if a bug is not clearly explained enough for you to @@ -42,12 +43,12 @@ If an issue has a patch attached that has not been reviewed, you can help by making sure the patch: -* Follows the style guides -* Applies cleanly to an up-to-date checkout -* Is a good solution to the problem it is trying to solve -* There are proper tests -* The proper documentation changes are included -* The person is listed in ``Misc/ACKS``, either already or the patches add them +* follows the style guides +* applies cleanly to an up-to-date checkout +* is a good solution to the problem it is trying to solve +* includes proper tests +* includes proper documentation changes +* submitter is listed in ``Misc/ACKS``, either already or the patch adds them Doing all of this allows core developers and :ref:`triagers ` to more quickly look for subtle issues that only people with extensive experience -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sun Mar 6 08:40:44 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 06 Mar 2011 08:40:44 +0100 Subject: [Python-checkins] cpython: Issue #11408: In threading.Lock.acquire(), only call gettimeofday() when Message-ID: http://hg.python.org/cpython/rev/6ba9ba58499e changeset: 68273:6ba9ba58499e parent: 68271:f9f9662dfb1f user: Antoine Pitrou date: Sun Mar 06 08:40:35 2011 +0100 summary: Issue #11408: In threading.Lock.acquire(), only call gettimeofday() when really necessary. Patch by Charles-Fran?ois Natali. files: Misc/NEWS Modules/_threadmodule.c diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -55,6 +55,9 @@ Library ------- +- Issue #11408: In threading.Lock.acquire(), only call gettimeofday() when + really necessary. Patch by Charles-Fran?ois Natali. + - Issue #11391: Writing to a mmap object created with ``mmap.PROT_READ|mmap.PROT_EXEC`` would segfault instead of raising a TypeError. Patch by Charles-Fran?ois Natali. diff --git a/Modules/_threadmodule.c b/Modules/_threadmodule.c --- a/Modules/_threadmodule.c +++ b/Modules/_threadmodule.c @@ -54,8 +54,8 @@ _PyTime_timeval endtime; - _PyTime_gettimeofday(&endtime); if (microseconds > 0) { + _PyTime_gettimeofday(&endtime); endtime.tv_sec += microseconds / (1000 * 1000); endtime.tv_usec += microseconds % (1000 * 1000); } @@ -76,7 +76,7 @@ /* If we're using a timeout, recompute the timeout after processing * signals, since those can take time. */ - if (microseconds >= 0) { + if (microseconds > 0) { _PyTime_gettimeofday(&curtime); microseconds = ((endtime.tv_sec - curtime.tv_sec) * 1000000 + (endtime.tv_usec - curtime.tv_usec)); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 08:43:19 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 08:43:19 +0100 Subject: [Python-checkins] pymigr: Done. Message-ID: http://hg.python.org/pymigr/rev/85ee322c201a changeset: 132:85ee322c201a user: Georg Brandl date: Sun Mar 06 08:43:17 2011 +0100 summary: Done. files: todo.txt diff --git a/todo.txt b/todo.txt --- a/todo.txt +++ b/todo.txt @@ -49,7 +49,7 @@ After migration =============== -* fix the lookup app (it doesn't catch up with new changeset ids) +* fix the lookup app (it doesn't catch up with new changeset ids) [done] * set up automatic (?) installation of changes to ssh keys, decide upon account managers [done] * adapt build identification for Windows build process (see -- Repository URL: http://hg.python.org/pymigr From python-checkins at python.org Sun Mar 6 09:05:47 2011 From: python-checkins at python.org (local-hg) Date: Sun, 06 Mar 2011 09:05:47 +0100 Subject: [Python-checkins] hooks: Ensure that no terminal-specific formatting occurs in notification emails Message-ID: http://hg.python.org/hooks/rev/13ce3071824d changeset: 49:13ce3071824d user: Antoine Pitrou date: Sun Mar 06 09:05:47 2011 +0100 summary: Ensure that no terminal-specific formatting occurs in notification emails files: hgbuildbot.py mail.py diff --git a/hgbuildbot.py b/hgbuildbot.py --- a/hgbuildbot.py +++ b/hgbuildbot.py @@ -54,7 +54,7 @@ for k, v in change.items(): # Yikes! if isinstance(v, localstr): - change[k] = fromlocal(v).decode('utf8') + change[k] = fromlocal(v).decode('utf8', 'replace') d.addCallback(send, change) d.addCallbacks(s.printSuccess, s.printFailure) d.addBoth(s.stop) @@ -88,10 +88,11 @@ # Explicitly compare current with its first parent (otherwise # some files might be "forgotten" if they are copied as-is from the # second parent). - modified, added, removed, deleted = repo.status(rev, p[0])[:4] + p1 = repo[hex(p[0])] + modified, added, removed, deleted = repo.status(rev, p1)[:4] files = set() for l in (modified, added, removed, deleted): - files.extend(l) + files.update(l) files = sorted(files) if not files: # dummy merge, but at least one file is required by buildbot @@ -101,7 +102,7 @@ changes.append({ 'user': user, 'revision': hex(node), - 'comments': desc.decode('utf8', 'replace'), + 'comments': desc, 'revlink': (url % {'rev': hex(node)}) if url else '', 'files': files, 'branch': branch, diff --git a/mail.py b/mail.py --- a/mail.py +++ b/mail.py @@ -28,6 +28,10 @@ smtp.close() def incoming(ui, repo, **kwargs): + # Ensure that no fancying of output is enabled (e.g. coloring) + os.environ['TERM'] = 'dumb' + ui.setconfig('ui', 'interactive', 'False') + ui.setconfig('ui', 'formatted', 'False') displayer = cmdutil.changeset_printer(ui, repo, False, False, True) ctx = repo[kwargs['node']] -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Sun Mar 6 09:23:04 2011 From: python-checkins at python.org (local-hg) Date: Sun, 06 Mar 2011 09:23:04 +0100 Subject: [Python-checkins] hooks: Another try at disabling coloring Message-ID: http://hg.python.org/hooks/rev/1aaf36cb51b6 changeset: 50:1aaf36cb51b6 user: Antoine Pitrou date: Sun Mar 06 09:23:04 2011 +0100 summary: Another try at disabling coloring files: mail.py diff --git a/mail.py b/mail.py --- a/mail.py +++ b/mail.py @@ -11,6 +11,7 @@ from mercurial.encoding import fromlocal import smtplib import os +import sys BASE = 'http://hg.python.org/' CSET_URL = BASE + '%s/rev/%s' @@ -32,6 +33,12 @@ os.environ['TERM'] = 'dumb' ui.setconfig('ui', 'interactive', 'False') ui.setconfig('ui', 'formatted', 'False') + try: + colormod = sys.modules['hgext.color'] + except KeyError: + pass + else: + colormod._styles.clear() displayer = cmdutil.changeset_printer(ui, repo, False, False, True) ctx = repo[kwargs['node']] -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Sun Mar 6 10:00:22 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 06 Mar 2011 10:00:22 +0100 Subject: [Python-checkins] devguide: Advertise hg import before hg transplant Message-ID: http://hg.python.org/devguide/rev/51c640a3a782 changeset: 372:51c640a3a782 user: Antoine Pitrou date: Sun Mar 06 09:55:08 2011 +0100 summary: Advertise hg import before hg transplant files: committing.rst diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -178,20 +178,28 @@ Porting Between Major Versions '''''''''''''''''''''''''''''' +Let's say you have committed your changes as changeset ``a7df1a869e4a`` +in the 3.2 branch and now want to port it to 2.7. This is simple. First +update your working copy to the 2.7 branch, then import the patch:: + + hg update 2.7 + hg export a7df1a869e4a | hg import - + # Compile; run the test suite + hg commit + +You can also use the `transplant extension`_:: + + hg update 2.7 + hg transplant a7df1a869e4a + # Compile; run the test suite + + .. warning:: transplant always commits automatically. This breaks the "run the test suite before committing" rule. We could advocate using "hg qimport -r tip -P" afterwards but that would add another level of complexity. -To port a patch from, e.g., Python 3.2 to 2.7, you can use the `transplant -extension`_. Assuming you first committed your changes as changeset -``a7df1a869e4a`` in the 3.2 branch and have now :ref:`updated -` your working copy to the 2.7 branch, do:: - - hg transplant a7df1a869e4a - # Compile; run the test suite - hg push Differences with ``svnmerge`` -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sun Mar 6 10:00:25 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 06 Mar 2011 10:00:25 +0100 Subject: [Python-checkins] devguide: Remove misleading statements in the paragraph comparing svnmerge and hg Message-ID: http://hg.python.org/devguide/rev/d77c0db2c34d changeset: 373:d77c0db2c34d user: Antoine Pitrou date: Sun Mar 06 10:00:19 2011 +0100 summary: Remove misleading statements in the paragraph comparing svnmerge and hg merge. files: committing.rst faq.rst diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -205,22 +205,13 @@ Differences with ``svnmerge`` ''''''''''''''''''''''''''''' -If you are coming from Subversion, you might be surprised by how Mercurial works. +If you are coming from Subversion, you might be surprised by Mercurial +:ref:`merges `. Despite its name, ``svnmerge`` is different from ``hg merge``: while ``svnmerge`` allows to cherrypick individual revisions, ``hg merge`` can only merge whole lines of development in the repository's :abbr:`DAG (directed acyclic graph)`. -Therefore, ``hg merge`` might force you to review outstanding changesets that -haven't been merged by someone else yet. - -The way to avoid such situations is for everyone to make sure that they have -merged their commits to the ``default`` branch. Just type:: - - $ hg branches - default 3051:a7df1a869e4a - 3.1 3012:b560997b365d (inactive) - -and check that all branches except ``default`` are marked *inactive*. This -means there is no pending changeset to merge from these branches. +Therefore, ``hg merge`` might force you to review outstanding changesets by +someone else that haven't been merged yet. .. _transplant extension: http://mercurial.selenic.com/wiki/TransplantExtension diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -428,6 +428,8 @@ to match up with the repository. +.. _hg-merge: + How do I find out which revisions need merging? ----------------------------------------------- -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sun Mar 6 10:21:48 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 06 Mar 2011 10:21:48 +0100 Subject: [Python-checkins] devguide: Add an example of having one working copy per maintenance branch Message-ID: http://hg.python.org/devguide/rev/1ebe33a31f7a changeset: 374:1ebe33a31f7a user: Antoine Pitrou date: Sun Mar 06 10:21:45 2011 +0100 summary: Add an example of having one working copy per maintenance branch files: committing.rst faq.rst diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -201,6 +201,48 @@ complexity. +Using several working copies +'''''''''''''''''''''''''''' + +If you often work on bug fixes, you may want to avoid switching branches +in your local repository. The reason is that rebuilding takes time +when many files are updated. Instead, it is desirable to use a separate +working copy for each maintenance branch. + +There are various ways to achieve this, but here is a possible scenario: + +* First do a clone of the public repository, whose working copy be updated + to the ``default`` branch:: + + $ hg clone ssh://hg at hg.python.org/cpython default + +* Then clone it to create another local repository which is then used to + checkout branch 3.2:: + + $ hg clone default 3.2 + $ cd 3.2 + $ hg update 3.2 + +* If you also need the 3.1 branch, you can similarly clone it, either from + the ``3.2`` or the ``default`` repository. + +* You can also clone a 2.7-dedicated repository from the ``default`` branch:: + + $ hg clone default 2.7 + $ cd 2.7 + $ hg update 2.7 + +Given this arrangement of local repositories, pushing from the ``3.1`` +repository will update the ``3.2`` repository, where you can then merge your +3.1 changes into the 3.2 branch. In turn, pushing changes from the ``3.2`` +repository will update the ``default`` repository. Finally, once you have +merged (and tested!) your ``3.2`` changes into the ``default`` branch, pushing +from the ``default`` repository will publish your changes in the public +repository. + +If you want, you can later :ref:`change the flow of changes ` implied +by the cloning of repositories. + Differences with ``svnmerge`` ''''''''''''''''''''''''''''' diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -185,6 +185,8 @@ changes, ``hg update`` will update to the head of the *current branch*. +.. _hg-paths: + How do I link my local repository to a particular remote repository? ------------------------------------------------------------------------------- -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sun Mar 6 10:30:04 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 06 Mar 2011 10:30:04 +0100 Subject: [Python-checkins] devguide: Clarify wording Message-ID: http://hg.python.org/devguide/rev/1d11bfb0b4a3 changeset: 375:1d11bfb0b4a3 user: Antoine Pitrou date: Sun Mar 06 10:30:01 2011 +0100 summary: Clarify wording files: committing.rst diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -122,12 +122,16 @@ If the patch is a bugfix and it does not break backwards-compatibility *at all*, then it should be applied to the oldest branch applicable and forward-ported until it reaches the in-development branch -of Python. A forward-port instead of a back-port is preferred as it allows the -:abbr:`DAG (directed acyclic graph)` used by hg to work with the movement of +of Python (for example, first in ``3.1``, then in ``3.2`` and finally in +``default``). A forward-port instead of a back-port is preferred as it allows +the :abbr:`DAG (directed acyclic graph)` used by hg to work with the movement of the patch through the codebase instead of against it. -Even when porting an already committed patch, you should **still** check the -test suite runs successfully before committing the patch to another branch. +.. warning:: + Even when porting an already committed patch, you should **still** check the + test suite runs successfully before committing the patch to another branch. + Subtle differences between two branches sometimes make a patch bogus if + ported straightly. Porting Within a Major Version -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sun Mar 6 10:36:14 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 10:36:14 +0100 Subject: [Python-checkins] cpython (3.1): Adapt platform and test_platform to the build identification changes. Message-ID: http://hg.python.org/cpython/rev/f3f8b39eaa1e changeset: 68275:f3f8b39eaa1e branch: 3.1 user: Georg Brandl date: Sat Mar 05 21:09:22 2011 +0100 summary: Adapt platform and test_platform to the build identification changes. files: Lib/platform.py Lib/test/test_platform.py diff --git a/Lib/platform.py b/Lib/platform.py --- a/Lib/platform.py +++ b/Lib/platform.py @@ -1373,7 +1373,9 @@ name = 'CPython' builddate = builddate + ' ' + buildtime - if hasattr(sys, 'subversion'): + if hasattr(sys, '_mercurial'): + _, branch, revision = sys._mercurial + elif hasattr(sys, 'subversion'): # sys.subversion was added in Python 2.5 _, branch, revision = sys.subversion else: diff --git a/Lib/test/test_platform.py b/Lib/test/test_platform.py --- a/Lib/test/test_platform.py +++ b/Lib/test/test_platform.py @@ -51,11 +51,13 @@ def setUp(self): self.save_version = sys.version self.save_subversion = sys.subversion + self.save_mercurial = sys._mercurial self.save_platform = sys.platform def tearDown(self): sys.version = self.save_version sys.subversion = self.save_subversion + sys._mercurial = self.save_mercurial sys.platform = self.save_platform def test_sys_version(self): @@ -103,10 +105,12 @@ sys_versions.items(): sys.version = version_tag if subversion is None: + if hasattr(sys, "_mercurial"): + del sys._mercurial if hasattr(sys, "subversion"): del sys.subversion else: - sys.subversion = subversion + sys._mercurial = subversion if sys_platform is not None: sys.platform = sys_platform self.assertEqual(platform.python_implementation(), info[0]) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 10:36:13 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 10:36:13 +0100 Subject: [Python-checkins] cpython (3.1): Commit the hg build identification patch from the pymigr repo. Message-ID: http://hg.python.org/cpython/rev/f57c94073b35 changeset: 68274:f57c94073b35 branch: 3.1 parent: 68269:e3eaf7dbb2b4 user: Georg Brandl date: Sat Mar 05 20:51:24 2011 +0100 summary: Commit the hg build identification patch from the pymigr repo. files: Include/pythonrun.h Makefile.pre.in Modules/getbuildinfo.c Python/sysmodule.c configure configure.in diff --git a/Include/pythonrun.h b/Include/pythonrun.h --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -120,6 +120,8 @@ PyAPI_FUNC(const char *) _Py_svnversion(void); PyAPI_FUNC(const char *) Py_SubversionRevision(void); PyAPI_FUNC(const char *) Py_SubversionShortBranch(void); +PyAPI_FUNC(const char *) _Py_hgidentifier(void); +PyAPI_FUNC(const char *) _Py_hgversion(void); /* Internal -- various one-time initializations */ PyAPI_FUNC(PyObject *) _PyBuiltin_Init(void); diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -35,6 +35,9 @@ AR= @AR@ RANLIB= @RANLIB@ SVNVERSION= @SVNVERSION@ +HGVERSION= @HGVERSION@ +HGTAG= @HGTAG@ +HGBRANCH= @HGBRANCH@ GNULD= @GNULD@ @@ -525,7 +528,12 @@ $(SIGNAL_OBJS) \ $(MODOBJS) \ $(srcdir)/Modules/getbuildinfo.c - $(CC) -c $(PY_CFLAGS) -DSVNVERSION="\"`LC_ALL=C $(SVNVERSION)`\"" -o $@ $(srcdir)/Modules/getbuildinfo.c + $(CC) -c $(PY_CFLAGS) \ + -DSVNVERSION="\"`LC_ALL=C $(SVNVERSION)`\"" \ + -DHGVERSION="\"`LC_ALL=C $(HGVERSION)`\"" \ + -DHGTAG="\"`LC_ALL=C $(HGTAG)`\"" \ + -DHGBRANCH="\"`LC_ALL=C $(HGBRANCH)`\"" \ + -o $@ $(srcdir)/Modules/getbuildinfo.c Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \ diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -28,15 +28,28 @@ #define SVNVERSION "$WCRANGE$$WCMODS?M:$" #endif +/* XXX Only unix build process has been tested */ +#ifndef HGVERSION +#define HGVERSION "" +#endif +#ifndef HGTAG +#define HGTAG "" +#endif +#ifndef HGBRANCH +#define HGBRANCH "" +#endif + const char * Py_GetBuildInfo(void) { static char buildinfo[50]; - const char *revision = Py_SubversionRevision(); + const char *revision = _Py_hgversion(); const char *sep = *revision ? ":" : ""; - const char *branch = Py_SubversionShortBranch(); + const char *hgid = _Py_hgidentifier(); + if (!(*hgid)) + hgid = "default"; PyOS_snprintf(buildinfo, sizeof(buildinfo), - "%s%s%s, %.20s, %.9s", branch, sep, revision, + "%s%s%s, %.20s, %.9s", hgid, sep, revision, DATE, TIME); return buildinfo; } @@ -50,3 +63,21 @@ return svnversion; /* it was interpolated, or passed on command line */ return "Unversioned directory"; } + +const char * +_Py_hgversion(void) +{ + return HGVERSION; +} + +const char * +_Py_hgidentifier(void) +{ + const char *hgtag, *hgid; + hgtag = HGTAG; + if ((*hgtag) && strcmp(hgtag, "tip") != 0) + hgid = hgtag; + else + hgid = HGBRANCH; + return hgid; +} diff --git a/Python/sysmodule.c b/Python/sysmodule.c --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1358,6 +1358,9 @@ SET_SYS_FROM_STRING("subversion", Py_BuildValue("(UUU)", "CPython", branch, svn_revision)); + SET_SYS_FROM_STRING("_mercurial", + Py_BuildValue("(szz)", "CPython", _Py_hgidentifier(), + _Py_hgversion())); SET_SYS_FROM_STRING("dont_write_bytecode", PyBool_FromLong(Py_DontWriteBytecodeFlag)); SET_SYS_FROM_STRING("api_version", diff --git a/configure b/configure --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 88561 . +# From configure.in Revision. # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.68 for python 3.1. # @@ -639,6 +639,10 @@ INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM +HAS_HG +HGBRANCH +HGTAG +HGVERSION SVNVERSION ARFLAGS AR @@ -5089,6 +5093,58 @@ SVNVERSION="echo Unversioned directory" fi + + + +# Extract the first word of "hg", so it can be a program name with args. +set dummy hg; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_HAS_HG+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$HAS_HG"; then + ac_cv_prog_HAS_HG="$HAS_HG" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_HAS_HG="found" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_prog_HAS_HG" && ac_cv_prog_HAS_HG="not-found" +fi +fi +HAS_HG=$ac_cv_prog_HAS_HG +if test -n "$HAS_HG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HAS_HG" >&5 +$as_echo "$HAS_HG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +if test $HAS_HG = found +then + HGVERSION="hg id -i \$(srcdir)" + HGTAG="hg id -t \$(srcdir)" + HGBRANCH="hg id -b \$(srcdir)" +else + HGVERSION="" + HGTAG="" + HGBRANCH="" +fi + case $MACHDEP in bsdos*|hp*|HP*) # install -d does not work on BSDI or HP-UX diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -785,6 +785,21 @@ SVNVERSION="echo Unversioned directory" fi +AC_SUBST(HGVERSION) +AC_SUBST(HGTAG) +AC_SUBST(HGBRANCH) +AC_CHECK_PROG(HAS_HG, hg, found, not-found) +if test $HAS_HG = found +then + HGVERSION="hg id -i \$(srcdir)" + HGTAG="hg id -t \$(srcdir)" + HGBRANCH="hg id -b \$(srcdir)" +else + HGVERSION="" + HGTAG="" + HGBRANCH="" +fi + case $MACHDEP in bsdos*|hp*|HP*) # install -d does not work on BSDI or HP-UX -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 10:36:14 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 10:36:14 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge build identification to 3.2 branch. Message-ID: http://hg.python.org/cpython/rev/4f9d5263c8e9 changeset: 68276:4f9d5263c8e9 branch: 3.2 parent: 68270:92ab79ca4eeb parent: 68275:f3f8b39eaa1e user: Georg Brandl date: Sun Mar 06 10:13:00 2011 +0100 summary: Merge build identification to 3.2 branch. files: Include/pythonrun.h Lib/platform.py Lib/test/test_platform.py Makefile.pre.in Python/sysmodule.c configure configure.in diff --git a/Include/pythonrun.h b/Include/pythonrun.h --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -182,6 +182,8 @@ PyAPI_FUNC(const char *) _Py_svnversion(void); PyAPI_FUNC(const char *) Py_SubversionRevision(void); PyAPI_FUNC(const char *) Py_SubversionShortBranch(void); +PyAPI_FUNC(const char *) _Py_hgidentifier(void); +PyAPI_FUNC(const char *) _Py_hgversion(void); #endif /* Internal -- various one-time initializations */ diff --git a/Lib/platform.py b/Lib/platform.py --- a/Lib/platform.py +++ b/Lib/platform.py @@ -1392,7 +1392,9 @@ name = 'CPython' builddate = builddate + ' ' + buildtime - if hasattr(sys, 'subversion'): + if hasattr(sys, '_mercurial'): + _, branch, revision = sys._mercurial + elif hasattr(sys, 'subversion'): # sys.subversion was added in Python 2.5 _, branch, revision = sys.subversion else: diff --git a/Lib/test/test_platform.py b/Lib/test/test_platform.py --- a/Lib/test/test_platform.py +++ b/Lib/test/test_platform.py @@ -57,11 +57,13 @@ def setUp(self): self.save_version = sys.version self.save_subversion = sys.subversion + self.save_mercurial = sys._mercurial self.save_platform = sys.platform def tearDown(self): sys.version = self.save_version sys.subversion = self.save_subversion + sys._mercurial = self.save_mercurial sys.platform = self.save_platform def test_sys_version(self): @@ -109,10 +111,12 @@ sys_versions.items(): sys.version = version_tag if subversion is None: + if hasattr(sys, "_mercurial"): + del sys._mercurial if hasattr(sys, "subversion"): del sys.subversion else: - sys.subversion = subversion + sys._mercurial = subversion if sys_platform is not None: sys.platform = sys_platform self.assertEqual(platform.python_implementation(), info[0]) diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -37,6 +37,9 @@ SVNVERSION= @SVNVERSION@ SOABI= @SOABI@ LDVERSION= @LDVERSION@ +HGVERSION= @HGVERSION@ +HGTAG= @HGTAG@ +HGBRANCH= @HGBRANCH@ GNULD= @GNULD@ @@ -552,7 +555,12 @@ $(SIGNAL_OBJS) \ $(MODOBJS) \ $(srcdir)/Modules/getbuildinfo.c - $(CC) -c $(PY_CORE_CFLAGS) -DSVNVERSION="\"`LC_ALL=C $(SVNVERSION)`\"" -o $@ $(srcdir)/Modules/getbuildinfo.c + $(CC) -c $(PY_CORE_CFLAGS) \ + -DSVNVERSION="\"`LC_ALL=C $(SVNVERSION)`\"" \ + -DHGVERSION="\"`LC_ALL=C $(HGVERSION)`\"" \ + -DHGTAG="\"`LC_ALL=C $(HGTAG)`\"" \ + -DHGBRANCH="\"`LC_ALL=C $(HGBRANCH)`\"" \ + -o $@ $(srcdir)/Modules/getbuildinfo.c Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile $(CC) -c $(PY_CORE_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \ diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -28,15 +28,28 @@ #define SVNVERSION "$WCRANGE$$WCMODS?M:$" #endif +/* XXX Only unix build process has been tested */ +#ifndef HGVERSION +#define HGVERSION "" +#endif +#ifndef HGTAG +#define HGTAG "" +#endif +#ifndef HGBRANCH +#define HGBRANCH "" +#endif + const char * Py_GetBuildInfo(void) { static char buildinfo[50]; - const char *revision = Py_SubversionRevision(); + const char *revision = _Py_hgversion(); const char *sep = *revision ? ":" : ""; - const char *branch = Py_SubversionShortBranch(); + const char *hgid = _Py_hgidentifier(); + if (!(*hgid)) + hgid = "default"; PyOS_snprintf(buildinfo, sizeof(buildinfo), - "%s%s%s, %.20s, %.9s", branch, sep, revision, + "%s%s%s, %.20s, %.9s", hgid, sep, revision, DATE, TIME); return buildinfo; } @@ -50,3 +63,21 @@ return svnversion; /* it was interpolated, or passed on command line */ return "Unversioned directory"; } + +const char * +_Py_hgversion(void) +{ + return HGVERSION; +} + +const char * +_Py_hgidentifier(void) +{ + const char *hgtag, *hgid; + hgtag = HGTAG; + if ((*hgtag) && strcmp(hgtag, "tip") != 0) + hgid = hgtag; + else + hgid = HGBRANCH; + return hgid; +} diff --git a/Python/sysmodule.c b/Python/sysmodule.c --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1600,6 +1600,9 @@ SET_SYS_FROM_STRING("subversion", Py_BuildValue("(sss)", "CPython", branch, svn_revision)); + SET_SYS_FROM_STRING("_mercurial", + Py_BuildValue("(szz)", "CPython", _Py_hgidentifier(), + _Py_hgversion())); SET_SYS_FROM_STRING("dont_write_bytecode", PyBool_FromLong(Py_DontWriteBytecodeFlag)); SET_SYS_FROM_STRING("api_version", diff --git a/configure b/configure --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 88430 . +# From configure.in Revision. # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.68 for python 3.2. # @@ -644,6 +644,10 @@ INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM +HAS_HG +HGBRANCH +HGTAG +HGVERSION SVNVERSION ARFLAGS AR @@ -5166,6 +5170,58 @@ SVNVERSION="echo Unversioned directory" fi + + + +# Extract the first word of "hg", so it can be a program name with args. +set dummy hg; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_HAS_HG+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$HAS_HG"; then + ac_cv_prog_HAS_HG="$HAS_HG" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_HAS_HG="found" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_prog_HAS_HG" && ac_cv_prog_HAS_HG="not-found" +fi +fi +HAS_HG=$ac_cv_prog_HAS_HG +if test -n "$HAS_HG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HAS_HG" >&5 +$as_echo "$HAS_HG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +if test $HAS_HG = found +then + HGVERSION="hg id -i \$(srcdir)" + HGTAG="hg id -t \$(srcdir)" + HGBRANCH="hg id -b \$(srcdir)" +else + HGVERSION="" + HGTAG="" + HGBRANCH="" +fi + case $MACHDEP in bsdos*|hp*|HP*) # install -d does not work on BSDI or HP-UX diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -817,6 +817,21 @@ SVNVERSION="echo Unversioned directory" fi +AC_SUBST(HGVERSION) +AC_SUBST(HGTAG) +AC_SUBST(HGBRANCH) +AC_CHECK_PROG(HAS_HG, hg, found, not-found) +if test $HAS_HG = found +then + HGVERSION="hg id -i \$(srcdir)" + HGTAG="hg id -t \$(srcdir)" + HGBRANCH="hg id -b \$(srcdir)" +else + HGVERSION="" + HGTAG="" + HGBRANCH="" +fi + case $MACHDEP in bsdos*|hp*|HP*) # install -d does not work on BSDI or HP-UX -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 10:36:14 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 10:36:14 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge build identification to default branch. Message-ID: http://hg.python.org/cpython/rev/c3541ac278ca changeset: 68277:c3541ac278ca parent: 68271:f9f9662dfb1f parent: 68276:4f9d5263c8e9 user: Georg Brandl date: Sun Mar 06 10:26:32 2011 +0100 summary: Merge build identification to default branch. files: Lib/platform.py Lib/test/test_platform.py Makefile.pre.in Python/sysmodule.c configure configure.in diff --git a/Include/pythonrun.h b/Include/pythonrun.h --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -182,6 +182,8 @@ PyAPI_FUNC(const char *) _Py_svnversion(void); PyAPI_FUNC(const char *) Py_SubversionRevision(void); PyAPI_FUNC(const char *) Py_SubversionShortBranch(void); +PyAPI_FUNC(const char *) _Py_hgidentifier(void); +PyAPI_FUNC(const char *) _Py_hgversion(void); #endif /* Internal -- various one-time initializations */ diff --git a/Lib/platform.py b/Lib/platform.py --- a/Lib/platform.py +++ b/Lib/platform.py @@ -1311,7 +1311,9 @@ name = 'CPython' builddate = builddate + ' ' + buildtime - if hasattr(sys, 'subversion'): + if hasattr(sys, '_mercurial'): + _, branch, revision = sys._mercurial + elif hasattr(sys, 'subversion'): # sys.subversion was added in Python 2.5 _, branch, revision = sys.subversion else: diff --git a/Lib/test/test_platform.py b/Lib/test/test_platform.py --- a/Lib/test/test_platform.py +++ b/Lib/test/test_platform.py @@ -57,11 +57,13 @@ def setUp(self): self.save_version = sys.version self.save_subversion = sys.subversion + self.save_mercurial = sys._mercurial self.save_platform = sys.platform def tearDown(self): sys.version = self.save_version sys.subversion = self.save_subversion + sys._mercurial = self.save_mercurial sys.platform = self.save_platform def test_sys_version(self): @@ -109,10 +111,12 @@ sys_versions.items(): sys.version = version_tag if subversion is None: + if hasattr(sys, "_mercurial"): + del sys._mercurial if hasattr(sys, "subversion"): del sys.subversion else: - sys.subversion = subversion + sys._mercurial = subversion if sys_platform is not None: sys.platform = sys_platform self.assertEqual(platform.python_implementation(), info[0]) diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -37,6 +37,9 @@ SVNVERSION= @SVNVERSION@ SOABI= @SOABI@ LDVERSION= @LDVERSION@ +HGVERSION= @HGVERSION@ +HGTAG= @HGTAG@ +HGBRANCH= @HGBRANCH@ GNULD= @GNULD@ @@ -552,7 +555,12 @@ $(SIGNAL_OBJS) \ $(MODOBJS) \ $(srcdir)/Modules/getbuildinfo.c - $(CC) -c $(PY_CORE_CFLAGS) -DSVNVERSION="\"`LC_ALL=C $(SVNVERSION)`\"" -o $@ $(srcdir)/Modules/getbuildinfo.c + $(CC) -c $(PY_CORE_CFLAGS) \ + -DSVNVERSION="\"`LC_ALL=C $(SVNVERSION)`\"" \ + -DHGVERSION="\"`LC_ALL=C $(HGVERSION)`\"" \ + -DHGTAG="\"`LC_ALL=C $(HGTAG)`\"" \ + -DHGBRANCH="\"`LC_ALL=C $(HGBRANCH)`\"" \ + -o $@ $(srcdir)/Modules/getbuildinfo.c Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile $(CC) -c $(PY_CORE_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \ diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -28,15 +28,28 @@ #define SVNVERSION "$WCRANGE$$WCMODS?M:$" #endif +/* XXX Only unix build process has been tested */ +#ifndef HGVERSION +#define HGVERSION "" +#endif +#ifndef HGTAG +#define HGTAG "" +#endif +#ifndef HGBRANCH +#define HGBRANCH "" +#endif + const char * Py_GetBuildInfo(void) { static char buildinfo[50]; - const char *revision = Py_SubversionRevision(); + const char *revision = _Py_hgversion(); const char *sep = *revision ? ":" : ""; - const char *branch = Py_SubversionShortBranch(); + const char *hgid = _Py_hgidentifier(); + if (!(*hgid)) + hgid = "default"; PyOS_snprintf(buildinfo, sizeof(buildinfo), - "%s%s%s, %.20s, %.9s", branch, sep, revision, + "%s%s%s, %.20s, %.9s", hgid, sep, revision, DATE, TIME); return buildinfo; } @@ -50,3 +63,21 @@ return svnversion; /* it was interpolated, or passed on command line */ return "Unversioned directory"; } + +const char * +_Py_hgversion(void) +{ + return HGVERSION; +} + +const char * +_Py_hgidentifier(void) +{ + const char *hgtag, *hgid; + hgtag = HGTAG; + if ((*hgtag) && strcmp(hgtag, "tip") != 0) + hgid = hgtag; + else + hgid = HGBRANCH; + return hgid; +} diff --git a/Python/sysmodule.c b/Python/sysmodule.c --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1599,6 +1599,9 @@ SET_SYS_FROM_STRING("subversion", Py_BuildValue("(sss)", "CPython", branch, svn_revision)); + SET_SYS_FROM_STRING("_mercurial", + Py_BuildValue("(szz)", "CPython", _Py_hgidentifier(), + _Py_hgversion())); SET_SYS_FROM_STRING("dont_write_bytecode", PyBool_FromLong(Py_DontWriteBytecodeFlag)); SET_SYS_FROM_STRING("api_version", diff --git a/configure b/configure --- a/configure +++ b/configure @@ -1,14 +1,14 @@ #! /bin/sh -# From configure.in Revision: 88625 . +# From configure.in Revision. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.65 for python 3.3. +# Generated by GNU Autoconf 2.68 for python 3.3. # # Report bugs to . # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. +# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software +# Foundation, Inc. # # # This configure script is free software; the Free Software Foundation @@ -92,6 +92,7 @@ IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. +as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR @@ -217,11 +218,18 @@ # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. + # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV export CONFIG_SHELL - exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} + case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; + esac + exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} fi if test x$as_have_required = xno; then : @@ -320,7 +328,7 @@ test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p @@ -360,19 +368,19 @@ fi # as_fn_arith -# as_fn_error ERROR [LINENO LOG_FD] -# --------------------------------- +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with status $?, using 1 if that was 0. +# script with STATUS, using 1 if that was 0. as_fn_error () { - as_status=$?; test $as_status -eq 0 && as_status=1 - if test "$3"; then - as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi - $as_echo "$as_me: error: $1" >&2 + $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error @@ -534,7 +542,7 @@ exec 6>&1 # Name of the host. -# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, +# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` @@ -636,6 +644,10 @@ INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM +HAS_HG +HGBRANCH +HGTAG +HGVERSION SVNVERSION ARFLAGS AR @@ -829,8 +841,9 @@ fi case $ac_option in - *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; - *) ac_optarg=yes ;; + *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *=) ac_optarg= ;; + *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. @@ -875,7 +888,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid feature name: $ac_useropt" + as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -901,7 +914,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid feature name: $ac_useropt" + as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1105,7 +1118,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid package name: $ac_useropt" + as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1121,7 +1134,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error "invalid package name: $ac_useropt" + as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1151,8 +1164,8 @@ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; - -*) as_fn_error "unrecognized option: \`$ac_option' -Try \`$0 --help' for more information." + -*) as_fn_error $? "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information" ;; *=*) @@ -1160,7 +1173,7 @@ # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) - as_fn_error "invalid variable name: \`$ac_envvar'" ;; + as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; @@ -1170,7 +1183,7 @@ $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} + : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac @@ -1178,13 +1191,13 @@ if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` - as_fn_error "missing argument to $ac_option" + as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; - fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; + fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi @@ -1207,7 +1220,7 @@ [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac - as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" + as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' @@ -1221,8 +1234,8 @@ if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe - $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. - If a cross compiler is detected then cross compile mode will be used." >&2 + $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. + If a cross compiler is detected then cross compile mode will be used" >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi @@ -1237,9 +1250,9 @@ ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - as_fn_error "working directory cannot be determined" + as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - as_fn_error "pwd does not report name of working directory" + as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. @@ -1278,11 +1291,11 @@ fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" + as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then @@ -1322,7 +1335,7 @@ --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking...' messages + -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files @@ -1508,9 +1521,9 @@ if $ac_init_version; then cat <<\_ACEOF python configure 3.3 -generated by GNU Autoconf 2.65 - -Copyright (C) 2009 Free Software Foundation, Inc. +generated by GNU Autoconf 2.68 + +Copyright (C) 2010 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF @@ -1554,7 +1567,7 @@ ac_retval=1 fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile @@ -1580,7 +1593,7 @@ mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } >/dev/null && { + test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : @@ -1591,7 +1604,7 @@ ac_retval=1 fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp @@ -1604,10 +1617,10 @@ ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 @@ -1643,7 +1656,7 @@ else ac_header_preproc=no fi -rm -f conftest.err conftest.$ac_ext +rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } @@ -1666,17 +1679,15 @@ $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -( cat <<\_ASBOX -## -------------------------------------- ## +( $as_echo "## -------------------------------------- ## ## Report this to http://bugs.python.org/ ## -## -------------------------------------- ## -_ASBOX +## -------------------------------------- ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" @@ -1685,7 +1696,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel @@ -1726,7 +1737,7 @@ ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run @@ -1740,7 +1751,7 @@ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -1758,7 +1769,7 @@ eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile @@ -1803,7 +1814,7 @@ # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link @@ -1817,7 +1828,7 @@ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" @@ -1858,7 +1869,7 @@ eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_type @@ -1871,7 +1882,7 @@ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uint$2_t" >&5 $as_echo_n "checking for uint$2_t... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" @@ -1901,8 +1912,7 @@ esac fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - eval as_val=\$$3 - if test "x$as_val" = x""no; then : + if eval test \"x\$"$3"\" = x"no"; then : else break @@ -1912,7 +1922,7 @@ eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_find_uintX_t @@ -1925,7 +1935,7 @@ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for int$2_t" >&5 $as_echo_n "checking for int$2_t... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" @@ -1936,11 +1946,11 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(enum { N = $2 / 2 - 1 }; - 0 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1))]; + enum { N = $2 / 2 - 1 }; +int +main () +{ +static int test_array [1 - 2 * !(0 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1))]; test_array [0] = 0 ; @@ -1951,11 +1961,11 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default -int -main () -{ -static int test_array [1 - 2 * !(enum { N = $2 / 2 - 1 }; - ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1) + enum { N = $2 / 2 - 1 }; +int +main () +{ +static int test_array [1 - 2 * !(($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1) < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 2))]; test_array [0] = 0 @@ -1976,8 +1986,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - eval as_val=\$$3 - if test "x$as_val" = x""no; then : + if eval test \"x\$"$3"\" = x"no"; then : else break @@ -1987,7 +1996,7 @@ eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_find_intX_t @@ -2164,7 +2173,7 @@ rm -f conftest.val fi - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_compute_int @@ -2177,7 +2186,7 @@ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -2232,7 +2241,7 @@ eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func @@ -2245,7 +2254,7 @@ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5 $as_echo_n "checking for $2.$3... " >&6; } -if { as_var=$4; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval \${$4+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -2289,19 +2298,22 @@ eval ac_res=\$$4 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_member -# ac_fn_c_check_decl LINENO SYMBOL VAR -# ------------------------------------ -# Tests whether SYMBOL is declared, setting cache variable VAR accordingly. +# ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES +# --------------------------------------------- +# Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR +# accordingly. ac_fn_c_check_decl () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $2 is declared" >&5 -$as_echo_n "checking whether $2 is declared... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + as_decl_name=`echo $2|sed 's/ *(.*//'` + as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 +$as_echo_n "checking whether $as_decl_name is declared... " >&6; } +if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -2310,8 +2322,12 @@ int main () { -#ifndef $2 - (void) $2; +#ifndef $as_decl_name +#ifdef __cplusplus + (void) $as_decl_use; +#else + (void) $as_decl_name; +#endif #endif ; @@ -2328,7 +2344,7 @@ eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_decl cat >config.log <<_ACEOF @@ -2336,7 +2352,7 @@ running configure, to aid debugging if configure makes a mistake. It was created by python $as_me 3.3, which was -generated by GNU Autoconf 2.65. Invocation command line was +generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -2446,11 +2462,9 @@ { echo - cat <<\_ASBOX -## ---------------- ## + $as_echo "## ---------------- ## ## Cache variables. ## -## ---------------- ## -_ASBOX +## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( @@ -2484,11 +2498,9 @@ ) echo - cat <<\_ASBOX -## ----------------- ## + $as_echo "## ----------------- ## ## Output variables. ## -## ----------------- ## -_ASBOX +## ----------------- ##" echo for ac_var in $ac_subst_vars do @@ -2501,11 +2513,9 @@ echo if test -n "$ac_subst_files"; then - cat <<\_ASBOX -## ------------------- ## + $as_echo "## ------------------- ## ## File substitutions. ## -## ------------------- ## -_ASBOX +## ------------------- ##" echo for ac_var in $ac_subst_files do @@ -2519,11 +2529,9 @@ fi if test -s confdefs.h; then - cat <<\_ASBOX -## ----------- ## + $as_echo "## ----------- ## ## confdefs.h. ## -## ----------- ## -_ASBOX +## ----------- ##" echo cat confdefs.h echo @@ -2578,7 +2586,12 @@ ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then - ac_site_file1=$CONFIG_SITE + # We do not want a PATH search for config.site. + case $CONFIG_SITE in #(( + -*) ac_site_file1=./$CONFIG_SITE;; + */*) ac_site_file1=$CONFIG_SITE;; + *) ac_site_file1=./$CONFIG_SITE;; + esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site @@ -2593,7 +2606,11 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" + . "$ac_site_file" \ + || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "failed to load site script $ac_site_file +See \`config.log' for more details" "$LINENO" 5; } fi done @@ -2669,7 +2686,7 @@ $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} - as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 + as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## @@ -2770,7 +2787,7 @@ UNIVERSALSDK=$enableval if test ! -d "${UNIVERSALSDK}" then - as_fn_error "--enable-universalsdk specifies non-existing SDK: ${UNIVERSALSDK}" "$LINENO" 5 + as_fn_error $? "--enable-universalsdk specifies non-existing SDK: ${UNIVERSALSDK}" "$LINENO" 5 fi ;; esac @@ -3162,7 +3179,7 @@ # If the user switches compilers, we can't believe the cache if test ! -z "$ac_cv_prog_CC" -a ! -z "$CC" -a "$CC" != "$ac_cv_prog_CC" then - as_fn_error "cached CC is different -- throw away $cache_file + as_fn_error $? "cached CC is different -- throw away $cache_file (it is also a good idea to do 'make clean' before compiling)" "$LINENO" 5 fi @@ -3182,7 +3199,7 @@ set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : +if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -3222,7 +3239,7 @@ set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : +if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then @@ -3275,7 +3292,7 @@ set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : +if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -3315,7 +3332,7 @@ set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : +if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -3374,7 +3391,7 @@ set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then : +if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -3418,7 +3435,7 @@ set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : +if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then @@ -3472,8 +3489,8 @@ test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "no acceptable C compiler found in \$PATH -See \`config.log' for more details." "$LINENO" 5; } +as_fn_error $? "no acceptable C compiler found in \$PATH +See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 @@ -3587,9 +3604,8 @@ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "C compiler cannot create executables -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "C compiler cannot create executables +See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -3631,8 +3647,8 @@ else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." "$LINENO" 5; } +as_fn_error $? "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 @@ -3689,9 +3705,9 @@ else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot run C compiled programs. +as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. -See \`config.log' for more details." "$LINENO" 5; } +See \`config.log' for more details" "$LINENO" 5; } fi fi fi @@ -3702,7 +3718,7 @@ ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } -if test "${ac_cv_objext+set}" = set; then : +if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -3742,8 +3758,8 @@ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "cannot compute suffix of object files: cannot compile -See \`config.log' for more details." "$LINENO" 5; } +as_fn_error $? "cannot compute suffix of object files: cannot compile +See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi @@ -3753,7 +3769,7 @@ ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if test "${ac_cv_c_compiler_gnu+set}" = set; then : +if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -3790,7 +3806,7 @@ ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } -if test "${ac_cv_prog_cc_g+set}" = set; then : +if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag @@ -3868,7 +3884,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if test "${ac_cv_prog_cc_c89+set}" = set; then : +if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no @@ -4003,7 +4019,7 @@ set dummy g++; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_CXX+set}" = set; then : +if ${ac_cv_path_CXX+:} false; then : $as_echo_n "(cached) " >&6 else case $CXX in @@ -4044,7 +4060,7 @@ set dummy c++; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_CXX+set}" = set; then : +if ${ac_cv_path_CXX+:} false; then : $as_echo_n "(cached) " >&6 else case $CXX in @@ -4095,7 +4111,7 @@ set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CXX+set}" = set; then : +if ${ac_cv_prog_CXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CXX"; then @@ -4166,7 +4182,7 @@ CPP= fi if test -z "$CPP"; then - if test "${ac_cv_prog_CPP+set}" = set; then : + if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded @@ -4196,7 +4212,7 @@ # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.$ac_ext +rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -4212,11 +4228,11 @@ ac_preproc_ok=: break fi -rm -f conftest.err conftest.$ac_ext +rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext +rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi @@ -4255,7 +4271,7 @@ # Broken: fails on valid input. continue fi -rm -f conftest.err conftest.$ac_ext +rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. @@ -4271,18 +4287,18 @@ ac_preproc_ok=: break fi -rm -f conftest.err conftest.$ac_ext +rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext +rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error "C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details." "$LINENO" 5; } +as_fn_error $? "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c @@ -4294,7 +4310,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } -if test "${ac_cv_path_GREP+set}" = set; then : +if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then @@ -4343,7 +4359,7 @@ done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then - as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP @@ -4357,7 +4373,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } -if test "${ac_cv_path_EGREP+set}" = set; then : +if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 @@ -4409,7 +4425,7 @@ done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then - as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP @@ -4424,7 +4440,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } -if test "${ac_cv_header_stdc+set}" = set; then : +if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -4541,8 +4557,7 @@ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " -eval as_val=\$$as_ac_Header - if test "x$as_val" = x""yes; then : +if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -4554,7 +4569,7 @@ ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" -if test "x$ac_cv_header_minix_config_h" = x""yes; then : +if test "x$ac_cv_header_minix_config_h" = xyes; then : MINIX=yes else MINIX= @@ -4576,7 +4591,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 $as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } -if test "${ac_cv_safe_to_define___extensions__+set}" = set; then : +if ${ac_cv_safe_to_define___extensions__+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -4769,7 +4784,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 $as_echo_n "checking for inline... " >&6; } -if test "${ac_cv_c_inline+set}" = set; then : +if ${ac_cv_c_inline+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_c_inline=no @@ -4970,7 +4985,7 @@ set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_RANLIB+set}" = set; then : +if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then @@ -5010,7 +5025,7 @@ set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then : +if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then @@ -5064,7 +5079,7 @@ set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_AR+set}" = set; then : +if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then @@ -5114,7 +5129,7 @@ set dummy svnversion; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_SVNVERSION+set}" = set; then : +if ${ac_cv_prog_SVNVERSION+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$SVNVERSION"; then @@ -5155,6 +5170,58 @@ SVNVERSION="echo Unversioned directory" fi + + + +# Extract the first word of "hg", so it can be a program name with args. +set dummy hg; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_HAS_HG+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$HAS_HG"; then + ac_cv_prog_HAS_HG="$HAS_HG" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_HAS_HG="found" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_prog_HAS_HG" && ac_cv_prog_HAS_HG="not-found" +fi +fi +HAS_HG=$ac_cv_prog_HAS_HG +if test -n "$HAS_HG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HAS_HG" >&5 +$as_echo "$HAS_HG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +if test $HAS_HG = found +then + HGVERSION="hg id -i \$(srcdir)" + HGTAG="hg id -t \$(srcdir)" + HGBRANCH="hg id -b \$(srcdir)" +else + HGVERSION="" + HGTAG="" + HGBRANCH="" +fi + case $MACHDEP in bsdos*|hp*|HP*) # install -d does not work on BSDI or HP-UX @@ -5165,16 +5232,22 @@ esac ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do - for ac_t in install-sh install.sh shtool; do - if test -f "$ac_dir/$ac_t"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/$ac_t -c" - break 2 - fi - done + if test -f "$ac_dir/install-sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break + elif test -f "$ac_dir/install.sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break + elif test -f "$ac_dir/shtool"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/shtool install -c" + break + fi done if test -z "$ac_aux_dir"; then - as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 + as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, @@ -5203,7 +5276,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then -if test "${ac_cv_path_install+set}" = set; then : +if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR @@ -5389,7 +5462,7 @@ ac_save_cc="$CC" CC="$CC -fno-strict-aliasing" save_CFLAGS="$CFLAGS" - if test "${ac_cv_no_strict_aliasing+set}" = set; then : + if ${ac_cv_no_strict_aliasing+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -5512,7 +5585,7 @@ ARCH_RUN_32BIT="/usr/bin/arch -i386 -ppc" else - as_fn_error "proper usage is --with-universal-arch=32-bit|64-bit|all|intel|3-way" "$LINENO" 5 + as_fn_error $? "proper usage is --with-universal-arch=32-bit|64-bit|all|intel|3-way" "$LINENO" 5 fi @@ -5645,7 +5718,7 @@ # options before we can check whether -Kpthread improves anything. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads are available without options" >&5 $as_echo_n "checking whether pthreads are available without options... " >&6; } -if test "${ac_cv_pthread_is_default+set}" = set; then : +if ${ac_cv_pthread_is_default+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -5698,7 +5771,7 @@ # function available. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -Kpthread" >&5 $as_echo_n "checking whether $CC accepts -Kpthread... " >&6; } -if test "${ac_cv_kpthread+set}" = set; then : +if ${ac_cv_kpthread+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_cc="$CC" @@ -5747,7 +5820,7 @@ # function available. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -Kthread" >&5 $as_echo_n "checking whether $CC accepts -Kthread... " >&6; } -if test "${ac_cv_kthread+set}" = set; then : +if ${ac_cv_kthread+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_cc="$CC" @@ -5796,7 +5869,7 @@ # function available. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -pthread" >&5 $as_echo_n "checking whether $CC accepts -pthread... " >&6; } -if test "${ac_cv_thread+set}" = set; then : +if ${ac_cv_thread+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_cc="$CC" @@ -5881,7 +5954,7 @@ # checks for header files { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } -if test "${ac_cv_header_stdc+set}" = set; then : +if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -6006,8 +6079,7 @@ do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -eval as_val=\$$as_ac_Header - if test "x$as_val" = x""yes; then : +if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -6021,7 +6093,7 @@ as_ac_Header=`$as_echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_hdr that defines DIR" >&5 $as_echo_n "checking for $ac_hdr that defines DIR... " >&6; } -if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then : +if eval \${$as_ac_Header+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -6048,8 +6120,7 @@ eval ac_res=\$$as_ac_Header { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } -eval as_val=\$$as_ac_Header - if test "x$as_val" = x""yes; then : +if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_hdr" | $as_tr_cpp` 1 _ACEOF @@ -6062,7 +6133,7 @@ if test $ac_header_dirent = dirent.h; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5 $as_echo_n "checking for library containing opendir... " >&6; } -if test "${ac_cv_search_opendir+set}" = set; then : +if ${ac_cv_search_opendir+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS @@ -6096,11 +6167,11 @@ fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext - if test "${ac_cv_search_opendir+set}" = set; then : + if ${ac_cv_search_opendir+:} false; then : break fi done -if test "${ac_cv_search_opendir+set}" = set; then : +if ${ac_cv_search_opendir+:} false; then : else ac_cv_search_opendir=no @@ -6119,7 +6190,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5 $as_echo_n "checking for library containing opendir... " >&6; } -if test "${ac_cv_search_opendir+set}" = set; then : +if ${ac_cv_search_opendir+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS @@ -6153,11 +6224,11 @@ fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext - if test "${ac_cv_search_opendir+set}" = set; then : + if ${ac_cv_search_opendir+:} false; then : break fi done -if test "${ac_cv_search_opendir+set}" = set; then : +if ${ac_cv_search_opendir+:} false; then : else ac_cv_search_opendir=no @@ -6177,7 +6248,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether sys/types.h defines makedev" >&5 $as_echo_n "checking whether sys/types.h defines makedev... " >&6; } -if test "${ac_cv_header_sys_types_h_makedev+set}" = set; then : +if ${ac_cv_header_sys_types_h_makedev+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -6205,7 +6276,7 @@ if test $ac_cv_header_sys_types_h_makedev = no; then ac_fn_c_check_header_mongrel "$LINENO" "sys/mkdev.h" "ac_cv_header_sys_mkdev_h" "$ac_includes_default" -if test "x$ac_cv_header_sys_mkdev_h" = x""yes; then : +if test "x$ac_cv_header_sys_mkdev_h" = xyes; then : $as_echo "#define MAJOR_IN_MKDEV 1" >>confdefs.h @@ -6215,7 +6286,7 @@ if test $ac_cv_header_sys_mkdev_h = no; then ac_fn_c_check_header_mongrel "$LINENO" "sys/sysmacros.h" "ac_cv_header_sys_sysmacros_h" "$ac_includes_default" -if test "x$ac_cv_header_sys_sysmacros_h" = x""yes; then : +if test "x$ac_cv_header_sys_sysmacros_h" = xyes; then : $as_echo "#define MAJOR_IN_SYSMACROS 1" >>confdefs.h @@ -6235,7 +6306,7 @@ #endif " -if test "x$ac_cv_header_term_h" = x""yes; then : +if test "x$ac_cv_header_term_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_TERM_H 1 _ACEOF @@ -6257,7 +6328,7 @@ #endif " -if test "x$ac_cv_header_linux_netlink_h" = x""yes; then : +if test "x$ac_cv_header_linux_netlink_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LINUX_NETLINK_H 1 _ACEOF @@ -6423,7 +6494,7 @@ # Type availability checks ac_fn_c_check_type "$LINENO" "mode_t" "ac_cv_type_mode_t" "$ac_includes_default" -if test "x$ac_cv_type_mode_t" = x""yes; then : +if test "x$ac_cv_type_mode_t" = xyes; then : else @@ -6434,7 +6505,7 @@ fi ac_fn_c_check_type "$LINENO" "off_t" "ac_cv_type_off_t" "$ac_includes_default" -if test "x$ac_cv_type_off_t" = x""yes; then : +if test "x$ac_cv_type_off_t" = xyes; then : else @@ -6445,7 +6516,7 @@ fi ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default" -if test "x$ac_cv_type_pid_t" = x""yes; then : +if test "x$ac_cv_type_pid_t" = xyes; then : else @@ -6461,7 +6532,7 @@ _ACEOF ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" -if test "x$ac_cv_type_size_t" = x""yes; then : +if test "x$ac_cv_type_size_t" = xyes; then : else @@ -6473,7 +6544,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uid_t in sys/types.h" >&5 $as_echo_n "checking for uid_t in sys/types.h... " >&6; } -if test "${ac_cv_type_uid_t+set}" = set; then : +if ${ac_cv_type_uid_t+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -6552,7 +6623,7 @@ esac ac_fn_c_check_type "$LINENO" "ssize_t" "ac_cv_type_ssize_t" "$ac_includes_default" -if test "x$ac_cv_type_ssize_t" = x""yes; then : +if test "x$ac_cv_type_ssize_t" = xyes; then : $as_echo "#define HAVE_SSIZE_T 1" >>confdefs.h @@ -6567,7 +6638,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int" >&5 $as_echo_n "checking size of int... " >&6; } -if test "${ac_cv_sizeof_int+set}" = set; then : +if ${ac_cv_sizeof_int+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int))" "ac_cv_sizeof_int" "$ac_includes_default"; then : @@ -6576,9 +6647,8 @@ if test "$ac_cv_type_int" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (int) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (int) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_int=0 fi @@ -6601,7 +6671,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long" >&5 $as_echo_n "checking size of long... " >&6; } -if test "${ac_cv_sizeof_long+set}" = set; then : +if ${ac_cv_sizeof_long+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long))" "ac_cv_sizeof_long" "$ac_includes_default"; then : @@ -6610,9 +6680,8 @@ if test "$ac_cv_type_long" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (long) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (long) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_long=0 fi @@ -6635,7 +6704,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of void *" >&5 $as_echo_n "checking size of void *... " >&6; } -if test "${ac_cv_sizeof_void_p+set}" = set; then : +if ${ac_cv_sizeof_void_p+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (void *))" "ac_cv_sizeof_void_p" "$ac_includes_default"; then : @@ -6644,9 +6713,8 @@ if test "$ac_cv_type_void_p" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (void *) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (void *) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_void_p=0 fi @@ -6669,7 +6737,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of short" >&5 $as_echo_n "checking size of short... " >&6; } -if test "${ac_cv_sizeof_short+set}" = set; then : +if ${ac_cv_sizeof_short+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (short))" "ac_cv_sizeof_short" "$ac_includes_default"; then : @@ -6678,9 +6746,8 @@ if test "$ac_cv_type_short" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (short) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (short) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_short=0 fi @@ -6703,7 +6770,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of float" >&5 $as_echo_n "checking size of float... " >&6; } -if test "${ac_cv_sizeof_float+set}" = set; then : +if ${ac_cv_sizeof_float+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (float))" "ac_cv_sizeof_float" "$ac_includes_default"; then : @@ -6712,9 +6779,8 @@ if test "$ac_cv_type_float" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (float) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (float) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_float=0 fi @@ -6737,7 +6803,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of double" >&5 $as_echo_n "checking size of double... " >&6; } -if test "${ac_cv_sizeof_double+set}" = set; then : +if ${ac_cv_sizeof_double+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (double))" "ac_cv_sizeof_double" "$ac_includes_default"; then : @@ -6746,9 +6812,8 @@ if test "$ac_cv_type_double" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (double) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (double) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_double=0 fi @@ -6771,7 +6836,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of fpos_t" >&5 $as_echo_n "checking size of fpos_t... " >&6; } -if test "${ac_cv_sizeof_fpos_t+set}" = set; then : +if ${ac_cv_sizeof_fpos_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (fpos_t))" "ac_cv_sizeof_fpos_t" "$ac_includes_default"; then : @@ -6780,9 +6845,8 @@ if test "$ac_cv_type_fpos_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (fpos_t) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (fpos_t) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_fpos_t=0 fi @@ -6805,7 +6869,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of size_t" >&5 $as_echo_n "checking size of size_t... " >&6; } -if test "${ac_cv_sizeof_size_t+set}" = set; then : +if ${ac_cv_sizeof_size_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (size_t))" "ac_cv_sizeof_size_t" "$ac_includes_default"; then : @@ -6814,9 +6878,8 @@ if test "$ac_cv_type_size_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (size_t) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (size_t) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_size_t=0 fi @@ -6839,7 +6902,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of pid_t" >&5 $as_echo_n "checking size of pid_t... " >&6; } -if test "${ac_cv_sizeof_pid_t+set}" = set; then : +if ${ac_cv_sizeof_pid_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (pid_t))" "ac_cv_sizeof_pid_t" "$ac_includes_default"; then : @@ -6848,9 +6911,8 @@ if test "$ac_cv_type_pid_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (pid_t) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (pid_t) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_pid_t=0 fi @@ -6900,7 +6962,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long long" >&5 $as_echo_n "checking size of long long... " >&6; } -if test "${ac_cv_sizeof_long_long+set}" = set; then : +if ${ac_cv_sizeof_long_long+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long long))" "ac_cv_sizeof_long_long" "$ac_includes_default"; then : @@ -6909,9 +6971,8 @@ if test "$ac_cv_type_long_long" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (long long) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (long long) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_long_long=0 fi @@ -6962,7 +7023,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long double" >&5 $as_echo_n "checking size of long double... " >&6; } -if test "${ac_cv_sizeof_long_double+set}" = set; then : +if ${ac_cv_sizeof_long_double+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long double))" "ac_cv_sizeof_long_double" "$ac_includes_default"; then : @@ -6971,9 +7032,8 @@ if test "$ac_cv_type_long_double" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (long double) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (long double) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_long_double=0 fi @@ -7025,7 +7085,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of _Bool" >&5 $as_echo_n "checking size of _Bool... " >&6; } -if test "${ac_cv_sizeof__Bool+set}" = set; then : +if ${ac_cv_sizeof__Bool+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (_Bool))" "ac_cv_sizeof__Bool" "$ac_includes_default"; then : @@ -7034,9 +7094,8 @@ if test "$ac_cv_type__Bool" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (_Bool) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (_Bool) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof__Bool=0 fi @@ -7062,7 +7121,7 @@ #include #endif " -if test "x$ac_cv_type_uintptr_t" = x""yes; then : +if test "x$ac_cv_type_uintptr_t" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_UINTPTR_T 1 @@ -7074,7 +7133,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of uintptr_t" >&5 $as_echo_n "checking size of uintptr_t... " >&6; } -if test "${ac_cv_sizeof_uintptr_t+set}" = set; then : +if ${ac_cv_sizeof_uintptr_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (uintptr_t))" "ac_cv_sizeof_uintptr_t" "$ac_includes_default"; then : @@ -7083,9 +7142,8 @@ if test "$ac_cv_type_uintptr_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (uintptr_t) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (uintptr_t) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_uintptr_t=0 fi @@ -7111,7 +7169,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of off_t" >&5 $as_echo_n "checking size of off_t... " >&6; } -if test "${ac_cv_sizeof_off_t+set}" = set; then : +if ${ac_cv_sizeof_off_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (off_t))" "ac_cv_sizeof_off_t" " @@ -7125,9 +7183,8 @@ if test "$ac_cv_type_off_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (off_t) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (off_t) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_off_t=0 fi @@ -7171,7 +7228,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of time_t" >&5 $as_echo_n "checking size of time_t... " >&6; } -if test "${ac_cv_sizeof_time_t+set}" = set; then : +if ${ac_cv_sizeof_time_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (time_t))" "ac_cv_sizeof_time_t" " @@ -7188,9 +7245,8 @@ if test "$ac_cv_type_time_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (time_t) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (time_t) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_time_t=0 fi @@ -7247,7 +7303,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of pthread_t" >&5 $as_echo_n "checking size of pthread_t... " >&6; } -if test "${ac_cv_sizeof_pthread_t+set}" = set; then : +if ${ac_cv_sizeof_pthread_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (pthread_t))" "ac_cv_sizeof_pthread_t" " @@ -7261,9 +7317,8 @@ if test "$ac_cv_type_pthread_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (pthread_t) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (pthread_t) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_pthread_t=0 fi @@ -7350,7 +7405,7 @@ MACOSX_DEFAULT_ARCH="ppc" ;; *) - as_fn_error "Unexpected output of 'arch' on OSX" "$LINENO" 5 + as_fn_error $? "Unexpected output of 'arch' on OSX" "$LINENO" 5 ;; esac else @@ -7362,7 +7417,7 @@ MACOSX_DEFAULT_ARCH="ppc64" ;; *) - as_fn_error "Unexpected output of 'arch' on OSX" "$LINENO" 5 + as_fn_error $? "Unexpected output of 'arch' on OSX" "$LINENO" 5 ;; esac @@ -7388,7 +7443,7 @@ $as_echo "yes" >&6; } if test $enable_shared = "yes" then - as_fn_error "Specifying both --enable-shared and --enable-framework is not supported, use only --enable-framework instead" "$LINENO" 5 + as_fn_error $? "Specifying both --enable-shared and --enable-framework is not supported, use only --enable-framework instead" "$LINENO" 5 fi else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 @@ -7695,7 +7750,7 @@ # checks for libraries { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sendfile in -lsendfile" >&5 $as_echo_n "checking for sendfile in -lsendfile... " >&6; } -if test "${ac_cv_lib_sendfile_sendfile+set}" = set; then : +if ${ac_cv_lib_sendfile_sendfile+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -7729,7 +7784,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sendfile_sendfile" >&5 $as_echo "$ac_cv_lib_sendfile_sendfile" >&6; } -if test "x$ac_cv_lib_sendfile_sendfile" = x""yes; then : +if test "x$ac_cv_lib_sendfile_sendfile" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBSENDFILE 1 _ACEOF @@ -7740,7 +7795,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } -if test "${ac_cv_lib_dl_dlopen+set}" = set; then : +if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -7774,7 +7829,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } -if test "x$ac_cv_lib_dl_dlopen" = x""yes; then : +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBDL 1 _ACEOF @@ -7785,7 +7840,7 @@ # Dynamic linking for SunOS/Solaris and SYSV { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } -if test "${ac_cv_lib_dld_shl_load+set}" = set; then : +if ${ac_cv_lib_dld_shl_load+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -7819,7 +7874,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } -if test "x$ac_cv_lib_dld_shl_load" = x""yes; then : +if test "x$ac_cv_lib_dld_shl_load" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBDLD 1 _ACEOF @@ -7833,7 +7888,7 @@ if test "$with_threads" = "yes" -o -z "$with_threads"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing sem_init" >&5 $as_echo_n "checking for library containing sem_init... " >&6; } -if test "${ac_cv_search_sem_init+set}" = set; then : +if ${ac_cv_search_sem_init+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS @@ -7867,11 +7922,11 @@ fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext - if test "${ac_cv_search_sem_init+set}" = set; then : + if ${ac_cv_search_sem_init+:} false; then : break fi done -if test "${ac_cv_search_sem_init+set}" = set; then : +if ${ac_cv_search_sem_init+:} false; then : else ac_cv_search_sem_init=no @@ -7894,7 +7949,7 @@ # check if we need libintl for locale functions { $as_echo "$as_me:${as_lineno-$LINENO}: checking for textdomain in -lintl" >&5 $as_echo_n "checking for textdomain in -lintl... " >&6; } -if test "${ac_cv_lib_intl_textdomain+set}" = set; then : +if ${ac_cv_lib_intl_textdomain+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -7928,7 +7983,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_textdomain" >&5 $as_echo "$ac_cv_lib_intl_textdomain" >&6; } -if test "x$ac_cv_lib_intl_textdomain" = x""yes; then : +if test "x$ac_cv_lib_intl_textdomain" = xyes; then : $as_echo "#define WITH_LIBINTL 1" >>confdefs.h @@ -7975,7 +8030,7 @@ # Most SVR4 platforms (e.g. Solaris) need -lsocket and -lnsl. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for t_open in -lnsl" >&5 $as_echo_n "checking for t_open in -lnsl... " >&6; } -if test "${ac_cv_lib_nsl_t_open+set}" = set; then : +if ${ac_cv_lib_nsl_t_open+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -8009,13 +8064,13 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_t_open" >&5 $as_echo "$ac_cv_lib_nsl_t_open" >&6; } -if test "x$ac_cv_lib_nsl_t_open" = x""yes; then : +if test "x$ac_cv_lib_nsl_t_open" = xyes; then : LIBS="-lnsl $LIBS" fi # SVR4 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for socket in -lsocket" >&5 $as_echo_n "checking for socket in -lsocket... " >&6; } -if test "${ac_cv_lib_socket_socket+set}" = set; then : +if ${ac_cv_lib_socket_socket+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -8049,7 +8104,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_socket" >&5 $as_echo "$ac_cv_lib_socket_socket" >&6; } -if test "x$ac_cv_lib_socket_socket" = x""yes; then : +if test "x$ac_cv_lib_socket_socket" = xyes; then : LIBS="-lsocket $LIBS" fi # SVR4 sockets @@ -8075,7 +8130,7 @@ set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : +if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in @@ -8118,7 +8173,7 @@ set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then : +if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in @@ -8229,12 +8284,12 @@ withval=$with_dbmliborder; if test x$with_dbmliborder = xyes then -as_fn_error "proper usage is --with-dbmliborder=db1:db2:..." "$LINENO" 5 +as_fn_error $? "proper usage is --with-dbmliborder=db1:db2:..." "$LINENO" 5 else for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb then - as_fn_error "proper usage is --with-dbmliborder=db1:db2:..." "$LINENO" 5 + as_fn_error $? "proper usage is --with-dbmliborder=db1:db2:..." "$LINENO" 5 fi done fi @@ -8400,7 +8455,7 @@ $as_echo "#define _REENTRANT 1" >>confdefs.h ac_fn_c_check_header_mongrel "$LINENO" "cthreads.h" "ac_cv_header_cthreads_h" "$ac_includes_default" -if test "x$ac_cv_header_cthreads_h" = x""yes; then : +if test "x$ac_cv_header_cthreads_h" = xyes; then : $as_echo "#define WITH_THREAD 1" >>confdefs.h $as_echo "#define C_THREADS 1" >>confdefs.h @@ -8413,7 +8468,7 @@ else ac_fn_c_check_header_mongrel "$LINENO" "mach/cthreads.h" "ac_cv_header_mach_cthreads_h" "$ac_includes_default" -if test "x$ac_cv_header_mach_cthreads_h" = x""yes; then : +if test "x$ac_cv_header_mach_cthreads_h" = xyes; then : $as_echo "#define WITH_THREAD 1" >>confdefs.h $as_echo "#define C_THREADS 1" >>confdefs.h @@ -8457,7 +8512,7 @@ LIBS=$_libs ac_fn_c_check_func "$LINENO" "pthread_detach" "ac_cv_func_pthread_detach" -if test "x$ac_cv_func_pthread_detach" = x""yes; then : +if test "x$ac_cv_func_pthread_detach" = xyes; then : $as_echo "#define WITH_THREAD 1" >>confdefs.h posix_threads=yes @@ -8466,7 +8521,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lpthreads" >&5 $as_echo_n "checking for pthread_create in -lpthreads... " >&6; } -if test "${ac_cv_lib_pthreads_pthread_create+set}" = set; then : +if ${ac_cv_lib_pthreads_pthread_create+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -8500,7 +8555,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthreads_pthread_create" >&5 $as_echo "$ac_cv_lib_pthreads_pthread_create" >&6; } -if test "x$ac_cv_lib_pthreads_pthread_create" = x""yes; then : +if test "x$ac_cv_lib_pthreads_pthread_create" = xyes; then : $as_echo "#define WITH_THREAD 1" >>confdefs.h posix_threads=yes @@ -8510,7 +8565,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lc_r" >&5 $as_echo_n "checking for pthread_create in -lc_r... " >&6; } -if test "${ac_cv_lib_c_r_pthread_create+set}" = set; then : +if ${ac_cv_lib_c_r_pthread_create+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -8544,7 +8599,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_r_pthread_create" >&5 $as_echo "$ac_cv_lib_c_r_pthread_create" >&6; } -if test "x$ac_cv_lib_c_r_pthread_create" = x""yes; then : +if test "x$ac_cv_lib_c_r_pthread_create" = xyes; then : $as_echo "#define WITH_THREAD 1" >>confdefs.h posix_threads=yes @@ -8554,7 +8609,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __pthread_create_system in -lpthread" >&5 $as_echo_n "checking for __pthread_create_system in -lpthread... " >&6; } -if test "${ac_cv_lib_pthread___pthread_create_system+set}" = set; then : +if ${ac_cv_lib_pthread___pthread_create_system+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -8588,7 +8643,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread___pthread_create_system" >&5 $as_echo "$ac_cv_lib_pthread___pthread_create_system" >&6; } -if test "x$ac_cv_lib_pthread___pthread_create_system" = x""yes; then : +if test "x$ac_cv_lib_pthread___pthread_create_system" = xyes; then : $as_echo "#define WITH_THREAD 1" >>confdefs.h posix_threads=yes @@ -8598,7 +8653,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lcma" >&5 $as_echo_n "checking for pthread_create in -lcma... " >&6; } -if test "${ac_cv_lib_cma_pthread_create+set}" = set; then : +if ${ac_cv_lib_cma_pthread_create+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -8632,7 +8687,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_cma_pthread_create" >&5 $as_echo "$ac_cv_lib_cma_pthread_create" >&6; } -if test "x$ac_cv_lib_cma_pthread_create" = x""yes; then : +if test "x$ac_cv_lib_cma_pthread_create" = xyes; then : $as_echo "#define WITH_THREAD 1" >>confdefs.h posix_threads=yes @@ -8664,7 +8719,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for usconfig in -lmpc" >&5 $as_echo_n "checking for usconfig in -lmpc... " >&6; } -if test "${ac_cv_lib_mpc_usconfig+set}" = set; then : +if ${ac_cv_lib_mpc_usconfig+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -8698,7 +8753,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mpc_usconfig" >&5 $as_echo "$ac_cv_lib_mpc_usconfig" >&6; } -if test "x$ac_cv_lib_mpc_usconfig" = x""yes; then : +if test "x$ac_cv_lib_mpc_usconfig" = xyes; then : $as_echo "#define WITH_THREAD 1" >>confdefs.h LIBS="$LIBS -lmpc" @@ -8710,7 +8765,7 @@ if test "$posix_threads" != "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for thr_create in -lthread" >&5 $as_echo_n "checking for thr_create in -lthread... " >&6; } -if test "${ac_cv_lib_thread_thr_create+set}" = set; then : +if ${ac_cv_lib_thread_thr_create+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -8744,7 +8799,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_thread_thr_create" >&5 $as_echo "$ac_cv_lib_thread_thr_create" >&6; } -if test "x$ac_cv_lib_thread_thr_create" = x""yes; then : +if test "x$ac_cv_lib_thread_thr_create" = xyes; then : $as_echo "#define WITH_THREAD 1" >>confdefs.h LIBS="$LIBS -lthread" @@ -8793,7 +8848,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if PTHREAD_SCOPE_SYSTEM is supported" >&5 $as_echo_n "checking if PTHREAD_SCOPE_SYSTEM is supported... " >&6; } - if test "${ac_cv_pthread_system_supported+set}" = set; then : + if ${ac_cv_pthread_system_supported+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -8836,7 +8891,7 @@ for ac_func in pthread_sigmask do : ac_fn_c_check_func "$LINENO" "pthread_sigmask" "ac_cv_func_pthread_sigmask" -if test "x$ac_cv_func_pthread_sigmask" = x""yes; then : +if test "x$ac_cv_func_pthread_sigmask" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_PTHREAD_SIGMASK 1 _ACEOF @@ -9228,12 +9283,12 @@ $as_echo "$with_valgrind" >&6; } if test "$with_valgrind" != no; then ac_fn_c_check_header_mongrel "$LINENO" "valgrind/valgrind.h" "ac_cv_header_valgrind_valgrind_h" "$ac_includes_default" -if test "x$ac_cv_header_valgrind_valgrind_h" = x""yes; then : +if test "x$ac_cv_header_valgrind_valgrind_h" = xyes; then : $as_echo "#define WITH_VALGRIND 1" >>confdefs.h else - as_fn_error "Valgrind support requested but headers not available" "$LINENO" 5 + as_fn_error $? "Valgrind support requested but headers not available" "$LINENO" 5 fi @@ -9250,7 +9305,7 @@ for ac_func in dlopen do : ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" -if test "x$ac_cv_func_dlopen" = x""yes; then : +if test "x$ac_cv_func_dlopen" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DLOPEN 1 _ACEOF @@ -9328,8 +9383,7 @@ do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -eval as_val=\$$as_ac_var - if test "x$as_val" = x""yes; then : +if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -9579,7 +9633,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for flock declaration" >&5 $as_echo_n "checking for flock declaration... " >&6; } -if test "${ac_cv_flock_decl+set}" = set; then : +if ${ac_cv_flock_decl+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -9609,7 +9663,7 @@ for ac_func in flock do : ac_fn_c_check_func "$LINENO" "flock" "ac_cv_func_flock" -if test "x$ac_cv_func_flock" = x""yes; then : +if test "x$ac_cv_func_flock" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_FLOCK 1 _ACEOF @@ -9617,7 +9671,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for flock in -lbsd" >&5 $as_echo_n "checking for flock in -lbsd... " >&6; } -if test "${ac_cv_lib_bsd_flock+set}" = set; then : +if ${ac_cv_lib_bsd_flock+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -9651,7 +9705,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_flock" >&5 $as_echo "$ac_cv_lib_bsd_flock" >&6; } -if test "x$ac_cv_lib_bsd_flock" = x""yes; then : +if test "x$ac_cv_lib_bsd_flock" = xyes; then : $as_echo "#define HAVE_FLOCK 1" >>confdefs.h @@ -9700,7 +9754,7 @@ set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_TRUE+set}" = set; then : +if ${ac_cv_prog_TRUE+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$TRUE"; then @@ -9740,7 +9794,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inet_aton in -lc" >&5 $as_echo_n "checking for inet_aton in -lc... " >&6; } -if test "${ac_cv_lib_c_inet_aton+set}" = set; then : +if ${ac_cv_lib_c_inet_aton+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -9774,12 +9828,12 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_inet_aton" >&5 $as_echo "$ac_cv_lib_c_inet_aton" >&6; } -if test "x$ac_cv_lib_c_inet_aton" = x""yes; then : +if test "x$ac_cv_lib_c_inet_aton" = xyes; then : $ac_cv_prog_TRUE else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inet_aton in -lresolv" >&5 $as_echo_n "checking for inet_aton in -lresolv... " >&6; } -if test "${ac_cv_lib_resolv_inet_aton+set}" = set; then : +if ${ac_cv_lib_resolv_inet_aton+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -9813,7 +9867,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_inet_aton" >&5 $as_echo "$ac_cv_lib_resolv_inet_aton" >&6; } -if test "x$ac_cv_lib_resolv_inet_aton" = x""yes; then : +if test "x$ac_cv_lib_resolv_inet_aton" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBRESOLV 1 _ACEOF @@ -9830,7 +9884,7 @@ # exit Python { $as_echo "$as_me:${as_lineno-$LINENO}: checking for chflags" >&5 $as_echo_n "checking for chflags... " >&6; } -if test "${ac_cv_have_chflags+set}" = set; then : +if ${ac_cv_have_chflags+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -9864,7 +9918,7 @@ $as_echo "$ac_cv_have_chflags" >&6; } if test "$ac_cv_have_chflags" = cross ; then ac_fn_c_check_func "$LINENO" "chflags" "ac_cv_func_chflags" -if test "x$ac_cv_func_chflags" = x""yes; then : +if test "x$ac_cv_func_chflags" = xyes; then : ac_cv_have_chflags="yes" else ac_cv_have_chflags="no" @@ -9879,7 +9933,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for lchflags" >&5 $as_echo_n "checking for lchflags... " >&6; } -if test "${ac_cv_have_lchflags+set}" = set; then : +if ${ac_cv_have_lchflags+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -9913,7 +9967,7 @@ $as_echo "$ac_cv_have_lchflags" >&6; } if test "$ac_cv_have_lchflags" = cross ; then ac_fn_c_check_func "$LINENO" "lchflags" "ac_cv_func_lchflags" -if test "x$ac_cv_func_lchflags" = x""yes; then : +if test "x$ac_cv_func_lchflags" = xyes; then : ac_cv_have_lchflags="yes" else ac_cv_have_lchflags="no" @@ -9937,7 +9991,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inflateCopy in -lz" >&5 $as_echo_n "checking for inflateCopy in -lz... " >&6; } -if test "${ac_cv_lib_z_inflateCopy+set}" = set; then : +if ${ac_cv_lib_z_inflateCopy+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -9971,7 +10025,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_inflateCopy" >&5 $as_echo "$ac_cv_lib_z_inflateCopy" >&6; } -if test "x$ac_cv_lib_z_inflateCopy" = x""yes; then : +if test "x$ac_cv_lib_z_inflateCopy" = xyes; then : $as_echo "#define HAVE_ZLIB_COPY 1" >>confdefs.h @@ -10114,7 +10168,7 @@ for ac_func in openpty do : ac_fn_c_check_func "$LINENO" "openpty" "ac_cv_func_openpty" -if test "x$ac_cv_func_openpty" = x""yes; then : +if test "x$ac_cv_func_openpty" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_OPENPTY 1 _ACEOF @@ -10122,7 +10176,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for openpty in -lutil" >&5 $as_echo_n "checking for openpty in -lutil... " >&6; } -if test "${ac_cv_lib_util_openpty+set}" = set; then : +if ${ac_cv_lib_util_openpty+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -10156,13 +10210,13 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_util_openpty" >&5 $as_echo "$ac_cv_lib_util_openpty" >&6; } -if test "x$ac_cv_lib_util_openpty" = x""yes; then : +if test "x$ac_cv_lib_util_openpty" = xyes; then : $as_echo "#define HAVE_OPENPTY 1" >>confdefs.h LIBS="$LIBS -lutil" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for openpty in -lbsd" >&5 $as_echo_n "checking for openpty in -lbsd... " >&6; } -if test "${ac_cv_lib_bsd_openpty+set}" = set; then : +if ${ac_cv_lib_bsd_openpty+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -10196,7 +10250,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_openpty" >&5 $as_echo "$ac_cv_lib_bsd_openpty" >&6; } -if test "x$ac_cv_lib_bsd_openpty" = x""yes; then : +if test "x$ac_cv_lib_bsd_openpty" = xyes; then : $as_echo "#define HAVE_OPENPTY 1" >>confdefs.h LIBS="$LIBS -lbsd" fi @@ -10211,7 +10265,7 @@ for ac_func in forkpty do : ac_fn_c_check_func "$LINENO" "forkpty" "ac_cv_func_forkpty" -if test "x$ac_cv_func_forkpty" = x""yes; then : +if test "x$ac_cv_func_forkpty" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_FORKPTY 1 _ACEOF @@ -10219,7 +10273,7 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for forkpty in -lutil" >&5 $as_echo_n "checking for forkpty in -lutil... " >&6; } -if test "${ac_cv_lib_util_forkpty+set}" = set; then : +if ${ac_cv_lib_util_forkpty+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -10253,13 +10307,13 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_util_forkpty" >&5 $as_echo "$ac_cv_lib_util_forkpty" >&6; } -if test "x$ac_cv_lib_util_forkpty" = x""yes; then : +if test "x$ac_cv_lib_util_forkpty" = xyes; then : $as_echo "#define HAVE_FORKPTY 1" >>confdefs.h LIBS="$LIBS -lutil" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for forkpty in -lbsd" >&5 $as_echo_n "checking for forkpty in -lbsd... " >&6; } -if test "${ac_cv_lib_bsd_forkpty+set}" = set; then : +if ${ac_cv_lib_bsd_forkpty+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -10293,7 +10347,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_forkpty" >&5 $as_echo "$ac_cv_lib_bsd_forkpty" >&6; } -if test "x$ac_cv_lib_bsd_forkpty" = x""yes; then : +if test "x$ac_cv_lib_bsd_forkpty" = xyes; then : $as_echo "#define HAVE_FORKPTY 1" >>confdefs.h LIBS="$LIBS -lbsd" fi @@ -10310,7 +10364,7 @@ for ac_func in memmove do : ac_fn_c_check_func "$LINENO" "memmove" "ac_cv_func_memmove" -if test "x$ac_cv_func_memmove" = x""yes; then : +if test "x$ac_cv_func_memmove" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_MEMMOVE 1 _ACEOF @@ -10324,8 +10378,7 @@ do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -eval as_val=\$$as_ac_var - if test "x$as_val" = x""yes; then : +if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -10334,31 +10387,50 @@ done -for ac_func in dup2 getcwd strdup -do : - as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -eval as_val=\$$as_ac_var - if test "x$as_val" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_func "$LINENO" "dup2" "ac_cv_func_dup2" +if test "x$ac_cv_func_dup2" = xyes; then : + $as_echo "#define HAVE_DUP2 1" >>confdefs.h else case " $LIBOBJS " in - *" $ac_func.$ac_objext "* ) ;; - *) LIBOBJS="$LIBOBJS $ac_func.$ac_objext" + *" dup2.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS dup2.$ac_objext" ;; esac fi -done + +ac_fn_c_check_func "$LINENO" "getcwd" "ac_cv_func_getcwd" +if test "x$ac_cv_func_getcwd" = xyes; then : + $as_echo "#define HAVE_GETCWD 1" >>confdefs.h + +else + case " $LIBOBJS " in + *" getcwd.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS getcwd.$ac_objext" + ;; +esac + +fi + +ac_fn_c_check_func "$LINENO" "strdup" "ac_cv_func_strdup" +if test "x$ac_cv_func_strdup" = xyes; then : + $as_echo "#define HAVE_STRDUP 1" >>confdefs.h + +else + case " $LIBOBJS " in + *" strdup.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS strdup.$ac_objext" + ;; +esac + +fi for ac_func in getpgrp do : ac_fn_c_check_func "$LINENO" "getpgrp" "ac_cv_func_getpgrp" -if test "x$ac_cv_func_getpgrp" = x""yes; then : +if test "x$ac_cv_func_getpgrp" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_GETPGRP 1 _ACEOF @@ -10386,7 +10458,7 @@ for ac_func in setpgrp do : ac_fn_c_check_func "$LINENO" "setpgrp" "ac_cv_func_setpgrp" -if test "x$ac_cv_func_setpgrp" = x""yes; then : +if test "x$ac_cv_func_setpgrp" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_SETPGRP 1 _ACEOF @@ -10414,7 +10486,7 @@ for ac_func in gettimeofday do : ac_fn_c_check_func "$LINENO" "gettimeofday" "ac_cv_func_gettimeofday" -if test "x$ac_cv_func_gettimeofday" = x""yes; then : +if test "x$ac_cv_func_gettimeofday" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_GETTIMEOFDAY 1 _ACEOF @@ -10516,7 +10588,7 @@ then { $as_echo "$as_me:${as_lineno-$LINENO}: checking getaddrinfo bug" >&5 $as_echo_n "checking getaddrinfo bug... " >&6; } - if test "${ac_cv_buggy_getaddrinfo+set}" = set; then : + if ${ac_cv_buggy_getaddrinfo+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -10645,7 +10717,7 @@ for ac_func in getnameinfo do : ac_fn_c_check_func "$LINENO" "getnameinfo" "ac_cv_func_getnameinfo" -if test "x$ac_cv_func_getnameinfo" = x""yes; then : +if test "x$ac_cv_func_getnameinfo" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_GETNAMEINFO 1 _ACEOF @@ -10657,7 +10729,7 @@ # checks for structures { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5 $as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; } -if test "${ac_cv_header_time+set}" = set; then : +if ${ac_cv_header_time+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -10692,7 +10764,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether struct tm is in sys/time.h or time.h" >&5 $as_echo_n "checking whether struct tm is in sys/time.h or time.h... " >&6; } -if test "${ac_cv_struct_tm+set}" = set; then : +if ${ac_cv_struct_tm+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -10729,7 +10801,7 @@ #include <$ac_cv_struct_tm> " -if test "x$ac_cv_member_struct_tm_tm_zone" = x""yes; then : +if test "x$ac_cv_member_struct_tm_tm_zone" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_TM_TM_ZONE 1 @@ -10745,7 +10817,7 @@ else ac_fn_c_check_decl "$LINENO" "tzname" "ac_cv_have_decl_tzname" "#include " -if test "x$ac_cv_have_decl_tzname" = x""yes; then : +if test "x$ac_cv_have_decl_tzname" = xyes; then : ac_have_decl=1 else ac_have_decl=0 @@ -10757,7 +10829,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tzname" >&5 $as_echo_n "checking for tzname... " >&6; } -if test "${ac_cv_var_tzname+set}" = set; then : +if ${ac_cv_var_tzname+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -10793,7 +10865,7 @@ fi ac_fn_c_check_member "$LINENO" "struct stat" "st_rdev" "ac_cv_member_struct_stat_st_rdev" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_rdev" = x""yes; then : +if test "x$ac_cv_member_struct_stat_st_rdev" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_STAT_ST_RDEV 1 @@ -10803,7 +10875,7 @@ fi ac_fn_c_check_member "$LINENO" "struct stat" "st_blksize" "ac_cv_member_struct_stat_st_blksize" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_blksize" = x""yes; then : +if test "x$ac_cv_member_struct_stat_st_blksize" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 @@ -10813,7 +10885,7 @@ fi ac_fn_c_check_member "$LINENO" "struct stat" "st_flags" "ac_cv_member_struct_stat_st_flags" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_flags" = x""yes; then : +if test "x$ac_cv_member_struct_stat_st_flags" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_STAT_ST_FLAGS 1 @@ -10823,7 +10895,7 @@ fi ac_fn_c_check_member "$LINENO" "struct stat" "st_gen" "ac_cv_member_struct_stat_st_gen" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_gen" = x""yes; then : +if test "x$ac_cv_member_struct_stat_st_gen" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_STAT_ST_GEN 1 @@ -10833,7 +10905,7 @@ fi ac_fn_c_check_member "$LINENO" "struct stat" "st_birthtime" "ac_cv_member_struct_stat_st_birthtime" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_birthtime" = x""yes; then : +if test "x$ac_cv_member_struct_stat_st_birthtime" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_STAT_ST_BIRTHTIME 1 @@ -10843,7 +10915,7 @@ fi ac_fn_c_check_member "$LINENO" "struct stat" "st_blocks" "ac_cv_member_struct_stat_st_blocks" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_blocks" = x""yes; then : +if test "x$ac_cv_member_struct_stat_st_blocks" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_STAT_ST_BLOCKS 1 @@ -10865,7 +10937,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for time.h that defines altzone" >&5 $as_echo_n "checking for time.h that defines altzone... " >&6; } -if test "${ac_cv_header_time_altzone+set}" = set; then : +if ${ac_cv_header_time_altzone+:} false; then : $as_echo_n "(cached) " >&6 else @@ -10929,7 +11001,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for addrinfo" >&5 $as_echo_n "checking for addrinfo... " >&6; } -if test "${ac_cv_struct_addrinfo+set}" = set; then : +if ${ac_cv_struct_addrinfo+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -10961,7 +11033,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sockaddr_storage" >&5 $as_echo_n "checking for sockaddr_storage... " >&6; } -if test "${ac_cv_struct_sockaddr_storage+set}" = set; then : +if ${ac_cv_struct_sockaddr_storage+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -10997,7 +11069,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether char is unsigned" >&5 $as_echo_n "checking whether char is unsigned... " >&6; } -if test "${ac_cv_c_char_unsigned+set}" = set; then : +if ${ac_cv_c_char_unsigned+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11029,7 +11101,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 $as_echo_n "checking for an ANSI C-conforming const... " >&6; } -if test "${ac_cv_c_const+set}" = set; then : +if ${ac_cv_c_const+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11317,7 +11389,7 @@ ac_fn_c_check_func "$LINENO" "gethostbyname_r" "ac_cv_func_gethostbyname_r" -if test "x$ac_cv_func_gethostbyname_r" = x""yes; then : +if test "x$ac_cv_func_gethostbyname_r" = xyes; then : $as_echo "#define HAVE_GETHOSTBYNAME_R 1" >>confdefs.h @@ -11448,7 +11520,7 @@ for ac_func in gethostbyname do : ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname" -if test "x$ac_cv_func_gethostbyname" = x""yes; then : +if test "x$ac_cv_func_gethostbyname" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_GETHOSTBYNAME 1 _ACEOF @@ -11470,12 +11542,12 @@ # Linux requires this for correct f.p. operations ac_fn_c_check_func "$LINENO" "__fpu_control" "ac_cv_func___fpu_control" -if test "x$ac_cv_func___fpu_control" = x""yes; then : +if test "x$ac_cv_func___fpu_control" = xyes; then : else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __fpu_control in -lieee" >&5 $as_echo_n "checking for __fpu_control in -lieee... " >&6; } -if test "${ac_cv_lib_ieee___fpu_control+set}" = set; then : +if ${ac_cv_lib_ieee___fpu_control+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -11509,7 +11581,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ieee___fpu_control" >&5 $as_echo "$ac_cv_lib_ieee___fpu_control" >&6; } -if test "x$ac_cv_lib_ieee___fpu_control" = x""yes; then : +if test "x$ac_cv_lib_ieee___fpu_control" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBIEEE 1 _ACEOF @@ -11565,7 +11637,7 @@ then LIBM=$withval { $as_echo "$as_me:${as_lineno-$LINENO}: result: set LIBM=\"$withval\"" >&5 $as_echo "set LIBM=\"$withval\"" >&6; } -else as_fn_error "proper usage is --with-libm=STRING" "$LINENO" 5 +else as_fn_error $? "proper usage is --with-libm=STRING" "$LINENO" 5 fi else { $as_echo "$as_me:${as_lineno-$LINENO}: result: default LIBM=\"$LIBM\"" >&5 @@ -11589,7 +11661,7 @@ then LIBC=$withval { $as_echo "$as_me:${as_lineno-$LINENO}: result: set LIBC=\"$withval\"" >&5 $as_echo "set LIBC=\"$withval\"" >&6; } -else as_fn_error "proper usage is --with-libc=STRING" "$LINENO" 5 +else as_fn_error $? "proper usage is --with-libc=STRING" "$LINENO" 5 fi else { $as_echo "$as_me:${as_lineno-$LINENO}: result: default LIBC=\"$LIBC\"" >&5 @@ -11603,7 +11675,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C doubles are little-endian IEEE 754 binary64" >&5 $as_echo_n "checking whether C doubles are little-endian IEEE 754 binary64... " >&6; } -if test "${ac_cv_little_endian_double+set}" = set; then : +if ${ac_cv_little_endian_double+:} false; then : $as_echo_n "(cached) " >&6 else @@ -11645,7 +11717,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C doubles are big-endian IEEE 754 binary64" >&5 $as_echo_n "checking whether C doubles are big-endian IEEE 754 binary64... " >&6; } -if test "${ac_cv_big_endian_double+set}" = set; then : +if ${ac_cv_big_endian_double+:} false; then : $as_echo_n "(cached) " >&6 else @@ -11691,7 +11763,7 @@ # conversions work. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C doubles are ARM mixed-endian IEEE 754 binary64" >&5 $as_echo_n "checking whether C doubles are ARM mixed-endian IEEE 754 binary64... " >&6; } -if test "${ac_cv_mixed_endian_double+set}" = set; then : +if ${ac_cv_mixed_endian_double+:} false; then : $as_echo_n "(cached) " >&6 else @@ -11839,8 +11911,7 @@ do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -eval as_val=\$$as_ac_var - if test "x$as_val" = x""yes; then : +if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -11852,8 +11923,7 @@ do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -eval as_val=\$$as_ac_var - if test "x$as_val" = x""yes; then : +if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF @@ -11863,7 +11933,7 @@ ac_fn_c_check_decl "$LINENO" "isinf" "ac_cv_have_decl_isinf" "#include " -if test "x$ac_cv_have_decl_isinf" = x""yes; then : +if test "x$ac_cv_have_decl_isinf" = xyes; then : ac_have_decl=1 else ac_have_decl=0 @@ -11874,7 +11944,7 @@ _ACEOF ac_fn_c_check_decl "$LINENO" "isnan" "ac_cv_have_decl_isnan" "#include " -if test "x$ac_cv_have_decl_isnan" = x""yes; then : +if test "x$ac_cv_have_decl_isnan" = xyes; then : ac_have_decl=1 else ac_have_decl=0 @@ -11885,7 +11955,7 @@ _ACEOF ac_fn_c_check_decl "$LINENO" "isfinite" "ac_cv_have_decl_isfinite" "#include " -if test "x$ac_cv_have_decl_isfinite" = x""yes; then : +if test "x$ac_cv_have_decl_isfinite" = xyes; then : ac_have_decl=1 else ac_have_decl=0 @@ -11900,7 +11970,7 @@ # -0. on some architectures. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether tanh preserves the sign of zero" >&5 $as_echo_n "checking whether tanh preserves the sign of zero... " >&6; } -if test "${ac_cv_tanh_preserves_zero_sign+set}" = set; then : +if ${ac_cv_tanh_preserves_zero_sign+:} false; then : $as_echo_n "(cached) " >&6 else @@ -11948,7 +12018,7 @@ # -0. See issue #9920. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether log1p drops the sign of negative zero" >&5 $as_echo_n "checking whether log1p drops the sign of negative zero... " >&6; } - if test "${ac_cv_log1p_drops_zero_sign+set}" = set; then : + if ${ac_cv_log1p_drops_zero_sign+:} false; then : $as_echo_n "(cached) " >&6 else @@ -12000,7 +12070,7 @@ # sem_open results in a 'Signal 12' error. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether POSIX semaphores are enabled" >&5 $as_echo_n "checking whether POSIX semaphores are enabled... " >&6; } -if test "${ac_cv_posix_semaphores_enabled+set}" = set; then : +if ${ac_cv_posix_semaphores_enabled+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -12051,7 +12121,7 @@ # Multiprocessing check for broken sem_getvalue { $as_echo "$as_me:${as_lineno-$LINENO}: checking for broken sem_getvalue" >&5 $as_echo_n "checking for broken sem_getvalue... " >&6; } -if test "${ac_cv_broken_sem_getvalue+set}" = set; then : +if ${ac_cv_broken_sem_getvalue+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -12116,7 +12186,7 @@ 15|30) ;; *) - as_fn_error "bad value $enable_big_digits for --enable-big-digits; value should be 15 or 30" "$LINENO" 5 ;; + as_fn_error $? "bad value $enable_big_digits for --enable-big-digits; value should be 15 or 30" "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_big_digits" >&5 $as_echo "$enable_big_digits" >&6; } @@ -12134,7 +12204,7 @@ # check for wchar.h ac_fn_c_check_header_mongrel "$LINENO" "wchar.h" "ac_cv_header_wchar_h" "$ac_includes_default" -if test "x$ac_cv_header_wchar_h" = x""yes; then : +if test "x$ac_cv_header_wchar_h" = xyes; then : $as_echo "#define HAVE_WCHAR_H 1" >>confdefs.h @@ -12157,7 +12227,7 @@ # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of wchar_t" >&5 $as_echo_n "checking size of wchar_t... " >&6; } -if test "${ac_cv_sizeof_wchar_t+set}" = set; then : +if ${ac_cv_sizeof_wchar_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (wchar_t))" "ac_cv_sizeof_wchar_t" "#include @@ -12167,9 +12237,8 @@ if test "$ac_cv_type_wchar_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ as_fn_set_status 77 -as_fn_error "cannot compute sizeof (wchar_t) -See \`config.log' for more details." "$LINENO" 5; }; } +as_fn_error 77 "cannot compute sizeof (wchar_t) +See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_wchar_t=0 fi @@ -12224,7 +12293,7 @@ # check whether wchar_t is signed or not { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether wchar_t is signed" >&5 $as_echo_n "checking whether wchar_t is signed... " >&6; } - if test "${ac_cv_wchar_t_signed+set}" = set; then : + if ${ac_cv_wchar_t_signed+:} false; then : $as_echo_n "(cached) " >&6 else @@ -12320,7 +12389,7 @@ # check for endianness { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 $as_echo_n "checking whether byte ordering is bigendian... " >&6; } -if test "${ac_cv_c_bigendian+set}" = set; then : +if ${ac_cv_c_bigendian+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_c_bigendian=unknown @@ -12538,7 +12607,7 @@ ;; #( *) - as_fn_error "unknown endianness + as_fn_error $? "unknown endianness presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;; esac @@ -12611,7 +12680,7 @@ # or fills with zeros (like the Cray J90, according to Tim Peters). { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether right shift extends the sign bit" >&5 $as_echo_n "checking whether right shift extends the sign bit... " >&6; } -if test "${ac_cv_rshift_extends_sign+set}" = set; then : +if ${ac_cv_rshift_extends_sign+:} false; then : $as_echo_n "(cached) " >&6 else @@ -12650,7 +12719,7 @@ # check for getc_unlocked and related locking functions { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getc_unlocked() and friends" >&5 $as_echo_n "checking for getc_unlocked() and friends... " >&6; } -if test "${ac_cv_have_getc_unlocked+set}" = set; then : +if ${ac_cv_have_getc_unlocked+:} false; then : $as_echo_n "(cached) " >&6 else @@ -12748,7 +12817,7 @@ # check for readline 2.1 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rl_callback_handler_install in -lreadline" >&5 $as_echo_n "checking for rl_callback_handler_install in -lreadline... " >&6; } -if test "${ac_cv_lib_readline_rl_callback_handler_install+set}" = set; then : +if ${ac_cv_lib_readline_rl_callback_handler_install+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -12782,7 +12851,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_rl_callback_handler_install" >&5 $as_echo "$ac_cv_lib_readline_rl_callback_handler_install" >&6; } -if test "x$ac_cv_lib_readline_rl_callback_handler_install" = x""yes; then : +if test "x$ac_cv_lib_readline_rl_callback_handler_install" = xyes; then : $as_echo "#define HAVE_RL_CALLBACK 1" >>confdefs.h @@ -12800,7 +12869,7 @@ have_readline=no fi -rm -f conftest.err conftest.$ac_ext +rm -f conftest.err conftest.i conftest.$ac_ext if test $have_readline = yes then cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12834,7 +12903,7 @@ # check for readline 4.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rl_pre_input_hook in -lreadline" >&5 $as_echo_n "checking for rl_pre_input_hook in -lreadline... " >&6; } -if test "${ac_cv_lib_readline_rl_pre_input_hook+set}" = set; then : +if ${ac_cv_lib_readline_rl_pre_input_hook+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -12868,7 +12937,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_rl_pre_input_hook" >&5 $as_echo "$ac_cv_lib_readline_rl_pre_input_hook" >&6; } -if test "x$ac_cv_lib_readline_rl_pre_input_hook" = x""yes; then : +if test "x$ac_cv_lib_readline_rl_pre_input_hook" = xyes; then : $as_echo "#define HAVE_RL_PRE_INPUT_HOOK 1" >>confdefs.h @@ -12878,7 +12947,7 @@ # also in 4.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rl_completion_display_matches_hook in -lreadline" >&5 $as_echo_n "checking for rl_completion_display_matches_hook in -lreadline... " >&6; } -if test "${ac_cv_lib_readline_rl_completion_display_matches_hook+set}" = set; then : +if ${ac_cv_lib_readline_rl_completion_display_matches_hook+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -12912,7 +12981,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_rl_completion_display_matches_hook" >&5 $as_echo "$ac_cv_lib_readline_rl_completion_display_matches_hook" >&6; } -if test "x$ac_cv_lib_readline_rl_completion_display_matches_hook" = x""yes; then : +if test "x$ac_cv_lib_readline_rl_completion_display_matches_hook" = xyes; then : $as_echo "#define HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK 1" >>confdefs.h @@ -12922,7 +12991,7 @@ # check for readline 4.2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rl_completion_matches in -lreadline" >&5 $as_echo_n "checking for rl_completion_matches in -lreadline... " >&6; } -if test "${ac_cv_lib_readline_rl_completion_matches+set}" = set; then : +if ${ac_cv_lib_readline_rl_completion_matches+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -12956,7 +13025,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_rl_completion_matches" >&5 $as_echo "$ac_cv_lib_readline_rl_completion_matches" >&6; } -if test "x$ac_cv_lib_readline_rl_completion_matches" = x""yes; then : +if test "x$ac_cv_lib_readline_rl_completion_matches" = xyes; then : $as_echo "#define HAVE_RL_COMPLETION_MATCHES 1" >>confdefs.h @@ -12974,7 +13043,7 @@ have_readline=no fi -rm -f conftest.err conftest.$ac_ext +rm -f conftest.err conftest.i conftest.$ac_ext if test $have_readline = yes then cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12997,7 +13066,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for broken nice()" >&5 $as_echo_n "checking for broken nice()... " >&6; } -if test "${ac_cv_broken_nice+set}" = set; then : +if ${ac_cv_broken_nice+:} false; then : $as_echo_n "(cached) " >&6 else @@ -13038,7 +13107,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for broken poll()" >&5 $as_echo_n "checking for broken poll()... " >&6; } -if test "${ac_cv_broken_poll+set}" = set; then : +if ${ac_cv_broken_poll+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -13093,7 +13162,7 @@ #include <$ac_cv_struct_tm> " -if test "x$ac_cv_member_struct_tm_tm_zone" = x""yes; then : +if test "x$ac_cv_member_struct_tm_tm_zone" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_TM_TM_ZONE 1 @@ -13109,7 +13178,7 @@ else ac_fn_c_check_decl "$LINENO" "tzname" "ac_cv_have_decl_tzname" "#include " -if test "x$ac_cv_have_decl_tzname" = x""yes; then : +if test "x$ac_cv_have_decl_tzname" = xyes; then : ac_have_decl=1 else ac_have_decl=0 @@ -13121,7 +13190,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tzname" >&5 $as_echo_n "checking for tzname... " >&6; } -if test "${ac_cv_var_tzname+set}" = set; then : +if ${ac_cv_var_tzname+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13160,7 +13229,7 @@ # check tzset(3) exists and works like we expect it to { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working tzset()" >&5 $as_echo_n "checking for working tzset()... " >&6; } -if test "${ac_cv_working_tzset+set}" = set; then : +if ${ac_cv_working_tzset+:} false; then : $as_echo_n "(cached) " >&6 else @@ -13257,7 +13326,7 @@ # Look for subsecond timestamps in struct stat { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tv_nsec in struct stat" >&5 $as_echo_n "checking for tv_nsec in struct stat... " >&6; } -if test "${ac_cv_stat_tv_nsec+set}" = set; then : +if ${ac_cv_stat_tv_nsec+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13294,7 +13363,7 @@ # Look for BSD style subsecond timestamps in struct stat { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tv_nsec2 in struct stat" >&5 $as_echo_n "checking for tv_nsec2 in struct stat... " >&6; } -if test "${ac_cv_stat_tv_nsec2+set}" = set; then : +if ${ac_cv_stat_tv_nsec2+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13331,7 +13400,7 @@ # On HP/UX 11.0, mvwdelch is a block with a return statement { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mvwdelch is an expression" >&5 $as_echo_n "checking whether mvwdelch is an expression... " >&6; } -if test "${ac_cv_mvwdelch_is_expression+set}" = set; then : +if ${ac_cv_mvwdelch_is_expression+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13368,7 +13437,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether WINDOW has _flags" >&5 $as_echo_n "checking whether WINDOW has _flags... " >&6; } -if test "${ac_cv_window_has_flags+set}" = set; then : +if ${ac_cv_window_has_flags+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13516,7 +13585,7 @@ then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for %lld and %llu printf() format support" >&5 $as_echo_n "checking for %lld and %llu printf() format support... " >&6; } - if test "${ac_cv_have_long_long_format+set}" = set; then : + if ${ac_cv_have_long_long_format+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -13586,7 +13655,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for %zd printf() format support" >&5 $as_echo_n "checking for %zd printf() format support... " >&6; } -if test "${ac_cv_have_size_t_format+set}" = set; then : +if ${ac_cv_have_size_t_format+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -13659,7 +13728,7 @@ #endif " -if test "x$ac_cv_type_socklen_t" = x""yes; then : +if test "x$ac_cv_type_socklen_t" = xyes; then : else @@ -13670,7 +13739,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for broken mbstowcs" >&5 $as_echo_n "checking for broken mbstowcs... " >&6; } -if test "${ac_cv_broken_mbstowcs+set}" = set; then : +if ${ac_cv_broken_mbstowcs+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -13710,7 +13779,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports computed gotos" >&5 $as_echo_n "checking whether $CC supports computed gotos... " >&6; } -if test "${ac_cv_computed_gotos+set}" = set; then : +if ${ac_cv_computed_gotos+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : @@ -13790,11 +13859,11 @@ case $ac_sys_system in - OSF*) as_fn_error "OSF* systems are deprecated unless somebody volunteers. Check http://bugs.python.org/issue8606" "$LINENO" 5 ;; + OSF*) as_fn_error $? "OSF* systems are deprecated unless somebody volunteers. Check http://bugs.python.org/issue8606" "$LINENO" 5 ;; esac ac_fn_c_check_func "$LINENO" "pipe2" "ac_cv_func_pipe2" -if test "x$ac_cv_func_pipe2" = x""yes; then : +if test "x$ac_cv_func_pipe2" = xyes; then : $as_echo "#define HAVE_PIPE2 1" >>confdefs.h @@ -13889,10 +13958,21 @@ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then - test "x$cache_file" != "x/dev/null" && + if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} - cat confcache >$cache_file + if test ! -f "$cache_file" || test -h "$cache_file"; then + cat confcache >"$cache_file" + else + case $cache_file in #( + */* | ?:*) + mv -f confcache "$cache_file"$$ && + mv -f "$cache_file"$$ "$cache_file" ;; #( + *) + mv -f confcache "$cache_file" ;; + esac + fi + fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} @@ -13908,6 +13988,7 @@ ac_libobjs= ac_ltlibobjs= +U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' @@ -13924,7 +14005,7 @@ -: ${CONFIG_STATUS=./config.status} +: "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" @@ -14025,6 +14106,7 @@ IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. +as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR @@ -14070,19 +14152,19 @@ (unset CDPATH) >/dev/null 2>&1 && unset CDPATH -# as_fn_error ERROR [LINENO LOG_FD] -# --------------------------------- +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with status $?, using 1 if that was 0. +# script with STATUS, using 1 if that was 0. as_fn_error () { - as_status=$?; test $as_status -eq 0 && as_status=1 - if test "$3"; then - as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi - $as_echo "$as_me: error: $1" >&2 + $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error @@ -14278,7 +14360,7 @@ test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p @@ -14332,7 +14414,7 @@ # values after options handling. ac_log=" This file was extended by python $as_me 3.3, which was -generated by GNU Autoconf 2.65. Invocation command line was +generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS @@ -14356,8 +14438,8 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. -config_files="`echo $ac_config_files`" -config_headers="`echo $ac_config_headers`" +config_files="$ac_config_files" +config_headers="$ac_config_headers" _ACEOF @@ -14394,10 +14476,10 @@ ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ python config.status 3.3 -configured by $0, generated by GNU Autoconf 2.65, +configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" -Copyright (C) 2009 Free Software Foundation, Inc. +Copyright (C) 2010 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." @@ -14413,11 +14495,16 @@ while test $# != 0 do case $1 in - --*=*) + --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; + --*=) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg= + ac_shift=: + ;; *) ac_option=$1 ac_optarg=$2 @@ -14439,6 +14526,7 @@ $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; @@ -14451,7 +14539,7 @@ ac_need_defaults=false;; --he | --h) # Conflict between --help and --header - as_fn_error "ambiguous option: \`$1' + as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; @@ -14460,7 +14548,7 @@ ac_cs_silent=: ;; # This is an error. - -*) as_fn_error "unrecognized option: \`$1' + -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" @@ -14519,7 +14607,7 @@ "Misc/python.pc") CONFIG_FILES="$CONFIG_FILES Misc/python.pc" ;; "Modules/ld_so_aix") CONFIG_FILES="$CONFIG_FILES Modules/ld_so_aix" ;; - *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done @@ -14541,9 +14629,10 @@ # after its creation but before its name has been assigned to `$tmp'. $debug || { - tmp= + tmp= ac_tmp= trap 'exit_status=$? - { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status + : "${ac_tmp:=$tmp}" + { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } @@ -14551,12 +14640,13 @@ { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && - test -n "$tmp" && test -d "$tmp" + test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") -} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 +} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 +ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. @@ -14573,12 +14663,12 @@ fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then - ac_cs_awk_cr='\r' + ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi -echo 'BEGIN {' >"$tmp/subs1.awk" && +echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF @@ -14587,18 +14677,18 @@ echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || - as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 -ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || - as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then - as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi @@ -14606,7 +14696,7 @@ rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -cat >>"\$tmp/subs1.awk" <<\\_ACAWK && +cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h @@ -14654,7 +14744,7 @@ rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK -cat >>"\$tmp/subs1.awk" <<_ACAWK && +cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" @@ -14686,21 +14776,29 @@ sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat -fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ - || as_fn_error "could not setup config files machinery" "$LINENO" 5 -_ACEOF - -# VPATH may cause trouble with some makes, so we remove $(srcdir), -# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and +fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ + || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 +_ACEOF + +# VPATH may cause trouble with some makes, so we remove sole $(srcdir), +# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=/{ -s/:*\$(srcdir):*/:/ -s/:*\${srcdir}:*/:/ -s/:*@srcdir@:*/:/ -s/^\([^=]*=[ ]*\):*/\1/ + ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ +h +s/// +s/^/:/ +s/[ ]*$/:/ +s/:\$(srcdir):/:/g +s/:\${srcdir}:/:/g +s/:@srcdir@:/:/g +s/^:*// s/:*$// +x +s/\(=[ ]*\).*/\1/ +G +s/\n// s/^[^=]*=[ ]*$// }' fi @@ -14712,7 +14810,7 @@ # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then -cat >"$tmp/defines.awk" <<\_ACAWK || +cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF @@ -14724,11 +14822,11 @@ # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do - ac_t=`sed -n "/$ac_delim/p" confdefs.h` - if test -z "$ac_t"; then + ac_tt=`sed -n "/$ac_delim/p" confdefs.h` + if test -z "$ac_tt"; then break elif $ac_last_try; then - as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5 + as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi @@ -14813,7 +14911,7 @@ _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - as_fn_error "could not setup config headers machinery" "$LINENO" 5 + as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" @@ -14826,7 +14924,7 @@ esac case $ac_mode$ac_tag in :[FHL]*:*);; - :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; + :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac @@ -14845,7 +14943,7 @@ for ac_f do case $ac_f in - -) ac_f="$tmp/stdin";; + -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. @@ -14854,7 +14952,7 @@ [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || - as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; + as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" @@ -14880,8 +14978,8 @@ esac case $ac_tag in - *:-:* | *:-) cat >"$tmp/stdin" \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; + *:-:* | *:-) cat >"$ac_tmp/stdin" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac @@ -15011,23 +15109,24 @@ s&@INSTALL@&$ac_INSTALL&;t t $ac_datarootdir_hack " -eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ + >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && - { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && + { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ + "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&5 +which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&2;} - - rm -f "$tmp/stdin" +which seems to be undefined. Please make sure it is defined" >&2;} + + rm -f "$ac_tmp/stdin" case $ac_file in - -) cat "$tmp/out" && rm -f "$tmp/out";; - *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; + -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; + *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # @@ -15036,21 +15135,21 @@ if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" - } >"$tmp/config.h" \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 - if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" + } >"$ac_tmp/config.h" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" - mv "$tmp/config.h" "$ac_file" \ - || as_fn_error "could not create $ac_file" "$LINENO" 5 + mv "$ac_tmp/config.h" "$ac_file" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ - || as_fn_error "could not create -" "$LINENO" 5 + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error $? "could not create -" "$LINENO" 5 fi ;; @@ -15070,7 +15169,7 @@ ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || - as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 + as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. @@ -15091,7 +15190,7 @@ exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. - $ac_cs_success || as_fn_exit $? + $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -810,6 +810,21 @@ SVNVERSION="echo Unversioned directory" fi +AC_SUBST(HGVERSION) +AC_SUBST(HGTAG) +AC_SUBST(HGBRANCH) +AC_CHECK_PROG(HAS_HG, hg, found, not-found) +if test $HAS_HG = found +then + HGVERSION="hg id -i \$(srcdir)" + HGTAG="hg id -t \$(srcdir)" + HGBRANCH="hg id -b \$(srcdir)" +else + HGVERSION="" + HGTAG="" + HGBRANCH="" +fi + case $MACHDEP in bsdos*|hp*|HP*) # install -d does not work on BSDI or HP-UX -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 10:36:14 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 10:36:14 +0100 Subject: [Python-checkins] cpython: Remove sys.subversion and svn build identification leftovers. Message-ID: http://hg.python.org/cpython/rev/0e7e3b1621da changeset: 68278:0e7e3b1621da user: Georg Brandl date: Sun Mar 06 10:35:42 2011 +0100 summary: Remove sys.subversion and svn build identification leftovers. files: Doc/library/sys.rst Include/pythonrun.h Lib/test/test_platform.py Makefile.pre.in Modules/getbuildinfo.c Python/sysmodule.c configure configure.in diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -36,18 +36,6 @@ little-endian (least-significant byte first) platforms. -.. data:: subversion - - A triple (repo, branch, version) representing the Subversion information of the - Python interpreter. *repo* is the name of the repository, ``'CPython'``. - *branch* is a string of one of the forms ``'trunk'``, ``'branches/name'`` or - ``'tags/name'``. *version* is the output of ``svnversion``, if the interpreter - was built from a Subversion checkout; it contains the revision number (range) - and possibly a trailing 'M' if there were local modifications. If the tree was - exported (or svnversion was not available), it is the revision of - ``Include/patchlevel.h`` if the branch is a tag. Otherwise, it is ``None``. - - .. data:: builtin_module_names A tuple of strings giving the names of all modules that are compiled into this diff --git a/Include/pythonrun.h b/Include/pythonrun.h --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -179,9 +179,6 @@ PyAPI_FUNC(const char *) Py_GetCompiler(void); PyAPI_FUNC(const char *) Py_GetBuildInfo(void); #ifndef Py_LIMITED_API -PyAPI_FUNC(const char *) _Py_svnversion(void); -PyAPI_FUNC(const char *) Py_SubversionRevision(void); -PyAPI_FUNC(const char *) Py_SubversionShortBranch(void); PyAPI_FUNC(const char *) _Py_hgidentifier(void); PyAPI_FUNC(const char *) _Py_hgversion(void); #endif diff --git a/Lib/test/test_platform.py b/Lib/test/test_platform.py --- a/Lib/test/test_platform.py +++ b/Lib/test/test_platform.py @@ -56,13 +56,11 @@ def setUp(self): self.save_version = sys.version - self.save_subversion = sys.subversion self.save_mercurial = sys._mercurial self.save_platform = sys.platform def tearDown(self): sys.version = self.save_version - sys.subversion = self.save_subversion sys._mercurial = self.save_mercurial sys.platform = self.save_platform @@ -77,7 +75,7 @@ ('IronPython', '1.0.0', '', '', '', '', '.NET 2.0.50727.42')), ): # branch and revision are not "parsed", but fetched - # from sys.subversion. Ignore them + # from sys._mercurial. Ignore them (name, version, branch, revision, buildno, builddate, compiler) \ = platform._sys_version(input) self.assertEqual( @@ -113,8 +111,6 @@ if subversion is None: if hasattr(sys, "_mercurial"): del sys._mercurial - if hasattr(sys, "subversion"): - del sys.subversion else: sys._mercurial = subversion if sys_platform is not None: diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -34,7 +34,6 @@ LINKCC= @LINKCC@ AR= @AR@ RANLIB= @RANLIB@ -SVNVERSION= @SVNVERSION@ SOABI= @SOABI@ LDVERSION= @LDVERSION@ HGVERSION= @HGVERSION@ @@ -556,7 +555,6 @@ $(MODOBJS) \ $(srcdir)/Modules/getbuildinfo.c $(CC) -c $(PY_CORE_CFLAGS) \ - -DSVNVERSION="\"`LC_ALL=C $(SVNVERSION)`\"" \ -DHGVERSION="\"`LC_ALL=C $(HGVERSION)`\"" \ -DHGTAG="\"`LC_ALL=C $(HGTAG)`\"" \ -DHGBRANCH="\"`LC_ALL=C $(HGBRANCH)`\"" \ @@ -1281,7 +1279,6 @@ # Find files with funny names funny: find $(DISTDIRS) \ - -name .svn -prune \ -o -type d \ -o -name '*.[chs]' \ -o -name '*.py' \ diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -20,14 +20,6 @@ #endif #endif -/* on unix, SVNVERSION is passed on the command line. - * on Windows, the string is interpolated using - * subwcrev.exe - */ -#ifndef SVNVERSION -#define SVNVERSION "$WCRANGE$$WCMODS?M:$" -#endif - /* XXX Only unix build process has been tested */ #ifndef HGVERSION #define HGVERSION "" @@ -55,16 +47,6 @@ } const char * -_Py_svnversion(void) -{ - /* the following string can be modified by subwcrev.exe */ - static const char svnversion[] = SVNVERSION; - if (svnversion[0] != '$') - return svnversion; /* it was interpolated, or passed on command line */ - return "Unversioned directory"; -} - -const char * _Py_hgversion(void) { return HGVERSION; diff --git a/Python/sysmodule.c b/Python/sysmodule.c --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1255,7 +1255,6 @@ maxsize -- the largest supported length of containers.\n\ maxunicode -- the largest supported character\n\ builtin_module_names -- tuple of module names built into this interpreter\n\ -subversion -- subversion information of the build as tuple\n\ version -- the version of this interpreter as a string\n\ version_info -- version information as a named tuple\n\ hexversion -- version information encoded as a single integer\n\ @@ -1303,95 +1302,6 @@ ) /* end of sys_doc */ ; -/* Subversion branch and revision management */ -static const char _patchlevel_revision[] = PY_PATCHLEVEL_REVISION; -static const char headurl[] = "$HeadURL$"; -static int svn_initialized; -static char patchlevel_revision[50]; /* Just the number */ -static char branch[50]; -static char shortbranch[50]; -static const char *svn_revision; - -static void -svnversion_init(void) -{ - const char *python, *br_start, *br_end, *br_end2, *svnversion; - Py_ssize_t len; - int istag = 0; - - if (svn_initialized) - return; - - python = strstr(headurl, "/python/"); - if (!python) { - strcpy(branch, "unknown branch"); - strcpy(shortbranch, "unknown"); - } - else { - br_start = python + 8; - br_end = strchr(br_start, '/'); - assert(br_end); - - /* Works even for trunk, - as we are in trunk/Python/sysmodule.c */ - br_end2 = strchr(br_end+1, '/'); - - istag = strncmp(br_start, "tags", 4) == 0; - if (strncmp(br_start, "trunk", 5) == 0) { - strcpy(branch, "trunk"); - strcpy(shortbranch, "trunk"); - } - else if (istag || strncmp(br_start, "branches", 8) == 0) { - len = br_end2 - br_start; - strncpy(branch, br_start, len); - branch[len] = '\0'; - - len = br_end2 - (br_end + 1); - strncpy(shortbranch, br_end + 1, len); - shortbranch[len] = '\0'; - } - else { - Py_FatalError("bad HeadURL"); - return; - } - } - - - svnversion = _Py_svnversion(); - if (strcmp(svnversion, "Unversioned directory") != 0 && strcmp(svnversion, "exported") != 0) - svn_revision = svnversion; - else if (istag) { - len = strlen(_patchlevel_revision); - assert(len >= 13); - assert(len < (sizeof(patchlevel_revision) + 13)); - strncpy(patchlevel_revision, _patchlevel_revision + 11, - len - 13); - patchlevel_revision[len - 13] = '\0'; - svn_revision = patchlevel_revision; - } - else - svn_revision = ""; - - svn_initialized = 1; -} - -/* Return svnversion output if available. - Else return Revision of patchlevel.h if on branch. - Else return empty string */ -const char* -Py_SubversionRevision() -{ - svnversion_init(); - return svn_revision; -} - -const char* -Py_SubversionShortBranch() -{ - svnversion_init(); - return shortbranch; -} - PyDoc_STRVAR(flags__doc__, "sys.flags\n\ @@ -1595,10 +1505,6 @@ PyUnicode_FromString(Py_GetVersion())); SET_SYS_FROM_STRING("hexversion", PyLong_FromLong(PY_VERSION_HEX)); - svnversion_init(); - SET_SYS_FROM_STRING("subversion", - Py_BuildValue("(sss)", "CPython", branch, - svn_revision)); SET_SYS_FROM_STRING("_mercurial", Py_BuildValue("(szz)", "CPython", _Py_hgidentifier(), _Py_hgversion())); diff --git a/configure b/configure --- a/configure +++ b/configure @@ -648,7 +648,6 @@ HGBRANCH HGTAG HGVERSION -SVNVERSION ARFLAGS AR RANLIB @@ -5125,52 +5124,6 @@ fi -# Extract the first word of "svnversion", so it can be a program name with args. -set dummy svnversion; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_SVNVERSION+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$SVNVERSION"; then - ac_cv_prog_SVNVERSION="$SVNVERSION" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_SVNVERSION="found" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_SVNVERSION" && ac_cv_prog_SVNVERSION="not-found" -fi -fi -SVNVERSION=$ac_cv_prog_SVNVERSION -if test -n "$SVNVERSION"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SVNVERSION" >&5 -$as_echo "$SVNVERSION" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -if test $SVNVERSION = found -then - SVNVERSION="svnversion \$(srcdir)" -else - SVNVERSION="echo Unversioned directory" -fi - - # Extract the first word of "hg", so it can be a program name with args. diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -801,15 +801,6 @@ ARFLAGS="rc" fi -AC_SUBST(SVNVERSION) -AC_CHECK_PROG(SVNVERSION, svnversion, found, not-found) -if test $SVNVERSION = found -then - SVNVERSION="svnversion \$(srcdir)" -else - SVNVERSION="echo Unversioned directory" -fi - AC_SUBST(HGVERSION) AC_SUBST(HGTAG) AC_SUBST(HGBRANCH) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 10:36:14 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 10:36:14 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge heads Message-ID: http://hg.python.org/cpython/rev/f271c94eb186 changeset: 68279:f271c94eb186 parent: 68278:0e7e3b1621da parent: 68273:6ba9ba58499e user: Georg Brandl date: Sun Mar 06 10:36:06 2011 +0100 summary: merge heads files: diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -55,6 +55,9 @@ Library ------- +- Issue #11408: In threading.Lock.acquire(), only call gettimeofday() when + really necessary. Patch by Charles-Fran?ois Natali. + - Issue #11391: Writing to a mmap object created with ``mmap.PROT_READ|mmap.PROT_EXEC`` would segfault instead of raising a TypeError. Patch by Charles-Fran?ois Natali. diff --git a/Modules/_threadmodule.c b/Modules/_threadmodule.c --- a/Modules/_threadmodule.c +++ b/Modules/_threadmodule.c @@ -54,8 +54,8 @@ _PyTime_timeval endtime; - _PyTime_gettimeofday(&endtime); if (microseconds > 0) { + _PyTime_gettimeofday(&endtime); endtime.tv_sec += microseconds / (1000 * 1000); endtime.tv_usec += microseconds % (1000 * 1000); } @@ -76,7 +76,7 @@ /* If we're using a timeout, recompute the timeout after processing * signals, since those can take time. */ - if (microseconds >= 0) { + if (microseconds > 0) { _PyTime_gettimeofday(&curtime); microseconds = ((endtime.tv_sec - curtime.tv_sec) * 1000000 + (endtime.tv_usec - curtime.tv_usec)); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 10:37:43 2011 From: python-checkins at python.org (ned.deily) Date: Sun, 06 Mar 2011 10:37:43 +0100 Subject: [Python-checkins] devguide: More miscellaneous review comments. Message-ID: http://hg.python.org/devguide/rev/ad3278cfc5f6 changeset: 376:ad3278cfc5f6 user: Ned Deily date: Sun Mar 06 01:37:13 2011 -0800 summary: More miscellaneous review comments. files: committing.rst communication.rst coredev.rst faq.rst stdlibchanges.rst diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -3,6 +3,9 @@ Committing and Pushing Changes ============================== +.. TODO: include a checklist of items to be included in a commit? + e.g updated Misc/NEWS entry, tests, doc + Commit Messages --------------- @@ -11,7 +14,7 @@ developed a standard way of formatting commit messages that everyone is expected to follow. -Our usual convention mimicks that used in the ``Misc/NEWS`` file. Actually, +Our usual convention mimics that used in the ``Misc/NEWS`` file. Actually, it is common to simply paste the NEWS entry into the commit message. Here is an example:: diff --git a/communication.rst b/communication.rst --- a/communication.rst +++ b/communication.rst @@ -47,7 +47,9 @@ c.l.py). A complete list of Python mailing lists can be found at http://mail.python.org. -Most lists are also mirrored at http://news.gmane.org/. +Most lists are also mirrored at http://news.gmane.org/ and can be read and +posted to in various ways, including via web browers, NNTP newsreaders, and +RSS feed readers. .. _issue tracker: http://bugs.python.org .. _new-bugs-announce: http://mail.python.org/mailman/listinfo/new-bugs-announce diff --git a/coredev.rst b/coredev.rst --- a/coredev.rst +++ b/coredev.rst @@ -6,8 +6,9 @@ What it Takes ------------- -When you have consistently contributed patches which have met quality standards -to be committed without requiring extensive rewrites, you may qualify for +When you have consistently contributed patches which meet quality standards +without requiring extensive rewrites prior to being committed, +you may qualify for commit privileges and become a core developer of Python. You must also work well with other core developers (and people in general) as you become an ambassador for the Python project. @@ -138,8 +139,8 @@ tracker as well. Third, please list what areas you want to be considered an expert in the -:ref:`experts`. This allows triagers -to direct issues your way when they involve an area you are an expert in. But, +:ref:`experts`. This allows triagers to direct issues to you which involve +an area you are an expert in. But, as stated in the second point above, if you do not have the time to answer questions promptly then please remove yourself as needed from the file so that you will not be bothered in the future. Once again, we all understand how life diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -609,8 +609,8 @@ .. _PuTTYgen: http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html -Is there a way to prevent from having to enter my password for my SSH 2 public key constantly? ------------------------------------------------------------------------------------------------- +Is there a way to avoid having to constantly enter my password for my SSH 2 public key? +--------------------------------------------------------------------------------------- UNIX ''''''''''''''''''' diff --git a/stdlibchanges.rst b/stdlibchanges.rst --- a/stdlibchanges.rst +++ b/stdlibchanges.rst @@ -122,7 +122,7 @@ Proposal Process '''''''''''''''' -If the module you want to proposing adding to the stdlib meets the proper +If the module you want to propose adding to the stdlib meets the proper requirements, you may propose its inclusion. To start, you should email python-list or python-ideas to make sure the community in general would support the inclusion of the module (see :ref:`communication`). @@ -141,7 +141,7 @@ When you have listened to, responded, and integrated as appropriate the feedback from python-ideas into your PEP, you may send it to python-dev. You will once again receive a large amount of feedback and discussion. A PEP -dictator will be assigned who make the final call on whether the PEP will be +dictator will be assigned who makes the final call on whether the PEP will be accepted or not. If the PEP dictator agrees to accept your PEP (which typically means that the core developers end up agreeing in general to accepting your PEP) then the module -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sun Mar 6 10:42:29 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 10:42:29 +0100 Subject: [Python-checkins] cpython (2.7): Add some more ignores from default. Message-ID: http://hg.python.org/cpython/rev/c1098e14ac0c changeset: 68280:c1098e14ac0c branch: 2.7 parent: 68272:2e4468841c4c user: Georg Brandl date: Sun Mar 06 10:41:54 2011 +0100 summary: Add some more ignores from default. files: .hgignore diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -29,12 +29,15 @@ Modules/Setup.config Modules/Setup.local Modules/config.c +Modules/ld_so_aix$ Parser/pgen$ +Parser/pgen.stamp$ ^core ^python-gdb.py syntax: glob libpython*.a +*.swp *.o *.pyc *.pyo -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 10:42:29 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 10:42:29 +0100 Subject: [Python-checkins] cpython (2.7): Port build identification from default branch. Message-ID: http://hg.python.org/cpython/rev/ce93b75add15 changeset: 68281:ce93b75add15 branch: 2.7 user: Georg Brandl date: Sun Mar 06 10:42:21 2011 +0100 summary: Port build identification from default branch. files: Include/pythonrun.h Makefile.pre.in Modules/getbuildinfo.c Python/sysmodule.c configure configure.in diff --git a/Include/pythonrun.h b/Include/pythonrun.h --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -114,6 +114,8 @@ PyAPI_FUNC(const char *) _Py_svnversion(void); PyAPI_FUNC(const char *) Py_SubversionRevision(void); PyAPI_FUNC(const char *) Py_SubversionShortBranch(void); +PyAPI_FUNC(const char *) _Py_hgidentifier(void); +PyAPI_FUNC(const char *) _Py_hgversion(void); /* Internal -- various one-time initializations */ PyAPI_FUNC(PyObject *) _PyBuiltin_Init(void); diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -35,6 +35,9 @@ AR= @AR@ RANLIB= @RANLIB@ SVNVERSION= @SVNVERSION@ +HGVERSION= @HGVERSION@ +HGTAG= @HGTAG@ +HGBRANCH= @HGBRANCH@ GNULD= @GNULD@ @@ -522,7 +525,12 @@ $(SIGNAL_OBJS) \ $(MODOBJS) \ $(srcdir)/Modules/getbuildinfo.c - $(CC) -c $(PY_CFLAGS) -DSVNVERSION="\"`LC_ALL=C $(SVNVERSION)`\"" -o $@ $(srcdir)/Modules/getbuildinfo.c + $(CC) -c $(PY_CFLAGS) \ + -DSVNVERSION="\"`LC_ALL=C $(SVNVERSION)`\"" \ + -DHGVERSION="\"`LC_ALL=C $(HGVERSION)`\"" \ + -DHGTAG="\"`LC_ALL=C $(HGTAG)`\"" \ + -DHGBRANCH="\"`LC_ALL=C $(HGBRANCH)`\"" \ + -o $@ $(srcdir)/Modules/getbuildinfo.c Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \ diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -28,15 +28,28 @@ #define SVNVERSION "$WCRANGE$$WCMODS?M:$" #endif +/* XXX Only unix build process has been tested */ +#ifndef HGVERSION +#define HGVERSION "" +#endif +#ifndef HGTAG +#define HGTAG "" +#endif +#ifndef HGBRANCH +#define HGBRANCH "" +#endif + const char * Py_GetBuildInfo(void) { static char buildinfo[50]; - const char *revision = Py_SubversionRevision(); + const char *revision = _Py_hgversion(); const char *sep = *revision ? ":" : ""; - const char *branch = Py_SubversionShortBranch(); + const char *hgid = _Py_hgidentifier(); + if (!(*hgid)) + hgid = "default"; PyOS_snprintf(buildinfo, sizeof(buildinfo), - "%s%s%s, %.20s, %.9s", branch, sep, revision, + "%s%s%s, %.20s, %.9s", hgid, sep, revision, DATE, TIME); return buildinfo; } @@ -50,3 +63,21 @@ return svnversion; /* it was interpolated, or passed on command line */ return "Unversioned directory"; } + +const char * +_Py_hgversion(void) +{ + return HGVERSION; +} + +const char * +_Py_hgidentifier(void) +{ + const char *hgtag, *hgid; + hgtag = HGTAG; + if ((*hgtag) && strcmp(hgtag, "tip") != 0) + hgid = hgtag; + else + hgid = HGBRANCH; + return hgid; +} diff --git a/Python/sysmodule.c b/Python/sysmodule.c --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1462,6 +1462,9 @@ SET_SYS_FROM_STRING("subversion", Py_BuildValue("(ssz)", "CPython", branch, svn_revision)); + SET_SYS_FROM_STRING("_mercurial", + Py_BuildValue("(szz)", "CPython", _Py_hgidentifier(), + _Py_hgversion())); SET_SYS_FROM_STRING("dont_write_bytecode", PyBool_FromLong(Py_DontWriteBytecodeFlag)); SET_SYS_FROM_STRING("api_version", diff --git a/configure b/configure --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 88568 . +# From configure.in Revision. # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.68 for python 2.7. # @@ -643,6 +643,10 @@ INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM +HAS_HG +HGBRANCH +HGTAG +HGVERSION SVNVERSION ARFLAGS AR @@ -5169,6 +5173,58 @@ SVNVERSION="echo Unversioned directory" fi + + + +# Extract the first word of "hg", so it can be a program name with args. +set dummy hg; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_HAS_HG+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$HAS_HG"; then + ac_cv_prog_HAS_HG="$HAS_HG" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_HAS_HG="found" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_prog_HAS_HG" && ac_cv_prog_HAS_HG="not-found" +fi +fi +HAS_HG=$ac_cv_prog_HAS_HG +if test -n "$HAS_HG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HAS_HG" >&5 +$as_echo "$HAS_HG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +if test $HAS_HG = found +then + HGVERSION="hg id -i \$(srcdir)" + HGTAG="hg id -t \$(srcdir)" + HGBRANCH="hg id -b \$(srcdir)" +else + HGVERSION="" + HGTAG="" + HGBRANCH="" +fi + case $MACHDEP in bsdos*|hp*|HP*) # install -d does not work on BSDI or HP-UX diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -853,6 +853,21 @@ SVNVERSION="echo Unversioned directory" fi +AC_SUBST(HGVERSION) +AC_SUBST(HGTAG) +AC_SUBST(HGBRANCH) +AC_CHECK_PROG(HAS_HG, hg, found, not-found) +if test $HAS_HG = found +then + HGVERSION="hg id -i \$(srcdir)" + HGTAG="hg id -t \$(srcdir)" + HGBRANCH="hg id -b \$(srcdir)" +else + HGVERSION="" + HGTAG="" + HGBRANCH="" +fi + case $MACHDEP in bsdos*|hp*|HP*) # install -d does not work on BSDI or HP-UX -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 10:48:19 2011 From: python-checkins at python.org (local-hg) Date: Sun, 06 Mar 2011 10:48:19 +0100 Subject: [Python-checkins] hooks: Fix mistake in buildbot hook Message-ID: http://hg.python.org/hooks/rev/9863f0c15be9 changeset: 51:9863f0c15be9 user: Georg Brandl date: Sun Mar 06 10:48:19 2011 +0100 summary: Fix mistake in buildbot hook files: hgbuildbot.py diff --git a/hgbuildbot.py b/hgbuildbot.py --- a/hgbuildbot.py +++ b/hgbuildbot.py @@ -88,7 +88,7 @@ # Explicitly compare current with its first parent (otherwise # some files might be "forgotten" if they are copied as-is from the # second parent). - p1 = repo[hex(p[0])] + p1 = repo[hex(parents[0])] modified, added, removed, deleted = repo.status(rev, p1)[:4] files = set() for l in (modified, added, removed, deleted): -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Sun Mar 6 11:10:09 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:10:09 +0100 Subject: [Python-checkins] cpython (3.1): #11400: remove reference to pre-1.5 assignment behavior. Message-ID: http://hg.python.org/cpython/rev/f7e04a9566c4 changeset: 68282:f7e04a9566c4 branch: 3.1 parent: 68275:f3f8b39eaa1e user: Georg Brandl date: Sun Mar 06 10:48:43 2011 +0100 summary: #11400: remove reference to pre-1.5 assignment behavior. files: Doc/reference/simple_stmts.rst diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -119,9 +119,6 @@ * If the target list is a comma-separated list of targets: The object must be an iterable with the same number of items as there are targets in the target list, and the items are assigned, from left to right, to the corresponding targets. - (This rule is relaxed as of Python 1.5; in earlier versions, the object had to - be a tuple. Since strings are sequences, an assignment like ``a, b = "xy"`` is - now legal as long as the string has the right length.) * If the target list contains one target prefixed with an asterisk, called a "starred" target: The object must be a sequence with at least as many items -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:10:09 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:10:09 +0100 Subject: [Python-checkins] cpython (3.1): #11337: remove unreferenced footnote. Message-ID: http://hg.python.org/cpython/rev/949a099a87ca changeset: 68283:949a099a87ca branch: 3.1 user: Georg Brandl date: Sun Mar 06 10:51:18 2011 +0100 summary: #11337: remove unreferenced footnote. files: Doc/reference/simple_stmts.rst diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -986,10 +986,3 @@ :pep:`3104` - Access to Names in Outer Scopes The specification for the :keyword:`nonlocal` statement. - - -.. rubric:: Footnotes - -.. [#] It may occur within an :keyword:`except` or :keyword:`else` clause. The - restriction on occurring in the :keyword:`try` clause is implementor's - laziness and will eventually be lifted. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:10:09 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:10:09 +0100 Subject: [Python-checkins] cpython (3.1): #11405: do not reference the string module again for its deprecated functions, Message-ID: http://hg.python.org/cpython/rev/59e464a1bbf0 changeset: 68285:59e464a1bbf0 branch: 3.1 user: Georg Brandl date: Sun Mar 06 10:56:18 2011 +0100 summary: #11405: do not reference the string module again for its deprecated functions, only for Template class. files: Doc/tutorial/inputoutput.rst diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst --- a/Doc/tutorial/inputoutput.rst +++ b/Doc/tutorial/inputoutput.rst @@ -19,18 +19,16 @@ of file objects; the standard output file can be referenced as ``sys.stdout``. See the Library Reference for more information on this.) -.. index:: module: string - Often you'll want more control over the formatting of your output than simply printing space-separated values. There are two ways to format your output; the first way is to do all the string handling yourself; using string slicing and concatenation operations you can create any layout you can imagine. The -standard module :mod:`string` contains some useful operations for padding +string type has some methods that perform useful operations for padding strings to a given column width; these will be discussed shortly. The second way is to use the :meth:`str.format` method. -The :mod:`string` module contains a class Template which offers yet another way -to substitute values into strings. +The :mod:`string` module contains a :class:`~string.Template` class which offers +yet another way to substitute values into strings. One question remains, of course: how do you convert values to strings? Luckily, Python has ways to convert any value to a string: pass it to the :func:`repr` -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:10:09 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:10:09 +0100 Subject: [Python-checkins] cpython (3.1): #11392: you can trust the computer, but you have to know what it does. Message-ID: http://hg.python.org/cpython/rev/e6d9a8e38cc8 changeset: 68284:e6d9a8e38cc8 branch: 3.1 user: Georg Brandl date: Sun Mar 06 10:53:55 2011 +0100 summary: #11392: you can trust the computer, but you have to know what it does. files: Doc/library/turtle.rst diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -2290,9 +2290,11 @@ | bytedesign | complex classical | :func:`tracer`, delay,| | | turtlegraphics pattern | :func:`update` | +----------------+------------------------------+-----------------------+ -| chaos | graphs verhust dynamics, | world coordinates | -| | proves that you must not | | -| | trust computers' computations| | +| chaos | graphs Verhulst dynamics, | world coordinates | +| | shows that computer's | | +| | computations can generate | | +| | results sometimes against the| | +| | common sense expectations | | +----------------+------------------------------+-----------------------+ | clock | analog clock showing time | turtles as clock's | | | of your computer | hands, ontimer | -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:10:10 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:10:10 +0100 Subject: [Python-checkins] cpython (3.1): #11373: fix spelling. Message-ID: http://hg.python.org/cpython/rev/13bc0511b3d3 changeset: 68286:13bc0511b3d3 branch: 3.1 user: Georg Brandl date: Sun Mar 06 10:57:52 2011 +0100 summary: #11373: fix spelling. files: Doc/library/stdtypes.rst diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2102,7 +2102,7 @@ .. class:: memoryview(obj) Create a :class:`memoryview` that references *obj*. *obj* must support the - buffer protocol. Builtin objects that support the buffer protocol include + buffer protocol. Built-in objects that support the buffer protocol include :class:`bytes` and :class:`bytearray`. A :class:`memoryview` has the notion of an *element*, which is the -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:10:10 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:10:10 +0100 Subject: [Python-checkins] cpython (3.1): #11227: use Host header in asyncore example. Message-ID: http://hg.python.org/cpython/rev/b630a135a86c changeset: 68287:b630a135a86c branch: 3.1 user: Georg Brandl date: Sun Mar 06 11:05:03 2011 +0100 summary: #11227: use Host header in asyncore example. files: Doc/library/asyncore.rst diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst --- a/Doc/library/asyncore.rst +++ b/Doc/library/asyncore.rst @@ -263,7 +263,8 @@ asyncore.dispatcher.__init__(self) self.create_socket(socket.AF_INET, socket.SOCK_STREAM) self.connect( (host, 80) ) - self.buffer = bytes('GET %s HTTP/1.0\r\n\r\n' % path, 'ascii') + self.buffer = bytes('GET %s HTTP/1.0\r\nHost: %s\r\n\r\n' % + (path, host), 'ascii') def handle_connect(self): pass -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:10:10 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:10:10 +0100 Subject: [Python-checkins] cpython (3.1): #11239: add } to list of metacharacters (it is only a metacharacter sometimes, Message-ID: http://hg.python.org/cpython/rev/3ec0a764ab5c changeset: 68288:3ec0a764ab5c branch: 3.1 user: Georg Brandl date: Sun Mar 06 11:07:11 2011 +0100 summary: #11239: add } to list of metacharacters (it is only a metacharacter sometimes, ie. when closing a {n,m} group, but so is ]. files: Doc/howto/regex.rst diff --git a/Doc/howto/regex.rst b/Doc/howto/regex.rst --- a/Doc/howto/regex.rst +++ b/Doc/howto/regex.rst @@ -76,7 +76,7 @@ Here's a complete list of the metacharacters; their meanings will be discussed in the rest of this HOWTO. :: - . ^ $ * + ? { [ ] \ | ( ) + . ^ $ * + ? { } [ ] \ | ( ) The first metacharacters we'll look at are ``[`` and ``]``. They're used for specifying a character class, which is a set of characters that you wish to -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:10:10 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:10:10 +0100 Subject: [Python-checkins] cpython (3.1): #11294: add missing ERA_T_FMT to locale docs. Message-ID: http://hg.python.org/cpython/rev/6f861f98a3c5 changeset: 68290:6f861f98a3c5 branch: 3.1 user: Georg Brandl date: Sun Mar 06 11:09:51 2011 +0100 summary: #11294: add missing ERA_T_FMT to locale docs. files: Doc/library/locale.rst diff --git a/Doc/library/locale.rst b/Doc/library/locale.rst --- a/Doc/library/locale.rst +++ b/Doc/library/locale.rst @@ -161,7 +161,7 @@ .. data:: D_T_FMT Get a string that can be used as a format string for :func:`strftime` to - represent time and date in a locale-specific way. + represent date and time in a locale-specific way. .. data:: D_FMT @@ -246,12 +246,17 @@ .. data:: ERA_D_T_FMT - Get a format string for :func:`strftime` to represent dates and times in a + Get a format string for :func:`strftime` to represent date and time in a locale-specific era-based way. .. data:: ERA_D_FMT - Get a format string for :func:`strftime` to represent time in a + Get a format string for :func:`strftime` to represent a date in a + locale-specific era-based way. + + .. data:: ERA_T_FMT + + Get a format string for :func:`strftime` to represent a time in a locale-specific era-based way. .. data:: ALT_DIGITS -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:10:10 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:10:10 +0100 Subject: [Python-checkins] cpython (3.1): #11292: add missing A_REVERSE to curses attribute table. Message-ID: http://hg.python.org/cpython/rev/d9292abe80da changeset: 68289:d9292abe80da branch: 3.1 user: Georg Brandl date: Sun Mar 06 11:08:35 2011 +0100 summary: #11292: add missing A_REVERSE to curses attribute table. files: Doc/library/curses.rst diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -1173,6 +1173,9 @@ +------------------+-------------------------------+ | ``A_NORMAL`` | Normal attribute. | +------------------+-------------------------------+ +| ``A_REVERSE`` | Reverse background and | +| | foreground colors. | ++------------------+-------------------------------+ | ``A_STANDOUT`` | Standout mode. | +------------------+-------------------------------+ | ``A_UNDERLINE`` | Underline mode. | -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:13:00 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:13:00 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge doc fixes. Message-ID: http://hg.python.org/cpython/rev/624bcf3adab5 changeset: 68291:624bcf3adab5 branch: 3.2 parent: 68276:4f9d5263c8e9 parent: 68290:6f861f98a3c5 user: Georg Brandl date: Sun Mar 06 11:12:42 2011 +0100 summary: Merge doc fixes. files: Doc/library/asyncore.rst Doc/library/curses.rst Doc/library/locale.rst Doc/library/stdtypes.rst Doc/library/turtle.rst Doc/reference/simple_stmts.rst Doc/tutorial/inputoutput.rst diff --git a/Doc/howto/regex.rst b/Doc/howto/regex.rst --- a/Doc/howto/regex.rst +++ b/Doc/howto/regex.rst @@ -76,7 +76,7 @@ Here's a complete list of the metacharacters; their meanings will be discussed in the rest of this HOWTO. :: - . ^ $ * + ? { [ ] \ | ( ) + . ^ $ * + ? { } [ ] \ | ( ) The first metacharacters we'll look at are ``[`` and ``]``. They're used for specifying a character class, which is a set of characters that you wish to diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst --- a/Doc/library/asyncore.rst +++ b/Doc/library/asyncore.rst @@ -282,7 +282,8 @@ asyncore.dispatcher.__init__(self) self.create_socket(socket.AF_INET, socket.SOCK_STREAM) self.connect( (host, 80) ) - self.buffer = bytes('GET %s HTTP/1.0\r\n\r\n' % path, 'ascii') + self.buffer = bytes('GET %s HTTP/1.0\r\nHost: %s\r\n\r\n' % + (path, host), 'ascii') def handle_connect(self): pass diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -1173,6 +1173,9 @@ +------------------+-------------------------------+ | ``A_NORMAL`` | Normal attribute. | +------------------+-------------------------------+ +| ``A_REVERSE`` | Reverse background and | +| | foreground colors. | ++------------------+-------------------------------+ | ``A_STANDOUT`` | Standout mode. | +------------------+-------------------------------+ | ``A_UNDERLINE`` | Underline mode. | diff --git a/Doc/library/locale.rst b/Doc/library/locale.rst --- a/Doc/library/locale.rst +++ b/Doc/library/locale.rst @@ -161,7 +161,7 @@ .. data:: D_T_FMT Get a string that can be used as a format string for :func:`strftime` to - represent time and date in a locale-specific way. + represent date and time in a locale-specific way. .. data:: D_FMT @@ -246,12 +246,17 @@ .. data:: ERA_D_T_FMT - Get a format string for :func:`strftime` to represent dates and times in a + Get a format string for :func:`strftime` to represent date and time in a locale-specific era-based way. .. data:: ERA_D_FMT - Get a format string for :func:`strftime` to represent time in a + Get a format string for :func:`strftime` to represent a date in a + locale-specific era-based way. + + .. data:: ERA_T_FMT + + Get a format string for :func:`strftime` to represent a time in a locale-specific era-based way. .. data:: ALT_DIGITS diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2311,7 +2311,7 @@ .. class:: memoryview(obj) Create a :class:`memoryview` that references *obj*. *obj* must support the - buffer protocol. Builtin objects that support the buffer protocol include + buffer protocol. Built-in objects that support the buffer protocol include :class:`bytes` and :class:`bytearray`. A :class:`memoryview` has the notion of an *element*, which is the diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -2306,9 +2306,11 @@ | bytedesign | complex classical | :func:`tracer`, delay,| | | turtle graphics pattern | :func:`update` | +----------------+------------------------------+-----------------------+ -| chaos | graphs verhust dynamics, | world coordinates | -| | proves that you must not | | -| | trust computers' computations| | +| chaos | graphs Verhulst dynamics, | world coordinates | +| | shows that computer's | | +| | computations can generate | | +| | results sometimes against the| | +| | common sense expectations | | +----------------+------------------------------+-----------------------+ | clock | analog clock showing time | turtles as clock's | | | of your computer | hands, ontimer | diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -119,9 +119,6 @@ * If the target list is a comma-separated list of targets: The object must be an iterable with the same number of items as there are targets in the target list, and the items are assigned, from left to right, to the corresponding targets. - (This rule is relaxed as of Python 1.5; in earlier versions, the object had to - be a tuple. Since strings are sequences, an assignment like ``a, b = "xy"`` is - now legal as long as the string has the right length.) * If the target list contains one target prefixed with an asterisk, called a "starred" target: The object must be a sequence with at least as many items @@ -991,10 +988,3 @@ :pep:`3104` - Access to Names in Outer Scopes The specification for the :keyword:`nonlocal` statement. - - -.. rubric:: Footnotes - -.. [#] It may occur within an :keyword:`except` or :keyword:`else` clause. The - restriction on occurring in the :keyword:`try` clause is implementor's - laziness and will eventually be lifted. diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst --- a/Doc/tutorial/inputoutput.rst +++ b/Doc/tutorial/inputoutput.rst @@ -19,18 +19,16 @@ of file objects; the standard output file can be referenced as ``sys.stdout``. See the Library Reference for more information on this.) -.. index:: module: string - Often you'll want more control over the formatting of your output than simply printing space-separated values. There are two ways to format your output; the first way is to do all the string handling yourself; using string slicing and concatenation operations you can create any layout you can imagine. The -standard module :mod:`string` contains some useful operations for padding +string type has some methods that perform useful operations for padding strings to a given column width; these will be discussed shortly. The second way is to use the :meth:`str.format` method. -The :mod:`string` module contains a class Template which offers yet another way -to substitute values into strings. +The :mod:`string` module contains a :class:`~string.Template` class which offers +yet another way to substitute values into strings. One question remains, of course: how do you convert values to strings? Luckily, Python has ways to convert any value to a string: pass it to the :func:`repr` -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:13:00 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:13:00 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge doc fixes. Message-ID: http://hg.python.org/cpython/rev/7030e132e77f changeset: 68292:7030e132e77f parent: 68279:f271c94eb186 parent: 68291:624bcf3adab5 user: Georg Brandl date: Sun Mar 06 11:12:54 2011 +0100 summary: Merge doc fixes. files: Doc/library/asyncore.rst Doc/library/stdtypes.rst diff --git a/Doc/howto/regex.rst b/Doc/howto/regex.rst --- a/Doc/howto/regex.rst +++ b/Doc/howto/regex.rst @@ -76,7 +76,7 @@ Here's a complete list of the metacharacters; their meanings will be discussed in the rest of this HOWTO. :: - . ^ $ * + ? { [ ] \ | ( ) + . ^ $ * + ? { } [ ] \ | ( ) The first metacharacters we'll look at are ``[`` and ``]``. They're used for specifying a character class, which is a set of characters that you wish to diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst --- a/Doc/library/asyncore.rst +++ b/Doc/library/asyncore.rst @@ -284,7 +284,8 @@ asyncore.dispatcher.__init__(self) self.create_socket() self.connect( (host, 80) ) - self.buffer = bytes('GET %s HTTP/1.0\r\n\r\n' % path, 'ascii') + self.buffer = bytes('GET %s HTTP/1.0\r\nHost: %s\r\n\r\n' % + (path, host), 'ascii') def handle_connect(self): pass diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -1173,6 +1173,9 @@ +------------------+-------------------------------+ | ``A_NORMAL`` | Normal attribute. | +------------------+-------------------------------+ +| ``A_REVERSE`` | Reverse background and | +| | foreground colors. | ++------------------+-------------------------------+ | ``A_STANDOUT`` | Standout mode. | +------------------+-------------------------------+ | ``A_UNDERLINE`` | Underline mode. | diff --git a/Doc/library/locale.rst b/Doc/library/locale.rst --- a/Doc/library/locale.rst +++ b/Doc/library/locale.rst @@ -161,7 +161,7 @@ .. data:: D_T_FMT Get a string that can be used as a format string for :func:`strftime` to - represent time and date in a locale-specific way. + represent date and time in a locale-specific way. .. data:: D_FMT @@ -246,12 +246,17 @@ .. data:: ERA_D_T_FMT - Get a format string for :func:`strftime` to represent dates and times in a + Get a format string for :func:`strftime` to represent date and time in a locale-specific era-based way. .. data:: ERA_D_FMT - Get a format string for :func:`strftime` to represent time in a + Get a format string for :func:`strftime` to represent a date in a + locale-specific era-based way. + + .. data:: ERA_T_FMT + + Get a format string for :func:`strftime` to represent a time in a locale-specific era-based way. .. data:: ALT_DIGITS diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2322,7 +2322,7 @@ .. class:: memoryview(obj) Create a :class:`memoryview` that references *obj*. *obj* must support the - buffer protocol. Builtin objects that support the buffer protocol include + buffer protocol. Built-in objects that support the buffer protocol include :class:`bytes` and :class:`bytearray`. A :class:`memoryview` has the notion of an *element*, which is the diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -2306,9 +2306,11 @@ | bytedesign | complex classical | :func:`tracer`, delay,| | | turtle graphics pattern | :func:`update` | +----------------+------------------------------+-----------------------+ -| chaos | graphs verhust dynamics, | world coordinates | -| | proves that you must not | | -| | trust computers' computations| | +| chaos | graphs Verhulst dynamics, | world coordinates | +| | shows that computer's | | +| | computations can generate | | +| | results sometimes against the| | +| | common sense expectations | | +----------------+------------------------------+-----------------------+ | clock | analog clock showing time | turtles as clock's | | | of your computer | hands, ontimer | diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -119,9 +119,6 @@ * If the target list is a comma-separated list of targets: The object must be an iterable with the same number of items as there are targets in the target list, and the items are assigned, from left to right, to the corresponding targets. - (This rule is relaxed as of Python 1.5; in earlier versions, the object had to - be a tuple. Since strings are sequences, an assignment like ``a, b = "xy"`` is - now legal as long as the string has the right length.) * If the target list contains one target prefixed with an asterisk, called a "starred" target: The object must be a sequence with at least as many items @@ -991,10 +988,3 @@ :pep:`3104` - Access to Names in Outer Scopes The specification for the :keyword:`nonlocal` statement. - - -.. rubric:: Footnotes - -.. [#] It may occur within an :keyword:`except` or :keyword:`else` clause. The - restriction on occurring in the :keyword:`try` clause is implementor's - laziness and will eventually be lifted. diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst --- a/Doc/tutorial/inputoutput.rst +++ b/Doc/tutorial/inputoutput.rst @@ -19,18 +19,16 @@ of file objects; the standard output file can be referenced as ``sys.stdout``. See the Library Reference for more information on this.) -.. index:: module: string - Often you'll want more control over the formatting of your output than simply printing space-separated values. There are two ways to format your output; the first way is to do all the string handling yourself; using string slicing and concatenation operations you can create any layout you can imagine. The -standard module :mod:`string` contains some useful operations for padding +string type has some methods that perform useful operations for padding strings to a given column width; these will be discussed shortly. The second way is to use the :meth:`str.format` method. -The :mod:`string` module contains a class Template which offers yet another way -to substitute values into strings. +The :mod:`string` module contains a :class:`~string.Template` class which offers +yet another way to substitute values into strings. One question remains, of course: how do you convert values to strings? Luckily, Python has ways to convert any value to a string: pass it to the :func:`repr` -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:17:46 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:17:46 +0100 Subject: [Python-checkins] cpython (2.7): #11400: remove reference to pre-1.5 assignment behavior. Message-ID: http://hg.python.org/cpython/rev/50c44254352d changeset: 68293:50c44254352d branch: 2.7 parent: 68281:ce93b75add15 user: Georg Brandl date: Sun Mar 06 10:48:43 2011 +0100 summary: #11400: remove reference to pre-1.5 assignment behavior. files: Doc/reference/simple_stmts.rst diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -121,9 +121,6 @@ * If the target list is a comma-separated list of targets: The object must be an iterable with the same number of items as there are targets in the target list, and the items are assigned, from left to right, to the corresponding targets. - (This rule is relaxed as of Python 1.5; in earlier versions, the object had to - be a tuple. Since strings are sequences, an assignment like ``a, b = "xy"`` is - now legal as long as the string has the right length.) Assignment of an object to a single target is recursively defined as follows. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:17:47 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:17:47 +0100 Subject: [Python-checkins] cpython (2.7): #11405: do not reference the string module again for its deprecated functions, Message-ID: http://hg.python.org/cpython/rev/23839b3c621d changeset: 68294:23839b3c621d branch: 2.7 user: Georg Brandl date: Sun Mar 06 10:56:18 2011 +0100 summary: #11405: do not reference the string module again for its deprecated functions, only for Template class. files: Doc/tutorial/inputoutput.rst diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst --- a/Doc/tutorial/inputoutput.rst +++ b/Doc/tutorial/inputoutput.rst @@ -19,16 +19,17 @@ of file objects; the standard output file can be referenced as ``sys.stdout``. See the Library Reference for more information on this.) -.. index:: module: string - Often you'll want more control over the formatting of your output than simply printing space-separated values. There are two ways to format your output; the first way is to do all the string handling yourself; using string slicing and concatenation operations you can create any layout you can imagine. The -standard module :mod:`string` contains some useful operations for padding +string types have some methods that perform useful operations for padding strings to a given column width; these will be discussed shortly. The second way is to use the :meth:`str.format` method. +The :mod:`string` module contains a :class:`~string.Template` class which offers +yet another way to substitute values into strings. + One question remains, of course: how do you convert values to strings? Luckily, Python has ways to convert any value to a string: pass it to the :func:`repr` or :func:`str` functions. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:17:48 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:17:48 +0100 Subject: [Python-checkins] cpython (2.7): #11392: you can trust the computer, but you have to know what it does. Message-ID: http://hg.python.org/cpython/rev/46cf2a6fe3cc changeset: 68295:46cf2a6fe3cc branch: 2.7 user: Georg Brandl date: Sun Mar 06 10:53:55 2011 +0100 summary: #11392: you can trust the computer, but you have to know what it does. files: Doc/library/turtle.rst diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -2169,9 +2169,11 @@ | bytedesign | complex classical | :func:`tracer`, delay,| | | turtlegraphics pattern | :func:`update` | +----------------+------------------------------+-----------------------+ -| chaos | graphs verhust dynamics, | world coordinates | -| | proves that you must not | | -| | trust computers' computations| | +| chaos | graphs Verhulst dynamics, | world coordinates | +| | shows that computer's | | +| | computations can generate | | +| | results sometimes against the| | +| | common sense expectations | | +----------------+------------------------------+-----------------------+ | clock | analog clock showing time | turtles as clock's | | | of your computer | hands, ontimer | -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:17:49 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:17:49 +0100 Subject: [Python-checkins] cpython (2.7): #11373: fix spelling. Message-ID: http://hg.python.org/cpython/rev/aea4a7861390 changeset: 68296:aea4a7861390 branch: 2.7 user: Georg Brandl date: Sun Mar 06 10:57:52 2011 +0100 summary: #11373: fix spelling. files: Doc/library/stdtypes.rst diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2575,7 +2575,7 @@ .. class:: memoryview(obj) Create a :class:`memoryview` that references *obj*. *obj* must support the - buffer protocol. Builtin objects that support the buffer protocol include + buffer protocol. Built-in objects that support the buffer protocol include :class:`str` and :class:`bytearray` (but not :class:`unicode`). A :class:`memoryview` has the notion of an *element*, which is the -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:17:50 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:17:50 +0100 Subject: [Python-checkins] cpython (2.7): #11239: add } to list of metacharacters (it is only a metacharacter sometimes, Message-ID: http://hg.python.org/cpython/rev/8d60032c7695 changeset: 68297:8d60032c7695 branch: 2.7 user: Georg Brandl date: Sun Mar 06 11:07:11 2011 +0100 summary: #11239: add } to list of metacharacters (it is only a metacharacter sometimes, ie. when closing a {n,m} group, but so is ]. files: Doc/howto/regex.rst diff --git a/Doc/howto/regex.rst b/Doc/howto/regex.rst --- a/Doc/howto/regex.rst +++ b/Doc/howto/regex.rst @@ -81,7 +81,7 @@ Here's a complete list of the metacharacters; their meanings will be discussed in the rest of this HOWTO. :: - . ^ $ * + ? { [ ] \ | ( ) + . ^ $ * + ? { } [ ] \ | ( ) The first metacharacters we'll look at are ``[`` and ``]``. They're used for specifying a character class, which is a set of characters that you wish to -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:17:52 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:17:52 +0100 Subject: [Python-checkins] cpython (2.7): #11294: add missing ERA_T_FMT to locale docs. Message-ID: http://hg.python.org/cpython/rev/27566bf160d5 changeset: 68298:27566bf160d5 branch: 2.7 user: Georg Brandl date: Sun Mar 06 11:09:51 2011 +0100 summary: #11294: add missing ERA_T_FMT to locale docs. files: Doc/library/locale.rst diff --git a/Doc/library/locale.rst b/Doc/library/locale.rst --- a/Doc/library/locale.rst +++ b/Doc/library/locale.rst @@ -165,7 +165,7 @@ .. data:: D_T_FMT Get a string that can be used as a format string for :func:`strftime` to - represent time and date in a locale-specific way. + represent date and time in a locale-specific way. .. data:: D_FMT @@ -250,12 +250,17 @@ .. data:: ERA_D_T_FMT - Get a format string for :func:`strftime` to represent dates and times in a + Get a format string for :func:`strftime` to represent date and time in a locale-specific era-based way. .. data:: ERA_D_FMT - Get a format string for :func:`strftime` to represent time in a + Get a format string for :func:`strftime` to represent a date in a + locale-specific era-based way. + + .. data:: ERA_T_FMT + + Get a format string for :func:`strftime` to represent a time in a locale-specific era-based way. .. data:: ALT_DIGITS -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:17:53 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 06 Mar 2011 11:17:53 +0100 Subject: [Python-checkins] cpython (2.7): #11292: add missing A_REVERSE to curses attribute table. Message-ID: http://hg.python.org/cpython/rev/60811cd05686 changeset: 68299:60811cd05686 branch: 2.7 user: Georg Brandl date: Sun Mar 06 11:08:35 2011 +0100 summary: #11292: add missing A_REVERSE to curses attribute table. files: Doc/library/curses.rst diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -1176,6 +1176,9 @@ +------------------+-------------------------------+ | ``A_NORMAL`` | Normal attribute. | +------------------+-------------------------------+ +| ``A_REVERSE`` | Reverse background and | +| | foreground colors. | ++------------------+-------------------------------+ | ``A_STANDOUT`` | Standout mode. | +------------------+-------------------------------+ | ``A_UNDERLINE`` | Underline mode. | -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 11:30:45 2011 From: python-checkins at python.org (ned.deily) Date: Sun, 06 Mar 2011 11:30:45 +0100 Subject: [Python-checkins] devguide: Add missing --no-commit to hg import example. Message-ID: http://hg.python.org/devguide/rev/2dc4142320a6 changeset: 377:2dc4142320a6 user: Ned Deily date: Sun Mar 06 02:30:15 2011 -0800 summary: Add missing --no-commit to hg import example. files: committing.rst diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -190,7 +190,7 @@ update your working copy to the 2.7 branch, then import the patch:: hg update 2.7 - hg export a7df1a869e4a | hg import - + hg export a7df1a869e4a | hg import --no-commit - # Compile; run the test suite hg commit -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sun Mar 6 12:28:44 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 06 Mar 2011 12:28:44 +0100 Subject: [Python-checkins] cpython (3.1): Convert DOS files to CRLF. This doesn't touch the .hgeol settings, so that the Message-ID: http://hg.python.org/cpython/rev/c7e71d6ad48f changeset: 68300:c7e71d6ad48f branch: 3.1 parent: 68290:6f861f98a3c5 user: Martin v. L?wis date: Sun Mar 06 11:28:23 2011 +0100 summary: Convert DOS files to CRLF. This doesn't touch the .hgeol settings, so that the files will have the right line ending even if the extension is not active. files: PC/VC6/_ctypes.dsp PC/VC6/_ctypes_test.dsp PC/VC6/_elementtree.dsp PC/VC6/_msi.dsp PC/VC6/_multiprocessing.dsp PC/VC6/_socket.dsp PC/VC6/_sqlite3.dsp PC/VC6/_testcapi.dsp PC/VC6/_tkinter.dsp PC/VC6/bz2.dsp PC/VC6/pyexpat.dsp PC/VC6/pythoncore.dsp PC/VC6/select.dsp PC/VC6/unicodedata.dsp PC/VC6/w9xpopen.dsp PC/VC6/winsound.dsp PC/VS7.1/_ctypes.vcproj PC/VS7.1/_ctypes_test.vcproj PC/VS7.1/_elementtree.vcproj PC/VS7.1/_msi.vcproj PC/VS7.1/_socket.vcproj PC/VS7.1/_sqlite3.vcproj PC/VS7.1/_ssl.vcproj PC/VS7.1/_testcapi.vcproj PC/VS7.1/_tkinter.vcproj PC/VS7.1/bz2.vcproj PC/VS7.1/make_buildinfo.vcproj PC/VS7.1/make_versioninfo.vcproj PC/VS7.1/pcbuild.sln PC/VS7.1/pyexpat.vcproj PC/VS7.1/python.vcproj PC/VS7.1/pythoncore.vcproj PC/VS7.1/pythonw.vcproj PC/VS7.1/select.vcproj PC/VS7.1/unicodedata.vcproj PC/VS7.1/w9xpopen.vcproj PC/VS7.1/winsound.vcproj PC/VS8.0/_ctypes.vcproj PC/VS8.0/_ctypes_test.vcproj PC/VS8.0/_elementtree.vcproj PC/VS8.0/_hashlib.vcproj PC/VS8.0/_msi.vcproj PC/VS8.0/_multiprocessing.vcproj PC/VS8.0/_socket.vcproj PC/VS8.0/_sqlite3.vcproj PC/VS8.0/_ssl.vcproj PC/VS8.0/_testcapi.vcproj PC/VS8.0/_tkinter.vcproj PC/VS8.0/bdist_wininst.vcproj PC/VS8.0/bz2.vcproj PC/VS8.0/kill_python.vcproj PC/VS8.0/make_buildinfo.vcproj PC/VS8.0/make_versioninfo.vcproj PC/VS8.0/pcbuild.sln PC/VS8.0/pyd.vsprops PC/VS8.0/pyd_d.vsprops PC/VS8.0/pyexpat.vcproj PC/VS8.0/pyproject.vsprops PC/VS8.0/python.vcproj PC/VS8.0/pythoncore.vcproj PC/VS8.0/pythonw.vcproj PC/VS8.0/select.vcproj PC/VS8.0/sqlite3.vcproj PC/VS8.0/sqlite3.vsprops PC/VS8.0/unicodedata.vcproj PC/VS8.0/w9xpopen.vcproj PC/VS8.0/winsound.vcproj PC/bdist_wininst/wininst-7.1.sln PC/bdist_wininst/wininst-7.1.vcproj PC/bdist_wininst/wininst-8.sln PC/bdist_wininst/wininst-8.vcproj PC/bdist_wininst/wininst.dsp PC/bdist_wininst/wininst.dsw PC/example_nt/example.sln PC/example_nt/example.vcproj PCbuild/_ctypes.vcproj PCbuild/_ctypes_test.vcproj PCbuild/_elementtree.vcproj PCbuild/_hashlib.vcproj PCbuild/_msi.vcproj PCbuild/_multiprocessing.vcproj PCbuild/_socket.vcproj PCbuild/_sqlite3.vcproj PCbuild/_ssl.vcproj PCbuild/_testcapi.vcproj PCbuild/_tkinter.vcproj PCbuild/bdist_wininst.vcproj PCbuild/bz2.vcproj PCbuild/debug.vsprops PCbuild/kill_python.vcproj PCbuild/make_buildinfo.vcproj PCbuild/make_versioninfo.vcproj PCbuild/pcbuild.sln PCbuild/pginstrument.vsprops PCbuild/pgupdate.vsprops PCbuild/pyd.vsprops PCbuild/pyd_d.vsprops PCbuild/pyexpat.vcproj PCbuild/pyproject.vsprops PCbuild/python.vcproj PCbuild/pythoncore.vcproj PCbuild/pythonw.vcproj PCbuild/release.vsprops PCbuild/select.vcproj PCbuild/sqlite3.vcproj PCbuild/sqlite3.vsprops PCbuild/unicodedata.vcproj PCbuild/w9xpopen.vcproj PCbuild/winsound.vcproj PCbuild/x64.vsprops diff --git a/PC/VC6/_ctypes.dsp b/PC/VC6/_ctypes.dsp --- a/PC/VC6/_ctypes.dsp +++ b/PC/VC6/_ctypes.dsp @@ -1,131 +1,131 @@ -# Microsoft Developer Studio Project File - Name="_ctypes" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_ctypes - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_ctypes.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_ctypes.mak" CFG="_ctypes - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_ctypes - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_ctypes - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_ctypes" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_ctypes - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_ctypes" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\_ctypes\libffi_msvc" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_ctypes - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_ctypes" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\_ctypes\libffi_msvc" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_ctypes - Win32 Release" -# Name "_ctypes - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\_ctypes.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\callbacks.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\callproc.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\cfield.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\libffi_msvc\ffi.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\malloc_closure.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\libffi_msvc\prep_cif.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\stgdict.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\libffi_msvc\win32.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_ctypes" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_ctypes - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_ctypes.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_ctypes.mak" CFG="_ctypes - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_ctypes - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_ctypes - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_ctypes" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_ctypes - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_ctypes" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\_ctypes\libffi_msvc" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_ctypes - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_ctypes" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\_ctypes\libffi_msvc" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_ctypes - Win32 Release" +# Name "_ctypes - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\_ctypes.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\callbacks.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\callproc.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\cfield.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\libffi_msvc\ffi.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\malloc_closure.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\libffi_msvc\prep_cif.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\stgdict.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\libffi_msvc\win32.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_ctypes_test.dsp b/PC/VC6/_ctypes_test.dsp --- a/PC/VC6/_ctypes_test.dsp +++ b/PC/VC6/_ctypes_test.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="_ctypes_test" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_ctypes_test - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_ctypes_test.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_ctypes_test.mak" CFG="_ctypes_test - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_ctypes_test - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_ctypes_test - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_ctypes_test" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_ctypes_test - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_ctypes_test" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_test.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_ctypes_test - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_ctypes_test" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_test_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_ctypes_test - Win32 Release" -# Name "_ctypes_test - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\_ctypes_test.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_ctypes_test" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_ctypes_test - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_ctypes_test.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_ctypes_test.mak" CFG="_ctypes_test - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_ctypes_test - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_ctypes_test - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_ctypes_test" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_ctypes_test - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_ctypes_test" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_test.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_ctypes_test - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_ctypes_test" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_test_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_ctypes_test - Win32 Release" +# Name "_ctypes_test - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\_ctypes_test.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_elementtree.dsp b/PC/VC6/_elementtree.dsp --- a/PC/VC6/_elementtree.dsp +++ b/PC/VC6/_elementtree.dsp @@ -1,111 +1,111 @@ -# Microsoft Developer Studio Project File - Name="_elementtree" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_elementtree - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_elementtree.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_elementtree.mak" CFG="_elementtree - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_elementtree - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_elementtree - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_elementtree" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_elementtree - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_elementtree" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D "BYTEORDER=1234" /D "XML_CONTEXT_BYTES=1024" /D "USE_PYEXPAT_CAPI" /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d100000" /subsystem:windows /dll /debug /machine:I386 /out:"./_elementtree.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_elementtree - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_elementtree" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D "BYTEORDER=1234" /D "XML_CONTEXT_BYTES=1024" /D "USE_PYEXPAT_CAPI" /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d100000" /subsystem:windows /dll /debug /machine:I386 /out:"./_elementtree_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_elementtree - Win32 Release" -# Name "_elementtree - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_elementtree.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmlparse.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmlrole.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmltok.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_elementtree" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_elementtree - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_elementtree.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_elementtree.mak" CFG="_elementtree - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_elementtree - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_elementtree - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_elementtree" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_elementtree - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_elementtree" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D "BYTEORDER=1234" /D "XML_CONTEXT_BYTES=1024" /D "USE_PYEXPAT_CAPI" /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d100000" /subsystem:windows /dll /debug /machine:I386 /out:"./_elementtree.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_elementtree - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_elementtree" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D "BYTEORDER=1234" /D "XML_CONTEXT_BYTES=1024" /D "USE_PYEXPAT_CAPI" /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d100000" /subsystem:windows /dll /debug /machine:I386 /out:"./_elementtree_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_elementtree - Win32 Release" +# Name "_elementtree - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_elementtree.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmlparse.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmlrole.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmltok.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_msi.dsp b/PC/VC6/_msi.dsp --- a/PC/VC6/_msi.dsp +++ b/PC/VC6/_msi.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="_msi" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_msi - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_msi.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_msi.mak" CFG="_msi - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_msi - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_msi - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_msi" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_msi - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_msi" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_msi.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_msi - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_msi" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_msi_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_msi - Win32 Release" -# Name "_msi - Win32 Debug" -# Begin Source File - -SOURCE=..\..\PC\_msi.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_msi" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_msi - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_msi.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_msi.mak" CFG="_msi - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_msi - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_msi - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_msi" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_msi - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_msi" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_msi.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_msi - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_msi" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_msi_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_msi - Win32 Release" +# Name "_msi - Win32 Debug" +# Begin Source File + +SOURCE=..\..\PC\_msi.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_multiprocessing.dsp b/PC/VC6/_multiprocessing.dsp --- a/PC/VC6/_multiprocessing.dsp +++ b/PC/VC6/_multiprocessing.dsp @@ -1,115 +1,115 @@ -# Microsoft Developer Studio Project File - Name="_multiprocessing" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_multiprocessing - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_multiprocessing.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_multiprocessing.mak" CFG="_multiprocessing - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_multiprocessing - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_multiprocessing - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_multiprocessing" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_multiprocessing - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_multiprocessing" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_multiprocessing.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_multiprocessing - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_multiprocessing" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1d0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_multiprocessing_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_multiprocessing - Win32 Release" -# Name "_multiprocessing - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_multiprocessing\multiprocessing.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_multiprocessing\pipe_connection.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_multiprocessing\semaphore.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_multiprocessing\socket_connection.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_multiprocessing\win32_functions.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_multiprocessing" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_multiprocessing - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_multiprocessing.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_multiprocessing.mak" CFG="_multiprocessing - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_multiprocessing - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_multiprocessing - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_multiprocessing" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_multiprocessing - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_multiprocessing" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_multiprocessing.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_multiprocessing - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_multiprocessing" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1d0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_multiprocessing_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_multiprocessing - Win32 Release" +# Name "_multiprocessing - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_multiprocessing\multiprocessing.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_multiprocessing\pipe_connection.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_multiprocessing\semaphore.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_multiprocessing\socket_connection.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_multiprocessing\win32_functions.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_socket.dsp b/PC/VC6/_socket.dsp --- a/PC/VC6/_socket.dsp +++ b/PC/VC6/_socket.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="_socket" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_socket - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_socket.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_socket.mak" CFG="_socket - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_socket - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_socket - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_socket" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_socket - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_socket" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_socket.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_socket - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_socket" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_socket_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_socket - Win32 Release" -# Name "_socket - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\socketmodule.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_socket" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_socket - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_socket.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_socket.mak" CFG="_socket - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_socket - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_socket - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_socket" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_socket - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_socket" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_socket.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_socket - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_socket" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_socket_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_socket - Win32 Release" +# Name "_socket - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\socketmodule.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_sqlite3.dsp b/PC/VC6/_sqlite3.dsp --- a/PC/VC6/_sqlite3.dsp +++ b/PC/VC6/_sqlite3.dsp @@ -1,131 +1,131 @@ -# Microsoft Developer Studio Project File - Name="_sqlite3" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_sqlite3 - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_sqlite3.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_sqlite3.mak" CFG="_sqlite3 - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_sqlite3 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_sqlite3 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_sqlite3" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_sqlite3 - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_sqlite3" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\..\sqlite-source-3.3.4" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D MODULE_NAME=\"sqlite3\" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\sqlite-source-3.3.4\sqlite3.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /out:"./_sqlite3.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_sqlite3 - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_sqlite3" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\..\sqlite-source-3.3.4" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D MODULE_NAME=\"sqlite3\" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\sqlite-source-3.3.4\sqlite3.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /out:"./_sqlite3_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_sqlite3 - Win32 Release" -# Name "_sqlite3 - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\cache.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\connection.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\cursor.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\microprotocols.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\module.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\prepare_protocol.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\row.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\statement.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\util.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_sqlite3" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_sqlite3 - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_sqlite3.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_sqlite3.mak" CFG="_sqlite3 - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_sqlite3 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_sqlite3 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_sqlite3" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_sqlite3 - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_sqlite3" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\..\sqlite-source-3.3.4" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D MODULE_NAME=\"sqlite3\" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\sqlite-source-3.3.4\sqlite3.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /out:"./_sqlite3.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_sqlite3 - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_sqlite3" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\..\sqlite-source-3.3.4" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D MODULE_NAME=\"sqlite3\" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\sqlite-source-3.3.4\sqlite3.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /out:"./_sqlite3_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_sqlite3 - Win32 Release" +# Name "_sqlite3 - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\cache.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\connection.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\cursor.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\microprotocols.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\module.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\prepare_protocol.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\row.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\statement.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\util.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_testcapi.dsp b/PC/VC6/_testcapi.dsp --- a/PC/VC6/_testcapi.dsp +++ b/PC/VC6/_testcapi.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="_testcapi" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_testcapi - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_testcapi.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_testcapi.mak" CFG="_testcapi - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_testcapi - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_testcapi - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_testcapi" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_testcapi - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_testcapi" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "NDEBUG" -# ADD RSC /l 0xc09 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1e1F0000" /dll /machine:I386 /out:"./_testcapi.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_testcapi - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_testcapi" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "_DEBUG" -# ADD RSC /l 0xc09 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1e1F0000" /dll /debug /machine:I386 /out:"./_testcapi_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_testcapi - Win32 Release" -# Name "_testcapi - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_testcapimodule.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_testcapi" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_testcapi - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_testcapi.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_testcapi.mak" CFG="_testcapi - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_testcapi - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_testcapi - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_testcapi" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_testcapi - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_testcapi" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "NDEBUG" +# ADD RSC /l 0xc09 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1e1F0000" /dll /machine:I386 /out:"./_testcapi.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_testcapi - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_testcapi" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "_DEBUG" +# ADD RSC /l 0xc09 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1e1F0000" /dll /debug /machine:I386 /out:"./_testcapi_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_testcapi - Win32 Release" +# Name "_testcapi - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_testcapimodule.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_tkinter.dsp b/PC/VC6/_tkinter.dsp --- a/PC/VC6/_tkinter.dsp +++ b/PC/VC6/_tkinter.dsp @@ -1,103 +1,103 @@ -# Microsoft Developer Studio Project File - Name="_tkinter" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_tkinter - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_tkinter.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_tkinter.mak" CFG="_tkinter - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_tkinter - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_tkinter - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_tkinter" -# PROP Scc_LocalPath "..\..\.." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_tkinter - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_tkinter" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\..\tcltk\include" /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "WITH_APPINIT" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 ..\..\..\tcltk\lib\tk85g.lib ..\..\..\tcltk\lib\tcl85g.lib odbc32.lib odbccp32.lib user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1e190000" /subsystem:windows /dll /debug /machine:I386 /out:"./_tkinter_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_tkinter - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_tkinter" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\..\tcltk\include" /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "WITH_APPINIT" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 ..\..\..\tcltk\lib\tk85.lib ..\..\..\tcltk\lib\tcl85.lib odbc32.lib odbccp32.lib user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1e190000" /subsystem:windows /dll /debug /machine:I386 /out:"./_tkinter.pyd" -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_tkinter - Win32 Release" -# Name "_tkinter - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_tkinter.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\tkappinit.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_tkinter" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_tkinter - Win32 Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_tkinter.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_tkinter.mak" CFG="_tkinter - Win32 Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_tkinter - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_tkinter - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_tkinter" +# PROP Scc_LocalPath "..\..\.." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_tkinter - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_tkinter" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\..\tcltk\include" /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "WITH_APPINIT" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 ..\..\..\tcltk\lib\tk85g.lib ..\..\..\tcltk\lib\tcl85g.lib odbc32.lib odbccp32.lib user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1e190000" /subsystem:windows /dll /debug /machine:I386 /out:"./_tkinter_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_tkinter - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_tkinter" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\..\tcltk\include" /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "WITH_APPINIT" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 ..\..\..\tcltk\lib\tk85.lib ..\..\..\tcltk\lib\tcl85.lib odbc32.lib odbccp32.lib user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1e190000" /subsystem:windows /dll /debug /machine:I386 /out:"./_tkinter.pyd" +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_tkinter - Win32 Release" +# Name "_tkinter - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_tkinter.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\tkappinit.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/bz2.dsp b/PC/VC6/bz2.dsp --- a/PC/VC6/bz2.dsp +++ b/PC/VC6/bz2.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="bz2" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=bz2 - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "bz2.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "bz2.mak" CFG="bz2 - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "bz2 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "bz2 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "bz2" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "bz2 - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\bz2" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\..\bzip2-1.0.5" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 ..\..\..\bzip2-1.0.5\libbz2.lib /nologo /base:"0x1D170000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./bz2.pyd" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ELSEIF "$(CFG)" == "bz2 - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\bz2" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\..\bzip2-1.0.5" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 ..\..\..\bzip2-1.0.5\libbz2.lib /nologo /base:"0x1D170000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"msvcrt" /nodefaultlib:"libc" /out:"./bz2_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "bz2 - Win32 Release" -# Name "bz2 - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\bz2module.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="bz2" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=bz2 - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "bz2.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "bz2.mak" CFG="bz2 - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "bz2 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "bz2 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "bz2" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "bz2 - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\bz2" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\..\bzip2-1.0.5" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 ..\..\..\bzip2-1.0.5\libbz2.lib /nologo /base:"0x1D170000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./bz2.pyd" +# SUBTRACT LINK32 /pdb:none /nodefaultlib + +!ELSEIF "$(CFG)" == "bz2 - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\bz2" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\..\bzip2-1.0.5" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 ..\..\..\bzip2-1.0.5\libbz2.lib /nologo /base:"0x1D170000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"msvcrt" /nodefaultlib:"libc" /out:"./bz2_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "bz2 - Win32 Release" +# Name "bz2 - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\bz2module.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/pyexpat.dsp b/PC/VC6/pyexpat.dsp --- a/PC/VC6/pyexpat.dsp +++ b/PC/VC6/pyexpat.dsp @@ -1,111 +1,111 @@ -# Microsoft Developer Studio Project File - Name="pyexpat" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=pyexpat - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "pyexpat.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "pyexpat.mak" CFG="pyexpat - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "pyexpat - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "pyexpat - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "pyexpat" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "pyexpat - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\pyexpat" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D BYTEORDER=1234 /D XML_CONTEXT_BYTES=1024 /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D100000" /subsystem:windows /dll /debug /machine:I386 /out:"./pyexpat.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "pyexpat - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\pyexpat" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "HAVE_EXPAT_H" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D BYTEORDER=1234 /D XML_CONTEXT_BYTES=1024 /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D100000" /subsystem:windows /dll /debug /machine:I386 /out:"./pyexpat_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "pyexpat - Win32 Release" -# Name "pyexpat - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\pyexpat.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmlparse.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmlrole.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmltok.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="pyexpat" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=pyexpat - Win32 Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "pyexpat.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "pyexpat.mak" CFG="pyexpat - Win32 Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "pyexpat - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "pyexpat - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "pyexpat" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "pyexpat - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\pyexpat" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D BYTEORDER=1234 /D XML_CONTEXT_BYTES=1024 /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D100000" /subsystem:windows /dll /debug /machine:I386 /out:"./pyexpat.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "pyexpat - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\pyexpat" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "HAVE_EXPAT_H" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D BYTEORDER=1234 /D XML_CONTEXT_BYTES=1024 /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D100000" /subsystem:windows /dll /debug /machine:I386 /out:"./pyexpat_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "pyexpat - Win32 Release" +# Name "pyexpat - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\pyexpat.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmlparse.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmlrole.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmltok.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/pythoncore.dsp b/PC/VC6/pythoncore.dsp --- a/PC/VC6/pythoncore.dsp +++ b/PC/VC6/pythoncore.dsp @@ -1,761 +1,761 @@ -# Microsoft Developer Studio Project File - Name="pythoncore" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=pythoncore - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "pythoncore.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "pythoncore.mak" CFG="pythoncore - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "pythoncore - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "pythoncore - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "pythoncore" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "pythoncore - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\pythoncore" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\modules\zlib" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "USE_DL_EXPORT" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL" -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL" -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /i "..\..\Include" /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python31.dll" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "pythoncore - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\pythoncore" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\modules\zlib" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "USE_DL_EXPORT" /D "WIN32" /D "_WINDOWS" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL" -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL" -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /i "..\..\Include" /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python31_d.dll" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "pythoncore - Win32 Release" -# Name "pythoncore - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_bisectmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_cn.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_hk.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_iso2022.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_jp.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_kr.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_tw.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_codecsmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_collectionsmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_csv.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_functoolsmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_heapqmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\_iomodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_json.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_localemodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_lsprof.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_pickle.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_randommodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sre.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_struct.c -# End Source File -# Begin Source File - -SOURCE=..\..\PC\_subprocess.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_threadmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\_warnings.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_weakref.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\abstract.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\acceler.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\adler32.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\arraymodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\asdl.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\ast.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\atexitmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\audioop.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\binascii.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\bitset.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\bltinmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\boolobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\bufferedio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\bytearrayobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\bytes_methods.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\bytesio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\bytesobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\capsule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\cellobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\ceval.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\classobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cmathmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\cobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\codecs.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\codeobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\compile.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\complexobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\compress.c -# End Source File -# Begin Source File - -SOURCE=..\config.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\crc32.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\datetimemodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\deflate.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\descrobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\dictobject.c -# End Source File -# Begin Source File - -SOURCE=..\dl_nt.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\dtoa.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\dynload_win.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\enumobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\errnomodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\errors.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\exceptions.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\fileio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\fileobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\firstsets.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\floatobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\formatter_unicode.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\frameobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\frozen.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\funcobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\future.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\gcmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\genobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getargs.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\getbuildinfo.c -# ADD CPP /D BUILD=46 -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getcompiler.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getcopyright.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getopt.c -# End Source File -# Begin Source File - -SOURCE=..\getpathp.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getplatform.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getversion.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\graminit.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\grammar.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\grammar1.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\gzio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\import.c -# End Source File -# Begin Source File - -SOURCE=..\import_nt.c -# ADD CPP /I "..\..\Python" -# End Source File -# Begin Source File - -SOURCE=..\..\Python\importdl.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\infback.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\inffast.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\inflate.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\inftrees.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\iobase.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\iterobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\itertoolsmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\listnode.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\listobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\longobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\main.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\marshal.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\mathmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\md5module.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\memoryobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\metagrammar.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\methodobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\mmapmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\modsupport.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\moduleobject.c -# End Source File -# Begin Source File - -SOURCE=..\msvcrtmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\multibytecodec.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\myreadline.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\mysnprintf.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\mystrtoul.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\node.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\object.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\obmalloc.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\operator.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\parser.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\parsermodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\parsetok.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\peephole.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\posixmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pyarena.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pyctype.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pyfpe.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pymath.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pystate.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pystrcmp.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pystrtod.c -# End Source File -# Begin Source File - -SOURCE="..\..\Python\Python-ast.c" -# End Source File -# Begin Source File - -SOURCE=..\python_nt.rc -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pythonrun.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\rangeobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\rotatingtree.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\setobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\sha1module.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\sha256module.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\sha512module.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\signalmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\sliceobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\stringio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\structmember.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\structseq.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\symtable.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\symtablemodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\sysmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\textio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\thread.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\timemodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\tokenizer.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\traceback.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\trees.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\tupleobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\typeobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\uncompr.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\unicodectype.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\unicodeobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\weakrefobject.c -# End Source File -# Begin Source File - -SOURCE=..\winreg.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\xxsubtype.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zipimport.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlibmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\zutil.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="pythoncore" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=pythoncore - Win32 Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "pythoncore.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "pythoncore.mak" CFG="pythoncore - Win32 Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "pythoncore - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "pythoncore - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "pythoncore" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "pythoncore - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\pythoncore" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\modules\zlib" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "USE_DL_EXPORT" /YX /FD /Zm200 /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL" +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL" +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /i "..\..\Include" /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python31.dll" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "pythoncore - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\pythoncore" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\modules\zlib" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "USE_DL_EXPORT" /D "WIN32" /D "_WINDOWS" /YX /FD /Zm200 /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL" +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL" +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /i "..\..\Include" /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python31_d.dll" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "pythoncore - Win32 Release" +# Name "pythoncore - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_bisectmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_cn.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_hk.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_iso2022.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_jp.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_kr.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_tw.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_codecsmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_collectionsmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_csv.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_functoolsmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_heapqmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\_iomodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_json.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_localemodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_lsprof.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_pickle.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_randommodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sre.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_struct.c +# End Source File +# Begin Source File + +SOURCE=..\..\PC\_subprocess.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_threadmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\_warnings.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_weakref.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\abstract.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\acceler.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\adler32.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\arraymodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\asdl.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\ast.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\atexitmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\audioop.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\binascii.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\bitset.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\bltinmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\boolobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\bufferedio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\bytearrayobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\bytes_methods.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\bytesio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\bytesobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\capsule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\cellobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\ceval.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\classobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cmathmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\cobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\codecs.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\codeobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\compile.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\complexobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\compress.c +# End Source File +# Begin Source File + +SOURCE=..\config.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\crc32.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\datetimemodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\deflate.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\descrobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\dictobject.c +# End Source File +# Begin Source File + +SOURCE=..\dl_nt.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\dtoa.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\dynload_win.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\enumobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\errnomodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\errors.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\exceptions.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\fileio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\fileobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\firstsets.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\floatobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\formatter_unicode.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\frameobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\frozen.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\funcobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\future.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\gcmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\genobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getargs.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\getbuildinfo.c +# ADD CPP /D BUILD=46 +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getcompiler.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getcopyright.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getopt.c +# End Source File +# Begin Source File + +SOURCE=..\getpathp.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getplatform.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getversion.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\graminit.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\grammar.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\grammar1.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\gzio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\import.c +# End Source File +# Begin Source File + +SOURCE=..\import_nt.c +# ADD CPP /I "..\..\Python" +# End Source File +# Begin Source File + +SOURCE=..\..\Python\importdl.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\infback.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\inffast.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\inflate.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\inftrees.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\iobase.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\iterobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\itertoolsmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\listnode.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\listobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\longobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\main.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\marshal.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\mathmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\md5module.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\memoryobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\metagrammar.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\methodobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\mmapmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\modsupport.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\moduleobject.c +# End Source File +# Begin Source File + +SOURCE=..\msvcrtmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\multibytecodec.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\myreadline.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\mysnprintf.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\mystrtoul.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\node.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\object.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\obmalloc.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\operator.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\parser.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\parsermodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\parsetok.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\peephole.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\posixmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pyarena.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pyctype.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pyfpe.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pymath.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pystate.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pystrcmp.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pystrtod.c +# End Source File +# Begin Source File + +SOURCE="..\..\Python\Python-ast.c" +# End Source File +# Begin Source File + +SOURCE=..\python_nt.rc +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pythonrun.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\rangeobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\rotatingtree.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\setobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\sha1module.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\sha256module.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\sha512module.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\signalmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\sliceobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\stringio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\structmember.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\structseq.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\symtable.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\symtablemodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\sysmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\textio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\thread.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\timemodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\tokenizer.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\traceback.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\trees.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\tupleobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\typeobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\uncompr.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\unicodectype.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\unicodeobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\weakrefobject.c +# End Source File +# Begin Source File + +SOURCE=..\winreg.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\xxsubtype.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zipimport.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlibmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\zutil.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/select.dsp b/PC/VC6/select.dsp --- a/PC/VC6/select.dsp +++ b/PC/VC6/select.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="select" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=select - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "select.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "select.mak" CFG="select - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "select - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "select - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "select" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "select - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\select" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /base:"0x1D110000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./select.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "select - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\select" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /base:"0x1D110000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /nodefaultlib:"msvcrt" /out:"./select_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "select - Win32 Release" -# Name "select - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\selectmodule.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="select" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=select - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "select.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "select.mak" CFG="select - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "select - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "select - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "select" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "select - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\select" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /base:"0x1D110000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./select.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "select - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\select" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /base:"0x1D110000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /nodefaultlib:"msvcrt" /out:"./select_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "select - Win32 Release" +# Name "select - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\selectmodule.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/unicodedata.dsp b/PC/VC6/unicodedata.dsp --- a/PC/VC6/unicodedata.dsp +++ b/PC/VC6/unicodedata.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="unicodedata" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=unicodedata - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "unicodedata.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "unicodedata.mak" CFG="unicodedata - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "unicodedata - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "unicodedata - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "unicodedata" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "unicodedata - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\unicodedata" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "NDEBUG" -# ADD RSC /l 0xc09 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /machine:I386 /out:"./unicodedata.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "unicodedata - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\unicodedata" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "_DEBUG" -# ADD RSC /l 0xc09 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /debug /machine:I386 /out:"./unicodedata_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "unicodedata - Win32 Release" -# Name "unicodedata - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\unicodedata.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="unicodedata" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=unicodedata - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "unicodedata.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "unicodedata.mak" CFG="unicodedata - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "unicodedata - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "unicodedata - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "unicodedata" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "unicodedata - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\unicodedata" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "NDEBUG" +# ADD RSC /l 0xc09 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /machine:I386 /out:"./unicodedata.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "unicodedata - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\unicodedata" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "_DEBUG" +# ADD RSC /l 0xc09 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /debug /machine:I386 /out:"./unicodedata_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "unicodedata - Win32 Release" +# Name "unicodedata - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\unicodedata.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/w9xpopen.dsp b/PC/VC6/w9xpopen.dsp --- a/PC/VC6/w9xpopen.dsp +++ b/PC/VC6/w9xpopen.dsp @@ -1,97 +1,97 @@ -# Microsoft Developer Studio Project File - Name="w9xpopen" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Application" 0x0101 - -CFG=w9xpopen - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "w9xpopen.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "w9xpopen.mak" CFG="w9xpopen - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "w9xpopen - Win32 Release" (based on "Win32 (x86) Application") -!MESSAGE "w9xpopen - Win32 Debug" (based on "Win32 (x86) Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "w9xpopen - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\w9xpopen" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "NDEBUG" -# ADD RSC /l 0xc09 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 -# ADD LINK32 user32.lib /nologo /machine:I386 -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "w9xpopen - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\w9xpopen" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "_DEBUG" -# ADD RSC /l 0xc09 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib /nologo /debug /machine:I386 /out:"./w9xpopen_d.exe" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "w9xpopen - Win32 Release" -# Name "w9xpopen - Win32 Debug" -# Begin Source File - -SOURCE=..\w9xpopen.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="w9xpopen" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=w9xpopen - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "w9xpopen.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "w9xpopen.mak" CFG="w9xpopen - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "w9xpopen - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "w9xpopen - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "w9xpopen - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\w9xpopen" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "NDEBUG" +# ADD RSC /l 0xc09 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 user32.lib /nologo /machine:I386 +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "w9xpopen - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\w9xpopen" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "_DEBUG" +# ADD RSC /l 0xc09 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib /nologo /debug /machine:I386 /out:"./w9xpopen_d.exe" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "w9xpopen - Win32 Release" +# Name "w9xpopen - Win32 Debug" +# Begin Source File + +SOURCE=..\w9xpopen.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/winsound.dsp b/PC/VC6/winsound.dsp --- a/PC/VC6/winsound.dsp +++ b/PC/VC6/winsound.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="winsound" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=winsound - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "winsound.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "winsound.mak" CFG="winsound - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "winsound - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "winsound - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "winsound" -# PROP Scc_LocalPath "..\pc" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "winsound - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\winsound" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "NDEBUG" -# ADD RSC /l 0xc09 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib winmm.lib user32.lib /nologo /base:"0x1D160000" /dll /machine:I386 /out:"./winsound.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "winsound - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\winsound" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "_DEBUG" -# ADD RSC /l 0xc09 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib winmm.lib /nologo /base:"0x1D160000" /dll /debug /machine:I386 /out:"./winsound_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "winsound - Win32 Release" -# Name "winsound - Win32 Debug" -# Begin Source File - -SOURCE=..\winsound.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="winsound" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=winsound - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "winsound.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "winsound.mak" CFG="winsound - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "winsound - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "winsound - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "winsound" +# PROP Scc_LocalPath "..\pc" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "winsound - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\winsound" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "NDEBUG" +# ADD RSC /l 0xc09 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 +# ADD LINK32 kernel32.lib winmm.lib user32.lib /nologo /base:"0x1D160000" /dll /machine:I386 /out:"./winsound.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "winsound - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\winsound" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "_DEBUG" +# ADD RSC /l 0xc09 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib winmm.lib /nologo /base:"0x1D160000" /dll /debug /machine:I386 /out:"./winsound_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "winsound - Win32 Release" +# Name "winsound - Win32 Debug" +# Begin Source File + +SOURCE=..\winsound.c +# End Source File +# End Target +# End Project diff --git a/PC/VS7.1/_ctypes.vcproj b/PC/VS7.1/_ctypes.vcproj --- a/PC/VS7.1/_ctypes.vcproj +++ b/PC/VS7.1/_ctypes.vcproj @@ -1,311 +1,311 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_ctypes_test.vcproj b/PC/VS7.1/_ctypes_test.vcproj --- a/PC/VS7.1/_ctypes_test.vcproj +++ b/PC/VS7.1/_ctypes_test.vcproj @@ -1,242 +1,242 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_elementtree.vcproj b/PC/VS7.1/_elementtree.vcproj --- a/PC/VS7.1/_elementtree.vcproj +++ b/PC/VS7.1/_elementtree.vcproj @@ -1,264 +1,264 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_msi.vcproj b/PC/VS7.1/_msi.vcproj --- a/PC/VS7.1/_msi.vcproj +++ b/PC/VS7.1/_msi.vcproj @@ -1,252 +1,252 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_socket.vcproj b/PC/VS7.1/_socket.vcproj --- a/PC/VS7.1/_socket.vcproj +++ b/PC/VS7.1/_socket.vcproj @@ -1,254 +1,254 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_sqlite3.vcproj b/PC/VS7.1/_sqlite3.vcproj --- a/PC/VS7.1/_sqlite3.vcproj +++ b/PC/VS7.1/_sqlite3.vcproj @@ -1,283 +1,283 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_ssl.vcproj b/PC/VS7.1/_ssl.vcproj --- a/PC/VS7.1/_ssl.vcproj +++ b/PC/VS7.1/_ssl.vcproj @@ -1,84 +1,84 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_testcapi.vcproj b/PC/VS7.1/_testcapi.vcproj --- a/PC/VS7.1/_testcapi.vcproj +++ b/PC/VS7.1/_testcapi.vcproj @@ -1,247 +1,247 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_tkinter.vcproj b/PC/VS7.1/_tkinter.vcproj --- a/PC/VS7.1/_tkinter.vcproj +++ b/PC/VS7.1/_tkinter.vcproj @@ -1,261 +1,261 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/bz2.vcproj b/PC/VS7.1/bz2.vcproj --- a/PC/VS7.1/bz2.vcproj +++ b/PC/VS7.1/bz2.vcproj @@ -1,271 +1,271 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/make_buildinfo.vcproj b/PC/VS7.1/make_buildinfo.vcproj --- a/PC/VS7.1/make_buildinfo.vcproj +++ b/PC/VS7.1/make_buildinfo.vcproj @@ -1,122 +1,122 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/make_versioninfo.vcproj b/PC/VS7.1/make_versioninfo.vcproj --- a/PC/VS7.1/make_versioninfo.vcproj +++ b/PC/VS7.1/make_versioninfo.vcproj @@ -1,142 +1,142 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/pcbuild.sln b/PC/VS7.1/pcbuild.sln --- a/PC/VS7.1/pcbuild.sln +++ b/PC/VS7.1/pcbuild.sln @@ -1,275 +1,275 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{324F66C2-44D0-4D50-B979-F9DAE7FD36DB}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{59CBF474-9E06-4C50-9142-C44A118BB447}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{5B51DFF7-5DC0-41F8-8791-A4AB7114A151}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{AC557788-6354-43F7-BE05-C9C8C59A344A}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{7E551393-3C43-47F8-9F3F-5BC368A6C487}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" - ProjectSection(ProjectDependencies) = postProject - {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} - {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{97239A56-DBC0-41D2-BC14-C87D9B97D63B}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{51F35FAE-FB92-4B2C-9187-1542C065AD77}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{F22F40F4-D318-40DC-96B3-88DC81CE0894}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{8CF334D9-4F82-42EB-97AF-83592C5AFD2F}" - ProjectSection(ProjectDependencies) = postProject - {F22F40F4-D318-40DC-96B3-88DC81CE0894} = {F22F40F4-D318-40DC-96B3-88DC81CE0894} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{2FF0A312-22F9-4C34-B070-842916DE27A9}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - ReleaseAMD64 = ReleaseAMD64 - ReleaseItanium = ReleaseItanium - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Debug.ActiveCfg = Debug|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Debug.Build.0 = Debug|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Release.ActiveCfg = Release|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Release.Build.0 = Release|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Debug.ActiveCfg = Debug|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Debug.Build.0 = Debug|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Release.ActiveCfg = Release|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Release.Build.0 = Release|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.Debug.ActiveCfg = Debug|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.Debug.Build.0 = Debug|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.Release.ActiveCfg = Release|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.Release.Build.0 = Release|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Debug.ActiveCfg = Debug|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Debug.Build.0 = Debug|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Release.ActiveCfg = Release|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Release.Build.0 = Release|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.Debug.ActiveCfg = Debug|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.Debug.Build.0 = Debug|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.Release.ActiveCfg = Release|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.Release.Build.0 = Release|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug.ActiveCfg = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug.Build.0 = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseAMD64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseAMD64.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseItanium.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseItanium.Build.0 = Release|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Debug.ActiveCfg = Debug|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Debug.Build.0 = Debug|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Release.ActiveCfg = Release|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Release.Build.0 = Release|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug.ActiveCfg = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug.Build.0 = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release.ActiveCfg = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release.Build.0 = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug.ActiveCfg = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug.Build.0 = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release.ActiveCfg = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release.Build.0 = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug.ActiveCfg = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug.Build.0 = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release.ActiveCfg = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release.Build.0 = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Debug.ActiveCfg = Debug|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Debug.Build.0 = Debug|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Release.ActiveCfg = Release|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Release.Build.0 = Release|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Debug.ActiveCfg = Debug|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Debug.Build.0 = Debug|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Release.ActiveCfg = Release|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Release.Build.0 = Release|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug.ActiveCfg = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug.Build.0 = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release.ActiveCfg = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release.Build.0 = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.ReleaseAMD64.ActiveCfg = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.ReleaseItanium.ActiveCfg = Release|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Debug.ActiveCfg = Debug|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Debug.Build.0 = Debug|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Release.ActiveCfg = Release|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Release.Build.0 = Release|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Debug.ActiveCfg = Debug|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Debug.Build.0 = Debug|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Release.ActiveCfg = Release|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Release.Build.0 = Release|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug.ActiveCfg = Debug|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug.Build.0 = Debug|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseAMD64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseAMD64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseItanium.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseItanium.Build.0 = Release|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Debug.ActiveCfg = Debug|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Debug.Build.0 = Debug|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Release.ActiveCfg = Release|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Release.Build.0 = Release|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Debug.ActiveCfg = Debug|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Debug.Build.0 = Debug|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Release.ActiveCfg = Release|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Release.Build.0 = Release|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Debug.ActiveCfg = Debug|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Debug.Build.0 = Debug|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Release.ActiveCfg = Release|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Release.Build.0 = Release|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.Debug.ActiveCfg = Debug|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.Debug.Build.0 = Debug|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.Release.ActiveCfg = Release|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.Release.Build.0 = Release|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - EndGlobalSection - GlobalSection(SolutionItems) = postSolution - ..\Modules\getbuildinfo.c = ..\Modules\getbuildinfo.c - readme.txt = readme.txt - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{324F66C2-44D0-4D50-B979-F9DAE7FD36DB}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{59CBF474-9E06-4C50-9142-C44A118BB447}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{5B51DFF7-5DC0-41F8-8791-A4AB7114A151}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{AC557788-6354-43F7-BE05-C9C8C59A344A}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{7E551393-3C43-47F8-9F3F-5BC368A6C487}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" + ProjectSection(ProjectDependencies) = postProject + {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} + {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{97239A56-DBC0-41D2-BC14-C87D9B97D63B}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{51F35FAE-FB92-4B2C-9187-1542C065AD77}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{F22F40F4-D318-40DC-96B3-88DC81CE0894}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{8CF334D9-4F82-42EB-97AF-83592C5AFD2F}" + ProjectSection(ProjectDependencies) = postProject + {F22F40F4-D318-40DC-96B3-88DC81CE0894} = {F22F40F4-D318-40DC-96B3-88DC81CE0894} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{2FF0A312-22F9-4C34-B070-842916DE27A9}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + Debug = Debug + Release = Release + ReleaseAMD64 = ReleaseAMD64 + ReleaseItanium = ReleaseItanium + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Debug.ActiveCfg = Debug|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Debug.Build.0 = Debug|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Release.ActiveCfg = Release|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Release.Build.0 = Release|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Debug.ActiveCfg = Debug|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Debug.Build.0 = Debug|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Release.ActiveCfg = Release|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Release.Build.0 = Release|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.Debug.ActiveCfg = Debug|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.Debug.Build.0 = Debug|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.Release.ActiveCfg = Release|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.Release.Build.0 = Release|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Debug.ActiveCfg = Debug|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Debug.Build.0 = Debug|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Release.ActiveCfg = Release|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Release.Build.0 = Release|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.Debug.ActiveCfg = Debug|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.Debug.Build.0 = Debug|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.Release.ActiveCfg = Release|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.Release.Build.0 = Release|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug.ActiveCfg = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug.Build.0 = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseAMD64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseAMD64.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseItanium.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseItanium.Build.0 = Release|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Debug.ActiveCfg = Debug|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Debug.Build.0 = Debug|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Release.ActiveCfg = Release|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Release.Build.0 = Release|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug.ActiveCfg = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug.Build.0 = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release.ActiveCfg = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release.Build.0 = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug.ActiveCfg = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug.Build.0 = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release.ActiveCfg = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release.Build.0 = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug.ActiveCfg = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug.Build.0 = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release.ActiveCfg = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release.Build.0 = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Debug.ActiveCfg = Debug|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Debug.Build.0 = Debug|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Release.ActiveCfg = Release|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Release.Build.0 = Release|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Debug.ActiveCfg = Debug|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Debug.Build.0 = Debug|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Release.ActiveCfg = Release|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Release.Build.0 = Release|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug.ActiveCfg = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug.Build.0 = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release.ActiveCfg = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release.Build.0 = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.ReleaseAMD64.ActiveCfg = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.ReleaseItanium.ActiveCfg = Release|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Debug.ActiveCfg = Debug|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Debug.Build.0 = Debug|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Release.ActiveCfg = Release|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Release.Build.0 = Release|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Debug.ActiveCfg = Debug|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Debug.Build.0 = Debug|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Release.ActiveCfg = Release|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Release.Build.0 = Release|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug.ActiveCfg = Debug|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug.Build.0 = Debug|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseAMD64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseAMD64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseItanium.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseItanium.Build.0 = Release|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Debug.ActiveCfg = Debug|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Debug.Build.0 = Debug|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Release.ActiveCfg = Release|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Release.Build.0 = Release|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Debug.ActiveCfg = Debug|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Debug.Build.0 = Debug|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Release.ActiveCfg = Release|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Release.Build.0 = Release|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Debug.ActiveCfg = Debug|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Debug.Build.0 = Debug|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Release.ActiveCfg = Release|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Release.Build.0 = Release|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.Debug.ActiveCfg = Debug|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.Debug.Build.0 = Debug|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.Release.ActiveCfg = Release|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.Release.Build.0 = Release|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + EndGlobalSection + GlobalSection(SolutionItems) = postSolution + ..\Modules\getbuildinfo.c = ..\Modules\getbuildinfo.c + readme.txt = readme.txt + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/PC/VS7.1/pyexpat.vcproj b/PC/VS7.1/pyexpat.vcproj --- a/PC/VS7.1/pyexpat.vcproj +++ b/PC/VS7.1/pyexpat.vcproj @@ -1,263 +1,263 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/python.vcproj b/PC/VS7.1/python.vcproj --- a/PC/VS7.1/python.vcproj +++ b/PC/VS7.1/python.vcproj @@ -1,274 +1,274 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/pythoncore.vcproj b/PC/VS7.1/pythoncore.vcproj --- a/PC/VS7.1/pythoncore.vcproj +++ b/PC/VS7.1/pythoncore.vcproj @@ -1,835 +1,835 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/pythonw.vcproj b/PC/VS7.1/pythonw.vcproj --- a/PC/VS7.1/pythonw.vcproj +++ b/PC/VS7.1/pythonw.vcproj @@ -1,261 +1,261 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/select.vcproj b/PC/VS7.1/select.vcproj --- a/PC/VS7.1/select.vcproj +++ b/PC/VS7.1/select.vcproj @@ -1,258 +1,258 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/unicodedata.vcproj b/PC/VS7.1/unicodedata.vcproj --- a/PC/VS7.1/unicodedata.vcproj +++ b/PC/VS7.1/unicodedata.vcproj @@ -1,247 +1,247 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/w9xpopen.vcproj b/PC/VS7.1/w9xpopen.vcproj --- a/PC/VS7.1/w9xpopen.vcproj +++ b/PC/VS7.1/w9xpopen.vcproj @@ -1,121 +1,121 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/winsound.vcproj b/PC/VS7.1/winsound.vcproj --- a/PC/VS7.1/winsound.vcproj +++ b/PC/VS7.1/winsound.vcproj @@ -1,251 +1,251 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_ctypes.vcproj b/PC/VS8.0/_ctypes.vcproj --- a/PC/VS8.0/_ctypes.vcproj +++ b/PC/VS8.0/_ctypes.vcproj @@ -1,705 +1,705 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_ctypes_test.vcproj b/PC/VS8.0/_ctypes_test.vcproj --- a/PC/VS8.0/_ctypes_test.vcproj +++ b/PC/VS8.0/_ctypes_test.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_elementtree.vcproj b/PC/VS8.0/_elementtree.vcproj --- a/PC/VS8.0/_elementtree.vcproj +++ b/PC/VS8.0/_elementtree.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_hashlib.vcproj b/PC/VS8.0/_hashlib.vcproj --- a/PC/VS8.0/_hashlib.vcproj +++ b/PC/VS8.0/_hashlib.vcproj @@ -1,545 +1,545 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_msi.vcproj b/PC/VS8.0/_msi.vcproj --- a/PC/VS8.0/_msi.vcproj +++ b/PC/VS8.0/_msi.vcproj @@ -1,529 +1,529 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_multiprocessing.vcproj b/PC/VS8.0/_multiprocessing.vcproj --- a/PC/VS8.0/_multiprocessing.vcproj +++ b/PC/VS8.0/_multiprocessing.vcproj @@ -1,557 +1,557 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_socket.vcproj b/PC/VS8.0/_socket.vcproj --- a/PC/VS8.0/_socket.vcproj +++ b/PC/VS8.0/_socket.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_sqlite3.vcproj b/PC/VS8.0/_sqlite3.vcproj --- a/PC/VS8.0/_sqlite3.vcproj +++ b/PC/VS8.0/_sqlite3.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_ssl.vcproj b/PC/VS8.0/_ssl.vcproj --- a/PC/VS8.0/_ssl.vcproj +++ b/PC/VS8.0/_ssl.vcproj @@ -1,545 +1,545 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_testcapi.vcproj b/PC/VS8.0/_testcapi.vcproj --- a/PC/VS8.0/_testcapi.vcproj +++ b/PC/VS8.0/_testcapi.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_tkinter.vcproj b/PC/VS8.0/_tkinter.vcproj --- a/PC/VS8.0/_tkinter.vcproj +++ b/PC/VS8.0/_tkinter.vcproj @@ -1,541 +1,541 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/bdist_wininst.vcproj b/PC/VS8.0/bdist_wininst.vcproj --- a/PC/VS8.0/bdist_wininst.vcproj +++ b/PC/VS8.0/bdist_wininst.vcproj @@ -1,270 +1,270 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/bz2.vcproj b/PC/VS8.0/bz2.vcproj --- a/PC/VS8.0/bz2.vcproj +++ b/PC/VS8.0/bz2.vcproj @@ -1,581 +1,581 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/kill_python.vcproj b/PC/VS8.0/kill_python.vcproj --- a/PC/VS8.0/kill_python.vcproj +++ b/PC/VS8.0/kill_python.vcproj @@ -1,279 +1,279 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/make_buildinfo.vcproj b/PC/VS8.0/make_buildinfo.vcproj --- a/PC/VS8.0/make_buildinfo.vcproj +++ b/PC/VS8.0/make_buildinfo.vcproj @@ -1,162 +1,162 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/make_versioninfo.vcproj b/PC/VS8.0/make_versioninfo.vcproj --- a/PC/VS8.0/make_versioninfo.vcproj +++ b/PC/VS8.0/make_versioninfo.vcproj @@ -1,324 +1,324 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/pcbuild.sln b/PC/VS8.0/pcbuild.sln --- a/PC/VS8.0/pcbuild.sln +++ b/PC/VS8.0/pcbuild.sln @@ -1,537 +1,537 @@ -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" - ProjectSection(ProjectDependencies) = postProject - {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" - ProjectSection(ProjectDependencies) = postProject - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{553EC33E-9816-4996-A660-5D6186A0B0B3}" - ProjectSection(SolutionItems) = preProject - ..\..\Modules\getbuildinfo.c = ..\..\Modules\getbuildinfo.c - readme.txt = readme.txt - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{28B5D777-DDF2-4B6B-B34F-31D938813856}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{0E9791DB-593A-465F-98BC-681011311618}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{9EC7190A-249F-4180-A900-548FDCF3055F}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{17E1E049-C309-4D79-843F-AE483C264AEA}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{31FFC478-7B4A-43E8-9954-8D03E2187E9C}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{86937F53-C189-40EF-8CE8-8759D8E7D480}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{13CECB97-4119-4316-9D42-8534019A5A44}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {A1A295E5-463C-437F-81CA-1F32367685DA} = {A1A295E5-463C-437F-81CA-1F32367685DA} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{C6E20F84-3247-4AD6-B051-B073268F73BA}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - {86937F53-C189-40EF-8CE8-8759D8E7D480} = {86937F53-C189-40EF-8CE8-8759D8E7D480} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{4946ECAC-2E69-4BF8-A90A-F5136F5094DF}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{73FCD2BD-F133-46B7-8EC1-144CD82A59D5}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{18CAE28C-B454-46C1-87A0-493D91D97F03}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{D06B6426-4762-44CC-8BAD-D79052507F2F}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bdist_wininst", "bdist_wininst.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_hashlib", "_hashlib.vcproj", "{447F05A8-F581-4CAC-A466-5AC7936E207E}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite3", "sqlite3.vcproj", "{A1A295E5-463C-437F-81CA-1F32367685DA}" - ProjectSection(ProjectDependencies) = postProject - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_multiprocessing", "_multiprocessing.vcproj", "{9E48B300-37D1-11DD-8C41-005056C00008}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kill_python", "kill_python.vcproj", "{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - PGInstrument|Win32 = PGInstrument|Win32 - PGInstrument|x64 = PGInstrument|x64 - PGUpdate|Win32 = PGUpdate|Win32 - PGUpdate|x64 = PGUpdate|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.ActiveCfg = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.Build.0 = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.ActiveCfg = Debug|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.Build.0 = Debug|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.ActiveCfg = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.Build.0 = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.ActiveCfg = Release|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.Build.0 = Release|x64 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.ActiveCfg = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.Build.0 = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.ActiveCfg = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.Build.0 = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.Build.0 = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.ActiveCfg = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.Build.0 = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.ActiveCfg = Debug|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.Build.0 = Debug|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.ActiveCfg = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.Build.0 = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.ActiveCfg = Release|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.Build.0 = Release|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.ActiveCfg = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.Build.0 = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.ActiveCfg = Debug|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.Build.0 = Debug|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.ActiveCfg = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.Build.0 = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.ActiveCfg = Release|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.Build.0 = Release|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.ActiveCfg = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.Build.0 = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.ActiveCfg = Debug|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.Build.0 = Debug|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.ActiveCfg = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.Build.0 = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.ActiveCfg = Release|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.Build.0 = Release|x64 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.Build.0 = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.ActiveCfg = Debug|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.Build.0 = Debug|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.ActiveCfg = Debug|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.Build.0 = Debug|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.ActiveCfg = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.Build.0 = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.ActiveCfg = Release|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.Build.0 = Release|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.ActiveCfg = Debug|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.Build.0 = Debug|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.ActiveCfg = Debug|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.Build.0 = Debug|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.ActiveCfg = Release|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.Build.0 = Release|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.ActiveCfg = Release|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.Build.0 = Release|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.ActiveCfg = Debug|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.Build.0 = Debug|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.ActiveCfg = Debug|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.Build.0 = Debug|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.ActiveCfg = Release|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.Build.0 = Release|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.ActiveCfg = Release|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.Build.0 = Release|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.ActiveCfg = Debug|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.Build.0 = Debug|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.ActiveCfg = Debug|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.Build.0 = Debug|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.ActiveCfg = Release|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.Build.0 = Release|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.ActiveCfg = Release|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.Build.0 = Release|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.ActiveCfg = Debug|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.Build.0 = Debug|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.ActiveCfg = Debug|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.Build.0 = Debug|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.ActiveCfg = Release|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.Build.0 = Release|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.ActiveCfg = Release|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.Build.0 = Release|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.ActiveCfg = Debug|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.Build.0 = Debug|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.ActiveCfg = Debug|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.Build.0 = Debug|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.ActiveCfg = Release|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.Build.0 = Release|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.ActiveCfg = Release|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.Build.0 = Release|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.ActiveCfg = Debug|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.Build.0 = Debug|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.ActiveCfg = Debug|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.Build.0 = Debug|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.ActiveCfg = Release|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.Build.0 = Release|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.ActiveCfg = Release|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.Build.0 = Release|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.ActiveCfg = Debug|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.Build.0 = Debug|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.ActiveCfg = Debug|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.Build.0 = Debug|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.ActiveCfg = Release|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.Build.0 = Release|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.ActiveCfg = Release|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.Build.0 = Release|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.ActiveCfg = Debug|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.Build.0 = Debug|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.ActiveCfg = Debug|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.Build.0 = Debug|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.ActiveCfg = Release|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.Build.0 = Release|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.ActiveCfg = Release|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.Build.0 = Release|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.ActiveCfg = Debug|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.Build.0 = Debug|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.ActiveCfg = Debug|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.Build.0 = Debug|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.ActiveCfg = Release|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.Build.0 = Release|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.ActiveCfg = Release|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.Build.0 = Release|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.ActiveCfg = Debug|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.Build.0 = Debug|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.ActiveCfg = Debug|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.Build.0 = Debug|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.ActiveCfg = Release|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.Build.0 = Release|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.ActiveCfg = Release|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.Build.0 = Release|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.ActiveCfg = Debug|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.Build.0 = Debug|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.ActiveCfg = Debug|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.Build.0 = Debug|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.ActiveCfg = Release|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.Build.0 = Release|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.ActiveCfg = Release|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.Build.0 = Release|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.ActiveCfg = Debug|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.Build.0 = Debug|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.ActiveCfg = Debug|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.Build.0 = Debug|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.ActiveCfg = Release|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.Build.0 = Release|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.ActiveCfg = Release|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.Build.0 = Release|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.ActiveCfg = Debug|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.Build.0 = Debug|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.ActiveCfg = Debug|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.Build.0 = Debug|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.ActiveCfg = Release|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.Build.0 = Release|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.ActiveCfg = Release|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.Build.0 = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|x64.ActiveCfg = Release|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.ActiveCfg = Debug|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.Build.0 = Debug|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.ActiveCfg = Debug|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.Build.0 = Debug|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.ActiveCfg = Release|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.Build.0 = Release|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.ActiveCfg = Release|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.Build.0 = Release|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.ActiveCfg = Debug|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.Build.0 = Debug|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.ActiveCfg = Debug|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.Build.0 = Debug|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.ActiveCfg = Release|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.Build.0 = Release|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.ActiveCfg = Release|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.Build.0 = Release|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.ActiveCfg = Debug|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.Build.0 = Debug|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.ActiveCfg = Debug|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.Build.0 = Debug|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.ActiveCfg = Release|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.Build.0 = Release|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.ActiveCfg = Release|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.ActiveCfg = Debug|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.Build.0 = Debug|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.ActiveCfg = Debug|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.Build.0 = Debug|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" + ProjectSection(ProjectDependencies) = postProject + {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" + ProjectSection(ProjectDependencies) = postProject + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{553EC33E-9816-4996-A660-5D6186A0B0B3}" + ProjectSection(SolutionItems) = preProject + ..\..\Modules\getbuildinfo.c = ..\..\Modules\getbuildinfo.c + readme.txt = readme.txt + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{28B5D777-DDF2-4B6B-B34F-31D938813856}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{0E9791DB-593A-465F-98BC-681011311618}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{9EC7190A-249F-4180-A900-548FDCF3055F}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{17E1E049-C309-4D79-843F-AE483C264AEA}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{31FFC478-7B4A-43E8-9954-8D03E2187E9C}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{86937F53-C189-40EF-8CE8-8759D8E7D480}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{13CECB97-4119-4316-9D42-8534019A5A44}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {A1A295E5-463C-437F-81CA-1F32367685DA} = {A1A295E5-463C-437F-81CA-1F32367685DA} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{C6E20F84-3247-4AD6-B051-B073268F73BA}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + {86937F53-C189-40EF-8CE8-8759D8E7D480} = {86937F53-C189-40EF-8CE8-8759D8E7D480} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{4946ECAC-2E69-4BF8-A90A-F5136F5094DF}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{73FCD2BD-F133-46B7-8EC1-144CD82A59D5}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{18CAE28C-B454-46C1-87A0-493D91D97F03}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{D06B6426-4762-44CC-8BAD-D79052507F2F}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bdist_wininst", "bdist_wininst.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_hashlib", "_hashlib.vcproj", "{447F05A8-F581-4CAC-A466-5AC7936E207E}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite3", "sqlite3.vcproj", "{A1A295E5-463C-437F-81CA-1F32367685DA}" + ProjectSection(ProjectDependencies) = postProject + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_multiprocessing", "_multiprocessing.vcproj", "{9E48B300-37D1-11DD-8C41-005056C00008}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kill_python", "kill_python.vcproj", "{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + PGInstrument|Win32 = PGInstrument|Win32 + PGInstrument|x64 = PGInstrument|x64 + PGUpdate|Win32 = PGUpdate|Win32 + PGUpdate|x64 = PGUpdate|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.ActiveCfg = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.Build.0 = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.ActiveCfg = Debug|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.Build.0 = Debug|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.ActiveCfg = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.Build.0 = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.ActiveCfg = Release|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.Build.0 = Release|x64 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.ActiveCfg = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.Build.0 = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.ActiveCfg = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.Build.0 = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.Build.0 = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.ActiveCfg = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.Build.0 = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.ActiveCfg = Debug|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.Build.0 = Debug|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.ActiveCfg = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.Build.0 = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.ActiveCfg = Release|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.Build.0 = Release|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.ActiveCfg = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.Build.0 = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.ActiveCfg = Debug|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.Build.0 = Debug|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.ActiveCfg = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.Build.0 = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.ActiveCfg = Release|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.Build.0 = Release|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.ActiveCfg = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.Build.0 = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.ActiveCfg = Debug|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.Build.0 = Debug|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.ActiveCfg = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.Build.0 = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.ActiveCfg = Release|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.Build.0 = Release|x64 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.Build.0 = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.ActiveCfg = Debug|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.Build.0 = Debug|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.ActiveCfg = Debug|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.Build.0 = Debug|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.ActiveCfg = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.Build.0 = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.ActiveCfg = Release|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.Build.0 = Release|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.ActiveCfg = Debug|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.Build.0 = Debug|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.ActiveCfg = Debug|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.Build.0 = Debug|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.ActiveCfg = Release|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.Build.0 = Release|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.ActiveCfg = Release|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.Build.0 = Release|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.ActiveCfg = Debug|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.Build.0 = Debug|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.ActiveCfg = Debug|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.Build.0 = Debug|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.ActiveCfg = Release|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.Build.0 = Release|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.ActiveCfg = Release|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.Build.0 = Release|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.ActiveCfg = Debug|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.Build.0 = Debug|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.ActiveCfg = Debug|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.Build.0 = Debug|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.ActiveCfg = Release|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.Build.0 = Release|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.ActiveCfg = Release|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.Build.0 = Release|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.ActiveCfg = Debug|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.Build.0 = Debug|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.ActiveCfg = Debug|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.Build.0 = Debug|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.ActiveCfg = Release|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.Build.0 = Release|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.ActiveCfg = Release|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.Build.0 = Release|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.ActiveCfg = Debug|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.Build.0 = Debug|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.ActiveCfg = Debug|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.Build.0 = Debug|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.ActiveCfg = Release|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.Build.0 = Release|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.ActiveCfg = Release|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.Build.0 = Release|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.ActiveCfg = Debug|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.Build.0 = Debug|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.ActiveCfg = Debug|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.Build.0 = Debug|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.ActiveCfg = Release|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.Build.0 = Release|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.ActiveCfg = Release|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.Build.0 = Release|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.ActiveCfg = Debug|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.Build.0 = Debug|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.ActiveCfg = Debug|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.Build.0 = Debug|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.ActiveCfg = Release|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.Build.0 = Release|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.ActiveCfg = Release|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.Build.0 = Release|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.ActiveCfg = Debug|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.Build.0 = Debug|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.ActiveCfg = Debug|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.Build.0 = Debug|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.ActiveCfg = Release|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.Build.0 = Release|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.ActiveCfg = Release|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.Build.0 = Release|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.ActiveCfg = Debug|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.Build.0 = Debug|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.ActiveCfg = Debug|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.Build.0 = Debug|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.ActiveCfg = Release|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.Build.0 = Release|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.ActiveCfg = Release|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.Build.0 = Release|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.ActiveCfg = Debug|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.Build.0 = Debug|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.ActiveCfg = Debug|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.Build.0 = Debug|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.ActiveCfg = Release|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.Build.0 = Release|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.ActiveCfg = Release|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.Build.0 = Release|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.ActiveCfg = Debug|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.Build.0 = Debug|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.ActiveCfg = Debug|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.Build.0 = Debug|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.ActiveCfg = Release|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.Build.0 = Release|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.ActiveCfg = Release|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.Build.0 = Release|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.ActiveCfg = Debug|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.Build.0 = Debug|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.ActiveCfg = Debug|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.Build.0 = Debug|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.ActiveCfg = Release|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.Build.0 = Release|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.ActiveCfg = Release|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.Build.0 = Release|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.ActiveCfg = Debug|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.Build.0 = Debug|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.ActiveCfg = Debug|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.Build.0 = Debug|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.ActiveCfg = Release|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.Build.0 = Release|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.ActiveCfg = Release|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.Build.0 = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|x64.ActiveCfg = Release|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.ActiveCfg = Debug|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.Build.0 = Debug|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.ActiveCfg = Debug|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.Build.0 = Debug|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.ActiveCfg = Release|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.Build.0 = Release|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.ActiveCfg = Release|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.Build.0 = Release|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.ActiveCfg = Debug|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.Build.0 = Debug|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.ActiveCfg = Debug|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.Build.0 = Debug|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.ActiveCfg = Release|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.Build.0 = Release|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.ActiveCfg = Release|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.Build.0 = Release|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.ActiveCfg = Debug|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.Build.0 = Debug|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.ActiveCfg = Debug|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.Build.0 = Debug|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.ActiveCfg = Release|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.Build.0 = Release|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.ActiveCfg = Release|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.ActiveCfg = Debug|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.Build.0 = Debug|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.ActiveCfg = Debug|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.Build.0 = Debug|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/PC/VS8.0/pyd.vsprops b/PC/VS8.0/pyd.vsprops --- a/PC/VS8.0/pyd.vsprops +++ b/PC/VS8.0/pyd.vsprops @@ -1,28 +1,28 @@ - - - - - - - + + + + + + + diff --git a/PC/VS8.0/pyd_d.vsprops b/PC/VS8.0/pyd_d.vsprops --- a/PC/VS8.0/pyd_d.vsprops +++ b/PC/VS8.0/pyd_d.vsprops @@ -1,36 +1,36 @@ - - - - - - - - + + + + + + + + diff --git a/PC/VS8.0/pyexpat.vcproj b/PC/VS8.0/pyexpat.vcproj --- a/PC/VS8.0/pyexpat.vcproj +++ b/PC/VS8.0/pyexpat.vcproj @@ -1,553 +1,553 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/pyproject.vsprops b/PC/VS8.0/pyproject.vsprops --- a/PC/VS8.0/pyproject.vsprops +++ b/PC/VS8.0/pyproject.vsprops @@ -1,87 +1,87 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/python.vcproj b/PC/VS8.0/python.vcproj --- a/PC/VS8.0/python.vcproj +++ b/PC/VS8.0/python.vcproj @@ -1,637 +1,637 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/pythoncore.vcproj b/PC/VS8.0/pythoncore.vcproj --- a/PC/VS8.0/pythoncore.vcproj +++ b/PC/VS8.0/pythoncore.vcproj @@ -1,1817 +1,1817 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/pythonw.vcproj b/PC/VS8.0/pythonw.vcproj --- a/PC/VS8.0/pythonw.vcproj +++ b/PC/VS8.0/pythonw.vcproj @@ -1,618 +1,618 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/select.vcproj b/PC/VS8.0/select.vcproj --- a/PC/VS8.0/select.vcproj +++ b/PC/VS8.0/select.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/sqlite3.vcproj b/PC/VS8.0/sqlite3.vcproj --- a/PC/VS8.0/sqlite3.vcproj +++ b/PC/VS8.0/sqlite3.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/sqlite3.vsprops b/PC/VS8.0/sqlite3.vsprops --- a/PC/VS8.0/sqlite3.vsprops +++ b/PC/VS8.0/sqlite3.vsprops @@ -1,14 +1,14 @@ - - - - + + + + diff --git a/PC/VS8.0/unicodedata.vcproj b/PC/VS8.0/unicodedata.vcproj --- a/PC/VS8.0/unicodedata.vcproj +++ b/PC/VS8.0/unicodedata.vcproj @@ -1,533 +1,533 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/w9xpopen.vcproj b/PC/VS8.0/w9xpopen.vcproj --- a/PC/VS8.0/w9xpopen.vcproj +++ b/PC/VS8.0/w9xpopen.vcproj @@ -1,576 +1,576 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/winsound.vcproj b/PC/VS8.0/winsound.vcproj --- a/PC/VS8.0/winsound.vcproj +++ b/PC/VS8.0/winsound.vcproj @@ -1,523 +1,523 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/bdist_wininst/wininst-7.1.sln b/PC/bdist_wininst/wininst-7.1.sln --- a/PC/bdist_wininst/wininst-7.1.sln +++ b/PC/bdist_wininst/wininst-7.1.sln @@ -1,21 +1,21 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wininst", "wininst-7.1.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug.ActiveCfg = Debug|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug.Build.0 = Debug|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wininst", "wininst-7.1.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + Debug = Debug + Release = Release + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug.ActiveCfg = Debug|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug.Build.0 = Debug|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/PC/bdist_wininst/wininst-7.1.vcproj b/PC/bdist_wininst/wininst-7.1.vcproj --- a/PC/bdist_wininst/wininst-7.1.vcproj +++ b/PC/bdist_wininst/wininst-7.1.vcproj @@ -1,214 +1,214 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/bdist_wininst/wininst-8.sln b/PC/bdist_wininst/wininst-8.sln --- a/PC/bdist_wininst/wininst-8.sln +++ b/PC/bdist_wininst/wininst-8.sln @@ -1,19 +1,19 @@ -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wininst", "wininst-8.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Debug|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.Build.0 = Debug|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wininst", "wininst-8.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Debug|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.Build.0 = Debug|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/PC/bdist_wininst/wininst-8.vcproj b/PC/bdist_wininst/wininst-8.vcproj --- a/PC/bdist_wininst/wininst-8.vcproj +++ b/PC/bdist_wininst/wininst-8.vcproj @@ -1,320 +1,320 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/bdist_wininst/wininst.dsp b/PC/bdist_wininst/wininst.dsp --- a/PC/bdist_wininst/wininst.dsp +++ b/PC/bdist_wininst/wininst.dsp @@ -1,123 +1,123 @@ -# Microsoft Developer Studio Project File - Name="wininst" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Application" 0x0101 - -CFG=wininst - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wininst.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wininst.mak" CFG="wininst - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "wininst - Win32 Release" (based on "Win32 (x86) Application") -!MESSAGE "wininst - Win32 Debug" (based on "Win32 (x86) Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "wininst - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\lib\distutils\command" -# PROP Intermediate_Dir "temp-release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /O1 /I "..\..\Include" /I "..\..\..\zlib-1.2.3" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x407 /d "NDEBUG" -# ADD RSC /l 0x407 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 -# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0.exe" - -!ELSEIF "$(CFG)" == "wininst - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "temp-debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Z7 /Od /I "..\..\Include" /I "..\..\..\zlib-1.2.1" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /FR /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x407 /d "_DEBUG" -# ADD RSC /l 0x407 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept -# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /pdb:none /debug /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0_d.exe" - -!ENDIF - -# Begin Target - -# Name "wininst - Win32 Release" -# Name "wininst - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=.\extract.c -# End Source File -# Begin Source File - -SOURCE=.\install.c -# End Source File -# Begin Source File - -SOURCE=.\install.rc -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=.\archive.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# Begin Source File - -SOURCE=.\PythonPowered.bmp -# End Source File -# End Group -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="wininst" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=wininst - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "wininst.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "wininst.mak" CFG="wininst - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "wininst - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "wininst - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "wininst - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "..\..\lib\distutils\command" +# PROP Intermediate_Dir "temp-release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /O1 /I "..\..\Include" /I "..\..\..\zlib-1.2.3" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0x407 /d "NDEBUG" +# ADD RSC /l 0x407 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0.exe" + +!ELSEIF "$(CFG)" == "wininst - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "temp-debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c +# ADD CPP /nologo /MD /W3 /Z7 /Od /I "..\..\Include" /I "..\..\..\zlib-1.2.1" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /FR /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0x407 /d "_DEBUG" +# ADD RSC /l 0x407 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /pdb:none /debug /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0_d.exe" + +!ENDIF + +# Begin Target + +# Name "wininst - Win32 Release" +# Name "wininst - Win32 Debug" +# Begin Group "Source Files" + +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" +# Begin Source File + +SOURCE=.\extract.c +# End Source File +# Begin Source File + +SOURCE=.\install.c +# End Source File +# Begin Source File + +SOURCE=.\install.rc +# End Source File +# End Group +# Begin Group "Header Files" + +# PROP Default_Filter "h;hpp;hxx;hm;inl" +# Begin Source File + +SOURCE=.\archive.h +# End Source File +# End Group +# Begin Group "Resource Files" + +# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" +# Begin Source File + +SOURCE=.\PythonPowered.bmp +# End Source File +# End Group +# End Target +# End Project diff --git a/PC/bdist_wininst/wininst.dsw b/PC/bdist_wininst/wininst.dsw --- a/PC/bdist_wininst/wininst.dsw +++ b/PC/bdist_wininst/wininst.dsw @@ -1,29 +1,29 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "wininst"=.\wininst.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - +Microsoft Developer Studio Workspace File, Format Version 6.00 +# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + +############################################################################### + +Project: "wininst"=.\wininst.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/PC/example_nt/example.sln b/PC/example_nt/example.sln --- a/PC/example_nt/example.sln +++ b/PC/example_nt/example.sln @@ -1,21 +1,21 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example", "example.vcproj", "{A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Debug.ActiveCfg = Debug|Win32 - {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Debug.Build.0 = Debug|Win32 - {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Release.ActiveCfg = Release|Win32 - {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example", "example.vcproj", "{A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + Debug = Debug + Release = Release + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Debug.ActiveCfg = Debug|Win32 + {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Debug.Build.0 = Debug|Win32 + {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Release.ActiveCfg = Release|Win32 + {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Release.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/PC/example_nt/example.vcproj b/PC/example_nt/example.vcproj --- a/PC/example_nt/example.vcproj +++ b/PC/example_nt/example.vcproj @@ -1,189 +1,189 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_ctypes.vcproj b/PCbuild/_ctypes.vcproj --- a/PCbuild/_ctypes.vcproj +++ b/PCbuild/_ctypes.vcproj @@ -1,705 +1,705 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_ctypes_test.vcproj b/PCbuild/_ctypes_test.vcproj --- a/PCbuild/_ctypes_test.vcproj +++ b/PCbuild/_ctypes_test.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_elementtree.vcproj b/PCbuild/_elementtree.vcproj --- a/PCbuild/_elementtree.vcproj +++ b/PCbuild/_elementtree.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_hashlib.vcproj b/PCbuild/_hashlib.vcproj --- a/PCbuild/_hashlib.vcproj +++ b/PCbuild/_hashlib.vcproj @@ -1,545 +1,545 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_msi.vcproj b/PCbuild/_msi.vcproj --- a/PCbuild/_msi.vcproj +++ b/PCbuild/_msi.vcproj @@ -1,529 +1,529 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_multiprocessing.vcproj b/PCbuild/_multiprocessing.vcproj --- a/PCbuild/_multiprocessing.vcproj +++ b/PCbuild/_multiprocessing.vcproj @@ -1,557 +1,557 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_socket.vcproj b/PCbuild/_socket.vcproj --- a/PCbuild/_socket.vcproj +++ b/PCbuild/_socket.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_sqlite3.vcproj b/PCbuild/_sqlite3.vcproj --- a/PCbuild/_sqlite3.vcproj +++ b/PCbuild/_sqlite3.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_ssl.vcproj b/PCbuild/_ssl.vcproj --- a/PCbuild/_ssl.vcproj +++ b/PCbuild/_ssl.vcproj @@ -1,545 +1,545 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_testcapi.vcproj b/PCbuild/_testcapi.vcproj --- a/PCbuild/_testcapi.vcproj +++ b/PCbuild/_testcapi.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_tkinter.vcproj b/PCbuild/_tkinter.vcproj --- a/PCbuild/_tkinter.vcproj +++ b/PCbuild/_tkinter.vcproj @@ -1,541 +1,541 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/bdist_wininst.vcproj b/PCbuild/bdist_wininst.vcproj --- a/PCbuild/bdist_wininst.vcproj +++ b/PCbuild/bdist_wininst.vcproj @@ -1,270 +1,270 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/bz2.vcproj b/PCbuild/bz2.vcproj --- a/PCbuild/bz2.vcproj +++ b/PCbuild/bz2.vcproj @@ -1,581 +1,581 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/debug.vsprops b/PCbuild/debug.vsprops --- a/PCbuild/debug.vsprops +++ b/PCbuild/debug.vsprops @@ -1,15 +1,15 @@ - - - - - + + + + + diff --git a/PCbuild/kill_python.vcproj b/PCbuild/kill_python.vcproj --- a/PCbuild/kill_python.vcproj +++ b/PCbuild/kill_python.vcproj @@ -1,279 +1,279 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/make_buildinfo.vcproj b/PCbuild/make_buildinfo.vcproj --- a/PCbuild/make_buildinfo.vcproj +++ b/PCbuild/make_buildinfo.vcproj @@ -1,162 +1,162 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/make_versioninfo.vcproj b/PCbuild/make_versioninfo.vcproj --- a/PCbuild/make_versioninfo.vcproj +++ b/PCbuild/make_versioninfo.vcproj @@ -1,324 +1,324 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pcbuild.sln b/PCbuild/pcbuild.sln --- a/PCbuild/pcbuild.sln +++ b/PCbuild/pcbuild.sln @@ -1,537 +1,537 @@ -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" - ProjectSection(ProjectDependencies) = postProject - {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" - ProjectSection(ProjectDependencies) = postProject - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{553EC33E-9816-4996-A660-5D6186A0B0B3}" - ProjectSection(SolutionItems) = preProject - ..\Modules\getbuildinfo.c = ..\Modules\getbuildinfo.c - readme.txt = readme.txt - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{28B5D777-DDF2-4B6B-B34F-31D938813856}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{0E9791DB-593A-465F-98BC-681011311618}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{9EC7190A-249F-4180-A900-548FDCF3055F}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{17E1E049-C309-4D79-843F-AE483C264AEA}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{31FFC478-7B4A-43E8-9954-8D03E2187E9C}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{86937F53-C189-40EF-8CE8-8759D8E7D480}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{13CECB97-4119-4316-9D42-8534019A5A44}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {A1A295E5-463C-437F-81CA-1F32367685DA} = {A1A295E5-463C-437F-81CA-1F32367685DA} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{C6E20F84-3247-4AD6-B051-B073268F73BA}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - {86937F53-C189-40EF-8CE8-8759D8E7D480} = {86937F53-C189-40EF-8CE8-8759D8E7D480} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{4946ECAC-2E69-4BF8-A90A-F5136F5094DF}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{73FCD2BD-F133-46B7-8EC1-144CD82A59D5}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{18CAE28C-B454-46C1-87A0-493D91D97F03}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{D06B6426-4762-44CC-8BAD-D79052507F2F}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bdist_wininst", "bdist_wininst.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_hashlib", "_hashlib.vcproj", "{447F05A8-F581-4CAC-A466-5AC7936E207E}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite3", "sqlite3.vcproj", "{A1A295E5-463C-437F-81CA-1F32367685DA}" - ProjectSection(ProjectDependencies) = postProject - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_multiprocessing", "_multiprocessing.vcproj", "{9E48B300-37D1-11DD-8C41-005056C00008}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kill_python", "kill_python.vcproj", "{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - PGInstrument|Win32 = PGInstrument|Win32 - PGInstrument|x64 = PGInstrument|x64 - PGUpdate|Win32 = PGUpdate|Win32 - PGUpdate|x64 = PGUpdate|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.ActiveCfg = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.Build.0 = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.ActiveCfg = Debug|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.Build.0 = Debug|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.ActiveCfg = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.Build.0 = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.ActiveCfg = Release|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.Build.0 = Release|x64 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.ActiveCfg = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.Build.0 = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.ActiveCfg = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.Build.0 = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.Build.0 = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.ActiveCfg = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.Build.0 = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.ActiveCfg = Debug|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.Build.0 = Debug|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.ActiveCfg = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.Build.0 = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.ActiveCfg = Release|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.Build.0 = Release|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.ActiveCfg = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.Build.0 = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.ActiveCfg = Debug|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.Build.0 = Debug|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.ActiveCfg = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.Build.0 = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.ActiveCfg = Release|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.Build.0 = Release|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.ActiveCfg = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.Build.0 = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.ActiveCfg = Debug|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.Build.0 = Debug|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.ActiveCfg = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.Build.0 = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.ActiveCfg = Release|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.Build.0 = Release|x64 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.Build.0 = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.ActiveCfg = Debug|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.Build.0 = Debug|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.ActiveCfg = Debug|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.Build.0 = Debug|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.ActiveCfg = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.Build.0 = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.ActiveCfg = Release|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.Build.0 = Release|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.ActiveCfg = Debug|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.Build.0 = Debug|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.ActiveCfg = Debug|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.Build.0 = Debug|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.ActiveCfg = Release|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.Build.0 = Release|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.ActiveCfg = Release|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.Build.0 = Release|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.ActiveCfg = Debug|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.Build.0 = Debug|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.ActiveCfg = Debug|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.Build.0 = Debug|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.ActiveCfg = Release|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.Build.0 = Release|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.ActiveCfg = Release|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.Build.0 = Release|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.ActiveCfg = Debug|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.Build.0 = Debug|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.ActiveCfg = Debug|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.Build.0 = Debug|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.ActiveCfg = Release|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.Build.0 = Release|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.ActiveCfg = Release|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.Build.0 = Release|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.ActiveCfg = Debug|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.Build.0 = Debug|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.ActiveCfg = Debug|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.Build.0 = Debug|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.ActiveCfg = Release|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.Build.0 = Release|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.ActiveCfg = Release|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.Build.0 = Release|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.ActiveCfg = Debug|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.Build.0 = Debug|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.ActiveCfg = Debug|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.Build.0 = Debug|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.ActiveCfg = Release|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.Build.0 = Release|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.ActiveCfg = Release|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.Build.0 = Release|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.ActiveCfg = Debug|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.Build.0 = Debug|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.ActiveCfg = Debug|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.Build.0 = Debug|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.ActiveCfg = Release|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.Build.0 = Release|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.ActiveCfg = Release|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.Build.0 = Release|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.ActiveCfg = Debug|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.Build.0 = Debug|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.ActiveCfg = Debug|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.Build.0 = Debug|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.ActiveCfg = Release|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.Build.0 = Release|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.ActiveCfg = Release|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.Build.0 = Release|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.ActiveCfg = Debug|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.Build.0 = Debug|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.ActiveCfg = Debug|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.Build.0 = Debug|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.ActiveCfg = Release|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.Build.0 = Release|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.ActiveCfg = Release|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.Build.0 = Release|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.ActiveCfg = Debug|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.Build.0 = Debug|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.ActiveCfg = Debug|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.Build.0 = Debug|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.ActiveCfg = Release|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.Build.0 = Release|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.ActiveCfg = Release|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.Build.0 = Release|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.ActiveCfg = Debug|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.Build.0 = Debug|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.ActiveCfg = Debug|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.Build.0 = Debug|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.ActiveCfg = Release|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.Build.0 = Release|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.ActiveCfg = Release|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.Build.0 = Release|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.ActiveCfg = Debug|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.Build.0 = Debug|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.ActiveCfg = Debug|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.Build.0 = Debug|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.ActiveCfg = Release|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.Build.0 = Release|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.ActiveCfg = Release|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.Build.0 = Release|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.ActiveCfg = Debug|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.Build.0 = Debug|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.ActiveCfg = Debug|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.Build.0 = Debug|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.ActiveCfg = Release|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.Build.0 = Release|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.ActiveCfg = Release|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.Build.0 = Release|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.ActiveCfg = Debug|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.Build.0 = Debug|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.ActiveCfg = Debug|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.Build.0 = Debug|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.ActiveCfg = Release|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.Build.0 = Release|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.ActiveCfg = Release|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.Build.0 = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|x64.ActiveCfg = Release|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.ActiveCfg = Debug|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.Build.0 = Debug|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.ActiveCfg = Debug|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.Build.0 = Debug|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.ActiveCfg = Release|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.Build.0 = Release|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.ActiveCfg = Release|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.Build.0 = Release|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.ActiveCfg = Debug|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.Build.0 = Debug|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.ActiveCfg = Debug|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.Build.0 = Debug|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.ActiveCfg = Release|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.Build.0 = Release|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.ActiveCfg = Release|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.Build.0 = Release|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.ActiveCfg = Debug|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.Build.0 = Debug|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.ActiveCfg = Debug|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.Build.0 = Debug|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.ActiveCfg = Release|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.Build.0 = Release|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.ActiveCfg = Release|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.ActiveCfg = Debug|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.Build.0 = Debug|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.ActiveCfg = Debug|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.Build.0 = Debug|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" + ProjectSection(ProjectDependencies) = postProject + {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" + ProjectSection(ProjectDependencies) = postProject + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{553EC33E-9816-4996-A660-5D6186A0B0B3}" + ProjectSection(SolutionItems) = preProject + ..\Modules\getbuildinfo.c = ..\Modules\getbuildinfo.c + readme.txt = readme.txt + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{28B5D777-DDF2-4B6B-B34F-31D938813856}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{0E9791DB-593A-465F-98BC-681011311618}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{9EC7190A-249F-4180-A900-548FDCF3055F}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{17E1E049-C309-4D79-843F-AE483C264AEA}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{31FFC478-7B4A-43E8-9954-8D03E2187E9C}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{86937F53-C189-40EF-8CE8-8759D8E7D480}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{13CECB97-4119-4316-9D42-8534019A5A44}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {A1A295E5-463C-437F-81CA-1F32367685DA} = {A1A295E5-463C-437F-81CA-1F32367685DA} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{C6E20F84-3247-4AD6-B051-B073268F73BA}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + {86937F53-C189-40EF-8CE8-8759D8E7D480} = {86937F53-C189-40EF-8CE8-8759D8E7D480} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{4946ECAC-2E69-4BF8-A90A-F5136F5094DF}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{73FCD2BD-F133-46B7-8EC1-144CD82A59D5}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{18CAE28C-B454-46C1-87A0-493D91D97F03}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{D06B6426-4762-44CC-8BAD-D79052507F2F}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bdist_wininst", "bdist_wininst.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_hashlib", "_hashlib.vcproj", "{447F05A8-F581-4CAC-A466-5AC7936E207E}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite3", "sqlite3.vcproj", "{A1A295E5-463C-437F-81CA-1F32367685DA}" + ProjectSection(ProjectDependencies) = postProject + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_multiprocessing", "_multiprocessing.vcproj", "{9E48B300-37D1-11DD-8C41-005056C00008}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kill_python", "kill_python.vcproj", "{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + PGInstrument|Win32 = PGInstrument|Win32 + PGInstrument|x64 = PGInstrument|x64 + PGUpdate|Win32 = PGUpdate|Win32 + PGUpdate|x64 = PGUpdate|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.ActiveCfg = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.Build.0 = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.ActiveCfg = Debug|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.Build.0 = Debug|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.ActiveCfg = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.Build.0 = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.ActiveCfg = Release|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.Build.0 = Release|x64 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.ActiveCfg = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.Build.0 = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.ActiveCfg = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.Build.0 = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.Build.0 = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.ActiveCfg = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.Build.0 = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.ActiveCfg = Debug|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.Build.0 = Debug|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.ActiveCfg = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.Build.0 = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.ActiveCfg = Release|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.Build.0 = Release|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.ActiveCfg = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.Build.0 = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.ActiveCfg = Debug|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.Build.0 = Debug|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.ActiveCfg = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.Build.0 = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.ActiveCfg = Release|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.Build.0 = Release|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.ActiveCfg = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.Build.0 = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.ActiveCfg = Debug|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.Build.0 = Debug|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.ActiveCfg = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.Build.0 = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.ActiveCfg = Release|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.Build.0 = Release|x64 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.Build.0 = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.ActiveCfg = Debug|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.Build.0 = Debug|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.ActiveCfg = Debug|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.Build.0 = Debug|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.ActiveCfg = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.Build.0 = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.ActiveCfg = Release|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.Build.0 = Release|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.ActiveCfg = Debug|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.Build.0 = Debug|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.ActiveCfg = Debug|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.Build.0 = Debug|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.ActiveCfg = Release|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.Build.0 = Release|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.ActiveCfg = Release|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.Build.0 = Release|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.ActiveCfg = Debug|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.Build.0 = Debug|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.ActiveCfg = Debug|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.Build.0 = Debug|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.ActiveCfg = Release|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.Build.0 = Release|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.ActiveCfg = Release|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.Build.0 = Release|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.ActiveCfg = Debug|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.Build.0 = Debug|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.ActiveCfg = Debug|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.Build.0 = Debug|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.ActiveCfg = Release|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.Build.0 = Release|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.ActiveCfg = Release|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.Build.0 = Release|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.ActiveCfg = Debug|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.Build.0 = Debug|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.ActiveCfg = Debug|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.Build.0 = Debug|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.ActiveCfg = Release|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.Build.0 = Release|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.ActiveCfg = Release|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.Build.0 = Release|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.ActiveCfg = Debug|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.Build.0 = Debug|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.ActiveCfg = Debug|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.Build.0 = Debug|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.ActiveCfg = Release|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.Build.0 = Release|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.ActiveCfg = Release|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.Build.0 = Release|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.ActiveCfg = Debug|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.Build.0 = Debug|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.ActiveCfg = Debug|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.Build.0 = Debug|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.ActiveCfg = Release|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.Build.0 = Release|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.ActiveCfg = Release|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.Build.0 = Release|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.ActiveCfg = Debug|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.Build.0 = Debug|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.ActiveCfg = Debug|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.Build.0 = Debug|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.ActiveCfg = Release|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.Build.0 = Release|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.ActiveCfg = Release|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.Build.0 = Release|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.ActiveCfg = Debug|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.Build.0 = Debug|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.ActiveCfg = Debug|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.Build.0 = Debug|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.ActiveCfg = Release|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.Build.0 = Release|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.ActiveCfg = Release|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.Build.0 = Release|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.ActiveCfg = Debug|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.Build.0 = Debug|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.ActiveCfg = Debug|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.Build.0 = Debug|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.ActiveCfg = Release|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.Build.0 = Release|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.ActiveCfg = Release|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.Build.0 = Release|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.ActiveCfg = Debug|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.Build.0 = Debug|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.ActiveCfg = Debug|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.Build.0 = Debug|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.ActiveCfg = Release|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.Build.0 = Release|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.ActiveCfg = Release|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.Build.0 = Release|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.ActiveCfg = Debug|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.Build.0 = Debug|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.ActiveCfg = Debug|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.Build.0 = Debug|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.ActiveCfg = Release|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.Build.0 = Release|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.ActiveCfg = Release|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.Build.0 = Release|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.ActiveCfg = Debug|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.Build.0 = Debug|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.ActiveCfg = Debug|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.Build.0 = Debug|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.ActiveCfg = Release|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.Build.0 = Release|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.ActiveCfg = Release|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.Build.0 = Release|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.ActiveCfg = Debug|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.Build.0 = Debug|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.ActiveCfg = Debug|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.Build.0 = Debug|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.ActiveCfg = Release|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.Build.0 = Release|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.ActiveCfg = Release|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.Build.0 = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|x64.ActiveCfg = Release|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.ActiveCfg = Debug|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.Build.0 = Debug|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.ActiveCfg = Debug|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.Build.0 = Debug|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.ActiveCfg = Release|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.Build.0 = Release|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.ActiveCfg = Release|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.Build.0 = Release|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.ActiveCfg = Debug|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.Build.0 = Debug|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.ActiveCfg = Debug|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.Build.0 = Debug|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.ActiveCfg = Release|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.Build.0 = Release|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.ActiveCfg = Release|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.Build.0 = Release|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.ActiveCfg = Debug|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.Build.0 = Debug|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.ActiveCfg = Debug|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.Build.0 = Debug|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.ActiveCfg = Release|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.Build.0 = Release|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.ActiveCfg = Release|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.ActiveCfg = Debug|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.Build.0 = Debug|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.ActiveCfg = Debug|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.Build.0 = Debug|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/PCbuild/pginstrument.vsprops b/PCbuild/pginstrument.vsprops --- a/PCbuild/pginstrument.vsprops +++ b/PCbuild/pginstrument.vsprops @@ -1,34 +1,34 @@ - - - - - - + + + + + + diff --git a/PCbuild/pgupdate.vsprops b/PCbuild/pgupdate.vsprops --- a/PCbuild/pgupdate.vsprops +++ b/PCbuild/pgupdate.vsprops @@ -1,14 +1,14 @@ - - - - + + + + diff --git a/PCbuild/pyd.vsprops b/PCbuild/pyd.vsprops --- a/PCbuild/pyd.vsprops +++ b/PCbuild/pyd.vsprops @@ -1,28 +1,28 @@ - - - - - - - + + + + + + + diff --git a/PCbuild/pyd_d.vsprops b/PCbuild/pyd_d.vsprops --- a/PCbuild/pyd_d.vsprops +++ b/PCbuild/pyd_d.vsprops @@ -1,36 +1,36 @@ - - - - - - - - + + + + + + + + diff --git a/PCbuild/pyexpat.vcproj b/PCbuild/pyexpat.vcproj --- a/PCbuild/pyexpat.vcproj +++ b/PCbuild/pyexpat.vcproj @@ -1,553 +1,553 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pyproject.vsprops b/PCbuild/pyproject.vsprops --- a/PCbuild/pyproject.vsprops +++ b/PCbuild/pyproject.vsprops @@ -1,87 +1,87 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/python.vcproj b/PCbuild/python.vcproj --- a/PCbuild/python.vcproj +++ b/PCbuild/python.vcproj @@ -1,637 +1,637 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pythoncore.vcproj b/PCbuild/pythoncore.vcproj --- a/PCbuild/pythoncore.vcproj +++ b/PCbuild/pythoncore.vcproj @@ -1,1817 +1,1817 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pythonw.vcproj b/PCbuild/pythonw.vcproj --- a/PCbuild/pythonw.vcproj +++ b/PCbuild/pythonw.vcproj @@ -1,618 +1,618 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/release.vsprops b/PCbuild/release.vsprops --- a/PCbuild/release.vsprops +++ b/PCbuild/release.vsprops @@ -1,15 +1,15 @@ - - - - - + + + + + diff --git a/PCbuild/select.vcproj b/PCbuild/select.vcproj --- a/PCbuild/select.vcproj +++ b/PCbuild/select.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/sqlite3.vcproj b/PCbuild/sqlite3.vcproj --- a/PCbuild/sqlite3.vcproj +++ b/PCbuild/sqlite3.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/sqlite3.vsprops b/PCbuild/sqlite3.vsprops --- a/PCbuild/sqlite3.vsprops +++ b/PCbuild/sqlite3.vsprops @@ -1,14 +1,14 @@ - - - - + + + + diff --git a/PCbuild/unicodedata.vcproj b/PCbuild/unicodedata.vcproj --- a/PCbuild/unicodedata.vcproj +++ b/PCbuild/unicodedata.vcproj @@ -1,533 +1,533 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/w9xpopen.vcproj b/PCbuild/w9xpopen.vcproj --- a/PCbuild/w9xpopen.vcproj +++ b/PCbuild/w9xpopen.vcproj @@ -1,576 +1,576 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/winsound.vcproj b/PCbuild/winsound.vcproj --- a/PCbuild/winsound.vcproj +++ b/PCbuild/winsound.vcproj @@ -1,523 +1,523 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/x64.vsprops b/PCbuild/x64.vsprops --- a/PCbuild/x64.vsprops +++ b/PCbuild/x64.vsprops @@ -1,22 +1,22 @@ - - - - - - + + + + + + -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 12:28:45 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 06 Mar 2011 12:28:45 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Convert DOS files to CRLF. This doesn't touch the .hgeol settings, so that the Message-ID: http://hg.python.org/cpython/rev/9040278551da changeset: 68301:9040278551da branch: 3.2 parent: 68291:624bcf3adab5 parent: 68300:c7e71d6ad48f user: Martin v. L?wis date: Sun Mar 06 12:23:39 2011 +0100 summary: Convert DOS files to CRLF. This doesn't touch the .hgeol settings, so that the files will have the right line ending even if the extension is not active. files: PC/VC6/_ctypes.dsp PC/VC6/_msi.dsp PC/VC6/bz2.dsp PC/VC6/python.dsp PC/VC6/pythoncore.dsp PC/VC6/pythonw.dsp PC/VS7.1/pcbuild.sln PC/VS7.1/pythoncore.vcproj PC/VS8.0/_hashlib.vcproj PC/VS8.0/_sqlite3.vcproj PC/VS8.0/_ssl.vcproj PC/VS8.0/bz2.vcproj PC/VS8.0/make_buildinfo.vcproj PC/VS8.0/pcbuild.sln PC/VS8.0/pyproject.vsprops PC/VS8.0/pythoncore.vcproj PC/VS8.0/sqlite3.vcproj PC/VS8.0/sqlite3.vsprops PC/VS8.0/ssl.vcproj PC/bdist_wininst/wininst-7.1.sln PC/bdist_wininst/wininst-8.sln PC/example_nt/example.sln PCbuild/_ctypes.vcproj PCbuild/_hashlib.vcproj PCbuild/_ssl.vcproj PCbuild/bz2.vcproj PCbuild/make_buildinfo.vcproj PCbuild/pcbuild.sln PCbuild/pyproject.vsprops PCbuild/python3dll.vcproj PCbuild/pythoncore.vcproj PCbuild/ssl.vcproj PCbuild/xxlimited.vcproj diff --git a/PC/VC6/_ctypes.dsp b/PC/VC6/_ctypes.dsp --- a/PC/VC6/_ctypes.dsp +++ b/PC/VC6/_ctypes.dsp @@ -1,131 +1,131 @@ -# Microsoft Developer Studio Project File - Name="_ctypes" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_ctypes - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_ctypes.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_ctypes.mak" CFG="_ctypes - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_ctypes - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_ctypes - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_ctypes" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_ctypes - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_ctypes" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\_ctypes\libffi_msvc" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_ctypes - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_ctypes" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\_ctypes\libffi_msvc" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_ctypes - Win32 Release" -# Name "_ctypes - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\_ctypes.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\callbacks.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\callproc.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\cfield.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\libffi_msvc\ffi.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\malloc_closure.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\libffi_msvc\prep_cif.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\stgdict.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\libffi_msvc\win32.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_ctypes" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_ctypes - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_ctypes.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_ctypes.mak" CFG="_ctypes - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_ctypes - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_ctypes - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_ctypes" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_ctypes - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_ctypes" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\_ctypes\libffi_msvc" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_ctypes - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_ctypes" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\_ctypes\libffi_msvc" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_ctypes - Win32 Release" +# Name "_ctypes - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\_ctypes.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\callbacks.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\callproc.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\cfield.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\libffi_msvc\ffi.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\malloc_closure.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\libffi_msvc\prep_cif.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\stgdict.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\libffi_msvc\win32.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_ctypes_test.dsp b/PC/VC6/_ctypes_test.dsp --- a/PC/VC6/_ctypes_test.dsp +++ b/PC/VC6/_ctypes_test.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="_ctypes_test" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_ctypes_test - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_ctypes_test.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_ctypes_test.mak" CFG="_ctypes_test - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_ctypes_test - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_ctypes_test - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_ctypes_test" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_ctypes_test - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_ctypes_test" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_test.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_ctypes_test - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_ctypes_test" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_test_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_ctypes_test - Win32 Release" -# Name "_ctypes_test - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\_ctypes_test.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_ctypes_test" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_ctypes_test - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_ctypes_test.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_ctypes_test.mak" CFG="_ctypes_test - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_ctypes_test - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_ctypes_test - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_ctypes_test" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_ctypes_test - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_ctypes_test" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_test.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_ctypes_test - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_ctypes_test" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_test_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_ctypes_test - Win32 Release" +# Name "_ctypes_test - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\_ctypes_test.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_elementtree.dsp b/PC/VC6/_elementtree.dsp --- a/PC/VC6/_elementtree.dsp +++ b/PC/VC6/_elementtree.dsp @@ -1,111 +1,111 @@ -# Microsoft Developer Studio Project File - Name="_elementtree" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_elementtree - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_elementtree.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_elementtree.mak" CFG="_elementtree - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_elementtree - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_elementtree - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_elementtree" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_elementtree - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_elementtree" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D "BYTEORDER=1234" /D "XML_CONTEXT_BYTES=1024" /D "USE_PYEXPAT_CAPI" /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d100000" /subsystem:windows /dll /debug /machine:I386 /out:"./_elementtree.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_elementtree - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_elementtree" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D "BYTEORDER=1234" /D "XML_CONTEXT_BYTES=1024" /D "USE_PYEXPAT_CAPI" /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d100000" /subsystem:windows /dll /debug /machine:I386 /out:"./_elementtree_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_elementtree - Win32 Release" -# Name "_elementtree - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_elementtree.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmlparse.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmlrole.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmltok.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_elementtree" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_elementtree - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_elementtree.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_elementtree.mak" CFG="_elementtree - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_elementtree - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_elementtree - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_elementtree" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_elementtree - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_elementtree" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D "BYTEORDER=1234" /D "XML_CONTEXT_BYTES=1024" /D "USE_PYEXPAT_CAPI" /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d100000" /subsystem:windows /dll /debug /machine:I386 /out:"./_elementtree.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_elementtree - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_elementtree" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D "BYTEORDER=1234" /D "XML_CONTEXT_BYTES=1024" /D "USE_PYEXPAT_CAPI" /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d100000" /subsystem:windows /dll /debug /machine:I386 /out:"./_elementtree_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_elementtree - Win32 Release" +# Name "_elementtree - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_elementtree.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmlparse.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmlrole.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmltok.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_msi.dsp b/PC/VC6/_msi.dsp --- a/PC/VC6/_msi.dsp +++ b/PC/VC6/_msi.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="_msi" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_msi - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_msi.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_msi.mak" CFG="_msi - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_msi - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_msi - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_msi" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_msi - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_msi" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_msi.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_msi - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_msi" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_msi_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_msi - Win32 Release" -# Name "_msi - Win32 Debug" -# Begin Source File - -SOURCE=..\..\PC\_msi.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_msi" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_msi - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_msi.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_msi.mak" CFG="_msi - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_msi - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_msi - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_msi" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_msi - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_msi" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_msi.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_msi - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_msi" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_msi_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_msi - Win32 Release" +# Name "_msi - Win32 Debug" +# Begin Source File + +SOURCE=..\..\PC\_msi.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_multiprocessing.dsp b/PC/VC6/_multiprocessing.dsp --- a/PC/VC6/_multiprocessing.dsp +++ b/PC/VC6/_multiprocessing.dsp @@ -1,115 +1,115 @@ -# Microsoft Developer Studio Project File - Name="_multiprocessing" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_multiprocessing - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_multiprocessing.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_multiprocessing.mak" CFG="_multiprocessing - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_multiprocessing - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_multiprocessing - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_multiprocessing" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_multiprocessing - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_multiprocessing" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_multiprocessing.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_multiprocessing - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_multiprocessing" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1d0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_multiprocessing_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_multiprocessing - Win32 Release" -# Name "_multiprocessing - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_multiprocessing\multiprocessing.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_multiprocessing\pipe_connection.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_multiprocessing\semaphore.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_multiprocessing\socket_connection.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_multiprocessing\win32_functions.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_multiprocessing" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_multiprocessing - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_multiprocessing.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_multiprocessing.mak" CFG="_multiprocessing - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_multiprocessing - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_multiprocessing - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_multiprocessing" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_multiprocessing - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_multiprocessing" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_multiprocessing.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_multiprocessing - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_multiprocessing" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1d0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_multiprocessing_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_multiprocessing - Win32 Release" +# Name "_multiprocessing - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_multiprocessing\multiprocessing.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_multiprocessing\pipe_connection.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_multiprocessing\semaphore.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_multiprocessing\socket_connection.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_multiprocessing\win32_functions.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_socket.dsp b/PC/VC6/_socket.dsp --- a/PC/VC6/_socket.dsp +++ b/PC/VC6/_socket.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="_socket" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_socket - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_socket.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_socket.mak" CFG="_socket - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_socket - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_socket - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_socket" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_socket - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_socket" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_socket.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_socket - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_socket" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_socket_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_socket - Win32 Release" -# Name "_socket - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\socketmodule.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_socket" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_socket - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_socket.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_socket.mak" CFG="_socket - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_socket - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_socket - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_socket" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_socket - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_socket" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_socket.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_socket - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_socket" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_socket_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_socket - Win32 Release" +# Name "_socket - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\socketmodule.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_sqlite3.dsp b/PC/VC6/_sqlite3.dsp --- a/PC/VC6/_sqlite3.dsp +++ b/PC/VC6/_sqlite3.dsp @@ -1,131 +1,131 @@ -# Microsoft Developer Studio Project File - Name="_sqlite3" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_sqlite3 - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_sqlite3.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_sqlite3.mak" CFG="_sqlite3 - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_sqlite3 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_sqlite3 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_sqlite3" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_sqlite3 - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_sqlite3" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\..\sqlite-source-3.3.4" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D MODULE_NAME=\"sqlite3\" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\sqlite-source-3.3.4\sqlite3.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /out:"./_sqlite3.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_sqlite3 - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_sqlite3" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\..\sqlite-source-3.3.4" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D MODULE_NAME=\"sqlite3\" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\sqlite-source-3.3.4\sqlite3.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /out:"./_sqlite3_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_sqlite3 - Win32 Release" -# Name "_sqlite3 - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\cache.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\connection.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\cursor.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\microprotocols.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\module.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\prepare_protocol.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\row.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\statement.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\util.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_sqlite3" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_sqlite3 - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_sqlite3.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_sqlite3.mak" CFG="_sqlite3 - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_sqlite3 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_sqlite3 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_sqlite3" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_sqlite3 - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_sqlite3" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\..\sqlite-source-3.3.4" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D MODULE_NAME=\"sqlite3\" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\sqlite-source-3.3.4\sqlite3.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /out:"./_sqlite3.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_sqlite3 - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_sqlite3" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\..\sqlite-source-3.3.4" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D MODULE_NAME=\"sqlite3\" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\sqlite-source-3.3.4\sqlite3.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /out:"./_sqlite3_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_sqlite3 - Win32 Release" +# Name "_sqlite3 - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\cache.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\connection.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\cursor.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\microprotocols.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\module.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\prepare_protocol.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\row.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\statement.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\util.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_testcapi.dsp b/PC/VC6/_testcapi.dsp --- a/PC/VC6/_testcapi.dsp +++ b/PC/VC6/_testcapi.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="_testcapi" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_testcapi - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_testcapi.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_testcapi.mak" CFG="_testcapi - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_testcapi - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_testcapi - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_testcapi" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_testcapi - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_testcapi" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "NDEBUG" -# ADD RSC /l 0xc09 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1e1F0000" /dll /machine:I386 /out:"./_testcapi.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_testcapi - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_testcapi" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "_DEBUG" -# ADD RSC /l 0xc09 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1e1F0000" /dll /debug /machine:I386 /out:"./_testcapi_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_testcapi - Win32 Release" -# Name "_testcapi - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_testcapimodule.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_testcapi" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_testcapi - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_testcapi.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_testcapi.mak" CFG="_testcapi - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_testcapi - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_testcapi - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_testcapi" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_testcapi - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_testcapi" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "NDEBUG" +# ADD RSC /l 0xc09 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1e1F0000" /dll /machine:I386 /out:"./_testcapi.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_testcapi - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_testcapi" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "_DEBUG" +# ADD RSC /l 0xc09 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1e1F0000" /dll /debug /machine:I386 /out:"./_testcapi_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_testcapi - Win32 Release" +# Name "_testcapi - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_testcapimodule.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_tkinter.dsp b/PC/VC6/_tkinter.dsp --- a/PC/VC6/_tkinter.dsp +++ b/PC/VC6/_tkinter.dsp @@ -1,103 +1,103 @@ -# Microsoft Developer Studio Project File - Name="_tkinter" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_tkinter - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_tkinter.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_tkinter.mak" CFG="_tkinter - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_tkinter - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_tkinter - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_tkinter" -# PROP Scc_LocalPath "..\..\.." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_tkinter - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_tkinter" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\..\tcltk\include" /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "WITH_APPINIT" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 ..\..\..\tcltk\lib\tk85g.lib ..\..\..\tcltk\lib\tcl85g.lib odbc32.lib odbccp32.lib user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1e190000" /subsystem:windows /dll /debug /machine:I386 /out:"./_tkinter_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_tkinter - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_tkinter" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\..\tcltk\include" /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "WITH_APPINIT" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 ..\..\..\tcltk\lib\tk85.lib ..\..\..\tcltk\lib\tcl85.lib odbc32.lib odbccp32.lib user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1e190000" /subsystem:windows /dll /debug /machine:I386 /out:"./_tkinter.pyd" -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_tkinter - Win32 Release" -# Name "_tkinter - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_tkinter.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\tkappinit.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_tkinter" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_tkinter - Win32 Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_tkinter.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_tkinter.mak" CFG="_tkinter - Win32 Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_tkinter - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_tkinter - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_tkinter" +# PROP Scc_LocalPath "..\..\.." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_tkinter - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_tkinter" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\..\tcltk\include" /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "WITH_APPINIT" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 ..\..\..\tcltk\lib\tk85g.lib ..\..\..\tcltk\lib\tcl85g.lib odbc32.lib odbccp32.lib user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1e190000" /subsystem:windows /dll /debug /machine:I386 /out:"./_tkinter_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_tkinter - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_tkinter" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\..\tcltk\include" /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "WITH_APPINIT" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 ..\..\..\tcltk\lib\tk85.lib ..\..\..\tcltk\lib\tcl85.lib odbc32.lib odbccp32.lib user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1e190000" /subsystem:windows /dll /debug /machine:I386 /out:"./_tkinter.pyd" +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_tkinter - Win32 Release" +# Name "_tkinter - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_tkinter.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\tkappinit.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/bz2.dsp b/PC/VC6/bz2.dsp --- a/PC/VC6/bz2.dsp +++ b/PC/VC6/bz2.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="bz2" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=bz2 - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "bz2.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "bz2.mak" CFG="bz2 - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "bz2 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "bz2 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "bz2" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "bz2 - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\bz2" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\..\bzip2-1.0.5" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 ..\..\..\bzip2-1.0.5\libbz2.lib /nologo /base:"0x1D170000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./bz2.pyd" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ELSEIF "$(CFG)" == "bz2 - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\bz2" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\..\bzip2-1.0.5" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 ..\..\..\bzip2-1.0.5\libbz2.lib /nologo /base:"0x1D170000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"msvcrt" /nodefaultlib:"libc" /out:"./bz2_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "bz2 - Win32 Release" -# Name "bz2 - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\bz2module.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="bz2" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=bz2 - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "bz2.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "bz2.mak" CFG="bz2 - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "bz2 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "bz2 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "bz2" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "bz2 - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\bz2" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\..\bzip2-1.0.5" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 ..\..\..\bzip2-1.0.5\libbz2.lib /nologo /base:"0x1D170000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./bz2.pyd" +# SUBTRACT LINK32 /pdb:none /nodefaultlib + +!ELSEIF "$(CFG)" == "bz2 - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\bz2" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\..\bzip2-1.0.5" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 ..\..\..\bzip2-1.0.5\libbz2.lib /nologo /base:"0x1D170000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"msvcrt" /nodefaultlib:"libc" /out:"./bz2_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "bz2 - Win32 Release" +# Name "bz2 - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\bz2module.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/pyexpat.dsp b/PC/VC6/pyexpat.dsp --- a/PC/VC6/pyexpat.dsp +++ b/PC/VC6/pyexpat.dsp @@ -1,111 +1,111 @@ -# Microsoft Developer Studio Project File - Name="pyexpat" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=pyexpat - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "pyexpat.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "pyexpat.mak" CFG="pyexpat - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "pyexpat - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "pyexpat - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "pyexpat" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "pyexpat - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\pyexpat" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D BYTEORDER=1234 /D XML_CONTEXT_BYTES=1024 /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D100000" /subsystem:windows /dll /debug /machine:I386 /out:"./pyexpat.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "pyexpat - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\pyexpat" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "HAVE_EXPAT_H" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D BYTEORDER=1234 /D XML_CONTEXT_BYTES=1024 /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D100000" /subsystem:windows /dll /debug /machine:I386 /out:"./pyexpat_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "pyexpat - Win32 Release" -# Name "pyexpat - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\pyexpat.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmlparse.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmlrole.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmltok.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="pyexpat" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=pyexpat - Win32 Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "pyexpat.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "pyexpat.mak" CFG="pyexpat - Win32 Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "pyexpat - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "pyexpat - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "pyexpat" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "pyexpat - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\pyexpat" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D BYTEORDER=1234 /D XML_CONTEXT_BYTES=1024 /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D100000" /subsystem:windows /dll /debug /machine:I386 /out:"./pyexpat.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "pyexpat - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\pyexpat" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "HAVE_EXPAT_H" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D BYTEORDER=1234 /D XML_CONTEXT_BYTES=1024 /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D100000" /subsystem:windows /dll /debug /machine:I386 /out:"./pyexpat_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "pyexpat - Win32 Release" +# Name "pyexpat - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\pyexpat.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmlparse.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmlrole.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmltok.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/python.dsp b/PC/VC6/python.dsp --- a/PC/VC6/python.dsp +++ b/PC/VC6/python.dsp @@ -1,100 +1,100 @@ -# Microsoft Developer Studio Project File - Name="python" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=python - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "python.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "python.mak" CFG="python - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "python - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "python - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "python" -# PROP Scc_LocalPath ".." -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "python - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\python" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1d000000" /subsystem:console /debug /machine:I386 -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "python - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\python" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /i "....\\Include" /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1d000000" /stack:0x200000 /subsystem:console /debug /machine:I386 /out:"./python_d.exe" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "python - Win32 Release" -# Name "python - Win32 Debug" -# Begin Source File - -SOURCE=..\pycon.ico -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\python.c -# End Source File -# Begin Source File - -SOURCE=..\python_exe.rc -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="python" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Console Application" 0x0103 + +CFG=python - Win32 Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "python.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "python.mak" CFG="python - Win32 Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "python - Win32 Release" (based on "Win32 (x86) Console Application") +!MESSAGE "python - Win32 Debug" (based on "Win32 (x86) Console Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "python" +# PROP Scc_LocalPath ".." +CPP=cl.exe +RSC=rc.exe + +!IF "$(CFG)" == "python - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\python" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1d000000" /subsystem:console /debug /machine:I386 +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "python - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\python" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /c +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /i "....\\Include" /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# ADD LINK32 odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1d000000" /stack:0x200000 /subsystem:console /debug /machine:I386 /out:"./python_d.exe" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "python - Win32 Release" +# Name "python - Win32 Debug" +# Begin Source File + +SOURCE=..\pycon.ico +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\python.c +# End Source File +# Begin Source File + +SOURCE=..\python_exe.rc +# End Source File +# End Target +# End Project diff --git a/PC/VC6/pythoncore.dsp b/PC/VC6/pythoncore.dsp --- a/PC/VC6/pythoncore.dsp +++ b/PC/VC6/pythoncore.dsp @@ -1,777 +1,777 @@ -# Microsoft Developer Studio Project File - Name="pythoncore" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=pythoncore - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "pythoncore.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "pythoncore.mak" CFG="pythoncore - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "pythoncore - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "pythoncore - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "pythoncore" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "pythoncore - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\pythoncore" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\modules\zlib" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "USE_DL_EXPORT" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL" -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL" -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /i "..\..\Include" /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python32.dll" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "pythoncore - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\pythoncore" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\modules\zlib" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "USE_DL_EXPORT" /D "WIN32" /D "_WINDOWS" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL" -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL" -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /i "..\..\Include" /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python32_d.dll" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "pythoncore - Win32 Release" -# Name "pythoncore - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_bisectmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_cn.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_hk.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_iso2022.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_jp.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_kr.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_tw.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_codecsmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_collectionsmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_csv.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_datetimemodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_functoolsmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_heapqmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\_iomodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_json.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_localemodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_lsprof.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_math.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_pickle.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_randommodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sre.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_struct.c -# End Source File -# Begin Source File - -SOURCE=..\..\PC\_subprocess.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_threadmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_time.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\_warnings.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_weakref.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\abstract.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\acceler.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\adler32.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\arraymodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\asdl.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\ast.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\atexitmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\audioop.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\binascii.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\bitset.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\bltinmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\boolobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\bufferedio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\bytearrayobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\bytes_methods.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\bytesio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\bytesobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\capsule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\cellobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\ceval.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\classobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cmathmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\codecs.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\codeobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\compile.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\complexobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\compress.c -# End Source File -# Begin Source File - -SOURCE=..\config.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\crc32.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\dynamic_annotations.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\deflate.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\descrobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\dictobject.c -# End Source File -# Begin Source File - -SOURCE=..\dl_nt.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\dtoa.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\dynload_win.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\enumobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\errnomodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\errors.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\exceptions.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\fileio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\fileobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\fileutils.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\firstsets.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\floatobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\formatter_unicode.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\frameobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\frozen.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\funcobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\future.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\gcmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\genobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getargs.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\getbuildinfo.c -# ADD CPP /D BUILD=46 -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getcompiler.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getcopyright.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getopt.c -# End Source File -# Begin Source File - -SOURCE=..\getpathp.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getplatform.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getversion.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\graminit.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\grammar.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\grammar1.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\gzio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\import.c -# End Source File -# Begin Source File - -SOURCE=..\import_nt.c -# ADD CPP /I "..\..\Python" -# End Source File -# Begin Source File - -SOURCE=..\..\Python\importdl.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\infback.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\inffast.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\inflate.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\inftrees.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\iobase.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\iterobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\itertoolsmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\listnode.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\listobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\longobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\main.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\marshal.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\mathmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\md5module.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\memoryobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\metagrammar.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\methodobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\mmapmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\modsupport.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\moduleobject.c -# End Source File -# Begin Source File - -SOURCE=..\msvcrtmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\multibytecodec.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\myreadline.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\mysnprintf.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\mystrtoul.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\node.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\object.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\obmalloc.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\operator.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\parser.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\parsermodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\parsetok.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\peephole.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\posixmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pyarena.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pyctype.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pyfpe.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pymath.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pystate.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pystrcmp.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pystrtod.c -# End Source File -# Begin Source File - -SOURCE="..\..\Python\Python-ast.c" -# End Source File -# Begin Source File - -SOURCE=..\python_nt.rc -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pythonrun.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pytime.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\rangeobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\rotatingtree.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\setobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\sha1module.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\sha256module.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\sha512module.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\signalmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\sliceobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\stringio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\structmember.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\structseq.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\symtable.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\symtablemodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\sysmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\textio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\thread.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\timemodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\tokenizer.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\traceback.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\trees.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\tupleobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\typeobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\uncompr.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\unicodectype.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\unicodeobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\weakrefobject.c -# End Source File -# Begin Source File - -SOURCE=..\winreg.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\xxsubtype.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zipimport.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlibmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\zutil.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="pythoncore" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=pythoncore - Win32 Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "pythoncore.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "pythoncore.mak" CFG="pythoncore - Win32 Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "pythoncore - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "pythoncore - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "pythoncore" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "pythoncore - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\pythoncore" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\modules\zlib" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "USE_DL_EXPORT" /YX /FD /Zm200 /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL" +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL" +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /i "..\..\Include" /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python32.dll" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "pythoncore - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\pythoncore" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\modules\zlib" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "USE_DL_EXPORT" /D "WIN32" /D "_WINDOWS" /YX /FD /Zm200 /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL" +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL" +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /i "..\..\Include" /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python32_d.dll" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "pythoncore - Win32 Release" +# Name "pythoncore - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_bisectmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_cn.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_hk.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_iso2022.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_jp.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_kr.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_tw.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_codecsmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_collectionsmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_csv.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_datetimemodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_functoolsmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_heapqmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\_iomodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_json.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_localemodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_lsprof.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_math.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_pickle.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_randommodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sre.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_struct.c +# End Source File +# Begin Source File + +SOURCE=..\..\PC\_subprocess.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_threadmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_time.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\_warnings.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_weakref.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\abstract.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\acceler.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\adler32.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\arraymodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\asdl.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\ast.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\atexitmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\audioop.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\binascii.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\bitset.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\bltinmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\boolobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\bufferedio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\bytearrayobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\bytes_methods.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\bytesio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\bytesobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\capsule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\cellobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\ceval.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\classobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cmathmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\codecs.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\codeobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\compile.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\complexobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\compress.c +# End Source File +# Begin Source File + +SOURCE=..\config.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\crc32.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\dynamic_annotations.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\deflate.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\descrobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\dictobject.c +# End Source File +# Begin Source File + +SOURCE=..\dl_nt.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\dtoa.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\dynload_win.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\enumobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\errnomodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\errors.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\exceptions.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\fileio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\fileobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\fileutils.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\firstsets.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\floatobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\formatter_unicode.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\frameobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\frozen.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\funcobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\future.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\gcmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\genobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getargs.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\getbuildinfo.c +# ADD CPP /D BUILD=46 +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getcompiler.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getcopyright.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getopt.c +# End Source File +# Begin Source File + +SOURCE=..\getpathp.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getplatform.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getversion.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\graminit.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\grammar.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\grammar1.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\gzio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\import.c +# End Source File +# Begin Source File + +SOURCE=..\import_nt.c +# ADD CPP /I "..\..\Python" +# End Source File +# Begin Source File + +SOURCE=..\..\Python\importdl.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\infback.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\inffast.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\inflate.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\inftrees.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\iobase.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\iterobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\itertoolsmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\listnode.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\listobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\longobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\main.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\marshal.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\mathmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\md5module.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\memoryobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\metagrammar.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\methodobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\mmapmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\modsupport.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\moduleobject.c +# End Source File +# Begin Source File + +SOURCE=..\msvcrtmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\multibytecodec.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\myreadline.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\mysnprintf.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\mystrtoul.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\node.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\object.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\obmalloc.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\operator.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\parser.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\parsermodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\parsetok.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\peephole.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\posixmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pyarena.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pyctype.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pyfpe.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pymath.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pystate.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pystrcmp.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pystrtod.c +# End Source File +# Begin Source File + +SOURCE="..\..\Python\Python-ast.c" +# End Source File +# Begin Source File + +SOURCE=..\python_nt.rc +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pythonrun.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pytime.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\rangeobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\rotatingtree.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\setobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\sha1module.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\sha256module.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\sha512module.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\signalmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\sliceobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\stringio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\structmember.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\structseq.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\symtable.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\symtablemodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\sysmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\textio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\thread.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\timemodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\tokenizer.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\traceback.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\trees.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\tupleobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\typeobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\uncompr.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\unicodectype.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\unicodeobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\weakrefobject.c +# End Source File +# Begin Source File + +SOURCE=..\winreg.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\xxsubtype.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zipimport.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlibmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\zutil.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/pythonw.dsp b/PC/VC6/pythonw.dsp --- a/PC/VC6/pythonw.dsp +++ b/PC/VC6/pythonw.dsp @@ -1,101 +1,101 @@ -# Microsoft Developer Studio Project File - Name="pythonw" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Application" 0x0101 - -CFG=pythonw - Win32 Alpha Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "pythonw.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "pythonw.mak" CFG="pythonw - Win32 Alpha Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "pythonw - Win32 Release" (based on "Win32 (x86) Application") -!MESSAGE "pythonw - Win32 Debug" (based on "Win32 (x86) Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "pythonw" -# PROP Scc_LocalPath "..\pc" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "pythonw - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\pythonw" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d000000" /subsystem:windows /debug /machine:I386 -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "pythonw - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\pythonw" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d000000" /subsystem:windows /debug /machine:I386 /out:"./pythonw_d.exe" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "pythonw - Win32 Release" -# Name "pythonw - Win32 Debug" -# Begin Source File - -SOURCE=..\python_exe.rc -# End Source File -# Begin Source File - -SOURCE=..\WinMain.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="pythonw" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=pythonw - Win32 Alpha Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "pythonw.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "pythonw.mak" CFG="pythonw - Win32 Alpha Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "pythonw - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "pythonw - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "pythonw" +# PROP Scc_LocalPath "..\pc" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "pythonw - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\pythonw" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d000000" /subsystem:windows /debug /machine:I386 +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "pythonw - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\pythonw" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d000000" /subsystem:windows /debug /machine:I386 /out:"./pythonw_d.exe" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "pythonw - Win32 Release" +# Name "pythonw - Win32 Debug" +# Begin Source File + +SOURCE=..\python_exe.rc +# End Source File +# Begin Source File + +SOURCE=..\WinMain.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/select.dsp b/PC/VC6/select.dsp --- a/PC/VC6/select.dsp +++ b/PC/VC6/select.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="select" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=select - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "select.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "select.mak" CFG="select - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "select - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "select - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "select" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "select - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\select" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /base:"0x1D110000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./select.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "select - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\select" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /base:"0x1D110000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /nodefaultlib:"msvcrt" /out:"./select_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "select - Win32 Release" -# Name "select - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\selectmodule.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="select" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=select - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "select.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "select.mak" CFG="select - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "select - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "select - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "select" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "select - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\select" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /base:"0x1D110000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./select.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "select - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\select" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /base:"0x1D110000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /nodefaultlib:"msvcrt" /out:"./select_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "select - Win32 Release" +# Name "select - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\selectmodule.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/unicodedata.dsp b/PC/VC6/unicodedata.dsp --- a/PC/VC6/unicodedata.dsp +++ b/PC/VC6/unicodedata.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="unicodedata" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=unicodedata - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "unicodedata.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "unicodedata.mak" CFG="unicodedata - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "unicodedata - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "unicodedata - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "unicodedata" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "unicodedata - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\unicodedata" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "NDEBUG" -# ADD RSC /l 0xc09 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /machine:I386 /out:"./unicodedata.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "unicodedata - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\unicodedata" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "_DEBUG" -# ADD RSC /l 0xc09 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /debug /machine:I386 /out:"./unicodedata_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "unicodedata - Win32 Release" -# Name "unicodedata - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\unicodedata.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="unicodedata" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=unicodedata - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "unicodedata.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "unicodedata.mak" CFG="unicodedata - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "unicodedata - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "unicodedata - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "unicodedata" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "unicodedata - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\unicodedata" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "NDEBUG" +# ADD RSC /l 0xc09 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /machine:I386 /out:"./unicodedata.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "unicodedata - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\unicodedata" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "_DEBUG" +# ADD RSC /l 0xc09 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /debug /machine:I386 /out:"./unicodedata_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "unicodedata - Win32 Release" +# Name "unicodedata - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\unicodedata.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/w9xpopen.dsp b/PC/VC6/w9xpopen.dsp --- a/PC/VC6/w9xpopen.dsp +++ b/PC/VC6/w9xpopen.dsp @@ -1,97 +1,97 @@ -# Microsoft Developer Studio Project File - Name="w9xpopen" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Application" 0x0101 - -CFG=w9xpopen - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "w9xpopen.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "w9xpopen.mak" CFG="w9xpopen - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "w9xpopen - Win32 Release" (based on "Win32 (x86) Application") -!MESSAGE "w9xpopen - Win32 Debug" (based on "Win32 (x86) Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "w9xpopen - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\w9xpopen" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "NDEBUG" -# ADD RSC /l 0xc09 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 -# ADD LINK32 user32.lib /nologo /machine:I386 -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "w9xpopen - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\w9xpopen" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "_DEBUG" -# ADD RSC /l 0xc09 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib /nologo /debug /machine:I386 /out:"./w9xpopen_d.exe" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "w9xpopen - Win32 Release" -# Name "w9xpopen - Win32 Debug" -# Begin Source File - -SOURCE=..\w9xpopen.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="w9xpopen" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=w9xpopen - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "w9xpopen.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "w9xpopen.mak" CFG="w9xpopen - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "w9xpopen - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "w9xpopen - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "w9xpopen - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\w9xpopen" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "NDEBUG" +# ADD RSC /l 0xc09 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 user32.lib /nologo /machine:I386 +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "w9xpopen - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\w9xpopen" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "_DEBUG" +# ADD RSC /l 0xc09 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib /nologo /debug /machine:I386 /out:"./w9xpopen_d.exe" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "w9xpopen - Win32 Release" +# Name "w9xpopen - Win32 Debug" +# Begin Source File + +SOURCE=..\w9xpopen.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/winsound.dsp b/PC/VC6/winsound.dsp --- a/PC/VC6/winsound.dsp +++ b/PC/VC6/winsound.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="winsound" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=winsound - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "winsound.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "winsound.mak" CFG="winsound - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "winsound - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "winsound - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "winsound" -# PROP Scc_LocalPath "..\pc" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "winsound - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\winsound" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "NDEBUG" -# ADD RSC /l 0xc09 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib winmm.lib user32.lib /nologo /base:"0x1D160000" /dll /machine:I386 /out:"./winsound.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "winsound - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\winsound" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "_DEBUG" -# ADD RSC /l 0xc09 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib winmm.lib /nologo /base:"0x1D160000" /dll /debug /machine:I386 /out:"./winsound_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "winsound - Win32 Release" -# Name "winsound - Win32 Debug" -# Begin Source File - -SOURCE=..\winsound.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="winsound" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=winsound - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "winsound.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "winsound.mak" CFG="winsound - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "winsound - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "winsound - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "winsound" +# PROP Scc_LocalPath "..\pc" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "winsound - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\winsound" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "NDEBUG" +# ADD RSC /l 0xc09 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 +# ADD LINK32 kernel32.lib winmm.lib user32.lib /nologo /base:"0x1D160000" /dll /machine:I386 /out:"./winsound.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "winsound - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\winsound" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "_DEBUG" +# ADD RSC /l 0xc09 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib winmm.lib /nologo /base:"0x1D160000" /dll /debug /machine:I386 /out:"./winsound_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "winsound - Win32 Release" +# Name "winsound - Win32 Debug" +# Begin Source File + +SOURCE=..\winsound.c +# End Source File +# End Target +# End Project diff --git a/PC/VS7.1/_ctypes.vcproj b/PC/VS7.1/_ctypes.vcproj --- a/PC/VS7.1/_ctypes.vcproj +++ b/PC/VS7.1/_ctypes.vcproj @@ -1,311 +1,311 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_ctypes_test.vcproj b/PC/VS7.1/_ctypes_test.vcproj --- a/PC/VS7.1/_ctypes_test.vcproj +++ b/PC/VS7.1/_ctypes_test.vcproj @@ -1,242 +1,242 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_elementtree.vcproj b/PC/VS7.1/_elementtree.vcproj --- a/PC/VS7.1/_elementtree.vcproj +++ b/PC/VS7.1/_elementtree.vcproj @@ -1,264 +1,264 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_msi.vcproj b/PC/VS7.1/_msi.vcproj --- a/PC/VS7.1/_msi.vcproj +++ b/PC/VS7.1/_msi.vcproj @@ -1,252 +1,252 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_socket.vcproj b/PC/VS7.1/_socket.vcproj --- a/PC/VS7.1/_socket.vcproj +++ b/PC/VS7.1/_socket.vcproj @@ -1,254 +1,254 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_sqlite3.vcproj b/PC/VS7.1/_sqlite3.vcproj --- a/PC/VS7.1/_sqlite3.vcproj +++ b/PC/VS7.1/_sqlite3.vcproj @@ -1,283 +1,283 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_ssl.vcproj b/PC/VS7.1/_ssl.vcproj --- a/PC/VS7.1/_ssl.vcproj +++ b/PC/VS7.1/_ssl.vcproj @@ -1,84 +1,84 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_testcapi.vcproj b/PC/VS7.1/_testcapi.vcproj --- a/PC/VS7.1/_testcapi.vcproj +++ b/PC/VS7.1/_testcapi.vcproj @@ -1,247 +1,247 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_tkinter.vcproj b/PC/VS7.1/_tkinter.vcproj --- a/PC/VS7.1/_tkinter.vcproj +++ b/PC/VS7.1/_tkinter.vcproj @@ -1,261 +1,261 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/bz2.vcproj b/PC/VS7.1/bz2.vcproj --- a/PC/VS7.1/bz2.vcproj +++ b/PC/VS7.1/bz2.vcproj @@ -1,271 +1,271 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/make_buildinfo.vcproj b/PC/VS7.1/make_buildinfo.vcproj --- a/PC/VS7.1/make_buildinfo.vcproj +++ b/PC/VS7.1/make_buildinfo.vcproj @@ -1,122 +1,122 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/make_versioninfo.vcproj b/PC/VS7.1/make_versioninfo.vcproj --- a/PC/VS7.1/make_versioninfo.vcproj +++ b/PC/VS7.1/make_versioninfo.vcproj @@ -1,142 +1,142 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/pcbuild.sln b/PC/VS7.1/pcbuild.sln --- a/PC/VS7.1/pcbuild.sln +++ b/PC/VS7.1/pcbuild.sln @@ -1,275 +1,275 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{324F66C2-44D0-4D50-B979-F9DAE7FD36DB}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{59CBF474-9E06-4C50-9142-C44A118BB447}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{5B51DFF7-5DC0-41F8-8791-A4AB7114A151}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{AC557788-6354-43F7-BE05-C9C8C59A344A}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{7E551393-3C43-47F8-9F3F-5BC368A6C487}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" - ProjectSection(ProjectDependencies) = postProject - {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} - {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{97239A56-DBC0-41D2-BC14-C87D9B97D63B}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{51F35FAE-FB92-4B2C-9187-1542C065AD77}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{F22F40F4-D318-40DC-96B3-88DC81CE0894}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{8CF334D9-4F82-42EB-97AF-83592C5AFD2F}" - ProjectSection(ProjectDependencies) = postProject - {F22F40F4-D318-40DC-96B3-88DC81CE0894} = {F22F40F4-D318-40DC-96B3-88DC81CE0894} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{2FF0A312-22F9-4C34-B070-842916DE27A9}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - ReleaseAMD64 = ReleaseAMD64 - ReleaseItanium = ReleaseItanium - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Debug.ActiveCfg = Debug|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Debug.Build.0 = Debug|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Release.ActiveCfg = Release|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Release.Build.0 = Release|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Debug.ActiveCfg = Debug|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Debug.Build.0 = Debug|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Release.ActiveCfg = Release|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Release.Build.0 = Release|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.Debug.ActiveCfg = Debug|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.Debug.Build.0 = Debug|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.Release.ActiveCfg = Release|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.Release.Build.0 = Release|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Debug.ActiveCfg = Debug|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Debug.Build.0 = Debug|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Release.ActiveCfg = Release|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Release.Build.0 = Release|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.Debug.ActiveCfg = Debug|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.Debug.Build.0 = Debug|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.Release.ActiveCfg = Release|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.Release.Build.0 = Release|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug.ActiveCfg = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug.Build.0 = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseAMD64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseAMD64.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseItanium.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseItanium.Build.0 = Release|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Debug.ActiveCfg = Debug|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Debug.Build.0 = Debug|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Release.ActiveCfg = Release|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Release.Build.0 = Release|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug.ActiveCfg = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug.Build.0 = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release.ActiveCfg = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release.Build.0 = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug.ActiveCfg = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug.Build.0 = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release.ActiveCfg = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release.Build.0 = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug.ActiveCfg = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug.Build.0 = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release.ActiveCfg = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release.Build.0 = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Debug.ActiveCfg = Debug|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Debug.Build.0 = Debug|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Release.ActiveCfg = Release|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Release.Build.0 = Release|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Debug.ActiveCfg = Debug|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Debug.Build.0 = Debug|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Release.ActiveCfg = Release|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Release.Build.0 = Release|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug.ActiveCfg = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug.Build.0 = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release.ActiveCfg = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release.Build.0 = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.ReleaseAMD64.ActiveCfg = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.ReleaseItanium.ActiveCfg = Release|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Debug.ActiveCfg = Debug|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Debug.Build.0 = Debug|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Release.ActiveCfg = Release|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Release.Build.0 = Release|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Debug.ActiveCfg = Debug|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Debug.Build.0 = Debug|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Release.ActiveCfg = Release|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Release.Build.0 = Release|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug.ActiveCfg = Debug|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug.Build.0 = Debug|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseAMD64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseAMD64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseItanium.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseItanium.Build.0 = Release|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Debug.ActiveCfg = Debug|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Debug.Build.0 = Debug|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Release.ActiveCfg = Release|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Release.Build.0 = Release|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Debug.ActiveCfg = Debug|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Debug.Build.0 = Debug|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Release.ActiveCfg = Release|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Release.Build.0 = Release|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Debug.ActiveCfg = Debug|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Debug.Build.0 = Debug|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Release.ActiveCfg = Release|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Release.Build.0 = Release|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.Debug.ActiveCfg = Debug|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.Debug.Build.0 = Debug|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.Release.ActiveCfg = Release|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.Release.Build.0 = Release|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - EndGlobalSection - GlobalSection(SolutionItems) = postSolution - ..\Modules\getbuildinfo.c = ..\Modules\getbuildinfo.c - readme.txt = readme.txt - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{324F66C2-44D0-4D50-B979-F9DAE7FD36DB}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{59CBF474-9E06-4C50-9142-C44A118BB447}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{5B51DFF7-5DC0-41F8-8791-A4AB7114A151}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{AC557788-6354-43F7-BE05-C9C8C59A344A}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{7E551393-3C43-47F8-9F3F-5BC368A6C487}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" + ProjectSection(ProjectDependencies) = postProject + {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} + {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{97239A56-DBC0-41D2-BC14-C87D9B97D63B}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{51F35FAE-FB92-4B2C-9187-1542C065AD77}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{F22F40F4-D318-40DC-96B3-88DC81CE0894}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{8CF334D9-4F82-42EB-97AF-83592C5AFD2F}" + ProjectSection(ProjectDependencies) = postProject + {F22F40F4-D318-40DC-96B3-88DC81CE0894} = {F22F40F4-D318-40DC-96B3-88DC81CE0894} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{2FF0A312-22F9-4C34-B070-842916DE27A9}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + Debug = Debug + Release = Release + ReleaseAMD64 = ReleaseAMD64 + ReleaseItanium = ReleaseItanium + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Debug.ActiveCfg = Debug|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Debug.Build.0 = Debug|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Release.ActiveCfg = Release|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Release.Build.0 = Release|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Debug.ActiveCfg = Debug|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Debug.Build.0 = Debug|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Release.ActiveCfg = Release|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Release.Build.0 = Release|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.Debug.ActiveCfg = Debug|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.Debug.Build.0 = Debug|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.Release.ActiveCfg = Release|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.Release.Build.0 = Release|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Debug.ActiveCfg = Debug|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Debug.Build.0 = Debug|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Release.ActiveCfg = Release|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Release.Build.0 = Release|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.Debug.ActiveCfg = Debug|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.Debug.Build.0 = Debug|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.Release.ActiveCfg = Release|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.Release.Build.0 = Release|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug.ActiveCfg = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug.Build.0 = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseAMD64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseAMD64.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseItanium.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseItanium.Build.0 = Release|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Debug.ActiveCfg = Debug|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Debug.Build.0 = Debug|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Release.ActiveCfg = Release|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Release.Build.0 = Release|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug.ActiveCfg = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug.Build.0 = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release.ActiveCfg = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release.Build.0 = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug.ActiveCfg = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug.Build.0 = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release.ActiveCfg = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release.Build.0 = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug.ActiveCfg = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug.Build.0 = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release.ActiveCfg = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release.Build.0 = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Debug.ActiveCfg = Debug|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Debug.Build.0 = Debug|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Release.ActiveCfg = Release|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Release.Build.0 = Release|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Debug.ActiveCfg = Debug|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Debug.Build.0 = Debug|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Release.ActiveCfg = Release|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Release.Build.0 = Release|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug.ActiveCfg = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug.Build.0 = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release.ActiveCfg = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release.Build.0 = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.ReleaseAMD64.ActiveCfg = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.ReleaseItanium.ActiveCfg = Release|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Debug.ActiveCfg = Debug|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Debug.Build.0 = Debug|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Release.ActiveCfg = Release|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Release.Build.0 = Release|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Debug.ActiveCfg = Debug|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Debug.Build.0 = Debug|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Release.ActiveCfg = Release|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Release.Build.0 = Release|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug.ActiveCfg = Debug|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug.Build.0 = Debug|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseAMD64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseAMD64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseItanium.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseItanium.Build.0 = Release|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Debug.ActiveCfg = Debug|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Debug.Build.0 = Debug|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Release.ActiveCfg = Release|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Release.Build.0 = Release|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Debug.ActiveCfg = Debug|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Debug.Build.0 = Debug|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Release.ActiveCfg = Release|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Release.Build.0 = Release|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Debug.ActiveCfg = Debug|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Debug.Build.0 = Debug|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Release.ActiveCfg = Release|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Release.Build.0 = Release|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.Debug.ActiveCfg = Debug|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.Debug.Build.0 = Debug|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.Release.ActiveCfg = Release|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.Release.Build.0 = Release|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + EndGlobalSection + GlobalSection(SolutionItems) = postSolution + ..\Modules\getbuildinfo.c = ..\Modules\getbuildinfo.c + readme.txt = readme.txt + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/PC/VS7.1/pyexpat.vcproj b/PC/VS7.1/pyexpat.vcproj --- a/PC/VS7.1/pyexpat.vcproj +++ b/PC/VS7.1/pyexpat.vcproj @@ -1,263 +1,263 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/python.vcproj b/PC/VS7.1/python.vcproj --- a/PC/VS7.1/python.vcproj +++ b/PC/VS7.1/python.vcproj @@ -1,274 +1,274 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/pythoncore.vcproj b/PC/VS7.1/pythoncore.vcproj --- a/PC/VS7.1/pythoncore.vcproj +++ b/PC/VS7.1/pythoncore.vcproj @@ -1,847 +1,847 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/pythonw.vcproj b/PC/VS7.1/pythonw.vcproj --- a/PC/VS7.1/pythonw.vcproj +++ b/PC/VS7.1/pythonw.vcproj @@ -1,261 +1,261 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/select.vcproj b/PC/VS7.1/select.vcproj --- a/PC/VS7.1/select.vcproj +++ b/PC/VS7.1/select.vcproj @@ -1,258 +1,258 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/unicodedata.vcproj b/PC/VS7.1/unicodedata.vcproj --- a/PC/VS7.1/unicodedata.vcproj +++ b/PC/VS7.1/unicodedata.vcproj @@ -1,247 +1,247 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/w9xpopen.vcproj b/PC/VS7.1/w9xpopen.vcproj --- a/PC/VS7.1/w9xpopen.vcproj +++ b/PC/VS7.1/w9xpopen.vcproj @@ -1,121 +1,121 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/winsound.vcproj b/PC/VS7.1/winsound.vcproj --- a/PC/VS7.1/winsound.vcproj +++ b/PC/VS7.1/winsound.vcproj @@ -1,251 +1,251 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_ctypes.vcproj b/PC/VS8.0/_ctypes.vcproj --- a/PC/VS8.0/_ctypes.vcproj +++ b/PC/VS8.0/_ctypes.vcproj @@ -1,705 +1,705 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_ctypes_test.vcproj b/PC/VS8.0/_ctypes_test.vcproj --- a/PC/VS8.0/_ctypes_test.vcproj +++ b/PC/VS8.0/_ctypes_test.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_elementtree.vcproj b/PC/VS8.0/_elementtree.vcproj --- a/PC/VS8.0/_elementtree.vcproj +++ b/PC/VS8.0/_elementtree.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_hashlib.vcproj b/PC/VS8.0/_hashlib.vcproj --- a/PC/VS8.0/_hashlib.vcproj +++ b/PC/VS8.0/_hashlib.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_msi.vcproj b/PC/VS8.0/_msi.vcproj --- a/PC/VS8.0/_msi.vcproj +++ b/PC/VS8.0/_msi.vcproj @@ -1,529 +1,529 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_multiprocessing.vcproj b/PC/VS8.0/_multiprocessing.vcproj --- a/PC/VS8.0/_multiprocessing.vcproj +++ b/PC/VS8.0/_multiprocessing.vcproj @@ -1,557 +1,557 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_socket.vcproj b/PC/VS8.0/_socket.vcproj --- a/PC/VS8.0/_socket.vcproj +++ b/PC/VS8.0/_socket.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_sqlite3.vcproj b/PC/VS8.0/_sqlite3.vcproj --- a/PC/VS8.0/_sqlite3.vcproj +++ b/PC/VS8.0/_sqlite3.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_ssl.vcproj b/PC/VS8.0/_ssl.vcproj --- a/PC/VS8.0/_ssl.vcproj +++ b/PC/VS8.0/_ssl.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_testcapi.vcproj b/PC/VS8.0/_testcapi.vcproj --- a/PC/VS8.0/_testcapi.vcproj +++ b/PC/VS8.0/_testcapi.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_tkinter.vcproj b/PC/VS8.0/_tkinter.vcproj --- a/PC/VS8.0/_tkinter.vcproj +++ b/PC/VS8.0/_tkinter.vcproj @@ -1,541 +1,541 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/bdist_wininst.vcproj b/PC/VS8.0/bdist_wininst.vcproj --- a/PC/VS8.0/bdist_wininst.vcproj +++ b/PC/VS8.0/bdist_wininst.vcproj @@ -1,270 +1,270 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/bz2.vcproj b/PC/VS8.0/bz2.vcproj --- a/PC/VS8.0/bz2.vcproj +++ b/PC/VS8.0/bz2.vcproj @@ -1,581 +1,581 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/kill_python.vcproj b/PC/VS8.0/kill_python.vcproj --- a/PC/VS8.0/kill_python.vcproj +++ b/PC/VS8.0/kill_python.vcproj @@ -1,279 +1,279 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/make_buildinfo.vcproj b/PC/VS8.0/make_buildinfo.vcproj --- a/PC/VS8.0/make_buildinfo.vcproj +++ b/PC/VS8.0/make_buildinfo.vcproj @@ -1,101 +1,101 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/make_versioninfo.vcproj b/PC/VS8.0/make_versioninfo.vcproj --- a/PC/VS8.0/make_versioninfo.vcproj +++ b/PC/VS8.0/make_versioninfo.vcproj @@ -1,324 +1,324 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/pcbuild.sln b/PC/VS8.0/pcbuild.sln --- a/PC/VS8.0/pcbuild.sln +++ b/PC/VS8.0/pcbuild.sln @@ -1,560 +1,560 @@ -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" - ProjectSection(ProjectDependencies) = postProject - {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" - ProjectSection(ProjectDependencies) = postProject - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{553EC33E-9816-4996-A660-5D6186A0B0B3}" - ProjectSection(SolutionItems) = preProject - ..\..\Modules\getbuildinfo.c = ..\..\Modules\getbuildinfo.c - readme.txt = readme.txt - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{28B5D777-DDF2-4B6B-B34F-31D938813856}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{0E9791DB-593A-465F-98BC-681011311618}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{9EC7190A-249F-4180-A900-548FDCF3055F}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{17E1E049-C309-4D79-843F-AE483C264AEA}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{31FFC478-7B4A-43E8-9954-8D03E2187E9C}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{86937F53-C189-40EF-8CE8-8759D8E7D480}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{13CECB97-4119-4316-9D42-8534019A5A44}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {A1A295E5-463C-437F-81CA-1F32367685DA} = {A1A295E5-463C-437F-81CA-1F32367685DA} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{C6E20F84-3247-4AD6-B051-B073268F73BA}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - {86937F53-C189-40EF-8CE8-8759D8E7D480} = {86937F53-C189-40EF-8CE8-8759D8E7D480} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} = {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{4946ECAC-2E69-4BF8-A90A-F5136F5094DF}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{73FCD2BD-F133-46B7-8EC1-144CD82A59D5}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{18CAE28C-B454-46C1-87A0-493D91D97F03}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{D06B6426-4762-44CC-8BAD-D79052507F2F}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bdist_wininst", "bdist_wininst.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_hashlib", "_hashlib.vcproj", "{447F05A8-F581-4CAC-A466-5AC7936E207E}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} = {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite3", "sqlite3.vcproj", "{A1A295E5-463C-437F-81CA-1F32367685DA}" - ProjectSection(ProjectDependencies) = postProject - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_multiprocessing", "_multiprocessing.vcproj", "{9E48B300-37D1-11DD-8C41-005056C00008}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ssl", "ssl.vcproj", "{E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kill_python", "kill_python.vcproj", "{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - PGInstrument|Win32 = PGInstrument|Win32 - PGInstrument|x64 = PGInstrument|x64 - PGUpdate|Win32 = PGUpdate|Win32 - PGUpdate|x64 = PGUpdate|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.ActiveCfg = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.Build.0 = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.ActiveCfg = Debug|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.Build.0 = Debug|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.ActiveCfg = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.Build.0 = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.ActiveCfg = Release|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.Build.0 = Release|x64 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.ActiveCfg = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.Build.0 = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.ActiveCfg = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.Build.0 = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.Build.0 = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.ActiveCfg = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.Build.0 = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.ActiveCfg = Debug|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.Build.0 = Debug|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.ActiveCfg = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.Build.0 = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.ActiveCfg = Release|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.Build.0 = Release|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.ActiveCfg = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.Build.0 = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.ActiveCfg = Debug|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.Build.0 = Debug|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.ActiveCfg = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.Build.0 = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.ActiveCfg = Release|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.Build.0 = Release|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.ActiveCfg = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.Build.0 = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.ActiveCfg = Debug|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.Build.0 = Debug|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.ActiveCfg = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.Build.0 = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.ActiveCfg = Release|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.Build.0 = Release|x64 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.Build.0 = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.ActiveCfg = Debug|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.Build.0 = Debug|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.ActiveCfg = Debug|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.Build.0 = Debug|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.ActiveCfg = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.Build.0 = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.ActiveCfg = Release|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.Build.0 = Release|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.ActiveCfg = Debug|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.Build.0 = Debug|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.ActiveCfg = Debug|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.Build.0 = Debug|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.ActiveCfg = Release|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.Build.0 = Release|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.ActiveCfg = Release|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.Build.0 = Release|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.ActiveCfg = Debug|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.Build.0 = Debug|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.ActiveCfg = Debug|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.Build.0 = Debug|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.ActiveCfg = Release|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.Build.0 = Release|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.ActiveCfg = Release|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.Build.0 = Release|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.ActiveCfg = Debug|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.Build.0 = Debug|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.ActiveCfg = Debug|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.Build.0 = Debug|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.ActiveCfg = Release|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.Build.0 = Release|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.ActiveCfg = Release|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.Build.0 = Release|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.ActiveCfg = Debug|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.Build.0 = Debug|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.ActiveCfg = Debug|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.Build.0 = Debug|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.ActiveCfg = Release|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.Build.0 = Release|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.ActiveCfg = Release|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.Build.0 = Release|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.ActiveCfg = Debug|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.Build.0 = Debug|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.ActiveCfg = Debug|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.Build.0 = Debug|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.ActiveCfg = Release|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.Build.0 = Release|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.ActiveCfg = Release|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.Build.0 = Release|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.ActiveCfg = Debug|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.Build.0 = Debug|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.ActiveCfg = Debug|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.Build.0 = Debug|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.ActiveCfg = Release|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.Build.0 = Release|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.ActiveCfg = Release|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.Build.0 = Release|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.ActiveCfg = Debug|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.Build.0 = Debug|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.ActiveCfg = Debug|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.Build.0 = Debug|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.ActiveCfg = Release|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.Build.0 = Release|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.ActiveCfg = Release|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.Build.0 = Release|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.ActiveCfg = Debug|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.Build.0 = Debug|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.ActiveCfg = Debug|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.Build.0 = Debug|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.ActiveCfg = Release|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.Build.0 = Release|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.ActiveCfg = Release|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.Build.0 = Release|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.ActiveCfg = Debug|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.Build.0 = Debug|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.ActiveCfg = Debug|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.Build.0 = Debug|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.ActiveCfg = Release|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.Build.0 = Release|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.ActiveCfg = Release|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.Build.0 = Release|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.ActiveCfg = Debug|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.Build.0 = Debug|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.ActiveCfg = Debug|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.Build.0 = Debug|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.ActiveCfg = Release|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.Build.0 = Release|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.ActiveCfg = Release|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.Build.0 = Release|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.ActiveCfg = Debug|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.Build.0 = Debug|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.ActiveCfg = Debug|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.Build.0 = Debug|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.ActiveCfg = Release|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.Build.0 = Release|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.ActiveCfg = Release|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.Build.0 = Release|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.ActiveCfg = Debug|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.Build.0 = Debug|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.ActiveCfg = Debug|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.Build.0 = Debug|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.ActiveCfg = Release|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.Build.0 = Release|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.ActiveCfg = Release|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.Build.0 = Release|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.ActiveCfg = Debug|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.Build.0 = Debug|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.ActiveCfg = Debug|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.Build.0 = Debug|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.ActiveCfg = Release|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.Build.0 = Release|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.ActiveCfg = Release|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.Build.0 = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|x64.ActiveCfg = Release|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.ActiveCfg = Debug|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.Build.0 = Debug|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.ActiveCfg = Debug|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.Build.0 = Debug|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.ActiveCfg = Release|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.Build.0 = Release|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.ActiveCfg = Release|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.Build.0 = Release|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.ActiveCfg = Debug|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.Build.0 = Debug|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.ActiveCfg = Debug|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.Build.0 = Debug|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.ActiveCfg = Release|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.Build.0 = Release|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.ActiveCfg = Release|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.Build.0 = Release|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.ActiveCfg = Debug|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.Build.0 = Debug|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.ActiveCfg = Debug|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.Build.0 = Debug|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.ActiveCfg = Release|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.Build.0 = Release|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.ActiveCfg = Release|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.Build.0 = Release|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|Win32.ActiveCfg = Debug|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|Win32.Build.0 = Debug|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|x64.ActiveCfg = Debug|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|x64.Build.0 = Debug|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|Win32.ActiveCfg = Release|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|Win32.Build.0 = Release|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|x64.ActiveCfg = Release|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.ActiveCfg = Debug|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.Build.0 = Debug|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.ActiveCfg = Debug|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.Build.0 = Debug|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" + ProjectSection(ProjectDependencies) = postProject + {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" + ProjectSection(ProjectDependencies) = postProject + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{553EC33E-9816-4996-A660-5D6186A0B0B3}" + ProjectSection(SolutionItems) = preProject + ..\..\Modules\getbuildinfo.c = ..\..\Modules\getbuildinfo.c + readme.txt = readme.txt + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{28B5D777-DDF2-4B6B-B34F-31D938813856}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{0E9791DB-593A-465F-98BC-681011311618}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{9EC7190A-249F-4180-A900-548FDCF3055F}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{17E1E049-C309-4D79-843F-AE483C264AEA}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{31FFC478-7B4A-43E8-9954-8D03E2187E9C}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{86937F53-C189-40EF-8CE8-8759D8E7D480}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{13CECB97-4119-4316-9D42-8534019A5A44}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {A1A295E5-463C-437F-81CA-1F32367685DA} = {A1A295E5-463C-437F-81CA-1F32367685DA} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{C6E20F84-3247-4AD6-B051-B073268F73BA}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + {86937F53-C189-40EF-8CE8-8759D8E7D480} = {86937F53-C189-40EF-8CE8-8759D8E7D480} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} = {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{4946ECAC-2E69-4BF8-A90A-F5136F5094DF}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{73FCD2BD-F133-46B7-8EC1-144CD82A59D5}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{18CAE28C-B454-46C1-87A0-493D91D97F03}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{D06B6426-4762-44CC-8BAD-D79052507F2F}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bdist_wininst", "bdist_wininst.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_hashlib", "_hashlib.vcproj", "{447F05A8-F581-4CAC-A466-5AC7936E207E}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} = {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite3", "sqlite3.vcproj", "{A1A295E5-463C-437F-81CA-1F32367685DA}" + ProjectSection(ProjectDependencies) = postProject + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_multiprocessing", "_multiprocessing.vcproj", "{9E48B300-37D1-11DD-8C41-005056C00008}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ssl", "ssl.vcproj", "{E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kill_python", "kill_python.vcproj", "{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + PGInstrument|Win32 = PGInstrument|Win32 + PGInstrument|x64 = PGInstrument|x64 + PGUpdate|Win32 = PGUpdate|Win32 + PGUpdate|x64 = PGUpdate|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.ActiveCfg = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.Build.0 = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.ActiveCfg = Debug|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.Build.0 = Debug|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.ActiveCfg = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.Build.0 = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.ActiveCfg = Release|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.Build.0 = Release|x64 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.ActiveCfg = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.Build.0 = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.ActiveCfg = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.Build.0 = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.Build.0 = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.ActiveCfg = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.Build.0 = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.ActiveCfg = Debug|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.Build.0 = Debug|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.ActiveCfg = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.Build.0 = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.ActiveCfg = Release|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.Build.0 = Release|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.ActiveCfg = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.Build.0 = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.ActiveCfg = Debug|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.Build.0 = Debug|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.ActiveCfg = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.Build.0 = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.ActiveCfg = Release|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.Build.0 = Release|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.ActiveCfg = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.Build.0 = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.ActiveCfg = Debug|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.Build.0 = Debug|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.ActiveCfg = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.Build.0 = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.ActiveCfg = Release|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.Build.0 = Release|x64 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.Build.0 = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.ActiveCfg = Debug|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.Build.0 = Debug|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.ActiveCfg = Debug|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.Build.0 = Debug|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.ActiveCfg = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.Build.0 = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.ActiveCfg = Release|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.Build.0 = Release|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.ActiveCfg = Debug|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.Build.0 = Debug|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.ActiveCfg = Debug|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.Build.0 = Debug|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.ActiveCfg = Release|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.Build.0 = Release|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.ActiveCfg = Release|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.Build.0 = Release|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.ActiveCfg = Debug|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.Build.0 = Debug|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.ActiveCfg = Debug|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.Build.0 = Debug|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.ActiveCfg = Release|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.Build.0 = Release|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.ActiveCfg = Release|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.Build.0 = Release|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.ActiveCfg = Debug|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.Build.0 = Debug|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.ActiveCfg = Debug|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.Build.0 = Debug|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.ActiveCfg = Release|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.Build.0 = Release|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.ActiveCfg = Release|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.Build.0 = Release|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.ActiveCfg = Debug|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.Build.0 = Debug|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.ActiveCfg = Debug|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.Build.0 = Debug|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.ActiveCfg = Release|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.Build.0 = Release|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.ActiveCfg = Release|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.Build.0 = Release|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.ActiveCfg = Debug|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.Build.0 = Debug|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.ActiveCfg = Debug|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.Build.0 = Debug|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.ActiveCfg = Release|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.Build.0 = Release|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.ActiveCfg = Release|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.Build.0 = Release|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.ActiveCfg = Debug|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.Build.0 = Debug|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.ActiveCfg = Debug|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.Build.0 = Debug|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.ActiveCfg = Release|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.Build.0 = Release|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.ActiveCfg = Release|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.Build.0 = Release|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.ActiveCfg = Debug|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.Build.0 = Debug|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.ActiveCfg = Debug|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.Build.0 = Debug|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.ActiveCfg = Release|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.Build.0 = Release|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.ActiveCfg = Release|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.Build.0 = Release|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.ActiveCfg = Debug|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.Build.0 = Debug|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.ActiveCfg = Debug|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.Build.0 = Debug|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.ActiveCfg = Release|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.Build.0 = Release|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.ActiveCfg = Release|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.Build.0 = Release|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.ActiveCfg = Debug|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.Build.0 = Debug|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.ActiveCfg = Debug|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.Build.0 = Debug|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.ActiveCfg = Release|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.Build.0 = Release|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.ActiveCfg = Release|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.Build.0 = Release|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.ActiveCfg = Debug|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.Build.0 = Debug|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.ActiveCfg = Debug|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.Build.0 = Debug|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.ActiveCfg = Release|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.Build.0 = Release|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.ActiveCfg = Release|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.Build.0 = Release|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.ActiveCfg = Debug|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.Build.0 = Debug|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.ActiveCfg = Debug|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.Build.0 = Debug|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.ActiveCfg = Release|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.Build.0 = Release|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.ActiveCfg = Release|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.Build.0 = Release|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.ActiveCfg = Debug|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.Build.0 = Debug|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.ActiveCfg = Debug|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.Build.0 = Debug|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.ActiveCfg = Release|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.Build.0 = Release|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.ActiveCfg = Release|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.Build.0 = Release|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.ActiveCfg = Debug|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.Build.0 = Debug|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.ActiveCfg = Debug|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.Build.0 = Debug|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.ActiveCfg = Release|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.Build.0 = Release|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.ActiveCfg = Release|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.Build.0 = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|x64.ActiveCfg = Release|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.ActiveCfg = Debug|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.Build.0 = Debug|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.ActiveCfg = Debug|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.Build.0 = Debug|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.ActiveCfg = Release|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.Build.0 = Release|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.ActiveCfg = Release|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.Build.0 = Release|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.ActiveCfg = Debug|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.Build.0 = Debug|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.ActiveCfg = Debug|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.Build.0 = Debug|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.ActiveCfg = Release|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.Build.0 = Release|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.ActiveCfg = Release|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.Build.0 = Release|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.ActiveCfg = Debug|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.Build.0 = Debug|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.ActiveCfg = Debug|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.Build.0 = Debug|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.ActiveCfg = Release|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.Build.0 = Release|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.ActiveCfg = Release|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.Build.0 = Release|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|Win32.ActiveCfg = Debug|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|Win32.Build.0 = Debug|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|x64.ActiveCfg = Debug|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|x64.Build.0 = Debug|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|Win32.ActiveCfg = Release|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|Win32.Build.0 = Release|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|x64.ActiveCfg = Release|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.ActiveCfg = Debug|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.Build.0 = Debug|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.ActiveCfg = Debug|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.Build.0 = Debug|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/PC/VS8.0/pyd.vsprops b/PC/VS8.0/pyd.vsprops --- a/PC/VS8.0/pyd.vsprops +++ b/PC/VS8.0/pyd.vsprops @@ -1,28 +1,28 @@ - - - - - - - + + + + + + + diff --git a/PC/VS8.0/pyd_d.vsprops b/PC/VS8.0/pyd_d.vsprops --- a/PC/VS8.0/pyd_d.vsprops +++ b/PC/VS8.0/pyd_d.vsprops @@ -1,36 +1,36 @@ - - - - - - - - + + + + + + + + diff --git a/PC/VS8.0/pyexpat.vcproj b/PC/VS8.0/pyexpat.vcproj --- a/PC/VS8.0/pyexpat.vcproj +++ b/PC/VS8.0/pyexpat.vcproj @@ -1,553 +1,553 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/pyproject.vsprops b/PC/VS8.0/pyproject.vsprops --- a/PC/VS8.0/pyproject.vsprops +++ b/PC/VS8.0/pyproject.vsprops @@ -1,87 +1,87 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/python.vcproj b/PC/VS8.0/python.vcproj --- a/PC/VS8.0/python.vcproj +++ b/PC/VS8.0/python.vcproj @@ -1,637 +1,637 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/pythoncore.vcproj b/PC/VS8.0/pythoncore.vcproj --- a/PC/VS8.0/pythoncore.vcproj +++ b/PC/VS8.0/pythoncore.vcproj @@ -1,1913 +1,1913 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/pythonw.vcproj b/PC/VS8.0/pythonw.vcproj --- a/PC/VS8.0/pythonw.vcproj +++ b/PC/VS8.0/pythonw.vcproj @@ -1,618 +1,618 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/select.vcproj b/PC/VS8.0/select.vcproj --- a/PC/VS8.0/select.vcproj +++ b/PC/VS8.0/select.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/sqlite3.vcproj b/PC/VS8.0/sqlite3.vcproj --- a/PC/VS8.0/sqlite3.vcproj +++ b/PC/VS8.0/sqlite3.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/sqlite3.vsprops b/PC/VS8.0/sqlite3.vsprops --- a/PC/VS8.0/sqlite3.vsprops +++ b/PC/VS8.0/sqlite3.vsprops @@ -1,14 +1,14 @@ - - - - + + + + diff --git a/PC/VS8.0/ssl.vcproj b/PC/VS8.0/ssl.vcproj --- a/PC/VS8.0/ssl.vcproj +++ b/PC/VS8.0/ssl.vcproj @@ -1,189 +1,189 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/unicodedata.vcproj b/PC/VS8.0/unicodedata.vcproj --- a/PC/VS8.0/unicodedata.vcproj +++ b/PC/VS8.0/unicodedata.vcproj @@ -1,533 +1,533 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/w9xpopen.vcproj b/PC/VS8.0/w9xpopen.vcproj --- a/PC/VS8.0/w9xpopen.vcproj +++ b/PC/VS8.0/w9xpopen.vcproj @@ -1,576 +1,576 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/winsound.vcproj b/PC/VS8.0/winsound.vcproj --- a/PC/VS8.0/winsound.vcproj +++ b/PC/VS8.0/winsound.vcproj @@ -1,523 +1,523 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/bdist_wininst/wininst-7.1.sln b/PC/bdist_wininst/wininst-7.1.sln --- a/PC/bdist_wininst/wininst-7.1.sln +++ b/PC/bdist_wininst/wininst-7.1.sln @@ -1,21 +1,21 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wininst", "wininst-7.1.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug.ActiveCfg = Debug|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug.Build.0 = Debug|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wininst", "wininst-7.1.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + Debug = Debug + Release = Release + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug.ActiveCfg = Debug|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug.Build.0 = Debug|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/PC/bdist_wininst/wininst-7.1.vcproj b/PC/bdist_wininst/wininst-7.1.vcproj --- a/PC/bdist_wininst/wininst-7.1.vcproj +++ b/PC/bdist_wininst/wininst-7.1.vcproj @@ -1,214 +1,214 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/bdist_wininst/wininst-8.sln b/PC/bdist_wininst/wininst-8.sln --- a/PC/bdist_wininst/wininst-8.sln +++ b/PC/bdist_wininst/wininst-8.sln @@ -1,19 +1,19 @@ -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wininst", "wininst-8.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Debug|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.Build.0 = Debug|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wininst", "wininst-8.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Debug|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.Build.0 = Debug|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/PC/bdist_wininst/wininst-8.vcproj b/PC/bdist_wininst/wininst-8.vcproj --- a/PC/bdist_wininst/wininst-8.vcproj +++ b/PC/bdist_wininst/wininst-8.vcproj @@ -1,320 +1,320 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/bdist_wininst/wininst.dsp b/PC/bdist_wininst/wininst.dsp --- a/PC/bdist_wininst/wininst.dsp +++ b/PC/bdist_wininst/wininst.dsp @@ -1,123 +1,123 @@ -# Microsoft Developer Studio Project File - Name="wininst" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Application" 0x0101 - -CFG=wininst - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wininst.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wininst.mak" CFG="wininst - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "wininst - Win32 Release" (based on "Win32 (x86) Application") -!MESSAGE "wininst - Win32 Debug" (based on "Win32 (x86) Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "wininst - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\lib\distutils\command" -# PROP Intermediate_Dir "temp-release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /O1 /I "..\..\Include" /I "..\..\..\zlib-1.2.3" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x407 /d "NDEBUG" -# ADD RSC /l 0x407 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 -# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0.exe" - -!ELSEIF "$(CFG)" == "wininst - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "temp-debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Z7 /Od /I "..\..\Include" /I "..\..\..\zlib-1.2.1" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /FR /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x407 /d "_DEBUG" -# ADD RSC /l 0x407 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept -# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /pdb:none /debug /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0_d.exe" - -!ENDIF - -# Begin Target - -# Name "wininst - Win32 Release" -# Name "wininst - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=.\extract.c -# End Source File -# Begin Source File - -SOURCE=.\install.c -# End Source File -# Begin Source File - -SOURCE=.\install.rc -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=.\archive.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# Begin Source File - -SOURCE=.\PythonPowered.bmp -# End Source File -# End Group -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="wininst" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=wininst - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "wininst.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "wininst.mak" CFG="wininst - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "wininst - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "wininst - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "wininst - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "..\..\lib\distutils\command" +# PROP Intermediate_Dir "temp-release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /O1 /I "..\..\Include" /I "..\..\..\zlib-1.2.3" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0x407 /d "NDEBUG" +# ADD RSC /l 0x407 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0.exe" + +!ELSEIF "$(CFG)" == "wininst - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "temp-debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c +# ADD CPP /nologo /MD /W3 /Z7 /Od /I "..\..\Include" /I "..\..\..\zlib-1.2.1" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /FR /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0x407 /d "_DEBUG" +# ADD RSC /l 0x407 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /pdb:none /debug /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0_d.exe" + +!ENDIF + +# Begin Target + +# Name "wininst - Win32 Release" +# Name "wininst - Win32 Debug" +# Begin Group "Source Files" + +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" +# Begin Source File + +SOURCE=.\extract.c +# End Source File +# Begin Source File + +SOURCE=.\install.c +# End Source File +# Begin Source File + +SOURCE=.\install.rc +# End Source File +# End Group +# Begin Group "Header Files" + +# PROP Default_Filter "h;hpp;hxx;hm;inl" +# Begin Source File + +SOURCE=.\archive.h +# End Source File +# End Group +# Begin Group "Resource Files" + +# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" +# Begin Source File + +SOURCE=.\PythonPowered.bmp +# End Source File +# End Group +# End Target +# End Project diff --git a/PC/bdist_wininst/wininst.dsw b/PC/bdist_wininst/wininst.dsw --- a/PC/bdist_wininst/wininst.dsw +++ b/PC/bdist_wininst/wininst.dsw @@ -1,29 +1,29 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "wininst"=.\wininst.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - +Microsoft Developer Studio Workspace File, Format Version 6.00 +# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + +############################################################################### + +Project: "wininst"=.\wininst.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/PC/example_nt/example.sln b/PC/example_nt/example.sln --- a/PC/example_nt/example.sln +++ b/PC/example_nt/example.sln @@ -1,21 +1,21 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example", "example.vcproj", "{A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Debug.ActiveCfg = Debug|Win32 - {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Debug.Build.0 = Debug|Win32 - {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Release.ActiveCfg = Release|Win32 - {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example", "example.vcproj", "{A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + Debug = Debug + Release = Release + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Debug.ActiveCfg = Debug|Win32 + {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Debug.Build.0 = Debug|Win32 + {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Release.ActiveCfg = Release|Win32 + {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Release.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/PC/example_nt/example.vcproj b/PC/example_nt/example.vcproj --- a/PC/example_nt/example.vcproj +++ b/PC/example_nt/example.vcproj @@ -1,189 +1,189 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_ctypes.vcproj b/PCbuild/_ctypes.vcproj --- a/PCbuild/_ctypes.vcproj +++ b/PCbuild/_ctypes.vcproj @@ -1,705 +1,705 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_ctypes_test.vcproj b/PCbuild/_ctypes_test.vcproj --- a/PCbuild/_ctypes_test.vcproj +++ b/PCbuild/_ctypes_test.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_elementtree.vcproj b/PCbuild/_elementtree.vcproj --- a/PCbuild/_elementtree.vcproj +++ b/PCbuild/_elementtree.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_hashlib.vcproj b/PCbuild/_hashlib.vcproj --- a/PCbuild/_hashlib.vcproj +++ b/PCbuild/_hashlib.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_msi.vcproj b/PCbuild/_msi.vcproj --- a/PCbuild/_msi.vcproj +++ b/PCbuild/_msi.vcproj @@ -1,529 +1,529 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_multiprocessing.vcproj b/PCbuild/_multiprocessing.vcproj --- a/PCbuild/_multiprocessing.vcproj +++ b/PCbuild/_multiprocessing.vcproj @@ -1,557 +1,557 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_socket.vcproj b/PCbuild/_socket.vcproj --- a/PCbuild/_socket.vcproj +++ b/PCbuild/_socket.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_sqlite3.vcproj b/PCbuild/_sqlite3.vcproj --- a/PCbuild/_sqlite3.vcproj +++ b/PCbuild/_sqlite3.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_ssl.vcproj b/PCbuild/_ssl.vcproj --- a/PCbuild/_ssl.vcproj +++ b/PCbuild/_ssl.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_testcapi.vcproj b/PCbuild/_testcapi.vcproj --- a/PCbuild/_testcapi.vcproj +++ b/PCbuild/_testcapi.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_tkinter.vcproj b/PCbuild/_tkinter.vcproj --- a/PCbuild/_tkinter.vcproj +++ b/PCbuild/_tkinter.vcproj @@ -1,541 +1,541 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/bdist_wininst.vcproj b/PCbuild/bdist_wininst.vcproj --- a/PCbuild/bdist_wininst.vcproj +++ b/PCbuild/bdist_wininst.vcproj @@ -1,270 +1,270 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/bz2.vcproj b/PCbuild/bz2.vcproj --- a/PCbuild/bz2.vcproj +++ b/PCbuild/bz2.vcproj @@ -1,581 +1,581 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/debug.vsprops b/PCbuild/debug.vsprops --- a/PCbuild/debug.vsprops +++ b/PCbuild/debug.vsprops @@ -1,15 +1,15 @@ - - - - - + + + + + diff --git a/PCbuild/kill_python.vcproj b/PCbuild/kill_python.vcproj --- a/PCbuild/kill_python.vcproj +++ b/PCbuild/kill_python.vcproj @@ -1,279 +1,279 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/make_buildinfo.vcproj b/PCbuild/make_buildinfo.vcproj --- a/PCbuild/make_buildinfo.vcproj +++ b/PCbuild/make_buildinfo.vcproj @@ -1,101 +1,101 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/make_versioninfo.vcproj b/PCbuild/make_versioninfo.vcproj --- a/PCbuild/make_versioninfo.vcproj +++ b/PCbuild/make_versioninfo.vcproj @@ -1,324 +1,324 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pcbuild.sln b/PCbuild/pcbuild.sln --- a/PCbuild/pcbuild.sln +++ b/PCbuild/pcbuild.sln @@ -1,595 +1,595 @@ -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" - ProjectSection(ProjectDependencies) = postProject - {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" - ProjectSection(ProjectDependencies) = postProject - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{553EC33E-9816-4996-A660-5D6186A0B0B3}" - ProjectSection(SolutionItems) = preProject - ..\Modules\getbuildinfo.c = ..\Modules\getbuildinfo.c - readme.txt = readme.txt - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{28B5D777-DDF2-4B6B-B34F-31D938813856}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{0E9791DB-593A-465F-98BC-681011311618}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{9EC7190A-249F-4180-A900-548FDCF3055F}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{17E1E049-C309-4D79-843F-AE483C264AEA}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{31FFC478-7B4A-43E8-9954-8D03E2187E9C}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{86937F53-C189-40EF-8CE8-8759D8E7D480}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{13CECB97-4119-4316-9D42-8534019A5A44}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {A1A295E5-463C-437F-81CA-1F32367685DA} = {A1A295E5-463C-437F-81CA-1F32367685DA} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{C6E20F84-3247-4AD6-B051-B073268F73BA}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - {86937F53-C189-40EF-8CE8-8759D8E7D480} = {86937F53-C189-40EF-8CE8-8759D8E7D480} - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} = {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{4946ECAC-2E69-4BF8-A90A-F5136F5094DF}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{73FCD2BD-F133-46B7-8EC1-144CD82A59D5}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{18CAE28C-B454-46C1-87A0-493D91D97F03}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{D06B6426-4762-44CC-8BAD-D79052507F2F}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bdist_wininst", "bdist_wininst.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_hashlib", "_hashlib.vcproj", "{447F05A8-F581-4CAC-A466-5AC7936E207E}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} = {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite3", "sqlite3.vcproj", "{A1A295E5-463C-437F-81CA-1F32367685DA}" - ProjectSection(ProjectDependencies) = postProject - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_multiprocessing", "_multiprocessing.vcproj", "{9E48B300-37D1-11DD-8C41-005056C00008}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ssl", "ssl.vcproj", "{E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kill_python", "kill_python.vcproj", "{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python3dll", "python3dll.vcproj", "{885D4898-D08D-4091-9C40-C700CFE3FC5A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xxlimited", "xxlimited.vcproj", "{F749B822-B489-4CA5-A3AD-CE078F5F338A}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - PGInstrument|Win32 = PGInstrument|Win32 - PGInstrument|x64 = PGInstrument|x64 - PGUpdate|Win32 = PGUpdate|Win32 - PGUpdate|x64 = PGUpdate|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.ActiveCfg = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.Build.0 = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.ActiveCfg = Debug|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.Build.0 = Debug|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.ActiveCfg = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.Build.0 = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.ActiveCfg = Release|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.Build.0 = Release|x64 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.ActiveCfg = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.Build.0 = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.ActiveCfg = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.Build.0 = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.Build.0 = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.ActiveCfg = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.Build.0 = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.ActiveCfg = Debug|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.Build.0 = Debug|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.ActiveCfg = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.Build.0 = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.ActiveCfg = Release|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.Build.0 = Release|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.ActiveCfg = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.Build.0 = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.ActiveCfg = Debug|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.Build.0 = Debug|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.ActiveCfg = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.Build.0 = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.ActiveCfg = Release|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.Build.0 = Release|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.ActiveCfg = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.Build.0 = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.ActiveCfg = Debug|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.Build.0 = Debug|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.ActiveCfg = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.Build.0 = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.ActiveCfg = Release|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.Build.0 = Release|x64 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.Build.0 = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.ActiveCfg = Debug|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.Build.0 = Debug|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.ActiveCfg = Debug|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.Build.0 = Debug|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.ActiveCfg = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.Build.0 = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.ActiveCfg = Release|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.Build.0 = Release|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.ActiveCfg = Debug|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.Build.0 = Debug|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.ActiveCfg = Debug|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.Build.0 = Debug|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.ActiveCfg = Release|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.Build.0 = Release|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.ActiveCfg = Release|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.Build.0 = Release|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.ActiveCfg = Debug|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.Build.0 = Debug|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.ActiveCfg = Debug|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.Build.0 = Debug|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.ActiveCfg = Release|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.Build.0 = Release|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.ActiveCfg = Release|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.Build.0 = Release|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.ActiveCfg = Debug|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.Build.0 = Debug|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.ActiveCfg = Debug|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.Build.0 = Debug|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.ActiveCfg = Release|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.Build.0 = Release|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.ActiveCfg = Release|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.Build.0 = Release|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.ActiveCfg = Debug|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.Build.0 = Debug|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.ActiveCfg = Debug|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.Build.0 = Debug|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.ActiveCfg = Release|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.Build.0 = Release|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.ActiveCfg = Release|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.Build.0 = Release|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.ActiveCfg = Debug|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.Build.0 = Debug|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.ActiveCfg = Debug|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.Build.0 = Debug|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.ActiveCfg = Release|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.Build.0 = Release|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.ActiveCfg = Release|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.Build.0 = Release|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.ActiveCfg = Debug|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.Build.0 = Debug|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.ActiveCfg = Debug|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.Build.0 = Debug|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.ActiveCfg = Release|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.Build.0 = Release|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.ActiveCfg = Release|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.Build.0 = Release|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.ActiveCfg = Debug|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.Build.0 = Debug|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.ActiveCfg = Debug|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.Build.0 = Debug|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.ActiveCfg = Release|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.Build.0 = Release|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.ActiveCfg = Release|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.Build.0 = Release|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.ActiveCfg = Debug|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.Build.0 = Debug|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.ActiveCfg = Debug|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.Build.0 = Debug|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.ActiveCfg = Release|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.Build.0 = Release|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.ActiveCfg = Release|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.Build.0 = Release|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.ActiveCfg = Debug|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.Build.0 = Debug|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.ActiveCfg = Debug|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.Build.0 = Debug|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.ActiveCfg = Release|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.Build.0 = Release|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.ActiveCfg = Release|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.Build.0 = Release|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.ActiveCfg = Debug|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.Build.0 = Debug|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.ActiveCfg = Debug|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.Build.0 = Debug|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.ActiveCfg = Release|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.Build.0 = Release|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.ActiveCfg = Release|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.Build.0 = Release|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.ActiveCfg = Debug|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.Build.0 = Debug|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.ActiveCfg = Debug|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.Build.0 = Debug|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.ActiveCfg = Release|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.Build.0 = Release|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.ActiveCfg = Release|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.Build.0 = Release|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.ActiveCfg = Debug|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.Build.0 = Debug|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.ActiveCfg = Debug|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.Build.0 = Debug|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.ActiveCfg = Release|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.Build.0 = Release|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.ActiveCfg = Release|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.Build.0 = Release|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.ActiveCfg = Debug|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.Build.0 = Debug|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.ActiveCfg = Debug|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.Build.0 = Debug|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.ActiveCfg = Release|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.Build.0 = Release|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.ActiveCfg = Release|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.Build.0 = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|x64.ActiveCfg = Release|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.ActiveCfg = Debug|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.Build.0 = Debug|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.ActiveCfg = Debug|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.Build.0 = Debug|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.ActiveCfg = Release|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.Build.0 = Release|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.ActiveCfg = Release|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.Build.0 = Release|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.ActiveCfg = Debug|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.Build.0 = Debug|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.ActiveCfg = Debug|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.Build.0 = Debug|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.ActiveCfg = Release|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.Build.0 = Release|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.ActiveCfg = Release|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.Build.0 = Release|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.ActiveCfg = Debug|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.Build.0 = Debug|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.ActiveCfg = Debug|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.Build.0 = Debug|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.ActiveCfg = Release|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.Build.0 = Release|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.ActiveCfg = Release|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.Build.0 = Release|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|Win32.ActiveCfg = Debug|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|Win32.Build.0 = Debug|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|x64.ActiveCfg = Debug|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|x64.Build.0 = Debug|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|Win32.ActiveCfg = Release|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|Win32.Build.0 = Release|Win32 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|x64.ActiveCfg = Release|x64 - {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.ActiveCfg = Debug|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.Build.0 = Debug|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.ActiveCfg = Debug|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.Build.0 = Debug|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.Build.0 = Release|x64 - {885D4898-D08D-4091-9C40-C700CFE3FC5A}.Debug|Win32.ActiveCfg = PGInstrument|Win32 - {885D4898-D08D-4091-9C40-C700CFE3FC5A}.Debug|x64.ActiveCfg = Debug|x64 - {885D4898-D08D-4091-9C40-C700CFE3FC5A}.Debug|x64.Build.0 = Debug|x64 - {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGInstrument|x64.ActiveCfg = Release|x64 - {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGInstrument|x64.Build.0 = Release|x64 - {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGUpdate|x64.ActiveCfg = Release|x64 - {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGUpdate|x64.Build.0 = Release|x64 - {885D4898-D08D-4091-9C40-C700CFE3FC5A}.Release|Win32.ActiveCfg = Release|Win32 - {885D4898-D08D-4091-9C40-C700CFE3FC5A}.Release|Win32.Build.0 = Release|Win32 - {885D4898-D08D-4091-9C40-C700CFE3FC5A}.Release|x64.ActiveCfg = Release|x64 - {885D4898-D08D-4091-9C40-C700CFE3FC5A}.Release|x64.Build.0 = Release|x64 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Debug|Win32.ActiveCfg = Debug|Win32 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Debug|Win32.Build.0 = Debug|Win32 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Debug|x64.ActiveCfg = Debug|x64 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Debug|x64.Build.0 = Debug|x64 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGInstrument|Win32.Build.0 = Release|Win32 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGInstrument|x64.ActiveCfg = Release|x64 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGInstrument|x64.Build.0 = Release|x64 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGUpdate|Win32.Build.0 = Release|Win32 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGUpdate|x64.ActiveCfg = Release|x64 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGUpdate|x64.Build.0 = Release|x64 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Release|Win32.ActiveCfg = Release|Win32 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Release|Win32.Build.0 = Release|Win32 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Release|x64.ActiveCfg = Release|x64 - {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" + ProjectSection(ProjectDependencies) = postProject + {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" + ProjectSection(ProjectDependencies) = postProject + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{553EC33E-9816-4996-A660-5D6186A0B0B3}" + ProjectSection(SolutionItems) = preProject + ..\Modules\getbuildinfo.c = ..\Modules\getbuildinfo.c + readme.txt = readme.txt + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{28B5D777-DDF2-4B6B-B34F-31D938813856}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{0E9791DB-593A-465F-98BC-681011311618}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{9EC7190A-249F-4180-A900-548FDCF3055F}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{17E1E049-C309-4D79-843F-AE483C264AEA}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{31FFC478-7B4A-43E8-9954-8D03E2187E9C}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{86937F53-C189-40EF-8CE8-8759D8E7D480}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{13CECB97-4119-4316-9D42-8534019A5A44}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {A1A295E5-463C-437F-81CA-1F32367685DA} = {A1A295E5-463C-437F-81CA-1F32367685DA} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{C6E20F84-3247-4AD6-B051-B073268F73BA}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + {86937F53-C189-40EF-8CE8-8759D8E7D480} = {86937F53-C189-40EF-8CE8-8759D8E7D480} + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} = {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{4946ECAC-2E69-4BF8-A90A-F5136F5094DF}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{73FCD2BD-F133-46B7-8EC1-144CD82A59D5}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{18CAE28C-B454-46C1-87A0-493D91D97F03}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{D06B6426-4762-44CC-8BAD-D79052507F2F}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bdist_wininst", "bdist_wininst.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_hashlib", "_hashlib.vcproj", "{447F05A8-F581-4CAC-A466-5AC7936E207E}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} = {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite3", "sqlite3.vcproj", "{A1A295E5-463C-437F-81CA-1F32367685DA}" + ProjectSection(ProjectDependencies) = postProject + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_multiprocessing", "_multiprocessing.vcproj", "{9E48B300-37D1-11DD-8C41-005056C00008}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ssl", "ssl.vcproj", "{E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kill_python", "kill_python.vcproj", "{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python3dll", "python3dll.vcproj", "{885D4898-D08D-4091-9C40-C700CFE3FC5A}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xxlimited", "xxlimited.vcproj", "{F749B822-B489-4CA5-A3AD-CE078F5F338A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + PGInstrument|Win32 = PGInstrument|Win32 + PGInstrument|x64 = PGInstrument|x64 + PGUpdate|Win32 = PGUpdate|Win32 + PGUpdate|x64 = PGUpdate|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.ActiveCfg = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.Build.0 = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.ActiveCfg = Debug|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.Build.0 = Debug|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.ActiveCfg = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.Build.0 = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.ActiveCfg = Release|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.Build.0 = Release|x64 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.ActiveCfg = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.Build.0 = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.ActiveCfg = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.Build.0 = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.Build.0 = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.ActiveCfg = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.Build.0 = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.ActiveCfg = Debug|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.Build.0 = Debug|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.ActiveCfg = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.Build.0 = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.ActiveCfg = Release|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.Build.0 = Release|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.ActiveCfg = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.Build.0 = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.ActiveCfg = Debug|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.Build.0 = Debug|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.ActiveCfg = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.Build.0 = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.ActiveCfg = Release|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.Build.0 = Release|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.ActiveCfg = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.Build.0 = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.ActiveCfg = Debug|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.Build.0 = Debug|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.ActiveCfg = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.Build.0 = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.ActiveCfg = Release|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.Build.0 = Release|x64 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.Build.0 = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.ActiveCfg = Debug|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.Build.0 = Debug|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.ActiveCfg = Debug|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.Build.0 = Debug|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.ActiveCfg = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.Build.0 = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.ActiveCfg = Release|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.Build.0 = Release|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.ActiveCfg = Debug|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.Build.0 = Debug|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.ActiveCfg = Debug|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.Build.0 = Debug|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.ActiveCfg = Release|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.Build.0 = Release|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.ActiveCfg = Release|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.Build.0 = Release|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.ActiveCfg = Debug|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.Build.0 = Debug|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.ActiveCfg = Debug|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.Build.0 = Debug|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.ActiveCfg = Release|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.Build.0 = Release|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.ActiveCfg = Release|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.Build.0 = Release|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.ActiveCfg = Debug|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.Build.0 = Debug|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.ActiveCfg = Debug|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.Build.0 = Debug|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.ActiveCfg = Release|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.Build.0 = Release|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.ActiveCfg = Release|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.Build.0 = Release|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.ActiveCfg = Debug|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.Build.0 = Debug|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.ActiveCfg = Debug|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.Build.0 = Debug|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.ActiveCfg = Release|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.Build.0 = Release|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.ActiveCfg = Release|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.Build.0 = Release|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.ActiveCfg = Debug|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.Build.0 = Debug|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.ActiveCfg = Debug|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.Build.0 = Debug|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.ActiveCfg = Release|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.Build.0 = Release|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.ActiveCfg = Release|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.Build.0 = Release|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.ActiveCfg = Debug|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.Build.0 = Debug|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.ActiveCfg = Debug|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.Build.0 = Debug|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.ActiveCfg = Release|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.Build.0 = Release|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.ActiveCfg = Release|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.Build.0 = Release|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.ActiveCfg = Debug|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.Build.0 = Debug|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.ActiveCfg = Debug|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.Build.0 = Debug|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.ActiveCfg = Release|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.Build.0 = Release|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.ActiveCfg = Release|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.Build.0 = Release|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.ActiveCfg = Debug|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.Build.0 = Debug|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.ActiveCfg = Debug|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.Build.0 = Debug|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.ActiveCfg = Release|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.Build.0 = Release|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.ActiveCfg = Release|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.Build.0 = Release|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.ActiveCfg = Debug|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.Build.0 = Debug|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.ActiveCfg = Debug|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.Build.0 = Debug|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.ActiveCfg = Release|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.Build.0 = Release|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.ActiveCfg = Release|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.Build.0 = Release|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.ActiveCfg = Debug|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.Build.0 = Debug|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.ActiveCfg = Debug|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.Build.0 = Debug|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.ActiveCfg = Release|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.Build.0 = Release|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.ActiveCfg = Release|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.Build.0 = Release|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.ActiveCfg = Debug|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.Build.0 = Debug|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.ActiveCfg = Debug|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.Build.0 = Debug|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.ActiveCfg = Release|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.Build.0 = Release|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.ActiveCfg = Release|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.Build.0 = Release|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.ActiveCfg = Debug|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.Build.0 = Debug|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.ActiveCfg = Debug|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.Build.0 = Debug|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.ActiveCfg = Release|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.Build.0 = Release|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.ActiveCfg = Release|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.Build.0 = Release|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.ActiveCfg = Debug|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.Build.0 = Debug|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.ActiveCfg = Debug|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.Build.0 = Debug|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.ActiveCfg = Release|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.Build.0 = Release|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.ActiveCfg = Release|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.Build.0 = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|x64.ActiveCfg = Release|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.ActiveCfg = Debug|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.Build.0 = Debug|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.ActiveCfg = Debug|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.Build.0 = Debug|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.ActiveCfg = Release|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.Build.0 = Release|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.ActiveCfg = Release|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.Build.0 = Release|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.ActiveCfg = Debug|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.Build.0 = Debug|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.ActiveCfg = Debug|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.Build.0 = Debug|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.ActiveCfg = Release|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.Build.0 = Release|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.ActiveCfg = Release|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.Build.0 = Release|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.ActiveCfg = Debug|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.Build.0 = Debug|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.ActiveCfg = Debug|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.Build.0 = Debug|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.ActiveCfg = Release|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.Build.0 = Release|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.ActiveCfg = Release|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.Build.0 = Release|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|Win32.ActiveCfg = Debug|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|Win32.Build.0 = Debug|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|x64.ActiveCfg = Debug|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Debug|x64.Build.0 = Debug|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|Win32.ActiveCfg = Release|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|Win32.Build.0 = Release|Win32 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|x64.ActiveCfg = Release|x64 + {E5B04CC0-EB4C-42AB-B4DC-18EF95F864B0}.Release|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.ActiveCfg = Debug|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.Build.0 = Debug|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.ActiveCfg = Debug|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.Build.0 = Debug|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.Build.0 = Release|x64 + {885D4898-D08D-4091-9C40-C700CFE3FC5A}.Debug|Win32.ActiveCfg = PGInstrument|Win32 + {885D4898-D08D-4091-9C40-C700CFE3FC5A}.Debug|x64.ActiveCfg = Debug|x64 + {885D4898-D08D-4091-9C40-C700CFE3FC5A}.Debug|x64.Build.0 = Debug|x64 + {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGInstrument|x64.ActiveCfg = Release|x64 + {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGInstrument|x64.Build.0 = Release|x64 + {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGUpdate|x64.ActiveCfg = Release|x64 + {885D4898-D08D-4091-9C40-C700CFE3FC5A}.PGUpdate|x64.Build.0 = Release|x64 + {885D4898-D08D-4091-9C40-C700CFE3FC5A}.Release|Win32.ActiveCfg = Release|Win32 + {885D4898-D08D-4091-9C40-C700CFE3FC5A}.Release|Win32.Build.0 = Release|Win32 + {885D4898-D08D-4091-9C40-C700CFE3FC5A}.Release|x64.ActiveCfg = Release|x64 + {885D4898-D08D-4091-9C40-C700CFE3FC5A}.Release|x64.Build.0 = Release|x64 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Debug|Win32.ActiveCfg = Debug|Win32 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Debug|Win32.Build.0 = Debug|Win32 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Debug|x64.ActiveCfg = Debug|x64 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Debug|x64.Build.0 = Debug|x64 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGInstrument|Win32.Build.0 = Release|Win32 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGInstrument|x64.ActiveCfg = Release|x64 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGInstrument|x64.Build.0 = Release|x64 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGUpdate|Win32.Build.0 = Release|Win32 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGUpdate|x64.ActiveCfg = Release|x64 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.PGUpdate|x64.Build.0 = Release|x64 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Release|Win32.ActiveCfg = Release|Win32 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Release|Win32.Build.0 = Release|Win32 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Release|x64.ActiveCfg = Release|x64 + {F749B822-B489-4CA5-A3AD-CE078F5F338A}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/PCbuild/pginstrument.vsprops b/PCbuild/pginstrument.vsprops --- a/PCbuild/pginstrument.vsprops +++ b/PCbuild/pginstrument.vsprops @@ -1,34 +1,34 @@ - - - - - - + + + + + + diff --git a/PCbuild/pgupdate.vsprops b/PCbuild/pgupdate.vsprops --- a/PCbuild/pgupdate.vsprops +++ b/PCbuild/pgupdate.vsprops @@ -1,14 +1,14 @@ - - - - + + + + diff --git a/PCbuild/pyd.vsprops b/PCbuild/pyd.vsprops --- a/PCbuild/pyd.vsprops +++ b/PCbuild/pyd.vsprops @@ -1,28 +1,28 @@ - - - - - - - + + + + + + + diff --git a/PCbuild/pyd_d.vsprops b/PCbuild/pyd_d.vsprops --- a/PCbuild/pyd_d.vsprops +++ b/PCbuild/pyd_d.vsprops @@ -1,36 +1,36 @@ - - - - - - - - + + + + + + + + diff --git a/PCbuild/pyexpat.vcproj b/PCbuild/pyexpat.vcproj --- a/PCbuild/pyexpat.vcproj +++ b/PCbuild/pyexpat.vcproj @@ -1,553 +1,553 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pyproject.vsprops b/PCbuild/pyproject.vsprops --- a/PCbuild/pyproject.vsprops +++ b/PCbuild/pyproject.vsprops @@ -1,87 +1,87 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/python.vcproj b/PCbuild/python.vcproj --- a/PCbuild/python.vcproj +++ b/PCbuild/python.vcproj @@ -1,637 +1,637 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/python3dll.vcproj b/PCbuild/python3dll.vcproj --- a/PCbuild/python3dll.vcproj +++ b/PCbuild/python3dll.vcproj @@ -1,246 +1,246 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pythoncore.vcproj b/PCbuild/pythoncore.vcproj --- a/PCbuild/pythoncore.vcproj +++ b/PCbuild/pythoncore.vcproj @@ -1,1913 +1,1913 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pythonw.vcproj b/PCbuild/pythonw.vcproj --- a/PCbuild/pythonw.vcproj +++ b/PCbuild/pythonw.vcproj @@ -1,618 +1,618 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/release.vsprops b/PCbuild/release.vsprops --- a/PCbuild/release.vsprops +++ b/PCbuild/release.vsprops @@ -1,15 +1,15 @@ - - - - - + + + + + diff --git a/PCbuild/select.vcproj b/PCbuild/select.vcproj --- a/PCbuild/select.vcproj +++ b/PCbuild/select.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/sqlite3.vcproj b/PCbuild/sqlite3.vcproj --- a/PCbuild/sqlite3.vcproj +++ b/PCbuild/sqlite3.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/sqlite3.vsprops b/PCbuild/sqlite3.vsprops --- a/PCbuild/sqlite3.vsprops +++ b/PCbuild/sqlite3.vsprops @@ -1,14 +1,14 @@ - - - - + + + + diff --git a/PCbuild/ssl.vcproj b/PCbuild/ssl.vcproj --- a/PCbuild/ssl.vcproj +++ b/PCbuild/ssl.vcproj @@ -1,189 +1,189 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/unicodedata.vcproj b/PCbuild/unicodedata.vcproj --- a/PCbuild/unicodedata.vcproj +++ b/PCbuild/unicodedata.vcproj @@ -1,533 +1,533 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/w9xpopen.vcproj b/PCbuild/w9xpopen.vcproj --- a/PCbuild/w9xpopen.vcproj +++ b/PCbuild/w9xpopen.vcproj @@ -1,576 +1,576 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/winsound.vcproj b/PCbuild/winsound.vcproj --- a/PCbuild/winsound.vcproj +++ b/PCbuild/winsound.vcproj @@ -1,523 +1,523 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/x64.vsprops b/PCbuild/x64.vsprops --- a/PCbuild/x64.vsprops +++ b/PCbuild/x64.vsprops @@ -1,22 +1,22 @@ - - - - - - + + + + + + diff --git a/PCbuild/xxlimited.vcproj b/PCbuild/xxlimited.vcproj --- a/PCbuild/xxlimited.vcproj +++ b/PCbuild/xxlimited.vcproj @@ -1,417 +1,417 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 12:28:48 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 06 Mar 2011 12:28:48 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Convert DOS files to CRLF. This doesn't touch the .hgeol settings, so that the Message-ID: http://hg.python.org/cpython/rev/401e8882baf9 changeset: 68302:401e8882baf9 parent: 68292:7030e132e77f parent: 68301:9040278551da user: Martin v. L?wis date: Sun Mar 06 12:24:49 2011 +0100 summary: Convert DOS files to CRLF. This doesn't touch the .hgeol settings, so that the files will have the right line ending even if the extension is not active. files: PC/VC6/_ctypes.dsp PC/VC6/_msi.dsp PC/VC6/bz2.dsp PC/VC6/pythoncore.dsp PC/VS7.1/pythoncore.vcproj PC/VS8.0/pyproject.vsprops PC/VS8.0/sqlite3.vsprops PC/example_nt/example.vcproj PCbuild/pyproject.vsprops diff --git a/PC/VS7.1/_ctypes.vcproj b/PC/VS7.1/_ctypes.vcproj --- a/PC/VS7.1/_ctypes.vcproj +++ b/PC/VS7.1/_ctypes.vcproj @@ -1,311 +1,311 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_ctypes_test.vcproj b/PC/VS7.1/_ctypes_test.vcproj --- a/PC/VS7.1/_ctypes_test.vcproj +++ b/PC/VS7.1/_ctypes_test.vcproj @@ -1,242 +1,242 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_elementtree.vcproj b/PC/VS7.1/_elementtree.vcproj --- a/PC/VS7.1/_elementtree.vcproj +++ b/PC/VS7.1/_elementtree.vcproj @@ -1,264 +1,264 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_msi.vcproj b/PC/VS7.1/_msi.vcproj --- a/PC/VS7.1/_msi.vcproj +++ b/PC/VS7.1/_msi.vcproj @@ -1,252 +1,252 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_socket.vcproj b/PC/VS7.1/_socket.vcproj --- a/PC/VS7.1/_socket.vcproj +++ b/PC/VS7.1/_socket.vcproj @@ -1,254 +1,254 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_sqlite3.vcproj b/PC/VS7.1/_sqlite3.vcproj --- a/PC/VS7.1/_sqlite3.vcproj +++ b/PC/VS7.1/_sqlite3.vcproj @@ -1,283 +1,283 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_ssl.vcproj b/PC/VS7.1/_ssl.vcproj --- a/PC/VS7.1/_ssl.vcproj +++ b/PC/VS7.1/_ssl.vcproj @@ -1,84 +1,84 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_testcapi.vcproj b/PC/VS7.1/_testcapi.vcproj --- a/PC/VS7.1/_testcapi.vcproj +++ b/PC/VS7.1/_testcapi.vcproj @@ -1,247 +1,247 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_tkinter.vcproj b/PC/VS7.1/_tkinter.vcproj --- a/PC/VS7.1/_tkinter.vcproj +++ b/PC/VS7.1/_tkinter.vcproj @@ -1,261 +1,261 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/bz2.vcproj b/PC/VS7.1/bz2.vcproj --- a/PC/VS7.1/bz2.vcproj +++ b/PC/VS7.1/bz2.vcproj @@ -1,271 +1,271 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/make_buildinfo.vcproj b/PC/VS7.1/make_buildinfo.vcproj --- a/PC/VS7.1/make_buildinfo.vcproj +++ b/PC/VS7.1/make_buildinfo.vcproj @@ -1,122 +1,122 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/make_versioninfo.vcproj b/PC/VS7.1/make_versioninfo.vcproj --- a/PC/VS7.1/make_versioninfo.vcproj +++ b/PC/VS7.1/make_versioninfo.vcproj @@ -1,142 +1,142 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/pyexpat.vcproj b/PC/VS7.1/pyexpat.vcproj --- a/PC/VS7.1/pyexpat.vcproj +++ b/PC/VS7.1/pyexpat.vcproj @@ -1,263 +1,263 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/python.vcproj b/PC/VS7.1/python.vcproj --- a/PC/VS7.1/python.vcproj +++ b/PC/VS7.1/python.vcproj @@ -1,274 +1,274 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/pythoncore.vcproj b/PC/VS7.1/pythoncore.vcproj --- a/PC/VS7.1/pythoncore.vcproj +++ b/PC/VS7.1/pythoncore.vcproj @@ -1,847 +1,847 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/pythonw.vcproj b/PC/VS7.1/pythonw.vcproj --- a/PC/VS7.1/pythonw.vcproj +++ b/PC/VS7.1/pythonw.vcproj @@ -1,261 +1,261 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/select.vcproj b/PC/VS7.1/select.vcproj --- a/PC/VS7.1/select.vcproj +++ b/PC/VS7.1/select.vcproj @@ -1,258 +1,258 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/unicodedata.vcproj b/PC/VS7.1/unicodedata.vcproj --- a/PC/VS7.1/unicodedata.vcproj +++ b/PC/VS7.1/unicodedata.vcproj @@ -1,247 +1,247 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/w9xpopen.vcproj b/PC/VS7.1/w9xpopen.vcproj --- a/PC/VS7.1/w9xpopen.vcproj +++ b/PC/VS7.1/w9xpopen.vcproj @@ -1,121 +1,121 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/winsound.vcproj b/PC/VS7.1/winsound.vcproj --- a/PC/VS7.1/winsound.vcproj +++ b/PC/VS7.1/winsound.vcproj @@ -1,251 +1,251 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_ctypes.vcproj b/PC/VS8.0/_ctypes.vcproj --- a/PC/VS8.0/_ctypes.vcproj +++ b/PC/VS8.0/_ctypes.vcproj @@ -1,705 +1,705 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_ctypes_test.vcproj b/PC/VS8.0/_ctypes_test.vcproj --- a/PC/VS8.0/_ctypes_test.vcproj +++ b/PC/VS8.0/_ctypes_test.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_elementtree.vcproj b/PC/VS8.0/_elementtree.vcproj --- a/PC/VS8.0/_elementtree.vcproj +++ b/PC/VS8.0/_elementtree.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_hashlib.vcproj b/PC/VS8.0/_hashlib.vcproj --- a/PC/VS8.0/_hashlib.vcproj +++ b/PC/VS8.0/_hashlib.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_msi.vcproj b/PC/VS8.0/_msi.vcproj --- a/PC/VS8.0/_msi.vcproj +++ b/PC/VS8.0/_msi.vcproj @@ -1,529 +1,529 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_multiprocessing.vcproj b/PC/VS8.0/_multiprocessing.vcproj --- a/PC/VS8.0/_multiprocessing.vcproj +++ b/PC/VS8.0/_multiprocessing.vcproj @@ -1,557 +1,557 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_socket.vcproj b/PC/VS8.0/_socket.vcproj --- a/PC/VS8.0/_socket.vcproj +++ b/PC/VS8.0/_socket.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_sqlite3.vcproj b/PC/VS8.0/_sqlite3.vcproj --- a/PC/VS8.0/_sqlite3.vcproj +++ b/PC/VS8.0/_sqlite3.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_ssl.vcproj b/PC/VS8.0/_ssl.vcproj --- a/PC/VS8.0/_ssl.vcproj +++ b/PC/VS8.0/_ssl.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_testcapi.vcproj b/PC/VS8.0/_testcapi.vcproj --- a/PC/VS8.0/_testcapi.vcproj +++ b/PC/VS8.0/_testcapi.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_tkinter.vcproj b/PC/VS8.0/_tkinter.vcproj --- a/PC/VS8.0/_tkinter.vcproj +++ b/PC/VS8.0/_tkinter.vcproj @@ -1,541 +1,541 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/bdist_wininst.vcproj b/PC/VS8.0/bdist_wininst.vcproj --- a/PC/VS8.0/bdist_wininst.vcproj +++ b/PC/VS8.0/bdist_wininst.vcproj @@ -1,270 +1,270 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/bz2.vcproj b/PC/VS8.0/bz2.vcproj --- a/PC/VS8.0/bz2.vcproj +++ b/PC/VS8.0/bz2.vcproj @@ -1,581 +1,581 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/kill_python.vcproj b/PC/VS8.0/kill_python.vcproj --- a/PC/VS8.0/kill_python.vcproj +++ b/PC/VS8.0/kill_python.vcproj @@ -1,279 +1,279 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/make_buildinfo.vcproj b/PC/VS8.0/make_buildinfo.vcproj --- a/PC/VS8.0/make_buildinfo.vcproj +++ b/PC/VS8.0/make_buildinfo.vcproj @@ -1,101 +1,101 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/make_versioninfo.vcproj b/PC/VS8.0/make_versioninfo.vcproj --- a/PC/VS8.0/make_versioninfo.vcproj +++ b/PC/VS8.0/make_versioninfo.vcproj @@ -1,324 +1,324 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/pyexpat.vcproj b/PC/VS8.0/pyexpat.vcproj --- a/PC/VS8.0/pyexpat.vcproj +++ b/PC/VS8.0/pyexpat.vcproj @@ -1,553 +1,553 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/python.vcproj b/PC/VS8.0/python.vcproj --- a/PC/VS8.0/python.vcproj +++ b/PC/VS8.0/python.vcproj @@ -1,637 +1,637 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/pythoncore.vcproj b/PC/VS8.0/pythoncore.vcproj --- a/PC/VS8.0/pythoncore.vcproj +++ b/PC/VS8.0/pythoncore.vcproj @@ -1,1913 +1,1913 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/pythonw.vcproj b/PC/VS8.0/pythonw.vcproj --- a/PC/VS8.0/pythonw.vcproj +++ b/PC/VS8.0/pythonw.vcproj @@ -1,618 +1,618 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/select.vcproj b/PC/VS8.0/select.vcproj --- a/PC/VS8.0/select.vcproj +++ b/PC/VS8.0/select.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/sqlite3.vcproj b/PC/VS8.0/sqlite3.vcproj --- a/PC/VS8.0/sqlite3.vcproj +++ b/PC/VS8.0/sqlite3.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/unicodedata.vcproj b/PC/VS8.0/unicodedata.vcproj --- a/PC/VS8.0/unicodedata.vcproj +++ b/PC/VS8.0/unicodedata.vcproj @@ -1,533 +1,533 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/w9xpopen.vcproj b/PC/VS8.0/w9xpopen.vcproj --- a/PC/VS8.0/w9xpopen.vcproj +++ b/PC/VS8.0/w9xpopen.vcproj @@ -1,576 +1,576 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/winsound.vcproj b/PC/VS8.0/winsound.vcproj --- a/PC/VS8.0/winsound.vcproj +++ b/PC/VS8.0/winsound.vcproj @@ -1,523 +1,523 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/bdist_wininst/wininst-7.1.vcproj b/PC/bdist_wininst/wininst-7.1.vcproj --- a/PC/bdist_wininst/wininst-7.1.vcproj +++ b/PC/bdist_wininst/wininst-7.1.vcproj @@ -1,214 +1,214 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/bdist_wininst/wininst-8.vcproj b/PC/bdist_wininst/wininst-8.vcproj --- a/PC/bdist_wininst/wininst-8.vcproj +++ b/PC/bdist_wininst/wininst-8.vcproj @@ -1,320 +1,320 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/example_nt/example.vcproj b/PC/example_nt/example.vcproj --- a/PC/example_nt/example.vcproj +++ b/PC/example_nt/example.vcproj @@ -1,189 +1,189 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_ctypes.vcproj b/PCbuild/_ctypes.vcproj --- a/PCbuild/_ctypes.vcproj +++ b/PCbuild/_ctypes.vcproj @@ -1,705 +1,705 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_ctypes_test.vcproj b/PCbuild/_ctypes_test.vcproj --- a/PCbuild/_ctypes_test.vcproj +++ b/PCbuild/_ctypes_test.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_elementtree.vcproj b/PCbuild/_elementtree.vcproj --- a/PCbuild/_elementtree.vcproj +++ b/PCbuild/_elementtree.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_hashlib.vcproj b/PCbuild/_hashlib.vcproj --- a/PCbuild/_hashlib.vcproj +++ b/PCbuild/_hashlib.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_msi.vcproj b/PCbuild/_msi.vcproj --- a/PCbuild/_msi.vcproj +++ b/PCbuild/_msi.vcproj @@ -1,529 +1,529 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_multiprocessing.vcproj b/PCbuild/_multiprocessing.vcproj --- a/PCbuild/_multiprocessing.vcproj +++ b/PCbuild/_multiprocessing.vcproj @@ -1,557 +1,557 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_socket.vcproj b/PCbuild/_socket.vcproj --- a/PCbuild/_socket.vcproj +++ b/PCbuild/_socket.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_sqlite3.vcproj b/PCbuild/_sqlite3.vcproj --- a/PCbuild/_sqlite3.vcproj +++ b/PCbuild/_sqlite3.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_ssl.vcproj b/PCbuild/_ssl.vcproj --- a/PCbuild/_ssl.vcproj +++ b/PCbuild/_ssl.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_testcapi.vcproj b/PCbuild/_testcapi.vcproj --- a/PCbuild/_testcapi.vcproj +++ b/PCbuild/_testcapi.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_tkinter.vcproj b/PCbuild/_tkinter.vcproj --- a/PCbuild/_tkinter.vcproj +++ b/PCbuild/_tkinter.vcproj @@ -1,541 +1,541 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/bdist_wininst.vcproj b/PCbuild/bdist_wininst.vcproj --- a/PCbuild/bdist_wininst.vcproj +++ b/PCbuild/bdist_wininst.vcproj @@ -1,270 +1,270 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/bz2.vcproj b/PCbuild/bz2.vcproj --- a/PCbuild/bz2.vcproj +++ b/PCbuild/bz2.vcproj @@ -1,581 +1,581 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/debug.vsprops b/PCbuild/debug.vsprops --- a/PCbuild/debug.vsprops +++ b/PCbuild/debug.vsprops @@ -1,15 +1,15 @@ - - - - - + + + + + diff --git a/PCbuild/kill_python.vcproj b/PCbuild/kill_python.vcproj --- a/PCbuild/kill_python.vcproj +++ b/PCbuild/kill_python.vcproj @@ -1,279 +1,279 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/make_buildinfo.vcproj b/PCbuild/make_buildinfo.vcproj --- a/PCbuild/make_buildinfo.vcproj +++ b/PCbuild/make_buildinfo.vcproj @@ -1,101 +1,101 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/make_versioninfo.vcproj b/PCbuild/make_versioninfo.vcproj --- a/PCbuild/make_versioninfo.vcproj +++ b/PCbuild/make_versioninfo.vcproj @@ -1,324 +1,324 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pginstrument.vsprops b/PCbuild/pginstrument.vsprops --- a/PCbuild/pginstrument.vsprops +++ b/PCbuild/pginstrument.vsprops @@ -1,34 +1,34 @@ - - - - - - + + + + + + diff --git a/PCbuild/pgupdate.vsprops b/PCbuild/pgupdate.vsprops --- a/PCbuild/pgupdate.vsprops +++ b/PCbuild/pgupdate.vsprops @@ -1,14 +1,14 @@ - - - - + + + + diff --git a/PCbuild/pyd.vsprops b/PCbuild/pyd.vsprops --- a/PCbuild/pyd.vsprops +++ b/PCbuild/pyd.vsprops @@ -1,28 +1,28 @@ - - - - - - - + + + + + + + diff --git a/PCbuild/pyd_d.vsprops b/PCbuild/pyd_d.vsprops --- a/PCbuild/pyd_d.vsprops +++ b/PCbuild/pyd_d.vsprops @@ -1,36 +1,36 @@ - - - - - - - - + + + + + + + + diff --git a/PCbuild/pyexpat.vcproj b/PCbuild/pyexpat.vcproj --- a/PCbuild/pyexpat.vcproj +++ b/PCbuild/pyexpat.vcproj @@ -1,553 +1,553 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pyproject.vsprops b/PCbuild/pyproject.vsprops --- a/PCbuild/pyproject.vsprops +++ b/PCbuild/pyproject.vsprops @@ -1,87 +1,87 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/python.vcproj b/PCbuild/python.vcproj --- a/PCbuild/python.vcproj +++ b/PCbuild/python.vcproj @@ -1,637 +1,637 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pythoncore.vcproj b/PCbuild/pythoncore.vcproj --- a/PCbuild/pythoncore.vcproj +++ b/PCbuild/pythoncore.vcproj @@ -1,1913 +1,1913 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pythonw.vcproj b/PCbuild/pythonw.vcproj --- a/PCbuild/pythonw.vcproj +++ b/PCbuild/pythonw.vcproj @@ -1,618 +1,618 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/release.vsprops b/PCbuild/release.vsprops --- a/PCbuild/release.vsprops +++ b/PCbuild/release.vsprops @@ -1,15 +1,15 @@ - - - - - + + + + + diff --git a/PCbuild/select.vcproj b/PCbuild/select.vcproj --- a/PCbuild/select.vcproj +++ b/PCbuild/select.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/sqlite3.vcproj b/PCbuild/sqlite3.vcproj --- a/PCbuild/sqlite3.vcproj +++ b/PCbuild/sqlite3.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/sqlite3.vsprops b/PCbuild/sqlite3.vsprops --- a/PCbuild/sqlite3.vsprops +++ b/PCbuild/sqlite3.vsprops @@ -1,14 +1,14 @@ - - - - + + + + diff --git a/PCbuild/unicodedata.vcproj b/PCbuild/unicodedata.vcproj --- a/PCbuild/unicodedata.vcproj +++ b/PCbuild/unicodedata.vcproj @@ -1,533 +1,533 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/w9xpopen.vcproj b/PCbuild/w9xpopen.vcproj --- a/PCbuild/w9xpopen.vcproj +++ b/PCbuild/w9xpopen.vcproj @@ -1,576 +1,576 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/winsound.vcproj b/PCbuild/winsound.vcproj --- a/PCbuild/winsound.vcproj +++ b/PCbuild/winsound.vcproj @@ -1,523 +1,523 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/x64.vsprops b/PCbuild/x64.vsprops --- a/PCbuild/x64.vsprops +++ b/PCbuild/x64.vsprops @@ -1,22 +1,22 @@ - - - - - - + + + + + + -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 12:28:56 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 06 Mar 2011 12:28:56 +0100 Subject: [Python-checkins] cpython (2.7): Convert DOS files to CRLF. This doesn't touch the .hgeol settings, so that the Message-ID: http://hg.python.org/cpython/rev/9a4f471f51ec changeset: 68303:9a4f471f51ec branch: 2.7 parent: 68299:60811cd05686 user: Martin v. L?wis date: Sun Mar 06 12:27:30 2011 +0100 summary: Convert DOS files to CRLF. This doesn't touch the .hgeol settings, so that the files will have the right line ending even if the extension is not active. files: PC/VC6/_bsddb.dsp PC/VC6/_ctypes.dsp PC/VC6/_ctypes_test.dsp PC/VC6/_elementtree.dsp PC/VC6/_msi.dsp PC/VC6/_multiprocessing.dsp PC/VC6/_socket.dsp PC/VC6/_sqlite3.dsp PC/VC6/_ssl.dsp PC/VC6/_testcapi.dsp PC/VC6/_tkinter.dsp PC/VC6/bz2.dsp PC/VC6/make_versioninfo.dsp PC/VC6/pcbuild.dsw PC/VC6/pyexpat.dsp PC/VC6/python.dsp PC/VC6/pythoncore.dsp PC/VC6/pythonw.dsp PC/VC6/select.dsp PC/VC6/unicodedata.dsp PC/VC6/w9xpopen.dsp PC/VC6/winsound.dsp PC/VS7.1/_bsddb.vcproj PC/VS7.1/_ctypes.vcproj PC/VS7.1/_ctypes_test.vcproj PC/VS7.1/_elementtree.vcproj PC/VS7.1/_msi.vcproj PC/VS7.1/_socket.vcproj PC/VS7.1/_sqlite3.vcproj PC/VS7.1/_ssl.vcproj PC/VS7.1/_testcapi.vcproj PC/VS7.1/_tkinter.vcproj PC/VS7.1/bz2.vcproj PC/VS7.1/make_buildinfo.vcproj PC/VS7.1/make_versioninfo.vcproj PC/VS7.1/pcbuild.sln PC/VS7.1/pyexpat.vcproj PC/VS7.1/python.vcproj PC/VS7.1/pythoncore.vcproj PC/VS7.1/pythonw.vcproj PC/VS7.1/select.vcproj PC/VS7.1/unicodedata.vcproj PC/VS7.1/w9xpopen.vcproj PC/VS7.1/winsound.vcproj PC/VS8.0/_bsddb.vcproj PC/VS8.0/_bsddb44.vcproj PC/VS8.0/_ctypes.vcproj PC/VS8.0/_ctypes_test.vcproj PC/VS8.0/_elementtree.vcproj PC/VS8.0/_hashlib.vcproj PC/VS8.0/_msi.vcproj PC/VS8.0/_multiprocessing.vcproj PC/VS8.0/_socket.vcproj PC/VS8.0/_sqlite3.vcproj PC/VS8.0/_ssl.vcproj PC/VS8.0/_testcapi.vcproj PC/VS8.0/_tkinter.vcproj PC/VS8.0/bdist_wininst.vcproj PC/VS8.0/bz2.vcproj PC/VS8.0/debug.vsprops PC/VS8.0/kill_python.vcproj PC/VS8.0/make_buildinfo.vcproj PC/VS8.0/make_versioninfo.vcproj PC/VS8.0/pcbuild.sln PC/VS8.0/pginstrument.vsprops PC/VS8.0/pgupdate.vsprops PC/VS8.0/pyd.vsprops PC/VS8.0/pyd_d.vsprops PC/VS8.0/pyexpat.vcproj PC/VS8.0/pyproject.vsprops PC/VS8.0/python.vcproj PC/VS8.0/pythoncore.vcproj PC/VS8.0/pythonw.vcproj PC/VS8.0/release.vsprops PC/VS8.0/select.vcproj PC/VS8.0/sqlite3.vcproj PC/VS8.0/sqlite3.vsprops PC/VS8.0/unicodedata.vcproj PC/VS8.0/w9xpopen.vcproj PC/VS8.0/winsound.vcproj PC/VS8.0/x64.vsprops PC/bdist_wininst/wininst-7.1.sln PC/bdist_wininst/wininst-7.1.vcproj PC/bdist_wininst/wininst-8.sln PC/bdist_wininst/wininst-8.vcproj PC/bdist_wininst/wininst.dsp PC/bdist_wininst/wininst.dsw PC/example_nt/example.sln PC/example_nt/example.vcproj PCbuild/_bsddb.vcproj PCbuild/_ctypes.vcproj PCbuild/_ctypes_test.vcproj PCbuild/_elementtree.vcproj PCbuild/_hashlib.vcproj PCbuild/_msi.vcproj PCbuild/_multiprocessing.vcproj PCbuild/_socket.vcproj PCbuild/_sqlite3.vcproj PCbuild/_ssl.vcproj PCbuild/_testcapi.vcproj PCbuild/_tkinter.vcproj PCbuild/bdist_wininst.vcproj PCbuild/bz2.vcproj PCbuild/debug.vsprops PCbuild/kill_python.vcproj PCbuild/make_buildinfo.vcproj PCbuild/make_versioninfo.vcproj PCbuild/pcbuild.sln PCbuild/pginstrument.vsprops PCbuild/pgupdate.vsprops PCbuild/pyd.vsprops PCbuild/pyd_d.vsprops PCbuild/pyexpat.vcproj PCbuild/pyproject.vsprops PCbuild/python.vcproj PCbuild/pythoncore.vcproj PCbuild/pythonw.vcproj PCbuild/release.vsprops PCbuild/select.vcproj PCbuild/sqlite3.vcproj PCbuild/sqlite3.vsprops PCbuild/unicodedata.vcproj PCbuild/w9xpopen.vcproj PCbuild/winsound.vcproj PCbuild/x64.vsprops diff --git a/PC/VC6/_bsddb.dsp b/PC/VC6/_bsddb.dsp --- a/PC/VC6/_bsddb.dsp +++ b/PC/VC6/_bsddb.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="_bsddb" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_bsddb - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_bsddb.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_bsddb.mak" CFG="_bsddb - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_bsddb - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_bsddb - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_bsddb" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_bsddb - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_bsddb" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\..\db-4.7.25\build_windows" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib ..\..\..\db-4.7.25\build_windows\Release\libdb47s.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /out:"./_bsddb.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_bsddb - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_bsddb" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\..\db-4.7.25\build_windows" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib ..\..\..\db-4.7.25\build_windows\Release\libdb47s.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"msvcrtd" /out:"./_bsddb_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_bsddb - Win32 Release" -# Name "_bsddb - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_bsddb.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_bsddb" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_bsddb - Win32 Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_bsddb.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_bsddb.mak" CFG="_bsddb - Win32 Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_bsddb - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_bsddb - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_bsddb" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_bsddb - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_bsddb" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\..\db-4.7.25\build_windows" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib ..\..\..\db-4.7.25\build_windows\Release\libdb47s.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /out:"./_bsddb.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_bsddb - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_bsddb" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\..\db-4.7.25\build_windows" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib ..\..\..\db-4.7.25\build_windows\Release\libdb47s.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"msvcrtd" /out:"./_bsddb_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_bsddb - Win32 Release" +# Name "_bsddb - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_bsddb.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_ctypes.dsp b/PC/VC6/_ctypes.dsp --- a/PC/VC6/_ctypes.dsp +++ b/PC/VC6/_ctypes.dsp @@ -1,131 +1,131 @@ -# Microsoft Developer Studio Project File - Name="_ctypes" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_ctypes - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_ctypes.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_ctypes.mak" CFG="_ctypes - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_ctypes - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_ctypes - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_ctypes" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_ctypes - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_ctypes" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\_ctypes\libffi_msvc" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_ctypes - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_ctypes" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\_ctypes\libffi_msvc" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_ctypes - Win32 Release" -# Name "_ctypes - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\_ctypes.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\callbacks.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\callproc.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\cfield.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\libffi_msvc\ffi.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\malloc_closure.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\libffi_msvc\prep_cif.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\stgdict.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\libffi_msvc\win32.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_ctypes" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_ctypes - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_ctypes.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_ctypes.mak" CFG="_ctypes - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_ctypes - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_ctypes - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_ctypes" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_ctypes - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_ctypes" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\_ctypes\libffi_msvc" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_ctypes - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_ctypes" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\_ctypes\libffi_msvc" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_ctypes - Win32 Release" +# Name "_ctypes - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\_ctypes.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\callbacks.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\callproc.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\cfield.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\libffi_msvc\ffi.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\malloc_closure.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\libffi_msvc\prep_cif.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\stgdict.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\libffi_msvc\win32.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_ctypes_test.dsp b/PC/VC6/_ctypes_test.dsp --- a/PC/VC6/_ctypes_test.dsp +++ b/PC/VC6/_ctypes_test.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="_ctypes_test" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_ctypes_test - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_ctypes_test.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_ctypes_test.mak" CFG="_ctypes_test - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_ctypes_test - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_ctypes_test - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_ctypes_test" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_ctypes_test - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_ctypes_test" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_test.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_ctypes_test - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_ctypes_test" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_test_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_ctypes_test - Win32 Release" -# Name "_ctypes_test - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_ctypes\_ctypes_test.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_ctypes_test" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_ctypes_test - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_ctypes_test.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_ctypes_test.mak" CFG="_ctypes_test - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_ctypes_test - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_ctypes_test - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_ctypes_test" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_ctypes_test - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_ctypes_test" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_test.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_ctypes_test - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_ctypes_test" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"./_ctypes_test_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_ctypes_test - Win32 Release" +# Name "_ctypes_test - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_ctypes\_ctypes_test.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_elementtree.dsp b/PC/VC6/_elementtree.dsp --- a/PC/VC6/_elementtree.dsp +++ b/PC/VC6/_elementtree.dsp @@ -1,111 +1,111 @@ -# Microsoft Developer Studio Project File - Name="_elementtree" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_elementtree - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_elementtree.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_elementtree.mak" CFG="_elementtree - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_elementtree - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_elementtree - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_elementtree" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_elementtree - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_elementtree" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D "BYTEORDER=1234" /D "XML_CONTEXT_BYTES=1024" /D "USE_PYEXPAT_CAPI" /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d100000" /subsystem:windows /dll /debug /machine:I386 /out:"./_elementtree.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_elementtree - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_elementtree" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D "BYTEORDER=1234" /D "XML_CONTEXT_BYTES=1024" /D "USE_PYEXPAT_CAPI" /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d100000" /subsystem:windows /dll /debug /machine:I386 /out:"./_elementtree_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_elementtree - Win32 Release" -# Name "_elementtree - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_elementtree.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmlparse.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmlrole.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmltok.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_elementtree" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_elementtree - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_elementtree.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_elementtree.mak" CFG="_elementtree - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_elementtree - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_elementtree - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_elementtree" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_elementtree - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_elementtree" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D "BYTEORDER=1234" /D "XML_CONTEXT_BYTES=1024" /D "USE_PYEXPAT_CAPI" /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d100000" /subsystem:windows /dll /debug /machine:I386 /out:"./_elementtree.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_elementtree - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_elementtree" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D "BYTEORDER=1234" /D "XML_CONTEXT_BYTES=1024" /D "USE_PYEXPAT_CAPI" /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d100000" /subsystem:windows /dll /debug /machine:I386 /out:"./_elementtree_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_elementtree - Win32 Release" +# Name "_elementtree - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_elementtree.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmlparse.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmlrole.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmltok.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_msi.dsp b/PC/VC6/_msi.dsp --- a/PC/VC6/_msi.dsp +++ b/PC/VC6/_msi.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="_msi" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_msi - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_msi.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_msi.mak" CFG="_msi - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_msi - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_msi - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_msi" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_msi - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_msi" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_msi.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_msi - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_msi" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_msi_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_msi - Win32 Release" -# Name "_msi - Win32 Debug" -# Begin Source File - -SOURCE=..\..\PC\_msi.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_msi" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_msi - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_msi.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_msi.mak" CFG="_msi - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_msi - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_msi - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_msi" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_msi - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_msi" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_msi.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_msi - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_msi" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib fci.lib msi.lib rpcrt4.lib /nologo /base:"0x1d1a0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_msi_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_msi - Win32 Release" +# Name "_msi - Win32 Debug" +# Begin Source File + +SOURCE=..\..\PC\_msi.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_multiprocessing.dsp b/PC/VC6/_multiprocessing.dsp --- a/PC/VC6/_multiprocessing.dsp +++ b/PC/VC6/_multiprocessing.dsp @@ -1,115 +1,115 @@ -# Microsoft Developer Studio Project File - Name="_multiprocessing" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_multiprocessing - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_multiprocessing.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_multiprocessing.mak" CFG="_multiprocessing - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_multiprocessing - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_multiprocessing - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_multiprocessing" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_multiprocessing - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_multiprocessing" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_multiprocessing.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_multiprocessing - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_multiprocessing" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1d0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_multiprocessing_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_multiprocessing - Win32 Release" -# Name "_multiprocessing - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_multiprocessing\multiprocessing.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_multiprocessing\pipe_connection.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_multiprocessing\semaphore.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_multiprocessing\socket_connection.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_multiprocessing\win32_functions.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_multiprocessing" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_multiprocessing - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_multiprocessing.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_multiprocessing.mak" CFG="_multiprocessing - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_multiprocessing - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_multiprocessing - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_multiprocessing" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_multiprocessing - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_multiprocessing" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_multiprocessing.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_multiprocessing - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_multiprocessing" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1d0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_multiprocessing_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_multiprocessing - Win32 Release" +# Name "_multiprocessing - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_multiprocessing\multiprocessing.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_multiprocessing\pipe_connection.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_multiprocessing\semaphore.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_multiprocessing\socket_connection.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_multiprocessing\win32_functions.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_socket.dsp b/PC/VC6/_socket.dsp --- a/PC/VC6/_socket.dsp +++ b/PC/VC6/_socket.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="_socket" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_socket - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_socket.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_socket.mak" CFG="_socket - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_socket - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_socket - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_socket" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_socket - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_socket" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_socket.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_socket - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_socket" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_socket_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_socket - Win32 Release" -# Name "_socket - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\socketmodule.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_socket" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_socket - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_socket.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_socket.mak" CFG="_socket - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_socket - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_socket - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_socket" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_socket - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_socket" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_socket.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_socket - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_socket" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1e1D0000" /subsystem:windows /dll /debug /machine:I386 /out:"./_socket_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_socket - Win32 Release" +# Name "_socket - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\socketmodule.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_sqlite3.dsp b/PC/VC6/_sqlite3.dsp --- a/PC/VC6/_sqlite3.dsp +++ b/PC/VC6/_sqlite3.dsp @@ -1,131 +1,131 @@ -# Microsoft Developer Studio Project File - Name="_sqlite3" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_sqlite3 - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_sqlite3.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_sqlite3.mak" CFG="_sqlite3 - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_sqlite3 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_sqlite3 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_sqlite3" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_sqlite3 - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_sqlite3" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\..\sqlite-source-3.3.4" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D MODULE_NAME=\"sqlite3\" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\sqlite-source-3.3.4\sqlite3.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /out:"./_sqlite3.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_sqlite3 - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_sqlite3" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\..\sqlite-source-3.3.4" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D MODULE_NAME=\"sqlite3\" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\sqlite-source-3.3.4\sqlite3.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /out:"./_sqlite3_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_sqlite3 - Win32 Release" -# Name "_sqlite3 - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\cache.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\connection.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\cursor.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\microprotocols.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\module.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\prepare_protocol.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\row.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\statement.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sqlite\util.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_sqlite3" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_sqlite3 - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_sqlite3.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_sqlite3.mak" CFG="_sqlite3 - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_sqlite3 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_sqlite3 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_sqlite3" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_sqlite3 - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_sqlite3" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\..\sqlite-source-3.3.4" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D MODULE_NAME=\"sqlite3\" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\sqlite-source-3.3.4\sqlite3.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /out:"./_sqlite3.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_sqlite3 - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_sqlite3" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\..\sqlite-source-3.3.4" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D MODULE_NAME=\"sqlite3\" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\sqlite-source-3.3.4\sqlite3.lib /nologo /base:"0x1e180000" /subsystem:windows /dll /debug /machine:I386 /out:"./_sqlite3_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_sqlite3 - Win32 Release" +# Name "_sqlite3 - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\cache.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\connection.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\cursor.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\microprotocols.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\module.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\prepare_protocol.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\row.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\statement.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sqlite\util.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_ssl.dsp b/PC/VC6/_ssl.dsp --- a/PC/VC6/_ssl.dsp +++ b/PC/VC6/_ssl.dsp @@ -1,89 +1,89 @@ -# Microsoft Developer Studio Project File - Name="_ssl" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) External Target" 0x0106 - -CFG=_ssl - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_ssl.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_ssl.mak" CFG="_ssl - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_ssl - Win32 Release" (based on "Win32 (x86) External Target") -!MESSAGE "_ssl - Win32 Debug" (based on "Win32 (x86) External Target") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" - -!IF "$(CFG)" == "_ssl - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Cmd_Line "NMAKE /f _ssl.mak" -# PROP BASE Rebuild_Opt "/a" -# PROP BASE Target_File "_ssl.exe" -# PROP BASE Bsc_Name "_ssl.bsc" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_ssl" -# PROP Cmd_Line "python build_ssl.py" -# PROP Rebuild_Opt "-a" -# PROP Target_File "_ssl.pyd" -# PROP Bsc_Name "" -# PROP Target_Dir "" - -!ELSEIF "$(CFG)" == "_ssl - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "x86-temp-debug\_ssl" -# PROP BASE Intermediate_Dir "x86-temp-debug\_ssl" -# PROP BASE Cmd_Line "NMAKE /f _ssl.mak" -# PROP BASE Rebuild_Opt "/a" -# PROP BASE Target_File "_ssl_d.pyd" -# PROP BASE Bsc_Name "_ssl_d.bsc" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_ssl" -# PROP Cmd_Line "python_d -u build_ssl.py -d" -# PROP Rebuild_Opt "-a" -# PROP Target_File "_ssl_d.pyd" -# PROP Bsc_Name "" -# PROP Target_Dir "" - -!ENDIF - -# Begin Target - -# Name "_ssl - Win32 Release" -# Name "_ssl - Win32 Debug" - -!IF "$(CFG)" == "_ssl - Win32 Release" - -!ELSEIF "$(CFG)" == "_ssl - Win32 Debug" - -!ENDIF - -# Begin Source File - -SOURCE=..\..\Modules\_ssl.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_ssl" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) External Target" 0x0106 + +CFG=_ssl - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_ssl.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_ssl.mak" CFG="_ssl - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_ssl - Win32 Release" (based on "Win32 (x86) External Target") +!MESSAGE "_ssl - Win32 Debug" (based on "Win32 (x86) External Target") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" + +!IF "$(CFG)" == "_ssl - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Cmd_Line "NMAKE /f _ssl.mak" +# PROP BASE Rebuild_Opt "/a" +# PROP BASE Target_File "_ssl.exe" +# PROP BASE Bsc_Name "_ssl.bsc" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_ssl" +# PROP Cmd_Line "python build_ssl.py" +# PROP Rebuild_Opt "-a" +# PROP Target_File "_ssl.pyd" +# PROP Bsc_Name "" +# PROP Target_Dir "" + +!ELSEIF "$(CFG)" == "_ssl - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "x86-temp-debug\_ssl" +# PROP BASE Intermediate_Dir "x86-temp-debug\_ssl" +# PROP BASE Cmd_Line "NMAKE /f _ssl.mak" +# PROP BASE Rebuild_Opt "/a" +# PROP BASE Target_File "_ssl_d.pyd" +# PROP BASE Bsc_Name "_ssl_d.bsc" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_ssl" +# PROP Cmd_Line "python_d -u build_ssl.py -d" +# PROP Rebuild_Opt "-a" +# PROP Target_File "_ssl_d.pyd" +# PROP Bsc_Name "" +# PROP Target_Dir "" + +!ENDIF + +# Begin Target + +# Name "_ssl - Win32 Release" +# Name "_ssl - Win32 Debug" + +!IF "$(CFG)" == "_ssl - Win32 Release" + +!ELSEIF "$(CFG)" == "_ssl - Win32 Debug" + +!ENDIF + +# Begin Source File + +SOURCE=..\..\Modules\_ssl.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_testcapi.dsp b/PC/VC6/_testcapi.dsp --- a/PC/VC6/_testcapi.dsp +++ b/PC/VC6/_testcapi.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="_testcapi" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_testcapi - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_testcapi.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_testcapi.mak" CFG="_testcapi - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_testcapi - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_testcapi - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_testcapi" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_testcapi - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_testcapi" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "NDEBUG" -# ADD RSC /l 0xc09 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1e1F0000" /dll /machine:I386 /out:"./_testcapi.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_testcapi - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_testcapi" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "_DEBUG" -# ADD RSC /l 0xc09 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1e1F0000" /dll /debug /machine:I386 /out:"./_testcapi_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_testcapi - Win32 Release" -# Name "_testcapi - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_testcapimodule.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_testcapi" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_testcapi - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_testcapi.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_testcapi.mak" CFG="_testcapi - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_testcapi - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_testcapi - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_testcapi" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_testcapi - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_testcapi" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "NDEBUG" +# ADD RSC /l 0xc09 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1e1F0000" /dll /machine:I386 /out:"./_testcapi.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_testcapi - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_testcapi" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "_DEBUG" +# ADD RSC /l 0xc09 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1e1F0000" /dll /debug /machine:I386 /out:"./_testcapi_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_testcapi - Win32 Release" +# Name "_testcapi - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_testcapimodule.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/_tkinter.dsp b/PC/VC6/_tkinter.dsp --- a/PC/VC6/_tkinter.dsp +++ b/PC/VC6/_tkinter.dsp @@ -1,103 +1,103 @@ -# Microsoft Developer Studio Project File - Name="_tkinter" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=_tkinter - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "_tkinter.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "_tkinter.mak" CFG="_tkinter - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "_tkinter - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "_tkinter - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "_tkinter" -# PROP Scc_LocalPath "..\..\.." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "_tkinter - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\_tkinter" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\..\tcltk\include" /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "WITH_APPINIT" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 ..\..\..\tcltk\lib\tk85g.lib ..\..\..\tcltk\lib\tcl85g.lib odbc32.lib odbccp32.lib user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1e190000" /subsystem:windows /dll /debug /machine:I386 /out:"./_tkinter_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "_tkinter - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\_tkinter" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\..\tcltk\include" /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "WITH_APPINIT" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 ..\..\..\tcltk\lib\tk85.lib ..\..\..\tcltk\lib\tcl85.lib odbc32.lib odbccp32.lib user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1e190000" /subsystem:windows /dll /debug /machine:I386 /out:"./_tkinter.pyd" -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "_tkinter - Win32 Release" -# Name "_tkinter - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_tkinter.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\tkappinit.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="_tkinter" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=_tkinter - Win32 Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "_tkinter.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "_tkinter.mak" CFG="_tkinter - Win32 Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "_tkinter - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "_tkinter - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "_tkinter" +# PROP Scc_LocalPath "..\..\.." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "_tkinter - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\_tkinter" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\..\tcltk\include" /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "WITH_APPINIT" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 ..\..\..\tcltk\lib\tk85g.lib ..\..\..\tcltk\lib\tcl85g.lib odbc32.lib odbccp32.lib user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1e190000" /subsystem:windows /dll /debug /machine:I386 /out:"./_tkinter_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "_tkinter - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\_tkinter" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\..\tcltk\include" /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "WITH_APPINIT" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 ..\..\..\tcltk\lib\tk85.lib ..\..\..\tcltk\lib\tcl85.lib odbc32.lib odbccp32.lib user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1e190000" /subsystem:windows /dll /debug /machine:I386 /out:"./_tkinter.pyd" +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "_tkinter - Win32 Release" +# Name "_tkinter - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_tkinter.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\tkappinit.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/bz2.dsp b/PC/VC6/bz2.dsp --- a/PC/VC6/bz2.dsp +++ b/PC/VC6/bz2.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="bz2" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=bz2 - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "bz2.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "bz2.mak" CFG="bz2 - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "bz2 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "bz2 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "bz2" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "bz2 - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\bz2" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\..\bzip2-1.0.5" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 ..\..\..\bzip2-1.0.5\libbz2.lib /nologo /base:"0x1D170000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./bz2.pyd" -# SUBTRACT LINK32 /pdb:none /nodefaultlib - -!ELSEIF "$(CFG)" == "bz2 - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\bz2" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\..\bzip2-1.0.5" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 ..\..\..\bzip2-1.0.5\libbz2.lib /nologo /base:"0x1D170000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"msvcrt" /nodefaultlib:"libc" /out:"./bz2_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "bz2 - Win32 Release" -# Name "bz2 - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\bz2module.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="bz2" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=bz2 - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "bz2.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "bz2.mak" CFG="bz2 - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "bz2 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "bz2 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "bz2" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "bz2 - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\bz2" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\..\bzip2-1.0.5" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 ..\..\..\bzip2-1.0.5\libbz2.lib /nologo /base:"0x1D170000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./bz2.pyd" +# SUBTRACT LINK32 /pdb:none /nodefaultlib + +!ELSEIF "$(CFG)" == "bz2 - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\bz2" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\..\bzip2-1.0.5" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 ..\..\..\bzip2-1.0.5\libbz2.lib /nologo /base:"0x1D170000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"msvcrt" /nodefaultlib:"libc" /out:"./bz2_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "bz2 - Win32 Release" +# Name "bz2 - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\bz2module.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/make_versioninfo.dsp b/PC/VC6/make_versioninfo.dsp --- a/PC/VC6/make_versioninfo.dsp +++ b/PC/VC6/make_versioninfo.dsp @@ -1,108 +1,108 @@ -# Microsoft Developer Studio Project File - Name="make_versioninfo" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=make_versioninfo - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "make_versioninfo.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "make_versioninfo.mak" CFG="make_versioninfo - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "make_versioninfo - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "make_versioninfo - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "make_versioninfo" -# PROP Scc_LocalPath ".." -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "make_versioninfo - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\make_versioninfo" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1d000000" /subsystem:console /debug /machine:I386 -# SUBTRACT LINK32 /pdb:none -# Begin Custom Build -InputPath=.\make_versioninfo.exe -SOURCE="$(InputPath)" - -"..\pythonnt_rc.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - .\make_versioninfo.exe >..\pythonnt_rc.h - -# End Custom Build - -!ELSEIF "$(CFG)" == "make_versioninfo - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\make_versioninfo" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /i "..\..\Include" /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1d000000" /subsystem:console /debug /machine:I386 /out:"./make_versioninfo_d.exe" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none -# Begin Custom Build -InputPath=.\make_versioninfo_d.exe -SOURCE="$(InputPath)" - -"..\pythonnt_rc_d.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - .\make_versioninfo_d.exe >..\pythonnt_rc_d.h - -# End Custom Build - -!ENDIF - -# Begin Target - -# Name "make_versioninfo - Win32 Release" -# Name "make_versioninfo - Win32 Debug" -# Begin Source File - -SOURCE=..\make_versioninfo.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="make_versioninfo" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Console Application" 0x0103 + +CFG=make_versioninfo - Win32 Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "make_versioninfo.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "make_versioninfo.mak" CFG="make_versioninfo - Win32 Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "make_versioninfo - Win32 Release" (based on "Win32 (x86) Console Application") +!MESSAGE "make_versioninfo - Win32 Debug" (based on "Win32 (x86) Console Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "make_versioninfo" +# PROP Scc_LocalPath ".." +CPP=cl.exe +RSC=rc.exe + +!IF "$(CFG)" == "make_versioninfo - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\make_versioninfo" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1d000000" /subsystem:console /debug /machine:I386 +# SUBTRACT LINK32 /pdb:none +# Begin Custom Build +InputPath=.\make_versioninfo.exe +SOURCE="$(InputPath)" + +"..\pythonnt_rc.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" + .\make_versioninfo.exe >..\pythonnt_rc.h + +# End Custom Build + +!ELSEIF "$(CFG)" == "make_versioninfo - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\make_versioninfo" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /c +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /i "..\..\Include" /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# ADD LINK32 odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1d000000" /subsystem:console /debug /machine:I386 /out:"./make_versioninfo_d.exe" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none +# Begin Custom Build +InputPath=.\make_versioninfo_d.exe +SOURCE="$(InputPath)" + +"..\pythonnt_rc_d.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" + .\make_versioninfo_d.exe >..\pythonnt_rc_d.h + +# End Custom Build + +!ENDIF + +# Begin Target + +# Name "make_versioninfo - Win32 Release" +# Name "make_versioninfo - Win32 Debug" +# Begin Source File + +SOURCE=..\make_versioninfo.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/pcbuild.dsw b/PC/VC6/pcbuild.dsw --- a/PC/VC6/pcbuild.dsw +++ b/PC/VC6/pcbuild.dsw @@ -1,320 +1,320 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "_bsddb"=".\_bsddb.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name pythoncore - End Project Dependency -}}} - -############################################################################### - -Project: "_ctypes"=".\_ctypes.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name pythoncore - End Project Dependency -}}} - -############################################################################### - -Project: "_ctypes_test"=".\_ctypes_test.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "_elementtree"=".\_elementtree.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "_msi"=".\_msi.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name pythoncore - End Project Dependency -}}} - -############################################################################### - -Project: "_multiprocessing"=".\_multiprocessing.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name pythoncore - End Project Dependency -}}} - -############################################################################### - -Project: "_socket"=".\_socket.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name pythoncore - End Project Dependency -}}} - -############################################################################### - -Project: "_sqlite3"=".\_sqlite3.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "_ssl"=".\_ssl.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name pythoncore - End Project Dependency - Begin Project Dependency - Project_Dep_Name python - End Project Dependency - Begin Project Dependency - Project_Dep_Name w9xpopen - End Project Dependency -}}} - -############################################################################### - -Project: "_testcapi"=".\_testcapi.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name pythoncore - End Project Dependency -}}} - -############################################################################### - -Project: "_tkinter"=".\_tkinter.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name pythoncore - End Project Dependency -}}} - -############################################################################### - -Project: "bz2"=".\bz2.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "make_versioninfo"=".\make_versioninfo.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "pyexpat"=".\pyexpat.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name pythoncore - End Project Dependency -}}} - -############################################################################### - -Project: "python"=".\python.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name pythoncore - End Project Dependency -}}} - -############################################################################### - -Project: "pythoncore"=".\pythoncore.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name make_versioninfo - End Project Dependency -}}} - -############################################################################### - -Project: "pythonw"=".\pythonw.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name pythoncore - End Project Dependency -}}} - -############################################################################### - -Project: "select"=".\select.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name pythoncore - End Project Dependency -}}} - -############################################################################### - -Project: "unicodedata"=".\unicodedata.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name pythoncore - End Project Dependency -}}} - -############################################################################### - -Project: "w9xpopen"=".\w9xpopen.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "winsound"=".\winsound.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name pythoncore - End Project Dependency -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - +Microsoft Developer Studio Workspace File, Format Version 6.00 +# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + +############################################################################### + +Project: "_bsddb"=".\_bsddb.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name pythoncore + End Project Dependency +}}} + +############################################################################### + +Project: "_ctypes"=".\_ctypes.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name pythoncore + End Project Dependency +}}} + +############################################################################### + +Project: "_ctypes_test"=".\_ctypes_test.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "_elementtree"=".\_elementtree.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "_msi"=".\_msi.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name pythoncore + End Project Dependency +}}} + +############################################################################### + +Project: "_multiprocessing"=".\_multiprocessing.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name pythoncore + End Project Dependency +}}} + +############################################################################### + +Project: "_socket"=".\_socket.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name pythoncore + End Project Dependency +}}} + +############################################################################### + +Project: "_sqlite3"=".\_sqlite3.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "_ssl"=".\_ssl.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name pythoncore + End Project Dependency + Begin Project Dependency + Project_Dep_Name python + End Project Dependency + Begin Project Dependency + Project_Dep_Name w9xpopen + End Project Dependency +}}} + +############################################################################### + +Project: "_testcapi"=".\_testcapi.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name pythoncore + End Project Dependency +}}} + +############################################################################### + +Project: "_tkinter"=".\_tkinter.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name pythoncore + End Project Dependency +}}} + +############################################################################### + +Project: "bz2"=".\bz2.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "make_versioninfo"=".\make_versioninfo.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "pyexpat"=".\pyexpat.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name pythoncore + End Project Dependency +}}} + +############################################################################### + +Project: "python"=".\python.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name pythoncore + End Project Dependency +}}} + +############################################################################### + +Project: "pythoncore"=".\pythoncore.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name make_versioninfo + End Project Dependency +}}} + +############################################################################### + +Project: "pythonw"=".\pythonw.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name pythoncore + End Project Dependency +}}} + +############################################################################### + +Project: "select"=".\select.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name pythoncore + End Project Dependency +}}} + +############################################################################### + +Project: "unicodedata"=".\unicodedata.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name pythoncore + End Project Dependency +}}} + +############################################################################### + +Project: "w9xpopen"=".\w9xpopen.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "winsound"=".\winsound.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name pythoncore + End Project Dependency +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/PC/VC6/pyexpat.dsp b/PC/VC6/pyexpat.dsp --- a/PC/VC6/pyexpat.dsp +++ b/PC/VC6/pyexpat.dsp @@ -1,111 +1,111 @@ -# Microsoft Developer Studio Project File - Name="pyexpat" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=pyexpat - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "pyexpat.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "pyexpat.mak" CFG="pyexpat - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "pyexpat - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "pyexpat - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "pyexpat" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "pyexpat - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\pyexpat" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D BYTEORDER=1234 /D XML_CONTEXT_BYTES=1024 /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D100000" /subsystem:windows /dll /debug /machine:I386 /out:"./pyexpat.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "pyexpat - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\pyexpat" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "HAVE_EXPAT_H" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D BYTEORDER=1234 /D XML_CONTEXT_BYTES=1024 /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D100000" /subsystem:windows /dll /debug /machine:I386 /out:"./pyexpat_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "pyexpat - Win32 Release" -# Name "pyexpat - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\pyexpat.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmlparse.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmlrole.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\expat\xmltok.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="pyexpat" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=pyexpat - Win32 Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "pyexpat.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "pyexpat.mak" CFG="pyexpat - Win32 Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "pyexpat - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "pyexpat - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "pyexpat" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "pyexpat - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\pyexpat" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D BYTEORDER=1234 /D XML_CONTEXT_BYTES=1024 /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D100000" /subsystem:windows /dll /debug /machine:I386 /out:"./pyexpat.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "pyexpat - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\pyexpat" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\Modules\expat" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "HAVE_EXPAT_H" /D "WIN32" /D "_WINDOWS" /D "XML_NS" /D "XML_DTD" /D BYTEORDER=1234 /D XML_CONTEXT_BYTES=1024 /D "XML_STATIC" /D "HAVE_MEMMOVE" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D100000" /subsystem:windows /dll /debug /machine:I386 /out:"./pyexpat_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "pyexpat - Win32 Release" +# Name "pyexpat - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\pyexpat.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmlparse.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmlrole.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\expat\xmltok.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/python.dsp b/PC/VC6/python.dsp --- a/PC/VC6/python.dsp +++ b/PC/VC6/python.dsp @@ -1,100 +1,100 @@ -# Microsoft Developer Studio Project File - Name="python" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=python - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "python.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "python.mak" CFG="python - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "python - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "python - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "python" -# PROP Scc_LocalPath ".." -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "python - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\python" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1d000000" /subsystem:console /debug /machine:I386 -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "python - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\python" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /i "....\\Include" /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1d000000" /stack:0x200000 /subsystem:console /debug /machine:I386 /out:"./python_d.exe" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "python - Win32 Release" -# Name "python - Win32 Debug" -# Begin Source File - -SOURCE=..\pycon.ico -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\python.c -# End Source File -# Begin Source File - -SOURCE=..\python_exe.rc -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="python" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Console Application" 0x0103 + +CFG=python - Win32 Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "python.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "python.mak" CFG="python - Win32 Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "python - Win32 Release" (based on "Win32 (x86) Console Application") +!MESSAGE "python - Win32 Debug" (based on "Win32 (x86) Console Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "python" +# PROP Scc_LocalPath ".." +CPP=cl.exe +RSC=rc.exe + +!IF "$(CFG)" == "python - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\python" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1d000000" /subsystem:console /debug /machine:I386 +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "python - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\python" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /c +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /i "....\\Include" /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# ADD LINK32 odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x1d000000" /stack:0x200000 /subsystem:console /debug /machine:I386 /out:"./python_d.exe" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "python - Win32 Release" +# Name "python - Win32 Debug" +# Begin Source File + +SOURCE=..\pycon.ico +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\python.c +# End Source File +# Begin Source File + +SOURCE=..\python_exe.rc +# End Source File +# End Target +# End Project diff --git a/PC/VC6/pythoncore.dsp b/PC/VC6/pythoncore.dsp --- a/PC/VC6/pythoncore.dsp +++ b/PC/VC6/pythoncore.dsp @@ -1,797 +1,797 @@ -# Microsoft Developer Studio Project File - Name="pythoncore" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=pythoncore - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "pythoncore.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "pythoncore.mak" CFG="pythoncore - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "pythoncore - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "pythoncore - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "pythoncore" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "pythoncore - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\pythoncore" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\modules\zlib" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "USE_DL_EXPORT" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL" -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL" -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /i "..\..\Include" /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python27.dll" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "pythoncore - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\pythoncore" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\modules\zlib" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "USE_DL_EXPORT" /D "WIN32" /D "_WINDOWS" /YX /FD /Zm200 /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL" -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL" -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /i "..\..\Include" /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python27_d.dll" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "pythoncore - Win32 Release" -# Name "pythoncore - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\_bisectmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_cn.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_hk.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_iso2022.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_jp.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_kr.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\_codecs_tw.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_codecsmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_collectionsmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_csv.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_functoolsmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_heapqmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_hotshot.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\_iomodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_json.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_localemodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_lsprof.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_math.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_randommodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_sre.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_struct.c -# End Source File -# Begin Source File - -SOURCE=..\..\PC\_subprocess.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\_warnings.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_weakref.c -# End Source File -# Begin Source File - -SOURCE=..\_winreg.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\abstract.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\acceler.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\adler32.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\arraymodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\asdl.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\ast.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\audioop.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\binascii.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\bitset.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\bltinmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\boolobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\bufferedio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\bufferobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\bytearrayobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\bytesio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\bytes_methods.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\capsule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\cellobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\ceval.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\classobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cmathmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\cobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\codecs.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\codeobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\compile.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\complexobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\compress.c -# End Source File -# Begin Source File - -SOURCE=..\config.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cPickle.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\crc32.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cStringIO.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\datetimemodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\deflate.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\descrobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\dictobject.c -# End Source File -# Begin Source File - -SOURCE=..\dl_nt.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\dtoa.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\dynload_win.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\enumobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\errnomodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\errors.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\exceptions.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\fileio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\fileobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\firstsets.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\floatobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\formatter_string.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\formatter_unicode.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\frameobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\frozen.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\funcobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\future.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\future_builtins.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\gcmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\genobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getargs.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\getbuildinfo.c -# ADD CPP /D BUILD=46 -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getcompiler.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getcopyright.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getopt.c -# End Source File -# Begin Source File - -SOURCE=..\getpathp.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getplatform.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\getversion.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\graminit.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\grammar.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\grammar1.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\gzio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\iobase.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\imageop.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\import.c -# End Source File -# Begin Source File - -SOURCE=..\import_nt.c -# ADD CPP /I "..\..\Python" -# End Source File -# Begin Source File - -SOURCE=..\..\Python\importdl.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\infback.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\inffast.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\inflate.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\inftrees.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\intobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\iterobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\itertoolsmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\listnode.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\listobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\longobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\main.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\marshal.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\mathmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\md5.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\md5module.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\memoryobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\metagrammar.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\methodobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\mmapmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\modsupport.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\moduleobject.c -# End Source File -# Begin Source File - -SOURCE=..\msvcrtmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\cjkcodecs\multibytecodec.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\myreadline.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\mysnprintf.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\mystrtoul.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\node.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\object.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\obmalloc.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\operator.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\parser.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\parsermodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\parsetok.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\peephole.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\posixmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pyarena.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pyctype.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pyfpe.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pymath.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pystate.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pystrcmp.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pystrtod.c -# End Source File -# Begin Source File - -SOURCE="..\..\Python\Python-ast.c" -# End Source File -# Begin Source File - -SOURCE=..\python_nt.rc -# End Source File -# Begin Source File - -SOURCE=..\..\Python\pythonrun.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\rangeobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\rotatingtree.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\setobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\sha256module.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\sha512module.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\shamodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\signalmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\sliceobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\stringio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\stringobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\stropmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\structmember.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\structseq.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\symtable.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\symtablemodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\sysmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\_io\textio.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\thread.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\threadmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\timemodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Parser\tokenizer.c -# End Source File -# Begin Source File - -SOURCE=..\..\Python\traceback.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\trees.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\tupleobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\typeobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\uncompr.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\unicodectype.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\unicodeobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Objects\weakrefobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\xxsubtype.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zipimport.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlibmodule.c -# End Source File -# Begin Source File - -SOURCE=..\..\Modules\zlib\zutil.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="pythoncore" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=pythoncore - Win32 Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "pythoncore.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "pythoncore.mak" CFG="pythoncore - Win32 Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "pythoncore - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "pythoncore - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "pythoncore" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "pythoncore - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\pythoncore" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /I "..\..\modules\zlib" /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "USE_DL_EXPORT" /YX /FD /Zm200 /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL" +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL" +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /i "..\..\Include" /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python27.dll" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "pythoncore - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\pythoncore" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /I "..\..\modules\zlib" /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "USE_DL_EXPORT" /D "WIN32" /D "_WINDOWS" /YX /FD /Zm200 /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL" +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL" +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /i "..\..\Include" /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 largeint.lib kernel32.lib user32.lib advapi32.lib shell32.lib /nologo /base:"0x1e000000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./python27_d.dll" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "pythoncore - Win32 Release" +# Name "pythoncore - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\_bisectmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_cn.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_hk.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_iso2022.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_jp.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_kr.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\_codecs_tw.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_codecsmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_collectionsmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_csv.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_functoolsmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_heapqmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_hotshot.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\_iomodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_json.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_localemodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_lsprof.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_math.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_randommodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_sre.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_struct.c +# End Source File +# Begin Source File + +SOURCE=..\..\PC\_subprocess.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\_warnings.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_weakref.c +# End Source File +# Begin Source File + +SOURCE=..\_winreg.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\abstract.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\acceler.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\adler32.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\arraymodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\asdl.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\ast.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\audioop.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\binascii.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\bitset.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\bltinmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\boolobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\bufferedio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\bufferobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\bytearrayobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\bytesio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\bytes_methods.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\capsule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\cellobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\ceval.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\classobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cmathmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\cobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\codecs.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\codeobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\compile.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\complexobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\compress.c +# End Source File +# Begin Source File + +SOURCE=..\config.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cPickle.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\crc32.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cStringIO.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\datetimemodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\deflate.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\descrobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\dictobject.c +# End Source File +# Begin Source File + +SOURCE=..\dl_nt.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\dtoa.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\dynload_win.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\enumobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\errnomodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\errors.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\exceptions.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\fileio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\fileobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\firstsets.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\floatobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\formatter_string.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\formatter_unicode.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\frameobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\frozen.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\funcobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\future.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\future_builtins.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\gcmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\genobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getargs.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\getbuildinfo.c +# ADD CPP /D BUILD=46 +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getcompiler.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getcopyright.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getopt.c +# End Source File +# Begin Source File + +SOURCE=..\getpathp.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getplatform.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\getversion.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\graminit.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\grammar.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\grammar1.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\gzio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\iobase.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\imageop.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\import.c +# End Source File +# Begin Source File + +SOURCE=..\import_nt.c +# ADD CPP /I "..\..\Python" +# End Source File +# Begin Source File + +SOURCE=..\..\Python\importdl.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\infback.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\inffast.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\inflate.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\inftrees.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\intobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\iterobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\itertoolsmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\listnode.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\listobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\longobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\main.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\marshal.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\mathmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\md5.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\md5module.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\memoryobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\metagrammar.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\methodobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\mmapmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\modsupport.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\moduleobject.c +# End Source File +# Begin Source File + +SOURCE=..\msvcrtmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\cjkcodecs\multibytecodec.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\myreadline.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\mysnprintf.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\mystrtoul.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\node.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\object.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\obmalloc.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\operator.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\parser.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\parsermodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\parsetok.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\peephole.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\posixmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pyarena.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pyctype.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pyfpe.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pymath.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pystate.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pystrcmp.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pystrtod.c +# End Source File +# Begin Source File + +SOURCE="..\..\Python\Python-ast.c" +# End Source File +# Begin Source File + +SOURCE=..\python_nt.rc +# End Source File +# Begin Source File + +SOURCE=..\..\Python\pythonrun.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\rangeobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\rotatingtree.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\setobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\sha256module.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\sha512module.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\shamodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\signalmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\sliceobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\stringio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\stringobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\stropmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\structmember.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\structseq.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\symtable.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\symtablemodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\sysmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\_io\textio.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\thread.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\threadmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\timemodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Parser\tokenizer.c +# End Source File +# Begin Source File + +SOURCE=..\..\Python\traceback.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\trees.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\tupleobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\typeobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\uncompr.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\unicodectype.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\unicodeobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Objects\weakrefobject.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\xxsubtype.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zipimport.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlibmodule.c +# End Source File +# Begin Source File + +SOURCE=..\..\Modules\zlib\zutil.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/pythonw.dsp b/PC/VC6/pythonw.dsp --- a/PC/VC6/pythonw.dsp +++ b/PC/VC6/pythonw.dsp @@ -1,101 +1,101 @@ -# Microsoft Developer Studio Project File - Name="pythonw" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Application" 0x0101 - -CFG=pythonw - Win32 Alpha Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "pythonw.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "pythonw.mak" CFG="pythonw - Win32 Alpha Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "pythonw - Win32 Release" (based on "Win32 (x86) Application") -!MESSAGE "pythonw - Win32 Debug" (based on "Win32 (x86) Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "pythonw" -# PROP Scc_LocalPath "..\pc" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "pythonw - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\pythonw" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d000000" /subsystem:windows /debug /machine:I386 -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "pythonw - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\pythonw" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d000000" /subsystem:windows /debug /machine:I386 /out:"./pythonw_d.exe" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "pythonw - Win32 Release" -# Name "pythonw - Win32 Debug" -# Begin Source File - -SOURCE=..\python_exe.rc -# End Source File -# Begin Source File - -SOURCE=..\WinMain.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="pythonw" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=pythonw - Win32 Alpha Release +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "pythonw.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "pythonw.mak" CFG="pythonw - Win32 Alpha Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "pythonw - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "pythonw - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "pythonw" +# PROP Scc_LocalPath "..\pc" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "pythonw - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\pythonw" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d000000" /subsystem:windows /debug /machine:I386 +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "pythonw - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\pythonw" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1d000000" /subsystem:windows /debug /machine:I386 /out:"./pythonw_d.exe" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "pythonw - Win32 Release" +# Name "pythonw - Win32 Debug" +# Begin Source File + +SOURCE=..\python_exe.rc +# End Source File +# Begin Source File + +SOURCE=..\WinMain.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/select.dsp b/PC/VC6/select.dsp --- a/PC/VC6/select.dsp +++ b/PC/VC6/select.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="select" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=select - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "select.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "select.mak" CFG="select - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "select - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "select - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "select" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "select - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\select" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1D110000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./select.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "select - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\select" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1D110000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /nodefaultlib:"msvcrt" /out:"./select_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "select - Win32 Release" -# Name "select - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\selectmodule.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="select" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=select - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "select.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "select.mak" CFG="select - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "select - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "select - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "select" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "select - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\select" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1D110000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./select.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "select - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\select" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib /nologo /base:"0x1D110000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /nodefaultlib:"msvcrt" /out:"./select_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "select - Win32 Release" +# Name "select - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\selectmodule.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/unicodedata.dsp b/PC/VC6/unicodedata.dsp --- a/PC/VC6/unicodedata.dsp +++ b/PC/VC6/unicodedata.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="unicodedata" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=unicodedata - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "unicodedata.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "unicodedata.mak" CFG="unicodedata - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "unicodedata - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "unicodedata - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "unicodedata" -# PROP Scc_LocalPath ".." -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "unicodedata - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\unicodedata" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "NDEBUG" -# ADD RSC /l 0xc09 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /machine:I386 /out:"./unicodedata.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "unicodedata - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\unicodedata" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "_DEBUG" -# ADD RSC /l 0xc09 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /debug /machine:I386 /out:"./unicodedata_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "unicodedata - Win32 Release" -# Name "unicodedata - Win32 Debug" -# Begin Source File - -SOURCE=..\..\Modules\unicodedata.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="unicodedata" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=unicodedata - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "unicodedata.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "unicodedata.mak" CFG="unicodedata - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "unicodedata - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "unicodedata - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "unicodedata" +# PROP Scc_LocalPath ".." +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "unicodedata - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\unicodedata" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "NDEBUG" +# ADD RSC /l 0xc09 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /machine:I386 /out:"./unicodedata.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "unicodedata - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\unicodedata" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "_DEBUG" +# ADD RSC /l 0xc09 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /debug /machine:I386 /out:"./unicodedata_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "unicodedata - Win32 Release" +# Name "unicodedata - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Modules\unicodedata.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/w9xpopen.dsp b/PC/VC6/w9xpopen.dsp --- a/PC/VC6/w9xpopen.dsp +++ b/PC/VC6/w9xpopen.dsp @@ -1,97 +1,97 @@ -# Microsoft Developer Studio Project File - Name="w9xpopen" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Application" 0x0101 - -CFG=w9xpopen - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "w9xpopen.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "w9xpopen.mak" CFG="w9xpopen - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "w9xpopen - Win32 Release" (based on "Win32 (x86) Application") -!MESSAGE "w9xpopen - Win32 Debug" (based on "Win32 (x86) Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "w9xpopen - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\w9xpopen" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "NDEBUG" -# ADD RSC /l 0xc09 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 -# ADD LINK32 user32.lib /nologo /machine:I386 -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "w9xpopen - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\w9xpopen" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "_DEBUG" -# ADD RSC /l 0xc09 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib /nologo /debug /machine:I386 /out:"./w9xpopen_d.exe" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "w9xpopen - Win32 Release" -# Name "w9xpopen - Win32 Debug" -# Begin Source File - -SOURCE=..\w9xpopen.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="w9xpopen" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=w9xpopen - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "w9xpopen.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "w9xpopen.mak" CFG="w9xpopen - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "w9xpopen - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "w9xpopen - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "w9xpopen - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\w9xpopen" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "NDEBUG" +# ADD RSC /l 0xc09 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 user32.lib /nologo /machine:I386 +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "w9xpopen - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\w9xpopen" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "_DEBUG" +# ADD RSC /l 0xc09 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib /nologo /debug /machine:I386 /out:"./w9xpopen_d.exe" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "w9xpopen - Win32 Release" +# Name "w9xpopen - Win32 Debug" +# Begin Source File + +SOURCE=..\w9xpopen.c +# End Source File +# End Target +# End Project diff --git a/PC/VC6/winsound.dsp b/PC/VC6/winsound.dsp --- a/PC/VC6/winsound.dsp +++ b/PC/VC6/winsound.dsp @@ -1,99 +1,99 @@ -# Microsoft Developer Studio Project File - Name="winsound" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=winsound - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "winsound.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "winsound.mak" CFG="winsound - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "winsound - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "winsound - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "winsound" -# PROP Scc_LocalPath "..\pc" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "winsound - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-release\winsound" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "NDEBUG" -# ADD RSC /l 0xc09 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib winmm.lib user32.lib /nologo /base:"0x1D160000" /dll /machine:I386 /out:"./winsound.pyd" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "winsound - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "x86-temp-debug\winsound" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc09 /d "_DEBUG" -# ADD RSC /l 0xc09 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib kernel32.lib winmm.lib /nologo /base:"0x1D160000" /dll /debug /machine:I386 /out:"./winsound_d.pyd" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "winsound - Win32 Release" -# Name "winsound - Win32 Debug" -# Begin Source File - -SOURCE=..\winsound.c -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="winsound" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=winsound - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "winsound.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "winsound.mak" CFG="winsound - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "winsound - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "winsound - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "winsound" +# PROP Scc_LocalPath "..\pc" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "winsound - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-release\winsound" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "NDEBUG" +# ADD RSC /l 0xc09 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 +# ADD LINK32 kernel32.lib winmm.lib user32.lib /nologo /base:"0x1D160000" /dll /machine:I386 /out:"./winsound.pyd" +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "winsound - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "x86-temp-debug\winsound" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +F90=df.exe +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\Include" /I ".." /D "Py_BUILD_CORE_MODULE" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0xc09 /d "_DEBUG" +# ADD RSC /l 0xc09 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib kernel32.lib winmm.lib /nologo /base:"0x1D160000" /dll /debug /machine:I386 /out:"./winsound_d.pyd" /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "winsound - Win32 Release" +# Name "winsound - Win32 Debug" +# Begin Source File + +SOURCE=..\winsound.c +# End Source File +# End Target +# End Project diff --git a/PC/VS7.1/_bsddb.vcproj b/PC/VS7.1/_bsddb.vcproj --- a/PC/VS7.1/_bsddb.vcproj +++ b/PC/VS7.1/_bsddb.vcproj @@ -1,258 +1,258 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_ctypes.vcproj b/PC/VS7.1/_ctypes.vcproj --- a/PC/VS7.1/_ctypes.vcproj +++ b/PC/VS7.1/_ctypes.vcproj @@ -1,311 +1,311 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_ctypes_test.vcproj b/PC/VS7.1/_ctypes_test.vcproj --- a/PC/VS7.1/_ctypes_test.vcproj +++ b/PC/VS7.1/_ctypes_test.vcproj @@ -1,242 +1,242 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_elementtree.vcproj b/PC/VS7.1/_elementtree.vcproj --- a/PC/VS7.1/_elementtree.vcproj +++ b/PC/VS7.1/_elementtree.vcproj @@ -1,260 +1,260 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_msi.vcproj b/PC/VS7.1/_msi.vcproj --- a/PC/VS7.1/_msi.vcproj +++ b/PC/VS7.1/_msi.vcproj @@ -1,252 +1,252 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_socket.vcproj b/PC/VS7.1/_socket.vcproj --- a/PC/VS7.1/_socket.vcproj +++ b/PC/VS7.1/_socket.vcproj @@ -1,254 +1,254 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_sqlite3.vcproj b/PC/VS7.1/_sqlite3.vcproj --- a/PC/VS7.1/_sqlite3.vcproj +++ b/PC/VS7.1/_sqlite3.vcproj @@ -1,283 +1,283 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_ssl.vcproj b/PC/VS7.1/_ssl.vcproj --- a/PC/VS7.1/_ssl.vcproj +++ b/PC/VS7.1/_ssl.vcproj @@ -1,84 +1,84 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_testcapi.vcproj b/PC/VS7.1/_testcapi.vcproj --- a/PC/VS7.1/_testcapi.vcproj +++ b/PC/VS7.1/_testcapi.vcproj @@ -1,247 +1,247 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/_tkinter.vcproj b/PC/VS7.1/_tkinter.vcproj --- a/PC/VS7.1/_tkinter.vcproj +++ b/PC/VS7.1/_tkinter.vcproj @@ -1,261 +1,261 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/bz2.vcproj b/PC/VS7.1/bz2.vcproj --- a/PC/VS7.1/bz2.vcproj +++ b/PC/VS7.1/bz2.vcproj @@ -1,271 +1,271 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/make_buildinfo.vcproj b/PC/VS7.1/make_buildinfo.vcproj --- a/PC/VS7.1/make_buildinfo.vcproj +++ b/PC/VS7.1/make_buildinfo.vcproj @@ -1,122 +1,122 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/make_versioninfo.vcproj b/PC/VS7.1/make_versioninfo.vcproj --- a/PC/VS7.1/make_versioninfo.vcproj +++ b/PC/VS7.1/make_versioninfo.vcproj @@ -1,140 +1,140 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/pcbuild.sln b/PC/VS7.1/pcbuild.sln --- a/PC/VS7.1/pcbuild.sln +++ b/PC/VS7.1/pcbuild.sln @@ -1,288 +1,288 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_bsddb", "_bsddb.vcproj", "{E1DBB220-D64B-423D-A545-539A55AA7FE2}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{324F66C2-44D0-4D50-B979-F9DAE7FD36DB}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{59CBF474-9E06-4C50-9142-C44A118BB447}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{5B51DFF7-5DC0-41F8-8791-A4AB7114A151}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{AC557788-6354-43F7-BE05-C9C8C59A344A}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{7E551393-3C43-47F8-9F3F-5BC368A6C487}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" - ProjectSection(ProjectDependencies) = postProject - {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} - {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{97239A56-DBC0-41D2-BC14-C87D9B97D63B}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{51F35FAE-FB92-4B2C-9187-1542C065AD77}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{F22F40F4-D318-40DC-96B3-88DC81CE0894}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{8CF334D9-4F82-42EB-97AF-83592C5AFD2F}" - ProjectSection(ProjectDependencies) = postProject - {F22F40F4-D318-40DC-96B3-88DC81CE0894} = {F22F40F4-D318-40DC-96B3-88DC81CE0894} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{2FF0A312-22F9-4C34-B070-842916DE27A9}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - ReleaseAMD64 = ReleaseAMD64 - ReleaseItanium = ReleaseItanium - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {E1DBB220-D64B-423D-A545-539A55AA7FE2}.Debug.ActiveCfg = Debug|Win32 - {E1DBB220-D64B-423D-A545-539A55AA7FE2}.Debug.Build.0 = Debug|Win32 - {E1DBB220-D64B-423D-A545-539A55AA7FE2}.Release.ActiveCfg = Release|Win32 - {E1DBB220-D64B-423D-A545-539A55AA7FE2}.Release.Build.0 = Release|Win32 - {E1DBB220-D64B-423D-A545-539A55AA7FE2}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {E1DBB220-D64B-423D-A545-539A55AA7FE2}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {E1DBB220-D64B-423D-A545-539A55AA7FE2}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {E1DBB220-D64B-423D-A545-539A55AA7FE2}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Debug.ActiveCfg = Debug|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Debug.Build.0 = Debug|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Release.ActiveCfg = Release|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Release.Build.0 = Release|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Debug.ActiveCfg = Debug|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Debug.Build.0 = Debug|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Release.ActiveCfg = Release|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Release.Build.0 = Release|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.Debug.ActiveCfg = Debug|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.Debug.Build.0 = Debug|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.Release.ActiveCfg = Release|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.Release.Build.0 = Release|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Debug.ActiveCfg = Debug|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Debug.Build.0 = Debug|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Release.ActiveCfg = Release|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Release.Build.0 = Release|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.Debug.ActiveCfg = Debug|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.Debug.Build.0 = Debug|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.Release.ActiveCfg = Release|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.Release.Build.0 = Release|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug.ActiveCfg = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug.Build.0 = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseAMD64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseAMD64.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseItanium.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseItanium.Build.0 = Release|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Debug.ActiveCfg = Debug|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Debug.Build.0 = Debug|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Release.ActiveCfg = Release|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Release.Build.0 = Release|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug.ActiveCfg = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug.Build.0 = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release.ActiveCfg = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release.Build.0 = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug.ActiveCfg = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug.Build.0 = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release.ActiveCfg = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release.Build.0 = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug.ActiveCfg = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug.Build.0 = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release.ActiveCfg = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release.Build.0 = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Debug.ActiveCfg = Debug|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Debug.Build.0 = Debug|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Release.ActiveCfg = Release|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Release.Build.0 = Release|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Debug.ActiveCfg = Debug|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Debug.Build.0 = Debug|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Release.ActiveCfg = Release|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Release.Build.0 = Release|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug.ActiveCfg = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug.Build.0 = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release.ActiveCfg = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release.Build.0 = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.ReleaseAMD64.ActiveCfg = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.ReleaseItanium.ActiveCfg = Release|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Debug.ActiveCfg = Debug|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Debug.Build.0 = Debug|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Release.ActiveCfg = Release|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Release.Build.0 = Release|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Debug.ActiveCfg = Debug|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Debug.Build.0 = Debug|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Release.ActiveCfg = Release|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Release.Build.0 = Release|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug.ActiveCfg = Debug|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug.Build.0 = Debug|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseAMD64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseAMD64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseItanium.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseItanium.Build.0 = Release|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Debug.ActiveCfg = Debug|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Debug.Build.0 = Debug|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Release.ActiveCfg = Release|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Release.Build.0 = Release|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Debug.ActiveCfg = Debug|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Debug.Build.0 = Debug|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Release.ActiveCfg = Release|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Release.Build.0 = Release|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Debug.ActiveCfg = Debug|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Debug.Build.0 = Debug|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Release.ActiveCfg = Release|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Release.Build.0 = Release|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.Debug.ActiveCfg = Debug|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.Debug.Build.0 = Debug|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.Release.ActiveCfg = Release|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.Release.Build.0 = Release|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 - {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 - EndGlobalSection - GlobalSection(SolutionItems) = postSolution - ..\Modules\getbuildinfo.c = ..\Modules\getbuildinfo.c - readme.txt = readme.txt - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_bsddb", "_bsddb.vcproj", "{E1DBB220-D64B-423D-A545-539A55AA7FE2}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{324F66C2-44D0-4D50-B979-F9DAE7FD36DB}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{59CBF474-9E06-4C50-9142-C44A118BB447}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{5B51DFF7-5DC0-41F8-8791-A4AB7114A151}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{AC557788-6354-43F7-BE05-C9C8C59A344A}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{7E551393-3C43-47F8-9F3F-5BC368A6C487}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" + ProjectSection(ProjectDependencies) = postProject + {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} + {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{97239A56-DBC0-41D2-BC14-C87D9B97D63B}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{51F35FAE-FB92-4B2C-9187-1542C065AD77}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{F22F40F4-D318-40DC-96B3-88DC81CE0894}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{8CF334D9-4F82-42EB-97AF-83592C5AFD2F}" + ProjectSection(ProjectDependencies) = postProject + {F22F40F4-D318-40DC-96B3-88DC81CE0894} = {F22F40F4-D318-40DC-96B3-88DC81CE0894} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{2FF0A312-22F9-4C34-B070-842916DE27A9}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + Debug = Debug + Release = Release + ReleaseAMD64 = ReleaseAMD64 + ReleaseItanium = ReleaseItanium + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {E1DBB220-D64B-423D-A545-539A55AA7FE2}.Debug.ActiveCfg = Debug|Win32 + {E1DBB220-D64B-423D-A545-539A55AA7FE2}.Debug.Build.0 = Debug|Win32 + {E1DBB220-D64B-423D-A545-539A55AA7FE2}.Release.ActiveCfg = Release|Win32 + {E1DBB220-D64B-423D-A545-539A55AA7FE2}.Release.Build.0 = Release|Win32 + {E1DBB220-D64B-423D-A545-539A55AA7FE2}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {E1DBB220-D64B-423D-A545-539A55AA7FE2}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {E1DBB220-D64B-423D-A545-539A55AA7FE2}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {E1DBB220-D64B-423D-A545-539A55AA7FE2}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Debug.ActiveCfg = Debug|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Debug.Build.0 = Debug|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Release.ActiveCfg = Release|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.Release.Build.0 = Release|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {324F66C2-44D0-4D50-B979-F9DAE7FD36DB}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Debug.ActiveCfg = Debug|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Debug.Build.0 = Debug|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Release.ActiveCfg = Release|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.Release.Build.0 = Release|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {8E85BA54-8A47-4C8B-B72E-8E17579CC6D7}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.Debug.ActiveCfg = Debug|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.Debug.Build.0 = Debug|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.Release.ActiveCfg = Release|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.Release.Build.0 = Release|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {59CBF474-9E06-4C50-9142-C44A118BB447}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Debug.ActiveCfg = Debug|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Debug.Build.0 = Debug|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Release.ActiveCfg = Release|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.Release.Build.0 = Release|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {5B51DFF7-5DC0-41F8-8791-A4AB7114A151}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.Debug.ActiveCfg = Debug|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.Debug.Build.0 = Debug|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.Release.ActiveCfg = Release|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.Release.Build.0 = Release|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {AC557788-6354-43F7-BE05-C9C8C59A344A}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug.ActiveCfg = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug.Build.0 = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseAMD64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseAMD64.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseItanium.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.ReleaseItanium.Build.0 = Release|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Debug.ActiveCfg = Debug|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Debug.Build.0 = Debug|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Release.ActiveCfg = Release|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.Release.Build.0 = Release|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {7E551393-3C43-47F8-9F3F-5BC368A6C487}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug.ActiveCfg = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug.Build.0 = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release.ActiveCfg = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release.Build.0 = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug.ActiveCfg = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug.Build.0 = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release.ActiveCfg = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release.Build.0 = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug.ActiveCfg = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug.Build.0 = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release.ActiveCfg = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release.Build.0 = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Debug.ActiveCfg = Debug|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Debug.Build.0 = Debug|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Release.ActiveCfg = Release|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.Release.Build.0 = Release|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {97239A56-DBC0-41D2-BC14-C87D9B97D63B}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Debug.ActiveCfg = Debug|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Debug.Build.0 = Debug|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Release.ActiveCfg = Release|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.Release.Build.0 = Release|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {FA5FC7EB-C72F-415F-AE42-91DD605ABDDA}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug.ActiveCfg = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug.Build.0 = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release.ActiveCfg = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release.Build.0 = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.ReleaseAMD64.ActiveCfg = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.ReleaseItanium.ActiveCfg = Release|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Debug.ActiveCfg = Debug|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Debug.Build.0 = Debug|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Release.ActiveCfg = Release|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.Release.Build.0 = Release|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {51F35FAE-FB92-4B2C-9187-1542C065AD77}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Debug.ActiveCfg = Debug|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Debug.Build.0 = Debug|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Release.ActiveCfg = Release|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.Release.Build.0 = Release|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {1966DDE2-4AB7-4E4E-ACC9-C121E4D37F8E}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug.ActiveCfg = Debug|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug.Build.0 = Debug|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseAMD64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseAMD64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseItanium.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.ReleaseItanium.Build.0 = Release|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Debug.ActiveCfg = Debug|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Debug.Build.0 = Debug|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Release.ActiveCfg = Release|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.Release.Build.0 = Release|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {2C0BEFB9-70E2-4F80-AC5B-4AB8EE023574}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Debug.ActiveCfg = Debug|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Debug.Build.0 = Debug|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Release.ActiveCfg = Release|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.Release.Build.0 = Release|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {F22F40F4-D318-40DC-96B3-88DC81CE0894}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Debug.ActiveCfg = Debug|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Debug.Build.0 = Debug|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Release.ActiveCfg = Release|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.Release.Build.0 = Release|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {8CF334D9-4F82-42EB-97AF-83592C5AFD2F}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.Debug.ActiveCfg = Debug|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.Debug.Build.0 = Debug|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.Release.ActiveCfg = Release|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.Release.Build.0 = Release|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseAMD64.ActiveCfg = ReleaseAMD64|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseAMD64.Build.0 = ReleaseAMD64|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseItanium.ActiveCfg = ReleaseItanium|Win32 + {2FF0A312-22F9-4C34-B070-842916DE27A9}.ReleaseItanium.Build.0 = ReleaseItanium|Win32 + EndGlobalSection + GlobalSection(SolutionItems) = postSolution + ..\Modules\getbuildinfo.c = ..\Modules\getbuildinfo.c + readme.txt = readme.txt + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/PC/VS7.1/pyexpat.vcproj b/PC/VS7.1/pyexpat.vcproj --- a/PC/VS7.1/pyexpat.vcproj +++ b/PC/VS7.1/pyexpat.vcproj @@ -1,259 +1,259 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/python.vcproj b/PC/VS7.1/python.vcproj --- a/PC/VS7.1/python.vcproj +++ b/PC/VS7.1/python.vcproj @@ -1,270 +1,270 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/pythoncore.vcproj b/PC/VS7.1/pythoncore.vcproj --- a/PC/VS7.1/pythoncore.vcproj +++ b/PC/VS7.1/pythoncore.vcproj @@ -1,856 +1,856 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/pythonw.vcproj b/PC/VS7.1/pythonw.vcproj --- a/PC/VS7.1/pythonw.vcproj +++ b/PC/VS7.1/pythonw.vcproj @@ -1,261 +1,261 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/select.vcproj b/PC/VS7.1/select.vcproj --- a/PC/VS7.1/select.vcproj +++ b/PC/VS7.1/select.vcproj @@ -1,258 +1,258 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/unicodedata.vcproj b/PC/VS7.1/unicodedata.vcproj --- a/PC/VS7.1/unicodedata.vcproj +++ b/PC/VS7.1/unicodedata.vcproj @@ -1,247 +1,247 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/w9xpopen.vcproj b/PC/VS7.1/w9xpopen.vcproj --- a/PC/VS7.1/w9xpopen.vcproj +++ b/PC/VS7.1/w9xpopen.vcproj @@ -1,121 +1,121 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS7.1/winsound.vcproj b/PC/VS7.1/winsound.vcproj --- a/PC/VS7.1/winsound.vcproj +++ b/PC/VS7.1/winsound.vcproj @@ -1,251 +1,251 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_bsddb.vcproj b/PC/VS8.0/_bsddb.vcproj --- a/PC/VS8.0/_bsddb.vcproj +++ b/PC/VS8.0/_bsddb.vcproj @@ -1,1463 +1,1463 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_bsddb44.vcproj b/PC/VS8.0/_bsddb44.vcproj --- a/PC/VS8.0/_bsddb44.vcproj +++ b/PC/VS8.0/_bsddb44.vcproj @@ -1,1252 +1,1252 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_ctypes.vcproj b/PC/VS8.0/_ctypes.vcproj --- a/PC/VS8.0/_ctypes.vcproj +++ b/PC/VS8.0/_ctypes.vcproj @@ -1,705 +1,705 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_ctypes_test.vcproj b/PC/VS8.0/_ctypes_test.vcproj --- a/PC/VS8.0/_ctypes_test.vcproj +++ b/PC/VS8.0/_ctypes_test.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_elementtree.vcproj b/PC/VS8.0/_elementtree.vcproj --- a/PC/VS8.0/_elementtree.vcproj +++ b/PC/VS8.0/_elementtree.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_hashlib.vcproj b/PC/VS8.0/_hashlib.vcproj --- a/PC/VS8.0/_hashlib.vcproj +++ b/PC/VS8.0/_hashlib.vcproj @@ -1,545 +1,545 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_msi.vcproj b/PC/VS8.0/_msi.vcproj --- a/PC/VS8.0/_msi.vcproj +++ b/PC/VS8.0/_msi.vcproj @@ -1,529 +1,529 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_multiprocessing.vcproj b/PC/VS8.0/_multiprocessing.vcproj --- a/PC/VS8.0/_multiprocessing.vcproj +++ b/PC/VS8.0/_multiprocessing.vcproj @@ -1,557 +1,557 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_socket.vcproj b/PC/VS8.0/_socket.vcproj --- a/PC/VS8.0/_socket.vcproj +++ b/PC/VS8.0/_socket.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_sqlite3.vcproj b/PC/VS8.0/_sqlite3.vcproj --- a/PC/VS8.0/_sqlite3.vcproj +++ b/PC/VS8.0/_sqlite3.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_ssl.vcproj b/PC/VS8.0/_ssl.vcproj --- a/PC/VS8.0/_ssl.vcproj +++ b/PC/VS8.0/_ssl.vcproj @@ -1,545 +1,545 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_testcapi.vcproj b/PC/VS8.0/_testcapi.vcproj --- a/PC/VS8.0/_testcapi.vcproj +++ b/PC/VS8.0/_testcapi.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/_tkinter.vcproj b/PC/VS8.0/_tkinter.vcproj --- a/PC/VS8.0/_tkinter.vcproj +++ b/PC/VS8.0/_tkinter.vcproj @@ -1,541 +1,541 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/bdist_wininst.vcproj b/PC/VS8.0/bdist_wininst.vcproj --- a/PC/VS8.0/bdist_wininst.vcproj +++ b/PC/VS8.0/bdist_wininst.vcproj @@ -1,270 +1,270 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/bz2.vcproj b/PC/VS8.0/bz2.vcproj --- a/PC/VS8.0/bz2.vcproj +++ b/PC/VS8.0/bz2.vcproj @@ -1,581 +1,581 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/debug.vsprops b/PC/VS8.0/debug.vsprops --- a/PC/VS8.0/debug.vsprops +++ b/PC/VS8.0/debug.vsprops @@ -1,15 +1,15 @@ - - - - - + + + + + diff --git a/PC/VS8.0/kill_python.vcproj b/PC/VS8.0/kill_python.vcproj --- a/PC/VS8.0/kill_python.vcproj +++ b/PC/VS8.0/kill_python.vcproj @@ -1,279 +1,279 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/make_buildinfo.vcproj b/PC/VS8.0/make_buildinfo.vcproj --- a/PC/VS8.0/make_buildinfo.vcproj +++ b/PC/VS8.0/make_buildinfo.vcproj @@ -1,162 +1,162 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/make_versioninfo.vcproj b/PC/VS8.0/make_versioninfo.vcproj --- a/PC/VS8.0/make_versioninfo.vcproj +++ b/PC/VS8.0/make_versioninfo.vcproj @@ -1,324 +1,324 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/pcbuild.sln b/PC/VS8.0/pcbuild.sln --- a/PC/VS8.0/pcbuild.sln +++ b/PC/VS8.0/pcbuild.sln @@ -1,559 +1,559 @@ -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" - ProjectSection(ProjectDependencies) = postProject - {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" - ProjectSection(ProjectDependencies) = postProject - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{553EC33E-9816-4996-A660-5D6186A0B0B3}" - ProjectSection(SolutionItems) = preProject - ..\..\Modules\getbuildinfo.c = ..\..\Modules\getbuildinfo.c - readme.txt = readme.txt - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{28B5D777-DDF2-4B6B-B34F-31D938813856}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_bsddb", "_bsddb.vcproj", "{B4D38F3F-68FB-42EC-A45D-E00657BB3627}" - ProjectSection(ProjectDependencies) = postProject - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{0E9791DB-593A-465F-98BC-681011311618}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{9EC7190A-249F-4180-A900-548FDCF3055F}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{17E1E049-C309-4D79-843F-AE483C264AEA}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{31FFC478-7B4A-43E8-9954-8D03E2187E9C}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{86937F53-C189-40EF-8CE8-8759D8E7D480}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{13CECB97-4119-4316-9D42-8534019A5A44}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {A1A295E5-463C-437F-81CA-1F32367685DA} = {A1A295E5-463C-437F-81CA-1F32367685DA} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{C6E20F84-3247-4AD6-B051-B073268F73BA}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - {86937F53-C189-40EF-8CE8-8759D8E7D480} = {86937F53-C189-40EF-8CE8-8759D8E7D480} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{4946ECAC-2E69-4BF8-A90A-F5136F5094DF}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{73FCD2BD-F133-46B7-8EC1-144CD82A59D5}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{18CAE28C-B454-46C1-87A0-493D91D97F03}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{D06B6426-4762-44CC-8BAD-D79052507F2F}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bdist_wininst", "bdist_wininst.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_hashlib", "_hashlib.vcproj", "{447F05A8-F581-4CAC-A466-5AC7936E207E}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite3", "sqlite3.vcproj", "{A1A295E5-463C-437F-81CA-1F32367685DA}" - ProjectSection(ProjectDependencies) = postProject - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_multiprocessing", "_multiprocessing.vcproj", "{9E48B300-37D1-11DD-8C41-005056C00008}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kill_python", "kill_python.vcproj", "{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - PGInstrument|Win32 = PGInstrument|Win32 - PGInstrument|x64 = PGInstrument|x64 - PGUpdate|Win32 = PGUpdate|Win32 - PGUpdate|x64 = PGUpdate|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.ActiveCfg = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.Build.0 = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.ActiveCfg = Debug|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.Build.0 = Debug|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.ActiveCfg = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.Build.0 = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.ActiveCfg = Release|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.Build.0 = Release|x64 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.ActiveCfg = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.Build.0 = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.ActiveCfg = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.Build.0 = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.Build.0 = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.ActiveCfg = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.Build.0 = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.ActiveCfg = Debug|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.Build.0 = Debug|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.ActiveCfg = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.Build.0 = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.ActiveCfg = Release|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.Build.0 = Release|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.ActiveCfg = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.Build.0 = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.ActiveCfg = Debug|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.Build.0 = Debug|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.ActiveCfg = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.Build.0 = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.ActiveCfg = Release|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.Build.0 = Release|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.ActiveCfg = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.Build.0 = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.ActiveCfg = Debug|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.Build.0 = Debug|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.ActiveCfg = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.Build.0 = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.ActiveCfg = Release|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.Build.0 = Release|x64 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.Build.0 = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.ActiveCfg = Debug|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.Build.0 = Debug|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.ActiveCfg = Debug|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.Build.0 = Debug|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.ActiveCfg = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.Build.0 = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.ActiveCfg = Release|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.Build.0 = Release|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|Win32.ActiveCfg = Debug|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|Win32.Build.0 = Debug|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|x64.ActiveCfg = Debug|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|x64.Build.0 = Debug|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|Win32.ActiveCfg = Release|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|Win32.Build.0 = Release|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|x64.ActiveCfg = Release|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|x64.Build.0 = Release|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.ActiveCfg = Debug|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.Build.0 = Debug|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.ActiveCfg = Debug|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.Build.0 = Debug|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.ActiveCfg = Release|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.Build.0 = Release|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.ActiveCfg = Release|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.Build.0 = Release|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.ActiveCfg = Debug|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.Build.0 = Debug|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.ActiveCfg = Debug|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.Build.0 = Debug|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.ActiveCfg = Release|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.Build.0 = Release|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.ActiveCfg = Release|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.Build.0 = Release|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.ActiveCfg = Debug|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.Build.0 = Debug|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.ActiveCfg = Debug|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.Build.0 = Debug|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.ActiveCfg = Release|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.Build.0 = Release|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.ActiveCfg = Release|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.Build.0 = Release|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.ActiveCfg = Debug|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.Build.0 = Debug|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.ActiveCfg = Debug|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.Build.0 = Debug|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.ActiveCfg = Release|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.Build.0 = Release|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.ActiveCfg = Release|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.Build.0 = Release|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.ActiveCfg = Debug|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.Build.0 = Debug|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.ActiveCfg = Debug|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.Build.0 = Debug|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.ActiveCfg = Release|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.Build.0 = Release|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.ActiveCfg = Release|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.Build.0 = Release|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.ActiveCfg = Debug|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.Build.0 = Debug|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.ActiveCfg = Debug|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.Build.0 = Debug|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.ActiveCfg = Release|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.Build.0 = Release|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.ActiveCfg = Release|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.Build.0 = Release|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.ActiveCfg = Debug|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.Build.0 = Debug|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.ActiveCfg = Debug|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.Build.0 = Debug|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.ActiveCfg = Release|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.Build.0 = Release|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.ActiveCfg = Release|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.Build.0 = Release|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.ActiveCfg = Debug|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.Build.0 = Debug|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.ActiveCfg = Debug|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.Build.0 = Debug|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.ActiveCfg = Release|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.Build.0 = Release|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.ActiveCfg = Release|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.Build.0 = Release|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.ActiveCfg = Debug|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.Build.0 = Debug|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.ActiveCfg = Debug|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.Build.0 = Debug|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.ActiveCfg = Release|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.Build.0 = Release|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.ActiveCfg = Release|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.Build.0 = Release|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.ActiveCfg = Debug|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.Build.0 = Debug|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.ActiveCfg = Debug|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.Build.0 = Debug|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.ActiveCfg = Release|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.Build.0 = Release|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.ActiveCfg = Release|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.Build.0 = Release|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.ActiveCfg = Debug|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.Build.0 = Debug|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.ActiveCfg = Debug|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.Build.0 = Debug|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.ActiveCfg = Release|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.Build.0 = Release|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.ActiveCfg = Release|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.Build.0 = Release|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.ActiveCfg = Debug|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.Build.0 = Debug|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.ActiveCfg = Debug|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.Build.0 = Debug|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.ActiveCfg = Release|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.Build.0 = Release|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.ActiveCfg = Release|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.Build.0 = Release|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.ActiveCfg = Debug|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.Build.0 = Debug|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.ActiveCfg = Debug|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.Build.0 = Debug|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.ActiveCfg = Release|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.Build.0 = Release|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.ActiveCfg = Release|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.Build.0 = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|x64.ActiveCfg = Release|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.ActiveCfg = Debug|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.Build.0 = Debug|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.ActiveCfg = Debug|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.Build.0 = Debug|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.ActiveCfg = Release|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.Build.0 = Release|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.ActiveCfg = Release|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.Build.0 = Release|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.ActiveCfg = Debug|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.Build.0 = Debug|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.ActiveCfg = Debug|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.Build.0 = Debug|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.ActiveCfg = Release|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.Build.0 = Release|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.ActiveCfg = Release|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.Build.0 = Release|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.ActiveCfg = Debug|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.Build.0 = Debug|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.ActiveCfg = Debug|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.Build.0 = Debug|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.ActiveCfg = Release|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.Build.0 = Release|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.ActiveCfg = Release|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.ActiveCfg = Debug|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.Build.0 = Debug|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.ActiveCfg = Debug|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.Build.0 = Debug|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" + ProjectSection(ProjectDependencies) = postProject + {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" + ProjectSection(ProjectDependencies) = postProject + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{553EC33E-9816-4996-A660-5D6186A0B0B3}" + ProjectSection(SolutionItems) = preProject + ..\..\Modules\getbuildinfo.c = ..\..\Modules\getbuildinfo.c + readme.txt = readme.txt + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{28B5D777-DDF2-4B6B-B34F-31D938813856}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_bsddb", "_bsddb.vcproj", "{B4D38F3F-68FB-42EC-A45D-E00657BB3627}" + ProjectSection(ProjectDependencies) = postProject + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{0E9791DB-593A-465F-98BC-681011311618}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{9EC7190A-249F-4180-A900-548FDCF3055F}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{17E1E049-C309-4D79-843F-AE483C264AEA}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{31FFC478-7B4A-43E8-9954-8D03E2187E9C}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{86937F53-C189-40EF-8CE8-8759D8E7D480}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{13CECB97-4119-4316-9D42-8534019A5A44}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {A1A295E5-463C-437F-81CA-1F32367685DA} = {A1A295E5-463C-437F-81CA-1F32367685DA} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{C6E20F84-3247-4AD6-B051-B073268F73BA}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + {86937F53-C189-40EF-8CE8-8759D8E7D480} = {86937F53-C189-40EF-8CE8-8759D8E7D480} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{4946ECAC-2E69-4BF8-A90A-F5136F5094DF}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{73FCD2BD-F133-46B7-8EC1-144CD82A59D5}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{18CAE28C-B454-46C1-87A0-493D91D97F03}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{D06B6426-4762-44CC-8BAD-D79052507F2F}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bdist_wininst", "bdist_wininst.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_hashlib", "_hashlib.vcproj", "{447F05A8-F581-4CAC-A466-5AC7936E207E}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite3", "sqlite3.vcproj", "{A1A295E5-463C-437F-81CA-1F32367685DA}" + ProjectSection(ProjectDependencies) = postProject + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_multiprocessing", "_multiprocessing.vcproj", "{9E48B300-37D1-11DD-8C41-005056C00008}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kill_python", "kill_python.vcproj", "{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + PGInstrument|Win32 = PGInstrument|Win32 + PGInstrument|x64 = PGInstrument|x64 + PGUpdate|Win32 = PGUpdate|Win32 + PGUpdate|x64 = PGUpdate|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.ActiveCfg = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.Build.0 = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.ActiveCfg = Debug|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.Build.0 = Debug|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.ActiveCfg = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.Build.0 = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.ActiveCfg = Release|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.Build.0 = Release|x64 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.ActiveCfg = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.Build.0 = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.ActiveCfg = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.Build.0 = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.Build.0 = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.ActiveCfg = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.Build.0 = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.ActiveCfg = Debug|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.Build.0 = Debug|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.ActiveCfg = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.Build.0 = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.ActiveCfg = Release|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.Build.0 = Release|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.ActiveCfg = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.Build.0 = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.ActiveCfg = Debug|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.Build.0 = Debug|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.ActiveCfg = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.Build.0 = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.ActiveCfg = Release|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.Build.0 = Release|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.ActiveCfg = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.Build.0 = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.ActiveCfg = Debug|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.Build.0 = Debug|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.ActiveCfg = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.Build.0 = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.ActiveCfg = Release|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.Build.0 = Release|x64 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.Build.0 = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.ActiveCfg = Debug|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.Build.0 = Debug|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.ActiveCfg = Debug|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.Build.0 = Debug|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.ActiveCfg = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.Build.0 = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.ActiveCfg = Release|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.Build.0 = Release|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|Win32.ActiveCfg = Debug|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|Win32.Build.0 = Debug|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|x64.ActiveCfg = Debug|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|x64.Build.0 = Debug|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|Win32.ActiveCfg = Release|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|Win32.Build.0 = Release|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|x64.ActiveCfg = Release|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|x64.Build.0 = Release|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.ActiveCfg = Debug|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.Build.0 = Debug|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.ActiveCfg = Debug|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.Build.0 = Debug|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.ActiveCfg = Release|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.Build.0 = Release|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.ActiveCfg = Release|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.Build.0 = Release|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.ActiveCfg = Debug|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.Build.0 = Debug|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.ActiveCfg = Debug|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.Build.0 = Debug|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.ActiveCfg = Release|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.Build.0 = Release|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.ActiveCfg = Release|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.Build.0 = Release|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.ActiveCfg = Debug|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.Build.0 = Debug|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.ActiveCfg = Debug|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.Build.0 = Debug|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.ActiveCfg = Release|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.Build.0 = Release|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.ActiveCfg = Release|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.Build.0 = Release|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.ActiveCfg = Debug|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.Build.0 = Debug|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.ActiveCfg = Debug|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.Build.0 = Debug|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.ActiveCfg = Release|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.Build.0 = Release|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.ActiveCfg = Release|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.Build.0 = Release|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.ActiveCfg = Debug|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.Build.0 = Debug|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.ActiveCfg = Debug|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.Build.0 = Debug|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.ActiveCfg = Release|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.Build.0 = Release|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.ActiveCfg = Release|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.Build.0 = Release|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.ActiveCfg = Debug|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.Build.0 = Debug|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.ActiveCfg = Debug|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.Build.0 = Debug|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.ActiveCfg = Release|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.Build.0 = Release|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.ActiveCfg = Release|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.Build.0 = Release|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.ActiveCfg = Debug|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.Build.0 = Debug|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.ActiveCfg = Debug|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.Build.0 = Debug|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.ActiveCfg = Release|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.Build.0 = Release|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.ActiveCfg = Release|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.Build.0 = Release|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.ActiveCfg = Debug|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.Build.0 = Debug|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.ActiveCfg = Debug|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.Build.0 = Debug|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.ActiveCfg = Release|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.Build.0 = Release|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.ActiveCfg = Release|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.Build.0 = Release|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.ActiveCfg = Debug|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.Build.0 = Debug|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.ActiveCfg = Debug|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.Build.0 = Debug|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.ActiveCfg = Release|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.Build.0 = Release|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.ActiveCfg = Release|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.Build.0 = Release|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.ActiveCfg = Debug|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.Build.0 = Debug|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.ActiveCfg = Debug|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.Build.0 = Debug|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.ActiveCfg = Release|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.Build.0 = Release|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.ActiveCfg = Release|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.Build.0 = Release|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.ActiveCfg = Debug|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.Build.0 = Debug|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.ActiveCfg = Debug|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.Build.0 = Debug|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.ActiveCfg = Release|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.Build.0 = Release|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.ActiveCfg = Release|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.Build.0 = Release|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.ActiveCfg = Debug|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.Build.0 = Debug|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.ActiveCfg = Debug|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.Build.0 = Debug|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.ActiveCfg = Release|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.Build.0 = Release|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.ActiveCfg = Release|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.Build.0 = Release|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.ActiveCfg = Debug|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.Build.0 = Debug|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.ActiveCfg = Debug|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.Build.0 = Debug|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.ActiveCfg = Release|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.Build.0 = Release|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.ActiveCfg = Release|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.Build.0 = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|x64.ActiveCfg = Release|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.ActiveCfg = Debug|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.Build.0 = Debug|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.ActiveCfg = Debug|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.Build.0 = Debug|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.ActiveCfg = Release|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.Build.0 = Release|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.ActiveCfg = Release|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.Build.0 = Release|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.ActiveCfg = Debug|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.Build.0 = Debug|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.ActiveCfg = Debug|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.Build.0 = Debug|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.ActiveCfg = Release|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.Build.0 = Release|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.ActiveCfg = Release|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.Build.0 = Release|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.ActiveCfg = Debug|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.Build.0 = Debug|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.ActiveCfg = Debug|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.Build.0 = Debug|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.ActiveCfg = Release|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.Build.0 = Release|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.ActiveCfg = Release|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.ActiveCfg = Debug|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.Build.0 = Debug|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.ActiveCfg = Debug|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.Build.0 = Debug|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/PC/VS8.0/pginstrument.vsprops b/PC/VS8.0/pginstrument.vsprops --- a/PC/VS8.0/pginstrument.vsprops +++ b/PC/VS8.0/pginstrument.vsprops @@ -1,34 +1,34 @@ - - - - - - + + + + + + diff --git a/PC/VS8.0/pgupdate.vsprops b/PC/VS8.0/pgupdate.vsprops --- a/PC/VS8.0/pgupdate.vsprops +++ b/PC/VS8.0/pgupdate.vsprops @@ -1,14 +1,14 @@ - - - - + + + + diff --git a/PC/VS8.0/pyd.vsprops b/PC/VS8.0/pyd.vsprops --- a/PC/VS8.0/pyd.vsprops +++ b/PC/VS8.0/pyd.vsprops @@ -1,28 +1,28 @@ - - - - - - - + + + + + + + diff --git a/PC/VS8.0/pyd_d.vsprops b/PC/VS8.0/pyd_d.vsprops --- a/PC/VS8.0/pyd_d.vsprops +++ b/PC/VS8.0/pyd_d.vsprops @@ -1,36 +1,36 @@ - - - - - - - - + + + + + + + + diff --git a/PC/VS8.0/pyexpat.vcproj b/PC/VS8.0/pyexpat.vcproj --- a/PC/VS8.0/pyexpat.vcproj +++ b/PC/VS8.0/pyexpat.vcproj @@ -1,553 +1,553 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/pyproject.vsprops b/PC/VS8.0/pyproject.vsprops --- a/PC/VS8.0/pyproject.vsprops +++ b/PC/VS8.0/pyproject.vsprops @@ -1,111 +1,111 @@ - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/python.vcproj b/PC/VS8.0/python.vcproj --- a/PC/VS8.0/python.vcproj +++ b/PC/VS8.0/python.vcproj @@ -1,637 +1,637 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/pythoncore.vcproj b/PC/VS8.0/pythoncore.vcproj --- a/PC/VS8.0/pythoncore.vcproj +++ b/PC/VS8.0/pythoncore.vcproj @@ -1,1873 +1,1873 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/pythonw.vcproj b/PC/VS8.0/pythonw.vcproj --- a/PC/VS8.0/pythonw.vcproj +++ b/PC/VS8.0/pythonw.vcproj @@ -1,618 +1,618 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/release.vsprops b/PC/VS8.0/release.vsprops --- a/PC/VS8.0/release.vsprops +++ b/PC/VS8.0/release.vsprops @@ -1,15 +1,15 @@ - - - - - + + + + + diff --git a/PC/VS8.0/select.vcproj b/PC/VS8.0/select.vcproj --- a/PC/VS8.0/select.vcproj +++ b/PC/VS8.0/select.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/sqlite3.vcproj b/PC/VS8.0/sqlite3.vcproj --- a/PC/VS8.0/sqlite3.vcproj +++ b/PC/VS8.0/sqlite3.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/sqlite3.vsprops b/PC/VS8.0/sqlite3.vsprops --- a/PC/VS8.0/sqlite3.vsprops +++ b/PC/VS8.0/sqlite3.vsprops @@ -1,14 +1,14 @@ - - - - + + + + diff --git a/PC/VS8.0/unicodedata.vcproj b/PC/VS8.0/unicodedata.vcproj --- a/PC/VS8.0/unicodedata.vcproj +++ b/PC/VS8.0/unicodedata.vcproj @@ -1,533 +1,533 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/w9xpopen.vcproj b/PC/VS8.0/w9xpopen.vcproj --- a/PC/VS8.0/w9xpopen.vcproj +++ b/PC/VS8.0/w9xpopen.vcproj @@ -1,576 +1,576 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/winsound.vcproj b/PC/VS8.0/winsound.vcproj --- a/PC/VS8.0/winsound.vcproj +++ b/PC/VS8.0/winsound.vcproj @@ -1,523 +1,523 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/VS8.0/x64.vsprops b/PC/VS8.0/x64.vsprops --- a/PC/VS8.0/x64.vsprops +++ b/PC/VS8.0/x64.vsprops @@ -1,22 +1,22 @@ - - - - - - + + + + + + diff --git a/PC/bdist_wininst/wininst-7.1.sln b/PC/bdist_wininst/wininst-7.1.sln --- a/PC/bdist_wininst/wininst-7.1.sln +++ b/PC/bdist_wininst/wininst-7.1.sln @@ -1,21 +1,21 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wininst", "wininst-7.1.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug.ActiveCfg = Debug|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug.Build.0 = Debug|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wininst", "wininst-7.1.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + Debug = Debug + Release = Release + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug.ActiveCfg = Debug|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug.Build.0 = Debug|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/PC/bdist_wininst/wininst-7.1.vcproj b/PC/bdist_wininst/wininst-7.1.vcproj --- a/PC/bdist_wininst/wininst-7.1.vcproj +++ b/PC/bdist_wininst/wininst-7.1.vcproj @@ -1,214 +1,214 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/bdist_wininst/wininst-8.sln b/PC/bdist_wininst/wininst-8.sln --- a/PC/bdist_wininst/wininst-8.sln +++ b/PC/bdist_wininst/wininst-8.sln @@ -1,19 +1,19 @@ -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wininst", "wininst-8.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Debug|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.Build.0 = Debug|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wininst", "wininst-8.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Debug|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.Build.0 = Debug|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/PC/bdist_wininst/wininst-8.vcproj b/PC/bdist_wininst/wininst-8.vcproj --- a/PC/bdist_wininst/wininst-8.vcproj +++ b/PC/bdist_wininst/wininst-8.vcproj @@ -1,320 +1,320 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PC/bdist_wininst/wininst.dsp b/PC/bdist_wininst/wininst.dsp --- a/PC/bdist_wininst/wininst.dsp +++ b/PC/bdist_wininst/wininst.dsp @@ -1,123 +1,123 @@ -# Microsoft Developer Studio Project File - Name="wininst" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Application" 0x0101 - -CFG=wininst - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wininst.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wininst.mak" CFG="wininst - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "wininst - Win32 Release" (based on "Win32 (x86) Application") -!MESSAGE "wininst - Win32 Debug" (based on "Win32 (x86) Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "wininst - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\lib\distutils\command" -# PROP Intermediate_Dir "temp-release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /O1 /I "..\..\Include" /I "..\..\..\zlib-1.2.3" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x407 /d "NDEBUG" -# ADD RSC /l 0x407 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 -# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0.exe" - -!ELSEIF "$(CFG)" == "wininst - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "." -# PROP Intermediate_Dir "temp-debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MD /W3 /Z7 /Od /I "..\..\Include" /I "..\..\..\zlib-1.2.1" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /FR /YX /FD /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x407 /d "_DEBUG" -# ADD RSC /l 0x407 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept -# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /pdb:none /debug /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0_d.exe" - -!ENDIF - -# Begin Target - -# Name "wininst - Win32 Release" -# Name "wininst - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=.\extract.c -# End Source File -# Begin Source File - -SOURCE=.\install.c -# End Source File -# Begin Source File - -SOURCE=.\install.rc -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=.\archive.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# Begin Source File - -SOURCE=.\PythonPowered.bmp -# End Source File -# End Group -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="wininst" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=wininst - Win32 Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "wininst.mak". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "wininst.mak" CFG="wininst - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "wininst - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "wininst - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "wininst - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "..\..\lib\distutils\command" +# PROP Intermediate_Dir "temp-release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /O1 /I "..\..\Include" /I "..\..\..\zlib-1.2.3" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0x407 /d "NDEBUG" +# ADD RSC /l 0x407 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0.exe" + +!ELSEIF "$(CFG)" == "wininst - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "." +# PROP Intermediate_Dir "temp-debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c +# ADD CPP /nologo /MD /W3 /Z7 /Od /I "..\..\Include" /I "..\..\..\zlib-1.2.1" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /FR /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0x407 /d "_DEBUG" +# ADD RSC /l 0x407 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 ..\..\..\zlib-1.2.3\zlib.lib imagehlp.lib comdlg32.lib ole32.lib comctl32.lib kernel32.lib user32.lib gdi32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /pdb:none /debug /machine:I386 /nodefaultlib:"LIBC" /out:"..\..\lib\distutils\command/wininst-6.0_d.exe" + +!ENDIF + +# Begin Target + +# Name "wininst - Win32 Release" +# Name "wininst - Win32 Debug" +# Begin Group "Source Files" + +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" +# Begin Source File + +SOURCE=.\extract.c +# End Source File +# Begin Source File + +SOURCE=.\install.c +# End Source File +# Begin Source File + +SOURCE=.\install.rc +# End Source File +# End Group +# Begin Group "Header Files" + +# PROP Default_Filter "h;hpp;hxx;hm;inl" +# Begin Source File + +SOURCE=.\archive.h +# End Source File +# End Group +# Begin Group "Resource Files" + +# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" +# Begin Source File + +SOURCE=.\PythonPowered.bmp +# End Source File +# End Group +# End Target +# End Project diff --git a/PC/bdist_wininst/wininst.dsw b/PC/bdist_wininst/wininst.dsw --- a/PC/bdist_wininst/wininst.dsw +++ b/PC/bdist_wininst/wininst.dsw @@ -1,29 +1,29 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "wininst"=.\wininst.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - +Microsoft Developer Studio Workspace File, Format Version 6.00 +# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + +############################################################################### + +Project: "wininst"=.\wininst.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/PC/example_nt/example.sln b/PC/example_nt/example.sln --- a/PC/example_nt/example.sln +++ b/PC/example_nt/example.sln @@ -1,21 +1,21 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example", "example.vcproj", "{A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Debug.ActiveCfg = Debug|Win32 - {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Debug.Build.0 = Debug|Win32 - {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Release.ActiveCfg = Release|Win32 - {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example", "example.vcproj", "{A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + Debug = Debug + Release = Release + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Debug.ActiveCfg = Debug|Win32 + {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Debug.Build.0 = Debug|Win32 + {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Release.ActiveCfg = Release|Win32 + {A0608D6F-84ED-44AE-A2A6-A3CC7F4A4030}.Release.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/PC/example_nt/example.vcproj b/PC/example_nt/example.vcproj --- a/PC/example_nt/example.vcproj +++ b/PC/example_nt/example.vcproj @@ -1,189 +1,189 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_bsddb.vcproj b/PCbuild/_bsddb.vcproj --- a/PCbuild/_bsddb.vcproj +++ b/PCbuild/_bsddb.vcproj @@ -1,1463 +1,1463 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_ctypes.vcproj b/PCbuild/_ctypes.vcproj --- a/PCbuild/_ctypes.vcproj +++ b/PCbuild/_ctypes.vcproj @@ -1,705 +1,705 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_ctypes_test.vcproj b/PCbuild/_ctypes_test.vcproj --- a/PCbuild/_ctypes_test.vcproj +++ b/PCbuild/_ctypes_test.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_elementtree.vcproj b/PCbuild/_elementtree.vcproj --- a/PCbuild/_elementtree.vcproj +++ b/PCbuild/_elementtree.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_hashlib.vcproj b/PCbuild/_hashlib.vcproj --- a/PCbuild/_hashlib.vcproj +++ b/PCbuild/_hashlib.vcproj @@ -1,545 +1,545 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_msi.vcproj b/PCbuild/_msi.vcproj --- a/PCbuild/_msi.vcproj +++ b/PCbuild/_msi.vcproj @@ -1,529 +1,529 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_multiprocessing.vcproj b/PCbuild/_multiprocessing.vcproj --- a/PCbuild/_multiprocessing.vcproj +++ b/PCbuild/_multiprocessing.vcproj @@ -1,557 +1,557 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_socket.vcproj b/PCbuild/_socket.vcproj --- a/PCbuild/_socket.vcproj +++ b/PCbuild/_socket.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_sqlite3.vcproj b/PCbuild/_sqlite3.vcproj --- a/PCbuild/_sqlite3.vcproj +++ b/PCbuild/_sqlite3.vcproj @@ -1,613 +1,613 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_ssl.vcproj b/PCbuild/_ssl.vcproj --- a/PCbuild/_ssl.vcproj +++ b/PCbuild/_ssl.vcproj @@ -1,545 +1,545 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_testcapi.vcproj b/PCbuild/_testcapi.vcproj --- a/PCbuild/_testcapi.vcproj +++ b/PCbuild/_testcapi.vcproj @@ -1,521 +1,521 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/_tkinter.vcproj b/PCbuild/_tkinter.vcproj --- a/PCbuild/_tkinter.vcproj +++ b/PCbuild/_tkinter.vcproj @@ -1,541 +1,541 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/bdist_wininst.vcproj b/PCbuild/bdist_wininst.vcproj --- a/PCbuild/bdist_wininst.vcproj +++ b/PCbuild/bdist_wininst.vcproj @@ -1,270 +1,270 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/bz2.vcproj b/PCbuild/bz2.vcproj --- a/PCbuild/bz2.vcproj +++ b/PCbuild/bz2.vcproj @@ -1,581 +1,581 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/debug.vsprops b/PCbuild/debug.vsprops --- a/PCbuild/debug.vsprops +++ b/PCbuild/debug.vsprops @@ -1,15 +1,15 @@ - - - - - + + + + + diff --git a/PCbuild/kill_python.vcproj b/PCbuild/kill_python.vcproj --- a/PCbuild/kill_python.vcproj +++ b/PCbuild/kill_python.vcproj @@ -1,279 +1,279 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/make_buildinfo.vcproj b/PCbuild/make_buildinfo.vcproj --- a/PCbuild/make_buildinfo.vcproj +++ b/PCbuild/make_buildinfo.vcproj @@ -1,162 +1,162 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/make_versioninfo.vcproj b/PCbuild/make_versioninfo.vcproj --- a/PCbuild/make_versioninfo.vcproj +++ b/PCbuild/make_versioninfo.vcproj @@ -1,324 +1,324 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pcbuild.sln b/PCbuild/pcbuild.sln --- a/PCbuild/pcbuild.sln +++ b/PCbuild/pcbuild.sln @@ -1,559 +1,559 @@ -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" - ProjectSection(ProjectDependencies) = postProject - {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" - ProjectSection(ProjectDependencies) = postProject - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{553EC33E-9816-4996-A660-5D6186A0B0B3}" - ProjectSection(SolutionItems) = preProject - ..\Modules\getbuildinfo.c = ..\Modules\getbuildinfo.c - readme.txt = readme.txt - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{28B5D777-DDF2-4B6B-B34F-31D938813856}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_bsddb", "_bsddb.vcproj", "{B4D38F3F-68FB-42EC-A45D-E00657BB3627}" - ProjectSection(ProjectDependencies) = postProject - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{0E9791DB-593A-465F-98BC-681011311618}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{9EC7190A-249F-4180-A900-548FDCF3055F}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{17E1E049-C309-4D79-843F-AE483C264AEA}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{31FFC478-7B4A-43E8-9954-8D03E2187E9C}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{86937F53-C189-40EF-8CE8-8759D8E7D480}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{13CECB97-4119-4316-9D42-8534019A5A44}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - {A1A295E5-463C-437F-81CA-1F32367685DA} = {A1A295E5-463C-437F-81CA-1F32367685DA} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{C6E20F84-3247-4AD6-B051-B073268F73BA}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - {86937F53-C189-40EF-8CE8-8759D8E7D480} = {86937F53-C189-40EF-8CE8-8759D8E7D480} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{4946ECAC-2E69-4BF8-A90A-F5136F5094DF}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{73FCD2BD-F133-46B7-8EC1-144CD82A59D5}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{18CAE28C-B454-46C1-87A0-493D91D97F03}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{D06B6426-4762-44CC-8BAD-D79052507F2F}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bdist_wininst", "bdist_wininst.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_hashlib", "_hashlib.vcproj", "{447F05A8-F581-4CAC-A466-5AC7936E207E}" - ProjectSection(ProjectDependencies) = postProject - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite3", "sqlite3.vcproj", "{A1A295E5-463C-437F-81CA-1F32367685DA}" - ProjectSection(ProjectDependencies) = postProject - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_multiprocessing", "_multiprocessing.vcproj", "{9E48B300-37D1-11DD-8C41-005056C00008}" - ProjectSection(ProjectDependencies) = postProject - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kill_python", "kill_python.vcproj", "{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - PGInstrument|Win32 = PGInstrument|Win32 - PGInstrument|x64 = PGInstrument|x64 - PGUpdate|Win32 = PGUpdate|Win32 - PGUpdate|x64 = PGUpdate|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.ActiveCfg = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.Build.0 = Debug|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.ActiveCfg = Debug|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.Build.0 = Debug|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.ActiveCfg = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.Build.0 = Release|Win32 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.ActiveCfg = Release|x64 - {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.Build.0 = Release|x64 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.ActiveCfg = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.Build.0 = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.ActiveCfg = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.Build.0 = Debug|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.Build.0 = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.ActiveCfg = Release|Win32 - {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.Build.0 = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.ActiveCfg = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.Build.0 = Debug|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.ActiveCfg = Debug|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.Build.0 = Debug|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.ActiveCfg = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.Build.0 = Release|Win32 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.ActiveCfg = Release|x64 - {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.Build.0 = Release|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.ActiveCfg = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.Build.0 = Debug|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.ActiveCfg = Debug|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.Build.0 = Debug|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.ActiveCfg = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.Build.0 = Release|Win32 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.ActiveCfg = Release|x64 - {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.Build.0 = Release|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.ActiveCfg = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.Build.0 = Debug|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.ActiveCfg = Debug|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.Build.0 = Debug|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.ActiveCfg = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.Build.0 = Release|Win32 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.ActiveCfg = Release|x64 - {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.Build.0 = Release|x64 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.Build.0 = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.ActiveCfg = Release|Win32 - {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.Build.0 = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.ActiveCfg = Debug|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.Build.0 = Debug|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.ActiveCfg = Debug|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.Build.0 = Debug|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.ActiveCfg = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.Build.0 = Release|Win32 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.ActiveCfg = Release|x64 - {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.Build.0 = Release|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|Win32.ActiveCfg = Debug|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|Win32.Build.0 = Debug|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|x64.ActiveCfg = Debug|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|x64.Build.0 = Debug|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|Win32.ActiveCfg = Release|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|Win32.Build.0 = Release|Win32 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|x64.ActiveCfg = Release|x64 - {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|x64.Build.0 = Release|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.ActiveCfg = Debug|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.Build.0 = Debug|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.ActiveCfg = Debug|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.Build.0 = Debug|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.ActiveCfg = Release|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.Build.0 = Release|Win32 - {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.ActiveCfg = Release|x64 - {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.Build.0 = Release|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.ActiveCfg = Debug|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.Build.0 = Debug|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.ActiveCfg = Debug|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.Build.0 = Debug|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.ActiveCfg = Release|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.Build.0 = Release|Win32 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.ActiveCfg = Release|x64 - {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.Build.0 = Release|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.ActiveCfg = Debug|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.Build.0 = Debug|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.ActiveCfg = Debug|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.Build.0 = Debug|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.ActiveCfg = Release|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.Build.0 = Release|Win32 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.ActiveCfg = Release|x64 - {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.Build.0 = Release|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.ActiveCfg = Debug|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.Build.0 = Debug|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.ActiveCfg = Debug|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.Build.0 = Debug|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.ActiveCfg = Release|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.Build.0 = Release|Win32 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.ActiveCfg = Release|x64 - {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.Build.0 = Release|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.ActiveCfg = Debug|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.Build.0 = Debug|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.ActiveCfg = Debug|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.Build.0 = Debug|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.ActiveCfg = Release|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.Build.0 = Release|Win32 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.ActiveCfg = Release|x64 - {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.Build.0 = Release|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.ActiveCfg = Debug|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.Build.0 = Debug|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.ActiveCfg = Debug|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.Build.0 = Debug|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.ActiveCfg = Release|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.Build.0 = Release|Win32 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.ActiveCfg = Release|x64 - {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.Build.0 = Release|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.ActiveCfg = Debug|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.Build.0 = Debug|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.ActiveCfg = Debug|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.Build.0 = Debug|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.ActiveCfg = Release|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.Build.0 = Release|Win32 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.ActiveCfg = Release|x64 - {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.Build.0 = Release|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.ActiveCfg = Debug|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.Build.0 = Debug|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.ActiveCfg = Debug|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.Build.0 = Debug|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.ActiveCfg = Release|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.Build.0 = Release|Win32 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.ActiveCfg = Release|x64 - {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.Build.0 = Release|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.ActiveCfg = Debug|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.Build.0 = Debug|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.ActiveCfg = Debug|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.Build.0 = Debug|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.ActiveCfg = Release|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.Build.0 = Release|Win32 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.ActiveCfg = Release|x64 - {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.Build.0 = Release|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.ActiveCfg = Debug|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.Build.0 = Debug|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.ActiveCfg = Debug|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.Build.0 = Debug|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.ActiveCfg = Release|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.Build.0 = Release|Win32 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.ActiveCfg = Release|x64 - {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.Build.0 = Release|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.ActiveCfg = Debug|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.Build.0 = Debug|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.ActiveCfg = Debug|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.Build.0 = Debug|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.ActiveCfg = Release|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.Build.0 = Release|Win32 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.ActiveCfg = Release|x64 - {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.Build.0 = Release|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.ActiveCfg = Debug|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.Build.0 = Debug|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.ActiveCfg = Debug|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.Build.0 = Debug|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.ActiveCfg = Release|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.Build.0 = Release|Win32 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.ActiveCfg = Release|x64 - {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.Build.0 = Release|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.ActiveCfg = Debug|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.Build.0 = Debug|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.ActiveCfg = Debug|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.Build.0 = Debug|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.ActiveCfg = Release|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.Build.0 = Release|Win32 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.ActiveCfg = Release|x64 - {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.Build.0 = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|x64.ActiveCfg = Release|x64 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 - {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|x64.ActiveCfg = Release|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.ActiveCfg = Debug|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.Build.0 = Debug|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.ActiveCfg = Debug|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.Build.0 = Debug|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.ActiveCfg = Release|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.Build.0 = Release|Win32 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.ActiveCfg = Release|x64 - {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.Build.0 = Release|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.ActiveCfg = Debug|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.Build.0 = Debug|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.ActiveCfg = Debug|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.Build.0 = Debug|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.ActiveCfg = Release|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.Build.0 = Release|Win32 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.ActiveCfg = Release|x64 - {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.Build.0 = Release|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.ActiveCfg = Debug|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.Build.0 = Debug|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.ActiveCfg = Debug|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.Build.0 = Debug|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.Build.0 = PGInstrument|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.Build.0 = PGUpdate|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.ActiveCfg = Release|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.Build.0 = Release|Win32 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.ActiveCfg = Release|x64 - {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.ActiveCfg = Debug|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.Build.0 = Debug|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.ActiveCfg = Debug|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.Build.0 = Debug|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.Build.0 = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.ActiveCfg = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.Build.0 = Release|Win32 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.ActiveCfg = Release|x64 - {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcproj", "{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} = {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_versioninfo", "make_versioninfo.vcproj", "{F0E0541E-F17D-430B-97C4-93ADF0DD284E}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" + ProjectSection(ProjectDependencies) = postProject + {F0E0541E-F17D-430B-97C4-93ADF0DD284E} = {F0E0541E-F17D-430B-97C4-93ADF0DD284E} + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + {C73F0EC1-358B-4177-940F-0846AC8B04CD} = {C73F0EC1-358B-4177-940F-0846AC8B04CD} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcproj", "{F4229CC3-873C-49AE-9729-DD308ED4CD4A}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w9xpopen", "w9xpopen.vcproj", "{E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}" + ProjectSection(ProjectDependencies) = postProject + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_buildinfo", "make_buildinfo.vcproj", "{C73F0EC1-358B-4177-940F-0846AC8B04CD}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{553EC33E-9816-4996-A660-5D6186A0B0B3}" + ProjectSection(SolutionItems) = preProject + ..\Modules\getbuildinfo.c = ..\Modules\getbuildinfo.c + readme.txt = readme.txt + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcproj", "{28B5D777-DDF2-4B6B-B34F-31D938813856}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_bsddb", "_bsddb.vcproj", "{B4D38F3F-68FB-42EC-A45D-E00657BB3627}" + ProjectSection(ProjectDependencies) = postProject + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcproj", "{0E9791DB-593A-465F-98BC-681011311618}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcproj", "{9EC7190A-249F-4180-A900-548FDCF3055F}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcproj", "{17E1E049-C309-4D79-843F-AE483C264AEA}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_msi", "_msi.vcproj", "{31FFC478-7B4A-43E8-9954-8D03E2187E9C}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcproj", "{86937F53-C189-40EF-8CE8-8759D8E7D480}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_sqlite3", "_sqlite3.vcproj", "{13CECB97-4119-4316-9D42-8534019A5A44}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + {A1A295E5-463C-437F-81CA-1F32367685DA} = {A1A295E5-463C-437F-81CA-1F32367685DA} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ssl", "_ssl.vcproj", "{C6E20F84-3247-4AD6-B051-B073268F73BA}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + {86937F53-C189-40EF-8CE8-8759D8E7D480} = {86937F53-C189-40EF-8CE8-8759D8E7D480} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_testcapi", "_testcapi.vcproj", "{6901D91C-6E48-4BB7-9FEC-700C8131DF1D}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj", "{4946ECAC-2E69-4BF8-A90A-F5136F5094DF}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{73FCD2BD-F133-46B7-8EC1-144CD82A59D5}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "select", "select.vcproj", "{18CAE28C-B454-46C1-87A0-493D91D97F03}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodedata", "unicodedata.vcproj", "{ECC7CEAC-A5E5-458E-BB9E-2413CC847881}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyexpat", "pyexpat.vcproj", "{D06B6426-4762-44CC-8BAD-D79052507F2F}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bdist_wininst", "bdist_wininst.vcproj", "{EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_hashlib", "_hashlib.vcproj", "{447F05A8-F581-4CAC-A466-5AC7936E207E}" + ProjectSection(ProjectDependencies) = postProject + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} = {B11D750F-CD1F-4A96-85CE-E69A5C5259F9} + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite3", "sqlite3.vcproj", "{A1A295E5-463C-437F-81CA-1F32367685DA}" + ProjectSection(ProjectDependencies) = postProject + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} = {6DE10744-E396-40A5-B4E2-1B69AA7C8D31} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_multiprocessing", "_multiprocessing.vcproj", "{9E48B300-37D1-11DD-8C41-005056C00008}" + ProjectSection(ProjectDependencies) = postProject + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kill_python", "kill_python.vcproj", "{6DE10744-E396-40A5-B4E2-1B69AA7C8D31}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + PGInstrument|Win32 = PGInstrument|Win32 + PGInstrument|x64 = PGInstrument|x64 + PGUpdate|Win32 = PGUpdate|Win32 + PGUpdate|x64 = PGUpdate|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.ActiveCfg = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.Build.0 = Debug|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.ActiveCfg = Debug|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.Build.0 = Debug|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.ActiveCfg = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|Win32.Build.0 = Release|Win32 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.ActiveCfg = Release|x64 + {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Release|x64.Build.0 = Release|x64 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.ActiveCfg = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|Win32.Build.0 = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.ActiveCfg = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Debug|x64.Build.0 = Debug|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGInstrument|x64.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.PGUpdate|x64.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|Win32.Build.0 = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.ActiveCfg = Release|Win32 + {F0E0541E-F17D-430B-97C4-93ADF0DD284E}.Release|x64.Build.0 = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.ActiveCfg = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|Win32.Build.0 = Debug|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.ActiveCfg = Debug|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Debug|x64.Build.0 = Debug|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.ActiveCfg = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|Win32.Build.0 = Release|Win32 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.ActiveCfg = Release|x64 + {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}.Release|x64.Build.0 = Release|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.ActiveCfg = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|Win32.Build.0 = Debug|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.ActiveCfg = Debug|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Debug|x64.Build.0 = Debug|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.ActiveCfg = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|Win32.Build.0 = Release|Win32 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.ActiveCfg = Release|x64 + {F4229CC3-873C-49AE-9729-DD308ED4CD4A}.Release|x64.Build.0 = Release|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.ActiveCfg = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|Win32.Build.0 = Debug|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.ActiveCfg = Debug|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Debug|x64.Build.0 = Debug|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.ActiveCfg = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|Win32.Build.0 = Release|Win32 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.ActiveCfg = Release|x64 + {E9E0A1F6-0009-4E8C-B8F8-1B8F5D49A058}.Release|x64.Build.0 = Release|x64 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Debug|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGInstrument|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.PGUpdate|x64.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|Win32.Build.0 = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.ActiveCfg = Release|Win32 + {C73F0EC1-358B-4177-940F-0846AC8B04CD}.Release|x64.Build.0 = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.ActiveCfg = Debug|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|Win32.Build.0 = Debug|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.ActiveCfg = Debug|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Debug|x64.Build.0 = Debug|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.ActiveCfg = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|Win32.Build.0 = Release|Win32 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.ActiveCfg = Release|x64 + {28B5D777-DDF2-4B6B-B34F-31D938813856}.Release|x64.Build.0 = Release|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|Win32.ActiveCfg = Debug|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|Win32.Build.0 = Debug|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|x64.ActiveCfg = Debug|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Debug|x64.Build.0 = Debug|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|Win32.ActiveCfg = Release|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|Win32.Build.0 = Release|Win32 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|x64.ActiveCfg = Release|x64 + {B4D38F3F-68FB-42EC-A45D-E00657BB3627}.Release|x64.Build.0 = Release|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.ActiveCfg = Debug|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|Win32.Build.0 = Debug|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.ActiveCfg = Debug|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Debug|x64.Build.0 = Debug|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {0E9791DB-593A-465F-98BC-681011311618}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.ActiveCfg = Release|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Release|Win32.Build.0 = Release|Win32 + {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.ActiveCfg = Release|x64 + {0E9791DB-593A-465F-98BC-681011311618}.Release|x64.Build.0 = Release|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.ActiveCfg = Debug|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|Win32.Build.0 = Debug|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.ActiveCfg = Debug|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Debug|x64.Build.0 = Debug|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.ActiveCfg = Release|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|Win32.Build.0 = Release|Win32 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.ActiveCfg = Release|x64 + {9EC7190A-249F-4180-A900-548FDCF3055F}.Release|x64.Build.0 = Release|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.ActiveCfg = Debug|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|Win32.Build.0 = Debug|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.ActiveCfg = Debug|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Debug|x64.Build.0 = Debug|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.ActiveCfg = Release|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|Win32.Build.0 = Release|Win32 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.ActiveCfg = Release|x64 + {17E1E049-C309-4D79-843F-AE483C264AEA}.Release|x64.Build.0 = Release|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.ActiveCfg = Debug|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|Win32.Build.0 = Debug|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.ActiveCfg = Debug|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Debug|x64.Build.0 = Debug|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.ActiveCfg = Release|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|Win32.Build.0 = Release|Win32 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.ActiveCfg = Release|x64 + {31FFC478-7B4A-43E8-9954-8D03E2187E9C}.Release|x64.Build.0 = Release|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.ActiveCfg = Debug|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|Win32.Build.0 = Debug|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.ActiveCfg = Debug|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Debug|x64.Build.0 = Debug|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.ActiveCfg = Release|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|Win32.Build.0 = Release|Win32 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.ActiveCfg = Release|x64 + {86937F53-C189-40EF-8CE8-8759D8E7D480}.Release|x64.Build.0 = Release|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.ActiveCfg = Debug|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|Win32.Build.0 = Debug|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.ActiveCfg = Debug|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Debug|x64.Build.0 = Debug|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.ActiveCfg = Release|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|Win32.Build.0 = Release|Win32 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.ActiveCfg = Release|x64 + {13CECB97-4119-4316-9D42-8534019A5A44}.Release|x64.Build.0 = Release|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.ActiveCfg = Debug|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|Win32.Build.0 = Debug|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.ActiveCfg = Debug|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Debug|x64.Build.0 = Debug|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.ActiveCfg = Release|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|Win32.Build.0 = Release|Win32 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.ActiveCfg = Release|x64 + {C6E20F84-3247-4AD6-B051-B073268F73BA}.Release|x64.Build.0 = Release|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.ActiveCfg = Debug|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|Win32.Build.0 = Debug|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.ActiveCfg = Debug|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Debug|x64.Build.0 = Debug|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.ActiveCfg = Release|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|Win32.Build.0 = Release|Win32 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.ActiveCfg = Release|x64 + {6901D91C-6E48-4BB7-9FEC-700C8131DF1D}.Release|x64.Build.0 = Release|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.ActiveCfg = Debug|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|Win32.Build.0 = Debug|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.ActiveCfg = Debug|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Debug|x64.Build.0 = Debug|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.ActiveCfg = Release|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|Win32.Build.0 = Release|Win32 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.ActiveCfg = Release|x64 + {4946ECAC-2E69-4BF8-A90A-F5136F5094DF}.Release|x64.Build.0 = Release|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.ActiveCfg = Debug|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|Win32.Build.0 = Debug|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.ActiveCfg = Debug|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Debug|x64.Build.0 = Debug|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.ActiveCfg = Release|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|Win32.Build.0 = Release|Win32 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.ActiveCfg = Release|x64 + {73FCD2BD-F133-46B7-8EC1-144CD82A59D5}.Release|x64.Build.0 = Release|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.ActiveCfg = Debug|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|Win32.Build.0 = Debug|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.ActiveCfg = Debug|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Debug|x64.Build.0 = Debug|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.ActiveCfg = Release|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|Win32.Build.0 = Release|Win32 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.ActiveCfg = Release|x64 + {18CAE28C-B454-46C1-87A0-493D91D97F03}.Release|x64.Build.0 = Release|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.ActiveCfg = Debug|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|Win32.Build.0 = Debug|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.ActiveCfg = Debug|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Debug|x64.Build.0 = Debug|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.ActiveCfg = Release|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|Win32.Build.0 = Release|Win32 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.ActiveCfg = Release|x64 + {ECC7CEAC-A5E5-458E-BB9E-2413CC847881}.Release|x64.Build.0 = Release|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.ActiveCfg = Debug|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|Win32.Build.0 = Debug|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.ActiveCfg = Debug|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Debug|x64.Build.0 = Debug|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.ActiveCfg = Release|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|Win32.Build.0 = Release|Win32 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.ActiveCfg = Release|x64 + {D06B6426-4762-44CC-8BAD-D79052507F2F}.Release|x64.Build.0 = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Debug|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGInstrument|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.PGUpdate|x64.ActiveCfg = Release|x64 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|Win32.ActiveCfg = Release|Win32 + {EB1C19C1-1F18-421E-9735-CAEE69DC6A3C}.Release|x64.ActiveCfg = Release|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.ActiveCfg = Debug|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|Win32.Build.0 = Debug|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.ActiveCfg = Debug|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Debug|x64.Build.0 = Debug|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.ActiveCfg = Release|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|Win32.Build.0 = Release|Win32 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.ActiveCfg = Release|x64 + {447F05A8-F581-4CAC-A466-5AC7936E207E}.Release|x64.Build.0 = Release|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.ActiveCfg = Debug|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|Win32.Build.0 = Debug|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.ActiveCfg = Debug|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Debug|x64.Build.0 = Debug|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.ActiveCfg = Release|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|Win32.Build.0 = Release|Win32 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.ActiveCfg = Release|x64 + {A1A295E5-463C-437F-81CA-1F32367685DA}.Release|x64.Build.0 = Release|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.ActiveCfg = Debug|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|Win32.Build.0 = Debug|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.ActiveCfg = Debug|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Debug|x64.Build.0 = Debug|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.ActiveCfg = PGInstrument|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.ActiveCfg = PGInstrument|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGInstrument|x64.Build.0 = PGInstrument|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.ActiveCfg = PGUpdate|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|Win32.Build.0 = PGUpdate|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.ActiveCfg = PGUpdate|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.PGUpdate|x64.Build.0 = PGUpdate|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.ActiveCfg = Release|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|Win32.Build.0 = Release|Win32 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.ActiveCfg = Release|x64 + {9E48B300-37D1-11DD-8C41-005056C00008}.Release|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.ActiveCfg = Debug|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|Win32.Build.0 = Debug|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.ActiveCfg = Debug|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Debug|x64.Build.0 = Debug|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGInstrument|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.PGUpdate|x64.Build.0 = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.ActiveCfg = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|Win32.Build.0 = Release|Win32 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.ActiveCfg = Release|x64 + {6DE10744-E396-40A5-B4E2-1B69AA7C8D31}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/PCbuild/pginstrument.vsprops b/PCbuild/pginstrument.vsprops --- a/PCbuild/pginstrument.vsprops +++ b/PCbuild/pginstrument.vsprops @@ -1,34 +1,34 @@ - - - - - - + + + + + + diff --git a/PCbuild/pgupdate.vsprops b/PCbuild/pgupdate.vsprops --- a/PCbuild/pgupdate.vsprops +++ b/PCbuild/pgupdate.vsprops @@ -1,14 +1,14 @@ - - - - + + + + diff --git a/PCbuild/pyd.vsprops b/PCbuild/pyd.vsprops --- a/PCbuild/pyd.vsprops +++ b/PCbuild/pyd.vsprops @@ -1,28 +1,28 @@ - - - - - - - + + + + + + + diff --git a/PCbuild/pyd_d.vsprops b/PCbuild/pyd_d.vsprops --- a/PCbuild/pyd_d.vsprops +++ b/PCbuild/pyd_d.vsprops @@ -1,36 +1,36 @@ - - - - - - - - + + + + + + + + diff --git a/PCbuild/pyexpat.vcproj b/PCbuild/pyexpat.vcproj --- a/PCbuild/pyexpat.vcproj +++ b/PCbuild/pyexpat.vcproj @@ -1,553 +1,553 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pyproject.vsprops b/PCbuild/pyproject.vsprops --- a/PCbuild/pyproject.vsprops +++ b/PCbuild/pyproject.vsprops @@ -1,111 +1,111 @@ - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/python.vcproj b/PCbuild/python.vcproj --- a/PCbuild/python.vcproj +++ b/PCbuild/python.vcproj @@ -1,637 +1,637 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pythoncore.vcproj b/PCbuild/pythoncore.vcproj --- a/PCbuild/pythoncore.vcproj +++ b/PCbuild/pythoncore.vcproj @@ -1,1873 +1,1873 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/pythonw.vcproj b/PCbuild/pythonw.vcproj --- a/PCbuild/pythonw.vcproj +++ b/PCbuild/pythonw.vcproj @@ -1,618 +1,618 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/release.vsprops b/PCbuild/release.vsprops --- a/PCbuild/release.vsprops +++ b/PCbuild/release.vsprops @@ -1,15 +1,15 @@ - - - - - + + + + + diff --git a/PCbuild/select.vcproj b/PCbuild/select.vcproj --- a/PCbuild/select.vcproj +++ b/PCbuild/select.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/sqlite3.vcproj b/PCbuild/sqlite3.vcproj --- a/PCbuild/sqlite3.vcproj +++ b/PCbuild/sqlite3.vcproj @@ -1,537 +1,537 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/sqlite3.vsprops b/PCbuild/sqlite3.vsprops --- a/PCbuild/sqlite3.vsprops +++ b/PCbuild/sqlite3.vsprops @@ -1,14 +1,14 @@ - - - - + + + + diff --git a/PCbuild/unicodedata.vcproj b/PCbuild/unicodedata.vcproj --- a/PCbuild/unicodedata.vcproj +++ b/PCbuild/unicodedata.vcproj @@ -1,533 +1,533 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/w9xpopen.vcproj b/PCbuild/w9xpopen.vcproj --- a/PCbuild/w9xpopen.vcproj +++ b/PCbuild/w9xpopen.vcproj @@ -1,576 +1,576 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/winsound.vcproj b/PCbuild/winsound.vcproj --- a/PCbuild/winsound.vcproj +++ b/PCbuild/winsound.vcproj @@ -1,523 +1,523 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PCbuild/x64.vsprops b/PCbuild/x64.vsprops --- a/PCbuild/x64.vsprops +++ b/PCbuild/x64.vsprops @@ -1,22 +1,22 @@ - - - - - - + + + + + + -- Repository URL: http://hg.python.org/cpython From ncoghlan at gmail.com Sun Mar 6 12:58:24 2011 From: ncoghlan at gmail.com (Nick Coghlan) Date: Sun, 6 Mar 2011 21:58:24 +1000 Subject: [Python-checkins] devguide: More miscellaneous review comments. In-Reply-To: References: Message-ID: On Sun, Mar 6, 2011 at 7:37 PM, ned.deily wrote: > http://hg.python.org/devguide/rev/ad3278cfc5f6 > changeset: ? 376:ad3278cfc5f6 > user: ? ? ? ?Ned Deily > date: ? ? ? ?Sun Mar 06 01:37:13 2011 -0800 > summary: > ?More miscellaneous review comments. > > files: > ?committing.rst > ?communication.rst > ?coredev.rst > ?faq.rst > ?stdlibchanges.rst > > diff --git a/committing.rst b/committing.rst > --- a/committing.rst > +++ b/committing.rst > @@ -3,6 +3,9 @@ > ?Committing and Pushing Changes > ?============================== > > +.. TODO: include a checklist of items to be included in a commit? > + ? e.g updated Misc/NEWS entry, tests, doc For non-Windows, get people to run "make patchcheck". Windows devs will need a manual checklist, though. Cheers, Nick. -- Nick Coghlan?? |?? ncoghlan at gmail.com?? |?? Brisbane, Australia From python-checkins at python.org Sun Mar 6 16:04:59 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 06 Mar 2011 16:04:59 +0100 Subject: [Python-checkins] cpython: avoid casting with this nice macro Message-ID: http://hg.python.org/cpython/rev/c6a8e7debbe5 changeset: 68304:c6a8e7debbe5 parent: 68302:401e8882baf9 user: Benjamin Peterson date: Sun Mar 06 09:06:34 2011 -0600 summary: avoid casting with this nice macro files: Objects/unicodeobject.c diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -7358,8 +7358,7 @@ if (PyUnicode_Check(left) && PyUnicode_Check(right)) { PyObject *v; - if (((PyUnicodeObject *) left)->length != - ((PyUnicodeObject *) right)->length) { + if (PyUnicode_GET_SIZE(left) != PyUnicode_GET_SIZE(right)) { if (op == Py_EQ) { Py_INCREF(Py_False); return Py_False; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 17:10:11 2011 From: python-checkins at python.org (local-hg) Date: Sun, 06 Mar 2011 17:10:11 +0100 Subject: [Python-checkins] hooks: New subject scheme for notification emails Message-ID: http://hg.python.org/hooks/rev/5765024e260f changeset: 52:5765024e260f user: Antoine Pitrou date: Sun Mar 06 17:10:11 2011 +0100 summary: New subject scheme for notification emails files: mail.py diff --git a/mail.py b/mail.py --- a/mail.py +++ b/mail.py @@ -70,21 +70,23 @@ print 'no email address configured' return False + prefixes = [] + if path != 'cpython': + prefixes.append(path) + if len(parents) == 2: b1, b2, b = parents[0].branch(), parents[1].branch(), ctx.branch() if b in (b1, b2): bp = b2 if b == b1 else b1 # normal case - branch_insert = ' (merge %s -> %s)' % (bp, b) + prefixes.append('(merge %s -> %s)' % (bp, b)) else: # XXX really?? - branch_insert = ' (merge %s + %s -> %s)' % (b1, b2, b) + prefixes.append('(merge %s + %s -> %s)' % (b1, b2, b)) else: branch = ctx.branch() - if branch == 'default': - branch_insert = '' - else: - branch_insert = ' (%s)' % branch + if branch != 'default': + prefixes.append('(%s)' % branch) desc = ctx.description().splitlines()[0] if len(desc) > 80: @@ -92,7 +94,12 @@ if ' ' in desc: desc = desc.rsplit(' ', 1)[0] - subj = '%s%s: %s' % (path, branch_insert, desc) + if prefixes: + prefixes = ' '.join(prefixes) + ': ' + else: + prefixes = '' + + subj = prefixes + desc send(subj, FROM % user, to, '\n'.join(body) + '\n') print 'notified %s of incoming changeset %s' % (to, ctx) -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Sun Mar 6 17:32:40 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 6 Mar 2011 17:32:40 +0100 (CET) Subject: [Python-checkins] r88758 - tracker/instances/python-dev/scripts/addpatchsets Message-ID: <20110306163240.958DBEE981@mail.python.org> Author: martin.v.loewis Date: Sun Mar 6 17:32:34 2011 New Revision: 88758 Log: Support mercurial patches. Modified: tracker/instances/python-dev/scripts/addpatchsets Modified: tracker/instances/python-dev/scripts/addpatchsets ============================================================================== --- tracker/instances/python-dev/scripts/addpatchsets (original) +++ tracker/instances/python-dev/scripts/addpatchsets Sun Mar 6 17:32:34 2011 @@ -1,5 +1,5 @@ #!/usr/bin/python -import sys, os, urllib2, logging +import sys, os, urllib2, logging, datetime basedir = os.path.dirname(os.path.dirname(__file__)) sys.path.append(basedir+"/rietveld") os.environ["DJANGO_SETTINGS_MODULE"]="settings" @@ -7,8 +7,9 @@ gae2django.install(server_software='Django') verbose = False -if len(sys.argv)==2 and sys.argv[1]=='-v': +if len(sys.argv)>=2 and sys.argv[1]=='-v': verbose=True + del sys.argv[1] else: logging.disable(logging.ERROR) @@ -33,9 +34,9 @@ _branches[branchname] = branch return branch -def try_match(filename, chunks, branch, rev): +def try_match(filename, chunks, rev): try: - r = urllib2.urlopen("http://svn.python.org/view/*checkout*/python"+branch+"/"+filename+"?rev="+str(rev)) + r = urllib2.urlopen("http://hg.python.org/cpython/raw-file/"+rev+"/"+filename) except urllib2.HTTPError: return None base = engine.UnifyLinebreaks(r.read()) @@ -43,90 +44,59 @@ #import pdb; pdb.set_trace() for (start, end), newrange, oldlines, newlines in chunks: if lines[start:end] != oldlines: - print "No match", filename, start, end + if verbose: + print "No match", filename, start, end return None return base -def find_bases(data, rev): +def hg_splitpatch(data): + patches = [] + filename = None + for line in data.splitlines(True): + if line.startswith('diff -r'): + if filename: + chunks = patching.ParsePatchToChunks(diff) + if not chunks: + # diff cannot be parsed + return None + patches.append((filename, ''.join(diff), chunks)) + diff = [] + filename = line.split()[-1] + continue + if filename: + diff.append(line) + return patches + +def find_bases(data): + first, second, rev = data.split()[:3] + if first != 'diff' or second != '-r' or len(rev) != 12: + return None, None c = connection.cursor() - startrev = rev - to_match = [] - split = engine.SplitPatch(data) - # Check whether a prefix needs to be added to each file path - prefixes = None - if not split: - # Missing Index: line in patch + pieces = hg_splitpatch(data) + if not pieces: return None, None - for filename, data in split: - c.execute('select prefix from fileprefix where suffix=%s', (filename,)) - res = c.fetchall() + bases = [] + for filename, data, chunks in pieces: + res = try_match(filename, chunks, rev) if not res: - # prefix not known to Python at all - not a Python patch - return None, None - res = set(p[0] for p in res) - if prefixes is None: - prefixes = res - else: - prefixes = prefixes.intersection(res) - if not prefixes: - # no common prefix can be found return None, None - # parse each file patch to chunks - for filename, data in split: - lines = data.splitlines(True) - chunks = patching.ParsePatchToChunks(lines) - if not chunks: - return None, None - to_match.append((filename, data, chunks)) - - c = connection.cursor() - branches = set() - while 1: - if rev < startrev-5000: - if verbose: - print "Could not find base revision and branch" - return None, None - c.execute("select branch from svnbranch where rev=%s", (rev,)) - branch = c.fetchone() - if not branch: - rev -= 1 - continue - branch = branch[0] - if branch in branches: - # already tried - rev -= 1 - continue - branches.add(branch) - if verbose: - print "Trying ", branch, rev - - # if some file may occur with multiple prefixes, - # try them all - except that the intersection of all - # possible prefixes was taken above, so this should - # typically only use one round, and typically use '' - # as the prefix - for prefix in prefixes: - bases = [] - for filename, data, chunks in to_match: - res = try_match(prefix+filename, chunks, branch, rev) - if not res: - # try next prefix if any, - # else go to previous revision - break - bases.append((prefix+filename, data, chunks, res)) - else: - if verbose: - print "Found match", branch+prefix, rev - return branch, bases - rev -= 1 + bases.append((filename, data, chunks, res)) + if verbose: + print "Found match", rev + return 'default', bases c = connection.cursor() c.execute("select id from _status where _name='closed'") closed = c.fetchone()[0] -for f in (File.objects.filter(_revision__isnull=False, - _patchset__isnull=True). - order_by('id')): +#import pdb;pdb.set_trace() +if len(sys.argv) == 2: + query = File.objects.filter(id = sys.argv[1]) +else: + query = (File.objects.filter(_patchset__isnull=True, + _creation__gt=datetime.datetime.utcnow()-datetime.timedelta(seconds=30*60)). + order_by('id')) +for f in query: c.execute("select nodeid from issue_files where linkid=%s", (f.id,)) nodeid = c.fetchone() if not nodeid: @@ -153,10 +123,14 @@ print filename,"not found" continue data = open(filename).read() + if not data.startswith('diff -r '): + if verbose: + print filename, "is not a patch" + continue if verbose: print "Doing", f.id data = engine.UnifyLinebreaks(data) - branch, bases = find_bases(data, int(f._revision)) + branch, bases = find_bases(data) if not branch: if f.id < 15000: f._patchset = "n/a" From python-checkins at python.org Sun Mar 6 17:46:04 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 6 Mar 2011 17:46:04 +0100 (CET) Subject: [Python-checkins] r88759 - tracker/instances/python-dev/scripts/addpatchsets Message-ID: <20110306164604.2B968EE991@mail.python.org> Author: martin.v.loewis Date: Sun Mar 6 17:46:04 2011 New Revision: 88759 Log: Move patch detection earlier. Modified: tracker/instances/python-dev/scripts/addpatchsets Modified: tracker/instances/python-dev/scripts/addpatchsets ============================================================================== --- tracker/instances/python-dev/scripts/addpatchsets (original) +++ tracker/instances/python-dev/scripts/addpatchsets Sun Mar 6 17:46:04 2011 @@ -1,6 +1,6 @@ #!/usr/bin/python import sys, os, urllib2, logging, datetime -basedir = os.path.dirname(os.path.dirname(__file__)) +basedir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) sys.path.append(basedir+"/rietveld") os.environ["DJANGO_SETTINGS_MODULE"]="settings" import gae2django @@ -109,14 +109,6 @@ if verbose: print "issue",nodeid,"is closed" continue - issue = Issue.objects.filter(id=nodeid) - if not issue: - c.execute("select _title, _creator from _issue where id=%s", (nodeid,)) - title, creator = c.fetchone() - issue = Issue(id=nodeid, subject=title, owner_id=creator) - issue.put() - else: - issue = issue[0] filename = os.path.join(basedir, "db", "files", "file", str(f.id/1000), "file"+str(f.id)) if not os.path.exists(filename): @@ -127,6 +119,14 @@ if verbose: print filename, "is not a patch" continue + issue = Issue.objects.filter(id=nodeid) + if not issue: + c.execute("select _title, _creator from _issue where id=%s", (nodeid,)) + title, creator = c.fetchone() + issue = Issue(id=nodeid, subject=title, owner_id=creator) + issue.put() + else: + issue = issue[0] if verbose: print "Doing", f.id data = engine.UnifyLinebreaks(data) From python-checkins at python.org Sun Mar 6 18:03:37 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 6 Mar 2011 18:03:37 +0100 (CET) Subject: [Python-checkins] r88760 - tracker/instances/python-dev/scripts/addpatchsets Message-ID: <20110306170337.47243EE9BA@mail.python.org> Author: martin.v.loewis Date: Sun Mar 6 18:03:37 2011 New Revision: 88760 Log: Add last patch in patchset correctly. Modified: tracker/instances/python-dev/scripts/addpatchsets Modified: tracker/instances/python-dev/scripts/addpatchsets ============================================================================== --- tracker/instances/python-dev/scripts/addpatchsets (original) +++ tracker/instances/python-dev/scripts/addpatchsets Sun Mar 6 18:03:37 2011 @@ -65,6 +65,12 @@ continue if filename: diff.append(line) + # add last patch + if filename: + chunks = patching.ParsePatchToChunks(diff) + if not chunks: + return None + patches.append((filename, ''.join(diff), chunks)) return patches def find_bases(data): @@ -89,7 +95,6 @@ c.execute("select id from _status where _name='closed'") closed = c.fetchone()[0] -#import pdb;pdb.set_trace() if len(sys.argv) == 2: query = File.objects.filter(id = sys.argv[1]) else: @@ -101,7 +106,7 @@ nodeid = c.fetchone() if not nodeid: if verbose: - print "File",nodeid,"is detached" + print "File",f.id,"is detached" continue nodeid = nodeid[0] roundup = RoundupIssue.objects.get(id=nodeid) From python-checkins at python.org Sun Mar 6 20:53:40 2011 From: python-checkins at python.org (thomas.wouters) Date: Sun, 06 Mar 2011 20:53:40 +0100 Subject: [Python-checkins] (2.7): Issue #11411: Fix typo in the Makefile that prevented 'make DESTDIR=' from Message-ID: http://hg.python.org/cpython/rev/d121681ed1cc changeset: 68305:d121681ed1cc branch: 2.7 parent: 68303:9a4f471f51ec user: Thomas Wouters date: Sun Mar 06 11:48:05 2011 -0800 summary: Issue #11411: Fix typo in the Makefile that prevented 'make DESTDIR=' from working correctly with a relative path. files: Makefile.pre.in Misc/NEWS diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1059,7 +1059,7 @@ --prefix=$(prefix) \ --install-scripts=$(BINDIR) \ --install-platlib=$(DESTSHARED) \ - --root=/$(DESTDIR) + --root=$(DESTDIR)/ # Here are a couple of targets for MacOSX again, to install a full # framework-based Python. frameworkinstall installs everything, the @@ -1131,7 +1131,7 @@ ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \ --prefix=$(prefix) \ --install-scripts=$(BINDIR) \ - --root=/$(DESTDIR) + --root=$(DESTDIR)/ # Build the toplevel Makefile Makefile.pre: Makefile.pre.in config.status diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -207,6 +207,8 @@ Build ----- +- Issue #11411: Fix 'make DESTDIR=' with a relative destination. + - Issue #10709: Add updated AIX notes in Misc/README.AIX. - Issue #11184: Fix large-file support on AIX. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 20:53:42 2011 From: python-checkins at python.org (thomas.wouters) Date: Sun, 06 Mar 2011 20:53:42 +0100 Subject: [Python-checkins] (3.1): Issue #11411: Fix typo in the Makefile that prevented 'make DESTDIR=' from Message-ID: http://hg.python.org/cpython/rev/12f0da000dc4 changeset: 68306:12f0da000dc4 branch: 3.1 parent: 68300:c7e71d6ad48f user: Thomas Wouters date: Sun Mar 06 11:49:15 2011 -0800 summary: Issue #11411: Fix typo in the Makefile that prevented 'make DESTDIR=' from working correctly with a relative path. files: Makefile.pre.in Misc/NEWS diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1035,7 +1035,7 @@ --prefix=$(prefix) \ --install-scripts=$(BINDIR) \ --install-platlib=$(DESTSHARED) \ - --root=/$(DESTDIR) + --root=$(DESTDIR)/ # Here are a couple of targets for MacOSX again, to install a full # framework-based Python. frameworkinstall installs everything, the @@ -1115,7 +1115,7 @@ ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \ --prefix=$(prefix) \ --install-scripts=$(BINDIR) \ - --root=/$(DESTDIR) + --root=$(DESTDIR)/ # Build the toplevel Makefile Makefile.pre: Makefile.pre.in config.status diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -192,6 +192,8 @@ Build ----- +- Issue #11411: Fix 'make DESTDIR=' with a relative destination. + - Issue #11184: Fix large-file support on AIX. - Issue #941346: Fix broken shared library build on AIX. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 20:53:43 2011 From: python-checkins at python.org (thomas.wouters) Date: Sun, 06 Mar 2011 20:53:43 +0100 Subject: [Python-checkins] (merge 3.1 -> 3.2): Merge 3.1. Message-ID: http://hg.python.org/cpython/rev/686df11f0a14 changeset: 68307:686df11f0a14 branch: 3.2 parent: 68301:9040278551da parent: 68306:12f0da000dc4 user: Thomas Wouters date: Sun Mar 06 11:51:24 2011 -0800 summary: Merge 3.1. files: Makefile.pre.in Misc/NEWS diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1103,7 +1103,7 @@ --prefix=$(prefix) \ --install-scripts=$(BINDIR) \ --install-platlib=$(DESTSHARED) \ - --root=/$(DESTDIR) + --root=$(DESTDIR)/ # Here are a couple of targets for MacOSX again, to install a full # framework-based Python. frameworkinstall installs everything, the @@ -1174,7 +1174,7 @@ ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \ --prefix=$(prefix) \ --install-scripts=$(BINDIR) \ - --root=/$(DESTDIR) + --root=$(DESTDIR)/ # Build the toplevel Makefile Makefile.pre: Makefile.pre.in config.status diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -70,6 +70,8 @@ Build ----- +- Issue #11411: Fix 'make DESTDIR=' with a relative destination. + - Issue #11268: Prevent Mac OS X Installer failure if Documentation package had previously been installed. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 20:53:47 2011 From: python-checkins at python.org (thomas.wouters) Date: Sun, 06 Mar 2011 20:53:47 +0100 Subject: [Python-checkins] (merge 3.2 -> default): Merge 3.2. Message-ID: http://hg.python.org/cpython/rev/bb2a9ea5c7d0 changeset: 68308:bb2a9ea5c7d0 parent: 68304:c6a8e7debbe5 parent: 68307:686df11f0a14 user: Thomas Wouters date: Sun Mar 06 11:52:15 2011 -0800 summary: Merge 3.2. files: Makefile.pre.in Misc/NEWS diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1101,7 +1101,7 @@ --prefix=$(prefix) \ --install-scripts=$(BINDIR) \ --install-platlib=$(DESTSHARED) \ - --root=/$(DESTDIR) + --root=$(DESTDIR)/ # Here are a couple of targets for MacOSX again, to install a full # framework-based Python. frameworkinstall installs everything, the @@ -1172,7 +1172,7 @@ ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \ --prefix=$(prefix) \ --install-scripts=$(BINDIR) \ - --root=/$(DESTDIR) + --root=$(DESTDIR)/ # Build the toplevel Makefile Makefile.pre: Makefile.pre.in config.status diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -154,6 +154,8 @@ Build ----- +- Issue #11411: Fix 'make DESTDIR=' with a relative destination. + - Issue #11268: Prevent Mac OS X Installer failure if Documentation package had previously been installed. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 6 22:04:48 2011 From: python-checkins at python.org (giampaolo.rodola) Date: Sun, 6 Mar 2011 22:04:48 +0100 (CET) Subject: [Python-checkins] r88761 - python/branches/py3k/Lib/test/test_ftplib.py Message-ID: <20110306210448.2AF24EEA35@mail.python.org> Author: giampaolo.rodola Date: Sun Mar 6 22:04:47 2011 New Revision: 88761 Log: Fix ResourceWarning in test_ftplib.py - patch by Nadeem Vawda Modified: python/branches/py3k/Lib/test/test_ftplib.py Modified: python/branches/py3k/Lib/test/test_ftplib.py ============================================================================== --- python/branches/py3k/Lib/test/test_ftplib.py (original) +++ python/branches/py3k/Lib/test/test_ftplib.py Sun Mar 6 22:04:47 2011 @@ -619,8 +619,8 @@ def test_source_address_passive_connection(self): port = support.find_unused_port() self.client.source_address = (HOST, port) - sock = self.client.transfercmd('list') - self.assertEqual(sock.getsockname()[1], port) + with self.client.transfercmd('list') as sock: + self.assertEqual(sock.getsockname()[1], port) def test_parse257(self): self.assertEqual(ftplib.parse257('257 "/foo/bar"'), '/foo/bar') From python-checkins at python.org Mon Mar 7 00:15:39 2011 From: python-checkins at python.org (benjamin.peterson) Date: Mon, 07 Mar 2011 00:15:39 +0100 Subject: [Python-checkins] (2.7): only do this sys.stderr replacing on CPython Message-ID: http://hg.python.org/cpython/rev/8bea7b156485 changeset: 68309:8bea7b156485 branch: 2.7 parent: 68305:d121681ed1cc user: Benjamin Peterson date: Sun Mar 06 17:08:40 2011 -0600 summary: only do this sys.stderr replacing on CPython files: Lib/lib2to3/pytree.py diff --git a/Lib/lib2to3/pytree.py b/Lib/lib2to3/pytree.py --- a/Lib/lib2to3/pytree.py +++ b/Lib/lib2to3/pytree.py @@ -743,9 +743,11 @@ else: # The reason for this is that hitting the recursion limit usually # results in some ugly messages about how RuntimeErrors are being - # ignored. - save_stderr = sys.stderr - sys.stderr = StringIO() + # ignored. We don't do this on non-CPython implementation because + # they don't have this problem. + if hasattr(sys, "getrefcount"): + save_stderr = sys.stderr + sys.stderr = StringIO() try: for count, r in self._recursive_matches(nodes, 0): if self.name: @@ -759,7 +761,8 @@ r[self.name] = nodes[:count] yield count, r finally: - sys.stderr = save_stderr + if hasattr(sys, "getrefcount"): + sys.stderr = save_stderr def _iterative_matches(self, nodes): """Helper to iteratively yield the matches.""" -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 7 00:15:39 2011 From: python-checkins at python.org (benjamin.peterson) Date: Mon, 07 Mar 2011 00:15:39 +0100 Subject: [Python-checkins] (3.1): only do this sys.stderr replacing on CPython Message-ID: http://hg.python.org/cpython/rev/7d442fd36c96 changeset: 68310:7d442fd36c96 branch: 3.1 parent: 68306:12f0da000dc4 user: Benjamin Peterson date: Sun Mar 06 17:14:30 2011 -0600 summary: only do this sys.stderr replacing on CPython files: Lib/lib2to3/pytree.py diff --git a/Lib/lib2to3/pytree.py b/Lib/lib2to3/pytree.py --- a/Lib/lib2to3/pytree.py +++ b/Lib/lib2to3/pytree.py @@ -743,9 +743,11 @@ else: # The reason for this is that hitting the recursion limit usually # results in some ugly messages about how RuntimeErrors are being - # ignored. - save_stderr = sys.stderr - sys.stderr = StringIO() + # ignored. We only have to do this on CPython, though, because other + # implementations don't have this nasty bug in the first place. + if hasattr(sys, "getrefcount"): + save_stderr = sys.stderr + sys.stderr = StringIO() try: for count, r in self._recursive_matches(nodes, 0): if self.name: @@ -759,7 +761,8 @@ r[self.name] = nodes[:count] yield count, r finally: - sys.stderr = save_stderr + if hasattr(sys, "getrefcount"): + sys.stderr = save_stderr def _iterative_matches(self, nodes): """Helper to iteratively yield the matches.""" -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 7 00:15:40 2011 From: python-checkins at python.org (benjamin.peterson) Date: Mon, 07 Mar 2011 00:15:40 +0100 Subject: [Python-checkins] (merge 3.1 -> default): merge 3.1 Message-ID: http://hg.python.org/cpython/rev/6a7c312cc3ff changeset: 68311:6a7c312cc3ff parent: 68308:bb2a9ea5c7d0 parent: 68310:7d442fd36c96 user: Benjamin Peterson date: Sun Mar 06 17:15:06 2011 -0600 summary: merge 3.1 files: diff --git a/Lib/lib2to3/pytree.py b/Lib/lib2to3/pytree.py --- a/Lib/lib2to3/pytree.py +++ b/Lib/lib2to3/pytree.py @@ -743,9 +743,11 @@ else: # The reason for this is that hitting the recursion limit usually # results in some ugly messages about how RuntimeErrors are being - # ignored. - save_stderr = sys.stderr - sys.stderr = StringIO() + # ignored. We only have to do this on CPython, though, because other + # implementations don't have this nasty bug in the first place. + if hasattr(sys, "getrefcount"): + save_stderr = sys.stderr + sys.stderr = StringIO() try: for count, r in self._recursive_matches(nodes, 0): if self.name: @@ -759,7 +761,8 @@ r[self.name] = nodes[:count] yield count, r finally: - sys.stderr = save_stderr + if hasattr(sys, "getrefcount"): + sys.stderr = save_stderr def _iterative_matches(self, nodes): """Helper to iteratively yield the matches.""" -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 7 01:02:52 2011 From: python-checkins at python.org (benjamin.peterson) Date: Mon, 07 Mar 2011 01:02:52 +0100 Subject: [Python-checkins] (merge 3.1 -> 3.2): merge 3.1 Message-ID: http://hg.python.org/cpython/rev/fd0855e2c8cf changeset: 68312:fd0855e2c8cf branch: 3.2 parent: 68307:686df11f0a14 parent: 68310:7d442fd36c96 user: Benjamin Peterson date: Sun Mar 06 18:04:10 2011 -0600 summary: merge 3.1 files: diff --git a/Lib/lib2to3/pytree.py b/Lib/lib2to3/pytree.py --- a/Lib/lib2to3/pytree.py +++ b/Lib/lib2to3/pytree.py @@ -743,9 +743,11 @@ else: # The reason for this is that hitting the recursion limit usually # results in some ugly messages about how RuntimeErrors are being - # ignored. - save_stderr = sys.stderr - sys.stderr = StringIO() + # ignored. We only have to do this on CPython, though, because other + # implementations don't have this nasty bug in the first place. + if hasattr(sys, "getrefcount"): + save_stderr = sys.stderr + sys.stderr = StringIO() try: for count, r in self._recursive_matches(nodes, 0): if self.name: @@ -759,7 +761,8 @@ r[self.name] = nodes[:count] yield count, r finally: - sys.stderr = save_stderr + if hasattr(sys, "getrefcount"): + sys.stderr = save_stderr def _iterative_matches(self, nodes): """Helper to iteratively yield the matches.""" -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 7 01:09:20 2011 From: python-checkins at python.org (benjamin.peterson) Date: Mon, 07 Mar 2011 01:09:20 +0100 Subject: [Python-checkins] (merge 3.2 -> default): merge 3.2 Message-ID: http://hg.python.org/cpython/rev/5973743a52a1 changeset: 68313:5973743a52a1 parent: 68311:6a7c312cc3ff parent: 68312:fd0855e2c8cf user: Benjamin Peterson date: Sun Mar 06 18:10:58 2011 -0600 summary: merge 3.2 files: -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Mon Mar 7 05:08:47 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Mon, 07 Mar 2011 05:08:47 +0100 Subject: [Python-checkins] Daily reference leaks (5973743a52a1): sum=-323 Message-ID: results for 5973743a52a1 on branch "default" -------------------------------------------- test_pydoc leaked [0, 0, -323] references, sum=-323 Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflog5utO_M', '-x'] From python-checkins at python.org Mon Mar 7 08:33:44 2011 From: python-checkins at python.org (georg.brandl) Date: Mon, 07 Mar 2011 08:33:44 +0100 Subject: [Python-checkins] Name c -> cls in example. Message-ID: http://hg.python.org/cpython/rev/88fe1ac48460 changeset: 68314:88fe1ac48460 user: Georg Brandl date: Mon Mar 07 08:31:52 2011 +0100 summary: Name c -> cls in example. files: Doc/tutorial/classes.rst diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -673,9 +673,9 @@ class D(C): pass - for c in [B, C, D]: + for cls in [B, C, D]: try: - raise c() + raise cls() except D: print("D") except C: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 7 09:47:20 2011 From: python-checkins at python.org (martin.v.loewis) Date: Mon, 7 Mar 2011 09:47:20 +0100 (CET) Subject: [Python-checkins] r88762 - in tracker/instances/python-dev: detectors/rietveldreactor.py scripts/addpatchsets Message-ID: <20110307084720.001ACEE99B@mail.python.org> Author: martin.v.loewis Date: Mon Mar 7 09:47:19 2011 New Revision: 88762 Log: Update CC list from nosy list. Modified: tracker/instances/python-dev/detectors/rietveldreactor.py tracker/instances/python-dev/scripts/addpatchsets Modified: tracker/instances/python-dev/detectors/rietveldreactor.py ============================================================================== --- tracker/instances/python-dev/detectors/rietveldreactor.py (original) +++ tracker/instances/python-dev/detectors/rietveldreactor.py Mon Mar 7 09:47:19 2011 @@ -15,7 +15,21 @@ "values(%s, %s, %s, '!', '', '', false, true, false, now(), now())", (nodeid, username, email)) +def update_issue_cc(db, cl, nodeid, oldvalues): + if 'nosy' not in oldvalues: + return + c = db.cursor + c.execute("select count(*) from codereview_issue where id=%s", (nodeid,)) + if c.fetchone()[0] == 0: + return + cc = [] + for user in db.issue.get(nodeid, 'nosy'): + cc.append(db.user.get(user, 'address')) + cc = base64.encodestring(cPickle.dumps(cc)) + c.execute("update codereview_issue set cc=%s where id=%s", (cc, nodeid)) + def init(db): db.user.react('create', create_django_user) + db.issue.react('set', update_issue_cc) # XXX react to email changes, roles # XXX react to subject, closed changes on issues Modified: tracker/instances/python-dev/scripts/addpatchsets ============================================================================== --- tracker/instances/python-dev/scripts/addpatchsets (original) +++ tracker/instances/python-dev/scripts/addpatchsets Mon Mar 7 09:47:19 2011 @@ -126,9 +126,12 @@ continue issue = Issue.objects.filter(id=nodeid) if not issue: + c.execute("select _address from _user,issue_nosy where nodeid=%s and id=linkid", + (nodeid,)) + cc = [r[0] for r in c.fetchall()] c.execute("select _title, _creator from _issue where id=%s", (nodeid,)) title, creator = c.fetchone() - issue = Issue(id=nodeid, subject=title, owner_id=creator) + issue = Issue(id=nodeid, subject=title, owner_id=creator, cc=cc) issue.put() else: issue = issue[0] From python-checkins at python.org Mon Mar 7 09:59:16 2011 From: python-checkins at python.org (martin.v.loewis) Date: Mon, 7 Mar 2011 09:59:16 +0100 (CET) Subject: [Python-checkins] r88763 - tracker/instances/python-dev/scripts/updatecc Message-ID: <20110307085916.4A46FEE98F@mail.python.org> Author: martin.v.loewis Date: Mon Mar 7 09:59:16 2011 New Revision: 88763 Log: Add script to fill out issue CC. Added: tracker/instances/python-dev/scripts/updatecc (contents, props changed) Added: tracker/instances/python-dev/scripts/updatecc ============================================================================== --- (empty file) +++ tracker/instances/python-dev/scripts/updatecc Mon Mar 7 09:59:16 2011 @@ -0,0 +1,18 @@ +#!/usr/bin/python +import sys, os, urllib2, logging, datetime +basedir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +sys.path.append(basedir+"/rietveld") +os.environ["DJANGO_SETTINGS_MODULE"]="settings" +import gae2django +gae2django.install(server_software='Django') + +from codereview.models import (Repository, Branch, Patch, + PatchSet, Issue, Content) +from django.db import connection, transaction +c = connection.cursor() + +for issue in Issue.objects.all(): + c.execute("select _address from _user,issue_nosy where nodeid=%s and id=linkid", + (issue.id,)) + issue.cc = [r[0] for r in c.fetchall()] + issue.save() From python-checkins at python.org Mon Mar 7 10:11:28 2011 From: python-checkins at python.org (martin.v.loewis) Date: Mon, 7 Mar 2011 10:11:28 +0100 (CET) Subject: [Python-checkins] r88764 - tracker/instances/python-dev/html/file.item.html Message-ID: <20110307091128.2B754EE983@mail.python.org> Author: martin.v.loewis Date: Mon Mar 7 10:11:28 2011 New Revision: 88764 Log: Issue 355: Drop branch and revision view of files. Modified: tracker/instances/python-dev/html/file.item.html Modified: tracker/instances/python-dev/html/file.item.html ============================================================================== --- tracker/instances/python-dev/html/file.item.html (original) +++ tracker/instances/python-dev/html/file.item.html Mon Mar 7 10:11:28 2011 @@ -34,12 +34,6 @@ for security reasons, it's not permitted to set content type to text/html. - Tracker Branch - - - Tracker Revision - - SpamBayes Score From python-checkins at python.org Mon Mar 7 10:57:41 2011 From: python-checkins at python.org (ezio.melotti) Date: Mon, 7 Mar 2011 10:57:41 +0100 (CET) Subject: [Python-checkins] r88765 - in tracker/instances/python-dev/html: issue.item.html page.html Message-ID: <20110307095741.AD85FEE9C4@mail.python.org> Author: ezio.melotti Date: Mon Mar 7 10:57:41 2011 New Revision: 88765 Log: #377: Update the links in the tracker to point to the devguide. Modified: tracker/instances/python-dev/html/issue.item.html tracker/instances/python-dev/html/page.html Modified: tracker/instances/python-dev/html/issue.item.html ============================================================================== --- tracker/instances/python-dev/html/issue.item.html (original) +++ tracker/instances/python-dev/html/issue.item.html Mon Mar 7 10:57:41 2011 @@ -46,7 +46,9 @@
classification - + + Type: - + @@ -82,19 +87,22 @@
process
Title: + Title: title @@ -57,22 +59,25 @@
- : - type - : + Stage: componentsstage
- : + Components: components - : + Versions: versions
- - - - + + + + - + - @@ -150,16 +163,23 @@ - - + + + + + + +
- : - statusResolution:resolution + Status: + status + Resolution: + resolution
- Dependencies: - + Dependencies: @@ -103,9 +111,8 @@ - Superseder: - + Superseder: @@ -121,7 +128,10 @@
Assigned To: + Assigned To: + Nosy List: + + Nosy List:
- : + Priority: priority + + Keywords: + keywords
Comment: + Comment: + Modified: tracker/instances/python-dev/html/page.html ============================================================================== --- tracker/instances/python-dev/html/page.html (original) +++ tracker/instances/python-dev/html/page.html Mon Mar 7 10:57:41 2011 @@ -74,7 +74,7 @@
  • Community
  • PSF
  • Links
  • -
  • Core Development
  • +
  • Core Development
  • Issue Tracker
    • @@ -242,8 +242,12 @@
    • Help
    • From merwok at netwok.org Mon Mar 7 15:36:38 2011 From: merwok at netwok.org (=?UTF-8?B?w4lyaWMgQXJhdWpv?=) Date: Mon, 07 Mar 2011 15:36:38 +0100 Subject: [Python-checkins] [Python-Dev] devguide: More miscellaneous review comments. In-Reply-To: References: Message-ID: <4D74ED76.2040005@netwok.org> > For non-Windows, get people to run "make patchcheck". The non-non-Windows equivalent should be something like ?./python.exe Tools/scripts/patchcheck.py? (I don?t remember if the leading ./ is required). FTR, what the make target is a bit more complicated: ?$(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py? Cheers From python-checkins at python.org Mon Mar 7 19:22:58 2011 From: python-checkins at python.org (vinay.sajip) Date: Mon, 07 Mar 2011 19:22:58 +0100 Subject: [Python-checkins] (2.6): Issue #11424: Fix bug in determining child loggers. Message-ID: http://hg.python.org/cpython/rev/b9d76846bb1c changeset: 68315:b9d76846bb1c branch: 2.6 parent: 68264:50166a4bcfc6 user: Vinay Sajip date: Mon Mar 07 15:02:11 2011 +0000 summary: Issue #11424: Fix bug in determining child loggers. files: Lib/logging/config.py Lib/test/test_logging.py diff --git a/Lib/logging/config.py b/Lib/logging/config.py --- a/Lib/logging/config.py +++ b/Lib/logging/config.py @@ -232,14 +232,14 @@ propagate = 1 logger = logging.getLogger(qn) if qn in existing: - i = existing.index(qn) + i = existing.index(qn) + 1 # start with the entry after qn prefixed = qn + "." pflen = len(prefixed) num_existing = len(existing) - i = i + 1 # look at the entry after qn - while (i < num_existing) and (existing[i][:pflen] == prefixed): - child_loggers.append(existing[i]) - i = i + 1 + while i < num_existing: + if existing[i][:pflen] == prefixed: + child_loggers.append(existing[i]) + i += 1 existing.remove(qn) if "level" in opts: level = cp.get(sectname, "level") diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -558,6 +558,38 @@ datefmt= """ + # config1a moves the handler to the root. + config1a = """ + [loggers] + keys=root,parser + + [handlers] + keys=hand1 + + [formatters] + keys=form1 + + [logger_root] + level=WARNING + handlers=hand1 + + [logger_parser] + level=DEBUG + handlers= + propagate=1 + qualname=compiler.parser + + [handler_hand1] + class=StreamHandler + level=NOTSET + formatter=form1 + args=(sys.stdout,) + + [formatter_form1] + format=%(levelname)s ++ %(message)s + datefmt= + """ + # config2 has a subtle configuration error that should be reported config2 = config1.replace("sys.stdout", "sys.stbout") @@ -636,6 +668,44 @@ datefmt= """ + # config7 adds a compiler logger. + config7 = """ + [loggers] + keys=root,parser,compiler + + [handlers] + keys=hand1 + + [formatters] + keys=form1 + + [logger_root] + level=WARNING + handlers=hand1 + + [logger_compiler] + level=DEBUG + handlers= + propagate=1 + qualname=compiler + + [logger_parser] + level=DEBUG + handlers= + propagate=1 + qualname=compiler.parser + + [handler_hand1] + class=StreamHandler + level=NOTSET + formatter=form1 + args=(sys.stdout,) + + [formatter_form1] + format=%(levelname)s ++ %(message)s + datefmt= + """ + def apply_config(self, conf): try: fn = tempfile.mktemp(".ini") @@ -705,6 +775,49 @@ def test_config6_ok(self): self.test_config1_ok(config=self.config6) + def test_config7_ok(self): + with captured_stdout() as output: + self.apply_config(self.config1a) + logger = logging.getLogger("compiler.parser") + # See issue #11424. compiler-hyphenated sorts + # between compiler and compiler.xyz and this + # was preventing compiler.xyz from being included + # in the child loggers of compiler because of an + # overzealous loop termination condition. + hyphenated = logging.getLogger('compiler-hyphenated') + # All will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + hyphenated.critical(self.next_message()) + self.assert_log_lines([ + ('INFO', '1'), + ('ERROR', '2'), + ('CRITICAL', '3'), + ], stream=output) + # Original logger output is empty. + self.assert_log_lines([]) + with captured_stdout() as output: + self.apply_config(self.config7) + logger = logging.getLogger("compiler.parser") + self.assertFalse(logger.disabled) + # Both will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + logger = logging.getLogger("compiler.lexer") + # Both will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + # Will not appear + hyphenated.critical(self.next_message()) + self.assert_log_lines([ + ('INFO', '4'), + ('ERROR', '5'), + ('INFO', '6'), + ('ERROR', '7'), + ], stream=output) + # Original logger output is empty. + self.assert_log_lines([]) + class LogRecordStreamHandler(StreamRequestHandler): """Handler for a streaming logging request. It saves the log message in the -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 7 19:23:05 2011 From: python-checkins at python.org (vinay.sajip) Date: Mon, 07 Mar 2011 19:23:05 +0100 Subject: [Python-checkins] (3.2): #Issue 11424: added equivalent fixes for dictConfig. Message-ID: http://hg.python.org/cpython/rev/27bf21522742 changeset: 68319:27bf21522742 branch: 3.2 user: Vinay Sajip date: Mon Mar 07 18:02:57 2011 +0000 summary: #Issue 11424: added equivalent fixes for dictConfig. files: Lib/logging/config.py Lib/test/test_logging.py diff --git a/Lib/logging/config.py b/Lib/logging/config.py --- a/Lib/logging/config.py +++ b/Lib/logging/config.py @@ -596,15 +596,14 @@ loggers = config.get('loggers', EMPTY_DICT) for name in loggers: if name in existing: - i = existing.index(name) + i = existing.index(name) + 1 # look after name prefixed = name + "." pflen = len(prefixed) num_existing = len(existing) - i = i + 1 # look at the entry after name - while (i < num_existing) and\ - (existing[i][:pflen] == prefixed): - child_loggers.append(existing[i]) - i = i + 1 + while i < num_existing: + if existing[i][:pflen] == prefixed: + child_loggers.append(existing[i]) + i += 1 existing.remove(name) try: self.configure_logger(name, loggers[name]) diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -1170,6 +1170,33 @@ }, } + # config1a moves the handler to the root. Used with config8a + config1a = { + 'version': 1, + 'formatters': { + 'form1' : { + 'format' : '%(levelname)s ++ %(message)s', + }, + }, + 'handlers' : { + 'hand1' : { + 'class' : 'logging.StreamHandler', + 'formatter' : 'form1', + 'level' : 'NOTSET', + 'stream' : 'ext://sys.stdout', + }, + }, + 'loggers' : { + 'compiler.parser' : { + 'level' : 'DEBUG', + }, + }, + 'root' : { + 'level' : 'WARNING', + 'handlers' : ['hand1'], + }, + } + # config2 has a subtle configuration error that should be reported config2 = { 'version': 1, @@ -1420,6 +1447,9 @@ }, } + # config8 defines both compiler and compiler.lexer + # so compiler.parser should not be disabled (since + # compiler is defined) config8 = { 'version': 1, 'disable_existing_loggers' : False, @@ -1449,6 +1479,36 @@ }, } + # config8a disables existing loggers + config8a = { + 'version': 1, + 'disable_existing_loggers' : True, + 'formatters': { + 'form1' : { + 'format' : '%(levelname)s ++ %(message)s', + }, + }, + 'handlers' : { + 'hand1' : { + 'class' : 'logging.StreamHandler', + 'formatter' : 'form1', + 'level' : 'NOTSET', + 'stream' : 'ext://sys.stdout', + }, + }, + 'loggers' : { + 'compiler' : { + 'level' : 'DEBUG', + 'handlers' : ['hand1'], + }, + 'compiler.lexer' : { + }, + }, + 'root' : { + 'level' : 'WARNING', + }, + } + config9 = { 'version': 1, 'formatters': { @@ -1749,7 +1809,7 @@ with captured_stdout() as output: self.apply_config(self.config1) logger = logging.getLogger("compiler.parser") - # Both will output a message + # All will output a message logger.info(self.next_message()) logger.error(self.next_message()) self.assert_log_lines([ @@ -1778,6 +1838,49 @@ # Original logger output is empty. self.assert_log_lines([]) + def test_config_8a_ok(self): + with captured_stdout() as output: + self.apply_config(self.config1a) + logger = logging.getLogger("compiler.parser") + # See issue #11424. compiler-hyphenated sorts + # between compiler and compiler.xyz and this + # was preventing compiler.xyz from being included + # in the child loggers of compiler because of an + # overzealous loop termination condition. + hyphenated = logging.getLogger('compiler-hyphenated') + # All will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + hyphenated.critical(self.next_message()) + self.assert_log_lines([ + ('INFO', '1'), + ('ERROR', '2'), + ('CRITICAL', '3'), + ], stream=output) + # Original logger output is empty. + self.assert_log_lines([]) + with captured_stdout() as output: + self.apply_config(self.config8a) + logger = logging.getLogger("compiler.parser") + self.assertFalse(logger.disabled) + # Both will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + logger = logging.getLogger("compiler.lexer") + # Both will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + # Will not appear + hyphenated.critical(self.next_message()) + self.assert_log_lines([ + ('INFO', '4'), + ('ERROR', '5'), + ('INFO', '6'), + ('ERROR', '7'), + ], stream=output) + # Original logger output is empty. + self.assert_log_lines([]) + def test_config_9_ok(self): with captured_stdout() as output: self.apply_config(self.config9) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 7 19:23:01 2011 From: python-checkins at python.org (vinay.sajip) Date: Mon, 07 Mar 2011 19:23:01 +0100 Subject: [Python-checkins] (merge 2.6 -> 2.7): #Issue 11424: merged fix from 2.6. Message-ID: http://hg.python.org/cpython/rev/9dad160206a3 changeset: 68316:9dad160206a3 branch: 2.7 parent: 68309:8bea7b156485 parent: 68315:b9d76846bb1c user: Vinay Sajip date: Mon Mar 07 15:07:58 2011 +0000 summary: #Issue 11424: merged fix from 2.6. files: Lib/logging/config.py Lib/test/test_logging.py diff --git a/Lib/logging/config.py b/Lib/logging/config.py --- a/Lib/logging/config.py +++ b/Lib/logging/config.py @@ -226,14 +226,14 @@ propagate = 1 logger = logging.getLogger(qn) if qn in existing: - i = existing.index(qn) + i = existing.index(qn) + 1 # start with the entry after qn prefixed = qn + "." pflen = len(prefixed) num_existing = len(existing) - i = i + 1 # look at the entry after qn - while (i < num_existing) and (existing[i][:pflen] == prefixed): - child_loggers.append(existing[i]) - i = i + 1 + while i < num_existing: + if existing[i][:pflen] == prefixed: + child_loggers.append(existing[i]) + i += 1 existing.remove(qn) if "level" in opts: level = cp.get(sectname, "level") diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -562,6 +562,38 @@ datefmt= """ + # config1a moves the handler to the root. + config1a = """ + [loggers] + keys=root,parser + + [handlers] + keys=hand1 + + [formatters] + keys=form1 + + [logger_root] + level=WARNING + handlers=hand1 + + [logger_parser] + level=DEBUG + handlers= + propagate=1 + qualname=compiler.parser + + [handler_hand1] + class=StreamHandler + level=NOTSET + formatter=form1 + args=(sys.stdout,) + + [formatter_form1] + format=%(levelname)s ++ %(message)s + datefmt= + """ + # config2 has a subtle configuration error that should be reported config2 = config1.replace("sys.stdout", "sys.stbout") @@ -640,6 +672,44 @@ datefmt= """ + # config7 adds a compiler logger. + config7 = """ + [loggers] + keys=root,parser,compiler + + [handlers] + keys=hand1 + + [formatters] + keys=form1 + + [logger_root] + level=WARNING + handlers=hand1 + + [logger_compiler] + level=DEBUG + handlers= + propagate=1 + qualname=compiler + + [logger_parser] + level=DEBUG + handlers= + propagate=1 + qualname=compiler.parser + + [handler_hand1] + class=StreamHandler + level=NOTSET + formatter=form1 + args=(sys.stdout,) + + [formatter_form1] + format=%(levelname)s ++ %(message)s + datefmt= + """ + def apply_config(self, conf): file = cStringIO.StringIO(textwrap.dedent(conf)) logging.config.fileConfig(file) @@ -703,6 +773,49 @@ def test_config6_ok(self): self.test_config1_ok(config=self.config6) + def test_config7_ok(self): + with captured_stdout() as output: + self.apply_config(self.config1a) + logger = logging.getLogger("compiler.parser") + # See issue #11424. compiler-hyphenated sorts + # between compiler and compiler.xyz and this + # was preventing compiler.xyz from being included + # in the child loggers of compiler because of an + # overzealous loop termination condition. + hyphenated = logging.getLogger('compiler-hyphenated') + # All will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + hyphenated.critical(self.next_message()) + self.assert_log_lines([ + ('INFO', '1'), + ('ERROR', '2'), + ('CRITICAL', '3'), + ], stream=output) + # Original logger output is empty. + self.assert_log_lines([]) + with captured_stdout() as output: + self.apply_config(self.config7) + logger = logging.getLogger("compiler.parser") + self.assertFalse(logger.disabled) + # Both will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + logger = logging.getLogger("compiler.lexer") + # Both will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + # Will not appear + hyphenated.critical(self.next_message()) + self.assert_log_lines([ + ('INFO', '4'), + ('ERROR', '5'), + ('INFO', '6'), + ('ERROR', '7'), + ], stream=output) + # Original logger output is empty. + self.assert_log_lines([]) + class LogRecordStreamHandler(StreamRequestHandler): """Handler for a streaming logging request. It saves the log message in the -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 7 19:23:02 2011 From: python-checkins at python.org (vinay.sajip) Date: Mon, 07 Mar 2011 19:23:02 +0100 Subject: [Python-checkins] (3.1): Issue #11424: Fix bug in determining child loggers. Message-ID: http://hg.python.org/cpython/rev/d9125bf3bac5 changeset: 68317:d9125bf3bac5 branch: 3.1 parent: 68310:7d442fd36c96 user: Vinay Sajip date: Mon Mar 07 17:49:33 2011 +0000 summary: Issue #11424: Fix bug in determining child loggers. files: Lib/logging/config.py Lib/test/test_logging.py diff --git a/Lib/logging/config.py b/Lib/logging/config.py --- a/Lib/logging/config.py +++ b/Lib/logging/config.py @@ -226,14 +226,14 @@ propagate = 1 logger = logging.getLogger(qn) if qn in existing: - i = existing.index(qn) + i = existing.index(qn) + 1 # start with the entry after qn prefixed = qn + "." pflen = len(prefixed) num_existing = len(existing) - i = i + 1 # look at the entry after qn - while (i < num_existing) and (existing[i][:pflen] == prefixed): - child_loggers.append(existing[i]) - i = i + 1 + while i < num_existing: + if existing[i][:pflen] == prefixed: + child_loggers.append(existing[i]) + i += 1 existing.remove(qn) if "level" in opts: level = cp.get(sectname, "level") diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -553,6 +553,38 @@ datefmt= """ + # config1a moves the handler to the root. + config1a = """ + [loggers] + keys=root,parser + + [handlers] + keys=hand1 + + [formatters] + keys=form1 + + [logger_root] + level=WARNING + handlers=hand1 + + [logger_parser] + level=DEBUG + handlers= + propagate=1 + qualname=compiler.parser + + [handler_hand1] + class=StreamHandler + level=NOTSET + formatter=form1 + args=(sys.stdout,) + + [formatter_form1] + format=%(levelname)s ++ %(message)s + datefmt= + """ + # config2 has a subtle configuration error that should be reported config2 = config1.replace("sys.stdout", "sys.stbout") @@ -631,6 +663,44 @@ datefmt= """ + # config7 adds a compiler logger. + config7 = """ + [loggers] + keys=root,parser,compiler + + [handlers] + keys=hand1 + + [formatters] + keys=form1 + + [logger_root] + level=WARNING + handlers=hand1 + + [logger_compiler] + level=DEBUG + handlers= + propagate=1 + qualname=compiler + + [logger_parser] + level=DEBUG + handlers= + propagate=1 + qualname=compiler.parser + + [handler_hand1] + class=StreamHandler + level=NOTSET + formatter=form1 + args=(sys.stdout,) + + [formatter_form1] + format=%(levelname)s ++ %(message)s + datefmt= + """ + def apply_config(self, conf): try: fn = tempfile.mktemp(".ini") @@ -700,6 +770,49 @@ def test_config6_ok(self): self.test_config1_ok(config=self.config6) + def test_config7_ok(self): + with captured_stdout() as output: + self.apply_config(self.config1a) + logger = logging.getLogger("compiler.parser") + # See issue #11424. compiler-hyphenated sorts + # between compiler and compiler.xyz and this + # was preventing compiler.xyz from being included + # in the child loggers of compiler because of an + # overzealous loop termination condition. + hyphenated = logging.getLogger('compiler-hyphenated') + # All will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + hyphenated.critical(self.next_message()) + self.assert_log_lines([ + ('INFO', '1'), + ('ERROR', '2'), + ('CRITICAL', '3'), + ], stream=output) + # Original logger output is empty. + self.assert_log_lines([]) + with captured_stdout() as output: + self.apply_config(self.config7) + logger = logging.getLogger("compiler.parser") + self.assertFalse(logger.disabled) + # Both will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + logger = logging.getLogger("compiler.lexer") + # Both will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + # Will not appear + hyphenated.critical(self.next_message()) + self.assert_log_lines([ + ('INFO', '4'), + ('ERROR', '5'), + ('INFO', '6'), + ('ERROR', '7'), + ], stream=output) + # Original logger output is empty. + self.assert_log_lines([]) + class LogRecordStreamHandler(StreamRequestHandler): """Handler for a streaming logging request. It saves the log message in the -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 7 19:23:03 2011 From: python-checkins at python.org (vinay.sajip) Date: Mon, 07 Mar 2011 19:23:03 +0100 Subject: [Python-checkins] (merge 3.1 -> 3.2): #Issue 11424: merged fix from 3.1. Message-ID: http://hg.python.org/cpython/rev/e607d25b4462 changeset: 68318:e607d25b4462 branch: 3.2 parent: 68312:fd0855e2c8cf parent: 68317:d9125bf3bac5 user: Vinay Sajip date: Mon Mar 07 17:59:50 2011 +0000 summary: #Issue 11424: merged fix from 3.1. files: Lib/logging/config.py Lib/test/test_logging.py diff --git a/Lib/logging/config.py b/Lib/logging/config.py --- a/Lib/logging/config.py +++ b/Lib/logging/config.py @@ -226,14 +226,14 @@ propagate = section.getint("propagate", fallback=1) logger = logging.getLogger(qn) if qn in existing: - i = existing.index(qn) + i = existing.index(qn) + 1 # start with the entry after qn prefixed = qn + "." pflen = len(prefixed) num_existing = len(existing) - i = i + 1 # look at the entry after qn - while (i < num_existing) and (existing[i][:pflen] == prefixed): - child_loggers.append(existing[i]) - i = i + 1 + while i < num_existing: + if existing[i][:pflen] == prefixed: + child_loggers.append(existing[i]) + i += 1 existing.remove(qn) if "level" in section: level = section["level"] diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -611,6 +611,38 @@ datefmt= """ + # config1a moves the handler to the root. + config1a = """ + [loggers] + keys=root,parser + + [handlers] + keys=hand1 + + [formatters] + keys=form1 + + [logger_root] + level=WARNING + handlers=hand1 + + [logger_parser] + level=DEBUG + handlers= + propagate=1 + qualname=compiler.parser + + [handler_hand1] + class=StreamHandler + level=NOTSET + formatter=form1 + args=(sys.stdout,) + + [formatter_form1] + format=%(levelname)s ++ %(message)s + datefmt= + """ + # config2 has a subtle configuration error that should be reported config2 = config1.replace("sys.stdout", "sys.stbout") @@ -689,6 +721,44 @@ datefmt= """ + # config7 adds a compiler logger. + config7 = """ + [loggers] + keys=root,parser,compiler + + [handlers] + keys=hand1 + + [formatters] + keys=form1 + + [logger_root] + level=WARNING + handlers=hand1 + + [logger_compiler] + level=DEBUG + handlers= + propagate=1 + qualname=compiler + + [logger_parser] + level=DEBUG + handlers= + propagate=1 + qualname=compiler.parser + + [handler_hand1] + class=StreamHandler + level=NOTSET + formatter=form1 + args=(sys.stdout,) + + [formatter_form1] + format=%(levelname)s ++ %(message)s + datefmt= + """ + def apply_config(self, conf): file = io.StringIO(textwrap.dedent(conf)) logging.config.fileConfig(file) @@ -752,6 +822,49 @@ def test_config6_ok(self): self.test_config1_ok(config=self.config6) + def test_config7_ok(self): + with captured_stdout() as output: + self.apply_config(self.config1a) + logger = logging.getLogger("compiler.parser") + # See issue #11424. compiler-hyphenated sorts + # between compiler and compiler.xyz and this + # was preventing compiler.xyz from being included + # in the child loggers of compiler because of an + # overzealous loop termination condition. + hyphenated = logging.getLogger('compiler-hyphenated') + # All will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + hyphenated.critical(self.next_message()) + self.assert_log_lines([ + ('INFO', '1'), + ('ERROR', '2'), + ('CRITICAL', '3'), + ], stream=output) + # Original logger output is empty. + self.assert_log_lines([]) + with captured_stdout() as output: + self.apply_config(self.config7) + logger = logging.getLogger("compiler.parser") + self.assertFalse(logger.disabled) + # Both will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + logger = logging.getLogger("compiler.lexer") + # Both will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + # Will not appear + hyphenated.critical(self.next_message()) + self.assert_log_lines([ + ('INFO', '4'), + ('ERROR', '5'), + ('INFO', '6'), + ('ERROR', '7'), + ], stream=output) + # Original logger output is empty. + self.assert_log_lines([]) + class LogRecordStreamHandler(StreamRequestHandler): """Handler for a streaming logging request. It saves the log message in the -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 7 19:23:13 2011 From: python-checkins at python.org (vinay.sajip) Date: Mon, 07 Mar 2011 19:23:13 +0100 Subject: [Python-checkins] (merge 3.2 -> default): Issue #11424: Merged fix from 3.2. Message-ID: http://hg.python.org/cpython/rev/b0883c15b28c changeset: 68320:b0883c15b28c parent: 68314:88fe1ac48460 parent: 68319:27bf21522742 user: Vinay Sajip date: Mon Mar 07 18:14:36 2011 +0000 summary: Issue #11424: Merged fix from 3.2. files: Lib/test/test_logging.py diff --git a/Lib/logging/config.py b/Lib/logging/config.py --- a/Lib/logging/config.py +++ b/Lib/logging/config.py @@ -226,14 +226,14 @@ propagate = section.getint("propagate", fallback=1) logger = logging.getLogger(qn) if qn in existing: - i = existing.index(qn) + i = existing.index(qn) + 1 # start with the entry after qn prefixed = qn + "." pflen = len(prefixed) num_existing = len(existing) - i = i + 1 # look at the entry after qn - while (i < num_existing) and (existing[i][:pflen] == prefixed): - child_loggers.append(existing[i]) - i = i + 1 + while i < num_existing: + if existing[i][:pflen] == prefixed: + child_loggers.append(existing[i]) + i += 1 existing.remove(qn) if "level" in section: level = section["level"] @@ -596,15 +596,14 @@ loggers = config.get('loggers', EMPTY_DICT) for name in loggers: if name in existing: - i = existing.index(name) + i = existing.index(name) + 1 # look after name prefixed = name + "." pflen = len(prefixed) num_existing = len(existing) - i = i + 1 # look at the entry after name - while (i < num_existing) and\ - (existing[i][:pflen] == prefixed): - child_loggers.append(existing[i]) - i = i + 1 + while i < num_existing: + if existing[i][:pflen] == prefixed: + child_loggers.append(existing[i]) + i += 1 existing.remove(name) try: self.configure_logger(name, loggers[name]) diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -611,6 +611,38 @@ datefmt= """ + # config1a moves the handler to the root. + config1a = """ + [loggers] + keys=root,parser + + [handlers] + keys=hand1 + + [formatters] + keys=form1 + + [logger_root] + level=WARNING + handlers=hand1 + + [logger_parser] + level=DEBUG + handlers= + propagate=1 + qualname=compiler.parser + + [handler_hand1] + class=StreamHandler + level=NOTSET + formatter=form1 + args=(sys.stdout,) + + [formatter_form1] + format=%(levelname)s ++ %(message)s + datefmt= + """ + # config2 has a subtle configuration error that should be reported config2 = config1.replace("sys.stdout", "sys.stbout") @@ -689,6 +721,44 @@ datefmt= """ + # config7 adds a compiler logger. + config7 = """ + [loggers] + keys=root,parser,compiler + + [handlers] + keys=hand1 + + [formatters] + keys=form1 + + [logger_root] + level=WARNING + handlers=hand1 + + [logger_compiler] + level=DEBUG + handlers= + propagate=1 + qualname=compiler + + [logger_parser] + level=DEBUG + handlers= + propagate=1 + qualname=compiler.parser + + [handler_hand1] + class=StreamHandler + level=NOTSET + formatter=form1 + args=(sys.stdout,) + + [formatter_form1] + format=%(levelname)s ++ %(message)s + datefmt= + """ + def apply_config(self, conf): file = io.StringIO(textwrap.dedent(conf)) logging.config.fileConfig(file) @@ -752,6 +822,49 @@ def test_config6_ok(self): self.test_config1_ok(config=self.config6) + def test_config7_ok(self): + with captured_stdout() as output: + self.apply_config(self.config1a) + logger = logging.getLogger("compiler.parser") + # See issue #11424. compiler-hyphenated sorts + # between compiler and compiler.xyz and this + # was preventing compiler.xyz from being included + # in the child loggers of compiler because of an + # overzealous loop termination condition. + hyphenated = logging.getLogger('compiler-hyphenated') + # All will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + hyphenated.critical(self.next_message()) + self.assert_log_lines([ + ('INFO', '1'), + ('ERROR', '2'), + ('CRITICAL', '3'), + ], stream=output) + # Original logger output is empty. + self.assert_log_lines([]) + with captured_stdout() as output: + self.apply_config(self.config7) + logger = logging.getLogger("compiler.parser") + self.assertFalse(logger.disabled) + # Both will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + logger = logging.getLogger("compiler.lexer") + # Both will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + # Will not appear + hyphenated.critical(self.next_message()) + self.assert_log_lines([ + ('INFO', '4'), + ('ERROR', '5'), + ('INFO', '6'), + ('ERROR', '7'), + ], stream=output) + # Original logger output is empty. + self.assert_log_lines([]) + class LogRecordStreamHandler(StreamRequestHandler): """Handler for a streaming logging request. It saves the log message in the @@ -1057,6 +1170,33 @@ }, } + # config1a moves the handler to the root. Used with config8a + config1a = { + 'version': 1, + 'formatters': { + 'form1' : { + 'format' : '%(levelname)s ++ %(message)s', + }, + }, + 'handlers' : { + 'hand1' : { + 'class' : 'logging.StreamHandler', + 'formatter' : 'form1', + 'level' : 'NOTSET', + 'stream' : 'ext://sys.stdout', + }, + }, + 'loggers' : { + 'compiler.parser' : { + 'level' : 'DEBUG', + }, + }, + 'root' : { + 'level' : 'WARNING', + 'handlers' : ['hand1'], + }, + } + # config2 has a subtle configuration error that should be reported config2 = { 'version': 1, @@ -1307,6 +1447,9 @@ }, } + # config8 defines both compiler and compiler.lexer + # so compiler.parser should not be disabled (since + # compiler is defined) config8 = { 'version': 1, 'disable_existing_loggers' : False, @@ -1336,6 +1479,36 @@ }, } + # config8a disables existing loggers + config8a = { + 'version': 1, + 'disable_existing_loggers' : True, + 'formatters': { + 'form1' : { + 'format' : '%(levelname)s ++ %(message)s', + }, + }, + 'handlers' : { + 'hand1' : { + 'class' : 'logging.StreamHandler', + 'formatter' : 'form1', + 'level' : 'NOTSET', + 'stream' : 'ext://sys.stdout', + }, + }, + 'loggers' : { + 'compiler' : { + 'level' : 'DEBUG', + 'handlers' : ['hand1'], + }, + 'compiler.lexer' : { + }, + }, + 'root' : { + 'level' : 'WARNING', + }, + } + config9 = { 'version': 1, 'formatters': { @@ -1636,7 +1809,7 @@ with captured_stdout() as output: self.apply_config(self.config1) logger = logging.getLogger("compiler.parser") - # Both will output a message + # All will output a message logger.info(self.next_message()) logger.error(self.next_message()) self.assert_log_lines([ @@ -1665,6 +1838,49 @@ # Original logger output is empty. self.assert_log_lines([]) + def test_config_8a_ok(self): + with captured_stdout() as output: + self.apply_config(self.config1a) + logger = logging.getLogger("compiler.parser") + # See issue #11424. compiler-hyphenated sorts + # between compiler and compiler.xyz and this + # was preventing compiler.xyz from being included + # in the child loggers of compiler because of an + # overzealous loop termination condition. + hyphenated = logging.getLogger('compiler-hyphenated') + # All will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + hyphenated.critical(self.next_message()) + self.assert_log_lines([ + ('INFO', '1'), + ('ERROR', '2'), + ('CRITICAL', '3'), + ], stream=output) + # Original logger output is empty. + self.assert_log_lines([]) + with captured_stdout() as output: + self.apply_config(self.config8a) + logger = logging.getLogger("compiler.parser") + self.assertFalse(logger.disabled) + # Both will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + logger = logging.getLogger("compiler.lexer") + # Both will output a message + logger.info(self.next_message()) + logger.error(self.next_message()) + # Will not appear + hyphenated.critical(self.next_message()) + self.assert_log_lines([ + ('INFO', '4'), + ('ERROR', '5'), + ('INFO', '6'), + ('ERROR', '7'), + ], stream=output) + # Original logger output is empty. + self.assert_log_lines([]) + def test_config_9_ok(self): with captured_stdout() as output: self.apply_config(self.config9) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 7 19:23:16 2011 From: python-checkins at python.org (vinay.sajip) Date: Mon, 07 Mar 2011 19:23:16 +0100 Subject: [Python-checkins] (2.7): Whitespace normalization. Message-ID: http://hg.python.org/cpython/rev/d9cc58f93d72 changeset: 68321:d9cc58f93d72 branch: 2.7 parent: 68316:9dad160206a3 user: Vinay Sajip date: Mon Mar 07 18:20:27 2011 +0000 summary: Whitespace normalization. files: Lib/test/test_logging.py diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -815,7 +815,7 @@ ], stream=output) # Original logger output is empty. self.assert_log_lines([]) - + class LogRecordStreamHandler(StreamRequestHandler): """Handler for a streaming logging request. It saves the log message in the -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 7 23:09:55 2011 From: python-checkins at python.org (nick.coghlan) Date: Mon, 7 Mar 2011 23:09:55 +0100 (CET) Subject: [Python-checkins] r88766 - peps/trunk/pep-0394.txt Message-ID: <20110307220955.B98ECEE9A3@mail.python.org> Author: nick.coghlan Date: Mon Mar 7 23:09:55 2011 New Revision: 88766 Log: Reword a few things to make it clear that switching to Python 3 as the default interpreter is still bleeding edge stuff at this point in time. Also clarify the Windows situation a little more. Modified: peps/trunk/pep-0394.txt Modified: peps/trunk/pep-0394.txt ============================================================================== --- peps/trunk/pep-0394.txt (original) +++ peps/trunk/pep-0394.txt Mon Mar 7 23:09:55 2011 @@ -20,8 +20,8 @@ * ``python2`` will refer to some version of Python 2.x * ``python3`` will refer to some version of Python 3.x -* ``python`` will refer to the same target as either ``python2`` or - ``python3``, depending on the specific distribution and system +* ``python`` *should* refer to the same target as ``python2`` but *may* + refer to ``python3`` on some bleeding edge distributions Recommendation @@ -38,9 +38,8 @@ any version of Python is installed and should invoke the same version of Python as either ``python2`` or ``python3``. * For the time being, it is recommended that ``python`` should refer to - ``python2``, except on distributions which include only ``python3`` in their - base install, or those that wish to push strongly for migration of user - scripts to Python 3. + ``python2`` (however, some distributions have already chosen otherwise; see + Notes below). * In order to tolerate differences across platforms, all new code that needs to invoke the Python interpreter should not specify ``python``, but rather should specify either ``python2`` or ``python3`` (or the more specific @@ -69,24 +68,28 @@ the former also do not provide a ``python2`` command; hence, there is currently no way for Python 2 code (or any code that invokes the Python 2 interpreter directly rather than via ``sys.executable``) to reliably run on -all systems without modification, as the ``python`` command will invoke the -wrong interpreter version on some systems, and the ``python2`` command will -fail completely on others. The recommendations in this PEP provide a very -simple mechanism to restore cross-platform support, with minimal additional -work required on the part of distribution maintainers. +all Unix-like systems without modification, as the ``python`` command will +invoke the wrong interpreter version on some systems, and the ``python2`` +command will fail completely on others. The recommendations in this PEP +provide a very simple mechanism to restore cross-platform support, with +minimal additional work required on the part of distribution maintainers. Notes ===== -* Distributions can alias the ``python`` command to whichever version of the - Python interpreter they choose (noting that, in the near term, most 3rd - party scripts will still expect this command to refer to Python 2.x). The - version chosen should also be available via either the ``python2`` or - ``python3`` command as appropriate. +* Distributions that only include ``python3`` in their base install (i.e. + they do not provide ``python2`` by default) along with those that are + aggressively trying to reach that point (and are willing to break third + party scripts while attempting to get there) are already beginning to alias + the ``python`` command to ``python3`` +* More conservative distributions that are less willing to tolerate breakage + of third party scripts continue to alias it to ``python2``. Until the + conventions described in this PEP are more widely adopted, having ``python`` + invoke ``python2`` will remain the recommended option. * The ``pythonX.X`` (e.g. ``python2.6``) commands exist on some systems, on which they invoke specific minor versions of the Python interpreter. It - would be wise for distribution-specific packages to take advantage of these + can be useful for distribution-specific packages to take advantage of these utilities if they exist, since it will prevent code breakage if the default minor version of a given major version is changed. However, scripts intending to be cross-platform should not rely on the presence of these @@ -130,7 +133,10 @@ A potential problem can arise if a script adhering to the ``python2``/``python3`` convention is executed on a system not supporting these commands. This is mostly a non-issue, since the sysadmin can simply -create these symbolic links and avoid further problems. +create these symbolic links and avoid further problems. It is a significantly +more obvious breakage than the sometimes cryptic errors that can arise when +attempting to execute a script containing Python 2 specific syntax with a +Python 3 interpreter. Application to the CPython Reference Interpreter @@ -171,10 +177,14 @@ divorced from their containing folders (e.g. when they appear in the "Recently Used" list. -While these are questions well worth addressing, they do not have easy -answers. The authors of this particular PEP aren't even inclined to try to -begin answering them, but anyone that wants to tackle them should feel free -to start working on their own PEP :) +While these questions are well worth addressing, they do not have easy +answers. The authors of this particular PEP aren't inclined to even begin +trying to answer them, but anyone that wants to tackle them should feel free +to start working on their own PEP. + +Note that, while the topic has been excluded from this PEP, there is plenty of +material in the linked python-dev discussion that may be useful in the design +and implementation of a Windows-specific solution. References From solipsis at pitrou.net Tue Mar 8 05:09:25 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Tue, 08 Mar 2011 05:09:25 +0100 Subject: [Python-checkins] Daily reference leaks (b0883c15b28c): sum=323 Message-ID: results for b0883c15b28c on branch "default" -------------------------------------------- test_pydoc leaked [323, 0, 0] references, sum=323 Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogKoSRr7', '-x'] From python-checkins at python.org Tue Mar 8 05:57:11 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 08 Mar 2011 05:57:11 +0100 Subject: [Python-checkins] transform izip_longest #11424 Message-ID: http://hg.python.org/cpython/rev/8947c47a9fef changeset: 68322:8947c47a9fef parent: 68320:b0883c15b28c user: Benjamin Peterson date: Mon Mar 07 22:50:37 2011 -0600 summary: transform izip_longest #11424 files: Lib/lib2to3/fixes/fix_itertools.py Lib/lib2to3/fixes/fix_itertools_imports.py Lib/lib2to3/tests/test_fixers.py diff --git a/Lib/lib2to3/fixes/fix_itertools.py b/Lib/lib2to3/fixes/fix_itertools.py --- a/Lib/lib2to3/fixes/fix_itertools.py +++ b/Lib/lib2to3/fixes/fix_itertools.py @@ -13,7 +13,7 @@ class FixItertools(fixer_base.BaseFix): BM_compatible = True - it_funcs = "('imap'|'ifilter'|'izip'|'ifilterfalse')" + it_funcs = "('imap'|'ifilter'|'izip'|'izip_longest'|'ifilterfalse')" PATTERN = """ power< it='itertools' trailer< @@ -28,7 +28,8 @@ def transform(self, node, results): prefix = None func = results['func'][0] - if 'it' in results and func.value != 'ifilterfalse': + if ('it' in results and + func.value not in ('ifilterfalse', 'izip_longest')): dot, it = (results['dot'], results['it']) # Remove the 'itertools' prefix = it.prefix diff --git a/Lib/lib2to3/fixes/fix_itertools_imports.py b/Lib/lib2to3/fixes/fix_itertools_imports.py --- a/Lib/lib2to3/fixes/fix_itertools_imports.py +++ b/Lib/lib2to3/fixes/fix_itertools_imports.py @@ -31,9 +31,10 @@ if member_name in ('imap', 'izip', 'ifilter'): child.value = None child.remove() - elif member_name == 'ifilterfalse': + elif member_name in ('ifilterfalse', 'izip_longest'): node.changed() - name_node.value = 'filterfalse' + name_node.value = ('filterfalse' if member_name[1] == 'f' + else 'zip_longest') # Make sure the import statement is still sane children = imports.children[:] or [imports] diff --git a/Lib/lib2to3/tests/test_fixers.py b/Lib/lib2to3/tests/test_fixers.py --- a/Lib/lib2to3/tests/test_fixers.py +++ b/Lib/lib2to3/tests/test_fixers.py @@ -3623,16 +3623,24 @@ a = """%s(f, a)""" self.checkall(b, a) - def test_2(self): + def test_qualified(self): b = """itertools.ifilterfalse(a, b)""" a = """itertools.filterfalse(a, b)""" self.check(b, a) - def test_4(self): + b = """itertools.izip_longest(a, b)""" + a = """itertools.zip_longest(a, b)""" + self.check(b, a) + + def test_2(self): b = """ifilterfalse(a, b)""" a = """filterfalse(a, b)""" self.check(b, a) + b = """izip_longest(a, b)""" + a = """zip_longest(a, b)""" + self.check(b, a) + def test_space_1(self): b = """ %s(f, a)""" a = """ %s(f, a)""" @@ -3643,9 +3651,14 @@ a = """ itertools.filterfalse(a, b)""" self.check(b, a) + b = """ itertools.izip_longest(a, b)""" + a = """ itertools.zip_longest(a, b)""" + self.check(b, a) + def test_run_order(self): self.assert_runs_after('map', 'zip', 'filter') + class Test_itertools_imports(FixerTestCase): fixer = 'itertools_imports' @@ -3696,18 +3709,19 @@ s = "from itertools import bar as bang" self.unchanged(s) - def test_ifilter(self): - b = "from itertools import ifilterfalse" - a = "from itertools import filterfalse" - self.check(b, a) - - b = "from itertools import imap, ifilterfalse, foo" - a = "from itertools import filterfalse, foo" - self.check(b, a) - - b = "from itertools import bar, ifilterfalse, foo" - a = "from itertools import bar, filterfalse, foo" - self.check(b, a) + def test_ifilter_and_zip_longest(self): + for name in "filterfalse", "zip_longest": + b = "from itertools import i%s" % (name,) + a = "from itertools import %s" % (name,) + self.check(b, a) + + b = "from itertools import imap, i%s, foo" % (name,) + a = "from itertools import %s, foo" % (name,) + self.check(b, a) + + b = "from itertools import bar, i%s, foo" % (name,) + a = "from itertools import bar, %s, foo" % (name,) + self.check(b, a) def test_import_star(self): s = "from itertools import *" -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 8 05:57:12 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 08 Mar 2011 05:57:12 +0100 Subject: [Python-checkins] (3.1): transform izip_longest #11424 Message-ID: http://hg.python.org/cpython/rev/a7e0cff05597 changeset: 68323:a7e0cff05597 branch: 3.1 parent: 68317:d9125bf3bac5 user: Benjamin Peterson date: Mon Mar 07 22:50:37 2011 -0600 summary: transform izip_longest #11424 files: Lib/lib2to3/fixes/fix_itertools.py Lib/lib2to3/fixes/fix_itertools_imports.py Lib/lib2to3/tests/test_fixers.py diff --git a/Lib/lib2to3/fixes/fix_itertools.py b/Lib/lib2to3/fixes/fix_itertools.py --- a/Lib/lib2to3/fixes/fix_itertools.py +++ b/Lib/lib2to3/fixes/fix_itertools.py @@ -13,7 +13,7 @@ class FixItertools(fixer_base.BaseFix): BM_compatible = True - it_funcs = "('imap'|'ifilter'|'izip'|'ifilterfalse')" + it_funcs = "('imap'|'ifilter'|'izip'|'izip_longest'|'ifilterfalse')" PATTERN = """ power< it='itertools' trailer< @@ -28,7 +28,8 @@ def transform(self, node, results): prefix = None func = results['func'][0] - if 'it' in results and func.value != 'ifilterfalse': + if ('it' in results and + func.value not in ('ifilterfalse', 'izip_longest')): dot, it = (results['dot'], results['it']) # Remove the 'itertools' prefix = it.prefix diff --git a/Lib/lib2to3/fixes/fix_itertools_imports.py b/Lib/lib2to3/fixes/fix_itertools_imports.py --- a/Lib/lib2to3/fixes/fix_itertools_imports.py +++ b/Lib/lib2to3/fixes/fix_itertools_imports.py @@ -31,9 +31,10 @@ if member_name in ('imap', 'izip', 'ifilter'): child.value = None child.remove() - elif member_name == 'ifilterfalse': + elif member_name in ('ifilterfalse', 'izip_longest'): node.changed() - name_node.value = 'filterfalse' + name_node.value = ('filterfalse' if member_name[1] == 'f' + else 'zip_longest') # Make sure the import statement is still sane children = imports.children[:] or [imports] diff --git a/Lib/lib2to3/tests/test_fixers.py b/Lib/lib2to3/tests/test_fixers.py --- a/Lib/lib2to3/tests/test_fixers.py +++ b/Lib/lib2to3/tests/test_fixers.py @@ -3623,16 +3623,24 @@ a = """%s(f, a)""" self.checkall(b, a) - def test_2(self): + def test_qualified(self): b = """itertools.ifilterfalse(a, b)""" a = """itertools.filterfalse(a, b)""" self.check(b, a) - def test_4(self): + b = """itertools.izip_longest(a, b)""" + a = """itertools.zip_longest(a, b)""" + self.check(b, a) + + def test_2(self): b = """ifilterfalse(a, b)""" a = """filterfalse(a, b)""" self.check(b, a) + b = """izip_longest(a, b)""" + a = """zip_longest(a, b)""" + self.check(b, a) + def test_space_1(self): b = """ %s(f, a)""" a = """ %s(f, a)""" @@ -3643,9 +3651,14 @@ a = """ itertools.filterfalse(a, b)""" self.check(b, a) + b = """ itertools.izip_longest(a, b)""" + a = """ itertools.zip_longest(a, b)""" + self.check(b, a) + def test_run_order(self): self.assert_runs_after('map', 'zip', 'filter') + class Test_itertools_imports(FixerTestCase): fixer = 'itertools_imports' @@ -3696,18 +3709,19 @@ s = "from itertools import bar as bang" self.unchanged(s) - def test_ifilter(self): - b = "from itertools import ifilterfalse" - a = "from itertools import filterfalse" - self.check(b, a) - - b = "from itertools import imap, ifilterfalse, foo" - a = "from itertools import filterfalse, foo" - self.check(b, a) - - b = "from itertools import bar, ifilterfalse, foo" - a = "from itertools import bar, filterfalse, foo" - self.check(b, a) + def test_ifilter_and_zip_longest(self): + for name in "filterfalse", "zip_longest": + b = "from itertools import i%s" % (name,) + a = "from itertools import %s" % (name,) + self.check(b, a) + + b = "from itertools import imap, i%s, foo" % (name,) + a = "from itertools import %s, foo" % (name,) + self.check(b, a) + + b = "from itertools import bar, i%s, foo" % (name,) + a = "from itertools import bar, %s, foo" % (name,) + self.check(b, a) def test_import_star(self): s = "from itertools import *" -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 8 05:57:16 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 08 Mar 2011 05:57:16 +0100 Subject: [Python-checkins] (merge 3.1 -> 3.2): merge 3.1 Message-ID: http://hg.python.org/cpython/rev/88bbc574cfb0 changeset: 68324:88bbc574cfb0 branch: 3.2 parent: 68319:27bf21522742 parent: 68323:a7e0cff05597 user: Benjamin Peterson date: Mon Mar 07 22:51:59 2011 -0600 summary: merge 3.1 files: diff --git a/Lib/lib2to3/fixes/fix_itertools.py b/Lib/lib2to3/fixes/fix_itertools.py --- a/Lib/lib2to3/fixes/fix_itertools.py +++ b/Lib/lib2to3/fixes/fix_itertools.py @@ -13,7 +13,7 @@ class FixItertools(fixer_base.BaseFix): BM_compatible = True - it_funcs = "('imap'|'ifilter'|'izip'|'ifilterfalse')" + it_funcs = "('imap'|'ifilter'|'izip'|'izip_longest'|'ifilterfalse')" PATTERN = """ power< it='itertools' trailer< @@ -28,7 +28,8 @@ def transform(self, node, results): prefix = None func = results['func'][0] - if 'it' in results and func.value != 'ifilterfalse': + if ('it' in results and + func.value not in ('ifilterfalse', 'izip_longest')): dot, it = (results['dot'], results['it']) # Remove the 'itertools' prefix = it.prefix diff --git a/Lib/lib2to3/fixes/fix_itertools_imports.py b/Lib/lib2to3/fixes/fix_itertools_imports.py --- a/Lib/lib2to3/fixes/fix_itertools_imports.py +++ b/Lib/lib2to3/fixes/fix_itertools_imports.py @@ -31,9 +31,10 @@ if member_name in ('imap', 'izip', 'ifilter'): child.value = None child.remove() - elif member_name == 'ifilterfalse': + elif member_name in ('ifilterfalse', 'izip_longest'): node.changed() - name_node.value = 'filterfalse' + name_node.value = ('filterfalse' if member_name[1] == 'f' + else 'zip_longest') # Make sure the import statement is still sane children = imports.children[:] or [imports] diff --git a/Lib/lib2to3/tests/test_fixers.py b/Lib/lib2to3/tests/test_fixers.py --- a/Lib/lib2to3/tests/test_fixers.py +++ b/Lib/lib2to3/tests/test_fixers.py @@ -3623,16 +3623,24 @@ a = """%s(f, a)""" self.checkall(b, a) - def test_2(self): + def test_qualified(self): b = """itertools.ifilterfalse(a, b)""" a = """itertools.filterfalse(a, b)""" self.check(b, a) - def test_4(self): + b = """itertools.izip_longest(a, b)""" + a = """itertools.zip_longest(a, b)""" + self.check(b, a) + + def test_2(self): b = """ifilterfalse(a, b)""" a = """filterfalse(a, b)""" self.check(b, a) + b = """izip_longest(a, b)""" + a = """zip_longest(a, b)""" + self.check(b, a) + def test_space_1(self): b = """ %s(f, a)""" a = """ %s(f, a)""" @@ -3643,9 +3651,14 @@ a = """ itertools.filterfalse(a, b)""" self.check(b, a) + b = """ itertools.izip_longest(a, b)""" + a = """ itertools.zip_longest(a, b)""" + self.check(b, a) + def test_run_order(self): self.assert_runs_after('map', 'zip', 'filter') + class Test_itertools_imports(FixerTestCase): fixer = 'itertools_imports' @@ -3696,18 +3709,19 @@ s = "from itertools import bar as bang" self.unchanged(s) - def test_ifilter(self): - b = "from itertools import ifilterfalse" - a = "from itertools import filterfalse" - self.check(b, a) - - b = "from itertools import imap, ifilterfalse, foo" - a = "from itertools import filterfalse, foo" - self.check(b, a) - - b = "from itertools import bar, ifilterfalse, foo" - a = "from itertools import bar, filterfalse, foo" - self.check(b, a) + def test_ifilter_and_zip_longest(self): + for name in "filterfalse", "zip_longest": + b = "from itertools import i%s" % (name,) + a = "from itertools import %s" % (name,) + self.check(b, a) + + b = "from itertools import imap, i%s, foo" % (name,) + a = "from itertools import %s, foo" % (name,) + self.check(b, a) + + b = "from itertools import bar, i%s, foo" % (name,) + a = "from itertools import bar, %s, foo" % (name,) + self.check(b, a) def test_import_star(self): s = "from itertools import *" -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 8 05:57:17 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 08 Mar 2011 05:57:17 +0100 Subject: [Python-checkins] (merge 3.2 -> default): merge 3.2 Message-ID: http://hg.python.org/cpython/rev/c43d685e1533 changeset: 68325:c43d685e1533 parent: 68320:b0883c15b28c parent: 68324:88bbc574cfb0 user: Benjamin Peterson date: Mon Mar 07 22:52:31 2011 -0600 summary: merge 3.2 files: diff --git a/Lib/lib2to3/fixes/fix_itertools.py b/Lib/lib2to3/fixes/fix_itertools.py --- a/Lib/lib2to3/fixes/fix_itertools.py +++ b/Lib/lib2to3/fixes/fix_itertools.py @@ -13,7 +13,7 @@ class FixItertools(fixer_base.BaseFix): BM_compatible = True - it_funcs = "('imap'|'ifilter'|'izip'|'ifilterfalse')" + it_funcs = "('imap'|'ifilter'|'izip'|'izip_longest'|'ifilterfalse')" PATTERN = """ power< it='itertools' trailer< @@ -28,7 +28,8 @@ def transform(self, node, results): prefix = None func = results['func'][0] - if 'it' in results and func.value != 'ifilterfalse': + if ('it' in results and + func.value not in ('ifilterfalse', 'izip_longest')): dot, it = (results['dot'], results['it']) # Remove the 'itertools' prefix = it.prefix diff --git a/Lib/lib2to3/fixes/fix_itertools_imports.py b/Lib/lib2to3/fixes/fix_itertools_imports.py --- a/Lib/lib2to3/fixes/fix_itertools_imports.py +++ b/Lib/lib2to3/fixes/fix_itertools_imports.py @@ -31,9 +31,10 @@ if member_name in ('imap', 'izip', 'ifilter'): child.value = None child.remove() - elif member_name == 'ifilterfalse': + elif member_name in ('ifilterfalse', 'izip_longest'): node.changed() - name_node.value = 'filterfalse' + name_node.value = ('filterfalse' if member_name[1] == 'f' + else 'zip_longest') # Make sure the import statement is still sane children = imports.children[:] or [imports] diff --git a/Lib/lib2to3/tests/test_fixers.py b/Lib/lib2to3/tests/test_fixers.py --- a/Lib/lib2to3/tests/test_fixers.py +++ b/Lib/lib2to3/tests/test_fixers.py @@ -3623,16 +3623,24 @@ a = """%s(f, a)""" self.checkall(b, a) - def test_2(self): + def test_qualified(self): b = """itertools.ifilterfalse(a, b)""" a = """itertools.filterfalse(a, b)""" self.check(b, a) - def test_4(self): + b = """itertools.izip_longest(a, b)""" + a = """itertools.zip_longest(a, b)""" + self.check(b, a) + + def test_2(self): b = """ifilterfalse(a, b)""" a = """filterfalse(a, b)""" self.check(b, a) + b = """izip_longest(a, b)""" + a = """zip_longest(a, b)""" + self.check(b, a) + def test_space_1(self): b = """ %s(f, a)""" a = """ %s(f, a)""" @@ -3643,9 +3651,14 @@ a = """ itertools.filterfalse(a, b)""" self.check(b, a) + b = """ itertools.izip_longest(a, b)""" + a = """ itertools.zip_longest(a, b)""" + self.check(b, a) + def test_run_order(self): self.assert_runs_after('map', 'zip', 'filter') + class Test_itertools_imports(FixerTestCase): fixer = 'itertools_imports' @@ -3696,18 +3709,19 @@ s = "from itertools import bar as bang" self.unchanged(s) - def test_ifilter(self): - b = "from itertools import ifilterfalse" - a = "from itertools import filterfalse" - self.check(b, a) - - b = "from itertools import imap, ifilterfalse, foo" - a = "from itertools import filterfalse, foo" - self.check(b, a) - - b = "from itertools import bar, ifilterfalse, foo" - a = "from itertools import bar, filterfalse, foo" - self.check(b, a) + def test_ifilter_and_zip_longest(self): + for name in "filterfalse", "zip_longest": + b = "from itertools import i%s" % (name,) + a = "from itertools import %s" % (name,) + self.check(b, a) + + b = "from itertools import imap, i%s, foo" % (name,) + a = "from itertools import %s, foo" % (name,) + self.check(b, a) + + b = "from itertools import bar, i%s, foo" % (name,) + a = "from itertools import bar, %s, foo" % (name,) + self.check(b, a) def test_import_star(self): s = "from itertools import *" -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 8 05:57:18 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 08 Mar 2011 05:57:18 +0100 Subject: [Python-checkins] (merge default -> default): merge heads Message-ID: http://hg.python.org/cpython/rev/a69ef22b60e3 changeset: 68326:a69ef22b60e3 parent: 68325:c43d685e1533 parent: 68322:8947c47a9fef user: Benjamin Peterson date: Mon Mar 07 22:52:41 2011 -0600 summary: merge heads files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 8 05:57:19 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 08 Mar 2011 05:57:19 +0100 Subject: [Python-checkins] (2.7): transform izip_longest #11424 Message-ID: http://hg.python.org/cpython/rev/770d45d22a40 changeset: 68327:770d45d22a40 branch: 2.7 parent: 68321:d9cc58f93d72 user: Benjamin Peterson date: Mon Mar 07 22:50:37 2011 -0600 summary: transform izip_longest #11424 files: Lib/lib2to3/fixes/fix_itertools.py Lib/lib2to3/fixes/fix_itertools_imports.py Lib/lib2to3/tests/test_fixers.py diff --git a/Lib/lib2to3/fixes/fix_itertools.py b/Lib/lib2to3/fixes/fix_itertools.py --- a/Lib/lib2to3/fixes/fix_itertools.py +++ b/Lib/lib2to3/fixes/fix_itertools.py @@ -13,7 +13,7 @@ class FixItertools(fixer_base.BaseFix): BM_compatible = True - it_funcs = "('imap'|'ifilter'|'izip'|'ifilterfalse')" + it_funcs = "('imap'|'ifilter'|'izip'|'izip_longest'|'ifilterfalse')" PATTERN = """ power< it='itertools' trailer< @@ -28,7 +28,8 @@ def transform(self, node, results): prefix = None func = results['func'][0] - if 'it' in results and func.value != u'ifilterfalse': + if ('it' in results and + func.value not in (u'ifilterfalse', u'izip_longest')): dot, it = (results['dot'], results['it']) # Remove the 'itertools' prefix = it.prefix diff --git a/Lib/lib2to3/fixes/fix_itertools_imports.py b/Lib/lib2to3/fixes/fix_itertools_imports.py --- a/Lib/lib2to3/fixes/fix_itertools_imports.py +++ b/Lib/lib2to3/fixes/fix_itertools_imports.py @@ -31,9 +31,10 @@ if member_name in (u'imap', u'izip', u'ifilter'): child.value = None child.remove() - elif member_name == u'ifilterfalse': + elif member_name in (u'ifilterfalse', u'izip_longest'): node.changed() - name_node.value = u'filterfalse' + name_node.value = (u'filterfalse' if member_name[1] == u'f' + else u'zip_longest') # Make sure the import statement is still sane children = imports.children[:] or [imports] diff --git a/Lib/lib2to3/tests/test_fixers.py b/Lib/lib2to3/tests/test_fixers.py --- a/Lib/lib2to3/tests/test_fixers.py +++ b/Lib/lib2to3/tests/test_fixers.py @@ -3623,16 +3623,24 @@ a = """%s(f, a)""" self.checkall(b, a) - def test_2(self): + def test_qualified(self): b = """itertools.ifilterfalse(a, b)""" a = """itertools.filterfalse(a, b)""" self.check(b, a) - def test_4(self): + b = """itertools.izip_longest(a, b)""" + a = """itertools.zip_longest(a, b)""" + self.check(b, a) + + def test_2(self): b = """ifilterfalse(a, b)""" a = """filterfalse(a, b)""" self.check(b, a) + b = """izip_longest(a, b)""" + a = """zip_longest(a, b)""" + self.check(b, a) + def test_space_1(self): b = """ %s(f, a)""" a = """ %s(f, a)""" @@ -3643,9 +3651,14 @@ a = """ itertools.filterfalse(a, b)""" self.check(b, a) + b = """ itertools.izip_longest(a, b)""" + a = """ itertools.zip_longest(a, b)""" + self.check(b, a) + def test_run_order(self): self.assert_runs_after('map', 'zip', 'filter') + class Test_itertools_imports(FixerTestCase): fixer = 'itertools_imports' @@ -3696,18 +3709,19 @@ s = "from itertools import bar as bang" self.unchanged(s) - def test_ifilter(self): - b = "from itertools import ifilterfalse" - a = "from itertools import filterfalse" - self.check(b, a) - - b = "from itertools import imap, ifilterfalse, foo" - a = "from itertools import filterfalse, foo" - self.check(b, a) - - b = "from itertools import bar, ifilterfalse, foo" - a = "from itertools import bar, filterfalse, foo" - self.check(b, a) + def test_ifilter_and_zip_longest(self): + for name in "filterfalse", "zip_longest": + b = "from itertools import i%s" % (name,) + a = "from itertools import %s" % (name,) + self.check(b, a) + + b = "from itertools import imap, i%s, foo" % (name,) + a = "from itertools import %s, foo" % (name,) + self.check(b, a) + + b = "from itertools import bar, i%s, foo" % (name,) + a = "from itertools import bar, %s, foo" % (name,) + self.check(b, a) def test_import_star(self): s = "from itertools import *" -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 8 11:07:19 2011 From: python-checkins at python.org (georg.brandl) Date: Tue, 08 Mar 2011 11:07:19 +0100 Subject: [Python-checkins] (2.7): Sort out 2.7 and 2.7.1 tags. Message-ID: http://hg.python.org/cpython/rev/c0172f8f9bac changeset: 68328:c0172f8f9bac branch: 2.7 user: Georg Brandl date: Tue Mar 08 11:05:40 2011 +0100 summary: Sort out 2.7 and 2.7.1 tags. files: .hgtags diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -143,5 +143,6 @@ 6bb9891d4275bd42a69b3d903d13b687543c915d v2.7b2 381c5eeb511038d091d8e0808c4b85087ed2f684 v2.7rc1 13e5b0b2071a2a42067fb03facc931409fa6ba50 v2.7rc2 -63d9f00fea0730c1c437a50f64a42b7792bdcbfb v2.7rc1 +2145593d108de62ebf770987a4ac2a57d268c9d1 v2.7 +63d9f00fea0730c1c437a50f64a42b7792bdcbfb v2.7.1rc1 5395f96588d4f0199d329cb79eb109648dc4ef5e v2.7.1 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 8 12:23:54 2011 From: python-checkins at python.org (local) Date: Tue, 08 Mar 2011 12:23:54 +0100 Subject: [Python-checkins] hooks: Add roundup integration hook. Message-ID: http://hg.python.org/hooks/rev/77ab3bbf344e changeset: 53:77ab3bbf344e user: Georg Brandl date: Tue Mar 08 12:23:54 2011 +0100 summary: Add roundup integration hook. files: hgroundup.py diff --git a/hgroundup.py b/hgroundup.py new file mode 100644 --- /dev/null +++ b/hgroundup.py @@ -0,0 +1,107 @@ +"""Mercurial hook to update a Roundup issue. + +Update a Roundup issue via email for changesets where commit messages +mention an issue anywhere in the commit message in the following way: + + #12345 + issue12345 + issue 12345 + bug12345 + bug 12345 + +where 12345 is the issue number. + +If "closes" or "fixes" (with alternative verb forms like "fixing" +allowed too) is prepended, the issue is automatically closed as +"fixed". + +To use this hook, include the following in hgrc: + + [hooks] + changegroup.roundup = python:hgroundup.update_issue + + [hgroundup] + repo = http://hg.python.org/cpython/ + toaddr = roundup-admin at example.com + mailrelay = 127.0.0.1 +""" +import re +import smtplib +import posixpath + +from string import Template +from email.mime.text import MIMEText + +VERBS = r'(?:\b(?Pclose[sd]?|closing|fixe[sd]|fixing|fix)\s+)?' +ISSUE_PATTERN = re.compile(r'%s(?:#|\bissue|\bbug)\s*(?P[0-9]+)' + % VERBS, re.I) +COMMENT_TEMPLATE = "${commit_msg}\n${changeset_url}" + + +def update_issue(ui, repo, node, **kwargs): + """Update a Roundup issue for corresponding changesets. + + Return True if updating the Roundup issue fails, else False. + """ + repo_url = ui.config('hgroundup', 'repo') + toaddr = ui.config('hgroundup', 'toaddr') + mailrelay = ui.config('hgroundup', 'mailrelay', default='127.0.0.1') + start = repo[node].rev() + + issues = {} + + for rev in xrange(start, len(repo)): + ctx = repo[rev] + description = ctx.description() + match = ISSUE_PATTERN.search(description) + ui.warn('match in commit msg: %s\n' % (match and match.groupdict() or 'no')) + if not match: + continue + data = match.groupdict() + comment = Template(COMMENT_TEMPLATE).substitute({ + 'changeset_url': posixpath.join(repo_url, str(ctx)), + 'commit_msg': description, + }) + add_comment(issues, ctx.user(), data, comment) + if issues: + try: + send_comments(mailrelay, toaddr, issues) + ui.status("Sent email to roundup at " + toaddr + '\n') + except Exception, err: + # make sure an issue updating roundup does not prevent an + # otherwise successful push. + ui.warn("Sending email to roundup at %s failed: %s\n" % + (toaddr, err)) + else: + ui.debug("No issues to send to roundup\n") + return False + +def add_comment(issues, user, data, comment): + """Process a comment made in a commit message.""" + key = (data['issue_id'], user) + if key in issues: + issues[key]['comments'].append(comment) + else: + issues[key] = {'comments': [comment], 'properties': {}} + if data['verb']: + issues[key]['properties'].update({ + 'status': 'closed', + 'resolution': 'fixed' + }) + +def send_comments(mailrelay, toaddr, issues): + """Update the Roundup issue with a comment and changeset link.""" + for (issue_id, user), data in issues.iteritems(): + props = '' + if data['properties']: + props = ' [%s]' % ';'.join('%s=%s' % x + for x in data['properties'].iteritems()) + msg = MIMEText('\n\n'.join(data['comments'])) + msg['From'] = user + msg['To'] = toaddr + msg['Subject'] = "[issue%s]%s" % (issue_id, props) + import sys + print >>sys.stderr, msg['Subject'] + s = smtplib.SMTP(mailrelay) + s.sendmail(user, toaddr, msg.as_string()) + s.quit() -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Tue Mar 8 12:25:11 2011 From: python-checkins at python.org (local) Date: Tue, 08 Mar 2011 12:25:11 +0100 Subject: [Python-checkins] hooks: Give credit to Kelsey. Message-ID: http://hg.python.org/hooks/rev/88b8a043c3b7 changeset: 54:88b8a043c3b7 user: Georg Brandl date: Tue Mar 08 12:25:11 2011 +0100 summary: Give credit to Kelsey. files: hgroundup.py diff --git a/hgroundup.py b/hgroundup.py --- a/hgroundup.py +++ b/hgroundup.py @@ -24,6 +24,8 @@ repo = http://hg.python.org/cpython/ toaddr = roundup-admin at example.com mailrelay = 127.0.0.1 + +Initial implementation by Kelsey Hightower . """ import re import smtplib -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Tue Mar 8 14:06:54 2011 From: python-checkins at python.org (local) Date: Tue, 08 Mar 2011 14:06:54 +0100 Subject: [Python-checkins] hooks: Fix example configuration. Message-ID: http://hg.python.org/hooks/rev/9504a92a80d3 changeset: 55:9504a92a80d3 user: Georg Brandl date: Tue Mar 08 14:06:54 2011 +0100 summary: Fix example configuration. files: hgroundup.py diff --git a/hgroundup.py b/hgroundup.py --- a/hgroundup.py +++ b/hgroundup.py @@ -21,7 +21,7 @@ changegroup.roundup = python:hgroundup.update_issue [hgroundup] - repo = http://hg.python.org/cpython/ + repo = http://hg.python.org/cpython/rev/ toaddr = roundup-admin at example.com mailrelay = 127.0.0.1 -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Tue Mar 8 15:18:31 2011 From: python-checkins at python.org (ezio.melotti) Date: Tue, 08 Mar 2011 15:18:31 +0100 Subject: [Python-checkins] (3.2): #11298: Improve the unittest discovery explanation. Message-ID: http://hg.python.org/cpython/rev/bbf8a8a1af17 changeset: 68329:bbf8a8a1af17 branch: 3.2 parent: 68324:88bbc574cfb0 user: Ezio Melotti date: Tue Mar 08 16:17:35 2011 +0200 summary: #11298: Improve the unittest discovery explanation. files: Doc/library/unittest.rst diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -277,9 +277,11 @@ .. versionadded:: 3.2 -Unittest supports simple test discovery. For a project's tests to be -compatible with test discovery they must all be importable from the top level -directory of the project (in other words, they must all be in Python packages). +Unittest supports simple test discovery. In order to be compatible with test +discovery, all of the test files must be :ref:`modules ` or +:ref:`packages ` importable from the top-level directory of +the project (this means that their filenames must be valid +:ref:`identifiers `). Test discovery is implemented in :meth:`TestLoader.discover`, but can also be used from the command line. The basic command-line usage is:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 8 15:51:04 2011 From: python-checkins at python.org (ezio.melotti) Date: Tue, 08 Mar 2011 15:51:04 +0100 Subject: [Python-checkins] (merge 3.2 -> default): #11298: merge from 3.2. Message-ID: http://hg.python.org/cpython/rev/fa23f323d747 changeset: 68330:fa23f323d747 parent: 68326:a69ef22b60e3 parent: 68329:bbf8a8a1af17 user: Ezio Melotti date: Tue Mar 08 16:49:57 2011 +0200 summary: #11298: merge from 3.2. files: diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -277,9 +277,11 @@ .. versionadded:: 3.2 -Unittest supports simple test discovery. For a project's tests to be -compatible with test discovery they must all be importable from the top level -directory of the project (in other words, they must all be in Python packages). +Unittest supports simple test discovery. In order to be compatible with test +discovery, all of the test files must be :ref:`modules ` or +:ref:`packages ` importable from the top-level directory of +the project (this means that their filenames must be valid +:ref:`identifiers `). Test discovery is implemented in :meth:`TestLoader.discover`, but can also be used from the command line. The basic command-line usage is:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 8 16:10:14 2011 From: python-checkins at python.org (ezio.melotti) Date: Tue, 08 Mar 2011 16:10:14 +0100 Subject: [Python-checkins] (2.7): #11298: Improve the unittest discovery explanation. Message-ID: http://hg.python.org/cpython/rev/88b5a93b1725 changeset: 68331:88b5a93b1725 branch: 2.7 parent: 68328:c0172f8f9bac user: Ezio Melotti date: Tue Mar 08 17:08:25 2011 +0200 summary: #11298: Improve the unittest discovery explanation. files: Doc/library/unittest.rst diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -257,9 +257,11 @@ .. versionadded:: 2.7 -Unittest supports simple test discovery. For a project's tests to be -compatible with test discovery they must all be importable from the top level -directory of the project (in other words, they must all be in Python packages). +Unittest supports simple test discovery. In order to be compatible with test +discovery, all of the test files must be :ref:`modules ` or +:ref:`packages ` importable from the top-level directory of +the project (this means that their filenames must be valid +:ref:`identifiers `). Test discovery is implemented in :meth:`TestLoader.discover`, but can also be used from the command line. The basic command-line usage is:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 8 17:58:51 2011 From: python-checkins at python.org (local) Date: Tue, 08 Mar 2011 17:58:51 +0100 Subject: [Python-checkins] hooks: All issue numbers have 4+ digits. Message-ID: http://hg.python.org/hooks/rev/da97dd02d101 changeset: 56:da97dd02d101 user: Georg Brandl date: Tue Mar 08 17:58:51 2011 +0100 summary: All issue numbers have 4+ digits. files: hgroundup.py diff --git a/hgroundup.py b/hgroundup.py --- a/hgroundup.py +++ b/hgroundup.py @@ -35,7 +35,7 @@ from email.mime.text import MIMEText VERBS = r'(?:\b(?Pclose[sd]?|closing|fixe[sd]|fixing|fix)\s+)?' -ISSUE_PATTERN = re.compile(r'%s(?:#|\bissue|\bbug)\s*(?P[0-9]+)' +ISSUE_PATTERN = re.compile(r'%s(?:#|\bissue|\bbug)\s*(?P[0-9]{4,})' % VERBS, re.I) COMMENT_TEMPLATE = "${commit_msg}\n${changeset_url}" -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Tue Mar 8 18:13:39 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 08 Mar 2011 18:13:39 +0100 Subject: [Python-checkins] devguide: Adapt server-side clone instructions to the new UI Message-ID: http://hg.python.org/devguide/rev/956a79b16922 changeset: 378:956a79b16922 user: Antoine Pitrou date: Tue Mar 08 18:13:36 2011 +0100 summary: Adapt server-side clone instructions to the new UI files: committing.rst diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -281,11 +281,11 @@ bandwidth. Go to the main repository's Web page (http://hg.python.org/cpython/); there -you find a box labelled "server-side clone". Enter the relative path of the -repository you want to create on the server, for example ``features/mywork``; -and press the button. A new repository gets created on the server with all -the changesets of the original repository (it will seem very fast; this is -normal). +you find a button labelled "server-side clone", which you can click on to +display a Web form. Enter the relative path of the repository you want to +create on the server, for example ``features/mywork``; and press the button. +A new repository gets created on the server with all the changesets of the +original repository (it will seem very fast; this is normal). You can now do a local clone of this repository on your disk:: -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Tue Mar 8 20:59:34 2011 From: python-checkins at python.org (local-hg) Date: Tue, 08 Mar 2011 20:59:34 +0100 Subject: [Python-checkins] hooks: Lots of cosmetic changes Message-ID: http://hg.python.org/hooks/rev/931248abb746 changeset: 57:931248abb746 user: Antoine Pitrou date: Tue Mar 08 20:59:34 2011 +0100 summary: Lots of cosmetic changes files: hgroundup.py diff --git a/hgroundup.py b/hgroundup.py --- a/hgroundup.py +++ b/hgroundup.py @@ -30,57 +30,83 @@ import re import smtplib import posixpath +import traceback from string import Template from email.mime.text import MIMEText -VERBS = r'(?:\b(?Pclose[sd]?|closing|fixe[sd]|fixing|fix)\s+)?' +from mercurial.templatefilters import person + +VERBS = r'(?:\b(?Pclose[sd]?|closing|)\s+)?' ISSUE_PATTERN = re.compile(r'%s(?:#|\bissue|\bbug)\s*(?P[0-9]{4,})' % VERBS, re.I) -COMMENT_TEMPLATE = "${commit_msg}\n${changeset_url}" +COMMENT_TEMPLATE = """\ +New changeset ${changeset_id} by $author in branch '${branch}': +${commit_msg} +${changeset_url} +""" -def update_issue(ui, repo, node, **kwargs): +def update_issue(*args, **kwargs): + try: + _update_issue(*args, **kwargs) + except: + traceback.print_exc() + raise + +def _update_issue(ui, repo, node, **kwargs): """Update a Roundup issue for corresponding changesets. Return True if updating the Roundup issue fails, else False. """ - repo_url = ui.config('hgroundup', 'repo') + repourl = ui.config('hgroundup', 'repourl') + if not repourl: + repourl = posixpath.join(ui.config('web', 'baseurl'), 'rev/') + fromaddr = ui.config('hgroundup', 'fromaddr') toaddr = ui.config('hgroundup', 'toaddr') mailrelay = ui.config('hgroundup', 'mailrelay', default='127.0.0.1') + for var in ('repourl', 'fromaddr', 'toaddr'): + if not locals()[var]: + raise RuntimeError( + 'roundup hook not configured properly,\nplease ' + 'set the "%s" property in the [hgroundup] section' + % var) start = repo[node].rev() issues = {} for rev in xrange(start, len(repo)): ctx = repo[rev] - description = ctx.description() + description = ctx.description().strip() match = ISSUE_PATTERN.search(description) - ui.warn('match in commit msg: %s\n' % (match and match.groupdict() or 'no')) + ui.debug('match in commit msg: %s\n' % (match and match.groupdict() or 'no')) if not match: continue data = match.groupdict() comment = Template(COMMENT_TEMPLATE).substitute({ - 'changeset_url': posixpath.join(repo_url, str(ctx)), - 'commit_msg': description, + 'author': person(ctx.user()), + 'branch': ctx.branch(), + 'changeset_id': str(ctx), + 'changeset_url': posixpath.join(repourl, str(ctx)), + 'commit_msg': description.splitlines()[0], }) add_comment(issues, ctx.user(), data, comment) if issues: try: - send_comments(mailrelay, toaddr, issues) - ui.status("Sent email to roundup at " + toaddr + '\n') + send_comments(mailrelay, fromaddr, toaddr, issues) + ui.status("sent email to roundup at " + toaddr + '\n') except Exception, err: # make sure an issue updating roundup does not prevent an # otherwise successful push. - ui.warn("Sending email to roundup at %s failed: %s\n" % + ui.warn("sending email to roundup at %s failed: %s\n" % (toaddr, err)) else: - ui.debug("No issues to send to roundup\n") + ui.debug("no issues to send to roundup\n") return False def add_comment(issues, user, data, comment): """Process a comment made in a commit message.""" - key = (data['issue_id'], user) + key = data['issue_id'] if key in issues: issues[key]['comments'].append(comment) else: @@ -91,19 +117,19 @@ 'resolution': 'fixed' }) -def send_comments(mailrelay, toaddr, issues): +def send_comments(mailrelay, fromaddr, toaddr, issues): """Update the Roundup issue with a comment and changeset link.""" - for (issue_id, user), data in issues.iteritems(): - props = '' - if data['properties']: - props = ' [%s]' % ';'.join('%s=%s' % x - for x in data['properties'].iteritems()) - msg = MIMEText('\n\n'.join(data['comments'])) - msg['From'] = user - msg['To'] = toaddr - msg['Subject'] = "[issue%s]%s" % (issue_id, props) - import sys - print >>sys.stderr, msg['Subject'] - s = smtplib.SMTP(mailrelay) - s.sendmail(user, toaddr, msg.as_string()) + s = smtplib.SMTP(mailrelay) + try: + for issue_id, data in issues.iteritems(): + props = '' + if data['properties']: + props = ' [%s]' % ';'.join('%s=%s' % x + for x in data['properties'].iteritems()) + msg = MIMEText('\n\n'.join(data['comments'])) + msg['From'] = fromaddr + msg['To'] = toaddr + msg['Subject'] = "[issue%s]%s" % (issue_id, props) + s.sendmail(fromaddr, toaddr, msg.as_string()) + finally: s.quit() -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Tue Mar 8 21:33:32 2011 From: python-checkins at python.org (giampaolo.rodola) Date: Tue, 08 Mar 2011 21:33:32 +0100 Subject: [Python-checkins] #8594: fix ResourceWarning in test_ftplib.py - patch by Nadeem Vawda. Message-ID: http://hg.python.org/cpython/rev/7f605fa1688d changeset: 68332:7f605fa1688d parent: 68330:fa23f323d747 user: Giampaolo Rodol? date: Tue Mar 08 21:33:21 2011 +0100 summary: #8594: fix ResourceWarning in test_ftplib.py - patch by Nadeem Vawda. files: Lib/test/test_ftplib.py diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py --- a/Lib/test/test_ftplib.py +++ b/Lib/test/test_ftplib.py @@ -619,8 +619,8 @@ def test_source_address_passive_connection(self): port = support.find_unused_port() self.client.source_address = (HOST, port) - sock = self.client.transfercmd('list') - self.assertEqual(sock.getsockname()[1], port) + with self.client.transfercmd('list') as sock: + self.assertEqual(sock.getsockname()[1], port) def test_parse257(self): self.assertEqual(ftplib.parse257('257 "/foo/bar"'), '/foo/bar') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 8 21:37:49 2011 From: python-checkins at python.org (local-hg) Date: Tue, 08 Mar 2011 21:37:49 +0100 Subject: [Python-checkins] hooks: Fix encoding of username and commit message Message-ID: http://hg.python.org/hooks/rev/197643a8bfd8 changeset: 58:197643a8bfd8 user: Antoine Pitrou date: Tue Mar 08 21:37:49 2011 +0100 summary: Fix encoding of username and commit message files: hgroundup.py diff --git a/hgroundup.py b/hgroundup.py --- a/hgroundup.py +++ b/hgroundup.py @@ -36,6 +36,7 @@ from email.mime.text import MIMEText from mercurial.templatefilters import person +from mercurial.encoding import fromlocal VERBS = r'(?:\b(?Pclose[sd]?|closing|)\s+)?' ISSUE_PATTERN = re.compile(r'%s(?:#|\bissue|\bbug)\s*(?P[0-9]{4,})' @@ -77,20 +78,20 @@ for rev in xrange(start, len(repo)): ctx = repo[rev] - description = ctx.description().strip() + description = fromlocal(ctx.description().strip()) match = ISSUE_PATTERN.search(description) ui.debug('match in commit msg: %s\n' % (match and match.groupdict() or 'no')) if not match: continue data = match.groupdict() comment = Template(COMMENT_TEMPLATE).substitute({ - 'author': person(ctx.user()), + 'author': fromlocal(person(ctx.user())), 'branch': ctx.branch(), 'changeset_id': str(ctx), 'changeset_url': posixpath.join(repourl, str(ctx)), 'commit_msg': description.splitlines()[0], }) - add_comment(issues, ctx.user(), data, comment) + add_comment(issues, data, comment) if issues: try: send_comments(mailrelay, fromaddr, toaddr, issues) @@ -104,7 +105,7 @@ ui.debug("no issues to send to roundup\n") return False -def add_comment(issues, user, data, comment): +def add_comment(issues, data, comment): """Process a comment made in a commit message.""" key = data['issue_id'] if key in issues: @@ -126,7 +127,8 @@ if data['properties']: props = ' [%s]' % ';'.join('%s=%s' % x for x in data['properties'].iteritems()) - msg = MIMEText('\n\n'.join(data['comments'])) + msg = MIMEText('\n\n'.join(data['comments']), + _subtype='plain', _charset='utf8') msg['From'] = fromaddr msg['To'] = toaddr msg['Subject'] = "[issue%s]%s" % (issue_id, props) -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Tue Mar 8 21:52:47 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 08 Mar 2011 21:52:47 +0100 Subject: [Python-checkins] devguide: Mention hginit.com in the FAQ Message-ID: http://hg.python.org/devguide/rev/cd27796396ae changeset: 379:cd27796396ae user: Antoine Pitrou date: Tue Mar 08 21:52:44 2011 +0100 summary: Mention hginit.com in the FAQ files: faq.rst diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -12,7 +12,8 @@ Mercurial_'s (also known as ``hg``) official web site is at http://mercurial.selenic.com/. A book on Mercurial published by `O'Reilly Media`_, `Mercurial: The Definitive Guide`_, is available -for free online. +for free online. Another resource is `Hg Init: a Mercurial tutorial`_ +by Joel Spolsky. With Mercurial installed, you can run the help tool that comes with Mercurial to get help:: @@ -27,6 +28,7 @@ .. _O'Reilly Media: http://www.oreilly.com/ .. _Mercurial\: The Definitive Guide: http://hgbook.red-bean.com/ .. _man page: http://www.selenic.com/mercurial/hg.1.html +.. _Hg Init\: a Mercurial tutorial: http://hginit.com/ What do I need to use Mercurial? -- Repository URL: http://hg.python.org/devguide From tjreedy at udel.edu Tue Mar 8 21:07:29 2011 From: tjreedy at udel.edu (Terry Reedy) Date: Tue, 08 Mar 2011 15:07:29 -0500 Subject: [Python-checkins] hooks: Add roundup integration hook. In-Reply-To: References: Message-ID: <4D768C81.5080609@udel.edu> > +If "closes" or "fixes" (with alternative verb forms like "fixing" > +allowed too) is prepended, the issue is automatically closed as > +"fixed". Fix may be too broad. "This patch fixes the first part of the issue." From python-checkins at python.org Tue Mar 8 22:10:45 2011 From: python-checkins at python.org (local-hg) Date: Tue, 08 Mar 2011 22:10:45 +0100 Subject: [Python-checkins] hooks: Update instructions to reflect latest changes Message-ID: http://hg.python.org/hooks/rev/cb96b70aa47e changeset: 59:cb96b70aa47e user: Antoine Pitrou date: Tue Mar 08 22:10:45 2011 +0100 summary: Update instructions to reflect latest changes files: hgroundup.py diff --git a/hgroundup.py b/hgroundup.py --- a/hgroundup.py +++ b/hgroundup.py @@ -11,9 +11,8 @@ where 12345 is the issue number. -If "closes" or "fixes" (with alternative verb forms like "fixing" -allowed too) is prepended, the issue is automatically closed as -"fixed". +If "closes" (with alternative verb forms like "closing" allowed too) +is prepended, the issue is automatically closed as "fixed". To use this hook, include the following in hgrc: @@ -21,10 +20,15 @@ changegroup.roundup = python:hgroundup.update_issue [hgroundup] - repo = http://hg.python.org/cpython/rev/ + fromaddr = roundup-user at example.com toaddr = roundup-admin at example.com mailrelay = 127.0.0.1 +`fromaddr` must be registered as the address of an existing Roundup user, +otherwise Roundup will refuse and bounce the message. +Also, you need either a `baseurl` property in the [web] section, +or a `repourl` property in the [hgroundup] section. + Initial implementation by Kelsey Hightower . """ import re -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Tue Mar 8 23:54:32 2011 From: python-checkins at python.org (vinay.sajip) Date: Tue, 08 Mar 2011 23:54:32 +0100 Subject: [Python-checkins] (2.6): Issue #11444: Lock handlers while flushing/closing during shutdown. Message-ID: http://hg.python.org/cpython/rev/fc4d045e3170 changeset: 68333:fc4d045e3170 branch: 2.6 parent: 68315:b9d76846bb1c user: Vinay Sajip date: Tue Mar 08 22:39:55 2011 +0000 summary: Issue #11444: Lock handlers while flushing/closing during shutdown. files: Lib/logging/__init__.py diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1513,12 +1513,15 @@ #errors might occur, for example, if files are locked #we just ignore them if raiseExceptions is not set try: + h.acquire() h.flush() h.close() except: if raiseExceptions: raise #else, swallow + finally: + h.release() #Let's try and shutdown automatically on application exit... try: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 8 23:54:33 2011 From: python-checkins at python.org (vinay.sajip) Date: Tue, 08 Mar 2011 23:54:33 +0100 Subject: [Python-checkins] (merge 2.6 -> 2.7): Issue #11444: Merge fix from 2.6. Message-ID: http://hg.python.org/cpython/rev/c8b651b3a493 changeset: 68334:c8b651b3a493 branch: 2.7 parent: 68331:88b5a93b1725 parent: 68333:fc4d045e3170 user: Vinay Sajip date: Tue Mar 08 22:47:18 2011 +0000 summary: Issue #11444: Merge fix from 2.6. files: Lib/logging/__init__.py diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1627,6 +1627,7 @@ h = wr() if h: try: + h.acquire() h.flush() h.close() except (IOError, ValueError): @@ -1635,6 +1636,8 @@ # references to them are still around at # application exit. pass + finally: + h.release() except: if raiseExceptions: raise -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 8 23:54:34 2011 From: python-checkins at python.org (vinay.sajip) Date: Tue, 08 Mar 2011 23:54:34 +0100 Subject: [Python-checkins] (3.1): Issue #11444: Lock handlers while flushing/closing during shutdown. Message-ID: http://hg.python.org/cpython/rev/16f8f359db9c changeset: 68335:16f8f359db9c branch: 3.1 parent: 68323:a7e0cff05597 user: Vinay Sajip date: Tue Mar 08 22:49:57 2011 +0000 summary: Issue #11444: Lock handlers while flushing/closing during shutdown. files: Lib/logging/__init__.py diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1507,12 +1507,15 @@ #errors might occur, for example, if files are locked #we just ignore them if raiseExceptions is not set try: + h.acquire() h.flush() h.close() except: if raiseExceptions: raise #else, swallow + finally: + h.release() #Let's try and shutdown automatically on application exit... try: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 8 23:54:41 2011 From: python-checkins at python.org (vinay.sajip) Date: Tue, 08 Mar 2011 23:54:41 +0100 Subject: [Python-checkins] (merge 3.1 -> 3.2): Issue #11444: Merge fix from 3.1. Message-ID: http://hg.python.org/cpython/rev/39469645857a changeset: 68336:39469645857a branch: 3.2 parent: 68329:bbf8a8a1af17 parent: 68335:16f8f359db9c user: Vinay Sajip date: Tue Mar 08 22:53:21 2011 +0000 summary: Issue #11444: Merge fix from 3.1. files: Lib/logging/__init__.py diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1793,6 +1793,7 @@ h = wr() if h: try: + h.acquire() h.flush() h.close() except (IOError, ValueError): @@ -1801,6 +1802,8 @@ # references to them are still around at # application exit. pass + finally: + h.release() except: if raiseExceptions: raise -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 8 23:54:43 2011 From: python-checkins at python.org (vinay.sajip) Date: Tue, 08 Mar 2011 23:54:43 +0100 Subject: [Python-checkins] (merge 3.2 -> default): Issue #11444: Merge fix from 3.2. Message-ID: http://hg.python.org/cpython/rev/1947cca7f583 changeset: 68337:1947cca7f583 parent: 68332:7f605fa1688d parent: 68336:39469645857a user: Vinay Sajip date: Tue Mar 08 22:54:11 2011 +0000 summary: Issue #11444: Merge fix from 3.2. files: diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1793,6 +1793,7 @@ h = wr() if h: try: + h.acquire() h.flush() h.close() except (IOError, ValueError): @@ -1801,6 +1802,8 @@ # references to them are still around at # application exit. pass + finally: + h.release() except: if raiseExceptions: raise -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 9 01:06:48 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 09 Mar 2011 01:06:48 +0100 Subject: [Python-checkins] devguide: Introduce "hg bisect" Message-ID: http://hg.python.org/devguide/rev/763767f129cf changeset: 380:763767f129cf user: Antoine Pitrou date: Wed Mar 09 01:06:45 2011 +0100 summary: Introduce "hg bisect" files: faq.rst diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -558,6 +558,28 @@ hg update +How do I find which changeset introduced a bug or regression? +------------------------------------------------------------- + +``hg bisect``, as the name indicates, helps you do a bisection of a range of +changesets. Type:: + + hg bisect --bad + +when the current changeset has the bug. Conversely, type:: + + hg bisect --good + +when the current changeset doesn't have the bug (note: you can conveniently start +out with a faraway "good" changeset). Mercurial will automatically +bisect so as to narrow the range of possible culprits, until a single +changeset is isolated. Each time Mercurial presents you with a new changeset, +re-compile Python and run the offending test, for example:: + + make -j2 + ./python -m test -uall test_sometest + + How come feature XYZ isn't available in Mercurial? -------------------------------------------------- -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Wed Mar 9 01:32:50 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 09 Mar 2011 01:32:50 +0100 Subject: [Python-checkins] devguide: Clarify bisect instructions (suggested by Thomas Wouters) Message-ID: http://hg.python.org/devguide/rev/caadb92fa40d changeset: 381:caadb92fa40d user: Antoine Pitrou date: Wed Mar 09 01:32:48 2011 +0100 summary: Clarify bisect instructions (suggested by Thomas Wouters) files: faq.rst diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -562,23 +562,31 @@ ------------------------------------------------------------- ``hg bisect``, as the name indicates, helps you do a bisection of a range of -changesets. Type:: +changesets. + +You need two changesets to start the search: one that is "good" +(doesn't have the bug), and one that is "bad" (has the bug). Usually, you +have just noticed the bug in your working copy, so you can start with:: hg bisect --bad -when the current changeset has the bug. Conversely, type:: +Then you must find a changeset that doesn't have the bug. You can conveniently +choose a faraway changeset (for example a former release), and check that it +is indeed "good". Then type:: hg bisect --good -when the current changeset doesn't have the bug (note: you can conveniently start -out with a faraway "good" changeset). Mercurial will automatically -bisect so as to narrow the range of possible culprits, until a single -changeset is isolated. Each time Mercurial presents you with a new changeset, -re-compile Python and run the offending test, for example:: +Mercurial will automatically bisect so as to narrow the range of possible +culprits, until a single changeset is isolated. Each time Mercurial presents +you with a new changeset, re-compile Python and run the offending test, for +example:: make -j2 ./python -m test -uall test_sometest +Then, type either ``hg bisect --good`` or ``hg bisect --bad`` depending on +whether the test succeeded or failed. + How come feature XYZ isn't available in Mercurial? -------------------------------------------------- -- Repository URL: http://hg.python.org/devguide From solipsis at pitrou.net Wed Mar 9 05:08:18 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Wed, 09 Mar 2011 05:08:18 +0100 Subject: [Python-checkins] Daily reference leaks (1947cca7f583): sum=0 Message-ID: results for 1947cca7f583 on branch "default" -------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogBnalxR', '-x'] From python-checkins at python.org Wed Mar 9 11:33:57 2011 From: python-checkins at python.org (ned.deily) Date: Wed, 09 Mar 2011 11:33:57 +0100 Subject: [Python-checkins] (2.7): Issue #5622: Fix curses.wrapper to raise correct exception if curses Message-ID: http://hg.python.org/cpython/rev/c731e02472c5 changeset: 68338:c731e02472c5 branch: 2.7 parent: 68334:c8b651b3a493 user: Ned Deily date: Wed Mar 09 02:31:55 2011 -0800 summary: Issue #5622: Fix curses.wrapper to raise correct exception if curses initialization fails. files: Lib/curses/wrapper.py Misc/NEWS diff --git a/Lib/curses/wrapper.py b/Lib/curses/wrapper.py --- a/Lib/curses/wrapper.py +++ b/Lib/curses/wrapper.py @@ -43,7 +43,8 @@ return func(stdscr, *args, **kwds) finally: # Set everything back to normal - stdscr.keypad(0) - curses.echo() - curses.nocbreak() - curses.endwin() + if 'stdscr' in locals(): + stdscr.keypad(0) + curses.echo() + curses.nocbreak() + curses.endwin() diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,9 @@ Library ------- +- Issue #5622: Fix curses.wrapper to raise correct exception if curses + initialization fails. + - Issue #11391: Writing to a mmap object created with ``mmap.PROT_READ|mmap.PROT_EXEC`` would segfault instead of raising a TypeError. Patch by Charles-Fran?ois Natali. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 9 11:50:45 2011 From: python-checkins at python.org (ned.deily) Date: Wed, 09 Mar 2011 11:50:45 +0100 Subject: [Python-checkins] (3.1): Issue #5622: Fix curses.wrapper to raise correct exception if curses Message-ID: http://hg.python.org/cpython/rev/6b6b8af33811 changeset: 68339:6b6b8af33811 branch: 3.1 parent: 68335:16f8f359db9c user: Ned Deily date: Wed Mar 09 02:36:51 2011 -0800 summary: Issue #5622: Fix curses.wrapper to raise correct exception if curses initialization fails. files: Lib/curses/wrapper.py Misc/NEWS diff --git a/Lib/curses/wrapper.py b/Lib/curses/wrapper.py --- a/Lib/curses/wrapper.py +++ b/Lib/curses/wrapper.py @@ -43,7 +43,8 @@ return func(stdscr, *args, **kwds) finally: # Set everything back to normal - stdscr.keypad(0) - curses.echo() - curses.nocbreak() - curses.endwin() + if 'stdscr' in locals(): + stdscr.keypad(0) + curses.echo() + curses.nocbreak() + curses.endwin() diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -37,6 +37,9 @@ Library ------- +- Issue #5622: Fix curses.wrapper to raise correct exception if curses + initialization fails. + - Issue #11391: Writing to a mmap object created with ``mmap.PROT_READ|mmap.PROT_EXEC`` would segfault instead of raising a TypeError. Patch by Charles-Fran?ois Natali. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 9 11:50:46 2011 From: python-checkins at python.org (ned.deily) Date: Wed, 09 Mar 2011 11:50:46 +0100 Subject: [Python-checkins] (merge 3.1 -> 3.2): Issue #5622: merge fix from 3.1. Message-ID: http://hg.python.org/cpython/rev/e6c45cd46cb2 changeset: 68340:e6c45cd46cb2 branch: 3.2 parent: 68336:39469645857a parent: 68339:6b6b8af33811 user: Ned Deily date: Wed Mar 09 02:42:23 2011 -0800 summary: Issue #5622: merge fix from 3.1. files: Misc/NEWS diff --git a/Lib/curses/wrapper.py b/Lib/curses/wrapper.py --- a/Lib/curses/wrapper.py +++ b/Lib/curses/wrapper.py @@ -43,7 +43,8 @@ return func(stdscr, *args, **kwds) finally: # Set everything back to normal - stdscr.keypad(0) - curses.echo() - curses.nocbreak() - curses.endwin() + if 'stdscr' in locals(): + stdscr.keypad(0) + curses.echo() + curses.nocbreak() + curses.endwin() diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -31,6 +31,9 @@ Library ------- +- Issue #5622: Fix curses.wrapper to raise correct exception if curses + initialization fails. + - Issue #11391: Writing to a mmap object created with ``mmap.PROT_READ|mmap.PROT_EXEC`` would segfault instead of raising a TypeError. Patch by Charles-Fran?ois Natali. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 9 11:50:50 2011 From: python-checkins at python.org (ned.deily) Date: Wed, 09 Mar 2011 11:50:50 +0100 Subject: [Python-checkins] (merge 3.2 -> default): Issue #5622: merge fix from 3.2. Message-ID: http://hg.python.org/cpython/rev/ec717db610df changeset: 68341:ec717db610df parent: 68337:1947cca7f583 parent: 68340:e6c45cd46cb2 user: Ned Deily date: Wed Mar 09 02:49:59 2011 -0800 summary: Issue #5622: merge fix from 3.2. files: Misc/NEWS diff --git a/Lib/curses/wrapper.py b/Lib/curses/wrapper.py --- a/Lib/curses/wrapper.py +++ b/Lib/curses/wrapper.py @@ -43,7 +43,8 @@ return func(stdscr, *args, **kwds) finally: # Set everything back to normal - stdscr.keypad(0) - curses.echo() - curses.nocbreak() - curses.endwin() + if 'stdscr' in locals(): + stdscr.keypad(0) + curses.echo() + curses.nocbreak() + curses.endwin() diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -55,6 +55,9 @@ Library ------- +- Issue #5622: Fix curses.wrapper to raise correct exception if curses + initialization fails. + - Issue #11408: In threading.Lock.acquire(), only call gettimeofday() when really necessary. Patch by Charles-Fran?ois Natali. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 9 12:54:11 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 09 Mar 2011 12:54:11 +0100 Subject: [Python-checkins] (3.1): Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when Message-ID: http://hg.python.org/cpython/rev/0f9e5042907c changeset: 68342:0f9e5042907c branch: 3.1 parent: 68339:6b6b8af33811 user: Antoine Pitrou date: Wed Mar 09 12:34:41 2011 +0100 summary: Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when there are many tags (e.g. when using mq). Patch by Nadeem Vawda. files: Misc/NEWS Modules/getbuildinfo.c diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when + there are many tags (e.g. when using mq). Patch by Nadeem Vawda. + - Issue #10451: memoryview objects could allow to mutate a readable buffer. Initial patch by Ross Lagerwall. diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -42,7 +42,9 @@ const char * Py_GetBuildInfo(void) { - static char buildinfo[50]; + static char buildinfo[50 + sizeof HGVERSION + + ((sizeof HGTAG > sizeof HGBRANCH) ? + sizeof HGTAG : sizeof HGBRANCH)]; const char *revision = _Py_hgversion(); const char *sep = *revision ? ":" : ""; const char *hgid = _Py_hgidentifier(); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 9 12:54:12 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 09 Mar 2011 12:54:12 +0100 Subject: [Python-checkins] (merge 3.1 -> 3.2): Merge fix for issue #11450 Message-ID: http://hg.python.org/cpython/rev/605c74139754 changeset: 68343:605c74139754 branch: 3.2 parent: 68340:e6c45cd46cb2 parent: 68342:0f9e5042907c user: Antoine Pitrou date: Wed Mar 09 12:47:20 2011 +0100 summary: Merge fix for issue #11450 files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when + there are many tags (e.g. when using mq). Patch by Nadeem Vawda. + - Issue #11246: Fix PyUnicode_FromFormat("%V") to decode the byte string from UTF-8 (with replace error handler) instead of ISO-8859-1 (in strict mode). Patch written by Ray Allen. diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -42,7 +42,9 @@ const char * Py_GetBuildInfo(void) { - static char buildinfo[50]; + static char buildinfo[50 + sizeof HGVERSION + + ((sizeof HGTAG > sizeof HGBRANCH) ? + sizeof HGTAG : sizeof HGBRANCH)]; const char *revision = _Py_hgversion(); const char *sep = *revision ? ":" : ""; const char *hgid = _Py_hgidentifier(); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 9 12:54:13 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 09 Mar 2011 12:54:13 +0100 Subject: [Python-checkins] (merge 3.2 -> default): Merge fix for issue #11450 Message-ID: http://hg.python.org/cpython/rev/1e00b161f5f5 changeset: 68344:1e00b161f5f5 parent: 68341:ec717db610df parent: 68343:605c74139754 user: Antoine Pitrou date: Wed Mar 09 12:53:30 2011 +0100 summary: Merge fix for issue #11450 files: Misc/NEWS Modules/getbuildinfo.c diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when + there are many tags (e.g. when using mq). Patch by Nadeem Vawda. + - Issue #11335: Fixed a memory leak in list.sort when the key function throws an exception. diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -34,7 +34,9 @@ const char * Py_GetBuildInfo(void) { - static char buildinfo[50]; + static char buildinfo[50 + sizeof HGVERSION + + ((sizeof HGTAG > sizeof HGBRANCH) ? + sizeof HGTAG : sizeof HGBRANCH)]; const char *revision = _Py_hgversion(); const char *sep = *revision ? ":" : ""; const char *hgid = _Py_hgidentifier(); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 9 12:54:17 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 09 Mar 2011 12:54:17 +0100 Subject: [Python-checkins] (2.7): Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when Message-ID: http://hg.python.org/cpython/rev/a7412744822d changeset: 68345:a7412744822d branch: 2.7 parent: 68338:c731e02472c5 user: Antoine Pitrou date: Wed Mar 09 12:54:00 2011 +0100 summary: Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when there are many tags (e.g. when using mq). Patch by Nadeem Vawda. files: Misc/NEWS Modules/getbuildinfo.c diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -9,6 +9,9 @@ Core and Builtins ----------------- +- Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when + there are many tags (e.g. when using mq). Patch by Nadeem Vawda. + - Issue #10451: memoryview objects could allow to mutate a readable buffer. Initial patch by Ross Lagerwall. diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -42,7 +42,9 @@ const char * Py_GetBuildInfo(void) { - static char buildinfo[50]; + static char buildinfo[50 + sizeof HGVERSION + + ((sizeof HGTAG > sizeof HGBRANCH) ? + sizeof HGTAG : sizeof HGBRANCH)]; const char *revision = _Py_hgversion(); const char *sep = *revision ? ":" : ""; const char *hgid = _Py_hgidentifier(); -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Thu Mar 10 05:12:07 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Thu, 10 Mar 2011 05:12:07 +0100 Subject: [Python-checkins] Daily reference leaks (1e00b161f5f5): sum=0 Message-ID: results for 1e00b161f5f5 on branch "default" -------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogfuZDdg', '-x'] From python-checkins at python.org Thu Mar 10 11:16:58 2011 From: python-checkins at python.org (ezio.melotti) Date: Thu, 10 Mar 2011 11:16:58 +0100 Subject: [Python-checkins] (3.1): Backport from 3.2 several improvements and fixes for unittest.rst. Message-ID: http://hg.python.org/cpython/rev/cb3a925de1bd changeset: 68346:cb3a925de1bd branch: 3.1 parent: 68342:0f9e5042907c user: Ezio Melotti date: Thu Mar 10 12:16:35 2011 +0200 summary: Backport from 3.2 several improvements and fixes for unittest.rst. files: Doc/library/unittest.rst diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -8,9 +8,8 @@ .. sectionauthor:: Fred L. Drake, Jr. .. sectionauthor:: Raymond Hettinger - -.. versionchanged:: 3.1 - Added test :ref:`skipping and expected failures `. +(If you are already familiar with the basic concepts of testing, you might want +to skip to :ref:`the list of assert methods `.) The Python unit testing framework, sometimes referred to as "PyUnit," is a Python language version of JUnit, by Kent Beck and Erich Gamma. JUnit is, in @@ -77,16 +76,26 @@ Module :mod:`doctest` Another test-support module with a very different flavor. + `unittest2: A backport of new unittest features for Python 2.4-2.6 `_ + Many new features were added to unittest in Python 2.7, including test + discovery. unittest2 allows you to use these features with earlier + versions of Python. + `Simple Smalltalk Testing: With Patterns `_ - Kent Beck's original paper on testing frameworks using the pattern shared by - :mod:`unittest`. + Kent Beck's original paper on testing frameworks using the pattern shared + by :mod:`unittest`. `Nose `_ and `py.test `_ - Third-party unittest frameworks with a lighter-weight syntax - for writing tests. For example, ``assert func(10) == 42``. + Third-party unittest frameworks with a lighter-weight syntax for writing + tests. For example, ``assert func(10) == 42``. - `python-mock `_ and `minimock `_ - Tools for creating mock test objects (objects simulating external resources). + `The Python Testing Tools Taxonomy `_ + An extensive list of Python testing tools including functional testing + frameworks and mock object libraries. + + `Testing in Python Mailing List `_ + A special-interest-group for discussion of testing, and testing tools, + in Python. .. _unittest-minimal-example: @@ -113,12 +122,16 @@ self.seq.sort() self.assertEqual(self.seq, list(range(10))) + # should raise an exception for an immutable sequence + self.assertRaises(TypeError, random.shuffle, (1,2,3)) + def test_choice(self): element = random.choice(self.seq) self.assertIn(element, self.seq) def test_sample(self): - self.assertRaises(ValueError, random.sample, self.seq, 20) + with self.assertRaises(ValueError): + random.sample(self.seq, 20) for element in random.sample(self.seq, 5): self.assertIn(element, self.seq) @@ -131,7 +144,7 @@ represent tests. The crux of each test is a call to :meth:`~TestCase.assertEqual` to check for an -expected result; :meth:`~TestCase.assert_` to verify a condition; or +expected result; :meth:`~TestCase.assertTrue` to verify a condition; or :meth:`~TestCase.assertRaises` to verify that an expected exception gets raised. These methods are used instead of the :keyword:`assert` statement so the test runner can accumulate all test results and produce a report. @@ -178,7 +191,7 @@ .. _unittest-command-line-interface: -Command-Line Interface +Command Line Interface ---------------------- The unittest module can be used from the command line to run tests from @@ -230,13 +243,12 @@ self.assertEqual(widget.size(), (50, 50), 'incorrect default size') Note that in order to test something, we use the one of the :meth:`assert\*` -methods provided by the :class:`TestCase` base class. If the -test fails, an exception will be raised, and :mod:`unittest` will identify the -test case as a :dfn:`failure`. Any other exceptions will be treated as -:dfn:`errors`. This helps you identify where the problem is: :dfn:`failures` are -caused by incorrect results - a 5 where you expected a 6. :dfn:`Errors` are -caused by incorrect code - e.g., a :exc:`TypeError` caused by an incorrect -function call. +methods provided by the :class:`TestCase` base class. If the test fails, an +exception will be raised, and :mod:`unittest` will identify the test case as a +:dfn:`failure`. Any other exceptions will be treated as :dfn:`errors`. This +helps you identify where the problem is: :dfn:`failures` are caused by incorrect +results - a 5 where you expected a 6. :dfn:`Errors` are caused by incorrect +code - e.g., a :exc:`TypeError` caused by an incorrect function call. The way to run a test case will be described later. For now, note that to construct an instance of such a test case, we call its constructor without @@ -436,10 +448,10 @@ .. note:: - Even though :class:`FunctionTestCase` can be used to quickly convert an existing - test base over to a :mod:`unittest`\ -based system, this approach is not - recommended. Taking the time to set up proper :class:`TestCase` subclasses will - make future test refactorings infinitely easier. + Even though :class:`FunctionTestCase` can be used to quickly convert an + existing test base over to a :mod:`unittest`\ -based system, this approach is + not recommended. Taking the time to set up proper :class:`TestCase` + subclasses will make future test refactorings infinitely easier. In some cases, the existing tests may have been written using the :mod:`doctest` module. If so, :mod:`doctest` provides a :class:`DocTestSuite` class that can @@ -452,6 +464,8 @@ Skipping tests and expected failures ------------------------------------ +.. versionadded:: 3.1 + Unittest supports skipping individual test methods and even whole classes of tests. In addition, it supports marking a test as a "expected failure," a test that is broken and will fail, but shouldn't be counted as a failure on a @@ -468,7 +482,8 @@ def test_nothing(self): self.fail("shouldn't happen") - @unittest.skipIf(mylib.__version__ < (1, 3), "not supported in this library version") + @unittest.skipIf(mylib.__version__ < (1, 3), + "not supported in this library version") def test_format(self): # Tests that work for only a certain version of the library. pass @@ -603,7 +618,7 @@ .. method:: run(result=None) Run the test, collecting the result into the test result object passed as - *result*. If *result* is omitted or :const:`None`, a temporary result + *result*. If *result* is omitted or ``None``, a temporary result object is created (by calling the :meth:`defaultTestResult` method) and used. The result object is not returned to :meth:`run`'s caller. @@ -625,121 +640,95 @@ by the test to be propagated to the caller, and can be used to support running tests under a debugger. - The test code can use any of the following methods to check for and report - failures. + .. _assert-methods: + The :class:`TestCase` class provides a number of methods to check for and + report failures, such as: - .. method:: assertTrue(expr, msg=None) - assert_(expr, msg=None) - failUnless(expr, msg=None) + +-----------------------------------------+-----------------------------+---------------+ + | Method | Checks that | New in | + +=========================================+=============================+===============+ + | :meth:`assertEqual(a, b) | ``a == b`` | | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertNotEqual(a, b) | ``a != b`` | | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertTrue(x) | ``bool(x) is True`` | | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertFalse(x) | ``bool(x) is False`` | | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertIs(a, b) | ``a is b`` | 3.1 | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertIsNot(a, b) | ``a is not b`` | 3.1 | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertIsNone(x) | ``x is None`` | 3.1 | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertIsNotNone(x) | ``x is not None`` | 3.1 | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertIn(a, b) | ``a in b`` | 3.1 | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertNotIn(a, b) | ``a not in b`` | 3.1 | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ - Signal a test failure if *expr* is false; the explanation for the failure - will be *msg* if given, otherwise it will be :const:`None`. - - .. deprecated:: 3.1 - :meth:`failUnless`. - + All the assert methods (except :meth:`assertRaises`, + :meth:`assertRaisesRegexp`, :meth:`assertWarns`, :meth:`assertWarnsRegexp`) + accept a *msg* argument that, if specified, is used as the error message on + failure (see also :data:`longMessage`). .. method:: assertEqual(first, second, msg=None) - failUnlessEqual(first, second, msg=None) Test that *first* and *second* are equal. If the values do not compare - equal, the test will fail with the explanation given by *msg*, or - :const:`None`. Note that using :meth:`assertEqual` improves upon - doing the comparison as the first parameter to :meth:`assertTrue`: the - default value for *msg* include representations of both *first* and - *second*. + equal, the test will fail. In addition, if *first* and *second* are the exact same type and one of - list, tuple, dict, set, or frozenset or any type that a subclass - registers :meth:`addTypeEqualityFunc` the type specific equality function - will be called in order to generate a more useful default error message. + list, tuple, dict, set, frozenset or str or any type that a subclass + registers with :meth:`addTypeEqualityFunc` the type specific equality + function will be called in order to generate a more useful default + error message (see also the :ref:`list of type-specific methods + `). .. versionchanged:: 3.1 Added the automatic calling of type specific equality function. - .. deprecated:: 3.1 - :meth:`failUnlessEqual`. - .. method:: assertNotEqual(first, second, msg=None) - failIfEqual(first, second, msg=None) Test that *first* and *second* are not equal. If the values do compare - equal, the test will fail with the explanation given by *msg*, or - :const:`None`. Note that using :meth:`assertNotEqual` improves upon doing - the comparison as the first parameter to :meth:`assertTrue` is that the - default value for *msg* can be computed to include representations of both - *first* and *second*. + equal, the test will fail. - .. deprecated:: 3.1 - :meth:`failIfEqual`. + .. method:: assertTrue(expr, msg=None) + assertFalse(expr, msg=None) + Test that *expr* is true (or false). - .. method:: assertAlmostEqual(first, second, places=7, msg=None) - failUnlessAlmostEqual(first, second, places=7, msg=None) + Note that this is equivalent to ``bool(expr) is True`` and not to ``expr + is True`` (use ``assertIs(expr, True)`` for the latter). This method + should also be avoided when more specific methods are available (e.g. + ``assertEqual(a, b)`` instead of ``assertTrue(a == b)``), because they + provide a better error message in case of failure. - Test that *first* and *second* are approximately equal by computing the - difference, rounding to the given number of decimal *places* (default 7), - and comparing to zero. - Note that comparing a given number of decimal places is not the same as - comparing a given number of significant digits. If the values do not - compare equal, the test will fail with the explanation given by *msg*, or - :const:`None`. + .. method:: assertIs(first, second, msg=None) + assertIsNot(first, second, msg=None) - .. deprecated:: 3.1 - :meth:`failUnlessAlmostEqual`. - - - .. method:: assertNotAlmostEqual(first, second, places=7, msg=None) - failIfAlmostEqual(first, second, places=7, msg=None) - - Test that *first* and *second* are not approximately equal by computing - the difference, rounding to the given number of decimal *places* (default - 7), and comparing to zero. - - Note that comparing a given number of decimal places is not the same as - comparing a given number of significant digits. If the values do not - compare equal, the test will fail with the explanation given by *msg*, or - :const:`None`. - - .. deprecated:: 3.1 - :meth:`failIfAlmostEqual`. - - - .. method:: assertGreater(first, second, msg=None) - assertGreaterEqual(first, second, msg=None) - assertLess(first, second, msg=None) - assertLessEqual(first, second, msg=None) - - Test that *first* is respectively >, >=, < or <= than *second* depending - on the method name. If not, the test will fail with an explanation - or with the explanation given by *msg*:: - - >>> self.assertGreaterEqual(3, 4) - AssertionError: "3" unexpectedly not greater than or equal to "4" + Test that *first* and *second* evaluate (or don't evaluate) to the same object. .. versionadded:: 3.1 - .. method:: assertMultiLineEqual(self, first, second, msg=None) + .. method:: assertIsNone(expr, msg=None) + assertIsNotNone(expr, msg=None) - Test that the multiline string *first* is equal to the string *second*. - When not equal a diff of the two strings highlighting the differences - will be included in the error message. - - If specified *msg* will be used as the error message on failure. - - .. versionadded:: 3.1 - - - .. method:: assertRegexpMatches(text, regexp, msg=None): - - Verifies that a *regexp* search matches *text*. Fails with an error - message including the pattern and the *text*. *regexp* may be - a regular expression object or a string containing a regular expression - suitable for use by :func:`re.search`. + Test that *expr* is (or is not) None. .. versionadded:: 3.1 @@ -747,94 +736,27 @@ .. method:: assertIn(first, second, msg=None) assertNotIn(first, second, msg=None) - Tests that *first* is or is not in *second* with an explanatory error - message as appropriate. - - If specified *msg* will be used as the error message on failure. + Test that *first* is (or is not) in *second*. .. versionadded:: 3.1 - .. method:: assertSameElements(actual, expected, msg=None) - Test that sequence *expected* contains the same elements as *actual*, - regardless of their order. When they don't, an error message listing - the differences between the sequences will be generated. + It is also possible to check that exceptions and warnings are raised using + the following methods: - Duplicate elements are ignored when comparing *actual* and *expected*. - It is the equivalent of ``assertEqual(set(expected), set(actual))`` - but it works with sequences of unhashable objects as well. - - If specified *msg* will be used as the error message on failure. - - .. versionadded:: 3.1 - - - .. method:: assertSetEqual(set1, set2, msg=None) - - Tests that two sets are equal. If not, an error message is constructed - that lists the differences between the sets. - - Fails if either of *set1* or *set2* does not have a :meth:`set.difference` - method. - - If specified *msg* will be used as the error message on failure. - - .. versionadded:: 3.1 - - - .. method:: assertDictEqual(expected, actual, msg=None) - - Test that two dictionaries are equal. If not, an error message is - constructed that shows the differences in the dictionaries. - - If specified *msg* will be used as the error message on failure. - - .. versionadded:: 3.1 - - - .. method:: assertDictContainsSubset(expected, actual, msg=None) - - Tests whether the key/value pairs in dictionary *actual* are a - superset of those in *expected*. If not, an error message listing - the missing keys and mismatched values is generated. - - If specified *msg* will be used as the error message on failure. - - .. versionadded:: 3.1 - - - .. method:: assertListEqual(list1, list2, msg=None) - assertTupleEqual(tuple1, tuple2, msg=None) - - Tests that two lists or tuples are equal. If not an error message is - constructed that shows only the differences between the two. An error - is also raised if either of the parameters are of the wrong type. - - If specified *msg* will be used as the error message on failure. - - .. versionadded:: 3.1 - - - .. method:: assertSequenceEqual(seq1, seq2, msg=None, seq_type=None) - - Tests that two sequences are equal. If a *seq_type* is supplied, both - *seq1* and *seq2* must be instances of *seq_type* or a failure will - be raised. If the sequences are different an error message is - constructed that shows the difference between the two. - - If specified *msg* will be used as the error message on failure. - - This method is used to implement :meth:`assertListEqual` and - :meth:`assertTupleEqual`. - - .. versionadded:: 3.1 - + +---------------------------------------------------------+--------------------------------------+------------+ + | Method | Checks that | New in | + +=========================================================+======================================+============+ + | :meth:`assertRaises(exc, fun, *args, **kwds) | ``fun(*args, **kwds)`` raises `exc` | | + | ` | | | + +---------------------------------------------------------+--------------------------------------+------------+ + | :meth:`assertRaisesRegexp(exc, re, fun, *args, **kwds) | ``fun(*args, **kwds)`` raises `exc` | 3.1 | + | ` | and the message matches `re` | | + +---------------------------------------------------------+--------------------------------------+------------+ .. method:: assertRaises(exception, callable, *args, **kwds) - failUnlessRaises(exception, callable, *args, **kwds) assertRaises(exception) - failUnlessRaises(exception) Test that an exception is raised when *callable* is called with any positional or keyword arguments that are also passed to @@ -852,11 +774,9 @@ .. versionchanged:: 3.1 Added the ability to use :meth:`assertRaises` as a context manager. - .. deprecated:: 3.1 - :meth:`failUnlessRaises`. - - .. method:: assertRaisesRegexp(exception, regexp[, callable, ...]) + .. method:: assertRaisesRegexp(exception, regexp, callable, *args, **kwds) + assertRaisesRegexp(exception, regexp) Like :meth:`assertRaises` but also tests that *regexp* matches on the string representation of the raised exception. *regexp* may be @@ -874,52 +794,219 @@ .. versionadded:: 3.1 - .. method:: assertIsNone(expr, msg=None) - This signals a test failure if *expr* is not None. + There are also other methods used to perform more specific checks, such as: + + +---------------------------------------+--------------------------------+--------------+ + | Method | Checks that | New in | + +=======================================+================================+==============+ + | :meth:`assertAlmostEqual(a, b) | ``round(a-b, 7) == 0`` | | + | ` | | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertNotAlmostEqual(a, b) | ``round(a-b, 7) != 0`` | | + | ` | | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertGreater(a, b) | ``a > b`` | 3.1 | + | ` | | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertGreaterEqual(a, b) | ``a >= b`` | 3.1 | + | ` | | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertLess(a, b) | ``a < b`` | 3.1 | + | ` | | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertLessEqual(a, b) | ``a <= b`` | 3.1 | + | ` | | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertRegexpMatches(s, re) | ``regex.search(s)`` | 3.1 | + | ` | | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertDictContainsSubset(a, b) | all the key/value pairs | 3.1 | + | ` | in `a` exist in `b` | | + +---------------------------------------+--------------------------------+--------------+ + + + .. method:: assertAlmostEqual(first, second, places=7, msg=None, delta=None) + assertNotAlmostEqual(first, second, places=7, msg=None, delta=None) + + Test that *first* and *second* are approximately (or not approximately) + equal by computing the difference, rounding to the given number of + decimal *places* (default 7), and comparing to zero. Note that these + methods round the values to the given number of *decimal places* (i.e. + like the :func:`round` function) and not *significant digits*. + + If *delta* is supplied instead of *places* then the difference + between *first* and *second* must be less (or more) than *delta*. + + Supplying both *delta* and *places* raises a ``TypeError``. + + + .. method:: assertGreater(first, second, msg=None) + assertGreaterEqual(first, second, msg=None) + assertLess(first, second, msg=None) + assertLessEqual(first, second, msg=None) + + Test that *first* is respectively >, >=, < or <= than *second* depending + on the method name. If not, the test will fail:: + + >>> self.assertGreaterEqual(3, 4) + AssertionError: "3" unexpectedly not greater than or equal to "4" .. versionadded:: 3.1 - .. method:: assertIsNotNone(expr, msg=None) + .. method:: assertRegexpMatches(text, regexp, msg=None) - The inverse of the :meth:`assertIsNone` method. - This signals a test failure if *expr* is None. + Test that a *regexp* search matches *text*. In case + of failure, the error message will include the pattern and the *text* (or + the pattern and the part of *text* that unexpectedly matched). *regexp* + may be a regular expression object or a string containing a regular + expression suitable for use by :func:`re.search`. + + .. versionadded:: 3.1 :meth:`~TestCase.assertRegexpMatches` + + + .. method:: assertDictContainsSubset(expected, actual, msg=None) + + Tests whether the key/value pairs in dictionary *actual* are a + superset of those in *expected*. If not, an error message listing + the missing keys and mismatched values is generated. + + .. versionadded:: 3.1 + .. deprecated:: 3.2 + + + .. method:: assertSameElements(actual, expected, msg=None) + + Test that sequence *expected* contains the same elements as *actual*, + regardless of their order. When they don't, an error message listing + the differences between the sequences will be generated. + + Duplicate elements are ignored when comparing *actual* and *expected*. + It is the equivalent of ``assertEqual(set(expected), set(actual))`` + but it works with sequences of unhashable objects as well. Because + duplicates are ignored, this method has been deprecated in favour of + :meth:`assertItemsEqual`. + + .. versionadded:: 3.1 + .. deprecated:: 3.2 + + + .. _type-specific-methods: + + The :meth:`assertEqual` method dispatches the equality check for objects of + the same type to different type-specific methods. These methods are already + implemented for most of the built-in types, but it's also possible to + register new methods using :meth:`addTypeEqualityFunc`: + + .. method:: addTypeEqualityFunc(typeobj, function) + + Registers a type-specific method called by :meth:`assertEqual` to check + if two objects of exactly the same *typeobj* (not subclasses) compare + equal. *function* must take two positional arguments and a third msg=None + keyword argument just as :meth:`assertEqual` does. It must raise + :data:`self.failureException(msg) ` when inequality + between the first two parameters is detected -- possibly providing useful + information and explaining the inequalities in details in the error + message. .. versionadded:: 3.1 + The list of type-specific methods automatically used by + :meth:`~TestCase.assertEqual` are summarized in the following table. Note + that it's usually not necessary to invoke these methods directly. - .. method:: assertIs(expr1, expr2, msg=None) + +-----------------------------------------+-----------------------------+--------------+ + | Method | Used to compare | New in | + +=========================================+=============================+==============+ + | :meth:`assertMultiLineEqual(a, b) | strings | 3.1 | + | ` | | | + +-----------------------------------------+-----------------------------+--------------+ + | :meth:`assertSequenceEqual(a, b) | sequences | 3.1 | + | ` | | | + +-----------------------------------------+-----------------------------+--------------+ + | :meth:`assertListEqual(a, b) | lists | 3.1 | + | ` | | | + +-----------------------------------------+-----------------------------+--------------+ + | :meth:`assertTupleEqual(a, b) | tuples | 3.1 | + | ` | | | + +-----------------------------------------+-----------------------------+--------------+ + | :meth:`assertSetEqual(a, b) | sets or frozensets | 3.1 | + | ` | | | + +-----------------------------------------+-----------------------------+--------------+ + | :meth:`assertDictEqual(a, b) | dicts | 3.1 | + | ` | | | + +-----------------------------------------+-----------------------------+--------------+ - This signals a test failure if *expr1* and *expr2* don't evaluate to the same - object. + + + .. method:: assertMultiLineEqual(first, second, msg=None) + + Test that the multiline string *first* is equal to the string *second*. + When not equal a diff of the two strings highlighting the differences + will be included in the error message. This method is used by default + when comparing strings with :meth:`assertEqual`. .. versionadded:: 3.1 - .. method:: assertIsNot(expr1, expr2, msg=None) + .. method:: assertSequenceEqual(seq1, seq2, msg=None, seq_type=None) - The inverse of the :meth:`assertIs` method. - This signals a test failure if *expr1* and *expr2* evaluate to the same - object. + Tests that two sequences are equal. If a *seq_type* is supplied, both + *seq1* and *seq2* must be instances of *seq_type* or a failure will + be raised. If the sequences are different an error message is + constructed that shows the difference between the two. + + This method is not called directly by :meth:`assertEqual`, but + it's used to implement :meth:`assertListEqual` and + :meth:`assertTupleEqual`. .. versionadded:: 3.1 - .. method:: assertFalse(expr, msg=None) - failIf(expr, msg=None) + .. method:: assertListEqual(list1, list2, msg=None) + assertTupleEqual(tuple1, tuple2, msg=None) - The inverse of the :meth:`assertTrue` method is the :meth:`assertFalse` method. - This signals a test failure if *expr* is true, with *msg* or :const:`None` - for the error message. + Tests that two lists or tuples are equal. If not an error message is + constructed that shows only the differences between the two. An error + is also raised if either of the parameters are of the wrong type. + These methods are used by default when comparing lists or tuples with + :meth:`assertEqual`. - .. deprecated:: 3.1 - :meth:`failIf`. + .. versionadded:: 3.1 + + + .. method:: assertSetEqual(set1, set2, msg=None) + + Tests that two sets are equal. If not, an error message is constructed + that lists the differences between the sets. This method is used by + default when comparing sets or frozensets with :meth:`assertEqual`. + + Fails if either of *set1* or *set2* does not have a :meth:`set.difference` + method. + + .. versionadded:: 3.1 + + + .. method:: assertDictEqual(expected, actual, msg=None) + + Test that two dictionaries are equal. If not, an error message is + constructed that shows the differences in the dictionaries. This + method will be used by default to compare dictionaries in + calls to :meth:`assertEqual`. + + .. versionadded:: 3.1 + + + + .. _other-methods-and-attrs: + + Finally the :class:`TestCase` provides the following methods and attributes: .. method:: fail(msg=None) - Signals a test failure unconditionally, with *msg* or :const:`None` for + Signals a test failure unconditionally, with *msg* or ``None`` for the error message. @@ -934,18 +1021,19 @@ .. attribute:: longMessage - If set to True then any explicit failure message you pass in to the - assert methods will be appended to the end of the normal failure message. - The normal messages contain useful information about the objects involved, - for example the message from assertEqual shows you the repr of the two - unequal objects. Setting this attribute to True allows you to have a - custom error message in addition to the normal one. + If set to ``True`` then any explicit failure message you pass in to the + :ref:`assert methods ` will be appended to the end of the + normal failure message. The normal messages contain useful information + about the objects involved, for example the message from assertEqual + shows you the repr of the two unequal objects. Setting this attribute + to ``True`` allows you to have a custom error message in addition to the + normal one. - This attribute defaults to False, meaning that a custom message passed + This attribute defaults to ``False``, meaning that a custom message passed to an assert method will silence the normal message. The class setting can be overridden in individual tests by assigning an - instance attribute to True or False before calling the assert methods. + instance attribute to ``True`` or ``False`` before calling the assert methods. .. versionadded:: 3.1 @@ -979,7 +1067,7 @@ .. method:: shortDescription() - Returns a description of the test, or :const:`None` if no description + Returns a description of the test, or ``None`` if no description has been provided. The default implementation of this method returns the first line of the test method's docstring, if available, along with the method name. @@ -991,23 +1079,6 @@ thoughtful enough to write a docstring. - .. method:: addTypeEqualityFunc(typeobj, function) - - Registers a type specific :meth:`assertEqual` equality checking - function to be called by :meth:`assertEqual` when both objects it has - been asked to compare are exactly *typeobj* (not subclasses). - *function* must take two positional arguments and a third msg=None - keyword argument just as :meth:`assertEqual` does. It must raise - ``self.failureException`` when inequality between the first two - parameters is detected. - - One good use of custom equality checking functions for a type - is to raise ``self.failureException`` with an error message useful - for debugging the problem by explaining the inequalities in detail. - - .. versionadded:: 3.1 - - .. method:: addCleanup(function, *args, **kwargs) Add a function to be called after :meth:`tearDown` to cleanup resources @@ -1019,7 +1090,7 @@ If :meth:`setUp` fails, meaning that :meth:`tearDown` is not called, then any cleanup functions added will still be called. - .. versionadded:: 3.2 + .. versionadded:: 3.1 .. method:: doCleanups() @@ -1035,16 +1106,40 @@ :meth:`doCleanups` pops methods off the stack of cleanup functions one at a time, so it can be called at any time. - .. versionadded:: 3.2 + .. versionadded:: 3.1 .. class:: FunctionTestCase(testFunc, setUp=None, tearDown=None, description=None) This class implements the portion of the :class:`TestCase` interface which - allows the test runner to drive the test, but does not provide the methods which - test code can use to check and report errors. This is used to create test cases - using legacy test code, allowing it to be integrated into a :mod:`unittest`\ - -based test framework. + allows the test runner to drive the test, but does not provide the methods + which test code can use to check and report errors. This is used to create + test cases using legacy test code, allowing it to be integrated into a + :mod:`unittest`-based test framework. + + +Deprecated aliases +################## + +For historical reasons, some of the :class:`TestCase` methods had one or more +aliases that are now deprecated. The following table lists the correct names +along with their deprecated aliases: + + ============================== =============================== + Method Name Deprecated alias(es) + ============================== =============================== + :meth:`.assertEqual` failUnlessEqual, assertEquals + :meth:`.assertNotEqual` failIfEqual + :meth:`.assertTrue` failUnless, assert\_ + :meth:`.assertFalse` failIf + :meth:`.assertRaises` failUnlessRaises + :meth:`.assertAlmostEqual` failUnlessAlmostEqual + :meth:`.assertNotAlmostEqual` failIfAlmostEqual + ============================== =============================== + + .. deprecated:: 3.1 + the aliases listed in the second column + .. _testsuite-objects: @@ -1079,8 +1174,8 @@ Add all the tests from an iterable of :class:`TestCase` and :class:`TestSuite` instances to this test suite. - This is equivalent to iterating over *tests*, calling :meth:`addTest` for each - element. + This is equivalent to iterating over *tests*, calling :meth:`addTest` for + each element. :class:`TestSuite` shares the following methods with :class:`TestCase`: @@ -1114,11 +1209,6 @@ (for example when counting tests or comparing for equality) so the tests returned must be the same for repeated iterations. - .. versionchanged:: 3.2 - In earlier versions the :class:`TestSuite` accessed tests directly rather - than through iteration, so overriding :meth:`__iter__` wasn't sufficient - for providing tests. - In the typical usage of a :class:`TestSuite` object, the :meth:`run` method is invoked by a :class:`TestRunner` rather than by the end-user test harness. @@ -1174,12 +1264,12 @@ For example, if you have a module :mod:`SampleTests` containing a :class:`TestCase`\ -derived class :class:`SampleTestCase` with three test methods (:meth:`test_one`, :meth:`test_two`, and :meth:`test_three`), the - specifier ``'SampleTests.SampleTestCase'`` would cause this method to return a - suite which will run all three test methods. Using the specifier - ``'SampleTests.SampleTestCase.test_two'`` would cause it to return a test suite - which will run only the :meth:`test_two` test method. The specifier can refer - to modules and packages which have not been imported; they will be imported as a - side-effect. + specifier ``'SampleTests.SampleTestCase'`` would cause this method to + return a suite which will run all three test methods. Using the specifier + ``'SampleTests.SampleTestCase.test_two'`` would cause it to return a test + suite which will run only the :meth:`test_two` test method. The specifier + can refer to modules and packages which have not been imported; they will + be imported as a side-effect. The method optionally resolves *name* relative to the given *module*. @@ -1196,6 +1286,7 @@ Return a sorted sequence of method names found within *testCaseClass*; this should be a subclass of :class:`TestCase`. + The following attributes of a :class:`TestLoader` can be configured either by subclassing or assignment on an instance: @@ -1286,14 +1377,14 @@ .. method:: wasSuccessful() - Return :const:`True` if all tests run so far have passed, otherwise returns - :const:`False`. + Return ``True`` if all tests run so far have passed, otherwise returns + ``False``. .. method:: stop() This method can be called to signal that the set of tests being run should - be aborted by setting the :attr:`shouldStop` attribute to :const:`True`. + be aborted by setting the :attr:`shouldStop` attribute to ``True``. :class:`TestRunner` objects should respect this flag and return without running any additional tests. @@ -1328,14 +1419,14 @@ Called once before any tests are executed. - .. versionadded:: 3.2 + .. versionadded:: 3.1 .. method:: stopTestRun(test) - Called once before any tests are executed. + Called once after all tests are executed. - .. versionadded:: 3.2 + .. versionadded:: 3.1 .. method:: addError(test, err) @@ -1351,8 +1442,8 @@ .. method:: addFailure(test, err) - Called when the test case *test* signals a failure. *err* is a tuple of the form - returned by :func:`sys.exc_info`: ``(type, value, traceback)``. + Called when the test case *test* signals a failure. *err* is a tuple of + the form returned by :func:`sys.exc_info`: ``(type, value, traceback)``. The default implementation appends a tuple ``(test, formatted_err)`` to the instance's :attr:`failures` attribute, where *formatted_err* is a @@ -1423,6 +1514,7 @@ if __name__ == '__main__': unittest.main() + The *testRunner* argument can either be a test runner class or an already created instance of it. By default ``main`` calls :func:`sys.exit` with an exit code indicating success or failure of the tests run. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 10 12:47:17 2011 From: python-checkins at python.org (ezio.melotti) Date: Thu, 10 Mar 2011 12:47:17 +0100 Subject: [Python-checkins] (merge 3.1 -> 3.2): Port a couple of changes from 3.1. Message-ID: http://hg.python.org/cpython/rev/6e3551d37b03 changeset: 68347:6e3551d37b03 branch: 3.2 parent: 68343:605c74139754 parent: 68346:cb3a925de1bd user: Ezio Melotti date: Thu Mar 10 13:46:50 2011 +0200 summary: Port a couple of changes from 3.1. files: Doc/library/unittest.rst diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1408,7 +1408,7 @@ If :meth:`setUp` fails, meaning that :meth:`tearDown` is not called, then any cleanup functions added will still be called. - .. versionadded:: 3.2 + .. versionadded:: 3.1 .. method:: doCleanups() @@ -1424,7 +1424,7 @@ :meth:`doCleanups` pops methods off the stack of cleanup functions one at a time, so it can be called at any time. - .. versionadded:: 3.2 + .. versionadded:: 3.1 .. class:: FunctionTestCase(testFunc, setUp=None, tearDown=None, description=None) @@ -1801,14 +1801,14 @@ Called once before any tests are executed. - .. versionadded:: 3.2 + .. versionadded:: 3.1 .. method:: stopTestRun(test) Called once after all tests are executed. - .. versionadded:: 3.2 + .. versionadded:: 3.1 .. method:: addError(test, err) @@ -1922,7 +1922,7 @@ .. function:: main(module='__main__', defaultTest=None, argv=None, testRunner=None, \ - testLoader=unittest.loader.defaultTestLoader, exit=True, verbosity=1, \ + testLoader=unittest.defaultTestLoader, exit=True, verbosity=1, \ failfast=None, catchbreak=None, buffer=None, warnings=None) A command-line program that runs a set of tests; this is primarily for making -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 10 12:54:43 2011 From: python-checkins at python.org (ezio.melotti) Date: Thu, 10 Mar 2011 12:54:43 +0100 Subject: [Python-checkins] (merge 3.2 -> default): Merge from 3.2. Message-ID: http://hg.python.org/cpython/rev/3599798bcbd2 changeset: 68348:3599798bcbd2 parent: 68344:1e00b161f5f5 parent: 68347:6e3551d37b03 user: Ezio Melotti date: Thu Mar 10 13:54:21 2011 +0200 summary: Merge from 3.2. files: diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1408,7 +1408,7 @@ If :meth:`setUp` fails, meaning that :meth:`tearDown` is not called, then any cleanup functions added will still be called. - .. versionadded:: 3.2 + .. versionadded:: 3.1 .. method:: doCleanups() @@ -1424,7 +1424,7 @@ :meth:`doCleanups` pops methods off the stack of cleanup functions one at a time, so it can be called at any time. - .. versionadded:: 3.2 + .. versionadded:: 3.1 .. class:: FunctionTestCase(testFunc, setUp=None, tearDown=None, description=None) @@ -1801,14 +1801,14 @@ Called once before any tests are executed. - .. versionadded:: 3.2 + .. versionadded:: 3.1 .. method:: stopTestRun(test) Called once after all tests are executed. - .. versionadded:: 3.2 + .. versionadded:: 3.1 .. method:: addError(test, err) @@ -1922,7 +1922,7 @@ .. function:: main(module='__main__', defaultTest=None, argv=None, testRunner=None, \ - testLoader=unittest.loader.defaultTestLoader, exit=True, verbosity=1, \ + testLoader=unittest.defaultTestLoader, exit=True, verbosity=1, \ failfast=None, catchbreak=None, buffer=None, warnings=None) A command-line program that runs a set of tests; this is primarily for making -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 10 14:44:26 2011 From: python-checkins at python.org (eric.smith) Date: Thu, 10 Mar 2011 14:44:26 +0100 Subject: [Python-checkins] Remove unused import. Message-ID: http://hg.python.org/cpython/rev/55bea11d892e changeset: 68349:55bea11d892e user: Eric V. Smith date: Thu Mar 10 08:44:08 2011 -0500 summary: Remove unused import. files: Lib/glob.py diff --git a/Lib/glob.py b/Lib/glob.py --- a/Lib/glob.py +++ b/Lib/glob.py @@ -1,6 +1,5 @@ """Filename globbing utility.""" -import sys import os import re import fnmatch -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 10 20:35:31 2011 From: python-checkins at python.org (gregory.p.smith) Date: Thu, 10 Mar 2011 20:35:31 +0100 Subject: [Python-checkins] (3.1): Explicitly mention that people should not depend on immediate Message-ID: http://hg.python.org/cpython/rev/7ba1be6e44c9 changeset: 68350:7ba1be6e44c9 branch: 3.1 parent: 68346:cb3a925de1bd user: Gregory P. Smith date: Thu Mar 10 11:25:44 2011 -0800 summary: Explicitly mention that people should not depend on immediate finalization of objects in the language reference. files: Doc/reference/datamodel.rst diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -69,6 +69,8 @@ containing circular references. See the documentation of the :mod:`gc` module for information on controlling the collection of cyclic garbage. Other implementations act differently and CPython may change. + Do not write code that depends on immediate finalization of objects + when they become unreachable (ex: always close your files). Note that the use of the implementation's tracing or debugging facilities may keep objects alive that would normally be collectable. Also note that catching -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 10 20:35:32 2011 From: python-checkins at python.org (gregory.p.smith) Date: Thu, 10 Mar 2011 20:35:32 +0100 Subject: [Python-checkins] (3.1): Reword the finalization note. Message-ID: http://hg.python.org/cpython/rev/d1356689e089 changeset: 68351:d1356689e089 branch: 3.1 user: Gregory P. Smith date: Thu Mar 10 11:28:50 2011 -0800 summary: Reword the finalization note. files: Doc/reference/datamodel.rst diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -69,8 +69,8 @@ containing circular references. See the documentation of the :mod:`gc` module for information on controlling the collection of cyclic garbage. Other implementations act differently and CPython may change. - Do not write code that depends on immediate finalization of objects - when they become unreachable (ex: always close your files). + Do not depend on immediate finalization of objects when they become + unreachable (ex: always close files). Note that the use of the implementation's tracing or debugging facilities may keep objects alive that would normally be collectable. Also note that catching -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 10 20:35:33 2011 From: python-checkins at python.org (gregory.p.smith) Date: Thu, 10 Mar 2011 20:35:33 +0100 Subject: [Python-checkins] (merge 3.1 -> 3.2): Explicitly mention that people should not depend on immediate Message-ID: http://hg.python.org/cpython/rev/0c595f4bbfc8 changeset: 68352:0c595f4bbfc8 branch: 3.2 parent: 68347:6e3551d37b03 parent: 68351:d1356689e089 user: Gregory P. Smith date: Thu Mar 10 11:32:29 2011 -0800 summary: Explicitly mention that people should not depend on immediate finalization of objects. HG Enter commit message. Lines beginning with 'HG:' are removed. files: Doc/reference/datamodel.rst diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -69,6 +69,8 @@ containing circular references. See the documentation of the :mod:`gc` module for information on controlling the collection of cyclic garbage. Other implementations act differently and CPython may change. + Do not depend on immediate finalization of objects when they become + unreachable (ex: always close files). Note that the use of the implementation's tracing or debugging facilities may keep objects alive that would normally be collectable. Also note that catching -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 10 20:35:40 2011 From: python-checkins at python.org (gregory.p.smith) Date: Thu, 10 Mar 2011 20:35:40 +0100 Subject: [Python-checkins] (merge 3.2 -> default): Explicitly mention that people should not depend on immediate Message-ID: http://hg.python.org/cpython/rev/5a2b73d327b5 changeset: 68353:5a2b73d327b5 parent: 68349:55bea11d892e parent: 68352:0c595f4bbfc8 user: Gregory P. Smith date: Thu Mar 10 11:34:52 2011 -0800 summary: Explicitly mention that people should not depend on immediate finalization of objects. files: diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -69,6 +69,8 @@ containing circular references. See the documentation of the :mod:`gc` module for information on controlling the collection of cyclic garbage. Other implementations act differently and CPython may change. + Do not depend on immediate finalization of objects when they become + unreachable (ex: always close files). Note that the use of the implementation's tracing or debugging facilities may keep objects alive that would normally be collectable. Also note that catching -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 10 20:50:10 2011 From: python-checkins at python.org (gregory.p.smith) Date: Thu, 10 Mar 2011 20:50:10 +0100 Subject: [Python-checkins] (2.7): Explicitly mention that people should not depend on finalization of Message-ID: http://hg.python.org/cpython/rev/c4faea5341c9 changeset: 68354:c4faea5341c9 branch: 2.7 parent: 68345:a7412744822d user: Gregory P. Smith date: Thu Mar 10 11:49:27 2011 -0800 summary: Explicitly mention that people should not depend on finalization of objects to happen immediately. files: Doc/reference/datamodel.rst diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -66,6 +66,8 @@ containing circular references. See the documentation of the :mod:`gc` module for information on controlling the collection of cyclic garbage. Other implementations act differently and CPython may change. + Do not depend on immediate finalization of objects when they become + unreachable (ex: always close files). Note that the use of the implementation's tracing or debugging facilities may keep objects alive that would normally be collectable. Also note that catching -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 10 22:01:25 2011 From: python-checkins at python.org (ezio.melotti) Date: Thu, 10 Mar 2011 22:01:25 +0100 Subject: [Python-checkins] (2.7): Backport from 3.x several improvements and fixes for unittest.rst. Message-ID: http://hg.python.org/cpython/rev/6e5b5d1b6714 changeset: 68355:6e5b5d1b6714 branch: 2.7 user: Ezio Melotti date: Thu Mar 10 23:00:48 2011 +0200 summary: Backport from 3.x several improvements and fixes for unittest.rst. files: Doc/library/unittest.rst diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -8,9 +8,11 @@ .. sectionauthor:: Fred L. Drake, Jr. .. sectionauthor:: Raymond Hettinger - .. versionadded:: 2.1 +(If you are already familiar with the basic concepts of testing, you might want +to skip to :ref:`the list of assert methods `.) + The Python unit testing framework, sometimes referred to as "PyUnit," is a Python language version of JUnit, by Kent Beck and Erich Gamma. JUnit is, in turn, a Java version of Kent's Smalltalk testing framework. Each is the de @@ -128,13 +130,13 @@ def test_choice(self): element = random.choice(self.seq) - self.assertTrue(element in self.seq) + self.assertIn(element, self.seq) def test_sample(self): with self.assertRaises(ValueError): random.sample(self.seq, 20) for element in random.sample(self.seq, 5): - self.assertTrue(element in self.seq) + self.assertIn(element, self.seq) if __name__ == '__main__': unittest.main() @@ -192,7 +194,7 @@ .. _unittest-command-line-interface: -Command-Line Interface +Command Line Interface ---------------------- The unittest module can be used from the command line to run tests from @@ -482,8 +484,9 @@ ``WidgetTestCase.test_resize``. :class:`TestLoader` uses the ``'test'`` method name prefix to identify test methods automatically. -Note that the order in which the various test cases will be run is determined by -sorting the test function names with the built-in :func:`cmp` function. +Note that the order in which the various test cases will be run is +determined by sorting the test function names with respect to the +built-in ordering for strings. Often it is desirable to group suites of test cases together, so as to run tests for the whole system at once. This is easy, since :class:`TestSuite` instances @@ -674,7 +677,7 @@ Test cases ~~~~~~~~~~ -.. class:: TestCase([methodName]) +.. class:: TestCase(methodName='runTest') Instances of the :class:`TestCase` class represent the smallest testable units in the :mod:`unittest` universe. This class is intended to be used as a base @@ -755,10 +758,10 @@ .. versionadded:: 2.7 - .. method:: run([result]) + .. method:: run(result=None) Run the test, collecting the result into the test result object passed as - *result*. If *result* is omitted or :const:`None`, a temporary result + *result*. If *result* is omitted or ``None``, a temporary result object is created (by calling the :meth:`defaultTestResult` method) and used. The result object is not returned to :meth:`run`'s caller. @@ -780,151 +783,101 @@ by the test to be propagated to the caller, and can be used to support running tests under a debugger. - The test code can use any of the following methods to check for and report - failures. - - - .. method:: assertTrue(expr[, msg]) - assert_(expr[, msg]) - failUnless(expr[, msg]) - - Signal a test failure if *expr* is false; the explanation for the failure - will be *msg* if given, otherwise it will be :const:`None`. - - .. deprecated:: 2.7 - :meth:`failUnless` and :meth:`assert_`; use :meth:`assertTrue`. - - - .. method:: assertEqual(first, second[, msg]) - failUnlessEqual(first, second[, msg]) + .. _assert-methods: + + The :class:`TestCase` class provides a number of methods to check for and + report failures, such as: + + +-----------------------------------------+-----------------------------+---------------+ + | Method | Checks that | New in | + +=========================================+=============================+===============+ + | :meth:`assertEqual(a, b) | ``a == b`` | | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertNotEqual(a, b) | ``a != b`` | | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertTrue(x) | ``bool(x) is True`` | | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertFalse(x) | ``bool(x) is False`` | | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertIs(a, b) | ``a is b`` | 2.7 | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertIsNot(a, b) | ``a is not b`` | 2.7 | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertIsNone(x) | ``x is None`` | 2.7 | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertIsNotNone(x) | ``x is not None`` | 2.7 | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertIn(a, b) | ``a in b`` | 2.7 | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertNotIn(a, b) | ``a not in b`` | 2.7 | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertIsInstance(a, b) | ``isinstance(a, b)`` | 2.7 | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + | :meth:`assertNotIsInstance(a, b) | ``not isinstance(a, b)`` | 2.7 | + | ` | | | + +-----------------------------------------+-----------------------------+---------------+ + + All the assert methods (except :meth:`assertRaises`, + :meth:`assertRaisesRegexp`) + accept a *msg* argument that, if specified, is used as the error message on + failure (see also :data:`longMessage`). + + .. method:: assertEqual(first, second, msg=None) Test that *first* and *second* are equal. If the values do not compare - equal, the test will fail with the explanation given by *msg*, or - :const:`None`. Note that using :meth:`assertEqual` improves upon - doing the comparison as the first parameter to :meth:`assertTrue`: the - default value for *msg* include representations of both *first* and - *second*. + equal, the test will fail. In addition, if *first* and *second* are the exact same type and one of list, tuple, dict, set, frozenset or unicode or any type that a subclass registers with :meth:`addTypeEqualityFunc` the type specific equality - function will be called in order to generate a more useful default error - message. + function will be called in order to generate a more useful default + error message (see also the :ref:`list of type-specific methods + `). .. versionchanged:: 2.7 Added the automatic calling of type specific equality function. - .. deprecated:: 2.7 - :meth:`failUnlessEqual`; use :meth:`assertEqual`. - - - .. method:: assertNotEqual(first, second[, msg]) - failIfEqual(first, second[, msg]) + + .. method:: assertNotEqual(first, second, msg=None) Test that *first* and *second* are not equal. If the values do compare - equal, the test will fail with the explanation given by *msg*, or - :const:`None`. Note that using :meth:`assertNotEqual` improves upon doing - the comparison as the first parameter to :meth:`assertTrue` is that the - default value for *msg* can be computed to include representations of both - *first* and *second*. - - .. deprecated:: 2.7 - :meth:`failIfEqual`; use :meth:`assertNotEqual`. - - - .. method:: assertAlmostEqual(first, second[, places[, msg[, delta]]]) - failUnlessAlmostEqual(first, second[, places[, msg[, delta]]]) - - Test that *first* and *second* are approximately equal by computing the - difference, rounding to the given number of decimal *places* (default 7), - and comparing to zero. - - Note that comparing a given number of decimal places is not the same as - comparing a given number of significant digits. If the values do not - compare equal, the test will fail with the explanation given by *msg*, or - :const:`None`. - - If *delta* is supplied instead of *places* then the difference - between *first* and *second* must be less than *delta*. - - Supplying both *delta* and *places* raises a ``TypeError``. - - .. versionchanged:: 2.7 - Objects that compare equal are automatically almost equal. - Added the ``delta`` keyword argument. - - .. deprecated:: 2.7 - :meth:`failUnlessAlmostEqual`; use :meth:`assertAlmostEqual`. - - - .. method:: assertNotAlmostEqual(first, second[, places[, msg[, delta]]]) - failIfAlmostEqual(first, second[, places[, msg[, delta]]]) - - Test that *first* and *second* are not approximately equal by computing - the difference, rounding to the given number of decimal *places* (default - 7), and comparing to zero. - - Note that comparing a given number of decimal places is not the same as - comparing a given number of significant digits. If the values do not - compare equal, the test will fail with the explanation given by *msg*, or - :const:`None`. - - If *delta* is supplied instead of *places* then the difference - between *first* and *second* must be more than *delta*. - - Supplying both *delta* and *places* raises a ``TypeError``. - - .. versionchanged:: 2.7 - Objects that compare equal automatically fail. - Added the ``delta`` keyword argument. - - .. deprecated:: 2.7 - :meth:`failIfAlmostEqual`; use :meth:`assertNotAlmostEqual`. - - - .. method:: assertGreater(first, second, msg=None) - assertGreaterEqual(first, second, msg=None) - assertLess(first, second, msg=None) - assertLessEqual(first, second, msg=None) - - Test that *first* is respectively >, >=, < or <= than *second* depending - on the method name. If not, the test will fail with an explanation - or with the explanation given by *msg*:: - - >>> self.assertGreaterEqual(3, 4) - AssertionError: "3" unexpectedly not greater than or equal to "4" + equal, the test will fail. + + .. method:: assertTrue(expr, msg=None) + assertFalse(expr, msg=None) + + Test that *expr* is true (or false). + + Note that this is equivalent to ``bool(expr) is True`` and not to ``expr + is True`` (use ``assertIs(expr, True)`` for the latter). This method + should also be avoided when more specific methods are available (e.g. + ``assertEqual(a, b)`` instead of ``assertTrue(a == b)``), because they + provide a better error message in case of failure. + + + .. method:: assertIs(first, second, msg=None) + assertIsNot(first, second, msg=None) + + Test that *first* and *second* evaluate (or don't evaluate) to the same object. .. versionadded:: 2.7 - .. method:: assertMultiLineEqual(self, first, second, msg=None) - - Test that the multiline string *first* is equal to the string *second*. - When not equal a diff of the two strings highlighting the differences - will be included in the error message. This method is used by default - when comparing Unicode strings with :meth:`assertEqual`. - - If specified, *msg* will be used as the error message on failure. - - .. versionadded:: 2.7 - - - .. method:: assertRegexpMatches(text, regexp, msg=None) - - Verifies that a *regexp* search matches *text*. Fails with an error - message including the pattern and the *text*. *regexp* may be - a regular expression object or a string containing a regular expression - suitable for use by :func:`re.search`. - - .. versionadded:: 2.7 - - - .. method:: assertNotRegexpMatches(text, regexp, msg=None) - - Verifies that a *regexp* search does not match *text*. Fails with an error - message including the pattern and the part of *text* that matches. *regexp* - may be a regular expression object or a string containing a regular - expression suitable for use by :func:`re.search`. + .. method:: assertIsNone(expr, msg=None) + assertIsNotNone(expr, msg=None) + + Test that *expr* is (or is not) None. .. versionadded:: 2.7 @@ -932,99 +885,35 @@ .. method:: assertIn(first, second, msg=None) assertNotIn(first, second, msg=None) - Tests that *first* is or is not in *second* with an explanatory error - message as appropriate. - - If specified, *msg* will be used as the error message on failure. + Test that *first* is (or is not) in *second*. .. versionadded:: 2.7 - .. method:: assertItemsEqual(actual, expected, msg=None) - - Test that sequence *expected* contains the same elements as *actual*, - regardless of their order. When they don't, an error message listing the - differences between the sequences will be generated. - - Duplicate elements are *not* ignored when comparing *actual* and - *expected*. It verifies if each element has the same count in both - sequences. It is the equivalent of ``assertEqual(sorted(expected), - sorted(actual))`` but it works with sequences of unhashable objects as - well. - - If specified, *msg* will be used as the error message on failure. + .. method:: assertIsInstance(obj, cls, msg=None) + assertNotIsInstance(obj, cls, msg=None) + + Test that *obj* is (or is not) an instance of *cls* (which can be a + class or a tuple of classes, as supported by :func:`isinstance`). .. versionadded:: 2.7 - .. method:: assertSetEqual(set1, set2, msg=None) - - Tests that two sets are equal. If not, an error message is constructed - that lists the differences between the sets. This method is used by - default when comparing sets or frozensets with :meth:`assertEqual`. - - Fails if either of *set1* or *set2* does not have a :meth:`set.difference` - method. - - If specified, *msg* will be used as the error message on failure. - - .. versionadded:: 2.7 - - - .. method:: assertDictEqual(expected, actual, msg=None) - - Test that two dictionaries are equal. If not, an error message is - constructed that shows the differences in the dictionaries. This - method will be used by default to compare dictionaries in - calls to :meth:`assertEqual`. - - If specified, *msg* will be used as the error message on failure. - - .. versionadded:: 2.7 - - - .. method:: assertDictContainsSubset(expected, actual, msg=None) - - Tests whether the key/value pairs in dictionary *actual* are a - superset of those in *expected*. If not, an error message listing - the missing keys and mismatched values is generated. - - If specified, *msg* will be used as the error message on failure. - - .. versionadded:: 2.7 - - - .. method:: assertListEqual(list1, list2, msg=None) - assertTupleEqual(tuple1, tuple2, msg=None) - - Tests that two lists or tuples are equal. If not an error message is - constructed that shows only the differences between the two. An error - is also raised if either of the parameters are of the wrong type. - These methods are used by default when comparing lists or tuples with - :meth:`assertEqual`. - - If specified, *msg* will be used as the error message on failure. - - .. versionadded:: 2.7 - - - .. method:: assertSequenceEqual(seq1, seq2, msg=None, seq_type=None) - - Tests that two sequences are equal. If a *seq_type* is supplied, both - *seq1* and *seq2* must be instances of *seq_type* or a failure will - be raised. If the sequences are different an error message is - constructed that shows the difference between the two. - - If specified, *msg* will be used as the error message on failure. - - This method is used to implement :meth:`assertListEqual` and - :meth:`assertTupleEqual`. - - .. versionadded:: 2.7 - - - .. method:: assertRaises(exception[, callable, ...]) - failUnlessRaises(exception[, callable, ...]) + It is also possible to check that exceptions and warnings are raised using + the following methods: + + +---------------------------------------------------------+--------------------------------------+------------+ + | Method | Checks that | New in | + +=========================================================+======================================+============+ + | :meth:`assertRaises(exc, fun, *args, **kwds) | ``fun(*args, **kwds)`` raises `exc` | | + | ` | | | + +---------------------------------------------------------+--------------------------------------+------------+ + | :meth:`assertRaisesRegexp(exc, re, fun, *args, **kwds) | ``fun(*args, **kwds)`` raises `exc` | 2.7 | + | ` | and the message matches `re` | | + +---------------------------------------------------------+--------------------------------------+------------+ + + .. method:: assertRaises(exception, callable, *args, **kwds) + assertRaises(exception) Test that an exception is raised when *callable* is called with any positional or keyword arguments that are also passed to @@ -1033,8 +922,8 @@ To catch any of a group of exceptions, a tuple containing the exception classes may be passed as *exception*. - If *callable* is omitted or None, returns a context manager so that the - code under test can be written inline rather than as a function:: + If only the *exception* argument is given, returns a context manager so + that the code under test can be written inline rather than as a function:: with self.assertRaises(SomeException): do_something() @@ -1052,11 +941,9 @@ .. versionchanged:: 2.7 Added the ability to use :meth:`assertRaises` as a context manager. - .. deprecated:: 2.7 - :meth:`failUnlessRaises`; use :meth:`assertRaises`. - - - .. method:: assertRaisesRegexp(exception, regexp[, callable, ...]) + + .. method:: assertRaisesRegexp(exception, regexp, callable, *args, **kwds) + assertRaisesRegexp(exception, regexp) Like :meth:`assertRaises` but also tests that *regexp* matches on the string representation of the raised exception. *regexp* may be @@ -1074,68 +961,241 @@ .. versionadded:: 2.7 - .. method:: assertIsNone(expr[, msg]) - - This signals a test failure if *expr* is not None. + + There are also other methods used to perform more specific checks, such as: + + +---------------------------------------+--------------------------------+--------------+ + | Method | Checks that | New in | + +=======================================+================================+==============+ + | :meth:`assertAlmostEqual(a, b) | ``round(a-b, 7) == 0`` | | + | ` | | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertNotAlmostEqual(a, b) | ``round(a-b, 7) != 0`` | | + | ` | | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertGreater(a, b) | ``a > b`` | 2.7 | + | ` | | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertGreaterEqual(a, b) | ``a >= b`` | 2.7 | + | ` | | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertLess(a, b) | ``a < b`` | 2.7 | + | ` | | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertLessEqual(a, b) | ``a <= b`` | 2.7 | + | ` | | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertRegexpMatches(s, re) | ``regex.search(s)`` | 2.7 | + | ` | | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertNotRegexpMatches(s, re) | ``not regex.search(s)`` | 2.7 | + | ` | | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertItemsEqual(a, b) | sorted(a) == sorted(b) and | 2.7 | + | ` | works with unhashable objs | | + +---------------------------------------+--------------------------------+--------------+ + | :meth:`assertDictContainsSubset(a, b) | all the key/value pairs | 2.7 | + | ` | in `a` exist in `b` | | + +---------------------------------------+--------------------------------+--------------+ + + + .. method:: assertAlmostEqual(first, second, places=7, msg=None, delta=None) + assertNotAlmostEqual(first, second, places=7, msg=None, delta=None) + + Test that *first* and *second* are approximately (or not approximately) + equal by computing the difference, rounding to the given number of + decimal *places* (default 7), and comparing to zero. Note that these + methods round the values to the given number of *decimal places* (i.e. + like the :func:`round` function) and not *significant digits*. + + If *delta* is supplied instead of *places* then the difference + between *first* and *second* must be less (or more) than *delta*. + + Supplying both *delta* and *places* raises a ``TypeError``. + + .. versionchanged:: 2.7 + :meth:`assertAlmostEqual` automatically considers almost equal objects + that compare equal. :meth:`assertNotAlmostEqual` automatically fails + if the objects compare equal. Added the *delta* keyword argument. + + + + .. method:: assertGreater(first, second, msg=None) + assertGreaterEqual(first, second, msg=None) + assertLess(first, second, msg=None) + assertLessEqual(first, second, msg=None) + + Test that *first* is respectively >, >=, < or <= than *second* depending + on the method name. If not, the test will fail:: + + >>> self.assertGreaterEqual(3, 4) + AssertionError: "3" unexpectedly not greater than or equal to "4" .. versionadded:: 2.7 - .. method:: assertIsNotNone(expr[, msg]) - - The inverse of the :meth:`assertIsNone` method. - This signals a test failure if *expr* is None. + .. method:: assertRegexpMatches(text, regexp, msg=None) + + Test that a *regexp* search matches *text*. In case + of failure, the error message will include the pattern and the *text* (or + the pattern and the part of *text* that unexpectedly matched). *regexp* + may be a regular expression object or a string containing a regular + expression suitable for use by :func:`re.search`. .. versionadded:: 2.7 - .. method:: assertIs(expr1, expr2[, msg]) - - This signals a test failure if *expr1* and *expr2* don't evaluate to the same - object. + .. method:: assertNotRegexpMatches(text, regexp, msg=None) + + Verifies that a *regexp* search does not match *text*. Fails with an error + message including the pattern and the part of *text* that matches. *regexp* + may be a regular expression object or a string containing a regular + expression suitable for use by :func:`re.search`. .. versionadded:: 2.7 - .. method:: assertIsNot(expr1, expr2[, msg]) - - The inverse of the :meth:`assertIs` method. - This signals a test failure if *expr1* and *expr2* evaluate to the same - object. + .. method:: assertItemsEqual(actual, expected, msg=None) + + Test that sequence *expected* contains the same elements as *actual*, + regardless of their order. When they don't, an error message listing the + differences between the sequences will be generated. + + Duplicate elements are *not* ignored when comparing *actual* and + *expected*. It verifies if each element has the same count in both + sequences. It is the equivalent of ``assertEqual(sorted(expected), + sorted(actual))`` but it works with sequences of unhashable objects as + well. .. versionadded:: 2.7 - .. method:: assertIsInstance(obj, cls[, msg]) - - This signals a test failure if *obj* is not an instance of *cls* (which - can be a class or a tuple of classes, as supported by :func:`isinstance`). + .. method:: assertDictContainsSubset(expected, actual, msg=None) + + Tests whether the key/value pairs in dictionary *actual* are a + superset of those in *expected*. If not, an error message listing + the missing keys and mismatched values is generated. .. versionadded:: 2.7 - - - .. method:: assertNotIsInstance(obj, cls[, msg]) - - The inverse of the :meth:`assertIsInstance` method. This signals a test - failure if *obj* is an instance of *cls*. + .. deprecated:: 3.2 + + + + .. _type-specific-methods: + + The :meth:`assertEqual` method dispatches the equality check for objects of + the same type to different type-specific methods. These methods are already + implemented for most of the built-in types, but it's also possible to + register new methods using :meth:`addTypeEqualityFunc`: + + .. method:: addTypeEqualityFunc(typeobj, function) + + Registers a type-specific method called by :meth:`assertEqual` to check + if two objects of exactly the same *typeobj* (not subclasses) compare + equal. *function* must take two positional arguments and a third msg=None + keyword argument just as :meth:`assertEqual` does. It must raise + :data:`self.failureException(msg) ` when inequality + between the first two parameters is detected -- possibly providing useful + information and explaining the inequalities in details in the error + message. .. versionadded:: 2.7 - - .. method:: assertFalse(expr[, msg]) - failIf(expr[, msg]) - - The inverse of the :meth:`assertTrue` method is the :meth:`assertFalse` method. - This signals a test failure if *expr* is true, with *msg* or :const:`None` - for the error message. - - .. deprecated:: 2.7 - :meth:`failIf`; use :meth:`assertFalse`. - - - .. method:: fail([msg]) - - Signals a test failure unconditionally, with *msg* or :const:`None` for + The list of type-specific methods automatically used by + :meth:`~TestCase.assertEqual` are summarized in the following table. Note + that it's usually not necessary to invoke these methods directly. + + +-----------------------------------------+-----------------------------+--------------+ + | Method | Used to compare | New in | + +=========================================+=============================+==============+ + | :meth:`assertMultiLineEqual(a, b) | strings | 2.7 | + | ` | | | + +-----------------------------------------+-----------------------------+--------------+ + | :meth:`assertSequenceEqual(a, b) | sequences | 2.7 | + | ` | | | + +-----------------------------------------+-----------------------------+--------------+ + | :meth:`assertListEqual(a, b) | lists | 2.7 | + | ` | | | + +-----------------------------------------+-----------------------------+--------------+ + | :meth:`assertTupleEqual(a, b) | tuples | 2.7 | + | ` | | | + +-----------------------------------------+-----------------------------+--------------+ + | :meth:`assertSetEqual(a, b) | sets or frozensets | 2.7 | + | ` | | | + +-----------------------------------------+-----------------------------+--------------+ + | :meth:`assertDictEqual(a, b) | dicts | 2.7 | + | ` | | | + +-----------------------------------------+-----------------------------+--------------+ + + + + .. method:: assertMultiLineEqual(first, second, msg=None) + + Test that the multiline string *first* is equal to the string *second*. + When not equal a diff of the two strings highlighting the differences + will be included in the error message. This method is used by default + when comparing strings with :meth:`assertEqual`. + + .. versionadded:: 2.7 + + + .. method:: assertSequenceEqual(seq1, seq2, msg=None, seq_type=None) + + Tests that two sequences are equal. If a *seq_type* is supplied, both + *seq1* and *seq2* must be instances of *seq_type* or a failure will + be raised. If the sequences are different an error message is + constructed that shows the difference between the two. + + This method is not called directly by :meth:`assertEqual`, but + it's used to implement :meth:`assertListEqual` and + :meth:`assertTupleEqual`. + + .. versionadded:: 2.7 + + + .. method:: assertListEqual(list1, list2, msg=None) + assertTupleEqual(tuple1, tuple2, msg=None) + + Tests that two lists or tuples are equal. If not an error message is + constructed that shows only the differences between the two. An error + is also raised if either of the parameters are of the wrong type. + These methods are used by default when comparing lists or tuples with + :meth:`assertEqual`. + + .. versionadded:: 2.7 + + + .. method:: assertSetEqual(set1, set2, msg=None) + + Tests that two sets are equal. If not, an error message is constructed + that lists the differences between the sets. This method is used by + default when comparing sets or frozensets with :meth:`assertEqual`. + + Fails if either of *set1* or *set2* does not have a :meth:`set.difference` + method. + + .. versionadded:: 2.7 + + + .. method:: assertDictEqual(expected, actual, msg=None) + + Test that two dictionaries are equal. If not, an error message is + constructed that shows the differences in the dictionaries. This + method will be used by default to compare dictionaries in + calls to :meth:`assertEqual`. + + .. versionadded:: 2.7 + + + + .. _other-methods-and-attrs: + + Finally the :class:`TestCase` provides the following methods and attributes: + + + .. method:: fail(msg=None) + + Signals a test failure unconditionally, with *msg* or ``None`` for the error message. @@ -1150,18 +1210,19 @@ .. attribute:: longMessage - If set to True then any explicit failure message you pass in to the - assert methods will be appended to the end of the normal failure message. - The normal messages contain useful information about the objects involved, - for example the message from assertEqual shows you the repr of the two - unequal objects. Setting this attribute to True allows you to have a - custom error message in addition to the normal one. - - This attribute defaults to False, meaning that a custom message passed + If set to ``True`` then any explicit failure message you pass in to the + :ref:`assert methods ` will be appended to the end of the + normal failure message. The normal messages contain useful information + about the objects involved, for example the message from assertEqual + shows you the repr of the two unequal objects. Setting this attribute + to ``True`` allows you to have a custom error message in addition to the + normal one. + + This attribute defaults to ``False``, meaning that a custom message passed to an assert method will silence the normal message. The class setting can be overridden in individual tests by assigning an - instance attribute to True or False before calling the assert methods. + instance attribute to ``True`` or ``False`` before calling the assert methods. .. versionadded:: 2.7 @@ -1210,30 +1271,14 @@ .. method:: shortDescription() - Returns a description of the test, or :const:`None` if no description + Returns a description of the test, or ``None`` if no description has been provided. The default implementation of this method returns the first line of the test method's docstring, if available, or :const:`None`. - .. method:: addTypeEqualityFunc(typeobj, function) - - Registers a type specific :meth:`assertEqual` equality checking - function to be called by :meth:`assertEqual` when both objects it has - been asked to compare are exactly *typeobj* (not subclasses). - *function* must take two positional arguments and a third msg=None - keyword argument just as :meth:`assertEqual` does. It must raise - ``self.failureException`` when inequality between the first two - parameters is detected. - - One good use of custom equality checking functions for a type - is to raise ``self.failureException`` with an error message useful - for debugging the problem by explaining the inequalities in detail. - - .. versionadded:: 2.7 - - - .. method:: addCleanup(function[, *args[, **kwargs]]) + + .. method:: addCleanup(function, *args, **kwargs) Add a function to be called after :meth:`tearDown` to cleanup resources used during the test. Functions will be called in reverse order to the @@ -1263,7 +1308,7 @@ .. versionadded:: 2.7 -.. class:: FunctionTestCase(testFunc[, setUp[, tearDown[, description]]]) +.. class:: FunctionTestCase(testFunc, setUp=None, tearDown=None, description=None) This class implements the portion of the :class:`TestCase` interface which allows the test runner to drive the test, but does not provide the methods @@ -1272,12 +1317,36 @@ :mod:`unittest`-based test framework. +Deprecated aliases +################## + +For historical reasons, some of the :class:`TestCase` methods had one or more +aliases that are now deprecated. The following table lists the correct names +along with their deprecated aliases: + + ============================== =============================== + Method Name Deprecated alias(es) + ============================== =============================== + :meth:`.assertEqual` failUnlessEqual, assertEquals + :meth:`.assertNotEqual` failIfEqual + :meth:`.assertTrue` failUnless, assert\_ + :meth:`.assertFalse` failIf + :meth:`.assertRaises` failUnlessRaises + :meth:`.assertAlmostEqual` failUnlessAlmostEqual + :meth:`.assertNotAlmostEqual` failIfAlmostEqual + ============================== =============================== + + .. deprecated:: 2.7 + the aliases listed in the second column + + + .. _testsuite-objects: Grouping tests ~~~~~~~~~~~~~~ -.. class:: TestSuite([tests]) +.. class:: TestSuite(tests=()) This class represents an aggregation of individual tests cases and test suites. The class presents the interface needed by the test runner to allow it to be run @@ -1391,7 +1460,7 @@ Support for ``load_tests`` added. - .. method:: loadTestsFromName(name[, module]) + .. method:: loadTestsFromName(name, module=None) Return a suite of all tests cases given a string specifier. @@ -1416,7 +1485,7 @@ The method optionally resolves *name* relative to the given *module*. - .. method:: loadTestsFromNames(names[, module]) + .. method:: loadTestsFromNames(names, module=None) Similar to :meth:`loadTestsFromName`, but takes a sequence of names rather than a single name. The return value is a test suite which supports all @@ -1578,14 +1647,14 @@ .. method:: wasSuccessful() - Return :const:`True` if all tests run so far have passed, otherwise returns - :const:`False`. + Return ``True`` if all tests run so far have passed, otherwise returns + ``False``. .. method:: stop() This method can be called to signal that the set of tests being run should - be aborted by setting the :attr:`shouldStop` attribute to :const:`True`. + be aborted by setting the :attr:`shouldStop` attribute to ``True``. :class:`TestRunner` objects should respect this flag and return without running any additional tests. @@ -1694,7 +1763,7 @@ instead of repeatedly creating new instances. -.. class:: TextTestRunner([stream[, descriptions[, verbosity], [resultclass]]]) +.. class:: TextTestRunner(stream=sys.stderr, descriptions=True, verbosity=1) A basic test runner implementation which prints results on standard error. It has a few configurable parameters, but is essentially very simple. Graphical -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 10 22:10:43 2011 From: python-checkins at python.org (antoine.pitrou) Date: Thu, 10 Mar 2011 22:10:43 +0100 Subject: [Python-checkins] devguide: Remove XXX (the daily OS X build is now generated from the hg repo) Message-ID: http://hg.python.org/devguide/rev/c0a5a4a6af2b changeset: 382:c0a5a4a6af2b user: Antoine Pitrou date: Thu Mar 10 22:09:43 2011 +0100 summary: Remove XXX (the daily OS X build is now generated from the hg repo) files: index.rst diff --git a/index.rst b/index.rst --- a/index.rst +++ b/index.rst @@ -106,7 +106,7 @@ * Source code * `Browse online `_ * `Snapshot of py3k `_ - * `XXX Daily OS X installer `_ + * `Daily OS X installer `_ * Tool support * :doc:`emacs` * :doc:`gdb` -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Thu Mar 10 22:10:45 2011 From: python-checkins at python.org (antoine.pitrou) Date: Thu, 10 Mar 2011 22:10:45 +0100 Subject: [Python-checkins] devguide: Link to the repo, not the index page Message-ID: http://hg.python.org/devguide/rev/3df0fc8db8c5 changeset: 383:3df0fc8db8c5 user: Antoine Pitrou date: Thu Mar 10 22:10:40 2011 +0100 summary: Link to the repo, not the index page files: index.rst diff --git a/index.rst b/index.rst --- a/index.rst +++ b/index.rst @@ -104,7 +104,7 @@ * `Firefox search engine plug-in`_ * Buildbots_ * Source code - * `Browse online `_ + * `Browse online `_ * `Snapshot of py3k `_ * `Daily OS X installer `_ * Tool support -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Thu Mar 10 22:36:07 2011 From: python-checkins at python.org (ezio.melotti) Date: Thu, 10 Mar 2011 22:36:07 +0100 Subject: [Python-checkins] (2.7): Use simpler assert in basic example. Message-ID: http://hg.python.org/cpython/rev/9adc4792db9a changeset: 68356:9adc4792db9a branch: 2.7 user: Ezio Melotti date: Thu Mar 10 23:35:39 2011 +0200 summary: Use simpler assert in basic example. files: Doc/library/unittest.rst diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -130,13 +130,13 @@ def test_choice(self): element = random.choice(self.seq) - self.assertIn(element, self.seq) + self.assertTrue(element in self.seq) def test_sample(self): with self.assertRaises(ValueError): random.sample(self.seq, 20) for element in random.sample(self.seq, 5): - self.assertIn(element, self.seq) + self.assertTrue(element in self.seq) if __name__ == '__main__': unittest.main() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 10 22:38:46 2011 From: python-checkins at python.org (ezio.melotti) Date: Thu, 10 Mar 2011 22:38:46 +0100 Subject: [Python-checkins] (3.1): Use simpler assert in basic example. Message-ID: http://hg.python.org/cpython/rev/f2edf0a7f92f changeset: 68357:f2edf0a7f92f branch: 3.1 parent: 68351:d1356689e089 user: Ezio Melotti date: Thu Mar 10 23:38:18 2011 +0200 summary: Use simpler assert in basic example. files: Doc/library/unittest.rst diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -127,13 +127,13 @@ def test_choice(self): element = random.choice(self.seq) - self.assertIn(element, self.seq) + self.assertTrue(element in self.seq) def test_sample(self): with self.assertRaises(ValueError): random.sample(self.seq, 20) for element in random.sample(self.seq, 5): - self.assertIn(element, self.seq) + self.assertTrue(element in self.seq) if __name__ == '__main__': unittest.main() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 10 22:50:19 2011 From: python-checkins at python.org (ezio.melotti) Date: Thu, 10 Mar 2011 22:50:19 +0100 Subject: [Python-checkins] (merge 3.1 -> 3.2): Dummy merge with 3.1. Message-ID: http://hg.python.org/cpython/rev/8a4c4f269156 changeset: 68358:8a4c4f269156 branch: 3.2 parent: 68352:0c595f4bbfc8 parent: 68357:f2edf0a7f92f user: Ezio Melotti date: Thu Mar 10 23:49:42 2011 +0200 summary: Dummy merge with 3.1. files: Doc/library/unittest.rst -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 10 22:52:14 2011 From: python-checkins at python.org (ezio.melotti) Date: Thu, 10 Mar 2011 22:52:14 +0100 Subject: [Python-checkins] (merge 3.2 -> default): Dummy merge with 3.2. Message-ID: http://hg.python.org/cpython/rev/c25dcf2f5fe2 changeset: 68359:c25dcf2f5fe2 parent: 68353:5a2b73d327b5 parent: 68358:8a4c4f269156 user: Ezio Melotti date: Thu Mar 10 23:51:48 2011 +0200 summary: Dummy merge with 3.2. files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 00:22:41 2011 From: python-checkins at python.org (r.david.murray) Date: Fri, 11 Mar 2011 00:22:41 +0100 Subject: [Python-checkins] (3.1): #10999: Add missing documentation for chflags constants to stat module docs Message-ID: http://hg.python.org/cpython/rev/4f9213d3858b changeset: 68360:4f9213d3858b branch: 3.1 parent: 68357:f2edf0a7f92f user: R David Murray date: Thu Mar 10 17:18:33 2011 -0500 summary: #10999: Add missing documentation for chflags constants to stat module docs Patch by Michal Nowikowski. files: Doc/library/os.rst Doc/library/stat.rst Misc/ACKS diff --git a/Doc/library/os.rst b/Doc/library/os.rst --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -842,16 +842,16 @@ Set the flags of *path* to the numeric *flags*. *flags* may take a combination (bitwise OR) of the following values (as defined in the :mod:`stat` module): - * ``UF_NODUMP`` - * ``UF_IMMUTABLE`` - * ``UF_APPEND`` - * ``UF_OPAQUE`` - * ``UF_NOUNLINK`` - * ``SF_ARCHIVED`` - * ``SF_IMMUTABLE`` - * ``SF_APPEND`` - * ``SF_NOUNLINK`` - * ``SF_SNAPSHOT`` + * :data:`stat.UF_NODUMP` + * :data:`stat.UF_IMMUTABLE` + * :data:`stat.UF_APPEND` + * :data:`stat.UF_OPAQUE` + * :data:`stat.UF_NOUNLINK` + * :data:`stat.SF_ARCHIVED` + * :data:`stat.SF_IMMUTABLE` + * :data:`stat.SF_APPEND` + * :data:`stat.SF_NOUNLINK` + * :data:`stat.SF_SNAPSHOT` Availability: Unix. diff --git a/Doc/library/stat.rst b/Doc/library/stat.rst --- a/Doc/library/stat.rst +++ b/Doc/library/stat.rst @@ -73,6 +73,34 @@ that isn't handled by :mod:`os.path`, like the tests for block and character devices. +Example:: + + import os, sys + from stat import * + + def walktree(top, callback): + '''recursively descend the directory tree rooted at top, + calling the callback function for each regular file''' + + for f in os.listdir(top): + pathname = os.path.join(top, f) + mode = os.stat(pathname)[ST_MODE] + if S_ISDIR(mode): + # It's a directory, recurse into it + walktree(pathname, callback) + elif S_ISREG(mode): + # It's a file, call the callback function + callback(pathname) + else: + # Unknown file type, print a message + print('Skipping %s' % pathname) + + def visitfile(file): + print('visiting', file) + + if __name__ == '__main__': + walktree(sys.argv[1], visitfile) + All the variables below are simply symbolic indexes into the 10-tuple returned by :func:`os.stat`, :func:`os.fstat` or :func:`os.lstat`. @@ -262,31 +290,47 @@ Unix V7 synonym for :data:`S_IXUSR`. -Example:: +The following flags can be used in the *flags* argument of :func:`os.chflags`: - import os, sys - from stat import * +.. data:: UF_NODUMP - def walktree(top, callback): - '''recursively descend the directory tree rooted at top, - calling the callback function for each regular file''' + Do not dump the file. - for f in os.listdir(top): - pathname = os.path.join(top, f) - mode = os.stat(pathname)[ST_MODE] - if S_ISDIR(mode): - # It's a directory, recurse into it - walktree(pathname, callback) - elif S_ISREG(mode): - # It's a file, call the callback function - callback(pathname) - else: - # Unknown file type, print a message - print('Skipping %s' % pathname) +.. data:: UF_IMMUTABLE - def visitfile(file): - print('visiting', file) + The file may not be changed. - if __name__ == '__main__': - walktree(sys.argv[1], visitfile) +.. data:: UF_APPEND + The file may only be appended to. + +.. data:: UF_OPAQUE + + The file may not be renamed or deleted. + +.. data:: UF_NOUNLINK + + The directory is opaque when viewed through a union stack. + +.. data:: SF_ARCHIVED + + The file may be archived. + +.. data:: SF_IMMUTABLE + + The file may not be changed. + +.. data:: SF_APPEND + + The file may only be appended to. + +.. data:: SF_NOUNLINK + + The file may not be renamed or deleted. + +.. data:: SF_SNAPSHOT + + The file is a snapshot file. + +See the \*BSD or Mac OS systems man page :manpage:`chflags(2)` for more information. + diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -578,6 +578,7 @@ Tim Northover Joe Norton Neal Norwitz +Michal Nowikowski Nigel O'Brian Kevin O'Connor Tim O'Malley -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 00:22:42 2011 From: python-checkins at python.org (r.david.murray) Date: Fri, 11 Mar 2011 00:22:42 +0100 Subject: [Python-checkins] (merge 3.1 -> 3.2): Merge #10999 fix. Message-ID: http://hg.python.org/cpython/rev/de5d0b4f81c3 changeset: 68361:de5d0b4f81c3 branch: 3.2 parent: 68352:0c595f4bbfc8 parent: 68360:4f9213d3858b user: R David Murray date: Thu Mar 10 17:22:33 2011 -0500 summary: Merge #10999 fix. files: Doc/library/os.rst Doc/library/stat.rst Doc/library/unittest.rst Misc/ACKS diff --git a/Doc/library/os.rst b/Doc/library/os.rst --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -965,16 +965,16 @@ Set the flags of *path* to the numeric *flags*. *flags* may take a combination (bitwise OR) of the following values (as defined in the :mod:`stat` module): - * ``UF_NODUMP`` - * ``UF_IMMUTABLE`` - * ``UF_APPEND`` - * ``UF_OPAQUE`` - * ``UF_NOUNLINK`` - * ``SF_ARCHIVED`` - * ``SF_IMMUTABLE`` - * ``SF_APPEND`` - * ``SF_NOUNLINK`` - * ``SF_SNAPSHOT`` + * :data:`stat.UF_NODUMP` + * :data:`stat.UF_IMMUTABLE` + * :data:`stat.UF_APPEND` + * :data:`stat.UF_OPAQUE` + * :data:`stat.UF_NOUNLINK` + * :data:`stat.SF_ARCHIVED` + * :data:`stat.SF_IMMUTABLE` + * :data:`stat.SF_APPEND` + * :data:`stat.SF_NOUNLINK` + * :data:`stat.SF_SNAPSHOT` Availability: Unix. diff --git a/Doc/library/stat.rst b/Doc/library/stat.rst --- a/Doc/library/stat.rst +++ b/Doc/library/stat.rst @@ -76,6 +76,34 @@ that isn't handled by :mod:`os.path`, like the tests for block and character devices. +Example:: + + import os, sys + from stat import * + + def walktree(top, callback): + '''recursively descend the directory tree rooted at top, + calling the callback function for each regular file''' + + for f in os.listdir(top): + pathname = os.path.join(top, f) + mode = os.stat(pathname)[ST_MODE] + if S_ISDIR(mode): + # It's a directory, recurse into it + walktree(pathname, callback) + elif S_ISREG(mode): + # It's a file, call the callback function + callback(pathname) + else: + # Unknown file type, print a message + print('Skipping %s' % pathname) + + def visitfile(file): + print('visiting', file) + + if __name__ == '__main__': + walktree(sys.argv[1], visitfile) + All the variables below are simply symbolic indexes into the 10-tuple returned by :func:`os.stat`, :func:`os.fstat` or :func:`os.lstat`. @@ -265,31 +293,47 @@ Unix V7 synonym for :data:`S_IXUSR`. -Example:: +The following flags can be used in the *flags* argument of :func:`os.chflags`: - import os, sys - from stat import * +.. data:: UF_NODUMP - def walktree(top, callback): - '''recursively descend the directory tree rooted at top, - calling the callback function for each regular file''' + Do not dump the file. - for f in os.listdir(top): - pathname = os.path.join(top, f) - mode = os.stat(pathname)[ST_MODE] - if S_ISDIR(mode): - # It's a directory, recurse into it - walktree(pathname, callback) - elif S_ISREG(mode): - # It's a file, call the callback function - callback(pathname) - else: - # Unknown file type, print a message - print('Skipping %s' % pathname) +.. data:: UF_IMMUTABLE - def visitfile(file): - print('visiting', file) + The file may not be changed. - if __name__ == '__main__': - walktree(sys.argv[1], visitfile) +.. data:: UF_APPEND + The file may only be appended to. + +.. data:: UF_OPAQUE + + The file may not be renamed or deleted. + +.. data:: UF_NOUNLINK + + The directory is opaque when viewed through a union stack. + +.. data:: SF_ARCHIVED + + The file may be archived. + +.. data:: SF_IMMUTABLE + + The file may not be changed. + +.. data:: SF_APPEND + + The file may only be appended to. + +.. data:: SF_NOUNLINK + + The file may not be renamed or deleted. + +.. data:: SF_SNAPSHOT + + The file is a snapshot file. + +See the \*BSD or Mac OS systems man page :manpage:`chflags(2)` for more information. + diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -619,6 +619,7 @@ Tim Northover Joe Norton Neal Norwitz +Michal Nowikowski Nigel O'Brian Kevin O'Connor Tim O'Malley -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 00:22:44 2011 From: python-checkins at python.org (r.david.murray) Date: Fri, 11 Mar 2011 00:22:44 +0100 Subject: [Python-checkins] (merge 3.2 -> default): Merge #10999 fix. Message-ID: http://hg.python.org/cpython/rev/761e6e85d29e changeset: 68362:761e6e85d29e parent: 68353:5a2b73d327b5 parent: 68361:de5d0b4f81c3 user: R David Murray date: Thu Mar 10 17:38:50 2011 -0500 summary: Merge #10999 fix. files: Doc/library/os.rst Misc/ACKS diff --git a/Doc/library/os.rst b/Doc/library/os.rst --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1260,16 +1260,16 @@ Set the flags of *path* to the numeric *flags*. *flags* may take a combination (bitwise OR) of the following values (as defined in the :mod:`stat` module): - * ``UF_NODUMP`` - * ``UF_IMMUTABLE`` - * ``UF_APPEND`` - * ``UF_OPAQUE`` - * ``UF_NOUNLINK`` - * ``SF_ARCHIVED`` - * ``SF_IMMUTABLE`` - * ``SF_APPEND`` - * ``SF_NOUNLINK`` - * ``SF_SNAPSHOT`` + * :data:`stat.UF_NODUMP` + * :data:`stat.UF_IMMUTABLE` + * :data:`stat.UF_APPEND` + * :data:`stat.UF_OPAQUE` + * :data:`stat.UF_NOUNLINK` + * :data:`stat.SF_ARCHIVED` + * :data:`stat.SF_IMMUTABLE` + * :data:`stat.SF_APPEND` + * :data:`stat.SF_NOUNLINK` + * :data:`stat.SF_SNAPSHOT` Availability: Unix. diff --git a/Doc/library/stat.rst b/Doc/library/stat.rst --- a/Doc/library/stat.rst +++ b/Doc/library/stat.rst @@ -76,6 +76,34 @@ that isn't handled by :mod:`os.path`, like the tests for block and character devices. +Example:: + + import os, sys + from stat import * + + def walktree(top, callback): + '''recursively descend the directory tree rooted at top, + calling the callback function for each regular file''' + + for f in os.listdir(top): + pathname = os.path.join(top, f) + mode = os.stat(pathname)[ST_MODE] + if S_ISDIR(mode): + # It's a directory, recurse into it + walktree(pathname, callback) + elif S_ISREG(mode): + # It's a file, call the callback function + callback(pathname) + else: + # Unknown file type, print a message + print('Skipping %s' % pathname) + + def visitfile(file): + print('visiting', file) + + if __name__ == '__main__': + walktree(sys.argv[1], visitfile) + All the variables below are simply symbolic indexes into the 10-tuple returned by :func:`os.stat`, :func:`os.fstat` or :func:`os.lstat`. @@ -265,31 +293,47 @@ Unix V7 synonym for :data:`S_IXUSR`. -Example:: +The following flags can be used in the *flags* argument of :func:`os.chflags`: - import os, sys - from stat import * +.. data:: UF_NODUMP - def walktree(top, callback): - '''recursively descend the directory tree rooted at top, - calling the callback function for each regular file''' + Do not dump the file. - for f in os.listdir(top): - pathname = os.path.join(top, f) - mode = os.stat(pathname)[ST_MODE] - if S_ISDIR(mode): - # It's a directory, recurse into it - walktree(pathname, callback) - elif S_ISREG(mode): - # It's a file, call the callback function - callback(pathname) - else: - # Unknown file type, print a message - print('Skipping %s' % pathname) +.. data:: UF_IMMUTABLE - def visitfile(file): - print('visiting', file) + The file may not be changed. - if __name__ == '__main__': - walktree(sys.argv[1], visitfile) +.. data:: UF_APPEND + The file may only be appended to. + +.. data:: UF_OPAQUE + + The file may not be renamed or deleted. + +.. data:: UF_NOUNLINK + + The directory is opaque when viewed through a union stack. + +.. data:: SF_ARCHIVED + + The file may be archived. + +.. data:: SF_IMMUTABLE + + The file may not be changed. + +.. data:: SF_APPEND + + The file may only be appended to. + +.. data:: SF_NOUNLINK + + The file may not be renamed or deleted. + +.. data:: SF_SNAPSHOT + + The file is a snapshot file. + +See the \*BSD or Mac OS systems man page :manpage:`chflags(2)` for more information. + diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -622,6 +622,7 @@ Tim Northover Joe Norton Neal Norwitz +Michal Nowikowski Steffen Daode Nurpmeso Nigel O'Brian Kevin O'Connor -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 00:22:49 2011 From: python-checkins at python.org (r.david.murray) Date: Fri, 11 Mar 2011 00:22:49 +0100 Subject: [Python-checkins] (2.7): #10999: Add missing documentation for chflags constants to stat module docs Message-ID: http://hg.python.org/cpython/rev/515a81ca81ce changeset: 68363:515a81ca81ce branch: 2.7 parent: 68356:9adc4792db9a user: R David Murray date: Thu Mar 10 17:57:35 2011 -0500 summary: #10999: Add missing documentation for chflags constants to stat module docs Patch by Michal Nowikowski. files: Doc/library/os.rst Doc/library/stat.rst Misc/ACKS diff --git a/Doc/library/os.rst b/Doc/library/os.rst --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -990,16 +990,16 @@ Set the flags of *path* to the numeric *flags*. *flags* may take a combination (bitwise OR) of the following values (as defined in the :mod:`stat` module): - * ``UF_NODUMP`` - * ``UF_IMMUTABLE`` - * ``UF_APPEND`` - * ``UF_OPAQUE`` - * ``UF_NOUNLINK`` - * ``SF_ARCHIVED`` - * ``SF_IMMUTABLE`` - * ``SF_APPEND`` - * ``SF_NOUNLINK`` - * ``SF_SNAPSHOT`` + * :data:`stat.UF_NODUMP` + * :data:`stat.UF_IMMUTABLE` + * :data:`stat.UF_APPEND` + * :data:`stat.UF_OPAQUE` + * :data:`stat.UF_NOUNLINK` + * :data:`stat.SF_ARCHIVED` + * :data:`stat.SF_IMMUTABLE` + * :data:`stat.SF_APPEND` + * :data:`stat.SF_NOUNLINK` + * :data:`stat.SF_SNAPSHOT` Availability: Unix. diff --git a/Doc/library/stat.rst b/Doc/library/stat.rst --- a/Doc/library/stat.rst +++ b/Doc/library/stat.rst @@ -73,6 +73,34 @@ that isn't handled by :mod:`os.path`, like the tests for block and character devices. +Example:: + + import os, sys + from stat import * + + def walktree(top, callback): + '''recursively descend the directory tree rooted at top, + calling the callback function for each regular file''' + + for f in os.listdir(top): + pathname = os.path.join(top, f) + mode = os.stat(pathname)[ST_MODE] + if S_ISDIR(mode): + # It's a directory, recurse into it + walktree(pathname, callback) + elif S_ISREG(mode): + # It's a file, call the callback function + callback(pathname) + else: + # Unknown file type, print a message + print 'Skipping %s' % pathname + + def visitfile(file): + print 'visiting', file + + if __name__ == '__main__': + walktree(sys.argv[1], visitfile) + All the variables below are simply symbolic indexes into the 10-tuple returned by :func:`os.stat`, :func:`os.fstat` or :func:`os.lstat`. @@ -262,31 +290,47 @@ Unix V7 synonym for :data:`S_IXUSR`. -Example:: +The following flags can be used in the *flags* argument of :func:`os.chflags`: - import os, sys - from stat import * +.. data:: UF_NODUMP - def walktree(top, callback): - '''recursively descend the directory tree rooted at top, - calling the callback function for each regular file''' + Do not dump the file. - for f in os.listdir(top): - pathname = os.path.join(top, f) - mode = os.stat(pathname)[ST_MODE] - if S_ISDIR(mode): - # It's a directory, recurse into it - walktree(pathname, callback) - elif S_ISREG(mode): - # It's a file, call the callback function - callback(pathname) - else: - # Unknown file type, print a message - print 'Skipping %s' % pathname +.. data:: UF_IMMUTABLE - def visitfile(file): - print 'visiting', file + The file may not be changed. - if __name__ == '__main__': - walktree(sys.argv[1], visitfile) +.. data:: UF_APPEND + The file may only be appended to. + +.. data:: UF_OPAQUE + + The file may not be renamed or deleted. + +.. data:: UF_NOUNLINK + + The directory is opaque when viewed through a union stack. + +.. data:: SF_ARCHIVED + + The file may be archived. + +.. data:: SF_IMMUTABLE + + The file may not be changed. + +.. data:: SF_APPEND + + The file may only be appended to. + +.. data:: SF_NOUNLINK + + The file may not be renamed or deleted. + +.. data:: SF_SNAPSHOT + + The file is a snapshot file. + +See the \*BSD or Mac OS systems man page :manpage:`chflags(2)` for more information. + diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -584,6 +584,7 @@ Tim Northover Joe Norton Neal Norwitz +Michal Nowikowski Nigel O'Brian Kevin O'Connor Tim O'Malley -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 00:22:50 2011 From: python-checkins at python.org (r.david.murray) Date: Fri, 11 Mar 2011 00:22:50 +0100 Subject: [Python-checkins] (merge default -> default): Merge heads Message-ID: http://hg.python.org/cpython/rev/680861ce45c2 changeset: 68364:680861ce45c2 parent: 68359:c25dcf2f5fe2 parent: 68362:761e6e85d29e user: R David Murray date: Thu Mar 10 18:08:10 2011 -0500 summary: Merge heads files: diff --git a/Doc/library/os.rst b/Doc/library/os.rst --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1260,16 +1260,16 @@ Set the flags of *path* to the numeric *flags*. *flags* may take a combination (bitwise OR) of the following values (as defined in the :mod:`stat` module): - * ``UF_NODUMP`` - * ``UF_IMMUTABLE`` - * ``UF_APPEND`` - * ``UF_OPAQUE`` - * ``UF_NOUNLINK`` - * ``SF_ARCHIVED`` - * ``SF_IMMUTABLE`` - * ``SF_APPEND`` - * ``SF_NOUNLINK`` - * ``SF_SNAPSHOT`` + * :data:`stat.UF_NODUMP` + * :data:`stat.UF_IMMUTABLE` + * :data:`stat.UF_APPEND` + * :data:`stat.UF_OPAQUE` + * :data:`stat.UF_NOUNLINK` + * :data:`stat.SF_ARCHIVED` + * :data:`stat.SF_IMMUTABLE` + * :data:`stat.SF_APPEND` + * :data:`stat.SF_NOUNLINK` + * :data:`stat.SF_SNAPSHOT` Availability: Unix. diff --git a/Doc/library/stat.rst b/Doc/library/stat.rst --- a/Doc/library/stat.rst +++ b/Doc/library/stat.rst @@ -76,6 +76,34 @@ that isn't handled by :mod:`os.path`, like the tests for block and character devices. +Example:: + + import os, sys + from stat import * + + def walktree(top, callback): + '''recursively descend the directory tree rooted at top, + calling the callback function for each regular file''' + + for f in os.listdir(top): + pathname = os.path.join(top, f) + mode = os.stat(pathname)[ST_MODE] + if S_ISDIR(mode): + # It's a directory, recurse into it + walktree(pathname, callback) + elif S_ISREG(mode): + # It's a file, call the callback function + callback(pathname) + else: + # Unknown file type, print a message + print('Skipping %s' % pathname) + + def visitfile(file): + print('visiting', file) + + if __name__ == '__main__': + walktree(sys.argv[1], visitfile) + All the variables below are simply symbolic indexes into the 10-tuple returned by :func:`os.stat`, :func:`os.fstat` or :func:`os.lstat`. @@ -265,31 +293,47 @@ Unix V7 synonym for :data:`S_IXUSR`. -Example:: +The following flags can be used in the *flags* argument of :func:`os.chflags`: - import os, sys - from stat import * +.. data:: UF_NODUMP - def walktree(top, callback): - '''recursively descend the directory tree rooted at top, - calling the callback function for each regular file''' + Do not dump the file. - for f in os.listdir(top): - pathname = os.path.join(top, f) - mode = os.stat(pathname)[ST_MODE] - if S_ISDIR(mode): - # It's a directory, recurse into it - walktree(pathname, callback) - elif S_ISREG(mode): - # It's a file, call the callback function - callback(pathname) - else: - # Unknown file type, print a message - print('Skipping %s' % pathname) +.. data:: UF_IMMUTABLE - def visitfile(file): - print('visiting', file) + The file may not be changed. - if __name__ == '__main__': - walktree(sys.argv[1], visitfile) +.. data:: UF_APPEND + The file may only be appended to. + +.. data:: UF_OPAQUE + + The file may not be renamed or deleted. + +.. data:: UF_NOUNLINK + + The directory is opaque when viewed through a union stack. + +.. data:: SF_ARCHIVED + + The file may be archived. + +.. data:: SF_IMMUTABLE + + The file may not be changed. + +.. data:: SF_APPEND + + The file may only be appended to. + +.. data:: SF_NOUNLINK + + The file may not be renamed or deleted. + +.. data:: SF_SNAPSHOT + + The file is a snapshot file. + +See the \*BSD or Mac OS systems man page :manpage:`chflags(2)` for more information. + diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -622,6 +622,7 @@ Tim Northover Joe Norton Neal Norwitz +Michal Nowikowski Steffen Daode Nurpmeso Nigel O'Brian Kevin O'Connor -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 00:22:55 2011 From: python-checkins at python.org (r.david.murray) Date: Fri, 11 Mar 2011 00:22:55 +0100 Subject: [Python-checkins] (merge 3.2 -> 3.2): Merge heads. Message-ID: http://hg.python.org/cpython/rev/5fdb9f88be50 changeset: 68365:5fdb9f88be50 branch: 3.2 parent: 68361:de5d0b4f81c3 parent: 68358:8a4c4f269156 user: R David Murray date: Thu Mar 10 18:15:25 2011 -0500 summary: Merge heads. files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 00:22:57 2011 From: python-checkins at python.org (r.david.murray) Date: Fri, 11 Mar 2011 00:22:57 +0100 Subject: [Python-checkins] (merge 3.2 -> default): ? Message-ID: http://hg.python.org/cpython/rev/291bc0097cc1 changeset: 68366:291bc0097cc1 parent: 68364:680861ce45c2 parent: 68365:5fdb9f88be50 user: R David Murray date: Thu Mar 10 18:21:45 2011 -0500 summary: ? files: -- Repository URL: http://hg.python.org/cpython From ncoghlan at gmail.com Fri Mar 11 03:45:50 2011 From: ncoghlan at gmail.com (Nick Coghlan) Date: Thu, 10 Mar 2011 21:45:50 -0500 Subject: [Python-checkins] (2.7): Use simpler assert in basic example. In-Reply-To: References: Message-ID: On Thu, Mar 10, 2011 at 4:36 PM, ezio.melotti wrote: > http://hg.python.org/cpython/rev/9adc4792db9a > changeset: ? 68356:9adc4792db9a > branch: ? ? ?2.7 > user: ? ? ? ?Ezio Melotti > date: ? ? ? ?Thu Mar 10 23:35:39 2011 +0200 > summary: > ?Use simpler assert in basic example. Please don't. Now the new methods are available, using assertTrue() on supported expressions is actively throwing away data, and the docs shouldn't recommend it *anywhere*. If using assertIn() at this point in the docs is a genuine problem, find an alternative test example that isn't better written using one of the more specific methods. Cheers, Nick. > > files: > ?Doc/library/unittest.rst > > diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst > --- a/Doc/library/unittest.rst > +++ b/Doc/library/unittest.rst > @@ -130,13 +130,13 @@ > > ? ? ? ?def test_choice(self): > ? ? ? ? ? ?element = random.choice(self.seq) > - ? ? ? ? ? self.assertIn(element, self.seq) > + ? ? ? ? ? self.assertTrue(element in self.seq) > > ? ? ? ?def test_sample(self): > ? ? ? ? ? ?with self.assertRaises(ValueError): > ? ? ? ? ? ? ? ?random.sample(self.seq, 20) > ? ? ? ? ? ?for element in random.sample(self.seq, 5): > - ? ? ? ? ? ? ? self.assertIn(element, self.seq) > + ? ? ? ? ? ? ? self.assertTrue(element in self.seq) > > ? ?if __name__ == '__main__': > ? ? ? ?unittest.main() > > -- > Repository URL: http://hg.python.org/cpython > > _______________________________________________ > Python-checkins mailing list > Python-checkins at python.org > http://mail.python.org/mailman/listinfo/python-checkins > > -- Nick Coghlan?? |?? ncoghlan at gmail.com?? |?? Brisbane, Australia From solipsis at pitrou.net Fri Mar 11 05:10:34 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Fri, 11 Mar 2011 05:10:34 +0100 Subject: [Python-checkins] Daily reference leaks (291bc0097cc1): sum=0 Message-ID: results for 291bc0097cc1 on branch "default" -------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogrPIGF5', '-x'] From ezio.melotti at gmail.com Fri Mar 11 13:53:42 2011 From: ezio.melotti at gmail.com (Ezio Melotti) Date: Fri, 11 Mar 2011 14:53:42 +0200 Subject: [Python-checkins] (2.7): Use simpler assert in basic example. In-Reply-To: References: Message-ID: <4D7A1B56.7010302@gmail.com> On 11/03/2011 4.45, Nick Coghlan wrote: > On Thu, Mar 10, 2011 at 4:36 PM, ezio.melotti > wrote: >> http://hg.python.org/cpython/rev/9adc4792db9a >> changeset: 68356:9adc4792db9a >> branch: 2.7 >> user: Ezio Melotti >> date: Thu Mar 10 23:35:39 2011 +0200 >> summary: >> Use simpler assert in basic example. > Please don't. Now the new methods are available, using assertTrue() on > supported expressions is actively throwing away data, and the docs > shouldn't recommend it *anywhere*. I agree with you, but Raymond wants to keep the example as simple as possible and asked me to change it back. > If using assertIn() at this point in the docs is a genuine problem, > find an alternative test example that isn't better written using one > of the more specific methods. That would be best. Can you come up with a different example that only uses assertEqual/assertTrue/assertRaises? Best Regards, Ezio Melotti > Cheers, > Nick. > >> files: >> Doc/library/unittest.rst >> >> diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst >> --- a/Doc/library/unittest.rst >> +++ b/Doc/library/unittest.rst >> @@ -130,13 +130,13 @@ >> >> def test_choice(self): >> element = random.choice(self.seq) >> - self.assertIn(element, self.seq) >> + self.assertTrue(element in self.seq) >> >> def test_sample(self): >> with self.assertRaises(ValueError): >> random.sample(self.seq, 20) >> for element in random.sample(self.seq, 5): >> - self.assertIn(element, self.seq) >> + self.assertTrue(element in self.seq) >> >> if __name__ == '__main__': >> unittest.main() >> >> -- >> Repository URL: http://hg.python.org/cpython >> >> _______________________________________________ >> Python-checkins mailing list >> Python-checkins at python.org >> http://mail.python.org/mailman/listinfo/python-checkins >> >> > > From python-checkins at python.org Fri Mar 11 14:16:39 2011 From: python-checkins at python.org (ezio.melotti) Date: Fri, 11 Mar 2011 14:16:39 +0100 Subject: [Python-checkins] (3.2): #11435: Update the links generated by the source directive to use hg.python.org. Message-ID: http://hg.python.org/cpython/rev/3c1e779002d3 changeset: 68367:3c1e779002d3 branch: 3.2 parent: 68365:5fdb9f88be50 user: Ezio Melotti date: Fri Mar 11 15:16:01 2011 +0200 summary: #11435: Update the links generated by the source directive to use hg.python.org. files: Doc/tools/sphinxext/pyspecific.py diff --git a/Doc/tools/sphinxext/pyspecific.py b/Doc/tools/sphinxext/pyspecific.py --- a/Doc/tools/sphinxext/pyspecific.py +++ b/Doc/tools/sphinxext/pyspecific.py @@ -10,7 +10,7 @@ """ ISSUE_URI = 'http://bugs.python.org/issue%s' -SOURCE_URI = 'http://svn.python.org/view/python/branches/py3k/%s?view=markup' +SOURCE_URI = 'http://hg.python.org/cpython/file/default/%s' from docutils import nodes, utils from sphinx.util.nodes import split_explicit_title -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 14:17:59 2011 From: python-checkins at python.org (ezio.melotti) Date: Fri, 11 Mar 2011 14:17:59 +0100 Subject: [Python-checkins] (merge 3.2 -> default): #11435: Merge with 3.2 Message-ID: http://hg.python.org/cpython/rev/5f220e98eddc changeset: 68368:5f220e98eddc parent: 68366:291bc0097cc1 parent: 68367:3c1e779002d3 user: Ezio Melotti date: Fri Mar 11 15:17:25 2011 +0200 summary: #11435: Merge with 3.2 files: diff --git a/Doc/tools/sphinxext/pyspecific.py b/Doc/tools/sphinxext/pyspecific.py --- a/Doc/tools/sphinxext/pyspecific.py +++ b/Doc/tools/sphinxext/pyspecific.py @@ -10,7 +10,7 @@ """ ISSUE_URI = 'http://bugs.python.org/issue%s' -SOURCE_URI = 'http://svn.python.org/view/python/branches/py3k/%s?view=markup' +SOURCE_URI = 'http://hg.python.org/cpython/file/default/%s' from docutils import nodes, utils from sphinx.util.nodes import split_explicit_title -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 14:47:42 2011 From: python-checkins at python.org (eli.bendersky) Date: Fri, 11 Mar 2011 14:47:42 +0100 Subject: [Python-checkins] Issue #11426: use 'with' statements on open files in CSV examples Message-ID: http://hg.python.org/cpython/rev/f2a73d65422a changeset: 68369:f2a73d65422a user: Eli Bendersky date: Fri Mar 11 15:47:36 2011 +0200 summary: Issue #11426: use 'with' statements on open files in CSV examples files: Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -419,32 +419,36 @@ The simplest example of reading a CSV file:: import csv - reader = csv.reader(open("some.csv", newline='')) - for row in reader: - print(row) + with open('some.csv', newline='') as f: + reader = csv.reader(f) + for row in reader: + print(row) Reading a file with an alternate format:: import csv - reader = csv.reader(open("passwd"), delimiter=':', quoting=csv.QUOTE_NONE) - for row in reader: - print(row) + with open('passwd') as f: + reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE) + for row in reader: + print(row) The corresponding simplest possible writing example is:: import csv - writer = csv.writer(open("some.csv", "w")) - writer.writerows(someiterable) + with open('some.csv', 'w') as f: + writer = csv.writer(f) + writer.writerows(someiterable) Since :func:`open` is used to open a CSV file for reading, the file will by default be decoded into unicode using the system default encoding (see :func:`locale.getpreferredencoding`). To decode a file using a different encoding, use the ``encoding`` argument of open:: - import csv - reader = csv.reader(open("some.csv", newline='', encoding='utf-8')) - for row in reader: - print(row) + import csv + with open('some.csv', newline='', encoding='utf-8') as f: + reader = csv.reader(f) + for row in reader: + print(row) The same applies to writing in something other than the system default encoding: specify the encoding argument when opening the output file. @@ -453,18 +457,20 @@ import csv csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE) - reader = csv.reader(open("passwd"), 'unixpwd') + with open('passwd') as f: + reader = csv.reader(f, 'unixpwd') A slightly more advanced use of the reader --- catching and reporting errors:: import csv, sys - filename = "some.csv" - reader = csv.reader(open(filename, newline='')) - try: - for row in reader: - print(row) - except csv.Error as e: - sys.exit('file {}, line {}: {}'.format(filename, reader.line_num, e)) + filename = 'some.csv' + with open(filename, newline='') as f: + reader = csv.reader(f) + try: + for row in reader: + print(row) + except csv.Error as e: + sys.exit('file {}, line {}: {}'.format(filename, reader.line_num, e)) And while the module doesn't directly support parsing strings, it can easily be done:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 15:43:53 2011 From: python-checkins at python.org (eli.bendersky) Date: Fri, 11 Mar 2011 15:43:53 +0100 Subject: [Python-checkins] Issue #11426: use 'with' statements on open files in CSV examples Message-ID: http://hg.python.org/cpython/rev/4cb0a8f5c952 changeset: 68370:4cb0a8f5c952 parent: 68366:291bc0097cc1 user: Eli Bendersky date: Fri Mar 11 16:20:54 2011 +0200 summary: Issue #11426: use 'with' statements on open files in CSV examples files: Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -419,32 +419,36 @@ The simplest example of reading a CSV file:: import csv - reader = csv.reader(open("some.csv", newline='')) - for row in reader: - print(row) + with open('some.csv', newline='') as f: + reader = csv.reader(f) + for row in reader: + print(row) Reading a file with an alternate format:: import csv - reader = csv.reader(open("passwd"), delimiter=':', quoting=csv.QUOTE_NONE) - for row in reader: - print(row) + with open('passwd') as f: + reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE) + for row in reader: + print(row) The corresponding simplest possible writing example is:: import csv - writer = csv.writer(open("some.csv", "w")) - writer.writerows(someiterable) + with open('some.csv', 'w') as f: + writer = csv.writer(f) + writer.writerows(someiterable) Since :func:`open` is used to open a CSV file for reading, the file will by default be decoded into unicode using the system default encoding (see :func:`locale.getpreferredencoding`). To decode a file using a different encoding, use the ``encoding`` argument of open:: - import csv - reader = csv.reader(open("some.csv", newline='', encoding='utf-8')) - for row in reader: - print(row) + import csv + with open('some.csv', newline='', encoding='utf-8') as f: + reader = csv.reader(f) + for row in reader: + print(row) The same applies to writing in something other than the system default encoding: specify the encoding argument when opening the output file. @@ -453,18 +457,20 @@ import csv csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE) - reader = csv.reader(open("passwd"), 'unixpwd') + with open('passwd') as f: + reader = csv.reader(f, 'unixpwd') A slightly more advanced use of the reader --- catching and reporting errors:: import csv, sys - filename = "some.csv" - reader = csv.reader(open(filename, newline='')) - try: - for row in reader: - print(row) - except csv.Error as e: - sys.exit('file {}, line {}: {}'.format(filename, reader.line_num, e)) + filename = 'some.csv' + with open(filename, newline='') as f: + reader = csv.reader(f) + try: + for row in reader: + print(row) + except csv.Error as e: + sys.exit('file {}, line {}: {}'.format(filename, reader.line_num, e)) And while the module doesn't directly support parsing strings, it can easily be done:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 15:43:54 2011 From: python-checkins at python.org (eli.bendersky) Date: Fri, 11 Mar 2011 15:43:54 +0100 Subject: [Python-checkins] (3.1): Issue #11426: use 'with' statements on open files in CSV examples Message-ID: http://hg.python.org/cpython/rev/d54e9c4fcd43 changeset: 68371:d54e9c4fcd43 branch: 3.1 parent: 68360:4f9213d3858b user: Eli Bendersky date: Fri Mar 11 16:33:36 2011 +0200 summary: Issue #11426: use 'with' statements on open files in CSV examples files: Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -400,32 +400,36 @@ The simplest example of reading a CSV file:: import csv - reader = csv.reader(open("some.csv", newline='')) - for row in reader: - print(row) + with open('some.csv', newline='') as f: + reader = csv.reader(f) + for row in reader: + print(row) Reading a file with an alternate format:: import csv - reader = csv.reader(open("passwd"), delimiter=':', quoting=csv.QUOTE_NONE) - for row in reader: - print(row) + with open('passwd') as f: + reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE) + for row in reader: + print(row) The corresponding simplest possible writing example is:: import csv - writer = csv.writer(open("some.csv", "w")) - writer.writerows(someiterable) + with open('some.csv', 'w') as f: + writer = csv.writer(f) + writer.writerows(someiterable) Since :func:`open` is used to open a CSV file for reading, the file will by default be decoded into unicode using the system default encoding (see :func:`locale.getpreferredencoding`). To decode a file using a different encoding, use the ``encoding`` argument of open:: - import csv - reader = csv.reader(open("some.csv", newline='', encoding='utf-8')) - for row in reader: - print(row) + import csv + with open('some.csv', newline='', encoding='utf-8') as f: + reader = csv.reader(f) + for row in reader: + print(row) The same applies to writing in something other than the system default encoding: specify the encoding argument when opening the output file. @@ -434,18 +438,20 @@ import csv csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE) - reader = csv.reader(open("passwd"), 'unixpwd') + with open('passwd') as f: + reader = csv.reader(f, 'unixpwd') A slightly more advanced use of the reader --- catching and reporting errors:: import csv, sys - filename = "some.csv" - reader = csv.reader(open(filename, newline='')) - try: - for row in reader: - print(row) - except csv.Error as e: - sys.exit('file {}, line {}: {}'.format(filename, reader.line_num, e)) + filename = 'some.csv' + with open(filename, newline='') as f: + reader = csv.reader(f) + try: + for row in reader: + print(row) + except csv.Error as e: + sys.exit('file {}, line {}: {}'.format(filename, reader.line_num, e)) And while the module doesn't directly support parsing strings, it can easily be done:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 15:44:00 2011 From: python-checkins at python.org (eli.bendersky) Date: Fri, 11 Mar 2011 15:44:00 +0100 Subject: [Python-checkins] (merge 3.1 -> 3.2): merge from 3.1 Message-ID: http://hg.python.org/cpython/rev/3b01044ca36f changeset: 68372:3b01044ca36f branch: 3.2 parent: 68365:5fdb9f88be50 parent: 68371:d54e9c4fcd43 user: Eli Bendersky date: Fri Mar 11 16:39:04 2011 +0200 summary: merge from 3.1 files: Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -419,32 +419,36 @@ The simplest example of reading a CSV file:: import csv - reader = csv.reader(open("some.csv", newline='')) - for row in reader: - print(row) + with open('some.csv', newline='') as f: + reader = csv.reader(f) + for row in reader: + print(row) Reading a file with an alternate format:: import csv - reader = csv.reader(open("passwd"), delimiter=':', quoting=csv.QUOTE_NONE) - for row in reader: - print(row) + with open('passwd') as f: + reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE) + for row in reader: + print(row) The corresponding simplest possible writing example is:: import csv - writer = csv.writer(open("some.csv", "w")) - writer.writerows(someiterable) + with open('some.csv', 'w') as f: + writer = csv.writer(f) + writer.writerows(someiterable) Since :func:`open` is used to open a CSV file for reading, the file will by default be decoded into unicode using the system default encoding (see :func:`locale.getpreferredencoding`). To decode a file using a different encoding, use the ``encoding`` argument of open:: - import csv - reader = csv.reader(open("some.csv", newline='', encoding='utf-8')) - for row in reader: - print(row) + import csv + with open('some.csv', newline='', encoding='utf-8') as f: + reader = csv.reader(f) + for row in reader: + print(row) The same applies to writing in something other than the system default encoding: specify the encoding argument when opening the output file. @@ -453,18 +457,20 @@ import csv csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE) - reader = csv.reader(open("passwd"), 'unixpwd') + with open('passwd') as f: + reader = csv.reader(f, 'unixpwd') A slightly more advanced use of the reader --- catching and reporting errors:: import csv, sys - filename = "some.csv" - reader = csv.reader(open(filename, newline='')) - try: - for row in reader: - print(row) - except csv.Error as e: - sys.exit('file {}, line {}: {}'.format(filename, reader.line_num, e)) + filename = 'some.csv' + with open(filename, newline='') as f: + reader = csv.reader(f) + try: + for row in reader: + print(row) + except csv.Error as e: + sys.exit('file {}, line {}: {}'.format(filename, reader.line_num, e)) And while the module doesn't directly support parsing strings, it can easily be done:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 15:44:02 2011 From: python-checkins at python.org (eli.bendersky) Date: Fri, 11 Mar 2011 15:44:02 +0100 Subject: [Python-checkins] (merge 3.2 -> 3.2): merge Message-ID: http://hg.python.org/cpython/rev/0dc7ef54107b changeset: 68373:0dc7ef54107b branch: 3.2 parent: 68372:3b01044ca36f parent: 68367:3c1e779002d3 user: Eli Bendersky date: Fri Mar 11 16:40:25 2011 +0200 summary: merge files: diff --git a/Doc/tools/sphinxext/pyspecific.py b/Doc/tools/sphinxext/pyspecific.py --- a/Doc/tools/sphinxext/pyspecific.py +++ b/Doc/tools/sphinxext/pyspecific.py @@ -10,7 +10,7 @@ """ ISSUE_URI = 'http://bugs.python.org/issue%s' -SOURCE_URI = 'http://svn.python.org/view/python/branches/py3k/%s?view=markup' +SOURCE_URI = 'http://hg.python.org/cpython/file/default/%s' from docutils import nodes, utils from sphinx.util.nodes import split_explicit_title -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 15:44:04 2011 From: python-checkins at python.org (eli.bendersky) Date: Fri, 11 Mar 2011 15:44:04 +0100 Subject: [Python-checkins] (merge default -> default): dummy merge from 3.2 Message-ID: http://hg.python.org/cpython/rev/21ac384e1b70 changeset: 68374:21ac384e1b70 parent: 68369:f2a73d65422a parent: 68370:4cb0a8f5c952 user: Eli Bendersky date: Fri Mar 11 16:42:13 2011 +0200 summary: dummy merge from 3.2 files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 17:27:57 2011 From: python-checkins at python.org (antoine.pitrou) Date: Fri, 11 Mar 2011 17:27:57 +0100 Subject: [Python-checkins] Issue #11244: The peephole optimizer is now able to constant-fold Message-ID: http://hg.python.org/cpython/rev/14205d0fee45 changeset: 68375:14205d0fee45 user: Antoine Pitrou date: Fri Mar 11 17:27:02 2011 +0100 summary: Issue #11244: The peephole optimizer is now able to constant-fold arbitrarily complex expressions. This also fixes a 3.2 regression where operations involving negative numbers were not constant-folded. files: Lib/test/test_peepholer.py Misc/NEWS Python/peephole.c diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py --- a/Lib/test/test_peepholer.py +++ b/Lib/test/test_peepholer.py @@ -8,8 +8,10 @@ f = StringIO() tmp = sys.stdout sys.stdout = f - dis.dis(func) - sys.stdout = tmp + try: + dis.dis(func) + finally: + sys.stdout = tmp result = f.getvalue() f.close() return result @@ -99,6 +101,12 @@ self.assertIn(elem, asm) self.assertNotIn('BUILD_TUPLE', asm) + # Long tuples should be folded too. + asm = dis_single(repr(tuple(range(10000)))) + # One LOAD_CONST for the tuple, one for the None return value + self.assertEqual(asm.count('LOAD_CONST'), 2) + self.assertNotIn('BUILD_TUPLE', asm) + # Bug 1053819: Tuple of constants misidentified when presented with: # . . . opcode_with_arg 100 unary_opcode BUILD_TUPLE 1 . . . # The following would segfault upon compilation @@ -267,6 +275,25 @@ asm = disassemble(f) self.assertNotIn('BINARY_ADD', asm) + def test_constant_folding(self): + # Issue #11244: aggressive constant folding. + exprs = [ + "3 * -5", + "-3 * 5", + "2 * (3 * 4)", + "(2 * 3) * 4", + "(-1, 2, 3)", + "(1, -2, 3)", + "(1, 2, -3)", + "(1, 2, -3) * 6", + "lambda x: x in {(3 * -5) + (-1 - 6), (1, -2, 3) * 2, None}", + ] + for e in exprs: + asm = dis_single(e) + self.assertNotIn('UNARY_', asm, e) + self.assertNotIn('BINARY_', asm, e) + self.assertNotIn('BUILD_', asm, e) + def test_main(verbose=None): import sys diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,10 @@ Core and Builtins ----------------- +- Issue #11244: The peephole optimizer is now able to constant-fold + arbitrarily complex expressions. This also fixes a 3.2 regression where + operations involving negative numbers were not constant-folded. + - Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when there are many tags (e.g. when using mq). Patch by Nadeem Vawda. diff --git a/Python/peephole.c b/Python/peephole.c --- a/Python/peephole.c +++ b/Python/peephole.c @@ -23,6 +23,64 @@ #define ISBASICBLOCK(blocks, start, bytes) \ (blocks[start]==blocks[start+bytes-1]) + +#define CONST_STACK_CREATE() { \ + const_stack_size = 256; \ + const_stack = PyMem_New(PyObject *, const_stack_size); \ + load_const_stack = PyMem_New(Py_ssize_t, const_stack_size); \ + if (!const_stack || !load_const_stack) { \ + PyErr_NoMemory(); \ + goto exitError; \ + } \ + } + +#define CONST_STACK_DELETE() do { \ + if (const_stack) \ + PyMem_Free(const_stack); \ + if (load_const_stack) \ + PyMem_Free(load_const_stack); \ + } while(0) + +#define CONST_STACK_LEN() (const_stack_top + 1) + +#define CONST_STACK_PUSH_OP(i) do { \ + PyObject *_x; \ + assert(codestr[i] == LOAD_CONST); \ + assert(PyList_GET_SIZE(consts) > GETARG(codestr, i)); \ + _x = PyList_GET_ITEM(consts, GETARG(codestr, i)); \ + if (++const_stack_top >= const_stack_size) { \ + const_stack_size *= 2; \ + PyMem_Resize(const_stack, PyObject *, const_stack_size); \ + PyMem_Resize(load_const_stack, Py_ssize_t, const_stack_size); \ + if (!const_stack || !load_const_stack) { \ + PyErr_NoMemory(); \ + goto exitError; \ + } \ + } \ + load_const_stack[const_stack_top] = i; \ + const_stack[const_stack_top] = _x; \ + in_consts = 1; \ + } while(0) + +#define CONST_STACK_RESET() do { \ + const_stack_top = -1; \ + } while(0) + +#define CONST_STACK_TOP(x) \ + const_stack[const_stack_top] + +#define CONST_STACK_LASTN(i) \ + &const_stack[const_stack_top - i + 1] + +#define CONST_STACK_POP(i) do { \ + assert(const_stack_top + 1 >= i); \ + const_stack_top -= i; \ + } while(0) + +#define CONST_STACK_OP_LASTN(i) \ + ((const_stack_top >= i - 1) ? load_const_stack[const_stack_top - i + 1] : -1) + + /* Replace LOAD_CONST c1. LOAD_CONST c2 ... LOAD_CONST cn BUILD_TUPLE n with LOAD_CONST (c1, c2, ... cn). The consts table must still be in list form so that the @@ -33,17 +91,14 @@ test; for BUILD_SET it assembles a frozenset rather than a tuple. */ static int -tuple_of_constants(unsigned char *codestr, Py_ssize_t n, PyObject *consts) +tuple_of_constants(unsigned char *codestr, Py_ssize_t n, + PyObject *consts, PyObject **objs) { PyObject *newconst, *constant; - Py_ssize_t i, arg, len_consts; + Py_ssize_t i, len_consts; /* Pre-conditions */ assert(PyList_CheckExact(consts)); - assert(codestr[n*3] == BUILD_TUPLE || codestr[n*3] == BUILD_LIST || codestr[n*3] == BUILD_SET); - assert(GETARG(codestr, (n*3)) == n); - for (i=0 ; i= 0 && - j <= lastlc && + if (j == 0) + break; + h = CONST_STACK_OP_LASTN(j); + assert((h >= 0 || CONST_STACK_LEN() < j)); + if (h >= 0 && j > 0 && j <= CONST_STACK_LEN() && ((opcode == BUILD_TUPLE && - ISBASICBLOCK(blocks, h, 3*(j+1))) || + ISBASICBLOCK(blocks, h, i-h+3)) || ((opcode == BUILD_LIST || opcode == BUILD_SET) && codestr[i+3]==COMPARE_OP && - ISBASICBLOCK(blocks, h, 3*(j+2)) && + ISBASICBLOCK(blocks, h, i-h+6) && (GETARG(codestr,i+3)==6 || GETARG(codestr,i+3)==7))) && - tuple_of_constants(&codestr[h], j, consts)) { + tuple_of_constants(&codestr[i], j, consts, CONST_STACK_LASTN(j))) { assert(codestr[i] == LOAD_CONST); - cumlc = 1; + memset(&codestr[h], NOP, i - h); + CONST_STACK_POP(j); + CONST_STACK_PUSH_OP(i); break; } if (codestr[i+3] != UNPACK_SEQUENCE || @@ -482,10 +542,12 @@ } else if (j == 2) { codestr[i] = ROT_TWO; memset(codestr+i+1, NOP, 5); + CONST_STACK_RESET(); } else if (j == 3) { codestr[i] = ROT_THREE; codestr[i+1] = ROT_TWO; memset(codestr+i+2, NOP, 4); + CONST_STACK_RESET(); } break; @@ -504,12 +566,18 @@ case BINARY_AND: case BINARY_XOR: case BINARY_OR: - if (lastlc >= 2 && - ISBASICBLOCK(blocks, i-6, 7) && - fold_binops_on_constants(&codestr[i-6], consts)) { + /* NOTE: LOAD_CONST is saved at `i-2` since it has an arg + while BINOP hasn't */ + h = CONST_STACK_OP_LASTN(2); + assert((h >= 0 || CONST_STACK_LEN() < 2)); + if (h >= 0 && + ISBASICBLOCK(blocks, h, i-h+1) && + fold_binops_on_constants(&codestr[i], consts, CONST_STACK_LASTN(2))) { i -= 2; + memset(&codestr[h], NOP, i - h); assert(codestr[i] == LOAD_CONST); - cumlc = 1; + CONST_STACK_POP(2); + CONST_STACK_PUSH_OP(i); } break; @@ -518,12 +586,15 @@ case UNARY_NEGATIVE: case UNARY_INVERT: case UNARY_POSITIVE: - if (lastlc >= 1 && - ISBASICBLOCK(blocks, i-3, 4) && - fold_unaryops_on_constants(&codestr[i-3], consts)) { + h = CONST_STACK_OP_LASTN(1); + assert((h >= 0 || CONST_STACK_LEN() < 1)); + if (h >= 0 && + ISBASICBLOCK(blocks, h, i-h+1) && + fold_unaryops_on_constants(&codestr[i-3], consts, CONST_STACK_TOP())) { i -= 2; assert(codestr[i] == LOAD_CONST); - cumlc = 1; + CONST_STACK_POP(1); + CONST_STACK_PUSH_OP(i); } break; @@ -680,6 +751,7 @@ assert(h + nops == codelen); code = PyBytes_FromStringAndSize((char *)codestr, h); + CONST_STACK_DELETE(); PyMem_Free(addrmap); PyMem_Free(codestr); PyMem_Free(blocks); @@ -689,6 +761,7 @@ code = NULL; exitUnchanged: + CONST_STACK_DELETE(); if (blocks != NULL) PyMem_Free(blocks); if (addrmap != NULL) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 17:55:21 2011 From: python-checkins at python.org (eric.araujo) Date: Fri, 11 Mar 2011 17:55:21 +0100 Subject: [Python-checkins] Use with statement where it improves the documentation (closes #10461) Message-ID: http://hg.python.org/cpython/rev/c3d28c84a372 changeset: 68376:c3d28c84a372 user: ?ric Araujo date: Fri Mar 11 17:42:48 2011 +0100 summary: Use with statement where it improves the documentation (closes #10461) files: Doc/library/atexit.rst Doc/library/cmd.rst Doc/library/collections.rst Doc/library/difflib.rst Doc/tutorial/stdlib2.rst diff --git a/Doc/library/atexit.rst b/Doc/library/atexit.rst --- a/Doc/library/atexit.rst +++ b/Doc/library/atexit.rst @@ -61,17 +61,22 @@ automatically when the program terminates without relying on the application making an explicit call into this module at termination. :: + infile = open("/tmp/counter") try: - _count = int(open("/tmp/counter").read()) + _count = int(infile.read()) except IOError: _count = 0 + finally: + infile.close() + def incrcounter(n): global _count _count = _count + n def savecounter(): - open("/tmp/counter", "w").write("%d" % _count) + with open("/tmp/counter", "w") as outfile: + outfile.write("%d" % _count) import atexit atexit.register(savecounter) diff --git a/Doc/library/cmd.rst b/Doc/library/cmd.rst --- a/Doc/library/cmd.rst +++ b/Doc/library/cmd.rst @@ -282,8 +282,8 @@ def do_playback(self, arg): 'Playback commands from a file: PLAYBACK rose.cmd' self.close() - cmds = open(arg).read().splitlines() - self.cmdqueue.extend(cmds) + with open(arg) as f: + self.cmdqueue.extend(f.read().splitlines()) def precmd(self, line): line = line.lower() if self.file and 'playback' not in line: diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -512,7 +512,8 @@ def tail(filename, n=10): 'Return the last n lines of a file' - return deque(open(filename), n) + with open(filename) as f: + return deque(f, n) Another approach to using deques is to maintain a sequence of recently added elements by appending to the right and popping to the left:: diff --git a/Doc/library/difflib.rst b/Doc/library/difflib.rst --- a/Doc/library/difflib.rst +++ b/Doc/library/difflib.rst @@ -750,8 +750,8 @@ # we're passing these as arguments to the diff function fromdate = time.ctime(os.stat(fromfile).st_mtime) todate = time.ctime(os.stat(tofile).st_mtime) - fromlines = open(fromfile, 'U').readlines() - tolines = open(tofile, 'U').readlines() + with open(fromlines) as fromf, open(tofile) as tof: + fromlines, tolines = list(fromf), list(tof) if options.u: diff = difflib.unified_diff(fromlines, tolines, fromfile, tofile, diff --git a/Doc/tutorial/stdlib2.rst b/Doc/tutorial/stdlib2.rst --- a/Doc/tutorial/stdlib2.rst +++ b/Doc/tutorial/stdlib2.rst @@ -141,7 +141,9 @@ import struct - data = open('myfile.zip', 'rb').read() + with open('myfile.zip', 'rb') as f: + data = f.read() + start = 0 for i in range(3): # show the first 3 file headers start += 14 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 18:24:00 2011 From: python-checkins at python.org (eric.araujo) Date: Fri, 11 Mar 2011 18:24:00 +0100 Subject: [Python-checkins] hooks: Also set stage when automatically closing an issue Message-ID: http://hg.python.org/hooks/rev/985622a5fcc1 changeset: 60:985622a5fcc1 user: ?ric Araujo date: Fri Mar 11 18:17:28 2011 +0100 summary: Also set stage when automatically closing an issue files: hgroundup.py diff --git a/hgroundup.py b/hgroundup.py --- a/hgroundup.py +++ b/hgroundup.py @@ -119,7 +119,8 @@ if data['verb']: issues[key]['properties'].update({ 'status': 'closed', - 'resolution': 'fixed' + 'resolution': 'fixed', + 'stage': 'committed/rejected', }) def send_comments(mailrelay, fromaddr, toaddr, issues): -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Fri Mar 11 19:49:07 2011 From: python-checkins at python.org (vinay.sajip) Date: Fri, 11 Mar 2011 19:49:07 +0100 Subject: [Python-checkins] (2.6): Reverted bug fixes for #11444 (fc4d045e3170) and #11424 (b9d76846bb1c), which Message-ID: http://hg.python.org/cpython/rev/d6626c9fc28d changeset: 68377:d6626c9fc28d branch: 2.6 parent: 68333:fc4d045e3170 user: Vinay Sajip date: Fri Mar 11 18:44:10 2011 +0000 summary: Reverted bug fixes for #11444 (fc4d045e3170) and #11424 (b9d76846bb1c), which should not have been made in this branch. files: Lib/logging/__init__.py Lib/logging/config.py Lib/test/test_logging.py diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1513,15 +1513,12 @@ #errors might occur, for example, if files are locked #we just ignore them if raiseExceptions is not set try: - h.acquire() h.flush() h.close() except: if raiseExceptions: raise #else, swallow - finally: - h.release() #Let's try and shutdown automatically on application exit... try: diff --git a/Lib/logging/config.py b/Lib/logging/config.py --- a/Lib/logging/config.py +++ b/Lib/logging/config.py @@ -232,14 +232,14 @@ propagate = 1 logger = logging.getLogger(qn) if qn in existing: - i = existing.index(qn) + 1 # start with the entry after qn + i = existing.index(qn) prefixed = qn + "." pflen = len(prefixed) num_existing = len(existing) - while i < num_existing: - if existing[i][:pflen] == prefixed: - child_loggers.append(existing[i]) - i += 1 + i = i + 1 # look at the entry after qn + while (i < num_existing) and (existing[i][:pflen] == prefixed): + child_loggers.append(existing[i]) + i = i + 1 existing.remove(qn) if "level" in opts: level = cp.get(sectname, "level") diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -558,38 +558,6 @@ datefmt= """ - # config1a moves the handler to the root. - config1a = """ - [loggers] - keys=root,parser - - [handlers] - keys=hand1 - - [formatters] - keys=form1 - - [logger_root] - level=WARNING - handlers=hand1 - - [logger_parser] - level=DEBUG - handlers= - propagate=1 - qualname=compiler.parser - - [handler_hand1] - class=StreamHandler - level=NOTSET - formatter=form1 - args=(sys.stdout,) - - [formatter_form1] - format=%(levelname)s ++ %(message)s - datefmt= - """ - # config2 has a subtle configuration error that should be reported config2 = config1.replace("sys.stdout", "sys.stbout") @@ -668,44 +636,6 @@ datefmt= """ - # config7 adds a compiler logger. - config7 = """ - [loggers] - keys=root,parser,compiler - - [handlers] - keys=hand1 - - [formatters] - keys=form1 - - [logger_root] - level=WARNING - handlers=hand1 - - [logger_compiler] - level=DEBUG - handlers= - propagate=1 - qualname=compiler - - [logger_parser] - level=DEBUG - handlers= - propagate=1 - qualname=compiler.parser - - [handler_hand1] - class=StreamHandler - level=NOTSET - formatter=form1 - args=(sys.stdout,) - - [formatter_form1] - format=%(levelname)s ++ %(message)s - datefmt= - """ - def apply_config(self, conf): try: fn = tempfile.mktemp(".ini") @@ -775,49 +705,6 @@ def test_config6_ok(self): self.test_config1_ok(config=self.config6) - def test_config7_ok(self): - with captured_stdout() as output: - self.apply_config(self.config1a) - logger = logging.getLogger("compiler.parser") - # See issue #11424. compiler-hyphenated sorts - # between compiler and compiler.xyz and this - # was preventing compiler.xyz from being included - # in the child loggers of compiler because of an - # overzealous loop termination condition. - hyphenated = logging.getLogger('compiler-hyphenated') - # All will output a message - logger.info(self.next_message()) - logger.error(self.next_message()) - hyphenated.critical(self.next_message()) - self.assert_log_lines([ - ('INFO', '1'), - ('ERROR', '2'), - ('CRITICAL', '3'), - ], stream=output) - # Original logger output is empty. - self.assert_log_lines([]) - with captured_stdout() as output: - self.apply_config(self.config7) - logger = logging.getLogger("compiler.parser") - self.assertFalse(logger.disabled) - # Both will output a message - logger.info(self.next_message()) - logger.error(self.next_message()) - logger = logging.getLogger("compiler.lexer") - # Both will output a message - logger.info(self.next_message()) - logger.error(self.next_message()) - # Will not appear - hyphenated.critical(self.next_message()) - self.assert_log_lines([ - ('INFO', '4'), - ('ERROR', '5'), - ('INFO', '6'), - ('ERROR', '7'), - ], stream=output) - # Original logger output is empty. - self.assert_log_lines([]) - class LogRecordStreamHandler(StreamRequestHandler): """Handler for a streaming logging request. It saves the log message in the -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 19:51:18 2011 From: python-checkins at python.org (ezio.melotti) Date: Fri, 11 Mar 2011 19:51:18 +0100 Subject: [Python-checkins] (3.1): #11446: fix incorrect PEP link. Message-ID: http://hg.python.org/cpython/rev/ed1f7b3f2ff3 changeset: 68378:ed1f7b3f2ff3 branch: 3.1 parent: 68371:d54e9c4fcd43 user: Ezio Melotti date: Fri Mar 11 20:50:42 2011 +0200 summary: #11446: fix incorrect PEP link. files: Doc/reference/compound_stmts.rst diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -607,7 +607,7 @@ .. seealso:: - :pep:`3116` - Metaclasses in Python 3 + :pep:`3115` - Metaclasses in Python 3 :pep:`3129` - Class Decorators -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 19:54:01 2011 From: python-checkins at python.org (ezio.melotti) Date: Fri, 11 Mar 2011 19:54:01 +0100 Subject: [Python-checkins] (merge 3.1 -> 3.2): #11446: merge with 3.1. Message-ID: http://hg.python.org/cpython/rev/eeef2f17a774 changeset: 68379:eeef2f17a774 branch: 3.2 parent: 68373:0dc7ef54107b parent: 68378:ed1f7b3f2ff3 user: Ezio Melotti date: Fri Mar 11 20:53:24 2011 +0200 summary: #11446: merge with 3.1. files: Doc/reference/compound_stmts.rst diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -609,7 +609,7 @@ .. seealso:: - :pep:`3116` - Metaclasses in Python 3 + :pep:`3115` - Metaclasses in Python 3 :pep:`3129` - Class Decorators -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 19:57:34 2011 From: python-checkins at python.org (ezio.melotti) Date: Fri, 11 Mar 2011 19:57:34 +0100 Subject: [Python-checkins] (merge 3.2 -> default): #11446: merge with 3.2. Message-ID: http://hg.python.org/cpython/rev/14a2d276b9ab changeset: 68380:14a2d276b9ab parent: 68376:c3d28c84a372 parent: 68379:eeef2f17a774 user: Ezio Melotti date: Fri Mar 11 20:56:58 2011 +0200 summary: #11446: merge with 3.2. files: Doc/library/csv.rst diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -609,7 +609,7 @@ .. seealso:: - :pep:`3116` - Metaclasses in Python 3 + :pep:`3115` - Metaclasses in Python 3 :pep:`3129` - Class Decorators -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 20:58:40 2011 From: python-checkins at python.org (antoine.pitrou) Date: Fri, 11 Mar 2011 20:58:40 +0100 Subject: [Python-checkins] (3.2): Issue #11179: Make ccbench work under Python 3.1 and 2.7 again. Message-ID: http://hg.python.org/cpython/rev/353032fd38e2 changeset: 68381:353032fd38e2 branch: 3.2 parent: 68379:eeef2f17a774 user: Antoine Pitrou date: Fri Mar 11 20:57:11 2011 +0100 summary: Issue #11179: Make ccbench work under Python 3.1 and 2.7 again. files: Misc/NEWS Tools/ccbench/ccbench.py diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -81,6 +81,11 @@ - Issue #11268: Prevent Mac OS X Installer failure if Documentation package had previously been installed. +Tools/Demos +----------- + +- Issue #11179: Make ccbench work under Python 3.1 and 2.7 again. + Tests ----- diff --git a/Tools/ccbench/ccbench.py b/Tools/ccbench/ccbench.py --- a/Tools/ccbench/ccbench.py +++ b/Tools/ccbench/ccbench.py @@ -276,7 +276,8 @@ return sock.recv(n).decode('ascii') def latency_client(addr, nb_pings, interval): - with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as sock: + sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + try: _time = time.time _sleep = time.sleep def _ping(): @@ -289,6 +290,8 @@ _sleep(interval) _ping() _sendto(sock, LAT_END + "\n", addr) + finally: + sock.close() def run_latency_client(**kwargs): cmd_line = [sys.executable, '-E', os.path.abspath(__file__)] -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 20:58:45 2011 From: python-checkins at python.org (antoine.pitrou) Date: Fri, 11 Mar 2011 20:58:45 +0100 Subject: [Python-checkins] (merge 3.2 -> default): Issue #11179: Make ccbench work under Python 3.1 and 2.7 again. Message-ID: http://hg.python.org/cpython/rev/92b59654e71c changeset: 68382:92b59654e71c parent: 68380:14a2d276b9ab parent: 68381:353032fd38e2 user: Antoine Pitrou date: Fri Mar 11 20:58:31 2011 +0100 summary: Issue #11179: Make ccbench work under Python 3.1 and 2.7 again. files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -169,6 +169,11 @@ - Issue #11268: Prevent Mac OS X Installer failure if Documentation package had previously been installed. +Tools/Demos +----------- + +- Issue #11179: Make ccbench work under Python 3.1 and 2.7 again. + Tests ----- diff --git a/Tools/ccbench/ccbench.py b/Tools/ccbench/ccbench.py --- a/Tools/ccbench/ccbench.py +++ b/Tools/ccbench/ccbench.py @@ -276,7 +276,8 @@ return sock.recv(n).decode('ascii') def latency_client(addr, nb_pings, interval): - with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as sock: + sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + try: _time = time.time _sleep = time.sleep def _ping(): @@ -289,6 +290,8 @@ _sleep(interval) _ping() _sendto(sock, LAT_END + "\n", addr) + finally: + sock.close() def run_latency_client(**kwargs): cmd_line = [sys.executable, '-E', os.path.abspath(__file__)] -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 21:30:47 2011 From: python-checkins at python.org (antoine.pitrou) Date: Fri, 11 Mar 2011 21:30:47 +0100 Subject: [Python-checkins] Issue #9935: Speed up pickling of instances of user-defined classes. Message-ID: http://hg.python.org/cpython/rev/ff0220c9d213 changeset: 68383:ff0220c9d213 user: Antoine Pitrou date: Fri Mar 11 21:30:43 2011 +0100 summary: Issue #9935: Speed up pickling of instances of user-defined classes. files: Lib/test/pickletester.py Misc/NEWS Modules/_pickle.c Objects/typeobject.c diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py @@ -3,6 +3,7 @@ import pickle import pickletools import copyreg +import weakref from http.cookies import SimpleCookie from test.support import TestFailed, TESTFN, run_with_locale, no_tracing @@ -842,6 +843,25 @@ self.assertEqual(B(x), B(y), detail) self.assertEqual(x.__dict__, y.__dict__, detail) + def test_newobj_proxies(self): + # NEWOBJ should use the __class__ rather than the raw type + classes = myclasses[:] + # Cannot create weakproxies to these classes + for c in (MyInt, MyTuple): + classes.remove(c) + for proto in protocols: + for C in classes: + B = C.__base__ + x = C(C.sample) + x.foo = 42 + p = weakref.proxy(x) + s = self.dumps(p, proto) + y = self.loads(s) + self.assertEqual(type(y), type(x)) # rather than type(p) + detail = (proto, C, B, x, y, type(y)) + self.assertEqual(B(x), B(y), detail) + self.assertEqual(x.__dict__, y.__dict__, detail) + # Register a type with copyreg, with extension code extcode. Pickle # an object of that type. Check that the resulting pickle uses opcode # (EXT[124]) under proto 2, and not in proto 1. @@ -1009,7 +1029,6 @@ self.assertRaises(RuntimeError, self.dumps, x, proto) # protocol 2 don't raise a RuntimeError. d = self.dumps(x, 2) - self.assertRaises(RuntimeError, self.loads, d) def test_reduce_bad_iterator(self): # Issue4176: crash when 4th and 5th items of __reduce__() diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -62,6 +62,8 @@ Library ------- +- Issue #9935: Speed up pickling of instances of user-defined classes. + - Issue #5622: Fix curses.wrapper to raise correct exception if curses initialization fails. diff --git a/Modules/_pickle.c b/Modules/_pickle.c --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -2842,6 +2842,28 @@ return status; } +static PyObject * +get_class(PyObject *obj) +{ + PyObject *cls; + static PyObject *str_class; + + if (str_class == NULL) { + str_class = PyUnicode_InternFromString("__class__"); + if (str_class == NULL) + return NULL; + } + cls = PyObject_GetAttr(obj, str_class); + if (cls == NULL) { + if (PyErr_ExceptionMatches(PyExc_AttributeError)) { + PyErr_Clear(); + cls = (PyObject *) Py_TYPE(obj); + Py_INCREF(cls); + } + } + return cls; +} + /* We're saving obj, and args is the 2-thru-5 tuple returned by the * appropriate __reduce__ method for obj. */ @@ -2907,17 +2929,18 @@ /* Protocol 2 special case: if callable's name is __newobj__, use NEWOBJ. */ if (use_newobj) { - static PyObject *newobj_str = NULL; - PyObject *name_str; + static PyObject *newobj_str = NULL, *name_str = NULL; + PyObject *name; if (newobj_str == NULL) { newobj_str = PyUnicode_InternFromString("__newobj__"); - if (newobj_str == NULL) + name_str = PyUnicode_InternFromString("__name__"); + if (newobj_str == NULL || name_str == NULL) return -1; } - name_str = PyObject_GetAttrString(callable, "__name__"); - if (name_str == NULL) { + name = PyObject_GetAttr(callable, name_str); + if (name == NULL) { if (PyErr_ExceptionMatches(PyExc_AttributeError)) PyErr_Clear(); else @@ -2925,9 +2948,9 @@ use_newobj = 0; } else { - use_newobj = PyUnicode_Check(name_str) && - PyUnicode_Compare(name_str, newobj_str) == 0; - Py_DECREF(name_str); + use_newobj = PyUnicode_Check(name) && + PyUnicode_Compare(name, newobj_str) == 0; + Py_DECREF(name); } } if (use_newobj) { @@ -2943,20 +2966,14 @@ } cls = PyTuple_GET_ITEM(argtup, 0); - if (!PyObject_HasAttrString(cls, "__new__")) { + if (!PyType_Check(cls)) { PyErr_SetString(PicklingError, "args[0] from " - "__newobj__ args has no __new__"); + "__newobj__ args is not a type"); return -1; } if (obj != NULL) { - obj_class = PyObject_GetAttrString(obj, "__class__"); - if (obj_class == NULL) { - if (PyErr_ExceptionMatches(PyExc_AttributeError)) - PyErr_Clear(); - else - return -1; - } + obj_class = get_class(obj); p = obj_class != cls; /* true iff a problem */ Py_DECREF(obj_class); if (p) { diff --git a/Objects/typeobject.c b/Objects/typeobject.c --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -3073,14 +3073,19 @@ import_copyreg(void) { static PyObject *copyreg_str; + static PyObject *mod_copyreg = NULL; if (!copyreg_str) { copyreg_str = PyUnicode_InternFromString("copyreg"); if (copyreg_str == NULL) return NULL; } - - return PyImport_Import(copyreg_str); + if (!mod_copyreg) { + mod_copyreg = PyImport_Import(copyreg_str); + } + + Py_XINCREF(mod_copyreg); + return mod_copyreg; } static PyObject * @@ -3089,14 +3094,16 @@ PyObject *clsdict; PyObject *copyreg; PyObject *slotnames; - - if (!PyType_Check(cls)) { - Py_INCREF(Py_None); - return Py_None; + static PyObject *str_slotnames; + + if (str_slotnames == NULL) { + str_slotnames = PyUnicode_InternFromString("__slotnames__"); + if (str_slotnames == NULL) + return NULL; } clsdict = ((PyTypeObject *)cls)->tp_dict; - slotnames = PyDict_GetItemString(clsdict, "__slotnames__"); + slotnames = PyDict_GetItem(clsdict, str_slotnames); if (slotnames != NULL && PyList_Check(slotnames)) { Py_INCREF(slotnames); return slotnames; @@ -3130,12 +3137,20 @@ PyObject *slots = NULL, *listitems = NULL, *dictitems = NULL; PyObject *copyreg = NULL, *newobj = NULL, *res = NULL; Py_ssize_t i, n; - - cls = PyObject_GetAttrString(obj, "__class__"); - if (cls == NULL) - return NULL; - - getnewargs = PyObject_GetAttrString(obj, "__getnewargs__"); + static PyObject *str_getnewargs = NULL, *str_getstate = NULL, + *str_newobj = NULL; + + if (str_getnewargs == NULL) { + str_getnewargs = PyUnicode_InternFromString("__getnewargs__"); + str_getstate = PyUnicode_InternFromString("__getstate__"); + str_newobj = PyUnicode_InternFromString("__newobj__"); + if (!str_getnewargs || !str_getstate || !str_newobj) + return NULL; + } + + cls = (PyObject *) Py_TYPE(obj); + + getnewargs = PyObject_GetAttr(obj, str_getnewargs); if (getnewargs != NULL) { args = PyObject_CallObject(getnewargs, NULL); Py_DECREF(getnewargs); @@ -3153,7 +3168,7 @@ if (args == NULL) goto end; - getstate = PyObject_GetAttrString(obj, "__getstate__"); + getstate = PyObject_GetAttr(obj, str_getstate); if (getstate != NULL) { state = PyObject_CallObject(getstate, NULL); Py_DECREF(getstate); @@ -3161,17 +3176,18 @@ goto end; } else { + PyObject **dict; PyErr_Clear(); - state = PyObject_GetAttrString(obj, "__dict__"); - if (state == NULL) { - PyErr_Clear(); + dict = _PyObject_GetDictPtr(obj); + if (dict && *dict) + state = *dict; + else state = Py_None; - Py_INCREF(state); - } + Py_INCREF(state); names = slotnames(cls); if (names == NULL) goto end; - if (names != Py_None) { + if (names != Py_None && PyList_GET_SIZE(names) > 0) { assert(PyList_Check(names)); slots = PyDict_New(); if (slots == NULL) @@ -3230,7 +3246,7 @@ copyreg = import_copyreg(); if (copyreg == NULL) goto end; - newobj = PyObject_GetAttrString(copyreg, "__newobj__"); + newobj = PyObject_GetAttr(copyreg, str_newobj); if (newobj == NULL) goto end; @@ -3238,8 +3254,8 @@ args2 = PyTuple_New(n+1); if (args2 == NULL) goto end; + Py_INCREF(cls); PyTuple_SET_ITEM(args2, 0, cls); - cls = NULL; for (i = 0; i < n; i++) { PyObject *v = PyTuple_GET_ITEM(args, i); Py_INCREF(v); @@ -3249,7 +3265,6 @@ res = PyTuple_Pack(5, newobj, args2, state, listitems, dictitems); end: - Py_XDECREF(cls); Py_XDECREF(args); Py_XDECREF(args2); Py_XDECREF(slots); @@ -3309,31 +3324,34 @@ static PyObject * object_reduce_ex(PyObject *self, PyObject *args) { + static PyObject *str_reduce = NULL, *objreduce; PyObject *reduce, *res; int proto = 0; if (!PyArg_ParseTuple(args, "|i:__reduce_ex__", &proto)) return NULL; - reduce = PyObject_GetAttrString(self, "__reduce__"); + if (str_reduce == NULL) { + str_reduce = PyUnicode_InternFromString("__reduce__"); + objreduce = PyDict_GetItemString(PyBaseObject_Type.tp_dict, + "__reduce__"); + if (str_reduce == NULL || objreduce == NULL) + return NULL; + } + + reduce = PyObject_GetAttr(self, str_reduce); if (reduce == NULL) PyErr_Clear(); else { - PyObject *cls, *clsreduce, *objreduce; + PyObject *cls, *clsreduce; int override; - cls = PyObject_GetAttrString(self, "__class__"); - if (cls == NULL) { - Py_DECREF(reduce); - return NULL; - } - clsreduce = PyObject_GetAttrString(cls, "__reduce__"); - Py_DECREF(cls); + + cls = (PyObject *) Py_TYPE(self); + clsreduce = PyObject_GetAttr(cls, str_reduce); if (clsreduce == NULL) { Py_DECREF(reduce); return NULL; } - objreduce = PyDict_GetItemString(PyBaseObject_Type.tp_dict, - "__reduce__"); override = (clsreduce != objreduce); Py_DECREF(clsreduce); if (override) { -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 23:44:42 2011 From: python-checkins at python.org (antoine.pitrou) Date: Fri, 11 Mar 2011 23:44:42 +0100 Subject: [Python-checkins] (3.1): Issue #11403: add some MSVC-generated files to .hgignore Message-ID: http://hg.python.org/cpython/rev/f040a34102de changeset: 68384:f040a34102de branch: 3.1 parent: 68378:ed1f7b3f2ff3 user: Antoine Pitrou date: Fri Mar 11 23:42:49 2011 +0100 summary: Issue #11403: add some MSVC-generated files to .hgignore files: .hgignore diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -60,6 +60,9 @@ *.rej *~ Lib/lib2to3/*.pickle +PC/python_nt*.h +PC/pythonnt_rc*.h +PC/*.obj PCbuild/*.exe PCbuild/*.dll PCbuild/*.pdb -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 23:44:43 2011 From: python-checkins at python.org (antoine.pitrou) Date: Fri, 11 Mar 2011 23:44:43 +0100 Subject: [Python-checkins] (merge 3.1 -> 3.2): Merge #11403 Message-ID: http://hg.python.org/cpython/rev/b2a6d1a5e2cf changeset: 68385:b2a6d1a5e2cf branch: 3.2 parent: 68381:353032fd38e2 parent: 68384:f040a34102de user: Antoine Pitrou date: Fri Mar 11 23:44:04 2011 +0100 summary: Merge #11403 files: .hgignore diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -50,6 +50,9 @@ *~ Lib/lib2to3/*.pickle Lib/test/data/* +PC/python_nt*.h +PC/pythonnt_rc*.h +PC/*.obj PCbuild/*.exe PCbuild/*.dll PCbuild/*.pdb -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 23:44:44 2011 From: python-checkins at python.org (antoine.pitrou) Date: Fri, 11 Mar 2011 23:44:44 +0100 Subject: [Python-checkins] (merge 3.2 -> default): Merge #11403 Message-ID: http://hg.python.org/cpython/rev/8c9fa86a613e changeset: 68386:8c9fa86a613e parent: 68383:ff0220c9d213 parent: 68385:b2a6d1a5e2cf user: Antoine Pitrou date: Fri Mar 11 23:44:23 2011 +0100 summary: Merge #11403 files: diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -50,6 +50,9 @@ *~ Lib/lib2to3/*.pickle Lib/test/data/* +PC/python_nt*.h +PC/pythonnt_rc*.h +PC/*.obj PCbuild/*.exe PCbuild/*.dll PCbuild/*.pdb -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 23:46:28 2011 From: python-checkins at python.org (brett.cannon) Date: Fri, 11 Mar 2011 23:46:28 +0100 Subject: [Python-checkins] Remove a now unneeded tweak to test_zipimport_support in order to not Message-ID: http://hg.python.org/cpython/rev/4daad4adaf46 changeset: 68387:4daad4adaf46 parent: 68383:ff0220c9d213 user: Brett Cannon date: Fri Mar 11 17:44:43 2011 -0500 summary: Remove a now unneeded tweak to test_zipimport_support in order to not fail under tracing. files: Lib/test/test_zipimport_support.py diff --git a/Lib/test/test_zipimport_support.py b/Lib/test/test_zipimport_support.py --- a/Lib/test/test_zipimport_support.py +++ b/Lib/test/test_zipimport_support.py @@ -175,11 +175,6 @@ test_zipped_doctest.test_testfile, test_zipped_doctest.test_unittest_reportflags, ] - # These tests are skipped when a trace funciton is set - can_fail_due_to_tracing = [ - test_zipped_doctest.test_pdb_set_trace, - test_zipped_doctest.test_pdb_set_trace_nested, - ] for obj in known_good_tests: _run_object_doctest(obj, test_zipped_doctest) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 23:46:29 2011 From: python-checkins at python.org (brett.cannon) Date: Fri, 11 Mar 2011 23:46:29 +0100 Subject: [Python-checkins] (merge default -> default): merge Message-ID: http://hg.python.org/cpython/rev/20c91fcc2ca6 changeset: 68388:20c91fcc2ca6 parent: 68387:4daad4adaf46 parent: 68386:8c9fa86a613e user: Brett Cannon date: Fri Mar 11 17:46:21 2011 -0500 summary: merge files: diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -50,6 +50,9 @@ *~ Lib/lib2to3/*.pickle Lib/test/data/* +PC/python_nt*.h +PC/pythonnt_rc*.h +PC/*.obj PCbuild/*.exe PCbuild/*.dll PCbuild/*.pdb -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 11 23:46:30 2011 From: python-checkins at python.org (antoine.pitrou) Date: Fri, 11 Mar 2011 23:46:30 +0100 Subject: [Python-checkins] (2.7): Issue #11403: add some MSVC-generated files to .hgignore Message-ID: http://hg.python.org/cpython/rev/350b956b3600 changeset: 68389:350b956b3600 branch: 2.7 parent: 68363:515a81ca81ce user: Antoine Pitrou date: Fri Mar 11 23:46:26 2011 +0100 summary: Issue #11403: add some MSVC-generated files to .hgignore files: .hgignore diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -48,6 +48,9 @@ *~ Lib/lib2to3/*.pickle Lib/test/data/* +PC/python_nt*.h +PC/pythonnt_rc*.h +PC/*.obj PCbuild/*.exe PCbuild/*.dll PCbuild/*.pdb -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 00:03:23 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 12 Mar 2011 00:03:23 +0100 Subject: [Python-checkins] devguide: Suggest using mpatch in the FAQ Message-ID: http://hg.python.org/devguide/rev/78c91171ad45 changeset: 384:78c91171ad45 user: Antoine Pitrou date: Fri Mar 11 23:59:56 2011 +0100 summary: Suggest using mpatch in the FAQ files: faq.rst diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -292,15 +292,17 @@ If you want to try out or review a patch generated using Mercurial, do:: - hg import --no-commit somework.patch + patch -p1 < somework.patch This will apply the changes in your working copy without committing them. If the patch was not created by Mercurial (for example, a patch created by Subversion and thus lacking any ``a``/``b`` directory prefixes in the patch), -add ``-p0`` to the above command. +replace ``-p0`` with ``-p1``. -You can also use the ``patch`` program, but be aware that it does not -understand the `extended diff format`_ used by Mercurial. +If the patch contains renames, deletions or copies, and you intend committing +it after your review, you might prefer using:: + + hg import --no-commit somework.patch If you want to work on the patch using mq_ (Mercurial Queues), type instead:: @@ -321,6 +323,29 @@ .. _mq: http://mercurial.selenic.com/wiki/MqExtension +.. _merge-patch: + +How do I solve conflicts when applying a patch fails? +----------------------------------------------------- + +The standard ``patch`` command, as well as ``hg import``, will produce +unhelpful ``*.rej`` files when it fails applying parts of a patch. +We suggest you try the mpatch_ utility, which can help resolve a number of +common causes of patch rejects. + +To make use of ``mpatch`` transparent, you can define a shell alias in one +of your startup files. For example, if you want it to open the ``kdiff3`` +merge program to fix failing patch hunks:: + + alias patch='mpatch --merge=kdiff3' + +or if you want it to automatically solve conflicts by using heuristics:: + + alias patch='mpatch --auto --no-merge' + +.. _mpatch: http://oss.oracle.com/~mason/mpatch/ + + How do I add a file or directory to the repository? ------------------------------------------------------------------------------- -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sat Mar 12 00:03:27 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 12 Mar 2011 00:03:27 +0100 Subject: [Python-checkins] devguide: Mention mpatch in the committing guide as well Message-ID: http://hg.python.org/devguide/rev/fecc74afa435 changeset: 385:fecc74afa435 user: Antoine Pitrou date: Sat Mar 12 00:03:16 2011 +0100 summary: Mention mpatch in the committing guide as well files: committing.rst diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -200,6 +200,9 @@ hg transplant a7df1a869e4a # Compile; run the test suite +If you often get failures porting patches this way, you should consider +using the :ref:`mpatch ` utility. + .. warning:: transplant always commits automatically. This breaks the -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sat Mar 12 00:12:55 2011 From: python-checkins at python.org (local-hg) Date: Sat, 12 Mar 2011 00:12:55 +0100 Subject: [Python-checkins] hooks: Always display cpython Message-ID: http://hg.python.org/hooks/rev/0a9ae9bf0278 changeset: 61:0a9ae9bf0278 user: Antoine Pitrou date: Sat Mar 12 00:12:55 2011 +0100 summary: Always display cpython files: mail.py diff --git a/mail.py b/mail.py --- a/mail.py +++ b/mail.py @@ -70,9 +70,7 @@ print 'no email address configured' return False - prefixes = [] - if path != 'cpython': - prefixes.append(path) + prefixes = [path] if len(parents) == 2: b1, b2, b = parents[0].branch(), parents[1].branch(), ctx.branch() -- Repository URL: http://hg.python.org/hooks From eric at trueblade.com Sat Mar 12 00:14:46 2011 From: eric at trueblade.com (Eric Smith) Date: Fri, 11 Mar 2011 18:14:46 -0500 Subject: [Python-checkins] devguide: Suggest using mpatch in the FAQ In-Reply-To: References: Message-ID: <4D7AACE6.6060708@trueblade.com> On 03/11/2011 06:03 PM, antoine.pitrou wrote: > If you want to try out or review a patch generated using Mercurial, do:: > > - hg import --no-commit somework.patch > + patch -p1< somework.patch > > This will apply the changes in your working copy without committing them. > If the patch was not created by Mercurial (for example, a patch created by > Subversion and thus lacking any ``a``/``b`` directory prefixes in the patch), > -add ``-p0`` to the above command. > +replace ``-p0`` with ``-p1``. Do you have this backwards? There is no -p0, it's already -p1. Eric. From python-checkins at python.org Sat Mar 12 00:20:48 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 12 Mar 2011 00:20:48 +0100 Subject: [Python-checkins] devguide: p0 and p1 were swapped Message-ID: http://hg.python.org/devguide/rev/693f991fa111 changeset: 386:693f991fa111 user: Antoine Pitrou date: Sat Mar 12 00:20:45 2011 +0100 summary: p0 and p1 were swapped files: faq.rst diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -297,7 +297,7 @@ This will apply the changes in your working copy without committing them. If the patch was not created by Mercurial (for example, a patch created by Subversion and thus lacking any ``a``/``b`` directory prefixes in the patch), -replace ``-p0`` with ``-p1``. +replace ``-p1`` with ``-p0``. If the patch contains renames, deletions or copies, and you intend committing it after your review, you might prefer using:: -- Repository URL: http://hg.python.org/devguide From solipsis at pitrou.net Sat Mar 12 00:20:58 2011 From: solipsis at pitrou.net (Antoine Pitrou) Date: Sat, 12 Mar 2011 00:20:58 +0100 Subject: [Python-checkins] devguide: Suggest using mpatch in the FAQ References: <4D7AACE6.6060708@trueblade.com> Message-ID: <20110312002058.277fc10c@pitrou.net> On Fri, 11 Mar 2011 18:14:46 -0500 Eric Smith wrote: > On 03/11/2011 06:03 PM, antoine.pitrou wrote: > > If you want to try out or review a patch generated using Mercurial, do:: > > > > - hg import --no-commit somework.patch > > + patch -p1< somework.patch > > > > This will apply the changes in your working copy without committing them. > > If the patch was not created by Mercurial (for example, a patch created by > > Subversion and thus lacking any ``a``/``b`` directory prefixes in the patch), > > -add ``-p0`` to the above command. > > +replace ``-p0`` with ``-p1``. > > Do you have this backwards? There is no -p0, it's already -p1. Right, thank you. From python-checkins at python.org Sat Mar 12 03:49:04 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sat, 12 Mar 2011 03:49:04 +0100 Subject: [Python-checkins] cpython: Fix issue11283 - Clarifying a re pattern in the re module docs for conditional Message-ID: http://hg.python.org/cpython/rev/06cca90ff105 changeset: 68390:06cca90ff105 parent: 68388:20c91fcc2ca6 user: orsenthil at gmail.com date: Sat Mar 12 10:46:25 2011 +0800 summary: Fix issue11283 - Clarifying a re pattern in the re module docs for conditional regex files: Doc/library/re.rst diff --git a/Doc/library/re.rst b/Doc/library/re.rst --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -295,11 +295,12 @@ match at the beginning of the string being searched. ``(?(id/name)yes-pattern|no-pattern)`` - Will try to match with ``yes-pattern`` if the group with given *id* or *name* - exists, and with ``no-pattern`` if it doesn't. ``no-pattern`` is optional and - can be omitted. For example, ``(<)?(\w+@\w+(?:\.\w+)+)(?(1)>)`` is a poor email - matching pattern, which will match with ``''`` as well as - ``'user at host.com'``, but not with ``'|$)`` is a poor email matching pattern, which + will match with ``''`` as well as ``'user at host.com'``, but + not with ``''`` . The special sequences consist of ``'\'`` and a character from the list below. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 04:44:22 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sat, 12 Mar 2011 04:44:22 +0100 Subject: [Python-checkins] cpython (3.1): Fix issue11283 - Clarifying a re pattern in the re module docs for conditional Message-ID: http://hg.python.org/cpython/rev/d676601fee6f changeset: 68391:d676601fee6f branch: 3.1 parent: 68384:f040a34102de user: Senthil Kumaran date: Sat Mar 12 11:40:25 2011 +0800 summary: Fix issue11283 - Clarifying a re pattern in the re module docs for conditional regex files: Doc/library/re.rst diff --git a/Doc/library/re.rst b/Doc/library/re.rst --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -295,11 +295,12 @@ match at the beginning of the string being searched. ``(?(id/name)yes-pattern|no-pattern)`` - Will try to match with ``yes-pattern`` if the group with given *id* or *name* - exists, and with ``no-pattern`` if it doesn't. ``no-pattern`` is optional and - can be omitted. For example, ``(<)?(\w+@\w+(?:\.\w+)+)(?(1)>)`` is a poor email - matching pattern, which will match with ``''`` as well as - ``'user at host.com'``, but not with ``'|$)`` is a poor email matching pattern, which + will match with ``''`` as well as ``'user at host.com'``, but + not with ``''`` . The special sequences consist of ``'\'`` and a character from the list below. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 04:44:23 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sat, 12 Mar 2011 04:44:23 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): forward merge from 3.1 Message-ID: http://hg.python.org/cpython/rev/ba2a1064b3dd changeset: 68392:ba2a1064b3dd branch: 3.2 parent: 68385:b2a6d1a5e2cf parent: 68391:d676601fee6f user: Senthil Kumaran date: Sat Mar 12 11:42:33 2011 +0800 summary: forward merge from 3.1 files: Doc/library/re.rst diff --git a/Doc/library/re.rst b/Doc/library/re.rst --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -295,11 +295,12 @@ match at the beginning of the string being searched. ``(?(id/name)yes-pattern|no-pattern)`` - Will try to match with ``yes-pattern`` if the group with given *id* or *name* - exists, and with ``no-pattern`` if it doesn't. ``no-pattern`` is optional and - can be omitted. For example, ``(<)?(\w+@\w+(?:\.\w+)+)(?(1)>)`` is a poor email - matching pattern, which will match with ``''`` as well as - ``'user at host.com'``, but not with ``'|$)`` is a poor email matching pattern, which + will match with ``''`` as well as ``'user at host.com'``, but + not with ``''`` . The special sequences consist of ``'\'`` and a character from the list below. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 04:44:23 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sat, 12 Mar 2011 04:44:23 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Recording the merge. Message-ID: http://hg.python.org/cpython/rev/3680692b54eb changeset: 68393:3680692b54eb parent: 68390:06cca90ff105 parent: 68392:ba2a1064b3dd user: Senthil Kumaran date: Sat Mar 12 11:44:09 2011 +0800 summary: Recording the merge. files: Doc/library/re.rst -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Sat Mar 12 05:13:43 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Sat, 12 Mar 2011 05:13:43 +0100 Subject: [Python-checkins] Daily reference leaks (20c91fcc2ca6): sum=0 Message-ID: results for 20c91fcc2ca6 on branch "default" -------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/refloggdXpCf', '-x'] From python-checkins at python.org Sat Mar 12 11:22:13 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 12 Mar 2011 11:22:13 +0100 Subject: [Python-checkins] devguide: Add a FAQ entry about the share extension Message-ID: http://hg.python.org/devguide/rev/e6b3a7525aa0 changeset: 387:e6b3a7525aa0 user: Antoine Pitrou date: Sat Mar 12 11:22:09 2011 +0100 summary: Add a FAQ entry about the share extension files: faq.rst diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -187,6 +187,17 @@ changes, ``hg update`` will update to the head of the *current branch*. +How do I avoid repeated pulls and pushes between my local repositories? +----------------------------------------------------------------------- + +The "`share extension`_" allows you to share a single local repository +between several working copies: each commit you make in a working copy will +be immediately available in other working copies, even though they might +be checked out on different branches. + +.. _share extension: http://mercurial.selenic.com/wiki/ShareExtension + + .. _hg-paths: How do I link my local repository to a particular remote repository? -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sat Mar 12 12:05:52 2011 From: python-checkins at python.org (mark.dickinson) Date: Sat, 12 Mar 2011 12:05:52 +0100 Subject: [Python-checkins] cpython (2.7): Issue 11131: Fix sign of zero result on plus and minus operations in Message-ID: http://hg.python.org/cpython/rev/d5fe8b33f711 changeset: 68394:d5fe8b33f711 branch: 2.7 parent: 68389:350b956b3600 user: Mark Dickinson date: Sat Mar 12 11:05:32 2011 +0000 summary: Issue 11131: Fix sign of zero result on plus and minus operations in ROUND_FLOOR rounding mode. files: Lib/decimal.py Lib/test/decimaltestdata/extra.decTest Misc/NEWS diff --git a/Lib/decimal.py b/Lib/decimal.py --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -1068,14 +1068,16 @@ if ans: return ans - if not self: - # -Decimal('0') is Decimal('0'), not Decimal('-0') + if context is None: + context = getcontext() + + if not self and context.rounding != ROUND_FLOOR: + # -Decimal('0') is Decimal('0'), not Decimal('-0'), except + # in ROUND_FLOOR rounding mode. ans = self.copy_abs() else: ans = self.copy_negate() - if context is None: - context = getcontext() return ans._fix(context) def __pos__(self, context=None): @@ -1088,14 +1090,15 @@ if ans: return ans - if not self: - # + (-0) = 0 + if context is None: + context = getcontext() + + if not self and context.rounding != ROUND_FLOOR: + # + (-0) = 0, except in ROUND_FLOOR rounding mode. ans = self.copy_abs() else: ans = Decimal(self) - if context is None: - context = getcontext() return ans._fix(context) def __abs__(self, round=True, context=None): diff --git a/Lib/test/decimaltestdata/extra.decTest b/Lib/test/decimaltestdata/extra.decTest --- a/Lib/test/decimaltestdata/extra.decTest +++ b/Lib/test/decimaltestdata/extra.decTest @@ -2745,3 +2745,73 @@ pwmx438 power 18 1728 1729 -> 1 pwmx439 power 19 1728 1729 -> 456 pwmx440 power 20 1728 1729 -> 1 + +-- plus and minus zero in various rounding modes (see issue 11131) +extended: 1 +precision: 9 +maxexponent: 384 +minexponent: -383 + +rounding: half_even +plux1000 plus 0.0 -> 0.0 +plux1001 plus -0.0 -> 0.0 +minx1000 minus 0.0 -> 0.0 +minx1001 minus -0.0 -> 0.0 +absx1000 abs 0.0 -> 0.0 +absx1001 abs -0.0 -> 0.0 + +rounding: half_up +plux1010 plus 0.0 -> 0.0 +minx1010 minus 0.0 -> 0.0 +plux1011 plus -0.0 -> 0.0 +minx1011 minus -0.0 -> 0.0 +absx1010 abs 0.0 -> 0.0 +absx1011 abs -0.0 -> 0.0 + +rounding: ceiling +plux1020 plus 0.0 -> 0.0 +minx1020 minus 0.0 -> 0.0 +plux1021 plus -0.0 -> 0.0 +minx1021 minus -0.0 -> 0.0 +absx1020 abs 0.0 -> 0.0 +absx1021 abs -0.0 -> 0.0 + +rounding: floor +plux1030 plus 0.0 -> 0.0 +minx1030 minus 0.0 -> -0.0 +plux1031 plus -0.0 -> -0.0 +minx1031 minus -0.0 -> 0.0 +absx1030 abs 0.0 -> 0.0 +absx1031 abs -0.0 -> 0.0 + +rounding: down +plux1040 plus 0.0 -> 0.0 +minx1040 minus 0.0 -> 0.0 +plux1041 plus -0.0 -> 0.0 +minx1041 minus -0.0 -> 0.0 +absx1040 abs 0.0 -> 0.0 +absx1041 abs -0.0 -> 0.0 + +rounding: up +plux1050 plus 0.0 -> 0.0 +minx1050 minus 0.0 -> 0.0 +plux1051 plus -0.0 -> 0.0 +minx1051 minus -0.0 -> 0.0 +absx1050 abs 0.0 -> 0.0 +absx1051 abs -0.0 -> 0.0 + +rounding: half_down +plux1060 plus 0.0 -> 0.0 +minx1060 minus 0.0 -> 0.0 +plux1061 plus -0.0 -> 0.0 +minx1061 minus -0.0 -> 0.0 +absx1060 abs 0.0 -> 0.0 +absx1061 abs -0.0 -> 0.0 + +rounding: 05up +plux1070 plus 0.0 -> 0.0 +minx1070 minus 0.0 -> 0.0 +plux1071 plus -0.0 -> 0.0 +minx1071 minus -0.0 -> 0.0 +absx1070 abs 0.0 -> 0.0 +absx1071 abs -0.0 -> 0.0 diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -43,6 +43,9 @@ Library ------- +- Issue #11131: Fix sign of zero in plus and minus operations when + the context rounding mode is ROUND_FLOOR. + - Issue #5622: Fix curses.wrapper to raise correct exception if curses initialization fails. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 12:19:27 2011 From: python-checkins at python.org (mark.dickinson) Date: Sat, 12 Mar 2011 12:19:27 +0100 Subject: [Python-checkins] cpython (3.1): Issue 11131: Fix sign of zero result on decimal.Decimal plus and minus Message-ID: http://hg.python.org/cpython/rev/1c4be28cda5b changeset: 68395:1c4be28cda5b branch: 3.1 parent: 68391:d676601fee6f user: Mark Dickinson date: Sat Mar 12 11:12:52 2011 +0000 summary: Issue 11131: Fix sign of zero result on decimal.Decimal plus and minus operations in ROUND_FLOOR rounding mode. files: Lib/decimal.py Lib/test/decimaltestdata/extra.decTest Misc/NEWS diff --git a/Lib/decimal.py b/Lib/decimal.py --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -1040,14 +1040,16 @@ if ans: return ans - if not self: - # -Decimal('0') is Decimal('0'), not Decimal('-0') + if context is None: + context = getcontext() + + if not self and context.rounding != ROUND_FLOOR: + # -Decimal('0') is Decimal('0'), not Decimal('-0'), except + # in ROUND_FLOOR rounding mode. ans = self.copy_abs() else: ans = self.copy_negate() - if context is None: - context = getcontext() return ans._fix(context) def __pos__(self, context=None): @@ -1060,14 +1062,15 @@ if ans: return ans - if not self: - # + (-0) = 0 + if context is None: + context = getcontext() + + if not self and context.rounding != ROUND_FLOOR: + # + (-0) = 0, except in ROUND_FLOOR rounding mode. ans = self.copy_abs() else: ans = Decimal(self) - if context is None: - context = getcontext() return ans._fix(context) def __abs__(self, round=True, context=None): diff --git a/Lib/test/decimaltestdata/extra.decTest b/Lib/test/decimaltestdata/extra.decTest --- a/Lib/test/decimaltestdata/extra.decTest +++ b/Lib/test/decimaltestdata/extra.decTest @@ -2745,3 +2745,73 @@ pwmx438 power 18 1728 1729 -> 1 pwmx439 power 19 1728 1729 -> 456 pwmx440 power 20 1728 1729 -> 1 + +-- plus and minus zero in various rounding modes (see issue 11131) +extended: 1 +precision: 9 +maxexponent: 384 +minexponent: -383 + +rounding: half_even +plux1000 plus 0.0 -> 0.0 +plux1001 plus -0.0 -> 0.0 +minx1000 minus 0.0 -> 0.0 +minx1001 minus -0.0 -> 0.0 +absx1000 abs 0.0 -> 0.0 +absx1001 abs -0.0 -> 0.0 + +rounding: half_up +plux1010 plus 0.0 -> 0.0 +minx1010 minus 0.0 -> 0.0 +plux1011 plus -0.0 -> 0.0 +minx1011 minus -0.0 -> 0.0 +absx1010 abs 0.0 -> 0.0 +absx1011 abs -0.0 -> 0.0 + +rounding: ceiling +plux1020 plus 0.0 -> 0.0 +minx1020 minus 0.0 -> 0.0 +plux1021 plus -0.0 -> 0.0 +minx1021 minus -0.0 -> 0.0 +absx1020 abs 0.0 -> 0.0 +absx1021 abs -0.0 -> 0.0 + +rounding: floor +plux1030 plus 0.0 -> 0.0 +minx1030 minus 0.0 -> -0.0 +plux1031 plus -0.0 -> -0.0 +minx1031 minus -0.0 -> 0.0 +absx1030 abs 0.0 -> 0.0 +absx1031 abs -0.0 -> 0.0 + +rounding: down +plux1040 plus 0.0 -> 0.0 +minx1040 minus 0.0 -> 0.0 +plux1041 plus -0.0 -> 0.0 +minx1041 minus -0.0 -> 0.0 +absx1040 abs 0.0 -> 0.0 +absx1041 abs -0.0 -> 0.0 + +rounding: up +plux1050 plus 0.0 -> 0.0 +minx1050 minus 0.0 -> 0.0 +plux1051 plus -0.0 -> 0.0 +minx1051 minus -0.0 -> 0.0 +absx1050 abs 0.0 -> 0.0 +absx1051 abs -0.0 -> 0.0 + +rounding: half_down +plux1060 plus 0.0 -> 0.0 +minx1060 minus 0.0 -> 0.0 +plux1061 plus -0.0 -> 0.0 +minx1061 minus -0.0 -> 0.0 +absx1060 abs 0.0 -> 0.0 +absx1061 abs -0.0 -> 0.0 + +rounding: 05up +plux1070 plus 0.0 -> 0.0 +minx1070 minus 0.0 -> 0.0 +plux1071 plus -0.0 -> 0.0 +minx1071 minus -0.0 -> 0.0 +absx1070 abs 0.0 -> 0.0 +absx1071 abs -0.0 -> 0.0 diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,9 @@ Library ------- +- Issue #11131: Fix sign of zero in decimal.Decimal plus and minus + operations when the rounding mode is ROUND_FLOOR. + - Issue #5622: Fix curses.wrapper to raise correct exception if curses initialization fails. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 12:19:30 2011 From: python-checkins at python.org (mark.dickinson) Date: Sat, 12 Mar 2011 12:19:30 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge #11131 Message-ID: http://hg.python.org/cpython/rev/426057570bee changeset: 68396:426057570bee branch: 3.2 parent: 68392:ba2a1064b3dd parent: 68395:1c4be28cda5b user: Mark Dickinson date: Sat Mar 12 11:17:26 2011 +0000 summary: Merge #11131 files: Lib/decimal.py Misc/NEWS diff --git a/Lib/decimal.py b/Lib/decimal.py --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -1045,14 +1045,16 @@ if ans: return ans - if not self: - # -Decimal('0') is Decimal('0'), not Decimal('-0') + if context is None: + context = getcontext() + + if not self and context.rounding != ROUND_FLOOR: + # -Decimal('0') is Decimal('0'), not Decimal('-0'), except + # in ROUND_FLOOR rounding mode. ans = self.copy_abs() else: ans = self.copy_negate() - if context is None: - context = getcontext() return ans._fix(context) def __pos__(self, context=None): @@ -1065,14 +1067,15 @@ if ans: return ans - if not self: - # + (-0) = 0 + if context is None: + context = getcontext() + + if not self and context.rounding != ROUND_FLOOR: + # + (-0) = 0, except in ROUND_FLOOR rounding mode. ans = self.copy_abs() else: ans = Decimal(self) - if context is None: - context = getcontext() return ans._fix(context) def __abs__(self, round=True, context=None): diff --git a/Lib/test/decimaltestdata/extra.decTest b/Lib/test/decimaltestdata/extra.decTest --- a/Lib/test/decimaltestdata/extra.decTest +++ b/Lib/test/decimaltestdata/extra.decTest @@ -2745,3 +2745,73 @@ pwmx438 power 18 1728 1729 -> 1 pwmx439 power 19 1728 1729 -> 456 pwmx440 power 20 1728 1729 -> 1 + +-- plus and minus zero in various rounding modes (see issue 11131) +extended: 1 +precision: 9 +maxexponent: 384 +minexponent: -383 + +rounding: half_even +plux1000 plus 0.0 -> 0.0 +plux1001 plus -0.0 -> 0.0 +minx1000 minus 0.0 -> 0.0 +minx1001 minus -0.0 -> 0.0 +absx1000 abs 0.0 -> 0.0 +absx1001 abs -0.0 -> 0.0 + +rounding: half_up +plux1010 plus 0.0 -> 0.0 +minx1010 minus 0.0 -> 0.0 +plux1011 plus -0.0 -> 0.0 +minx1011 minus -0.0 -> 0.0 +absx1010 abs 0.0 -> 0.0 +absx1011 abs -0.0 -> 0.0 + +rounding: ceiling +plux1020 plus 0.0 -> 0.0 +minx1020 minus 0.0 -> 0.0 +plux1021 plus -0.0 -> 0.0 +minx1021 minus -0.0 -> 0.0 +absx1020 abs 0.0 -> 0.0 +absx1021 abs -0.0 -> 0.0 + +rounding: floor +plux1030 plus 0.0 -> 0.0 +minx1030 minus 0.0 -> -0.0 +plux1031 plus -0.0 -> -0.0 +minx1031 minus -0.0 -> 0.0 +absx1030 abs 0.0 -> 0.0 +absx1031 abs -0.0 -> 0.0 + +rounding: down +plux1040 plus 0.0 -> 0.0 +minx1040 minus 0.0 -> 0.0 +plux1041 plus -0.0 -> 0.0 +minx1041 minus -0.0 -> 0.0 +absx1040 abs 0.0 -> 0.0 +absx1041 abs -0.0 -> 0.0 + +rounding: up +plux1050 plus 0.0 -> 0.0 +minx1050 minus 0.0 -> 0.0 +plux1051 plus -0.0 -> 0.0 +minx1051 minus -0.0 -> 0.0 +absx1050 abs 0.0 -> 0.0 +absx1051 abs -0.0 -> 0.0 + +rounding: half_down +plux1060 plus 0.0 -> 0.0 +minx1060 minus 0.0 -> 0.0 +plux1061 plus -0.0 -> 0.0 +minx1061 minus -0.0 -> 0.0 +absx1060 abs 0.0 -> 0.0 +absx1061 abs -0.0 -> 0.0 + +rounding: 05up +plux1070 plus 0.0 -> 0.0 +minx1070 minus 0.0 -> 0.0 +plux1071 plus -0.0 -> 0.0 +minx1071 minus -0.0 -> 0.0 +absx1070 abs 0.0 -> 0.0 +absx1071 abs -0.0 -> 0.0 diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -34,6 +34,9 @@ Library ------- +- Issue #11131: Fix sign of zero in decimal.Decimal plus and minus + operations when the rounding mode is ROUND_FLOOR. + - Issue #5622: Fix curses.wrapper to raise correct exception if curses initialization fails. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 12:19:31 2011 From: python-checkins at python.org (mark.dickinson) Date: Sat, 12 Mar 2011 12:19:31 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #11131 Message-ID: http://hg.python.org/cpython/rev/af0dcd9df0c0 changeset: 68397:af0dcd9df0c0 parent: 68393:3680692b54eb parent: 68396:426057570bee user: Mark Dickinson date: Sat Mar 12 11:18:46 2011 +0000 summary: Merge #11131 files: Misc/NEWS diff --git a/Lib/decimal.py b/Lib/decimal.py --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -1045,14 +1045,16 @@ if ans: return ans - if not self: - # -Decimal('0') is Decimal('0'), not Decimal('-0') + if context is None: + context = getcontext() + + if not self and context.rounding != ROUND_FLOOR: + # -Decimal('0') is Decimal('0'), not Decimal('-0'), except + # in ROUND_FLOOR rounding mode. ans = self.copy_abs() else: ans = self.copy_negate() - if context is None: - context = getcontext() return ans._fix(context) def __pos__(self, context=None): @@ -1065,14 +1067,15 @@ if ans: return ans - if not self: - # + (-0) = 0 + if context is None: + context = getcontext() + + if not self and context.rounding != ROUND_FLOOR: + # + (-0) = 0, except in ROUND_FLOOR rounding mode. ans = self.copy_abs() else: ans = Decimal(self) - if context is None: - context = getcontext() return ans._fix(context) def __abs__(self, round=True, context=None): diff --git a/Lib/test/decimaltestdata/extra.decTest b/Lib/test/decimaltestdata/extra.decTest --- a/Lib/test/decimaltestdata/extra.decTest +++ b/Lib/test/decimaltestdata/extra.decTest @@ -2745,3 +2745,73 @@ pwmx438 power 18 1728 1729 -> 1 pwmx439 power 19 1728 1729 -> 456 pwmx440 power 20 1728 1729 -> 1 + +-- plus and minus zero in various rounding modes (see issue 11131) +extended: 1 +precision: 9 +maxexponent: 384 +minexponent: -383 + +rounding: half_even +plux1000 plus 0.0 -> 0.0 +plux1001 plus -0.0 -> 0.0 +minx1000 minus 0.0 -> 0.0 +minx1001 minus -0.0 -> 0.0 +absx1000 abs 0.0 -> 0.0 +absx1001 abs -0.0 -> 0.0 + +rounding: half_up +plux1010 plus 0.0 -> 0.0 +minx1010 minus 0.0 -> 0.0 +plux1011 plus -0.0 -> 0.0 +minx1011 minus -0.0 -> 0.0 +absx1010 abs 0.0 -> 0.0 +absx1011 abs -0.0 -> 0.0 + +rounding: ceiling +plux1020 plus 0.0 -> 0.0 +minx1020 minus 0.0 -> 0.0 +plux1021 plus -0.0 -> 0.0 +minx1021 minus -0.0 -> 0.0 +absx1020 abs 0.0 -> 0.0 +absx1021 abs -0.0 -> 0.0 + +rounding: floor +plux1030 plus 0.0 -> 0.0 +minx1030 minus 0.0 -> -0.0 +plux1031 plus -0.0 -> -0.0 +minx1031 minus -0.0 -> 0.0 +absx1030 abs 0.0 -> 0.0 +absx1031 abs -0.0 -> 0.0 + +rounding: down +plux1040 plus 0.0 -> 0.0 +minx1040 minus 0.0 -> 0.0 +plux1041 plus -0.0 -> 0.0 +minx1041 minus -0.0 -> 0.0 +absx1040 abs 0.0 -> 0.0 +absx1041 abs -0.0 -> 0.0 + +rounding: up +plux1050 plus 0.0 -> 0.0 +minx1050 minus 0.0 -> 0.0 +plux1051 plus -0.0 -> 0.0 +minx1051 minus -0.0 -> 0.0 +absx1050 abs 0.0 -> 0.0 +absx1051 abs -0.0 -> 0.0 + +rounding: half_down +plux1060 plus 0.0 -> 0.0 +minx1060 minus 0.0 -> 0.0 +plux1061 plus -0.0 -> 0.0 +minx1061 minus -0.0 -> 0.0 +absx1060 abs 0.0 -> 0.0 +absx1061 abs -0.0 -> 0.0 + +rounding: 05up +plux1070 plus 0.0 -> 0.0 +minx1070 minus 0.0 -> 0.0 +plux1071 plus -0.0 -> 0.0 +minx1071 minus -0.0 -> 0.0 +absx1070 abs 0.0 -> 0.0 +absx1071 abs -0.0 -> 0.0 diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -62,6 +62,9 @@ Library ------- +- Issue #11131: Fix sign of zero in decimal.Decimal plus and minus + operations when the rounding mode is ROUND_FLOOR. + - Issue #9935: Speed up pickling of instances of user-defined classes. - Issue #5622: Fix curses.wrapper to raise correct exception if curses -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 15:56:29 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 12 Mar 2011 15:56:29 +0100 Subject: [Python-checkins] cpython: Fix example in atexit doc: Both open and read could raise the IOError (#10461 Message-ID: http://hg.python.org/cpython/rev/cebaf1bdaf78 changeset: 68398:cebaf1bdaf78 user: ?ric Araujo date: Sat Mar 12 15:56:09 2011 +0100 summary: Fix example in atexit doc: Both open and read could raise the IOError (#10461 follow-up). Thanks to SilenGhost for catching this. files: Doc/library/atexit.rst diff --git a/Doc/library/atexit.rst b/Doc/library/atexit.rst --- a/Doc/library/atexit.rst +++ b/Doc/library/atexit.rst @@ -61,14 +61,11 @@ automatically when the program terminates without relying on the application making an explicit call into this module at termination. :: - infile = open("/tmp/counter") try: - _count = int(infile.read()) + with open("/tmp/counter") as infile: + _count = int(infile.read()) except IOError: _count = 0 - finally: - infile.close() - def incrcounter(n): global _count -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 16:09:05 2011 From: python-checkins at python.org (eric.smith) Date: Sat, 12 Mar 2011 16:09:05 +0100 Subject: [Python-checkins] cpython: Issue 9856: Change object.__format__ with a non-empty format string from a Message-ID: http://hg.python.org/cpython/rev/ee259a4f3eee changeset: 68399:ee259a4f3eee user: Eric V. Smith date: Sat Mar 12 10:08:48 2011 -0500 summary: Issue 9856: Change object.__format__ with a non-empty format string from a PendingDeprecationWarning to a DeprecationWarning. files: Lib/test/test_builtin.py Lib/test/test_unicode.py Misc/NEWS Objects/typeobject.c diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py --- a/Lib/test/test_builtin.py +++ b/Lib/test/test_builtin.py @@ -1279,14 +1279,14 @@ # -------------------------------------------------------------------- # Issue #7994: object.__format__ with a non-empty format string is - # pending deprecated + # deprecated def test_deprecated_format_string(obj, fmt_str, should_raise_warning): with warnings.catch_warnings(record=True) as w: - warnings.simplefilter("always", PendingDeprecationWarning) + warnings.simplefilter("always", DeprecationWarning) format(obj, fmt_str) if should_raise_warning: self.assertEqual(len(w), 1) - self.assertIsInstance(w[0].message, PendingDeprecationWarning) + self.assertIsInstance(w[0].message, DeprecationWarning) self.assertIn('object.__format__ with a non-empty format ' 'string', str(w[0].message)) else: diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -614,7 +614,7 @@ self.assertEqual('{0!s}'.format(G('data')), 'string is data') msg = 'object.__format__ with a non-empty format string is deprecated' - with support.check_warnings((msg, PendingDeprecationWarning)): + with support.check_warnings((msg, DeprecationWarning)): self.assertEqual('{0:^10}'.format(E('data')), ' E(data) ') self.assertEqual('{0:^10s}'.format(E('data')), ' E(data) ') self.assertEqual('{0:>15s}'.format(G('data')), ' string is data') diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,10 @@ Core and Builtins ----------------- +- Issue #9856: Change object.__format__ with a non-empty format string + to be a DeprecationWarning. In 3.2 it was a PendingDeprecationWarning. + In 3.4 it will be a TypeError. + - Issue #11244: The peephole optimizer is now able to constant-fold arbitrarily complex expressions. This also fixes a 3.2 regression where operations involving negative numbers were not constant-folded. diff --git a/Objects/typeobject.c b/Objects/typeobject.c --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -3401,21 +3401,21 @@ self_as_str = PyObject_Str(self); if (self_as_str != NULL) { /* Issue 7994: If we're converting to a string, we - should reject format specifications */ + should reject format specifications */ if (PyUnicode_GET_SIZE(format_spec) > 0) { - if (PyErr_WarnEx(PyExc_PendingDeprecationWarning, - "object.__format__ with a non-empty format " - "string is deprecated", 1) < 0) { - goto done; - } - /* Eventually this will become an error: - PyErr_Format(PyExc_TypeError, - "non-empty format string passed to object.__format__"); - goto done; - */ - } - - result = PyObject_Format(self_as_str, format_spec); + if (PyErr_WarnEx(PyExc_DeprecationWarning, + "object.__format__ with a non-empty format " + "string is deprecated", 1) < 0) { + goto done; + } + /* Eventually this will become an error: + PyErr_Format(PyExc_TypeError, + "non-empty format string passed to object.__format__"); + goto done; + */ + } + + result = PyObject_Format(self_as_str, format_spec); } done: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 18:58:24 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sat, 12 Mar 2011 18:58:24 +0100 Subject: [Python-checkins] cpython (3.1): trunc -> math.trunc (closes #11475) Message-ID: http://hg.python.org/cpython/rev/7fd06773c3c2 changeset: 68400:7fd06773c3c2 branch: 3.1 parent: 68395:1c4be28cda5b user: Benjamin Peterson date: Sat Mar 12 11:58:15 2011 -0600 summary: trunc -> math.trunc (closes #11475) files: Doc/library/numbers.rst diff --git a/Doc/library/numbers.rst b/Doc/library/numbers.rst --- a/Doc/library/numbers.rst +++ b/Doc/library/numbers.rst @@ -45,7 +45,7 @@ To :class:`Complex`, :class:`Real` adds the operations that work on real numbers. - In short, those are: a conversion to :class:`float`, :func:`trunc`, + In short, those are: a conversion to :class:`float`, :func:`math.trunc`, :func:`round`, :func:`math.floor`, :func:`math.ceil`, :func:`divmod`, ``//``, ``%``, ``<``, ``<=``, ``>``, and ``>=``. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 18:58:26 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sat, 12 Mar 2011 18:58:26 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): merge 3.1 Message-ID: http://hg.python.org/cpython/rev/45d76bb9fbcd changeset: 68401:45d76bb9fbcd branch: 3.2 parent: 68396:426057570bee parent: 68400:7fd06773c3c2 user: Benjamin Peterson date: Sat Mar 12 11:58:40 2011 -0600 summary: merge 3.1 files: diff --git a/Doc/library/numbers.rst b/Doc/library/numbers.rst --- a/Doc/library/numbers.rst +++ b/Doc/library/numbers.rst @@ -45,7 +45,7 @@ To :class:`Complex`, :class:`Real` adds the operations that work on real numbers. - In short, those are: a conversion to :class:`float`, :func:`trunc`, + In short, those are: a conversion to :class:`float`, :func:`math.trunc`, :func:`round`, :func:`math.floor`, :func:`math.ceil`, :func:`divmod`, ``//``, ``%``, ``<``, ``<=``, ``>``, and ``>=``. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 18:58:34 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sat, 12 Mar 2011 18:58:34 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge 3.2 Message-ID: http://hg.python.org/cpython/rev/9e70e818d434 changeset: 68402:9e70e818d434 parent: 68399:ee259a4f3eee parent: 68401:45d76bb9fbcd user: Benjamin Peterson date: Sat Mar 12 11:59:10 2011 -0600 summary: merge 3.2 files: diff --git a/Doc/library/numbers.rst b/Doc/library/numbers.rst --- a/Doc/library/numbers.rst +++ b/Doc/library/numbers.rst @@ -45,7 +45,7 @@ To :class:`Complex`, :class:`Real` adds the operations that work on real numbers. - In short, those are: a conversion to :class:`float`, :func:`trunc`, + In short, those are: a conversion to :class:`float`, :func:`math.trunc`, :func:`round`, :func:`math.floor`, :func:`math.ceil`, :func:`divmod`, ``//``, ``%``, ``<``, ``<=``, ``>``, and ``>=``. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 18:58:35 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sat, 12 Mar 2011 18:58:35 +0100 Subject: [Python-checkins] cpython (2.7): trunc -> math.trunc (closes #11475) Message-ID: http://hg.python.org/cpython/rev/0eb23dedb03c changeset: 68403:0eb23dedb03c branch: 2.7 parent: 68394:d5fe8b33f711 user: Benjamin Peterson date: Sat Mar 12 11:58:15 2011 -0600 summary: trunc -> math.trunc (closes #11475) files: Doc/library/numbers.rst diff --git a/Doc/library/numbers.rst b/Doc/library/numbers.rst --- a/Doc/library/numbers.rst +++ b/Doc/library/numbers.rst @@ -47,7 +47,7 @@ To :class:`Complex`, :class:`Real` adds the operations that work on real numbers. - In short, those are: a conversion to :class:`float`, :func:`trunc`, + In short, those are: a conversion to :class:`float`, :func:`math.trunc`, :func:`round`, :func:`math.floor`, :func:`math.ceil`, :func:`divmod`, ``//``, ``%``, ``<``, ``<=``, ``>``, and ``>=``. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 21:23:41 2011 From: python-checkins at python.org (ezio.melotti) Date: Sat, 12 Mar 2011 21:23:41 +0100 Subject: [Python-checkins] cpython (2.7): Fix typo. Message-ID: http://hg.python.org/cpython/rev/ce7354473a4a changeset: 68404:ce7354473a4a branch: 2.7 user: Ezio Melotti date: Sat Mar 12 22:21:37 2011 +0200 summary: Fix typo. files: Doc/library/unittest.rst diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -194,7 +194,7 @@ .. _unittest-command-line-interface: -Command Line Interface +Command-Line Interface ---------------------- The unittest module can be used from the command line to run tests from -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 21:33:04 2011 From: python-checkins at python.org (ezio.melotti) Date: Sat, 12 Mar 2011 21:33:04 +0100 Subject: [Python-checkins] cpython (3.1): Fix typo. Message-ID: http://hg.python.org/cpython/rev/1be99fc24a66 changeset: 68405:1be99fc24a66 branch: 3.1 parent: 68400:7fd06773c3c2 user: Ezio Melotti date: Sat Mar 12 22:25:06 2011 +0200 summary: Fix typo. files: Doc/library/unittest.rst diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -191,7 +191,7 @@ .. _unittest-command-line-interface: -Command Line Interface +Command-Line Interface ---------------------- The unittest module can be used from the command line to run tests from -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 21:33:05 2011 From: python-checkins at python.org (ezio.melotti) Date: Sat, 12 Mar 2011 21:33:05 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Dummy merge with 3.1. Message-ID: http://hg.python.org/cpython/rev/2a03c5979ea8 changeset: 68406:2a03c5979ea8 branch: 3.2 parent: 68401:45d76bb9fbcd parent: 68405:1be99fc24a66 user: Ezio Melotti date: Sat Mar 12 22:28:01 2011 +0200 summary: Dummy merge with 3.1. files: Doc/library/unittest.rst -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 21:33:06 2011 From: python-checkins at python.org (ezio.melotti) Date: Sat, 12 Mar 2011 21:33:06 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Dummy merge with 3.2. Message-ID: http://hg.python.org/cpython/rev/6392261cdb74 changeset: 68407:6392261cdb74 parent: 68402:9e70e818d434 parent: 68406:2a03c5979ea8 user: Ezio Melotti date: Sat Mar 12 22:32:13 2011 +0200 summary: Dummy merge with 3.2. files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 12 23:38:03 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 12 Mar 2011 23:38:03 +0100 Subject: [Python-checkins] devguide: Fix instructions for dummy merges (Nadeem Vawda) Message-ID: http://hg.python.org/devguide/rev/5c39e4d2decb changeset: 388:5c39e4d2decb user: Antoine Pitrou date: Sat Mar 12 23:38:00 2011 +0100 summary: Fix instructions for dummy merges (Nadeem Vawda) files: committing.rst diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -166,7 +166,7 @@ hg update default hg merge 3.2 - hg revert -a + hg revert -ar default hg commit This is necessary so that the merge gets recorded; otherwise, somebody -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sat Mar 12 23:45:19 2011 From: python-checkins at python.org (vinay.sajip) Date: Sat, 12 Mar 2011 23:45:19 +0100 Subject: [Python-checkins] cpython (2.7): Fixes issue #11476: StreamHandler parameter name change documented. Message-ID: http://hg.python.org/cpython/rev/6d56d2c63a04 changeset: 68408:6d56d2c63a04 branch: 2.7 parent: 68404:ce7354473a4a user: Vinay Sajip date: Sat Mar 12 22:43:23 2011 +0000 summary: Fixes issue #11476: StreamHandler parameter name change documented. files: Doc/library/logging.rst diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -1895,6 +1895,8 @@ specified, the instance will use it for logging output; otherwise, *sys.stderr* will be used. + .. versionchanged:: 2.7 + The ``stream`` parameter was called ``strm`` in earlier versions. .. method:: emit(record) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 00:11:28 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 13 Mar 2011 00:11:28 +0100 Subject: [Python-checkins] cpython (2.7): clarify condition for readline to return EOF (closes #11312) Message-ID: http://hg.python.org/cpython/rev/c017695acf19 changeset: 68409:c017695acf19 branch: 2.7 user: Benjamin Peterson date: Sat Mar 12 17:12:54 2011 -0600 summary: clarify condition for readline to return EOF (closes #11312) files: Doc/library/stdtypes.rst diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2388,11 +2388,12 @@ .. method:: file.readline([size]) - Read one entire line from the file. A trailing newline character is kept in the - string (but may be absent when a file ends with an incomplete line). [#]_ If - the *size* argument is present and non-negative, it is a maximum byte count - (including the trailing newline) and an incomplete line may be returned. An - empty string is returned *only* when EOF is encountered immediately. + Read one entire line from the file. A trailing newline character is kept in + the string (but may be absent when a file ends with an incomplete line). [#]_ + If the *size* argument is present and non-negative, it is a maximum byte + count (including the trailing newline) and an incomplete line may be + returned. When *size* is not 0, an empty string is returned *only* when EOF + is encountered immediately. .. note:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 00:33:39 2011 From: python-checkins at python.org (local-hg) Date: Sun, 13 Mar 2011 00:33:39 +0100 Subject: [Python-checkins] hooks: Apparently roundup refuses setting the stage field Message-ID: http://hg.python.org/hooks/rev/4050573847af changeset: 62:4050573847af user: Georg Brandl date: Sun Mar 13 00:33:39 2011 +0100 summary: Apparently roundup refuses setting the stage field files: hgroundup.py diff --git a/hgroundup.py b/hgroundup.py --- a/hgroundup.py +++ b/hgroundup.py @@ -120,7 +120,7 @@ issues[key]['properties'].update({ 'status': 'closed', 'resolution': 'fixed', - 'stage': 'committed/rejected', + #'stage': 'committed/rejected', }) def send_comments(mailrelay, fromaddr, toaddr, issues): -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Sun Mar 13 01:14:28 2011 From: python-checkins at python.org (ezio.melotti) Date: Sun, 13 Mar 2011 01:14:28 +0100 Subject: [Python-checkins] cpython (2.7): Fix markup in inputoutput.rst. Message-ID: http://hg.python.org/cpython/rev/f757b3b79c2a changeset: 68410:f757b3b79c2a branch: 2.7 user: Ezio Melotti date: Sun Mar 13 02:13:08 2011 +0200 summary: Fix markup in inputoutput.rst. files: Doc/tutorial/inputoutput.rst diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst --- a/Doc/tutorial/inputoutput.rst +++ b/Doc/tutorial/inputoutput.rst @@ -103,17 +103,18 @@ (Note that in the first example, one space between each column was added by the way :keyword:`print` works: it always adds spaces between its arguments.) -This example demonstrates the :meth:`rjust` method of string objects, which -right-justifies a string in a field of a given width by padding it with spaces -on the left. There are similar methods :meth:`ljust` and :meth:`center`. These -methods do not write anything, they just return a new string. If the input -string is too long, they don't truncate it, but return it unchanged; this will -mess up your column lay-out but that's usually better than the alternative, -which would be lying about a value. (If you really want truncation you can -always add a slice operation, as in ``x.ljust(n)[:n]``.) +This example demonstrates the :meth:`str.rjust` method of string +objects, which right-justifies a string in a field of a given width by padding +it with spaces on the left. There are similar methods :meth:`str.ljust` and +:meth:`str.center`. These methods do not write anything, they just return a +new string. If the input string is too long, they don't truncate it, but +return it unchanged; this will mess up your column lay-out but that's usually +better than the alternative, which would be lying about a value. (If you +really want truncation you can always add a slice operation, as in +``x.ljust(n)[:n]``.) -There is another method, :meth:`zfill`, which pads a numeric string on the left -with zeros. It understands about plus and minus signs:: +There is another method, :meth:`str.zfill`, which pads a numeric string on the +left with zeros. It understands about plus and minus signs:: >>> '12'.zfill(5) '00012' @@ -128,16 +129,16 @@ We are the knights who say "Ni!" The brackets and characters within them (called format fields) are replaced with -the objects passed into the :meth:`~str.format` method. A number in the +the objects passed into the :meth:`str.format` method. A number in the brackets refers to the position of the object passed into the -:meth:`~str.format` method. :: +:meth:`str.format` method. :: >>> print '{0} and {1}'.format('spam', 'eggs') spam and eggs >>> print '{1} and {0}'.format('spam', 'eggs') eggs and spam -If keyword arguments are used in the :meth:`~str.format` method, their values +If keyword arguments are used in the :meth:`str.format` method, their values are referred to by using the name of the argument. :: >>> print 'This {food} is {adjective}.'.format( @@ -195,8 +196,8 @@ >>> print 'Jack: {Jack:d}; Sjoerd: {Sjoerd:d}; Dcab: {Dcab:d}'.format(**table) Jack: 4098; Sjoerd: 4127; Dcab: 8637678 -This is particularly useful in combination with the new built-in :func:`vars` -function, which returns a dictionary containing all local variables. +This is particularly useful in combination with the built-in function +:func:`vars`, which returns a dictionary containing all local variables. For a complete overview of string formatting with :meth:`str.format`, see :ref:`formatstrings`. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 01:20:48 2011 From: python-checkins at python.org (ezio.melotti) Date: Sun, 13 Mar 2011 01:20:48 +0100 Subject: [Python-checkins] cpython (3.1): Fix markup in inputoutput.rst. Message-ID: http://hg.python.org/cpython/rev/87167b08312f changeset: 68411:87167b08312f branch: 3.1 parent: 68405:1be99fc24a66 user: Ezio Melotti date: Sun Mar 13 02:19:57 2011 +0200 summary: Fix markup in inputoutput.rst. files: Doc/tutorial/inputoutput.rst diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst --- a/Doc/tutorial/inputoutput.rst +++ b/Doc/tutorial/inputoutput.rst @@ -103,17 +103,18 @@ (Note that in the first example, one space between each column was added by the way :func:`print` works: it always adds spaces between its arguments.) -This example demonstrates the :meth:`rjust` method of string objects, which -right-justifies a string in a field of a given width by padding it with spaces -on the left. There are similar methods :meth:`ljust` and :meth:`center`. These -methods do not write anything, they just return a new string. If the input -string is too long, they don't truncate it, but return it unchanged; this will -mess up your column lay-out but that's usually better than the alternative, -which would be lying about a value. (If you really want truncation you can -always add a slice operation, as in ``x.ljust(n)[:n]``.) +This example demonstrates the :meth:`str.rjust` method of string +objects, which right-justifies a string in a field of a given width by padding +it with spaces on the left. There are similar methods :meth:`str.ljust` and +:meth:`str.center`. These methods do not write anything, they just return a +new string. If the input string is too long, they don't truncate it, but +return it unchanged; this will mess up your column lay-out but that's usually +better than the alternative, which would be lying about a value. (If you +really want truncation you can always add a slice operation, as in +``x.ljust(n)[:n]``.) -There is another method, :meth:`zfill`, which pads a numeric string on the left -with zeros. It understands about plus and minus signs:: +There is another method, :meth:`str.zfill`, which pads a numeric string on the +left with zeros. It understands about plus and minus signs:: >>> '12'.zfill(5) '00012' @@ -128,16 +129,16 @@ We are the knights who say "Ni!" The brackets and characters within them (called format fields) are replaced with -the objects passed into the :meth:`~str.format` method. A number in the +the objects passed into the :meth:`str.format` method. A number in the brackets can be used to refer to the position of the object passed into the -:meth:`~str.format` method. :: +:meth:`str.format` method. :: >>> print('{0} and {1}'.format('spam', 'eggs')) spam and eggs >>> print('{1} and {0}'.format('spam', 'eggs')) eggs and spam -If keyword arguments are used in the :meth:`~str.format` method, their values +If keyword arguments are used in the :meth:`str.format` method, their values are referred to by using the name of the argument. :: >>> print('This {food} is {adjective}.'.format( @@ -195,8 +196,8 @@ >>> print('Jack: {Jack:d}; Sjoerd: {Sjoerd:d}; Dcab: {Dcab:d}'.format(**table)) Jack: 4098; Sjoerd: 4127; Dcab: 8637678 -This is particularly useful in combination with the new built-in :func:`vars` -function, which returns a dictionary containing all local variables. +This is particularly useful in combination with the built-in function +:func:`vars`, which returns a dictionary containing all local variables. For a complete overview of string formatting with :meth:`str.format`, see :ref:`formatstrings`. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 01:27:53 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 13 Mar 2011 01:27:53 +0100 Subject: [Python-checkins] cpython: convert ast versioning to mercurial Message-ID: http://hg.python.org/cpython/rev/0daa6ba25d9b changeset: 68412:0daa6ba25d9b parent: 68407:6392261cdb74 user: Benjamin Peterson date: Sat Mar 12 18:28:16 2011 -0600 summary: convert ast versioning to mercurial files: Doc/library/ast.rst Misc/NEWS Parser/Python.asdl Parser/asdl.py Parser/asdl_c.py Python/Python-ast.c diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst --- a/Doc/library/ast.rst +++ b/Doc/library/ast.rst @@ -96,8 +96,8 @@ Abstract Grammar ---------------- -The module defines a string constant ``__version__`` which is the decimal -Subversion revision number of the file shown below. +The module defines a string constant ``__version__`` which is the Mercurial +revision of the file shown below. The abstract grammar is currently defined as follows: diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,8 @@ Core and Builtins ----------------- +- _ast.__version__ is now a Mercurial integer and hex revision. + - Issue #9856: Change object.__format__ with a non-empty format string to be a DeprecationWarning. In 3.2 it was a PendingDeprecationWarning. In 3.4 it will be a TypeError. diff --git a/Parser/Python.asdl b/Parser/Python.asdl --- a/Parser/Python.asdl +++ b/Parser/Python.asdl @@ -1,6 +1,6 @@ -- ASDL's four builtin types are identifier, int, string, object -module Python version "$Revision$" +module Python { mod = Module(stmt* body) | Interactive(stmt* body) diff --git a/Parser/asdl.py b/Parser/asdl.py --- a/Parser/asdl.py +++ b/Parser/asdl.py @@ -114,28 +114,20 @@ raise ASDLSyntaxError(tok.lineno, tok) def p_module_0(self, info): - " module ::= Id Id version { } " - module, name, version, _0, _1 = info + " module ::= Id Id { } " + module, name, _0, _1 = info if module.value != "module": raise ASDLSyntaxError(module.lineno, msg="expected 'module', found %s" % module) - return Module(name, None, version) + return Module(name, None) def p_module(self, info): - " module ::= Id Id version { definitions } " - module, name, version, _0, definitions, _1 = info + " module ::= Id Id { definitions } " + module, name, _0, definitions, _1 = info if module.value != "module": raise ASDLSyntaxError(module.lineno, msg="expected 'module', found %s" % module) - return Module(name, definitions, version) - - def p_version(self, info): - "version ::= Id String" - version, V = info - if version.value != "version": - raise ASDLSyntaxError(version.lineno, - msg="expected 'version', found %" % version) - return V + return Module(name, definitions) def p_definition_0(self, definition): " definitions ::= definition " @@ -246,10 +238,9 @@ pass # a marker class class Module(AST): - def __init__(self, name, dfns, version): + def __init__(self, name, dfns): self.name = name self.dfns = dfns - self.version = version self.types = {} # maps type name to value (from dfns) for type in dfns: self.types[type.name.value] = type.value diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py --- a/Parser/asdl_c.py +++ b/Parser/asdl_c.py @@ -5,6 +5,7 @@ # handle fields that have a type but no name import os, sys +import subprocess import asdl @@ -882,9 +883,6 @@ self.emit("if (!%s_singleton) return 0;" % cons.name, 1) -def parse_version(mod): - return mod.version.value[12:-3] - class ASTModuleVisitor(PickleVisitor): def visitModule(self, mod): @@ -904,7 +902,7 @@ self.emit("return NULL;", 2) # Value of version: "$Revision$" self.emit('if (PyModule_AddStringConstant(m, "__version__", "%s") < 0)' - % parse_version(mod), 1) + % (mod.version,), 1) self.emit("return NULL;", 2) for dfn in mod.dfns: self.visit(dfn) @@ -1137,6 +1135,18 @@ """ + +def get_file_revision(f): + """Fish out the last change to a file in hg.""" + args = ["hg", "log", "--template", "{rev}:{node|short}", "--limit", "1"] + p = subprocess.Popen(args, stdout=subprocess.PIPE) + out = p.communicate()[0] + if p.returncode: + print >> sys.stderr, "error return code from hg" + sys.exit(1) + return out + + def main(srcfile): argv0 = sys.argv[0] components = argv0.split(os.sep) @@ -1145,6 +1155,7 @@ mod = asdl.parse(srcfile) if not asdl.check(mod): sys.exit(1) + mod.version = get_file_revision(srcfile) if INC_DIR: p = "%s/%s-ast.h" % (INC_DIR, mod.name) f = open(p, "w") @@ -1164,7 +1175,7 @@ p = os.path.join(SRC_DIR, str(mod.name) + "-ast.c") f = open(p, "w") f.write(auto_gen_msg) - f.write(c_file_msg % parse_version(mod)) + f.write(c_file_msg % (mod.version,)) f.write('#include "Python.h"\n') f.write('#include "%s-ast.h"\n' % mod.name) f.write('\n') diff --git a/Python/Python-ast.c b/Python/Python-ast.c --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -2,7 +2,7 @@ /* - __version__ 82163. + __version__ 68409:c017695acf19. This module must be committed separately after each AST grammar change; The __version__ number is set to the revision number of the commit @@ -6739,7 +6739,8 @@ NULL; if (PyModule_AddIntConstant(m, "PyCF_ONLY_AST", PyCF_ONLY_AST) < 0) return NULL; - if (PyModule_AddStringConstant(m, "__version__", "82163") < 0) + if (PyModule_AddStringConstant(m, "__version__", "68409:c017695acf19") + < 0) return NULL; if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return NULL; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 01:28:17 2011 From: python-checkins at python.org (ezio.melotti) Date: Sun, 13 Mar 2011 01:28:17 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge with 3.1. Message-ID: http://hg.python.org/cpython/rev/4a68f4cfbdc8 changeset: 68413:4a68f4cfbdc8 branch: 3.2 parent: 68406:2a03c5979ea8 parent: 68411:87167b08312f user: Ezio Melotti date: Sun Mar 13 02:27:26 2011 +0200 summary: Merge with 3.1. files: Doc/tutorial/inputoutput.rst diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst --- a/Doc/tutorial/inputoutput.rst +++ b/Doc/tutorial/inputoutput.rst @@ -40,8 +40,8 @@ there is not equivalent syntax). For objects which don't have a particular representation for human consumption, :func:`str` will return the same value as :func:`repr`. Many values, such as numbers or structures like lists and -dictionaries, have the same representation using either function. Strings and -floating point numbers, in particular, have two distinct representations. +dictionaries, have the same representation using either function. Strings, in +particular, have two distinct representations. Some examples:: @@ -50,9 +50,7 @@ 'Hello, world.' >>> repr(s) "'Hello, world.'" - >>> str(1.0/7.0) - '0.142857142857' - >>> repr(1.0/7.0) + >>> str(1/7) '0.14285714285714285' >>> x = 10 * 3.25 >>> y = 200 * 200 @@ -103,17 +101,18 @@ (Note that in the first example, one space between each column was added by the way :func:`print` works: it always adds spaces between its arguments.) -This example demonstrates the :meth:`rjust` method of string objects, which -right-justifies a string in a field of a given width by padding it with spaces -on the left. There are similar methods :meth:`ljust` and :meth:`center`. These -methods do not write anything, they just return a new string. If the input -string is too long, they don't truncate it, but return it unchanged; this will -mess up your column lay-out but that's usually better than the alternative, -which would be lying about a value. (If you really want truncation you can -always add a slice operation, as in ``x.ljust(n)[:n]``.) +This example demonstrates the :meth:`str.rjust` method of string +objects, which right-justifies a string in a field of a given width by padding +it with spaces on the left. There are similar methods :meth:`str.ljust` and +:meth:`str.center`. These methods do not write anything, they just return a +new string. If the input string is too long, they don't truncate it, but +return it unchanged; this will mess up your column lay-out but that's usually +better than the alternative, which would be lying about a value. (If you +really want truncation you can always add a slice operation, as in +``x.ljust(n)[:n]``.) -There is another method, :meth:`zfill`, which pads a numeric string on the left -with zeros. It understands about plus and minus signs:: +There is another method, :meth:`str.zfill`, which pads a numeric string on the +left with zeros. It understands about plus and minus signs:: >>> '12'.zfill(5) '00012' @@ -128,16 +127,16 @@ We are the knights who say "Ni!" The brackets and characters within them (called format fields) are replaced with -the objects passed into the :meth:`~str.format` method. A number in the +the objects passed into the :meth:`str.format` method. A number in the brackets can be used to refer to the position of the object passed into the -:meth:`~str.format` method. :: +:meth:`str.format` method. :: >>> print('{0} and {1}'.format('spam', 'eggs')) spam and eggs >>> print('{1} and {0}'.format('spam', 'eggs')) eggs and spam -If keyword arguments are used in the :meth:`~str.format` method, their values +If keyword arguments are used in the :meth:`str.format` method, their values are referred to by using the name of the argument. :: >>> print('This {food} is {adjective}.'.format( @@ -195,8 +194,8 @@ >>> print('Jack: {Jack:d}; Sjoerd: {Sjoerd:d}; Dcab: {Dcab:d}'.format(**table)) Jack: 4098; Sjoerd: 4127; Dcab: 8637678 -This is particularly useful in combination with the new built-in :func:`vars` -function, which returns a dictionary containing all local variables. +This is particularly useful in combination with the built-in function +:func:`vars`, which returns a dictionary containing all local variables. For a complete overview of string formatting with :meth:`str.format`, see :ref:`formatstrings`. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 01:30:03 2011 From: python-checkins at python.org (ezio.melotti) Date: Sun, 13 Mar 2011 01:30:03 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge with 3.2. Message-ID: http://hg.python.org/cpython/rev/642b462ce59f changeset: 68414:642b462ce59f parent: 68412:0daa6ba25d9b parent: 68413:4a68f4cfbdc8 user: Ezio Melotti date: Sun Mar 13 02:29:11 2011 +0200 summary: Merge with 3.2. files: diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst --- a/Doc/tutorial/inputoutput.rst +++ b/Doc/tutorial/inputoutput.rst @@ -40,8 +40,8 @@ there is not equivalent syntax). For objects which don't have a particular representation for human consumption, :func:`str` will return the same value as :func:`repr`. Many values, such as numbers or structures like lists and -dictionaries, have the same representation using either function. Strings and -floating point numbers, in particular, have two distinct representations. +dictionaries, have the same representation using either function. Strings, in +particular, have two distinct representations. Some examples:: @@ -50,9 +50,7 @@ 'Hello, world.' >>> repr(s) "'Hello, world.'" - >>> str(1.0/7.0) - '0.142857142857' - >>> repr(1.0/7.0) + >>> str(1/7) '0.14285714285714285' >>> x = 10 * 3.25 >>> y = 200 * 200 @@ -103,17 +101,18 @@ (Note that in the first example, one space between each column was added by the way :func:`print` works: it always adds spaces between its arguments.) -This example demonstrates the :meth:`rjust` method of string objects, which -right-justifies a string in a field of a given width by padding it with spaces -on the left. There are similar methods :meth:`ljust` and :meth:`center`. These -methods do not write anything, they just return a new string. If the input -string is too long, they don't truncate it, but return it unchanged; this will -mess up your column lay-out but that's usually better than the alternative, -which would be lying about a value. (If you really want truncation you can -always add a slice operation, as in ``x.ljust(n)[:n]``.) +This example demonstrates the :meth:`str.rjust` method of string +objects, which right-justifies a string in a field of a given width by padding +it with spaces on the left. There are similar methods :meth:`str.ljust` and +:meth:`str.center`. These methods do not write anything, they just return a +new string. If the input string is too long, they don't truncate it, but +return it unchanged; this will mess up your column lay-out but that's usually +better than the alternative, which would be lying about a value. (If you +really want truncation you can always add a slice operation, as in +``x.ljust(n)[:n]``.) -There is another method, :meth:`zfill`, which pads a numeric string on the left -with zeros. It understands about plus and minus signs:: +There is another method, :meth:`str.zfill`, which pads a numeric string on the +left with zeros. It understands about plus and minus signs:: >>> '12'.zfill(5) '00012' @@ -128,16 +127,16 @@ We are the knights who say "Ni!" The brackets and characters within them (called format fields) are replaced with -the objects passed into the :meth:`~str.format` method. A number in the +the objects passed into the :meth:`str.format` method. A number in the brackets can be used to refer to the position of the object passed into the -:meth:`~str.format` method. :: +:meth:`str.format` method. :: >>> print('{0} and {1}'.format('spam', 'eggs')) spam and eggs >>> print('{1} and {0}'.format('spam', 'eggs')) eggs and spam -If keyword arguments are used in the :meth:`~str.format` method, their values +If keyword arguments are used in the :meth:`str.format` method, their values are referred to by using the name of the argument. :: >>> print('This {food} is {adjective}.'.format( @@ -195,8 +194,8 @@ >>> print('Jack: {Jack:d}; Sjoerd: {Sjoerd:d}; Dcab: {Dcab:d}'.format(**table)) Jack: 4098; Sjoerd: 4127; Dcab: 8637678 -This is particularly useful in combination with the new built-in :func:`vars` -function, which returns a dictionary containing all local variables. +This is particularly useful in combination with the built-in function +:func:`vars`, which returns a dictionary containing all local variables. For a complete overview of string formatting with :meth:`str.format`, see :ref:`formatstrings`. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 01:34:20 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 13 Mar 2011 01:34:20 +0100 Subject: [Python-checkins] cpython: actually get file rev Message-ID: http://hg.python.org/cpython/rev/abbfd5a8b31f changeset: 68415:abbfd5a8b31f parent: 68412:0daa6ba25d9b user: Benjamin Peterson date: Sat Mar 12 18:35:02 2011 -0600 summary: actually get file rev files: Parser/asdl_c.py diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py --- a/Parser/asdl_c.py +++ b/Parser/asdl_c.py @@ -1138,7 +1138,7 @@ def get_file_revision(f): """Fish out the last change to a file in hg.""" - args = ["hg", "log", "--template", "{rev}:{node|short}", "--limit", "1"] + args = ["hg", "log", "--template", "{rev}:{node|short}", "--limit", "1", f] p = subprocess.Popen(args, stdout=subprocess.PIPE) out = p.communicate()[0] if p.returncode: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 01:34:21 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 13 Mar 2011 01:34:21 +0100 Subject: [Python-checkins] cpython: bump ast version Message-ID: http://hg.python.org/cpython/rev/52940f7f3726 changeset: 68416:52940f7f3726 user: Benjamin Peterson date: Sat Mar 12 18:35:23 2011 -0600 summary: bump ast version files: Python/Python-ast.c diff --git a/Python/Python-ast.c b/Python/Python-ast.c --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -2,7 +2,7 @@ /* - __version__ 68409:c017695acf19. + __version__ 68410:0daa6ba25d9b. This module must be committed separately after each AST grammar change; The __version__ number is set to the revision number of the commit @@ -6739,7 +6739,7 @@ NULL; if (PyModule_AddIntConstant(m, "PyCF_ONLY_AST", PyCF_ONLY_AST) < 0) return NULL; - if (PyModule_AddStringConstant(m, "__version__", "68409:c017695acf19") + if (PyModule_AddStringConstant(m, "__version__", "68410:0daa6ba25d9b") < 0) return NULL; if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 01:34:22 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 13 Mar 2011 01:34:22 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge heads Message-ID: http://hg.python.org/cpython/rev/42e41af0578f changeset: 68417:42e41af0578f parent: 68416:52940f7f3726 parent: 68414:642b462ce59f user: Benjamin Peterson date: Sat Mar 12 18:35:48 2011 -0600 summary: merge heads files: diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst --- a/Doc/tutorial/inputoutput.rst +++ b/Doc/tutorial/inputoutput.rst @@ -40,8 +40,8 @@ there is not equivalent syntax). For objects which don't have a particular representation for human consumption, :func:`str` will return the same value as :func:`repr`. Many values, such as numbers or structures like lists and -dictionaries, have the same representation using either function. Strings and -floating point numbers, in particular, have two distinct representations. +dictionaries, have the same representation using either function. Strings, in +particular, have two distinct representations. Some examples:: @@ -50,9 +50,7 @@ 'Hello, world.' >>> repr(s) "'Hello, world.'" - >>> str(1.0/7.0) - '0.142857142857' - >>> repr(1.0/7.0) + >>> str(1/7) '0.14285714285714285' >>> x = 10 * 3.25 >>> y = 200 * 200 @@ -103,17 +101,18 @@ (Note that in the first example, one space between each column was added by the way :func:`print` works: it always adds spaces between its arguments.) -This example demonstrates the :meth:`rjust` method of string objects, which -right-justifies a string in a field of a given width by padding it with spaces -on the left. There are similar methods :meth:`ljust` and :meth:`center`. These -methods do not write anything, they just return a new string. If the input -string is too long, they don't truncate it, but return it unchanged; this will -mess up your column lay-out but that's usually better than the alternative, -which would be lying about a value. (If you really want truncation you can -always add a slice operation, as in ``x.ljust(n)[:n]``.) +This example demonstrates the :meth:`str.rjust` method of string +objects, which right-justifies a string in a field of a given width by padding +it with spaces on the left. There are similar methods :meth:`str.ljust` and +:meth:`str.center`. These methods do not write anything, they just return a +new string. If the input string is too long, they don't truncate it, but +return it unchanged; this will mess up your column lay-out but that's usually +better than the alternative, which would be lying about a value. (If you +really want truncation you can always add a slice operation, as in +``x.ljust(n)[:n]``.) -There is another method, :meth:`zfill`, which pads a numeric string on the left -with zeros. It understands about plus and minus signs:: +There is another method, :meth:`str.zfill`, which pads a numeric string on the +left with zeros. It understands about plus and minus signs:: >>> '12'.zfill(5) '00012' @@ -128,16 +127,16 @@ We are the knights who say "Ni!" The brackets and characters within them (called format fields) are replaced with -the objects passed into the :meth:`~str.format` method. A number in the +the objects passed into the :meth:`str.format` method. A number in the brackets can be used to refer to the position of the object passed into the -:meth:`~str.format` method. :: +:meth:`str.format` method. :: >>> print('{0} and {1}'.format('spam', 'eggs')) spam and eggs >>> print('{1} and {0}'.format('spam', 'eggs')) eggs and spam -If keyword arguments are used in the :meth:`~str.format` method, their values +If keyword arguments are used in the :meth:`str.format` method, their values are referred to by using the name of the argument. :: >>> print('This {food} is {adjective}.'.format( @@ -195,8 +194,8 @@ >>> print('Jack: {Jack:d}; Sjoerd: {Sjoerd:d}; Dcab: {Dcab:d}'.format(**table)) Jack: 4098; Sjoerd: 4127; Dcab: 8637678 -This is particularly useful in combination with the new built-in :func:`vars` -function, which returns a dictionary containing all local variables. +This is particularly useful in combination with the built-in function +:func:`vars`, which returns a dictionary containing all local variables. For a complete overview of string formatting with :meth:`str.format`, see :ref:`formatstrings`. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 04:31:16 2011 From: python-checkins at python.org (raymond.hettinger) Date: Sun, 13 Mar 2011 04:31:16 +0100 Subject: [Python-checkins] cpython: Issue #7391: Remove outdated HOWTO with permission of its author. Message-ID: http://hg.python.org/cpython/rev/e34b09c69dd3 changeset: 68418:e34b09c69dd3 user: Raymond Hettinger date: Sat Mar 12 22:31:06 2011 -0500 summary: Issue #7391: Remove outdated HOWTO with permission of its author. files: Doc/howto/doanddont.rst Doc/howto/index.rst diff --git a/Doc/howto/doanddont.rst b/Doc/howto/doanddont.rst deleted file mode 100644 --- a/Doc/howto/doanddont.rst +++ /dev/null @@ -1,290 +0,0 @@ -************************************ - Idioms and Anti-Idioms in Python -************************************ - -:Author: Moshe Zadka - -This document is placed in the public domain. - - -.. topic:: Abstract - - This document can be considered a companion to the tutorial. It shows how to use - Python, and even more importantly, how *not* to use Python. - - -Language Constructs You Should Not Use -====================================== - -While Python has relatively few gotchas compared to other languages, it still -has some constructs which are only useful in corner cases, or are plain -dangerous. - - -from module import \* ---------------------- - - -Inside Function Definitions -^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -``from module import *`` is *invalid* inside function definitions. While many -versions of Python do not check for the invalidity, it does not make it more -valid, no more than having a smart lawyer makes a man innocent. Do not use it -like that ever. Even in versions where it was accepted, it made the function -execution slower, because the compiler could not be certain which names are -local and which are global. In Python 2.1 this construct causes warnings, and -sometimes even errors. - - -At Module Level -^^^^^^^^^^^^^^^ - -While it is valid to use ``from module import *`` at module level it is usually -a bad idea. For one, this loses an important property Python otherwise has --- -you can know where each toplevel name is defined by a simple "search" function -in your favourite editor. You also open yourself to trouble in the future, if -some module grows additional functions or classes. - -One of the most awful question asked on the newsgroup is why this code:: - - f = open("www") - f.read() - -does not work. Of course, it works just fine (assuming you have a file called -"www".) But it does not work if somewhere in the module, the statement ``from -os import *`` is present. The :mod:`os` module has a function called -:func:`open` which returns an integer. While it is very useful, shadowing a -builtin is one of its least useful properties. - -Remember, you can never know for sure what names a module exports, so either -take what you need --- ``from module import name1, name2``, or keep them in the -module and access on a per-need basis --- ``import module; print(module.name)``. - - -When It Is Just Fine -^^^^^^^^^^^^^^^^^^^^ - -There are situations in which ``from module import *`` is just fine: - -* The interactive prompt. For example, ``from math import *`` makes Python an - amazing scientific calculator. - -* When extending a module in C with a module in Python. - -* When the module advertises itself as ``from import *`` safe. - - -from module import name1, name2 -------------------------------- - -This is a "don't" which is much weaker than the previous "don't"s but is still -something you should not do if you don't have good reasons to do that. The -reason it is usually bad idea is because you suddenly have an object which lives -in two separate namespaces. When the binding in one namespace changes, the -binding in the other will not, so there will be a discrepancy between them. This -happens when, for example, one module is reloaded, or changes the definition of -a function at runtime. - -Bad example:: - - # foo.py - a = 1 - - # bar.py - from foo import a - if something(): - a = 2 # danger: foo.a != a - -Good example:: - - # foo.py - a = 1 - - # bar.py - import foo - if something(): - foo.a = 2 - - -except: -------- - -Python has the ``except:`` clause, which catches all exceptions. Since *every* -error in Python raises an exception, using ``except:`` can make many -programming errors look like runtime problems, which hinders the debugging -process. - -The following code shows a great example of why this is bad:: - - try: - foo = opne("file") # misspelled "open" - except: - sys.exit("could not open file!") - -The second line triggers a :exc:`NameError`, which is caught by the except -clause. The program will exit, and the error message the program prints will -make you think the problem is the readability of ``"file"`` when in fact -the real error has nothing to do with ``"file"``. - -A better way to write the above is :: - - try: - foo = opne("file") - except IOError: - sys.exit("could not open file") - -When this is run, Python will produce a traceback showing the :exc:`NameError`, -and it will be immediately apparent what needs to be fixed. - -.. index:: bare except, except; bare - -Because ``except:`` catches *all* exceptions, including :exc:`SystemExit`, -:exc:`KeyboardInterrupt`, and :exc:`GeneratorExit` (which is not an error and -should not normally be caught by user code), using a bare ``except:`` is almost -never a good idea. In situations where you need to catch all "normal" errors, -such as in a framework that runs callbacks, you can catch the base class for -all normal exceptions, :exc:`Exception`. - - -Exceptions -========== - -Exceptions are a useful feature of Python. You should learn to raise them -whenever something unexpected occurs, and catch them only where you can do -something about them. - -The following is a very popular anti-idiom :: - - def get_status(file): - if not os.path.exists(file): - print("file not found") - sys.exit(1) - return open(file).readline() - -Consider the case where the file gets deleted between the time the call to -:func:`os.path.exists` is made and the time :func:`open` is called. In that -case the last line will raise an :exc:`IOError`. The same thing would happen -if *file* exists but has no read permission. Since testing this on a normal -machine on existent and non-existent files makes it seem bugless, the test -results will seem fine, and the code will get shipped. Later an unhandled -:exc:`IOError` (or perhaps some other :exc:`EnvironmentError`) escapes to the -user, who gets to watch the ugly traceback. - -Here is a somewhat better way to do it. :: - - def get_status(file): - try: - return open(file).readline() - except EnvironmentError as err: - print("Unable to open file: {}".format(err)) - sys.exit(1) - -In this version, *either* the file gets opened and the line is read (so it -works even on flaky NFS or SMB connections), or an error message is printed -that provides all the available information on why the open failed, and the -application is aborted. - -However, even this version of :func:`get_status` makes too many assumptions --- -that it will only be used in a short running script, and not, say, in a long -running server. Sure, the caller could do something like :: - - try: - status = get_status(log) - except SystemExit: - status = None - -But there is a better way. You should try to use as few ``except`` clauses in -your code as you can --- the ones you do use will usually be inside calls which -should always succeed, or a catch-all in a main function. - -So, an even better version of :func:`get_status()` is probably :: - - def get_status(file): - return open(file).readline() - -The caller can deal with the exception if it wants (for example, if it tries -several files in a loop), or just let the exception filter upwards to *its* -caller. - -But the last version still has a serious problem --- due to implementation -details in CPython, the file would not be closed when an exception is raised -until the exception handler finishes; and, worse, in other implementations -(e.g., Jython) it might not be closed at all regardless of whether or not -an exception is raised. - -The best version of this function uses the ``open()`` call as a context -manager, which will ensure that the file gets closed as soon as the -function returns:: - - def get_status(file): - with open(file) as fp: - return fp.readline() - - -Using the Batteries -=================== - -Every so often, people seem to be writing stuff in the Python library again, -usually poorly. While the occasional module has a poor interface, it is usually -much better to use the rich standard library and data types that come with -Python than inventing your own. - -A useful module very few people know about is :mod:`os.path`. It always has the -correct path arithmetic for your operating system, and will usually be much -better than whatever you come up with yourself. - -Compare:: - - # ugh! - return dir+"/"+file - # better - return os.path.join(dir, file) - -More useful functions in :mod:`os.path`: :func:`basename`, :func:`dirname` and -:func:`splitext`. - -There are also many useful built-in functions people seem not to be aware of -for some reason: :func:`min` and :func:`max` can find the minimum/maximum of -any sequence with comparable semantics, for example, yet many people write -their own :func:`max`/:func:`min`. Another highly useful function is -:func:`functools.reduce` which can be used to repeatly apply a binary -operation to a sequence, reducing it to a single value. For example, compute -a factorial with a series of multiply operations:: - - >>> n = 4 - >>> import operator, functools - >>> functools.reduce(operator.mul, range(1, n+1)) - 24 - -When it comes to parsing numbers, note that :func:`float`, :func:`int` and -:func:`long` all accept string arguments and will reject ill-formed strings -by raising an :exc:`ValueError`. - - -Using Backslash to Continue Statements -====================================== - -Since Python treats a newline as a statement terminator, and since statements -are often more than is comfortable to put in one line, many people do:: - - if foo.bar()['first'][0] == baz.quux(1, 2)[5:9] and \ - calculate_number(10, 20) != forbulate(500, 360): - pass - -You should realize that this is dangerous: a stray space after the ``\`` would -make this line wrong, and stray spaces are notoriously hard to see in editors. -In this case, at least it would be a syntax error, but if the code was:: - - value = foo.bar()['first'][0]*baz.quux(1, 2)[5:9] \ - + calculate_number(10, 20)*forbulate(500, 360) - -then it would just be subtly wrong. - -It is usually much better to use the implicit continuation inside parenthesis: - -This version is bulletproof:: - - value = (foo.bar()['first'][0]*baz.quux(1, 2)[5:9] - + calculate_number(10, 20)*forbulate(500, 360)) - diff --git a/Doc/howto/index.rst b/Doc/howto/index.rst --- a/Doc/howto/index.rst +++ b/Doc/howto/index.rst @@ -18,7 +18,6 @@ cporting.rst curses.rst descriptor.rst - doanddont.rst functional.rst logging.rst logging-cookbook.rst -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Sun Mar 13 05:10:53 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Sun, 13 Mar 2011 05:10:53 +0100 Subject: [Python-checkins] Daily reference leaks (42e41af0578f): sum=0 Message-ID: results for 42e41af0578f on branch "default" -------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflog49bD5i', '-x'] From python-checkins at python.org Sun Mar 13 07:45:08 2011 From: python-checkins at python.org (eli.bendersky) Date: Sun, 13 Mar 2011 07:45:08 +0100 Subject: [Python-checkins] cpython (2.7): Issue #11426: use 'with' statements on open files in CSV examples Message-ID: http://hg.python.org/cpython/rev/52e1ad467edd changeset: 68419:52e1ad467edd branch: 2.7 parent: 68410:f757b3b79c2a user: Eli Bendersky date: Sun Mar 13 08:45:19 2011 +0200 summary: Issue #11426: use 'with' statements on open files in CSV examples files: Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -442,41 +442,44 @@ The simplest example of reading a CSV file:: import csv - reader = csv.reader(open("some.csv", "rb")) - for row in reader: - print row + with open('some.csv', 'rb') as f: + reader = csv.reader(f) + for row in reader: + print row Reading a file with an alternate format:: import csv - reader = csv.reader(open("passwd", "rb"), delimiter=':', quoting=csv.QUOTE_NONE) - for row in reader: - print row + with open('passwd', 'rb') as f: + reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE) + for row in reader: + print row The corresponding simplest possible writing example is:: import csv - writer = csv.writer(open("some.csv", "wb")) - writer.writerows(someiterable) + with open('some.csv', 'wb') as f: + writer = csv.writer(f) + writer.writerows(someiterable) Registering a new dialect:: import csv - csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE) - - reader = csv.reader(open("passwd", "rb"), 'unixpwd') + with open('passwd', 'rb') as f: + reader = csv.reader(f, 'unixpwd') A slightly more advanced use of the reader --- catching and reporting errors:: import csv, sys - filename = "some.csv" - reader = csv.reader(open(filename, "rb")) - try: - for row in reader: - print row - except csv.Error, e: - sys.exit('file %s, line %d: %s' % (filename, reader.line_num, e)) + filename = 'some.csv' + with open(filename, 'rb') as f: + reader = csv.reader(f) + try: + for row in reader: + print row + except csv.Error, e: + sys.exit('file %s, line %d: %s' % (filename, reader.line_num, e)) And while the module doesn't directly support parsing strings, it can easily be done:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 11:46:39 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 13 Mar 2011 11:46:39 +0100 Subject: [Python-checkins] devguide: Add Ross. Message-ID: http://hg.python.org/devguide/rev/968b64ed6e6c changeset: 389:968b64ed6e6c user: Georg Brandl date: Sun Mar 13 11:45:48 2011 +0100 summary: Add Ross. files: developers.rst diff --git a/developers.rst b/developers.rst --- a/developers.rst +++ b/developers.rst @@ -24,6 +24,9 @@ Permissions History ------------------- +- Ross Lagerwall was given push privileges on Mar 13 2011 by GFB, + on recommendation by Antoine Pitrou and Ned Deily. + - Eli Bendersky was given commit access on Jan 11 2011 by BAC, on recommendation by Terry Reedy and Nick Coghlan. -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sun Mar 13 12:03:02 2011 From: python-checkins at python.org (nick.coghlan) Date: Sun, 13 Mar 2011 12:03:02 +0100 Subject: [Python-checkins] cpython (merge 2.6 -> 2.7): Dummy merge of 2.6 reversion of logging change Message-ID: http://hg.python.org/cpython/rev/62cf7599e44a changeset: 68420:62cf7599e44a branch: 2.7 parent: 68419:52e1ad467edd parent: 68377:d6626c9fc28d user: Nick Coghlan date: Sun Mar 13 21:52:31 2011 +1000 summary: Dummy merge of 2.6 reversion of logging change files: Lib/logging/__init__.py Lib/logging/config.py Lib/test/test_logging.py -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 14:59:31 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 13 Mar 2011 14:59:31 +0100 (CET) Subject: [Python-checkins] r88767 - in tracker/instances/python-dev: extensions/create_patch.py html/issue.item.html schema.py Message-ID: <20110313135931.1F8D5EE994@mail.python.org> Author: martin.v.loewis Date: Sun Mar 13 14:59:30 2011 New Revision: 88767 Log: Add mercurial branches to issues. Added: tracker/instances/python-dev/extensions/create_patch.py Modified: tracker/instances/python-dev/html/issue.item.html tracker/instances/python-dev/schema.py Added: tracker/instances/python-dev/extensions/create_patch.py ============================================================================== --- (empty file) +++ tracker/instances/python-dev/extensions/create_patch.py Sun Mar 13 14:59:30 2011 @@ -0,0 +1,66 @@ +import os, tempfile +from roundup.cgi.actions import Action + +class NotChanged(ValueError): + pass + +def download_patch(source, lastrev): + from mercurial import hg, ui, localrepo, commands, bundlerepo + UI = ui.ui() + bundle = tempfile.mktemp() + cwd = os.getcwd() + os.chdir(base) + try: + repo0 = hg.repository(UI,base) + repo0.ui.quiet=True + repo0.ui.pushbuffer() + commands.pull(repo0.ui, repo0, quiet=True) + commands.incoming(repo0.ui, repo0, source=source, branch=['default'], bundle=bundle, force=False) + rhead = repo0.ui.popbuffer() + if rhead: + rhead = rhead.split(':')[1] + if rhead == 'lastrev': + raise NotChanged + repo=bundlerepo.bundlerepository(UI, ".", bundle) + repo.ui.pushbuffer() + commands.diff(repo.ui, repo, rev=['ancestor(.,default)', 'default']) + result = repo.ui.popbuffer() + finally: + os.chdir(cwd) + return result, rhead + +class CreatePatch(Action): + def handle(self): + db = self.db + if not self.hasPermission('Create', 'file'): + raise exceptions.Unauthorised, self._( + "You do not have permission to create files") + if self.classname != 'issue': + raise Reject, "create_patch is only useful for issues" + if not self.form.has_key('@repo'): + self.client.error_message.append('hgrepo missing') + return + repo = self.form['@repo'].value + url = db.hgrepo.get(repo, 'url') + if not url: + self.client.error_message.append('unknown hgrepo url') + return + lastrev = db.hgrepo.get(repo, 'lastrev') + try: + diff, head = download_patch(url, lastrev) + except NotChanged: + self.client.error_message.append('%s is already available' % head) + return + fileid = db.file.create(name='default.diff', + type='text/plain', + content=diff) + files = db.issue.get(self.nodeid, 'files') + files.append(fileid) + db.issue.set(self.nodeid, files=files) + db.hgrepo.set(repo, lastrev=head) + db.commit() + +def init(instance): + global base + base = os.path.join(instance.tracker_home, 'cpython') + instance.registerAction('create_patch', CreatePatch) Modified: tracker/instances/python-dev/html/issue.item.html ============================================================================== --- tracker/instances/python-dev/html/issue.item.html (original) +++ tracker/instances/python-dev/html/issue.item.html Sun Mar 13 14:59:30 2011 @@ -197,6 +197,15 @@
  • File Description:
    Mercurial Repo containing patches: + + +
    @@ -258,6 +267,24 @@
    + + + + + + +
    Repositories containing patches
    + link + +
    + + + +
    +
    + - + - - - + - - + From python-checkins at python.org Mon Mar 14 01:07:23 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 01:07:23 +0100 Subject: [Python-checkins] cpython: #1162477: accept '.' in addition to ':' when parsing time in date header. Message-ID: http://hg.python.org/cpython/rev/9d7a83654870 changeset: 68431:9d7a83654870 user: R David Murray date: Sun Mar 13 20:06:23 2011 -0400 summary: #1162477: accept '.' in addition to ':' when parsing time in date header. Some non-compliant MUAs use '.'s, so by the Postel Principle we should accept them. Patch by Thomas Herve. files: Lib/email/_parseaddr.py Lib/email/test/test_email.py Misc/NEWS diff --git a/Lib/email/_parseaddr.py b/Lib/email/_parseaddr.py --- a/Lib/email/_parseaddr.py +++ b/Lib/email/_parseaddr.py @@ -99,6 +99,14 @@ tss = '0' elif len(tm) == 3: [thh, tmm, tss] = tm + elif len(tm) == 1 and '.' in tm[0]: + # Some non-compliant MUAs use '.' to separate time elements. + tm = tm[0].split('.') + if len(tm) == 2: + [thh, tmm] = tm + tss = 0 + elif len(tm) == 3: + [thh, tmm, tss] = tm else: return None try: diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -2328,6 +2328,13 @@ (2002, 4, 3, 14, 58, 26, 0, 1, -1, -28800)) + def test_parsedate_accepts_time_with_dots(self): + eq = self.assertEqual + eq(utils.parsedate_tz('5 Feb 2003 13.47.26 -0800'), + (2003, 2, 5, 13, 47, 26, 0, 1, -1, -28800)) + eq(utils.parsedate_tz('5 Feb 2003 13.47 -0800'), + (2003, 2, 5, 13, 47, 0, 0, 1, -1, -28800)) + def test_parsedate_acceptable_to_time_functions(self): eq = self.assertEqual timetup = utils.parsedate('5 Feb 2003 13:47:26 -0800') diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -68,6 +68,9 @@ Library ------- +- Issue #1162477: Postel Principal adjustment to email date parsing: handle the + fact that some non-compliant MUAs use '.' instead of ':' in time specs. + - Issue #11131: Fix sign of zero in decimal.Decimal plus and minus operations when the rounding mode is ROUND_FLOOR. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 03:31:45 2011 From: python-checkins at python.org (martin.v.loewis) Date: Mon, 14 Mar 2011 03:31:45 +0100 (CET) Subject: [Python-checkins] r88777 - peps/trunk/pep-0383.txt Message-ID: <20110314023145.4F4B5EE99E@mail.python.org> Author: martin.v.loewis Date: Mon Mar 14 03:31:44 2011 New Revision: 88777 Log: Acknowledge Markus Kuhn's influence. Modified: peps/trunk/pep-0383.txt Modified: peps/trunk/pep-0383.txt ============================================================================== --- peps/trunk/pep-0383.txt (original) +++ peps/trunk/pep-0383.txt Mon Mar 14 03:31:44 2011 @@ -84,7 +84,7 @@ Unicode strings which then get encoded again (also see the discussion below). -Byte-orientied interfaces that already exist in Python 3.0 are not +Byte-oriented interfaces that already exist in Python 3.0 are not affected by this specification. They are neither enhanced nor deprecated. @@ -94,6 +94,9 @@ Discussion ========== +This surrogateescape encoding is based on Markus Kuhn's idea that +he called UTF-8b [3]. + While providing a uniform API to non-decodable bytes, this interface has the limitation that chosen representation only "works" if the data get converted back to bytes with the surrogateescape error handler @@ -176,6 +179,9 @@ "Codec Error Handling Callbacks" http://www.python.org/dev/peps/pep-0293/ + [3] UTF-8b + http://mail.nl.linux.org/linux-utf8/2000-07/msg00040.html + Copyright ========= From python-checkins at python.org Mon Mar 14 03:50:24 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 03:50:24 +0100 Subject: [Python-checkins] cpython (3.1): #11490: EACCES can also mean command not found Message-ID: http://hg.python.org/cpython/rev/2b75ac7c9c12 changeset: 68432:2b75ac7c9c12 branch: 3.1 parent: 68423:539e6f1fce78 user: R David Murray date: Sun Mar 13 22:13:09 2011 -0400 summary: #11490: EACCES can also mean command not found files: Lib/test/test_subprocess.py Misc/NEWS diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -554,7 +554,8 @@ stderr=subprocess.PIPE) # Windows raises IOError except (IOError, OSError) as err: - if err.errno != errno.ENOENT: # ignore "no such file" + # ignore errors that indicate the command was not found + if err.errno not in (errno.ENOENT, errno.EACCES): raise def test_issue8780(self): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -221,6 +221,9 @@ Tests ----- +- Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a + false positive if the last directory in the path is inaccessible. + - Issue #10822: Fix test_posix:test_getgroups failure under Solaris. Patch by Ross Lagerwall. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 03:50:26 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 03:50:26 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge fix for #11490 from 3.1. Message-ID: http://hg.python.org/cpython/rev/67f4ef6094ed changeset: 68433:67f4ef6094ed branch: 3.2 parent: 68429:4c59cd84086f parent: 68432:2b75ac7c9c12 user: R David Murray date: Sun Mar 13 22:26:53 2011 -0400 summary: Merge fix for #11490 from 3.1. files: Lib/test/test_subprocess.py Misc/NEWS diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -587,7 +587,8 @@ subprocess.Popen(['nonexisting_i_hope'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) - if c.exception.errno != errno.ENOENT: # ignore "no such file" + # ignore errors that indicate the command was not found + if c.exception.errno not in (errno.ENOENT, errno.EACCES): raise c.exception def test_issue8780(self): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -92,6 +92,9 @@ Tests ----- +- Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a + false positive if the last directory in the path is inaccessible. + - Issue #11223: Fix test_threadsignals to fail, not hang, when the non-semaphore implementation of locks is used under POSIX. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 03:50:31 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 03:50:31 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge fix for #11490 from 3.2. Message-ID: http://hg.python.org/cpython/rev/cdfdc99d21d3 changeset: 68434:cdfdc99d21d3 parent: 68431:9d7a83654870 parent: 68433:67f4ef6094ed user: R David Murray date: Sun Mar 13 22:31:35 2011 -0400 summary: Merge fix for #11490 from 3.2. files: Lib/test/test_subprocess.py Misc/NEWS diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -587,7 +587,8 @@ subprocess.Popen(['nonexisting_i_hope'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) - if c.exception.errno != errno.ENOENT: # ignore "no such file" + # ignore errors that indicate the command was not found + if c.exception.errno not in (errno.ENOENT, errno.EACCES): raise c.exception def test_issue8780(self): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -191,6 +191,9 @@ Tests ----- +- Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a + false positive if the last directory in the path is inaccessible. + - Issue #11223: Fix test_threadsignals to fail, not hang, when the non-semaphore implementation of locks is used under POSIX. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 03:50:32 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 03:50:32 +0100 Subject: [Python-checkins] cpython (2.7): #11490: EACCES can also mean command not found Message-ID: http://hg.python.org/cpython/rev/0a19b3278fa2 changeset: 68435:0a19b3278fa2 branch: 2.7 parent: 68389:350b956b3600 user: R David Murray date: Sun Mar 13 22:37:18 2011 -0400 summary: #11490: EACCES can also mean command not found files: Lib/test/test_subprocess.py Misc/NEWS diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -573,7 +573,8 @@ subprocess.Popen(['nonexisting_i_hope'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) - if c.exception.errno != errno.ENOENT: # ignore "no such file" + # ignore errors that indicate the command was not found + if c.exception.errno not in (errno.ENOENT, errno.EACCES): raise c.exception def test_handles_closed_on_exception(self): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -251,6 +251,9 @@ Tests ----- +- Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a + false positive if the last directory in the path is inaccessible. + - Issue #10822: Fix test_posix:test_getgroups failure under Solaris. Patch by Ross Lagerwall. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 03:50:35 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 03:50:35 +0100 Subject: [Python-checkins] cpython (merge 2.7 -> 2.7): merge heads Message-ID: http://hg.python.org/cpython/rev/095f4a1a62ea changeset: 68436:095f4a1a62ea branch: 2.7 parent: 68435:0a19b3278fa2 parent: 68427:22f991bb9b0b user: R David Murray date: Sun Mar 13 22:40:59 2011 -0400 summary: merge heads files: Misc/NEWS diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst --- a/Doc/c-api/buffer.rst +++ b/Doc/c-api/buffer.rst @@ -266,20 +266,6 @@ :cdata:`~Py_buffer.format`. -.. cfunction:: int PyObject_CopyToObject(PyObject *obj, void *buf, Py_ssize_t len, char fortran) - - Copy *len* bytes of data pointed to by the contiguous chunk of memory - pointed to by *buf* into the buffer exported by obj. The buffer must of - course be writable. Return 0 on success and return -1 and raise an error - on failure. If the object does not have a writable buffer, then an error - is raised. If *fortran* is ``'F'``, then if the object is - multi-dimensional, then the data will be copied into the array in - Fortran-style (first dimension varies the fastest). If *fortran* is - ``'C'``, then the data will be copied into the array in C-style (last - dimension varies the fastest). If *fortran* is ``'A'``, then it does not - matter and the copy will be made in whatever way is more efficient. - - .. cfunction:: int PyBuffer_IsContiguous(Py_buffer *view, char fortran) Return 1 if the memory defined by the *view* is C-style (*fortran* is diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -442,41 +442,44 @@ The simplest example of reading a CSV file:: import csv - reader = csv.reader(open("some.csv", "rb")) - for row in reader: - print row + with open('some.csv', 'rb') as f: + reader = csv.reader(f) + for row in reader: + print row Reading a file with an alternate format:: import csv - reader = csv.reader(open("passwd", "rb"), delimiter=':', quoting=csv.QUOTE_NONE) - for row in reader: - print row + with open('passwd', 'rb') as f: + reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE) + for row in reader: + print row The corresponding simplest possible writing example is:: import csv - writer = csv.writer(open("some.csv", "wb")) - writer.writerows(someiterable) + with open('some.csv', 'wb') as f: + writer = csv.writer(f) + writer.writerows(someiterable) Registering a new dialect:: import csv - csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE) - - reader = csv.reader(open("passwd", "rb"), 'unixpwd') + with open('passwd', 'rb') as f: + reader = csv.reader(f, 'unixpwd') A slightly more advanced use of the reader --- catching and reporting errors:: import csv, sys - filename = "some.csv" - reader = csv.reader(open(filename, "rb")) - try: - for row in reader: - print row - except csv.Error, e: - sys.exit('file %s, line %d: %s' % (filename, reader.line_num, e)) + filename = 'some.csv' + with open(filename, 'rb') as f: + reader = csv.reader(f) + try: + for row in reader: + print row + except csv.Error, e: + sys.exit('file %s, line %d: %s' % (filename, reader.line_num, e)) And while the module doesn't directly support parsing strings, it can easily be done:: diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -63,18 +63,6 @@ assign a special meaning to the elements of this tuple, while others are usually called only with a single string giving an error message. - .. method:: with_traceback(tb) - - This method sets *tb* as the new traceback for the exception and returns - the exception object. It is usually used in exception handling code like - this:: - - try: - ... - except SomeException: - tb = sys.exc_info()[2] - raise OtherException(...).with_traceback(tb) - .. exception:: Exception diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -1895,6 +1895,8 @@ specified, the instance will use it for logging output; otherwise, *sys.stderr* will be used. + .. versionchanged:: 2.7 + The ``stream`` parameter was called ``strm`` in earlier versions. .. method:: emit(record) diff --git a/Doc/library/numbers.rst b/Doc/library/numbers.rst --- a/Doc/library/numbers.rst +++ b/Doc/library/numbers.rst @@ -47,7 +47,7 @@ To :class:`Complex`, :class:`Real` adds the operations that work on real numbers. - In short, those are: a conversion to :class:`float`, :func:`trunc`, + In short, those are: a conversion to :class:`float`, :func:`math.trunc`, :func:`round`, :func:`math.floor`, :func:`math.ceil`, :func:`divmod`, ``//``, ``%``, ``<``, ``<=``, ``>``, and ``>=``. diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2388,11 +2388,12 @@ .. method:: file.readline([size]) - Read one entire line from the file. A trailing newline character is kept in the - string (but may be absent when a file ends with an incomplete line). [#]_ If - the *size* argument is present and non-negative, it is a maximum byte count - (including the trailing newline) and an incomplete line may be returned. An - empty string is returned *only* when EOF is encountered immediately. + Read one entire line from the file. A trailing newline character is kept in + the string (but may be absent when a file ends with an incomplete line). [#]_ + If the *size* argument is present and non-negative, it is a maximum byte + count (including the trailing newline) and an incomplete line may be + returned. When *size* is not 0, an empty string is returned *only* when EOF + is encountered immediately. .. note:: diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -194,7 +194,7 @@ .. _unittest-command-line-interface: -Command Line Interface +Command-Line Interface ---------------------- The unittest module can be used from the command line to run tests from diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst --- a/Doc/tutorial/inputoutput.rst +++ b/Doc/tutorial/inputoutput.rst @@ -103,17 +103,18 @@ (Note that in the first example, one space between each column was added by the way :keyword:`print` works: it always adds spaces between its arguments.) -This example demonstrates the :meth:`rjust` method of string objects, which -right-justifies a string in a field of a given width by padding it with spaces -on the left. There are similar methods :meth:`ljust` and :meth:`center`. These -methods do not write anything, they just return a new string. If the input -string is too long, they don't truncate it, but return it unchanged; this will -mess up your column lay-out but that's usually better than the alternative, -which would be lying about a value. (If you really want truncation you can -always add a slice operation, as in ``x.ljust(n)[:n]``.) +This example demonstrates the :meth:`str.rjust` method of string +objects, which right-justifies a string in a field of a given width by padding +it with spaces on the left. There are similar methods :meth:`str.ljust` and +:meth:`str.center`. These methods do not write anything, they just return a +new string. If the input string is too long, they don't truncate it, but +return it unchanged; this will mess up your column lay-out but that's usually +better than the alternative, which would be lying about a value. (If you +really want truncation you can always add a slice operation, as in +``x.ljust(n)[:n]``.) -There is another method, :meth:`zfill`, which pads a numeric string on the left -with zeros. It understands about plus and minus signs:: +There is another method, :meth:`str.zfill`, which pads a numeric string on the +left with zeros. It understands about plus and minus signs:: >>> '12'.zfill(5) '00012' @@ -128,16 +129,16 @@ We are the knights who say "Ni!" The brackets and characters within them (called format fields) are replaced with -the objects passed into the :meth:`~str.format` method. A number in the +the objects passed into the :meth:`str.format` method. A number in the brackets refers to the position of the object passed into the -:meth:`~str.format` method. :: +:meth:`str.format` method. :: >>> print '{0} and {1}'.format('spam', 'eggs') spam and eggs >>> print '{1} and {0}'.format('spam', 'eggs') eggs and spam -If keyword arguments are used in the :meth:`~str.format` method, their values +If keyword arguments are used in the :meth:`str.format` method, their values are referred to by using the name of the argument. :: >>> print 'This {food} is {adjective}.'.format( @@ -195,8 +196,8 @@ >>> print 'Jack: {Jack:d}; Sjoerd: {Sjoerd:d}; Dcab: {Dcab:d}'.format(**table) Jack: 4098; Sjoerd: 4127; Dcab: 8637678 -This is particularly useful in combination with the new built-in :func:`vars` -function, which returns a dictionary containing all local variables. +This is particularly useful in combination with the built-in function +:func:`vars`, which returns a dictionary containing all local variables. For a complete overview of string formatting with :meth:`str.format`, see :ref:`formatstrings`. diff --git a/Lib/decimal.py b/Lib/decimal.py --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -1068,14 +1068,16 @@ if ans: return ans - if not self: - # -Decimal('0') is Decimal('0'), not Decimal('-0') + if context is None: + context = getcontext() + + if not self and context.rounding != ROUND_FLOOR: + # -Decimal('0') is Decimal('0'), not Decimal('-0'), except + # in ROUND_FLOOR rounding mode. ans = self.copy_abs() else: ans = self.copy_negate() - if context is None: - context = getcontext() return ans._fix(context) def __pos__(self, context=None): @@ -1088,14 +1090,15 @@ if ans: return ans - if not self: - # + (-0) = 0 + if context is None: + context = getcontext() + + if not self and context.rounding != ROUND_FLOOR: + # + (-0) = 0, except in ROUND_FLOOR rounding mode. ans = self.copy_abs() else: ans = Decimal(self) - if context is None: - context = getcontext() return ans._fix(context) def __abs__(self, round=True, context=None): diff --git a/Lib/test/decimaltestdata/extra.decTest b/Lib/test/decimaltestdata/extra.decTest --- a/Lib/test/decimaltestdata/extra.decTest +++ b/Lib/test/decimaltestdata/extra.decTest @@ -2745,3 +2745,73 @@ pwmx438 power 18 1728 1729 -> 1 pwmx439 power 19 1728 1729 -> 456 pwmx440 power 20 1728 1729 -> 1 + +-- plus and minus zero in various rounding modes (see issue 11131) +extended: 1 +precision: 9 +maxexponent: 384 +minexponent: -383 + +rounding: half_even +plux1000 plus 0.0 -> 0.0 +plux1001 plus -0.0 -> 0.0 +minx1000 minus 0.0 -> 0.0 +minx1001 minus -0.0 -> 0.0 +absx1000 abs 0.0 -> 0.0 +absx1001 abs -0.0 -> 0.0 + +rounding: half_up +plux1010 plus 0.0 -> 0.0 +minx1010 minus 0.0 -> 0.0 +plux1011 plus -0.0 -> 0.0 +minx1011 minus -0.0 -> 0.0 +absx1010 abs 0.0 -> 0.0 +absx1011 abs -0.0 -> 0.0 + +rounding: ceiling +plux1020 plus 0.0 -> 0.0 +minx1020 minus 0.0 -> 0.0 +plux1021 plus -0.0 -> 0.0 +minx1021 minus -0.0 -> 0.0 +absx1020 abs 0.0 -> 0.0 +absx1021 abs -0.0 -> 0.0 + +rounding: floor +plux1030 plus 0.0 -> 0.0 +minx1030 minus 0.0 -> -0.0 +plux1031 plus -0.0 -> -0.0 +minx1031 minus -0.0 -> 0.0 +absx1030 abs 0.0 -> 0.0 +absx1031 abs -0.0 -> 0.0 + +rounding: down +plux1040 plus 0.0 -> 0.0 +minx1040 minus 0.0 -> 0.0 +plux1041 plus -0.0 -> 0.0 +minx1041 minus -0.0 -> 0.0 +absx1040 abs 0.0 -> 0.0 +absx1041 abs -0.0 -> 0.0 + +rounding: up +plux1050 plus 0.0 -> 0.0 +minx1050 minus 0.0 -> 0.0 +plux1051 plus -0.0 -> 0.0 +minx1051 minus -0.0 -> 0.0 +absx1050 abs 0.0 -> 0.0 +absx1051 abs -0.0 -> 0.0 + +rounding: half_down +plux1060 plus 0.0 -> 0.0 +minx1060 minus 0.0 -> 0.0 +plux1061 plus -0.0 -> 0.0 +minx1061 minus -0.0 -> 0.0 +absx1060 abs 0.0 -> 0.0 +absx1061 abs -0.0 -> 0.0 + +rounding: 05up +plux1070 plus 0.0 -> 0.0 +minx1070 minus 0.0 -> 0.0 +plux1071 plus -0.0 -> 0.0 +minx1071 minus -0.0 -> 0.0 +absx1070 abs 0.0 -> 0.0 +absx1071 abs -0.0 -> 0.0 diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -43,6 +43,9 @@ Library ------- +- Issue #11131: Fix sign of zero in plus and minus operations when + the context rounding mode is ROUND_FLOOR. + - Issue #5622: Fix curses.wrapper to raise correct exception if curses initialization fails. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 03:50:38 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 03:50:38 +0100 Subject: [Python-checkins] cpython (3.2): Fix whitespace Message-ID: http://hg.python.org/cpython/rev/f65aad1226b7 changeset: 68437:f65aad1226b7 branch: 3.2 parent: 68433:67f4ef6094ed user: R David Murray date: Sun Mar 13 22:48:55 2011 -0400 summary: Fix whitespace files: Lib/test/test_subprocess.py diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -588,7 +588,7 @@ stdout=subprocess.PIPE, stderr=subprocess.PIPE) # ignore errors that indicate the command was not found - if c.exception.errno not in (errno.ENOENT, errno.EACCES): + if c.exception.errno not in (errno.ENOENT, errno.EACCES): raise c.exception def test_issue8780(self): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 03:50:40 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 03:50:40 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge whitespace fix from 3.2. Message-ID: http://hg.python.org/cpython/rev/1cd2082ade48 changeset: 68438:1cd2082ade48 parent: 68434:cdfdc99d21d3 parent: 68437:f65aad1226b7 user: R David Murray date: Sun Mar 13 22:49:44 2011 -0400 summary: Merge whitespace fix from 3.2. files: Lib/test/test_subprocess.py diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -588,7 +588,7 @@ stdout=subprocess.PIPE, stderr=subprocess.PIPE) # ignore errors that indicate the command was not found - if c.exception.errno not in (errno.ENOENT, errno.EACCES): + if c.exception.errno not in (errno.ENOENT, errno.EACCES): raise c.exception def test_issue8780(self): -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Mon Mar 14 05:09:12 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Mon, 14 Mar 2011 05:09:12 +0100 Subject: [Python-checkins] Daily reference leaks (9d7a83654870): sum=-323 Message-ID: results for 9d7a83654870 on branch "default" -------------------------------------------- test_pydoc leaked [0, -323, 0] references, sum=-323 Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflog434ReP', '-x'] From python-checkins at python.org Mon Mar 14 09:52:06 2011 From: python-checkins at python.org (ross.lagerwall) Date: Mon, 14 Mar 2011 09:52:06 +0100 Subject: [Python-checkins] cpython (3.1): Issue #10885: Fix multiprocessing docs typo Message-ID: http://hg.python.org/cpython/rev/5dabfc3e4dd5 changeset: 68439:5dabfc3e4dd5 branch: 3.1 parent: 68432:2b75ac7c9c12 user: Ross Lagerwall date: Mon Mar 14 10:40:15 2011 +0200 summary: Issue #10885: Fix multiprocessing docs typo files: Doc/library/multiprocessing.rst diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -867,7 +867,7 @@ .. class:: Semaphore([value]) - A bounded semaphore object: a clone of :class:`threading.Semaphore`. + A semaphore object: a clone of :class:`threading.Semaphore`. .. note:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 09:52:09 2011 From: python-checkins at python.org (ross.lagerwall) Date: Mon, 14 Mar 2011 09:52:09 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge from 3.1 Message-ID: http://hg.python.org/cpython/rev/3bf07c74aef1 changeset: 68440:3bf07c74aef1 branch: 3.2 parent: 68437:f65aad1226b7 parent: 68439:5dabfc3e4dd5 user: Ross Lagerwall date: Mon Mar 14 10:41:58 2011 +0200 summary: Merge from 3.1 files: Doc/library/multiprocessing.rst diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -869,7 +869,7 @@ .. class:: Semaphore([value]) - A bounded semaphore object: a clone of :class:`threading.Semaphore`. + A semaphore object: a clone of :class:`threading.Semaphore`. .. note:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 09:52:11 2011 From: python-checkins at python.org (ross.lagerwall) Date: Mon, 14 Mar 2011 09:52:11 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge with 3.2 Message-ID: http://hg.python.org/cpython/rev/a49bda5ff3d5 changeset: 68441:a49bda5ff3d5 parent: 68438:1cd2082ade48 parent: 68440:3bf07c74aef1 user: Ross Lagerwall date: Mon Mar 14 10:42:24 2011 +0200 summary: Merge with 3.2 files: Doc/library/multiprocessing.rst diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -875,7 +875,7 @@ .. class:: Semaphore([value]) - A bounded semaphore object: a clone of :class:`threading.Semaphore`. + A semaphore object: a clone of :class:`threading.Semaphore`. .. note:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 09:52:13 2011 From: python-checkins at python.org (ross.lagerwall) Date: Mon, 14 Mar 2011 09:52:13 +0100 Subject: [Python-checkins] cpython (2.7): Issue #10885: Fix multiprocessing docs typo Message-ID: http://hg.python.org/cpython/rev/b2ebe9f5faca changeset: 68442:b2ebe9f5faca branch: 2.7 parent: 68436:095f4a1a62ea user: Ross Lagerwall date: Mon Mar 14 10:43:36 2011 +0200 summary: Issue #10885: Fix multiprocessing docs typo files: Doc/library/multiprocessing.rst diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -869,7 +869,7 @@ .. class:: Semaphore([value]) - A bounded semaphore object: a clone of :class:`threading.Semaphore`. + A semaphore object: a clone of :class:`threading.Semaphore`. .. note:: -- Repository URL: http://hg.python.org/cpython From ncoghlan at gmail.com Mon Mar 14 11:01:17 2011 From: ncoghlan at gmail.com (Nick Coghlan) Date: Mon, 14 Mar 2011 06:01:17 -0400 Subject: [Python-checkins] cpython (3.2): Issue #11329: PyEval_InitThreads() cannot be called before Py_Initialize() In-Reply-To: References: Message-ID: On Sun, Mar 13, 2011 at 6:29 PM, antoine.pitrou wrote: > ? ?.. index:: single: Py_Initialize() > > - ? This is a no-op when called for a second time. ?It is safe to call this function > - ? before calling :c:func:`Py_Initialize`. > + ? This is a no-op when called for a second time. This change probably deserves a "versionchanged" tag and a note in the "Porting to Python 3" section of What's New, since it may cause weirdness for people embedding Python in their apps. Cheers, Nick. - Nick Coghlan?? |?? ncoghlan at gmail.com?? |?? Brisbane, Australia From solipsis at pitrou.net Mon Mar 14 12:47:25 2011 From: solipsis at pitrou.net (Antoine Pitrou) Date: Mon, 14 Mar 2011 12:47:25 +0100 Subject: [Python-checkins] cpython (3.2): Issue #11329: PyEval_InitThreads() cannot be called before Py_Initialize() References: Message-ID: <20110314124725.269d3573@pitrou.net> On Mon, 14 Mar 2011 06:01:17 -0400 Nick Coghlan wrote: > On Sun, Mar 13, 2011 at 6:29 PM, antoine.pitrou > wrote: > > ? ?.. index:: single: Py_Initialize() > > > > - ? This is a no-op when called for a second time. ?It is safe to call this function > > - ? before calling :c:func:`Py_Initialize`. > > + ? This is a no-op when called for a second time. > > This change probably deserves a "versionchanged" tag and a note in the > "Porting to Python 3" section of What's New, since it may cause > weirdness for people embedding Python in their apps. Agreed, will do. cheers Antoine. From python-checkins at python.org Mon Mar 14 15:01:42 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 15:01:42 +0100 Subject: [Python-checkins] cpython (3.1): #11488: Add tests for writelines method of SpooledTemporaryFile. Message-ID: http://hg.python.org/cpython/rev/f816841bab03 changeset: 68443:f816841bab03 branch: 3.1 parent: 68439:5dabfc3e4dd5 user: R David Murray date: Mon Mar 14 09:55:46 2011 -0400 summary: #11488: Add tests for writelines method of SpooledTemporaryFile. Patch by Evan Dandrea. files: Lib/test/test_tempfile.py Misc/ACKS diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py --- a/Lib/test/test_tempfile.py +++ b/Lib/test/test_tempfile.py @@ -697,6 +697,23 @@ f.write(b'x') self.assertTrue(f._rolled) + def test_writelines(self): + # Verify writelines with a SpooledTemporaryFile + f = self.do_create() + f.writelines((b'x', b'y', b'z')) + f.seek(0) + buf = f.read() + self.assertEqual(buf, b'xyz') + + def test_writelines_sequential(self): + # A SpooledTemporaryFile should hold exactly max_size bytes, and roll + # over afterward + f = self.do_create(max_size=35) + f.writelines((b'x' * 20, b'x' * 10, b'x' * 5)) + self.assertFalse(f._rolled) + f.write(b'x') + self.assertTrue(f._rolled) + def test_sparse(self): # A SpooledTemporaryFile that is written late in the file will extend # when that occurs diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -176,6 +176,7 @@ Lisandro Dalcin Andrew Dalke Lars Damerow +Evan Dandrea Eric Daniel Scott David Daniels Ben Darnell -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 15:01:46 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 15:01:46 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge #11488 patch from 3.1. Message-ID: http://hg.python.org/cpython/rev/da37cc4bd088 changeset: 68444:da37cc4bd088 branch: 3.2 parent: 68440:3bf07c74aef1 parent: 68443:f816841bab03 user: R David Murray date: Mon Mar 14 09:57:03 2011 -0400 summary: Merge #11488 patch from 3.1. files: Lib/test/test_tempfile.py Misc/ACKS diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py --- a/Lib/test/test_tempfile.py +++ b/Lib/test/test_tempfile.py @@ -704,6 +704,23 @@ f.write(b'x') self.assertTrue(f._rolled) + def test_writelines(self): + # Verify writelines with a SpooledTemporaryFile + f = self.do_create() + f.writelines((b'x', b'y', b'z')) + f.seek(0) + buf = f.read() + self.assertEqual(buf, b'xyz') + + def test_writelines_sequential(self): + # A SpooledTemporaryFile should hold exactly max_size bytes, and roll + # over afterward + f = self.do_create(max_size=35) + f.writelines((b'x' * 20, b'x' * 10, b'x' * 5)) + self.assertFalse(f._rolled) + f.write(b'x') + self.assertTrue(f._rolled) + def test_sparse(self): # A SpooledTemporaryFile that is written late in the file will extend # when that occurs diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -196,6 +196,7 @@ Lisandro Dalcin Andrew Dalke Lars Damerow +Evan Dandrea Eric Daniel Scott David Daniels Ben Darnell -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 15:01:47 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 15:01:47 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #11488 patch from 3.2. Message-ID: http://hg.python.org/cpython/rev/7942f613ea5c changeset: 68445:7942f613ea5c parent: 68441:a49bda5ff3d5 parent: 68444:da37cc4bd088 user: R David Murray date: Mon Mar 14 09:58:59 2011 -0400 summary: Merge #11488 patch from 3.2. files: Misc/ACKS diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py --- a/Lib/test/test_tempfile.py +++ b/Lib/test/test_tempfile.py @@ -704,6 +704,23 @@ f.write(b'x') self.assertTrue(f._rolled) + def test_writelines(self): + # Verify writelines with a SpooledTemporaryFile + f = self.do_create() + f.writelines((b'x', b'y', b'z')) + f.seek(0) + buf = f.read() + self.assertEqual(buf, b'xyz') + + def test_writelines_sequential(self): + # A SpooledTemporaryFile should hold exactly max_size bytes, and roll + # over afterward + f = self.do_create(max_size=35) + f.writelines((b'x' * 20, b'x' * 10, b'x' * 5)) + self.assertFalse(f._rolled) + f.write(b'x') + self.assertTrue(f._rolled) + def test_sparse(self): # A SpooledTemporaryFile that is written late in the file will extend # when that occurs diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -197,6 +197,7 @@ Lisandro Dalcin Andrew Dalke Lars Damerow +Evan Dandrea Eric Daniel Scott David Daniels Ben Darnell -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 15:01:48 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 15:01:48 +0100 Subject: [Python-checkins] cpython (2.7): Port #11488 patch from 3.1 (changeset f816841bab03) Message-ID: http://hg.python.org/cpython/rev/7aee0fe6ae5d changeset: 68446:7aee0fe6ae5d branch: 2.7 parent: 68442:b2ebe9f5faca user: R David Murray date: Mon Mar 14 10:01:12 2011 -0400 summary: Port #11488 patch from 3.1 (changeset f816841bab03) files: Lib/test/test_tempfile.py Misc/ACKS diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py --- a/Lib/test/test_tempfile.py +++ b/Lib/test/test_tempfile.py @@ -689,6 +689,23 @@ f.write('x') self.assertTrue(f._rolled) + def test_writelines(self): + # Verify writelines with a SpooledTemporaryFile + f = self.do_create() + f.writelines((b'x', b'y', b'z')) + f.seek(0) + buf = f.read() + self.assertEqual(buf, b'xyz') + + def test_writelines_sequential(self): + # A SpooledTemporaryFile should hold exactly max_size bytes, and roll + # over afterward + f = self.do_create(max_size=35) + f.writelines((b'x' * 20, b'x' * 10, b'x' * 5)) + self.assertFalse(f._rolled) + f.write(b'x') + self.assertTrue(f._rolled) + def test_sparse(self): # A SpooledTemporaryFile that is written late in the file will extend # when that occurs diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -182,6 +182,7 @@ Lisandro Dalcin Andrew Dalke Lars Damerow +Evan Dandrea Eric Daniel Scott David Daniels Ben Darnell -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 15:23:56 2011 From: python-checkins at python.org (brett.cannon) Date: Mon, 14 Mar 2011 15:23:56 +0100 Subject: [Python-checkins] devguide: List Jeff Hardy's new push privileges. Message-ID: http://hg.python.org/devguide/rev/0c1182ee0035 changeset: 392:0c1182ee0035 user: Brett Cannon date: Mon Mar 14 10:23:52 2011 -0400 summary: List Jeff Hardy's new push privileges. files: developers.rst diff --git a/developers.rst b/developers.rst --- a/developers.rst +++ b/developers.rst @@ -24,6 +24,9 @@ Permissions History ------------------- +- Jeff Hardy was given push privileges on Mar 14 2011 by BAC, for stdlib + compatibility work for IronPython. + - Alex Gaynor and Maciej Fijalkowski were given push privileges on Mar 13 2011 by BAC, for stdlib compatibility work for PyPy. -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Mon Mar 14 15:57:00 2011 From: python-checkins at python.org (eric.smith) Date: Mon, 14 Mar 2011 15:57:00 +0100 Subject: [Python-checkins] cpython: Typos. Message-ID: http://hg.python.org/cpython/rev/c919a82b5a40 changeset: 68447:c919a82b5a40 parent: 68445:7942f613ea5c user: Eric V. Smith date: Mon Mar 14 10:56:33 2011 -0400 summary: Typos. files: Lib/importlib/_bootstrap.py diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -765,7 +765,7 @@ being made from, and the level adjustment. This function represents the greatest common denominator of functionality - between import_module and __import__. This includes settting __package__ if + between import_module and __import__. This includes setting __package__ if the loader did not. """ @@ -855,7 +855,7 @@ module = _gcd_import(name) else: # __package__ is not guaranteed to be defined or could be set to None - # to represent that it's proper value is unknown + # to represent that its proper value is unknown package = globals.get('__package__') if package is None: package = globals['__name__'] -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 15:57:35 2011 From: python-checkins at python.org (brett.cannon) Date: Mon, 14 Mar 2011 15:57:35 +0100 Subject: [Python-checkins] devguide: When a new library is made available which is a dependency, you need Message-ID: http://hg.python.org/devguide/rev/9bacb56f08e7 changeset: 393:9bacb56f08e7 user: Brett Cannon date: Mon Mar 14 10:57:26 2011 -0400 summary: When a new library is made available which is a dependency, you need to also run configure. Closes issue 11497 files: setup.rst diff --git a/setup.rst b/setup.rst --- a/setup.rst +++ b/setup.rst @@ -117,8 +117,8 @@ Do take note of what modules were **not** built as stated at the end of your build. More than likely you are missing a dependency for the module(s) that -were not built, and so you can install the dependencies and re-run ``make`` -(if available for your OS). +were not built, and so you can install the dependencies and re-run both +``configure`` and ``make`` (if available for your OS). Otherwise the build failed and thus should be fixed (at least with a bug being filed on the `issue tracker`_). -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Mon Mar 14 16:57:27 2011 From: python-checkins at python.org (eric.smith) Date: Mon, 14 Mar 2011 16:57:27 +0100 Subject: [Python-checkins] cpython: Skip test if zlib not present. Closes #11498. Patch by Natalia B. Bidart. Message-ID: http://hg.python.org/cpython/rev/89af3880ca57 changeset: 68448:89af3880ca57 user: Eric V. Smith date: Mon Mar 14 11:57:16 2011 -0400 summary: Skip test if zlib not present. Closes #11498. Patch by Natalia B. Bidart. files: Lib/importlib/_bootstrap.py Lib/test/test_zipfile.py Misc/ACKS diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -240,7 +240,7 @@ @classmethod @_requires_builtin def is_package(cls, fullname): - """Return None as built-in module are never packages.""" + """Return None as built-in modules are never packages.""" return False diff --git a/Lib/test/test_zipfile.py b/Lib/test/test_zipfile.py --- a/Lib/test/test_zipfile.py +++ b/Lib/test/test_zipfile.py @@ -489,6 +489,7 @@ except zipfile.BadZipFile: self.assertTrue(zipfp2.fp is None, 'zipfp is not closed') + @skipUnless(zlib, "requires zlib") def test_unicode_filenames(self): # bug #10801 fname = findfile('zip_cp437_header.zip') diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -80,6 +80,7 @@ Steven Bethard Stephen Bevan Ron Bickers +Natalia B. Bidart Adrian von Bidder David Binger Dominic Binks -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 17:12:34 2011 From: python-checkins at python.org (ronald.oussoren) Date: Mon, 14 Mar 2011 17:12:34 +0100 Subject: [Python-checkins] cpython (3.1): Fixes #1099: Mac compile fails with pydebug and framework enabled Message-ID: http://hg.python.org/cpython/rev/7af5a9298251 changeset: 68449:7af5a9298251 branch: 3.1 parent: 68443:f816841bab03 user: Ronald Oussoren date: Mon Mar 14 10:11:59 2011 -0400 summary: Fixes #1099: Mac compile fails with pydebug and framework enabled Without this patch "./configure --with-pydebug --enable-framework CC=gcc-4.0" fails on MacOSX files: Makefile.pre.in Misc/NEWS diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -459,18 +459,12 @@ $(LIBRARY) \ $(RESSRCDIR)/Info.plist $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION) - if test "${UNIVERSALSDK}"; then \ - $(CC) -o $(LDLIBRARY) @UNIVERSAL_ARCH_FLAGS@ -dynamiclib \ - -isysroot "${UNIVERSALSDK}" \ - -all_load $(LIBRARY) -Wl,-single_module \ - -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \ - -compatibility_version $(VERSION) \ - -current_version $(VERSION) \ - -framework CoreFoundation $(LIBS); \ - else \ - /usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \ - @LIBTOOL_CRUFT@ -framework CoreFoundation $(LIBS);\ - fi + $(CC) -o $(LDLIBRARY) $(LDFLAGS) -dynamiclib \ + -all_load $(LIBRARY) -Wl,-single_module \ + -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \ + -compatibility_version $(VERSION) \ + -current_version $(VERSION) \ + -framework CoreFoundation $(LIBS); $(INSTALL) -d -m $(DIRMODE) \ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -218,6 +218,9 @@ support now looks for "__powerpc__" as well as "__ppc__": the latter seems to only be present on OS X; the former is the correct one for Linux with GCC. +- Issue #1099: Fix the build on MacOSX when building a framework with pydebug + using GCC 4.0. + Tests ----- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 17:12:37 2011 From: python-checkins at python.org (ronald.oussoren) Date: Mon, 14 Mar 2011 17:12:37 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Issue #1099: Fix the build on MacOSX when building a framework with pydebug Message-ID: http://hg.python.org/cpython/rev/e8679f07badd changeset: 68450:e8679f07badd branch: 3.2 parent: 68444:da37cc4bd088 parent: 68449:7af5a9298251 user: Ronald Oussoren date: Mon Mar 14 11:04:34 2011 -0400 summary: Issue #1099: Fix the build on MacOSX when building a framework with pydebug using GCC 4.0. files: Makefile.pre.in Misc/NEWS diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -487,18 +487,12 @@ $(LIBRARY) \ $(RESSRCDIR)/Info.plist $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION) - if test "${UNIVERSALSDK}"; then \ - $(CC) -o $(LDLIBRARY) @UNIVERSAL_ARCH_FLAGS@ -dynamiclib \ - -isysroot "${UNIVERSALSDK}" \ - -all_load $(LIBRARY) -Wl,-single_module \ - -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \ - -compatibility_version $(VERSION) \ - -current_version $(VERSION) \ - -framework CoreFoundation $(LIBS); \ - else \ - /usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \ - @LIBTOOL_CRUFT@ -framework CoreFoundation $(LIBS);\ - fi + $(CC) -o $(LDLIBRARY) $(PY_LDFLAGS) -dynamiclib \ + -all_load $(LIBRARY) -Wl,-single_module \ + -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \ + -compatibility_version $(VERSION) \ + -current_version $(VERSION) \ + -framework CoreFoundation $(LIBS); $(INSTALL) -d -m $(DIRMODE) \ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -516,6 +516,9 @@ support now looks for "__powerpc__" as well as "__ppc__": the latter seems to only be present on OS X; the former is the correct one for Linux with GCC. +- Issue #1099: Fix the build on MacOSX when building a framework with pydebug + using GCC 4.0. + Tools/Demos ----------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 17:12:40 2011 From: python-checkins at python.org (ronald.oussoren) Date: Mon, 14 Mar 2011 17:12:40 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #1099: Fix the build on MacOSX when building a framework with pydebug Message-ID: http://hg.python.org/cpython/rev/4c651c1abd28 changeset: 68451:4c651c1abd28 parent: 68445:7942f613ea5c parent: 68450:e8679f07badd user: Ronald Oussoren date: Mon Mar 14 11:34:21 2011 -0400 summary: Issue #1099: Fix the build on MacOSX when building a framework with pydebug using GCC 4.0. files: Makefile.pre.in Misc/NEWS diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -486,18 +486,12 @@ $(LIBRARY) \ $(RESSRCDIR)/Info.plist $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION) - if test "${UNIVERSALSDK}"; then \ - $(CC) -o $(LDLIBRARY) @UNIVERSAL_ARCH_FLAGS@ -dynamiclib \ - -isysroot "${UNIVERSALSDK}" \ - -all_load $(LIBRARY) -Wl,-single_module \ - -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \ - -compatibility_version $(VERSION) \ - -current_version $(VERSION) \ - -framework CoreFoundation $(LIBS); \ - else \ - /usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \ - @LIBTOOL_CRUFT@ -framework CoreFoundation $(LIBS);\ - fi + $(CC) -o $(LDLIBRARY) $(PY_LDFLAGS) -dynamiclib \ + -all_load $(LIBRARY) -Wl,-single_module \ + -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \ + -compatibility_version $(VERSION) \ + -current_version $(VERSION) \ + -framework CoreFoundation $(LIBS); $(INSTALL) -d -m $(DIRMODE) \ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -621,6 +621,9 @@ support now looks for "__powerpc__" as well as "__ppc__": the latter seems to only be present on OS X; the former is the correct one for Linux with GCC. +- Issue #1099: Fix the build on MacOSX when building a framework with pydebug + using GCC 4.0. + Tools/Demos ----------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 17:12:44 2011 From: python-checkins at python.org (ronald.oussoren) Date: Mon, 14 Mar 2011 17:12:44 +0100 Subject: [Python-checkins] cpython (2.7): Issue #1099: Fix the build on MacOSX when building a framework with pydebug Message-ID: http://hg.python.org/cpython/rev/bcca0a6ebbd2 changeset: 68452:bcca0a6ebbd2 branch: 2.7 parent: 68446:7aee0fe6ae5d user: Ronald Oussoren date: Mon Mar 14 11:57:39 2011 -0400 summary: Issue #1099: Fix the build on MacOSX when building a framework with pydebug using GCC 4.0. files: Makefile.pre.in Misc/NEWS diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -457,17 +457,11 @@ $(LIBRARY) \ $(RESSRCDIR)/Info.plist $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION) - if test "${UNIVERSALSDK}"; then \ - $(CC) -o $(LDLIBRARY) @UNIVERSAL_ARCH_FLAGS@ -dynamiclib \ - -isysroot "${UNIVERSALSDK}" \ - -all_load $(LIBRARY) -Wl,-single_module \ - -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \ - -compatibility_version $(VERSION) \ - -current_version $(VERSION); \ - else \ - /usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \ - @LIBTOOL_CRUFT@ ;\ - fi + $(CC) -o $(LDLIBRARY) $(LDFLAGS) -dynamiclib \ + -all_load $(LIBRARY) -Wl,-single_module \ + -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \ + -compatibility_version $(VERSION) \ + -current_version $(VERSION); $(INSTALL) -d -m $(DIRMODE) \ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -251,6 +251,9 @@ support now looks for "__powerpc__" as well as "__ppc__": the latter seems to only be present on OS X; the former is the correct one for Linux with GCC. +- Issue #1099: Fix the build on MacOSX when building a framework with pydebug + using GCC 4.0. + Tests ----- @@ -795,6 +798,7 @@ - Issue #7567: Don't call `setupterm' twice. + Tools/Demos ----------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 17:12:46 2011 From: python-checkins at python.org (ronald.oussoren) Date: Mon, 14 Mar 2011 17:12:46 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge Message-ID: http://hg.python.org/cpython/rev/f12c3706debf changeset: 68453:f12c3706debf parent: 68451:4c651c1abd28 parent: 68448:89af3880ca57 user: Ronald Oussoren date: Mon Mar 14 12:12:23 2011 -0400 summary: merge files: diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -240,7 +240,7 @@ @classmethod @_requires_builtin def is_package(cls, fullname): - """Return None as built-in module are never packages.""" + """Return None as built-in modules are never packages.""" return False @@ -765,7 +765,7 @@ being made from, and the level adjustment. This function represents the greatest common denominator of functionality - between import_module and __import__. This includes settting __package__ if + between import_module and __import__. This includes setting __package__ if the loader did not. """ @@ -855,7 +855,7 @@ module = _gcd_import(name) else: # __package__ is not guaranteed to be defined or could be set to None - # to represent that it's proper value is unknown + # to represent that its proper value is unknown package = globals.get('__package__') if package is None: package = globals['__name__'] diff --git a/Lib/test/test_zipfile.py b/Lib/test/test_zipfile.py --- a/Lib/test/test_zipfile.py +++ b/Lib/test/test_zipfile.py @@ -489,6 +489,7 @@ except zipfile.BadZipFile: self.assertTrue(zipfp2.fp is None, 'zipfp is not closed') + @skipUnless(zlib, "requires zlib") def test_unicode_filenames(self): # bug #10801 fname = findfile('zip_cp437_header.zip') diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -80,6 +80,7 @@ Steven Bethard Stephen Bevan Ron Bickers +Natalia B. Bidart Adrian von Bidder David Binger Dominic Binks -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 17:16:11 2011 From: python-checkins at python.org (reid.kleckner) Date: Mon, 14 Mar 2011 17:16:11 +0100 Subject: [Python-checkins] cpython: Add a 'timeout' argument to subprocess.Popen. Message-ID: http://hg.python.org/cpython/rev/c4a0fa6e687c changeset: 68454:c4a0fa6e687c parent: 68447:c919a82b5a40 user: Reid Kleckner date: Mon Mar 14 12:02:10 2011 -0400 summary: Add a 'timeout' argument to subprocess.Popen. If the timeout expires before the subprocess exits, the wait method and the communicate method will raise a subprocess.TimeoutExpired exception. When used with communicate, it is possible to catch the exception, kill the process, and retry the communicate and receive any output written to stdout or stderr. files: Doc/library/subprocess.rst Lib/subprocess.py Lib/test/test_subprocess.py PC/_subprocess.c diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -249,15 +249,21 @@ This module also defines four shortcut functions: -.. function:: call(*popenargs, **kwargs) +.. function:: call(*popenargs, timeout=None, **kwargs) Run command with arguments. Wait for command to complete, then return the :attr:`returncode` attribute. - The arguments are the same as for the :class:`Popen` constructor. Example:: + The arguments are the same as for the :class:`Popen` constructor, with the + exception of the *timeout* argument, which is given to :meth:`Popen.wait`. + Example:: >>> retcode = subprocess.call(["ls", "-l"]) + If the timeout expires, the child process will be killed and then waited for + again. The :exc:`TimeoutExpired` exception will be re-raised after the child + process has terminated. + .. warning:: Like :meth:`Popen.wait`, this will deadlock when using @@ -265,34 +271,43 @@ generates enough output to a pipe such that it blocks waiting for the OS pipe buffer to accept more data. + .. versionchanged:: 3.2 + *timeout* was added. -.. function:: check_call(*popenargs, **kwargs) + +.. function:: check_call(*popenargs, timeout=None, **kwargs) Run command with arguments. Wait for command to complete. If the exit code was zero then return, otherwise raise :exc:`CalledProcessError`. The :exc:`CalledProcessError` object will have the return code in the :attr:`returncode` attribute. - The arguments are the same as for the :class:`Popen` constructor. Example:: + The arguments are the same as for the :func:`call` function. Example:: >>> subprocess.check_call(["ls", "-l"]) 0 + As in the :func:`call` function, if the timeout expires, the child process + will be killed and the wait retried. The :exc:`TimeoutExpired` exception + will be re-raised after the child process has terminated. + .. warning:: See the warning for :func:`call`. + .. versionchanged:: 3.2 + *timeout* was added. -.. function:: check_output(*popenargs, **kwargs) + +.. function:: check_output(*popenargs, timeout=None, **kwargs) Run command with arguments and return its output as a byte string. If the exit code was non-zero it raises a :exc:`CalledProcessError`. The :exc:`CalledProcessError` object will have the return code in the - :attr:`returncode` - attribute and output in the :attr:`output` attribute. + :attr:`returncode` attribute and output in the :attr:`output` attribute. - The arguments are the same as for the :class:`Popen` constructor. Example:: + The arguments are the same as for the :func:`call` function. Example:: >>> subprocess.check_output(["ls", "-l", "/dev/null"]) b'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n' @@ -305,8 +320,17 @@ ... stderr=subprocess.STDOUT) b'ls: non_existent_file: No such file or directory\n' + As in the :func:`call` function, if the timeout expires, the child process + will be killed and the wait retried. The :exc:`TimeoutExpired` exception + will be re-raised after the child process has terminated. The output from + the child process so far will be in the :attr:`output` attribute of the + exception. + .. versionadded:: 3.1 + .. versionchanged:: 3.2 + *timeout* was added. + .. function:: getstatusoutput(cmd) @@ -359,6 +383,10 @@ check_call() will raise :exc:`CalledProcessError`, if the called process returns a non-zero return code. +All of the functions and methods that accept a *timeout* parameter, such as +:func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if +the timeout expires before the process exits. + Security ^^^^^^^^ @@ -380,11 +408,15 @@ attribute. -.. method:: Popen.wait() +.. method:: Popen.wait(timeout=None) Wait for child process to terminate. Set and return :attr:`returncode` attribute. + If the process does not terminate after *timeout* seconds, raise a + :exc:`TimeoutExpired` exception. It is safe to catch this exception and + retry the wait. + .. warning:: This will deadlock when using ``stdout=PIPE`` and/or @@ -392,11 +424,14 @@ a pipe such that it blocks waiting for the OS pipe buffer to accept more data. Use :meth:`communicate` to avoid that. + .. versionchanged:: 3.2 + *timeout* was added. -.. method:: Popen.communicate(input=None) + +.. method:: Popen.communicate(input=None, timeout=None) Interact with process: Send data to stdin. Read data from stdout and stderr, - until end-of-file is reached. Wait for process to terminate. The optional + until end-of-file is reached. Wait for process to terminate. The optional *input* argument should be a byte string to be sent to the child process, or ``None``, if no data should be sent to the child. @@ -407,11 +442,29 @@ ``None`` in the result tuple, you need to give ``stdout=PIPE`` and/or ``stderr=PIPE`` too. + If the process does not terminate after *timeout* seconds, a + :exc:`TimeoutExpired` exception will be raised. Catching this exception and + retrying communication will not lose any output. + + The child process is not killed if the timeout expires, so in order to + cleanup properly a well-behaved application should kill the child process and + finish communication:: + + proc = subprocess.Popen(...) + try: + outs, errs = proc.communicate(timeout=15) + except TimeoutExpired: + proc.kill() + outs, errs = proc.communicate() + .. note:: The data read is buffered in memory, so do not use this method if the data size is large or unlimited. + .. versionchanged:: 3.2 + *timeout* was added. + .. method:: Popen.send_signal(signal) diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -340,6 +340,7 @@ import io import os +import time import traceback import gc import signal @@ -361,6 +362,19 @@ return "Command '%s' returned non-zero exit status %d" % (self.cmd, self.returncode) +class TimeoutExpired(Exception): + """This exception is raised when the timeout expires while waiting for a + child process. + """ + def __init__(self, cmd, output=None): + self.cmd = cmd + self.output = output + + def __str__(self): + return ("Command '%s' timed out after %s seconds" % + (self.cmd, self.timeout)) + + if mswindows: import threading import msvcrt @@ -449,15 +463,21 @@ raise -def call(*popenargs, **kwargs): - """Run command with arguments. Wait for command to complete, then - return the returncode attribute. +def call(*popenargs, timeout=None, **kwargs): + """Run command with arguments. Wait for command to complete or + timeout, then return the returncode attribute. The arguments are the same as for the Popen constructor. Example: retcode = call(["ls", "-l"]) """ - return Popen(*popenargs, **kwargs).wait() + p = Popen(*popenargs, **kwargs) + try: + return p.wait(timeout=timeout) + except TimeoutExpired: + p.kill() + p.wait() + raise def check_call(*popenargs, **kwargs): @@ -466,7 +486,7 @@ CalledProcessError. The CalledProcessError object will have the return code in the returncode attribute. - The arguments are the same as for the Popen constructor. Example: + The arguments are the same as for the call function. Example: check_call(["ls", "-l"]) """ @@ -479,7 +499,7 @@ return 0 -def check_output(*popenargs, **kwargs): +def check_output(*popenargs, timeout=None, **kwargs): r"""Run command with arguments and return its output as a byte string. If the exit code was non-zero it raises a CalledProcessError. The @@ -502,13 +522,15 @@ if 'stdout' in kwargs: raise ValueError('stdout argument not allowed, it will be overridden.') process = Popen(*popenargs, stdout=PIPE, **kwargs) - output, unused_err = process.communicate() + try: + output, unused_err = process.communicate(timeout=timeout) + except TimeoutExpired: + process.kill() + output, unused_err = process.communicate() + raise TimeoutExpired(process.args, output=output) retcode = process.poll() if retcode: - cmd = kwargs.get("args") - if cmd is None: - cmd = popenargs[0] - raise CalledProcessError(retcode, cmd, output=output) + raise CalledProcessError(retcode, process.args, output=output) return output @@ -639,6 +661,8 @@ _cleanup() self._child_created = False + self._input = None + self._communication_started = False if bufsize is None: bufsize = 0 # Restore default if not isinstance(bufsize, int): @@ -673,6 +697,7 @@ raise ValueError("creationflags is only supported on Windows " "platforms") + self.args = args self.stdin = None self.stdout = None self.stderr = None @@ -771,7 +796,7 @@ _active.append(self) - def communicate(self, input=None): + def communicate(self, input=None, timeout=None): """Interact with process: Send data to stdin. Read data from stdout and stderr, until end-of-file is reached. Wait for process to terminate. The optional input argument should be a @@ -780,9 +805,19 @@ communicate() returns a tuple (stdout, stderr).""" - # Optimization: If we are only using one pipe, or no pipe at - # all, using select() or threads is unnecessary. - if [self.stdin, self.stdout, self.stderr].count(None) >= 2: + if self._communication_started and input: + raise ValueError("Cannot send input after starting communication") + + if timeout is not None: + endtime = time.time() + timeout + else: + endtime = None + + # Optimization: If we are not worried about timeouts, we haven't + # started communicating, and we have one or zero pipes, using select() + # or threads is unnecessary. + if (endtime is None and not self._communication_started and + [self.stdin, self.stdout, self.stderr].count(None) >= 2): stdout = None stderr = None if self.stdin: @@ -798,13 +833,36 @@ self.wait() return (stdout, stderr) - return self._communicate(input) + try: + stdout, stderr = self._communicate(input, endtime) + finally: + self._communication_started = True + + sts = self.wait(timeout=self._remaining_time(endtime)) + + return (stdout, stderr) def poll(self): return self._internal_poll() + def _remaining_time(self, endtime): + """Convenience for _communicate when computing timeouts.""" + if endtime is None: + return None + else: + return endtime - time.time() + + + def _check_timeout(self, endtime): + """Convenience for checking if a timeout has expired.""" + if endtime is None: + return + if time.time() > endtime: + raise TimeoutExpired(self.args) + + if mswindows: # # Windows methods @@ -987,12 +1045,17 @@ return self.returncode - def wait(self): + def wait(self, timeout=None): """Wait for child process to terminate. Returns returncode attribute.""" + if timeout is None: + timeout = _subprocess.INFINITE + else: + timeout = int(timeout * 1000) if self.returncode is None: - _subprocess.WaitForSingleObject(self._handle, - _subprocess.INFINITE) + result = _subprocess.WaitForSingleObject(self._handle, timeout) + if result == _subprocess.WAIT_TIMEOUT: + raise TimeoutExpired(self.args) self.returncode = _subprocess.GetExitCodeProcess(self._handle) return self.returncode @@ -1002,32 +1065,51 @@ fh.close() - def _communicate(self, input): - stdout = None # Return - stderr = None # Return - - if self.stdout: - stdout = [] - stdout_thread = threading.Thread(target=self._readerthread, - args=(self.stdout, stdout)) - stdout_thread.daemon = True - stdout_thread.start() - if self.stderr: - stderr = [] - stderr_thread = threading.Thread(target=self._readerthread, - args=(self.stderr, stderr)) - stderr_thread.daemon = True - stderr_thread.start() + def _communicate(self, input, endtime): + # Start reader threads feeding into a list hanging off of this + # object, unless they've already been started. + if self.stdout and not hasattr(self, "_stdout_buff"): + self._stdout_buff = [] + self.stdout_thread = \ + threading.Thread(target=self._readerthread, + args=(self.stdout, self._stdout_buff)) + self.stdout_thread.daemon = True + self.stdout_thread.start() + if self.stderr and not hasattr(self, "_stderr_buff"): + self._stderr_buff = [] + self.stderr_thread = \ + threading.Thread(target=self._readerthread, + args=(self.stderr, self._stderr_buff)) + self.stderr_thread.daemon = True + self.stderr_thread.start() if self.stdin: if input is not None: self.stdin.write(input) self.stdin.close() + # Wait for the reader threads, or time out. If we time out, the + # threads remain reading and the fds left open in case the user + # calls communicate again. + if self.stdout is not None: + self.stdout_thread.join(self._remaining_time(endtime)) + if self.stdout_thread.isAlive(): + raise TimeoutExpired(self.args) + if self.stderr is not None: + self.stderr_thread.join(self._remaining_time(endtime)) + if self.stderr_thread.isAlive(): + raise TimeoutExpired(self.args) + + # Collect the output from and close both pipes, now that we know + # both have been read successfully. + stdout = None + stderr = None if self.stdout: - stdout_thread.join() + stdout = self._stdout_buff + self.stdout.close() if self.stderr: - stderr_thread.join() + stderr = self._stderr_buff + self.stderr.close() # All data exchanged. Translate lists into strings. if stdout is not None: @@ -1035,7 +1117,6 @@ if stderr is not None: stderr = stderr[0] - self.wait() return (stdout, stderr) def send_signal(self, sig): @@ -1365,25 +1446,52 @@ return self.returncode - def wait(self): + def _try_wait(self, wait_flags): + try: + (pid, sts) = _eintr_retry_call(os.waitpid, self.pid, wait_flags) + except OSError as e: + if e.errno != errno.ECHILD: + raise + # This happens if SIGCLD is set to be ignored or waiting + # for child processes has otherwise been disabled for our + # process. This child is dead, we can't get the status. + pid = self.pid + sts = 0 + return (pid, sts) + + + def wait(self, timeout=None, endtime=None): """Wait for child process to terminate. Returns returncode attribute.""" - if self.returncode is None: - try: - pid, sts = _eintr_retry_call(os.waitpid, self.pid, 0) - except OSError as e: - if e.errno != errno.ECHILD: - raise - # This happens if SIGCLD is set to be ignored or waiting - # for child processes has otherwise been disabled for our - # process. This child is dead, we can't get the status. - sts = 0 + # If timeout was passed but not endtime, compute endtime in terms of + # timeout. + if endtime is None and timeout is not None: + endtime = time.time() + timeout + if self.returncode is not None: + return self.returncode + elif endtime is not None: + # Enter a busy loop if we have a timeout. This busy loop was + # cribbed from Lib/threading.py in Thread.wait() at r71065. + delay = 0.0005 # 500 us -> initial delay of 1 ms + while True: + (pid, sts) = self._try_wait(os.WNOHANG) + assert pid == self.pid or pid == 0 + if pid == self.pid: + self._handle_exitstatus(sts) + break + remaining = self._remaining_time(endtime) + if remaining <= 0: + raise TimeoutExpired(self.args) + delay = min(delay * 2, remaining, .05) + time.sleep(delay) + elif self.returncode is None: + (pid, sts) = self._try_wait(0) self._handle_exitstatus(sts) return self.returncode - def _communicate(self, input): - if self.stdin: + def _communicate(self, input, endtime): + if self.stdin and not self._communication_started: # Flush stdio buffer. This might block, if the user has # been writing to .stdin in an uncontrolled fashion. self.stdin.flush() @@ -1391,9 +1499,11 @@ self.stdin.close() if _has_poll: - stdout, stderr = self._communicate_with_poll(input) + stdout, stderr = self._communicate_with_poll(input, endtime) else: - stdout, stderr = self._communicate_with_select(input) + stdout, stderr = self._communicate_with_select(input, endtime) + + self.wait(timeout=self._remaining_time(endtime)) # All data exchanged. Translate lists into strings. if stdout is not None: @@ -1411,60 +1521,77 @@ stderr = self._translate_newlines(stderr, self.stderr.encoding) - self.wait() return (stdout, stderr) - def _communicate_with_poll(self, input): + def _communicate_with_poll(self, input, endtime): stdout = None # Return stderr = None # Return - fd2file = {} - fd2output = {} + + if not self._communication_started: + self._fd2file = {} poller = select.poll() def register_and_append(file_obj, eventmask): poller.register(file_obj.fileno(), eventmask) - fd2file[file_obj.fileno()] = file_obj + self._fd2file[file_obj.fileno()] = file_obj def close_unregister_and_remove(fd): poller.unregister(fd) - fd2file[fd].close() - fd2file.pop(fd) + self._fd2file[fd].close() + self._fd2file.pop(fd) if self.stdin and input: register_and_append(self.stdin, select.POLLOUT) + # Only create this mapping if we haven't already. + if not self._communication_started: + self._fd2output = {} + if self.stdout: + self._fd2output[self.stdout.fileno()] = [] + if self.stderr: + self._fd2output[self.stderr.fileno()] = [] + select_POLLIN_POLLPRI = select.POLLIN | select.POLLPRI if self.stdout: register_and_append(self.stdout, select_POLLIN_POLLPRI) - fd2output[self.stdout.fileno()] = stdout = [] + stdout = self._fd2output[self.stdout.fileno()] if self.stderr: register_and_append(self.stderr, select_POLLIN_POLLPRI) - fd2output[self.stderr.fileno()] = stderr = [] + stderr = self._fd2output[self.stderr.fileno()] - input_offset = 0 - while fd2file: + # Save the input here so that if we time out while communicating, + # we can continue sending input if we retry. + if self.stdin and self._input is None: + self._input_offset = 0 + self._input = input + if self.universal_newlines: + self._input = self._input.encode(self.stdin.encoding) + + while self._fd2file: try: - ready = poller.poll() + ready = poller.poll(self._remaining_time(endtime)) except select.error as e: if e.args[0] == errno.EINTR: continue raise + self._check_timeout(endtime) # XXX Rewrite these to use non-blocking I/O on the # file objects; they are no longer using C stdio! for fd, mode in ready: if mode & select.POLLOUT: - chunk = input[input_offset : input_offset + _PIPE_BUF] - input_offset += os.write(fd, chunk) - if input_offset >= len(input): + chunk = self._input[self._input_offset : + self._input_offset + _PIPE_BUF] + self._input_offset += os.write(fd, chunk) + if self._input_offset >= len(self._input): close_unregister_and_remove(fd) elif mode & select_POLLIN_POLLPRI: data = os.read(fd, 4096) if not data: close_unregister_and_remove(fd) - fd2output[fd].append(data) + self._fd2output[fd].append(data) else: # Ignore hang up or errors. close_unregister_and_remove(fd) @@ -1472,53 +1599,76 @@ return (stdout, stderr) - def _communicate_with_select(self, input): - read_set = [] - write_set = [] + def _communicate_with_select(self, input, endtime): + if not self._communication_started: + self._read_set = [] + self._write_set = [] + if self.stdin and input: + self._write_set.append(self.stdin) + if self.stdout: + self._read_set.append(self.stdout) + if self.stderr: + self._read_set.append(self.stderr) + + if self.stdin and self._input is None: + self._input_offset = 0 + self._input = input + if self.universal_newlines: + self._input = self._input.encode(self.stdin.encoding) + stdout = None # Return stderr = None # Return - if self.stdin and input: - write_set.append(self.stdin) if self.stdout: - read_set.append(self.stdout) - stdout = [] + if not self._communication_started: + self._stdout_buff = [] + stdout = self._stdout_buff if self.stderr: - read_set.append(self.stderr) - stderr = [] + if not self._communication_started: + self._stderr_buff = [] + stderr = self._stderr_buff - input_offset = 0 - while read_set or write_set: + while self._read_set or self._write_set: try: - rlist, wlist, xlist = select.select(read_set, write_set, []) + (rlist, wlist, xlist) = \ + select.select(self._read_set, self._write_set, [], + self._remaining_time(endtime)) except select.error as e: if e.args[0] == errno.EINTR: continue raise + # According to the docs, returning three empty lists indicates + # that the timeout expired. + if not (rlist or wlist or xlist): + raise TimeoutExpired(self.args) + # We also check what time it is ourselves for good measure. + self._check_timeout(endtime) + # XXX Rewrite these to use non-blocking I/O on the # file objects; they are no longer using C stdio! if self.stdin in wlist: - chunk = input[input_offset : input_offset + _PIPE_BUF] + chunk = self._input[self._input_offset : + self._input_offset + _PIPE_BUF] bytes_written = os.write(self.stdin.fileno(), chunk) - input_offset += bytes_written - if input_offset >= len(input): + self._input_offset += bytes_written + if self._input_offset >= len(self._input): self.stdin.close() - write_set.remove(self.stdin) + self._write_set.remove(self.stdin) if self.stdout in rlist: data = os.read(self.stdout.fileno(), 1024) if not data: self.stdout.close() - read_set.remove(self.stdout) + self._read_set.remove(self.stdout) stdout.append(data) if self.stderr in rlist: data = os.read(self.stderr.fileno(), 1024) if not data: self.stderr.close() - read_set.remove(self.stderr) + self._read_set.remove(self.stderr) stderr.append(data) return (stdout, stderr) diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -56,6 +56,8 @@ # shutdown time. That frustrates tests trying to check stderr produced # from a spawned Python process. actual = support.strip_python_stderr(stderr) + # strip_python_stderr also strips whitespace, so we do too. + expected = expected.strip() self.assertEqual(actual, expected, msg) @@ -67,6 +69,15 @@ "import sys; sys.exit(47)"]) self.assertEqual(rc, 47) + def test_call_timeout(self): + # call() function with timeout argument; we want to test that the child + # process gets killed when the timeout expires. If the child isn't + # killed, this call will deadlock since subprocess.call waits for the + # child. + self.assertRaises(subprocess.TimeoutExpired, subprocess.call, + [sys.executable, "-c", "while True: pass"], + timeout=0.1) + def test_check_call_zero(self): # check_call() function with zero return code rc = subprocess.check_call([sys.executable, "-c", @@ -109,6 +120,18 @@ self.fail("Expected ValueError when stdout arg supplied.") self.assertIn('stdout', c.exception.args[0]) + def test_check_output_timeout(self): + # check_output() function with timeout arg + with self.assertRaises(subprocess.TimeoutExpired) as c: + output = subprocess.check_output( + [sys.executable, "-c", + "import sys; sys.stdout.write('BDFL')\n" + "sys.stdout.flush()\n" + "while True: pass"], + timeout=0.5) + self.fail("Expected TimeoutExpired.") + self.assertEqual(c.exception.output, b'BDFL') + def test_call_kwargs(self): # call() function with keyword args newenv = os.environ.copy() @@ -366,6 +389,41 @@ self.assertEqual(stdout, b"banana") self.assertStderrEqual(stderr, b"pineapple") + def test_communicate_timeout(self): + p = subprocess.Popen([sys.executable, "-c", + 'import sys,os,time;' + 'sys.stderr.write("pineapple\\n");' + 'time.sleep(1);' + 'sys.stderr.write("pear\\n");' + 'sys.stdout.write(sys.stdin.read())'], + universal_newlines=True, + stdin=subprocess.PIPE, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE) + self.assertRaises(subprocess.TimeoutExpired, p.communicate, "banana", + timeout=0.3) + # Make sure we can keep waiting for it, and that we get the whole output + # after it completes. + (stdout, stderr) = p.communicate() + self.assertEqual(stdout, "banana") + self.assertStderrEqual(stderr.encode(), b"pineapple\npear\n") + + def test_communicate_timeout_large_ouput(self): + # Test a expring timeout while the child is outputting lots of data. + p = subprocess.Popen([sys.executable, "-c", + 'import sys,os,time;' + 'sys.stdout.write("a" * (64 * 1024));' + 'time.sleep(0.2);' + 'sys.stdout.write("a" * (64 * 1024));' + 'time.sleep(0.2);' + 'sys.stdout.write("a" * (64 * 1024));' + 'time.sleep(0.2);' + 'sys.stdout.write("a" * (64 * 1024));'], + stdout=subprocess.PIPE) + self.assertRaises(subprocess.TimeoutExpired, p.communicate, timeout=0.4) + (stdout, _) = p.communicate() + self.assertEqual(len(stdout), 4 * 64 * 1024) + # Test for the fd leak reported in http://bugs.python.org/issue2791. def test_communicate_pipe_fd_leak(self): for stdin_pipe in (False, True): @@ -561,6 +619,13 @@ self.assertEqual(p.wait(), 0) + def test_wait_timeout(self): + p = subprocess.Popen([sys.executable, + "-c", "import time; time.sleep(1)"]) + self.assertRaises(subprocess.TimeoutExpired, p.wait, timeout=0.1) + self.assertEqual(p.wait(timeout=2), 0) + + def test_invalid_bufsize(self): # an invalid type of the bufsize argument should raise # TypeError. diff --git a/PC/_subprocess.c b/PC/_subprocess.c --- a/PC/_subprocess.c +++ b/PC/_subprocess.c @@ -682,6 +682,7 @@ defint(d, "SW_HIDE", SW_HIDE); defint(d, "INFINITE", INFINITE); defint(d, "WAIT_OBJECT_0", WAIT_OBJECT_0); + defint(d, "WAIT_TIMEOUT", WAIT_TIMEOUT); defint(d, "CREATE_NEW_CONSOLE", CREATE_NEW_CONSOLE); defint(d, "CREATE_NEW_PROCESS_GROUP", CREATE_NEW_PROCESS_GROUP); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 17:16:12 2011 From: python-checkins at python.org (reid.kleckner) Date: Mon, 14 Mar 2011 17:16:12 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merge with default. Message-ID: http://hg.python.org/cpython/rev/d3d3ef2f6b6a changeset: 68455:d3d3ef2f6b6a parent: 68454:c4a0fa6e687c parent: 68448:89af3880ca57 user: Reid Kleckner date: Mon Mar 14 12:12:18 2011 -0400 summary: Merge with default. files: diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -240,7 +240,7 @@ @classmethod @_requires_builtin def is_package(cls, fullname): - """Return None as built-in module are never packages.""" + """Return None as built-in modules are never packages.""" return False diff --git a/Lib/test/test_zipfile.py b/Lib/test/test_zipfile.py --- a/Lib/test/test_zipfile.py +++ b/Lib/test/test_zipfile.py @@ -489,6 +489,7 @@ except zipfile.BadZipFile: self.assertTrue(zipfp2.fp is None, 'zipfp is not closed') + @skipUnless(zlib, "requires zlib") def test_unicode_filenames(self): # bug #10801 fname = findfile('zip_cp437_header.zip') diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -80,6 +80,7 @@ Steven Bethard Stephen Bevan Ron Bickers +Natalia B. Bidart Adrian von Bidder David Binger Dominic Binks -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 17:16:12 2011 From: python-checkins at python.org (reid.kleckner) Date: Mon, 14 Mar 2011 17:16:12 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merge with default. Message-ID: http://hg.python.org/cpython/rev/2a2f0b01eaf7 changeset: 68456:2a2f0b01eaf7 parent: 68455:d3d3ef2f6b6a parent: 68453:f12c3706debf user: Reid Kleckner date: Mon Mar 14 12:15:42 2011 -0400 summary: Merge with default. files: diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -486,18 +486,12 @@ $(LIBRARY) \ $(RESSRCDIR)/Info.plist $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION) - if test "${UNIVERSALSDK}"; then \ - $(CC) -o $(LDLIBRARY) @UNIVERSAL_ARCH_FLAGS@ -dynamiclib \ - -isysroot "${UNIVERSALSDK}" \ - -all_load $(LIBRARY) -Wl,-single_module \ - -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \ - -compatibility_version $(VERSION) \ - -current_version $(VERSION) \ - -framework CoreFoundation $(LIBS); \ - else \ - /usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \ - @LIBTOOL_CRUFT@ -framework CoreFoundation $(LIBS);\ - fi + $(CC) -o $(LDLIBRARY) $(PY_LDFLAGS) -dynamiclib \ + -all_load $(LIBRARY) -Wl,-single_module \ + -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \ + -compatibility_version $(VERSION) \ + -current_version $(VERSION) \ + -framework CoreFoundation $(LIBS); $(INSTALL) -d -m $(DIRMODE) \ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -621,6 +621,9 @@ support now looks for "__powerpc__" as well as "__ppc__": the latter seems to only be present on OS X; the former is the correct one for Linux with GCC. +- Issue #1099: Fix the build on MacOSX when building a framework with pydebug + using GCC 4.0. + Tools/Demos ----------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 17:37:05 2011 From: python-checkins at python.org (jesus.cea) Date: Mon, 14 Mar 2011 17:37:05 +0100 Subject: [Python-checkins] cpython: Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2 Message-ID: http://hg.python.org/cpython/rev/15b090c9442a changeset: 68457:15b090c9442a user: Jesus Cea date: Mon Mar 14 17:36:54 2011 +0100 summary: Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2 files: Include/pymath.h Misc/NEWS Modules/_cursesmodule.c Modules/fpectlmodule.c Modules/mathmodule.c Modules/socketmodule.c Modules/termios.c Objects/floatobject.c Objects/typeslots.inc Python/thread_pth.h Python/thread_pthread.h configure configure.in pyconfig.h.in diff --git a/Include/pymath.h b/Include/pymath.h --- a/Include/pymath.h +++ b/Include/pymath.h @@ -37,12 +37,6 @@ #endif /* __STDC__ */ #endif /* _MSC_VER */ -#ifdef _OSF_SOURCE -/* OSF1 5.1 doesn't make these available with XOPEN_SOURCE_EXTENDED defined */ -extern int finite(double); -extern double copysign(double, double); -#endif - /* High precision defintion of pi and e (Euler) * The values are taken from libc6's math.h. */ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -183,6 +183,8 @@ - Issue #11268: Prevent Mac OS X Installer failure if Documentation package had previously been installed. +- Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2. + Tools/Demos ----------- diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c --- a/Modules/_cursesmodule.c +++ b/Modules/_cursesmodule.c @@ -105,10 +105,6 @@ #include "Python.h" -#ifdef __osf__ -#define STRICT_SYSV_CURSES /* Don't use ncurses extensions */ -#endif - #ifdef __hpux #define STRICT_SYSV_CURSES #endif diff --git a/Modules/fpectlmodule.c b/Modules/fpectlmodule.c --- a/Modules/fpectlmodule.c +++ b/Modules/fpectlmodule.c @@ -174,17 +174,6 @@ fp_enable(TRP_INVALID | TRP_DIV_BY_ZERO | TRP_OVERFLOW); PyOS_setsig(SIGFPE, handler); -/*-- DEC ALPHA OSF --------------------------------------------------------*/ -#elif defined(__alpha) && defined(__osf__) - /* References: exception_intro, ieee man pages */ - /* cc -c -I/usr/local/python/include fpectlmodule.c */ - /* ld -shared -o fpectlmodule.so fpectlmodule.o */ -#include - unsigned long fp_control = - IEEE_TRAP_ENABLE_INV | IEEE_TRAP_ENABLE_DZE | IEEE_TRAP_ENABLE_OVF; - ieee_set_fp_control(fp_control); - PyOS_setsig(SIGFPE, handler); - /*-- DEC ALPHA LINUX ------------------------------------------------------*/ #elif defined(__alpha) && defined(linux) #include diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -55,11 +55,6 @@ #include "Python.h" #include "_math.h" -#ifdef _OSF_SOURCE -/* OSF1 5.1 doesn't make this available with XOPEN_SOURCE_EXTENDED defined */ -extern double copysign(double, double); -#endif - /* sin(pi*x), giving accurate results for all finite x (especially x integral or close to an integer). This is here for use in the diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -155,7 +155,7 @@ #endif #ifdef HAVE_GETHOSTBYNAME_R -# if defined(_AIX) || defined(__osf__) +# if defined(_AIX) # define HAVE_GETHOSTBYNAME_R_3_ARG # elif defined(__sun) || defined(__sgi) # define HAVE_GETHOSTBYNAME_R_5_ARG diff --git a/Modules/termios.c b/Modules/termios.c --- a/Modules/termios.c +++ b/Modules/termios.c @@ -9,11 +9,6 @@ #endif #include -#ifdef __osf__ -/* On OSF, sys/ioctl.h requires that struct termio already be defined, - * so this needs to be included first on that platform. */ -#include -#endif #include /* HP-UX requires that this be included to pick up MDCD, MCTS, MDSR, diff --git a/Objects/floatobject.c b/Objects/floatobject.c --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -15,11 +15,6 @@ #define MIN(x, y) ((x) < (y) ? (x) : (y)) -#ifdef _OSF_SOURCE -/* OSF1 5.1 doesn't make this available with XOPEN_SOURCE_EXTENDED defined */ -extern int finite(double); -#endif - /* Special free list Since some Python programs can spend much of their time allocating diff --git a/Objects/typeslots.inc b/Objects/typeslots.inc --- a/Objects/typeslots.inc +++ b/Objects/typeslots.inc @@ -1,4 +1,4 @@ -/* Generated by typeslots.py $Revision: 87806 $ */ +/* Generated by typeslots.py $Revision$ */ 0, 0, offsetof(PyHeapTypeObject, as_mapping.mp_ass_subscript), diff --git a/Python/thread_pth.h b/Python/thread_pth.h --- a/Python/thread_pth.h +++ b/Python/thread_pth.h @@ -69,9 +69,8 @@ volatile pth_t threadid; if (!initialized) PyThread_init_thread(); - /* Jump through some hoops for Alpha OSF/1 */ threadid = pth_self(); - return (long) *(long *) &threadid; + return (long) threadid; } void PyThread_exit_thread(void) diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h --- a/Python/thread_pthread.h +++ b/Python/thread_pthread.h @@ -228,8 +228,7 @@ hosed" because: - It does not guarantee the promise that a non-zero integer is returned. - The cast to long is inherently unsafe. - - It is not clear that the 'volatile' (for AIX?) and ugly casting in the - latter return statement (for Alpha OSF/1) are any longer necessary. + - It is not clear that the 'volatile' (for AIX?) are any longer necessary. */ long PyThread_get_thread_ident(void) @@ -237,13 +236,8 @@ volatile pthread_t threadid; if (!initialized) PyThread_init_thread(); - /* Jump through some hoops for Alpha OSF/1 */ threadid = pthread_self(); -#if SIZEOF_PTHREAD_T <= SIZEOF_LONG return (long) threadid; -#else - return (long) *(long *) &threadid; -#endif } void diff --git a/configure b/configure --- a/configure +++ b/configure @@ -754,7 +754,6 @@ enable_loadable_sqlite_extensions with_dbmliborder with_signal_module -with_dec_threads with_threads with_thread enable_ipv6 @@ -777,7 +776,8 @@ LDFLAGS LIBS CPPFLAGS -CPP' +CPP +CPPFLAGS' # Initialize some variables set by options. @@ -1426,7 +1426,6 @@ colon separated string with the backend names `ndbm', `gdbm' and `bdb'. --with-signal-module disable/enable signal module - --with-dec-threads use DEC Alpha/OSF1 thread-safe libraries --with(out)-threads[=DIRECTORY] disable/enable thread support --with(out)-thread[=DIRECTORY] @@ -4951,11 +4950,6 @@ BLDLIBRARY='-Wl,+b,$(LIBDIR) -L. -lpython$(LDVERSION)' RUNSHARED=SHLIB_PATH=`pwd`:${SHLIB_PATH} ;; - OSF*) - LDLIBRARY='libpython$(LDVERSION).so' - BLDLIBRARY='-rpath $(LIBDIR) -L. -lpython$(LDVERSION)' - RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH} - ;; Darwin*) LDLIBRARY='libpython$(LDVERSION).dylib' BLDLIBRARY='-L. -lpython$(LDVERSION)' @@ -5594,9 +5588,6 @@ EXPORT_MACOSX_DEPLOYMENT_TARGET='' ;; - OSF*) - BASECFLAGS="$BASECFLAGS -mieee" - ;; esac ;; @@ -5605,9 +5596,6 @@ OpenUNIX*|UnixWare*) BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca " ;; - OSF*) - BASECFLAGS="$BASECFLAGS -ieee -std" - ;; SCO_SV*) BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5" ;; @@ -6315,7 +6303,6 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $was_it_defined" >&5 $as_echo "$was_it_defined" >&6; } -# Check whether using makedev requires defining _OSF_SOURCE { $as_echo "$as_me:${as_lineno-$LINENO}: checking for makedev" >&5 $as_echo_n "checking for makedev... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -6346,35 +6333,6 @@ fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext -if test "$ac_cv_has_makedev" = "no"; then - # we didn't link, try if _OSF_SOURCE will allow us to link - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -#define _OSF_SOURCE 1 -#include - -int -main () -{ - makedev(0, 0) - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_has_makedev=yes -else - ac_cv_has_makedev=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - if test "$ac_cv_has_makedev" = "yes"; then - -$as_echo "#define _OSF_SOURCE 1" >>confdefs.h - - fi -fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_has_makedev" >&5 $as_echo "$ac_cv_has_makedev" >&6; } if test "$ac_cv_has_makedev" = "yes"; then @@ -7462,7 +7420,6 @@ else LDSHARED='ld -b' fi ;; - OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";; Darwin/1.3*) LDSHARED='$(CC) -bundle' LDCXXSHARED='$(CXX) -bundle' @@ -8281,23 +8238,6 @@ USE_THREAD_MODULE="" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-dec-threads" >&5 -$as_echo_n "checking for --with-dec-threads... " >&6; } - - -# Check whether --with-dec-threads was given. -if test "${with_dec_threads+set}" = set; then : - withval=$with_dec_threads; -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $withval" >&5 -$as_echo "$withval" >&6; } -LDLAST=-threads -if test "${with_thread+set}" != set; then - with_thread="$withval"; -fi -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi # Templates for things AC_DEFINEd more than once. @@ -8761,15 +8701,6 @@ fi fi - - if test "$USE_THREAD_MODULE" != "#" - then - # If the above checks didn't disable threads, (at least) OSF1 - # needs this '-threads' argument during linking. - case $ac_sys_system in - OSF1) LDLAST=-threads;; - esac - fi fi if test "$posix_threads" = "yes"; then @@ -13811,10 +13742,6 @@ esac -case $ac_sys_system in - OSF*) as_fn_error $? "OSF* systems are deprecated unless somebody volunteers. Check http://bugs.python.org/issue8606" "$LINENO" 5 ;; -esac - ac_fn_c_check_func "$LINENO" "pipe2" "ac_cv_func_pipe2" if test "x$ac_cv_func_pipe2" = xyes; then : diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -763,11 +763,6 @@ BLDLIBRARY='-Wl,+b,$(LIBDIR) -L. -lpython$(LDVERSION)' RUNSHARED=SHLIB_PATH=`pwd`:${SHLIB_PATH} ;; - OSF*) - LDLIBRARY='libpython$(LDVERSION).so' - BLDLIBRARY='-rpath $(LIBDIR) -L. -lpython$(LDVERSION)' - RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH} - ;; Darwin*) LDLIBRARY='libpython$(LDVERSION).dylib' BLDLIBRARY='-L. -lpython$(LDVERSION)' @@ -1068,9 +1063,6 @@ EXPORT_MACOSX_DEPLOYMENT_TARGET='' ;; - OSF*) - BASECFLAGS="$BASECFLAGS -mieee" - ;; esac ;; @@ -1079,9 +1071,6 @@ OpenUNIX*|UnixWare*) BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca " ;; - OSF*) - BASECFLAGS="$BASECFLAGS -ieee -std" - ;; SCO_SV*) BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5" ;; @@ -1322,7 +1311,6 @@ ]) AC_MSG_RESULT($was_it_defined) -# Check whether using makedev requires defining _OSF_SOURCE AC_MSG_CHECKING(for makedev) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #if defined(MAJOR_IN_MKDEV) @@ -1335,19 +1323,6 @@ ]], [[ makedev(0, 0) ]]) ],[ac_cv_has_makedev=yes],[ac_cv_has_makedev=no]) -if test "$ac_cv_has_makedev" = "no"; then - # we didn't link, try if _OSF_SOURCE will allow us to link - AC_LINK_IFELSE([AC_LANG_PROGRAM([[ -#define _OSF_SOURCE 1 -#include - ]], - [[ makedev(0, 0) ]])], - [ac_cv_has_makedev=yes], - [ac_cv_has_makedev=no]) - if test "$ac_cv_has_makedev" = "yes"; then - AC_DEFINE(_OSF_SOURCE, 1, [Define _OSF_SOURCE to get the makedev macro.]) - fi -fi AC_MSG_RESULT($ac_cv_has_makedev) if test "$ac_cv_has_makedev" = "yes"; then AC_DEFINE(HAVE_MAKEDEV, 1, [Define this if you have the makedev macro.]) @@ -1667,7 +1642,6 @@ else LDSHARED='ld -b' fi ;; - OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";; Darwin/1.3*) LDSHARED='$(CC) -bundle' LDCXXSHARED='$(CXX) -bundle' @@ -2022,17 +1996,7 @@ AC_SUBST(USE_THREAD_MODULE) USE_THREAD_MODULE="" -AC_MSG_CHECKING(for --with-dec-threads) AC_SUBST(LDLAST) -AC_ARG_WITH(dec-threads, - AS_HELP_STRING([--with-dec-threads], [use DEC Alpha/OSF1 thread-safe libraries]), -[ -AC_MSG_RESULT($withval) -LDLAST=-threads -if test "${with_thread+set}" != set; then - with_thread="$withval"; -fi], -[AC_MSG_RESULT(no)]) # Templates for things AC_DEFINEd more than once. # For a single AC_DEFINE, no template is needed. @@ -2177,15 +2141,6 @@ THREADOBJ="Python/thread.o" USE_THREAD_MODULE=""]) fi - - if test "$USE_THREAD_MODULE" != "#" - then - # If the above checks didn't disable threads, (at least) OSF1 - # needs this '-threads' argument during linking. - case $ac_sys_system in - OSF1) LDLAST=-threads;; - esac - fi fi if test "$posix_threads" = "yes"; then @@ -4247,10 +4202,6 @@ esac -case $ac_sys_system in - OSF*) AC_MSG_ERROR(OSF* systems are deprecated unless somebody volunteers. Check http://bugs.python.org/issue8606) ;; -esac - AC_CHECK_FUNC(pipe2, AC_DEFINE(HAVE_PIPE2, 1, [Define if the OS supports pipe2()]), ) AC_SUBST(THREADHEADERS) diff --git a/pyconfig.h.in b/pyconfig.h.in --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -1227,9 +1227,6 @@ /* Define on NetBSD to activate all library features */ #undef _NETBSD_SOURCE -/* Define _OSF_SOURCE to get the makedev macro. */ -#undef _OSF_SOURCE - /* Define to 2 if the system does not provide POSIX.1 features except with this defined. */ #undef _POSIX_1_SOURCE -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 17:37:31 2011 From: python-checkins at python.org (reid.kleckner) Date: Mon, 14 Mar 2011 17:37:31 +0100 Subject: [Python-checkins] cpython: Change versionchanged for timeout to 3.3, not 3.2. Message-ID: http://hg.python.org/cpython/rev/72e49cb7fcf5 changeset: 68458:72e49cb7fcf5 parent: 68456:2a2f0b01eaf7 user: Reid Kleckner date: Mon Mar 14 12:36:53 2011 -0400 summary: Change versionchanged for timeout to 3.3, not 3.2. files: Doc/library/subprocess.rst diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -271,7 +271,7 @@ generates enough output to a pipe such that it blocks waiting for the OS pipe buffer to accept more data. - .. versionchanged:: 3.2 + .. versionchanged:: 3.3 *timeout* was added. @@ -295,7 +295,7 @@ See the warning for :func:`call`. - .. versionchanged:: 3.2 + .. versionchanged:: 3.3 *timeout* was added. @@ -328,7 +328,7 @@ .. versionadded:: 3.1 - .. versionchanged:: 3.2 + .. versionchanged:: 3.3 *timeout* was added. @@ -424,7 +424,7 @@ a pipe such that it blocks waiting for the OS pipe buffer to accept more data. Use :meth:`communicate` to avoid that. - .. versionchanged:: 3.2 + .. versionchanged:: 3.3 *timeout* was added. @@ -462,7 +462,7 @@ The data read is buffered in memory, so do not use this method if the data size is large or unlimited. - .. versionchanged:: 3.2 + .. versionchanged:: 3.3 *timeout* was added. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 17:37:32 2011 From: python-checkins at python.org (reid.kleckner) Date: Mon, 14 Mar 2011 17:37:32 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merged with default. Message-ID: http://hg.python.org/cpython/rev/07ee5004656a changeset: 68459:07ee5004656a parent: 68458:72e49cb7fcf5 parent: 68457:15b090c9442a user: Reid Kleckner date: Mon Mar 14 12:37:25 2011 -0400 summary: Merged with default. files: diff --git a/Include/pymath.h b/Include/pymath.h --- a/Include/pymath.h +++ b/Include/pymath.h @@ -37,12 +37,6 @@ #endif /* __STDC__ */ #endif /* _MSC_VER */ -#ifdef _OSF_SOURCE -/* OSF1 5.1 doesn't make these available with XOPEN_SOURCE_EXTENDED defined */ -extern int finite(double); -extern double copysign(double, double); -#endif - /* High precision defintion of pi and e (Euler) * The values are taken from libc6's math.h. */ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -183,6 +183,8 @@ - Issue #11268: Prevent Mac OS X Installer failure if Documentation package had previously been installed. +- Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2. + Tools/Demos ----------- diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c --- a/Modules/_cursesmodule.c +++ b/Modules/_cursesmodule.c @@ -105,10 +105,6 @@ #include "Python.h" -#ifdef __osf__ -#define STRICT_SYSV_CURSES /* Don't use ncurses extensions */ -#endif - #ifdef __hpux #define STRICT_SYSV_CURSES #endif diff --git a/Modules/fpectlmodule.c b/Modules/fpectlmodule.c --- a/Modules/fpectlmodule.c +++ b/Modules/fpectlmodule.c @@ -174,17 +174,6 @@ fp_enable(TRP_INVALID | TRP_DIV_BY_ZERO | TRP_OVERFLOW); PyOS_setsig(SIGFPE, handler); -/*-- DEC ALPHA OSF --------------------------------------------------------*/ -#elif defined(__alpha) && defined(__osf__) - /* References: exception_intro, ieee man pages */ - /* cc -c -I/usr/local/python/include fpectlmodule.c */ - /* ld -shared -o fpectlmodule.so fpectlmodule.o */ -#include - unsigned long fp_control = - IEEE_TRAP_ENABLE_INV | IEEE_TRAP_ENABLE_DZE | IEEE_TRAP_ENABLE_OVF; - ieee_set_fp_control(fp_control); - PyOS_setsig(SIGFPE, handler); - /*-- DEC ALPHA LINUX ------------------------------------------------------*/ #elif defined(__alpha) && defined(linux) #include diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -55,11 +55,6 @@ #include "Python.h" #include "_math.h" -#ifdef _OSF_SOURCE -/* OSF1 5.1 doesn't make this available with XOPEN_SOURCE_EXTENDED defined */ -extern double copysign(double, double); -#endif - /* sin(pi*x), giving accurate results for all finite x (especially x integral or close to an integer). This is here for use in the diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -155,7 +155,7 @@ #endif #ifdef HAVE_GETHOSTBYNAME_R -# if defined(_AIX) || defined(__osf__) +# if defined(_AIX) # define HAVE_GETHOSTBYNAME_R_3_ARG # elif defined(__sun) || defined(__sgi) # define HAVE_GETHOSTBYNAME_R_5_ARG diff --git a/Modules/termios.c b/Modules/termios.c --- a/Modules/termios.c +++ b/Modules/termios.c @@ -9,11 +9,6 @@ #endif #include -#ifdef __osf__ -/* On OSF, sys/ioctl.h requires that struct termio already be defined, - * so this needs to be included first on that platform. */ -#include -#endif #include /* HP-UX requires that this be included to pick up MDCD, MCTS, MDSR, diff --git a/Objects/floatobject.c b/Objects/floatobject.c --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -15,11 +15,6 @@ #define MIN(x, y) ((x) < (y) ? (x) : (y)) -#ifdef _OSF_SOURCE -/* OSF1 5.1 doesn't make this available with XOPEN_SOURCE_EXTENDED defined */ -extern int finite(double); -#endif - /* Special free list Since some Python programs can spend much of their time allocating diff --git a/Objects/typeslots.inc b/Objects/typeslots.inc --- a/Objects/typeslots.inc +++ b/Objects/typeslots.inc @@ -1,4 +1,4 @@ -/* Generated by typeslots.py $Revision: 87806 $ */ +/* Generated by typeslots.py $Revision$ */ 0, 0, offsetof(PyHeapTypeObject, as_mapping.mp_ass_subscript), diff --git a/Python/thread_pth.h b/Python/thread_pth.h --- a/Python/thread_pth.h +++ b/Python/thread_pth.h @@ -69,9 +69,8 @@ volatile pth_t threadid; if (!initialized) PyThread_init_thread(); - /* Jump through some hoops for Alpha OSF/1 */ threadid = pth_self(); - return (long) *(long *) &threadid; + return (long) threadid; } void PyThread_exit_thread(void) diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h --- a/Python/thread_pthread.h +++ b/Python/thread_pthread.h @@ -228,8 +228,7 @@ hosed" because: - It does not guarantee the promise that a non-zero integer is returned. - The cast to long is inherently unsafe. - - It is not clear that the 'volatile' (for AIX?) and ugly casting in the - latter return statement (for Alpha OSF/1) are any longer necessary. + - It is not clear that the 'volatile' (for AIX?) are any longer necessary. */ long PyThread_get_thread_ident(void) @@ -237,13 +236,8 @@ volatile pthread_t threadid; if (!initialized) PyThread_init_thread(); - /* Jump through some hoops for Alpha OSF/1 */ threadid = pthread_self(); -#if SIZEOF_PTHREAD_T <= SIZEOF_LONG return (long) threadid; -#else - return (long) *(long *) &threadid; -#endif } void diff --git a/configure b/configure --- a/configure +++ b/configure @@ -754,7 +754,6 @@ enable_loadable_sqlite_extensions with_dbmliborder with_signal_module -with_dec_threads with_threads with_thread enable_ipv6 @@ -777,7 +776,8 @@ LDFLAGS LIBS CPPFLAGS -CPP' +CPP +CPPFLAGS' # Initialize some variables set by options. @@ -1426,7 +1426,6 @@ colon separated string with the backend names `ndbm', `gdbm' and `bdb'. --with-signal-module disable/enable signal module - --with-dec-threads use DEC Alpha/OSF1 thread-safe libraries --with(out)-threads[=DIRECTORY] disable/enable thread support --with(out)-thread[=DIRECTORY] @@ -4951,11 +4950,6 @@ BLDLIBRARY='-Wl,+b,$(LIBDIR) -L. -lpython$(LDVERSION)' RUNSHARED=SHLIB_PATH=`pwd`:${SHLIB_PATH} ;; - OSF*) - LDLIBRARY='libpython$(LDVERSION).so' - BLDLIBRARY='-rpath $(LIBDIR) -L. -lpython$(LDVERSION)' - RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH} - ;; Darwin*) LDLIBRARY='libpython$(LDVERSION).dylib' BLDLIBRARY='-L. -lpython$(LDVERSION)' @@ -5594,9 +5588,6 @@ EXPORT_MACOSX_DEPLOYMENT_TARGET='' ;; - OSF*) - BASECFLAGS="$BASECFLAGS -mieee" - ;; esac ;; @@ -5605,9 +5596,6 @@ OpenUNIX*|UnixWare*) BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca " ;; - OSF*) - BASECFLAGS="$BASECFLAGS -ieee -std" - ;; SCO_SV*) BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5" ;; @@ -6315,7 +6303,6 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $was_it_defined" >&5 $as_echo "$was_it_defined" >&6; } -# Check whether using makedev requires defining _OSF_SOURCE { $as_echo "$as_me:${as_lineno-$LINENO}: checking for makedev" >&5 $as_echo_n "checking for makedev... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -6346,35 +6333,6 @@ fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext -if test "$ac_cv_has_makedev" = "no"; then - # we didn't link, try if _OSF_SOURCE will allow us to link - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -#define _OSF_SOURCE 1 -#include - -int -main () -{ - makedev(0, 0) - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_has_makedev=yes -else - ac_cv_has_makedev=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - if test "$ac_cv_has_makedev" = "yes"; then - -$as_echo "#define _OSF_SOURCE 1" >>confdefs.h - - fi -fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_has_makedev" >&5 $as_echo "$ac_cv_has_makedev" >&6; } if test "$ac_cv_has_makedev" = "yes"; then @@ -7462,7 +7420,6 @@ else LDSHARED='ld -b' fi ;; - OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";; Darwin/1.3*) LDSHARED='$(CC) -bundle' LDCXXSHARED='$(CXX) -bundle' @@ -8281,23 +8238,6 @@ USE_THREAD_MODULE="" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-dec-threads" >&5 -$as_echo_n "checking for --with-dec-threads... " >&6; } - - -# Check whether --with-dec-threads was given. -if test "${with_dec_threads+set}" = set; then : - withval=$with_dec_threads; -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $withval" >&5 -$as_echo "$withval" >&6; } -LDLAST=-threads -if test "${with_thread+set}" != set; then - with_thread="$withval"; -fi -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi # Templates for things AC_DEFINEd more than once. @@ -8761,15 +8701,6 @@ fi fi - - if test "$USE_THREAD_MODULE" != "#" - then - # If the above checks didn't disable threads, (at least) OSF1 - # needs this '-threads' argument during linking. - case $ac_sys_system in - OSF1) LDLAST=-threads;; - esac - fi fi if test "$posix_threads" = "yes"; then @@ -13811,10 +13742,6 @@ esac -case $ac_sys_system in - OSF*) as_fn_error $? "OSF* systems are deprecated unless somebody volunteers. Check http://bugs.python.org/issue8606" "$LINENO" 5 ;; -esac - ac_fn_c_check_func "$LINENO" "pipe2" "ac_cv_func_pipe2" if test "x$ac_cv_func_pipe2" = xyes; then : diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -763,11 +763,6 @@ BLDLIBRARY='-Wl,+b,$(LIBDIR) -L. -lpython$(LDVERSION)' RUNSHARED=SHLIB_PATH=`pwd`:${SHLIB_PATH} ;; - OSF*) - LDLIBRARY='libpython$(LDVERSION).so' - BLDLIBRARY='-rpath $(LIBDIR) -L. -lpython$(LDVERSION)' - RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH} - ;; Darwin*) LDLIBRARY='libpython$(LDVERSION).dylib' BLDLIBRARY='-L. -lpython$(LDVERSION)' @@ -1068,9 +1063,6 @@ EXPORT_MACOSX_DEPLOYMENT_TARGET='' ;; - OSF*) - BASECFLAGS="$BASECFLAGS -mieee" - ;; esac ;; @@ -1079,9 +1071,6 @@ OpenUNIX*|UnixWare*) BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca " ;; - OSF*) - BASECFLAGS="$BASECFLAGS -ieee -std" - ;; SCO_SV*) BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5" ;; @@ -1322,7 +1311,6 @@ ]) AC_MSG_RESULT($was_it_defined) -# Check whether using makedev requires defining _OSF_SOURCE AC_MSG_CHECKING(for makedev) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #if defined(MAJOR_IN_MKDEV) @@ -1335,19 +1323,6 @@ ]], [[ makedev(0, 0) ]]) ],[ac_cv_has_makedev=yes],[ac_cv_has_makedev=no]) -if test "$ac_cv_has_makedev" = "no"; then - # we didn't link, try if _OSF_SOURCE will allow us to link - AC_LINK_IFELSE([AC_LANG_PROGRAM([[ -#define _OSF_SOURCE 1 -#include - ]], - [[ makedev(0, 0) ]])], - [ac_cv_has_makedev=yes], - [ac_cv_has_makedev=no]) - if test "$ac_cv_has_makedev" = "yes"; then - AC_DEFINE(_OSF_SOURCE, 1, [Define _OSF_SOURCE to get the makedev macro.]) - fi -fi AC_MSG_RESULT($ac_cv_has_makedev) if test "$ac_cv_has_makedev" = "yes"; then AC_DEFINE(HAVE_MAKEDEV, 1, [Define this if you have the makedev macro.]) @@ -1667,7 +1642,6 @@ else LDSHARED='ld -b' fi ;; - OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";; Darwin/1.3*) LDSHARED='$(CC) -bundle' LDCXXSHARED='$(CXX) -bundle' @@ -2022,17 +1996,7 @@ AC_SUBST(USE_THREAD_MODULE) USE_THREAD_MODULE="" -AC_MSG_CHECKING(for --with-dec-threads) AC_SUBST(LDLAST) -AC_ARG_WITH(dec-threads, - AS_HELP_STRING([--with-dec-threads], [use DEC Alpha/OSF1 thread-safe libraries]), -[ -AC_MSG_RESULT($withval) -LDLAST=-threads -if test "${with_thread+set}" != set; then - with_thread="$withval"; -fi], -[AC_MSG_RESULT(no)]) # Templates for things AC_DEFINEd more than once. # For a single AC_DEFINE, no template is needed. @@ -2177,15 +2141,6 @@ THREADOBJ="Python/thread.o" USE_THREAD_MODULE=""]) fi - - if test "$USE_THREAD_MODULE" != "#" - then - # If the above checks didn't disable threads, (at least) OSF1 - # needs this '-threads' argument during linking. - case $ac_sys_system in - OSF1) LDLAST=-threads;; - esac - fi fi if test "$posix_threads" = "yes"; then @@ -4247,10 +4202,6 @@ esac -case $ac_sys_system in - OSF*) AC_MSG_ERROR(OSF* systems are deprecated unless somebody volunteers. Check http://bugs.python.org/issue8606) ;; -esac - AC_CHECK_FUNC(pipe2, AC_DEFINE(HAVE_PIPE2, 1, [Define if the OS supports pipe2()]), ) AC_SUBST(THREADHEADERS) diff --git a/pyconfig.h.in b/pyconfig.h.in --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -1227,9 +1227,6 @@ /* Define on NetBSD to activate all library features */ #undef _NETBSD_SOURCE -/* Define _OSF_SOURCE to get the makedev macro. */ -#undef _OSF_SOURCE - /* Define to 2 if the system does not provide POSIX.1 features except with this defined. */ #undef _POSIX_1_SOURCE -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 17:46:47 2011 From: python-checkins at python.org (tarek.ziade) Date: Mon, 14 Mar 2011 17:46:47 +0100 Subject: [Python-checkins] distutils2: fixed the test_sub_commands test Message-ID: http://hg.python.org/distutils2/rev/95a9b1556c12 changeset: 1118:95a9b1556c12 user: Tarek Ziade date: Mon Mar 14 12:46:36 2011 -0400 summary: fixed the test_sub_commands test files: distutils2/tests/test_config.py diff --git a/distutils2/tests/test_config.py b/distutils2/tests/test_config.py --- a/distutils2/tests/test_config.py +++ b/distutils2/tests/test_config.py @@ -3,8 +3,6 @@ import os import sys from StringIO import StringIO -import tempfile -import shutil from distutils2.tests import unittest, support, run_unittest from distutils2.command.sdist import sdist @@ -395,12 +393,10 @@ self.write_file(os.path.join(pkg, '__init__.py'), '#') # try to run the install command to see if foo is called - tmpdir = tempfile.mkdtemp() - try: - dist = self.run_setup('install_dist', '--root=%s' % tmpdir) - finally: - shutil.rmtree(tmpdir) - + from distutils2.dist import Distribution + dist = Distribution() + dist.parse_config_files() + dist.run_command('install_dist') self.assertEqual(dist.foo_was_here, 1) -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Mon Mar 14 17:57:27 2011 From: python-checkins at python.org (ezio.melotti) Date: Mon, 14 Mar 2011 17:57:27 +0100 Subject: [Python-checkins] cpython (3.2): Skip test that requires zlib when zlib is not available. Message-ID: http://hg.python.org/cpython/rev/d2689ed3dc83 changeset: 68460:d2689ed3dc83 branch: 3.2 parent: 68450:e8679f07badd user: Ezio Melotti date: Mon Mar 14 18:57:02 2011 +0200 summary: Skip test that requires zlib when zlib is not available. files: Lib/test/test_zipfile.py diff --git a/Lib/test/test_zipfile.py b/Lib/test/test_zipfile.py --- a/Lib/test/test_zipfile.py +++ b/Lib/test/test_zipfile.py @@ -489,6 +489,7 @@ except zipfile.BadZipFile: self.assertTrue(zipfp2.fp is None, 'zipfp is not closed') + @skipUnless(zlib, "requires zlib") def test_unicode_filenames(self): # bug #10801 fname = findfile('zip_cp437_header.zip') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 17:59:16 2011 From: python-checkins at python.org (ezio.melotti) Date: Mon, 14 Mar 2011 17:59:16 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Dummy merge with 3.2. Message-ID: http://hg.python.org/cpython/rev/fd69e2f2cb72 changeset: 68461:fd69e2f2cb72 parent: 68459:07ee5004656a parent: 68460:d2689ed3dc83 user: Ezio Melotti date: Mon Mar 14 18:58:41 2011 +0200 summary: Dummy merge with 3.2. files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 18:34:32 2011 From: python-checkins at python.org (reid.kleckner) Date: Mon, 14 Mar 2011 18:34:32 +0100 Subject: [Python-checkins] cpython: Attempt a larger timeout value to satisfy the buildbots. Message-ID: http://hg.python.org/cpython/rev/fd2b3eac6756 changeset: 68462:fd2b3eac6756 user: Reid Kleckner date: Mon Mar 14 13:34:12 2011 -0400 summary: Attempt a larger timeout value to satisfy the buildbots. files: Lib/test/test_subprocess.py diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -128,7 +128,7 @@ "import sys; sys.stdout.write('BDFL')\n" "sys.stdout.flush()\n" "while True: pass"], - timeout=0.5) + timeout=1.5) self.fail("Expected TimeoutExpired.") self.assertEqual(c.exception.output, b'BDFL') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 19:16:37 2011 From: python-checkins at python.org (gregory.p.smith) Date: Mon, 14 Mar 2011 19:16:37 +0100 Subject: [Python-checkins] cpython: Add a SubprocessError base class for exceptions in the subprocess module. Message-ID: http://hg.python.org/cpython/rev/d674b557600c changeset: 68463:d674b557600c parent: 68461:fd69e2f2cb72 user: Gregory P. Smith date: Mon Mar 14 14:08:43 2011 -0400 summary: Add a SubprocessError base class for exceptions in the subprocess module. files: Doc/library/subprocess.rst Lib/subprocess.py diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -387,6 +387,11 @@ :func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if the timeout expires before the process exits. +Exceptions defined in this module all inherit from :ext:`SubprocessError`. + + .. versionadded:: 3.3 + The :exc:`SubprocessError` base class was added. + Security ^^^^^^^^ diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -191,8 +191,10 @@ A ValueError will be raised if Popen is called with invalid arguments. -check_call() and check_output() will raise CalledProcessError, if the -called process returns a non-zero return code. +Exceptions defined within this module inherit from SubprocessError. +check_call() and check_output() will raise CalledProcessError if the +called process returns a non-zero return code. TimeoutExpired +be raised if a timeout was specified and expired. Security @@ -348,7 +350,10 @@ import warnings # Exception classes used by this module. -class CalledProcessError(Exception): +class SubprocessError(Exception): pass + + +class CalledProcessError(SubprocessError): """This exception is raised when a process run by check_call() or check_output() returns a non-zero exit status. The exit status will be stored in the returncode attribute; @@ -362,7 +367,7 @@ return "Command '%s' returned non-zero exit status %d" % (self.cmd, self.returncode) -class TimeoutExpired(Exception): +class TimeoutExpired(SubprocessError): """This exception is raised when the timeout expires while waiting for a child process. """ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 19:16:37 2011 From: python-checkins at python.org (gregory.p.smith) Date: Mon, 14 Mar 2011 19:16:37 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge default Message-ID: http://hg.python.org/cpython/rev/825683d32fd6 changeset: 68464:825683d32fd6 parent: 68463:d674b557600c parent: 68462:fd2b3eac6756 user: Gregory P. Smith date: Mon Mar 14 14:14:42 2011 -0400 summary: merge default files: diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -128,7 +128,7 @@ "import sys; sys.stdout.write('BDFL')\n" "sys.stdout.flush()\n" "while True: pass"], - timeout=0.5) + timeout=1.5) self.fail("Expected TimeoutExpired.") self.assertEqual(c.exception.output, b'BDFL') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 19:16:38 2011 From: python-checkins at python.org (gregory.p.smith) Date: Mon, 14 Mar 2011 19:16:38 +0100 Subject: [Python-checkins] cpython: whitespace fix Message-ID: http://hg.python.org/cpython/rev/bffe5809bfda changeset: 68465:bffe5809bfda user: Gregory P. Smith date: Mon Mar 14 14:16:20 2011 -0400 summary: whitespace fix files: Lib/subprocess.py diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -193,7 +193,7 @@ Exceptions defined within this module inherit from SubprocessError. check_call() and check_output() will raise CalledProcessError if the -called process returns a non-zero return code. TimeoutExpired +called process returns a non-zero return code. TimeoutExpired be raised if a timeout was specified and expired. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 20:36:08 2011 From: python-checkins at python.org (brian.curtin) Date: Mon, 14 Mar 2011 20:36:08 +0100 Subject: [Python-checkins] cpython (3.1): Fix #11491. When dbm.open was called with a file which already exists and Message-ID: http://hg.python.org/cpython/rev/f8d603a2a0af changeset: 68466:f8d603a2a0af branch: 3.1 parent: 68449:7af5a9298251 user: briancurtin date: Mon Mar 14 15:35:35 2011 -0400 summary: Fix #11491. When dbm.open was called with a file which already exists and the "flag" argument is "n", dbm.error was being raised. As documented, dbm.open(...,flag='n') will now "Always create a new, empty database, open for reading and writing", regardless of a previous file existing. files: Lib/dbm/__init__.py Lib/test/test_dbm.py Misc/ACKS Misc/NEWS diff --git a/Lib/dbm/__init__.py b/Lib/dbm/__init__.py --- a/Lib/dbm/__init__.py +++ b/Lib/dbm/__init__.py @@ -68,10 +68,10 @@ if not _defaultmod: raise ImportError("no dbm clone found; tried %s" % _names) - # guess the type of an existing database - result = whichdb(file) + # guess the type of an existing database, if not creating a new one + result = whichdb(file) if 'n' not in flag else None if result is None: - # db doesn't exist + # db doesn't exist or 'n' flag was specified to create a new db if 'c' in flag or 'n' in flag: # file doesn't exist and the new flag was used so use default type mod = _defaultmod diff --git a/Lib/test/test_dbm.py b/Lib/test/test_dbm.py --- a/Lib/test/test_dbm.py +++ b/Lib/test/test_dbm.py @@ -70,6 +70,14 @@ self.read_helper(f) f.close() + def test_anydbm_creation_n_file_exists_with_invalid_contents(self): + with open(_fname, "w") as w: + pass # create an empty file + + f = dbm.open(_fname, 'n') + self.addCleanup(f.close) + self.assertEqual(len(f), 0) + def test_anydbm_modification(self): self.init_db() f = dbm.open(_fname, 'c') diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -154,6 +154,7 @@ Benjamin Collar Jeffery Collins Paul Colomiets +Denver Coneybeare Matt Conway David M. Cooke Greg Copeland diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,10 @@ Library ------- +- Issue #11491: dbm.error is no longer raised when dbm.open is called with + the "n" as the flag argument and the file exists. The behavior matches + the documentation and general logic. + - Issue #11131: Fix sign of zero in decimal.Decimal plus and minus operations when the rounding mode is ROUND_FLOOR. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 21:34:07 2011 From: python-checkins at python.org (brett.cannon) Date: Mon, 14 Mar 2011 21:34:07 +0100 Subject: [Python-checkins] devguide: Use repo names that are not also branch names for the multiple working copy to Message-ID: http://hg.python.org/devguide/rev/b8f94787e03d changeset: 394:b8f94787e03d user: Brett Cannon date: Mon Mar 14 16:33:59 2011 -0400 summary: Use repo names that are not also branch names for the multiple working copy to minimize confusion. files: committing.rst diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -221,33 +221,35 @@ There are various ways to achieve this, but here is a possible scenario: -* First do a clone of the public repository, whose working copy be updated +* First do a clone of the public repository, whose working copy will be updated to the ``default`` branch:: - $ hg clone ssh://hg at hg.python.org/cpython default + $ hg clone ssh://hg at hg.python.org/cpython py3k * Then clone it to create another local repository which is then used to checkout branch 3.2:: - $ hg clone default 3.2 - $ cd 3.2 + $ hg clone py3k py3.2 + $ cd py3.2 $ hg update 3.2 * If you also need the 3.1 branch, you can similarly clone it, either from - the ``3.2`` or the ``default`` repository. + the ``py3.2`` or the ``py3k`` repository. It is suggested, though, that you + clone from ``py3.2`` as that it will force you to push changes back up your + clone chain so that you make sure to port changes to all proper versions. -* You can also clone a 2.7-dedicated repository from the ``default`` branch:: +* You can also clone a 2.7-dedicated repository from the ``py3k`` branch:: - $ hg clone default 2.7 - $ cd 2.7 + $ hg clone py3k py2.7 + $ cd py2.7 $ hg update 2.7 -Given this arrangement of local repositories, pushing from the ``3.1`` -repository will update the ``3.2`` repository, where you can then merge your -3.1 changes into the 3.2 branch. In turn, pushing changes from the ``3.2`` -repository will update the ``default`` repository. Finally, once you have +Given this arrangement of local repositories, pushing from the ``py3.1`` +repository will update the ``py3.2`` repository, where you can then merge your +3.1 changes into the 3.2 branch. In turn, pushing changes from the ``py3.2`` +repository will update the ``py3k`` repository. Finally, once you have merged (and tested!) your ``3.2`` changes into the ``default`` branch, pushing -from the ``default`` repository will publish your changes in the public +from the ``py3k`` repository will publish your changes in the public repository. If you want, you can later :ref:`change the flow of changes ` implied -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Mon Mar 14 21:36:53 2011 From: python-checkins at python.org (brian.curtin) Date: Mon, 14 Mar 2011 21:36:53 +0100 Subject: [Python-checkins] cpython (3.2): Fix #11491. When dbm.open was called with a file which already exists and Message-ID: http://hg.python.org/cpython/rev/ec8d64396be9 changeset: 68467:ec8d64396be9 branch: 3.2 parent: 68460:d2689ed3dc83 user: briancurtin date: Mon Mar 14 16:03:54 2011 -0400 summary: Fix #11491. When dbm.open was called with a file which already exists and the "flag" argument is "n", dbm.error was being raised. As documented, dbm.open(...,flag='n') will now "Always create a new, empty database, open for reading and writing", regardless of a previous file existing. files: Lib/dbm/__init__.py Lib/test/test_dbm.py Misc/ACKS Misc/NEWS diff --git a/Lib/dbm/__init__.py b/Lib/dbm/__init__.py --- a/Lib/dbm/__init__.py +++ b/Lib/dbm/__init__.py @@ -67,10 +67,10 @@ if not _defaultmod: raise ImportError("no dbm clone found; tried %s" % _names) - # guess the type of an existing database - result = whichdb(file) + # guess the type of an existing database, if not creating a new one + result = whichdb(file) if 'n' not in flag else None if result is None: - # db doesn't exist + # db doesn't exist or 'n' flag was specified to create a new db if 'c' in flag or 'n' in flag: # file doesn't exist and the new flag was used so use default type mod = _defaultmod diff --git a/Lib/test/test_dbm.py b/Lib/test/test_dbm.py --- a/Lib/test/test_dbm.py +++ b/Lib/test/test_dbm.py @@ -70,6 +70,14 @@ self.read_helper(f) f.close() + def test_anydbm_creation_n_file_exists_with_invalid_contents(self): + with open(_fname, "w") as w: + pass # create an empty file + + f = dbm.open(_fname, 'n') + self.addCleanup(f.close) + self.assertEqual(len(f), 0) + def test_anydbm_modification(self): self.init_db() f = dbm.open(_fname, 'c') diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -169,6 +169,7 @@ Jeffery Collins Robert Collins Paul Colomiets +Denver Coneybeare Geremy Condra Juan Jos? Conti Matt Conway diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -34,6 +34,10 @@ Library ------- +- Issue #11491: dbm.error is no longer raised when dbm.open is called with + the "n" as the flag argument and the file exists. The behavior matches + the documentation and general logic. + - Issue #11131: Fix sign of zero in decimal.Decimal plus and minus operations when the rounding mode is ROUND_FLOOR. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 21:36:56 2011 From: python-checkins at python.org (brian.curtin) Date: Mon, 14 Mar 2011 21:36:56 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Fix #11491. When dbm.open was called with a file which already exists and Message-ID: http://hg.python.org/cpython/rev/0515206e36ed changeset: 68468:0515206e36ed parent: 68465:bffe5809bfda parent: 68467:ec8d64396be9 user: briancurtin date: Mon Mar 14 16:36:31 2011 -0400 summary: Fix #11491. When dbm.open was called with a file which already exists and the "flag" argument is "n", dbm.error was being raised. As documented, dbm.open(...,flag='n') will now "Always create a new, empty database, open for reading and writing", regardless of a previous file existing. files: Misc/ACKS Misc/NEWS diff --git a/Lib/dbm/__init__.py b/Lib/dbm/__init__.py --- a/Lib/dbm/__init__.py +++ b/Lib/dbm/__init__.py @@ -67,10 +67,10 @@ if not _defaultmod: raise ImportError("no dbm clone found; tried %s" % _names) - # guess the type of an existing database - result = whichdb(file) + # guess the type of an existing database, if not creating a new one + result = whichdb(file) if 'n' not in flag else None if result is None: - # db doesn't exist + # db doesn't exist or 'n' flag was specified to create a new db if 'c' in flag or 'n' in flag: # file doesn't exist and the new flag was used so use default type mod = _defaultmod diff --git a/Lib/test/test_dbm.py b/Lib/test/test_dbm.py --- a/Lib/test/test_dbm.py +++ b/Lib/test/test_dbm.py @@ -70,6 +70,14 @@ self.read_helper(f) f.close() + def test_anydbm_creation_n_file_exists_with_invalid_contents(self): + with open(_fname, "w") as w: + pass # create an empty file + + f = dbm.open(_fname, 'n') + self.addCleanup(f.close) + self.assertEqual(len(f), 0) + def test_anydbm_modification(self): self.init_db() f = dbm.open(_fname, 'c') diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -171,6 +171,7 @@ Jeffery Collins Robert Collins Paul Colomiets +Denver Coneybeare Geremy Condra Juan Jos? Conti Matt Conway diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -68,6 +68,10 @@ Library ------- +- Issue #11491: dbm.error is no longer raised when dbm.open is called with + the "n" as the flag argument and the file exists. The behavior matches + the documentation and general logic. + - Issue #1162477: Postel Principal adjustment to email date parsing: handle the fact that some non-compliant MUAs use '.' instead of ':' in time specs. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 22:14:49 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 22:14:49 +0100 Subject: [Python-checkins] cpython (3.2): #11496: skip history test if clear_history is not available. Message-ID: http://hg.python.org/cpython/rev/a89d654adaa2 changeset: 68469:a89d654adaa2 branch: 3.2 parent: 68467:ec8d64396be9 user: R David Murray date: Mon Mar 14 17:10:22 2011 -0400 summary: #11496: skip history test if clear_history is not available. Patch by Natalia B. Bidart. files: Lib/test/test_readline.py Misc/ACKS diff --git a/Lib/test/test_readline.py b/Lib/test/test_readline.py --- a/Lib/test/test_readline.py +++ b/Lib/test/test_readline.py @@ -12,6 +12,10 @@ readline = import_module('readline') class TestHistoryManipulation (unittest.TestCase): + + @unittest.skipIf(not hasattr(readline, 'clear_history'), + "The history update test cannot be run because the " + "clear_history method is not available.") def testHistoryUpdates(self): readline.clear_history() diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -79,6 +79,7 @@ Steven Bethard Stephen Bevan Ron Bickers +Natalia B. Bidart Adrian von Bidder David Binger Dominic Binks -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 22:14:53 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 22:14:53 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #11496 from 3.2. Message-ID: http://hg.python.org/cpython/rev/ecc176488349 changeset: 68470:ecc176488349 parent: 68468:0515206e36ed parent: 68469:a89d654adaa2 user: R David Murray date: Mon Mar 14 17:14:29 2011 -0400 summary: Merge #11496 from 3.2. files: Misc/ACKS diff --git a/Lib/test/test_readline.py b/Lib/test/test_readline.py --- a/Lib/test/test_readline.py +++ b/Lib/test/test_readline.py @@ -12,6 +12,10 @@ readline = import_module('readline') class TestHistoryManipulation (unittest.TestCase): + + @unittest.skipIf(not hasattr(readline, 'clear_history'), + "The history update test cannot be run because the " + "clear_history method is not available.") def testHistoryUpdates(self): readline.clear_history() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 23:39:57 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 23:39:57 +0100 Subject: [Python-checkins] cpython (3.2): Harmonize linesep docstrings, and fix the quoting of \r\n Message-ID: http://hg.python.org/cpython/rev/f6cab3819160 changeset: 68471:f6cab3819160 branch: 3.2 parent: 68469:a89d654adaa2 user: R David Murray date: Mon Mar 14 18:35:56 2011 -0400 summary: Harmonize linesep docstrings, and fix the quoting of \r\n files: Lib/email/generator.py Lib/email/header.py diff --git a/Lib/email/generator.py b/Lib/email/generator.py --- a/Lib/email/generator.py +++ b/Lib/email/generator.py @@ -59,7 +59,7 @@ self._fp.write(s) def flatten(self, msg, unixfrom=False, linesep='\n'): - """Print the message object tree rooted at msg to the output file + r"""Print the message object tree rooted at msg to the output file specified when the Generator instance was created. unixfrom is a flag that forces the printing of a Unix From_ delimiter @@ -70,7 +70,10 @@ Note that for subobjects, no From_ line is printed. linesep specifies the characters used to indicate a new line in - the output. + the output. The default value is the most useful for typical + Python applications, but it can be set to \r\n to produce RFC-compliant + line separators when needed. + """ # We use the _XXX constants for operating on data that comes directly # from the msg, and _encoded_XXX constants for operating on data that diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -276,7 +276,7 @@ self._chunks.append((s, charset)) def encode(self, splitchars=';, \t', maxlinelen=None, linesep='\n'): - """Encode a message header into an RFC-compliant format. + r"""Encode a message header into an RFC-compliant format. There are many issues involved in converting a given string for use in an email header. Only certain character sets are readable in most -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 23:39:58 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 14 Mar 2011 23:39:58 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge linesep docstring changes from 3.2. Message-ID: http://hg.python.org/cpython/rev/cfa6845fbed8 changeset: 68472:cfa6845fbed8 parent: 68470:ecc176488349 parent: 68471:f6cab3819160 user: R David Murray date: Mon Mar 14 18:39:41 2011 -0400 summary: Merge linesep docstring changes from 3.2. files: diff --git a/Lib/email/generator.py b/Lib/email/generator.py --- a/Lib/email/generator.py +++ b/Lib/email/generator.py @@ -59,7 +59,7 @@ self._fp.write(s) def flatten(self, msg, unixfrom=False, linesep='\n'): - """Print the message object tree rooted at msg to the output file + r"""Print the message object tree rooted at msg to the output file specified when the Generator instance was created. unixfrom is a flag that forces the printing of a Unix From_ delimiter @@ -70,7 +70,10 @@ Note that for subobjects, no From_ line is printed. linesep specifies the characters used to indicate a new line in - the output. + the output. The default value is the most useful for typical + Python applications, but it can be set to \r\n to produce RFC-compliant + line separators when needed. + """ # We use the _XXX constants for operating on data that comes directly # from the msg, and _encoded_XXX constants for operating on data that diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -276,7 +276,7 @@ self._chunks.append((s, charset)) def encode(self, splitchars=';, \t', maxlinelen=None, linesep='\n'): - """Encode a message header into an RFC-compliant format. + r"""Encode a message header into an RFC-compliant format. There are many issues involved in converting a given string for use in an email header. Only certain character sets are readable in most -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 23:54:25 2011 From: python-checkins at python.org (ronald.oussoren) Date: Mon, 14 Mar 2011 23:54:25 +0100 Subject: [Python-checkins] cpython (3.1): Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP Message-ID: http://hg.python.org/cpython/rev/682903e066db changeset: 68473:682903e066db branch: 3.1 parent: 68466:f8d603a2a0af user: Ronald Oussoren date: Mon Mar 14 18:15:25 2011 -0400 summary: Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP addresses in the proxy exception list Patch by Scott Wilson. files: Lib/test/test_urllib2.py Lib/urllib/request.py Misc/NEWS diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -6,7 +6,9 @@ import socket import urllib.request -from urllib.request import Request, OpenerDirector +# The proxy bypass method imported below has logic specific to the OSX +# proxy config data structure but is testable on all platforms. +from urllib.request import Request, OpenerDirector, _proxy_bypass_macosx_sysconf # XXX # Request @@ -1030,6 +1032,17 @@ self.assertEqual(req.get_host(), "www.python.org") del os.environ['no_proxy'] + def test_proxy_no_proxy_all(self): + os.environ['no_proxy'] = '*' + o = OpenerDirector() + ph = urllib.request.ProxyHandler(dict(http="proxy.example.com")) + o.add_handler(ph) + req = Request("http://www.python.org") + self.assertEqual(req.get_host(), "www.python.org") + r = o.open(req) + self.assertEqual(req.get_host(), "www.python.org") + del os.environ['no_proxy'] + def test_proxy_https(self): o = OpenerDirector() @@ -1070,6 +1083,26 @@ self.assertEqual(req.get_host(), "proxy.example.com:3128") self.assertEqual(req.get_header("Proxy-authorization"),"FooBar") + def test_osx_proxy_bypass(self): + bypass = { + 'exclude_simple': False, + 'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.10', + '10.0/16'] + } + # Check hosts that should trigger the proxy bypass + for host in ('foo.bar', 'www.bar.com', '127.0.0.1', '10.10.0.1', + '10.0.0.1'): + self.assertTrue(_proxy_bypass_macosx_sysconf(host, bypass), + 'expected bypass of %s to be True' % host) + # Check hosts that should not trigger the proxy bypass + for host in ('abc.foo.bar', 'bar.com', '127.0.0.2', '10.11.0.1', 'test'): + self.assertFalse(_proxy_bypass_macosx_sysconf(host, bypass), + 'expected bypass of %s to be False' % host) + + # Check the exclude_simple flag + bypass = {'exclude_simple': True, 'exceptions': []} + self.assertTrue(_proxy_bypass_macosx_sysconf('test', bypass)) + def test_basic_auth(self, quote_char='"'): opener = OpenerDirector() password_manager = MockPasswordManager() diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -2175,68 +2175,76 @@ return 0 +# This code tests an OSX specific data structure but is testable on all +# platforms +def _proxy_bypass_macosx_sysconf(host, proxy_settings): + """ + Return True iff this host shouldn't be accessed using a proxy + + This function uses the MacOSX framework SystemConfiguration + to fetch the proxy information. + + proxy_settings come from _scproxy._get_proxy_settings or get mocked ie: + { 'exclude_simple': bool, + 'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.1', '10.0/16'] + } + """ + import re + import socket + from fnmatch import fnmatch + + hostonly, port = splitport(host) + + def ip2num(ipAddr): + parts = ipAddr.split('.') + parts = list(map(int, parts)) + if len(parts) != 4: + parts = (parts + [0, 0, 0, 0])[:4] + return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3] + + # Check for simple host names: + if '.' not in host: + if proxy_settings['exclude_simple']: + return True + + hostIP = None + + for value in proxy_settings.get('exceptions', ()): + # Items in the list are strings like these: *.local, 169.254/16 + if not value: continue + + m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value) + if m is not None: + if hostIP is None: + try: + hostIP = socket.gethostbyname(hostonly) + hostIP = ip2num(hostIP) + except socket.error: + continue + + base = ip2num(m.group(1)) + mask = m.group(2) + if mask is None: + mask = 8 * (m.group(1).count('.') + 1) + else: + mask = int(mask[1:]) + mask = 32 - mask + + if (hostIP >> mask) == (base >> mask): + return True + + elif fnmatch(host, value): + return True + + return False + + if sys.platform == 'darwin': from _scproxy import _get_proxy_settings, _get_proxies def proxy_bypass_macosx_sysconf(host): - """ - Return True iff this host shouldn't be accessed using a proxy - - This function uses the MacOSX framework SystemConfiguration - to fetch the proxy information. - """ - import re - import socket - from fnmatch import fnmatch - - hostonly, port = splitport(host) - - def ip2num(ipAddr): - parts = ipAddr.split('.') - parts = list(map(int, parts)) - if len(parts) != 4: - parts = (parts + [0, 0, 0, 0])[:4] - return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3] - proxy_settings = _get_proxy_settings() - - # Check for simple host names: - if '.' not in host: - if proxy_settings['exclude_simple']: - return True - - hostIP = None - - for value in proxy_settings.get('exceptions', ()): - # Items in the list are strings like these: *.local, 169.254/16 - if not value: continue - - m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value) - if m is not None: - if hostIP is None: - try: - hostIP = socket.gethostbyname(hostonly) - hostIP = ip2num(hostIP) - except socket.error: - continue - - base = ip2num(m.group(1)) - mask = m.group(2) - if mask is None: - mask = 8 * (m.group(1).count('.') + 1) - - else: - mask = int(mask[1:]) - mask = 32 - mask - - if (hostIP >> mask) == (base >> mask): - return True - - elif fnmatch(host, value): - return True - - return False - + return _proxy_bypass_macosx_sysconf(host, proxy_settings) def getproxies_macosx_sysconf(): """Return a dictionary of scheme -> proxy server URL mappings. diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -197,6 +197,9 @@ OSError exception when The OS had been told to ignore SIGCLD in our process or otherwise not wait for exiting child processes. +- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified + IP addresses in the proxy exception list. + Extensions ---------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 23:54:26 2011 From: python-checkins at python.org (ronald.oussoren) Date: Mon, 14 Mar 2011 23:54:26 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP Message-ID: http://hg.python.org/cpython/rev/aafb0fed1811 changeset: 68474:aafb0fed1811 branch: 3.2 parent: 68471:f6cab3819160 parent: 68473:682903e066db user: Ronald Oussoren date: Mon Mar 14 18:46:50 2011 -0400 summary: Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP addresses in the proxy exception list. files: Lib/dbm/__init__.py Lib/test/test_dbm.py Lib/test/test_urllib2.py Lib/urllib/request.py Misc/ACKS Misc/NEWS diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -7,7 +7,9 @@ import array import urllib.request -from urllib.request import Request, OpenerDirector +# The proxy bypass method imported below has logic specific to the OSX +# proxy config data structure but is testable on all platforms. +from urllib.request import Request, OpenerDirector, _proxy_bypass_macosx_sysconf # XXX # Request @@ -1076,6 +1078,17 @@ self.assertEqual(req.get_host(), "www.python.org") del os.environ['no_proxy'] + def test_proxy_no_proxy_all(self): + os.environ['no_proxy'] = '*' + o = OpenerDirector() + ph = urllib.request.ProxyHandler(dict(http="proxy.example.com")) + o.add_handler(ph) + req = Request("http://www.python.org") + self.assertEqual(req.get_host(), "www.python.org") + r = o.open(req) + self.assertEqual(req.get_host(), "www.python.org") + del os.environ['no_proxy'] + def test_proxy_https(self): o = OpenerDirector() @@ -1116,6 +1129,26 @@ self.assertEqual(req.get_host(), "proxy.example.com:3128") self.assertEqual(req.get_header("Proxy-authorization"),"FooBar") + def test_osx_proxy_bypass(self): + bypass = { + 'exclude_simple': False, + 'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.10', + '10.0/16'] + } + # Check hosts that should trigger the proxy bypass + for host in ('foo.bar', 'www.bar.com', '127.0.0.1', '10.10.0.1', + '10.0.0.1'): + self.assertTrue(_proxy_bypass_macosx_sysconf(host, bypass), + 'expected bypass of %s to be True' % host) + # Check hosts that should not trigger the proxy bypass + for host in ('abc.foo.bar', 'bar.com', '127.0.0.2', '10.11.0.1', 'test'): + self.assertFalse(_proxy_bypass_macosx_sysconf(host, bypass), + 'expected bypass of %s to be False' % host) + + # Check the exclude_simple flag + bypass = {'exclude_simple': True, 'exceptions': []} + self.assertTrue(_proxy_bypass_macosx_sysconf('test', bypass)) + def test_basic_auth(self, quote_char='"'): opener = OpenerDirector() password_manager = MockPasswordManager() diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -2208,68 +2208,76 @@ return 0 +# This code tests an OSX specific data structure but is testable on all +# platforms +def _proxy_bypass_macosx_sysconf(host, proxy_settings): + """ + Return True iff this host shouldn't be accessed using a proxy + + This function uses the MacOSX framework SystemConfiguration + to fetch the proxy information. + + proxy_settings come from _scproxy._get_proxy_settings or get mocked ie: + { 'exclude_simple': bool, + 'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.1', '10.0/16'] + } + """ + import re + import socket + from fnmatch import fnmatch + + hostonly, port = splitport(host) + + def ip2num(ipAddr): + parts = ipAddr.split('.') + parts = list(map(int, parts)) + if len(parts) != 4: + parts = (parts + [0, 0, 0, 0])[:4] + return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3] + + # Check for simple host names: + if '.' not in host: + if proxy_settings['exclude_simple']: + return True + + hostIP = None + + for value in proxy_settings.get('exceptions', ()): + # Items in the list are strings like these: *.local, 169.254/16 + if not value: continue + + m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value) + if m is not None: + if hostIP is None: + try: + hostIP = socket.gethostbyname(hostonly) + hostIP = ip2num(hostIP) + except socket.error: + continue + + base = ip2num(m.group(1)) + mask = m.group(2) + if mask is None: + mask = 8 * (m.group(1).count('.') + 1) + else: + mask = int(mask[1:]) + mask = 32 - mask + + if (hostIP >> mask) == (base >> mask): + return True + + elif fnmatch(host, value): + return True + + return False + + if sys.platform == 'darwin': from _scproxy import _get_proxy_settings, _get_proxies def proxy_bypass_macosx_sysconf(host): - """ - Return True iff this host shouldn't be accessed using a proxy - - This function uses the MacOSX framework SystemConfiguration - to fetch the proxy information. - """ - import re - import socket - from fnmatch import fnmatch - - hostonly, port = splitport(host) - - def ip2num(ipAddr): - parts = ipAddr.split('.') - parts = list(map(int, parts)) - if len(parts) != 4: - parts = (parts + [0, 0, 0, 0])[:4] - return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3] - proxy_settings = _get_proxy_settings() - - # Check for simple host names: - if '.' not in host: - if proxy_settings['exclude_simple']: - return True - - hostIP = None - - for value in proxy_settings.get('exceptions', ()): - # Items in the list are strings like these: *.local, 169.254/16 - if not value: continue - - m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value) - if m is not None: - if hostIP is None: - try: - hostIP = socket.gethostbyname(hostonly) - hostIP = ip2num(hostIP) - except socket.error: - continue - - base = ip2num(m.group(1)) - mask = m.group(2) - if mask is None: - mask = 8 * (m.group(1).count('.') + 1) - - else: - mask = int(mask[1:]) - mask = 32 - mask - - if (hostIP >> mask) == (base >> mask): - return True - - elif fnmatch(host, value): - return True - - return False - + return _proxy_bypass_macosx_sysconf(host, proxy_settings) def getproxies_macosx_sysconf(): """Return a dictionary of scheme -> proxy server URL mappings. diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -34,6 +34,9 @@ Library ------- +- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified + IP addresses in the proxy exception list. + - Issue #11491: dbm.error is no longer raised when dbm.open is called with the "n" as the flag argument and the file exists. The behavior matches the documentation and general logic. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 23:54:27 2011 From: python-checkins at python.org (ronald.oussoren) Date: Mon, 14 Mar 2011 23:54:27 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP Message-ID: http://hg.python.org/cpython/rev/166dcfc2c0fa changeset: 68475:166dcfc2c0fa parent: 68472:cfa6845fbed8 parent: 68474:aafb0fed1811 user: Ronald Oussoren date: Mon Mar 14 18:48:31 2011 -0400 summary: Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP addresses in the proxy exception list. files: Lib/test/test_urllib2.py Lib/urllib/request.py Misc/ACKS Misc/NEWS diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -7,7 +7,9 @@ import array import urllib.request -from urllib.request import Request, OpenerDirector +# The proxy bypass method imported below has logic specific to the OSX +# proxy config data structure but is testable on all platforms. +from urllib.request import Request, OpenerDirector, _proxy_bypass_macosx_sysconf # XXX # Request @@ -1076,6 +1078,17 @@ self.assertEqual(req.get_host(), "www.python.org") del os.environ['no_proxy'] + def test_proxy_no_proxy_all(self): + os.environ['no_proxy'] = '*' + o = OpenerDirector() + ph = urllib.request.ProxyHandler(dict(http="proxy.example.com")) + o.add_handler(ph) + req = Request("http://www.python.org") + self.assertEqual(req.get_host(), "www.python.org") + r = o.open(req) + self.assertEqual(req.get_host(), "www.python.org") + del os.environ['no_proxy'] + def test_proxy_https(self): o = OpenerDirector() @@ -1116,6 +1129,26 @@ self.assertEqual(req.get_host(), "proxy.example.com:3128") self.assertEqual(req.get_header("Proxy-authorization"),"FooBar") + def test_osx_proxy_bypass(self): + bypass = { + 'exclude_simple': False, + 'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.10', + '10.0/16'] + } + # Check hosts that should trigger the proxy bypass + for host in ('foo.bar', 'www.bar.com', '127.0.0.1', '10.10.0.1', + '10.0.0.1'): + self.assertTrue(_proxy_bypass_macosx_sysconf(host, bypass), + 'expected bypass of %s to be True' % host) + # Check hosts that should not trigger the proxy bypass + for host in ('abc.foo.bar', 'bar.com', '127.0.0.2', '10.11.0.1', 'test'): + self.assertFalse(_proxy_bypass_macosx_sysconf(host, bypass), + 'expected bypass of %s to be False' % host) + + # Check the exclude_simple flag + bypass = {'exclude_simple': True, 'exceptions': []} + self.assertTrue(_proxy_bypass_macosx_sysconf('test', bypass)) + def test_basic_auth(self, quote_char='"'): opener = OpenerDirector() password_manager = MockPasswordManager() diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -2208,68 +2208,76 @@ return 0 +# This code tests an OSX specific data structure but is testable on all +# platforms +def _proxy_bypass_macosx_sysconf(host, proxy_settings): + """ + Return True iff this host shouldn't be accessed using a proxy + + This function uses the MacOSX framework SystemConfiguration + to fetch the proxy information. + + proxy_settings come from _scproxy._get_proxy_settings or get mocked ie: + { 'exclude_simple': bool, + 'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.1', '10.0/16'] + } + """ + import re + import socket + from fnmatch import fnmatch + + hostonly, port = splitport(host) + + def ip2num(ipAddr): + parts = ipAddr.split('.') + parts = list(map(int, parts)) + if len(parts) != 4: + parts = (parts + [0, 0, 0, 0])[:4] + return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3] + + # Check for simple host names: + if '.' not in host: + if proxy_settings['exclude_simple']: + return True + + hostIP = None + + for value in proxy_settings.get('exceptions', ()): + # Items in the list are strings like these: *.local, 169.254/16 + if not value: continue + + m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value) + if m is not None: + if hostIP is None: + try: + hostIP = socket.gethostbyname(hostonly) + hostIP = ip2num(hostIP) + except socket.error: + continue + + base = ip2num(m.group(1)) + mask = m.group(2) + if mask is None: + mask = 8 * (m.group(1).count('.') + 1) + else: + mask = int(mask[1:]) + mask = 32 - mask + + if (hostIP >> mask) == (base >> mask): + return True + + elif fnmatch(host, value): + return True + + return False + + if sys.platform == 'darwin': from _scproxy import _get_proxy_settings, _get_proxies def proxy_bypass_macosx_sysconf(host): - """ - Return True iff this host shouldn't be accessed using a proxy - - This function uses the MacOSX framework SystemConfiguration - to fetch the proxy information. - """ - import re - import socket - from fnmatch import fnmatch - - hostonly, port = splitport(host) - - def ip2num(ipAddr): - parts = ipAddr.split('.') - parts = list(map(int, parts)) - if len(parts) != 4: - parts = (parts + [0, 0, 0, 0])[:4] - return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3] - proxy_settings = _get_proxy_settings() - - # Check for simple host names: - if '.' not in host: - if proxy_settings['exclude_simple']: - return True - - hostIP = None - - for value in proxy_settings.get('exceptions', ()): - # Items in the list are strings like these: *.local, 169.254/16 - if not value: continue - - m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value) - if m is not None: - if hostIP is None: - try: - hostIP = socket.gethostbyname(hostonly) - hostIP = ip2num(hostIP) - except socket.error: - continue - - base = ip2num(m.group(1)) - mask = m.group(2) - if mask is None: - mask = 8 * (m.group(1).count('.') + 1) - - else: - mask = int(mask[1:]) - mask = 32 - mask - - if (hostIP >> mask) == (base >> mask): - return True - - elif fnmatch(host, value): - return True - - return False - + return _proxy_bypass_macosx_sysconf(host, proxy_settings) def getproxies_macosx_sysconf(): """Return a dictionary of scheme -> proxy server URL mappings. diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -68,6 +68,9 @@ Library ------- +- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified + IP addresses in the proxy exception list. + - Issue #11491: dbm.error is no longer raised when dbm.open is called with the "n" as the flag argument and the file exists. The behavior matches the documentation and general logic. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 23:54:31 2011 From: python-checkins at python.org (ronald.oussoren) Date: Mon, 14 Mar 2011 23:54:31 +0100 Subject: [Python-checkins] cpython (2.7): Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified Message-ID: http://hg.python.org/cpython/rev/8f0756010720 changeset: 68476:8f0756010720 branch: 2.7 parent: 68452:bcca0a6ebbd2 user: Ronald Oussoren date: Mon Mar 14 18:53:59 2011 -0400 summary: Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP addresses in the proxy exception list. files: Lib/urllib.py Misc/NEWS diff --git a/Lib/urllib.py b/Lib/urllib.py --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -1396,7 +1396,7 @@ else: mask = int(mask[1:]) - mask = 32 - mask + mask = 32 - mask if (hostIP >> mask) == (base >> mask): return True diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -43,6 +43,9 @@ Library ------- +- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified + IP addresses in the proxy exception list. + - Issue #11131: Fix sign of zero in plus and minus operations when the context rounding mode is ROUND_FLOOR. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 00:01:11 2011 From: python-checkins at python.org (nick.coghlan) Date: Tue, 15 Mar 2011 00:01:11 +0100 Subject: [Python-checkins] cpython: Close #11505: Improve string.py coverage Message-ID: http://hg.python.org/cpython/rev/10c56e7ceb72 changeset: 68477:10c56e7ceb72 parent: 68470:ecc176488349 user: Nick Coghlan date: Tue Mar 15 08:54:37 2011 +1000 summary: Close #11505: Improve string.py coverage files: Lib/test/test_pep292.py Lib/test/test_string.py Misc/ACKS Misc/NEWS diff --git a/Lib/test/test_pep292.py b/Lib/test/test_pep292.py --- a/Lib/test/test_pep292.py +++ b/Lib/test/test_pep292.py @@ -42,6 +42,19 @@ s = Template('$who likes $$') eq(s.substitute(dict(who='tim', what='ham')), 'tim likes $') + def test_invalid(self): + class MyPattern(Template): + pattern = r""" + (?: + (?P) | + (?P%(delim)s) | + @(?P%(id)s) | + @{(?P%(id)s)} + ) + """ + s = MyPattern('$') + self.assertRaises(ValueError, s.substitute, dict()) + def test_percents(self): eq = self.assertEqual s = Template('%(foo)s $foo ${foo}') diff --git a/Lib/test/test_string.py b/Lib/test/test_string.py --- a/Lib/test/test_string.py +++ b/Lib/test/test_string.py @@ -112,6 +112,30 @@ self.assertRaises(ValueError, fmt.format, "{0}", 10, 20, i=100) self.assertRaises(ValueError, fmt.format, "{i}", 10, 20, i=100) + def test_vformat_assert(self): + cls = string.Formatter() + kwargs = { + "i": 100 + } + self.assertRaises(ValueError, cls._vformat, + cls.format, "{0}", kwargs, set(), -2) + + def test_convert_field(self): + cls = string.Formatter() + self.assertEqual(cls.format("{0!s}", 'foo'), 'foo') + self.assertRaises(ValueError, cls.format, "{0!h}", 'foo') + + def test_get_field(self): + cls = string.Formatter() + class MyClass: + name = 'lumberjack' + x = MyClass() + self.assertEqual(cls.format("{0.name}", x), 'lumberjack') + + lookup = ["eggs", "and", "spam"] + self.assertEqual(cls.format("{0[2]}", lookup), 'spam') + + def test_main(): support.run_unittest(ModuleTest) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -32,6 +32,7 @@ Ross Andrus Jon Anglin ?ric Araujo +Alicia Arlen Jason Asbahr David Ascher Chris AtLee diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -197,6 +197,8 @@ Tests ----- +- Issue #11505: improves test coverage of string.py + - Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a false positive if the last directory in the path is inaccessible. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 00:01:12 2011 From: python-checkins at python.org (nick.coghlan) Date: Tue, 15 Mar 2011 00:01:12 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merge with remote Message-ID: http://hg.python.org/cpython/rev/91a9bca3150b changeset: 68478:91a9bca3150b parent: 68477:10c56e7ceb72 parent: 68475:166dcfc2c0fa user: Nick Coghlan date: Tue Mar 15 08:59:20 2011 +1000 summary: Merge with remote files: Misc/ACKS Misc/NEWS diff --git a/Lib/email/generator.py b/Lib/email/generator.py --- a/Lib/email/generator.py +++ b/Lib/email/generator.py @@ -59,7 +59,7 @@ self._fp.write(s) def flatten(self, msg, unixfrom=False, linesep='\n'): - """Print the message object tree rooted at msg to the output file + r"""Print the message object tree rooted at msg to the output file specified when the Generator instance was created. unixfrom is a flag that forces the printing of a Unix From_ delimiter @@ -70,7 +70,10 @@ Note that for subobjects, no From_ line is printed. linesep specifies the characters used to indicate a new line in - the output. + the output. The default value is the most useful for typical + Python applications, but it can be set to \r\n to produce RFC-compliant + line separators when needed. + """ # We use the _XXX constants for operating on data that comes directly # from the msg, and _encoded_XXX constants for operating on data that diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -276,7 +276,7 @@ self._chunks.append((s, charset)) def encode(self, splitchars=';, \t', maxlinelen=None, linesep='\n'): - """Encode a message header into an RFC-compliant format. + r"""Encode a message header into an RFC-compliant format. There are many issues involved in converting a given string for use in an email header. Only certain character sets are readable in most diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -7,7 +7,9 @@ import array import urllib.request -from urllib.request import Request, OpenerDirector +# The proxy bypass method imported below has logic specific to the OSX +# proxy config data structure but is testable on all platforms. +from urllib.request import Request, OpenerDirector, _proxy_bypass_macosx_sysconf # XXX # Request @@ -1076,6 +1078,17 @@ self.assertEqual(req.get_host(), "www.python.org") del os.environ['no_proxy'] + def test_proxy_no_proxy_all(self): + os.environ['no_proxy'] = '*' + o = OpenerDirector() + ph = urllib.request.ProxyHandler(dict(http="proxy.example.com")) + o.add_handler(ph) + req = Request("http://www.python.org") + self.assertEqual(req.get_host(), "www.python.org") + r = o.open(req) + self.assertEqual(req.get_host(), "www.python.org") + del os.environ['no_proxy'] + def test_proxy_https(self): o = OpenerDirector() @@ -1116,6 +1129,26 @@ self.assertEqual(req.get_host(), "proxy.example.com:3128") self.assertEqual(req.get_header("Proxy-authorization"),"FooBar") + def test_osx_proxy_bypass(self): + bypass = { + 'exclude_simple': False, + 'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.10', + '10.0/16'] + } + # Check hosts that should trigger the proxy bypass + for host in ('foo.bar', 'www.bar.com', '127.0.0.1', '10.10.0.1', + '10.0.0.1'): + self.assertTrue(_proxy_bypass_macosx_sysconf(host, bypass), + 'expected bypass of %s to be True' % host) + # Check hosts that should not trigger the proxy bypass + for host in ('abc.foo.bar', 'bar.com', '127.0.0.2', '10.11.0.1', 'test'): + self.assertFalse(_proxy_bypass_macosx_sysconf(host, bypass), + 'expected bypass of %s to be False' % host) + + # Check the exclude_simple flag + bypass = {'exclude_simple': True, 'exceptions': []} + self.assertTrue(_proxy_bypass_macosx_sysconf('test', bypass)) + def test_basic_auth(self, quote_char='"'): opener = OpenerDirector() password_manager = MockPasswordManager() diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -2208,68 +2208,76 @@ return 0 +# This code tests an OSX specific data structure but is testable on all +# platforms +def _proxy_bypass_macosx_sysconf(host, proxy_settings): + """ + Return True iff this host shouldn't be accessed using a proxy + + This function uses the MacOSX framework SystemConfiguration + to fetch the proxy information. + + proxy_settings come from _scproxy._get_proxy_settings or get mocked ie: + { 'exclude_simple': bool, + 'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.1', '10.0/16'] + } + """ + import re + import socket + from fnmatch import fnmatch + + hostonly, port = splitport(host) + + def ip2num(ipAddr): + parts = ipAddr.split('.') + parts = list(map(int, parts)) + if len(parts) != 4: + parts = (parts + [0, 0, 0, 0])[:4] + return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3] + + # Check for simple host names: + if '.' not in host: + if proxy_settings['exclude_simple']: + return True + + hostIP = None + + for value in proxy_settings.get('exceptions', ()): + # Items in the list are strings like these: *.local, 169.254/16 + if not value: continue + + m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value) + if m is not None: + if hostIP is None: + try: + hostIP = socket.gethostbyname(hostonly) + hostIP = ip2num(hostIP) + except socket.error: + continue + + base = ip2num(m.group(1)) + mask = m.group(2) + if mask is None: + mask = 8 * (m.group(1).count('.') + 1) + else: + mask = int(mask[1:]) + mask = 32 - mask + + if (hostIP >> mask) == (base >> mask): + return True + + elif fnmatch(host, value): + return True + + return False + + if sys.platform == 'darwin': from _scproxy import _get_proxy_settings, _get_proxies def proxy_bypass_macosx_sysconf(host): - """ - Return True iff this host shouldn't be accessed using a proxy - - This function uses the MacOSX framework SystemConfiguration - to fetch the proxy information. - """ - import re - import socket - from fnmatch import fnmatch - - hostonly, port = splitport(host) - - def ip2num(ipAddr): - parts = ipAddr.split('.') - parts = list(map(int, parts)) - if len(parts) != 4: - parts = (parts + [0, 0, 0, 0])[:4] - return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3] - proxy_settings = _get_proxy_settings() - - # Check for simple host names: - if '.' not in host: - if proxy_settings['exclude_simple']: - return True - - hostIP = None - - for value in proxy_settings.get('exceptions', ()): - # Items in the list are strings like these: *.local, 169.254/16 - if not value: continue - - m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value) - if m is not None: - if hostIP is None: - try: - hostIP = socket.gethostbyname(hostonly) - hostIP = ip2num(hostIP) - except socket.error: - continue - - base = ip2num(m.group(1)) - mask = m.group(2) - if mask is None: - mask = 8 * (m.group(1).count('.') + 1) - - else: - mask = int(mask[1:]) - mask = 32 - mask - - if (hostIP >> mask) == (base >> mask): - return True - - elif fnmatch(host, value): - return True - - return False - + return _proxy_bypass_macosx_sysconf(host, proxy_settings) def getproxies_macosx_sysconf(): """Return a dictionary of scheme -> proxy server URL mappings. diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -68,6 +68,9 @@ Library ------- +- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified + IP addresses in the proxy exception list. + - Issue #11491: dbm.error is no longer raised when dbm.open is called with the "n" as the flag argument and the file exists. The behavior matches the documentation and general logic. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 00:02:35 2011 From: python-checkins at python.org (michael.foord) Date: Tue, 15 Mar 2011 00:02:35 +0100 Subject: [Python-checkins] cpython: Closes issue 11407. TestCase.run returns the result object used or created Message-ID: http://hg.python.org/cpython/rev/b0b7d1d2354c changeset: 68479:b0b7d1d2354c parent: 68475:166dcfc2c0fa user: Michael Foord date: Mon Mar 14 19:01:46 2011 -0400 summary: Closes issue 11407. TestCase.run returns the result object used or created files: Doc/library/unittest.rst Lib/unittest/case.py Lib/unittest/test/test_case.py Misc/ACKS Misc/NEWS diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -723,7 +723,7 @@ Here, we create two instances of :class:`WidgetTestCase`, each of which runs a single test. - .. versionchanged:: + .. versionchanged:: 3.2 `TestCase` can be instantiated successfully without providing a method name. This makes it easier to experiment with `TestCase` from the interactive interpreter. @@ -792,11 +792,14 @@ Run the test, collecting the result into the test result object passed as *result*. If *result* is omitted or ``None``, a temporary result object is created (by calling the :meth:`defaultTestResult` method) and - used. The result object is not returned to :meth:`run`'s caller. + used. The result object is returned to :meth:`run`'s caller. The same effect may be had by simply calling the :class:`TestCase` instance. + .. versionchanged:: 3.3 + Previous versions of ``run`` did not return the result. Neither did + calling an instance. .. method:: skipTest(reason) diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -469,7 +469,7 @@ warnings.warn("TestResult has no addExpectedFailure method, reporting as passes", RuntimeWarning) result.addSuccess(self) - + return result finally: result.stopTest(self) if orig_result is None: diff --git a/Lib/unittest/test/test_case.py b/Lib/unittest/test/test_case.py --- a/Lib/unittest/test/test_case.py +++ b/Lib/unittest/test/test_case.py @@ -386,27 +386,62 @@ self.assertIsInstance(Foo().id(), str) - # "If result is omitted or None, a temporary result object is created - # and used, but is not made available to the caller. As TestCase owns the + # "If result is omitted or None, a temporary result object is created, + # used, and is made available to the caller. As TestCase owns the # temporary result startTestRun and stopTestRun are called. def test_run__uses_defaultTestResult(self): events = [] + defaultResult = LoggingResult(events) class Foo(unittest.TestCase): def test(self): events.append('test') def defaultTestResult(self): - return LoggingResult(events) + return defaultResult # Make run() find a result object on its own - Foo('test').run() + result = Foo('test').run() + self.assertIs(result, defaultResult) expected = ['startTestRun', 'startTest', 'test', 'addSuccess', 'stopTest', 'stopTestRun'] self.assertEqual(events, expected) + + # "The result object is returned to run's caller" + def test_run__returns_given_result(self): + + class Foo(unittest.TestCase): + def test(self): + pass + + result = unittest.TestResult() + + retval = Foo('test').run(result) + self.assertIs(retval, result) + + + # "The same effect [as method run] may be had by simply calling the + # TestCase instance." + def test_call__invoking_an_instance_delegates_to_run(self): + resultIn = unittest.TestResult() + resultOut = unittest.TestResult() + + class Foo(unittest.TestCase): + def test(self): + pass + + def run(self, result): + self.assertIs(result, resultIn) + return resultOut + + retval = Foo('test')(resultIn) + + self.assertIs(retval, resultOut) + + def testShortDescriptionWithoutDocstring(self): self.assertIsNone(self.shortDescription()) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -351,6 +351,7 @@ Derek Harland Jason Harper Brian Harring +Jonathan Hartley Larry Hastings Shane Hathaway Rycharde Hawkes diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -68,6 +68,9 @@ Library ------- +- Issue #11407: `TestCase.run` returns the result object used or created. + Contributed by Janathan Hartley. + - Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP addresses in the proxy exception list. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 00:02:35 2011 From: python-checkins at python.org (michael.foord) Date: Tue, 15 Mar 2011 00:02:35 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge default Message-ID: http://hg.python.org/cpython/rev/2a584412d541 changeset: 68480:2a584412d541 parent: 68479:b0b7d1d2354c parent: 68478:91a9bca3150b user: Michael Foord date: Mon Mar 14 19:03:30 2011 -0400 summary: merge default files: Misc/ACKS Misc/NEWS diff --git a/Lib/test/test_pep292.py b/Lib/test/test_pep292.py --- a/Lib/test/test_pep292.py +++ b/Lib/test/test_pep292.py @@ -42,6 +42,19 @@ s = Template('$who likes $$') eq(s.substitute(dict(who='tim', what='ham')), 'tim likes $') + def test_invalid(self): + class MyPattern(Template): + pattern = r""" + (?: + (?P) | + (?P%(delim)s) | + @(?P%(id)s) | + @{(?P%(id)s)} + ) + """ + s = MyPattern('$') + self.assertRaises(ValueError, s.substitute, dict()) + def test_percents(self): eq = self.assertEqual s = Template('%(foo)s $foo ${foo}') diff --git a/Lib/test/test_string.py b/Lib/test/test_string.py --- a/Lib/test/test_string.py +++ b/Lib/test/test_string.py @@ -112,6 +112,30 @@ self.assertRaises(ValueError, fmt.format, "{0}", 10, 20, i=100) self.assertRaises(ValueError, fmt.format, "{i}", 10, 20, i=100) + def test_vformat_assert(self): + cls = string.Formatter() + kwargs = { + "i": 100 + } + self.assertRaises(ValueError, cls._vformat, + cls.format, "{0}", kwargs, set(), -2) + + def test_convert_field(self): + cls = string.Formatter() + self.assertEqual(cls.format("{0!s}", 'foo'), 'foo') + self.assertRaises(ValueError, cls.format, "{0!h}", 'foo') + + def test_get_field(self): + cls = string.Formatter() + class MyClass: + name = 'lumberjack' + x = MyClass() + self.assertEqual(cls.format("{0.name}", x), 'lumberjack') + + lookup = ["eggs", "and", "spam"] + self.assertEqual(cls.format("{0[2]}", lookup), 'spam') + + def test_main(): support.run_unittest(ModuleTest) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -32,6 +32,7 @@ Ross Andrus Jon Anglin ?ric Araujo +Alicia Arlen Jason Asbahr David Ascher Chris AtLee diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -203,6 +203,8 @@ Tests ----- +- Issue #11505: improves test coverage of string.py + - Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a false positive if the last directory in the path is inaccessible. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 00:16:32 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 00:16:32 +0100 Subject: [Python-checkins] hooks: reindent.py also needs to be in the path for local use of checkwhitespace. Message-ID: http://hg.python.org/hooks/rev/8e24594ace50 changeset: 64:8e24594ace50 user: R David Murray date: Mon Mar 14 19:14:57 2011 -0400 summary: reindent.py also needs to be in the path for local use of checkwhitespace. files: checkwhitespace.py diff --git a/checkwhitespace.py b/checkwhitespace.py --- a/checkwhitespace.py +++ b/checkwhitespace.py @@ -3,8 +3,8 @@ whitespace issues. To use the changeset hook in a local repository, include something like the -following in your hgrc file, and make sure that this file (i.e., -check_whitespace.py) is in your PYTHONPATH. +following in your hgrc file, and make sure that this file (check_whitespace.py) +and reindent.py are in your PYTHONPATH. [hooks] pretxncommit.whitespace = python:checkwhitespace.check_whitespace_single -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Tue Mar 15 00:34:27 2011 From: python-checkins at python.org (reid.kleckner) Date: Tue, 15 Mar 2011 00:34:27 +0100 Subject: [Python-checkins] cpython: Tweak subprocess test timeouts to satisfy the buildbot. Message-ID: http://hg.python.org/cpython/rev/1e578e964c14 changeset: 68481:1e578e964c14 parent: 68462:fd2b3eac6756 user: Reid Kleckner date: Mon Mar 14 19:32:41 2011 -0400 summary: Tweak subprocess test timeouts to satisfy the buildbot. files: Lib/test/test_subprocess.py diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -621,8 +621,8 @@ def test_wait_timeout(self): p = subprocess.Popen([sys.executable, - "-c", "import time; time.sleep(1)"]) - self.assertRaises(subprocess.TimeoutExpired, p.wait, timeout=0.1) + "-c", "import time; time.sleep(0.1)"]) + self.assertRaises(subprocess.TimeoutExpired, p.wait, timeout=0.01) self.assertEqual(p.wait(timeout=2), 0) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 00:34:28 2011 From: python-checkins at python.org (reid.kleckner) Date: Tue, 15 Mar 2011 00:34:28 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merge with hg.python.org. Message-ID: http://hg.python.org/cpython/rev/213705ca8ba7 changeset: 68482:213705ca8ba7 parent: 68481:1e578e964c14 parent: 68480:2a584412d541 user: Reid Kleckner date: Mon Mar 14 19:34:13 2011 -0400 summary: Merge with hg.python.org. files: diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -387,6 +387,11 @@ :func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if the timeout expires before the process exits. +Exceptions defined in this module all inherit from :ext:`SubprocessError`. + + .. versionadded:: 3.3 + The :exc:`SubprocessError` base class was added. + Security ^^^^^^^^ diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -723,7 +723,7 @@ Here, we create two instances of :class:`WidgetTestCase`, each of which runs a single test. - .. versionchanged:: + .. versionchanged:: 3.2 `TestCase` can be instantiated successfully without providing a method name. This makes it easier to experiment with `TestCase` from the interactive interpreter. @@ -792,11 +792,14 @@ Run the test, collecting the result into the test result object passed as *result*. If *result* is omitted or ``None``, a temporary result object is created (by calling the :meth:`defaultTestResult` method) and - used. The result object is not returned to :meth:`run`'s caller. + used. The result object is returned to :meth:`run`'s caller. The same effect may be had by simply calling the :class:`TestCase` instance. + .. versionchanged:: 3.3 + Previous versions of ``run`` did not return the result. Neither did + calling an instance. .. method:: skipTest(reason) diff --git a/Lib/dbm/__init__.py b/Lib/dbm/__init__.py --- a/Lib/dbm/__init__.py +++ b/Lib/dbm/__init__.py @@ -67,10 +67,10 @@ if not _defaultmod: raise ImportError("no dbm clone found; tried %s" % _names) - # guess the type of an existing database - result = whichdb(file) + # guess the type of an existing database, if not creating a new one + result = whichdb(file) if 'n' not in flag else None if result is None: - # db doesn't exist + # db doesn't exist or 'n' flag was specified to create a new db if 'c' in flag or 'n' in flag: # file doesn't exist and the new flag was used so use default type mod = _defaultmod diff --git a/Lib/email/generator.py b/Lib/email/generator.py --- a/Lib/email/generator.py +++ b/Lib/email/generator.py @@ -59,7 +59,7 @@ self._fp.write(s) def flatten(self, msg, unixfrom=False, linesep='\n'): - """Print the message object tree rooted at msg to the output file + r"""Print the message object tree rooted at msg to the output file specified when the Generator instance was created. unixfrom is a flag that forces the printing of a Unix From_ delimiter @@ -70,7 +70,10 @@ Note that for subobjects, no From_ line is printed. linesep specifies the characters used to indicate a new line in - the output. + the output. The default value is the most useful for typical + Python applications, but it can be set to \r\n to produce RFC-compliant + line separators when needed. + """ # We use the _XXX constants for operating on data that comes directly # from the msg, and _encoded_XXX constants for operating on data that diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -276,7 +276,7 @@ self._chunks.append((s, charset)) def encode(self, splitchars=';, \t', maxlinelen=None, linesep='\n'): - """Encode a message header into an RFC-compliant format. + r"""Encode a message header into an RFC-compliant format. There are many issues involved in converting a given string for use in an email header. Only certain character sets are readable in most diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -191,8 +191,10 @@ A ValueError will be raised if Popen is called with invalid arguments. -check_call() and check_output() will raise CalledProcessError, if the -called process returns a non-zero return code. +Exceptions defined within this module inherit from SubprocessError. +check_call() and check_output() will raise CalledProcessError if the +called process returns a non-zero return code. TimeoutExpired +be raised if a timeout was specified and expired. Security @@ -348,7 +350,10 @@ import warnings # Exception classes used by this module. -class CalledProcessError(Exception): +class SubprocessError(Exception): pass + + +class CalledProcessError(SubprocessError): """This exception is raised when a process run by check_call() or check_output() returns a non-zero exit status. The exit status will be stored in the returncode attribute; @@ -362,7 +367,7 @@ return "Command '%s' returned non-zero exit status %d" % (self.cmd, self.returncode) -class TimeoutExpired(Exception): +class TimeoutExpired(SubprocessError): """This exception is raised when the timeout expires while waiting for a child process. """ diff --git a/Lib/test/test_dbm.py b/Lib/test/test_dbm.py --- a/Lib/test/test_dbm.py +++ b/Lib/test/test_dbm.py @@ -70,6 +70,14 @@ self.read_helper(f) f.close() + def test_anydbm_creation_n_file_exists_with_invalid_contents(self): + with open(_fname, "w") as w: + pass # create an empty file + + f = dbm.open(_fname, 'n') + self.addCleanup(f.close) + self.assertEqual(len(f), 0) + def test_anydbm_modification(self): self.init_db() f = dbm.open(_fname, 'c') diff --git a/Lib/test/test_pep292.py b/Lib/test/test_pep292.py --- a/Lib/test/test_pep292.py +++ b/Lib/test/test_pep292.py @@ -42,6 +42,19 @@ s = Template('$who likes $$') eq(s.substitute(dict(who='tim', what='ham')), 'tim likes $') + def test_invalid(self): + class MyPattern(Template): + pattern = r""" + (?: + (?P) | + (?P%(delim)s) | + @(?P%(id)s) | + @{(?P%(id)s)} + ) + """ + s = MyPattern('$') + self.assertRaises(ValueError, s.substitute, dict()) + def test_percents(self): eq = self.assertEqual s = Template('%(foo)s $foo ${foo}') diff --git a/Lib/test/test_readline.py b/Lib/test/test_readline.py --- a/Lib/test/test_readline.py +++ b/Lib/test/test_readline.py @@ -12,6 +12,10 @@ readline = import_module('readline') class TestHistoryManipulation (unittest.TestCase): + + @unittest.skipIf(not hasattr(readline, 'clear_history'), + "The history update test cannot be run because the " + "clear_history method is not available.") def testHistoryUpdates(self): readline.clear_history() diff --git a/Lib/test/test_string.py b/Lib/test/test_string.py --- a/Lib/test/test_string.py +++ b/Lib/test/test_string.py @@ -112,6 +112,30 @@ self.assertRaises(ValueError, fmt.format, "{0}", 10, 20, i=100) self.assertRaises(ValueError, fmt.format, "{i}", 10, 20, i=100) + def test_vformat_assert(self): + cls = string.Formatter() + kwargs = { + "i": 100 + } + self.assertRaises(ValueError, cls._vformat, + cls.format, "{0}", kwargs, set(), -2) + + def test_convert_field(self): + cls = string.Formatter() + self.assertEqual(cls.format("{0!s}", 'foo'), 'foo') + self.assertRaises(ValueError, cls.format, "{0!h}", 'foo') + + def test_get_field(self): + cls = string.Formatter() + class MyClass: + name = 'lumberjack' + x = MyClass() + self.assertEqual(cls.format("{0.name}", x), 'lumberjack') + + lookup = ["eggs", "and", "spam"] + self.assertEqual(cls.format("{0[2]}", lookup), 'spam') + + def test_main(): support.run_unittest(ModuleTest) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -7,7 +7,9 @@ import array import urllib.request -from urllib.request import Request, OpenerDirector +# The proxy bypass method imported below has logic specific to the OSX +# proxy config data structure but is testable on all platforms. +from urllib.request import Request, OpenerDirector, _proxy_bypass_macosx_sysconf # XXX # Request @@ -1076,6 +1078,17 @@ self.assertEqual(req.get_host(), "www.python.org") del os.environ['no_proxy'] + def test_proxy_no_proxy_all(self): + os.environ['no_proxy'] = '*' + o = OpenerDirector() + ph = urllib.request.ProxyHandler(dict(http="proxy.example.com")) + o.add_handler(ph) + req = Request("http://www.python.org") + self.assertEqual(req.get_host(), "www.python.org") + r = o.open(req) + self.assertEqual(req.get_host(), "www.python.org") + del os.environ['no_proxy'] + def test_proxy_https(self): o = OpenerDirector() @@ -1116,6 +1129,26 @@ self.assertEqual(req.get_host(), "proxy.example.com:3128") self.assertEqual(req.get_header("Proxy-authorization"),"FooBar") + def test_osx_proxy_bypass(self): + bypass = { + 'exclude_simple': False, + 'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.10', + '10.0/16'] + } + # Check hosts that should trigger the proxy bypass + for host in ('foo.bar', 'www.bar.com', '127.0.0.1', '10.10.0.1', + '10.0.0.1'): + self.assertTrue(_proxy_bypass_macosx_sysconf(host, bypass), + 'expected bypass of %s to be True' % host) + # Check hosts that should not trigger the proxy bypass + for host in ('abc.foo.bar', 'bar.com', '127.0.0.2', '10.11.0.1', 'test'): + self.assertFalse(_proxy_bypass_macosx_sysconf(host, bypass), + 'expected bypass of %s to be False' % host) + + # Check the exclude_simple flag + bypass = {'exclude_simple': True, 'exceptions': []} + self.assertTrue(_proxy_bypass_macosx_sysconf('test', bypass)) + def test_basic_auth(self, quote_char='"'): opener = OpenerDirector() password_manager = MockPasswordManager() diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -469,7 +469,7 @@ warnings.warn("TestResult has no addExpectedFailure method, reporting as passes", RuntimeWarning) result.addSuccess(self) - + return result finally: result.stopTest(self) if orig_result is None: diff --git a/Lib/unittest/test/test_case.py b/Lib/unittest/test/test_case.py --- a/Lib/unittest/test/test_case.py +++ b/Lib/unittest/test/test_case.py @@ -386,27 +386,62 @@ self.assertIsInstance(Foo().id(), str) - # "If result is omitted or None, a temporary result object is created - # and used, but is not made available to the caller. As TestCase owns the + # "If result is omitted or None, a temporary result object is created, + # used, and is made available to the caller. As TestCase owns the # temporary result startTestRun and stopTestRun are called. def test_run__uses_defaultTestResult(self): events = [] + defaultResult = LoggingResult(events) class Foo(unittest.TestCase): def test(self): events.append('test') def defaultTestResult(self): - return LoggingResult(events) + return defaultResult # Make run() find a result object on its own - Foo('test').run() + result = Foo('test').run() + self.assertIs(result, defaultResult) expected = ['startTestRun', 'startTest', 'test', 'addSuccess', 'stopTest', 'stopTestRun'] self.assertEqual(events, expected) + + # "The result object is returned to run's caller" + def test_run__returns_given_result(self): + + class Foo(unittest.TestCase): + def test(self): + pass + + result = unittest.TestResult() + + retval = Foo('test').run(result) + self.assertIs(retval, result) + + + # "The same effect [as method run] may be had by simply calling the + # TestCase instance." + def test_call__invoking_an_instance_delegates_to_run(self): + resultIn = unittest.TestResult() + resultOut = unittest.TestResult() + + class Foo(unittest.TestCase): + def test(self): + pass + + def run(self, result): + self.assertIs(result, resultIn) + return resultOut + + retval = Foo('test')(resultIn) + + self.assertIs(retval, resultOut) + + def testShortDescriptionWithoutDocstring(self): self.assertIsNone(self.shortDescription()) diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -2208,68 +2208,76 @@ return 0 +# This code tests an OSX specific data structure but is testable on all +# platforms +def _proxy_bypass_macosx_sysconf(host, proxy_settings): + """ + Return True iff this host shouldn't be accessed using a proxy + + This function uses the MacOSX framework SystemConfiguration + to fetch the proxy information. + + proxy_settings come from _scproxy._get_proxy_settings or get mocked ie: + { 'exclude_simple': bool, + 'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.1', '10.0/16'] + } + """ + import re + import socket + from fnmatch import fnmatch + + hostonly, port = splitport(host) + + def ip2num(ipAddr): + parts = ipAddr.split('.') + parts = list(map(int, parts)) + if len(parts) != 4: + parts = (parts + [0, 0, 0, 0])[:4] + return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3] + + # Check for simple host names: + if '.' not in host: + if proxy_settings['exclude_simple']: + return True + + hostIP = None + + for value in proxy_settings.get('exceptions', ()): + # Items in the list are strings like these: *.local, 169.254/16 + if not value: continue + + m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value) + if m is not None: + if hostIP is None: + try: + hostIP = socket.gethostbyname(hostonly) + hostIP = ip2num(hostIP) + except socket.error: + continue + + base = ip2num(m.group(1)) + mask = m.group(2) + if mask is None: + mask = 8 * (m.group(1).count('.') + 1) + else: + mask = int(mask[1:]) + mask = 32 - mask + + if (hostIP >> mask) == (base >> mask): + return True + + elif fnmatch(host, value): + return True + + return False + + if sys.platform == 'darwin': from _scproxy import _get_proxy_settings, _get_proxies def proxy_bypass_macosx_sysconf(host): - """ - Return True iff this host shouldn't be accessed using a proxy - - This function uses the MacOSX framework SystemConfiguration - to fetch the proxy information. - """ - import re - import socket - from fnmatch import fnmatch - - hostonly, port = splitport(host) - - def ip2num(ipAddr): - parts = ipAddr.split('.') - parts = list(map(int, parts)) - if len(parts) != 4: - parts = (parts + [0, 0, 0, 0])[:4] - return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3] - proxy_settings = _get_proxy_settings() - - # Check for simple host names: - if '.' not in host: - if proxy_settings['exclude_simple']: - return True - - hostIP = None - - for value in proxy_settings.get('exceptions', ()): - # Items in the list are strings like these: *.local, 169.254/16 - if not value: continue - - m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value) - if m is not None: - if hostIP is None: - try: - hostIP = socket.gethostbyname(hostonly) - hostIP = ip2num(hostIP) - except socket.error: - continue - - base = ip2num(m.group(1)) - mask = m.group(2) - if mask is None: - mask = 8 * (m.group(1).count('.') + 1) - - else: - mask = int(mask[1:]) - mask = 32 - mask - - if (hostIP >> mask) == (base >> mask): - return True - - elif fnmatch(host, value): - return True - - return False - + return _proxy_bypass_macosx_sysconf(host, proxy_settings) def getproxies_macosx_sysconf(): """Return a dictionary of scheme -> proxy server URL mappings. diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -32,6 +32,7 @@ Ross Andrus Jon Anglin ?ric Araujo +Alicia Arlen Jason Asbahr David Ascher Chris AtLee @@ -171,6 +172,7 @@ Jeffery Collins Robert Collins Paul Colomiets +Denver Coneybeare Geremy Condra Juan Jos? Conti Matt Conway @@ -350,6 +352,7 @@ Derek Harland Jason Harper Brian Harring +Jonathan Hartley Larry Hastings Shane Hathaway Rycharde Hawkes diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -68,6 +68,16 @@ Library ------- +- Issue #11407: `TestCase.run` returns the result object used or created. + Contributed by Janathan Hartley. + +- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified + IP addresses in the proxy exception list. + +- Issue #11491: dbm.error is no longer raised when dbm.open is called with + the "n" as the flag argument and the file exists. The behavior matches + the documentation and general logic. + - Issue #1162477: Postel Principal adjustment to email date parsing: handle the fact that some non-compliant MUAs use '.' instead of ':' in time specs. @@ -193,6 +203,8 @@ Tests ----- +- Issue #11505: improves test coverage of string.py + - Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a false positive if the last directory in the path is inaccessible. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 02:15:34 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 02:15:34 +0100 Subject: [Python-checkins] cpython (3.2): Fix header encoding of long headers when using euc-jp and shift_jis. Message-ID: http://hg.python.org/cpython/rev/304d57f25c01 changeset: 68483:304d57f25c01 branch: 3.2 parent: 68474:aafb0fed1811 user: R David Murray date: Mon Mar 14 21:13:03 2011 -0400 summary: Fix header encoding of long headers when using euc-jp and shift_jis. When a header was long enough to need to be split across lines, the input charset name was used instead of the output charset name in the encoded words. This make a difference only for the two charsets above. files: Lib/email/charset.py Lib/email/test/test_email.py diff --git a/Lib/email/charset.py b/Lib/email/charset.py --- a/Lib/email/charset.py +++ b/Lib/email/charset.py @@ -321,7 +321,7 @@ codec = self.output_codec or 'us-ascii' header_bytes = _encode(string, codec) encoder_module = self._get_encoder(header_bytes) - encoder = partial(encoder_module.header_encode, charset=str(self)) + encoder = partial(encoder_module.header_encode, charset=codec) # Calculate the number of characters that the RFC 2047 chrome will # contribute to each line. charset = self.get_output_charset() diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -725,6 +725,20 @@ wasnipoop; giraffes="very-long-necked-animals"; \tspooge="yummy"; hippos="gargantuan"; marshmallows="gooey"''') + def test_header_encode_with_different_output_charset(self): + h = Header('?', 'euc-jp') + self.assertEqual(h.encode(), "=?iso-2022-jp?b?GyRCSjgbKEI=?=") + + def test_long_header_encode_with_different_output_charset(self): + h = Header(b'test-ja \xa4\xd8\xc5\xea\xb9\xc6\xa4\xb5\xa4\xec\xa4' + b'\xbf\xa5\xe1\xa1\xbc\xa5\xeb\xa4\xcf\xbb\xca\xb2\xf1\xbc\xd4' + b'\xa4\xce\xbe\xb5\xc7\xa7\xa4\xf2\xc2\xd4\xa4\xc3\xa4\xc6\xa4' + b'\xa4\xa4\xde\xa4\xb9'.decode('euc-jp'), 'euc-jp') + res = """\ +=?iso-2022-jp?b?dGVzdC1qYSAbJEIkWEVqOUYkNSRsJD8lYSE8JWskTztKMnE8VCROPjUbKEI=?= + =?iso-2022-jp?b?GyRCRyckckJUJEMkRiQkJF4kORsoQg==?=""" + self.assertEqual(h.encode(), res) + def test_header_splitter(self): eq = self.ndiffAssertEqual msg = MIMEText('') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 02:15:34 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 02:15:34 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge long Japanese header fix from 3.2. Message-ID: http://hg.python.org/cpython/rev/525d69edc372 changeset: 68484:525d69edc372 parent: 68482:213705ca8ba7 parent: 68483:304d57f25c01 user: R David Murray date: Mon Mar 14 21:14:53 2011 -0400 summary: Merge long Japanese header fix from 3.2. files: Lib/email/test/test_email.py diff --git a/Lib/email/charset.py b/Lib/email/charset.py --- a/Lib/email/charset.py +++ b/Lib/email/charset.py @@ -321,7 +321,7 @@ codec = self.output_codec or 'us-ascii' header_bytes = _encode(string, codec) encoder_module = self._get_encoder(header_bytes) - encoder = partial(encoder_module.header_encode, charset=str(self)) + encoder = partial(encoder_module.header_encode, charset=codec) # Calculate the number of characters that the RFC 2047 chrome will # contribute to each line. charset = self.get_output_charset() diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -725,6 +725,20 @@ wasnipoop; giraffes="very-long-necked-animals"; \tspooge="yummy"; hippos="gargantuan"; marshmallows="gooey"''') + def test_header_encode_with_different_output_charset(self): + h = Header('?', 'euc-jp') + self.assertEqual(h.encode(), "=?iso-2022-jp?b?GyRCSjgbKEI=?=") + + def test_long_header_encode_with_different_output_charset(self): + h = Header(b'test-ja \xa4\xd8\xc5\xea\xb9\xc6\xa4\xb5\xa4\xec\xa4' + b'\xbf\xa5\xe1\xa1\xbc\xa5\xeb\xa4\xcf\xbb\xca\xb2\xf1\xbc\xd4' + b'\xa4\xce\xbe\xb5\xc7\xa7\xa4\xf2\xc2\xd4\xa4\xc3\xa4\xc6\xa4' + b'\xa4\xa4\xde\xa4\xb9'.decode('euc-jp'), 'euc-jp') + res = """\ +=?iso-2022-jp?b?dGVzdC1qYSAbJEIkWEVqOUYkNSRsJD8lYSE8JWskTztKMnE8VCROPjUbKEI=?= + =?iso-2022-jp?b?GyRCRyckckJUJEMkRiQkJF4kORsoQg==?=""" + self.assertEqual(h.encode(), res) + def test_header_splitter(self): eq = self.ndiffAssertEqual msg = MIMEText('') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 03:54:52 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 03:54:52 +0100 Subject: [Python-checkins] cpython (3.1): Remove redundant __contains__ entry from Message docs. Message-ID: http://hg.python.org/cpython/rev/860f8dc27034 changeset: 68485:860f8dc27034 branch: 3.1 parent: 68473:682903e066db user: R David Murray date: Mon Mar 14 22:43:38 2011 -0400 summary: Remove redundant __contains__ entry from Message docs. files: Doc/library/email.message.rst diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -208,12 +208,6 @@ headers. - .. method:: Message.__contains__(name) - - Return true if the message contains a header field named *name*, otherwise - return false. - - .. method:: keys() Return a list of all the message's header field names. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 03:54:53 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 03:54:53 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge redundant __contains__ doc fix from 3.1. Message-ID: http://hg.python.org/cpython/rev/e5a5fafd3e4f changeset: 68486:e5a5fafd3e4f branch: 3.2 parent: 68483:304d57f25c01 parent: 68485:860f8dc27034 user: R David Murray date: Mon Mar 14 22:53:29 2011 -0400 summary: Merge redundant __contains__ doc fix from 3.1. files: Doc/library/email.message.rst diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -222,12 +222,6 @@ headers. - .. method:: Message.__contains__(name) - - Return true if the message contains a header field named *name*, otherwise - return false. - - .. method:: keys() Return a list of all the message's header field names. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 03:54:54 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 03:54:54 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge redundant __contains__ doc fix from 3.2. Message-ID: http://hg.python.org/cpython/rev/1397fd31252a changeset: 68487:1397fd31252a parent: 68484:525d69edc372 parent: 68486:e5a5fafd3e4f user: R David Murray date: Mon Mar 14 22:54:19 2011 -0400 summary: Merge redundant __contains__ doc fix from 3.2. files: diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -222,12 +222,6 @@ headers. - .. method:: Message.__contains__(name) - - Return true if the message contains a header field named *name*, otherwise - return false. - - .. method:: keys() Return a list of all the message's header field names. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 04:19:24 2011 From: python-checkins at python.org (ezio.melotti) Date: Tue, 15 Mar 2011 04:19:24 +0100 Subject: [Python-checkins] cpython (3.1): #11515: fix several typos. Patch by Piotr Kasprzyk. Message-ID: http://hg.python.org/cpython/rev/0991b40e895d changeset: 68488:0991b40e895d branch: 3.1 parent: 68485:860f8dc27034 user: Ezio Melotti date: Tue Mar 15 05:18:48 2011 +0200 summary: #11515: fix several typos. Patch by Piotr Kasprzyk. files: Lib/ctypes/test/test_functions.py Lib/decimal.py Lib/email/mime/application.py Lib/gettext.py Lib/http/client.py Lib/idlelib/EditorWindow.py Lib/idlelib/HISTORY.txt Lib/importlib/_bootstrap.py Lib/nntplib.py Lib/test/crashers/recursion_limit_too_high.py Lib/test/test_compile.py Lib/test/test_descr.py Lib/test/test_os.py Lib/test/test_re.py Lib/test/test_set.py Lib/test/test_string.py Lib/test/test_warnings.py Lib/tkinter/__init__.py Lib/tkinter/tix.py Lib/tkinter/ttk.py Lib/turtle.py Lib/xml/dom/minidom.py Mac/BuildScript/build-installer.py Misc/ACKS Modules/_ctypes/callproc.c Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c Modules/_struct.c Modules/_threadmodule.c Modules/parsermodule.c Modules/zipimport.c Objects/bytearrayobject.c Objects/bytesobject.c Objects/longobject.c Objects/stringlib/string_format.h PC/bdist_wininst/install.c Parser/spark.py Python/_warnings.c Tools/msi/msi.py Tools/pybench/pybench.py setup.py diff --git a/Lib/ctypes/test/test_functions.py b/Lib/ctypes/test/test_functions.py --- a/Lib/ctypes/test/test_functions.py +++ b/Lib/ctypes/test/test_functions.py @@ -116,7 +116,7 @@ self.assertEqual(result, 21) self.assertEqual(type(result), int) - # You cannot assing character format codes as restype any longer + # You cannot assign character format codes as restype any longer self.assertRaises(TypeError, setattr, f, "restype", "i") def test_floatresult(self): diff --git a/Lib/decimal.py b/Lib/decimal.py --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -5710,7 +5710,7 @@ def _format_align(sign, body, spec): """Given an unpadded, non-aligned numeric string 'body' and sign - string 'sign', add padding and aligment conforming to the given + string 'sign', add padding and alignment conforming to the given format specifier dictionary 'spec' (as produced by parse_format_specifier). diff --git a/Lib/email/mime/application.py b/Lib/email/mime/application.py --- a/Lib/email/mime/application.py +++ b/Lib/email/mime/application.py @@ -17,7 +17,7 @@ _encoder=encoders.encode_base64, **_params): """Create an application/* type MIME document. - _data is a string containing the raw applicatoin data. + _data is a string containing the raw application data. _subtype is the MIME content type subtype, defaulting to 'octet-stream'. diff --git a/Lib/gettext.py b/Lib/gettext.py --- a/Lib/gettext.py +++ b/Lib/gettext.py @@ -298,7 +298,7 @@ # Note: we unconditionally convert both msgids and msgstrs to # Unicode using the character encoding specified in the charset # parameter of the Content-Type header. The gettext documentation - # strongly encourages msgids to be us-ascii, but some appliations + # strongly encourages msgids to be us-ascii, but some applications # require alternative encodings (e.g. Zope's ZCML and ZPT). For # traditional gettext applications, the msgid conversion will # cause no problems since us-ascii should always be a subset of diff --git a/Lib/http/client.py b/Lib/http/client.py --- a/Lib/http/client.py +++ b/Lib/http/client.py @@ -799,7 +799,7 @@ del self._buffer[:] # If msg and message_body are sent in a single send() call, # it will avoid performance problems caused by the interaction - # between delayed ack and the Nagle algorithim. + # between delayed ack and the Nagle algorithm. if isinstance(message_body, bytes): msg += message_body message_body = None diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -105,8 +105,8 @@ self.top = top = WindowList.ListedToplevel(root, menu=self.menubar) if flist: self.tkinter_vars = flist.vars - #self.top.instance_dict makes flist.inversedict avalable to - #configDialog.py so it can access all EditorWindow instaces + #self.top.instance_dict makes flist.inversedict available to + #configDialog.py so it can access all EditorWindow instances self.top.instance_dict = flist.inversedict else: self.tkinter_vars = {} # keys: Tkinter event names diff --git a/Lib/idlelib/HISTORY.txt b/Lib/idlelib/HISTORY.txt --- a/Lib/idlelib/HISTORY.txt +++ b/Lib/idlelib/HISTORY.txt @@ -13,7 +13,7 @@ - New tarball released as a result of the 'revitalisation' of the IDLEfork project. -- This release requires python 2.1 or better. Compatability with earlier +- This release requires python 2.1 or better. Compatibility with earlier versions of python (especially ancient ones like 1.5x) is no longer a priority in IDLEfork development. diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -162,7 +162,7 @@ loader can handle. The first argument (self) must define _name which the second argument is - comapred against. If the comparison fails then ImportError is raised. + compared against. If the comparison fails then ImportError is raised. """ def inner(self, name, *args, **kwargs): diff --git a/Lib/nntplib.py b/Lib/nntplib.py --- a/Lib/nntplib.py +++ b/Lib/nntplib.py @@ -103,7 +103,7 @@ readermode is sometimes necessary if you are connecting to an NNTP server on the local machine and intend to call - reader-specific comamnds, such as `group'. If you get + reader-specific commands, such as `group'. If you get unexpected NNTPPermanentErrors, you might need to set readermode. """ diff --git a/Lib/test/crashers/recursion_limit_too_high.py b/Lib/test/crashers/recursion_limit_too_high.py --- a/Lib/test/crashers/recursion_limit_too_high.py +++ b/Lib/test/crashers/recursion_limit_too_high.py @@ -5,7 +5,7 @@ # file handles. # The point of this example is to show that sys.setrecursionlimit() is a -# hack, and not a robust solution. This example simply exercices a path +# hack, and not a robust solution. This example simply exercises a path # where it takes many C-level recursions, consuming a lot of stack # space, for each Python-level recursion. So 1000 times this amount of # stack space may be too much for standard platforms already. diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py --- a/Lib/test/test_compile.py +++ b/Lib/test/test_compile.py @@ -177,7 +177,7 @@ self.assertEqual(eval("-" + all_one_bits), -18446744073709551615) else: self.fail("How many bits *does* this machine have???") - # Verify treatment of contant folding on -(sys.maxsize+1) + # Verify treatment of constant folding on -(sys.maxsize+1) # i.e. -2147483648 on 32 bit platforms. Should return int, not long. self.assertTrue(isinstance(eval("%s" % (-sys.maxsize - 1)), int)) self.assertTrue(isinstance(eval("%s" % (-sys.maxsize - 2)), int)) diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -777,7 +777,7 @@ # see "A Monotonic Superclass Linearization for Dylan", # by Kim Barrett et al. (OOPSLA 1996) def test_consistency_with_epg(self): - # Testing consistentcy with EPG... + # Testing consistency with EPG... class Pane(object): pass class ScrollingMixin(object): pass class EditingMixin(object): pass diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -273,7 +273,7 @@ except TypeError: pass - # Use the constructr with a too-long tuple. + # Use the constructor with a too-long tuple. try: result2 = os.stat_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14)) except TypeError: @@ -320,7 +320,7 @@ except TypeError: pass - # Use the constructr with a too-long tuple. + # Use the constructor with a too-long tuple. try: result2 = os.statvfs_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14)) except TypeError: diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -7,7 +7,7 @@ # Misc tests from Tim Peters' re.doc # WARNING: Don't change details in these tests if you don't know -# what you're doing. Some of these tests were carefuly modeled to +# what you're doing. Some of these tests were carefully modeled to # cover most of the code. import unittest diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py --- a/Lib/test/test_set.py +++ b/Lib/test/test_set.py @@ -584,7 +584,7 @@ self.le_called = True return False - # This first tries the bulitin rich set comparison, which doesn't know + # This first tries the builtin rich set comparison, which doesn't know # how to handle the custom object. Upon returning NotImplemented, the # corresponding comparison on the right object is invoked. myset = {1, 2, 3} diff --git a/Lib/test/test_string.py b/Lib/test/test_string.py --- a/Lib/test/test_string.py +++ b/Lib/test/test_string.py @@ -93,7 +93,7 @@ # test all parameters used class CheckAllUsedFormatter(string.Formatter): def check_unused_args(self, used_args, args, kwargs): - # Track which arguments actuallly got used + # Track which arguments actually got used unused_args = set(kwargs.keys()) unused_args.update(range(0, len(args))) diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py --- a/Lib/test/test_warnings.py +++ b/Lib/test/test_warnings.py @@ -692,7 +692,7 @@ class BootstrapTest(unittest.TestCase): def test_issue_8766(self): # "import encodings" emits a warning whereas the warnings is not loaded - # or not completly loaded (warnings imports indirectly encodings by + # or not completely loaded (warnings imports indirectly encodings by # importing linecache) yet cwd = tempfile.mkdtemp() try: diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py --- a/Lib/tkinter/__init__.py +++ b/Lib/tkinter/__init__.py @@ -1607,7 +1607,7 @@ class Tk(Misc, Wm): """Toplevel widget of Tk which represents mostly the main window - of an appliation. It has an associated Tcl interpreter.""" + of an application. It has an associated Tcl interpreter.""" _w = '.' def __init__(self, screenName=None, baseName=None, className='Tk', useTk=1, sync=0, use=None): diff --git a/Lib/tkinter/tix.py b/Lib/tkinter/tix.py --- a/Lib/tkinter/tix.py +++ b/Lib/tkinter/tix.py @@ -148,7 +148,7 @@ extensions) exist, then the image type is chosen according to the depth of the X display: xbm images are chosen on monochrome displays and color images are chosen on color displays. By using - tix_ getimage, you can advoid hard coding the pathnames of the + tix_ getimage, you can avoid hard coding the pathnames of the image files in your application. When successful, this command returns the name of the newly created image, which can be used to configure the -image option of the Tk and Tix widgets. diff --git a/Lib/tkinter/ttk.py b/Lib/tkinter/ttk.py --- a/Lib/tkinter/ttk.py +++ b/Lib/tkinter/ttk.py @@ -993,7 +993,7 @@ pane is either an integer index or the name of a managed subwindow. If kw is not given, returns a dict of the pane option values. If option is specified then the value for that option is returned. - Otherwise, sets the options to the correspoding values.""" + Otherwise, sets the options to the corresponding values.""" if option is not None: kw[option] = None return _val_or_dict(kw, self.tk.call, self._w, "pane", pane) diff --git a/Lib/turtle.py b/Lib/turtle.py --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -1464,7 +1464,7 @@ Optional argument: picname -- a string, name of a gif-file or "nopic". - If picname is a filename, set the corresponing image as background. + If picname is a filename, set the corresponding image as background. If picname is "nopic", delete backgroundimage, if present. If picname is None, return the filename of the current backgroundimage. @@ -3352,7 +3352,7 @@ def dot(self, size=None, *color): """Draw a dot with diameter size, using color. - Optional argumentS: + Optional arguments: size -- an integer >= 1 (if given) color -- a colorstring or a numeric color tuple diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -1464,7 +1464,7 @@ return False def isId(self, aname): - """Returns true iff the named attribte is a DTD-style ID.""" + """Returns true iff the named attribute is a DTD-style ID.""" return False def isIdNS(self, namespaceURI, localName): diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -98,7 +98,7 @@ ARCHLIST = universal_opts_map[UNIVERSALARCHS] -# Source directory (asume we're in Mac/BuildScript) +# Source directory (assume we're in Mac/BuildScript) SRCDIR = os.path.dirname( os.path.dirname( os.path.dirname( diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -413,6 +413,7 @@ Tamito Kajiyama Peter van Kampen Jacob Kaplan-Moss +Piotr Kasprzyk Lou Kates Hiroaki Kawai Sebastien Keim diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -49,7 +49,7 @@ So, there are 4 data structures holding processed arguments: - the inargs tuple (in PyCFuncPtr_call) - the callargs tuple (in PyCFuncPtr_call) - - the 'struct argguments' array + - the 'struct arguments' array - the 'void *' array */ diff --git a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c --- a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c +++ b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c @@ -59,24 +59,24 @@ The stack layout we want looks like this: - | Return address from ffi_call_DARWIN | higher addresses + | Return address from ffi_call_DARWIN | higher addresses |--------------------------------------------| - | Previous backchain pointer 4 | stack pointer here - |--------------------------------------------|<+ <<< on entry to - | Saved r28-r31 4*4 | | ffi_call_DARWIN + | Previous backchain pointer 4 | stack pointer here + |--------------------------------------------|<+ <<< on entry to + | Saved r28-r31 4*4 | | ffi_call_DARWIN |--------------------------------------------| | | Parameters (at least 8*4=32) | | |--------------------------------------------| | | Space for GPR2 4 | | - |--------------------------------------------| | stack | - | Reserved 2*4 | | grows | - |--------------------------------------------| | down V - | Space for callee's LR 4 | | - |--------------------------------------------| | lower addresses + |--------------------------------------------| | stack | + | Reserved 2*4 | | grows | + |--------------------------------------------| | down V + | Space for callee's LR 4 | | + |--------------------------------------------| | lower addresses | Saved CR 4 | | |--------------------------------------------| | stack pointer here - | Current backchain pointer 4 |-/ during - |--------------------------------------------| <<< ffi_call_DARWIN + | Current backchain pointer 4 |-/ during + |--------------------------------------------| <<< ffi_call_DARWIN */ @@ -123,106 +123,106 @@ i--, ptr++, p_argv++) { switch ((*ptr)->type) - { - /* If a floating-point parameter appears before all of the general- - purpose registers are filled, the corresponding GPRs that match - the size of the floating-point parameter are skipped. */ - case FFI_TYPE_FLOAT: - double_tmp = *(float *)*p_argv; - if (fparg_count >= NUM_FPR_ARG_REGISTERS) - *(double *)next_arg = double_tmp; - else - *fpr_base++ = double_tmp; - next_arg++; - fparg_count++; - FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); - break; + { + /* If a floating-point parameter appears before all of the general- + purpose registers are filled, the corresponding GPRs that match + the size of the floating-point parameter are skipped. */ + case FFI_TYPE_FLOAT: + double_tmp = *(float *)*p_argv; + if (fparg_count >= NUM_FPR_ARG_REGISTERS) + *(double *)next_arg = double_tmp; + else + *fpr_base++ = double_tmp; + next_arg++; + fparg_count++; + FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); + break; - case FFI_TYPE_DOUBLE: - double_tmp = *(double *)*p_argv; - if (fparg_count >= NUM_FPR_ARG_REGISTERS) - *(double *)next_arg = double_tmp; - else - *fpr_base++ = double_tmp; - next_arg += 2; - fparg_count++; - FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); - break; + case FFI_TYPE_DOUBLE: + double_tmp = *(double *)*p_argv; + if (fparg_count >= NUM_FPR_ARG_REGISTERS) + *(double *)next_arg = double_tmp; + else + *fpr_base++ = double_tmp; + next_arg += 2; + fparg_count++; + FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); + break; #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_LONGDOUBLE: - double_tmp = ((double *)*p_argv)[0]; - if (fparg_count >= NUM_FPR_ARG_REGISTERS) - *(double *)next_arg = double_tmp; - else - *fpr_base++ = double_tmp; - next_arg += 2; - fparg_count++; - double_tmp = ((double *)*p_argv)[1]; - if (fparg_count >= NUM_FPR_ARG_REGISTERS) - *(double *)next_arg = double_tmp; - else - *fpr_base++ = double_tmp; - next_arg += 2; - fparg_count++; - FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); - break; + case FFI_TYPE_LONGDOUBLE: + double_tmp = ((double *)*p_argv)[0]; + if (fparg_count >= NUM_FPR_ARG_REGISTERS) + *(double *)next_arg = double_tmp; + else + *fpr_base++ = double_tmp; + next_arg += 2; + fparg_count++; + double_tmp = ((double *)*p_argv)[1]; + if (fparg_count >= NUM_FPR_ARG_REGISTERS) + *(double *)next_arg = double_tmp; + else + *fpr_base++ = double_tmp; + next_arg += 2; + fparg_count++; + FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); + break; #endif - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - *(long long *)next_arg = *(long long *)*p_argv; - next_arg+=2; - break; - case FFI_TYPE_UINT8: - gprvalue = *(unsigned char *)*p_argv; - goto putgpr; - case FFI_TYPE_SINT8: - gprvalue = *(signed char *)*p_argv; - goto putgpr; - case FFI_TYPE_UINT16: - gprvalue = *(unsigned short *)*p_argv; - goto putgpr; - case FFI_TYPE_SINT16: - gprvalue = *(signed short *)*p_argv; - goto putgpr; + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + *(long long *)next_arg = *(long long *)*p_argv; + next_arg+=2; + break; + case FFI_TYPE_UINT8: + gprvalue = *(unsigned char *)*p_argv; + goto putgpr; + case FFI_TYPE_SINT8: + gprvalue = *(signed char *)*p_argv; + goto putgpr; + case FFI_TYPE_UINT16: + gprvalue = *(unsigned short *)*p_argv; + goto putgpr; + case FFI_TYPE_SINT16: + gprvalue = *(signed short *)*p_argv; + goto putgpr; - case FFI_TYPE_STRUCT: - dest_cpy = (char *) next_arg; + case FFI_TYPE_STRUCT: + dest_cpy = (char *) next_arg; - /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, - SI 4 bytes) are aligned as if they were those modes. - Structures with 3 byte in size are padded upwards. */ - size_al = (*ptr)->size; - /* If the first member of the struct is a double, then align - the struct to double-word. - Type 3 is defined in include/ffi.h. #define FFI_TYPE_DOUBLE 3. */ - if ((*ptr)->elements[0]->type == 3) - size_al = ALIGN((*ptr)->size, 8); - if (size_al < 3 && ecif->cif->abi == FFI_DARWIN) - dest_cpy += 4 - size_al; + /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, + SI 4 bytes) are aligned as if they were those modes. + Structures with 3 byte in size are padded upwards. */ + size_al = (*ptr)->size; + /* If the first member of the struct is a double, then align + the struct to double-word. + Type 3 is defined in include/ffi.h. #define FFI_TYPE_DOUBLE 3. */ + if ((*ptr)->elements[0]->type == 3) + size_al = ALIGN((*ptr)->size, 8); + if (size_al < 3 && ecif->cif->abi == FFI_DARWIN) + dest_cpy += 4 - size_al; - memcpy((char *)dest_cpy, (char *)*p_argv, size_al); - next_arg += (size_al + 3) / 4; - break; + memcpy((char *)dest_cpy, (char *)*p_argv, size_al); + next_arg += (size_al + 3) / 4; + break; - case FFI_TYPE_INT: - case FFI_TYPE_UINT32: - case FFI_TYPE_SINT32: - case FFI_TYPE_POINTER: - gprvalue = *(unsigned *)*p_argv; - putgpr: - *next_arg++ = gprvalue; - break; - default: - break; - } + case FFI_TYPE_INT: + case FFI_TYPE_UINT32: + case FFI_TYPE_SINT32: + case FFI_TYPE_POINTER: + gprvalue = *(unsigned *)*p_argv; + putgpr: + *next_arg++ = gprvalue; + break; + default: + break; + } } /* Check that we didn't overrun the stack... */ //FFI_ASSERT(gpr_base <= stacktop - ASM_NEEDS_REGISTERS); //FFI_ASSERT((unsigned *)fpr_base - // <= stacktop - ASM_NEEDS_REGISTERS - NUM_GPR_ARG_REGISTERS); + // <= stacktop - ASM_NEEDS_REGISTERS - NUM_GPR_ARG_REGISTERS); //FFI_ASSERT(flags & FLAG_4_GPR_ARGUMENTS || intarg_count <= 4); } @@ -246,15 +246,15 @@ p = s->elements[i]; darwin_adjust_aggregate_sizes (p); if (i == 0 - && (p->type == FFI_TYPE_UINT64 - || p->type == FFI_TYPE_SINT64 - || p->type == FFI_TYPE_DOUBLE - || p->alignment == 8)) - align = 8; + && (p->type == FFI_TYPE_UINT64 + || p->type == FFI_TYPE_SINT64 + || p->type == FFI_TYPE_DOUBLE + || p->alignment == 8)) + align = 8; else if (p->alignment == 16 || p->alignment < 4) - align = p->alignment; + align = p->alignment; else - align = 4; + align = 4; s->size = ALIGN(s->size, align) + p->size; } @@ -287,7 +287,7 @@ { darwin_adjust_aggregate_sizes (cif->rtype); for (i = 0; i < cif->nargs; i++) - darwin_adjust_aggregate_sizes (cif->arg_types[i]); + darwin_adjust_aggregate_sizes (cif->arg_types[i]); } /* Space for the frame pointer, callee's LR, CR, etc, and for @@ -348,58 +348,58 @@ for (ptr = cif->arg_types, i = cif->nargs; i > 0; i--, ptr++) { switch ((*ptr)->type) - { - case FFI_TYPE_FLOAT: - case FFI_TYPE_DOUBLE: - fparg_count++; - /* If this FP arg is going on the stack, it must be - 8-byte-aligned. */ - if (fparg_count > NUM_FPR_ARG_REGISTERS - && intarg_count%2 != 0) - intarg_count++; - break; + { + case FFI_TYPE_FLOAT: + case FFI_TYPE_DOUBLE: + fparg_count++; + /* If this FP arg is going on the stack, it must be + 8-byte-aligned. */ + if (fparg_count > NUM_FPR_ARG_REGISTERS + && intarg_count%2 != 0) + intarg_count++; + break; #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_LONGDOUBLE: - fparg_count += 2; - /* If this FP arg is going on the stack, it must be - 8-byte-aligned. */ - if (fparg_count > NUM_FPR_ARG_REGISTERS - && intarg_count%2 != 0) - intarg_count++; - intarg_count +=2; - break; + case FFI_TYPE_LONGDOUBLE: + fparg_count += 2; + /* If this FP arg is going on the stack, it must be + 8-byte-aligned. */ + if (fparg_count > NUM_FPR_ARG_REGISTERS + && intarg_count%2 != 0) + intarg_count++; + intarg_count +=2; + break; #endif - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - /* 'long long' arguments are passed as two words, but - either both words must fit in registers or both go - on the stack. If they go on the stack, they must - be 8-byte-aligned. */ - if (intarg_count == NUM_GPR_ARG_REGISTERS-1 - || (intarg_count >= NUM_GPR_ARG_REGISTERS && intarg_count%2 != 0)) - intarg_count++; - intarg_count += 2; - break; + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + /* 'long long' arguments are passed as two words, but + either both words must fit in registers or both go + on the stack. If they go on the stack, they must + be 8-byte-aligned. */ + if (intarg_count == NUM_GPR_ARG_REGISTERS-1 + || (intarg_count >= NUM_GPR_ARG_REGISTERS && intarg_count%2 != 0)) + intarg_count++; + intarg_count += 2; + break; - case FFI_TYPE_STRUCT: - size_al = (*ptr)->size; - /* If the first member of the struct is a double, then align - the struct to double-word. - Type 3 is defined in include/ffi.h. #define FFI_TYPE_DOUBLE 3. */ - if ((*ptr)->elements[0]->type == 3) - size_al = ALIGN((*ptr)->size, 8); - intarg_count += (size_al + 3) / 4; - break; + case FFI_TYPE_STRUCT: + size_al = (*ptr)->size; + /* If the first member of the struct is a double, then align + the struct to double-word. + Type 3 is defined in include/ffi.h. #define FFI_TYPE_DOUBLE 3. */ + if ((*ptr)->elements[0]->type == 3) + size_al = ALIGN((*ptr)->size, 8); + intarg_count += (size_al + 3) / 4; + break; - default: - /* Everything else is passed as a 4-byte word in a GPR, either - the object itself or a pointer to it. */ - intarg_count++; - break; - } + default: + /* Everything else is passed as a 4-byte word in a GPR, either + the object itself or a pointer to it. */ + intarg_count++; + break; + } } if (fparg_count != 0) @@ -425,9 +425,9 @@ } extern void ffi_call_AIX(extended_cif *, unsigned, unsigned, unsigned *, - void (*fn)(void), void (*fn2)(void)); + void (*fn)(void), void (*fn2)(void)); extern void ffi_call_DARWIN(extended_cif *, unsigned, unsigned, unsigned *, - void (*fn)(void), void (*fn2)(void)); + void (*fn)(void), void (*fn2)(void)); void ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue) { @@ -451,11 +451,11 @@ { case FFI_AIX: ffi_call_AIX(&ecif, -cif->bytes, cif->flags, ecif.rvalue, fn, - ffi_prep_args); + ffi_prep_args); break; case FFI_DARWIN: ffi_call_DARWIN(&ecif, -cif->bytes, cif->flags, ecif.rvalue, fn, - ffi_prep_args); + ffi_prep_args); break; default: FFI_ASSERT(0); @@ -478,61 +478,61 @@ and aix_clsoure.S SP previous -> +---------------------------------------+ <--- child frame - | back chain to caller 4 | - +---------------------------------------+ 4 - | saved CR 4 | - +---------------------------------------+ 8 - | saved LR 4 | - +---------------------------------------+ 12 - | reserved for compilers 4 | - +---------------------------------------+ 16 - | reserved for binders 4 | - +---------------------------------------+ 20 - | saved TOC pointer 4 | - +---------------------------------------+ 24 - | always reserved 8*4=32 (previous GPRs)| - | according to the linkage convention | - | from AIX | - +---------------------------------------+ 56 - | our FPR area 13*8=104 | - | f1 | - | . | - | f13 | - +---------------------------------------+ 160 - | result area 8 | - +---------------------------------------+ 168 - | alignement to the next multiple of 16 | + | back chain to caller 4 | + +---------------------------------------+ 4 + | saved CR 4 | + +---------------------------------------+ 8 + | saved LR 4 | + +---------------------------------------+ 12 + | reserved for compilers 4 | + +---------------------------------------+ 16 + | reserved for binders 4 | + +---------------------------------------+ 20 + | saved TOC pointer 4 | + +---------------------------------------+ 24 + | always reserved 8*4=32 (previous GPRs)| + | according to the linkage convention | + | from AIX | + +---------------------------------------+ 56 + | our FPR area 13*8=104 | + | f1 | + | . | + | f13 | + +---------------------------------------+ 160 + | result area 8 | + +---------------------------------------+ 168 + | alignment to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame - | back chain to caller 4 | - +---------------------------------------+ 180 - | saved CR 4 | - +---------------------------------------+ 184 - | saved LR 4 | - +---------------------------------------+ 188 - | reserved for compilers 4 | - +---------------------------------------+ 192 - | reserved for binders 4 | - +---------------------------------------+ 196 - | saved TOC pointer 4 | - +---------------------------------------+ 200 - | always reserved 8*4=32 we store our | - | GPRs here | - | r3 | - | . | - | r10 | - +---------------------------------------+ 232 - | overflow part | - +---------------------------------------+ xxx - | ???? | - +---------------------------------------+ xxx + | back chain to caller 4 | + +---------------------------------------+ 180 + | saved CR 4 | + +---------------------------------------+ 184 + | saved LR 4 | + +---------------------------------------+ 188 + | reserved for compilers 4 | + +---------------------------------------+ 192 + | reserved for binders 4 | + +---------------------------------------+ 196 + | saved TOC pointer 4 | + +---------------------------------------+ 200 + | always reserved 8*4=32 we store our | + | GPRs here | + | r3 | + | . | + | r10 | + +---------------------------------------+ 232 + | overflow part | + +---------------------------------------+ xxx + | ???? | + +---------------------------------------+ xxx */ ffi_status ffi_prep_closure_loc (ffi_closure* closure, - ffi_cif* cif, - void (*fun)(ffi_cif*, void*, void**, void*), - void *user_data, - void *codeloc) + ffi_cif* cif, + void (*fun)(ffi_cif*, void*, void**, void*), + void *user_data, + void *codeloc) { unsigned int *tramp; struct ffi_aix_trampoline_struct *tramp_aix; @@ -592,12 +592,12 @@ { #ifndef _AIX __asm__ volatile ( - "dcbf 0,%0\n" - "\tsync\n" - "\ticbi 0,%0\n" - "\tsync\n" - "\tisync" - : : "r"(addr) : "memory"); + "dcbf 0,%0\n" + "\tsync\n" + "\ticbi 0,%0\n" + "\tsync\n" + "\tisync" + : : "r"(addr) : "memory"); #endif } @@ -618,7 +618,7 @@ } ffi_dblfl; int ffi_closure_helper_DARWIN (ffi_closure*, void*, - unsigned long*, ffi_dblfl*); + unsigned long*, ffi_dblfl*); /* Basically the trampoline invokes ffi_closure_ASM, and on entry, r11 holds the address of the closure. @@ -628,7 +628,7 @@ following helper function to do most of the work. */ int ffi_closure_helper_DARWIN (ffi_closure* closure, void * rvalue, - unsigned long * pgr, ffi_dblfl * pfr) + unsigned long * pgr, ffi_dblfl * pfr) { /* rvalue is the pointer to space for return value in closure assembly pgr is the pointer to where r3-r10 are stored in ffi_closure_ASM @@ -675,121 +675,121 @@ while (i < avn) { switch (arg_types[i]->type) - { - case FFI_TYPE_SINT8: - case FFI_TYPE_UINT8: - avalue[i] = (char *) pgr + 3; - ng++; - pgr++; - break; + { + case FFI_TYPE_SINT8: + case FFI_TYPE_UINT8: + avalue[i] = (char *) pgr + 3; + ng++; + pgr++; + break; - case FFI_TYPE_SINT16: - case FFI_TYPE_UINT16: - avalue[i] = (char *) pgr + 2; - ng++; - pgr++; - break; + case FFI_TYPE_SINT16: + case FFI_TYPE_UINT16: + avalue[i] = (char *) pgr + 2; + ng++; + pgr++; + break; - case FFI_TYPE_SINT32: - case FFI_TYPE_UINT32: - case FFI_TYPE_POINTER: - avalue[i] = pgr; - ng++; - pgr++; - break; + case FFI_TYPE_SINT32: + case FFI_TYPE_UINT32: + case FFI_TYPE_POINTER: + avalue[i] = pgr; + ng++; + pgr++; + break; - case FFI_TYPE_STRUCT: - /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, - SI 4 bytes) are aligned as if they were those modes. */ - size_al = arg_types[i]->size; - /* If the first member of the struct is a double, then align - the struct to double-word. - Type 3 is defined in include/ffi.h. #define FFI_TYPE_DOUBLE 3. */ - if (arg_types[i]->elements[0]->type == 3) - size_al = ALIGN(arg_types[i]->size, 8); - if (size_al < 3 && cif->abi == FFI_DARWIN) - avalue[i] = (void*) pgr + 4 - size_al; - else - avalue[i] = (void*) pgr; - ng += (size_al + 3) / 4; - pgr += (size_al + 3) / 4; - break; + case FFI_TYPE_STRUCT: + /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, + SI 4 bytes) are aligned as if they were those modes. */ + size_al = arg_types[i]->size; + /* If the first member of the struct is a double, then align + the struct to double-word. + Type 3 is defined in include/ffi.h. #define FFI_TYPE_DOUBLE 3. */ + if (arg_types[i]->elements[0]->type == 3) + size_al = ALIGN(arg_types[i]->size, 8); + if (size_al < 3 && cif->abi == FFI_DARWIN) + avalue[i] = (void*) pgr + 4 - size_al; + else + avalue[i] = (void*) pgr; + ng += (size_al + 3) / 4; + pgr += (size_al + 3) / 4; + break; - case FFI_TYPE_SINT64: - case FFI_TYPE_UINT64: - /* Long long ints are passed in two gpr's. */ - avalue[i] = pgr; - ng += 2; - pgr += 2; - break; + case FFI_TYPE_SINT64: + case FFI_TYPE_UINT64: + /* Long long ints are passed in two gpr's. */ + avalue[i] = pgr; + ng += 2; + pgr += 2; + break; - case FFI_TYPE_FLOAT: - /* A float value consumes a GPR. - There are 13 64bit floating point registers. */ - if (nf < NUM_FPR_ARG_REGISTERS) - { - temp = pfr->d; - pfr->f = (float)temp; - avalue[i] = pfr; - pfr++; - } - else - { - avalue[i] = pgr; - } - nf++; - ng++; - pgr++; - break; + case FFI_TYPE_FLOAT: + /* A float value consumes a GPR. + There are 13 64bit floating point registers. */ + if (nf < NUM_FPR_ARG_REGISTERS) + { + temp = pfr->d; + pfr->f = (float)temp; + avalue[i] = pfr; + pfr++; + } + else + { + avalue[i] = pgr; + } + nf++; + ng++; + pgr++; + break; - case FFI_TYPE_DOUBLE: - /* A double value consumes two GPRs. - There are 13 64bit floating point registers. */ - if (nf < NUM_FPR_ARG_REGISTERS) - { - avalue[i] = pfr; - pfr++; - } - else - { - avalue[i] = pgr; - } - nf++; - ng += 2; - pgr += 2; - break; + case FFI_TYPE_DOUBLE: + /* A double value consumes two GPRs. + There are 13 64bit floating point registers. */ + if (nf < NUM_FPR_ARG_REGISTERS) + { + avalue[i] = pfr; + pfr++; + } + else + { + avalue[i] = pgr; + } + nf++; + ng += 2; + pgr += 2; + break; #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_LONGDOUBLE: - /* A long double value consumes four GPRs and two FPRs. - There are 13 64bit floating point registers. */ - if (nf < NUM_FPR_ARG_REGISTERS - 1) - { - avalue[i] = pfr; - pfr += 2; - } - /* Here we have the situation where one part of the long double - is stored in fpr13 and the other part is already on the stack. - We use a union to pass the long double to avalue[i]. */ - else if (nf == NUM_FPR_ARG_REGISTERS - 1) - { - memcpy (&temp_ld.lb[0], pfr, sizeof(ldbits)); - memcpy (&temp_ld.lb[1], pgr + 2, sizeof(ldbits)); - avalue[i] = &temp_ld.ld; - } - else - { - avalue[i] = pgr; - } - nf += 2; - ng += 4; - pgr += 4; - break; + case FFI_TYPE_LONGDOUBLE: + /* A long double value consumes four GPRs and two FPRs. + There are 13 64bit floating point registers. */ + if (nf < NUM_FPR_ARG_REGISTERS - 1) + { + avalue[i] = pfr; + pfr += 2; + } + /* Here we have the situation where one part of the long double + is stored in fpr13 and the other part is already on the stack. + We use a union to pass the long double to avalue[i]. */ + else if (nf == NUM_FPR_ARG_REGISTERS - 1) + { + memcpy (&temp_ld.lb[0], pfr, sizeof(ldbits)); + memcpy (&temp_ld.lb[1], pgr + 2, sizeof(ldbits)); + avalue[i] = &temp_ld.ld; + } + else + { + avalue[i] = pgr; + } + nf += 2; + ng += 4; + pgr += 4; + break; #endif - default: - FFI_ASSERT(0); - } + default: + FFI_ASSERT(0); + } i++; } diff --git a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c --- a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c +++ b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c @@ -39,7 +39,7 @@ #if 0 #if defined(POWERPC_DARWIN) -#include // for sys_icache_invalidate() +#include // for sys_icache_invalidate() #endif #else @@ -55,8 +55,8 @@ // The layout of a function descriptor. A C function pointer really // points to one of these. typedef struct aix_fd_struct { - void* code_pointer; - void* toc; + void* code_pointer; + void* toc; } aix_fd; /* ffi_prep_args is called by the assembly routine once stack space @@ -64,241 +64,241 @@ The stack layout we want looks like this: - | Return address from ffi_call_DARWIN | higher addresses + | Return address from ffi_call_DARWIN | higher addresses |--------------------------------------------| - | Previous backchain pointer 4/8 | stack pointer here + | Previous backchain pointer 4/8 | stack pointer here |--------------------------------------------|-\ <<< on entry to - | Saved r28-r31 (4/8)*4 | | ffi_call_DARWIN + | Saved r28-r31 (4/8)*4 | | ffi_call_DARWIN |--------------------------------------------| | | Parameters (at least 8*(4/8)=32/64) | | (176) +112 - +288 |--------------------------------------------| | | Space for GPR2 4/8 | | - |--------------------------------------------| | stack | - | Reserved (4/8)*2 | | grows | - |--------------------------------------------| | down V + |--------------------------------------------| | stack | + | Reserved (4/8)*2 | | grows | + |--------------------------------------------| | down V | Space for callee's LR 4/8 | | - |--------------------------------------------| | lower addresses + |--------------------------------------------| | lower addresses | Saved CR 4/8 | | |--------------------------------------------| | stack pointer here | Current backchain pointer 4/8 | | during |--------------------------------------------|-/ <<< ffi_call_DARWIN - Note: ppc64 CR is saved in the low word of a long on the stack. + Note: ppc64 CR is saved in the low word of a long on the stack. */ /*@-exportheader@*/ void ffi_prep_args( - extended_cif* inEcif, - unsigned *const stack) + extended_cif* inEcif, + unsigned *const stack) /*@=exportheader@*/ { - /* Copy the ecif to a local var so we can trample the arg. - BC note: test this with GP later for possible problems... */ - volatile extended_cif* ecif = inEcif; + /* Copy the ecif to a local var so we can trample the arg. + BC note: test this with GP later for possible problems... */ + volatile extended_cif* ecif = inEcif; - const unsigned bytes = ecif->cif->bytes; - const unsigned flags = ecif->cif->flags; + const unsigned bytes = ecif->cif->bytes; + const unsigned flags = ecif->cif->flags; - /* Cast the stack arg from int* to long*. sizeof(long) == 4 in 32-bit mode - and 8 in 64-bit mode. */ - unsigned long *const longStack = (unsigned long *const)stack; + /* Cast the stack arg from int* to long*. sizeof(long) == 4 in 32-bit mode + and 8 in 64-bit mode. */ + unsigned long *const longStack = (unsigned long *const)stack; - /* 'stacktop' points at the previous backchain pointer. */ + /* 'stacktop' points at the previous backchain pointer. */ #if defined(__ppc64__) - // In ppc-darwin.s, an extra 96 bytes is reserved for the linkage area, - // saved registers, and an extra FPR. - unsigned long *const stacktop = - (unsigned long *)(unsigned long)((char*)longStack + bytes + 96); + // In ppc-darwin.s, an extra 96 bytes is reserved for the linkage area, + // saved registers, and an extra FPR. + unsigned long *const stacktop = + (unsigned long *)(unsigned long)((char*)longStack + bytes + 96); #elif defined(__ppc__) - unsigned long *const stacktop = longStack + (bytes / sizeof(long)); + unsigned long *const stacktop = longStack + (bytes / sizeof(long)); #else #error undefined architecture #endif - /* 'fpr_base' points at the space for fpr1, and grows upwards as - we use FPR registers. */ - double* fpr_base = (double*)(stacktop - ASM_NEEDS_REGISTERS) - - NUM_FPR_ARG_REGISTERS; + /* 'fpr_base' points at the space for fpr1, and grows upwards as + we use FPR registers. */ + double* fpr_base = (double*)(stacktop - ASM_NEEDS_REGISTERS) - + NUM_FPR_ARG_REGISTERS; #if defined(__ppc64__) - // 64-bit saves an extra register, and uses an extra FPR. Knock fpr_base - // down a couple pegs. - fpr_base -= 2; + // 64-bit saves an extra register, and uses an extra FPR. Knock fpr_base + // down a couple pegs. + fpr_base -= 2; #endif - unsigned int fparg_count = 0; + unsigned int fparg_count = 0; - /* 'next_arg' grows up as we put parameters in it. */ - unsigned long* next_arg = longStack + 6; /* 6 reserved positions. */ + /* 'next_arg' grows up as we put parameters in it. */ + unsigned long* next_arg = longStack + 6; /* 6 reserved positions. */ - int i; - double double_tmp; - void** p_argv = ecif->avalue; - unsigned long gprvalue; - ffi_type** ptr = ecif->cif->arg_types; + int i; + double double_tmp; + void** p_argv = ecif->avalue; + unsigned long gprvalue; + ffi_type** ptr = ecif->cif->arg_types; - /* Check that everything starts aligned properly. */ - FFI_ASSERT(stack == SF_ROUND(stack)); - FFI_ASSERT(stacktop == SF_ROUND(stacktop)); - FFI_ASSERT(bytes == SF_ROUND(bytes)); + /* Check that everything starts aligned properly. */ + FFI_ASSERT(stack == SF_ROUND(stack)); + FFI_ASSERT(stacktop == SF_ROUND(stacktop)); + FFI_ASSERT(bytes == SF_ROUND(bytes)); - /* Deal with return values that are actually pass-by-reference. - Rule: - Return values are referenced by r3, so r4 is the first parameter. */ + /* Deal with return values that are actually pass-by-reference. + Rule: + Return values are referenced by r3, so r4 is the first parameter. */ - if (flags & FLAG_RETVAL_REFERENCE) - *next_arg++ = (unsigned long)(char*)ecif->rvalue; + if (flags & FLAG_RETVAL_REFERENCE) + *next_arg++ = (unsigned long)(char*)ecif->rvalue; - /* Now for the arguments. */ - for (i = ecif->cif->nargs; i > 0; i--, ptr++, p_argv++) + /* Now for the arguments. */ + for (i = ecif->cif->nargs; i > 0; i--, ptr++, p_argv++) { - switch ((*ptr)->type) - { - /* If a floating-point parameter appears before all of the general- - purpose registers are filled, the corresponding GPRs that match - the size of the floating-point parameter are shadowed for the - benefit of vararg and pre-ANSI functions. */ - case FFI_TYPE_FLOAT: - double_tmp = *(float*)*p_argv; + switch ((*ptr)->type) + { + /* If a floating-point parameter appears before all of the general- + purpose registers are filled, the corresponding GPRs that match + the size of the floating-point parameter are shadowed for the + benefit of vararg and pre-ANSI functions. */ + case FFI_TYPE_FLOAT: + double_tmp = *(float*)*p_argv; - if (fparg_count < NUM_FPR_ARG_REGISTERS) - *fpr_base++ = double_tmp; + if (fparg_count < NUM_FPR_ARG_REGISTERS) + *fpr_base++ = double_tmp; - *(double*)next_arg = double_tmp; + *(double*)next_arg = double_tmp; - next_arg++; - fparg_count++; - FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); + next_arg++; + fparg_count++; + FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); - break; + break; - case FFI_TYPE_DOUBLE: - double_tmp = *(double*)*p_argv; + case FFI_TYPE_DOUBLE: + double_tmp = *(double*)*p_argv; - if (fparg_count < NUM_FPR_ARG_REGISTERS) - *fpr_base++ = double_tmp; + if (fparg_count < NUM_FPR_ARG_REGISTERS) + *fpr_base++ = double_tmp; - *(double*)next_arg = double_tmp; + *(double*)next_arg = double_tmp; - next_arg += MODE_CHOICE(2,1); - fparg_count++; - FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); + next_arg += MODE_CHOICE(2,1); + fparg_count++; + FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); - break; + break; #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_LONGDOUBLE: + case FFI_TYPE_LONGDOUBLE: #if defined(__ppc64__) - if (fparg_count < NUM_FPR_ARG_REGISTERS) - *(long double*)fpr_base = *(long double*)*p_argv; + if (fparg_count < NUM_FPR_ARG_REGISTERS) + *(long double*)fpr_base = *(long double*)*p_argv; #elif defined(__ppc__) - if (fparg_count < NUM_FPR_ARG_REGISTERS - 1) - *(long double*)fpr_base = *(long double*)*p_argv; - else if (fparg_count == NUM_FPR_ARG_REGISTERS - 1) - *(double*)fpr_base = *(double*)*p_argv; + if (fparg_count < NUM_FPR_ARG_REGISTERS - 1) + *(long double*)fpr_base = *(long double*)*p_argv; + else if (fparg_count == NUM_FPR_ARG_REGISTERS - 1) + *(double*)fpr_base = *(double*)*p_argv; #else #error undefined architecture #endif - *(long double*)next_arg = *(long double*)*p_argv; - fparg_count += 2; - fpr_base += 2; - next_arg += MODE_CHOICE(4,2); - FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); + *(long double*)next_arg = *(long double*)*p_argv; + fparg_count += 2; + fpr_base += 2; + next_arg += MODE_CHOICE(4,2); + FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); - break; -#endif // FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE + break; +#endif // FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: #if defined(__ppc64__) - gprvalue = *(long long*)*p_argv; - goto putgpr; + gprvalue = *(long long*)*p_argv; + goto putgpr; #elif defined(__ppc__) - *(long long*)next_arg = *(long long*)*p_argv; - next_arg += 2; - break; + *(long long*)next_arg = *(long long*)*p_argv; + next_arg += 2; + break; #else #error undefined architecture #endif - case FFI_TYPE_POINTER: - gprvalue = *(unsigned long*)*p_argv; - goto putgpr; + case FFI_TYPE_POINTER: + gprvalue = *(unsigned long*)*p_argv; + goto putgpr; - case FFI_TYPE_UINT8: - gprvalue = *(unsigned char*)*p_argv; - goto putgpr; + case FFI_TYPE_UINT8: + gprvalue = *(unsigned char*)*p_argv; + goto putgpr; - case FFI_TYPE_SINT8: - gprvalue = *(signed char*)*p_argv; - goto putgpr; + case FFI_TYPE_SINT8: + gprvalue = *(signed char*)*p_argv; + goto putgpr; - case FFI_TYPE_UINT16: - gprvalue = *(unsigned short*)*p_argv; - goto putgpr; + case FFI_TYPE_UINT16: + gprvalue = *(unsigned short*)*p_argv; + goto putgpr; - case FFI_TYPE_SINT16: - gprvalue = *(signed short*)*p_argv; - goto putgpr; + case FFI_TYPE_SINT16: + gprvalue = *(signed short*)*p_argv; + goto putgpr; - case FFI_TYPE_STRUCT: - { + case FFI_TYPE_STRUCT: + { #if defined(__ppc64__) - unsigned int gprSize = 0; - unsigned int fprSize = 0; + unsigned int gprSize = 0; + unsigned int fprSize = 0; - ffi64_struct_to_reg_form(*ptr, (char*)*p_argv, NULL, &fparg_count, - (char*)next_arg, &gprSize, (char*)fpr_base, &fprSize); - next_arg += gprSize / sizeof(long); - fpr_base += fprSize / sizeof(double); + ffi64_struct_to_reg_form(*ptr, (char*)*p_argv, NULL, &fparg_count, + (char*)next_arg, &gprSize, (char*)fpr_base, &fprSize); + next_arg += gprSize / sizeof(long); + fpr_base += fprSize / sizeof(double); #elif defined(__ppc__) - char* dest_cpy = (char*)next_arg; + char* dest_cpy = (char*)next_arg; - /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, - SI 4 bytes) are aligned as if they were those modes. - Structures with 3 byte in size are padded upwards. */ - unsigned size_al = (*ptr)->size; + /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, + SI 4 bytes) are aligned as if they were those modes. + Structures with 3 byte in size are padded upwards. */ + unsigned size_al = (*ptr)->size; - /* If the first member of the struct is a double, then align - the struct to double-word. */ - if ((*ptr)->elements[0]->type == FFI_TYPE_DOUBLE) - size_al = ALIGN((*ptr)->size, 8); + /* If the first member of the struct is a double, then align + the struct to double-word. */ + if ((*ptr)->elements[0]->type == FFI_TYPE_DOUBLE) + size_al = ALIGN((*ptr)->size, 8); - if (ecif->cif->abi == FFI_DARWIN) - { - if (size_al < 3) - dest_cpy += 4 - size_al; - } + if (ecif->cif->abi == FFI_DARWIN) + { + if (size_al < 3) + dest_cpy += 4 - size_al; + } - memcpy((char*)dest_cpy, (char*)*p_argv, size_al); - next_arg += (size_al + 3) / 4; + memcpy((char*)dest_cpy, (char*)*p_argv, size_al); + next_arg += (size_al + 3) / 4; #else #error undefined architecture #endif - break; - } + break; + } - case FFI_TYPE_INT: - case FFI_TYPE_UINT32: - case FFI_TYPE_SINT32: - gprvalue = *(unsigned*)*p_argv; + case FFI_TYPE_INT: + case FFI_TYPE_UINT32: + case FFI_TYPE_SINT32: + gprvalue = *(unsigned*)*p_argv; putgpr: - *next_arg++ = gprvalue; - break; + *next_arg++ = gprvalue; + break; - default: - break; - } - } + default: + break; + } + } /* Check that we didn't overrun the stack... */ //FFI_ASSERT(gpr_base <= stacktop - ASM_NEEDS_REGISTERS); //FFI_ASSERT((unsigned *)fpr_base - // <= stacktop - ASM_NEEDS_REGISTERS - NUM_GPR_ARG_REGISTERS); + // <= stacktop - ASM_NEEDS_REGISTERS - NUM_GPR_ARG_REGISTERS); //FFI_ASSERT(flags & FLAG_4_GPR_ARGUMENTS || intarg_count <= 4); } @@ -306,320 +306,320 @@ bool ffi64_struct_contains_fp( - const ffi_type* inType) + const ffi_type* inType) { - bool containsFP = false; - unsigned int i; + bool containsFP = false; + unsigned int i; - for (i = 0; inType->elements[i] != NULL && !containsFP; i++) - { - if (inType->elements[i]->type == FFI_TYPE_FLOAT || - inType->elements[i]->type == FFI_TYPE_DOUBLE || - inType->elements[i]->type == FFI_TYPE_LONGDOUBLE) - containsFP = true; - else if (inType->elements[i]->type == FFI_TYPE_STRUCT) - containsFP = ffi64_struct_contains_fp(inType->elements[i]); - } + for (i = 0; inType->elements[i] != NULL && !containsFP; i++) + { + if (inType->elements[i]->type == FFI_TYPE_FLOAT || + inType->elements[i]->type == FFI_TYPE_DOUBLE || + inType->elements[i]->type == FFI_TYPE_LONGDOUBLE) + containsFP = true; + else if (inType->elements[i]->type == FFI_TYPE_STRUCT) + containsFP = ffi64_struct_contains_fp(inType->elements[i]); + } - return containsFP; + return containsFP; } -#endif // defined(__ppc64__) +#endif // defined(__ppc64__) /* Perform machine dependent cif processing. */ ffi_status ffi_prep_cif_machdep( - ffi_cif* cif) + ffi_cif* cif) { - /* All this is for the DARWIN ABI. */ - int i; - ffi_type** ptr; - int intarg_count = 0; - int fparg_count = 0; - unsigned int flags = 0; - unsigned int size_al = 0; + /* All this is for the DARWIN ABI. */ + int i; + ffi_type** ptr; + int intarg_count = 0; + int fparg_count = 0; + unsigned int flags = 0; + unsigned int size_al = 0; - /* All the machine-independent calculation of cif->bytes will be wrong. - Redo the calculation for DARWIN. */ + /* All the machine-independent calculation of cif->bytes will be wrong. + Redo the calculation for DARWIN. */ - /* Space for the frame pointer, callee's LR, CR, etc, and for - the asm's temp regs. */ - unsigned int bytes = (6 + ASM_NEEDS_REGISTERS) * sizeof(long); + /* Space for the frame pointer, callee's LR, CR, etc, and for + the asm's temp regs. */ + unsigned int bytes = (6 + ASM_NEEDS_REGISTERS) * sizeof(long); - /* Return value handling. The rules are as follows: - - 32-bit (or less) integer values are returned in gpr3; - - Structures of size <= 4 bytes also returned in gpr3; - - 64-bit integer values and structures between 5 and 8 bytes are - returned in gpr3 and gpr4; - - Single/double FP values are returned in fpr1; - - Long double FP (if not equivalent to double) values are returned in - fpr1 and fpr2; - - Larger structures values are allocated space and a pointer is passed - as the first argument. */ - switch (cif->rtype->type) - { + /* Return value handling. The rules are as follows: + - 32-bit (or less) integer values are returned in gpr3; + - Structures of size <= 4 bytes also returned in gpr3; + - 64-bit integer values and structures between 5 and 8 bytes are + returned in gpr3 and gpr4; + - Single/double FP values are returned in fpr1; + - Long double FP (if not equivalent to double) values are returned in + fpr1 and fpr2; + - Larger structures values are allocated space and a pointer is passed + as the first argument. */ + switch (cif->rtype->type) + { #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_LONGDOUBLE: - flags |= FLAG_RETURNS_128BITS; - flags |= FLAG_RETURNS_FP; - break; -#endif // FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE + case FFI_TYPE_LONGDOUBLE: + flags |= FLAG_RETURNS_128BITS; + flags |= FLAG_RETURNS_FP; + break; +#endif // FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_DOUBLE: - flags |= FLAG_RETURNS_64BITS; - /* Fall through. */ - case FFI_TYPE_FLOAT: - flags |= FLAG_RETURNS_FP; - break; + case FFI_TYPE_DOUBLE: + flags |= FLAG_RETURNS_64BITS; + /* Fall through. */ + case FFI_TYPE_FLOAT: + flags |= FLAG_RETURNS_FP; + break; #if defined(__ppc64__) - case FFI_TYPE_POINTER: + case FFI_TYPE_POINTER: #endif - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - flags |= FLAG_RETURNS_64BITS; - break; + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + flags |= FLAG_RETURNS_64BITS; + break; - case FFI_TYPE_STRUCT: - { + case FFI_TYPE_STRUCT: + { #if defined(__ppc64__) - if (ffi64_stret_needs_ptr(cif->rtype, NULL, NULL)) - { - flags |= FLAG_RETVAL_REFERENCE; - flags |= FLAG_RETURNS_NOTHING; - intarg_count++; - } - else - { - flags |= FLAG_RETURNS_STRUCT; + if (ffi64_stret_needs_ptr(cif->rtype, NULL, NULL)) + { + flags |= FLAG_RETVAL_REFERENCE; + flags |= FLAG_RETURNS_NOTHING; + intarg_count++; + } + else + { + flags |= FLAG_RETURNS_STRUCT; - if (ffi64_struct_contains_fp(cif->rtype)) - flags |= FLAG_STRUCT_CONTAINS_FP; - } + if (ffi64_struct_contains_fp(cif->rtype)) + flags |= FLAG_STRUCT_CONTAINS_FP; + } #elif defined(__ppc__) - flags |= FLAG_RETVAL_REFERENCE; - flags |= FLAG_RETURNS_NOTHING; - intarg_count++; + flags |= FLAG_RETVAL_REFERENCE; + flags |= FLAG_RETURNS_NOTHING; + intarg_count++; #else #error undefined architecture #endif - break; - } + break; + } - case FFI_TYPE_VOID: - flags |= FLAG_RETURNS_NOTHING; - break; + case FFI_TYPE_VOID: + flags |= FLAG_RETURNS_NOTHING; + break; - default: - /* Returns 32-bit integer, or similar. Nothing to do here. */ - break; - } + default: + /* Returns 32-bit integer, or similar. Nothing to do here. */ + break; + } - /* The first NUM_GPR_ARG_REGISTERS words of integer arguments, and the - first NUM_FPR_ARG_REGISTERS fp arguments, go in registers; the rest - goes on the stack. Structures are passed as a pointer to a copy of - the structure. Stuff on the stack needs to keep proper alignment. */ - for (ptr = cif->arg_types, i = cif->nargs; i > 0; i--, ptr++) - { - switch ((*ptr)->type) - { - case FFI_TYPE_FLOAT: - case FFI_TYPE_DOUBLE: - fparg_count++; - /* If this FP arg is going on the stack, it must be - 8-byte-aligned. */ - if (fparg_count > NUM_FPR_ARG_REGISTERS - && intarg_count % 2 != 0) - intarg_count++; - break; + /* The first NUM_GPR_ARG_REGISTERS words of integer arguments, and the + first NUM_FPR_ARG_REGISTERS fp arguments, go in registers; the rest + goes on the stack. Structures are passed as a pointer to a copy of + the structure. Stuff on the stack needs to keep proper alignment. */ + for (ptr = cif->arg_types, i = cif->nargs; i > 0; i--, ptr++) + { + switch ((*ptr)->type) + { + case FFI_TYPE_FLOAT: + case FFI_TYPE_DOUBLE: + fparg_count++; + /* If this FP arg is going on the stack, it must be + 8-byte-aligned. */ + if (fparg_count > NUM_FPR_ARG_REGISTERS + && intarg_count % 2 != 0) + intarg_count++; + break; #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_LONGDOUBLE: - fparg_count += 2; - /* If this FP arg is going on the stack, it must be - 8-byte-aligned. */ + case FFI_TYPE_LONGDOUBLE: + fparg_count += 2; + /* If this FP arg is going on the stack, it must be + 8-byte-aligned. */ - if ( + if ( #if defined(__ppc64__) - fparg_count > NUM_FPR_ARG_REGISTERS + 1 + fparg_count > NUM_FPR_ARG_REGISTERS + 1 #elif defined(__ppc__) - fparg_count > NUM_FPR_ARG_REGISTERS + fparg_count > NUM_FPR_ARG_REGISTERS #else #error undefined architecture #endif - && intarg_count % 2 != 0) - intarg_count++; + && intarg_count % 2 != 0) + intarg_count++; - intarg_count += 2; - break; -#endif // FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE + intarg_count += 2; + break; +#endif // FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - /* 'long long' arguments are passed as two words, but - either both words must fit in registers or both go - on the stack. If they go on the stack, they must - be 8-byte-aligned. */ - if (intarg_count == NUM_GPR_ARG_REGISTERS - 1 - || (intarg_count >= NUM_GPR_ARG_REGISTERS - && intarg_count % 2 != 0)) - intarg_count++; + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + /* 'long long' arguments are passed as two words, but + either both words must fit in registers or both go + on the stack. If they go on the stack, they must + be 8-byte-aligned. */ + if (intarg_count == NUM_GPR_ARG_REGISTERS - 1 + || (intarg_count >= NUM_GPR_ARG_REGISTERS + && intarg_count % 2 != 0)) + intarg_count++; - intarg_count += MODE_CHOICE(2,1); + intarg_count += MODE_CHOICE(2,1); - break; + break; - case FFI_TYPE_STRUCT: - size_al = (*ptr)->size; - /* If the first member of the struct is a double, then align - the struct to double-word. */ - if ((*ptr)->elements[0]->type == FFI_TYPE_DOUBLE) - size_al = ALIGN((*ptr)->size, 8); + case FFI_TYPE_STRUCT: + size_al = (*ptr)->size; + /* If the first member of the struct is a double, then align + the struct to double-word. */ + if ((*ptr)->elements[0]->type == FFI_TYPE_DOUBLE) + size_al = ALIGN((*ptr)->size, 8); #if defined(__ppc64__) - // Look for FP struct members. - unsigned int j; + // Look for FP struct members. + unsigned int j; - for (j = 0; (*ptr)->elements[j] != NULL; j++) - { - if ((*ptr)->elements[j]->type == FFI_TYPE_FLOAT || - (*ptr)->elements[j]->type == FFI_TYPE_DOUBLE) - { - fparg_count++; + for (j = 0; (*ptr)->elements[j] != NULL; j++) + { + if ((*ptr)->elements[j]->type == FFI_TYPE_FLOAT || + (*ptr)->elements[j]->type == FFI_TYPE_DOUBLE) + { + fparg_count++; - if (fparg_count > NUM_FPR_ARG_REGISTERS) - intarg_count++; - } - else if ((*ptr)->elements[j]->type == FFI_TYPE_LONGDOUBLE) - { - fparg_count += 2; + if (fparg_count > NUM_FPR_ARG_REGISTERS) + intarg_count++; + } + else if ((*ptr)->elements[j]->type == FFI_TYPE_LONGDOUBLE) + { + fparg_count += 2; - if (fparg_count > NUM_FPR_ARG_REGISTERS + 1) - intarg_count += 2; - } - else - intarg_count++; - } + if (fparg_count > NUM_FPR_ARG_REGISTERS + 1) + intarg_count += 2; + } + else + intarg_count++; + } #elif defined(__ppc__) - intarg_count += (size_al + 3) / 4; + intarg_count += (size_al + 3) / 4; #else #error undefined architecture #endif - break; + break; - default: - /* Everything else is passed as a 4/8-byte word in a GPR, either - the object itself or a pointer to it. */ - intarg_count++; - break; - } - } + default: + /* Everything else is passed as a 4/8-byte word in a GPR, either + the object itself or a pointer to it. */ + intarg_count++; + break; + } + } - /* Space for the FPR registers, if needed. */ - if (fparg_count != 0) - { - flags |= FLAG_FP_ARGUMENTS; + /* Space for the FPR registers, if needed. */ + if (fparg_count != 0) + { + flags |= FLAG_FP_ARGUMENTS; #if defined(__ppc64__) - bytes += (NUM_FPR_ARG_REGISTERS + 1) * sizeof(double); + bytes += (NUM_FPR_ARG_REGISTERS + 1) * sizeof(double); #elif defined(__ppc__) - bytes += NUM_FPR_ARG_REGISTERS * sizeof(double); + bytes += NUM_FPR_ARG_REGISTERS * sizeof(double); #else #error undefined architecture #endif - } + } - /* Stack space. */ + /* Stack space. */ #if defined(__ppc64__) - if ((intarg_count + fparg_count) > NUM_GPR_ARG_REGISTERS) - bytes += (intarg_count + fparg_count) * sizeof(long); + if ((intarg_count + fparg_count) > NUM_GPR_ARG_REGISTERS) + bytes += (intarg_count + fparg_count) * sizeof(long); #elif defined(__ppc__) - if ((intarg_count + 2 * fparg_count) > NUM_GPR_ARG_REGISTERS) - bytes += (intarg_count + 2 * fparg_count) * sizeof(long); + if ((intarg_count + 2 * fparg_count) > NUM_GPR_ARG_REGISTERS) + bytes += (intarg_count + 2 * fparg_count) * sizeof(long); #else #error undefined architecture #endif - else - bytes += NUM_GPR_ARG_REGISTERS * sizeof(long); + else + bytes += NUM_GPR_ARG_REGISTERS * sizeof(long); - /* The stack space allocated needs to be a multiple of 16/32 bytes. */ - bytes = SF_ROUND(bytes); + /* The stack space allocated needs to be a multiple of 16/32 bytes. */ + bytes = SF_ROUND(bytes); - cif->flags = flags; - cif->bytes = bytes; + cif->flags = flags; + cif->bytes = bytes; - return FFI_OK; + return FFI_OK; } /*@-declundef@*/ /*@-exportheader@*/ extern void ffi_call_AIX( -/*@out@*/ extended_cif*, - unsigned, - unsigned, -/*@out@*/ unsigned*, - void (*fn)(void), - void (*fn2)(extended_cif*, unsigned *const)); +/*@out@*/ extended_cif*, + unsigned, + unsigned, +/*@out@*/ unsigned*, + void (*fn)(void), + void (*fn2)(extended_cif*, unsigned *const)); extern void ffi_call_DARWIN( -/*@out@*/ extended_cif*, - unsigned long, - unsigned, -/*@out@*/ unsigned*, - void (*fn)(void), - void (*fn2)(extended_cif*, unsigned *const)); +/*@out@*/ extended_cif*, + unsigned long, + unsigned, +/*@out@*/ unsigned*, + void (*fn)(void), + void (*fn2)(extended_cif*, unsigned *const)); /*@=declundef@*/ /*@=exportheader@*/ void ffi_call( -/*@dependent@*/ ffi_cif* cif, - void (*fn)(void), -/*@out@*/ void* rvalue, -/*@dependent@*/ void** avalue) +/*@dependent@*/ ffi_cif* cif, + void (*fn)(void), +/*@out@*/ void* rvalue, +/*@dependent@*/ void** avalue) { - extended_cif ecif; + extended_cif ecif; - ecif.cif = cif; - ecif.avalue = avalue; + ecif.cif = cif; + ecif.avalue = avalue; - /* If the return value is a struct and we don't have a return - value address then we need to make one. */ - if ((rvalue == NULL) && - (cif->rtype->type == FFI_TYPE_STRUCT)) - { - /*@-sysunrecog@*/ - ecif.rvalue = alloca(cif->rtype->size); - /*@=sysunrecog@*/ - } - else - ecif.rvalue = rvalue; + /* If the return value is a struct and we don't have a return + value address then we need to make one. */ + if ((rvalue == NULL) && + (cif->rtype->type == FFI_TYPE_STRUCT)) + { + /*@-sysunrecog@*/ + ecif.rvalue = alloca(cif->rtype->size); + /*@=sysunrecog@*/ + } + else + ecif.rvalue = rvalue; - switch (cif->abi) - { - case FFI_AIX: - /*@-usedef@*/ - ffi_call_AIX(&ecif, -cif->bytes, - cif->flags, ecif.rvalue, fn, ffi_prep_args); - /*@=usedef@*/ - break; + switch (cif->abi) + { + case FFI_AIX: + /*@-usedef@*/ + ffi_call_AIX(&ecif, -cif->bytes, + cif->flags, ecif.rvalue, fn, ffi_prep_args); + /*@=usedef@*/ + break; - case FFI_DARWIN: - /*@-usedef@*/ - ffi_call_DARWIN(&ecif, -(long)cif->bytes, - cif->flags, ecif.rvalue, fn, ffi_prep_args); - /*@=usedef@*/ - break; + case FFI_DARWIN: + /*@-usedef@*/ + ffi_call_DARWIN(&ecif, -(long)cif->bytes, + cif->flags, ecif.rvalue, fn, ffi_prep_args); + /*@=usedef@*/ + break; - default: - FFI_ASSERT(0); - break; + default: + FFI_ASSERT(0); + break; } } @@ -627,53 +627,53 @@ and aix_clsoure.S SP previous -> +---------------------------------------+ <--- child frame - | back chain to caller 4 | - +---------------------------------------+ 4 - | saved CR 4 | - +---------------------------------------+ 8 - | saved LR 4 | - +---------------------------------------+ 12 - | reserved for compilers 4 | - +---------------------------------------+ 16 - | reserved for binders 4 | - +---------------------------------------+ 20 - | saved TOC pointer 4 | - +---------------------------------------+ 24 - | always reserved 8*4=32 (previous GPRs)| - | according to the linkage convention | - | from AIX | - +---------------------------------------+ 56 - | our FPR area 13*8=104 | - | f1 | - | . | - | f13 | - +---------------------------------------+ 160 - | result area 8 | - +---------------------------------------+ 168 - | alignement to the next multiple of 16 | + | back chain to caller 4 | + +---------------------------------------+ 4 + | saved CR 4 | + +---------------------------------------+ 8 + | saved LR 4 | + +---------------------------------------+ 12 + | reserved for compilers 4 | + +---------------------------------------+ 16 + | reserved for binders 4 | + +---------------------------------------+ 20 + | saved TOC pointer 4 | + +---------------------------------------+ 24 + | always reserved 8*4=32 (previous GPRs)| + | according to the linkage convention | + | from AIX | + +---------------------------------------+ 56 + | our FPR area 13*8=104 | + | f1 | + | . | + | f13 | + +---------------------------------------+ 160 + | result area 8 | + +---------------------------------------+ 168 + | alignment to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame - | back chain to caller 4 | - +---------------------------------------+ 180 - | saved CR 4 | - +---------------------------------------+ 184 - | saved LR 4 | - +---------------------------------------+ 188 - | reserved for compilers 4 | - +---------------------------------------+ 192 - | reserved for binders 4 | - +---------------------------------------+ 196 - | saved TOC pointer 4 | - +---------------------------------------+ 200 - | always reserved 8*4=32 we store our | - | GPRs here | - | r3 | - | . | - | r10 | - +---------------------------------------+ 232 - | overflow part | - +---------------------------------------+ xxx - | ???? | - +---------------------------------------+ xxx + | back chain to caller 4 | + +---------------------------------------+ 180 + | saved CR 4 | + +---------------------------------------+ 184 + | saved LR 4 | + +---------------------------------------+ 188 + | reserved for compilers 4 | + +---------------------------------------+ 192 + | reserved for binders 4 | + +---------------------------------------+ 196 + | saved TOC pointer 4 | + +---------------------------------------+ 200 + | always reserved 8*4=32 we store our | + | GPRs here | + | r3 | + | . | + | r10 | + +---------------------------------------+ 232 + | overflow part | + +---------------------------------------+ xxx + | ???? | + +---------------------------------------+ xxx */ #if !defined(POWERPC_DARWIN) @@ -682,1095 +682,1095 @@ static void flush_icache( - char* addr) + char* addr) { #ifndef _AIX - __asm__ volatile ( - "dcbf 0,%0\n" - "sync\n" - "icbi 0,%0\n" - "sync\n" - "isync" - : : "r" (addr) : "memory"); + __asm__ volatile ( + "dcbf 0,%0\n" + "sync\n" + "icbi 0,%0\n" + "sync\n" + "isync" + : : "r" (addr) : "memory"); #endif } static void flush_range( - char* addr, - int size) + char* addr, + int size) { - int i; + int i; - for (i = 0; i < size; i += MIN_LINE_SIZE) - flush_icache(addr + i); + for (i = 0; i < size; i += MIN_LINE_SIZE) + flush_icache(addr + i); - flush_icache(addr + size - 1); + flush_icache(addr + size - 1); } -#endif // !defined(POWERPC_DARWIN) +#endif // !defined(POWERPC_DARWIN) ffi_status ffi_prep_closure( - ffi_closure* closure, - ffi_cif* cif, - void (*fun)(ffi_cif*, void*, void**, void*), - void* user_data) + ffi_closure* closure, + ffi_cif* cif, + void (*fun)(ffi_cif*, void*, void**, void*), + void* user_data) { - switch (cif->abi) - { - case FFI_DARWIN: - { - FFI_ASSERT (cif->abi == FFI_DARWIN); + switch (cif->abi) + { + case FFI_DARWIN: + { + FFI_ASSERT (cif->abi == FFI_DARWIN); - unsigned int* tramp = (unsigned int*)&closure->tramp[0]; + unsigned int* tramp = (unsigned int*)&closure->tramp[0]; #if defined(__ppc64__) - tramp[0] = 0x7c0802a6; // mflr r0 - tramp[1] = 0x429f0005; // bcl 20,31,+0x8 - tramp[2] = 0x7d6802a6; // mflr r11 - tramp[3] = 0x7c0803a6; // mtlr r0 - tramp[4] = 0xe98b0018; // ld r12,24(r11) - tramp[5] = 0x7d8903a6; // mtctr r12 - tramp[6] = 0xe96b0020; // ld r11,32(r11) - tramp[7] = 0x4e800420; // bctr - *(unsigned long*)&tramp[8] = (unsigned long)ffi_closure_ASM; - *(unsigned long*)&tramp[10] = (unsigned long)closure; + tramp[0] = 0x7c0802a6; // mflr r0 + tramp[1] = 0x429f0005; // bcl 20,31,+0x8 + tramp[2] = 0x7d6802a6; // mflr r11 + tramp[3] = 0x7c0803a6; // mtlr r0 + tramp[4] = 0xe98b0018; // ld r12,24(r11) + tramp[5] = 0x7d8903a6; // mtctr r12 + tramp[6] = 0xe96b0020; // ld r11,32(r11) + tramp[7] = 0x4e800420; // bctr + *(unsigned long*)&tramp[8] = (unsigned long)ffi_closure_ASM; + *(unsigned long*)&tramp[10] = (unsigned long)closure; #elif defined(__ppc__) - tramp[0] = 0x7c0802a6; // mflr r0 - tramp[1] = 0x429f0005; // bcl 20,31,+0x8 - tramp[2] = 0x7d6802a6; // mflr r11 - tramp[3] = 0x7c0803a6; // mtlr r0 - tramp[4] = 0x818b0018; // lwz r12,24(r11) - tramp[5] = 0x7d8903a6; // mtctr r12 - tramp[6] = 0x816b001c; // lwz r11,28(r11) - tramp[7] = 0x4e800420; // bctr - tramp[8] = (unsigned long)ffi_closure_ASM; - tramp[9] = (unsigned long)closure; + tramp[0] = 0x7c0802a6; // mflr r0 + tramp[1] = 0x429f0005; // bcl 20,31,+0x8 + tramp[2] = 0x7d6802a6; // mflr r11 + tramp[3] = 0x7c0803a6; // mtlr r0 + tramp[4] = 0x818b0018; // lwz r12,24(r11) + tramp[5] = 0x7d8903a6; // mtctr r12 + tramp[6] = 0x816b001c; // lwz r11,28(r11) + tramp[7] = 0x4e800420; // bctr + tramp[8] = (unsigned long)ffi_closure_ASM; + tramp[9] = (unsigned long)closure; #else #error undefined architecture #endif - closure->cif = cif; - closure->fun = fun; - closure->user_data = user_data; + closure->cif = cif; + closure->fun = fun; + closure->user_data = user_data; - // Flush the icache. Only necessary on Darwin. + // Flush the icache. Only necessary on Darwin. #if defined(POWERPC_DARWIN) - sys_icache_invalidate(closure->tramp, FFI_TRAMPOLINE_SIZE); + sys_icache_invalidate(closure->tramp, FFI_TRAMPOLINE_SIZE); #else - flush_range(closure->tramp, FFI_TRAMPOLINE_SIZE); + flush_range(closure->tramp, FFI_TRAMPOLINE_SIZE); #endif - break; - } + break; + } - case FFI_AIX: - { - FFI_ASSERT (cif->abi == FFI_AIX); + case FFI_AIX: + { + FFI_ASSERT (cif->abi == FFI_AIX); - ffi_aix_trampoline_struct* tramp_aix = - (ffi_aix_trampoline_struct*)(closure->tramp); - aix_fd* fd = (aix_fd*)(void*)ffi_closure_ASM; + ffi_aix_trampoline_struct* tramp_aix = + (ffi_aix_trampoline_struct*)(closure->tramp); + aix_fd* fd = (aix_fd*)(void*)ffi_closure_ASM; - tramp_aix->code_pointer = fd->code_pointer; - tramp_aix->toc = fd->toc; - tramp_aix->static_chain = closure; - closure->cif = cif; - closure->fun = fun; - closure->user_data = user_data; - break; - } + tramp_aix->code_pointer = fd->code_pointer; + tramp_aix->toc = fd->toc; + tramp_aix->static_chain = closure; + closure->cif = cif; + closure->fun = fun; + closure->user_data = user_data; + break; + } - default: - return FFI_BAD_ABI; - } + default: + return FFI_BAD_ABI; + } - return FFI_OK; + return FFI_OK; } #if defined(__ppc__) - typedef double ldbits[2]; + typedef double ldbits[2]; - typedef union - { - ldbits lb; - long double ld; - } ldu; + typedef union + { + ldbits lb; + long double ld; + } ldu; #endif typedef union { - float f; - double d; + float f; + double d; } ffi_dblfl; -/* The trampoline invokes ffi_closure_ASM, and on entry, r11 holds the - address of the closure. After storing the registers that could possibly - contain parameters to be passed into the stack frame and setting up space - for a return value, ffi_closure_ASM invokes the following helper function - to do most of the work. */ +/* The trampoline invokes ffi_closure_ASM, and on entry, r11 holds the + address of the closure. After storing the registers that could possibly + contain parameters to be passed into the stack frame and setting up space + for a return value, ffi_closure_ASM invokes the following helper function + to do most of the work. */ int ffi_closure_helper_DARWIN( - ffi_closure* closure, - void* rvalue, - unsigned long* pgr, - ffi_dblfl* pfr) + ffi_closure* closure, + void* rvalue, + unsigned long* pgr, + ffi_dblfl* pfr) { - /* rvalue is the pointer to space for return value in closure assembly - pgr is the pointer to where r3-r10 are stored in ffi_closure_ASM - pfr is the pointer to where f1-f13 are stored in ffi_closure_ASM. */ + /* rvalue is the pointer to space for return value in closure assembly + pgr is the pointer to where r3-r10 are stored in ffi_closure_ASM + pfr is the pointer to where f1-f13 are stored in ffi_closure_ASM. */ #if defined(__ppc__) - ldu temp_ld; + ldu temp_ld; #endif - double temp; - unsigned int i; - unsigned int nf = 0; /* number of FPRs already used. */ - unsigned int ng = 0; /* number of GPRs already used. */ - ffi_cif* cif = closure->cif; - long avn = cif->nargs; - void** avalue = alloca(cif->nargs * sizeof(void*)); - ffi_type** arg_types = cif->arg_types; + double temp; + unsigned int i; + unsigned int nf = 0; /* number of FPRs already used. */ + unsigned int ng = 0; /* number of GPRs already used. */ + ffi_cif* cif = closure->cif; + long avn = cif->nargs; + void** avalue = alloca(cif->nargs * sizeof(void*)); + ffi_type** arg_types = cif->arg_types; - /* Copy the caller's structure return value address so that the closure - returns the data directly to the caller. */ + /* Copy the caller's structure return value address so that the closure + returns the data directly to the caller. */ #if defined(__ppc64__) - if (cif->rtype->type == FFI_TYPE_STRUCT && - ffi64_stret_needs_ptr(cif->rtype, NULL, NULL)) + if (cif->rtype->type == FFI_TYPE_STRUCT && + ffi64_stret_needs_ptr(cif->rtype, NULL, NULL)) #elif defined(__ppc__) - if (cif->rtype->type == FFI_TYPE_STRUCT) + if (cif->rtype->type == FFI_TYPE_STRUCT) #else #error undefined architecture #endif - { - rvalue = (void*)*pgr; - pgr++; - ng++; - } + { + rvalue = (void*)*pgr; + pgr++; + ng++; + } - /* Grab the addresses of the arguments from the stack frame. */ - for (i = 0; i < avn; i++) - { - switch (arg_types[i]->type) - { - case FFI_TYPE_SINT8: - case FFI_TYPE_UINT8: - avalue[i] = (char*)pgr + MODE_CHOICE(3,7); - ng++; - pgr++; - break; + /* Grab the addresses of the arguments from the stack frame. */ + for (i = 0; i < avn; i++) + { + switch (arg_types[i]->type) + { + case FFI_TYPE_SINT8: + case FFI_TYPE_UINT8: + avalue[i] = (char*)pgr + MODE_CHOICE(3,7); + ng++; + pgr++; + break; - case FFI_TYPE_SINT16: - case FFI_TYPE_UINT16: - avalue[i] = (char*)pgr + MODE_CHOICE(2,6); - ng++; - pgr++; - break; + case FFI_TYPE_SINT16: + case FFI_TYPE_UINT16: + avalue[i] = (char*)pgr + MODE_CHOICE(2,6); + ng++; + pgr++; + break; #if defined(__ppc__) - case FFI_TYPE_POINTER: + case FFI_TYPE_POINTER: #endif - case FFI_TYPE_SINT32: - case FFI_TYPE_UINT32: - avalue[i] = (char*)pgr + MODE_CHOICE(0,4); - ng++; - pgr++; + case FFI_TYPE_SINT32: + case FFI_TYPE_UINT32: + avalue[i] = (char*)pgr + MODE_CHOICE(0,4); + ng++; + pgr++; - break; + break; - case FFI_TYPE_STRUCT: - if (cif->abi == FFI_DARWIN) - { + case FFI_TYPE_STRUCT: + if (cif->abi == FFI_DARWIN) + { #if defined(__ppc64__) - unsigned int gprSize = 0; - unsigned int fprSize = 0; - unsigned int savedFPRSize = fprSize; + unsigned int gprSize = 0; + unsigned int fprSize = 0; + unsigned int savedFPRSize = fprSize; - avalue[i] = alloca(arg_types[i]->size); - ffi64_struct_to_ram_form(arg_types[i], (const char*)pgr, - &gprSize, (const char*)pfr, &fprSize, &nf, avalue[i], NULL); + avalue[i] = alloca(arg_types[i]->size); + ffi64_struct_to_ram_form(arg_types[i], (const char*)pgr, + &gprSize, (const char*)pfr, &fprSize, &nf, avalue[i], NULL); - ng += gprSize / sizeof(long); - pgr += gprSize / sizeof(long); - pfr += (fprSize - savedFPRSize) / sizeof(double); + ng += gprSize / sizeof(long); + pgr += gprSize / sizeof(long); + pfr += (fprSize - savedFPRSize) / sizeof(double); #elif defined(__ppc__) - /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, - SI 4 bytes) are aligned as if they were those modes. */ - unsigned int size_al = size_al = arg_types[i]->size; + /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, + SI 4 bytes) are aligned as if they were those modes. */ + unsigned int size_al = size_al = arg_types[i]->size; - /* If the first member of the struct is a double, then align - the struct to double-word. */ - if (arg_types[i]->elements[0]->type == FFI_TYPE_DOUBLE) - size_al = ALIGN(arg_types[i]->size, 8); + /* If the first member of the struct is a double, then align + the struct to double-word. */ + if (arg_types[i]->elements[0]->type == FFI_TYPE_DOUBLE) + size_al = ALIGN(arg_types[i]->size, 8); - if (size_al < 3) - avalue[i] = (void*)pgr + MODE_CHOICE(4,8) - size_al; - else - avalue[i] = (void*)pgr; + if (size_al < 3) + avalue[i] = (void*)pgr + MODE_CHOICE(4,8) - size_al; + else + avalue[i] = (void*)pgr; - ng += (size_al + 3) / sizeof(long); - pgr += (size_al + 3) / sizeof(long); + ng += (size_al + 3) / sizeof(long); + pgr += (size_al + 3) / sizeof(long); #else #error undefined architecture #endif - } + } - break; + break; #if defined(__ppc64__) - case FFI_TYPE_POINTER: + case FFI_TYPE_POINTER: #endif - case FFI_TYPE_SINT64: - case FFI_TYPE_UINT64: - /* Long long ints are passed in 1 or 2 GPRs. */ - avalue[i] = pgr; - ng += MODE_CHOICE(2,1); - pgr += MODE_CHOICE(2,1); + case FFI_TYPE_SINT64: + case FFI_TYPE_UINT64: + /* Long long ints are passed in 1 or 2 GPRs. */ + avalue[i] = pgr; + ng += MODE_CHOICE(2,1); + pgr += MODE_CHOICE(2,1); - break; + break; - case FFI_TYPE_FLOAT: - /* A float value consumes a GPR. - There are 13 64-bit floating point registers. */ - if (nf < NUM_FPR_ARG_REGISTERS) - { - temp = pfr->d; - pfr->f = (float)temp; - avalue[i] = pfr; - pfr++; - } - else - avalue[i] = pgr; + case FFI_TYPE_FLOAT: + /* A float value consumes a GPR. + There are 13 64-bit floating point registers. */ + if (nf < NUM_FPR_ARG_REGISTERS) + { + temp = pfr->d; + pfr->f = (float)temp; + avalue[i] = pfr; + pfr++; + } + else + avalue[i] = pgr; - nf++; - ng++; - pgr++; - break; + nf++; + ng++; + pgr++; + break; - case FFI_TYPE_DOUBLE: - /* A double value consumes one or two GPRs. - There are 13 64bit floating point registers. */ - if (nf < NUM_FPR_ARG_REGISTERS) - { - avalue[i] = pfr; - pfr++; - } - else - avalue[i] = pgr; + case FFI_TYPE_DOUBLE: + /* A double value consumes one or two GPRs. + There are 13 64bit floating point registers. */ + if (nf < NUM_FPR_ARG_REGISTERS) + { + avalue[i] = pfr; + pfr++; + } + else + avalue[i] = pgr; - nf++; - ng += MODE_CHOICE(2,1); - pgr += MODE_CHOICE(2,1); + nf++; + ng += MODE_CHOICE(2,1); + pgr += MODE_CHOICE(2,1); - break; + break; #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_LONGDOUBLE: + case FFI_TYPE_LONGDOUBLE: #if defined(__ppc64__) - if (nf < NUM_FPR_ARG_REGISTERS) - { - avalue[i] = pfr; - pfr += 2; - } + if (nf < NUM_FPR_ARG_REGISTERS) + { + avalue[i] = pfr; + pfr += 2; + } #elif defined(__ppc__) - /* A long double value consumes 2/4 GPRs and 2 FPRs. - There are 13 64bit floating point registers. */ - if (nf < NUM_FPR_ARG_REGISTERS - 1) - { - avalue[i] = pfr; - pfr += 2; - } - /* Here we have the situation where one part of the long double - is stored in fpr13 and the other part is already on the stack. - We use a union to pass the long double to avalue[i]. */ - else if (nf == NUM_FPR_ARG_REGISTERS - 1) - { - memcpy (&temp_ld.lb[0], pfr, sizeof(temp_ld.lb[0])); - memcpy (&temp_ld.lb[1], pgr + 2, sizeof(temp_ld.lb[1])); - avalue[i] = &temp_ld.ld; - } + /* A long double value consumes 2/4 GPRs and 2 FPRs. + There are 13 64bit floating point registers. */ + if (nf < NUM_FPR_ARG_REGISTERS - 1) + { + avalue[i] = pfr; + pfr += 2; + } + /* Here we have the situation where one part of the long double + is stored in fpr13 and the other part is already on the stack. + We use a union to pass the long double to avalue[i]. */ + else if (nf == NUM_FPR_ARG_REGISTERS - 1) + { + memcpy (&temp_ld.lb[0], pfr, sizeof(temp_ld.lb[0])); + memcpy (&temp_ld.lb[1], pgr + 2, sizeof(temp_ld.lb[1])); + avalue[i] = &temp_ld.ld; + } #else #error undefined architecture #endif - else - avalue[i] = pgr; + else + avalue[i] = pgr; - nf += 2; - ng += MODE_CHOICE(4,2); - pgr += MODE_CHOICE(4,2); + nf += 2; + ng += MODE_CHOICE(4,2); + pgr += MODE_CHOICE(4,2); - break; + break; -#endif /* FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE */ +#endif /* FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE */ - default: - FFI_ASSERT(0); - break; - } - } + default: + FFI_ASSERT(0); + break; + } + } - (closure->fun)(cif, rvalue, avalue, closure->user_data); + (closure->fun)(cif, rvalue, avalue, closure->user_data); - /* Tell ffi_closure_ASM to perform return type promotions. */ - return cif->rtype->type; + /* Tell ffi_closure_ASM to perform return type promotions. */ + return cif->rtype->type; } #if defined(__ppc64__) -/* ffi64_struct_to_ram_form +/* ffi64_struct_to_ram_form - Rebuild a struct's natural layout from buffers of concatenated registers. - Return the number of registers used. - inGPRs[0-7] == r3, inFPRs[0-7] == f1 ... + Rebuild a struct's natural layout from buffers of concatenated registers. + Return the number of registers used. + inGPRs[0-7] == r3, inFPRs[0-7] == f1 ... */ void ffi64_struct_to_ram_form( - const ffi_type* inType, - const char* inGPRs, - unsigned int* ioGPRMarker, - const char* inFPRs, - unsigned int* ioFPRMarker, - unsigned int* ioFPRsUsed, - char* outStruct, // caller-allocated - unsigned int* ioStructMarker) + const ffi_type* inType, + const char* inGPRs, + unsigned int* ioGPRMarker, + const char* inFPRs, + unsigned int* ioFPRMarker, + unsigned int* ioFPRsUsed, + char* outStruct, // caller-allocated + unsigned int* ioStructMarker) { - unsigned int srcGMarker = 0; - unsigned int srcFMarker = 0; - unsigned int savedFMarker = 0; - unsigned int fprsUsed = 0; - unsigned int savedFPRsUsed = 0; - unsigned int destMarker = 0; + unsigned int srcGMarker = 0; + unsigned int srcFMarker = 0; + unsigned int savedFMarker = 0; + unsigned int fprsUsed = 0; + unsigned int savedFPRsUsed = 0; + unsigned int destMarker = 0; - static unsigned int recurseCount = 0; + static unsigned int recurseCount = 0; - if (ioGPRMarker) - srcGMarker = *ioGPRMarker; + if (ioGPRMarker) + srcGMarker = *ioGPRMarker; - if (ioFPRMarker) - { - srcFMarker = *ioFPRMarker; - savedFMarker = srcFMarker; - } + if (ioFPRMarker) + { + srcFMarker = *ioFPRMarker; + savedFMarker = srcFMarker; + } - if (ioFPRsUsed) - { - fprsUsed = *ioFPRsUsed; - savedFPRsUsed = fprsUsed; - } + if (ioFPRsUsed) + { + fprsUsed = *ioFPRsUsed; + savedFPRsUsed = fprsUsed; + } - if (ioStructMarker) - destMarker = *ioStructMarker; + if (ioStructMarker) + destMarker = *ioStructMarker; - size_t i; + size_t i; - switch (inType->size) - { - case 1: case 2: case 4: - srcGMarker += 8 - inType->size; - break; + switch (inType->size) + { + case 1: case 2: case 4: + srcGMarker += 8 - inType->size; + break; - default: - break; - } + default: + break; + } - for (i = 0; inType->elements[i] != NULL; i++) - { - switch (inType->elements[i]->type) - { - case FFI_TYPE_FLOAT: - srcFMarker = ALIGN(srcFMarker, 4); - srcGMarker = ALIGN(srcGMarker, 4); - destMarker = ALIGN(destMarker, 4); + for (i = 0; inType->elements[i] != NULL; i++) + { + switch (inType->elements[i]->type) + { + case FFI_TYPE_FLOAT: + srcFMarker = ALIGN(srcFMarker, 4); + srcGMarker = ALIGN(srcGMarker, 4); + destMarker = ALIGN(destMarker, 4); - if (fprsUsed < NUM_FPR_ARG_REGISTERS) - { - *(float*)&outStruct[destMarker] = - (float)*(double*)&inFPRs[srcFMarker]; - srcFMarker += 8; - fprsUsed++; - } - else - *(float*)&outStruct[destMarker] = - (float)*(double*)&inGPRs[srcGMarker]; + if (fprsUsed < NUM_FPR_ARG_REGISTERS) + { + *(float*)&outStruct[destMarker] = + (float)*(double*)&inFPRs[srcFMarker]; + srcFMarker += 8; + fprsUsed++; + } + else + *(float*)&outStruct[destMarker] = + (float)*(double*)&inGPRs[srcGMarker]; - srcGMarker += 4; - destMarker += 4; + srcGMarker += 4; + destMarker += 4; - // Skip to next GPR if next element won't fit and we're - // not already at a register boundary. - if (inType->elements[i + 1] != NULL && (destMarker % 8)) - { - if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && - (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || - (ALIGN(srcGMarker, 8) - srcGMarker) < 2) && - (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || - (ALIGN(srcGMarker, 8) - srcGMarker) < 4)) - srcGMarker = ALIGN(srcGMarker, 8); - } + // Skip to next GPR if next element won't fit and we're + // not already at a register boundary. + if (inType->elements[i + 1] != NULL && (destMarker % 8)) + { + if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && + (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || + (ALIGN(srcGMarker, 8) - srcGMarker) < 2) && + (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || + (ALIGN(srcGMarker, 8) - srcGMarker) < 4)) + srcGMarker = ALIGN(srcGMarker, 8); + } - break; + break; - case FFI_TYPE_DOUBLE: - srcFMarker = ALIGN(srcFMarker, 8); - destMarker = ALIGN(destMarker, 8); + case FFI_TYPE_DOUBLE: + srcFMarker = ALIGN(srcFMarker, 8); + destMarker = ALIGN(destMarker, 8); - if (fprsUsed < NUM_FPR_ARG_REGISTERS) - { - *(double*)&outStruct[destMarker] = - *(double*)&inFPRs[srcFMarker]; - srcFMarker += 8; - fprsUsed++; - } - else - *(double*)&outStruct[destMarker] = - *(double*)&inGPRs[srcGMarker]; + if (fprsUsed < NUM_FPR_ARG_REGISTERS) + { + *(double*)&outStruct[destMarker] = + *(double*)&inFPRs[srcFMarker]; + srcFMarker += 8; + fprsUsed++; + } + else + *(double*)&outStruct[destMarker] = + *(double*)&inGPRs[srcGMarker]; - destMarker += 8; + destMarker += 8; - // Skip next GPR - srcGMarker += 8; - srcGMarker = ALIGN(srcGMarker, 8); + // Skip next GPR + srcGMarker += 8; + srcGMarker = ALIGN(srcGMarker, 8); - break; + break; - case FFI_TYPE_LONGDOUBLE: - destMarker = ALIGN(destMarker, 16); + case FFI_TYPE_LONGDOUBLE: + destMarker = ALIGN(destMarker, 16); - if (fprsUsed < NUM_FPR_ARG_REGISTERS) - { - srcFMarker = ALIGN(srcFMarker, 8); - srcGMarker = ALIGN(srcGMarker, 8); - *(long double*)&outStruct[destMarker] = - *(long double*)&inFPRs[srcFMarker]; - srcFMarker += 16; - fprsUsed += 2; - } - else - { - srcFMarker = ALIGN(srcFMarker, 16); - srcGMarker = ALIGN(srcGMarker, 16); - *(long double*)&outStruct[destMarker] = - *(long double*)&inGPRs[srcGMarker]; - } + if (fprsUsed < NUM_FPR_ARG_REGISTERS) + { + srcFMarker = ALIGN(srcFMarker, 8); + srcGMarker = ALIGN(srcGMarker, 8); + *(long double*)&outStruct[destMarker] = + *(long double*)&inFPRs[srcFMarker]; + srcFMarker += 16; + fprsUsed += 2; + } + else + { + srcFMarker = ALIGN(srcFMarker, 16); + srcGMarker = ALIGN(srcGMarker, 16); + *(long double*)&outStruct[destMarker] = + *(long double*)&inGPRs[srcGMarker]; + } - destMarker += 16; + destMarker += 16; - // Skip next 2 GPRs - srcGMarker += 16; - srcGMarker = ALIGN(srcGMarker, 8); + // Skip next 2 GPRs + srcGMarker += 16; + srcGMarker = ALIGN(srcGMarker, 8); - break; + break; - case FFI_TYPE_UINT8: - case FFI_TYPE_SINT8: - { - if (inType->alignment == 1) // chars only - { - if (inType->size == 1) - outStruct[destMarker++] = inGPRs[srcGMarker++]; - else if (inType->size == 2) - { - outStruct[destMarker++] = inGPRs[srcGMarker++]; - outStruct[destMarker++] = inGPRs[srcGMarker++]; - i++; - } - else - { - memcpy(&outStruct[destMarker], - &inGPRs[srcGMarker], inType->size); - srcGMarker += inType->size; - destMarker += inType->size; - i += inType->size - 1; - } - } - else // chars and other stuff - { - outStruct[destMarker++] = inGPRs[srcGMarker++]; + case FFI_TYPE_UINT8: + case FFI_TYPE_SINT8: + { + if (inType->alignment == 1) // chars only + { + if (inType->size == 1) + outStruct[destMarker++] = inGPRs[srcGMarker++]; + else if (inType->size == 2) + { + outStruct[destMarker++] = inGPRs[srcGMarker++]; + outStruct[destMarker++] = inGPRs[srcGMarker++]; + i++; + } + else + { + memcpy(&outStruct[destMarker], + &inGPRs[srcGMarker], inType->size); + srcGMarker += inType->size; + destMarker += inType->size; + i += inType->size - 1; + } + } + else // chars and other stuff + { + outStruct[destMarker++] = inGPRs[srcGMarker++]; - // Skip to next GPR if next element won't fit and we're - // not already at a register boundary. - if (inType->elements[i + 1] != NULL && (srcGMarker % 8)) - { - if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && - (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || - (ALIGN(srcGMarker, 8) - srcGMarker) < 2) && - (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || - (ALIGN(srcGMarker, 8) - srcGMarker) < 4)) - srcGMarker = ALIGN(srcGMarker, inType->alignment); // was 8 - } - } + // Skip to next GPR if next element won't fit and we're + // not already at a register boundary. + if (inType->elements[i + 1] != NULL && (srcGMarker % 8)) + { + if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && + (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || + (ALIGN(srcGMarker, 8) - srcGMarker) < 2) && + (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || + (ALIGN(srcGMarker, 8) - srcGMarker) < 4)) + srcGMarker = ALIGN(srcGMarker, inType->alignment); // was 8 + } + } - break; - } + break; + } - case FFI_TYPE_UINT16: - case FFI_TYPE_SINT16: - srcGMarker = ALIGN(srcGMarker, 2); - destMarker = ALIGN(destMarker, 2); + case FFI_TYPE_UINT16: + case FFI_TYPE_SINT16: + srcGMarker = ALIGN(srcGMarker, 2); + destMarker = ALIGN(destMarker, 2); - *(short*)&outStruct[destMarker] = - *(short*)&inGPRs[srcGMarker]; - srcGMarker += 2; - destMarker += 2; + *(short*)&outStruct[destMarker] = + *(short*)&inGPRs[srcGMarker]; + srcGMarker += 2; + destMarker += 2; - break; + break; - case FFI_TYPE_INT: - case FFI_TYPE_UINT32: - case FFI_TYPE_SINT32: - srcGMarker = ALIGN(srcGMarker, 4); - destMarker = ALIGN(destMarker, 4); + case FFI_TYPE_INT: + case FFI_TYPE_UINT32: + case FFI_TYPE_SINT32: + srcGMarker = ALIGN(srcGMarker, 4); + destMarker = ALIGN(destMarker, 4); - *(int*)&outStruct[destMarker] = - *(int*)&inGPRs[srcGMarker]; - srcGMarker += 4; - destMarker += 4; + *(int*)&outStruct[destMarker] = + *(int*)&inGPRs[srcGMarker]; + srcGMarker += 4; + destMarker += 4; - break; + break; - case FFI_TYPE_POINTER: - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - srcGMarker = ALIGN(srcGMarker, 8); - destMarker = ALIGN(destMarker, 8); + case FFI_TYPE_POINTER: + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + srcGMarker = ALIGN(srcGMarker, 8); + destMarker = ALIGN(destMarker, 8); - *(long long*)&outStruct[destMarker] = - *(long long*)&inGPRs[srcGMarker]; - srcGMarker += 8; - destMarker += 8; + *(long long*)&outStruct[destMarker] = + *(long long*)&inGPRs[srcGMarker]; + srcGMarker += 8; + destMarker += 8; - break; + break; - case FFI_TYPE_STRUCT: - recurseCount++; - ffi64_struct_to_ram_form(inType->elements[i], inGPRs, - &srcGMarker, inFPRs, &srcFMarker, &fprsUsed, - outStruct, &destMarker); - recurseCount--; - break; + case FFI_TYPE_STRUCT: + recurseCount++; + ffi64_struct_to_ram_form(inType->elements[i], inGPRs, + &srcGMarker, inFPRs, &srcFMarker, &fprsUsed, + outStruct, &destMarker); + recurseCount--; + break; - default: - FFI_ASSERT(0); // unknown element type - break; - } - } + default: + FFI_ASSERT(0); // unknown element type + break; + } + } - srcGMarker = ALIGN(srcGMarker, inType->alignment); + srcGMarker = ALIGN(srcGMarker, inType->alignment); - // Take care of the special case for 16-byte structs, but not for - // nested structs. - if (recurseCount == 0 && srcGMarker == 16) - { - *(long double*)&outStruct[0] = *(long double*)&inGPRs[0]; - srcFMarker = savedFMarker; - fprsUsed = savedFPRsUsed; - } + // Take care of the special case for 16-byte structs, but not for + // nested structs. + if (recurseCount == 0 && srcGMarker == 16) + { + *(long double*)&outStruct[0] = *(long double*)&inGPRs[0]; + srcFMarker = savedFMarker; + fprsUsed = savedFPRsUsed; + } - if (ioGPRMarker) - *ioGPRMarker = ALIGN(srcGMarker, 8); + if (ioGPRMarker) + *ioGPRMarker = ALIGN(srcGMarker, 8); - if (ioFPRMarker) - *ioFPRMarker = srcFMarker; + if (ioFPRMarker) + *ioFPRMarker = srcFMarker; - if (ioFPRsUsed) - *ioFPRsUsed = fprsUsed; + if (ioFPRsUsed) + *ioFPRsUsed = fprsUsed; - if (ioStructMarker) - *ioStructMarker = ALIGN(destMarker, 8); + if (ioStructMarker) + *ioStructMarker = ALIGN(destMarker, 8); } -/* ffi64_struct_to_reg_form +/* ffi64_struct_to_reg_form - Copy a struct's elements into buffers that can be sliced into registers. - Return the sizes of the output buffers in bytes. Pass NULL buffer pointers - to calculate size only. - outGPRs[0-7] == r3, outFPRs[0-7] == f1 ... + Copy a struct's elements into buffers that can be sliced into registers. + Return the sizes of the output buffers in bytes. Pass NULL buffer pointers + to calculate size only. + outGPRs[0-7] == r3, outFPRs[0-7] == f1 ... */ void ffi64_struct_to_reg_form( - const ffi_type* inType, - const char* inStruct, - unsigned int* ioStructMarker, - unsigned int* ioFPRsUsed, - char* outGPRs, // caller-allocated - unsigned int* ioGPRSize, - char* outFPRs, // caller-allocated - unsigned int* ioFPRSize) + const ffi_type* inType, + const char* inStruct, + unsigned int* ioStructMarker, + unsigned int* ioFPRsUsed, + char* outGPRs, // caller-allocated + unsigned int* ioGPRSize, + char* outFPRs, // caller-allocated + unsigned int* ioFPRSize) { - size_t i; - unsigned int srcMarker = 0; - unsigned int destGMarker = 0; - unsigned int destFMarker = 0; - unsigned int savedFMarker = 0; - unsigned int fprsUsed = 0; - unsigned int savedFPRsUsed = 0; + size_t i; + unsigned int srcMarker = 0; + unsigned int destGMarker = 0; + unsigned int destFMarker = 0; + unsigned int savedFMarker = 0; + unsigned int fprsUsed = 0; + unsigned int savedFPRsUsed = 0; - static unsigned int recurseCount = 0; + static unsigned int recurseCount = 0; - if (ioStructMarker) - srcMarker = *ioStructMarker; + if (ioStructMarker) + srcMarker = *ioStructMarker; - if (ioFPRsUsed) - { - fprsUsed = *ioFPRsUsed; - savedFPRsUsed = fprsUsed; - } + if (ioFPRsUsed) + { + fprsUsed = *ioFPRsUsed; + savedFPRsUsed = fprsUsed; + } - if (ioGPRSize) - destGMarker = *ioGPRSize; + if (ioGPRSize) + destGMarker = *ioGPRSize; - if (ioFPRSize) - { - destFMarker = *ioFPRSize; - savedFMarker = destFMarker; - } + if (ioFPRSize) + { + destFMarker = *ioFPRSize; + savedFMarker = destFMarker; + } - switch (inType->size) - { - case 1: case 2: case 4: - destGMarker += 8 - inType->size; - break; + switch (inType->size) + { + case 1: case 2: case 4: + destGMarker += 8 - inType->size; + break; - default: - break; - } + default: + break; + } - for (i = 0; inType->elements[i] != NULL; i++) - { - switch (inType->elements[i]->type) - { - // Shadow floating-point types in GPRs for vararg and pre-ANSI - // functions. - case FFI_TYPE_FLOAT: - // Nudge markers to next 4/8-byte boundary - srcMarker = ALIGN(srcMarker, 4); - destGMarker = ALIGN(destGMarker, 4); - destFMarker = ALIGN(destFMarker, 8); + for (i = 0; inType->elements[i] != NULL; i++) + { + switch (inType->elements[i]->type) + { + // Shadow floating-point types in GPRs for vararg and pre-ANSI + // functions. + case FFI_TYPE_FLOAT: + // Nudge markers to next 4/8-byte boundary + srcMarker = ALIGN(srcMarker, 4); + destGMarker = ALIGN(destGMarker, 4); + destFMarker = ALIGN(destFMarker, 8); - if (fprsUsed < NUM_FPR_ARG_REGISTERS) - { - if (outFPRs != NULL && inStruct != NULL) - *(double*)&outFPRs[destFMarker] = - (double)*(float*)&inStruct[srcMarker]; + if (fprsUsed < NUM_FPR_ARG_REGISTERS) + { + if (outFPRs != NULL && inStruct != NULL) + *(double*)&outFPRs[destFMarker] = + (double)*(float*)&inStruct[srcMarker]; - destFMarker += 8; - fprsUsed++; - } + destFMarker += 8; + fprsUsed++; + } - if (outGPRs != NULL && inStruct != NULL) - *(double*)&outGPRs[destGMarker] = - (double)*(float*)&inStruct[srcMarker]; + if (outGPRs != NULL && inStruct != NULL) + *(double*)&outGPRs[destGMarker] = + (double)*(float*)&inStruct[srcMarker]; - srcMarker += 4; - destGMarker += 4; + srcMarker += 4; + destGMarker += 4; - // Skip to next GPR if next element won't fit and we're - // not already at a register boundary. - if (inType->elements[i + 1] != NULL && (srcMarker % 8)) - { - if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && - (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || - (ALIGN(destGMarker, 8) - destGMarker) < 2) && - (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || - (ALIGN(destGMarker, 8) - destGMarker) < 4)) - destGMarker = ALIGN(destGMarker, 8); - } + // Skip to next GPR if next element won't fit and we're + // not already at a register boundary. + if (inType->elements[i + 1] != NULL && (srcMarker % 8)) + { + if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && + (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || + (ALIGN(destGMarker, 8) - destGMarker) < 2) && + (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || + (ALIGN(destGMarker, 8) - destGMarker) < 4)) + destGMarker = ALIGN(destGMarker, 8); + } - break; + break; - case FFI_TYPE_DOUBLE: - srcMarker = ALIGN(srcMarker, 8); - destFMarker = ALIGN(destFMarker, 8); + case FFI_TYPE_DOUBLE: + srcMarker = ALIGN(srcMarker, 8); + destFMarker = ALIGN(destFMarker, 8); - if (fprsUsed < NUM_FPR_ARG_REGISTERS) - { - if (outFPRs != NULL && inStruct != NULL) - *(double*)&outFPRs[destFMarker] = - *(double*)&inStruct[srcMarker]; + if (fprsUsed < NUM_FPR_ARG_REGISTERS) + { + if (outFPRs != NULL && inStruct != NULL) + *(double*)&outFPRs[destFMarker] = + *(double*)&inStruct[srcMarker]; - destFMarker += 8; - fprsUsed++; - } + destFMarker += 8; + fprsUsed++; + } - if (outGPRs != NULL && inStruct != NULL) - *(double*)&outGPRs[destGMarker] = - *(double*)&inStruct[srcMarker]; + if (outGPRs != NULL && inStruct != NULL) + *(double*)&outGPRs[destGMarker] = + *(double*)&inStruct[srcMarker]; - srcMarker += 8; + srcMarker += 8; - // Skip next GPR - destGMarker += 8; - destGMarker = ALIGN(destGMarker, 8); + // Skip next GPR + destGMarker += 8; + destGMarker = ALIGN(destGMarker, 8); - break; + break; - case FFI_TYPE_LONGDOUBLE: - srcMarker = ALIGN(srcMarker, 16); + case FFI_TYPE_LONGDOUBLE: + srcMarker = ALIGN(srcMarker, 16); - if (fprsUsed < NUM_FPR_ARG_REGISTERS) - { - destFMarker = ALIGN(destFMarker, 8); - destGMarker = ALIGN(destGMarker, 8); + if (fprsUsed < NUM_FPR_ARG_REGISTERS) + { + destFMarker = ALIGN(destFMarker, 8); + destGMarker = ALIGN(destGMarker, 8); - if (outFPRs != NULL && inStruct != NULL) - *(long double*)&outFPRs[destFMarker] = - *(long double*)&inStruct[srcMarker]; + if (outFPRs != NULL && inStruct != NULL) + *(long double*)&outFPRs[destFMarker] = + *(long double*)&inStruct[srcMarker]; - if (outGPRs != NULL && inStruct != NULL) - *(long double*)&outGPRs[destGMarker] = - *(long double*)&inStruct[srcMarker]; + if (outGPRs != NULL && inStruct != NULL) + *(long double*)&outGPRs[destGMarker] = + *(long double*)&inStruct[srcMarker]; - destFMarker += 16; - fprsUsed += 2; - } - else - { - destGMarker = ALIGN(destGMarker, 16); + destFMarker += 16; + fprsUsed += 2; + } + else + { + destGMarker = ALIGN(destGMarker, 16); - if (outGPRs != NULL && inStruct != NULL) - *(long double*)&outGPRs[destGMarker] = - *(long double*)&inStruct[srcMarker]; - } + if (outGPRs != NULL && inStruct != NULL) + *(long double*)&outGPRs[destGMarker] = + *(long double*)&inStruct[srcMarker]; + } - srcMarker += 16; - destGMarker += 16; // Skip next 2 GPRs - destGMarker = ALIGN(destGMarker, 8); // was 16 + srcMarker += 16; + destGMarker += 16; // Skip next 2 GPRs + destGMarker = ALIGN(destGMarker, 8); // was 16 - break; + break; - case FFI_TYPE_UINT8: - case FFI_TYPE_SINT8: - if (inType->alignment == 1) // bytes only - { - if (inType->size == 1) - { - if (outGPRs != NULL && inStruct != NULL) - outGPRs[destGMarker] = inStruct[srcMarker]; + case FFI_TYPE_UINT8: + case FFI_TYPE_SINT8: + if (inType->alignment == 1) // bytes only + { + if (inType->size == 1) + { + if (outGPRs != NULL && inStruct != NULL) + outGPRs[destGMarker] = inStruct[srcMarker]; - srcMarker++; - destGMarker++; - } - else if (inType->size == 2) - { - if (outGPRs != NULL && inStruct != NULL) - { - outGPRs[destGMarker] = inStruct[srcMarker]; - outGPRs[destGMarker + 1] = inStruct[srcMarker + 1]; - } + srcMarker++; + destGMarker++; + } + else if (inType->size == 2) + { + if (outGPRs != NULL && inStruct != NULL) + { + outGPRs[destGMarker] = inStruct[srcMarker]; + outGPRs[destGMarker + 1] = inStruct[srcMarker + 1]; + } - srcMarker += 2; - destGMarker += 2; + srcMarker += 2; + destGMarker += 2; - i++; - } - else - { - if (outGPRs != NULL && inStruct != NULL) - { - // Avoid memcpy for small chunks. - if (inType->size <= sizeof(long)) - *(long*)&outGPRs[destGMarker] = - *(long*)&inStruct[srcMarker]; - else - memcpy(&outGPRs[destGMarker], - &inStruct[srcMarker], inType->size); - } - - srcMarker += inType->size; - destGMarker += inType->size; - i += inType->size - 1; - } - } - else // bytes and other stuff - { - if (outGPRs != NULL && inStruct != NULL) - outGPRs[destGMarker] = inStruct[srcMarker]; + i++; + } + else + { + if (outGPRs != NULL && inStruct != NULL) + { + // Avoid memcpy for small chunks. + if (inType->size <= sizeof(long)) + *(long*)&outGPRs[destGMarker] = + *(long*)&inStruct[srcMarker]; + else + memcpy(&outGPRs[destGMarker], + &inStruct[srcMarker], inType->size); + } + + srcMarker += inType->size; + destGMarker += inType->size; + i += inType->size - 1; + } + } + else // bytes and other stuff + { + if (outGPRs != NULL && inStruct != NULL) + outGPRs[destGMarker] = inStruct[srcMarker]; - srcMarker++; - destGMarker++; + srcMarker++; + destGMarker++; - // Skip to next GPR if next element won't fit and we're - // not already at a register boundary. - if (inType->elements[i + 1] != NULL && (destGMarker % 8)) - { - if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && - (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || - (ALIGN(destGMarker, 8) - destGMarker) < 2) && - (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || - (ALIGN(destGMarker, 8) - destGMarker) < 4)) - destGMarker = ALIGN(destGMarker, inType->alignment); // was 8 - } - } + // Skip to next GPR if next element won't fit and we're + // not already at a register boundary. + if (inType->elements[i + 1] != NULL && (destGMarker % 8)) + { + if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && + (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || + (ALIGN(destGMarker, 8) - destGMarker) < 2) && + (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || + (ALIGN(destGMarker, 8) - destGMarker) < 4)) + destGMarker = ALIGN(destGMarker, inType->alignment); // was 8 + } + } - break; + break; - case FFI_TYPE_UINT16: - case FFI_TYPE_SINT16: - srcMarker = ALIGN(srcMarker, 2); - destGMarker = ALIGN(destGMarker, 2); + case FFI_TYPE_UINT16: + case FFI_TYPE_SINT16: + srcMarker = ALIGN(srcMarker, 2); + destGMarker = ALIGN(destGMarker, 2); - if (outGPRs != NULL && inStruct != NULL) - *(short*)&outGPRs[destGMarker] = - *(short*)&inStruct[srcMarker]; + if (outGPRs != NULL && inStruct != NULL) + *(short*)&outGPRs[destGMarker] = + *(short*)&inStruct[srcMarker]; - srcMarker += 2; - destGMarker += 2; + srcMarker += 2; + destGMarker += 2; - if (inType->elements[i + 1] == NULL) - destGMarker = ALIGN(destGMarker, inType->alignment); + if (inType->elements[i + 1] == NULL) + destGMarker = ALIGN(destGMarker, inType->alignment); - break; + break; - case FFI_TYPE_INT: - case FFI_TYPE_UINT32: - case FFI_TYPE_SINT32: - srcMarker = ALIGN(srcMarker, 4); - destGMarker = ALIGN(destGMarker, 4); + case FFI_TYPE_INT: + case FFI_TYPE_UINT32: + case FFI_TYPE_SINT32: + srcMarker = ALIGN(srcMarker, 4); + destGMarker = ALIGN(destGMarker, 4); - if (outGPRs != NULL && inStruct != NULL) - *(int*)&outGPRs[destGMarker] = - *(int*)&inStruct[srcMarker]; + if (outGPRs != NULL && inStruct != NULL) + *(int*)&outGPRs[destGMarker] = + *(int*)&inStruct[srcMarker]; - srcMarker += 4; - destGMarker += 4; + srcMarker += 4; + destGMarker += 4; - break; + break; - case FFI_TYPE_POINTER: - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - srcMarker = ALIGN(srcMarker, 8); - destGMarker = ALIGN(destGMarker, 8); + case FFI_TYPE_POINTER: + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + srcMarker = ALIGN(srcMarker, 8); + destGMarker = ALIGN(destGMarker, 8); - if (outGPRs != NULL && inStruct != NULL) - *(long long*)&outGPRs[destGMarker] = - *(long long*)&inStruct[srcMarker]; + if (outGPRs != NULL && inStruct != NULL) + *(long long*)&outGPRs[destGMarker] = + *(long long*)&inStruct[srcMarker]; - srcMarker += 8; - destGMarker += 8; + srcMarker += 8; + destGMarker += 8; - if (inType->elements[i + 1] == NULL) - destGMarker = ALIGN(destGMarker, inType->alignment); + if (inType->elements[i + 1] == NULL) + destGMarker = ALIGN(destGMarker, inType->alignment); - break; + break; - case FFI_TYPE_STRUCT: - recurseCount++; - ffi64_struct_to_reg_form(inType->elements[i], - inStruct, &srcMarker, &fprsUsed, outGPRs, - &destGMarker, outFPRs, &destFMarker); - recurseCount--; - break; + case FFI_TYPE_STRUCT: + recurseCount++; + ffi64_struct_to_reg_form(inType->elements[i], + inStruct, &srcMarker, &fprsUsed, outGPRs, + &destGMarker, outFPRs, &destFMarker); + recurseCount--; + break; - default: - FFI_ASSERT(0); - break; - } - } + default: + FFI_ASSERT(0); + break; + } + } - destGMarker = ALIGN(destGMarker, inType->alignment); + destGMarker = ALIGN(destGMarker, inType->alignment); - // Take care of the special case for 16-byte structs, but not for - // nested structs. - if (recurseCount == 0 && destGMarker == 16) - { - if (outGPRs != NULL && inStruct != NULL) - *(long double*)&outGPRs[0] = *(long double*)&inStruct[0]; + // Take care of the special case for 16-byte structs, but not for + // nested structs. + if (recurseCount == 0 && destGMarker == 16) + { + if (outGPRs != NULL && inStruct != NULL) + *(long double*)&outGPRs[0] = *(long double*)&inStruct[0]; - destFMarker = savedFMarker; - fprsUsed = savedFPRsUsed; - } + destFMarker = savedFMarker; + fprsUsed = savedFPRsUsed; + } - if (ioStructMarker) - *ioStructMarker = ALIGN(srcMarker, 8); + if (ioStructMarker) + *ioStructMarker = ALIGN(srcMarker, 8); - if (ioFPRsUsed) - *ioFPRsUsed = fprsUsed; + if (ioFPRsUsed) + *ioFPRsUsed = fprsUsed; - if (ioGPRSize) - *ioGPRSize = ALIGN(destGMarker, 8); + if (ioGPRSize) + *ioGPRSize = ALIGN(destGMarker, 8); - if (ioFPRSize) - *ioFPRSize = ALIGN(destFMarker, 8); + if (ioFPRSize) + *ioFPRSize = ALIGN(destFMarker, 8); } -/* ffi64_stret_needs_ptr +/* ffi64_stret_needs_ptr - Determine whether a returned struct needs a pointer in r3 or can fit - in registers. + Determine whether a returned struct needs a pointer in r3 or can fit + in registers. */ bool ffi64_stret_needs_ptr( - const ffi_type* inType, - unsigned short* ioGPRCount, - unsigned short* ioFPRCount) + const ffi_type* inType, + unsigned short* ioGPRCount, + unsigned short* ioFPRCount) { - // Obvious case first- struct is larger than combined FPR size. - if (inType->size > 14 * 8) - return true; + // Obvious case first- struct is larger than combined FPR size. + if (inType->size > 14 * 8) + return true; - // Now the struct can physically fit in registers, determine if it - // also fits logically. - bool needsPtr = false; - unsigned short gprsUsed = 0; - unsigned short fprsUsed = 0; - size_t i; + // Now the struct can physically fit in registers, determine if it + // also fits logically. + bool needsPtr = false; + unsigned short gprsUsed = 0; + unsigned short fprsUsed = 0; + size_t i; - if (ioGPRCount) - gprsUsed = *ioGPRCount; + if (ioGPRCount) + gprsUsed = *ioGPRCount; - if (ioFPRCount) - fprsUsed = *ioFPRCount; + if (ioFPRCount) + fprsUsed = *ioFPRCount; - for (i = 0; inType->elements[i] != NULL && !needsPtr; i++) - { - switch (inType->elements[i]->type) - { - case FFI_TYPE_FLOAT: - case FFI_TYPE_DOUBLE: - gprsUsed++; - fprsUsed++; + for (i = 0; inType->elements[i] != NULL && !needsPtr; i++) + { + switch (inType->elements[i]->type) + { + case FFI_TYPE_FLOAT: + case FFI_TYPE_DOUBLE: + gprsUsed++; + fprsUsed++; - if (fprsUsed > 13) - needsPtr = true; + if (fprsUsed > 13) + needsPtr = true; - break; + break; - case FFI_TYPE_LONGDOUBLE: - gprsUsed += 2; - fprsUsed += 2; + case FFI_TYPE_LONGDOUBLE: + gprsUsed += 2; + fprsUsed += 2; - if (fprsUsed > 14) - needsPtr = true; + if (fprsUsed > 14) + needsPtr = true; - break; + break; - case FFI_TYPE_UINT8: - case FFI_TYPE_SINT8: - { - gprsUsed++; + case FFI_TYPE_UINT8: + case FFI_TYPE_SINT8: + { + gprsUsed++; - if (gprsUsed > 8) - { - needsPtr = true; - break; - } + if (gprsUsed > 8) + { + needsPtr = true; + break; + } - if (inType->elements[i + 1] == NULL) // last byte in the struct - break; + if (inType->elements[i + 1] == NULL) // last byte in the struct + break; - // Count possible contiguous bytes ahead, up to 8. - unsigned short j; + // Count possible contiguous bytes ahead, up to 8. + unsigned short j; - for (j = 1; j < 8; j++) - { - if (inType->elements[i + j] == NULL || - !FFI_TYPE_1_BYTE(inType->elements[i + j]->type)) - break; - } + for (j = 1; j < 8; j++) + { + if (inType->elements[i + j] == NULL || + !FFI_TYPE_1_BYTE(inType->elements[i + j]->type)) + break; + } - i += j - 1; // allow for i++ before the test condition + i += j - 1; // allow for i++ before the test condition - break; - } + break; + } - case FFI_TYPE_UINT16: - case FFI_TYPE_SINT16: - case FFI_TYPE_INT: - case FFI_TYPE_UINT32: - case FFI_TYPE_SINT32: - case FFI_TYPE_POINTER: - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - gprsUsed++; + case FFI_TYPE_UINT16: + case FFI_TYPE_SINT16: + case FFI_TYPE_INT: + case FFI_TYPE_UINT32: + case FFI_TYPE_SINT32: + case FFI_TYPE_POINTER: + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + gprsUsed++; - if (gprsUsed > 8) - needsPtr = true; + if (gprsUsed > 8) + needsPtr = true; - break; + break; - case FFI_TYPE_STRUCT: - needsPtr = ffi64_stret_needs_ptr( - inType->elements[i], &gprsUsed, &fprsUsed); + case FFI_TYPE_STRUCT: + needsPtr = ffi64_stret_needs_ptr( + inType->elements[i], &gprsUsed, &fprsUsed); - break; + break; - default: - FFI_ASSERT(0); - break; - } - } + default: + FFI_ASSERT(0); + break; + } + } - if (ioGPRCount) - *ioGPRCount = gprsUsed; + if (ioGPRCount) + *ioGPRCount = gprsUsed; - if (ioFPRCount) - *ioFPRCount = fprsUsed; + if (ioFPRCount) + *ioFPRCount = fprsUsed; - return needsPtr; + return needsPtr; } -/* ffi64_data_size +/* ffi64_data_size - Calculate the size in bytes of an ffi type. + Calculate the size in bytes of an ffi type. */ unsigned int ffi64_data_size( - const ffi_type* inType) + const ffi_type* inType) { - unsigned int size = 0; + unsigned int size = 0; - switch (inType->type) - { - case FFI_TYPE_UINT8: - case FFI_TYPE_SINT8: - size = 1; - break; + switch (inType->type) + { + case FFI_TYPE_UINT8: + case FFI_TYPE_SINT8: + size = 1; + break; - case FFI_TYPE_UINT16: - case FFI_TYPE_SINT16: - size = 2; - break; + case FFI_TYPE_UINT16: + case FFI_TYPE_SINT16: + size = 2; + break; - case FFI_TYPE_INT: - case FFI_TYPE_UINT32: - case FFI_TYPE_SINT32: - case FFI_TYPE_FLOAT: - size = 4; - break; + case FFI_TYPE_INT: + case FFI_TYPE_UINT32: + case FFI_TYPE_SINT32: + case FFI_TYPE_FLOAT: + size = 4; + break; - case FFI_TYPE_POINTER: - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - case FFI_TYPE_DOUBLE: - size = 8; - break; + case FFI_TYPE_POINTER: + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + case FFI_TYPE_DOUBLE: + size = 8; + break; - case FFI_TYPE_LONGDOUBLE: - size = 16; - break; + case FFI_TYPE_LONGDOUBLE: + size = 16; + break; - case FFI_TYPE_STRUCT: - ffi64_struct_to_reg_form( - inType, NULL, NULL, NULL, NULL, &size, NULL, NULL); - break; + case FFI_TYPE_STRUCT: + ffi64_struct_to_reg_form( + inType, NULL, NULL, NULL, NULL, &size, NULL, NULL); + break; - case FFI_TYPE_VOID: - break; + case FFI_TYPE_VOID: + break; - default: - FFI_ASSERT(0); - break; - } + default: + FFI_ASSERT(0); + break; + } - return size; + return size; } -#endif /* defined(__ppc64__) */ -#endif /* __ppc__ || __ppc64__ */ +#endif /* defined(__ppc64__) */ +#endif /* __ppc__ || __ppc64__ */ diff --git a/Modules/_struct.c b/Modules/_struct.c --- a/Modules/_struct.c +++ b/Modules/_struct.c @@ -1106,7 +1106,7 @@ case '>': case '!': /* Network byte order is big-endian */ return bigendian_table; - case '=': { /* Host byte order -- different from native in aligment! */ + case '=': { /* Host byte order -- different from native in alignment! */ int n = 1; char *p = (char *) &n; if (*p == 1) diff --git a/Modules/_threadmodule.c b/Modules/_threadmodule.c --- a/Modules/_threadmodule.c +++ b/Modules/_threadmodule.c @@ -442,7 +442,7 @@ self->args, self->kw) < 0) { /* we need to get rid of ldict from thread so we create a new one the next time we do an attr - acces */ + access */ PyDict_DelItem(tdict, self->key); return NULL; } diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -1554,7 +1554,7 @@ || strcmp(s, ">>=") == 0 || strcmp(s, "**=") == 0); if (!res) - err_string("illegal augmmented assignment operator"); + err_string("illegal augmented assignment operator"); } } else { diff --git a/Modules/zipimport.c b/Modules/zipimport.c --- a/Modules/zipimport.c +++ b/Modules/zipimport.c @@ -1102,7 +1102,7 @@ return code; } -/* Get the code object assoiciated with the module specified by +/* Get the code object associated with the module specified by 'fullname'. */ static PyObject * get_module_code(ZipImporter *self, char *fullname, diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -936,12 +936,12 @@ static PyObject * bytearray_str(PyObject *op) { - if (Py_BytesWarningFlag) { - if (PyErr_WarnEx(PyExc_BytesWarning, - "str() on a bytearray instance", 1)) - return NULL; - } - return bytearray_repr((PyByteArrayObject*)op); + if (Py_BytesWarningFlag) { + if (PyErr_WarnEx(PyExc_BytesWarning, + "str() on a bytearray instance", 1)) + return NULL; + } + return bytearray_repr((PyByteArrayObject*)op); } static PyObject * @@ -1459,7 +1459,7 @@ static PyObject * bytearray_maketrans(PyObject *null, PyObject *args) { - return _Py_bytes_maketrans(args); + return _Py_bytes_maketrans(args); } @@ -2626,7 +2626,7 @@ if (it == NULL) return NULL; - /* Try to determine the length of the argument. 32 is abitrary. */ + /* Try to determine the length of the argument. 32 is arbitrary. */ buf_size = _PyObject_LengthHint(arg, 32); if (buf_size == -1) { Py_DECREF(it); diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -495,7 +495,7 @@ default: *p++ = '\\'; s--; - goto non_esc; /* an arbitry number of unescaped + goto non_esc; /* an arbitrary number of unescaped UTF-8 bytes may follow. */ } } diff --git a/Objects/longobject.c b/Objects/longobject.c --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -3020,7 +3020,7 @@ * of slices, each with a->ob_size digits, and multiply the slices by a, * one at a time. This gives k_mul balanced inputs to work with, and is * also cache-friendly (we compute one double-width slice of the result - * at a time, then move on, never bactracking except for the helpful + * at a time, then move on, never backtracking except for the helpful * single-width slice overlap between successive partial sums). */ static PyLongObject * diff --git a/Objects/stringlib/string_format.h b/Objects/stringlib/string_format.h --- a/Objects/stringlib/string_format.h +++ b/Objects/stringlib/string_format.h @@ -6,7 +6,7 @@ */ -/* Defines for Python 2.6 compatability */ +/* Defines for Python 2.6 compatibility */ #if PY_VERSION_HEX < 0x03000000 #define PyLong_FromSsize_t _PyLong_FromSsize_t #endif diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c --- a/PC/bdist_wininst/install.c +++ b/PC/bdist_wininst/install.c @@ -62,7 +62,7 @@ * instead showing the user an empty listbox to select something from. * * Finish the code so that we can use other python installations - * additionaly to those found in the registry, + * additionally to those found in the registry, * and then #define USE_OTHER_PYTHON_VERSIONS * * - install a help-button, which will display something meaningful diff --git a/Parser/spark.py b/Parser/spark.py --- a/Parser/spark.py +++ b/Parser/spark.py @@ -23,7 +23,7 @@ import re -# Compatability with older pythons. +# Compatibility with older pythons. def output(string='', end='\n'): sys.stdout.write(string + end) diff --git a/Python/_warnings.c b/Python/_warnings.c --- a/Python/_warnings.c +++ b/Python/_warnings.c @@ -732,7 +732,7 @@ return 0; } -/* PyErr_Warn is only for backwards compatability and will be removed. +/* PyErr_Warn is only for backwards compatibility and will be removed. Use PyErr_WarnEx instead. */ #undef PyErr_Warn diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -174,7 +174,7 @@ have_mingw = build_mingw_lib(lib_file, def_file, dll_file, mingw_lib) -# Determine the target architechture +# Determine the target architecture dll_path = os.path.join(srcdir, PCBUILD, dll_file) msilib.set_arch_from_file(dll_path) if msilib.pe_type(dll_path) != msilib.pe_type("msisupport.dll"): diff --git a/Tools/pybench/pybench.py b/Tools/pybench/pybench.py --- a/Tools/pybench/pybench.py +++ b/Tools/pybench/pybench.py @@ -682,7 +682,7 @@ other_total_avg_time = other_total_avg_time + other_avg_time if (benchmarks_compatible and test.compatible(other)): - # Both benchmark and tests are comparible + # Both benchmark and tests are comparable min_diff = ((min_time * self.warp) / (other_min_time * other.warp) - 1.0) avg_diff = ((avg_time * self.warp) / @@ -696,7 +696,7 @@ else: avg_diff = '%+5.1f%%' % (avg_diff * PERCENT) else: - # Benchmark or tests are not comparible + # Benchmark or tests are not comparable min_diff, avg_diff = 'n/a', 'n/a' tests_compatible = 0 print('%30s: %5.0fms %5.0fms %7s %5.0fms %5.0fms %7s' % \ diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -882,7 +882,7 @@ db_dirs_to_check = tmp - # Look for a version specific db-X.Y before an ambiguoius dbX + # Look for a version specific db-X.Y before an ambiguous dbX # XXX should we -ever- look for a dbX name? Do any # systems really not name their library by version and # symlink to more general names? -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 05:00:21 2011 From: python-checkins at python.org (ezio.melotti) Date: Tue, 15 Mar 2011 05:00:21 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): #11515: Merge with 3.1. Message-ID: http://hg.python.org/cpython/rev/81d7f78a633a changeset: 68489:81d7f78a633a branch: 3.2 parent: 68486:e5a5fafd3e4f parent: 68488:0991b40e895d user: Ezio Melotti date: Tue Mar 15 05:59:46 2011 +0200 summary: #11515: Merge with 3.1. files: Lib/decimal.py Lib/ftplib.py Lib/gettext.py Lib/http/client.py Lib/idlelib/EditorWindow.py Lib/importlib/_bootstrap.py Lib/nntplib.py Lib/socketserver.py Lib/test/test_compile.py Lib/test/test_descr.py Lib/test/test_numeric_tower.py Lib/test/test_os.py Lib/test/test_re.py Lib/test/test_set.py Lib/test/test_warnings.py Lib/tkinter/__init__.py Lib/tkinter/tix.py Lib/tkinter/ttk.py Lib/turtle.py Lib/xml/dom/minidom.py Mac/BuildScript/build-installer.py Mac/Tools/pythonw.c Misc/ACKS Modules/_ctypes/callproc.c Modules/_ctypes/libffi/ChangeLog Modules/_ctypes/libffi/src/dlmalloc.c Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c Modules/_struct.c Modules/_threadmodule.c Modules/parsermodule.c Modules/posixmodule.c Modules/zipimport.c Objects/bytearrayobject.c Objects/bytesobject.c Objects/longobject.c Objects/stringlib/string_format.h Python/_warnings.c Python/sysmodule.c Tools/demo/ss1.py Tools/msi/msi.py Tools/pybench/pybench.py setup.py diff --git a/Lib/ctypes/test/test_functions.py b/Lib/ctypes/test/test_functions.py --- a/Lib/ctypes/test/test_functions.py +++ b/Lib/ctypes/test/test_functions.py @@ -116,7 +116,7 @@ self.assertEqual(result, 21) self.assertEqual(type(result), int) - # You cannot assing character format codes as restype any longer + # You cannot assign character format codes as restype any longer self.assertRaises(TypeError, setattr, f, "restype", "i") def test_floatresult(self): diff --git a/Lib/decimal.py b/Lib/decimal.py --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -6088,7 +6088,7 @@ def _format_align(sign, body, spec): """Given an unpadded, non-aligned numeric string 'body' and sign - string 'sign', add padding and aligment conforming to the given + string 'sign', add padding and alignment conforming to the given format specifier dictionary 'spec' (as produced by parse_format_specifier). diff --git a/Lib/email/mime/application.py b/Lib/email/mime/application.py --- a/Lib/email/mime/application.py +++ b/Lib/email/mime/application.py @@ -17,7 +17,7 @@ _encoder=encoders.encode_base64, **_params): """Create an application/* type MIME document. - _data is a string containing the raw applicatoin data. + _data is a string containing the raw application data. _subtype is the MIME content type subtype, defaulting to 'octet-stream'. diff --git a/Lib/ftplib.py b/Lib/ftplib.py --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -613,7 +613,7 @@ Usage example: >>> from ftplib import FTP_TLS >>> ftps = FTP_TLS('ftp.python.org') - >>> ftps.login() # login anonimously previously securing control channel + >>> ftps.login() # login anonymously previously securing control channel '230 Guest login ok, access restrictions apply.' >>> ftps.prot_p() # switch to secure data connection '200 Protection level set to P' diff --git a/Lib/gettext.py b/Lib/gettext.py --- a/Lib/gettext.py +++ b/Lib/gettext.py @@ -282,7 +282,7 @@ # Note: we unconditionally convert both msgids and msgstrs to # Unicode using the character encoding specified in the charset # parameter of the Content-Type header. The gettext documentation - # strongly encourages msgids to be us-ascii, but some appliations + # strongly encourages msgids to be us-ascii, but some applications # require alternative encodings (e.g. Zope's ZCML and ZPT). For # traditional gettext applications, the msgid conversion will # cause no problems since us-ascii should always be a subset of diff --git a/Lib/http/client.py b/Lib/http/client.py --- a/Lib/http/client.py +++ b/Lib/http/client.py @@ -798,7 +798,7 @@ del self._buffer[:] # If msg and message_body are sent in a single send() call, # it will avoid performance problems caused by the interaction - # between delayed ack and the Nagle algorithim. + # between delayed ack and the Nagle algorithm. if isinstance(message_body, bytes): msg += message_body message_body = None diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -104,8 +104,8 @@ self.top = top = WindowList.ListedToplevel(root, menu=self.menubar) if flist: self.tkinter_vars = flist.vars - #self.top.instance_dict makes flist.inversedict avalable to - #configDialog.py so it can access all EditorWindow instaces + #self.top.instance_dict makes flist.inversedict available to + #configDialog.py so it can access all EditorWindow instances self.top.instance_dict = flist.inversedict else: self.tkinter_vars = {} # keys: Tkinter event names diff --git a/Lib/idlelib/HISTORY.txt b/Lib/idlelib/HISTORY.txt --- a/Lib/idlelib/HISTORY.txt +++ b/Lib/idlelib/HISTORY.txt @@ -13,7 +13,7 @@ - New tarball released as a result of the 'revitalisation' of the IDLEfork project. -- This release requires python 2.1 or better. Compatability with earlier +- This release requires python 2.1 or better. Compatibility with earlier versions of python (especially ancient ones like 1.5x) is no longer a priority in IDLEfork development. diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -152,7 +152,7 @@ loader can handle. The first argument (self) must define _name which the second argument is - comapred against. If the comparison fails then ImportError is raised. + compared against. If the comparison fails then ImportError is raised. """ def inner(self, name, *args, **kwargs): @@ -304,7 +304,7 @@ def _bytes_from_bytecode(self, fullname, data, source_mtime): """Return the marshalled bytes from bytecode, verifying the magic - number and timestamp alon the way. + number and timestamp along the way. If source_mtime is None then skip the timestamp check. diff --git a/Lib/nntplib.py b/Lib/nntplib.py --- a/Lib/nntplib.py +++ b/Lib/nntplib.py @@ -315,7 +315,7 @@ readermode is sometimes necessary if you are connecting to an NNTP server on the local machine and intend to call - reader-specific comamnds, such as `group'. If you get + reader-specific commands, such as `group'. If you get unexpected NNTPPermanentErrors, you might need to set readermode. """ @@ -1001,7 +1001,7 @@ readermode is sometimes necessary if you are connecting to an NNTP server on the local machine and intend to call - reader-specific comamnds, such as `group'. If you get + reader-specific commands, such as `group'. If you get unexpected NNTPPermanentErrors, you might need to set readermode. """ diff --git a/Lib/socketserver.py b/Lib/socketserver.py --- a/Lib/socketserver.py +++ b/Lib/socketserver.py @@ -675,7 +675,7 @@ # A timeout to apply to the request socket, if not None. timeout = None - # Disable nagle algoritm for this socket, if True. + # Disable nagle algorithm for this socket, if True. # Use only when wbufsize != 0, to avoid small packets. disable_nagle_algorithm = False diff --git a/Lib/test/crashers/recursion_limit_too_high.py b/Lib/test/crashers/recursion_limit_too_high.py --- a/Lib/test/crashers/recursion_limit_too_high.py +++ b/Lib/test/crashers/recursion_limit_too_high.py @@ -5,7 +5,7 @@ # file handles. # The point of this example is to show that sys.setrecursionlimit() is a -# hack, and not a robust solution. This example simply exercices a path +# hack, and not a robust solution. This example simply exercises a path # where it takes many C-level recursions, consuming a lot of stack # space, for each Python-level recursion. So 1000 times this amount of # stack space may be too much for standard platforms already. diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py --- a/Lib/test/test_compile.py +++ b/Lib/test/test_compile.py @@ -190,7 +190,7 @@ self.assertEqual(eval("-" + all_one_bits), -18446744073709551615) else: self.fail("How many bits *does* this machine have???") - # Verify treatment of contant folding on -(sys.maxsize+1) + # Verify treatment of constant folding on -(sys.maxsize+1) # i.e. -2147483648 on 32 bit platforms. Should return int, not long. self.assertIsInstance(eval("%s" % (-sys.maxsize - 1)), int) self.assertIsInstance(eval("%s" % (-sys.maxsize - 2)), int) diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -772,7 +772,7 @@ # see "A Monotonic Superclass Linearization for Dylan", # by Kim Barrett et al. (OOPSLA 1996) def test_consistency_with_epg(self): - # Testing consistentcy with EPG... + # Testing consistency with EPG... class Pane(object): pass class ScrollingMixin(object): pass class EditingMixin(object): pass diff --git a/Lib/test/test_numeric_tower.py b/Lib/test/test_numeric_tower.py --- a/Lib/test/test_numeric_tower.py +++ b/Lib/test/test_numeric_tower.py @@ -1,4 +1,4 @@ -# test interactions betwen int, float, Decimal and Fraction +# test interactions between int, float, Decimal and Fraction import unittest import random diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -277,7 +277,7 @@ except TypeError: pass - # Use the constructr with a too-long tuple. + # Use the constructor with a too-long tuple. try: result2 = os.stat_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14)) except TypeError: @@ -333,7 +333,7 @@ except TypeError: pass - # Use the constructr with a too-long tuple. + # Use the constructor with a too-long tuple. try: result2 = os.statvfs_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14)) except TypeError: diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -7,7 +7,7 @@ # Misc tests from Tim Peters' re.doc # WARNING: Don't change details in these tests if you don't know -# what you're doing. Some of these tests were carefuly modeled to +# what you're doing. Some of these tests were carefully modeled to # cover most of the code. import unittest diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py --- a/Lib/test/test_set.py +++ b/Lib/test/test_set.py @@ -583,7 +583,7 @@ self.le_called = True return False - # This first tries the bulitin rich set comparison, which doesn't know + # This first tries the builtin rich set comparison, which doesn't know # how to handle the custom object. Upon returning NotImplemented, the # corresponding comparison on the right object is invoked. myset = {1, 2, 3} diff --git a/Lib/test/test_string.py b/Lib/test/test_string.py --- a/Lib/test/test_string.py +++ b/Lib/test/test_string.py @@ -93,7 +93,7 @@ # test all parameters used class CheckAllUsedFormatter(string.Formatter): def check_unused_args(self, used_args, args, kwargs): - # Track which arguments actuallly got used + # Track which arguments actually got used unused_args = set(kwargs.keys()) unused_args.update(range(0, len(args))) diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py --- a/Lib/test/test_warnings.py +++ b/Lib/test/test_warnings.py @@ -758,7 +758,7 @@ class BootstrapTest(unittest.TestCase): def test_issue_8766(self): # "import encodings" emits a warning whereas the warnings is not loaded - # or not completly loaded (warnings imports indirectly encodings by + # or not completely loaded (warnings imports indirectly encodings by # importing linecache) yet with support.temp_cwd() as cwd, support.temp_cwd('encodings'): env = os.environ.copy() diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py --- a/Lib/tkinter/__init__.py +++ b/Lib/tkinter/__init__.py @@ -1649,7 +1649,7 @@ class Tk(Misc, Wm): """Toplevel widget of Tk which represents mostly the main window - of an appliation. It has an associated Tcl interpreter.""" + of an application. It has an associated Tcl interpreter.""" _w = '.' def __init__(self, screenName=None, baseName=None, className='Tk', useTk=1, sync=0, use=None): diff --git a/Lib/tkinter/tix.py b/Lib/tkinter/tix.py --- a/Lib/tkinter/tix.py +++ b/Lib/tkinter/tix.py @@ -163,7 +163,7 @@ extensions) exist, then the image type is chosen according to the depth of the X display: xbm images are chosen on monochrome displays and color images are chosen on color displays. By using - tix_ getimage, you can advoid hard coding the pathnames of the + tix_ getimage, you can avoid hard coding the pathnames of the image files in your application. When successful, this command returns the name of the newly created image, which can be used to configure the -image option of the Tk and Tix widgets. diff --git a/Lib/tkinter/ttk.py b/Lib/tkinter/ttk.py --- a/Lib/tkinter/ttk.py +++ b/Lib/tkinter/ttk.py @@ -993,7 +993,7 @@ pane is either an integer index or the name of a managed subwindow. If kw is not given, returns a dict of the pane option values. If option is specified then the value for that option is returned. - Otherwise, sets the options to the correspoding values.""" + Otherwise, sets the options to the corresponding values.""" if option is not None: kw[option] = None return _val_or_dict(kw, self.tk.call, self._w, "pane", pane) diff --git a/Lib/turtle.py b/Lib/turtle.py --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -1464,7 +1464,7 @@ Optional argument: picname -- a string, name of a gif-file or "nopic". - If picname is a filename, set the corresponing image as background. + If picname is a filename, set the corresponding image as background. If picname is "nopic", delete backgroundimage, if present. If picname is None, return the filename of the current backgroundimage. @@ -3352,7 +3352,7 @@ def dot(self, size=None, *color): """Draw a dot with diameter size, using color. - Optional argumentS: + Optional arguments: size -- an integer >= 1 (if given) color -- a colorstring or a numeric color tuple diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -1476,7 +1476,7 @@ return False def isId(self, aname): - """Returns true iff the named attribte is a DTD-style ID.""" + """Returns true iff the named attribute is a DTD-style ID.""" return False def isIdNS(self, namespaceURI, localName): diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -100,7 +100,7 @@ ARCHLIST = universal_opts_map[UNIVERSALARCHS] -# Source directory (asume we're in Mac/BuildScript) +# Source directory (assume we're in Mac/BuildScript) SRCDIR = os.path.dirname( os.path.dirname( os.path.dirname( diff --git a/Mac/Tools/pythonw.c b/Mac/Tools/pythonw.c --- a/Mac/Tools/pythonw.c +++ b/Mac/Tools/pythonw.c @@ -105,8 +105,8 @@ count = 1; - /* Run the real python executable using the same architure as this - * executable, this allows users to controle the architecture using + /* Run the real python executable using the same architecture as this + * executable, this allows users to control the architecture using * "arch -ppc python" */ diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -49,7 +49,7 @@ So, there are 4 data structures holding processed arguments: - the inargs tuple (in PyCFuncPtr_call) - the callargs tuple (in PyCFuncPtr_call) - - the 'struct argguments' array + - the 'struct arguments' array - the 'void *' array */ diff --git a/Modules/_ctypes/libffi/ChangeLog b/Modules/_ctypes/libffi/ChangeLog --- a/Modules/_ctypes/libffi/ChangeLog +++ b/Modules/_ctypes/libffi/ChangeLog @@ -3084,7 +3084,7 @@ 2003-09-18 Kaz Kojima - * src/sh/ffi.c (ffi_prep_args): Take account into the alignement + * src/sh/ffi.c (ffi_prep_args): Take account into the alignment for the register size. (ffi_closure_helper_SYSV): Handle the structure return value address correctly. @@ -3344,7 +3344,7 @@ 2003-02-06 Andreas Tobler * libffi/src/powerpc/darwin_closure.S: - Fix alignement bug, allocate 8 bytes for the result. + Fix alignment bug, allocate 8 bytes for the result. * libffi/src/powerpc/aix_closure.S: Likewise. * libffi/src/powerpc/ffi_darwin.c: diff --git a/Modules/_ctypes/libffi/src/dlmalloc.c b/Modules/_ctypes/libffi/src/dlmalloc.c --- a/Modules/_ctypes/libffi/src/dlmalloc.c +++ b/Modules/_ctypes/libffi/src/dlmalloc.c @@ -1326,7 +1326,7 @@ return (ptr != 0)? ptr: MFAIL; } -/* This function supports releasing coalesed segments */ +/* This function supports releasing coalesced segments */ static int win32munmap(void* ptr, size_t size) { MEMORY_BASIC_INFORMATION minfo; char* cptr = ptr; @@ -1362,7 +1362,7 @@ #define CALL_MORECORE(S) MFAIL #endif /* HAVE_MORECORE */ -/* mstate bit set if continguous morecore disabled or failed */ +/* mstate bit set if contiguous morecore disabled or failed */ #define USE_NONCONTIGUOUS_BIT (4U) /* segment bit set in create_mspace_with_base */ diff --git a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c --- a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c +++ b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c @@ -592,7 +592,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignement to the next multiple of 16 | + | alignment to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 diff --git a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c --- a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c +++ b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c @@ -650,7 +650,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignement to the next multiple of 16 | + | alignment to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 diff --git a/Modules/_struct.c b/Modules/_struct.c --- a/Modules/_struct.c +++ b/Modules/_struct.c @@ -1111,7 +1111,7 @@ case '>': case '!': /* Network byte order is big-endian */ return bigendian_table; - case '=': { /* Host byte order -- different from native in aligment! */ + case '=': { /* Host byte order -- different from native in alignment! */ int n = 1; char *p = (char *) &n; if (*p == 1) diff --git a/Modules/_threadmodule.c b/Modules/_threadmodule.c --- a/Modules/_threadmodule.c +++ b/Modules/_threadmodule.c @@ -823,7 +823,7 @@ self->args, self->kw) < 0) { /* we need to get rid of ldict from thread so we create a new one the next time we do an attr - acces */ + access */ PyDict_DelItem(tdict, self->key); return NULL; } diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -1569,7 +1569,7 @@ || strcmp(s, ">>=") == 0 || strcmp(s, "**=") == 0); if (!res) - err_string("illegal augmmented assignment operator"); + err_string("illegal augmented assignment operator"); } } else { diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -1281,7 +1281,7 @@ win32_stat will first explicitly resolve the symlink target and then will call win32_lstat on that result. - The _w represent Unicode equivalents of the aformentioned ANSI functions. */ + The _w represent Unicode equivalents of the aforementioned ANSI functions. */ static int win32_lstat(const char* path, struct win32_stat *result) diff --git a/Modules/zipimport.c b/Modules/zipimport.c --- a/Modules/zipimport.c +++ b/Modules/zipimport.c @@ -1172,7 +1172,7 @@ return code; } -/* Get the code object assoiciated with the module specified by +/* Get the code object associated with the module specified by 'fullname'. */ static PyObject * get_module_code(ZipImporter *self, char *fullname, diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -2221,7 +2221,7 @@ if (it == NULL) return NULL; - /* Try to determine the length of the argument. 32 is abitrary. */ + /* Try to determine the length of the argument. 32 is arbitrary. */ buf_size = _PyObject_LengthHint(arg, 32); if (buf_size == -1) { Py_DECREF(it); diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -487,7 +487,7 @@ default: *p++ = '\\'; s--; - goto non_esc; /* an arbitry number of unescaped + goto non_esc; /* an arbitrary number of unescaped UTF-8 bytes may follow. */ } } diff --git a/Objects/longobject.c b/Objects/longobject.c --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -3120,7 +3120,7 @@ * of slices, each with a->ob_size digits, and multiply the slices by a, * one at a time. This gives k_mul balanced inputs to work with, and is * also cache-friendly (we compute one double-width slice of the result - * at a time, then move on, never bactracking except for the helpful + * at a time, then move on, never backtracking except for the helpful * single-width slice overlap between successive partial sums). */ static PyLongObject * diff --git a/Objects/stringlib/string_format.h b/Objects/stringlib/string_format.h --- a/Objects/stringlib/string_format.h +++ b/Objects/stringlib/string_format.h @@ -6,7 +6,7 @@ */ -/* Defines for Python 2.6 compatability */ +/* Defines for Python 2.6 compatibility */ #if PY_VERSION_HEX < 0x03000000 #define PyLong_FromSsize_t _PyLong_FromSsize_t #endif diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c --- a/PC/bdist_wininst/install.c +++ b/PC/bdist_wininst/install.c @@ -62,7 +62,7 @@ * instead showing the user an empty listbox to select something from. * * Finish the code so that we can use other python installations - * additionaly to those found in the registry, + * additionally to those found in the registry, * and then #define USE_OTHER_PYTHON_VERSIONS * * - install a help-button, which will display something meaningful diff --git a/Parser/spark.py b/Parser/spark.py --- a/Parser/spark.py +++ b/Parser/spark.py @@ -23,7 +23,7 @@ import re -# Compatability with older pythons. +# Compatibility with older pythons. def output(string='', end='\n'): sys.stdout.write(string + end) diff --git a/Python/_warnings.c b/Python/_warnings.c --- a/Python/_warnings.c +++ b/Python/_warnings.c @@ -764,7 +764,7 @@ return ret; } -/* PyErr_Warn is only for backwards compatability and will be removed. +/* PyErr_Warn is only for backwards compatibility and will be removed. Use PyErr_WarnEx instead. */ #undef PyErr_Warn diff --git a/Python/sysmodule.c b/Python/sysmodule.c --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -686,7 +686,7 @@ Return information about the running version of Windows as a named tuple.\n\ The members are named: major, minor, build, platform, service_pack,\n\ service_pack_major, service_pack_minor, suite_mask, and product_type. For\n\ -backward compatibiliy, only the first 5 items are available by indexing.\n\ +backward compatibility, only the first 5 items are available by indexing.\n\ All elements are numbers, except service_pack which is a string. Platform\n\ may be 0 for win32s, 1 for Windows 9x/ME, 2 for Windows NT/2000/XP/Vista/7,\n\ 3 for Windows CE. Product_type may be 1 for a workstation, 2 for a domain\n\ diff --git a/Tools/demo/ss1.py b/Tools/demo/ss1.py --- a/Tools/demo/ss1.py +++ b/Tools/demo/ss1.py @@ -586,7 +586,7 @@ cell = Tk.Label(self.cellgrid, relief='raised') cell.grid_configure(column=0, row=0, sticky='NSWE') cell.bind("", self.selectall) - # Create the top row of labels, and confiure the grid columns + # Create the top row of labels, and configure the grid columns for x in range(1, columns+1): self.cellgrid.grid_columnconfigure(x, minsize=64) cell = Tk.Label(self.cellgrid, text=colnum2name(x), relief='raised') diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -178,7 +178,7 @@ have_mingw = build_mingw_lib(lib_file, def_file, dll_file, mingw_lib) -# Determine the target architechture +# Determine the target architecture dll_path = os.path.join(srcdir, PCBUILD, dll_file) msilib.set_arch_from_file(dll_path) if msilib.pe_type(dll_path) != msilib.pe_type("msisupport.dll"): diff --git a/Tools/pybench/pybench.py b/Tools/pybench/pybench.py --- a/Tools/pybench/pybench.py +++ b/Tools/pybench/pybench.py @@ -682,7 +682,7 @@ other_total_avg_time = other_total_avg_time + other_avg_time if (benchmarks_compatible and test.compatible(other)): - # Both benchmark and tests are comparible + # Both benchmark and tests are comparable min_diff = ((min_time * self.warp) / (other_min_time * other.warp) - 1.0) avg_diff = ((avg_time * self.warp) / @@ -696,7 +696,7 @@ else: avg_diff = '%+5.1f%%' % (avg_diff * PERCENT) else: - # Benchmark or tests are not comparible + # Benchmark or tests are not comparable min_diff, avg_diff = 'n/a', 'n/a' tests_compatible = 0 print('%30s: %5.0fms %5.0fms %7s %5.0fms %5.0fms %7s' % \ diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -901,7 +901,7 @@ db_dirs_to_check = tmp - # Look for a version specific db-X.Y before an ambiguoius dbX + # Look for a version specific db-X.Y before an ambiguous dbX # XXX should we -ever- look for a dbX name? Do any # systems really not name their library by version and # symlink to more general names? -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 05:03:40 2011 From: python-checkins at python.org (ezio.melotti) Date: Tue, 15 Mar 2011 05:03:40 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): #11515: Merge with 3.2. Message-ID: http://hg.python.org/cpython/rev/4c1a15ebebe5 changeset: 68490:4c1a15ebebe5 parent: 68487:1397fd31252a parent: 68489:81d7f78a633a user: Ezio Melotti date: Tue Mar 15 06:03:08 2011 +0200 summary: #11515: Merge with 3.2. files: Lib/collections/__init__.py Lib/ftplib.py Lib/http/client.py Lib/importlib/_bootstrap.py Lib/nntplib.py Lib/test/test_descr.py Lib/test/test_os.py Lib/test/test_string.py Misc/ACKS Modules/_threadmodule.c Modules/posixmodule.c Objects/bytearrayobject.c Python/sysmodule.c setup.py diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -1,7 +1,7 @@ __all__ = ['deque', 'defaultdict', 'namedtuple', 'UserDict', 'UserList', 'UserString', 'Counter', 'OrderedDict'] -# For backwards compatability, continue to make the collections ABCs +# For backwards compatibility, continue to make the collections ABCs # available through the collections module. from collections.abc import * import collections.abc diff --git a/Lib/ctypes/test/test_functions.py b/Lib/ctypes/test/test_functions.py --- a/Lib/ctypes/test/test_functions.py +++ b/Lib/ctypes/test/test_functions.py @@ -116,7 +116,7 @@ self.assertEqual(result, 21) self.assertEqual(type(result), int) - # You cannot assing character format codes as restype any longer + # You cannot assign character format codes as restype any longer self.assertRaises(TypeError, setattr, f, "restype", "i") def test_floatresult(self): diff --git a/Lib/decimal.py b/Lib/decimal.py --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -6088,7 +6088,7 @@ def _format_align(sign, body, spec): """Given an unpadded, non-aligned numeric string 'body' and sign - string 'sign', add padding and aligment conforming to the given + string 'sign', add padding and alignment conforming to the given format specifier dictionary 'spec' (as produced by parse_format_specifier). diff --git a/Lib/email/mime/application.py b/Lib/email/mime/application.py --- a/Lib/email/mime/application.py +++ b/Lib/email/mime/application.py @@ -17,7 +17,7 @@ _encoder=encoders.encode_base64, **_params): """Create an application/* type MIME document. - _data is a string containing the raw applicatoin data. + _data is a string containing the raw application data. _subtype is the MIME content type subtype, defaulting to 'octet-stream'. diff --git a/Lib/ftplib.py b/Lib/ftplib.py --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -620,7 +620,7 @@ Usage example: >>> from ftplib import FTP_TLS >>> ftps = FTP_TLS('ftp.python.org') - >>> ftps.login() # login anonimously previously securing control channel + >>> ftps.login() # login anonymously previously securing control channel '230 Guest login ok, access restrictions apply.' >>> ftps.prot_p() # switch to secure data connection '200 Protection level set to P' diff --git a/Lib/gettext.py b/Lib/gettext.py --- a/Lib/gettext.py +++ b/Lib/gettext.py @@ -282,7 +282,7 @@ # Note: we unconditionally convert both msgids and msgstrs to # Unicode using the character encoding specified in the charset # parameter of the Content-Type header. The gettext documentation - # strongly encourages msgids to be us-ascii, but some appliations + # strongly encourages msgids to be us-ascii, but some applications # require alternative encodings (e.g. Zope's ZCML and ZPT). For # traditional gettext applications, the msgid conversion will # cause no problems since us-ascii should always be a subset of diff --git a/Lib/http/client.py b/Lib/http/client.py --- a/Lib/http/client.py +++ b/Lib/http/client.py @@ -798,7 +798,7 @@ del self._buffer[:] # If msg and message_body are sent in a single send() call, # it will avoid performance problems caused by the interaction - # between delayed ack and the Nagle algorithim. + # between delayed ack and the Nagle algorithm. if isinstance(message_body, bytes): msg += message_body message_body = None diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -104,8 +104,8 @@ self.top = top = WindowList.ListedToplevel(root, menu=self.menubar) if flist: self.tkinter_vars = flist.vars - #self.top.instance_dict makes flist.inversedict avalable to - #configDialog.py so it can access all EditorWindow instaces + #self.top.instance_dict makes flist.inversedict available to + #configDialog.py so it can access all EditorWindow instances self.top.instance_dict = flist.inversedict else: self.tkinter_vars = {} # keys: Tkinter event names diff --git a/Lib/idlelib/HISTORY.txt b/Lib/idlelib/HISTORY.txt --- a/Lib/idlelib/HISTORY.txt +++ b/Lib/idlelib/HISTORY.txt @@ -13,7 +13,7 @@ - New tarball released as a result of the 'revitalisation' of the IDLEfork project. -- This release requires python 2.1 or better. Compatability with earlier +- This release requires python 2.1 or better. Compatibility with earlier versions of python (especially ancient ones like 1.5x) is no longer a priority in IDLEfork development. diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -152,7 +152,7 @@ loader can handle. The first argument (self) must define _name which the second argument is - comapred against. If the comparison fails then ImportError is raised. + compared against. If the comparison fails then ImportError is raised. """ def inner(self, name, *args, **kwargs): @@ -304,7 +304,7 @@ def _bytes_from_bytecode(self, fullname, data, source_mtime): """Return the marshalled bytes from bytecode, verifying the magic - number and timestamp alon the way. + number and timestamp along the way. If source_mtime is None then skip the timestamp check. diff --git a/Lib/nntplib.py b/Lib/nntplib.py --- a/Lib/nntplib.py +++ b/Lib/nntplib.py @@ -315,7 +315,7 @@ readermode is sometimes necessary if you are connecting to an NNTP server on the local machine and intend to call - reader-specific comamnds, such as `group'. If you get + reader-specific commands, such as `group'. If you get unexpected NNTPPermanentErrors, you might need to set readermode. """ @@ -1015,7 +1015,7 @@ readermode is sometimes necessary if you are connecting to an NNTP server on the local machine and intend to call - reader-specific comamnds, such as `group'. If you get + reader-specific commands, such as `group'. If you get unexpected NNTPPermanentErrors, you might need to set readermode. """ diff --git a/Lib/socketserver.py b/Lib/socketserver.py --- a/Lib/socketserver.py +++ b/Lib/socketserver.py @@ -675,7 +675,7 @@ # A timeout to apply to the request socket, if not None. timeout = None - # Disable nagle algoritm for this socket, if True. + # Disable nagle algorithm for this socket, if True. # Use only when wbufsize != 0, to avoid small packets. disable_nagle_algorithm = False diff --git a/Lib/test/crashers/recursion_limit_too_high.py b/Lib/test/crashers/recursion_limit_too_high.py --- a/Lib/test/crashers/recursion_limit_too_high.py +++ b/Lib/test/crashers/recursion_limit_too_high.py @@ -5,7 +5,7 @@ # file handles. # The point of this example is to show that sys.setrecursionlimit() is a -# hack, and not a robust solution. This example simply exercices a path +# hack, and not a robust solution. This example simply exercises a path # where it takes many C-level recursions, consuming a lot of stack # space, for each Python-level recursion. So 1000 times this amount of # stack space may be too much for standard platforms already. diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py --- a/Lib/test/test_compile.py +++ b/Lib/test/test_compile.py @@ -190,7 +190,7 @@ self.assertEqual(eval("-" + all_one_bits), -18446744073709551615) else: self.fail("How many bits *does* this machine have???") - # Verify treatment of contant folding on -(sys.maxsize+1) + # Verify treatment of constant folding on -(sys.maxsize+1) # i.e. -2147483648 on 32 bit platforms. Should return int, not long. self.assertIsInstance(eval("%s" % (-sys.maxsize - 1)), int) self.assertIsInstance(eval("%s" % (-sys.maxsize - 2)), int) diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -772,7 +772,7 @@ # see "A Monotonic Superclass Linearization for Dylan", # by Kim Barrett et al. (OOPSLA 1996) def test_consistency_with_epg(self): - # Testing consistentcy with EPG... + # Testing consistency with EPG... class Pane(object): pass class ScrollingMixin(object): pass class EditingMixin(object): pass diff --git a/Lib/test/test_numeric_tower.py b/Lib/test/test_numeric_tower.py --- a/Lib/test/test_numeric_tower.py +++ b/Lib/test/test_numeric_tower.py @@ -1,4 +1,4 @@ -# test interactions betwen int, float, Decimal and Fraction +# test interactions between int, float, Decimal and Fraction import unittest import random diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -284,7 +284,7 @@ except TypeError: pass - # Use the constructr with a too-long tuple. + # Use the constructor with a too-long tuple. try: result2 = os.stat_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14)) except TypeError: @@ -340,7 +340,7 @@ except TypeError: pass - # Use the constructr with a too-long tuple. + # Use the constructor with a too-long tuple. try: result2 = os.statvfs_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14)) except TypeError: diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -7,7 +7,7 @@ # Misc tests from Tim Peters' re.doc # WARNING: Don't change details in these tests if you don't know -# what you're doing. Some of these tests were carefuly modeled to +# what you're doing. Some of these tests were carefully modeled to # cover most of the code. import unittest diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py --- a/Lib/test/test_set.py +++ b/Lib/test/test_set.py @@ -583,7 +583,7 @@ self.le_called = True return False - # This first tries the bulitin rich set comparison, which doesn't know + # This first tries the builtin rich set comparison, which doesn't know # how to handle the custom object. Upon returning NotImplemented, the # corresponding comparison on the right object is invoked. myset = {1, 2, 3} diff --git a/Lib/test/test_string.py b/Lib/test/test_string.py --- a/Lib/test/test_string.py +++ b/Lib/test/test_string.py @@ -93,7 +93,7 @@ # test all parameters used class CheckAllUsedFormatter(string.Formatter): def check_unused_args(self, used_args, args, kwargs): - # Track which arguments actuallly got used + # Track which arguments actually got used unused_args = set(kwargs.keys()) unused_args.update(range(0, len(args))) diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py --- a/Lib/test/test_warnings.py +++ b/Lib/test/test_warnings.py @@ -758,7 +758,7 @@ class BootstrapTest(unittest.TestCase): def test_issue_8766(self): # "import encodings" emits a warning whereas the warnings is not loaded - # or not completly loaded (warnings imports indirectly encodings by + # or not completely loaded (warnings imports indirectly encodings by # importing linecache) yet with support.temp_cwd() as cwd, support.temp_cwd('encodings'): env = os.environ.copy() diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py --- a/Lib/tkinter/__init__.py +++ b/Lib/tkinter/__init__.py @@ -1649,7 +1649,7 @@ class Tk(Misc, Wm): """Toplevel widget of Tk which represents mostly the main window - of an appliation. It has an associated Tcl interpreter.""" + of an application. It has an associated Tcl interpreter.""" _w = '.' def __init__(self, screenName=None, baseName=None, className='Tk', useTk=1, sync=0, use=None): diff --git a/Lib/tkinter/tix.py b/Lib/tkinter/tix.py --- a/Lib/tkinter/tix.py +++ b/Lib/tkinter/tix.py @@ -163,7 +163,7 @@ extensions) exist, then the image type is chosen according to the depth of the X display: xbm images are chosen on monochrome displays and color images are chosen on color displays. By using - tix_ getimage, you can advoid hard coding the pathnames of the + tix_ getimage, you can avoid hard coding the pathnames of the image files in your application. When successful, this command returns the name of the newly created image, which can be used to configure the -image option of the Tk and Tix widgets. diff --git a/Lib/tkinter/ttk.py b/Lib/tkinter/ttk.py --- a/Lib/tkinter/ttk.py +++ b/Lib/tkinter/ttk.py @@ -993,7 +993,7 @@ pane is either an integer index or the name of a managed subwindow. If kw is not given, returns a dict of the pane option values. If option is specified then the value for that option is returned. - Otherwise, sets the options to the correspoding values.""" + Otherwise, sets the options to the corresponding values.""" if option is not None: kw[option] = None return _val_or_dict(kw, self.tk.call, self._w, "pane", pane) diff --git a/Lib/turtle.py b/Lib/turtle.py --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -1464,7 +1464,7 @@ Optional argument: picname -- a string, name of a gif-file or "nopic". - If picname is a filename, set the corresponing image as background. + If picname is a filename, set the corresponding image as background. If picname is "nopic", delete backgroundimage, if present. If picname is None, return the filename of the current backgroundimage. @@ -3352,7 +3352,7 @@ def dot(self, size=None, *color): """Draw a dot with diameter size, using color. - Optional argumentS: + Optional arguments: size -- an integer >= 1 (if given) color -- a colorstring or a numeric color tuple diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -1476,7 +1476,7 @@ return False def isId(self, aname): - """Returns true iff the named attribte is a DTD-style ID.""" + """Returns true iff the named attribute is a DTD-style ID.""" return False def isIdNS(self, namespaceURI, localName): diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -100,7 +100,7 @@ ARCHLIST = universal_opts_map[UNIVERSALARCHS] -# Source directory (asume we're in Mac/BuildScript) +# Source directory (assume we're in Mac/BuildScript) SRCDIR = os.path.dirname( os.path.dirname( os.path.dirname( diff --git a/Mac/Tools/pythonw.c b/Mac/Tools/pythonw.c --- a/Mac/Tools/pythonw.c +++ b/Mac/Tools/pythonw.c @@ -105,8 +105,8 @@ count = 1; - /* Run the real python executable using the same architure as this - * executable, this allows users to controle the architecture using + /* Run the real python executable using the same architecture as this + * executable, this allows users to control the architecture using * "arch -ppc python" */ diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -49,7 +49,7 @@ So, there are 4 data structures holding processed arguments: - the inargs tuple (in PyCFuncPtr_call) - the callargs tuple (in PyCFuncPtr_call) - - the 'struct argguments' array + - the 'struct arguments' array - the 'void *' array */ diff --git a/Modules/_ctypes/libffi/ChangeLog b/Modules/_ctypes/libffi/ChangeLog --- a/Modules/_ctypes/libffi/ChangeLog +++ b/Modules/_ctypes/libffi/ChangeLog @@ -3084,7 +3084,7 @@ 2003-09-18 Kaz Kojima - * src/sh/ffi.c (ffi_prep_args): Take account into the alignement + * src/sh/ffi.c (ffi_prep_args): Take account into the alignment for the register size. (ffi_closure_helper_SYSV): Handle the structure return value address correctly. @@ -3344,7 +3344,7 @@ 2003-02-06 Andreas Tobler * libffi/src/powerpc/darwin_closure.S: - Fix alignement bug, allocate 8 bytes for the result. + Fix alignment bug, allocate 8 bytes for the result. * libffi/src/powerpc/aix_closure.S: Likewise. * libffi/src/powerpc/ffi_darwin.c: diff --git a/Modules/_ctypes/libffi/src/dlmalloc.c b/Modules/_ctypes/libffi/src/dlmalloc.c --- a/Modules/_ctypes/libffi/src/dlmalloc.c +++ b/Modules/_ctypes/libffi/src/dlmalloc.c @@ -1326,7 +1326,7 @@ return (ptr != 0)? ptr: MFAIL; } -/* This function supports releasing coalesed segments */ +/* This function supports releasing coalesced segments */ static int win32munmap(void* ptr, size_t size) { MEMORY_BASIC_INFORMATION minfo; char* cptr = ptr; @@ -1362,7 +1362,7 @@ #define CALL_MORECORE(S) MFAIL #endif /* HAVE_MORECORE */ -/* mstate bit set if continguous morecore disabled or failed */ +/* mstate bit set if contiguous morecore disabled or failed */ #define USE_NONCONTIGUOUS_BIT (4U) /* segment bit set in create_mspace_with_base */ diff --git a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c --- a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c +++ b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c @@ -592,7 +592,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignement to the next multiple of 16 | + | alignment to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 diff --git a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c --- a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c +++ b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c @@ -650,7 +650,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignement to the next multiple of 16 | + | alignment to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 diff --git a/Modules/_struct.c b/Modules/_struct.c --- a/Modules/_struct.c +++ b/Modules/_struct.c @@ -1111,7 +1111,7 @@ case '>': case '!': /* Network byte order is big-endian */ return bigendian_table; - case '=': { /* Host byte order -- different from native in aligment! */ + case '=': { /* Host byte order -- different from native in alignment! */ int n = 1; char *p = (char *) &n; if (*p == 1) diff --git a/Modules/_threadmodule.c b/Modules/_threadmodule.c --- a/Modules/_threadmodule.c +++ b/Modules/_threadmodule.c @@ -824,7 +824,7 @@ self->args, self->kw) < 0) { /* we need to get rid of ldict from thread so we create a new one the next time we do an attr - acces */ + access */ PyDict_DelItem(tdict, self->key); return NULL; } diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -1569,7 +1569,7 @@ || strcmp(s, ">>=") == 0 || strcmp(s, "**=") == 0); if (!res) - err_string("illegal augmmented assignment operator"); + err_string("illegal augmented assignment operator"); } } else { diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -1308,7 +1308,7 @@ win32_stat will first explicitly resolve the symlink target and then will call win32_lstat on that result. - The _w represent Unicode equivalents of the aformentioned ANSI functions. */ + The _w represent Unicode equivalents of the aforementioned ANSI functions. */ static int win32_lstat(const char* path, struct win32_stat *result) diff --git a/Modules/zipimport.c b/Modules/zipimport.c --- a/Modules/zipimport.c +++ b/Modules/zipimport.c @@ -1172,7 +1172,7 @@ return code; } -/* Get the code object assoiciated with the module specified by +/* Get the code object associated with the module specified by 'fullname'. */ static PyObject * get_module_code(ZipImporter *self, char *fullname, diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -2245,7 +2245,7 @@ if (it == NULL) return NULL; - /* Try to determine the length of the argument. 32 is abitrary. */ + /* Try to determine the length of the argument. 32 is arbitrary. */ buf_size = _PyObject_LengthHint(arg, 32); if (buf_size == -1) { Py_DECREF(it); diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -487,7 +487,7 @@ default: *p++ = '\\'; s--; - goto non_esc; /* an arbitry number of unescaped + goto non_esc; /* an arbitrary number of unescaped UTF-8 bytes may follow. */ } } diff --git a/Objects/longobject.c b/Objects/longobject.c --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -3120,7 +3120,7 @@ * of slices, each with a->ob_size digits, and multiply the slices by a, * one at a time. This gives k_mul balanced inputs to work with, and is * also cache-friendly (we compute one double-width slice of the result - * at a time, then move on, never bactracking except for the helpful + * at a time, then move on, never backtracking except for the helpful * single-width slice overlap between successive partial sums). */ static PyLongObject * diff --git a/Objects/stringlib/string_format.h b/Objects/stringlib/string_format.h --- a/Objects/stringlib/string_format.h +++ b/Objects/stringlib/string_format.h @@ -6,7 +6,7 @@ */ -/* Defines for Python 2.6 compatability */ +/* Defines for Python 2.6 compatibility */ #if PY_VERSION_HEX < 0x03000000 #define PyLong_FromSsize_t _PyLong_FromSsize_t #endif diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c --- a/PC/bdist_wininst/install.c +++ b/PC/bdist_wininst/install.c @@ -62,7 +62,7 @@ * instead showing the user an empty listbox to select something from. * * Finish the code so that we can use other python installations - * additionaly to those found in the registry, + * additionally to those found in the registry, * and then #define USE_OTHER_PYTHON_VERSIONS * * - install a help-button, which will display something meaningful diff --git a/Parser/spark.py b/Parser/spark.py --- a/Parser/spark.py +++ b/Parser/spark.py @@ -23,7 +23,7 @@ import re -# Compatability with older pythons. +# Compatibility with older pythons. def output(string='', end='\n'): sys.stdout.write(string + end) diff --git a/Python/_warnings.c b/Python/_warnings.c --- a/Python/_warnings.c +++ b/Python/_warnings.c @@ -764,7 +764,7 @@ return ret; } -/* PyErr_Warn is only for backwards compatability and will be removed. +/* PyErr_Warn is only for backwards compatibility and will be removed. Use PyErr_WarnEx instead. */ #undef PyErr_Warn diff --git a/Python/sysmodule.c b/Python/sysmodule.c --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -686,7 +686,7 @@ Return information about the running version of Windows as a named tuple.\n\ The members are named: major, minor, build, platform, service_pack,\n\ service_pack_major, service_pack_minor, suite_mask, and product_type. For\n\ -backward compatibiliy, only the first 5 items are available by indexing.\n\ +backward compatibility, only the first 5 items are available by indexing.\n\ All elements are numbers, except service_pack which is a string. Platform\n\ may be 0 for win32s, 1 for Windows 9x/ME, 2 for Windows NT/2000/XP/Vista/7,\n\ 3 for Windows CE. Product_type may be 1 for a workstation, 2 for a domain\n\ diff --git a/Tools/demo/ss1.py b/Tools/demo/ss1.py --- a/Tools/demo/ss1.py +++ b/Tools/demo/ss1.py @@ -586,7 +586,7 @@ cell = Tk.Label(self.cellgrid, relief='raised') cell.grid_configure(column=0, row=0, sticky='NSWE') cell.bind("", self.selectall) - # Create the top row of labels, and confiure the grid columns + # Create the top row of labels, and configure the grid columns for x in range(1, columns+1): self.cellgrid.grid_columnconfigure(x, minsize=64) cell = Tk.Label(self.cellgrid, text=colnum2name(x), relief='raised') diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -178,7 +178,7 @@ have_mingw = build_mingw_lib(lib_file, def_file, dll_file, mingw_lib) -# Determine the target architechture +# Determine the target architecture dll_path = os.path.join(srcdir, PCBUILD, dll_file) msilib.set_arch_from_file(dll_path) if msilib.pe_type(dll_path) != msilib.pe_type("msisupport.dll"): diff --git a/Tools/pybench/pybench.py b/Tools/pybench/pybench.py --- a/Tools/pybench/pybench.py +++ b/Tools/pybench/pybench.py @@ -682,7 +682,7 @@ other_total_avg_time = other_total_avg_time + other_avg_time if (benchmarks_compatible and test.compatible(other)): - # Both benchmark and tests are comparible + # Both benchmark and tests are comparable min_diff = ((min_time * self.warp) / (other_min_time * other.warp) - 1.0) avg_diff = ((avg_time * self.warp) / @@ -696,7 +696,7 @@ else: avg_diff = '%+5.1f%%' % (avg_diff * PERCENT) else: - # Benchmark or tests are not comparible + # Benchmark or tests are not comparable min_diff, avg_diff = 'n/a', 'n/a' tests_compatible = 0 print('%30s: %5.0fms %5.0fms %7s %5.0fms %5.0fms %7s' % \ diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -901,7 +901,7 @@ db_dirs_to_check = tmp - # Look for a version specific db-X.Y before an ambiguoius dbX + # Look for a version specific db-X.Y before an ambiguous dbX # XXX should we -ever- look for a dbX name? Do any # systems really not name their library by version and # symlink to more general names? -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Tue Mar 15 05:11:02 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Tue, 15 Mar 2011 05:11:02 +0100 Subject: [Python-checkins] Daily reference leaks (525d69edc372): sum=0 Message-ID: results for 525d69edc372 on branch "default" -------------------------------------------- test_pydoc leaked [-323, 0, 323] references, sum=0 Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflog8FiYHh', '-x'] From python-checkins at python.org Tue Mar 15 07:18:32 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 07:18:32 +0100 Subject: [Python-checkins] cpython (3.1): Fix the @test_NNNN_tmp file terds being left in whatever your $PWD was Message-ID: http://hg.python.org/cpython/rev/141bbcb19c06 changeset: 68491:141bbcb19c06 branch: 3.1 parent: 68488:0991b40e895d user: Gregory P. Smith date: Tue Mar 15 02:04:11 2011 -0400 summary: Fix the @test_NNNN_tmp file terds being left in whatever your $PWD was when test_subprocess was run. files: Lib/test/test_subprocess.py diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -8,6 +8,7 @@ import tempfile import time import re +import shutil mswindows = (sys.platform == "win32") @@ -450,11 +451,12 @@ else: max_handles = 2050 # too much for (at least some) Windows setups handles = [] + tmpdir = tempfile.mkdtemp() try: for i in range(max_handles): try: - handles.append(os.open(support.TESTFN, - os.O_WRONLY | os.O_CREAT)) + tmpfile = os.path.join(tmpdir, support.TESTFN) + handles.append(os.open(tmpfile, os.O_WRONLY|os.O_CREAT)) except OSError as e: if e.errno != errno.EMFILE: raise @@ -479,6 +481,7 @@ finally: for h in handles: os.close(h) + shutil.rmtree(tmpdir) def test_list2cmdline(self): self.assertEqual(subprocess.list2cmdline(['a b c', 'd', 'e']), -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 07:18:34 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 07:18:34 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): merge 141bbcb19c06 Message-ID: http://hg.python.org/cpython/rev/1579808ef25b changeset: 68492:1579808ef25b branch: 3.2 parent: 68489:81d7f78a633a parent: 68491:141bbcb19c06 user: Gregory P. Smith date: Tue Mar 15 02:13:09 2011 -0400 summary: merge 141bbcb19c06 files: Lib/test/test_subprocess.py diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -11,6 +11,7 @@ import sysconfig import warnings import select +import shutil try: import gc except ImportError: @@ -488,11 +489,12 @@ else: max_handles = 2050 # too much for (at least some) Windows setups handles = [] + tmpdir = tempfile.mkdtemp() try: for i in range(max_handles): try: - handles.append(os.open(support.TESTFN, - os.O_WRONLY | os.O_CREAT)) + tmpfile = os.path.join(tmpdir, support.TESTFN) + handles.append(os.open(tmpfile, os.O_WRONLY|os.O_CREAT)) except OSError as e: if e.errno != errno.EMFILE: raise @@ -517,6 +519,7 @@ finally: for h in handles: os.close(h) + shutil.rmtree(tmpdir) def test_list2cmdline(self): self.assertEqual(subprocess.list2cmdline(['a b c', 'd', 'e']), -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 07:18:37 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 07:18:37 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge 1579808ef25b Message-ID: http://hg.python.org/cpython/rev/ac2527fae45e changeset: 68493:ac2527fae45e parent: 68490:4c1a15ebebe5 parent: 68492:1579808ef25b user: Gregory P. Smith date: Tue Mar 15 02:15:13 2011 -0400 summary: merge 1579808ef25b files: Lib/test/test_subprocess.py diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -11,6 +11,7 @@ import sysconfig import warnings import select +import shutil try: import gc except ImportError: @@ -546,11 +547,12 @@ else: max_handles = 2050 # too much for (at least some) Windows setups handles = [] + tmpdir = tempfile.mkdtemp() try: for i in range(max_handles): try: - handles.append(os.open(support.TESTFN, - os.O_WRONLY | os.O_CREAT)) + tmpfile = os.path.join(tmpdir, support.TESTFN) + handles.append(os.open(tmpfile, os.O_WRONLY|os.O_CREAT)) except OSError as e: if e.errno != errno.EMFILE: raise @@ -575,6 +577,7 @@ finally: for h in handles: os.close(h) + shutil.rmtree(tmpdir) def test_list2cmdline(self): self.assertEqual(subprocess.list2cmdline(['a b c', 'd', 'e']), -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 09:16:49 2011 From: python-checkins at python.org (eric.smith) Date: Tue, 15 Mar 2011 09:16:49 +0100 Subject: [Python-checkins] cpython: Typo. Message-ID: http://hg.python.org/cpython/rev/55d3289c50f9 changeset: 68494:55d3289c50f9 user: Eric V. Smith date: Tue Mar 15 04:16:42 2011 -0400 summary: Typo. files: Lib/test/test_importhooks.py diff --git a/Lib/test/test_importhooks.py b/Lib/test/test_importhooks.py --- a/Lib/test/test_importhooks.py +++ b/Lib/test/test_importhooks.py @@ -51,7 +51,7 @@ def __init__(self, path=test_path): if path != test_path: - # if out class is on sys.path_hooks, we must raise + # if our class is on sys.path_hooks, we must raise # ImportError for any path item that we can't handle. raise ImportError self.path = path -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 15:29:59 2011 From: python-checkins at python.org (brian.curtin) Date: Tue, 15 Mar 2011 15:29:59 +0100 Subject: [Python-checkins] cpython: Fix #11509. Significantly increase test coverage for fileinput. Message-ID: http://hg.python.org/cpython/rev/f2e04ce75f0b changeset: 68495:f2e04ce75f0b user: briancurtin date: Tue Mar 15 10:29:41 2011 -0400 summary: Fix #11509. Significantly increase test coverage for fileinput. Patch by Denver Coneybeare at the PyCon 2011 Sprints. files: Lib/test/test_fileinput.py diff --git a/Lib/test/test_fileinput.py b/Lib/test/test_fileinput.py --- a/Lib/test/test_fileinput.py +++ b/Lib/test/test_fileinput.py @@ -6,14 +6,18 @@ import unittest from test.support import verbose, TESTFN, run_unittest from test.support import unlink as safe_unlink -import sys, re +import os, sys, re from io import StringIO from fileinput import FileInput, hook_encoded +import fileinput +import collections +import gzip, bz2 +import types +import codecs # The fileinput module has 2 interfaces: the FileInput class which does # all the work, and a few functions (input, etc.) that use a global _state -# variable. We only test the FileInput class, since the other functions -# only provide a thin facade over FileInput. +# variable. # Write lines (a list of lines) to temp file number i, and return the # temp file's name. @@ -121,7 +125,16 @@ self.assertEqual(int(m.group(1)), fi.filelineno()) fi.close() +class UnconditionallyRaise: + def __init__(self, exception_type): + self.exception_type = exception_type + self.invoked = False + def __call__(self, *args, **kwargs): + self.invoked = True + raise self.exception_type() + class FileInputTests(unittest.TestCase): + def test_zero_byte_files(self): t1 = t2 = t3 = t4 = None try: @@ -219,17 +232,20 @@ self.fail("FileInput should check openhook for being callable") except ValueError: pass - # XXX The rot13 codec was removed. - # So this test needs to be changed to use something else. - # (Or perhaps the API needs to change so we can just pass - # an encoding rather than using a hook?) -## try: -## t1 = writeTmp(1, ["A\nB"], mode="wb") -## fi = FileInput(files=t1, openhook=hook_encoded("rot13")) -## lines = list(fi) -## self.assertEqual(lines, ["N\n", "O"]) -## finally: -## remove_tempfiles(t1) + + class CustomOpenHook: + def __init__(self): + self.invoked = False + def __call__(self, *args): + self.invoked = True + return open(*args) + + t = writeTmp(1, ["\n"]) + self.addCleanup(remove_tempfiles, t) + custom_open_hook = CustomOpenHook() + with FileInput([t], openhook=custom_open_hook) as fi: + fi.readline() + self.assertTrue(custom_open_hook.invoked, "openhook not invoked") def test_context_manager(self): try: @@ -254,9 +270,583 @@ finally: remove_tempfiles(t1) + def test_empty_files_list_specified_to_constructor(self): + with FileInput(files=[]) as fi: + self.assertEquals(fi._files, ('-',)) + + def test__getitem__(self): + """Tests invoking FileInput.__getitem__() with the current + line number""" + t = writeTmp(1, ["line1\n", "line2\n"]) + self.addCleanup(remove_tempfiles, t) + with FileInput(files=[t]) as fi: + retval1 = fi[0] + self.assertEqual(retval1, "line1\n") + retval2 = fi[1] + self.assertEqual(retval2, "line2\n") + + def test__getitem__invalid_key(self): + """Tests invoking FileInput.__getitem__() with an index unequal to + the line number""" + t = writeTmp(1, ["line1\n", "line2\n"]) + self.addCleanup(remove_tempfiles, t) + with FileInput(files=[t]) as fi: + with self.assertRaises(RuntimeError) as cm: + fi[1] + self.assertEquals(cm.exception.args, ("accessing lines out of order",)) + + def test__getitem__eof(self): + """Tests invoking FileInput.__getitem__() with the line number but at + end-of-input""" + t = writeTmp(1, []) + self.addCleanup(remove_tempfiles, t) + with FileInput(files=[t]) as fi: + with self.assertRaises(IndexError) as cm: + fi[0] + self.assertEquals(cm.exception.args, ("end of input reached",)) + + def test_nextfile_oserror_deleting_backup(self): + """Tests invoking FileInput.nextfile() when the attempt to delete + the backup file would raise OSError. This error is expected to be + silently ignored""" + + os_unlink_orig = os.unlink + os_unlink_replacement = UnconditionallyRaise(OSError) + try: + t = writeTmp(1, ["\n"]) + self.addCleanup(remove_tempfiles, t) + with FileInput(files=[t], inplace=True) as fi: + next(fi) # make sure the file is opened + os.unlink = os_unlink_replacement + fi.nextfile() + finally: + os.unlink = os_unlink_orig + + # sanity check to make sure that our test scenario was actually hit + self.assertTrue(os_unlink_replacement.invoked, + "os.unlink() was not invoked") + + def test_readline_os_fstat_raises_OSError(self): + """Tests invoking FileInput.readline() when os.fstat() raises OSError. + This exception should be silently discarded.""" + + os_fstat_orig = os.fstat + os_fstat_replacement = UnconditionallyRaise(OSError) + try: + t = writeTmp(1, ["\n"]) + self.addCleanup(remove_tempfiles, t) + with FileInput(files=[t], inplace=True) as fi: + os.fstat = os_fstat_replacement + fi.readline() + finally: + os.fstat = os_fstat_orig + + # sanity check to make sure that our test scenario was actually hit + self.assertTrue(os_fstat_replacement.invoked, + "os.fstat() was not invoked") + + @unittest.skipIf(not hasattr(os, "chmod"), "os.chmod does not exist") + def test_readline_os_chmod_raises_OSError(self): + """Tests invoking FileInput.readline() when os.chmod() raises OSError. + This exception should be silently discarded.""" + + os_chmod_orig = os.chmod + os_chmod_replacement = UnconditionallyRaise(OSError) + try: + t = writeTmp(1, ["\n"]) + self.addCleanup(remove_tempfiles, t) + with FileInput(files=[t], inplace=True) as fi: + os.chmod = os_chmod_replacement + fi.readline() + finally: + os.chmod = os_chmod_orig + + # sanity check to make sure that our test scenario was actually hit + self.assertTrue(os_chmod_replacement.invoked, + "os.fstat() was not invoked") + + def test_fileno_when_ValueError_raised(self): + class FilenoRaisesValueError(UnconditionallyRaise): + def __init__(self): + UnconditionallyRaise.__init__(self, ValueError) + def fileno(self): + self.__call__() + + unconditionally_raise_ValueError = FilenoRaisesValueError() + t = writeTmp(1, ["\n"]) + self.addCleanup(remove_tempfiles, t) + with FileInput(files=[t]) as fi: + file_backup = fi._file + try: + fi._file = unconditionally_raise_ValueError + result = fi.fileno() + finally: + fi._file = file_backup # make sure the file gets cleaned up + + # sanity check to make sure that our test scenario was actually hit + self.assertTrue(unconditionally_raise_ValueError.invoked, + "_file.fileno() was not invoked") + + self.assertEqual(result, -1, "fileno() should return -1") + +class MockFileInput: + """A class that mocks out fileinput.FileInput for use during unit tests""" + + def __init__(self, files=None, inplace=False, backup="", bufsize=0, + mode="r", openhook=None): + self.files = files + self.inplace = inplace + self.backup = backup + self.bufsize = bufsize + self.mode = mode + self.openhook = openhook + self._file = None + self.invocation_counts = collections.defaultdict(lambda: 0) + self.return_values = {} + + def close(self): + self.invocation_counts["close"] += 1 + + def nextfile(self): + self.invocation_counts["nextfile"] += 1 + return self.return_values["nextfile"] + + def filename(self): + self.invocation_counts["filename"] += 1 + return self.return_values["filename"] + + def lineno(self): + self.invocation_counts["lineno"] += 1 + return self.return_values["lineno"] + + def filelineno(self): + self.invocation_counts["filelineno"] += 1 + return self.return_values["filelineno"] + + def fileno(self): + self.invocation_counts["fileno"] += 1 + return self.return_values["fileno"] + + def isfirstline(self): + self.invocation_counts["isfirstline"] += 1 + return self.return_values["isfirstline"] + + def isstdin(self): + self.invocation_counts["isstdin"] += 1 + return self.return_values["isstdin"] + +class BaseFileInputGlobalMethodsTest(unittest.TestCase): + """Base class for unit tests for the global function of + the fileinput module.""" + + def setUp(self): + self._orig_state = fileinput._state + self._orig_FileInput = fileinput.FileInput + fileinput.FileInput = MockFileInput + + def tearDown(self): + fileinput.FileInput = self._orig_FileInput + fileinput._state = self._orig_state + + def assertExactlyOneInvocation(self, mock_file_input, method_name): + # assert that the method with the given name was invoked once + actual_count = mock_file_input.invocation_counts[method_name] + self.assertEqual(actual_count, 1, method_name) + # assert that no other unexpected methods were invoked + actual_total_count = len(mock_file_input.invocation_counts) + self.assertEqual(actual_total_count, 1) + +class Test_fileinput_input(BaseFileInputGlobalMethodsTest): + """Unit tests for fileinput.input()""" + + def test_state_is_not_None_and_state_file_is_not_None(self): + """Tests invoking fileinput.input() when fileinput._state is not None + and its _file attribute is also not None. Expect RuntimeError to + be raised with a meaningful error message and for fileinput._state + to *not* be modified.""" + instance = MockFileInput() + instance._file = object() + fileinput._state = instance + with self.assertRaises(RuntimeError) as cm: + fileinput.input() + self.assertEqual(("input() already active",), cm.exception.args) + self.assertIs(instance, fileinput._state, "fileinput._state") + + def test_state_is_not_None_and_state_file_is_None(self): + """Tests invoking fileinput.input() when fileinput._state is not None + but its _file attribute *is* None. Expect it to create and return + a new fileinput.FileInput object with all method parameters passed + explicitly to the __init__() method; also ensure that + fileinput._state is set to the returned instance.""" + instance = MockFileInput() + instance._file = None + fileinput._state = instance + self.do_test_call_input() + + def test_state_is_None(self): + """Tests invoking fileinput.input() when fileinput._state is None + Expect it to create and return a new fileinput.FileInput object + with all method parameters passed explicitly to the __init__() + method; also ensure that fileinput._state is set to the returned + instance.""" + fileinput._state = None + self.do_test_call_input() + + def do_test_call_input(self): + """Tests that fileinput.input() creates a new fileinput.FileInput + object, passing the given parameters unmodified to + fileinput.FileInput.__init__(). Note that this test depends on the + monkey patching of fileinput.FileInput done by setUp().""" + files = object() + inplace = object() + backup = object() + bufsize = object() + mode = object() + openhook = object() + + # call fileinput.input() with different values for each argument + result = fileinput.input(files=files, inplace=inplace, backup=backup, + bufsize=bufsize, + mode=mode, openhook=openhook) + + # ensure fileinput._state was set to the returned object + self.assertIs(result, fileinput._state, "fileinput._state") + + # ensure the parameters to fileinput.input() were passed directly + # to FileInput.__init__() + self.assertIs(files, result.files, "files") + self.assertIs(inplace, result.inplace, "inplace") + self.assertIs(backup, result.backup, "backup") + self.assertIs(bufsize, result.bufsize, "bufsize") + self.assertIs(mode, result.mode, "mode") + self.assertIs(openhook, result.openhook, "openhook") + +class Test_fileinput_close(BaseFileInputGlobalMethodsTest): + """Unit tests for fileinput.close()""" + + def test_state_is_None(self): + """Tests that fileinput.close() does nothing if fileinput._state + is None""" + fileinput._state = None + fileinput.close() + self.assertIsNone(fileinput._state) + + def test_state_is_not_None(self): + """Tests that fileinput.close() invokes close() on fileinput._state + and sets _state=None""" + instance = MockFileInput() + fileinput._state = instance + fileinput.close() + self.assertExactlyOneInvocation(instance, "close") + self.assertIsNone(fileinput._state) + +class Test_fileinput_nextfile(BaseFileInputGlobalMethodsTest): + """Unit tests for fileinput.nextfile()""" + + def test_state_is_None(self): + """Tests fileinput.nextfile() when fileinput._state is None. + Ensure that it raises RuntimeError with a meaningful error message + and does not modify fileinput._state""" + fileinput._state = None + with self.assertRaises(RuntimeError) as cm: + fileinput.nextfile() + self.assertEqual(("no active input()",), cm.exception.args) + self.assertIsNone(fileinput._state) + + def test_state_is_not_None(self): + """Tests fileinput.nextfile() when fileinput._state is not None. + Ensure that it invokes fileinput._state.nextfile() exactly once, + returns whatever it returns, and does not modify fileinput._state + to point to a different object.""" + nextfile_retval = object() + instance = MockFileInput() + instance.return_values["nextfile"] = nextfile_retval + fileinput._state = instance + retval = fileinput.nextfile() + self.assertExactlyOneInvocation(instance, "nextfile") + self.assertIs(retval, nextfile_retval) + self.assertIs(fileinput._state, instance) + +class Test_fileinput_filename(BaseFileInputGlobalMethodsTest): + """Unit tests for fileinput.filename()""" + + def test_state_is_None(self): + """Tests fileinput.filename() when fileinput._state is None. + Ensure that it raises RuntimeError with a meaningful error message + and does not modify fileinput._state""" + fileinput._state = None + with self.assertRaises(RuntimeError) as cm: + fileinput.filename() + self.assertEqual(("no active input()",), cm.exception.args) + self.assertIsNone(fileinput._state) + + def test_state_is_not_None(self): + """Tests fileinput.filename() when fileinput._state is not None. + Ensure that it invokes fileinput._state.filename() exactly once, + returns whatever it returns, and does not modify fileinput._state + to point to a different object.""" + filename_retval = object() + instance = MockFileInput() + instance.return_values["filename"] = filename_retval + fileinput._state = instance + retval = fileinput.filename() + self.assertExactlyOneInvocation(instance, "filename") + self.assertIs(retval, filename_retval) + self.assertIs(fileinput._state, instance) + +class Test_fileinput_lineno(BaseFileInputGlobalMethodsTest): + """Unit tests for fileinput.lineno()""" + + def test_state_is_None(self): + """Tests fileinput.lineno() when fileinput._state is None. + Ensure that it raises RuntimeError with a meaningful error message + and does not modify fileinput._state""" + fileinput._state = None + with self.assertRaises(RuntimeError) as cm: + fileinput.lineno() + self.assertEqual(("no active input()",), cm.exception.args) + self.assertIsNone(fileinput._state) + + def test_state_is_not_None(self): + """Tests fileinput.lineno() when fileinput._state is not None. + Ensure that it invokes fileinput._state.lineno() exactly once, + returns whatever it returns, and does not modify fileinput._state + to point to a different object.""" + lineno_retval = object() + instance = MockFileInput() + instance.return_values["lineno"] = lineno_retval + fileinput._state = instance + retval = fileinput.lineno() + self.assertExactlyOneInvocation(instance, "lineno") + self.assertIs(retval, lineno_retval) + self.assertIs(fileinput._state, instance) + +class Test_fileinput_filelineno(BaseFileInputGlobalMethodsTest): + """Unit tests for fileinput.filelineno()""" + + def test_state_is_None(self): + """Tests fileinput.filelineno() when fileinput._state is None. + Ensure that it raises RuntimeError with a meaningful error message + and does not modify fileinput._state""" + fileinput._state = None + with self.assertRaises(RuntimeError) as cm: + fileinput.filelineno() + self.assertEqual(("no active input()",), cm.exception.args) + self.assertIsNone(fileinput._state) + + def test_state_is_not_None(self): + """Tests fileinput.filelineno() when fileinput._state is not None. + Ensure that it invokes fileinput._state.filelineno() exactly once, + returns whatever it returns, and does not modify fileinput._state + to point to a different object.""" + filelineno_retval = object() + instance = MockFileInput() + instance.return_values["filelineno"] = filelineno_retval + fileinput._state = instance + retval = fileinput.filelineno() + self.assertExactlyOneInvocation(instance, "filelineno") + self.assertIs(retval, filelineno_retval) + self.assertIs(fileinput._state, instance) + +class Test_fileinput_fileno(BaseFileInputGlobalMethodsTest): + """Unit tests for fileinput.fileno()""" + + def test_state_is_None(self): + """Tests fileinput.fileno() when fileinput._state is None. + Ensure that it raises RuntimeError with a meaningful error message + and does not modify fileinput._state""" + fileinput._state = None + with self.assertRaises(RuntimeError) as cm: + fileinput.fileno() + self.assertEqual(("no active input()",), cm.exception.args) + self.assertIsNone(fileinput._state) + + def test_state_is_not_None(self): + """Tests fileinput.fileno() when fileinput._state is not None. + Ensure that it invokes fileinput._state.fileno() exactly once, + returns whatever it returns, and does not modify fileinput._state + to point to a different object.""" + fileno_retval = object() + instance = MockFileInput() + instance.return_values["fileno"] = fileno_retval + instance.fileno_retval = fileno_retval + fileinput._state = instance + retval = fileinput.fileno() + self.assertExactlyOneInvocation(instance, "fileno") + self.assertIs(retval, fileno_retval) + self.assertIs(fileinput._state, instance) + +class Test_fileinput_isfirstline(BaseFileInputGlobalMethodsTest): + """Unit tests for fileinput.isfirstline()""" + + def test_state_is_None(self): + """Tests fileinput.isfirstline() when fileinput._state is None. + Ensure that it raises RuntimeError with a meaningful error message + and does not modify fileinput._state""" + fileinput._state = None + with self.assertRaises(RuntimeError) as cm: + fileinput.isfirstline() + self.assertEqual(("no active input()",), cm.exception.args) + self.assertIsNone(fileinput._state) + + def test_state_is_not_None(self): + """Tests fileinput.isfirstline() when fileinput._state is not None. + Ensure that it invokes fileinput._state.isfirstline() exactly once, + returns whatever it returns, and does not modify fileinput._state + to point to a different object.""" + isfirstline_retval = object() + instance = MockFileInput() + instance.return_values["isfirstline"] = isfirstline_retval + fileinput._state = instance + retval = fileinput.isfirstline() + self.assertExactlyOneInvocation(instance, "isfirstline") + self.assertIs(retval, isfirstline_retval) + self.assertIs(fileinput._state, instance) + +class Test_fileinput_isstdin(BaseFileInputGlobalMethodsTest): + """Unit tests for fileinput.isstdin()""" + + def test_state_is_None(self): + """Tests fileinput.isstdin() when fileinput._state is None. + Ensure that it raises RuntimeError with a meaningful error message + and does not modify fileinput._state""" + fileinput._state = None + with self.assertRaises(RuntimeError) as cm: + fileinput.isstdin() + self.assertEqual(("no active input()",), cm.exception.args) + self.assertIsNone(fileinput._state) + + def test_state_is_not_None(self): + """Tests fileinput.isstdin() when fileinput._state is not None. + Ensure that it invokes fileinput._state.isstdin() exactly once, + returns whatever it returns, and does not modify fileinput._state + to point to a different object.""" + isstdin_retval = object() + instance = MockFileInput() + instance.return_values["isstdin"] = isstdin_retval + fileinput._state = instance + retval = fileinput.isstdin() + self.assertExactlyOneInvocation(instance, "isstdin") + self.assertIs(retval, isstdin_retval) + self.assertIs(fileinput._state, instance) + +class InvocationRecorder: + def __init__(self): + self.invocation_count = 0 + def __call__(self, *args, **kwargs): + self.invocation_count += 1 + self.last_invocation = (args, kwargs) + +class Test_hook_compressed(unittest.TestCase): + """Unit tests for fileinput.hook_compressed()""" + + def setUp(self): + self.fake_open = InvocationRecorder() + + def test_empty_string(self): + self.do_test_use_builtin_open("", 1) + + def test_no_ext(self): + self.do_test_use_builtin_open("abcd", 2) + + def test_gz_ext(self): + original_open = gzip.open + gzip.open = self.fake_open + try: + result = fileinput.hook_compressed("test.gz", 3) + finally: + gzip.open = original_open + + self.assertEqual(self.fake_open.invocation_count, 1) + self.assertEqual(self.fake_open.last_invocation, (("test.gz", 3), {})) + + def test_bz2_ext(self): + original_open = bz2.BZ2File + bz2.BZ2File = self.fake_open + try: + result = fileinput.hook_compressed("test.bz2", 4) + finally: + bz2.BZ2File = original_open + + self.assertEqual(self.fake_open.invocation_count, 1) + self.assertEqual(self.fake_open.last_invocation, (("test.bz2", 4), {})) + + def test_blah_ext(self): + self.do_test_use_builtin_open("abcd.blah", 5) + + def test_Gz_ext(self): + self.do_test_use_builtin_open("abcd.Gz", 6) + + def test_Bz2_ext(self): + self.do_test_use_builtin_open("abcd.Bz2", 7) + + def do_test_use_builtin_open(self, filename, mode): + original_open = self.replace_builtin_open(self.fake_open) + try: + result = fileinput.hook_compressed(filename, mode) + finally: + self.replace_builtin_open(original_open) + + self.assertEqual(self.fake_open.invocation_count, 1) + self.assertEqual(self.fake_open.last_invocation, + ((filename, mode), {})) + + @staticmethod + def replace_builtin_open(new_open_func): + builtins_type = type(__builtins__) + if builtins_type is dict: + original_open = __builtins__["open"] + __builtins__["open"] = new_open_func + elif builtins_type is types.ModuleType: + original_open = __builtins__.open + __builtins__.open = new_open_func + else: + raise RuntimeError( + "unknown __builtins__ type: %r (unable to replace open)" % + builtins_type) + + return original_open + +class Test_hook_encoded(unittest.TestCase): + """Unit tests for fileinput.hook_encoded()""" + + def test(self): + encoding = object() + result = fileinput.hook_encoded(encoding) + + fake_open = InvocationRecorder() + original_open = codecs.open + codecs.open = fake_open + try: + filename = object() + mode = object() + open_result = result(filename, mode) + finally: + codecs.open = original_open + + self.assertEqual(fake_open.invocation_count, 1) + + args = fake_open.last_invocation[0] + self.assertIs(args[0], filename) + self.assertIs(args[1], mode) + self.assertIs(args[2], encoding) def test_main(): - run_unittest(BufferSizesTests, FileInputTests) + run_unittest( + BufferSizesTests, + FileInputTests, + Test_fileinput_input, + Test_fileinput_close, + Test_fileinput_nextfile, + Test_fileinput_filename, + Test_fileinput_lineno, + Test_fileinput_filelineno, + Test_fileinput_fileno, + Test_fileinput_isfirstline, + Test_fileinput_isstdin, + Test_hook_compressed, + Test_hook_encoded, + ) if __name__ == "__main__": test_main() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 15:48:43 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 15 Mar 2011 15:48:43 +0100 Subject: [Python-checkins] cpython: import style nits Message-ID: http://hg.python.org/cpython/rev/937b1fbb402f changeset: 68496:937b1fbb402f user: Benjamin Peterson date: Tue Mar 15 09:50:18 2011 -0500 summary: import style nits files: Lib/test/test_fileinput.py diff --git a/Lib/test/test_fileinput.py b/Lib/test/test_fileinput.py --- a/Lib/test/test_fileinput.py +++ b/Lib/test/test_fileinput.py @@ -2,18 +2,23 @@ Tests for fileinput module. Nick Mathewson ''' +import os +import sys +import re +import fileinput +import collections +import gzip +import bz2 +import types +import codecs +import unittest -import unittest +from io import StringIO +from fileinput import FileInput, hook_encoded + from test.support import verbose, TESTFN, run_unittest from test.support import unlink as safe_unlink -import os, sys, re -from io import StringIO -from fileinput import FileInput, hook_encoded -import fileinput -import collections -import gzip, bz2 -import types -import codecs + # The fileinput module has 2 interfaces: the FileInput class which does # all the work, and a few functions (input, etc.) that use a global _state -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 15:59:42 2011 From: python-checkins at python.org (brian.curtin) Date: Tue, 15 Mar 2011 15:59:42 +0100 Subject: [Python-checkins] cpython: Adjust test names to be more descriptive instead of depending on capitalization. Message-ID: http://hg.python.org/cpython/rev/d1acf761a911 changeset: 68497:d1acf761a911 user: briancurtin date: Tue Mar 15 10:59:36 2011 -0400 summary: Adjust test names to be more descriptive instead of depending on capitalization. files: Lib/test/test_fileinput.py diff --git a/Lib/test/test_fileinput.py b/Lib/test/test_fileinput.py --- a/Lib/test/test_fileinput.py +++ b/Lib/test/test_fileinput.py @@ -754,7 +754,7 @@ def test_no_ext(self): self.do_test_use_builtin_open("abcd", 2) - def test_gz_ext(self): + def test_gz_ext_fake(self): original_open = gzip.open gzip.open = self.fake_open try: @@ -765,7 +765,7 @@ self.assertEqual(self.fake_open.invocation_count, 1) self.assertEqual(self.fake_open.last_invocation, (("test.gz", 3), {})) - def test_bz2_ext(self): + def test_bz2_ext_fake(self): original_open = bz2.BZ2File bz2.BZ2File = self.fake_open try: @@ -779,10 +779,10 @@ def test_blah_ext(self): self.do_test_use_builtin_open("abcd.blah", 5) - def test_Gz_ext(self): + def test_gz_ext_builtin(self): self.do_test_use_builtin_open("abcd.Gz", 6) - def test_Bz2_ext(self): + def test_bz2_ext_builtin(self): self.do_test_use_builtin_open("abcd.Bz2", 7) def do_test_use_builtin_open(self, filename, mode): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 16:51:35 2011 From: python-checkins at python.org (brian.curtin) Date: Tue, 15 Mar 2011 16:51:35 +0100 Subject: [Python-checkins] cpython: Add news item for #11509. Message-ID: http://hg.python.org/cpython/rev/9448691fe084 changeset: 68498:9448691fe084 user: briancurtin date: Tue Mar 15 11:51:28 2011 -0400 summary: Add news item for #11509. files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -68,6 +68,9 @@ Library ------- +- Issue #11509: Significantly increase test coverage of fileinput. + Patch by Denver Coneybeare at PyCon 2011 Sprints. + - Issue #11407: `TestCase.run` returns the result object used or created. Contributed by Janathan Hartley. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 17:25:14 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 17:25:14 +0100 Subject: [Python-checkins] cpython (3.2): #11554: reactivate test_email_codecs, and make it pass. Message-ID: http://hg.python.org/cpython/rev/013a1cd673fc changeset: 68499:013a1cd673fc branch: 3.2 parent: 68492:1579808ef25b user: R David Murray date: Tue Mar 15 12:20:02 2011 -0400 summary: #11554: reactivate test_email_codecs, and make it pass. The fix is to charset.py, which was not doing the encoding to the correct output character set when doing a body_encode for either the shift-jis or euc-jp charsets. There's also a fix for handling a bytes input in encoders.py. Patch by Michael Henry, comment changes by me. files: Lib/email/charset.py Lib/email/encoders.py Lib/email/test/test_email.py Lib/email/test/test_email_codecs.py Lib/test/test_email.py Misc/ACKS Misc/NEWS diff --git a/Lib/email/charset.py b/Lib/email/charset.py --- a/Lib/email/charset.py +++ b/Lib/email/charset.py @@ -263,7 +263,7 @@ Returns "quoted-printable" if self.body_encoding is QP. Returns "base64" if self.body_encoding is BASE64. - Returns "7bit" otherwise. + Returns conversion function otherwise. """ assert self.body_encoding != SHORTEST if self.body_encoding == QP: @@ -381,7 +381,10 @@ """Body-encode a string by converting it first to bytes. The type of encoding (base64 or quoted-printable) will be based on - self.body_encoding. + self.body_encoding. If body_encoding is None, we assume the + output charset is a 7bit encoding, so re-encoding the decoded + string using the ascii codec produces the correct string version + of the content. """ # 7bit/8bit encodings return the string unchanged (module conversions) if self.body_encoding is BASE64: @@ -391,4 +394,6 @@ elif self.body_encoding is QP: return email.quoprimime.body_encode(string) else: + if isinstance(string, str): + string = string.encode(self.output_charset).decode('ascii') return string diff --git a/Lib/email/encoders.py b/Lib/email/encoders.py --- a/Lib/email/encoders.py +++ b/Lib/email/encoders.py @@ -54,10 +54,13 @@ # There's no payload. For backwards compatibility we use 7bit msg['Content-Transfer-Encoding'] = '7bit' return - # We play a trick to make this go fast. If encoding to ASCII succeeds, we - # know the data must be 7bit, otherwise treat it as 8bit. + # We play a trick to make this go fast. If encoding/decode to ASCII + # succeeds, we know the data must be 7bit, otherwise treat it as 8bit. try: - orig.encode('ascii') + if isinstance(orig, str): + orig.encode('ascii') + else: + orig.decode('ascii') except UnicodeError: # iso-2022-* is non-ASCII but still 7-bit charset = msg.get_charset() diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -3365,9 +3365,9 @@ # built-in encodings where the header encoding is QP but the body # encoding is not. from email import charset as CharsetModule - CharsetModule.add_charset('fake', CharsetModule.QP, None) + CharsetModule.add_charset('fake', CharsetModule.QP, None, 'utf-8') c = Charset('fake') - eq('hello w\xf6rld', c.body_encode('hello w\xf6rld')) + eq('hello world', c.body_encode('hello world')) def test_unicode_charset_name(self): charset = Charset('us-ascii') diff --git a/Lib/email/test/test_email_codecs.py b/Lib/email/test/test_email_codecs.py --- a/Lib/email/test/test_email_codecs.py +++ b/Lib/email/test/test_email_codecs.py @@ -13,7 +13,7 @@ # We're compatible with Python 2.3, but it doesn't have the built-in Asian # codecs, so we have to skip all these tests. try: - str('foo', 'euc-jp') + str(b'foo', 'euc-jp') except LookupError: raise unittest.SkipTest @@ -22,11 +22,14 @@ class TestEmailAsianCodecs(TestEmailBase): def test_japanese_codecs(self): eq = self.ndiffAssertEqual - j = Charset("euc-jp") - g = Charset("iso-8859-1") + jcode = "euc-jp" + gcode = "iso-8859-1" + j = Charset(jcode) + g = Charset(gcode) h = Header("Hello World!") - jhello = '\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc\xa5\xeb\xa5\xc9\xa1\xaa' - ghello = 'Gr\xfc\xdf Gott!' + jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' + b'\xa5\xeb\xa5\xc9\xa1\xaa', jcode) + ghello = str(b'Gr\xfc\xdf Gott!', gcode) h.append(jhello, j) h.append(ghello, g) # BAW: This used to -- and maybe should -- fold the two iso-8859-1 @@ -36,13 +39,17 @@ # encoded word. eq(h.encode(), """\ Hello World! =?iso-2022-jp?b?GyRCJU8lbSE8JW8hPCVrJUkhKhsoQg==?= - =?iso-8859-1?q?Gr=FC=DF?= =?iso-8859-1?q?_Gott!?=""") + =?iso-8859-1?q?Gr=FC=DF_Gott!?=""") eq(decode_header(h.encode()), - [('Hello World!', None), - ('\x1b$B%O%m!<%o!<%k%I!*\x1b(B', 'iso-2022-jp'), - ('Gr\xfc\xdf Gott!', 'iso-8859-1')]) - int = 'test-ja \xa4\xd8\xc5\xea\xb9\xc6\xa4\xb5\xa4\xec\xa4\xbf\xa5\xe1\xa1\xbc\xa5\xeb\xa4\xcf\xbb\xca\xb2\xf1\xbc\xd4\xa4\xce\xbe\xb5\xc7\xa7\xa4\xf2\xc2\xd4\xa4\xc3\xa4\xc6\xa4\xa4\xa4\xde\xa4\xb9' - h = Header(int, j, header_name="Subject") + [(b'Hello World!', None), + (b'\x1b$B%O%m!<%o!<%k%I!*\x1b(B', 'iso-2022-jp'), + (b'Gr\xfc\xdf Gott!', gcode)]) + subject_bytes = (b'test-ja \xa4\xd8\xc5\xea\xb9\xc6\xa4\xb5' + b'\xa4\xec\xa4\xbf\xa5\xe1\xa1\xbc\xa5\xeb\xa4\xcf\xbb\xca\xb2' + b'\xf1\xbc\xd4\xa4\xce\xbe\xb5\xc7\xa7\xa4\xf2\xc2\xd4\xa4\xc3' + b'\xa4\xc6\xa4\xa4\xa4\xde\xa4\xb9') + subject = str(subject_bytes, jcode) + h = Header(subject, j, header_name="Subject") # test a very long header enc = h.encode() # TK: splitting point may differ by codec design and/or Header encoding @@ -50,15 +57,24 @@ =?iso-2022-jp?b?dGVzdC1qYSAbJEIkWEVqOUYkNSRsJD8lYSE8JWskTztKGyhC?= =?iso-2022-jp?b?GyRCMnE8VCROPjVHJyRyQlQkQyRGJCQkXiQ5GyhC?=""") # TK: full decode comparison - eq(h.__unicode__().encode('euc-jp'), int) + eq(str(h).encode(jcode), subject_bytes) + + def test_payload_encoding_utf8(self): + jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' + b'\xa5\xeb\xa5\xc9\xa1\xaa', 'euc-jp') + msg = Message() + msg.set_payload(jhello, 'utf-8') + ustr = msg.get_payload(decode=True).decode(msg.get_content_charset()) + self.assertEqual(jhello, ustr) def test_payload_encoding(self): - jhello = '\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc\xa5\xeb\xa5\xc9\xa1\xaa' jcode = 'euc-jp' + jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' + b'\xa5\xeb\xa5\xc9\xa1\xaa', jcode) msg = Message() msg.set_payload(jhello, jcode) - ustr = str(msg.get_payload(), msg.get_content_charset()) - self.assertEqual(jhello, ustr.encode(jcode)) + ustr = msg.get_payload(decode=True).decode(msg.get_content_charset()) + self.assertEqual(jhello, ustr) diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py --- a/Lib/test/test_email.py +++ b/Lib/test/test_email.py @@ -3,10 +3,12 @@ # The specific tests now live in Lib/email/test from email.test.test_email import suite +from email.test.test_email_codecs import suite as codecs_suite from test import support def test_main(): support.run_unittest(suite()) + support.run_unittest(codecs_suite()) if __name__ == '__main__': test_main() diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -371,6 +371,7 @@ Jason Hildebrand Richie Hindle Konrad Hinsen +Michael Henry David Hobley Tim Hochberg Joerg-Cyril Hoehle diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -34,6 +34,9 @@ Library ------- +- Issue #11554: Fixed support for Japanese codecs; previously the body output + encoding was not done if euc-jp or shift-jis was specified as the charset. + - Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP addresses in the proxy exception list. @@ -99,6 +102,8 @@ Tests ----- +- Issue #11554: Reactivated test_email_codecs. + - Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a false positive if the last directory in the path is inaccessible. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 17:25:15 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 17:25:15 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #11554 test_email_codecs activation from 3.2. Message-ID: http://hg.python.org/cpython/rev/a6390ebff835 changeset: 68500:a6390ebff835 parent: 68498:9448691fe084 parent: 68499:013a1cd673fc user: R David Murray date: Tue Mar 15 12:24:47 2011 -0400 summary: Merge #11554 test_email_codecs activation from 3.2. files: Lib/email/test/test_email.py Misc/ACKS Misc/NEWS diff --git a/Lib/email/charset.py b/Lib/email/charset.py --- a/Lib/email/charset.py +++ b/Lib/email/charset.py @@ -263,7 +263,7 @@ Returns "quoted-printable" if self.body_encoding is QP. Returns "base64" if self.body_encoding is BASE64. - Returns "7bit" otherwise. + Returns conversion function otherwise. """ assert self.body_encoding != SHORTEST if self.body_encoding == QP: @@ -381,7 +381,10 @@ """Body-encode a string by converting it first to bytes. The type of encoding (base64 or quoted-printable) will be based on - self.body_encoding. + self.body_encoding. If body_encoding is None, we assume the + output charset is a 7bit encoding, so re-encoding the decoded + string using the ascii codec produces the correct string version + of the content. """ # 7bit/8bit encodings return the string unchanged (module conversions) if self.body_encoding is BASE64: @@ -391,4 +394,6 @@ elif self.body_encoding is QP: return email.quoprimime.body_encode(string) else: + if isinstance(string, str): + string = string.encode(self.output_charset).decode('ascii') return string diff --git a/Lib/email/encoders.py b/Lib/email/encoders.py --- a/Lib/email/encoders.py +++ b/Lib/email/encoders.py @@ -54,10 +54,13 @@ # There's no payload. For backwards compatibility we use 7bit msg['Content-Transfer-Encoding'] = '7bit' return - # We play a trick to make this go fast. If encoding to ASCII succeeds, we - # know the data must be 7bit, otherwise treat it as 8bit. + # We play a trick to make this go fast. If encoding/decode to ASCII + # succeeds, we know the data must be 7bit, otherwise treat it as 8bit. try: - orig.encode('ascii') + if isinstance(orig, str): + orig.encode('ascii') + else: + orig.decode('ascii') except UnicodeError: # iso-2022-* is non-ASCII but still 7-bit charset = msg.get_charset() diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -3372,9 +3372,9 @@ # built-in encodings where the header encoding is QP but the body # encoding is not. from email import charset as CharsetModule - CharsetModule.add_charset('fake', CharsetModule.QP, None) + CharsetModule.add_charset('fake', CharsetModule.QP, None, 'utf-8') c = Charset('fake') - eq('hello w\xf6rld', c.body_encode('hello w\xf6rld')) + eq('hello world', c.body_encode('hello world')) def test_unicode_charset_name(self): charset = Charset('us-ascii') diff --git a/Lib/email/test/test_email_codecs.py b/Lib/email/test/test_email_codecs.py --- a/Lib/email/test/test_email_codecs.py +++ b/Lib/email/test/test_email_codecs.py @@ -13,7 +13,7 @@ # We're compatible with Python 2.3, but it doesn't have the built-in Asian # codecs, so we have to skip all these tests. try: - str('foo', 'euc-jp') + str(b'foo', 'euc-jp') except LookupError: raise unittest.SkipTest @@ -22,11 +22,14 @@ class TestEmailAsianCodecs(TestEmailBase): def test_japanese_codecs(self): eq = self.ndiffAssertEqual - j = Charset("euc-jp") - g = Charset("iso-8859-1") + jcode = "euc-jp" + gcode = "iso-8859-1" + j = Charset(jcode) + g = Charset(gcode) h = Header("Hello World!") - jhello = '\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc\xa5\xeb\xa5\xc9\xa1\xaa' - ghello = 'Gr\xfc\xdf Gott!' + jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' + b'\xa5\xeb\xa5\xc9\xa1\xaa', jcode) + ghello = str(b'Gr\xfc\xdf Gott!', gcode) h.append(jhello, j) h.append(ghello, g) # BAW: This used to -- and maybe should -- fold the two iso-8859-1 @@ -36,13 +39,17 @@ # encoded word. eq(h.encode(), """\ Hello World! =?iso-2022-jp?b?GyRCJU8lbSE8JW8hPCVrJUkhKhsoQg==?= - =?iso-8859-1?q?Gr=FC=DF?= =?iso-8859-1?q?_Gott!?=""") + =?iso-8859-1?q?Gr=FC=DF_Gott!?=""") eq(decode_header(h.encode()), - [('Hello World!', None), - ('\x1b$B%O%m!<%o!<%k%I!*\x1b(B', 'iso-2022-jp'), - ('Gr\xfc\xdf Gott!', 'iso-8859-1')]) - int = 'test-ja \xa4\xd8\xc5\xea\xb9\xc6\xa4\xb5\xa4\xec\xa4\xbf\xa5\xe1\xa1\xbc\xa5\xeb\xa4\xcf\xbb\xca\xb2\xf1\xbc\xd4\xa4\xce\xbe\xb5\xc7\xa7\xa4\xf2\xc2\xd4\xa4\xc3\xa4\xc6\xa4\xa4\xa4\xde\xa4\xb9' - h = Header(int, j, header_name="Subject") + [(b'Hello World!', None), + (b'\x1b$B%O%m!<%o!<%k%I!*\x1b(B', 'iso-2022-jp'), + (b'Gr\xfc\xdf Gott!', gcode)]) + subject_bytes = (b'test-ja \xa4\xd8\xc5\xea\xb9\xc6\xa4\xb5' + b'\xa4\xec\xa4\xbf\xa5\xe1\xa1\xbc\xa5\xeb\xa4\xcf\xbb\xca\xb2' + b'\xf1\xbc\xd4\xa4\xce\xbe\xb5\xc7\xa7\xa4\xf2\xc2\xd4\xa4\xc3' + b'\xa4\xc6\xa4\xa4\xa4\xde\xa4\xb9') + subject = str(subject_bytes, jcode) + h = Header(subject, j, header_name="Subject") # test a very long header enc = h.encode() # TK: splitting point may differ by codec design and/or Header encoding @@ -50,15 +57,24 @@ =?iso-2022-jp?b?dGVzdC1qYSAbJEIkWEVqOUYkNSRsJD8lYSE8JWskTztKGyhC?= =?iso-2022-jp?b?GyRCMnE8VCROPjVHJyRyQlQkQyRGJCQkXiQ5GyhC?=""") # TK: full decode comparison - eq(h.__unicode__().encode('euc-jp'), int) + eq(str(h).encode(jcode), subject_bytes) + + def test_payload_encoding_utf8(self): + jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' + b'\xa5\xeb\xa5\xc9\xa1\xaa', 'euc-jp') + msg = Message() + msg.set_payload(jhello, 'utf-8') + ustr = msg.get_payload(decode=True).decode(msg.get_content_charset()) + self.assertEqual(jhello, ustr) def test_payload_encoding(self): - jhello = '\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc\xa5\xeb\xa5\xc9\xa1\xaa' jcode = 'euc-jp' + jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' + b'\xa5\xeb\xa5\xc9\xa1\xaa', jcode) msg = Message() msg.set_payload(jhello, jcode) - ustr = str(msg.get_payload(), msg.get_content_charset()) - self.assertEqual(jhello, ustr.encode(jcode)) + ustr = msg.get_payload(decode=True).decode(msg.get_content_charset()) + self.assertEqual(jhello, ustr) diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py --- a/Lib/test/test_email.py +++ b/Lib/test/test_email.py @@ -3,10 +3,12 @@ # The specific tests now live in Lib/email/test from email.test.test_email import suite +from email.test.test_email_codecs import suite as codecs_suite from test import support def test_main(): support.run_unittest(suite()) + support.run_unittest(codecs_suite()) if __name__ == '__main__': test_main() diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -375,6 +375,7 @@ Jason Hildebrand Richie Hindle Konrad Hinsen +Michael Henry David Hobley Tim Hochberg Joerg-Cyril Hoehle diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -68,6 +68,9 @@ Library ------- +- Issue #11554: Fixed support for Japanese codecs; previously the body output + encoding was not done if euc-jp or shift-jis was specified as the charset. + - Issue #11509: Significantly increase test coverage of fileinput. Patch by Denver Coneybeare at PyCon 2011 Sprints. @@ -206,6 +209,8 @@ Tests ----- +- Issue #11554: Reactivated test_email_codecs. + - Issue #11505: improves test coverage of string.py - Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 17:49:43 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 17:49:43 +0100 Subject: [Python-checkins] cpython (3.2): Remove obsolete comment. Message-ID: http://hg.python.org/cpython/rev/983ed0ba44d0 changeset: 68501:983ed0ba44d0 branch: 3.2 parent: 68499:013a1cd673fc user: R David Murray date: Tue Mar 15 12:48:41 2011 -0400 summary: Remove obsolete comment. files: Lib/email/message.py diff --git a/Lib/email/message.py b/Lib/email/message.py --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -242,7 +242,7 @@ raise TypeError('Expected list, got %s' % type(self._payload)) payload = self._payload cte = self.get('content-transfer-encoding', '').lower() - # payload can be bytes here, (I wonder if that is actually a bug?) + # payload may be bytes here. if isinstance(payload, str): if _has_surrogates(payload): bpayload = payload.encode('ascii', 'surrogateescape') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 17:49:44 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 17:49:44 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge obsolete comment removal from 3.2. Message-ID: http://hg.python.org/cpython/rev/94c504545c3e changeset: 68502:94c504545c3e parent: 68500:a6390ebff835 parent: 68501:983ed0ba44d0 user: R David Murray date: Tue Mar 15 12:49:33 2011 -0400 summary: Merge obsolete comment removal from 3.2. files: diff --git a/Lib/email/message.py b/Lib/email/message.py --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -242,7 +242,7 @@ raise TypeError('Expected list, got %s' % type(self._payload)) payload = self._payload cte = self.get('content-transfer-encoding', '').lower() - # payload can be bytes here, (I wonder if that is actually a bug?) + # payload may be bytes here. if isinstance(payload, str): if _has_surrogates(payload): bpayload = payload.encode('ascii', 'surrogateescape') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 17:56:01 2011 From: python-checkins at python.org (ezio.melotti) Date: Tue, 15 Mar 2011 17:56:01 +0100 Subject: [Python-checkins] cpython (2.7): #11515: fix several typos. Patch by Piotr Kasprzyk. Message-ID: http://hg.python.org/cpython/rev/ee5350f1d0c2 changeset: 68503:ee5350f1d0c2 branch: 2.7 parent: 68476:8f0756010720 user: Ezio Melotti date: Tue Mar 15 18:55:01 2011 +0200 summary: #11515: fix several typos. Patch by Piotr Kasprzyk. files: Lib/SocketServer.py Lib/ctypes/test/test_functions.py Lib/decimal.py Lib/email/mime/application.py Lib/ftplib.py Lib/gettext.py Lib/httplib.py Lib/idlelib/EditorWindow.py Lib/idlelib/HISTORY.txt Lib/lib-tk/Tix.py Lib/lib-tk/Tkinter.py Lib/lib-tk/ttk.py Lib/lib-tk/turtle.py Lib/nntplib.py Lib/test/crashers/recursion_limit_too_high.py Lib/test/test_compile.py Lib/test/test_descr.py Lib/test/test_os.py Lib/test/test_re.py Lib/test/test_string.py Lib/xml/dom/minidom.py Mac/BuildScript/build-installer.py Mac/Tools/pythonw.c Misc/ACKS Modules/_ctypes/callproc.c Modules/_ctypes/libffi/ChangeLog Modules/_ctypes/libffi/src/dlmalloc.c Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c Modules/_heapqmodule.c Modules/_struct.c Modules/parsermodule.c Modules/threadmodule.c Modules/zipimport.c Objects/bytearrayobject.c Objects/longobject.c Objects/stringlib/string_format.h Objects/stringobject.c PC/bdist_wininst/install.c Python/_warnings.c Python/sysmodule.c Tools/msi/msi.py Tools/pybench/pybench.py setup.py diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py --- a/Lib/SocketServer.py +++ b/Lib/SocketServer.py @@ -675,7 +675,7 @@ # A timeout to apply to the request socket, if not None. timeout = None - # Disable nagle algoritm for this socket, if True. + # Disable nagle algorithm for this socket, if True. # Use only when wbufsize != 0, to avoid small packets. disable_nagle_algorithm = False diff --git a/Lib/ctypes/test/test_functions.py b/Lib/ctypes/test/test_functions.py --- a/Lib/ctypes/test/test_functions.py +++ b/Lib/ctypes/test/test_functions.py @@ -116,7 +116,7 @@ self.assertEqual(result, 21) self.assertEqual(type(result), int) - # You cannot assing character format codes as restype any longer + # You cannot assign character format codes as restype any longer self.assertRaises(TypeError, setattr, f, "restype", "i") def test_floatresult(self): diff --git a/Lib/decimal.py b/Lib/decimal.py --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -5993,7 +5993,7 @@ def _format_align(sign, body, spec): """Given an unpadded, non-aligned numeric string 'body' and sign - string 'sign', add padding and aligment conforming to the given + string 'sign', add padding and alignment conforming to the given format specifier dictionary 'spec' (as produced by parse_format_specifier). diff --git a/Lib/email/mime/application.py b/Lib/email/mime/application.py --- a/Lib/email/mime/application.py +++ b/Lib/email/mime/application.py @@ -17,7 +17,7 @@ _encoder=encoders.encode_base64, **_params): """Create an application/* type MIME document. - _data is a string containing the raw applicatoin data. + _data is a string containing the raw application data. _subtype is the MIME content type subtype, defaulting to 'octet-stream'. diff --git a/Lib/ftplib.py b/Lib/ftplib.py --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -599,7 +599,7 @@ Usage example: >>> from ftplib import FTP_TLS >>> ftps = FTP_TLS('ftp.python.org') - >>> ftps.login() # login anonimously previously securing control channel + >>> ftps.login() # login anonymously previously securing control channel '230 Guest login ok, access restrictions apply.' >>> ftps.prot_p() # switch to secure data connection '200 Protection level set to P' diff --git a/Lib/gettext.py b/Lib/gettext.py --- a/Lib/gettext.py +++ b/Lib/gettext.py @@ -316,7 +316,7 @@ # Note: we unconditionally convert both msgids and msgstrs to # Unicode using the character encoding specified in the charset # parameter of the Content-Type header. The gettext documentation - # strongly encourages msgids to be us-ascii, but some appliations + # strongly encourages msgids to be us-ascii, but some applications # require alternative encodings (e.g. Zope's ZCML and ZPT). For # traditional gettext applications, the msgid conversion will # cause no problems since us-ascii should always be a subset of diff --git a/Lib/httplib.py b/Lib/httplib.py --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -804,7 +804,7 @@ del self._buffer[:] # If msg and message_body are sent in a single send() call, # it will avoid performance problems caused by the interaction - # between delayed ack and the Nagle algorithim. + # between delayed ack and the Nagle algorithm. if isinstance(message_body, str): msg += message_body message_body = None diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -102,8 +102,8 @@ self.top = top = WindowList.ListedToplevel(root, menu=self.menubar) if flist: self.tkinter_vars = flist.vars - #self.top.instance_dict makes flist.inversedict avalable to - #configDialog.py so it can access all EditorWindow instaces + #self.top.instance_dict makes flist.inversedict available to + #configDialog.py so it can access all EditorWindow instances self.top.instance_dict = flist.inversedict else: self.tkinter_vars = {} # keys: Tkinter event names diff --git a/Lib/idlelib/HISTORY.txt b/Lib/idlelib/HISTORY.txt --- a/Lib/idlelib/HISTORY.txt +++ b/Lib/idlelib/HISTORY.txt @@ -13,7 +13,7 @@ - New tarball released as a result of the 'revitalisation' of the IDLEfork project. -- This release requires python 2.1 or better. Compatability with earlier +- This release requires python 2.1 or better. Compatibility with earlier versions of python (especially ancient ones like 1.5x) is no longer a priority in IDLEfork development. diff --git a/Lib/lib-tk/Tix.py b/Lib/lib-tk/Tix.py --- a/Lib/lib-tk/Tix.py +++ b/Lib/lib-tk/Tix.py @@ -163,7 +163,7 @@ extensions) exist, then the image type is chosen according to the depth of the X display: xbm images are chosen on monochrome displays and color images are chosen on color displays. By using - tix_ getimage, you can advoid hard coding the pathnames of the + tix_ getimage, you can avoid hard coding the pathnames of the image files in your application. When successful, this command returns the name of the newly created image, which can be used to configure the -image option of the Tk and Tix widgets. diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -1660,7 +1660,7 @@ class Tk(Misc, Wm): """Toplevel widget of Tk which represents mostly the main window - of an appliation. It has an associated Tcl interpreter.""" + of an application. It has an associated Tcl interpreter.""" _w = '.' def __init__(self, screenName=None, baseName=None, className='Tk', useTk=1, sync=0, use=None): diff --git a/Lib/lib-tk/ttk.py b/Lib/lib-tk/ttk.py --- a/Lib/lib-tk/ttk.py +++ b/Lib/lib-tk/ttk.py @@ -993,7 +993,7 @@ pane is either an integer index or the name of a managed subwindow. If kw is not given, returns a dict of the pane option values. If option is specified then the value for that option is returned. - Otherwise, sets the options to the correspoding values.""" + Otherwise, sets the options to the corresponding values.""" if option is not None: kw[option] = None return _val_or_dict(kw, self.tk.call, self._w, "pane", pane) diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py --- a/Lib/lib-tk/turtle.py +++ b/Lib/lib-tk/turtle.py @@ -1385,7 +1385,7 @@ Optional argument: picname -- a string, name of a gif-file or "nopic". - If picname is a filename, set the corresponing image as background. + If picname is a filename, set the corresponding image as background. If picname is "nopic", delete backgroundimage, if present. If picname is None, return the filename of the current backgroundimage. @@ -3221,7 +3221,7 @@ def dot(self, size=None, *color): """Draw a dot with diameter size, using color. - Optional argumentS: + Optional arguments: size -- an integer >= 1 (if given) color -- a colorstring or a numeric color tuple diff --git a/Lib/nntplib.py b/Lib/nntplib.py --- a/Lib/nntplib.py +++ b/Lib/nntplib.py @@ -103,7 +103,7 @@ readermode is sometimes necessary if you are connecting to an NNTP server on the local machine and intend to call - reader-specific comamnds, such as `group'. If you get + reader-specific commands, such as `group'. If you get unexpected NNTPPermanentErrors, you might need to set readermode. """ diff --git a/Lib/test/crashers/recursion_limit_too_high.py b/Lib/test/crashers/recursion_limit_too_high.py --- a/Lib/test/crashers/recursion_limit_too_high.py +++ b/Lib/test/crashers/recursion_limit_too_high.py @@ -5,7 +5,7 @@ # file handles. # The point of this example is to show that sys.setrecursionlimit() is a -# hack, and not a robust solution. This example simply exercices a path +# hack, and not a robust solution. This example simply exercises a path # where it takes many C-level recursions, consuming a lot of stack # space, for each Python-level recursion. So 1000 times this amount of # stack space may be too much for standard platforms already. diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py --- a/Lib/test/test_compile.py +++ b/Lib/test/test_compile.py @@ -252,7 +252,7 @@ self.assertEqual(eval("-" + all_one_bits), -18446744073709551615L) else: self.fail("How many bits *does* this machine have???") - # Verify treatment of contant folding on -(sys.maxint+1) + # Verify treatment of constant folding on -(sys.maxint+1) # i.e. -2147483648 on 32 bit platforms. Should return int, not long. self.assertIsInstance(eval("%s" % (-sys.maxint - 1)), int) self.assertIsInstance(eval("%s" % (-sys.maxint - 2)), long) diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -876,7 +876,7 @@ # see "A Monotonic Superclass Linearization for Dylan", # by Kim Barrett et al. (OOPSLA 1996) def test_consistency_with_epg(self): - # Testing consistentcy with EPG... + # Testing consistency with EPG... class Pane(object): pass class ScrollingMixin(object): pass class EditingMixin(object): pass diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -243,7 +243,7 @@ except TypeError: pass - # Use the constructr with a too-long tuple. + # Use the constructor with a too-long tuple. try: result2 = os.stat_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14)) except TypeError: @@ -290,7 +290,7 @@ except TypeError: pass - # Use the constructr with a too-long tuple. + # Use the constructor with a too-long tuple. try: result2 = os.statvfs_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14)) except TypeError: diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -7,7 +7,7 @@ # Misc tests from Tim Peters' re.doc # WARNING: Don't change details in these tests if you don't know -# what you're doing. Some of these tests were carefuly modeled to +# what you're doing. Some of these tests were carefully modeled to # cover most of the code. import unittest diff --git a/Lib/test/test_string.py b/Lib/test/test_string.py --- a/Lib/test/test_string.py +++ b/Lib/test/test_string.py @@ -176,7 +176,7 @@ # test all parameters used class CheckAllUsedFormatter(string.Formatter): def check_unused_args(self, used_args, args, kwargs): - # Track which arguments actuallly got used + # Track which arguments actually got used unused_args = set(kwargs.keys()) unused_args.update(range(0, len(args))) diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -1446,7 +1446,7 @@ return False def isId(self, aname): - """Returns true iff the named attribte is a DTD-style ID.""" + """Returns true iff the named attribute is a DTD-style ID.""" return False def isIdNS(self, namespaceURI, localName): diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -100,7 +100,7 @@ ARCHLIST = universal_opts_map[UNIVERSALARCHS] -# Source directory (asume we're in Mac/BuildScript) +# Source directory (assume we're in Mac/BuildScript) SRCDIR = os.path.dirname( os.path.dirname( os.path.dirname( diff --git a/Mac/Tools/pythonw.c b/Mac/Tools/pythonw.c --- a/Mac/Tools/pythonw.c +++ b/Mac/Tools/pythonw.c @@ -103,8 +103,8 @@ count = 1; - /* Run the real python executable using the same architure as this - * executable, this allows users to controle the architecture using + /* Run the real python executable using the same architecture as this + * executable, this allows users to control the architecture using * "arch -ppc python" */ diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -416,6 +416,7 @@ Tamito Kajiyama Peter van Kampen Jacob Kaplan-Moss +Piotr Kasprzyk Lou Kates Hiroaki Kawai Sebastien Keim diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -54,7 +54,7 @@ So, there are 4 data structures holding processed arguments: - the inargs tuple (in PyCFuncPtr_call) - the callargs tuple (in PyCFuncPtr_call) - - the 'struct argguments' array + - the 'struct arguments' array - the 'void *' array */ diff --git a/Modules/_ctypes/libffi/ChangeLog b/Modules/_ctypes/libffi/ChangeLog --- a/Modules/_ctypes/libffi/ChangeLog +++ b/Modules/_ctypes/libffi/ChangeLog @@ -3084,7 +3084,7 @@ 2003-09-18 Kaz Kojima - * src/sh/ffi.c (ffi_prep_args): Take account into the alignement + * src/sh/ffi.c (ffi_prep_args): Take account into the alignment for the register size. (ffi_closure_helper_SYSV): Handle the structure return value address correctly. @@ -3344,7 +3344,7 @@ 2003-02-06 Andreas Tobler * libffi/src/powerpc/darwin_closure.S: - Fix alignement bug, allocate 8 bytes for the result. + Fix alignment bug, allocate 8 bytes for the result. * libffi/src/powerpc/aix_closure.S: Likewise. * libffi/src/powerpc/ffi_darwin.c: diff --git a/Modules/_ctypes/libffi/src/dlmalloc.c b/Modules/_ctypes/libffi/src/dlmalloc.c --- a/Modules/_ctypes/libffi/src/dlmalloc.c +++ b/Modules/_ctypes/libffi/src/dlmalloc.c @@ -1326,7 +1326,7 @@ return (ptr != 0)? ptr: MFAIL; } -/* This function supports releasing coalesed segments */ +/* This function supports releasing coalesced segments */ static int win32munmap(void* ptr, size_t size) { MEMORY_BASIC_INFORMATION minfo; char* cptr = ptr; @@ -1362,7 +1362,7 @@ #define CALL_MORECORE(S) MFAIL #endif /* HAVE_MORECORE */ -/* mstate bit set if continguous morecore disabled or failed */ +/* mstate bit set if contiguous morecore disabled or failed */ #define USE_NONCONTIGUOUS_BIT (4U) /* segment bit set in create_mspace_with_base */ diff --git a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c --- a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c +++ b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c @@ -592,7 +592,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignement to the next multiple of 16 | + | alignment to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 diff --git a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c --- a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c +++ b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c @@ -650,7 +650,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignement to the next multiple of 16 | + | alignment to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 diff --git a/Modules/_heapqmodule.c b/Modules/_heapqmodule.c --- a/Modules/_heapqmodule.c +++ b/Modules/_heapqmodule.c @@ -11,7 +11,7 @@ /* Older implementations of heapq used Py_LE for comparisons. Now, it uses Py_LT so it will match min(), sorted(), and bisect(). Unfortunately, some client code (Twisted for example) relied on Py_LE, so this little function - restores compatability by trying both. + restores compatibility by trying both. */ static int cmp_lt(PyObject *x, PyObject *y) diff --git a/Modules/_struct.c b/Modules/_struct.c --- a/Modules/_struct.c +++ b/Modules/_struct.c @@ -1162,7 +1162,7 @@ case '>': case '!': /* Network byte order is big-endian */ return bigendian_table; - case '=': { /* Host byte order -- different from native in aligment! */ + case '=': { /* Host byte order -- different from native in alignment! */ int n = 1; char *p = (char *) &n; if (*p == 1) diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -1629,7 +1629,7 @@ || strcmp(s, ">>=") == 0 || strcmp(s, "**=") == 0); if (!res) - err_string("illegal augmmented assignment operator"); + err_string("illegal augmented assignment operator"); } } else { diff --git a/Modules/threadmodule.c b/Modules/threadmodule.c --- a/Modules/threadmodule.c +++ b/Modules/threadmodule.c @@ -447,7 +447,7 @@ self->args, self->kw) < 0) { /* we need to get rid of ldict from thread so we create a new one the next time we do an attr - acces */ + access */ PyDict_DelItem(tdict, self->key); return NULL; } diff --git a/Modules/zipimport.c b/Modules/zipimport.c --- a/Modules/zipimport.c +++ b/Modules/zipimport.c @@ -1106,7 +1106,7 @@ return code; } -/* Get the code object assoiciated with the module specified by +/* Get the code object associated with the module specified by 'fullname'. */ static PyObject * get_module_code(ZipImporter *self, char *fullname, diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -2291,7 +2291,7 @@ if (it == NULL) return NULL; - /* Try to determine the length of the argument. 32 is abitrary. */ + /* Try to determine the length of the argument. 32 is arbitrary. */ buf_size = _PyObject_LengthHint(arg, 32); if (buf_size == -1) { Py_DECREF(it); diff --git a/Objects/longobject.c b/Objects/longobject.c --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -2895,7 +2895,7 @@ * of slices, each with a->ob_size digits, and multiply the slices by a, * one at a time. This gives k_mul balanced inputs to work with, and is * also cache-friendly (we compute one double-width slice of the result - * at a time, then move on, never bactracking except for the helpful + * at a time, then move on, never backtracking except for the helpful * single-width slice overlap between successive partial sums). */ static PyLongObject * diff --git a/Objects/stringlib/string_format.h b/Objects/stringlib/string_format.h --- a/Objects/stringlib/string_format.h +++ b/Objects/stringlib/string_format.h @@ -6,7 +6,7 @@ */ -/* Defines for Python 2.6 compatability */ +/* Defines for Python 2.6 compatibility */ #if PY_VERSION_HEX < 0x03000000 #define PyLong_FromSsize_t _PyLong_FromSsize_t #endif diff --git a/Objects/stringobject.c b/Objects/stringobject.c --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -744,7 +744,7 @@ default: *p++ = '\\'; s--; - goto non_esc; /* an arbitry number of unescaped + goto non_esc; /* an arbitrary number of unescaped UTF-8 bytes may follow. */ } } diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c --- a/PC/bdist_wininst/install.c +++ b/PC/bdist_wininst/install.c @@ -62,7 +62,7 @@ * instead showing the user an empty listbox to select something from. * * Finish the code so that we can use other python installations - * additionaly to those found in the registry, + * additionally to those found in the registry, * and then #define USE_OTHER_PYTHON_VERSIONS * * - install a help-button, which will display something meaningful diff --git a/Python/_warnings.c b/Python/_warnings.c --- a/Python/_warnings.c +++ b/Python/_warnings.c @@ -725,7 +725,7 @@ return 0; } -/* PyErr_Warn is only for backwards compatability and will be removed. +/* PyErr_Warn is only for backwards compatibility and will be removed. Use PyErr_WarnEx instead. */ #undef PyErr_Warn diff --git a/Python/sysmodule.c b/Python/sysmodule.c --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -560,7 +560,7 @@ Return information about the running version of Windows as a named tuple.\n\ The members are named: major, minor, build, platform, service_pack,\n\ service_pack_major, service_pack_minor, suite_mask, and product_type. For\n\ -backward compatibiliy, only the first 5 items are available by indexing.\n\ +backward compatibility, only the first 5 items are available by indexing.\n\ All elements are numbers, except service_pack which is a string. Platform\n\ may be 0 for win32s, 1 for Windows 9x/ME, 2 for Windows NT/2000/XP/Vista/7,\n\ 3 for Windows CE. Product_type may be 1 for a workstation, 2 for a domain\n\ diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -176,7 +176,7 @@ have_mingw = build_mingw_lib(lib_file, def_file, dll_file, mingw_lib) -# Determine the target architechture +# Determine the target architecture dll_path = os.path.join(srcdir, PCBUILD, dll_file) msilib.set_arch_from_file(dll_path) if msilib.pe_type(dll_path) != msilib.pe_type("msisupport.dll"): diff --git a/Tools/pybench/pybench.py b/Tools/pybench/pybench.py --- a/Tools/pybench/pybench.py +++ b/Tools/pybench/pybench.py @@ -689,7 +689,7 @@ other_total_avg_time = other_total_avg_time + other_avg_time if (benchmarks_compatible and test.compatible(other)): - # Both benchmark and tests are comparible + # Both benchmark and tests are comparable min_diff = ((min_time * self.warp) / (other_min_time * other.warp) - 1.0) avg_diff = ((avg_time * self.warp) / @@ -703,7 +703,7 @@ else: avg_diff = '%+5.1f%%' % (avg_diff * PERCENT) else: - # Benchmark or tests are not comparible + # Benchmark or tests are not comparable min_diff, avg_diff = 'n/a', 'n/a' tests_compatible = 0 print '%30s: %5.0fms %5.0fms %7s %5.0fms %5.0fms %7s' % \ diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -935,7 +935,7 @@ tmp.append(dn) db_dirs_to_check = tmp - # Look for a version specific db-X.Y before an ambiguoius dbX + # Look for a version specific db-X.Y before an ambiguous dbX # XXX should we -ever- look for a dbX name? Do any # systems really not name their library by version and # symlink to more general names? -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 18:09:51 2011 From: python-checkins at python.org (ezio.melotti) Date: Tue, 15 Mar 2011 18:09:51 +0100 Subject: [Python-checkins] cpython (2.7): Revert typo fixes in _cytpes/libffi* Message-ID: http://hg.python.org/cpython/rev/a407a7790957 changeset: 68504:a407a7790957 branch: 2.7 user: Ezio Melotti date: Tue Mar 15 19:09:10 2011 +0200 summary: Revert typo fixes in _cytpes/libffi* files: Modules/_ctypes/libffi/ChangeLog Modules/_ctypes/libffi/src/dlmalloc.c Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c diff --git a/Modules/_ctypes/libffi/ChangeLog b/Modules/_ctypes/libffi/ChangeLog --- a/Modules/_ctypes/libffi/ChangeLog +++ b/Modules/_ctypes/libffi/ChangeLog @@ -3084,7 +3084,7 @@ 2003-09-18 Kaz Kojima - * src/sh/ffi.c (ffi_prep_args): Take account into the alignment + * src/sh/ffi.c (ffi_prep_args): Take account into the alignement for the register size. (ffi_closure_helper_SYSV): Handle the structure return value address correctly. @@ -3344,7 +3344,7 @@ 2003-02-06 Andreas Tobler * libffi/src/powerpc/darwin_closure.S: - Fix alignment bug, allocate 8 bytes for the result. + Fix alignement bug, allocate 8 bytes for the result. * libffi/src/powerpc/aix_closure.S: Likewise. * libffi/src/powerpc/ffi_darwin.c: diff --git a/Modules/_ctypes/libffi/src/dlmalloc.c b/Modules/_ctypes/libffi/src/dlmalloc.c --- a/Modules/_ctypes/libffi/src/dlmalloc.c +++ b/Modules/_ctypes/libffi/src/dlmalloc.c @@ -1326,7 +1326,7 @@ return (ptr != 0)? ptr: MFAIL; } -/* This function supports releasing coalesced segments */ +/* This function supports releasing coalesed segments */ static int win32munmap(void* ptr, size_t size) { MEMORY_BASIC_INFORMATION minfo; char* cptr = ptr; @@ -1362,7 +1362,7 @@ #define CALL_MORECORE(S) MFAIL #endif /* HAVE_MORECORE */ -/* mstate bit set if contiguous morecore disabled or failed */ +/* mstate bit set if continguous morecore disabled or failed */ #define USE_NONCONTIGUOUS_BIT (4U) /* segment bit set in create_mspace_with_base */ diff --git a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c --- a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c +++ b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c @@ -592,7 +592,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignment to the next multiple of 16 | + | alignement to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 diff --git a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c --- a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c +++ b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c @@ -650,7 +650,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignment to the next multiple of 16 | + | alignement to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 18:21:43 2011 From: python-checkins at python.org (ezio.melotti) Date: Tue, 15 Mar 2011 18:21:43 +0100 Subject: [Python-checkins] cpython (3.1): Revert typo fixes in _cytpes/libffi* Message-ID: http://hg.python.org/cpython/rev/1ba77f3ccc2e changeset: 68505:1ba77f3ccc2e branch: 3.1 parent: 68491:141bbcb19c06 user: Ezio Melotti date: Tue Mar 15 19:10:51 2011 +0200 summary: Revert typo fixes in _cytpes/libffi* files: Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c diff --git a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c --- a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c +++ b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c @@ -59,24 +59,24 @@ The stack layout we want looks like this: - | Return address from ffi_call_DARWIN | higher addresses + | Return address from ffi_call_DARWIN | higher addresses |--------------------------------------------| - | Previous backchain pointer 4 | stack pointer here - |--------------------------------------------|<+ <<< on entry to - | Saved r28-r31 4*4 | | ffi_call_DARWIN + | Previous backchain pointer 4 | stack pointer here + |--------------------------------------------|<+ <<< on entry to + | Saved r28-r31 4*4 | | ffi_call_DARWIN |--------------------------------------------| | | Parameters (at least 8*4=32) | | |--------------------------------------------| | | Space for GPR2 4 | | - |--------------------------------------------| | stack | - | Reserved 2*4 | | grows | - |--------------------------------------------| | down V - | Space for callee's LR 4 | | - |--------------------------------------------| | lower addresses + |--------------------------------------------| | stack | + | Reserved 2*4 | | grows | + |--------------------------------------------| | down V + | Space for callee's LR 4 | | + |--------------------------------------------| | lower addresses | Saved CR 4 | | |--------------------------------------------| | stack pointer here - | Current backchain pointer 4 |-/ during - |--------------------------------------------| <<< ffi_call_DARWIN + | Current backchain pointer 4 |-/ during + |--------------------------------------------| <<< ffi_call_DARWIN */ @@ -123,106 +123,106 @@ i--, ptr++, p_argv++) { switch ((*ptr)->type) - { - /* If a floating-point parameter appears before all of the general- - purpose registers are filled, the corresponding GPRs that match - the size of the floating-point parameter are skipped. */ - case FFI_TYPE_FLOAT: - double_tmp = *(float *)*p_argv; - if (fparg_count >= NUM_FPR_ARG_REGISTERS) - *(double *)next_arg = double_tmp; - else - *fpr_base++ = double_tmp; - next_arg++; - fparg_count++; - FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); - break; + { + /* If a floating-point parameter appears before all of the general- + purpose registers are filled, the corresponding GPRs that match + the size of the floating-point parameter are skipped. */ + case FFI_TYPE_FLOAT: + double_tmp = *(float *)*p_argv; + if (fparg_count >= NUM_FPR_ARG_REGISTERS) + *(double *)next_arg = double_tmp; + else + *fpr_base++ = double_tmp; + next_arg++; + fparg_count++; + FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); + break; - case FFI_TYPE_DOUBLE: - double_tmp = *(double *)*p_argv; - if (fparg_count >= NUM_FPR_ARG_REGISTERS) - *(double *)next_arg = double_tmp; - else - *fpr_base++ = double_tmp; - next_arg += 2; - fparg_count++; - FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); - break; + case FFI_TYPE_DOUBLE: + double_tmp = *(double *)*p_argv; + if (fparg_count >= NUM_FPR_ARG_REGISTERS) + *(double *)next_arg = double_tmp; + else + *fpr_base++ = double_tmp; + next_arg += 2; + fparg_count++; + FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); + break; #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_LONGDOUBLE: - double_tmp = ((double *)*p_argv)[0]; - if (fparg_count >= NUM_FPR_ARG_REGISTERS) - *(double *)next_arg = double_tmp; - else - *fpr_base++ = double_tmp; - next_arg += 2; - fparg_count++; - double_tmp = ((double *)*p_argv)[1]; - if (fparg_count >= NUM_FPR_ARG_REGISTERS) - *(double *)next_arg = double_tmp; - else - *fpr_base++ = double_tmp; - next_arg += 2; - fparg_count++; - FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); - break; + case FFI_TYPE_LONGDOUBLE: + double_tmp = ((double *)*p_argv)[0]; + if (fparg_count >= NUM_FPR_ARG_REGISTERS) + *(double *)next_arg = double_tmp; + else + *fpr_base++ = double_tmp; + next_arg += 2; + fparg_count++; + double_tmp = ((double *)*p_argv)[1]; + if (fparg_count >= NUM_FPR_ARG_REGISTERS) + *(double *)next_arg = double_tmp; + else + *fpr_base++ = double_tmp; + next_arg += 2; + fparg_count++; + FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); + break; #endif - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - *(long long *)next_arg = *(long long *)*p_argv; - next_arg+=2; - break; - case FFI_TYPE_UINT8: - gprvalue = *(unsigned char *)*p_argv; - goto putgpr; - case FFI_TYPE_SINT8: - gprvalue = *(signed char *)*p_argv; - goto putgpr; - case FFI_TYPE_UINT16: - gprvalue = *(unsigned short *)*p_argv; - goto putgpr; - case FFI_TYPE_SINT16: - gprvalue = *(signed short *)*p_argv; - goto putgpr; + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + *(long long *)next_arg = *(long long *)*p_argv; + next_arg+=2; + break; + case FFI_TYPE_UINT8: + gprvalue = *(unsigned char *)*p_argv; + goto putgpr; + case FFI_TYPE_SINT8: + gprvalue = *(signed char *)*p_argv; + goto putgpr; + case FFI_TYPE_UINT16: + gprvalue = *(unsigned short *)*p_argv; + goto putgpr; + case FFI_TYPE_SINT16: + gprvalue = *(signed short *)*p_argv; + goto putgpr; - case FFI_TYPE_STRUCT: - dest_cpy = (char *) next_arg; + case FFI_TYPE_STRUCT: + dest_cpy = (char *) next_arg; - /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, - SI 4 bytes) are aligned as if they were those modes. - Structures with 3 byte in size are padded upwards. */ - size_al = (*ptr)->size; - /* If the first member of the struct is a double, then align - the struct to double-word. - Type 3 is defined in include/ffi.h. #define FFI_TYPE_DOUBLE 3. */ - if ((*ptr)->elements[0]->type == 3) - size_al = ALIGN((*ptr)->size, 8); - if (size_al < 3 && ecif->cif->abi == FFI_DARWIN) - dest_cpy += 4 - size_al; + /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, + SI 4 bytes) are aligned as if they were those modes. + Structures with 3 byte in size are padded upwards. */ + size_al = (*ptr)->size; + /* If the first member of the struct is a double, then align + the struct to double-word. + Type 3 is defined in include/ffi.h. #define FFI_TYPE_DOUBLE 3. */ + if ((*ptr)->elements[0]->type == 3) + size_al = ALIGN((*ptr)->size, 8); + if (size_al < 3 && ecif->cif->abi == FFI_DARWIN) + dest_cpy += 4 - size_al; - memcpy((char *)dest_cpy, (char *)*p_argv, size_al); - next_arg += (size_al + 3) / 4; - break; + memcpy((char *)dest_cpy, (char *)*p_argv, size_al); + next_arg += (size_al + 3) / 4; + break; - case FFI_TYPE_INT: - case FFI_TYPE_UINT32: - case FFI_TYPE_SINT32: - case FFI_TYPE_POINTER: - gprvalue = *(unsigned *)*p_argv; - putgpr: - *next_arg++ = gprvalue; - break; - default: - break; - } + case FFI_TYPE_INT: + case FFI_TYPE_UINT32: + case FFI_TYPE_SINT32: + case FFI_TYPE_POINTER: + gprvalue = *(unsigned *)*p_argv; + putgpr: + *next_arg++ = gprvalue; + break; + default: + break; + } } /* Check that we didn't overrun the stack... */ //FFI_ASSERT(gpr_base <= stacktop - ASM_NEEDS_REGISTERS); //FFI_ASSERT((unsigned *)fpr_base - // <= stacktop - ASM_NEEDS_REGISTERS - NUM_GPR_ARG_REGISTERS); + // <= stacktop - ASM_NEEDS_REGISTERS - NUM_GPR_ARG_REGISTERS); //FFI_ASSERT(flags & FLAG_4_GPR_ARGUMENTS || intarg_count <= 4); } @@ -246,15 +246,15 @@ p = s->elements[i]; darwin_adjust_aggregate_sizes (p); if (i == 0 - && (p->type == FFI_TYPE_UINT64 - || p->type == FFI_TYPE_SINT64 - || p->type == FFI_TYPE_DOUBLE - || p->alignment == 8)) - align = 8; + && (p->type == FFI_TYPE_UINT64 + || p->type == FFI_TYPE_SINT64 + || p->type == FFI_TYPE_DOUBLE + || p->alignment == 8)) + align = 8; else if (p->alignment == 16 || p->alignment < 4) - align = p->alignment; + align = p->alignment; else - align = 4; + align = 4; s->size = ALIGN(s->size, align) + p->size; } @@ -287,7 +287,7 @@ { darwin_adjust_aggregate_sizes (cif->rtype); for (i = 0; i < cif->nargs; i++) - darwin_adjust_aggregate_sizes (cif->arg_types[i]); + darwin_adjust_aggregate_sizes (cif->arg_types[i]); } /* Space for the frame pointer, callee's LR, CR, etc, and for @@ -348,58 +348,58 @@ for (ptr = cif->arg_types, i = cif->nargs; i > 0; i--, ptr++) { switch ((*ptr)->type) - { - case FFI_TYPE_FLOAT: - case FFI_TYPE_DOUBLE: - fparg_count++; - /* If this FP arg is going on the stack, it must be - 8-byte-aligned. */ - if (fparg_count > NUM_FPR_ARG_REGISTERS - && intarg_count%2 != 0) - intarg_count++; - break; + { + case FFI_TYPE_FLOAT: + case FFI_TYPE_DOUBLE: + fparg_count++; + /* If this FP arg is going on the stack, it must be + 8-byte-aligned. */ + if (fparg_count > NUM_FPR_ARG_REGISTERS + && intarg_count%2 != 0) + intarg_count++; + break; #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_LONGDOUBLE: - fparg_count += 2; - /* If this FP arg is going on the stack, it must be - 8-byte-aligned. */ - if (fparg_count > NUM_FPR_ARG_REGISTERS - && intarg_count%2 != 0) - intarg_count++; - intarg_count +=2; - break; + case FFI_TYPE_LONGDOUBLE: + fparg_count += 2; + /* If this FP arg is going on the stack, it must be + 8-byte-aligned. */ + if (fparg_count > NUM_FPR_ARG_REGISTERS + && intarg_count%2 != 0) + intarg_count++; + intarg_count +=2; + break; #endif - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - /* 'long long' arguments are passed as two words, but - either both words must fit in registers or both go - on the stack. If they go on the stack, they must - be 8-byte-aligned. */ - if (intarg_count == NUM_GPR_ARG_REGISTERS-1 - || (intarg_count >= NUM_GPR_ARG_REGISTERS && intarg_count%2 != 0)) - intarg_count++; - intarg_count += 2; - break; + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + /* 'long long' arguments are passed as two words, but + either both words must fit in registers or both go + on the stack. If they go on the stack, they must + be 8-byte-aligned. */ + if (intarg_count == NUM_GPR_ARG_REGISTERS-1 + || (intarg_count >= NUM_GPR_ARG_REGISTERS && intarg_count%2 != 0)) + intarg_count++; + intarg_count += 2; + break; - case FFI_TYPE_STRUCT: - size_al = (*ptr)->size; - /* If the first member of the struct is a double, then align - the struct to double-word. - Type 3 is defined in include/ffi.h. #define FFI_TYPE_DOUBLE 3. */ - if ((*ptr)->elements[0]->type == 3) - size_al = ALIGN((*ptr)->size, 8); - intarg_count += (size_al + 3) / 4; - break; + case FFI_TYPE_STRUCT: + size_al = (*ptr)->size; + /* If the first member of the struct is a double, then align + the struct to double-word. + Type 3 is defined in include/ffi.h. #define FFI_TYPE_DOUBLE 3. */ + if ((*ptr)->elements[0]->type == 3) + size_al = ALIGN((*ptr)->size, 8); + intarg_count += (size_al + 3) / 4; + break; - default: - /* Everything else is passed as a 4-byte word in a GPR, either - the object itself or a pointer to it. */ - intarg_count++; - break; - } + default: + /* Everything else is passed as a 4-byte word in a GPR, either + the object itself or a pointer to it. */ + intarg_count++; + break; + } } if (fparg_count != 0) @@ -425,9 +425,9 @@ } extern void ffi_call_AIX(extended_cif *, unsigned, unsigned, unsigned *, - void (*fn)(void), void (*fn2)(void)); + void (*fn)(void), void (*fn2)(void)); extern void ffi_call_DARWIN(extended_cif *, unsigned, unsigned, unsigned *, - void (*fn)(void), void (*fn2)(void)); + void (*fn)(void), void (*fn2)(void)); void ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue) { @@ -451,11 +451,11 @@ { case FFI_AIX: ffi_call_AIX(&ecif, -cif->bytes, cif->flags, ecif.rvalue, fn, - ffi_prep_args); + ffi_prep_args); break; case FFI_DARWIN: ffi_call_DARWIN(&ecif, -cif->bytes, cif->flags, ecif.rvalue, fn, - ffi_prep_args); + ffi_prep_args); break; default: FFI_ASSERT(0); @@ -478,61 +478,61 @@ and aix_clsoure.S SP previous -> +---------------------------------------+ <--- child frame - | back chain to caller 4 | - +---------------------------------------+ 4 - | saved CR 4 | - +---------------------------------------+ 8 - | saved LR 4 | - +---------------------------------------+ 12 - | reserved for compilers 4 | - +---------------------------------------+ 16 - | reserved for binders 4 | - +---------------------------------------+ 20 - | saved TOC pointer 4 | - +---------------------------------------+ 24 - | always reserved 8*4=32 (previous GPRs)| - | according to the linkage convention | - | from AIX | - +---------------------------------------+ 56 - | our FPR area 13*8=104 | - | f1 | - | . | - | f13 | - +---------------------------------------+ 160 - | result area 8 | - +---------------------------------------+ 168 - | alignment to the next multiple of 16 | + | back chain to caller 4 | + +---------------------------------------+ 4 + | saved CR 4 | + +---------------------------------------+ 8 + | saved LR 4 | + +---------------------------------------+ 12 + | reserved for compilers 4 | + +---------------------------------------+ 16 + | reserved for binders 4 | + +---------------------------------------+ 20 + | saved TOC pointer 4 | + +---------------------------------------+ 24 + | always reserved 8*4=32 (previous GPRs)| + | according to the linkage convention | + | from AIX | + +---------------------------------------+ 56 + | our FPR area 13*8=104 | + | f1 | + | . | + | f13 | + +---------------------------------------+ 160 + | result area 8 | + +---------------------------------------+ 168 + | alignement to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame - | back chain to caller 4 | - +---------------------------------------+ 180 - | saved CR 4 | - +---------------------------------------+ 184 - | saved LR 4 | - +---------------------------------------+ 188 - | reserved for compilers 4 | - +---------------------------------------+ 192 - | reserved for binders 4 | - +---------------------------------------+ 196 - | saved TOC pointer 4 | - +---------------------------------------+ 200 - | always reserved 8*4=32 we store our | - | GPRs here | - | r3 | - | . | - | r10 | - +---------------------------------------+ 232 - | overflow part | - +---------------------------------------+ xxx - | ???? | - +---------------------------------------+ xxx + | back chain to caller 4 | + +---------------------------------------+ 180 + | saved CR 4 | + +---------------------------------------+ 184 + | saved LR 4 | + +---------------------------------------+ 188 + | reserved for compilers 4 | + +---------------------------------------+ 192 + | reserved for binders 4 | + +---------------------------------------+ 196 + | saved TOC pointer 4 | + +---------------------------------------+ 200 + | always reserved 8*4=32 we store our | + | GPRs here | + | r3 | + | . | + | r10 | + +---------------------------------------+ 232 + | overflow part | + +---------------------------------------+ xxx + | ???? | + +---------------------------------------+ xxx */ ffi_status ffi_prep_closure_loc (ffi_closure* closure, - ffi_cif* cif, - void (*fun)(ffi_cif*, void*, void**, void*), - void *user_data, - void *codeloc) + ffi_cif* cif, + void (*fun)(ffi_cif*, void*, void**, void*), + void *user_data, + void *codeloc) { unsigned int *tramp; struct ffi_aix_trampoline_struct *tramp_aix; @@ -592,12 +592,12 @@ { #ifndef _AIX __asm__ volatile ( - "dcbf 0,%0\n" - "\tsync\n" - "\ticbi 0,%0\n" - "\tsync\n" - "\tisync" - : : "r"(addr) : "memory"); + "dcbf 0,%0\n" + "\tsync\n" + "\ticbi 0,%0\n" + "\tsync\n" + "\tisync" + : : "r"(addr) : "memory"); #endif } @@ -618,7 +618,7 @@ } ffi_dblfl; int ffi_closure_helper_DARWIN (ffi_closure*, void*, - unsigned long*, ffi_dblfl*); + unsigned long*, ffi_dblfl*); /* Basically the trampoline invokes ffi_closure_ASM, and on entry, r11 holds the address of the closure. @@ -628,7 +628,7 @@ following helper function to do most of the work. */ int ffi_closure_helper_DARWIN (ffi_closure* closure, void * rvalue, - unsigned long * pgr, ffi_dblfl * pfr) + unsigned long * pgr, ffi_dblfl * pfr) { /* rvalue is the pointer to space for return value in closure assembly pgr is the pointer to where r3-r10 are stored in ffi_closure_ASM @@ -675,121 +675,121 @@ while (i < avn) { switch (arg_types[i]->type) - { - case FFI_TYPE_SINT8: - case FFI_TYPE_UINT8: - avalue[i] = (char *) pgr + 3; - ng++; - pgr++; - break; + { + case FFI_TYPE_SINT8: + case FFI_TYPE_UINT8: + avalue[i] = (char *) pgr + 3; + ng++; + pgr++; + break; - case FFI_TYPE_SINT16: - case FFI_TYPE_UINT16: - avalue[i] = (char *) pgr + 2; - ng++; - pgr++; - break; + case FFI_TYPE_SINT16: + case FFI_TYPE_UINT16: + avalue[i] = (char *) pgr + 2; + ng++; + pgr++; + break; - case FFI_TYPE_SINT32: - case FFI_TYPE_UINT32: - case FFI_TYPE_POINTER: - avalue[i] = pgr; - ng++; - pgr++; - break; + case FFI_TYPE_SINT32: + case FFI_TYPE_UINT32: + case FFI_TYPE_POINTER: + avalue[i] = pgr; + ng++; + pgr++; + break; - case FFI_TYPE_STRUCT: - /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, - SI 4 bytes) are aligned as if they were those modes. */ - size_al = arg_types[i]->size; - /* If the first member of the struct is a double, then align - the struct to double-word. - Type 3 is defined in include/ffi.h. #define FFI_TYPE_DOUBLE 3. */ - if (arg_types[i]->elements[0]->type == 3) - size_al = ALIGN(arg_types[i]->size, 8); - if (size_al < 3 && cif->abi == FFI_DARWIN) - avalue[i] = (void*) pgr + 4 - size_al; - else - avalue[i] = (void*) pgr; - ng += (size_al + 3) / 4; - pgr += (size_al + 3) / 4; - break; + case FFI_TYPE_STRUCT: + /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, + SI 4 bytes) are aligned as if they were those modes. */ + size_al = arg_types[i]->size; + /* If the first member of the struct is a double, then align + the struct to double-word. + Type 3 is defined in include/ffi.h. #define FFI_TYPE_DOUBLE 3. */ + if (arg_types[i]->elements[0]->type == 3) + size_al = ALIGN(arg_types[i]->size, 8); + if (size_al < 3 && cif->abi == FFI_DARWIN) + avalue[i] = (void*) pgr + 4 - size_al; + else + avalue[i] = (void*) pgr; + ng += (size_al + 3) / 4; + pgr += (size_al + 3) / 4; + break; - case FFI_TYPE_SINT64: - case FFI_TYPE_UINT64: - /* Long long ints are passed in two gpr's. */ - avalue[i] = pgr; - ng += 2; - pgr += 2; - break; + case FFI_TYPE_SINT64: + case FFI_TYPE_UINT64: + /* Long long ints are passed in two gpr's. */ + avalue[i] = pgr; + ng += 2; + pgr += 2; + break; - case FFI_TYPE_FLOAT: - /* A float value consumes a GPR. - There are 13 64bit floating point registers. */ - if (nf < NUM_FPR_ARG_REGISTERS) - { - temp = pfr->d; - pfr->f = (float)temp; - avalue[i] = pfr; - pfr++; - } - else - { - avalue[i] = pgr; - } - nf++; - ng++; - pgr++; - break; + case FFI_TYPE_FLOAT: + /* A float value consumes a GPR. + There are 13 64bit floating point registers. */ + if (nf < NUM_FPR_ARG_REGISTERS) + { + temp = pfr->d; + pfr->f = (float)temp; + avalue[i] = pfr; + pfr++; + } + else + { + avalue[i] = pgr; + } + nf++; + ng++; + pgr++; + break; - case FFI_TYPE_DOUBLE: - /* A double value consumes two GPRs. - There are 13 64bit floating point registers. */ - if (nf < NUM_FPR_ARG_REGISTERS) - { - avalue[i] = pfr; - pfr++; - } - else - { - avalue[i] = pgr; - } - nf++; - ng += 2; - pgr += 2; - break; + case FFI_TYPE_DOUBLE: + /* A double value consumes two GPRs. + There are 13 64bit floating point registers. */ + if (nf < NUM_FPR_ARG_REGISTERS) + { + avalue[i] = pfr; + pfr++; + } + else + { + avalue[i] = pgr; + } + nf++; + ng += 2; + pgr += 2; + break; #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_LONGDOUBLE: - /* A long double value consumes four GPRs and two FPRs. - There are 13 64bit floating point registers. */ - if (nf < NUM_FPR_ARG_REGISTERS - 1) - { - avalue[i] = pfr; - pfr += 2; - } - /* Here we have the situation where one part of the long double - is stored in fpr13 and the other part is already on the stack. - We use a union to pass the long double to avalue[i]. */ - else if (nf == NUM_FPR_ARG_REGISTERS - 1) - { - memcpy (&temp_ld.lb[0], pfr, sizeof(ldbits)); - memcpy (&temp_ld.lb[1], pgr + 2, sizeof(ldbits)); - avalue[i] = &temp_ld.ld; - } - else - { - avalue[i] = pgr; - } - nf += 2; - ng += 4; - pgr += 4; - break; + case FFI_TYPE_LONGDOUBLE: + /* A long double value consumes four GPRs and two FPRs. + There are 13 64bit floating point registers. */ + if (nf < NUM_FPR_ARG_REGISTERS - 1) + { + avalue[i] = pfr; + pfr += 2; + } + /* Here we have the situation where one part of the long double + is stored in fpr13 and the other part is already on the stack. + We use a union to pass the long double to avalue[i]. */ + else if (nf == NUM_FPR_ARG_REGISTERS - 1) + { + memcpy (&temp_ld.lb[0], pfr, sizeof(ldbits)); + memcpy (&temp_ld.lb[1], pgr + 2, sizeof(ldbits)); + avalue[i] = &temp_ld.ld; + } + else + { + avalue[i] = pgr; + } + nf += 2; + ng += 4; + pgr += 4; + break; #endif - default: - FFI_ASSERT(0); - } + default: + FFI_ASSERT(0); + } i++; } diff --git a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c --- a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c +++ b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c @@ -39,7 +39,7 @@ #if 0 #if defined(POWERPC_DARWIN) -#include // for sys_icache_invalidate() +#include // for sys_icache_invalidate() #endif #else @@ -55,8 +55,8 @@ // The layout of a function descriptor. A C function pointer really // points to one of these. typedef struct aix_fd_struct { - void* code_pointer; - void* toc; + void* code_pointer; + void* toc; } aix_fd; /* ffi_prep_args is called by the assembly routine once stack space @@ -64,241 +64,241 @@ The stack layout we want looks like this: - | Return address from ffi_call_DARWIN | higher addresses + | Return address from ffi_call_DARWIN | higher addresses |--------------------------------------------| - | Previous backchain pointer 4/8 | stack pointer here + | Previous backchain pointer 4/8 | stack pointer here |--------------------------------------------|-\ <<< on entry to - | Saved r28-r31 (4/8)*4 | | ffi_call_DARWIN + | Saved r28-r31 (4/8)*4 | | ffi_call_DARWIN |--------------------------------------------| | | Parameters (at least 8*(4/8)=32/64) | | (176) +112 - +288 |--------------------------------------------| | | Space for GPR2 4/8 | | - |--------------------------------------------| | stack | - | Reserved (4/8)*2 | | grows | - |--------------------------------------------| | down V + |--------------------------------------------| | stack | + | Reserved (4/8)*2 | | grows | + |--------------------------------------------| | down V | Space for callee's LR 4/8 | | - |--------------------------------------------| | lower addresses + |--------------------------------------------| | lower addresses | Saved CR 4/8 | | |--------------------------------------------| | stack pointer here | Current backchain pointer 4/8 | | during |--------------------------------------------|-/ <<< ffi_call_DARWIN - Note: ppc64 CR is saved in the low word of a long on the stack. + Note: ppc64 CR is saved in the low word of a long on the stack. */ /*@-exportheader@*/ void ffi_prep_args( - extended_cif* inEcif, - unsigned *const stack) + extended_cif* inEcif, + unsigned *const stack) /*@=exportheader@*/ { - /* Copy the ecif to a local var so we can trample the arg. - BC note: test this with GP later for possible problems... */ - volatile extended_cif* ecif = inEcif; + /* Copy the ecif to a local var so we can trample the arg. + BC note: test this with GP later for possible problems... */ + volatile extended_cif* ecif = inEcif; - const unsigned bytes = ecif->cif->bytes; - const unsigned flags = ecif->cif->flags; + const unsigned bytes = ecif->cif->bytes; + const unsigned flags = ecif->cif->flags; - /* Cast the stack arg from int* to long*. sizeof(long) == 4 in 32-bit mode - and 8 in 64-bit mode. */ - unsigned long *const longStack = (unsigned long *const)stack; + /* Cast the stack arg from int* to long*. sizeof(long) == 4 in 32-bit mode + and 8 in 64-bit mode. */ + unsigned long *const longStack = (unsigned long *const)stack; - /* 'stacktop' points at the previous backchain pointer. */ + /* 'stacktop' points at the previous backchain pointer. */ #if defined(__ppc64__) - // In ppc-darwin.s, an extra 96 bytes is reserved for the linkage area, - // saved registers, and an extra FPR. - unsigned long *const stacktop = - (unsigned long *)(unsigned long)((char*)longStack + bytes + 96); + // In ppc-darwin.s, an extra 96 bytes is reserved for the linkage area, + // saved registers, and an extra FPR. + unsigned long *const stacktop = + (unsigned long *)(unsigned long)((char*)longStack + bytes + 96); #elif defined(__ppc__) - unsigned long *const stacktop = longStack + (bytes / sizeof(long)); + unsigned long *const stacktop = longStack + (bytes / sizeof(long)); #else #error undefined architecture #endif - /* 'fpr_base' points at the space for fpr1, and grows upwards as - we use FPR registers. */ - double* fpr_base = (double*)(stacktop - ASM_NEEDS_REGISTERS) - - NUM_FPR_ARG_REGISTERS; + /* 'fpr_base' points at the space for fpr1, and grows upwards as + we use FPR registers. */ + double* fpr_base = (double*)(stacktop - ASM_NEEDS_REGISTERS) - + NUM_FPR_ARG_REGISTERS; #if defined(__ppc64__) - // 64-bit saves an extra register, and uses an extra FPR. Knock fpr_base - // down a couple pegs. - fpr_base -= 2; + // 64-bit saves an extra register, and uses an extra FPR. Knock fpr_base + // down a couple pegs. + fpr_base -= 2; #endif - unsigned int fparg_count = 0; + unsigned int fparg_count = 0; - /* 'next_arg' grows up as we put parameters in it. */ - unsigned long* next_arg = longStack + 6; /* 6 reserved positions. */ + /* 'next_arg' grows up as we put parameters in it. */ + unsigned long* next_arg = longStack + 6; /* 6 reserved positions. */ - int i; - double double_tmp; - void** p_argv = ecif->avalue; - unsigned long gprvalue; - ffi_type** ptr = ecif->cif->arg_types; + int i; + double double_tmp; + void** p_argv = ecif->avalue; + unsigned long gprvalue; + ffi_type** ptr = ecif->cif->arg_types; - /* Check that everything starts aligned properly. */ - FFI_ASSERT(stack == SF_ROUND(stack)); - FFI_ASSERT(stacktop == SF_ROUND(stacktop)); - FFI_ASSERT(bytes == SF_ROUND(bytes)); + /* Check that everything starts aligned properly. */ + FFI_ASSERT(stack == SF_ROUND(stack)); + FFI_ASSERT(stacktop == SF_ROUND(stacktop)); + FFI_ASSERT(bytes == SF_ROUND(bytes)); - /* Deal with return values that are actually pass-by-reference. - Rule: - Return values are referenced by r3, so r4 is the first parameter. */ + /* Deal with return values that are actually pass-by-reference. + Rule: + Return values are referenced by r3, so r4 is the first parameter. */ - if (flags & FLAG_RETVAL_REFERENCE) - *next_arg++ = (unsigned long)(char*)ecif->rvalue; + if (flags & FLAG_RETVAL_REFERENCE) + *next_arg++ = (unsigned long)(char*)ecif->rvalue; - /* Now for the arguments. */ - for (i = ecif->cif->nargs; i > 0; i--, ptr++, p_argv++) + /* Now for the arguments. */ + for (i = ecif->cif->nargs; i > 0; i--, ptr++, p_argv++) { - switch ((*ptr)->type) - { - /* If a floating-point parameter appears before all of the general- - purpose registers are filled, the corresponding GPRs that match - the size of the floating-point parameter are shadowed for the - benefit of vararg and pre-ANSI functions. */ - case FFI_TYPE_FLOAT: - double_tmp = *(float*)*p_argv; + switch ((*ptr)->type) + { + /* If a floating-point parameter appears before all of the general- + purpose registers are filled, the corresponding GPRs that match + the size of the floating-point parameter are shadowed for the + benefit of vararg and pre-ANSI functions. */ + case FFI_TYPE_FLOAT: + double_tmp = *(float*)*p_argv; - if (fparg_count < NUM_FPR_ARG_REGISTERS) - *fpr_base++ = double_tmp; + if (fparg_count < NUM_FPR_ARG_REGISTERS) + *fpr_base++ = double_tmp; - *(double*)next_arg = double_tmp; + *(double*)next_arg = double_tmp; - next_arg++; - fparg_count++; - FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); + next_arg++; + fparg_count++; + FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); - break; + break; - case FFI_TYPE_DOUBLE: - double_tmp = *(double*)*p_argv; + case FFI_TYPE_DOUBLE: + double_tmp = *(double*)*p_argv; - if (fparg_count < NUM_FPR_ARG_REGISTERS) - *fpr_base++ = double_tmp; + if (fparg_count < NUM_FPR_ARG_REGISTERS) + *fpr_base++ = double_tmp; - *(double*)next_arg = double_tmp; + *(double*)next_arg = double_tmp; - next_arg += MODE_CHOICE(2,1); - fparg_count++; - FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); + next_arg += MODE_CHOICE(2,1); + fparg_count++; + FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); - break; + break; #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_LONGDOUBLE: + case FFI_TYPE_LONGDOUBLE: #if defined(__ppc64__) - if (fparg_count < NUM_FPR_ARG_REGISTERS) - *(long double*)fpr_base = *(long double*)*p_argv; + if (fparg_count < NUM_FPR_ARG_REGISTERS) + *(long double*)fpr_base = *(long double*)*p_argv; #elif defined(__ppc__) - if (fparg_count < NUM_FPR_ARG_REGISTERS - 1) - *(long double*)fpr_base = *(long double*)*p_argv; - else if (fparg_count == NUM_FPR_ARG_REGISTERS - 1) - *(double*)fpr_base = *(double*)*p_argv; + if (fparg_count < NUM_FPR_ARG_REGISTERS - 1) + *(long double*)fpr_base = *(long double*)*p_argv; + else if (fparg_count == NUM_FPR_ARG_REGISTERS - 1) + *(double*)fpr_base = *(double*)*p_argv; #else #error undefined architecture #endif - *(long double*)next_arg = *(long double*)*p_argv; - fparg_count += 2; - fpr_base += 2; - next_arg += MODE_CHOICE(4,2); - FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); + *(long double*)next_arg = *(long double*)*p_argv; + fparg_count += 2; + fpr_base += 2; + next_arg += MODE_CHOICE(4,2); + FFI_ASSERT(flags & FLAG_FP_ARGUMENTS); - break; -#endif // FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE + break; +#endif // FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: #if defined(__ppc64__) - gprvalue = *(long long*)*p_argv; - goto putgpr; + gprvalue = *(long long*)*p_argv; + goto putgpr; #elif defined(__ppc__) - *(long long*)next_arg = *(long long*)*p_argv; - next_arg += 2; - break; + *(long long*)next_arg = *(long long*)*p_argv; + next_arg += 2; + break; #else #error undefined architecture #endif - case FFI_TYPE_POINTER: - gprvalue = *(unsigned long*)*p_argv; - goto putgpr; + case FFI_TYPE_POINTER: + gprvalue = *(unsigned long*)*p_argv; + goto putgpr; - case FFI_TYPE_UINT8: - gprvalue = *(unsigned char*)*p_argv; - goto putgpr; + case FFI_TYPE_UINT8: + gprvalue = *(unsigned char*)*p_argv; + goto putgpr; - case FFI_TYPE_SINT8: - gprvalue = *(signed char*)*p_argv; - goto putgpr; + case FFI_TYPE_SINT8: + gprvalue = *(signed char*)*p_argv; + goto putgpr; - case FFI_TYPE_UINT16: - gprvalue = *(unsigned short*)*p_argv; - goto putgpr; + case FFI_TYPE_UINT16: + gprvalue = *(unsigned short*)*p_argv; + goto putgpr; - case FFI_TYPE_SINT16: - gprvalue = *(signed short*)*p_argv; - goto putgpr; + case FFI_TYPE_SINT16: + gprvalue = *(signed short*)*p_argv; + goto putgpr; - case FFI_TYPE_STRUCT: - { + case FFI_TYPE_STRUCT: + { #if defined(__ppc64__) - unsigned int gprSize = 0; - unsigned int fprSize = 0; + unsigned int gprSize = 0; + unsigned int fprSize = 0; - ffi64_struct_to_reg_form(*ptr, (char*)*p_argv, NULL, &fparg_count, - (char*)next_arg, &gprSize, (char*)fpr_base, &fprSize); - next_arg += gprSize / sizeof(long); - fpr_base += fprSize / sizeof(double); + ffi64_struct_to_reg_form(*ptr, (char*)*p_argv, NULL, &fparg_count, + (char*)next_arg, &gprSize, (char*)fpr_base, &fprSize); + next_arg += gprSize / sizeof(long); + fpr_base += fprSize / sizeof(double); #elif defined(__ppc__) - char* dest_cpy = (char*)next_arg; + char* dest_cpy = (char*)next_arg; - /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, - SI 4 bytes) are aligned as if they were those modes. - Structures with 3 byte in size are padded upwards. */ - unsigned size_al = (*ptr)->size; + /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, + SI 4 bytes) are aligned as if they were those modes. + Structures with 3 byte in size are padded upwards. */ + unsigned size_al = (*ptr)->size; - /* If the first member of the struct is a double, then align - the struct to double-word. */ - if ((*ptr)->elements[0]->type == FFI_TYPE_DOUBLE) - size_al = ALIGN((*ptr)->size, 8); + /* If the first member of the struct is a double, then align + the struct to double-word. */ + if ((*ptr)->elements[0]->type == FFI_TYPE_DOUBLE) + size_al = ALIGN((*ptr)->size, 8); - if (ecif->cif->abi == FFI_DARWIN) - { - if (size_al < 3) - dest_cpy += 4 - size_al; - } + if (ecif->cif->abi == FFI_DARWIN) + { + if (size_al < 3) + dest_cpy += 4 - size_al; + } - memcpy((char*)dest_cpy, (char*)*p_argv, size_al); - next_arg += (size_al + 3) / 4; + memcpy((char*)dest_cpy, (char*)*p_argv, size_al); + next_arg += (size_al + 3) / 4; #else #error undefined architecture #endif - break; - } + break; + } - case FFI_TYPE_INT: - case FFI_TYPE_UINT32: - case FFI_TYPE_SINT32: - gprvalue = *(unsigned*)*p_argv; + case FFI_TYPE_INT: + case FFI_TYPE_UINT32: + case FFI_TYPE_SINT32: + gprvalue = *(unsigned*)*p_argv; putgpr: - *next_arg++ = gprvalue; - break; + *next_arg++ = gprvalue; + break; - default: - break; - } - } + default: + break; + } + } /* Check that we didn't overrun the stack... */ //FFI_ASSERT(gpr_base <= stacktop - ASM_NEEDS_REGISTERS); //FFI_ASSERT((unsigned *)fpr_base - // <= stacktop - ASM_NEEDS_REGISTERS - NUM_GPR_ARG_REGISTERS); + // <= stacktop - ASM_NEEDS_REGISTERS - NUM_GPR_ARG_REGISTERS); //FFI_ASSERT(flags & FLAG_4_GPR_ARGUMENTS || intarg_count <= 4); } @@ -306,320 +306,320 @@ bool ffi64_struct_contains_fp( - const ffi_type* inType) + const ffi_type* inType) { - bool containsFP = false; - unsigned int i; + bool containsFP = false; + unsigned int i; - for (i = 0; inType->elements[i] != NULL && !containsFP; i++) - { - if (inType->elements[i]->type == FFI_TYPE_FLOAT || - inType->elements[i]->type == FFI_TYPE_DOUBLE || - inType->elements[i]->type == FFI_TYPE_LONGDOUBLE) - containsFP = true; - else if (inType->elements[i]->type == FFI_TYPE_STRUCT) - containsFP = ffi64_struct_contains_fp(inType->elements[i]); - } + for (i = 0; inType->elements[i] != NULL && !containsFP; i++) + { + if (inType->elements[i]->type == FFI_TYPE_FLOAT || + inType->elements[i]->type == FFI_TYPE_DOUBLE || + inType->elements[i]->type == FFI_TYPE_LONGDOUBLE) + containsFP = true; + else if (inType->elements[i]->type == FFI_TYPE_STRUCT) + containsFP = ffi64_struct_contains_fp(inType->elements[i]); + } - return containsFP; + return containsFP; } -#endif // defined(__ppc64__) +#endif // defined(__ppc64__) /* Perform machine dependent cif processing. */ ffi_status ffi_prep_cif_machdep( - ffi_cif* cif) + ffi_cif* cif) { - /* All this is for the DARWIN ABI. */ - int i; - ffi_type** ptr; - int intarg_count = 0; - int fparg_count = 0; - unsigned int flags = 0; - unsigned int size_al = 0; + /* All this is for the DARWIN ABI. */ + int i; + ffi_type** ptr; + int intarg_count = 0; + int fparg_count = 0; + unsigned int flags = 0; + unsigned int size_al = 0; - /* All the machine-independent calculation of cif->bytes will be wrong. - Redo the calculation for DARWIN. */ + /* All the machine-independent calculation of cif->bytes will be wrong. + Redo the calculation for DARWIN. */ - /* Space for the frame pointer, callee's LR, CR, etc, and for - the asm's temp regs. */ - unsigned int bytes = (6 + ASM_NEEDS_REGISTERS) * sizeof(long); + /* Space for the frame pointer, callee's LR, CR, etc, and for + the asm's temp regs. */ + unsigned int bytes = (6 + ASM_NEEDS_REGISTERS) * sizeof(long); - /* Return value handling. The rules are as follows: - - 32-bit (or less) integer values are returned in gpr3; - - Structures of size <= 4 bytes also returned in gpr3; - - 64-bit integer values and structures between 5 and 8 bytes are - returned in gpr3 and gpr4; - - Single/double FP values are returned in fpr1; - - Long double FP (if not equivalent to double) values are returned in - fpr1 and fpr2; - - Larger structures values are allocated space and a pointer is passed - as the first argument. */ - switch (cif->rtype->type) - { + /* Return value handling. The rules are as follows: + - 32-bit (or less) integer values are returned in gpr3; + - Structures of size <= 4 bytes also returned in gpr3; + - 64-bit integer values and structures between 5 and 8 bytes are + returned in gpr3 and gpr4; + - Single/double FP values are returned in fpr1; + - Long double FP (if not equivalent to double) values are returned in + fpr1 and fpr2; + - Larger structures values are allocated space and a pointer is passed + as the first argument. */ + switch (cif->rtype->type) + { #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_LONGDOUBLE: - flags |= FLAG_RETURNS_128BITS; - flags |= FLAG_RETURNS_FP; - break; -#endif // FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE + case FFI_TYPE_LONGDOUBLE: + flags |= FLAG_RETURNS_128BITS; + flags |= FLAG_RETURNS_FP; + break; +#endif // FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_DOUBLE: - flags |= FLAG_RETURNS_64BITS; - /* Fall through. */ - case FFI_TYPE_FLOAT: - flags |= FLAG_RETURNS_FP; - break; + case FFI_TYPE_DOUBLE: + flags |= FLAG_RETURNS_64BITS; + /* Fall through. */ + case FFI_TYPE_FLOAT: + flags |= FLAG_RETURNS_FP; + break; #if defined(__ppc64__) - case FFI_TYPE_POINTER: + case FFI_TYPE_POINTER: #endif - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - flags |= FLAG_RETURNS_64BITS; - break; + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + flags |= FLAG_RETURNS_64BITS; + break; - case FFI_TYPE_STRUCT: - { + case FFI_TYPE_STRUCT: + { #if defined(__ppc64__) - if (ffi64_stret_needs_ptr(cif->rtype, NULL, NULL)) - { - flags |= FLAG_RETVAL_REFERENCE; - flags |= FLAG_RETURNS_NOTHING; - intarg_count++; - } - else - { - flags |= FLAG_RETURNS_STRUCT; + if (ffi64_stret_needs_ptr(cif->rtype, NULL, NULL)) + { + flags |= FLAG_RETVAL_REFERENCE; + flags |= FLAG_RETURNS_NOTHING; + intarg_count++; + } + else + { + flags |= FLAG_RETURNS_STRUCT; - if (ffi64_struct_contains_fp(cif->rtype)) - flags |= FLAG_STRUCT_CONTAINS_FP; - } + if (ffi64_struct_contains_fp(cif->rtype)) + flags |= FLAG_STRUCT_CONTAINS_FP; + } #elif defined(__ppc__) - flags |= FLAG_RETVAL_REFERENCE; - flags |= FLAG_RETURNS_NOTHING; - intarg_count++; + flags |= FLAG_RETVAL_REFERENCE; + flags |= FLAG_RETURNS_NOTHING; + intarg_count++; #else #error undefined architecture #endif - break; - } + break; + } - case FFI_TYPE_VOID: - flags |= FLAG_RETURNS_NOTHING; - break; + case FFI_TYPE_VOID: + flags |= FLAG_RETURNS_NOTHING; + break; - default: - /* Returns 32-bit integer, or similar. Nothing to do here. */ - break; - } + default: + /* Returns 32-bit integer, or similar. Nothing to do here. */ + break; + } - /* The first NUM_GPR_ARG_REGISTERS words of integer arguments, and the - first NUM_FPR_ARG_REGISTERS fp arguments, go in registers; the rest - goes on the stack. Structures are passed as a pointer to a copy of - the structure. Stuff on the stack needs to keep proper alignment. */ - for (ptr = cif->arg_types, i = cif->nargs; i > 0; i--, ptr++) - { - switch ((*ptr)->type) - { - case FFI_TYPE_FLOAT: - case FFI_TYPE_DOUBLE: - fparg_count++; - /* If this FP arg is going on the stack, it must be - 8-byte-aligned. */ - if (fparg_count > NUM_FPR_ARG_REGISTERS - && intarg_count % 2 != 0) - intarg_count++; - break; + /* The first NUM_GPR_ARG_REGISTERS words of integer arguments, and the + first NUM_FPR_ARG_REGISTERS fp arguments, go in registers; the rest + goes on the stack. Structures are passed as a pointer to a copy of + the structure. Stuff on the stack needs to keep proper alignment. */ + for (ptr = cif->arg_types, i = cif->nargs; i > 0; i--, ptr++) + { + switch ((*ptr)->type) + { + case FFI_TYPE_FLOAT: + case FFI_TYPE_DOUBLE: + fparg_count++; + /* If this FP arg is going on the stack, it must be + 8-byte-aligned. */ + if (fparg_count > NUM_FPR_ARG_REGISTERS + && intarg_count % 2 != 0) + intarg_count++; + break; #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_LONGDOUBLE: - fparg_count += 2; - /* If this FP arg is going on the stack, it must be - 8-byte-aligned. */ + case FFI_TYPE_LONGDOUBLE: + fparg_count += 2; + /* If this FP arg is going on the stack, it must be + 8-byte-aligned. */ - if ( + if ( #if defined(__ppc64__) - fparg_count > NUM_FPR_ARG_REGISTERS + 1 + fparg_count > NUM_FPR_ARG_REGISTERS + 1 #elif defined(__ppc__) - fparg_count > NUM_FPR_ARG_REGISTERS + fparg_count > NUM_FPR_ARG_REGISTERS #else #error undefined architecture #endif - && intarg_count % 2 != 0) - intarg_count++; + && intarg_count % 2 != 0) + intarg_count++; - intarg_count += 2; - break; -#endif // FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE + intarg_count += 2; + break; +#endif // FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - /* 'long long' arguments are passed as two words, but - either both words must fit in registers or both go - on the stack. If they go on the stack, they must - be 8-byte-aligned. */ - if (intarg_count == NUM_GPR_ARG_REGISTERS - 1 - || (intarg_count >= NUM_GPR_ARG_REGISTERS - && intarg_count % 2 != 0)) - intarg_count++; + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + /* 'long long' arguments are passed as two words, but + either both words must fit in registers or both go + on the stack. If they go on the stack, they must + be 8-byte-aligned. */ + if (intarg_count == NUM_GPR_ARG_REGISTERS - 1 + || (intarg_count >= NUM_GPR_ARG_REGISTERS + && intarg_count % 2 != 0)) + intarg_count++; - intarg_count += MODE_CHOICE(2,1); + intarg_count += MODE_CHOICE(2,1); - break; + break; - case FFI_TYPE_STRUCT: - size_al = (*ptr)->size; - /* If the first member of the struct is a double, then align - the struct to double-word. */ - if ((*ptr)->elements[0]->type == FFI_TYPE_DOUBLE) - size_al = ALIGN((*ptr)->size, 8); + case FFI_TYPE_STRUCT: + size_al = (*ptr)->size; + /* If the first member of the struct is a double, then align + the struct to double-word. */ + if ((*ptr)->elements[0]->type == FFI_TYPE_DOUBLE) + size_al = ALIGN((*ptr)->size, 8); #if defined(__ppc64__) - // Look for FP struct members. - unsigned int j; + // Look for FP struct members. + unsigned int j; - for (j = 0; (*ptr)->elements[j] != NULL; j++) - { - if ((*ptr)->elements[j]->type == FFI_TYPE_FLOAT || - (*ptr)->elements[j]->type == FFI_TYPE_DOUBLE) - { - fparg_count++; + for (j = 0; (*ptr)->elements[j] != NULL; j++) + { + if ((*ptr)->elements[j]->type == FFI_TYPE_FLOAT || + (*ptr)->elements[j]->type == FFI_TYPE_DOUBLE) + { + fparg_count++; - if (fparg_count > NUM_FPR_ARG_REGISTERS) - intarg_count++; - } - else if ((*ptr)->elements[j]->type == FFI_TYPE_LONGDOUBLE) - { - fparg_count += 2; + if (fparg_count > NUM_FPR_ARG_REGISTERS) + intarg_count++; + } + else if ((*ptr)->elements[j]->type == FFI_TYPE_LONGDOUBLE) + { + fparg_count += 2; - if (fparg_count > NUM_FPR_ARG_REGISTERS + 1) - intarg_count += 2; - } - else - intarg_count++; - } + if (fparg_count > NUM_FPR_ARG_REGISTERS + 1) + intarg_count += 2; + } + else + intarg_count++; + } #elif defined(__ppc__) - intarg_count += (size_al + 3) / 4; + intarg_count += (size_al + 3) / 4; #else #error undefined architecture #endif - break; + break; - default: - /* Everything else is passed as a 4/8-byte word in a GPR, either - the object itself or a pointer to it. */ - intarg_count++; - break; - } - } + default: + /* Everything else is passed as a 4/8-byte word in a GPR, either + the object itself or a pointer to it. */ + intarg_count++; + break; + } + } - /* Space for the FPR registers, if needed. */ - if (fparg_count != 0) - { - flags |= FLAG_FP_ARGUMENTS; + /* Space for the FPR registers, if needed. */ + if (fparg_count != 0) + { + flags |= FLAG_FP_ARGUMENTS; #if defined(__ppc64__) - bytes += (NUM_FPR_ARG_REGISTERS + 1) * sizeof(double); + bytes += (NUM_FPR_ARG_REGISTERS + 1) * sizeof(double); #elif defined(__ppc__) - bytes += NUM_FPR_ARG_REGISTERS * sizeof(double); + bytes += NUM_FPR_ARG_REGISTERS * sizeof(double); #else #error undefined architecture #endif - } + } - /* Stack space. */ + /* Stack space. */ #if defined(__ppc64__) - if ((intarg_count + fparg_count) > NUM_GPR_ARG_REGISTERS) - bytes += (intarg_count + fparg_count) * sizeof(long); + if ((intarg_count + fparg_count) > NUM_GPR_ARG_REGISTERS) + bytes += (intarg_count + fparg_count) * sizeof(long); #elif defined(__ppc__) - if ((intarg_count + 2 * fparg_count) > NUM_GPR_ARG_REGISTERS) - bytes += (intarg_count + 2 * fparg_count) * sizeof(long); + if ((intarg_count + 2 * fparg_count) > NUM_GPR_ARG_REGISTERS) + bytes += (intarg_count + 2 * fparg_count) * sizeof(long); #else #error undefined architecture #endif - else - bytes += NUM_GPR_ARG_REGISTERS * sizeof(long); + else + bytes += NUM_GPR_ARG_REGISTERS * sizeof(long); - /* The stack space allocated needs to be a multiple of 16/32 bytes. */ - bytes = SF_ROUND(bytes); + /* The stack space allocated needs to be a multiple of 16/32 bytes. */ + bytes = SF_ROUND(bytes); - cif->flags = flags; - cif->bytes = bytes; + cif->flags = flags; + cif->bytes = bytes; - return FFI_OK; + return FFI_OK; } /*@-declundef@*/ /*@-exportheader@*/ extern void ffi_call_AIX( -/*@out@*/ extended_cif*, - unsigned, - unsigned, -/*@out@*/ unsigned*, - void (*fn)(void), - void (*fn2)(extended_cif*, unsigned *const)); +/*@out@*/ extended_cif*, + unsigned, + unsigned, +/*@out@*/ unsigned*, + void (*fn)(void), + void (*fn2)(extended_cif*, unsigned *const)); extern void ffi_call_DARWIN( -/*@out@*/ extended_cif*, - unsigned long, - unsigned, -/*@out@*/ unsigned*, - void (*fn)(void), - void (*fn2)(extended_cif*, unsigned *const)); +/*@out@*/ extended_cif*, + unsigned long, + unsigned, +/*@out@*/ unsigned*, + void (*fn)(void), + void (*fn2)(extended_cif*, unsigned *const)); /*@=declundef@*/ /*@=exportheader@*/ void ffi_call( -/*@dependent@*/ ffi_cif* cif, - void (*fn)(void), -/*@out@*/ void* rvalue, -/*@dependent@*/ void** avalue) +/*@dependent@*/ ffi_cif* cif, + void (*fn)(void), +/*@out@*/ void* rvalue, +/*@dependent@*/ void** avalue) { - extended_cif ecif; + extended_cif ecif; - ecif.cif = cif; - ecif.avalue = avalue; + ecif.cif = cif; + ecif.avalue = avalue; - /* If the return value is a struct and we don't have a return - value address then we need to make one. */ - if ((rvalue == NULL) && - (cif->rtype->type == FFI_TYPE_STRUCT)) - { - /*@-sysunrecog@*/ - ecif.rvalue = alloca(cif->rtype->size); - /*@=sysunrecog@*/ - } - else - ecif.rvalue = rvalue; + /* If the return value is a struct and we don't have a return + value address then we need to make one. */ + if ((rvalue == NULL) && + (cif->rtype->type == FFI_TYPE_STRUCT)) + { + /*@-sysunrecog@*/ + ecif.rvalue = alloca(cif->rtype->size); + /*@=sysunrecog@*/ + } + else + ecif.rvalue = rvalue; - switch (cif->abi) - { - case FFI_AIX: - /*@-usedef@*/ - ffi_call_AIX(&ecif, -cif->bytes, - cif->flags, ecif.rvalue, fn, ffi_prep_args); - /*@=usedef@*/ - break; + switch (cif->abi) + { + case FFI_AIX: + /*@-usedef@*/ + ffi_call_AIX(&ecif, -cif->bytes, + cif->flags, ecif.rvalue, fn, ffi_prep_args); + /*@=usedef@*/ + break; - case FFI_DARWIN: - /*@-usedef@*/ - ffi_call_DARWIN(&ecif, -(long)cif->bytes, - cif->flags, ecif.rvalue, fn, ffi_prep_args); - /*@=usedef@*/ - break; + case FFI_DARWIN: + /*@-usedef@*/ + ffi_call_DARWIN(&ecif, -(long)cif->bytes, + cif->flags, ecif.rvalue, fn, ffi_prep_args); + /*@=usedef@*/ + break; - default: - FFI_ASSERT(0); - break; + default: + FFI_ASSERT(0); + break; } } @@ -627,53 +627,53 @@ and aix_clsoure.S SP previous -> +---------------------------------------+ <--- child frame - | back chain to caller 4 | - +---------------------------------------+ 4 - | saved CR 4 | - +---------------------------------------+ 8 - | saved LR 4 | - +---------------------------------------+ 12 - | reserved for compilers 4 | - +---------------------------------------+ 16 - | reserved for binders 4 | - +---------------------------------------+ 20 - | saved TOC pointer 4 | - +---------------------------------------+ 24 - | always reserved 8*4=32 (previous GPRs)| - | according to the linkage convention | - | from AIX | - +---------------------------------------+ 56 - | our FPR area 13*8=104 | - | f1 | - | . | - | f13 | - +---------------------------------------+ 160 - | result area 8 | - +---------------------------------------+ 168 - | alignment to the next multiple of 16 | + | back chain to caller 4 | + +---------------------------------------+ 4 + | saved CR 4 | + +---------------------------------------+ 8 + | saved LR 4 | + +---------------------------------------+ 12 + | reserved for compilers 4 | + +---------------------------------------+ 16 + | reserved for binders 4 | + +---------------------------------------+ 20 + | saved TOC pointer 4 | + +---------------------------------------+ 24 + | always reserved 8*4=32 (previous GPRs)| + | according to the linkage convention | + | from AIX | + +---------------------------------------+ 56 + | our FPR area 13*8=104 | + | f1 | + | . | + | f13 | + +---------------------------------------+ 160 + | result area 8 | + +---------------------------------------+ 168 + | alignement to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame - | back chain to caller 4 | - +---------------------------------------+ 180 - | saved CR 4 | - +---------------------------------------+ 184 - | saved LR 4 | - +---------------------------------------+ 188 - | reserved for compilers 4 | - +---------------------------------------+ 192 - | reserved for binders 4 | - +---------------------------------------+ 196 - | saved TOC pointer 4 | - +---------------------------------------+ 200 - | always reserved 8*4=32 we store our | - | GPRs here | - | r3 | - | . | - | r10 | - +---------------------------------------+ 232 - | overflow part | - +---------------------------------------+ xxx - | ???? | - +---------------------------------------+ xxx + | back chain to caller 4 | + +---------------------------------------+ 180 + | saved CR 4 | + +---------------------------------------+ 184 + | saved LR 4 | + +---------------------------------------+ 188 + | reserved for compilers 4 | + +---------------------------------------+ 192 + | reserved for binders 4 | + +---------------------------------------+ 196 + | saved TOC pointer 4 | + +---------------------------------------+ 200 + | always reserved 8*4=32 we store our | + | GPRs here | + | r3 | + | . | + | r10 | + +---------------------------------------+ 232 + | overflow part | + +---------------------------------------+ xxx + | ???? | + +---------------------------------------+ xxx */ #if !defined(POWERPC_DARWIN) @@ -682,1095 +682,1095 @@ static void flush_icache( - char* addr) + char* addr) { #ifndef _AIX - __asm__ volatile ( - "dcbf 0,%0\n" - "sync\n" - "icbi 0,%0\n" - "sync\n" - "isync" - : : "r" (addr) : "memory"); + __asm__ volatile ( + "dcbf 0,%0\n" + "sync\n" + "icbi 0,%0\n" + "sync\n" + "isync" + : : "r" (addr) : "memory"); #endif } static void flush_range( - char* addr, - int size) + char* addr, + int size) { - int i; + int i; - for (i = 0; i < size; i += MIN_LINE_SIZE) - flush_icache(addr + i); + for (i = 0; i < size; i += MIN_LINE_SIZE) + flush_icache(addr + i); - flush_icache(addr + size - 1); + flush_icache(addr + size - 1); } -#endif // !defined(POWERPC_DARWIN) +#endif // !defined(POWERPC_DARWIN) ffi_status ffi_prep_closure( - ffi_closure* closure, - ffi_cif* cif, - void (*fun)(ffi_cif*, void*, void**, void*), - void* user_data) + ffi_closure* closure, + ffi_cif* cif, + void (*fun)(ffi_cif*, void*, void**, void*), + void* user_data) { - switch (cif->abi) - { - case FFI_DARWIN: - { - FFI_ASSERT (cif->abi == FFI_DARWIN); + switch (cif->abi) + { + case FFI_DARWIN: + { + FFI_ASSERT (cif->abi == FFI_DARWIN); - unsigned int* tramp = (unsigned int*)&closure->tramp[0]; + unsigned int* tramp = (unsigned int*)&closure->tramp[0]; #if defined(__ppc64__) - tramp[0] = 0x7c0802a6; // mflr r0 - tramp[1] = 0x429f0005; // bcl 20,31,+0x8 - tramp[2] = 0x7d6802a6; // mflr r11 - tramp[3] = 0x7c0803a6; // mtlr r0 - tramp[4] = 0xe98b0018; // ld r12,24(r11) - tramp[5] = 0x7d8903a6; // mtctr r12 - tramp[6] = 0xe96b0020; // ld r11,32(r11) - tramp[7] = 0x4e800420; // bctr - *(unsigned long*)&tramp[8] = (unsigned long)ffi_closure_ASM; - *(unsigned long*)&tramp[10] = (unsigned long)closure; + tramp[0] = 0x7c0802a6; // mflr r0 + tramp[1] = 0x429f0005; // bcl 20,31,+0x8 + tramp[2] = 0x7d6802a6; // mflr r11 + tramp[3] = 0x7c0803a6; // mtlr r0 + tramp[4] = 0xe98b0018; // ld r12,24(r11) + tramp[5] = 0x7d8903a6; // mtctr r12 + tramp[6] = 0xe96b0020; // ld r11,32(r11) + tramp[7] = 0x4e800420; // bctr + *(unsigned long*)&tramp[8] = (unsigned long)ffi_closure_ASM; + *(unsigned long*)&tramp[10] = (unsigned long)closure; #elif defined(__ppc__) - tramp[0] = 0x7c0802a6; // mflr r0 - tramp[1] = 0x429f0005; // bcl 20,31,+0x8 - tramp[2] = 0x7d6802a6; // mflr r11 - tramp[3] = 0x7c0803a6; // mtlr r0 - tramp[4] = 0x818b0018; // lwz r12,24(r11) - tramp[5] = 0x7d8903a6; // mtctr r12 - tramp[6] = 0x816b001c; // lwz r11,28(r11) - tramp[7] = 0x4e800420; // bctr - tramp[8] = (unsigned long)ffi_closure_ASM; - tramp[9] = (unsigned long)closure; + tramp[0] = 0x7c0802a6; // mflr r0 + tramp[1] = 0x429f0005; // bcl 20,31,+0x8 + tramp[2] = 0x7d6802a6; // mflr r11 + tramp[3] = 0x7c0803a6; // mtlr r0 + tramp[4] = 0x818b0018; // lwz r12,24(r11) + tramp[5] = 0x7d8903a6; // mtctr r12 + tramp[6] = 0x816b001c; // lwz r11,28(r11) + tramp[7] = 0x4e800420; // bctr + tramp[8] = (unsigned long)ffi_closure_ASM; + tramp[9] = (unsigned long)closure; #else #error undefined architecture #endif - closure->cif = cif; - closure->fun = fun; - closure->user_data = user_data; + closure->cif = cif; + closure->fun = fun; + closure->user_data = user_data; - // Flush the icache. Only necessary on Darwin. + // Flush the icache. Only necessary on Darwin. #if defined(POWERPC_DARWIN) - sys_icache_invalidate(closure->tramp, FFI_TRAMPOLINE_SIZE); + sys_icache_invalidate(closure->tramp, FFI_TRAMPOLINE_SIZE); #else - flush_range(closure->tramp, FFI_TRAMPOLINE_SIZE); + flush_range(closure->tramp, FFI_TRAMPOLINE_SIZE); #endif - break; - } + break; + } - case FFI_AIX: - { - FFI_ASSERT (cif->abi == FFI_AIX); + case FFI_AIX: + { + FFI_ASSERT (cif->abi == FFI_AIX); - ffi_aix_trampoline_struct* tramp_aix = - (ffi_aix_trampoline_struct*)(closure->tramp); - aix_fd* fd = (aix_fd*)(void*)ffi_closure_ASM; + ffi_aix_trampoline_struct* tramp_aix = + (ffi_aix_trampoline_struct*)(closure->tramp); + aix_fd* fd = (aix_fd*)(void*)ffi_closure_ASM; - tramp_aix->code_pointer = fd->code_pointer; - tramp_aix->toc = fd->toc; - tramp_aix->static_chain = closure; - closure->cif = cif; - closure->fun = fun; - closure->user_data = user_data; - break; - } + tramp_aix->code_pointer = fd->code_pointer; + tramp_aix->toc = fd->toc; + tramp_aix->static_chain = closure; + closure->cif = cif; + closure->fun = fun; + closure->user_data = user_data; + break; + } - default: - return FFI_BAD_ABI; - } + default: + return FFI_BAD_ABI; + } - return FFI_OK; + return FFI_OK; } #if defined(__ppc__) - typedef double ldbits[2]; + typedef double ldbits[2]; - typedef union - { - ldbits lb; - long double ld; - } ldu; + typedef union + { + ldbits lb; + long double ld; + } ldu; #endif typedef union { - float f; - double d; + float f; + double d; } ffi_dblfl; -/* The trampoline invokes ffi_closure_ASM, and on entry, r11 holds the - address of the closure. After storing the registers that could possibly - contain parameters to be passed into the stack frame and setting up space - for a return value, ffi_closure_ASM invokes the following helper function - to do most of the work. */ +/* The trampoline invokes ffi_closure_ASM, and on entry, r11 holds the + address of the closure. After storing the registers that could possibly + contain parameters to be passed into the stack frame and setting up space + for a return value, ffi_closure_ASM invokes the following helper function + to do most of the work. */ int ffi_closure_helper_DARWIN( - ffi_closure* closure, - void* rvalue, - unsigned long* pgr, - ffi_dblfl* pfr) + ffi_closure* closure, + void* rvalue, + unsigned long* pgr, + ffi_dblfl* pfr) { - /* rvalue is the pointer to space for return value in closure assembly - pgr is the pointer to where r3-r10 are stored in ffi_closure_ASM - pfr is the pointer to where f1-f13 are stored in ffi_closure_ASM. */ + /* rvalue is the pointer to space for return value in closure assembly + pgr is the pointer to where r3-r10 are stored in ffi_closure_ASM + pfr is the pointer to where f1-f13 are stored in ffi_closure_ASM. */ #if defined(__ppc__) - ldu temp_ld; + ldu temp_ld; #endif - double temp; - unsigned int i; - unsigned int nf = 0; /* number of FPRs already used. */ - unsigned int ng = 0; /* number of GPRs already used. */ - ffi_cif* cif = closure->cif; - long avn = cif->nargs; - void** avalue = alloca(cif->nargs * sizeof(void*)); - ffi_type** arg_types = cif->arg_types; + double temp; + unsigned int i; + unsigned int nf = 0; /* number of FPRs already used. */ + unsigned int ng = 0; /* number of GPRs already used. */ + ffi_cif* cif = closure->cif; + long avn = cif->nargs; + void** avalue = alloca(cif->nargs * sizeof(void*)); + ffi_type** arg_types = cif->arg_types; - /* Copy the caller's structure return value address so that the closure - returns the data directly to the caller. */ + /* Copy the caller's structure return value address so that the closure + returns the data directly to the caller. */ #if defined(__ppc64__) - if (cif->rtype->type == FFI_TYPE_STRUCT && - ffi64_stret_needs_ptr(cif->rtype, NULL, NULL)) + if (cif->rtype->type == FFI_TYPE_STRUCT && + ffi64_stret_needs_ptr(cif->rtype, NULL, NULL)) #elif defined(__ppc__) - if (cif->rtype->type == FFI_TYPE_STRUCT) + if (cif->rtype->type == FFI_TYPE_STRUCT) #else #error undefined architecture #endif - { - rvalue = (void*)*pgr; - pgr++; - ng++; - } + { + rvalue = (void*)*pgr; + pgr++; + ng++; + } - /* Grab the addresses of the arguments from the stack frame. */ - for (i = 0; i < avn; i++) - { - switch (arg_types[i]->type) - { - case FFI_TYPE_SINT8: - case FFI_TYPE_UINT8: - avalue[i] = (char*)pgr + MODE_CHOICE(3,7); - ng++; - pgr++; - break; + /* Grab the addresses of the arguments from the stack frame. */ + for (i = 0; i < avn; i++) + { + switch (arg_types[i]->type) + { + case FFI_TYPE_SINT8: + case FFI_TYPE_UINT8: + avalue[i] = (char*)pgr + MODE_CHOICE(3,7); + ng++; + pgr++; + break; - case FFI_TYPE_SINT16: - case FFI_TYPE_UINT16: - avalue[i] = (char*)pgr + MODE_CHOICE(2,6); - ng++; - pgr++; - break; + case FFI_TYPE_SINT16: + case FFI_TYPE_UINT16: + avalue[i] = (char*)pgr + MODE_CHOICE(2,6); + ng++; + pgr++; + break; #if defined(__ppc__) - case FFI_TYPE_POINTER: + case FFI_TYPE_POINTER: #endif - case FFI_TYPE_SINT32: - case FFI_TYPE_UINT32: - avalue[i] = (char*)pgr + MODE_CHOICE(0,4); - ng++; - pgr++; + case FFI_TYPE_SINT32: + case FFI_TYPE_UINT32: + avalue[i] = (char*)pgr + MODE_CHOICE(0,4); + ng++; + pgr++; - break; + break; - case FFI_TYPE_STRUCT: - if (cif->abi == FFI_DARWIN) - { + case FFI_TYPE_STRUCT: + if (cif->abi == FFI_DARWIN) + { #if defined(__ppc64__) - unsigned int gprSize = 0; - unsigned int fprSize = 0; - unsigned int savedFPRSize = fprSize; + unsigned int gprSize = 0; + unsigned int fprSize = 0; + unsigned int savedFPRSize = fprSize; - avalue[i] = alloca(arg_types[i]->size); - ffi64_struct_to_ram_form(arg_types[i], (const char*)pgr, - &gprSize, (const char*)pfr, &fprSize, &nf, avalue[i], NULL); + avalue[i] = alloca(arg_types[i]->size); + ffi64_struct_to_ram_form(arg_types[i], (const char*)pgr, + &gprSize, (const char*)pfr, &fprSize, &nf, avalue[i], NULL); - ng += gprSize / sizeof(long); - pgr += gprSize / sizeof(long); - pfr += (fprSize - savedFPRSize) / sizeof(double); + ng += gprSize / sizeof(long); + pgr += gprSize / sizeof(long); + pfr += (fprSize - savedFPRSize) / sizeof(double); #elif defined(__ppc__) - /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, - SI 4 bytes) are aligned as if they were those modes. */ - unsigned int size_al = size_al = arg_types[i]->size; + /* Structures that match the basic modes (QI 1 byte, HI 2 bytes, + SI 4 bytes) are aligned as if they were those modes. */ + unsigned int size_al = size_al = arg_types[i]->size; - /* If the first member of the struct is a double, then align - the struct to double-word. */ - if (arg_types[i]->elements[0]->type == FFI_TYPE_DOUBLE) - size_al = ALIGN(arg_types[i]->size, 8); + /* If the first member of the struct is a double, then align + the struct to double-word. */ + if (arg_types[i]->elements[0]->type == FFI_TYPE_DOUBLE) + size_al = ALIGN(arg_types[i]->size, 8); - if (size_al < 3) - avalue[i] = (void*)pgr + MODE_CHOICE(4,8) - size_al; - else - avalue[i] = (void*)pgr; + if (size_al < 3) + avalue[i] = (void*)pgr + MODE_CHOICE(4,8) - size_al; + else + avalue[i] = (void*)pgr; - ng += (size_al + 3) / sizeof(long); - pgr += (size_al + 3) / sizeof(long); + ng += (size_al + 3) / sizeof(long); + pgr += (size_al + 3) / sizeof(long); #else #error undefined architecture #endif - } + } - break; + break; #if defined(__ppc64__) - case FFI_TYPE_POINTER: + case FFI_TYPE_POINTER: #endif - case FFI_TYPE_SINT64: - case FFI_TYPE_UINT64: - /* Long long ints are passed in 1 or 2 GPRs. */ - avalue[i] = pgr; - ng += MODE_CHOICE(2,1); - pgr += MODE_CHOICE(2,1); + case FFI_TYPE_SINT64: + case FFI_TYPE_UINT64: + /* Long long ints are passed in 1 or 2 GPRs. */ + avalue[i] = pgr; + ng += MODE_CHOICE(2,1); + pgr += MODE_CHOICE(2,1); - break; + break; - case FFI_TYPE_FLOAT: - /* A float value consumes a GPR. - There are 13 64-bit floating point registers. */ - if (nf < NUM_FPR_ARG_REGISTERS) - { - temp = pfr->d; - pfr->f = (float)temp; - avalue[i] = pfr; - pfr++; - } - else - avalue[i] = pgr; + case FFI_TYPE_FLOAT: + /* A float value consumes a GPR. + There are 13 64-bit floating point registers. */ + if (nf < NUM_FPR_ARG_REGISTERS) + { + temp = pfr->d; + pfr->f = (float)temp; + avalue[i] = pfr; + pfr++; + } + else + avalue[i] = pgr; - nf++; - ng++; - pgr++; - break; + nf++; + ng++; + pgr++; + break; - case FFI_TYPE_DOUBLE: - /* A double value consumes one or two GPRs. - There are 13 64bit floating point registers. */ - if (nf < NUM_FPR_ARG_REGISTERS) - { - avalue[i] = pfr; - pfr++; - } - else - avalue[i] = pgr; + case FFI_TYPE_DOUBLE: + /* A double value consumes one or two GPRs. + There are 13 64bit floating point registers. */ + if (nf < NUM_FPR_ARG_REGISTERS) + { + avalue[i] = pfr; + pfr++; + } + else + avalue[i] = pgr; - nf++; - ng += MODE_CHOICE(2,1); - pgr += MODE_CHOICE(2,1); + nf++; + ng += MODE_CHOICE(2,1); + pgr += MODE_CHOICE(2,1); - break; + break; #if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE - case FFI_TYPE_LONGDOUBLE: + case FFI_TYPE_LONGDOUBLE: #if defined(__ppc64__) - if (nf < NUM_FPR_ARG_REGISTERS) - { - avalue[i] = pfr; - pfr += 2; - } + if (nf < NUM_FPR_ARG_REGISTERS) + { + avalue[i] = pfr; + pfr += 2; + } #elif defined(__ppc__) - /* A long double value consumes 2/4 GPRs and 2 FPRs. - There are 13 64bit floating point registers. */ - if (nf < NUM_FPR_ARG_REGISTERS - 1) - { - avalue[i] = pfr; - pfr += 2; - } - /* Here we have the situation where one part of the long double - is stored in fpr13 and the other part is already on the stack. - We use a union to pass the long double to avalue[i]. */ - else if (nf == NUM_FPR_ARG_REGISTERS - 1) - { - memcpy (&temp_ld.lb[0], pfr, sizeof(temp_ld.lb[0])); - memcpy (&temp_ld.lb[1], pgr + 2, sizeof(temp_ld.lb[1])); - avalue[i] = &temp_ld.ld; - } + /* A long double value consumes 2/4 GPRs and 2 FPRs. + There are 13 64bit floating point registers. */ + if (nf < NUM_FPR_ARG_REGISTERS - 1) + { + avalue[i] = pfr; + pfr += 2; + } + /* Here we have the situation where one part of the long double + is stored in fpr13 and the other part is already on the stack. + We use a union to pass the long double to avalue[i]. */ + else if (nf == NUM_FPR_ARG_REGISTERS - 1) + { + memcpy (&temp_ld.lb[0], pfr, sizeof(temp_ld.lb[0])); + memcpy (&temp_ld.lb[1], pgr + 2, sizeof(temp_ld.lb[1])); + avalue[i] = &temp_ld.ld; + } #else #error undefined architecture #endif - else - avalue[i] = pgr; + else + avalue[i] = pgr; - nf += 2; - ng += MODE_CHOICE(4,2); - pgr += MODE_CHOICE(4,2); + nf += 2; + ng += MODE_CHOICE(4,2); + pgr += MODE_CHOICE(4,2); - break; + break; -#endif /* FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE */ +#endif /* FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE */ - default: - FFI_ASSERT(0); - break; - } - } + default: + FFI_ASSERT(0); + break; + } + } - (closure->fun)(cif, rvalue, avalue, closure->user_data); + (closure->fun)(cif, rvalue, avalue, closure->user_data); - /* Tell ffi_closure_ASM to perform return type promotions. */ - return cif->rtype->type; + /* Tell ffi_closure_ASM to perform return type promotions. */ + return cif->rtype->type; } #if defined(__ppc64__) -/* ffi64_struct_to_ram_form +/* ffi64_struct_to_ram_form - Rebuild a struct's natural layout from buffers of concatenated registers. - Return the number of registers used. - inGPRs[0-7] == r3, inFPRs[0-7] == f1 ... + Rebuild a struct's natural layout from buffers of concatenated registers. + Return the number of registers used. + inGPRs[0-7] == r3, inFPRs[0-7] == f1 ... */ void ffi64_struct_to_ram_form( - const ffi_type* inType, - const char* inGPRs, - unsigned int* ioGPRMarker, - const char* inFPRs, - unsigned int* ioFPRMarker, - unsigned int* ioFPRsUsed, - char* outStruct, // caller-allocated - unsigned int* ioStructMarker) + const ffi_type* inType, + const char* inGPRs, + unsigned int* ioGPRMarker, + const char* inFPRs, + unsigned int* ioFPRMarker, + unsigned int* ioFPRsUsed, + char* outStruct, // caller-allocated + unsigned int* ioStructMarker) { - unsigned int srcGMarker = 0; - unsigned int srcFMarker = 0; - unsigned int savedFMarker = 0; - unsigned int fprsUsed = 0; - unsigned int savedFPRsUsed = 0; - unsigned int destMarker = 0; + unsigned int srcGMarker = 0; + unsigned int srcFMarker = 0; + unsigned int savedFMarker = 0; + unsigned int fprsUsed = 0; + unsigned int savedFPRsUsed = 0; + unsigned int destMarker = 0; - static unsigned int recurseCount = 0; + static unsigned int recurseCount = 0; - if (ioGPRMarker) - srcGMarker = *ioGPRMarker; + if (ioGPRMarker) + srcGMarker = *ioGPRMarker; - if (ioFPRMarker) - { - srcFMarker = *ioFPRMarker; - savedFMarker = srcFMarker; - } + if (ioFPRMarker) + { + srcFMarker = *ioFPRMarker; + savedFMarker = srcFMarker; + } - if (ioFPRsUsed) - { - fprsUsed = *ioFPRsUsed; - savedFPRsUsed = fprsUsed; - } + if (ioFPRsUsed) + { + fprsUsed = *ioFPRsUsed; + savedFPRsUsed = fprsUsed; + } - if (ioStructMarker) - destMarker = *ioStructMarker; + if (ioStructMarker) + destMarker = *ioStructMarker; - size_t i; + size_t i; - switch (inType->size) - { - case 1: case 2: case 4: - srcGMarker += 8 - inType->size; - break; + switch (inType->size) + { + case 1: case 2: case 4: + srcGMarker += 8 - inType->size; + break; - default: - break; - } + default: + break; + } - for (i = 0; inType->elements[i] != NULL; i++) - { - switch (inType->elements[i]->type) - { - case FFI_TYPE_FLOAT: - srcFMarker = ALIGN(srcFMarker, 4); - srcGMarker = ALIGN(srcGMarker, 4); - destMarker = ALIGN(destMarker, 4); + for (i = 0; inType->elements[i] != NULL; i++) + { + switch (inType->elements[i]->type) + { + case FFI_TYPE_FLOAT: + srcFMarker = ALIGN(srcFMarker, 4); + srcGMarker = ALIGN(srcGMarker, 4); + destMarker = ALIGN(destMarker, 4); - if (fprsUsed < NUM_FPR_ARG_REGISTERS) - { - *(float*)&outStruct[destMarker] = - (float)*(double*)&inFPRs[srcFMarker]; - srcFMarker += 8; - fprsUsed++; - } - else - *(float*)&outStruct[destMarker] = - (float)*(double*)&inGPRs[srcGMarker]; + if (fprsUsed < NUM_FPR_ARG_REGISTERS) + { + *(float*)&outStruct[destMarker] = + (float)*(double*)&inFPRs[srcFMarker]; + srcFMarker += 8; + fprsUsed++; + } + else + *(float*)&outStruct[destMarker] = + (float)*(double*)&inGPRs[srcGMarker]; - srcGMarker += 4; - destMarker += 4; + srcGMarker += 4; + destMarker += 4; - // Skip to next GPR if next element won't fit and we're - // not already at a register boundary. - if (inType->elements[i + 1] != NULL && (destMarker % 8)) - { - if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && - (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || - (ALIGN(srcGMarker, 8) - srcGMarker) < 2) && - (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || - (ALIGN(srcGMarker, 8) - srcGMarker) < 4)) - srcGMarker = ALIGN(srcGMarker, 8); - } + // Skip to next GPR if next element won't fit and we're + // not already at a register boundary. + if (inType->elements[i + 1] != NULL && (destMarker % 8)) + { + if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && + (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || + (ALIGN(srcGMarker, 8) - srcGMarker) < 2) && + (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || + (ALIGN(srcGMarker, 8) - srcGMarker) < 4)) + srcGMarker = ALIGN(srcGMarker, 8); + } - break; + break; - case FFI_TYPE_DOUBLE: - srcFMarker = ALIGN(srcFMarker, 8); - destMarker = ALIGN(destMarker, 8); + case FFI_TYPE_DOUBLE: + srcFMarker = ALIGN(srcFMarker, 8); + destMarker = ALIGN(destMarker, 8); - if (fprsUsed < NUM_FPR_ARG_REGISTERS) - { - *(double*)&outStruct[destMarker] = - *(double*)&inFPRs[srcFMarker]; - srcFMarker += 8; - fprsUsed++; - } - else - *(double*)&outStruct[destMarker] = - *(double*)&inGPRs[srcGMarker]; + if (fprsUsed < NUM_FPR_ARG_REGISTERS) + { + *(double*)&outStruct[destMarker] = + *(double*)&inFPRs[srcFMarker]; + srcFMarker += 8; + fprsUsed++; + } + else + *(double*)&outStruct[destMarker] = + *(double*)&inGPRs[srcGMarker]; - destMarker += 8; + destMarker += 8; - // Skip next GPR - srcGMarker += 8; - srcGMarker = ALIGN(srcGMarker, 8); + // Skip next GPR + srcGMarker += 8; + srcGMarker = ALIGN(srcGMarker, 8); - break; + break; - case FFI_TYPE_LONGDOUBLE: - destMarker = ALIGN(destMarker, 16); + case FFI_TYPE_LONGDOUBLE: + destMarker = ALIGN(destMarker, 16); - if (fprsUsed < NUM_FPR_ARG_REGISTERS) - { - srcFMarker = ALIGN(srcFMarker, 8); - srcGMarker = ALIGN(srcGMarker, 8); - *(long double*)&outStruct[destMarker] = - *(long double*)&inFPRs[srcFMarker]; - srcFMarker += 16; - fprsUsed += 2; - } - else - { - srcFMarker = ALIGN(srcFMarker, 16); - srcGMarker = ALIGN(srcGMarker, 16); - *(long double*)&outStruct[destMarker] = - *(long double*)&inGPRs[srcGMarker]; - } + if (fprsUsed < NUM_FPR_ARG_REGISTERS) + { + srcFMarker = ALIGN(srcFMarker, 8); + srcGMarker = ALIGN(srcGMarker, 8); + *(long double*)&outStruct[destMarker] = + *(long double*)&inFPRs[srcFMarker]; + srcFMarker += 16; + fprsUsed += 2; + } + else + { + srcFMarker = ALIGN(srcFMarker, 16); + srcGMarker = ALIGN(srcGMarker, 16); + *(long double*)&outStruct[destMarker] = + *(long double*)&inGPRs[srcGMarker]; + } - destMarker += 16; + destMarker += 16; - // Skip next 2 GPRs - srcGMarker += 16; - srcGMarker = ALIGN(srcGMarker, 8); + // Skip next 2 GPRs + srcGMarker += 16; + srcGMarker = ALIGN(srcGMarker, 8); - break; + break; - case FFI_TYPE_UINT8: - case FFI_TYPE_SINT8: - { - if (inType->alignment == 1) // chars only - { - if (inType->size == 1) - outStruct[destMarker++] = inGPRs[srcGMarker++]; - else if (inType->size == 2) - { - outStruct[destMarker++] = inGPRs[srcGMarker++]; - outStruct[destMarker++] = inGPRs[srcGMarker++]; - i++; - } - else - { - memcpy(&outStruct[destMarker], - &inGPRs[srcGMarker], inType->size); - srcGMarker += inType->size; - destMarker += inType->size; - i += inType->size - 1; - } - } - else // chars and other stuff - { - outStruct[destMarker++] = inGPRs[srcGMarker++]; + case FFI_TYPE_UINT8: + case FFI_TYPE_SINT8: + { + if (inType->alignment == 1) // chars only + { + if (inType->size == 1) + outStruct[destMarker++] = inGPRs[srcGMarker++]; + else if (inType->size == 2) + { + outStruct[destMarker++] = inGPRs[srcGMarker++]; + outStruct[destMarker++] = inGPRs[srcGMarker++]; + i++; + } + else + { + memcpy(&outStruct[destMarker], + &inGPRs[srcGMarker], inType->size); + srcGMarker += inType->size; + destMarker += inType->size; + i += inType->size - 1; + } + } + else // chars and other stuff + { + outStruct[destMarker++] = inGPRs[srcGMarker++]; - // Skip to next GPR if next element won't fit and we're - // not already at a register boundary. - if (inType->elements[i + 1] != NULL && (srcGMarker % 8)) - { - if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && - (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || - (ALIGN(srcGMarker, 8) - srcGMarker) < 2) && - (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || - (ALIGN(srcGMarker, 8) - srcGMarker) < 4)) - srcGMarker = ALIGN(srcGMarker, inType->alignment); // was 8 - } - } + // Skip to next GPR if next element won't fit and we're + // not already at a register boundary. + if (inType->elements[i + 1] != NULL && (srcGMarker % 8)) + { + if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && + (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || + (ALIGN(srcGMarker, 8) - srcGMarker) < 2) && + (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || + (ALIGN(srcGMarker, 8) - srcGMarker) < 4)) + srcGMarker = ALIGN(srcGMarker, inType->alignment); // was 8 + } + } - break; - } + break; + } - case FFI_TYPE_UINT16: - case FFI_TYPE_SINT16: - srcGMarker = ALIGN(srcGMarker, 2); - destMarker = ALIGN(destMarker, 2); + case FFI_TYPE_UINT16: + case FFI_TYPE_SINT16: + srcGMarker = ALIGN(srcGMarker, 2); + destMarker = ALIGN(destMarker, 2); - *(short*)&outStruct[destMarker] = - *(short*)&inGPRs[srcGMarker]; - srcGMarker += 2; - destMarker += 2; + *(short*)&outStruct[destMarker] = + *(short*)&inGPRs[srcGMarker]; + srcGMarker += 2; + destMarker += 2; - break; + break; - case FFI_TYPE_INT: - case FFI_TYPE_UINT32: - case FFI_TYPE_SINT32: - srcGMarker = ALIGN(srcGMarker, 4); - destMarker = ALIGN(destMarker, 4); + case FFI_TYPE_INT: + case FFI_TYPE_UINT32: + case FFI_TYPE_SINT32: + srcGMarker = ALIGN(srcGMarker, 4); + destMarker = ALIGN(destMarker, 4); - *(int*)&outStruct[destMarker] = - *(int*)&inGPRs[srcGMarker]; - srcGMarker += 4; - destMarker += 4; + *(int*)&outStruct[destMarker] = + *(int*)&inGPRs[srcGMarker]; + srcGMarker += 4; + destMarker += 4; - break; + break; - case FFI_TYPE_POINTER: - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - srcGMarker = ALIGN(srcGMarker, 8); - destMarker = ALIGN(destMarker, 8); + case FFI_TYPE_POINTER: + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + srcGMarker = ALIGN(srcGMarker, 8); + destMarker = ALIGN(destMarker, 8); - *(long long*)&outStruct[destMarker] = - *(long long*)&inGPRs[srcGMarker]; - srcGMarker += 8; - destMarker += 8; + *(long long*)&outStruct[destMarker] = + *(long long*)&inGPRs[srcGMarker]; + srcGMarker += 8; + destMarker += 8; - break; + break; - case FFI_TYPE_STRUCT: - recurseCount++; - ffi64_struct_to_ram_form(inType->elements[i], inGPRs, - &srcGMarker, inFPRs, &srcFMarker, &fprsUsed, - outStruct, &destMarker); - recurseCount--; - break; + case FFI_TYPE_STRUCT: + recurseCount++; + ffi64_struct_to_ram_form(inType->elements[i], inGPRs, + &srcGMarker, inFPRs, &srcFMarker, &fprsUsed, + outStruct, &destMarker); + recurseCount--; + break; - default: - FFI_ASSERT(0); // unknown element type - break; - } - } + default: + FFI_ASSERT(0); // unknown element type + break; + } + } - srcGMarker = ALIGN(srcGMarker, inType->alignment); + srcGMarker = ALIGN(srcGMarker, inType->alignment); - // Take care of the special case for 16-byte structs, but not for - // nested structs. - if (recurseCount == 0 && srcGMarker == 16) - { - *(long double*)&outStruct[0] = *(long double*)&inGPRs[0]; - srcFMarker = savedFMarker; - fprsUsed = savedFPRsUsed; - } + // Take care of the special case for 16-byte structs, but not for + // nested structs. + if (recurseCount == 0 && srcGMarker == 16) + { + *(long double*)&outStruct[0] = *(long double*)&inGPRs[0]; + srcFMarker = savedFMarker; + fprsUsed = savedFPRsUsed; + } - if (ioGPRMarker) - *ioGPRMarker = ALIGN(srcGMarker, 8); + if (ioGPRMarker) + *ioGPRMarker = ALIGN(srcGMarker, 8); - if (ioFPRMarker) - *ioFPRMarker = srcFMarker; + if (ioFPRMarker) + *ioFPRMarker = srcFMarker; - if (ioFPRsUsed) - *ioFPRsUsed = fprsUsed; + if (ioFPRsUsed) + *ioFPRsUsed = fprsUsed; - if (ioStructMarker) - *ioStructMarker = ALIGN(destMarker, 8); + if (ioStructMarker) + *ioStructMarker = ALIGN(destMarker, 8); } -/* ffi64_struct_to_reg_form +/* ffi64_struct_to_reg_form - Copy a struct's elements into buffers that can be sliced into registers. - Return the sizes of the output buffers in bytes. Pass NULL buffer pointers - to calculate size only. - outGPRs[0-7] == r3, outFPRs[0-7] == f1 ... + Copy a struct's elements into buffers that can be sliced into registers. + Return the sizes of the output buffers in bytes. Pass NULL buffer pointers + to calculate size only. + outGPRs[0-7] == r3, outFPRs[0-7] == f1 ... */ void ffi64_struct_to_reg_form( - const ffi_type* inType, - const char* inStruct, - unsigned int* ioStructMarker, - unsigned int* ioFPRsUsed, - char* outGPRs, // caller-allocated - unsigned int* ioGPRSize, - char* outFPRs, // caller-allocated - unsigned int* ioFPRSize) + const ffi_type* inType, + const char* inStruct, + unsigned int* ioStructMarker, + unsigned int* ioFPRsUsed, + char* outGPRs, // caller-allocated + unsigned int* ioGPRSize, + char* outFPRs, // caller-allocated + unsigned int* ioFPRSize) { - size_t i; - unsigned int srcMarker = 0; - unsigned int destGMarker = 0; - unsigned int destFMarker = 0; - unsigned int savedFMarker = 0; - unsigned int fprsUsed = 0; - unsigned int savedFPRsUsed = 0; + size_t i; + unsigned int srcMarker = 0; + unsigned int destGMarker = 0; + unsigned int destFMarker = 0; + unsigned int savedFMarker = 0; + unsigned int fprsUsed = 0; + unsigned int savedFPRsUsed = 0; - static unsigned int recurseCount = 0; + static unsigned int recurseCount = 0; - if (ioStructMarker) - srcMarker = *ioStructMarker; + if (ioStructMarker) + srcMarker = *ioStructMarker; - if (ioFPRsUsed) - { - fprsUsed = *ioFPRsUsed; - savedFPRsUsed = fprsUsed; - } + if (ioFPRsUsed) + { + fprsUsed = *ioFPRsUsed; + savedFPRsUsed = fprsUsed; + } - if (ioGPRSize) - destGMarker = *ioGPRSize; + if (ioGPRSize) + destGMarker = *ioGPRSize; - if (ioFPRSize) - { - destFMarker = *ioFPRSize; - savedFMarker = destFMarker; - } + if (ioFPRSize) + { + destFMarker = *ioFPRSize; + savedFMarker = destFMarker; + } - switch (inType->size) - { - case 1: case 2: case 4: - destGMarker += 8 - inType->size; - break; + switch (inType->size) + { + case 1: case 2: case 4: + destGMarker += 8 - inType->size; + break; - default: - break; - } + default: + break; + } - for (i = 0; inType->elements[i] != NULL; i++) - { - switch (inType->elements[i]->type) - { - // Shadow floating-point types in GPRs for vararg and pre-ANSI - // functions. - case FFI_TYPE_FLOAT: - // Nudge markers to next 4/8-byte boundary - srcMarker = ALIGN(srcMarker, 4); - destGMarker = ALIGN(destGMarker, 4); - destFMarker = ALIGN(destFMarker, 8); + for (i = 0; inType->elements[i] != NULL; i++) + { + switch (inType->elements[i]->type) + { + // Shadow floating-point types in GPRs for vararg and pre-ANSI + // functions. + case FFI_TYPE_FLOAT: + // Nudge markers to next 4/8-byte boundary + srcMarker = ALIGN(srcMarker, 4); + destGMarker = ALIGN(destGMarker, 4); + destFMarker = ALIGN(destFMarker, 8); - if (fprsUsed < NUM_FPR_ARG_REGISTERS) - { - if (outFPRs != NULL && inStruct != NULL) - *(double*)&outFPRs[destFMarker] = - (double)*(float*)&inStruct[srcMarker]; + if (fprsUsed < NUM_FPR_ARG_REGISTERS) + { + if (outFPRs != NULL && inStruct != NULL) + *(double*)&outFPRs[destFMarker] = + (double)*(float*)&inStruct[srcMarker]; - destFMarker += 8; - fprsUsed++; - } + destFMarker += 8; + fprsUsed++; + } - if (outGPRs != NULL && inStruct != NULL) - *(double*)&outGPRs[destGMarker] = - (double)*(float*)&inStruct[srcMarker]; + if (outGPRs != NULL && inStruct != NULL) + *(double*)&outGPRs[destGMarker] = + (double)*(float*)&inStruct[srcMarker]; - srcMarker += 4; - destGMarker += 4; + srcMarker += 4; + destGMarker += 4; - // Skip to next GPR if next element won't fit and we're - // not already at a register boundary. - if (inType->elements[i + 1] != NULL && (srcMarker % 8)) - { - if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && - (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || - (ALIGN(destGMarker, 8) - destGMarker) < 2) && - (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || - (ALIGN(destGMarker, 8) - destGMarker) < 4)) - destGMarker = ALIGN(destGMarker, 8); - } + // Skip to next GPR if next element won't fit and we're + // not already at a register boundary. + if (inType->elements[i + 1] != NULL && (srcMarker % 8)) + { + if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && + (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || + (ALIGN(destGMarker, 8) - destGMarker) < 2) && + (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || + (ALIGN(destGMarker, 8) - destGMarker) < 4)) + destGMarker = ALIGN(destGMarker, 8); + } - break; + break; - case FFI_TYPE_DOUBLE: - srcMarker = ALIGN(srcMarker, 8); - destFMarker = ALIGN(destFMarker, 8); + case FFI_TYPE_DOUBLE: + srcMarker = ALIGN(srcMarker, 8); + destFMarker = ALIGN(destFMarker, 8); - if (fprsUsed < NUM_FPR_ARG_REGISTERS) - { - if (outFPRs != NULL && inStruct != NULL) - *(double*)&outFPRs[destFMarker] = - *(double*)&inStruct[srcMarker]; + if (fprsUsed < NUM_FPR_ARG_REGISTERS) + { + if (outFPRs != NULL && inStruct != NULL) + *(double*)&outFPRs[destFMarker] = + *(double*)&inStruct[srcMarker]; - destFMarker += 8; - fprsUsed++; - } + destFMarker += 8; + fprsUsed++; + } - if (outGPRs != NULL && inStruct != NULL) - *(double*)&outGPRs[destGMarker] = - *(double*)&inStruct[srcMarker]; + if (outGPRs != NULL && inStruct != NULL) + *(double*)&outGPRs[destGMarker] = + *(double*)&inStruct[srcMarker]; - srcMarker += 8; + srcMarker += 8; - // Skip next GPR - destGMarker += 8; - destGMarker = ALIGN(destGMarker, 8); + // Skip next GPR + destGMarker += 8; + destGMarker = ALIGN(destGMarker, 8); - break; + break; - case FFI_TYPE_LONGDOUBLE: - srcMarker = ALIGN(srcMarker, 16); + case FFI_TYPE_LONGDOUBLE: + srcMarker = ALIGN(srcMarker, 16); - if (fprsUsed < NUM_FPR_ARG_REGISTERS) - { - destFMarker = ALIGN(destFMarker, 8); - destGMarker = ALIGN(destGMarker, 8); + if (fprsUsed < NUM_FPR_ARG_REGISTERS) + { + destFMarker = ALIGN(destFMarker, 8); + destGMarker = ALIGN(destGMarker, 8); - if (outFPRs != NULL && inStruct != NULL) - *(long double*)&outFPRs[destFMarker] = - *(long double*)&inStruct[srcMarker]; + if (outFPRs != NULL && inStruct != NULL) + *(long double*)&outFPRs[destFMarker] = + *(long double*)&inStruct[srcMarker]; - if (outGPRs != NULL && inStruct != NULL) - *(long double*)&outGPRs[destGMarker] = - *(long double*)&inStruct[srcMarker]; + if (outGPRs != NULL && inStruct != NULL) + *(long double*)&outGPRs[destGMarker] = + *(long double*)&inStruct[srcMarker]; - destFMarker += 16; - fprsUsed += 2; - } - else - { - destGMarker = ALIGN(destGMarker, 16); + destFMarker += 16; + fprsUsed += 2; + } + else + { + destGMarker = ALIGN(destGMarker, 16); - if (outGPRs != NULL && inStruct != NULL) - *(long double*)&outGPRs[destGMarker] = - *(long double*)&inStruct[srcMarker]; - } + if (outGPRs != NULL && inStruct != NULL) + *(long double*)&outGPRs[destGMarker] = + *(long double*)&inStruct[srcMarker]; + } - srcMarker += 16; - destGMarker += 16; // Skip next 2 GPRs - destGMarker = ALIGN(destGMarker, 8); // was 16 + srcMarker += 16; + destGMarker += 16; // Skip next 2 GPRs + destGMarker = ALIGN(destGMarker, 8); // was 16 - break; + break; - case FFI_TYPE_UINT8: - case FFI_TYPE_SINT8: - if (inType->alignment == 1) // bytes only - { - if (inType->size == 1) - { - if (outGPRs != NULL && inStruct != NULL) - outGPRs[destGMarker] = inStruct[srcMarker]; + case FFI_TYPE_UINT8: + case FFI_TYPE_SINT8: + if (inType->alignment == 1) // bytes only + { + if (inType->size == 1) + { + if (outGPRs != NULL && inStruct != NULL) + outGPRs[destGMarker] = inStruct[srcMarker]; - srcMarker++; - destGMarker++; - } - else if (inType->size == 2) - { - if (outGPRs != NULL && inStruct != NULL) - { - outGPRs[destGMarker] = inStruct[srcMarker]; - outGPRs[destGMarker + 1] = inStruct[srcMarker + 1]; - } + srcMarker++; + destGMarker++; + } + else if (inType->size == 2) + { + if (outGPRs != NULL && inStruct != NULL) + { + outGPRs[destGMarker] = inStruct[srcMarker]; + outGPRs[destGMarker + 1] = inStruct[srcMarker + 1]; + } - srcMarker += 2; - destGMarker += 2; + srcMarker += 2; + destGMarker += 2; - i++; - } - else - { - if (outGPRs != NULL && inStruct != NULL) - { - // Avoid memcpy for small chunks. - if (inType->size <= sizeof(long)) - *(long*)&outGPRs[destGMarker] = - *(long*)&inStruct[srcMarker]; - else - memcpy(&outGPRs[destGMarker], - &inStruct[srcMarker], inType->size); - } - - srcMarker += inType->size; - destGMarker += inType->size; - i += inType->size - 1; - } - } - else // bytes and other stuff - { - if (outGPRs != NULL && inStruct != NULL) - outGPRs[destGMarker] = inStruct[srcMarker]; + i++; + } + else + { + if (outGPRs != NULL && inStruct != NULL) + { + // Avoid memcpy for small chunks. + if (inType->size <= sizeof(long)) + *(long*)&outGPRs[destGMarker] = + *(long*)&inStruct[srcMarker]; + else + memcpy(&outGPRs[destGMarker], + &inStruct[srcMarker], inType->size); + } + + srcMarker += inType->size; + destGMarker += inType->size; + i += inType->size - 1; + } + } + else // bytes and other stuff + { + if (outGPRs != NULL && inStruct != NULL) + outGPRs[destGMarker] = inStruct[srcMarker]; - srcMarker++; - destGMarker++; + srcMarker++; + destGMarker++; - // Skip to next GPR if next element won't fit and we're - // not already at a register boundary. - if (inType->elements[i + 1] != NULL && (destGMarker % 8)) - { - if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && - (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || - (ALIGN(destGMarker, 8) - destGMarker) < 2) && - (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || - (ALIGN(destGMarker, 8) - destGMarker) < 4)) - destGMarker = ALIGN(destGMarker, inType->alignment); // was 8 - } - } + // Skip to next GPR if next element won't fit and we're + // not already at a register boundary. + if (inType->elements[i + 1] != NULL && (destGMarker % 8)) + { + if (!FFI_TYPE_1_BYTE(inType->elements[i + 1]->type) && + (!FFI_TYPE_2_BYTE(inType->elements[i + 1]->type) || + (ALIGN(destGMarker, 8) - destGMarker) < 2) && + (!FFI_TYPE_4_BYTE(inType->elements[i + 1]->type) || + (ALIGN(destGMarker, 8) - destGMarker) < 4)) + destGMarker = ALIGN(destGMarker, inType->alignment); // was 8 + } + } - break; + break; - case FFI_TYPE_UINT16: - case FFI_TYPE_SINT16: - srcMarker = ALIGN(srcMarker, 2); - destGMarker = ALIGN(destGMarker, 2); + case FFI_TYPE_UINT16: + case FFI_TYPE_SINT16: + srcMarker = ALIGN(srcMarker, 2); + destGMarker = ALIGN(destGMarker, 2); - if (outGPRs != NULL && inStruct != NULL) - *(short*)&outGPRs[destGMarker] = - *(short*)&inStruct[srcMarker]; + if (outGPRs != NULL && inStruct != NULL) + *(short*)&outGPRs[destGMarker] = + *(short*)&inStruct[srcMarker]; - srcMarker += 2; - destGMarker += 2; + srcMarker += 2; + destGMarker += 2; - if (inType->elements[i + 1] == NULL) - destGMarker = ALIGN(destGMarker, inType->alignment); + if (inType->elements[i + 1] == NULL) + destGMarker = ALIGN(destGMarker, inType->alignment); - break; + break; - case FFI_TYPE_INT: - case FFI_TYPE_UINT32: - case FFI_TYPE_SINT32: - srcMarker = ALIGN(srcMarker, 4); - destGMarker = ALIGN(destGMarker, 4); + case FFI_TYPE_INT: + case FFI_TYPE_UINT32: + case FFI_TYPE_SINT32: + srcMarker = ALIGN(srcMarker, 4); + destGMarker = ALIGN(destGMarker, 4); - if (outGPRs != NULL && inStruct != NULL) - *(int*)&outGPRs[destGMarker] = - *(int*)&inStruct[srcMarker]; + if (outGPRs != NULL && inStruct != NULL) + *(int*)&outGPRs[destGMarker] = + *(int*)&inStruct[srcMarker]; - srcMarker += 4; - destGMarker += 4; + srcMarker += 4; + destGMarker += 4; - break; + break; - case FFI_TYPE_POINTER: - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - srcMarker = ALIGN(srcMarker, 8); - destGMarker = ALIGN(destGMarker, 8); + case FFI_TYPE_POINTER: + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + srcMarker = ALIGN(srcMarker, 8); + destGMarker = ALIGN(destGMarker, 8); - if (outGPRs != NULL && inStruct != NULL) - *(long long*)&outGPRs[destGMarker] = - *(long long*)&inStruct[srcMarker]; + if (outGPRs != NULL && inStruct != NULL) + *(long long*)&outGPRs[destGMarker] = + *(long long*)&inStruct[srcMarker]; - srcMarker += 8; - destGMarker += 8; + srcMarker += 8; + destGMarker += 8; - if (inType->elements[i + 1] == NULL) - destGMarker = ALIGN(destGMarker, inType->alignment); + if (inType->elements[i + 1] == NULL) + destGMarker = ALIGN(destGMarker, inType->alignment); - break; + break; - case FFI_TYPE_STRUCT: - recurseCount++; - ffi64_struct_to_reg_form(inType->elements[i], - inStruct, &srcMarker, &fprsUsed, outGPRs, - &destGMarker, outFPRs, &destFMarker); - recurseCount--; - break; + case FFI_TYPE_STRUCT: + recurseCount++; + ffi64_struct_to_reg_form(inType->elements[i], + inStruct, &srcMarker, &fprsUsed, outGPRs, + &destGMarker, outFPRs, &destFMarker); + recurseCount--; + break; - default: - FFI_ASSERT(0); - break; - } - } + default: + FFI_ASSERT(0); + break; + } + } - destGMarker = ALIGN(destGMarker, inType->alignment); + destGMarker = ALIGN(destGMarker, inType->alignment); - // Take care of the special case for 16-byte structs, but not for - // nested structs. - if (recurseCount == 0 && destGMarker == 16) - { - if (outGPRs != NULL && inStruct != NULL) - *(long double*)&outGPRs[0] = *(long double*)&inStruct[0]; + // Take care of the special case for 16-byte structs, but not for + // nested structs. + if (recurseCount == 0 && destGMarker == 16) + { + if (outGPRs != NULL && inStruct != NULL) + *(long double*)&outGPRs[0] = *(long double*)&inStruct[0]; - destFMarker = savedFMarker; - fprsUsed = savedFPRsUsed; - } + destFMarker = savedFMarker; + fprsUsed = savedFPRsUsed; + } - if (ioStructMarker) - *ioStructMarker = ALIGN(srcMarker, 8); + if (ioStructMarker) + *ioStructMarker = ALIGN(srcMarker, 8); - if (ioFPRsUsed) - *ioFPRsUsed = fprsUsed; + if (ioFPRsUsed) + *ioFPRsUsed = fprsUsed; - if (ioGPRSize) - *ioGPRSize = ALIGN(destGMarker, 8); + if (ioGPRSize) + *ioGPRSize = ALIGN(destGMarker, 8); - if (ioFPRSize) - *ioFPRSize = ALIGN(destFMarker, 8); + if (ioFPRSize) + *ioFPRSize = ALIGN(destFMarker, 8); } -/* ffi64_stret_needs_ptr +/* ffi64_stret_needs_ptr - Determine whether a returned struct needs a pointer in r3 or can fit - in registers. + Determine whether a returned struct needs a pointer in r3 or can fit + in registers. */ bool ffi64_stret_needs_ptr( - const ffi_type* inType, - unsigned short* ioGPRCount, - unsigned short* ioFPRCount) + const ffi_type* inType, + unsigned short* ioGPRCount, + unsigned short* ioFPRCount) { - // Obvious case first- struct is larger than combined FPR size. - if (inType->size > 14 * 8) - return true; + // Obvious case first- struct is larger than combined FPR size. + if (inType->size > 14 * 8) + return true; - // Now the struct can physically fit in registers, determine if it - // also fits logically. - bool needsPtr = false; - unsigned short gprsUsed = 0; - unsigned short fprsUsed = 0; - size_t i; + // Now the struct can physically fit in registers, determine if it + // also fits logically. + bool needsPtr = false; + unsigned short gprsUsed = 0; + unsigned short fprsUsed = 0; + size_t i; - if (ioGPRCount) - gprsUsed = *ioGPRCount; + if (ioGPRCount) + gprsUsed = *ioGPRCount; - if (ioFPRCount) - fprsUsed = *ioFPRCount; + if (ioFPRCount) + fprsUsed = *ioFPRCount; - for (i = 0; inType->elements[i] != NULL && !needsPtr; i++) - { - switch (inType->elements[i]->type) - { - case FFI_TYPE_FLOAT: - case FFI_TYPE_DOUBLE: - gprsUsed++; - fprsUsed++; + for (i = 0; inType->elements[i] != NULL && !needsPtr; i++) + { + switch (inType->elements[i]->type) + { + case FFI_TYPE_FLOAT: + case FFI_TYPE_DOUBLE: + gprsUsed++; + fprsUsed++; - if (fprsUsed > 13) - needsPtr = true; + if (fprsUsed > 13) + needsPtr = true; - break; + break; - case FFI_TYPE_LONGDOUBLE: - gprsUsed += 2; - fprsUsed += 2; + case FFI_TYPE_LONGDOUBLE: + gprsUsed += 2; + fprsUsed += 2; - if (fprsUsed > 14) - needsPtr = true; + if (fprsUsed > 14) + needsPtr = true; - break; + break; - case FFI_TYPE_UINT8: - case FFI_TYPE_SINT8: - { - gprsUsed++; + case FFI_TYPE_UINT8: + case FFI_TYPE_SINT8: + { + gprsUsed++; - if (gprsUsed > 8) - { - needsPtr = true; - break; - } + if (gprsUsed > 8) + { + needsPtr = true; + break; + } - if (inType->elements[i + 1] == NULL) // last byte in the struct - break; + if (inType->elements[i + 1] == NULL) // last byte in the struct + break; - // Count possible contiguous bytes ahead, up to 8. - unsigned short j; + // Count possible contiguous bytes ahead, up to 8. + unsigned short j; - for (j = 1; j < 8; j++) - { - if (inType->elements[i + j] == NULL || - !FFI_TYPE_1_BYTE(inType->elements[i + j]->type)) - break; - } + for (j = 1; j < 8; j++) + { + if (inType->elements[i + j] == NULL || + !FFI_TYPE_1_BYTE(inType->elements[i + j]->type)) + break; + } - i += j - 1; // allow for i++ before the test condition + i += j - 1; // allow for i++ before the test condition - break; - } + break; + } - case FFI_TYPE_UINT16: - case FFI_TYPE_SINT16: - case FFI_TYPE_INT: - case FFI_TYPE_UINT32: - case FFI_TYPE_SINT32: - case FFI_TYPE_POINTER: - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - gprsUsed++; + case FFI_TYPE_UINT16: + case FFI_TYPE_SINT16: + case FFI_TYPE_INT: + case FFI_TYPE_UINT32: + case FFI_TYPE_SINT32: + case FFI_TYPE_POINTER: + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + gprsUsed++; - if (gprsUsed > 8) - needsPtr = true; + if (gprsUsed > 8) + needsPtr = true; - break; + break; - case FFI_TYPE_STRUCT: - needsPtr = ffi64_stret_needs_ptr( - inType->elements[i], &gprsUsed, &fprsUsed); + case FFI_TYPE_STRUCT: + needsPtr = ffi64_stret_needs_ptr( + inType->elements[i], &gprsUsed, &fprsUsed); - break; + break; - default: - FFI_ASSERT(0); - break; - } - } + default: + FFI_ASSERT(0); + break; + } + } - if (ioGPRCount) - *ioGPRCount = gprsUsed; + if (ioGPRCount) + *ioGPRCount = gprsUsed; - if (ioFPRCount) - *ioFPRCount = fprsUsed; + if (ioFPRCount) + *ioFPRCount = fprsUsed; - return needsPtr; + return needsPtr; } -/* ffi64_data_size +/* ffi64_data_size - Calculate the size in bytes of an ffi type. + Calculate the size in bytes of an ffi type. */ unsigned int ffi64_data_size( - const ffi_type* inType) + const ffi_type* inType) { - unsigned int size = 0; + unsigned int size = 0; - switch (inType->type) - { - case FFI_TYPE_UINT8: - case FFI_TYPE_SINT8: - size = 1; - break; + switch (inType->type) + { + case FFI_TYPE_UINT8: + case FFI_TYPE_SINT8: + size = 1; + break; - case FFI_TYPE_UINT16: - case FFI_TYPE_SINT16: - size = 2; - break; + case FFI_TYPE_UINT16: + case FFI_TYPE_SINT16: + size = 2; + break; - case FFI_TYPE_INT: - case FFI_TYPE_UINT32: - case FFI_TYPE_SINT32: - case FFI_TYPE_FLOAT: - size = 4; - break; + case FFI_TYPE_INT: + case FFI_TYPE_UINT32: + case FFI_TYPE_SINT32: + case FFI_TYPE_FLOAT: + size = 4; + break; - case FFI_TYPE_POINTER: - case FFI_TYPE_UINT64: - case FFI_TYPE_SINT64: - case FFI_TYPE_DOUBLE: - size = 8; - break; + case FFI_TYPE_POINTER: + case FFI_TYPE_UINT64: + case FFI_TYPE_SINT64: + case FFI_TYPE_DOUBLE: + size = 8; + break; - case FFI_TYPE_LONGDOUBLE: - size = 16; - break; + case FFI_TYPE_LONGDOUBLE: + size = 16; + break; - case FFI_TYPE_STRUCT: - ffi64_struct_to_reg_form( - inType, NULL, NULL, NULL, NULL, &size, NULL, NULL); - break; + case FFI_TYPE_STRUCT: + ffi64_struct_to_reg_form( + inType, NULL, NULL, NULL, NULL, &size, NULL, NULL); + break; - case FFI_TYPE_VOID: - break; + case FFI_TYPE_VOID: + break; - default: - FFI_ASSERT(0); - break; - } + default: + FFI_ASSERT(0); + break; + } - return size; + return size; } -#endif /* defined(__ppc64__) */ -#endif /* __ppc__ || __ppc64__ */ +#endif /* defined(__ppc64__) */ +#endif /* __ppc__ || __ppc64__ */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 18:21:44 2011 From: python-checkins at python.org (ezio.melotti) Date: Tue, 15 Mar 2011 18:21:44 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge with 3.2 Message-ID: http://hg.python.org/cpython/rev/a46583c44086 changeset: 68506:a46583c44086 branch: 3.2 parent: 68501:983ed0ba44d0 parent: 68505:1ba77f3ccc2e user: Ezio Melotti date: Tue Mar 15 19:19:04 2011 +0200 summary: Merge with 3.2 files: Modules/_ctypes/libffi/ChangeLog Modules/_ctypes/libffi/src/dlmalloc.c Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c diff --git a/Modules/_ctypes/libffi/ChangeLog b/Modules/_ctypes/libffi/ChangeLog --- a/Modules/_ctypes/libffi/ChangeLog +++ b/Modules/_ctypes/libffi/ChangeLog @@ -3084,7 +3084,7 @@ 2003-09-18 Kaz Kojima - * src/sh/ffi.c (ffi_prep_args): Take account into the alignment + * src/sh/ffi.c (ffi_prep_args): Take account into the alignement for the register size. (ffi_closure_helper_SYSV): Handle the structure return value address correctly. @@ -3344,7 +3344,7 @@ 2003-02-06 Andreas Tobler * libffi/src/powerpc/darwin_closure.S: - Fix alignment bug, allocate 8 bytes for the result. + Fix alignement bug, allocate 8 bytes for the result. * libffi/src/powerpc/aix_closure.S: Likewise. * libffi/src/powerpc/ffi_darwin.c: diff --git a/Modules/_ctypes/libffi/src/dlmalloc.c b/Modules/_ctypes/libffi/src/dlmalloc.c --- a/Modules/_ctypes/libffi/src/dlmalloc.c +++ b/Modules/_ctypes/libffi/src/dlmalloc.c @@ -1326,7 +1326,7 @@ return (ptr != 0)? ptr: MFAIL; } -/* This function supports releasing coalesced segments */ +/* This function supports releasing coalesed segments */ static int win32munmap(void* ptr, size_t size) { MEMORY_BASIC_INFORMATION minfo; char* cptr = ptr; @@ -1362,7 +1362,7 @@ #define CALL_MORECORE(S) MFAIL #endif /* HAVE_MORECORE */ -/* mstate bit set if contiguous morecore disabled or failed */ +/* mstate bit set if continguous morecore disabled or failed */ #define USE_NONCONTIGUOUS_BIT (4U) /* segment bit set in create_mspace_with_base */ diff --git a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c --- a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c +++ b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c @@ -592,7 +592,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignment to the next multiple of 16 | + | alignement to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 diff --git a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c --- a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c +++ b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c @@ -650,7 +650,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignment to the next multiple of 16 | + | alignement to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 18:21:47 2011 From: python-checkins at python.org (ezio.melotti) Date: Tue, 15 Mar 2011 18:21:47 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge with 3.2 Message-ID: http://hg.python.org/cpython/rev/a9bb1909cbed changeset: 68507:a9bb1909cbed parent: 68502:94c504545c3e parent: 68506:a46583c44086 user: Ezio Melotti date: Tue Mar 15 19:21:03 2011 +0200 summary: Merge with 3.2 files: diff --git a/Modules/_ctypes/libffi/ChangeLog b/Modules/_ctypes/libffi/ChangeLog --- a/Modules/_ctypes/libffi/ChangeLog +++ b/Modules/_ctypes/libffi/ChangeLog @@ -3084,7 +3084,7 @@ 2003-09-18 Kaz Kojima - * src/sh/ffi.c (ffi_prep_args): Take account into the alignment + * src/sh/ffi.c (ffi_prep_args): Take account into the alignement for the register size. (ffi_closure_helper_SYSV): Handle the structure return value address correctly. @@ -3344,7 +3344,7 @@ 2003-02-06 Andreas Tobler * libffi/src/powerpc/darwin_closure.S: - Fix alignment bug, allocate 8 bytes for the result. + Fix alignement bug, allocate 8 bytes for the result. * libffi/src/powerpc/aix_closure.S: Likewise. * libffi/src/powerpc/ffi_darwin.c: diff --git a/Modules/_ctypes/libffi/src/dlmalloc.c b/Modules/_ctypes/libffi/src/dlmalloc.c --- a/Modules/_ctypes/libffi/src/dlmalloc.c +++ b/Modules/_ctypes/libffi/src/dlmalloc.c @@ -1326,7 +1326,7 @@ return (ptr != 0)? ptr: MFAIL; } -/* This function supports releasing coalesced segments */ +/* This function supports releasing coalesed segments */ static int win32munmap(void* ptr, size_t size) { MEMORY_BASIC_INFORMATION minfo; char* cptr = ptr; @@ -1362,7 +1362,7 @@ #define CALL_MORECORE(S) MFAIL #endif /* HAVE_MORECORE */ -/* mstate bit set if contiguous morecore disabled or failed */ +/* mstate bit set if continguous morecore disabled or failed */ #define USE_NONCONTIGUOUS_BIT (4U) /* segment bit set in create_mspace_with_base */ diff --git a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c --- a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c +++ b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c @@ -592,7 +592,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignment to the next multiple of 16 | + | alignement to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 diff --git a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c --- a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c +++ b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c @@ -650,7 +650,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignment to the next multiple of 16 | + | alignement to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 19:04:43 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 19:04:43 +0100 Subject: [Python-checkins] cpython (3.1): #11555: update doc for 3.x change to as_string mangle_from default. Message-ID: http://hg.python.org/cpython/rev/2804a78a123e changeset: 68508:2804a78a123e branch: 3.1 parent: 68505:1ba77f3ccc2e user: R David Murray date: Tue Mar 15 14:01:18 2011 -0400 summary: #11555: update doc for 3.x change to as_string mangle_from default. files: Doc/library/email.message.rst Lib/email/message.py diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -46,15 +46,16 @@ be generated or modified). Note that this method is provided as a convenience and may not always - format the message the way you want. For example, by default it mangles - lines that begin with ``From``. For more flexibility, instantiate a + format the message the way you want. For example, by default it does + not do the mangling of lines that begin with ``From`` that is + required by the unix mbox format. For more flexibility, instantiate a :class:`~email.generator.Generator` instance and use its :meth:`flatten` method directly. For example:: from io import StringIO from email.generator import Generator fp = StringIO() - g = Generator(fp, mangle_from_=False, maxheaderlen=60) + g = Generator(fp, mangle_from_=True, maxheaderlen=60) g.flatten(msg) text = fp.getvalue() diff --git a/Lib/email/message.py b/Lib/email/message.py --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -136,8 +136,7 @@ header. This is a convenience method and may not generate the message exactly - as you intend because by default it mangles lines that begin with - "From ". For more flexibility, use the flatten() method of a + as you intend. For more flexibility, use the flatten() method of a Generator instance. """ from email.generator import Generator -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 19:04:44 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 19:04:44 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge #11555 as_string doc fix from 3.1. Message-ID: http://hg.python.org/cpython/rev/9daa9a4c4cc4 changeset: 68509:9daa9a4c4cc4 branch: 3.2 parent: 68506:a46583c44086 parent: 68508:2804a78a123e user: R David Murray date: Tue Mar 15 14:02:53 2011 -0400 summary: Merge #11555 as_string doc fix from 3.1. files: Doc/library/email.message.rst Lib/email/message.py diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -46,15 +46,16 @@ be generated or modified). Note that this method is provided as a convenience and may not always - format the message the way you want. For example, by default it mangles - lines that begin with ``From``. For more flexibility, instantiate a + format the message the way you want. For example, by default it does + not do the mangling of lines that begin with ``From`` that is + required by the unix mbox format. For more flexibility, instantiate a :class:`~email.generator.Generator` instance and use its :meth:`flatten` method directly. For example:: from io import StringIO from email.generator import Generator fp = StringIO() - g = Generator(fp, mangle_from_=False, maxheaderlen=60) + g = Generator(fp, mangle_from_=True, maxheaderlen=60) g.flatten(msg) text = fp.getvalue() diff --git a/Lib/email/message.py b/Lib/email/message.py --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -157,8 +157,7 @@ header. This is a convenience method and may not generate the message exactly - as you intend because by default it mangles lines that begin with - "From ". For more flexibility, use the flatten() method of a + as you intend. For more flexibility, use the flatten() method of a Generator instance. """ from email.generator import Generator -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 19:04:45 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 19:04:45 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #11555 as_string doc fix from 3.2. Message-ID: http://hg.python.org/cpython/rev/1c0cded97280 changeset: 68510:1c0cded97280 parent: 68507:a9bb1909cbed parent: 68509:9daa9a4c4cc4 user: R David Murray date: Tue Mar 15 14:04:00 2011 -0400 summary: Merge #11555 as_string doc fix from 3.2. files: diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -46,15 +46,16 @@ be generated or modified). Note that this method is provided as a convenience and may not always - format the message the way you want. For example, by default it mangles - lines that begin with ``From``. For more flexibility, instantiate a + format the message the way you want. For example, by default it does + not do the mangling of lines that begin with ``From`` that is + required by the unix mbox format. For more flexibility, instantiate a :class:`~email.generator.Generator` instance and use its :meth:`flatten` method directly. For example:: from io import StringIO from email.generator import Generator fp = StringIO() - g = Generator(fp, mangle_from_=False, maxheaderlen=60) + g = Generator(fp, mangle_from_=True, maxheaderlen=60) g.flatten(msg) text = fp.getvalue() diff --git a/Lib/email/message.py b/Lib/email/message.py --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -157,8 +157,7 @@ header. This is a convenience method and may not generate the message exactly - as you intend because by default it mangles lines that begin with - "From ". For more flexibility, use the flatten() method of a + as you intend. For more flexibility, use the flatten() method of a Generator instance. """ from email.generator import Generator -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:18:58 2011 From: python-checkins at python.org (tarek.ziade) Date: Tue, 15 Mar 2011 20:18:58 +0100 Subject: [Python-checkins] distutils2: started setupcfg-spec Message-ID: http://hg.python.org/distutils2/rev/6fca65ff60ad changeset: 1119:6fca65ff60ad user: Tarek Ziade date: Tue Mar 15 15:18:39 2011 -0400 summary: started setupcfg-spec files: docs/source/index.rst docs/source/setupcfg-spec.rst diff --git a/docs/source/index.rst b/docs/source/index.rst --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -48,8 +48,11 @@ A guide for for end-users wanting to install a Python application or library. +:doc:`setupcfg-spec` + Specifications of setup.cfg, the most important file for developers. + :doc:`setupcfg` - Specifications of setup.cfg, the most important file for developers. + Documenation about using setup.cfg :doc:`tutorial` A tutorial for Python developers to discover Distutils2 main features. @@ -71,6 +74,7 @@ devresources install/index + setupcfg-spec setupcfg tutorial distutils/index diff --git a/docs/source/setupcfg-spec.rst b/docs/source/setupcfg-spec.rst new file mode 100644 --- /dev/null +++ b/docs/source/setupcfg-spec.rst @@ -0,0 +1,308 @@ +=================== +setup.cfg file v0.9 +=================== + +This document describes the :file:`setup.cfg`, a ini-like file used by +Distutils2 to replace the :file:`setup.py` file. + +Syntax +====== + +The configuration file is an ini-based file. Variables name can be +assigned values, and grouped into sections. A line that starts with "#" is +commented out. Empty lines are also removed. + +Example:: + + [section1] + # comment + name = value + name2 = "other value" + + [section2] + foo = bar + + +Values conversion +::::::::::::::::: + +Here are a set of rules for converting values: + +- If value is quoted with " chars, it's a string. This notation is useful to + include "=" characters in the value. In case the value contains a " + character, it must be escaped with a "\" character. +- If the value is "true" or "false" --no matter what the case is--, it's + converted to a boolean, or 0 and 1 when the language does not have a + boolean type. +- A value can contains multiple lines. When read, lines are converted into a + sequence of values. Each new line for a multiple lines value must start with + a least one space or tab character. These indentation characters will be + stripped. +- all other values are considered as strings + +Examples:: + + [section] + foo = one + two + three + + bar = false + baz = 1.3 + boo = "ok" + beee = "wqdqw pojpj w\"ddq" + +Extending files +::::::::::::::: + +An INI file can extend another file. For this, a "DEFAULT" section must contain +an "extends" variable that can point to one or several INI files which will be +merged to the current file by adding new sections and values. + +If the file pointed in "extends" contains section/variable names that already +exist in the original file, they will not override existing ones. + +file_one.ini:: + + [section1] + name2 = "other value" + + [section2] + foo = baz + bas = bar + +file_two.ini:: + + [DEFAULT] + extends = file_one.ini + + [section2] + foo = bar + +Result:: + + [section1] + name2 = "other value" + + [section2] + foo = bar + bas = bar + +To point several files, the multi-line notation can be used: + + [DEFAULT] + extends = file_one.ini + file_two.ini + +When several files are provided, they are processed sequentially. So if the +first one has a value that is also present in the second, the second one will +be ignored. This means that the configuration goes from the most specialized to +the most common. + +**Tools will need to provide a way to produce a canonical version of the +file**. This will be useful to publish a single file. + + +Description of sections and fields +================================== + +Each section contains a description of its options. + +- Options that are marked *\*multi* can have multiple values, one value per + line. +- Options that are marked *\*optional* can be omited. + + +The sections are: + +global + Global options for Distutils2. + +metadata + The metadata section contains the metadata for the project as described in + :PEP:`345`. + +files + Declaration of package files included in the project. + +`command` sections + Redefinition of user options for Distutils2 commands. + + +global +:::::: + +Contains global options for Distutils2. This section is shared with Distutils1 +(legacy version distributed in python 2.X standard library). + + +- **commands**: Defined Distutils2 command. A command is defined by its fully + qualified name. + + Examples:: + + [global] + commands = + package.sdist.CustomSdistCommand + + *\*optional* *\*multi* + +- **compilers**: Defined Distutils2 compiler. A compiler is defined by its fully + qualified name. + + Example:: + + [global] + compiler = + package.compiler.CustomCCompiler + + *\*optional* *\*multi* + +- **setup_hook**: defines a callable that will be called right after the + :file:`setup.cfg` file is read. The callable receives the configuration + in form of a mapping and can make some changes to it. *\*optional* + + Example:: + + [global] + setup_hook = + distutils2.tests.test_config.hook + + +metadata +:::::::: + +The metadata section contains the metadata for the project as described in +:PEP:`345`. Field names are case-insensitive. + +- metadata-version +- name +- version +- platform +- supported-platform +- summary +- description +- keywords +- home-page +- download-url +- author +- author-email +- maintainer +- maintainer-email +- license +- classifiers +- requires-dist +- provides-dist +- obsoletes-dist +- requires-python +- requires-externals +- project-url + +There's one extra field, to replace description with a path to a text file: + +- description-file: path to a text file that will be used to replace description + + +files +::::: + +This section describes the files included in the project. + +- **packages_root**: the root directory containing all packages. If not provided + Distutils2 will use the current directory. *\*optional* +- **packages**: a list of packages the project includes *\*optional* *\*multi* +- **modules**: a list of packages the project includes *\*optional* *\*multi* +- **scripts**: a list of scripts the project includes *\*optional* *\*multi* +- **extra_files**: a list of patterns to include extra files *\*optional* *\*multi* +- **resources**: a list of data files. *\*optional* *\*multi* + +Example:: + + [files] + packages_root = src + packages = + pypi2rpm + pypi2rpm.command + + scripts = + pypi2rpm/pypi2rpm.py + + extra_files = + setup.py + README + + resources = + source1 = destination1 + source2 = destination2 + doc/* = {doc} + scripts/foo.sh = {datadir}/scripts/{distribution.name} + +extensions +:::::::::: + + +XXX + +Command sections +::::::::::::::::: + +Each Distutils2 command can have its own user options defined in :file:`setup.cfg` + +Example:: + + [sdist] + manifest-builders = package.module.Maker + + +To override the build class in order to generate Python3 code from your Python2 base:: + + [build_py] + use-2to3 = True + +Extensibility +============= + +Every section can define new variable that are not part of the specification. +They are called **extensions**. + +An extension field starts with *X-*. + +Example:: + + [metadata] + ... + X-Debian-Name = python-distribute + +Changes in the specification +============================ + +The version scheme for this specification is **MAJOR.MINOR**. +Changes in the specification will increment the version. + +- minor version changes (1.x): backwards compatible + - new fields and sections (both optional and mandatory) can be added + - optional fields can be removed +- major channges (2.X): backwards-incompatible + - mandatory fields/sections are removed + - fields change their meaning + +As a consequence, a tool written to consume 1.X (say, X=5) has these +properties: + +- reading 1.Y, YX is also possible. The tool will just ignore the new + fields (even if they are mandatory in that version) + If optional fields were removed, the tool will just consider them absent. +- reading 2.X is not possible; the tool should refuse to interpret + the file. + +A tool written to produce 1.X should have these properties: +- it will write all mandatory fields +- it may write optional fields + +Acks +==== + +XXX + -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Tue Mar 15 20:23:35 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 15 Mar 2011 20:23:35 +0100 Subject: [Python-checkins] cpython (3.2): Followup to 4c59cd84086f: add an entry in the porting guide and a Message-ID: http://hg.python.org/cpython/rev/2c57a8f293ba changeset: 68511:2c57a8f293ba branch: 3.2 parent: 68509:9daa9a4c4cc4 user: Antoine Pitrou date: Tue Mar 15 20:22:50 2011 +0100 summary: Followup to 4c59cd84086f: add an entry in the porting guide and a "versionchanged" attribute. files: Doc/c-api/init.rst Doc/whatsnew/3.2.rst diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -537,9 +537,10 @@ operations such as ``PyEval_ReleaseThread(tstate)``. It is not needed before calling :c:func:`PyEval_SaveThread` or :c:func:`PyEval_RestoreThread`. - .. index:: single: Py_Initialize() + This is a no-op when called for a second time. - This is a no-op when called for a second time. + .. versionchanged:: 3.2 + This function cannot be called before :c:func:`Py_Initialize()` anymore. .. index:: module: _thread diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -2698,3 +2698,7 @@ a new function, :func:`asyncore.handle_accepted`, was added to replace it. (Contributed by Giampaolo Rodola in :issue:`6706`.) + +* Due to the new :term:`GIL` implementation, :c:func:`PyEval_InitThreads()` + cannot be called before :c:func:`Py_Initialize()` anymore. + -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:23:38 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 15 Mar 2011 20:23:38 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge doc update Message-ID: http://hg.python.org/cpython/rev/41187b44f3db changeset: 68512:41187b44f3db parent: 68510:1c0cded97280 parent: 68511:2c57a8f293ba user: Antoine Pitrou date: Tue Mar 15 20:23:30 2011 +0100 summary: Merge doc update files: Doc/whatsnew/3.2.rst diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -537,9 +537,10 @@ operations such as ``PyEval_ReleaseThread(tstate)``. It is not needed before calling :c:func:`PyEval_SaveThread` or :c:func:`PyEval_RestoreThread`. - .. index:: single: Py_Initialize() + This is a no-op when called for a second time. - This is a no-op when called for a second time. + .. versionchanged:: 3.2 + This function cannot be called before :c:func:`Py_Initialize()` anymore. .. index:: module: _thread diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -2698,3 +2698,7 @@ a new function, :func:`asyncore.handle_accepted`, was added to replace it. (Contributed by Giampaolo Rodola in :issue:`6706`.) + +* Due to the new :term:`GIL` implementation, :c:func:`PyEval_InitThreads()` + cannot be called before :c:func:`Py_Initialize()` anymore. + -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:24:06 2011 From: python-checkins at python.org (barry.warsaw) Date: Tue, 15 Mar 2011 20:24:06 +0100 Subject: [Python-checkins] cpython: - Issue #11289: `smtp.SMTP` class becomes a context manager so it can be used Message-ID: http://hg.python.org/cpython/rev/a6a94cfb75e9 changeset: 68513:a6a94cfb75e9 parent: 68497:d1acf761a911 user: Barry Warsaw date: Tue Mar 15 15:04:44 2011 -0400 summary: - Issue #11289: `smtp.SMTP` class becomes a context manager so it can be used in a `with` statement. Contributed by Giampaolo Rodola. files: Doc/library/smtplib.rst Lib/smtplib.py Lib/test/test_smtplib.py Misc/NEWS diff --git a/Doc/library/smtplib.rst b/Doc/library/smtplib.rst --- a/Doc/library/smtplib.rst +++ b/Doc/library/smtplib.rst @@ -34,6 +34,20 @@ For normal use, you should only require the initialization/connect, :meth:`sendmail`, and :meth:`quit` methods. An example is included below. + The :class:`SMTP` class supports the :keyword:`with` statement. When used + like this, the SMTP ``QUIT`` command is issued automatically when the + :keyword:`with` statement exits. E.g.:: + + >>> from smtplib import SMTP + >>> with SMTP("domain.org") as smtp: + ... smtp.noop() + ... + (250, b'Ok') + >>> + + .. versionadded:: 3.3 + Support for the :keyword:`with` statement was added. + .. class:: SMTP_SSL(host='', port=0, local_hostname=None, keyfile=None, certfile=None[, timeout]) diff --git a/Lib/smtplib.py b/Lib/smtplib.py --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -269,6 +269,19 @@ pass self.local_hostname = '[%s]' % addr + def __enter__(self): + return self + + def __exit__(self, *args): + try: + code, message = self.docmd("QUIT") + if code != 221: + raise SMTPResponseException(code, message) + except SMTPServerDisconnected: + pass + finally: + self.close() + def set_debuglevel(self, debuglevel): """Set the debug output level. diff --git a/Lib/test/test_smtplib.py b/Lib/test/test_smtplib.py --- a/Lib/test/test_smtplib.py +++ b/Lib/test/test_smtplib.py @@ -424,6 +424,9 @@ # Simulated SMTP channel & server class SimSMTPChannel(smtpd.SMTPChannel): + # For testing failures in QUIT when using the context manager API. + quit_response = None + def __init__(self, extra_features, *args, **kw): self._extrafeatures = ''.join( [ "250-{0}\r\n".format(x) for x in extra_features ]) @@ -475,19 +478,31 @@ else: self.push('550 No access for you!') + def smtp_QUIT(self, arg): + # args is ignored + if self.quit_response is None: + super(SimSMTPChannel, self).smtp_QUIT(arg) + else: + self.push(self.quit_response) + self.close_when_done() + def handle_error(self): raise class SimSMTPServer(smtpd.SMTPServer): + # For testing failures in QUIT when using the context manager API. + quit_response = None + def __init__(self, *args, **kw): self._extra_features = [] smtpd.SMTPServer.__init__(self, *args, **kw) def handle_accepted(self, conn, addr): - self._SMTPchannel = SimSMTPChannel(self._extra_features, - self, conn, addr) + self._SMTPchannel = SimSMTPChannel( + self._extra_features, self, conn, addr) + self._SMTPchannel.quit_response = self.quit_response def process_message(self, peer, mailfrom, rcpttos, data): pass @@ -620,6 +635,25 @@ self.assertIn(sim_auth_credentials['cram-md5'], str(err)) smtp.close() + def test_with_statement(self): + with smtplib.SMTP(HOST, self.port) as smtp: + code, message = smtp.noop() + self.assertEqual(code, 250) + self.assertRaises(smtplib.SMTPServerDisconnected, smtp.send, b'foo') + with smtplib.SMTP(HOST, self.port) as smtp: + smtp.close() + self.assertRaises(smtplib.SMTPServerDisconnected, smtp.send, b'foo') + + def test_with_statement_QUIT_failure(self): + self.serv.quit_response = '421 QUIT FAILED' + with self.assertRaises(smtplib.SMTPResponseException) as error: + with smtplib.SMTP(HOST, self.port) as smtp: + smtp.noop() + self.assertEqual(error.exception.smtp_code, 421) + self.assertEqual(error.exception.smtp_error, b'QUIT FAILED') + # We don't need to clean up self.serv.quit_response because a new + # server is always instantiated in the setUp(). + #TODO: add tests for correct AUTH method fallback now that the #test infrastructure can support it. diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -68,6 +68,9 @@ Library ------- +- Issue #11289: `smtp.SMTP` class becomes a context manager so it can be used + in a `with` statement. Contributed by Giampaolo Rodola. + - Issue #11407: `TestCase.run` returns the result object used or created. Contributed by Janathan Hartley. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:24:07 2011 From: python-checkins at python.org (barry.warsaw) Date: Tue, 15 Mar 2011 20:24:07 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merge and resolve Misc/NEWS. Message-ID: http://hg.python.org/cpython/rev/f9d98270bcbe changeset: 68514:f9d98270bcbe parent: 68513:a6a94cfb75e9 parent: 68507:a9bb1909cbed user: Barry Warsaw date: Tue Mar 15 15:22:42 2011 -0400 summary: Merge and resolve Misc/NEWS. files: Misc/NEWS diff --git a/Lib/email/charset.py b/Lib/email/charset.py --- a/Lib/email/charset.py +++ b/Lib/email/charset.py @@ -263,7 +263,7 @@ Returns "quoted-printable" if self.body_encoding is QP. Returns "base64" if self.body_encoding is BASE64. - Returns "7bit" otherwise. + Returns conversion function otherwise. """ assert self.body_encoding != SHORTEST if self.body_encoding == QP: @@ -381,7 +381,10 @@ """Body-encode a string by converting it first to bytes. The type of encoding (base64 or quoted-printable) will be based on - self.body_encoding. + self.body_encoding. If body_encoding is None, we assume the + output charset is a 7bit encoding, so re-encoding the decoded + string using the ascii codec produces the correct string version + of the content. """ # 7bit/8bit encodings return the string unchanged (module conversions) if self.body_encoding is BASE64: @@ -391,4 +394,6 @@ elif self.body_encoding is QP: return email.quoprimime.body_encode(string) else: + if isinstance(string, str): + string = string.encode(self.output_charset).decode('ascii') return string diff --git a/Lib/email/encoders.py b/Lib/email/encoders.py --- a/Lib/email/encoders.py +++ b/Lib/email/encoders.py @@ -54,10 +54,13 @@ # There's no payload. For backwards compatibility we use 7bit msg['Content-Transfer-Encoding'] = '7bit' return - # We play a trick to make this go fast. If encoding to ASCII succeeds, we - # know the data must be 7bit, otherwise treat it as 8bit. + # We play a trick to make this go fast. If encoding/decode to ASCII + # succeeds, we know the data must be 7bit, otherwise treat it as 8bit. try: - orig.encode('ascii') + if isinstance(orig, str): + orig.encode('ascii') + else: + orig.decode('ascii') except UnicodeError: # iso-2022-* is non-ASCII but still 7-bit charset = msg.get_charset() diff --git a/Lib/email/message.py b/Lib/email/message.py --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -242,7 +242,7 @@ raise TypeError('Expected list, got %s' % type(self._payload)) payload = self._payload cte = self.get('content-transfer-encoding', '').lower() - # payload can be bytes here, (I wonder if that is actually a bug?) + # payload may be bytes here. if isinstance(payload, str): if _has_surrogates(payload): bpayload = payload.encode('ascii', 'surrogateescape') diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -3372,9 +3372,9 @@ # built-in encodings where the header encoding is QP but the body # encoding is not. from email import charset as CharsetModule - CharsetModule.add_charset('fake', CharsetModule.QP, None) + CharsetModule.add_charset('fake', CharsetModule.QP, None, 'utf-8') c = Charset('fake') - eq('hello w\xf6rld', c.body_encode('hello w\xf6rld')) + eq('hello world', c.body_encode('hello world')) def test_unicode_charset_name(self): charset = Charset('us-ascii') diff --git a/Lib/email/test/test_email_codecs.py b/Lib/email/test/test_email_codecs.py --- a/Lib/email/test/test_email_codecs.py +++ b/Lib/email/test/test_email_codecs.py @@ -13,7 +13,7 @@ # We're compatible with Python 2.3, but it doesn't have the built-in Asian # codecs, so we have to skip all these tests. try: - str('foo', 'euc-jp') + str(b'foo', 'euc-jp') except LookupError: raise unittest.SkipTest @@ -22,11 +22,14 @@ class TestEmailAsianCodecs(TestEmailBase): def test_japanese_codecs(self): eq = self.ndiffAssertEqual - j = Charset("euc-jp") - g = Charset("iso-8859-1") + jcode = "euc-jp" + gcode = "iso-8859-1" + j = Charset(jcode) + g = Charset(gcode) h = Header("Hello World!") - jhello = '\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc\xa5\xeb\xa5\xc9\xa1\xaa' - ghello = 'Gr\xfc\xdf Gott!' + jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' + b'\xa5\xeb\xa5\xc9\xa1\xaa', jcode) + ghello = str(b'Gr\xfc\xdf Gott!', gcode) h.append(jhello, j) h.append(ghello, g) # BAW: This used to -- and maybe should -- fold the two iso-8859-1 @@ -36,13 +39,17 @@ # encoded word. eq(h.encode(), """\ Hello World! =?iso-2022-jp?b?GyRCJU8lbSE8JW8hPCVrJUkhKhsoQg==?= - =?iso-8859-1?q?Gr=FC=DF?= =?iso-8859-1?q?_Gott!?=""") + =?iso-8859-1?q?Gr=FC=DF_Gott!?=""") eq(decode_header(h.encode()), - [('Hello World!', None), - ('\x1b$B%O%m!<%o!<%k%I!*\x1b(B', 'iso-2022-jp'), - ('Gr\xfc\xdf Gott!', 'iso-8859-1')]) - int = 'test-ja \xa4\xd8\xc5\xea\xb9\xc6\xa4\xb5\xa4\xec\xa4\xbf\xa5\xe1\xa1\xbc\xa5\xeb\xa4\xcf\xbb\xca\xb2\xf1\xbc\xd4\xa4\xce\xbe\xb5\xc7\xa7\xa4\xf2\xc2\xd4\xa4\xc3\xa4\xc6\xa4\xa4\xa4\xde\xa4\xb9' - h = Header(int, j, header_name="Subject") + [(b'Hello World!', None), + (b'\x1b$B%O%m!<%o!<%k%I!*\x1b(B', 'iso-2022-jp'), + (b'Gr\xfc\xdf Gott!', gcode)]) + subject_bytes = (b'test-ja \xa4\xd8\xc5\xea\xb9\xc6\xa4\xb5' + b'\xa4\xec\xa4\xbf\xa5\xe1\xa1\xbc\xa5\xeb\xa4\xcf\xbb\xca\xb2' + b'\xf1\xbc\xd4\xa4\xce\xbe\xb5\xc7\xa7\xa4\xf2\xc2\xd4\xa4\xc3' + b'\xa4\xc6\xa4\xa4\xa4\xde\xa4\xb9') + subject = str(subject_bytes, jcode) + h = Header(subject, j, header_name="Subject") # test a very long header enc = h.encode() # TK: splitting point may differ by codec design and/or Header encoding @@ -50,15 +57,24 @@ =?iso-2022-jp?b?dGVzdC1qYSAbJEIkWEVqOUYkNSRsJD8lYSE8JWskTztKGyhC?= =?iso-2022-jp?b?GyRCMnE8VCROPjVHJyRyQlQkQyRGJCQkXiQ5GyhC?=""") # TK: full decode comparison - eq(h.__unicode__().encode('euc-jp'), int) + eq(str(h).encode(jcode), subject_bytes) + + def test_payload_encoding_utf8(self): + jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' + b'\xa5\xeb\xa5\xc9\xa1\xaa', 'euc-jp') + msg = Message() + msg.set_payload(jhello, 'utf-8') + ustr = msg.get_payload(decode=True).decode(msg.get_content_charset()) + self.assertEqual(jhello, ustr) def test_payload_encoding(self): - jhello = '\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc\xa5\xeb\xa5\xc9\xa1\xaa' jcode = 'euc-jp' + jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' + b'\xa5\xeb\xa5\xc9\xa1\xaa', jcode) msg = Message() msg.set_payload(jhello, jcode) - ustr = str(msg.get_payload(), msg.get_content_charset()) - self.assertEqual(jhello, ustr.encode(jcode)) + ustr = msg.get_payload(decode=True).decode(msg.get_content_charset()) + self.assertEqual(jhello, ustr) diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py --- a/Lib/test/test_email.py +++ b/Lib/test/test_email.py @@ -3,10 +3,12 @@ # The specific tests now live in Lib/email/test from email.test.test_email import suite +from email.test.test_email_codecs import suite as codecs_suite from test import support def test_main(): support.run_unittest(suite()) + support.run_unittest(codecs_suite()) if __name__ == '__main__': test_main() diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -375,6 +375,7 @@ Jason Hildebrand Richie Hindle Konrad Hinsen +Michael Henry David Hobley Tim Hochberg Joerg-Cyril Hoehle diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -71,6 +71,12 @@ - Issue #11289: `smtp.SMTP` class becomes a context manager so it can be used in a `with` statement. Contributed by Giampaolo Rodola. +- Issue #11554: Fixed support for Japanese codecs; previously the body output + encoding was not done if euc-jp or shift-jis was specified as the charset. + +- Issue #11509: Significantly increase test coverage of fileinput. + Patch by Denver Coneybeare at PyCon 2011 Sprints. + - Issue #11407: `TestCase.run` returns the result object used or created. Contributed by Janathan Hartley. @@ -206,6 +212,8 @@ Tests ----- +- Issue #11554: Reactivated test_email_codecs. + - Issue #11505: improves test coverage of string.py - Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a diff --git a/Modules/_ctypes/libffi/ChangeLog b/Modules/_ctypes/libffi/ChangeLog --- a/Modules/_ctypes/libffi/ChangeLog +++ b/Modules/_ctypes/libffi/ChangeLog @@ -3084,7 +3084,7 @@ 2003-09-18 Kaz Kojima - * src/sh/ffi.c (ffi_prep_args): Take account into the alignment + * src/sh/ffi.c (ffi_prep_args): Take account into the alignement for the register size. (ffi_closure_helper_SYSV): Handle the structure return value address correctly. @@ -3344,7 +3344,7 @@ 2003-02-06 Andreas Tobler * libffi/src/powerpc/darwin_closure.S: - Fix alignment bug, allocate 8 bytes for the result. + Fix alignement bug, allocate 8 bytes for the result. * libffi/src/powerpc/aix_closure.S: Likewise. * libffi/src/powerpc/ffi_darwin.c: diff --git a/Modules/_ctypes/libffi/src/dlmalloc.c b/Modules/_ctypes/libffi/src/dlmalloc.c --- a/Modules/_ctypes/libffi/src/dlmalloc.c +++ b/Modules/_ctypes/libffi/src/dlmalloc.c @@ -1326,7 +1326,7 @@ return (ptr != 0)? ptr: MFAIL; } -/* This function supports releasing coalesced segments */ +/* This function supports releasing coalesed segments */ static int win32munmap(void* ptr, size_t size) { MEMORY_BASIC_INFORMATION minfo; char* cptr = ptr; @@ -1362,7 +1362,7 @@ #define CALL_MORECORE(S) MFAIL #endif /* HAVE_MORECORE */ -/* mstate bit set if contiguous morecore disabled or failed */ +/* mstate bit set if continguous morecore disabled or failed */ #define USE_NONCONTIGUOUS_BIT (4U) /* segment bit set in create_mspace_with_base */ diff --git a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c --- a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c +++ b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c @@ -592,7 +592,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignment to the next multiple of 16 | + | alignement to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 diff --git a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c --- a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c +++ b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c @@ -650,7 +650,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignment to the next multiple of 16 | + | alignement to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:24:13 2011 From: python-checkins at python.org (barry.warsaw) Date: Tue, 15 Mar 2011 20:24:13 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merged Message-ID: http://hg.python.org/cpython/rev/395d4426415b changeset: 68515:395d4426415b parent: 68514:f9d98270bcbe parent: 68510:1c0cded97280 user: Barry Warsaw date: Tue Mar 15 15:23:30 2011 -0400 summary: Merged files: diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -46,15 +46,16 @@ be generated or modified). Note that this method is provided as a convenience and may not always - format the message the way you want. For example, by default it mangles - lines that begin with ``From``. For more flexibility, instantiate a + format the message the way you want. For example, by default it does + not do the mangling of lines that begin with ``From`` that is + required by the unix mbox format. For more flexibility, instantiate a :class:`~email.generator.Generator` instance and use its :meth:`flatten` method directly. For example:: from io import StringIO from email.generator import Generator fp = StringIO() - g = Generator(fp, mangle_from_=False, maxheaderlen=60) + g = Generator(fp, mangle_from_=True, maxheaderlen=60) g.flatten(msg) text = fp.getvalue() diff --git a/Lib/email/message.py b/Lib/email/message.py --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -157,8 +157,7 @@ header. This is a convenience method and may not generate the message exactly - as you intend because by default it mangles lines that begin with - "From ". For more flexibility, use the flatten() method of a + as you intend. For more flexibility, use the flatten() method of a Generator instance. """ from email.generator import Generator -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:24:14 2011 From: python-checkins at python.org (barry.warsaw) Date: Tue, 15 Mar 2011 20:24:14 +0100 Subject: [Python-checkins] cpython (merge default -> default): merged Message-ID: http://hg.python.org/cpython/rev/7523fb0410f2 changeset: 68516:7523fb0410f2 parent: 68515:395d4426415b parent: 68512:41187b44f3db user: Barry Warsaw date: Tue Mar 15 15:23:56 2011 -0400 summary: merged files: diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -537,9 +537,10 @@ operations such as ``PyEval_ReleaseThread(tstate)``. It is not needed before calling :c:func:`PyEval_SaveThread` or :c:func:`PyEval_RestoreThread`. - .. index:: single: Py_Initialize() + This is a no-op when called for a second time. - This is a no-op when called for a second time. + .. versionchanged:: 3.2 + This function cannot be called before :c:func:`Py_Initialize()` anymore. .. index:: module: _thread diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -2698,3 +2698,7 @@ a new function, :func:`asyncore.handle_accepted`, was added to replace it. (Contributed by Giampaolo Rodola in :issue:`6706`.) + +* Due to the new :term:`GIL` implementation, :c:func:`PyEval_InitThreads()` + cannot be called before :c:func:`Py_Initialize()` anymore. + -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:43:45 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 15 Mar 2011 20:43:45 +0100 Subject: [Python-checkins] cpython: improve dis test coverage (closes #11559) Message-ID: http://hg.python.org/cpython/rev/f41c3d9e05bd changeset: 68517:f41c3d9e05bd parent: 68498:9448691fe084 user: Benjamin Peterson date: Tue Mar 15 14:44:52 2011 -0500 summary: improve dis test coverage (closes #11559) Thanks Matias Bordese. (a few modifications of my own) files: Lib/test/test_dis.py Misc/ACKS diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py --- a/Lib/test/test_dis.py +++ b/Lib/test/test_dis.py @@ -1,11 +1,35 @@ # Minimal tests for dis module from test.support import run_unittest, captured_stdout +import difflib import unittest import sys import dis import io +class _C: + def __init__(self, x): + self.x = x == 1 + +dis_c_instance_method = """\ + %-4d 0 LOAD_FAST 1 (x) + 3 LOAD_CONST 1 (1) + 6 COMPARE_OP 2 (==) + 9 LOAD_FAST 0 (self) + 12 STORE_ATTR 0 (x) + 15 LOAD_CONST 0 (None) + 18 RETURN_VALUE +""" % (_C.__init__.__code__.co_firstlineno + 1,) + +dis_c_instance_method_bytes = """\ + 0 LOAD_FAST 1 (1) + 3 LOAD_CONST 1 (1) + 6 COMPARE_OP 2 (==) + 9 LOAD_FAST 0 (0) + 12 STORE_ATTR 0 (0) + 15 LOAD_CONST 0 (0) + 18 RETURN_VALUE +""" def _f(a): print(a) @@ -23,6 +47,16 @@ _f.__code__.co_firstlineno + 2) +dis_f_co_code = """\ + 0 LOAD_GLOBAL 0 (0) + 3 LOAD_FAST 0 (0) + 6 CALL_FUNCTION 1 + 9 POP_TOP + 10 LOAD_CONST 1 (1) + 13 RETURN_VALUE +""" + + def bug708901(): for res in range(1, 10): @@ -138,18 +172,27 @@ """ class DisTests(unittest.TestCase): - def do_disassembly_test(self, func, expected): + + def get_disassembly(self, func, lasti=-1, wrapper=True): s = io.StringIO() save_stdout = sys.stdout sys.stdout = s - dis.dis(func) - sys.stdout = save_stdout - got = s.getvalue() + try: + if wrapper: + dis.dis(func) + else: + dis.disassemble(func, lasti) + finally: + sys.stdout = save_stdout # Trim trailing blanks (if any). - lines = got.split('\n') - lines = [line.rstrip() for line in lines] - expected = expected.split("\n") - import difflib + return [line.rstrip() for line in s.getvalue().splitlines()] + + def get_disassemble_as_string(self, func, lasti=-1): + return '\n'.join(self.get_disassembly(func, lasti, False)) + + def do_disassembly_test(self, func, expected): + lines = self.get_disassembly(func) + expected = expected.splitlines() if expected != lines: self.fail( "events did not match expectation:\n" + @@ -211,6 +254,46 @@ self.do_disassembly_test(simple_stmt_str, dis_simple_stmt_str) self.do_disassembly_test(compound_stmt_str, dis_compound_stmt_str) + def test_disassemble_bytes(self): + self.do_disassembly_test(_f.__code__.co_code, dis_f_co_code) + + def test_disassemble_method(self): + self.do_disassembly_test(_C(1).__init__, dis_c_instance_method) + + def test_disassemble_method_bytes(self): + method_bytecode = _C(1).__init__.__code__.co_code + self.do_disassembly_test(method_bytecode, dis_c_instance_method_bytes) + + def test_dis_none(self): + self.assertRaises(RuntimeError, dis.dis, None) + + def test_dis_object(self): + self.assertRaises(TypeError, dis.dis, object()) + + def test_dis_traceback(self): + not_defined = object() + tb = None + old = getattr(sys, 'last_traceback', not_defined) + + def cleanup(): + if old != not_defined: + sys.last_traceback = old + else: + del sys.last_traceback + + try: + 1/0 + except Exception as e: + tb = e.__traceback__ + sys.last_traceback = tb + self.addCleanup(cleanup) + + tb_dis = self.get_disassemble_as_string(tb.tb_frame.f_code, tb.tb_lasti) + self.do_disassembly_test(None, tb_dis) + + def test_dis_object(self): + self.assertRaises(TypeError, dis.dis, object()) + code_info_code_info = """\ Name: code_info Filename: (.*) @@ -363,6 +446,13 @@ dis.show_code(x) self.assertRegex(output.getvalue(), expected+"\n") + def test_code_info_object(self): + self.assertRaises(TypeError, dis.code_info, object()) + + def test_pretty_flags_no_flags(self): + self.assertEqual(dis.pretty_flags(0), '0x0') + + def test_main(): run_unittest(DisTests, CodeInfoTests) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -100,6 +100,7 @@ Forest Bond Gawain Bolton Gregory Bond +Matias Bordese Jurjen Bos Peter Bosch Eric Bouck -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:43:46 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 15 Mar 2011 20:43:46 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge heads Message-ID: http://hg.python.org/cpython/rev/697d590f06e1 changeset: 68518:697d590f06e1 parent: 68517:f41c3d9e05bd parent: 68516:7523fb0410f2 user: Benjamin Peterson date: Tue Mar 15 14:45:20 2011 -0500 summary: merge heads files: Misc/ACKS diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -537,9 +537,10 @@ operations such as ``PyEval_ReleaseThread(tstate)``. It is not needed before calling :c:func:`PyEval_SaveThread` or :c:func:`PyEval_RestoreThread`. - .. index:: single: Py_Initialize() + This is a no-op when called for a second time. - This is a no-op when called for a second time. + .. versionchanged:: 3.2 + This function cannot be called before :c:func:`Py_Initialize()` anymore. .. index:: module: _thread diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -46,15 +46,16 @@ be generated or modified). Note that this method is provided as a convenience and may not always - format the message the way you want. For example, by default it mangles - lines that begin with ``From``. For more flexibility, instantiate a + format the message the way you want. For example, by default it does + not do the mangling of lines that begin with ``From`` that is + required by the unix mbox format. For more flexibility, instantiate a :class:`~email.generator.Generator` instance and use its :meth:`flatten` method directly. For example:: from io import StringIO from email.generator import Generator fp = StringIO() - g = Generator(fp, mangle_from_=False, maxheaderlen=60) + g = Generator(fp, mangle_from_=True, maxheaderlen=60) g.flatten(msg) text = fp.getvalue() diff --git a/Doc/library/smtplib.rst b/Doc/library/smtplib.rst --- a/Doc/library/smtplib.rst +++ b/Doc/library/smtplib.rst @@ -34,6 +34,20 @@ For normal use, you should only require the initialization/connect, :meth:`sendmail`, and :meth:`quit` methods. An example is included below. + The :class:`SMTP` class supports the :keyword:`with` statement. When used + like this, the SMTP ``QUIT`` command is issued automatically when the + :keyword:`with` statement exits. E.g.:: + + >>> from smtplib import SMTP + >>> with SMTP("domain.org") as smtp: + ... smtp.noop() + ... + (250, b'Ok') + >>> + + .. versionadded:: 3.3 + Support for the :keyword:`with` statement was added. + .. class:: SMTP_SSL(host='', port=0, local_hostname=None, keyfile=None, certfile=None[, timeout]) diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -2698,3 +2698,7 @@ a new function, :func:`asyncore.handle_accepted`, was added to replace it. (Contributed by Giampaolo Rodola in :issue:`6706`.) + +* Due to the new :term:`GIL` implementation, :c:func:`PyEval_InitThreads()` + cannot be called before :c:func:`Py_Initialize()` anymore. + diff --git a/Lib/email/charset.py b/Lib/email/charset.py --- a/Lib/email/charset.py +++ b/Lib/email/charset.py @@ -263,7 +263,7 @@ Returns "quoted-printable" if self.body_encoding is QP. Returns "base64" if self.body_encoding is BASE64. - Returns "7bit" otherwise. + Returns conversion function otherwise. """ assert self.body_encoding != SHORTEST if self.body_encoding == QP: @@ -381,7 +381,10 @@ """Body-encode a string by converting it first to bytes. The type of encoding (base64 or quoted-printable) will be based on - self.body_encoding. + self.body_encoding. If body_encoding is None, we assume the + output charset is a 7bit encoding, so re-encoding the decoded + string using the ascii codec produces the correct string version + of the content. """ # 7bit/8bit encodings return the string unchanged (module conversions) if self.body_encoding is BASE64: @@ -391,4 +394,6 @@ elif self.body_encoding is QP: return email.quoprimime.body_encode(string) else: + if isinstance(string, str): + string = string.encode(self.output_charset).decode('ascii') return string diff --git a/Lib/email/encoders.py b/Lib/email/encoders.py --- a/Lib/email/encoders.py +++ b/Lib/email/encoders.py @@ -54,10 +54,13 @@ # There's no payload. For backwards compatibility we use 7bit msg['Content-Transfer-Encoding'] = '7bit' return - # We play a trick to make this go fast. If encoding to ASCII succeeds, we - # know the data must be 7bit, otherwise treat it as 8bit. + # We play a trick to make this go fast. If encoding/decode to ASCII + # succeeds, we know the data must be 7bit, otherwise treat it as 8bit. try: - orig.encode('ascii') + if isinstance(orig, str): + orig.encode('ascii') + else: + orig.decode('ascii') except UnicodeError: # iso-2022-* is non-ASCII but still 7-bit charset = msg.get_charset() diff --git a/Lib/email/message.py b/Lib/email/message.py --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -157,8 +157,7 @@ header. This is a convenience method and may not generate the message exactly - as you intend because by default it mangles lines that begin with - "From ". For more flexibility, use the flatten() method of a + as you intend. For more flexibility, use the flatten() method of a Generator instance. """ from email.generator import Generator @@ -242,7 +241,7 @@ raise TypeError('Expected list, got %s' % type(self._payload)) payload = self._payload cte = self.get('content-transfer-encoding', '').lower() - # payload can be bytes here, (I wonder if that is actually a bug?) + # payload may be bytes here. if isinstance(payload, str): if _has_surrogates(payload): bpayload = payload.encode('ascii', 'surrogateescape') diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -3372,9 +3372,9 @@ # built-in encodings where the header encoding is QP but the body # encoding is not. from email import charset as CharsetModule - CharsetModule.add_charset('fake', CharsetModule.QP, None) + CharsetModule.add_charset('fake', CharsetModule.QP, None, 'utf-8') c = Charset('fake') - eq('hello w\xf6rld', c.body_encode('hello w\xf6rld')) + eq('hello world', c.body_encode('hello world')) def test_unicode_charset_name(self): charset = Charset('us-ascii') diff --git a/Lib/email/test/test_email_codecs.py b/Lib/email/test/test_email_codecs.py --- a/Lib/email/test/test_email_codecs.py +++ b/Lib/email/test/test_email_codecs.py @@ -13,7 +13,7 @@ # We're compatible with Python 2.3, but it doesn't have the built-in Asian # codecs, so we have to skip all these tests. try: - str('foo', 'euc-jp') + str(b'foo', 'euc-jp') except LookupError: raise unittest.SkipTest @@ -22,11 +22,14 @@ class TestEmailAsianCodecs(TestEmailBase): def test_japanese_codecs(self): eq = self.ndiffAssertEqual - j = Charset("euc-jp") - g = Charset("iso-8859-1") + jcode = "euc-jp" + gcode = "iso-8859-1" + j = Charset(jcode) + g = Charset(gcode) h = Header("Hello World!") - jhello = '\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc\xa5\xeb\xa5\xc9\xa1\xaa' - ghello = 'Gr\xfc\xdf Gott!' + jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' + b'\xa5\xeb\xa5\xc9\xa1\xaa', jcode) + ghello = str(b'Gr\xfc\xdf Gott!', gcode) h.append(jhello, j) h.append(ghello, g) # BAW: This used to -- and maybe should -- fold the two iso-8859-1 @@ -36,13 +39,17 @@ # encoded word. eq(h.encode(), """\ Hello World! =?iso-2022-jp?b?GyRCJU8lbSE8JW8hPCVrJUkhKhsoQg==?= - =?iso-8859-1?q?Gr=FC=DF?= =?iso-8859-1?q?_Gott!?=""") + =?iso-8859-1?q?Gr=FC=DF_Gott!?=""") eq(decode_header(h.encode()), - [('Hello World!', None), - ('\x1b$B%O%m!<%o!<%k%I!*\x1b(B', 'iso-2022-jp'), - ('Gr\xfc\xdf Gott!', 'iso-8859-1')]) - int = 'test-ja \xa4\xd8\xc5\xea\xb9\xc6\xa4\xb5\xa4\xec\xa4\xbf\xa5\xe1\xa1\xbc\xa5\xeb\xa4\xcf\xbb\xca\xb2\xf1\xbc\xd4\xa4\xce\xbe\xb5\xc7\xa7\xa4\xf2\xc2\xd4\xa4\xc3\xa4\xc6\xa4\xa4\xa4\xde\xa4\xb9' - h = Header(int, j, header_name="Subject") + [(b'Hello World!', None), + (b'\x1b$B%O%m!<%o!<%k%I!*\x1b(B', 'iso-2022-jp'), + (b'Gr\xfc\xdf Gott!', gcode)]) + subject_bytes = (b'test-ja \xa4\xd8\xc5\xea\xb9\xc6\xa4\xb5' + b'\xa4\xec\xa4\xbf\xa5\xe1\xa1\xbc\xa5\xeb\xa4\xcf\xbb\xca\xb2' + b'\xf1\xbc\xd4\xa4\xce\xbe\xb5\xc7\xa7\xa4\xf2\xc2\xd4\xa4\xc3' + b'\xa4\xc6\xa4\xa4\xa4\xde\xa4\xb9') + subject = str(subject_bytes, jcode) + h = Header(subject, j, header_name="Subject") # test a very long header enc = h.encode() # TK: splitting point may differ by codec design and/or Header encoding @@ -50,15 +57,24 @@ =?iso-2022-jp?b?dGVzdC1qYSAbJEIkWEVqOUYkNSRsJD8lYSE8JWskTztKGyhC?= =?iso-2022-jp?b?GyRCMnE8VCROPjVHJyRyQlQkQyRGJCQkXiQ5GyhC?=""") # TK: full decode comparison - eq(h.__unicode__().encode('euc-jp'), int) + eq(str(h).encode(jcode), subject_bytes) + + def test_payload_encoding_utf8(self): + jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' + b'\xa5\xeb\xa5\xc9\xa1\xaa', 'euc-jp') + msg = Message() + msg.set_payload(jhello, 'utf-8') + ustr = msg.get_payload(decode=True).decode(msg.get_content_charset()) + self.assertEqual(jhello, ustr) def test_payload_encoding(self): - jhello = '\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc\xa5\xeb\xa5\xc9\xa1\xaa' jcode = 'euc-jp' + jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' + b'\xa5\xeb\xa5\xc9\xa1\xaa', jcode) msg = Message() msg.set_payload(jhello, jcode) - ustr = str(msg.get_payload(), msg.get_content_charset()) - self.assertEqual(jhello, ustr.encode(jcode)) + ustr = msg.get_payload(decode=True).decode(msg.get_content_charset()) + self.assertEqual(jhello, ustr) diff --git a/Lib/smtplib.py b/Lib/smtplib.py --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -269,6 +269,19 @@ pass self.local_hostname = '[%s]' % addr + def __enter__(self): + return self + + def __exit__(self, *args): + try: + code, message = self.docmd("QUIT") + if code != 221: + raise SMTPResponseException(code, message) + except SMTPServerDisconnected: + pass + finally: + self.close() + def set_debuglevel(self, debuglevel): """Set the debug output level. diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py --- a/Lib/test/test_email.py +++ b/Lib/test/test_email.py @@ -3,10 +3,12 @@ # The specific tests now live in Lib/email/test from email.test.test_email import suite +from email.test.test_email_codecs import suite as codecs_suite from test import support def test_main(): support.run_unittest(suite()) + support.run_unittest(codecs_suite()) if __name__ == '__main__': test_main() diff --git a/Lib/test/test_smtplib.py b/Lib/test/test_smtplib.py --- a/Lib/test/test_smtplib.py +++ b/Lib/test/test_smtplib.py @@ -424,6 +424,9 @@ # Simulated SMTP channel & server class SimSMTPChannel(smtpd.SMTPChannel): + # For testing failures in QUIT when using the context manager API. + quit_response = None + def __init__(self, extra_features, *args, **kw): self._extrafeatures = ''.join( [ "250-{0}\r\n".format(x) for x in extra_features ]) @@ -475,19 +478,31 @@ else: self.push('550 No access for you!') + def smtp_QUIT(self, arg): + # args is ignored + if self.quit_response is None: + super(SimSMTPChannel, self).smtp_QUIT(arg) + else: + self.push(self.quit_response) + self.close_when_done() + def handle_error(self): raise class SimSMTPServer(smtpd.SMTPServer): + # For testing failures in QUIT when using the context manager API. + quit_response = None + def __init__(self, *args, **kw): self._extra_features = [] smtpd.SMTPServer.__init__(self, *args, **kw) def handle_accepted(self, conn, addr): - self._SMTPchannel = SimSMTPChannel(self._extra_features, - self, conn, addr) + self._SMTPchannel = SimSMTPChannel( + self._extra_features, self, conn, addr) + self._SMTPchannel.quit_response = self.quit_response def process_message(self, peer, mailfrom, rcpttos, data): pass @@ -620,6 +635,25 @@ self.assertIn(sim_auth_credentials['cram-md5'], str(err)) smtp.close() + def test_with_statement(self): + with smtplib.SMTP(HOST, self.port) as smtp: + code, message = smtp.noop() + self.assertEqual(code, 250) + self.assertRaises(smtplib.SMTPServerDisconnected, smtp.send, b'foo') + with smtplib.SMTP(HOST, self.port) as smtp: + smtp.close() + self.assertRaises(smtplib.SMTPServerDisconnected, smtp.send, b'foo') + + def test_with_statement_QUIT_failure(self): + self.serv.quit_response = '421 QUIT FAILED' + with self.assertRaises(smtplib.SMTPResponseException) as error: + with smtplib.SMTP(HOST, self.port) as smtp: + smtp.noop() + self.assertEqual(error.exception.smtp_code, 421) + self.assertEqual(error.exception.smtp_error, b'QUIT FAILED') + # We don't need to clean up self.serv.quit_response because a new + # server is always instantiated in the setUp(). + #TODO: add tests for correct AUTH method fallback now that the #test infrastructure can support it. diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -376,6 +376,7 @@ Jason Hildebrand Richie Hindle Konrad Hinsen +Michael Henry David Hobley Tim Hochberg Joerg-Cyril Hoehle diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -68,6 +68,12 @@ Library ------- +- Issue #11289: `smtp.SMTP` class becomes a context manager so it can be used + in a `with` statement. Contributed by Giampaolo Rodola. + +- Issue #11554: Fixed support for Japanese codecs; previously the body output + encoding was not done if euc-jp or shift-jis was specified as the charset. + - Issue #11509: Significantly increase test coverage of fileinput. Patch by Denver Coneybeare at PyCon 2011 Sprints. @@ -206,6 +212,8 @@ Tests ----- +- Issue #11554: Reactivated test_email_codecs. + - Issue #11505: improves test coverage of string.py - Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a diff --git a/Modules/_ctypes/libffi/ChangeLog b/Modules/_ctypes/libffi/ChangeLog --- a/Modules/_ctypes/libffi/ChangeLog +++ b/Modules/_ctypes/libffi/ChangeLog @@ -3084,7 +3084,7 @@ 2003-09-18 Kaz Kojima - * src/sh/ffi.c (ffi_prep_args): Take account into the alignment + * src/sh/ffi.c (ffi_prep_args): Take account into the alignement for the register size. (ffi_closure_helper_SYSV): Handle the structure return value address correctly. @@ -3344,7 +3344,7 @@ 2003-02-06 Andreas Tobler * libffi/src/powerpc/darwin_closure.S: - Fix alignment bug, allocate 8 bytes for the result. + Fix alignement bug, allocate 8 bytes for the result. * libffi/src/powerpc/aix_closure.S: Likewise. * libffi/src/powerpc/ffi_darwin.c: diff --git a/Modules/_ctypes/libffi/src/dlmalloc.c b/Modules/_ctypes/libffi/src/dlmalloc.c --- a/Modules/_ctypes/libffi/src/dlmalloc.c +++ b/Modules/_ctypes/libffi/src/dlmalloc.c @@ -1326,7 +1326,7 @@ return (ptr != 0)? ptr: MFAIL; } -/* This function supports releasing coalesced segments */ +/* This function supports releasing coalesed segments */ static int win32munmap(void* ptr, size_t size) { MEMORY_BASIC_INFORMATION minfo; char* cptr = ptr; @@ -1362,7 +1362,7 @@ #define CALL_MORECORE(S) MFAIL #endif /* HAVE_MORECORE */ -/* mstate bit set if contiguous morecore disabled or failed */ +/* mstate bit set if continguous morecore disabled or failed */ #define USE_NONCONTIGUOUS_BIT (4U) /* segment bit set in create_mspace_with_base */ diff --git a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c --- a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c +++ b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c @@ -592,7 +592,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignment to the next multiple of 16 | + | alignement to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 diff --git a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c --- a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c +++ b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c @@ -650,7 +650,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignment to the next multiple of 16 | + | alignement to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:52:39 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 20:52:39 +0100 Subject: [Python-checkins] cpython: Add unittests demonstrating issue #11432. Message-ID: http://hg.python.org/cpython/rev/08daf3ef6509 changeset: 68519:08daf3ef6509 parent: 68500:a6390ebff835 user: Gregory P. Smith date: Tue Mar 15 14:55:17 2011 -0400 summary: Add unittests demonstrating issue #11432. files: Lib/test/test_subprocess.py diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -3,6 +3,7 @@ import subprocess import sys import signal +import io import os import errno import tempfile @@ -1256,6 +1257,24 @@ close_fds=False, pass_fds=(fd, ))) self.assertIn('overriding close_fds', str(context.warning)) + def test_stdout_stdin_are_single_inout_fd(self): + with io.open(os.devnull, "r+") as inout: + p = subprocess.Popen([sys.executable, "-c", "import sys; sys.exit(0)"], + stdout=inout, stdin=inout) + p.wait() + + def test_stdout_stderr_are_single_inout_fd(self): + with io.open(os.devnull, "r+") as inout: + p = subprocess.Popen([sys.executable, "-c", "import sys; sys.exit(0)"], + stdout=inout, stderr=inout) + p.wait() + + def test_stderr_stdin_are_single_inout_fd(self): + with io.open(os.devnull, "r+") as inout: + p = subprocess.Popen([sys.executable, "-c", "import sys; sys.exit(0)"], + stderr=inout, stdin=inout) + p.wait() + def test_wait_when_sigchild_ignored(self): # NOTE: sigchild_ignore.py may not be an effective test on all OSes. sigchild_ignore = support.findfile("sigchild_ignore.py", @@ -1528,19 +1547,6 @@ raise c.exception -def test_main(): - unit_tests = (ProcessTestCase, - POSIXProcessTestCase, - Win32ProcessTestCase, - ProcessTestCasePOSIXPurePython, - CommandTests, - ProcessTestCaseNoPoll, - HelperFunctionTests, - CommandsWithSpaces, - ContextManagerTests) - - support.run_unittest(*unit_tests) +if __name__ == "__main__": + unittest.main() support.reap_children() - -if __name__ == "__main__": - test_main() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:52:40 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 20:52:40 +0100 Subject: [Python-checkins] cpython: Fix issue #11432. if the stdin pipe is the same file descriptor as either Message-ID: http://hg.python.org/cpython/rev/adcf03b074b7 changeset: 68520:adcf03b074b7 user: Gregory P. Smith date: Tue Mar 15 14:56:39 2011 -0400 summary: Fix issue #11432. if the stdin pipe is the same file descriptor as either stdout or stderr in the _posixsubprocess C extension module it would unintentionally close the fds and raise an error. files: Modules/_posixsubprocess.c diff --git a/Modules/_posixsubprocess.c b/Modules/_posixsubprocess.c --- a/Modules/_posixsubprocess.c +++ b/Modules/_posixsubprocess.c @@ -99,10 +99,10 @@ if (p2cread > 2) { POSIX_CALL(close(p2cread)); } - if (c2pwrite > 2) { + if (c2pwrite > 2 && c2pwrite != p2cread) { POSIX_CALL(close(c2pwrite)); } - if (errwrite != c2pwrite && errwrite > 2) { + if (errwrite != c2pwrite && errwrite != p2cread && errwrite > 2) { POSIX_CALL(close(errwrite)); } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:52:41 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 20:52:41 +0100 Subject: [Python-checkins] cpython: Use start_new_session in the webbrowser module rather than a python os.setsid Message-ID: http://hg.python.org/cpython/rev/d71476b9a55d changeset: 68521:d71476b9a55d user: Gregory P. Smith date: Tue Mar 15 14:58:08 2011 -0400 summary: Use start_new_session in the webbrowser module rather than a python os.setsid preeexec_fn. files: Lib/webbrowser.py diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -228,15 +228,9 @@ else: # for TTY browsers, we need stdin/out inout = None - # if possible, put browser in separate process group, so - # keyboard interrupts don't affect browser as well as Python - setsid = getattr(os, 'setsid', None) - if not setsid: - setsid = getattr(os, 'setpgrp', None) - p = subprocess.Popen(cmdline, close_fds=True, stdin=inout, stdout=(self.redirect_stdout and inout or None), - stderr=inout, preexec_fn=setsid) + stderr=inout, start_new_session=True) if remote: # wait five secons. If the subprocess is not finished, the # remote invocation has (hopefully) started a new instance. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:52:43 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 20:52:43 +0100 Subject: [Python-checkins] cpython (3.2): merge d71476b9a55d from tip, use start_new_session instead of os.setsid. Message-ID: http://hg.python.org/cpython/rev/f3ae657067ef changeset: 68522:f3ae657067ef branch: 3.2 parent: 68499:013a1cd673fc user: Gregory P. Smith date: Tue Mar 15 15:24:43 2011 -0400 summary: merge d71476b9a55d from tip, use start_new_session instead of os.setsid. files: Lib/webbrowser.py diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -228,15 +228,9 @@ else: # for TTY browsers, we need stdin/out inout = None - # if possible, put browser in separate process group, so - # keyboard interrupts don't affect browser as well as Python - setsid = getattr(os, 'setsid', None) - if not setsid: - setsid = getattr(os, 'setpgrp', None) - p = subprocess.Popen(cmdline, close_fds=True, stdin=inout, stdout=(self.redirect_stdout and inout or None), - stderr=inout, preexec_fn=setsid) + stderr=inout, start_new_session=True) if remote: # wait five secons. If the subprocess is not finished, the # remote invocation has (hopefully) started a new instance. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:52:45 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 20:52:45 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge update Message-ID: http://hg.python.org/cpython/rev/24b00853cb90 changeset: 68523:24b00853cb90 parent: 68521:d71476b9a55d parent: 68516:7523fb0410f2 user: Gregory P. Smith date: Tue Mar 15 15:35:27 2011 -0400 summary: merge update files: diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -537,9 +537,10 @@ operations such as ``PyEval_ReleaseThread(tstate)``. It is not needed before calling :c:func:`PyEval_SaveThread` or :c:func:`PyEval_RestoreThread`. - .. index:: single: Py_Initialize() + This is a no-op when called for a second time. - This is a no-op when called for a second time. + .. versionchanged:: 3.2 + This function cannot be called before :c:func:`Py_Initialize()` anymore. .. index:: module: _thread diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -46,15 +46,16 @@ be generated or modified). Note that this method is provided as a convenience and may not always - format the message the way you want. For example, by default it mangles - lines that begin with ``From``. For more flexibility, instantiate a + format the message the way you want. For example, by default it does + not do the mangling of lines that begin with ``From`` that is + required by the unix mbox format. For more flexibility, instantiate a :class:`~email.generator.Generator` instance and use its :meth:`flatten` method directly. For example:: from io import StringIO from email.generator import Generator fp = StringIO() - g = Generator(fp, mangle_from_=False, maxheaderlen=60) + g = Generator(fp, mangle_from_=True, maxheaderlen=60) g.flatten(msg) text = fp.getvalue() diff --git a/Doc/library/smtplib.rst b/Doc/library/smtplib.rst --- a/Doc/library/smtplib.rst +++ b/Doc/library/smtplib.rst @@ -34,6 +34,20 @@ For normal use, you should only require the initialization/connect, :meth:`sendmail`, and :meth:`quit` methods. An example is included below. + The :class:`SMTP` class supports the :keyword:`with` statement. When used + like this, the SMTP ``QUIT`` command is issued automatically when the + :keyword:`with` statement exits. E.g.:: + + >>> from smtplib import SMTP + >>> with SMTP("domain.org") as smtp: + ... smtp.noop() + ... + (250, b'Ok') + >>> + + .. versionadded:: 3.3 + Support for the :keyword:`with` statement was added. + .. class:: SMTP_SSL(host='', port=0, local_hostname=None, keyfile=None, certfile=None[, timeout]) diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -2698,3 +2698,7 @@ a new function, :func:`asyncore.handle_accepted`, was added to replace it. (Contributed by Giampaolo Rodola in :issue:`6706`.) + +* Due to the new :term:`GIL` implementation, :c:func:`PyEval_InitThreads()` + cannot be called before :c:func:`Py_Initialize()` anymore. + diff --git a/Lib/email/message.py b/Lib/email/message.py --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -157,8 +157,7 @@ header. This is a convenience method and may not generate the message exactly - as you intend because by default it mangles lines that begin with - "From ". For more flexibility, use the flatten() method of a + as you intend. For more flexibility, use the flatten() method of a Generator instance. """ from email.generator import Generator @@ -242,7 +241,7 @@ raise TypeError('Expected list, got %s' % type(self._payload)) payload = self._payload cte = self.get('content-transfer-encoding', '').lower() - # payload can be bytes here, (I wonder if that is actually a bug?) + # payload may be bytes here. if isinstance(payload, str): if _has_surrogates(payload): bpayload = payload.encode('ascii', 'surrogateescape') diff --git a/Lib/smtplib.py b/Lib/smtplib.py --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -269,6 +269,19 @@ pass self.local_hostname = '[%s]' % addr + def __enter__(self): + return self + + def __exit__(self, *args): + try: + code, message = self.docmd("QUIT") + if code != 221: + raise SMTPResponseException(code, message) + except SMTPServerDisconnected: + pass + finally: + self.close() + def set_debuglevel(self, debuglevel): """Set the debug output level. diff --git a/Lib/test/test_smtplib.py b/Lib/test/test_smtplib.py --- a/Lib/test/test_smtplib.py +++ b/Lib/test/test_smtplib.py @@ -424,6 +424,9 @@ # Simulated SMTP channel & server class SimSMTPChannel(smtpd.SMTPChannel): + # For testing failures in QUIT when using the context manager API. + quit_response = None + def __init__(self, extra_features, *args, **kw): self._extrafeatures = ''.join( [ "250-{0}\r\n".format(x) for x in extra_features ]) @@ -475,19 +478,31 @@ else: self.push('550 No access for you!') + def smtp_QUIT(self, arg): + # args is ignored + if self.quit_response is None: + super(SimSMTPChannel, self).smtp_QUIT(arg) + else: + self.push(self.quit_response) + self.close_when_done() + def handle_error(self): raise class SimSMTPServer(smtpd.SMTPServer): + # For testing failures in QUIT when using the context manager API. + quit_response = None + def __init__(self, *args, **kw): self._extra_features = [] smtpd.SMTPServer.__init__(self, *args, **kw) def handle_accepted(self, conn, addr): - self._SMTPchannel = SimSMTPChannel(self._extra_features, - self, conn, addr) + self._SMTPchannel = SimSMTPChannel( + self._extra_features, self, conn, addr) + self._SMTPchannel.quit_response = self.quit_response def process_message(self, peer, mailfrom, rcpttos, data): pass @@ -620,6 +635,25 @@ self.assertIn(sim_auth_credentials['cram-md5'], str(err)) smtp.close() + def test_with_statement(self): + with smtplib.SMTP(HOST, self.port) as smtp: + code, message = smtp.noop() + self.assertEqual(code, 250) + self.assertRaises(smtplib.SMTPServerDisconnected, smtp.send, b'foo') + with smtplib.SMTP(HOST, self.port) as smtp: + smtp.close() + self.assertRaises(smtplib.SMTPServerDisconnected, smtp.send, b'foo') + + def test_with_statement_QUIT_failure(self): + self.serv.quit_response = '421 QUIT FAILED' + with self.assertRaises(smtplib.SMTPResponseException) as error: + with smtplib.SMTP(HOST, self.port) as smtp: + smtp.noop() + self.assertEqual(error.exception.smtp_code, 421) + self.assertEqual(error.exception.smtp_error, b'QUIT FAILED') + # We don't need to clean up self.serv.quit_response because a new + # server is always instantiated in the setUp(). + #TODO: add tests for correct AUTH method fallback now that the #test infrastructure can support it. diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -68,6 +68,9 @@ Library ------- +- Issue #11289: `smtp.SMTP` class becomes a context manager so it can be used + in a `with` statement. Contributed by Giampaolo Rodola. + - Issue #11554: Fixed support for Japanese codecs; previously the body output encoding was not done if euc-jp or shift-jis was specified as the charset. diff --git a/Modules/_ctypes/libffi/ChangeLog b/Modules/_ctypes/libffi/ChangeLog --- a/Modules/_ctypes/libffi/ChangeLog +++ b/Modules/_ctypes/libffi/ChangeLog @@ -3084,7 +3084,7 @@ 2003-09-18 Kaz Kojima - * src/sh/ffi.c (ffi_prep_args): Take account into the alignment + * src/sh/ffi.c (ffi_prep_args): Take account into the alignement for the register size. (ffi_closure_helper_SYSV): Handle the structure return value address correctly. @@ -3344,7 +3344,7 @@ 2003-02-06 Andreas Tobler * libffi/src/powerpc/darwin_closure.S: - Fix alignment bug, allocate 8 bytes for the result. + Fix alignement bug, allocate 8 bytes for the result. * libffi/src/powerpc/aix_closure.S: Likewise. * libffi/src/powerpc/ffi_darwin.c: diff --git a/Modules/_ctypes/libffi/src/dlmalloc.c b/Modules/_ctypes/libffi/src/dlmalloc.c --- a/Modules/_ctypes/libffi/src/dlmalloc.c +++ b/Modules/_ctypes/libffi/src/dlmalloc.c @@ -1326,7 +1326,7 @@ return (ptr != 0)? ptr: MFAIL; } -/* This function supports releasing coalesced segments */ +/* This function supports releasing coalesed segments */ static int win32munmap(void* ptr, size_t size) { MEMORY_BASIC_INFORMATION minfo; char* cptr = ptr; @@ -1362,7 +1362,7 @@ #define CALL_MORECORE(S) MFAIL #endif /* HAVE_MORECORE */ -/* mstate bit set if contiguous morecore disabled or failed */ +/* mstate bit set if continguous morecore disabled or failed */ #define USE_NONCONTIGUOUS_BIT (4U) /* segment bit set in create_mspace_with_base */ diff --git a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c --- a/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c +++ b/Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c @@ -592,7 +592,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignment to the next multiple of 16 | + | alignement to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 diff --git a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c --- a/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c +++ b/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c @@ -650,7 +650,7 @@ +---------------------------------------+ 160 | result area 8 | +---------------------------------------+ 168 - | alignment to the next multiple of 16 | + | alignement to the next multiple of 16 | SP current --> +---------------------------------------+ 176 <- parent frame | back chain to caller 4 | +---------------------------------------+ 180 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:52:51 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 20:52:51 +0100 Subject: [Python-checkins] cpython: revert the test_main() change from 08daf3ef6509 so that regrtest continues to Message-ID: http://hg.python.org/cpython/rev/f4b0f9cc737e changeset: 68524:f4b0f9cc737e user: Gregory P. Smith date: Tue Mar 15 15:43:39 2011 -0400 summary: revert the test_main() change from 08daf3ef6509 so that regrtest continues to run this properly. files: Lib/test/test_subprocess.py diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -1547,6 +1547,19 @@ raise c.exception +def test_main(): + unit_tests = (ProcessTestCase, + POSIXProcessTestCase, + Win32ProcessTestCase, + ProcessTestCasePOSIXPurePython, + CommandTests, + ProcessTestCaseNoPoll, + HelperFunctionTests, + CommandsWithSpaces, + ContextManagerTests) + + support.run_unittest(*unit_tests) + support.reap_children() + if __name__ == "__main__": unittest.main() - support.reap_children() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:52:52 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 20:52:52 +0100 Subject: [Python-checkins] cpython (3.2): Fix issue #11432. if the stdin pipe is the same file descriptor as either Message-ID: http://hg.python.org/cpython/rev/ead52adcd0c8 changeset: 68525:ead52adcd0c8 branch: 3.2 parent: 68511:2c57a8f293ba user: Gregory P. Smith date: Tue Mar 15 14:56:39 2011 -0400 summary: Fix issue #11432. if the stdin pipe is the same file descriptor as either stdout or stderr in the _posixsubprocess C extension module it would unintentionally close the fds and raise an error. files: Modules/_posixsubprocess.c diff --git a/Modules/_posixsubprocess.c b/Modules/_posixsubprocess.c --- a/Modules/_posixsubprocess.c +++ b/Modules/_posixsubprocess.c @@ -99,10 +99,10 @@ if (p2cread > 2) { POSIX_CALL(close(p2cread)); } - if (c2pwrite > 2) { + if (c2pwrite > 2 && c2pwrite != p2cread) { POSIX_CALL(close(c2pwrite)); } - if (errwrite != c2pwrite && errwrite > 2) { + if (errwrite != c2pwrite && errwrite != p2cread && errwrite > 2) { POSIX_CALL(close(errwrite)); } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:52:53 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 20:52:53 +0100 Subject: [Python-checkins] cpython (3.2): Add unittests demonstrating issue #11432. Message-ID: http://hg.python.org/cpython/rev/ad2bd8d338b0 changeset: 68526:ad2bd8d338b0 branch: 3.2 user: Gregory P. Smith date: Tue Mar 15 14:55:17 2011 -0400 summary: Add unittests demonstrating issue #11432. files: Lib/test/test_subprocess.py diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -3,6 +3,7 @@ import subprocess import sys import signal +import io import os import errno import tempfile @@ -1186,6 +1187,24 @@ close_fds=False, pass_fds=(fd, ))) self.assertIn('overriding close_fds', str(context.warning)) + def test_stdout_stdin_are_single_inout_fd(self): + with io.open(os.devnull, "r+") as inout: + p = subprocess.Popen([sys.executable, "-c", "import sys; sys.exit(0)"], + stdout=inout, stdin=inout) + p.wait() + + def test_stdout_stderr_are_single_inout_fd(self): + with io.open(os.devnull, "r+") as inout: + p = subprocess.Popen([sys.executable, "-c", "import sys; sys.exit(0)"], + stdout=inout, stderr=inout) + p.wait() + + def test_stderr_stdin_are_single_inout_fd(self): + with io.open(os.devnull, "r+") as inout: + p = subprocess.Popen([sys.executable, "-c", "import sys; sys.exit(0)"], + stderr=inout, stdin=inout) + p.wait() + def test_wait_when_sigchild_ignored(self): # NOTE: sigchild_ignore.py may not be an effective test on all OSes. sigchild_ignore = support.findfile("sigchild_ignore.py", @@ -1458,19 +1477,6 @@ raise c.exception -def test_main(): - unit_tests = (ProcessTestCase, - POSIXProcessTestCase, - Win32ProcessTestCase, - ProcessTestCasePOSIXPurePython, - CommandTests, - ProcessTestCaseNoPoll, - HelperFunctionTests, - CommandsWithSpaces, - ContextManagerTests) - - support.run_unittest(*unit_tests) +if __name__ == "__main__": + unittest.main() support.reap_children() - -if __name__ == "__main__": - test_main() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:52:59 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 20:52:59 +0100 Subject: [Python-checkins] cpython (3.2): revert the test_main() change from 08daf3ef6509 so that regrtest continues to Message-ID: http://hg.python.org/cpython/rev/8c79e3abdb31 changeset: 68527:8c79e3abdb31 branch: 3.2 user: Gregory P. Smith date: Tue Mar 15 15:43:39 2011 -0400 summary: revert the test_main() change from 08daf3ef6509 so that regrtest continues to run this properly. files: Lib/test/test_subprocess.py diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -1477,6 +1477,19 @@ raise c.exception +def test_main(): + unit_tests = (ProcessTestCase, + POSIXProcessTestCase, + Win32ProcessTestCase, + ProcessTestCasePOSIXPurePython, + CommandTests, + ProcessTestCaseNoPoll, + HelperFunctionTests, + CommandsWithSpaces, + ContextManagerTests) + + support.run_unittest(*unit_tests) + support.reap_children() + if __name__ == "__main__": unittest.main() - support.reap_children() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:53:05 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 20:53:05 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge heads Message-ID: http://hg.python.org/cpython/rev/fbdcc7437b34 changeset: 68528:fbdcc7437b34 parent: 68524:f4b0f9cc737e parent: 68518:697d590f06e1 user: Gregory P. Smith date: Tue Mar 15 15:51:26 2011 -0400 summary: merge heads files: diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py --- a/Lib/test/test_dis.py +++ b/Lib/test/test_dis.py @@ -1,11 +1,35 @@ # Minimal tests for dis module from test.support import run_unittest, captured_stdout +import difflib import unittest import sys import dis import io +class _C: + def __init__(self, x): + self.x = x == 1 + +dis_c_instance_method = """\ + %-4d 0 LOAD_FAST 1 (x) + 3 LOAD_CONST 1 (1) + 6 COMPARE_OP 2 (==) + 9 LOAD_FAST 0 (self) + 12 STORE_ATTR 0 (x) + 15 LOAD_CONST 0 (None) + 18 RETURN_VALUE +""" % (_C.__init__.__code__.co_firstlineno + 1,) + +dis_c_instance_method_bytes = """\ + 0 LOAD_FAST 1 (1) + 3 LOAD_CONST 1 (1) + 6 COMPARE_OP 2 (==) + 9 LOAD_FAST 0 (0) + 12 STORE_ATTR 0 (0) + 15 LOAD_CONST 0 (0) + 18 RETURN_VALUE +""" def _f(a): print(a) @@ -23,6 +47,16 @@ _f.__code__.co_firstlineno + 2) +dis_f_co_code = """\ + 0 LOAD_GLOBAL 0 (0) + 3 LOAD_FAST 0 (0) + 6 CALL_FUNCTION 1 + 9 POP_TOP + 10 LOAD_CONST 1 (1) + 13 RETURN_VALUE +""" + + def bug708901(): for res in range(1, 10): @@ -138,18 +172,27 @@ """ class DisTests(unittest.TestCase): - def do_disassembly_test(self, func, expected): + + def get_disassembly(self, func, lasti=-1, wrapper=True): s = io.StringIO() save_stdout = sys.stdout sys.stdout = s - dis.dis(func) - sys.stdout = save_stdout - got = s.getvalue() + try: + if wrapper: + dis.dis(func) + else: + dis.disassemble(func, lasti) + finally: + sys.stdout = save_stdout # Trim trailing blanks (if any). - lines = got.split('\n') - lines = [line.rstrip() for line in lines] - expected = expected.split("\n") - import difflib + return [line.rstrip() for line in s.getvalue().splitlines()] + + def get_disassemble_as_string(self, func, lasti=-1): + return '\n'.join(self.get_disassembly(func, lasti, False)) + + def do_disassembly_test(self, func, expected): + lines = self.get_disassembly(func) + expected = expected.splitlines() if expected != lines: self.fail( "events did not match expectation:\n" + @@ -211,6 +254,46 @@ self.do_disassembly_test(simple_stmt_str, dis_simple_stmt_str) self.do_disassembly_test(compound_stmt_str, dis_compound_stmt_str) + def test_disassemble_bytes(self): + self.do_disassembly_test(_f.__code__.co_code, dis_f_co_code) + + def test_disassemble_method(self): + self.do_disassembly_test(_C(1).__init__, dis_c_instance_method) + + def test_disassemble_method_bytes(self): + method_bytecode = _C(1).__init__.__code__.co_code + self.do_disassembly_test(method_bytecode, dis_c_instance_method_bytes) + + def test_dis_none(self): + self.assertRaises(RuntimeError, dis.dis, None) + + def test_dis_object(self): + self.assertRaises(TypeError, dis.dis, object()) + + def test_dis_traceback(self): + not_defined = object() + tb = None + old = getattr(sys, 'last_traceback', not_defined) + + def cleanup(): + if old != not_defined: + sys.last_traceback = old + else: + del sys.last_traceback + + try: + 1/0 + except Exception as e: + tb = e.__traceback__ + sys.last_traceback = tb + self.addCleanup(cleanup) + + tb_dis = self.get_disassemble_as_string(tb.tb_frame.f_code, tb.tb_lasti) + self.do_disassembly_test(None, tb_dis) + + def test_dis_object(self): + self.assertRaises(TypeError, dis.dis, object()) + code_info_code_info = """\ Name: code_info Filename: (.*) @@ -363,6 +446,13 @@ dis.show_code(x) self.assertRegex(output.getvalue(), expected+"\n") + def test_code_info_object(self): + self.assertRaises(TypeError, dis.code_info, object()) + + def test_pretty_flags_no_flags(self): + self.assertEqual(dis.pretty_flags(0), '0x0') + + def test_main(): run_unittest(DisTests, CodeInfoTests) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -100,6 +100,7 @@ Forest Bond Gawain Bolton Gregory Bond +Matias Bordese Jurjen Bos Peter Bosch Eric Bouck -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 20:53:05 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 20:53:05 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> 3.2): merge 3.2 heads Message-ID: http://hg.python.org/cpython/rev/ee5262466b9f changeset: 68529:ee5262466b9f branch: 3.2 parent: 68527:8c79e3abdb31 parent: 68522:f3ae657067ef user: Gregory P. Smith date: Tue Mar 15 15:52:09 2011 -0400 summary: merge 3.2 heads files: diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -228,15 +228,9 @@ else: # for TTY browsers, we need stdin/out inout = None - # if possible, put browser in separate process group, so - # keyboard interrupts don't affect browser as well as Python - setsid = getattr(os, 'setsid', None) - if not setsid: - setsid = getattr(os, 'setpgrp', None) - p = subprocess.Popen(cmdline, close_fds=True, stdin=inout, stdout=(self.redirect_stdout and inout or None), - stderr=inout, preexec_fn=setsid) + stderr=inout, start_new_session=True) if remote: # wait five secons. If the subprocess is not finished, the # remote invocation has (hopefully) started a new instance. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:03:41 2011 From: python-checkins at python.org (brett.cannon) Date: Tue, 15 Mar 2011 21:03:41 +0100 Subject: [Python-checkins] cpython: Move off of assertEquals() and over to assertEqual(). Message-ID: http://hg.python.org/cpython/rev/3e783a029869 changeset: 68530:3e783a029869 parent: 68510:1c0cded97280 user: Brett Cannon date: Tue Mar 15 15:55:12 2011 -0400 summary: Move off of assertEquals() and over to assertEqual(). files: Lib/test/test_fileinput.py diff --git a/Lib/test/test_fileinput.py b/Lib/test/test_fileinput.py --- a/Lib/test/test_fileinput.py +++ b/Lib/test/test_fileinput.py @@ -277,7 +277,7 @@ def test_empty_files_list_specified_to_constructor(self): with FileInput(files=[]) as fi: - self.assertEquals(fi._files, ('-',)) + self.assertEqual(fi._files, ('-',)) def test__getitem__(self): """Tests invoking FileInput.__getitem__() with the current @@ -298,7 +298,7 @@ with FileInput(files=[t]) as fi: with self.assertRaises(RuntimeError) as cm: fi[1] - self.assertEquals(cm.exception.args, ("accessing lines out of order",)) + self.assertEqual(cm.exception.args, ("accessing lines out of order",)) def test__getitem__eof(self): """Tests invoking FileInput.__getitem__() with the line number but at @@ -308,7 +308,7 @@ with FileInput(files=[t]) as fi: with self.assertRaises(IndexError) as cm: fi[0] - self.assertEquals(cm.exception.args, ("end of input reached",)) + self.assertEqual(cm.exception.args, ("end of input reached",)) def test_nextfile_oserror_deleting_backup(self): """Tests invoking FileInput.nextfile() when the attempt to delete -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:03:42 2011 From: python-checkins at python.org (brett.cannon) Date: Tue, 15 Mar 2011 21:03:42 +0100 Subject: [Python-checkins] cpython: Add warnings support to test.support.args_from_interpreter_flags(). Message-ID: http://hg.python.org/cpython/rev/07f5ec8fc014 changeset: 68531:07f5ec8fc014 user: Brett Cannon date: Tue Mar 15 16:03:09 2011 -0400 summary: Add warnings support to test.support.args_from_interpreter_flags(). This allows the -j flag to regrtest to propagate warnings settings properly. files: Lib/test/support.py diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1374,7 +1374,7 @@ def args_from_interpreter_flags(): """Return a list of command-line arguments reproducing the current - settings in sys.flags.""" + settings in sys.flags and sys.warnoptions.""" flag_opt_map = { 'bytes_warning': 'b', 'dont_write_bytecode': 'B', @@ -1389,6 +1389,9 @@ v = getattr(sys.flags, flag) if v > 0: args.append('-' + opt * v) + if sys.warnoptions: + args.append('-W') + args.extend(sys.warnoptions) return args #============================================================ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:03:43 2011 From: python-checkins at python.org (brett.cannon) Date: Tue, 15 Mar 2011 21:03:43 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge Message-ID: http://hg.python.org/cpython/rev/e04253f3ad4a changeset: 68532:e04253f3ad4a parent: 68531:07f5ec8fc014 parent: 68528:fbdcc7437b34 user: Brett Cannon date: Tue Mar 15 16:03:32 2011 -0400 summary: merge files: diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -537,9 +537,10 @@ operations such as ``PyEval_ReleaseThread(tstate)``. It is not needed before calling :c:func:`PyEval_SaveThread` or :c:func:`PyEval_RestoreThread`. - .. index:: single: Py_Initialize() + This is a no-op when called for a second time. - This is a no-op when called for a second time. + .. versionchanged:: 3.2 + This function cannot be called before :c:func:`Py_Initialize()` anymore. .. index:: module: _thread diff --git a/Doc/library/smtplib.rst b/Doc/library/smtplib.rst --- a/Doc/library/smtplib.rst +++ b/Doc/library/smtplib.rst @@ -34,6 +34,20 @@ For normal use, you should only require the initialization/connect, :meth:`sendmail`, and :meth:`quit` methods. An example is included below. + The :class:`SMTP` class supports the :keyword:`with` statement. When used + like this, the SMTP ``QUIT`` command is issued automatically when the + :keyword:`with` statement exits. E.g.:: + + >>> from smtplib import SMTP + >>> with SMTP("domain.org") as smtp: + ... smtp.noop() + ... + (250, b'Ok') + >>> + + .. versionadded:: 3.3 + Support for the :keyword:`with` statement was added. + .. class:: SMTP_SSL(host='', port=0, local_hostname=None, keyfile=None, certfile=None[, timeout]) diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -2698,3 +2698,7 @@ a new function, :func:`asyncore.handle_accepted`, was added to replace it. (Contributed by Giampaolo Rodola in :issue:`6706`.) + +* Due to the new :term:`GIL` implementation, :c:func:`PyEval_InitThreads()` + cannot be called before :c:func:`Py_Initialize()` anymore. + diff --git a/Lib/smtplib.py b/Lib/smtplib.py --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -269,6 +269,19 @@ pass self.local_hostname = '[%s]' % addr + def __enter__(self): + return self + + def __exit__(self, *args): + try: + code, message = self.docmd("QUIT") + if code != 221: + raise SMTPResponseException(code, message) + except SMTPServerDisconnected: + pass + finally: + self.close() + def set_debuglevel(self, debuglevel): """Set the debug output level. diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py --- a/Lib/test/test_dis.py +++ b/Lib/test/test_dis.py @@ -1,11 +1,35 @@ # Minimal tests for dis module from test.support import run_unittest, captured_stdout +import difflib import unittest import sys import dis import io +class _C: + def __init__(self, x): + self.x = x == 1 + +dis_c_instance_method = """\ + %-4d 0 LOAD_FAST 1 (x) + 3 LOAD_CONST 1 (1) + 6 COMPARE_OP 2 (==) + 9 LOAD_FAST 0 (self) + 12 STORE_ATTR 0 (x) + 15 LOAD_CONST 0 (None) + 18 RETURN_VALUE +""" % (_C.__init__.__code__.co_firstlineno + 1,) + +dis_c_instance_method_bytes = """\ + 0 LOAD_FAST 1 (1) + 3 LOAD_CONST 1 (1) + 6 COMPARE_OP 2 (==) + 9 LOAD_FAST 0 (0) + 12 STORE_ATTR 0 (0) + 15 LOAD_CONST 0 (0) + 18 RETURN_VALUE +""" def _f(a): print(a) @@ -23,6 +47,16 @@ _f.__code__.co_firstlineno + 2) +dis_f_co_code = """\ + 0 LOAD_GLOBAL 0 (0) + 3 LOAD_FAST 0 (0) + 6 CALL_FUNCTION 1 + 9 POP_TOP + 10 LOAD_CONST 1 (1) + 13 RETURN_VALUE +""" + + def bug708901(): for res in range(1, 10): @@ -138,18 +172,27 @@ """ class DisTests(unittest.TestCase): - def do_disassembly_test(self, func, expected): + + def get_disassembly(self, func, lasti=-1, wrapper=True): s = io.StringIO() save_stdout = sys.stdout sys.stdout = s - dis.dis(func) - sys.stdout = save_stdout - got = s.getvalue() + try: + if wrapper: + dis.dis(func) + else: + dis.disassemble(func, lasti) + finally: + sys.stdout = save_stdout # Trim trailing blanks (if any). - lines = got.split('\n') - lines = [line.rstrip() for line in lines] - expected = expected.split("\n") - import difflib + return [line.rstrip() for line in s.getvalue().splitlines()] + + def get_disassemble_as_string(self, func, lasti=-1): + return '\n'.join(self.get_disassembly(func, lasti, False)) + + def do_disassembly_test(self, func, expected): + lines = self.get_disassembly(func) + expected = expected.splitlines() if expected != lines: self.fail( "events did not match expectation:\n" + @@ -211,6 +254,46 @@ self.do_disassembly_test(simple_stmt_str, dis_simple_stmt_str) self.do_disassembly_test(compound_stmt_str, dis_compound_stmt_str) + def test_disassemble_bytes(self): + self.do_disassembly_test(_f.__code__.co_code, dis_f_co_code) + + def test_disassemble_method(self): + self.do_disassembly_test(_C(1).__init__, dis_c_instance_method) + + def test_disassemble_method_bytes(self): + method_bytecode = _C(1).__init__.__code__.co_code + self.do_disassembly_test(method_bytecode, dis_c_instance_method_bytes) + + def test_dis_none(self): + self.assertRaises(RuntimeError, dis.dis, None) + + def test_dis_object(self): + self.assertRaises(TypeError, dis.dis, object()) + + def test_dis_traceback(self): + not_defined = object() + tb = None + old = getattr(sys, 'last_traceback', not_defined) + + def cleanup(): + if old != not_defined: + sys.last_traceback = old + else: + del sys.last_traceback + + try: + 1/0 + except Exception as e: + tb = e.__traceback__ + sys.last_traceback = tb + self.addCleanup(cleanup) + + tb_dis = self.get_disassemble_as_string(tb.tb_frame.f_code, tb.tb_lasti) + self.do_disassembly_test(None, tb_dis) + + def test_dis_object(self): + self.assertRaises(TypeError, dis.dis, object()) + code_info_code_info = """\ Name: code_info Filename: (.*) @@ -363,6 +446,13 @@ dis.show_code(x) self.assertRegex(output.getvalue(), expected+"\n") + def test_code_info_object(self): + self.assertRaises(TypeError, dis.code_info, object()) + + def test_pretty_flags_no_flags(self): + self.assertEqual(dis.pretty_flags(0), '0x0') + + def test_main(): run_unittest(DisTests, CodeInfoTests) diff --git a/Lib/test/test_smtplib.py b/Lib/test/test_smtplib.py --- a/Lib/test/test_smtplib.py +++ b/Lib/test/test_smtplib.py @@ -424,6 +424,9 @@ # Simulated SMTP channel & server class SimSMTPChannel(smtpd.SMTPChannel): + # For testing failures in QUIT when using the context manager API. + quit_response = None + def __init__(self, extra_features, *args, **kw): self._extrafeatures = ''.join( [ "250-{0}\r\n".format(x) for x in extra_features ]) @@ -475,19 +478,31 @@ else: self.push('550 No access for you!') + def smtp_QUIT(self, arg): + # args is ignored + if self.quit_response is None: + super(SimSMTPChannel, self).smtp_QUIT(arg) + else: + self.push(self.quit_response) + self.close_when_done() + def handle_error(self): raise class SimSMTPServer(smtpd.SMTPServer): + # For testing failures in QUIT when using the context manager API. + quit_response = None + def __init__(self, *args, **kw): self._extra_features = [] smtpd.SMTPServer.__init__(self, *args, **kw) def handle_accepted(self, conn, addr): - self._SMTPchannel = SimSMTPChannel(self._extra_features, - self, conn, addr) + self._SMTPchannel = SimSMTPChannel( + self._extra_features, self, conn, addr) + self._SMTPchannel.quit_response = self.quit_response def process_message(self, peer, mailfrom, rcpttos, data): pass @@ -620,6 +635,25 @@ self.assertIn(sim_auth_credentials['cram-md5'], str(err)) smtp.close() + def test_with_statement(self): + with smtplib.SMTP(HOST, self.port) as smtp: + code, message = smtp.noop() + self.assertEqual(code, 250) + self.assertRaises(smtplib.SMTPServerDisconnected, smtp.send, b'foo') + with smtplib.SMTP(HOST, self.port) as smtp: + smtp.close() + self.assertRaises(smtplib.SMTPServerDisconnected, smtp.send, b'foo') + + def test_with_statement_QUIT_failure(self): + self.serv.quit_response = '421 QUIT FAILED' + with self.assertRaises(smtplib.SMTPResponseException) as error: + with smtplib.SMTP(HOST, self.port) as smtp: + smtp.noop() + self.assertEqual(error.exception.smtp_code, 421) + self.assertEqual(error.exception.smtp_error, b'QUIT FAILED') + # We don't need to clean up self.serv.quit_response because a new + # server is always instantiated in the setUp(). + #TODO: add tests for correct AUTH method fallback now that the #test infrastructure can support it. diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -3,6 +3,7 @@ import subprocess import sys import signal +import io import os import errno import tempfile @@ -1256,6 +1257,24 @@ close_fds=False, pass_fds=(fd, ))) self.assertIn('overriding close_fds', str(context.warning)) + def test_stdout_stdin_are_single_inout_fd(self): + with io.open(os.devnull, "r+") as inout: + p = subprocess.Popen([sys.executable, "-c", "import sys; sys.exit(0)"], + stdout=inout, stdin=inout) + p.wait() + + def test_stdout_stderr_are_single_inout_fd(self): + with io.open(os.devnull, "r+") as inout: + p = subprocess.Popen([sys.executable, "-c", "import sys; sys.exit(0)"], + stdout=inout, stderr=inout) + p.wait() + + def test_stderr_stdin_are_single_inout_fd(self): + with io.open(os.devnull, "r+") as inout: + p = subprocess.Popen([sys.executable, "-c", "import sys; sys.exit(0)"], + stderr=inout, stdin=inout) + p.wait() + def test_wait_when_sigchild_ignored(self): # NOTE: sigchild_ignore.py may not be an effective test on all OSes. sigchild_ignore = support.findfile("sigchild_ignore.py", @@ -1543,4 +1562,4 @@ support.reap_children() if __name__ == "__main__": - test_main() + unittest.main() diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -228,15 +228,9 @@ else: # for TTY browsers, we need stdin/out inout = None - # if possible, put browser in separate process group, so - # keyboard interrupts don't affect browser as well as Python - setsid = getattr(os, 'setsid', None) - if not setsid: - setsid = getattr(os, 'setpgrp', None) - p = subprocess.Popen(cmdline, close_fds=True, stdin=inout, stdout=(self.redirect_stdout and inout or None), - stderr=inout, preexec_fn=setsid) + stderr=inout, start_new_session=True) if remote: # wait five secons. If the subprocess is not finished, the # remote invocation has (hopefully) started a new instance. diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -100,6 +100,7 @@ Forest Bond Gawain Bolton Gregory Bond +Matias Bordese Jurjen Bos Peter Bosch Eric Bouck diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -68,6 +68,9 @@ Library ------- +- Issue #11289: `smtp.SMTP` class becomes a context manager so it can be used + in a `with` statement. Contributed by Giampaolo Rodola. + - Issue #11554: Fixed support for Japanese codecs; previously the body output encoding was not done if euc-jp or shift-jis was specified as the charset. diff --git a/Modules/_posixsubprocess.c b/Modules/_posixsubprocess.c --- a/Modules/_posixsubprocess.c +++ b/Modules/_posixsubprocess.c @@ -99,10 +99,10 @@ if (p2cread > 2) { POSIX_CALL(close(p2cread)); } - if (c2pwrite > 2) { + if (c2pwrite > 2 && c2pwrite != p2cread) { POSIX_CALL(close(c2pwrite)); } - if (errwrite != c2pwrite && errwrite > 2) { + if (errwrite != c2pwrite && errwrite != p2cread && errwrite > 2) { POSIX_CALL(close(errwrite)); } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:05:01 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 21:05:01 +0100 Subject: [Python-checkins] cpython (3.2): issue 11432 news entry. Message-ID: http://hg.python.org/cpython/rev/82e010943c68 changeset: 68533:82e010943c68 branch: 3.2 parent: 68529:ee5262466b9f user: Gregory P. Smith date: Tue Mar 15 16:02:10 2011 -0400 summary: issue 11432 news entry. files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,10 @@ Core and Builtins ----------------- +- Issue #11432: A bug was introduced in subprocess.Popen on posix systems with + 3.2.0 where the stdout or stderr file descriptor being the same as the stdin + file descriptor would raise an exception. webbrowser.open would fail. fixed. + - Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when there are many tags (e.g. when using mq). Patch by Nadeem Vawda. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:05:02 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 21:05:02 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Misc/NEWS entry for issue 11432 Message-ID: http://hg.python.org/cpython/rev/8d3bcf57977b changeset: 68534:8d3bcf57977b parent: 68528:fbdcc7437b34 parent: 68533:82e010943c68 user: Gregory P. Smith date: Tue Mar 15 16:04:15 2011 -0400 summary: Misc/NEWS entry for issue 11432 files: Lib/test/test_subprocess.py Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,10 @@ - _ast.__version__ is now a Mercurial integer and hex revision. +- Issue #11432: A bug was introduced in subprocess.Popen on posix systems with + 3.2.0 where the stdout or stderr file descriptor being the same as the stdin + file descriptor would raise an exception. webbrowser.open would fail. fixed. + - Issue #9856: Change object.__format__ with a non-empty format string to be a DeprecationWarning. In 3.2 it was a PendingDeprecationWarning. In 3.4 it will be a TypeError. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:05:03 2011 From: python-checkins at python.org (gregory.p.smith) Date: Tue, 15 Mar 2011 21:05:03 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge head Message-ID: http://hg.python.org/cpython/rev/7dae44d1b03e changeset: 68535:7dae44d1b03e parent: 68534:8d3bcf57977b parent: 68532:e04253f3ad4a user: Gregory P. Smith date: Tue Mar 15 16:04:54 2011 -0400 summary: merge head files: diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1374,7 +1374,7 @@ def args_from_interpreter_flags(): """Return a list of command-line arguments reproducing the current - settings in sys.flags.""" + settings in sys.flags and sys.warnoptions.""" flag_opt_map = { 'bytes_warning': 'b', 'dont_write_bytecode': 'B', @@ -1389,6 +1389,9 @@ v = getattr(sys.flags, flag) if v > 0: args.append('-' + opt * v) + if sys.warnoptions: + args.append('-W') + args.extend(sys.warnoptions) return args #============================================================ diff --git a/Lib/test/test_fileinput.py b/Lib/test/test_fileinput.py --- a/Lib/test/test_fileinput.py +++ b/Lib/test/test_fileinput.py @@ -277,7 +277,7 @@ def test_empty_files_list_specified_to_constructor(self): with FileInput(files=[]) as fi: - self.assertEquals(fi._files, ('-',)) + self.assertEqual(fi._files, ('-',)) def test__getitem__(self): """Tests invoking FileInput.__getitem__() with the current @@ -298,7 +298,7 @@ with FileInput(files=[t]) as fi: with self.assertRaises(RuntimeError) as cm: fi[1] - self.assertEquals(cm.exception.args, ("accessing lines out of order",)) + self.assertEqual(cm.exception.args, ("accessing lines out of order",)) def test__getitem__eof(self): """Tests invoking FileInput.__getitem__() with the line number but at @@ -308,7 +308,7 @@ with FileInput(files=[t]) as fi: with self.assertRaises(IndexError) as cm: fi[0] - self.assertEquals(cm.exception.args, ("end of input reached",)) + self.assertEqual(cm.exception.args, ("end of input reached",)) def test_nextfile_oserror_deleting_backup(self): """Tests invoking FileInput.nextfile() when the attempt to delete -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:08:52 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 15 Mar 2011 21:08:52 +0100 Subject: [Python-checkins] cpython (3.1): make this subversion artifact empty Message-ID: http://hg.python.org/cpython/rev/7327b4dbd4f0 changeset: 68536:7327b4dbd4f0 branch: 3.1 parent: 68508:2804a78a123e user: Benjamin Peterson date: Tue Mar 15 15:03:13 2011 -0500 summary: make this subversion artifact empty files: Include/patchlevel.h diff --git a/Include/patchlevel.h b/Include/patchlevel.h --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -26,8 +26,9 @@ #define PY_VERSION "3.1.3+" /*--end constants--*/ -/* Subversion Revision number of this file (not of the repository) */ -#define PY_PATCHLEVEL_REVISION "$Revision$" +/* Subversion Revision number of this file (not of the repository). Empty + since Mercurial migration. */ +#define PY_PATCHLEVEL_REVISION "" /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:08:53 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 15 Mar 2011 21:08:53 +0100 Subject: [Python-checkins] cpython (2.7): make this subversion artifact empty Message-ID: http://hg.python.org/cpython/rev/2baaabf6bb05 changeset: 68537:2baaabf6bb05 branch: 2.7 parent: 68504:a407a7790957 user: Benjamin Peterson date: Tue Mar 15 15:03:13 2011 -0500 summary: make this subversion artifact empty files: Include/patchlevel.h diff --git a/Include/patchlevel.h b/Include/patchlevel.h --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -30,8 +30,9 @@ #define PY_VERSION "2.7.1+" /*--end constants--*/ -/* Subversion Revision number of this file (not of the repository) */ -#define PY_PATCHLEVEL_REVISION "$Revision$" +/* Subversion Revision number of this file (not of the repository). Empty + since Mercurial migration. */ +#define PY_PATCHLEVEL_REVISION "" /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:08:54 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 15 Mar 2011 21:08:54 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): merge 3.1 Message-ID: http://hg.python.org/cpython/rev/68acbf72290c changeset: 68538:68acbf72290c branch: 3.2 parent: 68529:ee5262466b9f parent: 68536:7327b4dbd4f0 user: Benjamin Peterson date: Tue Mar 15 15:04:06 2011 -0500 summary: merge 3.1 files: Include/patchlevel.h diff --git a/Include/patchlevel.h b/Include/patchlevel.h --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -26,8 +26,9 @@ #define PY_VERSION "3.2.1a0" /*--end constants--*/ -/* Subversion Revision number of this file (not of the repository) */ -#define PY_PATCHLEVEL_REVISION "$Revision$" +/* Subversion Revision number of this file (not of the repository). Empty + since Mercurial migration. */ +#define PY_PATCHLEVEL_REVISION "" /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:08:55 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 15 Mar 2011 21:08:55 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge 3.2 Message-ID: http://hg.python.org/cpython/rev/c23b53882996 changeset: 68539:c23b53882996 parent: 68528:fbdcc7437b34 parent: 68538:68acbf72290c user: Benjamin Peterson date: Tue Mar 15 15:05:22 2011 -0500 summary: merge 3.2 files: Include/patchlevel.h Lib/test/test_subprocess.py diff --git a/Include/patchlevel.h b/Include/patchlevel.h --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -26,8 +26,9 @@ #define PY_VERSION "3.3a0" /*--end constants--*/ -/* Subversion Revision number of this file (not of the repository) */ -#define PY_PATCHLEVEL_REVISION "$Revision$" +/* Subversion Revision number of this file (not of the repository). Empty + since Mercurial migration. */ +#define PY_PATCHLEVEL_REVISION "" /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:08:56 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 15 Mar 2011 21:08:56 +0100 Subject: [Python-checkins] cpython: kill PY_PATCHLEVEL_REVISION Message-ID: http://hg.python.org/cpython/rev/abf863fb20aa changeset: 68540:abf863fb20aa user: Benjamin Peterson date: Tue Mar 15 15:07:20 2011 -0500 summary: kill PY_PATCHLEVEL_REVISION files: Include/patchlevel.h Misc/NEWS diff --git a/Include/patchlevel.h b/Include/patchlevel.h --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -26,10 +26,6 @@ #define PY_VERSION "3.3a0" /*--end constants--*/ -/* Subversion Revision number of this file (not of the repository). Empty - since Mercurial migration. */ -#define PY_PATCHLEVEL_REVISION "" - /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */ #define PY_VERSION_HEX ((PY_MAJOR_VERSION << 24) | \ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -237,6 +237,11 @@ - Issue #10990: Prevent tests from clobbering a set trace function. +C-API +----- + +- PY_PATCHLEVEL_REVISION has been removed, since it's meaningless with Mercurial. + What's New in Python 3.2? ========================= -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:08:57 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 15 Mar 2011 21:08:57 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge heads Message-ID: http://hg.python.org/cpython/rev/e09609770999 changeset: 68541:e09609770999 parent: 68540:abf863fb20aa parent: 68535:7dae44d1b03e user: Benjamin Peterson date: Tue Mar 15 15:08:05 2011 -0500 summary: merge heads files: Misc/NEWS diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1374,7 +1374,7 @@ def args_from_interpreter_flags(): """Return a list of command-line arguments reproducing the current - settings in sys.flags.""" + settings in sys.flags and sys.warnoptions.""" flag_opt_map = { 'bytes_warning': 'b', 'dont_write_bytecode': 'B', @@ -1389,6 +1389,9 @@ v = getattr(sys.flags, flag) if v > 0: args.append('-' + opt * v) + if sys.warnoptions: + args.append('-W') + args.extend(sys.warnoptions) return args #============================================================ diff --git a/Lib/test/test_fileinput.py b/Lib/test/test_fileinput.py --- a/Lib/test/test_fileinput.py +++ b/Lib/test/test_fileinput.py @@ -277,7 +277,7 @@ def test_empty_files_list_specified_to_constructor(self): with FileInput(files=[]) as fi: - self.assertEquals(fi._files, ('-',)) + self.assertEqual(fi._files, ('-',)) def test__getitem__(self): """Tests invoking FileInput.__getitem__() with the current @@ -298,7 +298,7 @@ with FileInput(files=[t]) as fi: with self.assertRaises(RuntimeError) as cm: fi[1] - self.assertEquals(cm.exception.args, ("accessing lines out of order",)) + self.assertEqual(cm.exception.args, ("accessing lines out of order",)) def test__getitem__eof(self): """Tests invoking FileInput.__getitem__() with the line number but at @@ -308,7 +308,7 @@ with FileInput(files=[t]) as fi: with self.assertRaises(IndexError) as cm: fi[0] - self.assertEquals(cm.exception.args, ("end of input reached",)) + self.assertEqual(cm.exception.args, ("end of input reached",)) def test_nextfile_oserror_deleting_backup(self): """Tests invoking FileInput.nextfile() when the attempt to delete diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,10 @@ - _ast.__version__ is now a Mercurial integer and hex revision. +- Issue #11432: A bug was introduced in subprocess.Popen on posix systems with + 3.2.0 where the stdout or stderr file descriptor being the same as the stdin + file descriptor would raise an exception. webbrowser.open would fail. fixed. + - Issue #9856: Change object.__format__ with a non-empty format string to be a DeprecationWarning. In 3.2 it was a PendingDeprecationWarning. In 3.4 it will be a TypeError. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:08:59 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 15 Mar 2011 21:08:59 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> 3.2): merge heads Message-ID: http://hg.python.org/cpython/rev/ccea53bd4f88 changeset: 68542:ccea53bd4f88 branch: 3.2 parent: 68538:68acbf72290c parent: 68533:82e010943c68 user: Benjamin Peterson date: Tue Mar 15 15:08:34 2011 -0500 summary: merge heads files: diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,10 @@ Core and Builtins ----------------- +- Issue #11432: A bug was introduced in subprocess.Popen on posix systems with + 3.2.0 where the stdout or stderr file descriptor being the same as the stdin + file descriptor would raise an exception. webbrowser.open would fail. fixed. + - Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when there are many tags (e.g. when using mq). Patch by Nadeem Vawda. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:08:59 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 15 Mar 2011 21:08:59 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge 3.2 Message-ID: http://hg.python.org/cpython/rev/5798168e35ff changeset: 68543:5798168e35ff parent: 68541:e09609770999 parent: 68542:ccea53bd4f88 user: Benjamin Peterson date: Tue Mar 15 15:10:29 2011 -0500 summary: merge 3.2 files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:17:20 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 15 Mar 2011 21:17:20 +0100 Subject: [Python-checkins] cpython (3.1): On behalf of Tarek: Issue #11501: disutils.archive_utils.make_zipfile no Message-ID: http://hg.python.org/cpython/rev/6b33aa811821 changeset: 68544:6b33aa811821 branch: 3.1 parent: 68508:2804a78a123e user: Antoine Pitrou date: Tue Mar 15 21:02:59 2011 +0100 summary: On behalf of Tarek: Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is not installed. Instead, the zipfile.ZIP_STORED compression is used to create the ZipFile. Patch by Natalia B. Bidart. files: Lib/distutils/archive_util.py Lib/distutils/tests/test_archive_util.py Lib/distutils/tests/test_bdist_dumb.py Lib/distutils/tests/test_sdist.py Lib/test/support.py Misc/ACKS Misc/NEWS diff --git a/Lib/distutils/archive_util.py b/Lib/distutils/archive_util.py --- a/Lib/distutils/archive_util.py +++ b/Lib/distutils/archive_util.py @@ -9,6 +9,12 @@ from warnings import warn import sys +try: + import zipfile +except ImportError: + zipfile = None + + from distutils.errors import DistutilsExecError from distutils.spawn import spawn from distutils.dir_util import mkpath @@ -74,11 +80,6 @@ available, raises DistutilsExecError. Returns the name of the output zip file. """ - try: - import zipfile - except ImportError: - zipfile = None - zip_filename = base_name + ".zip" mkpath(os.path.dirname(zip_filename), dry_run=dry_run) @@ -105,8 +106,12 @@ zip_filename, base_dir) if not dry_run: - zip = zipfile.ZipFile(zip_filename, "w", - compression=zipfile.ZIP_DEFLATED) + try: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_DEFLATED) + except RuntimeError: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_STORED) for dirpath, dirnames, filenames in os.walk(base_dir): for name in filenames: diff --git a/Lib/distutils/tests/test_archive_util.py b/Lib/distutils/tests/test_archive_util.py --- a/Lib/distutils/tests/test_archive_util.py +++ b/Lib/distutils/tests/test_archive_util.py @@ -7,12 +7,13 @@ from os.path import splitdrive import warnings +from distutils import archive_util from distutils.archive_util import (check_archive_formats, make_tarball, make_zipfile, make_archive, ARCHIVE_FORMATS) from distutils.spawn import find_executable, spawn from distutils.tests import support -from test.support import check_warnings, run_unittest +from test.support import check_warnings, run_unittest, patch try: import zipfile @@ -20,10 +21,18 @@ except ImportError: ZIP_SUPPORT = find_executable('zip') +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class ArchiveUtilTestCase(support.TempdirManager, support.LoggingSilencer, unittest.TestCase): + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_make_tarball(self): # creating something to tar tmpdir = self.mkdtemp() @@ -84,8 +93,9 @@ base_name = os.path.join(tmpdir2, 'archive') return tmpdir, tmpdir2, base_name - @unittest.skipUnless(find_executable('tar') and find_executable('gzip'), - 'Need the tar command to run') + @unittest.skipUnless(find_executable('tar') and find_executable('gzip') + and ZLIB_SUPPORT, + 'Need the tar, gzip and zlib command to run') def test_tarfile_vs_tar(self): tmpdir, tmpdir2, base_name = self._create_files() old_dir = os.getcwd() @@ -169,7 +179,8 @@ self.assertTrue(not os.path.exists(tarball)) self.assertEqual(len(w.warnings), 1) - @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + @unittest.skipUnless(ZIP_SUPPORT and ZLIB_SUPPORT, + 'Need zip and zlib support to run') def test_make_zipfile(self): # creating something to tar tmpdir = self.mkdtemp() @@ -182,6 +193,29 @@ # check if the compressed tarball was created tarball = base_name + '.zip' + self.assertTrue(os.path.exists(tarball)) + + @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + def test_make_zipfile_no_zlib(self): + patch(self, archive_util.zipfile, 'zlib', None) # force zlib ImportError + + called = [] + zipfile_class = zipfile.ZipFile + def fake_zipfile(*a, **kw): + if kw.get('compression', None) == zipfile.ZIP_STORED: + called.append((a, kw)) + return zipfile_class(*a, **kw) + + patch(self, archive_util.zipfile, 'ZipFile', fake_zipfile) + + # create something to tar and compress + tmpdir, tmpdir2, base_name = self._create_files() + make_zipfile(base_name, tmpdir) + + tarball = base_name + '.zip' + self.assertEqual(called, + [((tarball, "w"), {'compression': zipfile.ZIP_STORED})]) + self.assertTrue(os.path.exists(tarball)) def test_check_archive_formats(self): self.assertEqual(check_archive_formats(['gztar', 'xxx', 'zip']), diff --git a/Lib/distutils/tests/test_bdist_dumb.py b/Lib/distutils/tests/test_bdist_dumb.py --- a/Lib/distutils/tests/test_bdist_dumb.py +++ b/Lib/distutils/tests/test_bdist_dumb.py @@ -18,6 +18,13 @@ """ +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class BuildDumbTestCase(support.TempdirManager, support.LoggingSilencer, support.EnvironGuard, @@ -34,6 +41,7 @@ sys.argv[:] = self.old_sys_argv[1] super(BuildDumbTestCase, self).tearDown() + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_simple_built(self): # let's create a simple package diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -40,6 +40,13 @@ somecode%(sep)sdoc.txt """ +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class SDistTestCase(PyPIRCCommandTestCase): def setUp(self): @@ -78,6 +85,7 @@ cmd.warn = _warn return dist, cmd + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_prune_file_list(self): # this test creates a package with some vcs dirs in it # and launch sdist to make sure they get pruned @@ -119,6 +127,7 @@ # making sure everything has been pruned correctly self.assertEqual(len(content), 4) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_make_distribution(self): # check if tar and gzip are installed @@ -153,6 +162,7 @@ result.sort() self.assertEqual(result, ['fake-1.0.tar', 'fake-1.0.tar.gz']) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_add_defaults(self): # http://bugs.python.org/issue2279 @@ -218,6 +228,7 @@ finally: f.close() + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_metadata_check_option(self): # testing the `medata-check` option dist, cmd = self.get_cmd(metadata={}) @@ -277,7 +288,7 @@ cmd.formats = 'supazipa' self.assertRaises(DistutilsOptionError, cmd.finalize_options) - + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_get_file_list(self): # make sure MANIFEST is recalculated dist, cmd = self.get_cmd() @@ -318,6 +329,7 @@ self.assertEqual(len(manifest2), 6) self.assertIn('doc2.txt', manifest2[-1]) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_manifest_marker(self): # check that autogenerated MANIFESTs have a marker dist, cmd = self.get_cmd() @@ -334,6 +346,7 @@ self.assertEqual(manifest[0], '# file GENERATED by distutils, do NOT edit') + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_manual_manifest(self): # check that a MANIFEST without a marker is left alone dist, cmd = self.get_cmd() diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1096,3 +1096,36 @@ """ stderr = re.sub(br"\[\d+ refs\]\r?\n?$", b"", stderr).strip() return stderr + +def patch(test_instance, object_to_patch, attr_name, new_value): + """Override 'object_to_patch'.'attr_name' with 'new_value'. + + Also, add a cleanup procedure to 'test_instance' to restore + 'object_to_patch' value for 'attr_name'. + The 'attr_name' should be a valid attribute for 'object_to_patch'. + + """ + # check that 'attr_name' is a real attribute for 'object_to_patch' + # will raise AttributeError if it does not exist + getattr(object_to_patch, attr_name) + + # keep a copy of the old value + attr_is_local = False + try: + old_value = object_to_patch.__dict__[attr_name] + except (AttributeError, KeyError): + old_value = getattr(object_to_patch, attr_name, None) + else: + attr_is_local = True + + # restore the value when the test is done + def cleanup(): + if attr_is_local: + setattr(object_to_patch, attr_name, old_value) + else: + delattr(object_to_patch, attr_name) + + test_instance.addCleanup(cleanup) + + # actually override the attribute + setattr(object_to_patch, attr_name, new_value) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -72,6 +72,7 @@ Steven Bethard Stephen Bevan Ron Bickers +Natalia B. Bidart David Binger Dominic Binks Philippe Biondi diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,10 @@ Library ------- +- Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is + not installed. Instead, the zipfile.ZIP_STORED compression is used to create + the ZipFile. Patch by Natalia B. Bidart. + - Issue #11491: dbm.error is no longer raised when dbm.open is called with the "n" as the flag argument and the file exists. The behavior matches the documentation and general logic. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:17:21 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 15 Mar 2011 21:17:21 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge fix for issue #11501 Message-ID: http://hg.python.org/cpython/rev/1bf4383f190a changeset: 68545:1bf4383f190a branch: 3.2 parent: 68529:ee5262466b9f parent: 68544:6b33aa811821 user: Antoine Pitrou date: Tue Mar 15 21:05:36 2011 +0100 summary: Merge fix for issue #11501 files: Lib/distutils/archive_util.py Lib/distutils/tests/test_archive_util.py Lib/distutils/tests/test_bdist_dumb.py Lib/distutils/tests/test_sdist.py Lib/test/support.py Misc/ACKS Misc/NEWS diff --git a/Lib/distutils/archive_util.py b/Lib/distutils/archive_util.py --- a/Lib/distutils/archive_util.py +++ b/Lib/distutils/archive_util.py @@ -9,6 +9,12 @@ from warnings import warn import sys +try: + import zipfile +except ImportError: + zipfile = None + + from distutils.errors import DistutilsExecError from distutils.spawn import spawn from distutils.dir_util import mkpath @@ -74,11 +80,6 @@ available, raises DistutilsExecError. Returns the name of the output zip file. """ - try: - import zipfile - except ImportError: - zipfile = None - zip_filename = base_name + ".zip" mkpath(os.path.dirname(zip_filename), dry_run=dry_run) @@ -105,8 +106,12 @@ zip_filename, base_dir) if not dry_run: - zip = zipfile.ZipFile(zip_filename, "w", - compression=zipfile.ZIP_DEFLATED) + try: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_DEFLATED) + except RuntimeError: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_STORED) for dirpath, dirnames, filenames in os.walk(base_dir): for name in filenames: diff --git a/Lib/distutils/tests/test_archive_util.py b/Lib/distutils/tests/test_archive_util.py --- a/Lib/distutils/tests/test_archive_util.py +++ b/Lib/distutils/tests/test_archive_util.py @@ -7,12 +7,13 @@ from os.path import splitdrive import warnings +from distutils import archive_util from distutils.archive_util import (check_archive_formats, make_tarball, make_zipfile, make_archive, ARCHIVE_FORMATS) from distutils.spawn import find_executable, spawn from distutils.tests import support -from test.support import check_warnings, run_unittest +from test.support import check_warnings, run_unittest, patch try: import zipfile @@ -20,10 +21,18 @@ except ImportError: ZIP_SUPPORT = find_executable('zip') +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class ArchiveUtilTestCase(support.TempdirManager, support.LoggingSilencer, unittest.TestCase): + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_make_tarball(self): # creating something to tar tmpdir = self.mkdtemp() @@ -84,8 +93,9 @@ base_name = os.path.join(tmpdir2, 'archive') return tmpdir, tmpdir2, base_name - @unittest.skipUnless(find_executable('tar') and find_executable('gzip'), - 'Need the tar command to run') + @unittest.skipUnless(find_executable('tar') and find_executable('gzip') + and ZLIB_SUPPORT, + 'Need the tar, gzip and zlib command to run') def test_tarfile_vs_tar(self): tmpdir, tmpdir2, base_name = self._create_files() old_dir = os.getcwd() @@ -169,7 +179,8 @@ self.assertTrue(not os.path.exists(tarball)) self.assertEqual(len(w.warnings), 1) - @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + @unittest.skipUnless(ZIP_SUPPORT and ZLIB_SUPPORT, + 'Need zip and zlib support to run') def test_make_zipfile(self): # creating something to tar tmpdir = self.mkdtemp() @@ -182,6 +193,29 @@ # check if the compressed tarball was created tarball = base_name + '.zip' + self.assertTrue(os.path.exists(tarball)) + + @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + def test_make_zipfile_no_zlib(self): + patch(self, archive_util.zipfile, 'zlib', None) # force zlib ImportError + + called = [] + zipfile_class = zipfile.ZipFile + def fake_zipfile(*a, **kw): + if kw.get('compression', None) == zipfile.ZIP_STORED: + called.append((a, kw)) + return zipfile_class(*a, **kw) + + patch(self, archive_util.zipfile, 'ZipFile', fake_zipfile) + + # create something to tar and compress + tmpdir, tmpdir2, base_name = self._create_files() + make_zipfile(base_name, tmpdir) + + tarball = base_name + '.zip' + self.assertEqual(called, + [((tarball, "w"), {'compression': zipfile.ZIP_STORED})]) + self.assertTrue(os.path.exists(tarball)) def test_check_archive_formats(self): self.assertEqual(check_archive_formats(['gztar', 'xxx', 'zip']), diff --git a/Lib/distutils/tests/test_bdist_dumb.py b/Lib/distutils/tests/test_bdist_dumb.py --- a/Lib/distutils/tests/test_bdist_dumb.py +++ b/Lib/distutils/tests/test_bdist_dumb.py @@ -18,6 +18,13 @@ """ +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class BuildDumbTestCase(support.TempdirManager, support.LoggingSilencer, support.EnvironGuard, @@ -34,6 +41,7 @@ sys.argv[:] = self.old_sys_argv[1] super(BuildDumbTestCase, self).tearDown() + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_simple_built(self): # let's create a simple package diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -40,6 +40,13 @@ somecode%(sep)sdoc.txt """ +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class SDistTestCase(PyPIRCCommandTestCase): def setUp(self): @@ -78,6 +85,7 @@ cmd.warn = _warn return dist, cmd + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_prune_file_list(self): # this test creates a package with some vcs dirs in it # and launch sdist to make sure they get pruned @@ -119,6 +127,7 @@ # making sure everything has been pruned correctly self.assertEqual(len(content), 4) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_make_distribution(self): # check if tar and gzip are installed @@ -153,6 +162,7 @@ result.sort() self.assertEqual(result, ['fake-1.0.tar', 'fake-1.0.tar.gz']) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_add_defaults(self): # http://bugs.python.org/issue2279 @@ -218,6 +228,7 @@ finally: f.close() + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_metadata_check_option(self): # testing the `medata-check` option dist, cmd = self.get_cmd(metadata={}) @@ -277,7 +288,7 @@ cmd.formats = 'supazipa' self.assertRaises(DistutilsOptionError, cmd.finalize_options) - + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_get_file_list(self): # make sure MANIFEST is recalculated dist, cmd = self.get_cmd() @@ -318,6 +329,7 @@ self.assertEqual(len(manifest2), 6) self.assertIn('doc2.txt', manifest2[-1]) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_manifest_marker(self): # check that autogenerated MANIFESTs have a marker dist, cmd = self.get_cmd() @@ -334,6 +346,7 @@ self.assertEqual(manifest[0], '# file GENERATED by distutils, do NOT edit') + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_manual_manifest(self): # check that a MANIFEST without a marker is left alone dist, cmd = self.get_cmd() diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1467,3 +1467,36 @@ ok = can_symlink() msg = "Requires functional symlink implementation" return test if ok else unittest.skip(msg)(test) + +def patch(test_instance, object_to_patch, attr_name, new_value): + """Override 'object_to_patch'.'attr_name' with 'new_value'. + + Also, add a cleanup procedure to 'test_instance' to restore + 'object_to_patch' value for 'attr_name'. + The 'attr_name' should be a valid attribute for 'object_to_patch'. + + """ + # check that 'attr_name' is a real attribute for 'object_to_patch' + # will raise AttributeError if it does not exist + getattr(object_to_patch, attr_name) + + # keep a copy of the old value + attr_is_local = False + try: + old_value = object_to_patch.__dict__[attr_name] + except (AttributeError, KeyError): + old_value = getattr(object_to_patch, attr_name, None) + else: + attr_is_local = True + + # restore the value when the test is done + def cleanup(): + if attr_is_local: + setattr(object_to_patch, attr_name, old_value) + else: + delattr(object_to_patch, attr_name) + + test_instance.addCleanup(cleanup) + + # actually override the attribute + setattr(object_to_patch, attr_name, new_value) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -34,10 +34,14 @@ Library ------- +- Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is + not installed. Instead, the zipfile.ZIP_STORED compression is used to create + the ZipFile. Patch by Natalia B. Bidart. + - Issue #11554: Fixed support for Japanese codecs; previously the body output encoding was not done if euc-jp or shift-jis was specified as the charset. -- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified +- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP addresses in the proxy exception list. - Issue #11491: dbm.error is no longer raised when dbm.open is called with -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:17:23 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 15 Mar 2011 21:17:23 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge fix for issue #11501 Message-ID: http://hg.python.org/cpython/rev/cccddd797d95 changeset: 68546:cccddd797d95 parent: 68528:fbdcc7437b34 parent: 68545:1bf4383f190a user: Antoine Pitrou date: Tue Mar 15 21:08:50 2011 +0100 summary: Merge fix for issue #11501 files: Lib/test/support.py Lib/test/test_subprocess.py Misc/ACKS Misc/NEWS diff --git a/Lib/distutils/archive_util.py b/Lib/distutils/archive_util.py --- a/Lib/distutils/archive_util.py +++ b/Lib/distutils/archive_util.py @@ -9,6 +9,12 @@ from warnings import warn import sys +try: + import zipfile +except ImportError: + zipfile = None + + from distutils.errors import DistutilsExecError from distutils.spawn import spawn from distutils.dir_util import mkpath @@ -74,11 +80,6 @@ available, raises DistutilsExecError. Returns the name of the output zip file. """ - try: - import zipfile - except ImportError: - zipfile = None - zip_filename = base_name + ".zip" mkpath(os.path.dirname(zip_filename), dry_run=dry_run) @@ -105,8 +106,12 @@ zip_filename, base_dir) if not dry_run: - zip = zipfile.ZipFile(zip_filename, "w", - compression=zipfile.ZIP_DEFLATED) + try: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_DEFLATED) + except RuntimeError: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_STORED) for dirpath, dirnames, filenames in os.walk(base_dir): for name in filenames: diff --git a/Lib/distutils/tests/test_archive_util.py b/Lib/distutils/tests/test_archive_util.py --- a/Lib/distutils/tests/test_archive_util.py +++ b/Lib/distutils/tests/test_archive_util.py @@ -7,12 +7,13 @@ from os.path import splitdrive import warnings +from distutils import archive_util from distutils.archive_util import (check_archive_formats, make_tarball, make_zipfile, make_archive, ARCHIVE_FORMATS) from distutils.spawn import find_executable, spawn from distutils.tests import support -from test.support import check_warnings, run_unittest +from test.support import check_warnings, run_unittest, patch try: import zipfile @@ -20,10 +21,18 @@ except ImportError: ZIP_SUPPORT = find_executable('zip') +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class ArchiveUtilTestCase(support.TempdirManager, support.LoggingSilencer, unittest.TestCase): + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_make_tarball(self): # creating something to tar tmpdir = self.mkdtemp() @@ -84,8 +93,9 @@ base_name = os.path.join(tmpdir2, 'archive') return tmpdir, tmpdir2, base_name - @unittest.skipUnless(find_executable('tar') and find_executable('gzip'), - 'Need the tar command to run') + @unittest.skipUnless(find_executable('tar') and find_executable('gzip') + and ZLIB_SUPPORT, + 'Need the tar, gzip and zlib command to run') def test_tarfile_vs_tar(self): tmpdir, tmpdir2, base_name = self._create_files() old_dir = os.getcwd() @@ -169,7 +179,8 @@ self.assertTrue(not os.path.exists(tarball)) self.assertEqual(len(w.warnings), 1) - @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + @unittest.skipUnless(ZIP_SUPPORT and ZLIB_SUPPORT, + 'Need zip and zlib support to run') def test_make_zipfile(self): # creating something to tar tmpdir = self.mkdtemp() @@ -182,6 +193,29 @@ # check if the compressed tarball was created tarball = base_name + '.zip' + self.assertTrue(os.path.exists(tarball)) + + @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + def test_make_zipfile_no_zlib(self): + patch(self, archive_util.zipfile, 'zlib', None) # force zlib ImportError + + called = [] + zipfile_class = zipfile.ZipFile + def fake_zipfile(*a, **kw): + if kw.get('compression', None) == zipfile.ZIP_STORED: + called.append((a, kw)) + return zipfile_class(*a, **kw) + + patch(self, archive_util.zipfile, 'ZipFile', fake_zipfile) + + # create something to tar and compress + tmpdir, tmpdir2, base_name = self._create_files() + make_zipfile(base_name, tmpdir) + + tarball = base_name + '.zip' + self.assertEqual(called, + [((tarball, "w"), {'compression': zipfile.ZIP_STORED})]) + self.assertTrue(os.path.exists(tarball)) def test_check_archive_formats(self): self.assertEqual(check_archive_formats(['gztar', 'xxx', 'zip']), diff --git a/Lib/distutils/tests/test_bdist_dumb.py b/Lib/distutils/tests/test_bdist_dumb.py --- a/Lib/distutils/tests/test_bdist_dumb.py +++ b/Lib/distutils/tests/test_bdist_dumb.py @@ -18,6 +18,13 @@ """ +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class BuildDumbTestCase(support.TempdirManager, support.LoggingSilencer, support.EnvironGuard, @@ -34,6 +41,7 @@ sys.argv[:] = self.old_sys_argv[1] super(BuildDumbTestCase, self).tearDown() + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_simple_built(self): # let's create a simple package diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -40,6 +40,13 @@ somecode%(sep)sdoc.txt """ +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class SDistTestCase(PyPIRCCommandTestCase): def setUp(self): @@ -78,6 +85,7 @@ cmd.warn = _warn return dist, cmd + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_prune_file_list(self): # this test creates a package with some vcs dirs in it # and launch sdist to make sure they get pruned @@ -119,6 +127,7 @@ # making sure everything has been pruned correctly self.assertEqual(len(content), 4) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_make_distribution(self): # check if tar and gzip are installed @@ -153,6 +162,7 @@ result.sort() self.assertEqual(result, ['fake-1.0.tar', 'fake-1.0.tar.gz']) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_add_defaults(self): # http://bugs.python.org/issue2279 @@ -218,6 +228,7 @@ finally: f.close() + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_metadata_check_option(self): # testing the `medata-check` option dist, cmd = self.get_cmd(metadata={}) @@ -277,7 +288,7 @@ cmd.formats = 'supazipa' self.assertRaises(DistutilsOptionError, cmd.finalize_options) - + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_get_file_list(self): # make sure MANIFEST is recalculated dist, cmd = self.get_cmd() @@ -318,6 +329,7 @@ self.assertEqual(len(manifest2), 6) self.assertIn('doc2.txt', manifest2[-1]) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_manifest_marker(self): # check that autogenerated MANIFESTs have a marker dist, cmd = self.get_cmd() @@ -334,6 +346,7 @@ self.assertEqual(manifest[0], '# file GENERATED by distutils, do NOT edit') + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_manual_manifest(self): # check that a MANIFEST without a marker is left alone dist, cmd = self.get_cmd() diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1475,3 +1475,36 @@ ok = can_symlink() msg = "Requires functional symlink implementation" return test if ok else unittest.skip(msg)(test) + +def patch(test_instance, object_to_patch, attr_name, new_value): + """Override 'object_to_patch'.'attr_name' with 'new_value'. + + Also, add a cleanup procedure to 'test_instance' to restore + 'object_to_patch' value for 'attr_name'. + The 'attr_name' should be a valid attribute for 'object_to_patch'. + + """ + # check that 'attr_name' is a real attribute for 'object_to_patch' + # will raise AttributeError if it does not exist + getattr(object_to_patch, attr_name) + + # keep a copy of the old value + attr_is_local = False + try: + old_value = object_to_patch.__dict__[attr_name] + except (AttributeError, KeyError): + old_value = getattr(object_to_patch, attr_name, None) + else: + attr_is_local = True + + # restore the value when the test is done + def cleanup(): + if attr_is_local: + setattr(object_to_patch, attr_name, old_value) + else: + delattr(object_to_patch, attr_name) + + test_instance.addCleanup(cleanup) + + # actually override the attribute + setattr(object_to_patch, attr_name, new_value) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -68,6 +68,10 @@ Library ------- +- Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is + not installed. Instead, the zipfile.ZIP_STORED compression is used to create + the ZipFile. Patch by Natalia B. Bidart. + - Issue #11289: `smtp.SMTP` class becomes a context manager so it can be used in a `with` statement. Contributed by Giampaolo Rodola. @@ -80,8 +84,8 @@ - Issue #11407: `TestCase.run` returns the result object used or created. Contributed by Janathan Hartley. -- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified - IP addresses in the proxy exception list. +- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified + IP addresses in the proxy exception list. - Issue #11491: dbm.error is no longer raised when dbm.open is called with the "n" as the flag argument and the file exists. The behavior matches -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:17:29 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 15 Mar 2011 21:17:29 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merge Message-ID: http://hg.python.org/cpython/rev/91744654e109 changeset: 68547:91744654e109 parent: 68546:cccddd797d95 parent: 68543:5798168e35ff user: Antoine Pitrou date: Tue Mar 15 21:10:33 2011 +0100 summary: Merge files: Lib/test/support.py Misc/NEWS diff --git a/Include/patchlevel.h b/Include/patchlevel.h --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -26,9 +26,6 @@ #define PY_VERSION "3.3a0" /*--end constants--*/ -/* Subversion Revision number of this file (not of the repository) */ -#define PY_PATCHLEVEL_REVISION "$Revision$" - /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */ #define PY_VERSION_HEX ((PY_MAJOR_VERSION << 24) | \ diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1374,7 +1374,7 @@ def args_from_interpreter_flags(): """Return a list of command-line arguments reproducing the current - settings in sys.flags.""" + settings in sys.flags and sys.warnoptions.""" flag_opt_map = { 'bytes_warning': 'b', 'dont_write_bytecode': 'B', @@ -1389,6 +1389,9 @@ v = getattr(sys.flags, flag) if v > 0: args.append('-' + opt * v) + if sys.warnoptions: + args.append('-W') + args.extend(sys.warnoptions) return args #============================================================ diff --git a/Lib/test/test_fileinput.py b/Lib/test/test_fileinput.py --- a/Lib/test/test_fileinput.py +++ b/Lib/test/test_fileinput.py @@ -277,7 +277,7 @@ def test_empty_files_list_specified_to_constructor(self): with FileInput(files=[]) as fi: - self.assertEquals(fi._files, ('-',)) + self.assertEqual(fi._files, ('-',)) def test__getitem__(self): """Tests invoking FileInput.__getitem__() with the current @@ -298,7 +298,7 @@ with FileInput(files=[t]) as fi: with self.assertRaises(RuntimeError) as cm: fi[1] - self.assertEquals(cm.exception.args, ("accessing lines out of order",)) + self.assertEqual(cm.exception.args, ("accessing lines out of order",)) def test__getitem__eof(self): """Tests invoking FileInput.__getitem__() with the line number but at @@ -308,7 +308,7 @@ with FileInput(files=[t]) as fi: with self.assertRaises(IndexError) as cm: fi[0] - self.assertEquals(cm.exception.args, ("end of input reached",)) + self.assertEqual(cm.exception.args, ("end of input reached",)) def test_nextfile_oserror_deleting_backup(self): """Tests invoking FileInput.nextfile() when the attempt to delete diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,10 @@ - _ast.__version__ is now a Mercurial integer and hex revision. +- Issue #11432: A bug was introduced in subprocess.Popen on posix systems with + 3.2.0 where the stdout or stderr file descriptor being the same as the stdin + file descriptor would raise an exception. webbrowser.open would fail. fixed. + - Issue #9856: Change object.__format__ with a non-empty format string to be a DeprecationWarning. In 3.2 it was a PendingDeprecationWarning. In 3.4 it will be a TypeError. @@ -241,6 +245,11 @@ - Issue #10990: Prevent tests from clobbering a set trace function. +C-API +----- + +- PY_PATCHLEVEL_REVISION has been removed, since it's meaningless with Mercurial. + What's New in Python 3.2? ========================= -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:17:33 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 15 Mar 2011 21:17:33 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.1): Merge Message-ID: http://hg.python.org/cpython/rev/bc4abccda143 changeset: 68548:bc4abccda143 branch: 3.1 parent: 68536:7327b4dbd4f0 parent: 68544:6b33aa811821 user: Antoine Pitrou date: Tue Mar 15 21:11:04 2011 +0100 summary: Merge files: diff --git a/Lib/distutils/archive_util.py b/Lib/distutils/archive_util.py --- a/Lib/distutils/archive_util.py +++ b/Lib/distutils/archive_util.py @@ -9,6 +9,12 @@ from warnings import warn import sys +try: + import zipfile +except ImportError: + zipfile = None + + from distutils.errors import DistutilsExecError from distutils.spawn import spawn from distutils.dir_util import mkpath @@ -74,11 +80,6 @@ available, raises DistutilsExecError. Returns the name of the output zip file. """ - try: - import zipfile - except ImportError: - zipfile = None - zip_filename = base_name + ".zip" mkpath(os.path.dirname(zip_filename), dry_run=dry_run) @@ -105,8 +106,12 @@ zip_filename, base_dir) if not dry_run: - zip = zipfile.ZipFile(zip_filename, "w", - compression=zipfile.ZIP_DEFLATED) + try: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_DEFLATED) + except RuntimeError: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_STORED) for dirpath, dirnames, filenames in os.walk(base_dir): for name in filenames: diff --git a/Lib/distutils/tests/test_archive_util.py b/Lib/distutils/tests/test_archive_util.py --- a/Lib/distutils/tests/test_archive_util.py +++ b/Lib/distutils/tests/test_archive_util.py @@ -7,12 +7,13 @@ from os.path import splitdrive import warnings +from distutils import archive_util from distutils.archive_util import (check_archive_formats, make_tarball, make_zipfile, make_archive, ARCHIVE_FORMATS) from distutils.spawn import find_executable, spawn from distutils.tests import support -from test.support import check_warnings, run_unittest +from test.support import check_warnings, run_unittest, patch try: import zipfile @@ -20,10 +21,18 @@ except ImportError: ZIP_SUPPORT = find_executable('zip') +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class ArchiveUtilTestCase(support.TempdirManager, support.LoggingSilencer, unittest.TestCase): + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_make_tarball(self): # creating something to tar tmpdir = self.mkdtemp() @@ -84,8 +93,9 @@ base_name = os.path.join(tmpdir2, 'archive') return tmpdir, tmpdir2, base_name - @unittest.skipUnless(find_executable('tar') and find_executable('gzip'), - 'Need the tar command to run') + @unittest.skipUnless(find_executable('tar') and find_executable('gzip') + and ZLIB_SUPPORT, + 'Need the tar, gzip and zlib command to run') def test_tarfile_vs_tar(self): tmpdir, tmpdir2, base_name = self._create_files() old_dir = os.getcwd() @@ -169,7 +179,8 @@ self.assertTrue(not os.path.exists(tarball)) self.assertEqual(len(w.warnings), 1) - @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + @unittest.skipUnless(ZIP_SUPPORT and ZLIB_SUPPORT, + 'Need zip and zlib support to run') def test_make_zipfile(self): # creating something to tar tmpdir = self.mkdtemp() @@ -182,6 +193,29 @@ # check if the compressed tarball was created tarball = base_name + '.zip' + self.assertTrue(os.path.exists(tarball)) + + @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + def test_make_zipfile_no_zlib(self): + patch(self, archive_util.zipfile, 'zlib', None) # force zlib ImportError + + called = [] + zipfile_class = zipfile.ZipFile + def fake_zipfile(*a, **kw): + if kw.get('compression', None) == zipfile.ZIP_STORED: + called.append((a, kw)) + return zipfile_class(*a, **kw) + + patch(self, archive_util.zipfile, 'ZipFile', fake_zipfile) + + # create something to tar and compress + tmpdir, tmpdir2, base_name = self._create_files() + make_zipfile(base_name, tmpdir) + + tarball = base_name + '.zip' + self.assertEqual(called, + [((tarball, "w"), {'compression': zipfile.ZIP_STORED})]) + self.assertTrue(os.path.exists(tarball)) def test_check_archive_formats(self): self.assertEqual(check_archive_formats(['gztar', 'xxx', 'zip']), diff --git a/Lib/distutils/tests/test_bdist_dumb.py b/Lib/distutils/tests/test_bdist_dumb.py --- a/Lib/distutils/tests/test_bdist_dumb.py +++ b/Lib/distutils/tests/test_bdist_dumb.py @@ -18,6 +18,13 @@ """ +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class BuildDumbTestCase(support.TempdirManager, support.LoggingSilencer, support.EnvironGuard, @@ -34,6 +41,7 @@ sys.argv[:] = self.old_sys_argv[1] super(BuildDumbTestCase, self).tearDown() + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_simple_built(self): # let's create a simple package diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -40,6 +40,13 @@ somecode%(sep)sdoc.txt """ +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class SDistTestCase(PyPIRCCommandTestCase): def setUp(self): @@ -78,6 +85,7 @@ cmd.warn = _warn return dist, cmd + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_prune_file_list(self): # this test creates a package with some vcs dirs in it # and launch sdist to make sure they get pruned @@ -119,6 +127,7 @@ # making sure everything has been pruned correctly self.assertEqual(len(content), 4) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_make_distribution(self): # check if tar and gzip are installed @@ -153,6 +162,7 @@ result.sort() self.assertEqual(result, ['fake-1.0.tar', 'fake-1.0.tar.gz']) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_add_defaults(self): # http://bugs.python.org/issue2279 @@ -218,6 +228,7 @@ finally: f.close() + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_metadata_check_option(self): # testing the `medata-check` option dist, cmd = self.get_cmd(metadata={}) @@ -277,7 +288,7 @@ cmd.formats = 'supazipa' self.assertRaises(DistutilsOptionError, cmd.finalize_options) - + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_get_file_list(self): # make sure MANIFEST is recalculated dist, cmd = self.get_cmd() @@ -318,6 +329,7 @@ self.assertEqual(len(manifest2), 6) self.assertIn('doc2.txt', manifest2[-1]) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_manifest_marker(self): # check that autogenerated MANIFESTs have a marker dist, cmd = self.get_cmd() @@ -334,6 +346,7 @@ self.assertEqual(manifest[0], '# file GENERATED by distutils, do NOT edit') + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_manual_manifest(self): # check that a MANIFEST without a marker is left alone dist, cmd = self.get_cmd() diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1096,3 +1096,36 @@ """ stderr = re.sub(br"\[\d+ refs\]\r?\n?$", b"", stderr).strip() return stderr + +def patch(test_instance, object_to_patch, attr_name, new_value): + """Override 'object_to_patch'.'attr_name' with 'new_value'. + + Also, add a cleanup procedure to 'test_instance' to restore + 'object_to_patch' value for 'attr_name'. + The 'attr_name' should be a valid attribute for 'object_to_patch'. + + """ + # check that 'attr_name' is a real attribute for 'object_to_patch' + # will raise AttributeError if it does not exist + getattr(object_to_patch, attr_name) + + # keep a copy of the old value + attr_is_local = False + try: + old_value = object_to_patch.__dict__[attr_name] + except (AttributeError, KeyError): + old_value = getattr(object_to_patch, attr_name, None) + else: + attr_is_local = True + + # restore the value when the test is done + def cleanup(): + if attr_is_local: + setattr(object_to_patch, attr_name, old_value) + else: + delattr(object_to_patch, attr_name) + + test_instance.addCleanup(cleanup) + + # actually override the attribute + setattr(object_to_patch, attr_name, new_value) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -72,6 +72,7 @@ Steven Bethard Stephen Bevan Ron Bickers +Natalia B. Bidart David Binger Dominic Binks Philippe Biondi diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,10 @@ Library ------- +- Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is + not installed. Instead, the zipfile.ZIP_STORED compression is used to create + the ZipFile. Patch by Natalia B. Bidart. + - Issue #11491: dbm.error is no longer raised when dbm.open is called with the "n" as the flag argument and the file exists. The behavior matches the documentation and general logic. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:17:35 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 15 Mar 2011 21:17:35 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> 3.2): Merge Message-ID: http://hg.python.org/cpython/rev/b312aff15312 changeset: 68549:b312aff15312 branch: 3.2 parent: 68542:ccea53bd4f88 parent: 68545:1bf4383f190a user: Antoine Pitrou date: Tue Mar 15 21:11:27 2011 +0100 summary: Merge files: Misc/NEWS diff --git a/Lib/distutils/archive_util.py b/Lib/distutils/archive_util.py --- a/Lib/distutils/archive_util.py +++ b/Lib/distutils/archive_util.py @@ -9,6 +9,12 @@ from warnings import warn import sys +try: + import zipfile +except ImportError: + zipfile = None + + from distutils.errors import DistutilsExecError from distutils.spawn import spawn from distutils.dir_util import mkpath @@ -74,11 +80,6 @@ available, raises DistutilsExecError. Returns the name of the output zip file. """ - try: - import zipfile - except ImportError: - zipfile = None - zip_filename = base_name + ".zip" mkpath(os.path.dirname(zip_filename), dry_run=dry_run) @@ -105,8 +106,12 @@ zip_filename, base_dir) if not dry_run: - zip = zipfile.ZipFile(zip_filename, "w", - compression=zipfile.ZIP_DEFLATED) + try: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_DEFLATED) + except RuntimeError: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_STORED) for dirpath, dirnames, filenames in os.walk(base_dir): for name in filenames: diff --git a/Lib/distutils/tests/test_archive_util.py b/Lib/distutils/tests/test_archive_util.py --- a/Lib/distutils/tests/test_archive_util.py +++ b/Lib/distutils/tests/test_archive_util.py @@ -7,12 +7,13 @@ from os.path import splitdrive import warnings +from distutils import archive_util from distutils.archive_util import (check_archive_formats, make_tarball, make_zipfile, make_archive, ARCHIVE_FORMATS) from distutils.spawn import find_executable, spawn from distutils.tests import support -from test.support import check_warnings, run_unittest +from test.support import check_warnings, run_unittest, patch try: import zipfile @@ -20,10 +21,18 @@ except ImportError: ZIP_SUPPORT = find_executable('zip') +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class ArchiveUtilTestCase(support.TempdirManager, support.LoggingSilencer, unittest.TestCase): + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_make_tarball(self): # creating something to tar tmpdir = self.mkdtemp() @@ -84,8 +93,9 @@ base_name = os.path.join(tmpdir2, 'archive') return tmpdir, tmpdir2, base_name - @unittest.skipUnless(find_executable('tar') and find_executable('gzip'), - 'Need the tar command to run') + @unittest.skipUnless(find_executable('tar') and find_executable('gzip') + and ZLIB_SUPPORT, + 'Need the tar, gzip and zlib command to run') def test_tarfile_vs_tar(self): tmpdir, tmpdir2, base_name = self._create_files() old_dir = os.getcwd() @@ -169,7 +179,8 @@ self.assertTrue(not os.path.exists(tarball)) self.assertEqual(len(w.warnings), 1) - @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + @unittest.skipUnless(ZIP_SUPPORT and ZLIB_SUPPORT, + 'Need zip and zlib support to run') def test_make_zipfile(self): # creating something to tar tmpdir = self.mkdtemp() @@ -182,6 +193,29 @@ # check if the compressed tarball was created tarball = base_name + '.zip' + self.assertTrue(os.path.exists(tarball)) + + @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + def test_make_zipfile_no_zlib(self): + patch(self, archive_util.zipfile, 'zlib', None) # force zlib ImportError + + called = [] + zipfile_class = zipfile.ZipFile + def fake_zipfile(*a, **kw): + if kw.get('compression', None) == zipfile.ZIP_STORED: + called.append((a, kw)) + return zipfile_class(*a, **kw) + + patch(self, archive_util.zipfile, 'ZipFile', fake_zipfile) + + # create something to tar and compress + tmpdir, tmpdir2, base_name = self._create_files() + make_zipfile(base_name, tmpdir) + + tarball = base_name + '.zip' + self.assertEqual(called, + [((tarball, "w"), {'compression': zipfile.ZIP_STORED})]) + self.assertTrue(os.path.exists(tarball)) def test_check_archive_formats(self): self.assertEqual(check_archive_formats(['gztar', 'xxx', 'zip']), diff --git a/Lib/distutils/tests/test_bdist_dumb.py b/Lib/distutils/tests/test_bdist_dumb.py --- a/Lib/distutils/tests/test_bdist_dumb.py +++ b/Lib/distutils/tests/test_bdist_dumb.py @@ -18,6 +18,13 @@ """ +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class BuildDumbTestCase(support.TempdirManager, support.LoggingSilencer, support.EnvironGuard, @@ -34,6 +41,7 @@ sys.argv[:] = self.old_sys_argv[1] super(BuildDumbTestCase, self).tearDown() + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_simple_built(self): # let's create a simple package diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -40,6 +40,13 @@ somecode%(sep)sdoc.txt """ +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class SDistTestCase(PyPIRCCommandTestCase): def setUp(self): @@ -78,6 +85,7 @@ cmd.warn = _warn return dist, cmd + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_prune_file_list(self): # this test creates a package with some vcs dirs in it # and launch sdist to make sure they get pruned @@ -119,6 +127,7 @@ # making sure everything has been pruned correctly self.assertEqual(len(content), 4) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_make_distribution(self): # check if tar and gzip are installed @@ -153,6 +162,7 @@ result.sort() self.assertEqual(result, ['fake-1.0.tar', 'fake-1.0.tar.gz']) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_add_defaults(self): # http://bugs.python.org/issue2279 @@ -218,6 +228,7 @@ finally: f.close() + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_metadata_check_option(self): # testing the `medata-check` option dist, cmd = self.get_cmd(metadata={}) @@ -277,7 +288,7 @@ cmd.formats = 'supazipa' self.assertRaises(DistutilsOptionError, cmd.finalize_options) - + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_get_file_list(self): # make sure MANIFEST is recalculated dist, cmd = self.get_cmd() @@ -318,6 +329,7 @@ self.assertEqual(len(manifest2), 6) self.assertIn('doc2.txt', manifest2[-1]) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_manifest_marker(self): # check that autogenerated MANIFESTs have a marker dist, cmd = self.get_cmd() @@ -334,6 +346,7 @@ self.assertEqual(manifest[0], '# file GENERATED by distutils, do NOT edit') + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_manual_manifest(self): # check that a MANIFEST without a marker is left alone dist, cmd = self.get_cmd() diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1467,3 +1467,36 @@ ok = can_symlink() msg = "Requires functional symlink implementation" return test if ok else unittest.skip(msg)(test) + +def patch(test_instance, object_to_patch, attr_name, new_value): + """Override 'object_to_patch'.'attr_name' with 'new_value'. + + Also, add a cleanup procedure to 'test_instance' to restore + 'object_to_patch' value for 'attr_name'. + The 'attr_name' should be a valid attribute for 'object_to_patch'. + + """ + # check that 'attr_name' is a real attribute for 'object_to_patch' + # will raise AttributeError if it does not exist + getattr(object_to_patch, attr_name) + + # keep a copy of the old value + attr_is_local = False + try: + old_value = object_to_patch.__dict__[attr_name] + except (AttributeError, KeyError): + old_value = getattr(object_to_patch, attr_name, None) + else: + attr_is_local = True + + # restore the value when the test is done + def cleanup(): + if attr_is_local: + setattr(object_to_patch, attr_name, old_value) + else: + delattr(object_to_patch, attr_name) + + test_instance.addCleanup(cleanup) + + # actually override the attribute + setattr(object_to_patch, attr_name, new_value) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -38,10 +38,14 @@ Library ------- +- Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is + not installed. Instead, the zipfile.ZIP_STORED compression is used to create + the ZipFile. Patch by Natalia B. Bidart. + - Issue #11554: Fixed support for Japanese codecs; previously the body output encoding was not done if euc-jp or shift-jis was specified as the charset. -- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified +- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP addresses in the proxy exception list. - Issue #11491: dbm.error is no longer raised when dbm.open is called with -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:17:37 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 15 Mar 2011 21:17:37 +0100 Subject: [Python-checkins] cpython (3.1): Fix whitespace in test_subprocess Message-ID: http://hg.python.org/cpython/rev/de5638f399a2 changeset: 68550:de5638f399a2 branch: 3.1 parent: 68548:bc4abccda143 user: Antoine Pitrou date: Tue Mar 15 21:17:10 2011 +0100 summary: Fix whitespace in test_subprocess files: Lib/test/test_subprocess.py diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -558,7 +558,7 @@ # Windows raises IOError except (IOError, OSError) as err: # ignore errors that indicate the command was not found - if err.errno not in (errno.ENOENT, errno.EACCES): + if err.errno not in (errno.ENOENT, errno.EACCES): raise def test_issue8780(self): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:21:14 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 15 Mar 2011 21:21:14 +0100 Subject: [Python-checkins] cpython: should use 'is' here Message-ID: http://hg.python.org/cpython/rev/4fd16e5580cd changeset: 68551:4fd16e5580cd parent: 68543:5798168e35ff user: Benjamin Peterson date: Tue Mar 15 15:18:47 2011 -0500 summary: should use 'is' here files: Lib/test/test_dis.py diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py --- a/Lib/test/test_dis.py +++ b/Lib/test/test_dis.py @@ -276,7 +276,7 @@ old = getattr(sys, 'last_traceback', not_defined) def cleanup(): - if old != not_defined: + if old is not not_defined: sys.last_traceback = old else: del sys.last_traceback -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:21:15 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 15 Mar 2011 21:21:15 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge heads Message-ID: http://hg.python.org/cpython/rev/6e7a872c621e changeset: 68552:6e7a872c621e parent: 68551:4fd16e5580cd parent: 68547:91744654e109 user: Benjamin Peterson date: Tue Mar 15 15:21:03 2011 -0500 summary: merge heads files: diff --git a/Lib/distutils/archive_util.py b/Lib/distutils/archive_util.py --- a/Lib/distutils/archive_util.py +++ b/Lib/distutils/archive_util.py @@ -9,6 +9,12 @@ from warnings import warn import sys +try: + import zipfile +except ImportError: + zipfile = None + + from distutils.errors import DistutilsExecError from distutils.spawn import spawn from distutils.dir_util import mkpath @@ -74,11 +80,6 @@ available, raises DistutilsExecError. Returns the name of the output zip file. """ - try: - import zipfile - except ImportError: - zipfile = None - zip_filename = base_name + ".zip" mkpath(os.path.dirname(zip_filename), dry_run=dry_run) @@ -105,8 +106,12 @@ zip_filename, base_dir) if not dry_run: - zip = zipfile.ZipFile(zip_filename, "w", - compression=zipfile.ZIP_DEFLATED) + try: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_DEFLATED) + except RuntimeError: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_STORED) for dirpath, dirnames, filenames in os.walk(base_dir): for name in filenames: diff --git a/Lib/distutils/tests/test_archive_util.py b/Lib/distutils/tests/test_archive_util.py --- a/Lib/distutils/tests/test_archive_util.py +++ b/Lib/distutils/tests/test_archive_util.py @@ -7,12 +7,13 @@ from os.path import splitdrive import warnings +from distutils import archive_util from distutils.archive_util import (check_archive_formats, make_tarball, make_zipfile, make_archive, ARCHIVE_FORMATS) from distutils.spawn import find_executable, spawn from distutils.tests import support -from test.support import check_warnings, run_unittest +from test.support import check_warnings, run_unittest, patch try: import zipfile @@ -20,10 +21,18 @@ except ImportError: ZIP_SUPPORT = find_executable('zip') +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class ArchiveUtilTestCase(support.TempdirManager, support.LoggingSilencer, unittest.TestCase): + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_make_tarball(self): # creating something to tar tmpdir = self.mkdtemp() @@ -84,8 +93,9 @@ base_name = os.path.join(tmpdir2, 'archive') return tmpdir, tmpdir2, base_name - @unittest.skipUnless(find_executable('tar') and find_executable('gzip'), - 'Need the tar command to run') + @unittest.skipUnless(find_executable('tar') and find_executable('gzip') + and ZLIB_SUPPORT, + 'Need the tar, gzip and zlib command to run') def test_tarfile_vs_tar(self): tmpdir, tmpdir2, base_name = self._create_files() old_dir = os.getcwd() @@ -169,7 +179,8 @@ self.assertTrue(not os.path.exists(tarball)) self.assertEqual(len(w.warnings), 1) - @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + @unittest.skipUnless(ZIP_SUPPORT and ZLIB_SUPPORT, + 'Need zip and zlib support to run') def test_make_zipfile(self): # creating something to tar tmpdir = self.mkdtemp() @@ -182,6 +193,29 @@ # check if the compressed tarball was created tarball = base_name + '.zip' + self.assertTrue(os.path.exists(tarball)) + + @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + def test_make_zipfile_no_zlib(self): + patch(self, archive_util.zipfile, 'zlib', None) # force zlib ImportError + + called = [] + zipfile_class = zipfile.ZipFile + def fake_zipfile(*a, **kw): + if kw.get('compression', None) == zipfile.ZIP_STORED: + called.append((a, kw)) + return zipfile_class(*a, **kw) + + patch(self, archive_util.zipfile, 'ZipFile', fake_zipfile) + + # create something to tar and compress + tmpdir, tmpdir2, base_name = self._create_files() + make_zipfile(base_name, tmpdir) + + tarball = base_name + '.zip' + self.assertEqual(called, + [((tarball, "w"), {'compression': zipfile.ZIP_STORED})]) + self.assertTrue(os.path.exists(tarball)) def test_check_archive_formats(self): self.assertEqual(check_archive_formats(['gztar', 'xxx', 'zip']), diff --git a/Lib/distutils/tests/test_bdist_dumb.py b/Lib/distutils/tests/test_bdist_dumb.py --- a/Lib/distutils/tests/test_bdist_dumb.py +++ b/Lib/distutils/tests/test_bdist_dumb.py @@ -18,6 +18,13 @@ """ +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class BuildDumbTestCase(support.TempdirManager, support.LoggingSilencer, support.EnvironGuard, @@ -34,6 +41,7 @@ sys.argv[:] = self.old_sys_argv[1] super(BuildDumbTestCase, self).tearDown() + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_simple_built(self): # let's create a simple package diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -40,6 +40,13 @@ somecode%(sep)sdoc.txt """ +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class SDistTestCase(PyPIRCCommandTestCase): def setUp(self): @@ -78,6 +85,7 @@ cmd.warn = _warn return dist, cmd + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_prune_file_list(self): # this test creates a package with some vcs dirs in it # and launch sdist to make sure they get pruned @@ -119,6 +127,7 @@ # making sure everything has been pruned correctly self.assertEqual(len(content), 4) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_make_distribution(self): # check if tar and gzip are installed @@ -153,6 +162,7 @@ result.sort() self.assertEqual(result, ['fake-1.0.tar', 'fake-1.0.tar.gz']) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_add_defaults(self): # http://bugs.python.org/issue2279 @@ -218,6 +228,7 @@ finally: f.close() + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_metadata_check_option(self): # testing the `medata-check` option dist, cmd = self.get_cmd(metadata={}) @@ -277,7 +288,7 @@ cmd.formats = 'supazipa' self.assertRaises(DistutilsOptionError, cmd.finalize_options) - + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_get_file_list(self): # make sure MANIFEST is recalculated dist, cmd = self.get_cmd() @@ -318,6 +329,7 @@ self.assertEqual(len(manifest2), 6) self.assertIn('doc2.txt', manifest2[-1]) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_manifest_marker(self): # check that autogenerated MANIFESTs have a marker dist, cmd = self.get_cmd() @@ -334,6 +346,7 @@ self.assertEqual(manifest[0], '# file GENERATED by distutils, do NOT edit') + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_manual_manifest(self): # check that a MANIFEST without a marker is left alone dist, cmd = self.get_cmd() diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1478,3 +1478,36 @@ ok = can_symlink() msg = "Requires functional symlink implementation" return test if ok else unittest.skip(msg)(test) + +def patch(test_instance, object_to_patch, attr_name, new_value): + """Override 'object_to_patch'.'attr_name' with 'new_value'. + + Also, add a cleanup procedure to 'test_instance' to restore + 'object_to_patch' value for 'attr_name'. + The 'attr_name' should be a valid attribute for 'object_to_patch'. + + """ + # check that 'attr_name' is a real attribute for 'object_to_patch' + # will raise AttributeError if it does not exist + getattr(object_to_patch, attr_name) + + # keep a copy of the old value + attr_is_local = False + try: + old_value = object_to_patch.__dict__[attr_name] + except (AttributeError, KeyError): + old_value = getattr(object_to_patch, attr_name, None) + else: + attr_is_local = True + + # restore the value when the test is done + def cleanup(): + if attr_is_local: + setattr(object_to_patch, attr_name, old_value) + else: + delattr(object_to_patch, attr_name) + + test_instance.addCleanup(cleanup) + + # actually override the attribute + setattr(object_to_patch, attr_name, new_value) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,10 @@ Library ------- +- Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is + not installed. Instead, the zipfile.ZIP_STORED compression is used to create + the ZipFile. Patch by Natalia B. Bidart. + - Issue #11289: `smtp.SMTP` class becomes a context manager so it can be used in a `with` statement. Contributed by Giampaolo Rodola. @@ -84,8 +88,8 @@ - Issue #11407: `TestCase.run` returns the result object used or created. Contributed by Janathan Hartley. -- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified - IP addresses in the proxy exception list. +- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified + IP addresses in the proxy exception list. - Issue #11491: dbm.error is no longer raised when dbm.open is called with the "n" as the flag argument and the file exists. The behavior matches -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 21:29:14 2011 From: python-checkins at python.org (martin.v.loewis) Date: Tue, 15 Mar 2011 21:29:14 +0100 (CET) Subject: [Python-checkins] r88778 - tracker/instances/python-dev/scripts/addpatchsets Message-ID: <20110315202914.2CACCEEAF1@mail.python.org> Author: martin.v.loewis Date: Tue Mar 15 21:29:13 2011 New Revision: 88778 Log: Look for diff -r in the middle of the potential patch. Modified: tracker/instances/python-dev/scripts/addpatchsets Modified: tracker/instances/python-dev/scripts/addpatchsets ============================================================================== --- tracker/instances/python-dev/scripts/addpatchsets (original) +++ tracker/instances/python-dev/scripts/addpatchsets Tue Mar 15 21:29:13 2011 @@ -124,7 +124,7 @@ print filename,"not found" continue data = open(filename).read() - if not data.startswith('diff -r '): + if not data.startswith('diff -r ') and data.find('\ndiff -r '): if verbose: print filename, "is not a patch" continue From tjreedy at udel.edu Tue Mar 15 20:36:11 2011 From: tjreedy at udel.edu (Terry Reedy) Date: Tue, 15 Mar 2011 15:36:11 -0400 Subject: [Python-checkins] cpython (2.7): Revert typo fixes in _cytpes/libffi* In-Reply-To: References: Message-ID: <4D7FBFAB.9070406@udel.edu> On 3/15/2011 1:09 PM, ezio.melotti wrote: > Revert typo fixes in _cytpes/libffi* Why? These were all real typos, which is to say, 'alignement', 'coalesed', and 'continguous' are all misspellings. I even had trouble typing them wrong ;-). > - * src/sh/ffi.c (ffi_prep_args): Take account into the alignment > + * src/sh/ffi.c (ffi_prep_args): Take account into the alignement > - Fix alignment bug, allocate 8 bytes for the result. > + Fix alignement bug, allocate 8 bytes for the result. > -/* This function supports releasing coalesced segments */ > +/* This function supports releasing coalesed segments */ > -/* mstate bit set if contiguous morecore disabled or failed */ > +/* mstate bit set if continguous morecore disabled or failed */ > - | alignment to the next multiple of 16 | > + | alignement to the next multiple of 16 | Terry Jan Reedy From python-checkins at python.org Tue Mar 15 21:41:46 2011 From: python-checkins at python.org (martin.v.loewis) Date: Tue, 15 Mar 2011 21:41:46 +0100 (CET) Subject: [Python-checkins] r88779 - tracker/instances/python-dev/scripts/addpatchsets Message-ID: <20110315204146.91D05EE9B5@mail.python.org> Author: martin.v.loewis Date: Tue Mar 15 21:41:46 2011 New Revision: 88779 Log: Fix typo. Modified: tracker/instances/python-dev/scripts/addpatchsets Modified: tracker/instances/python-dev/scripts/addpatchsets ============================================================================== --- tracker/instances/python-dev/scripts/addpatchsets (original) +++ tracker/instances/python-dev/scripts/addpatchsets Tue Mar 15 21:41:46 2011 @@ -124,7 +124,7 @@ print filename,"not found" continue data = open(filename).read() - if not data.startswith('diff -r ') and data.find('\ndiff -r '): + if not data.startswith('diff -r ') and data.find('\ndiff -r ')==-1: if verbose: print filename, "is not a patch" continue From python-checkins at python.org Tue Mar 15 21:52:14 2011 From: python-checkins at python.org (martin.v.loewis) Date: Tue, 15 Mar 2011 21:52:14 +0100 (CET) Subject: [Python-checkins] r88780 - tracker/instances/python-dev/scripts/addpatchsets Message-ID: <20110315205214.923CBEEA27@mail.python.org> Author: martin.v.loewis Date: Tue Mar 15 21:52:14 2011 New Revision: 88780 Log: Strip leading text off patch. Modified: tracker/instances/python-dev/scripts/addpatchsets Modified: tracker/instances/python-dev/scripts/addpatchsets ============================================================================== --- tracker/instances/python-dev/scripts/addpatchsets (original) +++ tracker/instances/python-dev/scripts/addpatchsets Tue Mar 15 21:52:14 2011 @@ -78,6 +78,10 @@ return patches def find_bases(data): + if not data.startswith("diff -r "): + # this should only be called if there is actually is a diff in the file + head, tail = data.split("\ndiff -r ", 1) + data = "diff -r "+tail first, second, rev = data.split()[:3] if first != 'diff' or second != '-r' or len(rev) != 12: return None, None From python-checkins at python.org Tue Mar 15 21:54:56 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 15 Mar 2011 21:54:56 +0100 Subject: [Python-checkins] cpython: PyErr_Print can leave sys.last_traceback hanging around; kill it Message-ID: http://hg.python.org/cpython/rev/27e0091b2ce1 changeset: 68553:27e0091b2ce1 user: Benjamin Peterson date: Tue Mar 15 15:54:50 2011 -0500 summary: PyErr_Print can leave sys.last_traceback hanging around; kill it files: Lib/test/test_dis.py diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py --- a/Lib/test/test_dis.py +++ b/Lib/test/test_dis.py @@ -265,28 +265,26 @@ self.do_disassembly_test(method_bytecode, dis_c_instance_method_bytes) def test_dis_none(self): + try: + del sys.last_traceback + except AttributeError: + pass self.assertRaises(RuntimeError, dis.dis, None) def test_dis_object(self): self.assertRaises(TypeError, dis.dis, object()) def test_dis_traceback(self): - not_defined = object() - tb = None - old = getattr(sys, 'last_traceback', not_defined) - - def cleanup(): - if old is not not_defined: - sys.last_traceback = old - else: - del sys.last_traceback + try: + del sys.last_traceback + except AttributeError: + pass try: 1/0 except Exception as e: tb = e.__traceback__ sys.last_traceback = tb - self.addCleanup(cleanup) tb_dis = self.get_disassemble_as_string(tb.tb_frame.f_code, tb.tb_lasti) self.do_disassembly_test(None, tb_dis) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 22:05:57 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 15 Mar 2011 22:05:57 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge Message-ID: http://hg.python.org/cpython/rev/ed802f82f07a changeset: 68554:ed802f82f07a branch: 3.2 parent: 68549:b312aff15312 parent: 68550:de5638f399a2 user: Antoine Pitrou date: Tue Mar 15 22:05:51 2011 +0100 summary: Merge files: Lib/test/test_subprocess.py -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 22:06:46 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 15 Mar 2011 22:06:46 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge Message-ID: http://hg.python.org/cpython/rev/27564bbe0fcb changeset: 68555:27564bbe0fcb parent: 68553:27e0091b2ce1 parent: 68554:ed802f82f07a user: Antoine Pitrou date: Tue Mar 15 22:06:42 2011 +0100 summary: Merge files: Lib/test/test_subprocess.py Misc/NEWS -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 22:23:28 2011 From: python-checkins at python.org (brett.cannon) Date: Tue, 15 Mar 2011 22:23:28 +0100 Subject: [Python-checkins] cpython: Close a stream properly in test.test_pulldom. Message-ID: http://hg.python.org/cpython/rev/aa000dd4287f changeset: 68556:aa000dd4287f parent: 68532:e04253f3ad4a user: Brett Cannon date: Tue Mar 15 17:22:52 2011 -0400 summary: Close a stream properly in test.test_pulldom. Closes issue #11550. Thanks to Ben Hayden for some inspiration on the solution. files: Lib/test/test_pulldom.py diff --git a/Lib/test/test_pulldom.py b/Lib/test/test_pulldom.py --- a/Lib/test/test_pulldom.py +++ b/Lib/test/test_pulldom.py @@ -32,7 +32,9 @@ # fragment. # Test with a filename: - list(pulldom.parse(tstfile)) + handler = pulldom.parse(tstfile) + self.addCleanup(handler.stream.close) + list(handler) # Test with a file object: with open(tstfile, "rb") as fin: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 22:23:29 2011 From: python-checkins at python.org (brett.cannon) Date: Tue, 15 Mar 2011 22:23:29 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge Message-ID: http://hg.python.org/cpython/rev/1ba374b9bfd2 changeset: 68557:1ba374b9bfd2 parent: 68556:aa000dd4287f parent: 68555:27564bbe0fcb user: Brett Cannon date: Tue Mar 15 17:23:21 2011 -0400 summary: merge files: diff --git a/Include/patchlevel.h b/Include/patchlevel.h --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -26,9 +26,6 @@ #define PY_VERSION "3.3a0" /*--end constants--*/ -/* Subversion Revision number of this file (not of the repository) */ -#define PY_PATCHLEVEL_REVISION "$Revision$" - /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */ #define PY_VERSION_HEX ((PY_MAJOR_VERSION << 24) | \ diff --git a/Lib/distutils/archive_util.py b/Lib/distutils/archive_util.py --- a/Lib/distutils/archive_util.py +++ b/Lib/distutils/archive_util.py @@ -9,6 +9,12 @@ from warnings import warn import sys +try: + import zipfile +except ImportError: + zipfile = None + + from distutils.errors import DistutilsExecError from distutils.spawn import spawn from distutils.dir_util import mkpath @@ -74,11 +80,6 @@ available, raises DistutilsExecError. Returns the name of the output zip file. """ - try: - import zipfile - except ImportError: - zipfile = None - zip_filename = base_name + ".zip" mkpath(os.path.dirname(zip_filename), dry_run=dry_run) @@ -105,8 +106,12 @@ zip_filename, base_dir) if not dry_run: - zip = zipfile.ZipFile(zip_filename, "w", - compression=zipfile.ZIP_DEFLATED) + try: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_DEFLATED) + except RuntimeError: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_STORED) for dirpath, dirnames, filenames in os.walk(base_dir): for name in filenames: diff --git a/Lib/distutils/tests/test_archive_util.py b/Lib/distutils/tests/test_archive_util.py --- a/Lib/distutils/tests/test_archive_util.py +++ b/Lib/distutils/tests/test_archive_util.py @@ -7,12 +7,13 @@ from os.path import splitdrive import warnings +from distutils import archive_util from distutils.archive_util import (check_archive_formats, make_tarball, make_zipfile, make_archive, ARCHIVE_FORMATS) from distutils.spawn import find_executable, spawn from distutils.tests import support -from test.support import check_warnings, run_unittest +from test.support import check_warnings, run_unittest, patch try: import zipfile @@ -20,10 +21,18 @@ except ImportError: ZIP_SUPPORT = find_executable('zip') +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class ArchiveUtilTestCase(support.TempdirManager, support.LoggingSilencer, unittest.TestCase): + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_make_tarball(self): # creating something to tar tmpdir = self.mkdtemp() @@ -84,8 +93,9 @@ base_name = os.path.join(tmpdir2, 'archive') return tmpdir, tmpdir2, base_name - @unittest.skipUnless(find_executable('tar') and find_executable('gzip'), - 'Need the tar command to run') + @unittest.skipUnless(find_executable('tar') and find_executable('gzip') + and ZLIB_SUPPORT, + 'Need the tar, gzip and zlib command to run') def test_tarfile_vs_tar(self): tmpdir, tmpdir2, base_name = self._create_files() old_dir = os.getcwd() @@ -169,7 +179,8 @@ self.assertTrue(not os.path.exists(tarball)) self.assertEqual(len(w.warnings), 1) - @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + @unittest.skipUnless(ZIP_SUPPORT and ZLIB_SUPPORT, + 'Need zip and zlib support to run') def test_make_zipfile(self): # creating something to tar tmpdir = self.mkdtemp() @@ -182,6 +193,29 @@ # check if the compressed tarball was created tarball = base_name + '.zip' + self.assertTrue(os.path.exists(tarball)) + + @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + def test_make_zipfile_no_zlib(self): + patch(self, archive_util.zipfile, 'zlib', None) # force zlib ImportError + + called = [] + zipfile_class = zipfile.ZipFile + def fake_zipfile(*a, **kw): + if kw.get('compression', None) == zipfile.ZIP_STORED: + called.append((a, kw)) + return zipfile_class(*a, **kw) + + patch(self, archive_util.zipfile, 'ZipFile', fake_zipfile) + + # create something to tar and compress + tmpdir, tmpdir2, base_name = self._create_files() + make_zipfile(base_name, tmpdir) + + tarball = base_name + '.zip' + self.assertEqual(called, + [((tarball, "w"), {'compression': zipfile.ZIP_STORED})]) + self.assertTrue(os.path.exists(tarball)) def test_check_archive_formats(self): self.assertEqual(check_archive_formats(['gztar', 'xxx', 'zip']), diff --git a/Lib/distutils/tests/test_bdist_dumb.py b/Lib/distutils/tests/test_bdist_dumb.py --- a/Lib/distutils/tests/test_bdist_dumb.py +++ b/Lib/distutils/tests/test_bdist_dumb.py @@ -18,6 +18,13 @@ """ +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class BuildDumbTestCase(support.TempdirManager, support.LoggingSilencer, support.EnvironGuard, @@ -34,6 +41,7 @@ sys.argv[:] = self.old_sys_argv[1] super(BuildDumbTestCase, self).tearDown() + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_simple_built(self): # let's create a simple package diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -40,6 +40,13 @@ somecode%(sep)sdoc.txt """ +try: + import zlib + ZLIB_SUPPORT = True +except ImportError: + ZLIB_SUPPORT = False + + class SDistTestCase(PyPIRCCommandTestCase): def setUp(self): @@ -78,6 +85,7 @@ cmd.warn = _warn return dist, cmd + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_prune_file_list(self): # this test creates a package with some vcs dirs in it # and launch sdist to make sure they get pruned @@ -119,6 +127,7 @@ # making sure everything has been pruned correctly self.assertEqual(len(content), 4) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_make_distribution(self): # check if tar and gzip are installed @@ -153,6 +162,7 @@ result.sort() self.assertEqual(result, ['fake-1.0.tar', 'fake-1.0.tar.gz']) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_add_defaults(self): # http://bugs.python.org/issue2279 @@ -218,6 +228,7 @@ finally: f.close() + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_metadata_check_option(self): # testing the `medata-check` option dist, cmd = self.get_cmd(metadata={}) @@ -277,7 +288,7 @@ cmd.formats = 'supazipa' self.assertRaises(DistutilsOptionError, cmd.finalize_options) - + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_get_file_list(self): # make sure MANIFEST is recalculated dist, cmd = self.get_cmd() @@ -318,6 +329,7 @@ self.assertEqual(len(manifest2), 6) self.assertIn('doc2.txt', manifest2[-1]) + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_manifest_marker(self): # check that autogenerated MANIFESTs have a marker dist, cmd = self.get_cmd() @@ -334,6 +346,7 @@ self.assertEqual(manifest[0], '# file GENERATED by distutils, do NOT edit') + @unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run') def test_manual_manifest(self): # check that a MANIFEST without a marker is left alone dist, cmd = self.get_cmd() diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1478,3 +1478,36 @@ ok = can_symlink() msg = "Requires functional symlink implementation" return test if ok else unittest.skip(msg)(test) + +def patch(test_instance, object_to_patch, attr_name, new_value): + """Override 'object_to_patch'.'attr_name' with 'new_value'. + + Also, add a cleanup procedure to 'test_instance' to restore + 'object_to_patch' value for 'attr_name'. + The 'attr_name' should be a valid attribute for 'object_to_patch'. + + """ + # check that 'attr_name' is a real attribute for 'object_to_patch' + # will raise AttributeError if it does not exist + getattr(object_to_patch, attr_name) + + # keep a copy of the old value + attr_is_local = False + try: + old_value = object_to_patch.__dict__[attr_name] + except (AttributeError, KeyError): + old_value = getattr(object_to_patch, attr_name, None) + else: + attr_is_local = True + + # restore the value when the test is done + def cleanup(): + if attr_is_local: + setattr(object_to_patch, attr_name, old_value) + else: + delattr(object_to_patch, attr_name) + + test_instance.addCleanup(cleanup) + + # actually override the attribute + setattr(object_to_patch, attr_name, new_value) diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py --- a/Lib/test/test_dis.py +++ b/Lib/test/test_dis.py @@ -265,28 +265,26 @@ self.do_disassembly_test(method_bytecode, dis_c_instance_method_bytes) def test_dis_none(self): + try: + del sys.last_traceback + except AttributeError: + pass self.assertRaises(RuntimeError, dis.dis, None) def test_dis_object(self): self.assertRaises(TypeError, dis.dis, object()) def test_dis_traceback(self): - not_defined = object() - tb = None - old = getattr(sys, 'last_traceback', not_defined) - - def cleanup(): - if old != not_defined: - sys.last_traceback = old - else: - del sys.last_traceback + try: + del sys.last_traceback + except AttributeError: + pass try: 1/0 except Exception as e: tb = e.__traceback__ sys.last_traceback = tb - self.addCleanup(cleanup) tb_dis = self.get_disassemble_as_string(tb.tb_frame.f_code, tb.tb_lasti) self.do_disassembly_test(None, tb_dis) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,10 @@ - _ast.__version__ is now a Mercurial integer and hex revision. +- Issue #11432: A bug was introduced in subprocess.Popen on posix systems with + 3.2.0 where the stdout or stderr file descriptor being the same as the stdin + file descriptor would raise an exception. webbrowser.open would fail. fixed. + - Issue #9856: Change object.__format__ with a non-empty format string to be a DeprecationWarning. In 3.2 it was a PendingDeprecationWarning. In 3.4 it will be a TypeError. @@ -68,6 +72,10 @@ Library ------- +- Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is + not installed. Instead, the zipfile.ZIP_STORED compression is used to create + the ZipFile. Patch by Natalia B. Bidart. + - Issue #11289: `smtp.SMTP` class becomes a context manager so it can be used in a `with` statement. Contributed by Giampaolo Rodola. @@ -80,8 +88,8 @@ - Issue #11407: `TestCase.run` returns the result object used or created. Contributed by Janathan Hartley. -- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified - IP addresses in the proxy exception list. +- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified + IP addresses in the proxy exception list. - Issue #11491: dbm.error is no longer raised when dbm.open is called with the "n" as the flag argument and the file exists. The behavior matches @@ -237,6 +245,11 @@ - Issue #10990: Prevent tests from clobbering a set trace function. +C-API +----- + +- PY_PATCHLEVEL_REVISION has been removed, since it's meaningless with Mercurial. + What's New in Python 3.2? ========================= -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 22:32:21 2011 From: python-checkins at python.org (brett.cannon) Date: Tue, 15 Mar 2011 22:32:21 +0100 Subject: [Python-checkins] cpython: Don't leave around a test symlink file. Message-ID: http://hg.python.org/cpython/rev/63173ac7254c changeset: 68558:63173ac7254c user: Brett Cannon date: Tue Mar 15 17:32:14 2011 -0400 summary: Don't leave around a test symlink file. files: Lib/test/support.py diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1465,9 +1465,11 @@ global _can_symlink if _can_symlink is not None: return _can_symlink + symlink_path = TESTFN + "can_symlink" try: - os.symlink(TESTFN, TESTFN + "can_symlink") + os.symlink(TESTFN, symlink_path) can = True + os.remove(symlink_path) except (OSError, NotImplementedError): can = False _can_symlink = can -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 22:38:30 2011 From: python-checkins at python.org (brett.cannon) Date: Tue, 15 Mar 2011 22:38:30 +0100 Subject: [Python-checkins] cpython: Properly close a file in test_os. Message-ID: http://hg.python.org/cpython/rev/9050675cb94e changeset: 68559:9050675cb94e user: Brett Cannon date: Tue Mar 15 17:38:22 2011 -0400 summary: Properly close a file in test_os. files: Lib/test/test_os.py diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -1528,18 +1528,16 @@ def test_trailers(self): TESTFN2 = support.TESTFN + "2" - f = open(TESTFN2, 'wb') - f.write(b"abcde") - f.close() - f = open(TESTFN2, 'rb') - try: - os.sendfile(self.sockno, f.fileno(), 0, 4096, trailers=[b"12345"]) + with open(TESTFN2, 'wb') as f: + f.write(b"abcde") + with open(TESTFN2, 'rb')as f: + self.addCleanup(os.remove, TESTFN2) + os.sendfile(self.sockno, f.fileno(), 0, 4096, + trailers=[b"12345"]) self.client.close() self.server.wait() data = self.server.handler_instance.get_data() self.assertEqual(data, b"abcde12345") - finally: - os.remove(TESTFN2) if hasattr(os, "SF_NODISKIO"): def test_flags(self): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 22:43:47 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 22:43:47 +0100 Subject: [Python-checkins] cpython (3.1): #11216: document all possible set_charset execution paths. Message-ID: http://hg.python.org/cpython/rev/cf1859f9aed9 changeset: 68560:cf1859f9aed9 branch: 3.1 parent: 68550:de5638f399a2 user: R David Murray date: Tue Mar 15 17:41:13 2011 -0400 summary: #11216: document all possible set_charset execution paths. files: Doc/library/email.message.rst diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -130,15 +130,22 @@ string naming a character set, or ``None``. If it is a string, it will be converted to a :class:`~email.charset.Charset` instance. If *charset* is ``None``, the ``charset`` parameter will be removed from the - :mailheader:`Content-Type` header. Anything else will generate a - :exc:`TypeError`. + :mailheader:`Content-Type` header (the message will not be otherwise + modified). Anything else will generate a :exc:`TypeError`. - The message will be assumed to be of type :mimetype:`text/\*` encoded with - *charset.input_charset*. It will be converted to *charset.output_charset* - and encoded properly, if needed, when generating the plain text - representation of the message. MIME headers (:mailheader:`MIME-Version`, - :mailheader:`Content-Type`, :mailheader:`Content-Transfer-Encoding`) will - be added as needed. + If there is no existing :mailheader:`MIME-Version` header one will be + added. If there is no existing :mailheader:`Content-Type` header, one + will be added with a value of :mimetype:`text/plain`. Whether the + :mailheader:`Content-Type` header already exists or not, its ``charset`` + parameter will be set to *charset.output_charset*. If + *charset.input_charset* and *charset.output_charset* differ, the payload + will be re-encoded to the *output_charset*. If there is no existing + :mailheader:`Content-Transfer-Encoding` header, then the payload will be + transfer-encoded, if needed, using the specified + :class:`~email.charset.Charset`, and a header with the appropriate value + will be added. If a :mailheader:`Content-Transfer-Encoding` header + already exists, the payload is assumed to already be correctly encoded + using that :mailheader:`Content-Transfer-Encoding` and is not modified. .. method:: get_charset() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 22:43:48 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 22:43:48 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge #11216: document all possible set_charset execution paths. Message-ID: http://hg.python.org/cpython/rev/4d25b9d2aa05 changeset: 68561:4d25b9d2aa05 branch: 3.2 parent: 68554:ed802f82f07a parent: 68560:cf1859f9aed9 user: R David Murray date: Tue Mar 15 17:42:50 2011 -0400 summary: Merge #11216: document all possible set_charset execution paths. files: Doc/library/email.message.rst diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -139,15 +139,22 @@ string naming a character set, or ``None``. If it is a string, it will be converted to a :class:`~email.charset.Charset` instance. If *charset* is ``None``, the ``charset`` parameter will be removed from the - :mailheader:`Content-Type` header. Anything else will generate a - :exc:`TypeError`. + :mailheader:`Content-Type` header (the message will not be otherwise + modified). Anything else will generate a :exc:`TypeError`. - The message will be assumed to be of type :mimetype:`text/\*` encoded with - *charset.input_charset*. It will be converted to *charset.output_charset* - and encoded properly, if needed, when generating the plain text - representation of the message. MIME headers (:mailheader:`MIME-Version`, - :mailheader:`Content-Type`, :mailheader:`Content-Transfer-Encoding`) will - be added as needed. + If there is no existing :mailheader:`MIME-Version` header one will be + added. If there is no existing :mailheader:`Content-Type` header, one + will be added with a value of :mimetype:`text/plain`. Whether the + :mailheader:`Content-Type` header already exists or not, its ``charset`` + parameter will be set to *charset.output_charset*. If + *charset.input_charset* and *charset.output_charset* differ, the payload + will be re-encoded to the *output_charset*. If there is no existing + :mailheader:`Content-Transfer-Encoding` header, then the payload will be + transfer-encoded, if needed, using the specified + :class:`~email.charset.Charset`, and a header with the appropriate value + will be added. If a :mailheader:`Content-Transfer-Encoding` header + already exists, the payload is assumed to already be correctly encoded + using that :mailheader:`Content-Transfer-Encoding` and is not modified. .. method:: get_charset() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 22:43:49 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 22:43:49 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #11216: document all possible set_charset execution paths. Message-ID: http://hg.python.org/cpython/rev/2dd70fd26f24 changeset: 68562:2dd70fd26f24 parent: 68559:9050675cb94e parent: 68561:4d25b9d2aa05 user: R David Murray date: Tue Mar 15 17:43:21 2011 -0400 summary: Merge #11216: document all possible set_charset execution paths. files: diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -139,15 +139,22 @@ string naming a character set, or ``None``. If it is a string, it will be converted to a :class:`~email.charset.Charset` instance. If *charset* is ``None``, the ``charset`` parameter will be removed from the - :mailheader:`Content-Type` header. Anything else will generate a - :exc:`TypeError`. + :mailheader:`Content-Type` header (the message will not be otherwise + modified). Anything else will generate a :exc:`TypeError`. - The message will be assumed to be of type :mimetype:`text/\*` encoded with - *charset.input_charset*. It will be converted to *charset.output_charset* - and encoded properly, if needed, when generating the plain text - representation of the message. MIME headers (:mailheader:`MIME-Version`, - :mailheader:`Content-Type`, :mailheader:`Content-Transfer-Encoding`) will - be added as needed. + If there is no existing :mailheader:`MIME-Version` header one will be + added. If there is no existing :mailheader:`Content-Type` header, one + will be added with a value of :mimetype:`text/plain`. Whether the + :mailheader:`Content-Type` header already exists or not, its ``charset`` + parameter will be set to *charset.output_charset*. If + *charset.input_charset* and *charset.output_charset* differ, the payload + will be re-encoded to the *output_charset*. If there is no existing + :mailheader:`Content-Transfer-Encoding` header, then the payload will be + transfer-encoded, if needed, using the specified + :class:`~email.charset.Charset`, and a header with the appropriate value + will be added. If a :mailheader:`Content-Transfer-Encoding` header + already exists, the payload is assumed to already be correctly encoded + using that :mailheader:`Content-Transfer-Encoding` and is not modified. .. method:: get_charset() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 22:48:49 2011 From: python-checkins at python.org (martin.v.loewis) Date: Tue, 15 Mar 2011 22:48:49 +0100 (CET) Subject: [Python-checkins] r88781 - in tracker/instances/python-dev: html/issue.item.html html/user.item.html schema.py Message-ID: <20110315214849.EF28CEE9D0@mail.python.org> Author: martin.v.loewis Date: Tue Mar 15 22:48:49 2011 New Revision: 88781 Log: Extend schema to record committers. Modified: tracker/instances/python-dev/html/issue.item.html tracker/instances/python-dev/html/user.item.html tracker/instances/python-dev/schema.py Modified: tracker/instances/python-dev/html/issue.item.html ============================================================================== --- tracker/instances/python-dev/html/issue.item.html (original) +++ tracker/instances/python-dev/html/issue.item.html Tue Mar 15 22:48:49 2011 @@ -298,6 +298,9 @@ Modified: tracker/instances/python-dev/html/user.item.html ============================================================================== --- tracker/instances/python-dev/html/user.item.html (original) +++ tracker/instances/python-dev/html/user.item.html Tue Mar 15 22:48:49 2011 @@ -116,6 +116,11 @@ + + + +
    http://hg.python.org/hooks/rev/2bc7444f2c04 changeset: 63:2bc7444f2c04 user: Ezio Melotti date: Sun Mar 13 17:09:19 2011 +0200 summary: Re-enable stage setting. files: hgroundup.py diff --git a/hgroundup.py b/hgroundup.py --- a/hgroundup.py +++ b/hgroundup.py @@ -120,7 +120,7 @@ issues[key]['properties'].update({ 'status': 'closed', 'resolution': 'fixed', - #'stage': 'committed/rejected', + 'stage': 'committed/rejected', }) def send_comments(mailrelay, fromaddr, toaddr, issues): -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Sun Mar 13 16:41:53 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 13 Mar 2011 16:41:53 +0100 (CET) Subject: [Python-checkins] r88768 - tracker/instances/python-dev/extensions/create_patch.py Message-ID: <20110313154153.32EDFEE994@mail.python.org> Author: martin.v.loewis Date: Sun Mar 13 16:41:53 2011 New Revision: 88768 Log: Fix various bugs. Improve error reporting. Modified: tracker/instances/python-dev/extensions/create_patch.py Modified: tracker/instances/python-dev/extensions/create_patch.py ============================================================================== --- tracker/instances/python-dev/extensions/create_patch.py (original) +++ tracker/instances/python-dev/extensions/create_patch.py Sun Mar 13 16:41:53 2011 @@ -15,11 +15,14 @@ repo0.ui.quiet=True repo0.ui.pushbuffer() commands.pull(repo0.ui, repo0, quiet=True) + repo0.ui.popbuffer() # discard all pull output + repo0.ui.pushbuffer() commands.incoming(repo0.ui, repo0, source=source, branch=['default'], bundle=bundle, force=False) rhead = repo0.ui.popbuffer() if rhead: - rhead = rhead.split(':')[1] - if rhead == 'lastrev': + # output is a list of revisions, one per line. last line should be newest revision + rhead = rhead.splitlines()[-1].split(':')[1] + if rhead == lastrev: raise NotChanged repo=bundlerepo.bundlerepository(UI, ".", bundle) repo.ui.pushbuffer() @@ -49,15 +52,19 @@ try: diff, head = download_patch(url, lastrev) except NotChanged: - self.client.error_message.append('%s is already available' % head) + self.client.error_message.append('%s.diff is already available' % lastrev) + return + except Exception, e: + self.client.error_message.append(str(e)) return - fileid = db.file.create(name='default.diff', + fileid = db.file.create(name='%s.diff' % head, type='text/plain', content=diff) files = db.issue.get(self.nodeid, 'files') files.append(fileid) db.issue.set(self.nodeid, files=files) db.hgrepo.set(repo, lastrev=head) + self.client.ok_message.append('Successfully downloaded %s.diff' % head) db.commit() def init(instance): From python-checkins at python.org Sun Mar 13 16:52:17 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 13 Mar 2011 16:52:17 +0100 (CET) Subject: [Python-checkins] r88769 - tracker/instances/python-dev/extensions/create_patch.py Message-ID: <20110313155217.0D7A0D2AE@mail.python.org> Author: martin.v.loewis Date: Sun Mar 13 16:52:16 2011 New Revision: 88769 Log: Detect if there are no changes. Modified: tracker/instances/python-dev/extensions/create_patch.py Modified: tracker/instances/python-dev/extensions/create_patch.py ============================================================================== --- tracker/instances/python-dev/extensions/create_patch.py (original) +++ tracker/instances/python-dev/extensions/create_patch.py Sun Mar 13 16:52:16 2011 @@ -17,7 +17,8 @@ commands.pull(repo0.ui, repo0, quiet=True) repo0.ui.popbuffer() # discard all pull output repo0.ui.pushbuffer() - commands.incoming(repo0.ui, repo0, source=source, branch=['default'], bundle=bundle, force=False) + if commands.incoming(repo0.ui, repo0, source=source, branch=['default'], bundle=bundle, force=False) != 0: + raise ValueError, "Repository contains no changes" rhead = repo0.ui.popbuffer() if rhead: # output is a list of revisions, one per line. last line should be newest revision From python-checkins at python.org Sun Mar 13 17:13:53 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 13 Mar 2011 17:13:53 +0100 (CET) Subject: [Python-checkins] r88770 - tracker/instances/python-dev/extensions/create_patch.py Message-ID: <20110313161353.CDD90EE98A@mail.python.org> Author: martin.v.loewis Date: Sun Mar 13 17:13:53 2011 New Revision: 88770 Log: Put tempfiles into /var/tmp; delete them at the end. Modified: tracker/instances/python-dev/extensions/create_patch.py Modified: tracker/instances/python-dev/extensions/create_patch.py ============================================================================== --- tracker/instances/python-dev/extensions/create_patch.py (original) +++ tracker/instances/python-dev/extensions/create_patch.py Sun Mar 13 17:13:53 2011 @@ -7,7 +7,7 @@ def download_patch(source, lastrev): from mercurial import hg, ui, localrepo, commands, bundlerepo UI = ui.ui() - bundle = tempfile.mktemp() + bundle = tempfile.mktemp(dir="/var/tmp") cwd = os.getcwd() os.chdir(base) try: @@ -31,6 +31,8 @@ result = repo.ui.popbuffer() finally: os.chdir(cwd) + if os.path.exists(bundle): + os.unlink(bundle) return result, rhead class CreatePatch(Action): From python-checkins at python.org Sun Mar 13 18:16:47 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 13 Mar 2011 18:16:47 +0100 (CET) Subject: [Python-checkins] r88771 - tracker/instances/python-dev/scripts/addpatchsets Message-ID: <20110313171647.935EAEE9A4@mail.python.org> Author: martin.v.loewis Date: Sun Mar 13 18:16:47 2011 New Revision: 88771 Log: Support empty bases. Modified: tracker/instances/python-dev/scripts/addpatchsets Modified: tracker/instances/python-dev/scripts/addpatchsets ============================================================================== --- tracker/instances/python-dev/scripts/addpatchsets (original) +++ tracker/instances/python-dev/scripts/addpatchsets Sun Mar 13 18:16:47 2011 @@ -38,10 +38,14 @@ try: r = urllib2.urlopen("http://hg.python.org/cpython/raw-file/"+rev+"/"+filename) except urllib2.HTTPError: - return None - base = engine.UnifyLinebreaks(r.read()) + # not found/not accessible + # assume that the file did not exist in the base revision + # and consider it empty. If the problem was different (i.e. there should have + # been a non-empty base, patching will fail. + base = "" + else: + base = engine.UnifyLinebreaks(r.read()) lines = base.splitlines(True) - #import pdb; pdb.set_trace() for (start, end), newrange, oldlines, newlines in chunks: if lines[start:end] != oldlines: if verbose: From python-checkins at python.org Sun Mar 13 18:20:03 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 13 Mar 2011 18:20:03 +0100 (CET) Subject: [Python-checkins] r88772 - tracker/instances/python-dev/scripts/addpatchsets Message-ID: <20110313172003.7E3FDEE9A4@mail.python.org> Author: martin.v.loewis Date: Sun Mar 13 18:20:03 2011 New Revision: 88772 Log: Support empty bases more. Modified: tracker/instances/python-dev/scripts/addpatchsets Modified: tracker/instances/python-dev/scripts/addpatchsets ============================================================================== --- tracker/instances/python-dev/scripts/addpatchsets (original) +++ tracker/instances/python-dev/scripts/addpatchsets Sun Mar 13 18:20:03 2011 @@ -88,7 +88,7 @@ bases = [] for filename, data, chunks in pieces: res = try_match(filename, chunks, rev) - if not res: + if res is None: return None, None bases.append((filename, data, chunks, res)) if verbose: From python-checkins at python.org Sun Mar 13 18:29:57 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 13 Mar 2011 18:29:57 +0100 (CET) Subject: [Python-checkins] r88773 - tracker/instances/python-dev/scripts/addpatchsets Message-ID: <20110313172957.383AFEE98A@mail.python.org> Author: martin.v.loewis Date: Sun Mar 13 18:29:56 2011 New Revision: 88773 Log: Do dummy commit before leaving transaction management. Modified: tracker/instances/python-dev/scripts/addpatchsets Modified: tracker/instances/python-dev/scripts/addpatchsets ============================================================================== --- tracker/instances/python-dev/scripts/addpatchsets (original) +++ tracker/instances/python-dev/scripts/addpatchsets Sun Mar 13 18:29:56 2011 @@ -169,5 +169,5 @@ patch.content = content patch.put() transaction.commit() - +transaction.commit() transaction.leave_transaction_management() From python-checkins at python.org Sun Mar 13 18:35:49 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 13 Mar 2011 18:35:49 +0100 (CET) Subject: [Python-checkins] r88774 - tracker/instances/python-dev/html/issue.item.html Message-ID: <20110313173549.62575EE98A@mail.python.org> Author: martin.v.loewis Date: Sun Mar 13 18:35:49 2011 New Revision: 88774 Log: Link to devguide#hgrepo. Modified: tracker/instances/python-dev/html/issue.item.html Modified: tracker/instances/python-dev/html/issue.item.html ============================================================================== --- tracker/instances/python-dev/html/issue.item.html (original) +++ tracker/instances/python-dev/html/issue.item.html Sun Mar 13 18:35:49 2011 @@ -199,7 +199,8 @@
    Mercurial Repo containing patches:Mercurial Repo containing patches: From python-checkins at python.org Sun Mar 13 18:58:07 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 13 Mar 2011 18:58:07 +0100 (CET) Subject: [Python-checkins] r88775 - tracker/instances/python-dev/html/issue.item.html Message-ID: <20110313175807.A69E4FCA8@mail.python.org> Author: martin.v.loewis Date: Sun Mar 13 18:58:07 2011 New Revision: 88775 Log: Fix hgrepo anchor. Modified: tracker/instances/python-dev/html/issue.item.html Modified: tracker/instances/python-dev/html/issue.item.html ============================================================================== --- tracker/instances/python-dev/html/issue.item.html (original) +++ tracker/instances/python-dev/html/issue.item.html Sun Mar 13 18:58:07 2011 @@ -199,7 +199,7 @@
    Mercurial Repo containing patches: From python-checkins at python.org Sun Mar 13 18:58:08 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 13 Mar 2011 18:58:08 +0100 Subject: [Python-checkins] devguide: Add triaging#mercurial-repository. Message-ID: http://hg.python.org/devguide/rev/f04e433cb93b changeset: 390:f04e433cb93b user: Martin v. L?wis date: Sun Mar 13 13:56:51 2011 -0400 summary: Add triaging#mercurial-repository. files: triaging.rst diff --git a/triaging.rst b/triaging.rst --- a/triaging.rst +++ b/triaging.rst @@ -181,6 +181,12 @@ works for me Bug cannot be reproduced. +Mercurial Repository +'''''''''''''''''''' +HTTP link to a Mercurial repository that contains a patch for the issue. +The patch should be in the default branch of that repository. The +`Create Patch` button will then compute a diff for the head revision +of the remote branch, and attach the diff to the issue. Generating Special Links in a Comment ------------------------------------- -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sun Mar 13 19:08:21 2011 From: python-checkins at python.org (brett.cannon) Date: Sun, 13 Mar 2011 19:08:21 +0100 Subject: [Python-checkins] devguide: List Alex Gaynor and Maciej Fijalkowski push privileges. Message-ID: http://hg.python.org/devguide/rev/dd51921bae7a changeset: 391:dd51921bae7a user: Brett Cannon date: Sun Mar 13 14:08:12 2011 -0400 summary: List Alex Gaynor and Maciej Fijalkowski push privileges. files: developers.rst diff --git a/developers.rst b/developers.rst --- a/developers.rst +++ b/developers.rst @@ -24,6 +24,9 @@ Permissions History ------------------- +- Alex Gaynor and Maciej Fijalkowski were given push privileges on Mar 13 2011 + by BAC, for stdlib compatibility work for PyPy. + - Ross Lagerwall was given push privileges on Mar 13 2011 by GFB, on recommendation by Antoine Pitrou and Ned Deily. -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sun Mar 13 19:16:10 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 13 Mar 2011 19:16:10 +0100 Subject: [Python-checkins] cpython (3.2): Issue #11223: Fix test_threadsignals to fail, not hang, when the Message-ID: http://hg.python.org/cpython/rev/5d0d488cbca8 changeset: 68421:5d0d488cbca8 branch: 3.2 parent: 68413:4a68f4cfbdc8 user: Antoine Pitrou date: Sun Mar 13 19:14:21 2011 +0100 summary: Issue #11223: Fix test_threadsignals to fail, not hang, when the non-semaphore implementation of locks is used under POSIX. files: Lib/test/test_threadsignals.py Misc/NEWS diff --git a/Lib/test/test_threadsignals.py b/Lib/test/test_threadsignals.py --- a/Lib/test/test_threadsignals.py +++ b/Lib/test/test_threadsignals.py @@ -73,18 +73,29 @@ def test_lock_acquire_interruption(self): # Mimic receiving a SIGINT (KeyboardInterrupt) with SIGALRM while stuck # in a deadlock. + # XXX this test can fail when the legacy (non-semaphore) implementation + # of locks is used in thread_pthread.h, see issue #11223. oldalrm = signal.signal(signal.SIGALRM, self.alarm_interrupt) try: lock = thread.allocate_lock() lock.acquire() signal.alarm(1) - self.assertRaises(KeyboardInterrupt, lock.acquire) + t1 = time.time() + self.assertRaises(KeyboardInterrupt, lock.acquire, timeout=5) + dt = time.time() - t1 + # Checking that KeyboardInterrupt was raised is not sufficient. + # We want to assert that lock.acquire() was interrupted because + # of the signal, not that the signal handler was called immediately + # after timeout return of lock.acquire() (which can fool assertRaises). + self.assertLess(dt, 3.0) finally: signal.signal(signal.SIGALRM, oldalrm) def test_rlock_acquire_interruption(self): # Mimic receiving a SIGINT (KeyboardInterrupt) with SIGALRM while stuck # in a deadlock. + # XXX this test can fail when the legacy (non-semaphore) implementation + # of locks is used in thread_pthread.h, see issue #11223. oldalrm = signal.signal(signal.SIGALRM, self.alarm_interrupt) try: rlock = thread.RLock() @@ -98,7 +109,11 @@ rlock.release() time.sleep(0.01) signal.alarm(1) - self.assertRaises(KeyboardInterrupt, rlock.acquire) + t1 = time.time() + self.assertRaises(KeyboardInterrupt, rlock.acquire, timeout=5) + dt = time.time() - t1 + # See rationale above in test_lock_acquire_interruption + self.assertLess(dt, 3.0) finally: signal.signal(signal.SIGALRM, oldalrm) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -92,6 +92,9 @@ Tests ----- +- Issue #11223: Fix test_threadsignals to fail, not hang, when the + non-semaphore implementation of locks is used under POSIX. + - Issue #10911: Add tests on CGI with non-ASCII characters. Patch written by Pierre Quentel. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 19:16:11 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 13 Mar 2011 19:16:11 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge commit for #11233 Message-ID: http://hg.python.org/cpython/rev/f197dac00f43 changeset: 68422:f197dac00f43 parent: 68418:e34b09c69dd3 parent: 68421:5d0d488cbca8 user: Antoine Pitrou date: Sun Mar 13 19:16:03 2011 +0100 summary: Merge commit for #11233 files: Misc/NEWS diff --git a/Lib/test/test_threadsignals.py b/Lib/test/test_threadsignals.py --- a/Lib/test/test_threadsignals.py +++ b/Lib/test/test_threadsignals.py @@ -73,18 +73,29 @@ def test_lock_acquire_interruption(self): # Mimic receiving a SIGINT (KeyboardInterrupt) with SIGALRM while stuck # in a deadlock. + # XXX this test can fail when the legacy (non-semaphore) implementation + # of locks is used in thread_pthread.h, see issue #11223. oldalrm = signal.signal(signal.SIGALRM, self.alarm_interrupt) try: lock = thread.allocate_lock() lock.acquire() signal.alarm(1) - self.assertRaises(KeyboardInterrupt, lock.acquire) + t1 = time.time() + self.assertRaises(KeyboardInterrupt, lock.acquire, timeout=5) + dt = time.time() - t1 + # Checking that KeyboardInterrupt was raised is not sufficient. + # We want to assert that lock.acquire() was interrupted because + # of the signal, not that the signal handler was called immediately + # after timeout return of lock.acquire() (which can fool assertRaises). + self.assertLess(dt, 3.0) finally: signal.signal(signal.SIGALRM, oldalrm) def test_rlock_acquire_interruption(self): # Mimic receiving a SIGINT (KeyboardInterrupt) with SIGALRM while stuck # in a deadlock. + # XXX this test can fail when the legacy (non-semaphore) implementation + # of locks is used in thread_pthread.h, see issue #11223. oldalrm = signal.signal(signal.SIGALRM, self.alarm_interrupt) try: rlock = thread.RLock() @@ -98,7 +109,11 @@ rlock.release() time.sleep(0.01) signal.alarm(1) - self.assertRaises(KeyboardInterrupt, rlock.acquire) + t1 = time.time() + self.assertRaises(KeyboardInterrupt, rlock.acquire, timeout=5) + dt = time.time() - t1 + # See rationale above in test_lock_acquire_interruption + self.assertLess(dt, 3.0) finally: signal.signal(signal.SIGALRM, oldalrm) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -188,6 +188,9 @@ Tests ----- +- Issue #11223: Fix test_threadsignals to fail, not hang, when the + non-semaphore implementation of locks is used under POSIX. + - Issue #10911: Add tests on CGI with non-ASCII characters. Patch written by Pierre Quentel. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 19:32:42 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 13 Mar 2011 19:32:42 +0100 Subject: [Python-checkins] cpython (3.1): Remove documentation to non-existent function PyObject_CopyToObject (fixes Message-ID: http://hg.python.org/cpython/rev/539e6f1fce78 changeset: 68423:539e6f1fce78 branch: 3.1 parent: 68411:87167b08312f user: Antoine Pitrou date: Sun Mar 13 19:31:11 2011 +0100 summary: Remove documentation to non-existent function PyObject_CopyToObject (fixes #11478) files: Doc/c-api/buffer.rst diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst --- a/Doc/c-api/buffer.rst +++ b/Doc/c-api/buffer.rst @@ -306,20 +306,6 @@ :cdata:`~Py_buffer.format`. -.. cfunction:: int PyObject_CopyToObject(PyObject *obj, void *buf, Py_ssize_t len, char fortran) - - Copy *len* bytes of data pointed to by the contiguous chunk of memory - pointed to by *buf* into the buffer exported by obj. The buffer must of - course be writable. Return 0 on success and return -1 and raise an error - on failure. If the object does not have a writable buffer, then an error - is raised. If *fortran* is ``'F'``, then if the object is - multi-dimensional, then the data will be copied into the array in - Fortran-style (first dimension varies the fastest). If *fortran* is - ``'C'``, then the data will be copied into the array in C-style (last - dimension varies the fastest). If *fortran* is ``'A'``, then it does not - matter and the copy will be made in whatever way is more efficient. - - .. cfunction:: int PyBuffer_IsContiguous(Py_buffer *view, char fortran) Return 1 if the memory defined by the *view* is C-style (*fortran* is -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 19:32:43 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 13 Mar 2011 19:32:43 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Remove documentation to non-existent function PyObject_CopyToObject (fixes Message-ID: http://hg.python.org/cpython/rev/eb8c2f43b251 changeset: 68424:eb8c2f43b251 branch: 3.2 parent: 68421:5d0d488cbca8 parent: 68423:539e6f1fce78 user: Antoine Pitrou date: Sun Mar 13 19:32:01 2011 +0100 summary: Remove documentation to non-existent function PyObject_CopyToObject (fixes #11478) files: Doc/c-api/buffer.rst diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst --- a/Doc/c-api/buffer.rst +++ b/Doc/c-api/buffer.rst @@ -304,20 +304,6 @@ :c:data:`~Py_buffer.format`. -.. c:function:: int PyObject_CopyToObject(PyObject *obj, void *buf, Py_ssize_t len, char fortran) - - Copy *len* bytes of data pointed to by the contiguous chunk of memory - pointed to by *buf* into the buffer exported by obj. The buffer must of - course be writable. Return 0 on success and return -1 and raise an error - on failure. If the object does not have a writable buffer, then an error - is raised. If *fortran* is ``'F'``, then if the object is - multi-dimensional, then the data will be copied into the array in - Fortran-style (first dimension varies the fastest). If *fortran* is - ``'C'``, then the data will be copied into the array in C-style (last - dimension varies the fastest). If *fortran* is ``'A'``, then it does not - matter and the copy will be made in whatever way is more efficient. - - .. c:function:: int PyBuffer_IsContiguous(Py_buffer *view, char fortran) Return 1 if the memory defined by the *view* is C-style (*fortran* is -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 19:32:44 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 13 Mar 2011 19:32:44 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Remove documentation to non-existent function PyObject_CopyToObject (fixes Message-ID: http://hg.python.org/cpython/rev/955547e57cff changeset: 68425:955547e57cff parent: 68422:f197dac00f43 parent: 68424:eb8c2f43b251 user: Antoine Pitrou date: Sun Mar 13 19:32:21 2011 +0100 summary: Remove documentation to non-existent function PyObject_CopyToObject (fixes #11478) files: diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst --- a/Doc/c-api/buffer.rst +++ b/Doc/c-api/buffer.rst @@ -304,20 +304,6 @@ :c:data:`~Py_buffer.format`. -.. c:function:: int PyObject_CopyToObject(PyObject *obj, void *buf, Py_ssize_t len, char fortran) - - Copy *len* bytes of data pointed to by the contiguous chunk of memory - pointed to by *buf* into the buffer exported by obj. The buffer must of - course be writable. Return 0 on success and return -1 and raise an error - on failure. If the object does not have a writable buffer, then an error - is raised. If *fortran* is ``'F'``, then if the object is - multi-dimensional, then the data will be copied into the array in - Fortran-style (first dimension varies the fastest). If *fortran* is - ``'C'``, then the data will be copied into the array in C-style (last - dimension varies the fastest). If *fortran* is ``'A'``, then it does not - matter and the copy will be made in whatever way is more efficient. - - .. c:function:: int PyBuffer_IsContiguous(Py_buffer *view, char fortran) Return 1 if the memory defined by the *view* is C-style (*fortran* is -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 19:35:10 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 13 Mar 2011 19:35:10 +0100 Subject: [Python-checkins] cpython (2.7): Remove documentation to non-existent function PyObject_CopyToObject (fixes Message-ID: http://hg.python.org/cpython/rev/248800b58175 changeset: 68426:248800b58175 branch: 2.7 parent: 68420:62cf7599e44a user: Antoine Pitrou date: Sun Mar 13 19:35:04 2011 +0100 summary: Remove documentation to non-existent function PyObject_CopyToObject (fixes #11478) files: Doc/c-api/buffer.rst diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst --- a/Doc/c-api/buffer.rst +++ b/Doc/c-api/buffer.rst @@ -266,20 +266,6 @@ :cdata:`~Py_buffer.format`. -.. cfunction:: int PyObject_CopyToObject(PyObject *obj, void *buf, Py_ssize_t len, char fortran) - - Copy *len* bytes of data pointed to by the contiguous chunk of memory - pointed to by *buf* into the buffer exported by obj. The buffer must of - course be writable. Return 0 on success and return -1 and raise an error - on failure. If the object does not have a writable buffer, then an error - is raised. If *fortran* is ``'F'``, then if the object is - multi-dimensional, then the data will be copied into the array in - Fortran-style (first dimension varies the fastest). If *fortran* is - ``'C'``, then the data will be copied into the array in C-style (last - dimension varies the fastest). If *fortran* is ``'A'``, then it does not - matter and the copy will be made in whatever way is more efficient. - - .. cfunction:: int PyBuffer_IsContiguous(Py_buffer *view, char fortran) Return 1 if the memory defined by the *view* is C-style (*fortran* is -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 19:45:14 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 19:45:14 +0100 Subject: [Python-checkins] distutils2: Porting setup.py for Python 3: Message-ID: http://hg.python.org/distutils2/rev/6aadad4c1cb3 changeset: 1098:6aadad4c1cb3 parent: 836:a8eaafda8fd3 user: Arc Riley date: Sat Nov 20 14:00:07 2010 -0500 summary: Porting setup.py for Python 3: * use either build_py or build_py_2to3 based on Python version for automatic 2to3 * replaced find_packages() with static package list since distutils2.utils can't be ported to Py3 before setup.py is run * replaced "if rev == ''" with "if not rev" to avoid bytes vs string issue on Py3 files: setup.py diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -5,13 +5,20 @@ import re from distutils2 import __version__ as VERSION -from distutils2.util import find_packages from distutils import log from distutils.core import setup, Extension from distutils.ccompiler import new_compiler from distutils.command.sdist import sdist from distutils.command.install import install +# Python 3.x hook to run 2to3 automatically +try: + from distutils.command.build_py import build_py_2to3 as build_py +except ImportError: + # 2.x + from distutils.command.build_py import build_py + + f = open('README.txt') try: README = f.read() @@ -26,7 +33,7 @@ except OSError: return 0 rev = cmd.stdout.read() - if rev == '': + if not rev : # there has been an error in the command return 0 return int(rev) @@ -217,7 +224,20 @@ license="PSF", long_description=README, classifiers=_CLASSIFIERS.split('\n'), - packages=find_packages(), - cmdclass={'sdist_hg': sdist_hg, 'install_hg': install_hg}, + packages=[ + 'distutils2', + 'distutils2.tests', + 'distutils2.compiler', + 'distutils2.command', + 'distutils2._backport', + 'distutils2.index', + 'distutils2.tests.fixer', + 'distutils2._backport.tests', + ], + cmdclass={ + 'build_py':build_py, + 'install_hg': install_hg, + 'sdist_hg': sdist_hg, + }, package_data={'distutils2._backport': ['sysconfig.cfg']}, **setup_kwargs) -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 19:45:14 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 19:45:14 +0100 Subject: [Python-checkins] distutils2: Ran 2to3 on runtests.py, the resulting changes run clean on Python 2.4+ Message-ID: http://hg.python.org/distutils2/rev/001ff262c405 changeset: 1099:001ff262c405 user: Arc Riley date: Sat Nov 20 14:00:56 2010 -0500 summary: Ran 2to3 on runtests.py, the resulting changes run clean on Python 2.4+ files: runtests.py diff --git a/runtests.py b/runtests.py --- a/runtests.py +++ b/runtests.py @@ -64,7 +64,7 @@ # running coverage 2.x cov.cache = COVERAGE_FILE cov.restore() - morfs = [m for m in cov.cexecuted.keys() if "distutils2" in m] + morfs = [m for m in list(cov.cexecuted.keys()) if "distutils2" in m] prefixes = ["runtests", "distutils2/tests", "distutils2/_backport"] prefixes += ignore_prefixes(unittest) -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 19:45:15 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 19:45:15 +0100 Subject: [Python-checkins] distutils2: Replacing wrap_text function with Python builtin textwrap.wrap Message-ID: http://hg.python.org/distutils2/rev/41f54eecbfa3 changeset: 1100:41f54eecbfa3 user: Arc Riley date: Sat Nov 20 15:38:35 2010 -0500 summary: Replacing wrap_text function with Python builtin textwrap.wrap files: distutils2/fancy_getopt.py diff --git a/distutils2/fancy_getopt.py b/distutils2/fancy_getopt.py --- a/distutils2/fancy_getopt.py +++ b/distutils2/fancy_getopt.py @@ -13,6 +13,7 @@ import string import re import getopt +import textwrap from distutils2.errors import DistutilsGetoptError, DistutilsArgError # Much like command_re in distutils.core, this is close to but not quite @@ -349,7 +350,7 @@ for option in self.option_table: long, short, help = option[:3] - text = wrap_text(help, text_width) + text = textwrap.wrap(help, text_width) if long[-1] == '=': long = long[0:-1] @@ -394,67 +395,6 @@ return parser.getopt(args, object) -WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace)) - -def wrap_text (text, width): - """wrap_text(text : string, width : int) -> [string] - - Split 'text' into multiple lines of no more than 'width' characters - each, and return the list of strings that results. - """ - - if text is None: - return [] - if len(text) <= width: - return [text] - - text = string.expandtabs(text) - text = string.translate(text, WS_TRANS) - chunks = re.split(r'( +|-+)', text) - chunks = filter(None, chunks) # ' - ' results in empty strings - lines = [] - - while chunks: - - cur_line = [] # list of chunks (to-be-joined) - cur_len = 0 # length of current line - - while chunks: - l = len(chunks[0]) - if cur_len + l <= width: # can squeeze (at least) this chunk in - cur_line.append(chunks[0]) - del chunks[0] - cur_len = cur_len + l - else: # this line is full - # drop last chunk if all space - if cur_line and cur_line[-1][0] == ' ': - del cur_line[-1] - break - - if chunks: # any chunks left to process? - - # if the current line is still empty, then we had a single - # chunk that's too big too fit on a line -- so we break - # down and break it up at the line width - if cur_len == 0: - cur_line.append(chunks[0][0:width]) - chunks[0] = chunks[0][width:] - - # all-whitespace chunks at the end of a line can be discarded - # (and we know from the re.split above that if a chunk has - # *any* whitespace, it is *all* whitespace) - if chunks[0][0] == ' ': - del chunks[0] - - # and store this line in the list-of-all-lines -- as a single - # string, of course! - lines.append(string.join(cur_line, '')) - - # while chunks - - return lines - - class OptionDummy(object): """Dummy class just used as a place to hold command-line option values as instance attributes.""" -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 19:45:15 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 19:45:15 +0100 Subject: [Python-checkins] distutils2: Applied type checking fix from Python 3.1.2 distutils Message-ID: http://hg.python.org/distutils2/rev/07b2cfed116d changeset: 1101:07b2cfed116d user: Arc Riley date: Sat Nov 20 15:47:00 2010 -0500 summary: Applied type checking fix from Python 3.1.2 distutils files: distutils2/compiler/unixccompiler.py diff --git a/distutils2/compiler/unixccompiler.py b/distutils2/compiler/unixccompiler.py --- a/distutils2/compiler/unixccompiler.py +++ b/distutils2/compiler/unixccompiler.py @@ -15,7 +15,6 @@ import os, sys -from types import StringType, NoneType from distutils2.util import newer from distutils2.compiler.ccompiler import CCompiler @@ -217,7 +216,7 @@ lib_opts = gen_lib_options(self, library_dirs, runtime_library_dirs, libraries) - if type(output_dir) not in (StringType, NoneType): + if not isinstance(output_dir, (str, type(None))): raise TypeError, "'output_dir' must be a string or None" if output_dir is not None: output_filename = os.path.join(output_dir, output_filename) -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 19:45:15 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 19:45:15 +0100 Subject: [Python-checkins] distutils2: Adding 3.1 testing to tests.sh Message-ID: http://hg.python.org/distutils2/rev/bddf76e09db6 changeset: 1102:bddf76e09db6 user: Arc Riley date: Sat Nov 20 19:19:09 2010 -0500 summary: Adding 3.1 testing to tests.sh files: tests.sh diff --git a/tests.sh b/tests.sh --- a/tests.sh +++ b/tests.sh @@ -37,4 +37,13 @@ else echo Success fi + +echo -n "Running tests for Python 3.1... " +python3.1 -Wd -bb runtests.py -q 2> /dev/null +if [ $? -ne 0 ];then + echo Failed + exit 1 +else + echo Success +fi echo "Good job, commit now! (or add tests)" -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 19:45:15 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 19:45:15 +0100 Subject: [Python-checkins] distutils2: Changed test.test_support import to test.support when running on Python 3 Message-ID: http://hg.python.org/distutils2/rev/f19a72623297 changeset: 1103:f19a72623297 user: Arc Riley date: Thu Nov 25 06:27:15 2010 -0500 summary: Changed test.test_support import to test.support when running on Python 3 files: distutils2/_backport/tests/test_pkgutil.py distutils2/_backport/tests/test_sysconfig.py distutils2/tests/__init__.py diff --git a/distutils2/_backport/tests/test_pkgutil.py b/distutils2/_backport/tests/test_pkgutil.py --- a/distutils2/_backport/tests/test_pkgutil.py +++ b/distutils2/_backport/tests/test_pkgutil.py @@ -12,9 +12,7 @@ except ImportError: from distutils2._backport.hashlib import md5 -from test.test_support import TESTFN - -from distutils2.tests import unittest, run_unittest, support +from distutils2.tests import unittest, run_unittest, support, TESTFN from distutils2._backport import pkgutil try: diff --git a/distutils2/_backport/tests/test_sysconfig.py b/distutils2/_backport/tests/test_sysconfig.py --- a/distutils2/_backport/tests/test_sysconfig.py +++ b/distutils2/_backport/tests/test_sysconfig.py @@ -14,9 +14,9 @@ get_config_var, get_config_vars, get_path, get_paths, get_platform, get_scheme_names, _main, _SCHEMES) -from distutils2.tests import unittest +from distutils2.tests import unittest, TESTFN, unlink from distutils2.tests.support import EnvironGuard -from test.test_support import TESTFN, unlink + try: from test.test_support import skip_unless_symlink except ImportError: diff --git a/distutils2/tests/__init__.py b/distutils2/tests/__init__.py --- a/distutils2/tests/__init__.py +++ b/distutils2/tests/__init__.py @@ -30,8 +30,11 @@ except ImportError: sys.exit('Error: You have to install unittest2') - -from test.test_support import TESTFN # use TESTFN from stdlib/test_support. +# use TESTFN from stdlib, pull in unlink for other modules to use as well +if sys.version_info[0] == 3: + from test.support import TESTFN, unlink +else : + from test.test_support import TESTFN, unlink here = os.path.dirname(__file__) or os.curdir -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 19:45:15 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 19:45:15 +0100 Subject: [Python-checkins] distutils2: pep8 fixes for distutils2.resources Message-ID: http://hg.python.org/distutils2/rev/a3eac8447a36 changeset: 1104:a3eac8447a36 parent: 1097:a8c8ef7c3b92 user: Kelsey Hightower date: Sun Feb 27 16:08:11 2011 -0500 summary: pep8 fixes for distutils2.resources files: distutils2/resources.py diff --git a/distutils2/resources.py b/distutils2/resources.py --- a/distutils2/resources.py +++ b/distutils2/resources.py @@ -1,12 +1,15 @@ import os + from distutils2.util import iglob + def _rel_path(base, path): assert path.startswith(base) return path[len(base):].lstrip('/') + def resources_dests(resources_root, rules): - """find destination of ressources files""" + """find destination of resources files""" destinations = {} for (base, suffix, dest) in rules: prefix = os.path.join(resources_root, base) @@ -14,7 +17,7 @@ abs_glob = os.path.join(abs_base, suffix) for abs_path in iglob(abs_glob): resource_file = _rel_path(resources_root, abs_path) - if dest is None: #remove the entry if it was here + if dest is None: # remove the entry if it was here destinations.pop(resource_file, None) else: rel_path = _rel_path(abs_base, abs_path) -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 19:45:15 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 19:45:15 +0100 Subject: [Python-checkins] distutils2: pep8/pyflakes fixes for distutils2.util Message-ID: http://hg.python.org/distutils2/rev/34f512095698 changeset: 1105:34f512095698 user: Kelsey Hightower date: Mon Feb 28 09:09:32 2011 -0500 summary: pep8/pyflakes fixes for distutils2.util files: distutils2/util.py diff --git a/distutils2/util.py b/distutils2/util.py --- a/distutils2/util.py +++ b/distutils2/util.py @@ -15,7 +15,7 @@ try: from glob import iglob as std_iglob except ImportError: - from glob import glob as std_iglob # for python < 2.5 + from glob import glob as std_iglob # for python < 2.5 from ConfigParser import RawConfigParser from inspect import getsource @@ -953,6 +953,7 @@ _CHECK_RECURSIVE_GLOB = re.compile(r'[^/,{]\*\*|\*\*[^/,}]') _CHECK_MISMATCH_SET = re.compile(r'^[^{]*\}|\{[^}]*$') + def iglob(path_glob): """Richer glob than the std glob module support ** and {opt1,opt2,opt3}""" if _CHECK_RECURSIVE_GLOB.search(path_glob): @@ -971,7 +972,7 @@ assert len(rich_path_glob) == 3, rich_path_glob prefix, set, suffix = rich_path_glob for item in set.split(','): - for path in _iglob( ''.join((prefix, item, suffix))): + for path in _iglob(''.join((prefix, item, suffix))): yield path else: if '**' not in path_glob: @@ -988,7 +989,7 @@ for (path, dir, files) in os.walk(prefix): path = os.path.normpath(path) for file in _iglob(os.path.join(path, radical)): - yield file + yield file def cfg_to_args(path='setup.cfg'): -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 19:45:15 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 19:45:15 +0100 Subject: [Python-checkins] distutils2: Adding Kelsey Hightower to the list of contributors Message-ID: http://hg.python.org/distutils2/rev/9958a8d296e4 changeset: 1106:9958a8d296e4 user: Kelsey Hightower date: Mon Feb 28 20:34:37 2011 -0500 summary: Adding Kelsey Hightower to the list of contributors files: CONTRIBUTORS.txt diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -21,6 +21,7 @@ - Andrew Francis - Yannick Gingras - Alexandre Hamelin +- Kelsey Hightower - Christian Hudon - Jeremy Kloth - Amos Latteier -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 19:45:15 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 19:45:15 +0100 Subject: [Python-checkins] distutils2: pep8/pyflakes fixes for distutils2.depgraph Message-ID: http://hg.python.org/distutils2/rev/aa918ce6223c changeset: 1107:aa918ce6223c user: Kelsey Hightower date: Mon Feb 28 21:42:32 2011 -0500 summary: pep8/pyflakes fixes for distutils2.depgraph files: distutils2/depgraph.py diff --git a/distutils2/depgraph.py b/distutils2/depgraph.py --- a/distutils2/depgraph.py +++ b/distutils2/depgraph.py @@ -78,7 +78,7 @@ if label is not None: dist = '%s [%s]' % (dist, label) output.append(' ' * level + '%s' % dist) - suboutput = self.repr_node(other, level+1) + suboutput = self.repr_node(other, level + 1) subs = suboutput.split('\n') output.extend(subs[1:]) return '\n'.join(output) @@ -133,16 +133,16 @@ :rtype: an :class:`DependencyGraph` instance """ graph = DependencyGraph() - provided = {} # maps names to lists of (version, dist) tuples - dists = list(dists) # maybe use generator_tools in future + provided = {} # maps names to lists of (version, dist) tuples + dists = list(dists) # maybe use generator_tools in future # first, build the graph and find out the provides for dist in dists: graph.add_distribution(dist) - provides = (dist.metadata['Provides-Dist'] + dist.metadata['Provides'] + + provides = (dist.metadata['Provides-Dist'] + + dist.metadata['Provides'] + ['%s (%s)' % (dist.name, dist.metadata['Version'])]) - for p in provides: comps = p.strip().rsplit(" ", 1) name = comps[0] @@ -152,7 +152,7 @@ if len(version) < 3 or version[0] != '(' or version[-1] != ')': raise DistutilsError('Distribution %s has ill formed' \ 'provides field: %s' % (dist.name, p)) - version = version[1:-1] # trim off parenthesis + version = version[1:-1] # trim off parenthesis if not name in provided: provided[name] = [] provided[name].append((version, dist)) @@ -179,7 +179,7 @@ match = predicate.match(version) except IrrationalVersionError: # XXX small compat-mode - if version.split(' ' ) == 1: + if version.split(' ') == 1: match = True else: match = False @@ -204,8 +204,8 @@ raise ValueError('The given distribution is not a member of the list') graph = generate_graph(dists) - dep = [dist] # dependent distributions - fringe = graph.reverse_list[dist] # list of nodes we should inspect + dep = [dist] # dependent distributions + fringe = graph.reverse_list[dist] # list of nodes we should inspect while not len(fringe) == 0: node = fringe.pop() @@ -214,9 +214,10 @@ if not prev in dep: fringe.append(prev) - dep.pop(0) # remove dist from dep, was there to prevent infinite loops + dep.pop(0) # remove dist from dep, was there to prevent infinite loops return dep + def main(): from distutils2._backport.pkgutil import get_distributions tempout = StringIO() -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 19:45:15 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 19:45:15 +0100 Subject: [Python-checkins] distutils2: Synchronize bug reporting guidelines with the wiki Message-ID: http://hg.python.org/distutils2/rev/677266d859c4 changeset: 1108:677266d859c4 user: ?ric Araujo date: Wed Mar 09 22:48:05 2011 +0100 summary: Synchronize bug reporting guidelines with the wiki files: docs/source/contributing.rst diff --git a/docs/source/contributing.rst b/docs/source/contributing.rst --- a/docs/source/contributing.rst +++ b/docs/source/contributing.rst @@ -6,47 +6,22 @@ Reporting Issues ---------------- -When using, testing, developping distutils2, you may encounter issues. Please report to the following sections to know how these issues should be reported. +When using, testing or developping distutils2, you may encounter issues. Please report to the following sections to know how these issues should be reported. -Please keep in mind that this guide is intended to ease the triage and fixing processes by giving the maximum information to the developers. It should not be viewed as mandatory, only advised ;). +Please keep in mind that this guide is intended to ease the triage and fixing processes by giving the maximum information to the developers. It should not be viewed as mandatory, only advisory ;). -Issues regarding distutils2 commands -==================================== - Go to http://bugs.python.org/ (you'll need a Python Bugs account), then "Issues" > "Create ticket". -- **Title**: write in a short summary of the issue. - * You may prefix the issue title with [d2_component], where d2_component can be : installer, sdist, setup.cfg, ... This will ease up the triage process. - +- **Title**: write in a short summary of the issue. You may prefix the issue title with ?component:?, where component can be something like installer, sdist, setup.cfg, etc., or add it at the end of your title if the normal flow of the sentence allows it. This will ease up later searches. - **Components**: choose "Distutils2" - **Version**: choose "3rd party" -- **Comment**: use the following template for versions, reproduction conditions: - * If some of the fields presented don't apply to the issue, feel free to pick only the ones you need. +- **Body**: explain how to reproduce the bug: What you want to do, what code you write, what happens, what should happen, how to fix it (if you have an idea). + * You should always test with the tip of the main repository, not releases. + * Mention the versions of Python you tested with. d2 supports 2.4 to 2.7. + * If relevant, mention the version of your operating system (for example with issues related to C extensions). + * When referencing commits, be careful to use the universal changeset identifiers (12 characters, for instance c3cf81fc64db), not the local sequential numbers (for example 925) that are not shared among clones. + * Try to be as concise as possible, but not too much. + * If useful, paste tracebacks. + * If useful, attach setup.cfg or other files (binary files like archives are not very convenient, better to stick to text). -:: - - Operating System: - Version of Python: - Version of Distutils2: - - How to reproduce: - - What happens: - - What should happen: - -- Filling in the fields: - * **How to reproduce**: indicate some test case to reproduce the issue. - * **What happens**: describe what is the error, paste tracebacks if you have any. - * **What should happen**: indicate what you think should be the result of the test case (wanted behaviour). - * **Versions**: - - If you're using a release of distutils2, you may want to test the latest version of the project (under developpment code). - - If the issue is present in the latest version, please indicate the tip commit of the version tested. - - Be careful to indicate the remote reference (12 characters, for instance c3cf81fc64db), not the local reference (rXXX). - -- If it is relevant, please join any file that will help reproducing the issue or logs to understand the problem (setup.cfg, strace ouptups, ...). - -Issues regarding PyPI display of the distutils2 projects -======================================================== - -- Please send a bug report to the catalog-sig at python.org mailing list. -- You can include your setup.cfg, and a link to your project page. +Issues related to PyPI are reported via email to the **catalog-sig at python.org** mailing list, not within bugs.python.org. -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 19:45:16 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 19:45:16 +0100 Subject: [Python-checkins] distutils2: Further work on Py3 support; try blocks for imports mainly Message-ID: http://hg.python.org/distutils2/rev/48c6997fe43c changeset: 1110:48c6997fe43c user: Arc Riley date: Sun Mar 13 13:58:54 2011 -0400 summary: Further work on Py3 support; try blocks for imports mainly files: distutils2/fancy_getopt.py distutils2/tests/pypi_server.py setup.py diff --git a/distutils2/fancy_getopt.py b/distutils2/fancy_getopt.py --- a/distutils2/fancy_getopt.py +++ b/distutils2/fancy_getopt.py @@ -374,8 +374,12 @@ return parser.getopt(args, object) - -WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace)) +if 'maketrans' in str.__dict__ : + # Python 3.2+ + WS_TRANS = str.maketrans(string.whitespace, ' ' * len(string.whitespace)) +else : + # Depreciated syntax + WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace)) def wrap_text(text, width): diff --git a/distutils2/tests/pypi_server.py b/distutils2/tests/pypi_server.py --- a/distutils2/tests/pypi_server.py +++ b/distutils2/tests/pypi_server.py @@ -29,16 +29,23 @@ implementations (static HTTP and XMLRPC over HTTP). """ -import Queue -import SocketServer import os.path import select import socket import threading -from BaseHTTPServer import HTTPServer -from SimpleHTTPServer import SimpleHTTPRequestHandler -from SimpleXMLRPCServer import SimpleXMLRPCServer +# several packages had different names in Python 2.x +try: + import queue + import socketserver + from http.server import HTTPServer, SimpleHTTPRequestHandler + from xmlrpc.server import SimpleXMLRPCServer +except ImportError: + import Queue as queue + import SocketServer as socketserver + from BaseHTTPServer import HTTPServer + from SimpleHTTPServer import SimpleHTTPRequestHandler + from SimpleXMLRPCServer import SimpleXMLRPCServer from distutils2.tests import unittest @@ -109,7 +116,7 @@ self.server = HTTPServer(('127.0.0.1', 0), PyPIRequestHandler) self.server.RequestHandlerClass.pypi_server = self - self.request_queue = Queue.Queue() + self.request_queue = queue.Queue() self._requests = [] self.default_response_status = 200 self.default_response_headers = [('Content-type', 'text/plain')] @@ -157,7 +164,7 @@ while True: try: self._requests.append(self.request_queue.get_nowait()) - except Queue.Empty: + except queue.Empty: break return self._requests @@ -252,7 +259,7 @@ class PyPIXMLRPCServer(SimpleXMLRPCServer): def server_bind(self): """Override server_bind to store the server name.""" - SocketServer.TCPServer.server_bind(self) + socketserver.TCPServer.server_bind(self) host, port = self.socket.getsockname()[:2] self.server_name = socket.getfqdn(host) self.server_port = port diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -13,14 +13,15 @@ # Python 3.x hook to run 2to3 automatically try: from distutils.command.build_py import build_py_2to3 as build_py + from distutils.core import setup, Extension except ImportError: # 2.x, try to use setuptools if available try : + from setuptools.command.build_py import build_py from setuptools import setup, Extension - from setuptools.command.build_py import build_py except ImportError: + from distutils.command.build_py import build_py from distutils.core import setup, Extension - from distutils.command.build_py import build_py f = open('README.txt') -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 19:45:16 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 19:45:16 +0100 Subject: [Python-checkins] distutils2: added 3.1, 3.2, 3.3 in the tests runner Message-ID: http://hg.python.org/distutils2/rev/3a32a8e1d5e1 changeset: 1111:3a32a8e1d5e1 user: Tarek Ziade date: Sun Mar 13 14:44:59 2011 -0400 summary: added 3.1, 3.2, 3.3 in the tests runner files: tests.sh diff --git a/tests.sh b/tests.sh --- a/tests.sh +++ b/tests.sh @@ -39,7 +39,37 @@ fi echo -n "Running tests for Python 3.1... " -python3.1 -Wd -bb runtests.py -q 2> /dev/null +python3.1 setup.py build -q 2> /dev/null > /dev/null +cp runtests.py build/ +cd build +PYTHONPATH=lib.linux-x86_64-3.1/ python3.1 runtests.py -q 2> /dev/null + +if [ $? -ne 0 ];then + echo Failed + exit 1 +else + echo Success +fi + +echo -n "Running tests for Python 3.2... " +python3.2 setup.py build -q 2> /dev/null > /dev/null +cp runtests.py build/ +cd build +PYTHONPATH=lib.linux-x86_64-3.1/ python3.2 runtests.py -q 2> /dev/null + +if [ $? -ne 0 ];then + echo Failed + exit 1 +else + echo Success +fi + +echo -n "Running tests for Python 3.3... " +python3.2 setup.py build -q 2> /dev/null > /dev/null +cp runtests.py build/ +cd build +PYTHONPATH=lib.linux-x86_64-3.1/ python3.3 runtests.py -q 2> /dev/null + if [ $? -ne 0 ];then echo Failed exit 1 -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 19:45:15 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 19:45:15 +0100 Subject: [Python-checkins] distutils2 (merge default -> default): Branch merge to trunk Message-ID: http://hg.python.org/distutils2/rev/be240095c410 changeset: 1109:be240095c410 parent: 1103:f19a72623297 parent: 1108:677266d859c4 user: Arc Riley date: Sun Mar 13 00:12:23 2011 -0500 summary: Branch merge to trunk files: distutils2/_backport/tests/test_pkgutil.py distutils2/_backport/tests/test_sysconfig.py distutils2/compiler/unixccompiler.py distutils2/fancy_getopt.py distutils2/tests/__init__.py runtests.py setup.py diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -15,3 +15,4 @@ include bin nosetests.xml +Distutils2.egg-info diff --git a/CHANGES.txt b/CHANGES.txt --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,17 +6,20 @@ --------- - The setup runner supports more options: -- XXX fill changes done in commands + compilers -- Issue 10409: Fixed the Licence selector in mkcfg +- XXX fill changes done in commands + compilers [tarek] +- Issue #10409: Fixed the Licence selector in mkcfg [tarek] +- Issue #9558: Fix build_ext with VS 8.0 [?ric] +- Issue #6007: Add disclaimer about MinGW compatibility in docs [?ric] +- Renamed DistributionMetadata to Metadata [ccomb] 1.0a3 - 2010-10-08 ------------------ -- Provided a Tox configuration for cross-python testing [holger] +- Provided a Tox configuration for cross-Python testing [holger] - Fixed the installation when using easy_install and Pip by switching setup.py to distutils1 [holger/tarek] - Added missing c/h files in the MANIFEST so they are always present - no matter which python version was used to build it. [holger/tarek] + no matter which Python version was used to build it. [holger/tarek] - Added the new setup runner that uses only setup.cfg - Renamed mkpkg to mkcfg [tarek] - Renamed install_tools to install [alexis] diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -18,15 +18,22 @@ - Nicolas Cadou - Konrad Delong - Josip Djolonga +- Andrew Francis - Yannick Gingras +- Alexandre Hamelin +- Kelsey Hightower +- Christian Hudon - Jeremy Kloth - Amos Latteier +- Mathieu Leduc-Hamel - Martin von L?wis +- Simon Mathieu - Carl Meyer - Alexis M?taireau - Zubin Mithra - Derek McTavish Mounce - Michael Mulich +- Louis Munro - George Peristerakis - Mathieu Perreault - Sean Reifschneider diff --git a/DEVNOTES.txt b/DEVNOTES.txt --- a/DEVNOTES.txt +++ b/DEVNOTES.txt @@ -6,4 +6,5 @@ one of these Python versions. - Always run tests.sh before you push a change. This implies - that you have all Python versions installed from 2.4 to 2.7. + that you have all Python versions installed from 2.4 to 2.7. Be sure to have + docutils installed on all python versions no avoid skipping tests as well. diff --git a/README.txt b/README.txt --- a/README.txt +++ b/README.txt @@ -10,6 +10,9 @@ See the documentation at http://packages.python.org/Distutils2 for more info. +If you want to contribute, please have a look to +http://distutils2.notmyidea.org/contributing.html + **Beware that Distutils2 is in its early stage and should not be used in production. Its API is subject to changes** diff --git a/distutils2/__init__.py b/distutils2/__init__.py --- a/distutils2/__init__.py +++ b/distutils2/__init__.py @@ -13,8 +13,3 @@ __version__ = "1.0a3" logger = getLogger('distutils2') - -# when set to True, converts doctests by default too -run_2to3_on_doctests = True -# Standard package names for fixer packages -lib2to3_fixer_packages = ['lib2to3.fixes'] diff --git a/distutils2/_backport/__init__.py b/distutils2/_backport/__init__.py --- a/distutils2/_backport/__init__.py +++ b/distutils2/_backport/__init__.py @@ -1,5 +1,5 @@ """Things that will land in the Python 3.3 std lib but which we must drag along -with us for now to support 2.x.""" + us for now to support 2.x.""" def any(seq): for elem in seq: diff --git a/distutils2/_backport/pkgutil.py b/distutils2/_backport/pkgutil.py --- a/distutils2/_backport/pkgutil.py +++ b/distutils2/_backport/pkgutil.py @@ -1,24 +1,27 @@ """Utilities to support packages.""" -# NOTE: This module must remain compatible with Python 2.3, as it is shared -# by setuptools for distribution with Python 2.3 and up. +import imp +import sys +from csv import reader as csv_reader import os -import sys -import imp -import os.path -from csv import reader as csv_reader +import re +from stat import ST_SIZE from types import ModuleType +import warnings + +try: + from hashlib import md5 +except ImportError: + from md5 import md5 + from distutils2.errors import DistutilsError -from distutils2.metadata import DistributionMetadata +from distutils2.metadata import Metadata from distutils2.version import suggest_normalized_version, VersionPredicate -import zipimport try: import cStringIO as StringIO except ImportError: import StringIO -import re -import warnings __all__ = [ @@ -28,10 +31,14 @@ 'Distribution', 'EggInfoDistribution', 'distinfo_dirname', 'get_distributions', 'get_distribution', 'get_file_users', 'provides_distribution', 'obsoletes_distribution', - 'enable_cache', 'disable_cache', 'clear_cache' + 'enable_cache', 'disable_cache', 'clear_cache', ] +########################## +# PEP 302 Implementation # +########################## + def read_code(stream): # This helper is needed in order for the :pep:`302` emulation to # correctly handle compiled files @@ -41,7 +48,7 @@ if magic != imp.get_magic(): return None - stream.read(4) # Skip timestamp + stream.read(4) # Skip timestamp return marshal.load(stream) @@ -49,7 +56,7 @@ """Make a trivial single-dispatch generic function""" registry = {} - def wrapper(*args, **kw): + def wrapper(*args, ** kw): ob = args[0] try: cls = ob.__class__ @@ -64,12 +71,12 @@ pass mro = cls.__mro__[1:] except TypeError: - mro = object, # must be an ExtensionClass or some such :( + mro = object, # must be an ExtensionClass or some such :( for t in mro: if t in registry: - return registry[t](*args, **kw) + return registry[t](*args, ** kw) else: - return func(*args, **kw) + return func(*args, ** kw) try: wrapper.__name__ = func.__name__ except (TypeError, AttributeError): @@ -173,7 +180,6 @@ #@simplegeneric def iter_importer_modules(importer, prefix=''): - "" if not hasattr(importer, 'iter_modules'): return [] return importer.iter_modules(prefix) @@ -331,9 +337,9 @@ def get_filename(self, fullname=None): fullname = self._fix_name(fullname) mod_type = self.etc[2] - if self.etc[2] == imp.PKG_DIRECTORY: + if mod_type == imp.PKG_DIRECTORY: return self._get_delegate().get_filename() - elif self.etc[2] in (imp.PY_SOURCE, imp.PY_COMPILED, imp.C_EXTENSION): + elif mod_type in (imp.PY_SOURCE, imp.PY_COMPILED, imp.C_EXTENSION): return self.filename return None @@ -343,8 +349,7 @@ from zipimport import zipimporter def iter_zipimport_modules(importer, prefix=''): - dirlist = zipimport._zip_directory_cache[importer.archive].keys() - dirlist.sort() + dirlist = sorted(zipimport._zip_directory_cache[importer.archive]) _prefix = importer.prefix plen = len(_prefix) yielded = {} @@ -433,7 +438,8 @@ import mechanism will find the latter. Items of the following types can be affected by this discrepancy: - ``imp.C_EXTENSION, imp.PY_SOURCE, imp.PY_COMPILED, imp.PKG_DIRECTORY`` + :data:`imp.C_EXTENSION`, :data:`imp.PY_SOURCE`, :data:`imp.PY_COMPILED`, + :data:`imp.PKG_DIRECTORY` """ if fullname.startswith('.'): raise ImportError("Relative module names not supported") @@ -535,13 +541,13 @@ # frozen package. Return the path unchanged in that case. return path - pname = os.path.join(*name.split('.')) # Reconstitute as relative path + pname = os.path.join(*name.split('.')) # Reconstitute as relative path # Just in case os.extsep != '.' sname = os.extsep.join(name.split('.')) sname_pkg = sname + os.extsep + "pkg" init_py = "__init__" + os.extsep + "py" - path = path[:] # Start with a copy of the existing path + path = path[:] # Start with a copy of the existing path for dir in sys.path: if not isinstance(dir, basestring) or not os.path.isdir(dir): @@ -566,7 +572,7 @@ line = line.rstrip('\n') if not line or line.startswith('#'): continue - path.append(line) # Don't check for existence! + path.append(line) # Don't check for existence! f.close() return path @@ -610,19 +616,20 @@ resource_name = os.path.join(*parts) return loader.get_data(resource_name) + ########################## # PEP 376 Implementation # ########################## -DIST_FILES = ('INSTALLER', 'METADATA', 'RECORD', 'REQUESTED',) +DIST_FILES = ('INSTALLER', 'METADATA', 'RECORD', 'REQUESTED', 'RESOURCES') # Cache -_cache_name = {} # maps names to Distribution instances -_cache_name_egg = {} # maps names to EggInfoDistribution instances -_cache_path = {} # maps paths to Distribution instances -_cache_path_egg = {} # maps paths to EggInfoDistribution instances -_cache_generated = False # indicates if .dist-info distributions are cached -_cache_generated_egg = False # indicates if .dist-info and .egg are cached +_cache_name = {} # maps names to Distribution instances +_cache_name_egg = {} # maps names to EggInfoDistribution instances +_cache_path = {} # maps paths to Distribution instances +_cache_path_egg = {} # maps paths to EggInfoDistribution instances +_cache_generated = False # indicates if .dist-info distributions are cached +_cache_generated_egg = False # indicates if .dist-info and .egg are cached _cache_enabled = True @@ -637,6 +644,7 @@ _cache_enabled = True + def disable_cache(): """ Disables the internal cache. @@ -648,10 +656,11 @@ _cache_enabled = False + def clear_cache(): """ Clears the internal cache. """ - global _cache_name, _cache_name_egg, cache_path, _cache_path_egg, \ - _cache_generated, _cache_generated_egg + global _cache_name, _cache_name_egg, _cache_path, _cache_path_egg, \ + _cache_generated, _cache_generated_egg _cache_name = {} _cache_name_egg = {} @@ -661,14 +670,14 @@ _cache_generated_egg = False -def _yield_distributions(include_dist, include_egg): +def _yield_distributions(include_dist, include_egg, paths=sys.path): """ Yield .dist-info and .egg(-info) distributions, based on the arguments :parameter include_dist: yield .dist-info distributions :parameter include_egg: yield .egg(-info) distributions """ - for path in sys.path: + for path in paths: realpath = os.path.realpath(path) if not os.path.isdir(realpath): continue @@ -680,8 +689,7 @@ dir.endswith('.egg')): yield EggInfoDistribution(dist_path) - -def _generate_cache(use_egg_info=False): +def _generate_cache(use_egg_info=False, paths=sys.path): global _cache_generated, _cache_generated_egg if _cache_generated_egg or (_cache_generated and not use_egg_info): @@ -690,7 +698,7 @@ gen_dist = not _cache_generated gen_egg = use_egg_info - for dist in _yield_distributions(gen_dist, gen_egg): + for dist in _yield_distributions(gen_dist, gen_egg, paths): if isinstance(dist, Distribution): _cache_path[dist.path] = dist if not dist.name in _cache_name: @@ -718,7 +726,7 @@ name = '' """The name of the distribution.""" metadata = None - """A :class:`distutils2.metadata.DistributionMetadata` instance loaded with + """A :class:`distutils2.metadata.Metadata` instance loaded with the distribution's ``METADATA`` file.""" requested = False """A boolean that indicates whether the ``REQUESTED`` metadata file is @@ -730,7 +738,7 @@ self.metadata = _cache_path[path].metadata else: metadata_path = os.path.join(path, 'METADATA') - self.metadata = DistributionMetadata(path=metadata_path) + self.metadata = Metadata(path=metadata_path) self.path = path self.name = self.metadata['name'] @@ -738,9 +746,12 @@ if _cache_enabled and not path in _cache_path: _cache_path[path] = self + def __repr__(self): + return '%s-%s at %s' % (self.name, self.metadata.version, self.path) + def _get_records(self, local=False): - RECORD = os.path.join(self.path, 'RECORD') - record_reader = csv_reader(open(RECORD, 'rb'), delimiter=',') + RECORD = self.get_distinfo_file('RECORD') + record_reader = csv_reader(RECORD, delimiter=',') for row in record_reader: path, md5, size = row[:] + [None for i in xrange(len(row), 3)] if local: @@ -748,6 +759,15 @@ path = os.path.join(sys.prefix, path) yield path, md5, size + def get_resource_path(self, relative_path): + resources_file = self.get_distinfo_file('RESOURCES') + resources_reader = csv_reader(resources_file, delimiter=',') + for relative, destination in resources_reader: + if relative == relative_path: + return destination + raise KeyError('No resource file with relative path %s were installed' % + relative_path) + def get_installed_files(self, local=False): """ Iterates over the ``RECORD`` entries and returns a tuple @@ -805,13 +825,13 @@ distinfo_dirname, path = path.split(os.sep)[-2:] if distinfo_dirname != self.path.split(os.sep)[-1]: raise DistutilsError("Requested dist-info file does not " - "belong to the %s distribution. '%s' was requested." \ - % (self.name, os.sep.join([distinfo_dirname, path]))) + "belong to the %s distribution. '%s' was requested." \ + % (self.name, os.sep.join([distinfo_dirname, path]))) # The file must be relative if path not in DIST_FILES: raise DistutilsError("Requested an invalid dist-info file: " - "%s" % path) + "%s" % path) # Convert the relative path back to absolute path = os.path.join(self.path, path) @@ -848,17 +868,17 @@ name = '' """The name of the distribution.""" metadata = None - """A :class:`distutils2.metadata.DistributionMetadata` instance loaded with + """A :class:`distutils2.metadata.Metadata` instance loaded with the distribution's ``METADATA`` file.""" - _REQUIREMENT = re.compile( \ - r'(?P[-A-Za-z0-9_.]+)\s*' \ - r'(?P(?:<|<=|!=|==|>=|>)[-A-Za-z0-9_.]+)?\s*' \ - r'(?P(?:\s*,\s*(?:<|<=|!=|==|>=|>)[-A-Za-z0-9_.]+)*)\s*' \ - r'(?P\[.*\])?') + _REQUIREMENT = re.compile(\ + r'(?P[-A-Za-z0-9_.]+)\s*' \ + r'(?P(?:<|<=|!=|==|>=|>)[-A-Za-z0-9_.]+)?\s*' \ + r'(?P(?:\s*,\s*(?:<|<=|!=|==|>=|>)[-A-Za-z0-9_.]+)*)\s*' \ + r'(?P\[.*\])?') - def __init__(self, path): + def __init__(self, path, display_warnings=False): self.path = path - + self.display_warnings = display_warnings if _cache_enabled and path in _cache_path_egg: self.metadata = _cache_path_egg[path].metadata self.name = self.metadata['Name'] @@ -871,7 +891,8 @@ if isinstance(strs, basestring): for s in strs.splitlines(): s = s.strip() - if s and not s.startswith('#'): # skip blank lines/comments + # skip blank lines/comments + if s and not s.startswith('#'): yield s else: for ss in strs: @@ -882,16 +903,17 @@ if path.endswith('.egg'): if os.path.isdir(path): meta_path = os.path.join(path, 'EGG-INFO', 'PKG-INFO') - self.metadata = DistributionMetadata(path=meta_path) + self.metadata = Metadata(path=meta_path) try: req_path = os.path.join(path, 'EGG-INFO', 'requires.txt') requires = open(req_path, 'r').read() except IOError: requires = None else: + # FIXME handle the case where zipfile is not available zipf = zipimport.zipimporter(path) fileobj = StringIO.StringIO(zipf.get_data('EGG-INFO/PKG-INFO')) - self.metadata = DistributionMetadata(fileobj=fileobj) + self.metadata = Metadata(fileobj=fileobj) try: requires = zipf.get_data('EGG-INFO/requires.txt') except IOError: @@ -905,35 +927,41 @@ requires = req_f.read() except IOError: requires = None - self.metadata = DistributionMetadata(path=path) + self.metadata = Metadata(path=path) self.name = self.metadata['name'] else: raise ValueError('The path must end with .egg-info or .egg') - provides = "%s (%s)" % (self.metadata['name'], - self.metadata['version']) - if self.metadata['Metadata-Version'] == '1.2': - self.metadata['Provides-Dist'] += (provides,) - else: - self.metadata['Provides'] += (provides,) + + if requires is not None: + if self.metadata['Metadata-Version'] == '1.1': + # we can't have 1.1 metadata *and* Setuptools requires + for field in ('Obsoletes', 'Requires', 'Provides'): + del self.metadata[field] + reqs = [] + if requires is not None: for line in yield_lines(requires): - if line[0] == '[': + if line[0] == '[' and self.display_warnings: warnings.warn('distutils2 does not support extensions ' 'in requires.txt') break else: match = self._REQUIREMENT.match(line.strip()) if not match: - raise ValueError('Distribution %s has ill formed ' - 'requires.txt file (%s)' % - (self.name, line)) + # this happens when we encounter extras + # since they are written at the end of the file + # we just exit + break + #raise ValueError('Distribution %s has ill formed ' + # 'requires.txt file (%s)' % + # (self.name, line)) else: if match.group('extras'): s = (('Distribution %s uses extra requirements ' - 'which are not supported in distutils') \ - % (self.name)) + 'which are not supported in distutils') \ + % (self.name)) warnings.warn(s) name = match.group('name') version = None @@ -941,20 +969,50 @@ version = match.group('first') if match.group('rest'): version += match.group('rest') - version = version.replace(' ', '') # trim spaces + version = version.replace(' ', '') # trim spaces if version is None: reqs.append(name) else: reqs.append('%s (%s)' % (name, version)) - if self.metadata['Metadata-Version'] == '1.2': + + if len(reqs) > 0: self.metadata['Requires-Dist'] += reqs - else: - self.metadata['Requires'] += reqs + if _cache_enabled: _cache_path_egg[self.path] = self + def __repr__(self): + return '%s-%s at %s' % (self.name, self.metadata.version, self.path) + def get_installed_files(self, local=False): + + def _md5(path): + f = open(path) + try: + content = f.read() + finally: + f.close() + return md5(content).hexdigest() + + def _size(path): + return os.stat(path)[ST_SIZE] + + path = self.path + if local: + path = path.replace('/', os.sep) + + # XXX What about scripts and data files ? + if os.path.isfile(path): + return [(path, _md5(path), _size(path))] + else: + files = [] + for root, dir, files_ in os.walk(path): + for item in files_: + item = os.path.join(root, item) + files.append((item, _md5(item), _size(item))) + return files + return [] def uses(self, path): @@ -962,18 +1020,12 @@ def __eq__(self, other): return isinstance(other, EggInfoDistribution) and \ - self.path == other.path + self.path == other.path # See http://docs.python.org/reference/datamodel#object.__hash__ __hash__ = object.__hash__ -def _normalize_dist_name(name): - """Returns a normalized name from the given *name*. - :rtype: string""" - return name.replace('-', '_') - - def distinfo_dirname(name, version): """ The *name* and *version* parameters are converted into their @@ -993,7 +1045,7 @@ :returns: directory name :rtype: string""" file_extension = '.dist-info' - name = _normalize_dist_name(name) + name = name.replace('-', '_') normalized_version = suggest_normalized_version(version) # Because this is a lookup procedure, something will be returned even if # it is a version that cannot be normalized @@ -1003,7 +1055,7 @@ return '-'.join([name, normalized_version]) + file_extension -def get_distributions(use_egg_info=False): +def get_distributions(use_egg_info=False, paths=sys.path): """ Provides an iterator that looks for ``.dist-info`` directories in ``sys.path`` and returns :class:`Distribution` instances for each one of @@ -1014,10 +1066,10 @@ instances """ if not _cache_enabled: - for dist in _yield_distributions(True, use_egg_info): + for dist in _yield_distributions(True, use_egg_info, paths): yield dist else: - _generate_cache(use_egg_info) + _generate_cache(use_egg_info, paths) for dist in _cache_path.itervalues(): yield dist @@ -1027,7 +1079,7 @@ yield dist -def get_distribution(name, use_egg_info=False): +def get_distribution(name, use_egg_info=False, paths=None): """ Scans all elements in ``sys.path`` and looks for all directories ending with ``.dist-info``. Returns a :class:`Distribution` @@ -1044,12 +1096,15 @@ :rtype: :class:`Distribution` or :class:`EggInfoDistribution` or None """ + if paths == None: + paths = sys.path + if not _cache_enabled: - for dist in _yield_distributions(True, use_egg_info): + for dist in _yield_distributions(True, use_egg_info, paths): if dist.name == name: return dist else: - _generate_cache(use_egg_info) + _generate_cache(use_egg_info, paths) if name in _cache_name: return _cache_name[name][0] @@ -1086,7 +1141,7 @@ predicate = VersionPredicate(obs) except ValueError: raise DistutilsError(('Distribution %s has ill formed' + - ' obsoletes field') % (dist.name,)) + ' obsoletes field') % (dist.name,)) if name == o_components[0] and predicate.match(version): yield dist break @@ -1132,9 +1187,9 @@ p_name, p_ver = p_components if len(p_ver) < 2 or p_ver[0] != '(' or p_ver[-1] != ')': raise DistutilsError(('Distribution %s has invalid ' + - 'provides field: %s') \ - % (dist.name, p)) - p_ver = p_ver[1:-1] # trim off the parenthesis + 'provides field: %s') \ + % (dist.name, p)) + p_ver = p_ver[1:-1] # trim off the parenthesis if p_name == name and predicate.match(p_ver): yield dist break @@ -1153,3 +1208,15 @@ for dist in get_distributions(): if dist.uses(path): yield dist + +def resource_path(distribution_name, relative_path): + dist = get_distribution(distribution_name) + if dist != None: + return dist.get_resource_path(relative_path) + raise LookupError('No distribution named %s is installed.' % + distribution_name) + +def resource_open(distribution_name, relative_path, * args, ** kwargs): + file = open(resource_path(distribution_name, relative_path), * args, + ** kwargs) + return file \ No newline at end of file diff --git a/distutils2/_backport/shutil.py b/distutils2/_backport/shutil.py --- a/distutils2/_backport/shutil.py +++ b/distutils2/_backport/shutil.py @@ -1,4 +1,4 @@ -"""Utility functions for copying files and directory trees. +"""Utility functions for copying and archiving files and directory trees. XXX The functions here don't copy the resource fork or other metadata on Mac. @@ -9,7 +9,13 @@ import stat from os.path import abspath import fnmatch -from warnings import warn +import errno + +try: + import bz2 + _BZ2_SUPPORTED = True +except ImportError: + _BZ2_SUPPORTED = False try: from pwd import getpwnam @@ -21,9 +27,12 @@ except ImportError: getgrnam = None -__all__ = ["copyfileobj","copyfile","copymode","copystat","copy","copy2", - "copytree","move","rmtree","Error", "SpecialFileError", - "ExecError","make_archive"] +__all__ = ["copyfileobj", "copyfile", "copymode", "copystat", "copy", "copy2", + "copytree", "move", "rmtree", "Error", "SpecialFileError", + "ExecError", "make_archive", "get_archive_formats", + "register_archive_format", "unregister_archive_format", + "get_unpack_formats", "register_unpack_format", + "unregister_unpack_format", "unpack_archive"] class Error(EnvironmentError): pass @@ -35,6 +44,14 @@ class ExecError(EnvironmentError): """Raised when a command could not be executed""" +class ReadError(EnvironmentError): + """Raised when an archive cannot be read""" + +class RegistryError(Exception): + """Raised when a registery operation with the archiving + and unpacking registeries fails""" + + try: WindowsError except NameError: @@ -50,7 +67,7 @@ def _samefile(src, dst): # Macintosh, Unix. - if hasattr(os.path,'samefile'): + if hasattr(os.path, 'samefile'): try: return os.path.samefile(src, dst) except OSError: @@ -63,10 +80,8 @@ def copyfile(src, dst): """Copy data from src to dst""" if _samefile(src, dst): - raise Error, "`%s` and `%s` are the same file" % (src, dst) + raise Error("`%s` and `%s` are the same file" % (src, dst)) - fsrc = None - fdst = None for fn in [src, dst]: try: st = os.stat(fn) @@ -77,15 +92,16 @@ # XXX What about other special files? (sockets, devices...) if stat.S_ISFIFO(st.st_mode): raise SpecialFileError("`%s` is a named pipe" % fn) + + fsrc = open(src, 'rb') try: - fsrc = open(src, 'rb') fdst = open(dst, 'wb') - copyfileobj(fsrc, fdst) + try: + copyfileobj(fsrc, fdst) + finally: + fdst.close() finally: - if fdst: - fdst.close() - if fsrc: - fsrc.close() + fsrc.close() def copymode(src, dst): """Copy mode bits from src to dst""" @@ -103,8 +119,12 @@ if hasattr(os, 'chmod'): os.chmod(dst, mode) if hasattr(os, 'chflags') and hasattr(st, 'st_flags'): - os.chflags(dst, st.st_flags) - + try: + os.chflags(dst, st.st_flags) + except OSError, why: + if (not hasattr(errno, 'EOPNOTSUPP') or + why.errno != errno.EOPNOTSUPP): + raise def copy(src, dst): """Copy data and mode bits ("cp src dst"). @@ -140,8 +160,9 @@ return set(ignored_names) return _ignore_patterns -def copytree(src, dst, symlinks=False, ignore=None): - """Recursively copy a directory tree using copy2(). +def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2, + ignore_dangling_symlinks=False): + """Recursively copy a directory tree. The destination directory must not already exist. If exception(s) occur, an Error is raised with a list of reasons. @@ -149,7 +170,13 @@ If the optional symlinks flag is true, symbolic links in the source tree result in symbolic links in the destination tree; if it is false, the contents of the files pointed to by symbolic - links are copied. + links are copied. If the file pointed by the symlink doesn't + exist, an exception will be added in the list of errors raised in + an Error exception at the end of the copy process. + + You can set the optional ignore_dangling_symlinks flag to true if you + want to silence this exception. Notice that this has no effect on + platforms that don't support os.symlink. The optional ignore argument is a callable. If given, it is called with the `src` parameter, which is the directory @@ -163,7 +190,10 @@ list of names relative to the `src` directory that should not be copied. - XXX Consider this example code rather than the ultimate tool. + The optional copy_function argument is a callable that will be used + to copy each file. It will be called with the source path and the + destination path as arguments. By default, copy2() is used, but any + function that supports the same signature (like copy()) can be used. """ names = os.listdir(src) @@ -182,14 +212,21 @@ srcname = os.path.join(src, name) dstname = os.path.join(dst, name) try: - if symlinks and os.path.islink(srcname): + if os.path.islink(srcname): linkto = os.readlink(srcname) - os.symlink(linkto, dstname) + if symlinks: + os.symlink(linkto, dstname) + else: + # ignore dangling symlink if the flag is on + if not os.path.exists(linkto) and ignore_dangling_symlinks: + continue + # otherwise let the copy occurs. copy2 will raise an error + copy_function(srcname, dstname) elif os.path.isdir(srcname): - copytree(srcname, dstname, symlinks, ignore) + copytree(srcname, dstname, symlinks, ignore, copy_function) else: # Will raise a SpecialFileError for unsupported file types - copy2(srcname, dstname) + copy_function(srcname, dstname) # catch the Error from the recursive copytree so that we can # continue with other files except Error, err: @@ -205,7 +242,7 @@ else: errors.extend((src, dst, str(why))) if errors: - raise Error, errors + raise Error(errors) def rmtree(path, ignore_errors=False, onerror=None): """Recursively delete a directory tree. @@ -235,7 +272,7 @@ names = [] try: names = os.listdir(path) - except os.error, err: + except os.error: onerror(os.listdir, path, sys.exc_info()) for name in names: fullname = os.path.join(path, name) @@ -248,7 +285,7 @@ else: try: os.remove(fullname) - except os.error, err: + except os.error: onerror(os.remove, fullname, sys.exc_info()) try: os.rmdir(path) @@ -282,13 +319,13 @@ if os.path.isdir(dst): real_dst = os.path.join(dst, _basename(src)) if os.path.exists(real_dst): - raise Error, "Destination path '%s' already exists" % real_dst + raise Error("Destination path '%s' already exists" % real_dst) try: os.rename(src, real_dst) except OSError: if os.path.isdir(src): if _destinsrc(src, dst): - raise Error, "Cannot move a directory '%s' into itself '%s'." % (src, dst) + raise Error("Cannot move a directory '%s' into itself '%s'." % (src, dst)) copytree(src, real_dst, symlinks=True) rmtree(src) else: @@ -333,44 +370,45 @@ """Create a (possibly compressed) tar file from all the files under 'base_dir'. - 'compress' must be "gzip" (the default), "compress", "bzip2", or None. - (compress will be deprecated in Python 3.2) + 'compress' must be "gzip" (the default), "bzip2", or None. 'owner' and 'group' can be used to define an owner and a group for the archive that is being built. If not provided, the current owner and group will be used. - The output tar file will be named 'base_dir' + ".tar", possibly plus - the appropriate compression extension (".gz", ".bz2" or ".Z"). + The output tar file will be named 'base_name' + ".tar", possibly plus + the appropriate compression extension (".gz", or ".bz2"). Returns the output filename. """ - tar_compression = {'gzip': 'gz', 'bzip2': 'bz2', None: '', 'compress': ''} - compress_ext = {'gzip': '.gz', 'bzip2': '.bz2', 'compress': '.Z'} + tar_compression = {'gzip': 'gz', None: ''} + compress_ext = {'gzip': '.gz'} + + if _BZ2_SUPPORTED: + tar_compression['bzip2'] = 'bz2' + compress_ext['bzip2'] = '.bz2' # flags for compression program, each element of list will be an argument - if compress is not None and compress not in compress_ext.keys(): - raise ValueError, \ - ("bad value for 'compress': must be None, 'gzip', 'bzip2' " - "or 'compress'") + if compress is not None and compress not in compress_ext: + raise ValueError("bad value for 'compress', or compression format not " + "supported: %s" % compress) - archive_name = base_name + '.tar' - if compress != 'compress': - archive_name += compress_ext.get(compress, '') + archive_name = base_name + '.tar' + compress_ext.get(compress, '') + archive_dir = os.path.dirname(archive_name) - archive_dir = os.path.dirname(archive_name) if not os.path.exists(archive_dir): if logger is not None: - logger.info("creating %s" % archive_dir) + logger.info("creating %s", archive_dir) if not dry_run: os.makedirs(archive_dir) - # creating the tarball + # XXX late import because of circular dependency between shutil and + # tarfile :( from distutils2._backport import tarfile if logger is not None: - logger.info('Creating tar archive') + logger.info('creating tar archive') uid = _get_uid(owner) gid = _get_gid(group) @@ -391,23 +429,9 @@ finally: tar.close() - # compression using `compress` - # XXX this block will be removed in Python 3.2 - if compress == 'compress': - warn("'compress' will be deprecated.", PendingDeprecationWarning) - # the option varies depending on the platform - compressed_name = archive_name + compress_ext[compress] - if sys.platform == 'win32': - cmd = [compress, archive_name, compressed_name] - else: - cmd = [compress, '-f', archive_name] - from distutils2.spawn import spawn - spawn(cmd, dry_run=dry_run) - return compressed_name - return archive_name -def _call_external_zip(directory, verbose=False): +def _call_external_zip(base_dir, zip_filename, verbose=False, dry_run=False): # XXX see if we want to keep an external call here if verbose: zipoptions = "-r" @@ -420,15 +444,14 @@ except DistutilsExecError: # XXX really should distinguish between "couldn't find # external 'zip' command" and "zip failed". - raise ExecError, \ - ("unable to create zip file '%s': " + raise ExecError("unable to create zip file '%s': " "could neither import the 'zipfile' module nor " "find a standalone zip utility") % zip_filename def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, logger=None): """Create a zip file from all the files under 'base_dir'. - The output zip file will be named 'base_dir' + ".zip". Uses either the + The output zip file will be named 'base_name' + ".zip". Uses either the "zipfile" Python module (if available) or the InfoZIP "zip" utility (if installed and found on the default search path). If neither tool is available, raises ExecError. Returns the name of the output zip @@ -451,7 +474,7 @@ zipfile = None if zipfile is None: - _call_external_zip(base_dir, verbose) + _call_external_zip(base_dir, zip_filename, verbose, dry_run) else: if logger is not None: logger.info("creating '%s' and adding '%s' to it", @@ -475,19 +498,21 @@ _ARCHIVE_FORMATS = { 'gztar': (_make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"), 'bztar': (_make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"), - 'ztar': (_make_tarball, [('compress', 'compress')], - "compressed tar file"), 'tar': (_make_tarball, [('compress', None)], "uncompressed tar file"), - 'zip': (_make_zipfile, [],"ZIP file") + 'zip': (_make_zipfile, [], "ZIP file"), } +if _BZ2_SUPPORTED: + _ARCHIVE_FORMATS['bztar'] = (_make_tarball, [('compress', 'bzip2')], + "bzip2'ed tar-file") + def get_archive_formats(): """Returns a list of supported formats for archiving and unarchiving. Each element of the returned sequence is a tuple (name, description) """ formats = [(name, registry[2]) for name, registry in - _ARCHIVE_FORMATS.items()] + _ARCHIVE_FORMATS.iteritems()] formats.sort() return formats @@ -507,7 +532,7 @@ if not isinstance(extra_args, (tuple, list)): raise TypeError('extra_args needs to be a sequence') for element in extra_args: - if not isinstance(element, (tuple, list)) or len(element) !=2 : + if not isinstance(element, (tuple, list)) or len(element) !=2: raise TypeError('extra_args elements are : (arg_name, value)') _ARCHIVE_FORMATS[name] = (function, extra_args, description) @@ -520,7 +545,7 @@ """Create an archive file (eg. zip or tar). 'base_name' is the name of the file to create, minus any format-specific - extension; 'format' is the archive format: one of "zip", "tar", "ztar", + extension; 'format' is the archive format: one of "zip", "tar", "bztar" or "gztar". 'root_dir' is a directory that will be the root directory of the @@ -549,7 +574,7 @@ try: format_info = _ARCHIVE_FORMATS[format] except KeyError: - raise ValueError, "unknown archive format '%s'" % format + raise ValueError("unknown archive format '%s'" % format) func = format_info[0] for arg, val in format_info[1]: @@ -568,3 +593,176 @@ os.chdir(save_cwd) return filename + + +def get_unpack_formats(): + """Returns a list of supported formats for unpacking. + + Each element of the returned sequence is a tuple + (name, extensions, description) + """ + formats = [(name, info[0], info[3]) for name, info in + _UNPACK_FORMATS.iteritems()] + formats.sort() + return formats + +def _check_unpack_options(extensions, function, extra_args): + """Checks what gets registered as an unpacker.""" + # first make sure no other unpacker is registered for this extension + existing_extensions = {} + for name, info in _UNPACK_FORMATS.iteritems(): + for ext in info[0]: + existing_extensions[ext] = name + + for extension in extensions: + if extension in existing_extensions: + msg = '%s is already registered for "%s"' + raise RegistryError(msg % (extension, + existing_extensions[extension])) + + if not callable(function): + raise TypeError('The registered function must be a callable') + + +def register_unpack_format(name, extensions, function, extra_args=None, + description=''): + """Registers an unpack format. + + `name` is the name of the format. `extensions` is a list of extensions + corresponding to the format. + + `function` is the callable that will be + used to unpack archives. The callable will receive archives to unpack. + If it's unable to handle an archive, it needs to raise a ReadError + exception. + + If provided, `extra_args` is a sequence of + (name, value) tuples that will be passed as arguments to the callable. + description can be provided to describe the format, and will be returned + by the get_unpack_formats() function. + """ + if extra_args is None: + extra_args = [] + _check_unpack_options(extensions, function, extra_args) + _UNPACK_FORMATS[name] = extensions, function, extra_args, description + +def unregister_unpack_format(name): + """Removes the pack format from the registery.""" + del _UNPACK_FORMATS[name] + +def _ensure_directory(path): + """Ensure that the parent directory of `path` exists""" + dirname = os.path.dirname(path) + if not os.path.isdir(dirname): + os.makedirs(dirname) + +def _unpack_zipfile(filename, extract_dir): + """Unpack zip `filename` to `extract_dir` + """ + try: + import zipfile + except ImportError: + raise ReadError('zlib not supported, cannot unpack this archive.') + + if not zipfile.is_zipfile(filename): + raise ReadError("%s is not a zip file" % filename) + + zip = zipfile.ZipFile(filename) + try: + for info in zip.infolist(): + name = info.filename + + # don't extract absolute paths or ones with .. in them + if name.startswith('/') or '..' in name: + continue + + target = os.path.join(extract_dir, *name.split('/')) + if not target: + continue + + _ensure_directory(target) + if not name.endswith('/'): + # file + data = zip.read(info.filename) + f = open(target, 'wb') + try: + f.write(data) + finally: + f.close() + del data + finally: + zip.close() + +def _unpack_tarfile(filename, extract_dir): + """Unpack tar/tar.gz/tar.bz2 `filename` to `extract_dir` + """ + from distutils2._backport import tarfile + try: + tarobj = tarfile.open(filename) + except tarfile.TarError: + raise ReadError( + "%s is not a compressed or uncompressed tar file" % filename) + try: + tarobj.extractall(extract_dir) + finally: + tarobj.close() + +_UNPACK_FORMATS = { + 'gztar': (['.tar.gz', '.tgz'], _unpack_tarfile, [], "gzip'ed tar-file"), + 'tar': (['.tar'], _unpack_tarfile, [], "uncompressed tar file"), + 'zip': (['.zip'], _unpack_zipfile, [], "ZIP file") + } + +if _BZ2_SUPPORTED: + _UNPACK_FORMATS['bztar'] = (['.bz2'], _unpack_tarfile, [], + "bzip2'ed tar-file") + +def _find_unpack_format(filename): + for name, info in _UNPACK_FORMATS.iteritems(): + for extension in info[0]: + if filename.endswith(extension): + return name + return None + +def unpack_archive(filename, extract_dir=None, format=None): + """Unpack an archive. + + `filename` is the name of the archive. + + `extract_dir` is the name of the target directory, where the archive + is unpacked. If not provided, the current working directory is used. + + `format` is the archive format: one of "zip", "tar", or "gztar". Or any + other registered format. If not provided, unpack_archive will use the + filename extension and see if an unpacker was registered for that + extension. + + In case none is found, a ValueError is raised. + """ + if extract_dir is None: + extract_dir = os.getcwd() + + func = None + + if format is not None: + try: + format_info = _UNPACK_FORMATS[format] + except KeyError: + raise ValueError("Unknown unpack format '{0}'".format(format)) + + func = format_info[0] + func(filename, extract_dir, **dict(format_info[1])) + else: + # we need to look at the registered unpackers supported extensions + format = _find_unpack_format(filename) + if format is None: + raise ReadError("Unknown archive format '{0}'".format(filename)) + + func = _UNPACK_FORMATS[format][1] + kwargs = dict(_UNPACK_FORMATS[format][2]) + func(filename, extract_dir, **kwargs) + + if func is None: + raise ValueError('Unknown archive format: %s' % filename) + + return extract_dir diff --git a/distutils2/_backport/sysconfig.py b/distutils2/_backport/sysconfig.py --- a/distutils2/_backport/sysconfig.py +++ b/distutils2/_backport/sysconfig.py @@ -1,8 +1,6 @@ -"""Provide access to Python's configuration information. - -""" +"""Provide access to Python's configuration information.""" +import os import sys -import os import re from os.path import pardir, realpath from ConfigParser import RawConfigParser @@ -18,6 +16,7 @@ _SCHEMES.read(_CONFIG_FILE) _VAR_REPL = re.compile(r'\{([^{]*?)\}') + def _expand_globals(config): if config.has_section('globals'): globals = config.items('globals') @@ -38,11 +37,13 @@ # for section in config.sections(): variables = dict(config.items(section)) + def _replacer(matchobj): name = matchobj.group(1) if name in variables: return variables[name] return matchobj.group(0) + for option, value in config.items(section): config.set(section, option, _VAR_REPL.sub(_replacer, value)) @@ -69,6 +70,7 @@ if os.name == "nt" and "\\pcbuild\\amd64" in _PROJECT_BASE[-14:].lower(): _PROJECT_BASE = realpath(os.path.join(_PROJECT_BASE, pardir, pardir)) + def is_python_build(): for fn in ("Setup.dist", "Setup.local"): if os.path.isfile(os.path.join(_PROJECT_BASE, "Modules", fn)): @@ -84,10 +86,10 @@ def _subst_vars(path, local_vars): - """In the string `path`, replace tokens like {some.thing} with the corresponding value from the map `local_vars`. + """In the string `path`, replace tokens like {some.thing} with the + corresponding value from the map `local_vars`. If there is no corresponding value, leave the token unchanged. - """ def _replacer(matchobj): name = matchobj.group(1) @@ -98,13 +100,14 @@ return matchobj.group(0) return _VAR_REPL.sub(_replacer, path) + def _extend_dict(target_dict, other_dict): - target_keys = target_dict.keys() - for key, value in other_dict.items(): - if key in target_keys: + for key, value in other_dict.iteritems(): + if key in target_dict: continue target_dict[key] = value + def _expand_vars(scheme, vars): res = {} if vars is None: @@ -117,14 +120,25 @@ res[key] = os.path.normpath(_subst_vars(value, vars)) return res +def format_value(value, vars): + def _replacer(matchobj): + name = matchobj.group(1) + if name in vars: + return vars[name] + return matchobj.group(0) + return _VAR_REPL.sub(_replacer, value) + + def _get_default_scheme(): if os.name == 'posix': # the default scheme for posix is posix_prefix return 'posix_prefix' return os.name + def _getuserbase(): env_base = os.environ.get("PYTHONUSERBASE", None) + def joinuser(*args): return os.path.expanduser(os.path.join(*args)) @@ -158,7 +172,6 @@ optional dictionary is passed in as the second argument, it is used instead of a new dictionary. """ - import re # Regexes needed for parsing Makefile (and similar syntaxes, # like old-style Setup files). _variable_rx = re.compile("([a-zA-Z][a-zA-Z0-9_]+)\s*=\s*(.*)") @@ -256,7 +269,6 @@ if name not in done: done[name] = value - else: # bogus variable reference; just drop it since we can't deal variables.remove(name) @@ -267,6 +279,7 @@ def get_makefile_filename(): + """Return the path of the Makefile.""" if _PYTHON_BUILD: return os.path.join(_PROJECT_BASE, "Makefile") return os.path.join(get_path('stdlib'), "config", "Makefile") @@ -315,6 +328,7 @@ if _PYTHON_BUILD: vars['LDSHARED'] = vars['BLDSHARED'] + def _init_non_posix(vars): """Initialize the module as appropriate for NT""" # set basic install directories @@ -338,7 +352,6 @@ optional dictionary is passed in as the second argument, it is used instead of a new dictionary. """ - import re if vars is None: vars = {} define_rx = re.compile("#define ([A-Z][A-Za-z0-9_]+) (.*)\n") @@ -351,8 +364,10 @@ m = define_rx.match(line) if m: n, v = m.group(1, 2) - try: v = int(v) - except ValueError: pass + try: + v = int(v) + except ValueError: + pass vars[n] = v else: m = undef_rx.match(line) @@ -360,8 +375,9 @@ vars[m.group(1)] = 0 return vars + def get_config_h_filename(): - """Returns the path of pyconfig.h.""" + """Return the path of pyconfig.h.""" if _PYTHON_BUILD: if os.name == "nt": inc_dir = os.path.join(_PROJECT_BASE, "PC") @@ -371,17 +387,20 @@ inc_dir = get_path('platinclude') return os.path.join(inc_dir, 'pyconfig.h') + def get_scheme_names(): - """Returns a tuple containing the schemes names.""" + """Return a tuple containing the schemes names.""" return tuple(sorted(_SCHEMES.sections())) + def get_path_names(): - """Returns a tuple containing the paths names.""" + """Return a tuple containing the paths names.""" # xxx see if we want a static list return _SCHEMES.options('posix_prefix') + def get_paths(scheme=_get_default_scheme(), vars=None, expand=True): - """Returns a mapping containing an install scheme. + """Return a mapping containing an install scheme. ``scheme`` is the install scheme name. If not provided, it will return the default scheme for the current platform. @@ -391,13 +410,15 @@ else: return dict(_SCHEMES.items(scheme)) + def get_path(name, scheme=_get_default_scheme(), vars=None, expand=True): - """Returns a path corresponding to the scheme. + """Return a path corresponding to the scheme. ``scheme`` is the install scheme name. """ return get_paths(scheme, vars, expand)[name] + def get_config_vars(*args): """With no arguments, return a dictionary of all configuration variables relevant for the current platform. @@ -408,7 +429,6 @@ With arguments, return a list of values that result from looking up each argument in the configuration variable dictionary. """ - import re global _CONFIG_VARS if _CONFIG_VARS is None: _CONFIG_VARS = {} @@ -440,7 +460,6 @@ else: _CONFIG_VARS['srcdir'] = realpath(_CONFIG_VARS['srcdir']) - # Convert srcdir into an absolute path if it appears necessary. # Normally it is relative to the build directory. However, during # testing, for example, we might be running a non-installed python @@ -456,7 +475,7 @@ _CONFIG_VARS['srcdir'] = os.path.normpath(srcdir) if sys.platform == 'darwin': - kernel_version = os.uname()[2] # Kernel version (8.4.3) + kernel_version = os.uname()[2] # Kernel version (8.4.3) major_version = int(kernel_version.split('.')[0]) if major_version < 8: @@ -522,6 +541,7 @@ else: return _CONFIG_VARS + def get_config_var(name): """Return the value of a single variable using the dictionary returned by 'get_config_vars()'. @@ -530,6 +550,7 @@ """ return get_config_vars().get(name) + def get_platform(): """Return a string that identifies the current platform. @@ -555,7 +576,6 @@ For other non-POSIX platforms, currently just returns 'sys.platform'. """ - import re if os.name == 'nt': # sniff sys.version for architecture. prefix = " bit (" @@ -563,7 +583,7 @@ if i == -1: return sys.platform j = sys.version.find(")", i) - look = sys.version[i+len(prefix):j].lower() + look = sys.version[i + len(prefix):j].lower() if look == 'amd64': return 'win-amd64' if look == 'itanium': @@ -600,7 +620,7 @@ return "%s-%s.%s" % (osname, version, release) elif osname[:6] == "cygwin": osname = "cygwin" - rel_re = re.compile (r'[\d.]+') + rel_re = re.compile(r'[\d.]+') m = rel_re.match(release) if m: release = m.group() @@ -675,19 +695,19 @@ machine = 'universal' else: raise ValueError( - "Don't know machine value for archs=%r"%(archs,)) + "Don't know machine value for archs=%r" % (archs,)) elif machine == 'i386': # On OSX the machine type returned by uname is always the # 32-bit variant, even if the executable architecture is # the 64-bit variant - if sys.maxint >= 2**32: + if sys.maxint >= (2 ** 32): machine = 'x86_64' elif machine in ('PowerPC', 'Power_Macintosh'): # Pick a sane name for the PPC architecture. # See 'i386' case - if sys.maxint >= 2**32: + if sys.maxint >= (2 ** 32): machine = 'ppc64' else: machine = 'ppc' @@ -698,12 +718,14 @@ def get_python_version(): return _PY_VERSION_SHORT + def _print_dict(title, data): - for index, (key, value) in enumerate(sorted(data.items())): + for index, (key, value) in enumerate(sorted(data.iteritems())): if index == 0: print '%s: ' % (title) print '\t%s = "%s"' % (key, value) + def _main(): """Display all information sysconfig detains.""" print 'Platform: "%s"' % get_platform() @@ -714,5 +736,6 @@ print _print_dict('Variables', get_config_vars()) + if __name__ == '__main__': _main() diff --git a/distutils2/_backport/tests/fake_dists/babar-0.1.dist-info/INSTALLER b/distutils2/_backport/tests/fake_dists/babar-0.1.dist-info/INSTALLER new file mode 100644 diff --git a/distutils2/_backport/tests/fake_dists/babar-0.1.dist-info/METADATA b/distutils2/_backport/tests/fake_dists/babar-0.1.dist-info/METADATA new file mode 100644 --- /dev/null +++ b/distutils2/_backport/tests/fake_dists/babar-0.1.dist-info/METADATA @@ -0,0 +1,4 @@ +Metadata-version: 1.2 +Name: babar +Version: 0.1 +Author: FELD Boris \ No newline at end of file diff --git a/distutils2/_backport/tests/fake_dists/babar-0.1.dist-info/RECORD b/distutils2/_backport/tests/fake_dists/babar-0.1.dist-info/RECORD new file mode 100644 diff --git a/distutils2/_backport/tests/fake_dists/babar-0.1.dist-info/REQUESTED b/distutils2/_backport/tests/fake_dists/babar-0.1.dist-info/REQUESTED new file mode 100644 diff --git a/distutils2/_backport/tests/fake_dists/babar-0.1.dist-info/RESOURCES b/distutils2/_backport/tests/fake_dists/babar-0.1.dist-info/RESOURCES new file mode 100644 --- /dev/null +++ b/distutils2/_backport/tests/fake_dists/babar-0.1.dist-info/RESOURCES @@ -0,0 +1,2 @@ +babar.png,babar.png +babar.cfg,babar.cfg \ No newline at end of file diff --git a/distutils2/_backport/tests/fake_dists/babar.cfg b/distutils2/_backport/tests/fake_dists/babar.cfg new file mode 100644 --- /dev/null +++ b/distutils2/_backport/tests/fake_dists/babar.cfg @@ -0,0 +1,1 @@ +Config \ No newline at end of file diff --git a/distutils2/_backport/tests/fake_dists/babar.png b/distutils2/_backport/tests/fake_dists/babar.png new file mode 100644 diff --git a/distutils2/_backport/tests/fake_dists/coconuts-aster-10.3.egg-info/PKG-INFO b/distutils2/_backport/tests/fake_dists/coconuts-aster-10.3.egg-info/PKG-INFO new file mode 100644 --- /dev/null +++ b/distutils2/_backport/tests/fake_dists/coconuts-aster-10.3.egg-info/PKG-INFO @@ -0,0 +1,5 @@ +Metadata-Version: 1.2 +Name: coconuts-aster +Version: 10.3 +Provides-Dist: strawberry (0.6) +Provides-Dist: banana (0.4) diff --git a/distutils2/_backport/tests/test_pkgutil.py b/distutils2/_backport/tests/test_pkgutil.py --- a/distutils2/_backport/tests/test_pkgutil.py +++ b/distutils2/_backport/tests/test_pkgutil.py @@ -1,19 +1,27 @@ # -*- coding: utf-8 -*- """Tests for PEP 376 pkgutil functionality""" +import imp import sys + +import csv import os -import csv -import imp +import shutil import tempfile -import shutil import zipfile try: from hashlib import md5 except ImportError: from distutils2._backport.hashlib import md5 +from distutils2.errors import DistutilsError +from distutils2.metadata import Metadata from distutils2.tests import unittest, run_unittest, support, TESTFN + from distutils2._backport import pkgutil +from distutils2._backport.pkgutil import ( + Distribution, EggInfoDistribution, get_distribution, get_distributions, + provides_distribution, obsoletes_distribution, get_file_users, + distinfo_dirname, _yield_distributions) try: from os.path import relpath @@ -106,11 +114,16 @@ self.assertEqual(res1, RESOURCE_DATA) res2 = pkgutil.get_data(pkg, 'sub/res.txt') self.assertEqual(res2, RESOURCE_DATA) + + names = [] + for loader, name, ispkg in pkgutil.iter_modules([zip_file]): + names.append(name) + self.assertEqual(names, ['test_getdata_zipfile']) + del sys.path[0] del sys.modules[pkg] - # Adapted from Python 2.7's trunk @@ -169,7 +182,7 @@ def setUp(self): super(TestPkgUtilDistribution, self).setUp() self.fake_dists_path = os.path.abspath( - os.path.join(os.path.dirname(__file__), 'fake_dists')) + os.path.join(os.path.dirname(__file__), 'fake_dists')) pkgutil.disable_cache() self.distinfo_dirs = [os.path.join(self.fake_dists_path, dir) @@ -192,7 +205,7 @@ # Setup the RECORD file for this dist record_file = os.path.join(distinfo_dir, 'RECORD') record_writer = csv.writer(open(record_file, 'w'), delimiter=',', - quoting=csv.QUOTE_NONE) + quoting=csv.QUOTE_NONE) dist_location = distinfo_dir.replace('.dist-info', '') for path, dirs, files in os.walk(dist_location): @@ -201,15 +214,15 @@ os.path.join(path, f))) for file in ['INSTALLER', 'METADATA', 'REQUESTED']: record_writer.writerow(record_pieces( - os.path.join(distinfo_dir, file))) + os.path.join(distinfo_dir, file))) record_writer.writerow([relpath(record_file, sys.prefix)]) - del record_writer # causes the RECORD file to close + del record_writer # causes the RECORD file to close record_reader = csv.reader(open(record_file, 'rb')) record_data = [] for row in record_reader: path, md5_, size = row[:] + \ - [None for i in xrange(len(row), 3)] - record_data.append([path, (md5_, size,)]) + [None for i in xrange(len(row), 3)] + record_data.append([path, (md5_, size, )]) self.records[distinfo_dir] = dict(record_data) def tearDown(self): @@ -223,31 +236,26 @@ def test_instantiation(self): # Test the Distribution class's instantiation provides us with usable # attributes. - # Import the Distribution class - from distutils2._backport.pkgutil import distinfo_dirname, Distribution - here = os.path.abspath(os.path.dirname(__file__)) name = 'choxie' version = '2.0.0.9' dist_path = os.path.join(here, 'fake_dists', - distinfo_dirname(name, version)) + distinfo_dirname(name, version)) dist = Distribution(dist_path) self.assertEqual(dist.name, name) - from distutils2.metadata import DistributionMetadata - self.assertTrue(isinstance(dist.metadata, DistributionMetadata)) + self.assertTrue(isinstance(dist.metadata, Metadata)) self.assertEqual(dist.metadata['version'], version) self.assertTrue(isinstance(dist.requested, type(bool()))) def test_installed_files(self): # Test the iteration of installed files. # Test the distribution's installed files - from distutils2._backport.pkgutil import Distribution for distinfo_dir in self.distinfo_dirs: dist = Distribution(distinfo_dir) for path, md5_, size in dist.get_installed_files(): record_data = self.records[dist.path] - self.assertTrue(path in record_data.keys()) + self.assertIn(path, record_data) self.assertEqual(md5_, record_data[path][0]) self.assertEqual(size, record_data[path][1]) @@ -256,27 +264,25 @@ # Criteria to test against distinfo_name = 'grammar-1.0a4' distinfo_dir = os.path.join(self.fake_dists_path, - distinfo_name + '.dist-info') + distinfo_name + '.dist-info') true_path = [self.fake_dists_path, distinfo_name, \ - 'grammar', 'utils.py'] + 'grammar', 'utils.py'] true_path = relpath(os.path.join(*true_path), sys.prefix) false_path = [self.fake_dists_path, 'towel_stuff-0.1', 'towel_stuff', '__init__.py'] false_path = relpath(os.path.join(*false_path), sys.prefix) # Test if the distribution uses the file in question - from distutils2._backport.pkgutil import Distribution dist = Distribution(distinfo_dir) self.assertTrue(dist.uses(true_path)) self.assertFalse(dist.uses(false_path)) def test_get_distinfo_file(self): # Test the retrieval of dist-info file objects. - from distutils2._backport.pkgutil import Distribution distinfo_name = 'choxie-2.0.0.9' other_distinfo_name = 'grammar-1.0a4' distinfo_dir = os.path.join(self.fake_dists_path, - distinfo_name + '.dist-info') + distinfo_name + '.dist-info') dist = Distribution(distinfo_dir) # Test for known good file matches distinfo_files = [ @@ -293,22 +299,20 @@ # Is it the correct file? self.assertEqual(value.name, os.path.join(distinfo_dir, distfile)) - from distutils2.errors import DistutilsError # Test an absolute path that is part of another distributions dist-info other_distinfo_file = os.path.join(self.fake_dists_path, - other_distinfo_name + '.dist-info', 'REQUESTED') + other_distinfo_name + '.dist-info', 'REQUESTED') self.assertRaises(DistutilsError, dist.get_distinfo_file, - other_distinfo_file) + other_distinfo_file) # Test for a file that does not exist and should not exist self.assertRaises(DistutilsError, dist.get_distinfo_file, \ 'ENTRYPOINTS') def test_get_distinfo_files(self): # Test for the iteration of RECORD path entries. - from distutils2._backport.pkgutil import Distribution distinfo_name = 'towel_stuff-0.1' distinfo_dir = os.path.join(self.fake_dists_path, - distinfo_name + '.dist-info') + distinfo_name + '.dist-info') dist = Distribution(distinfo_dir) # Test for the iteration of the raw path distinfo_record_paths = self.records[distinfo_dir].keys() @@ -316,10 +320,20 @@ self.assertEqual(sorted(found), sorted(distinfo_record_paths)) # Test for the iteration of local absolute paths distinfo_record_paths = [os.path.join(sys.prefix, path) - for path in self.records[distinfo_dir].keys()] + for path in self.records[distinfo_dir]] found = [path for path in dist.get_distinfo_files(local=True)] self.assertEqual(sorted(found), sorted(distinfo_record_paths)) + def test_get_resources_path(self): + distinfo_name = 'babar-0.1' + distinfo_dir = os.path.join(self.fake_dists_path, + distinfo_name + '.dist-info') + dist = Distribution(distinfo_dir) + resource_path = dist.get_resource_path('babar.png') + self.assertEqual(resource_path, 'babar.png') + self.assertRaises(KeyError, dist.get_resource_path, 'notexist') + + class TestPkgUtilPEP376(support.LoggingCatcher, support.WarningsCatcher, unittest.TestCase): @@ -354,9 +368,6 @@ ('python-ldap', '2.5 a---5', 'python_ldap-2.5 a---5.dist-info'), ] - # Import the function in question - from distutils2._backport.pkgutil import distinfo_dirname - # Loop through the items to validate the results for name, version, standard_dirname in items: dirname = distinfo_dirname(name, version) @@ -366,23 +377,18 @@ # Lookup all distributions found in the ``sys.path``. # This test could potentially pick up other installed distributions fake_dists = [('grammar', '1.0a4'), ('choxie', '2.0.0.9'), - ('towel-stuff', '0.1')] + ('towel-stuff', '0.1'), ('babar', '0.1')] found_dists = [] - # Import the function in question - from distutils2._backport.pkgutil import get_distributions, \ - Distribution, \ - EggInfoDistribution - # Verify the fake dists have been found. dists = [dist for dist in get_distributions()] for dist in dists: if not isinstance(dist, Distribution): self.fail("item received was not a Distribution instance: " - "%s" % type(dist)) - if dist.name in dict(fake_dists).keys() and \ - dist.path.startswith(self.fake_dists_path): - found_dists.append((dist.name, dist.metadata['version'],)) + "%s" % type(dist)) + if dist.name in dict(fake_dists) and \ + dist.path.startswith(self.fake_dists_path): + found_dists.append((dist.name, dist.metadata['version'], )) else: # check that it doesn't find anything more than this self.assertFalse(dist.path.startswith(self.fake_dists_path)) @@ -393,6 +399,7 @@ # Now, test if the egg-info distributions are found correctly as well fake_dists += [('bacon', '0.1'), ('cheese', '2.0.2'), + ('coconuts-aster', '10.3'), ('banana', '0.4'), ('strawberry', '0.6'), ('truffles', '5.0'), ('nut', 'funkyversion')] found_dists = [] @@ -403,9 +410,9 @@ isinstance(dist, EggInfoDistribution)): self.fail("item received was not a Distribution or " "EggInfoDistribution instance: %s" % type(dist)) - if dist.name in dict(fake_dists).keys() and \ - dist.path.startswith(self.fake_dists_path): - found_dists.append((dist.name, dist.metadata['version'])) + if dist.name in dict(fake_dists) and \ + dist.path.startswith(self.fake_dists_path): + found_dists.append((dist.name, dist.metadata['version'])) else: self.assertFalse(dist.path.startswith(self.fake_dists_path)) @@ -414,12 +421,7 @@ def test_get_distribution(self): # Test for looking up a distribution by name. # Test the lookup of the towel-stuff distribution - name = 'towel-stuff' # Note: This is different from the directory name - - # Import the function in question - from distutils2._backport.pkgutil import get_distribution, \ - Distribution, \ - EggInfoDistribution + name = 'towel-stuff' # Note: This is different from the directory name # Lookup the distribution dist = get_distribution(name) @@ -459,19 +461,15 @@ def test_get_file_users(self): # Test the iteration of distributions that use a file. - from distutils2._backport.pkgutil import get_file_users, Distribution name = 'towel_stuff-0.1' path = os.path.join(self.fake_dists_path, name, - 'towel_stuff', '__init__.py') + 'towel_stuff', '__init__.py') for dist in get_file_users(path): self.assertTrue(isinstance(dist, Distribution)) self.assertEqual(dist.name, name) def test_provides(self): # Test for looking up distributions by what they provide - from distutils2._backport.pkgutil import provides_distribution - from distutils2.errors import DistutilsError - checkLists = lambda x, y: self.assertListEqual(sorted(x), sorted(y)) l = [dist.name for dist in provides_distribution('truffles')] @@ -507,33 +505,30 @@ l = [dist.name for dist in provides_distribution('truffles', '>1.5', use_egg_info=True)] - checkLists(l, ['bacon', 'truffles']) + checkLists(l, ['bacon']) l = [dist.name for dist in provides_distribution('truffles', '>=1.0')] checkLists(l, ['choxie', 'towel-stuff']) l = [dist.name for dist in provides_distribution('strawberry', '0.6', use_egg_info=True)] - checkLists(l, ['strawberry']) + checkLists(l, ['coconuts-aster']) l = [dist.name for dist in provides_distribution('strawberry', '>=0.5', use_egg_info=True)] - checkLists(l, ['strawberry']) - + checkLists(l, ['coconuts-aster']) l = [dist.name for dist in provides_distribution('strawberry', '>0.6', use_egg_info=True)] checkLists(l, []) - l = [dist.name for dist in provides_distribution('banana', '0.4', use_egg_info=True)] - checkLists(l, ['banana']) + checkLists(l, ['coconuts-aster']) l = [dist.name for dist in provides_distribution('banana', '>=0.3', use_egg_info=True)] - checkLists(l, ['banana']) - + checkLists(l, ['coconuts-aster']) l = [dist.name for dist in provides_distribution('banana', '!=0.4', use_egg_info=True)] @@ -541,9 +536,6 @@ def test_obsoletes(self): # Test looking for distributions based on what they obsolete - from distutils2._backport.pkgutil import obsoletes_distribution - from distutils2.errors import DistutilsError - checkLists = lambda x, y: self.assertListEqual(sorted(x), sorted(y)) l = [dist.name for dist in obsoletes_distribution('truffles', '1.0')] @@ -553,7 +545,6 @@ use_egg_info=True)] checkLists(l, ['cheese', 'bacon']) - l = [dist.name for dist in obsoletes_distribution('truffles', '0.8')] checkLists(l, ['choxie']) @@ -573,14 +564,13 @@ def test_yield_distribution(self): # tests the internal function _yield_distributions - from distutils2._backport.pkgutil import _yield_distributions checkLists = lambda x, y: self.assertListEqual(sorted(x), sorted(y)) eggs = [('bacon', '0.1'), ('banana', '0.4'), ('strawberry', '0.6'), ('truffles', '5.0'), ('cheese', '2.0.2'), - ('nut', 'funkyversion')] + ('coconuts-aster', '10.3'), ('nut', 'funkyversion')] dists = [('choxie', '2.0.0.9'), ('grammar', '1.0a4'), - ('towel-stuff', '0.1')] + ('towel-stuff', '0.1'), ('babar', '0.1')] checkLists([], _yield_distributions(False, False)) diff --git a/distutils2/_backport/tests/test_shutil.py b/distutils2/_backport/tests/test_shutil.py new file mode 100644 --- /dev/null +++ b/distutils2/_backport/tests/test_shutil.py @@ -0,0 +1,945 @@ +import os +import sys +import tempfile +import stat +import tarfile +from os.path import splitdrive +from StringIO import StringIO + +from distutils.spawn import find_executable, spawn +from distutils2._backport import shutil +from distutils2._backport.shutil import ( + _make_tarball, _make_zipfile, make_archive, unpack_archive, + register_archive_format, unregister_archive_format, get_archive_formats, + register_unpack_format, unregister_unpack_format, get_unpack_formats, + Error, RegistryError) + +from distutils2.tests import unittest, support, TESTFN + +try: + import bz2 + BZ2_SUPPORTED = True +except ImportError: + BZ2_SUPPORTED = False + +TESTFN2 = TESTFN + "2" + +try: + import grp + import pwd + UID_GID_SUPPORT = True +except ImportError: + UID_GID_SUPPORT = False + +try: + import zlib +except ImportError: + zlib = None + +try: + import zipfile + ZIP_SUPPORT = True +except ImportError: + ZIP_SUPPORT = find_executable('zip') + +class TestShutil(unittest.TestCase): + + def setUp(self): + super(TestShutil, self).setUp() + self.tempdirs = [] + + def tearDown(self): + super(TestShutil, self).tearDown() + while self.tempdirs: + d = self.tempdirs.pop() + shutil.rmtree(d, os.name in ('nt', 'cygwin')) + + def write_file(self, path, content='xxx'): + """Writes a file in the given path. + + + path can be a string or a sequence. + """ + if isinstance(path, (list, tuple)): + path = os.path.join(*path) + f = open(path, 'w') + try: + f.write(content) + finally: + f.close() + + def mkdtemp(self): + """Create a temporary directory that will be cleaned up. + + Returns the path of the directory. + """ + d = tempfile.mkdtemp() + self.tempdirs.append(d) + return d + + def test_rmtree_errors(self): + # filename is guaranteed not to exist + filename = tempfile.mktemp() + self.assertRaises(OSError, shutil.rmtree, filename) + + # See bug #1071513 for why we don't run this on cygwin + # and bug #1076467 for why we don't run this as root. + if (hasattr(os, 'chmod') and sys.platform[:6] != 'cygwin' + and not (hasattr(os, 'geteuid') and os.geteuid() == 0)): + def test_on_error(self): + self.errorState = 0 + os.mkdir(TESTFN) + self.childpath = os.path.join(TESTFN, 'a') + f = open(self.childpath, 'w') + f.close() + old_dir_mode = os.stat(TESTFN).st_mode + old_child_mode = os.stat(self.childpath).st_mode + # Make unwritable. + os.chmod(self.childpath, stat.S_IREAD) + os.chmod(TESTFN, stat.S_IREAD) + + shutil.rmtree(TESTFN, onerror=self.check_args_to_onerror) + # Test whether onerror has actually been called. + self.assertEqual(self.errorState, 2, + "Expected call to onerror function did not happen.") + + # Make writable again. + os.chmod(TESTFN, old_dir_mode) + os.chmod(self.childpath, old_child_mode) + + # Clean up. + shutil.rmtree(TESTFN) + + def check_args_to_onerror(self, func, arg, exc): + # test_rmtree_errors deliberately runs rmtree + # on a directory that is chmod 400, which will fail. + # This function is run when shutil.rmtree fails. + # 99.9% of the time it initially fails to remove + # a file in the directory, so the first time through + # func is os.remove. + # However, some Linux machines running ZFS on + # FUSE experienced a failure earlier in the process + # at os.listdir. The first failure may legally + # be either. + if self.errorState == 0: + if func is os.remove: + self.assertEqual(arg, self.childpath) + else: + self.assertIs(func, os.listdir, + "func must be either os.remove or os.listdir") + self.assertEqual(arg, TESTFN) + self.assertTrue(issubclass(exc[0], OSError)) + self.errorState = 1 + else: + self.assertEqual(func, os.rmdir) + self.assertEqual(arg, TESTFN) + self.assertTrue(issubclass(exc[0], OSError)) + self.errorState = 2 + + def test_rmtree_dont_delete_file(self): + # When called on a file instead of a directory, don't delete it. + handle, path = tempfile.mkstemp() + os.fdopen(handle).close() + self.assertRaises(OSError, shutil.rmtree, path) + os.remove(path) + + def _write_data(self, path, data): + f = open(path, "w") + f.write(data) + f.close() + + def test_copytree_simple(self): + + def read_data(path): + f = open(path) + data = f.read() + f.close() + return data + + src_dir = tempfile.mkdtemp() + dst_dir = os.path.join(tempfile.mkdtemp(), 'destination') + self._write_data(os.path.join(src_dir, 'test.txt'), '123') + os.mkdir(os.path.join(src_dir, 'test_dir')) + self._write_data(os.path.join(src_dir, 'test_dir', 'test.txt'), '456') + + try: + shutil.copytree(src_dir, dst_dir) + self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test.txt'))) + self.assertTrue(os.path.isdir(os.path.join(dst_dir, 'test_dir'))) + self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test_dir', + 'test.txt'))) + actual = read_data(os.path.join(dst_dir, 'test.txt')) + self.assertEqual(actual, '123') + actual = read_data(os.path.join(dst_dir, 'test_dir', 'test.txt')) + self.assertEqual(actual, '456') + finally: + for path in ( + os.path.join(src_dir, 'test.txt'), + os.path.join(dst_dir, 'test.txt'), + os.path.join(src_dir, 'test_dir', 'test.txt'), + os.path.join(dst_dir, 'test_dir', 'test.txt'), + ): + if os.path.exists(path): + os.remove(path) + for path in (src_dir, + os.path.dirname(dst_dir) + ): + if os.path.exists(path): + shutil.rmtree(path) + + def test_copytree_with_exclude(self): + + def read_data(path): + f = open(path) + data = f.read() + f.close() + return data + + # creating data + join = os.path.join + exists = os.path.exists + src_dir = tempfile.mkdtemp() + try: + dst_dir = join(tempfile.mkdtemp(), 'destination') + self._write_data(join(src_dir, 'test.txt'), '123') + self._write_data(join(src_dir, 'test.tmp'), '123') + os.mkdir(join(src_dir, 'test_dir')) + self._write_data(join(src_dir, 'test_dir', 'test.txt'), '456') + os.mkdir(join(src_dir, 'test_dir2')) + self._write_data(join(src_dir, 'test_dir2', 'test.txt'), '456') + os.mkdir(join(src_dir, 'test_dir2', 'subdir')) + os.mkdir(join(src_dir, 'test_dir2', 'subdir2')) + self._write_data(join(src_dir, 'test_dir2', 'subdir', 'test.txt'), + '456') + self._write_data(join(src_dir, 'test_dir2', 'subdir2', 'test.py'), + '456') + + + # testing glob-like patterns + try: + patterns = shutil.ignore_patterns('*.tmp', 'test_dir2') + shutil.copytree(src_dir, dst_dir, ignore=patterns) + # checking the result: some elements should not be copied + self.assertTrue(exists(join(dst_dir, 'test.txt'))) + self.assertTrue(not exists(join(dst_dir, 'test.tmp'))) + self.assertTrue(not exists(join(dst_dir, 'test_dir2'))) + finally: + if os.path.exists(dst_dir): + shutil.rmtree(dst_dir) + try: + patterns = shutil.ignore_patterns('*.tmp', 'subdir*') + shutil.copytree(src_dir, dst_dir, ignore=patterns) + # checking the result: some elements should not be copied + self.assertTrue(not exists(join(dst_dir, 'test.tmp'))) + self.assertTrue(not exists(join(dst_dir, 'test_dir2', 'subdir2'))) + self.assertTrue(not exists(join(dst_dir, 'test_dir2', 'subdir'))) + finally: + if os.path.exists(dst_dir): + shutil.rmtree(dst_dir) + + # testing callable-style + try: + def _filter(src, names): + res = [] + for name in names: + path = os.path.join(src, name) + + if (os.path.isdir(path) and + path.split()[-1] == 'subdir'): + res.append(name) + elif os.path.splitext(path)[-1] in ('.py'): + res.append(name) + return res + + shutil.copytree(src_dir, dst_dir, ignore=_filter) + + # checking the result: some elements should not be copied + self.assertTrue(not exists(join(dst_dir, 'test_dir2', 'subdir2', + 'test.py'))) + self.assertTrue(not exists(join(dst_dir, 'test_dir2', 'subdir'))) + + finally: + if os.path.exists(dst_dir): + shutil.rmtree(dst_dir) + finally: + shutil.rmtree(src_dir) + shutil.rmtree(os.path.dirname(dst_dir)) + + @support.skip_unless_symlink + def test_dont_copy_file_onto_link_to_itself(self): + # bug 851123. + os.mkdir(TESTFN) + src = os.path.join(TESTFN, 'cheese') + dst = os.path.join(TESTFN, 'shop') + try: + f = open(src, 'w') + f.write('cheddar') + f.close() + + if hasattr(os, "link"): + os.link(src, dst) + self.assertRaises(shutil.Error, shutil.copyfile, src, dst) + f = open(src, 'r') + try: + self.assertEqual(f.read(), 'cheddar') + finally: + f.close() + os.remove(dst) + + # Using `src` here would mean we end up with a symlink pointing + # to TESTFN/TESTFN/cheese, while it should point at + # TESTFN/cheese. + os.symlink('cheese', dst) + self.assertRaises(shutil.Error, shutil.copyfile, src, dst) + f = open(src, 'r') + try: + self.assertEqual(f.read(), 'cheddar') + finally: + f.close() + os.remove(dst) + finally: + try: + shutil.rmtree(TESTFN) + except OSError: + pass + + @support.skip_unless_symlink + def test_rmtree_on_symlink(self): + # bug 1669. + os.mkdir(TESTFN) + try: + src = os.path.join(TESTFN, 'cheese') + dst = os.path.join(TESTFN, 'shop') + os.mkdir(src) + os.symlink(src, dst) + self.assertRaises(OSError, shutil.rmtree, dst) + finally: + shutil.rmtree(TESTFN, ignore_errors=True) + + if hasattr(os, "mkfifo"): + # Issue #3002: copyfile and copytree block indefinitely on named pipes + def test_copyfile_named_pipe(self): + os.mkfifo(TESTFN) + try: + self.assertRaises(shutil.SpecialFileError, + shutil.copyfile, TESTFN, TESTFN2) + self.assertRaises(shutil.SpecialFileError, + shutil.copyfile, __file__, TESTFN) + finally: + os.remove(TESTFN) + + @unittest.skipUnless(hasattr(os, 'mkfifo'), 'requires os.mkfifo') + def test_copytree_named_pipe(self): + os.mkdir(TESTFN) + try: + subdir = os.path.join(TESTFN, "subdir") + os.mkdir(subdir) + pipe = os.path.join(subdir, "mypipe") + os.mkfifo(pipe) + try: + shutil.copytree(TESTFN, TESTFN2) + except shutil.Error, e: + errors = e.args[0] + self.assertEqual(len(errors), 1) + src, dst, error_msg = errors[0] + self.assertEqual("`%s` is a named pipe" % pipe, error_msg) + else: + self.fail("shutil.Error should have been raised") + finally: + shutil.rmtree(TESTFN, ignore_errors=True) + shutil.rmtree(TESTFN2, ignore_errors=True) + + def test_copytree_special_func(self): + + src_dir = self.mkdtemp() + dst_dir = os.path.join(self.mkdtemp(), 'destination') + self._write_data(os.path.join(src_dir, 'test.txt'), '123') + os.mkdir(os.path.join(src_dir, 'test_dir')) + self._write_data(os.path.join(src_dir, 'test_dir', 'test.txt'), '456') + + copied = [] + def _copy(src, dst): + copied.append((src, dst)) + + shutil.copytree(src_dir, dst_dir, copy_function=_copy) + self.assertEquals(len(copied), 2) + + @support.skip_unless_symlink + def test_copytree_dangling_symlinks(self): + + # a dangling symlink raises an error at the end + src_dir = self.mkdtemp() + dst_dir = os.path.join(self.mkdtemp(), 'destination') + os.symlink('IDONTEXIST', os.path.join(src_dir, 'test.txt')) + os.mkdir(os.path.join(src_dir, 'test_dir')) + self._write_data(os.path.join(src_dir, 'test_dir', 'test.txt'), '456') + self.assertRaises(Error, shutil.copytree, src_dir, dst_dir) + + # a dangling symlink is ignored with the proper flag + dst_dir = os.path.join(self.mkdtemp(), 'destination2') + shutil.copytree(src_dir, dst_dir, ignore_dangling_symlinks=True) + self.assertNotIn('test.txt', os.listdir(dst_dir)) + + # a dangling symlink is copied if symlinks=True + dst_dir = os.path.join(self.mkdtemp(), 'destination3') + shutil.copytree(src_dir, dst_dir, symlinks=True) + self.assertIn('test.txt', os.listdir(dst_dir)) + + @unittest.skipUnless(zlib, "requires zlib") + def test_make_tarball(self): + # creating something to tar + tmpdir = self.mkdtemp() + self.write_file([tmpdir, 'file1'], 'xxx') + self.write_file([tmpdir, 'file2'], 'xxx') + os.mkdir(os.path.join(tmpdir, 'sub')) + self.write_file([tmpdir, 'sub', 'file3'], 'xxx') + + tmpdir2 = self.mkdtemp() + unittest.skipUnless(splitdrive(tmpdir)[0] == splitdrive(tmpdir2)[0], + "source and target should be on same drive") + + base_name = os.path.join(tmpdir2, 'archive') + + # working with relative paths to avoid tar warnings + old_dir = os.getcwd() + os.chdir(tmpdir) + try: + _make_tarball(splitdrive(base_name)[1], '.') + finally: + os.chdir(old_dir) + + # check if the compressed tarball was created + tarball = base_name + '.tar.gz' + self.assertTrue(os.path.exists(tarball)) + + # trying an uncompressed one + base_name = os.path.join(tmpdir2, 'archive') + old_dir = os.getcwd() + os.chdir(tmpdir) + try: + _make_tarball(splitdrive(base_name)[1], '.', compress=None) + finally: + os.chdir(old_dir) + tarball = base_name + '.tar' + self.assertTrue(os.path.exists(tarball)) + + def _tarinfo(self, path): + tar = tarfile.open(path) + try: + names = tar.getnames() + names.sort() + return tuple(names) + finally: + tar.close() + + def _create_files(self): + # creating something to tar + tmpdir = self.mkdtemp() + dist = os.path.join(tmpdir, 'dist') + os.mkdir(dist) + self.write_file([dist, 'file1'], 'xxx') + self.write_file([dist, 'file2'], 'xxx') + os.mkdir(os.path.join(dist, 'sub')) + self.write_file([dist, 'sub', 'file3'], 'xxx') + os.mkdir(os.path.join(dist, 'sub2')) + tmpdir2 = self.mkdtemp() + base_name = os.path.join(tmpdir2, 'archive') + return tmpdir, tmpdir2, base_name + + @unittest.skipUnless(zlib, "Requires zlib") + @unittest.skipUnless(find_executable('tar') and find_executable('gzip'), + 'Need the tar command to run') + def test_tarfile_vs_tar(self): + tmpdir, tmpdir2, base_name = self._create_files() + old_dir = os.getcwd() + os.chdir(tmpdir) + try: + _make_tarball(base_name, 'dist') + finally: + os.chdir(old_dir) + + # check if the compressed tarball was created + tarball = base_name + '.tar.gz' + self.assertTrue(os.path.exists(tarball)) + + # now create another tarball using `tar` + tarball2 = os.path.join(tmpdir, 'archive2.tar.gz') + tar_cmd = ['tar', '-cf', 'archive2.tar', 'dist'] + gzip_cmd = ['gzip', '-f9', 'archive2.tar'] + old_dir = os.getcwd() + old_stdout = sys.stdout + os.chdir(tmpdir) + sys.stdout = StringIO() + + try: + spawn(tar_cmd) + spawn(gzip_cmd) + finally: + os.chdir(old_dir) + sys.stdout = old_stdout + + self.assertTrue(os.path.exists(tarball2)) + # let's compare both tarballs + self.assertEquals(self._tarinfo(tarball), self._tarinfo(tarball2)) + + # trying an uncompressed one + base_name = os.path.join(tmpdir2, 'archive') + old_dir = os.getcwd() + os.chdir(tmpdir) + try: + _make_tarball(base_name, 'dist', compress=None) + finally: + os.chdir(old_dir) + tarball = base_name + '.tar' + self.assertTrue(os.path.exists(tarball)) + + # now for a dry_run + base_name = os.path.join(tmpdir2, 'archive') + old_dir = os.getcwd() + os.chdir(tmpdir) + try: + _make_tarball(base_name, 'dist', compress=None, dry_run=True) + finally: + os.chdir(old_dir) + tarball = base_name + '.tar' + self.assertTrue(os.path.exists(tarball)) + + @unittest.skipUnless(zlib, "Requires zlib") + @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + def test_make_zipfile(self): + # creating something to tar + tmpdir = self.mkdtemp() + self.write_file([tmpdir, 'file1'], 'xxx') + self.write_file([tmpdir, 'file2'], 'xxx') + + tmpdir2 = self.mkdtemp() + base_name = os.path.join(tmpdir2, 'archive') + _make_zipfile(base_name, tmpdir) + + # check if the compressed tarball was created + tarball = base_name + '.zip' + self.assertTrue(os.path.exists(tarball)) + + + def test_make_archive(self): + tmpdir = self.mkdtemp() + base_name = os.path.join(tmpdir, 'archive') + self.assertRaises(ValueError, make_archive, base_name, 'xxx') + + @unittest.skipUnless(zlib, "Requires zlib") + def test_make_archive_owner_group(self): + # testing make_archive with owner and group, with various combinations + # this works even if there's not gid/uid support + if UID_GID_SUPPORT: + group = grp.getgrgid(0)[0] + owner = pwd.getpwuid(0)[0] + else: + group = owner = 'root' + + base_dir, root_dir, base_name = self._create_files() + base_name = os.path.join(self.mkdtemp() , 'archive') + res = make_archive(base_name, 'zip', root_dir, base_dir, owner=owner, + group=group) + self.assertTrue(os.path.exists(res)) + + res = make_archive(base_name, 'zip', root_dir, base_dir) + self.assertTrue(os.path.exists(res)) + + res = make_archive(base_name, 'tar', root_dir, base_dir, + owner=owner, group=group) + self.assertTrue(os.path.exists(res)) + + res = make_archive(base_name, 'tar', root_dir, base_dir, + owner='kjhkjhkjg', group='oihohoh') + self.assertTrue(os.path.exists(res)) + + + @unittest.skipUnless(zlib, "Requires zlib") + @unittest.skipUnless(UID_GID_SUPPORT, "Requires grp and pwd support") + def test_tarfile_root_owner(self): + tmpdir, tmpdir2, base_name = self._create_files() + old_dir = os.getcwd() + os.chdir(tmpdir) + group = grp.getgrgid(0)[0] + owner = pwd.getpwuid(0)[0] + try: + archive_name = _make_tarball(base_name, 'dist', compress=None, + owner=owner, group=group) + finally: + os.chdir(old_dir) + + # check if the compressed tarball was created + self.assertTrue(os.path.exists(archive_name)) + + # now checks the rights + archive = tarfile.open(archive_name) + try: + for member in archive.getmembers(): + self.assertEquals(member.uid, 0) + self.assertEquals(member.gid, 0) + finally: + archive.close() + + def test_make_archive_cwd(self): + current_dir = os.getcwd() + def _breaks(*args, **kw): + raise RuntimeError() + + register_archive_format('xxx', _breaks, [], 'xxx file') + try: + try: + make_archive('xxx', 'xxx', root_dir=self.mkdtemp()) + except Exception: + pass + self.assertEquals(os.getcwd(), current_dir) + finally: + unregister_archive_format('xxx') + + def test_register_archive_format(self): + + self.assertRaises(TypeError, register_archive_format, 'xxx', 1) + self.assertRaises(TypeError, register_archive_format, 'xxx', lambda: x, + 1) + self.assertRaises(TypeError, register_archive_format, 'xxx', lambda: x, + [(1, 2), (1, 2, 3)]) + + register_archive_format('xxx', lambda: x, [(1, 2)], 'xxx file') + formats = [name for name, params in get_archive_formats()] + self.assertIn('xxx', formats) + + unregister_archive_format('xxx') + formats = [name for name, params in get_archive_formats()] + self.assertNotIn('xxx', formats) + + def _compare_dirs(self, dir1, dir2): + # check that dir1 and dir2 are equivalent, + # return the diff + diff = [] + for root, dirs, files in os.walk(dir1): + for file_ in files: + path = os.path.join(root, file_) + target_path = os.path.join(dir2, os.path.split(path)[-1]) + if not os.path.exists(target_path): + diff.append(file_) + return diff + + @unittest.skipUnless(zlib, "Requires zlib") + def test_unpack_archive(self): + formats = ['tar', 'gztar', 'zip'] + if BZ2_SUPPORTED: + formats.append('bztar') + + for format in formats: + tmpdir = self.mkdtemp() + base_dir, root_dir, base_name = self._create_files() + tmpdir2 = self.mkdtemp() + filename = make_archive(base_name, format, root_dir, base_dir) + + # let's try to unpack it now + unpack_archive(filename, tmpdir2) + diff = self._compare_dirs(tmpdir, tmpdir2) + self.assertEquals(diff, []) + + def test_unpack_registery(self): + + formats = get_unpack_formats() + + def _boo(filename, extract_dir, extra): + self.assertEquals(extra, 1) + self.assertEquals(filename, 'stuff.boo') + self.assertEquals(extract_dir, 'xx') + + register_unpack_format('Boo', ['.boo', '.b2'], _boo, [('extra', 1)]) + unpack_archive('stuff.boo', 'xx') + + # trying to register a .boo unpacker again + self.assertRaises(RegistryError, register_unpack_format, 'Boo2', + ['.boo'], _boo) + + # should work now + unregister_unpack_format('Boo') + register_unpack_format('Boo2', ['.boo'], _boo) + self.assertIn(('Boo2', ['.boo'], ''), get_unpack_formats()) + self.assertNotIn(('Boo', ['.boo'], ''), get_unpack_formats()) + + # let's leave a clean state + unregister_unpack_format('Boo2') + self.assertEquals(get_unpack_formats(), formats) + + +class TestMove(unittest.TestCase): + + def setUp(self): + filename = "foo" + self.src_dir = tempfile.mkdtemp() + self.dst_dir = tempfile.mkdtemp() + self.src_file = os.path.join(self.src_dir, filename) + self.dst_file = os.path.join(self.dst_dir, filename) + # Try to create a dir in the current directory, hoping that it is + # not located on the same filesystem as the system tmp dir. + try: + self.dir_other_fs = tempfile.mkdtemp( + dir=os.path.dirname(__file__)) + self.file_other_fs = os.path.join(self.dir_other_fs, + filename) + except OSError: + self.dir_other_fs = None + f = open(self.src_file, "wb") + try: + f.write("spam") + finally: + f.close() + + def tearDown(self): + for d in (self.src_dir, self.dst_dir, self.dir_other_fs): + try: + if d: + shutil.rmtree(d) + except: + pass + + def _check_move_file(self, src, dst, real_dst): + f = open(src, "rb") + try: + contents = f.read() + finally: + f.close() + + shutil.move(src, dst) + f = open(real_dst, "rb") + try: + self.assertEqual(contents, f.read()) + finally: + f.close() + + self.assertFalse(os.path.exists(src)) + + def _check_move_dir(self, src, dst, real_dst): + contents = sorted(os.listdir(src)) + shutil.move(src, dst) + self.assertEqual(contents, sorted(os.listdir(real_dst))) + self.assertFalse(os.path.exists(src)) + + def test_move_file(self): + # Move a file to another location on the same filesystem. + self._check_move_file(self.src_file, self.dst_file, self.dst_file) + + def test_move_file_to_dir(self): + # Move a file inside an existing dir on the same filesystem. + self._check_move_file(self.src_file, self.dst_dir, self.dst_file) + + def test_move_file_other_fs(self): + # Move a file to an existing dir on another filesystem. + if not self.dir_other_fs: + # skip + return + self._check_move_file(self.src_file, self.file_other_fs, + self.file_other_fs) + + def test_move_file_to_dir_other_fs(self): + # Move a file to another location on another filesystem. + if not self.dir_other_fs: + # skip + return + self._check_move_file(self.src_file, self.dir_other_fs, + self.file_other_fs) + + def test_move_dir(self): + # Move a dir to another location on the same filesystem. + dst_dir = tempfile.mktemp() + try: + self._check_move_dir(self.src_dir, dst_dir, dst_dir) + finally: + try: + shutil.rmtree(dst_dir) + except: + pass + + def test_move_dir_other_fs(self): + # Move a dir to another location on another filesystem. + if not self.dir_other_fs: + # skip + return + dst_dir = tempfile.mktemp(dir=self.dir_other_fs) + try: + self._check_move_dir(self.src_dir, dst_dir, dst_dir) + finally: + try: + shutil.rmtree(dst_dir) + except: + pass + + def test_move_dir_to_dir(self): + # Move a dir inside an existing dir on the same filesystem. + self._check_move_dir(self.src_dir, self.dst_dir, + os.path.join(self.dst_dir, os.path.basename(self.src_dir))) + + def test_move_dir_to_dir_other_fs(self): + # Move a dir inside an existing dir on another filesystem. + if not self.dir_other_fs: + # skip + return + self._check_move_dir(self.src_dir, self.dir_other_fs, + os.path.join(self.dir_other_fs, os.path.basename(self.src_dir))) + + def test_existing_file_inside_dest_dir(self): + # A file with the same name inside the destination dir already exists. + f = open(self.dst_file, "wb") + try: + pass + finally: + f.close() + self.assertRaises(shutil.Error, shutil.move, self.src_file, self.dst_dir) + + def test_dont_move_dir_in_itself(self): + # Moving a dir inside itself raises an Error. + dst = os.path.join(self.src_dir, "bar") + self.assertRaises(shutil.Error, shutil.move, self.src_dir, dst) + + def test_destinsrc_false_negative(self): + os.mkdir(TESTFN) + try: + for src, dst in [('srcdir', 'srcdir/dest')]: + src = os.path.join(TESTFN, src) + dst = os.path.join(TESTFN, dst) + self.assertTrue(shutil._destinsrc(src, dst), + msg='_destinsrc() wrongly concluded that ' + 'dst (%s) is not in src (%s)' % (dst, src)) + finally: + shutil.rmtree(TESTFN, ignore_errors=True) + + def test_destinsrc_false_positive(self): + os.mkdir(TESTFN) + try: + for src, dst in [('srcdir', 'src/dest'), ('srcdir', 'srcdir.new')]: + src = os.path.join(TESTFN, src) + dst = os.path.join(TESTFN, dst) + self.assertFalse(shutil._destinsrc(src, dst), + msg='_destinsrc() wrongly concluded that ' + 'dst (%s) is in src (%s)' % (dst, src)) + finally: + shutil.rmtree(TESTFN, ignore_errors=True) + + +class TestCopyFile(unittest.TestCase): + + _delete = False + + class Faux(object): + _entered = False + _exited_with = None + _raised = False + + def __init__(self, raise_in_exit=False, suppress_at_exit=True): + self._raise_in_exit = raise_in_exit + self._suppress_at_exit = suppress_at_exit + + def read(self, *args): + return '' + + def __enter__(self): + self._entered = True + + def __exit__(self, exc_type, exc_val, exc_tb): + self._exited_with = exc_type, exc_val, exc_tb + if self._raise_in_exit: + self._raised = True + raise IOError("Cannot close") + return self._suppress_at_exit + + def tearDown(self): + if self._delete: + del shutil.open + + def _set_shutil_open(self, func): + shutil.open = func + self._delete = True + + def test_w_source_open_fails(self): + def _open(filename, mode='r'): + if filename == 'srcfile': + raise IOError('Cannot open "srcfile"') + assert 0 # shouldn't reach here. + + self._set_shutil_open(_open) + + self.assertRaises(IOError, shutil.copyfile, 'srcfile', 'destfile') + + @unittest.skip("can't use the with statement and support 2.4") + def test_w_dest_open_fails(self): + + srcfile = self.Faux() + + def _open(filename, mode='r'): + if filename == 'srcfile': + return srcfile + if filename == 'destfile': + raise IOError('Cannot open "destfile"') + assert 0 # shouldn't reach here. + + self._set_shutil_open(_open) + + shutil.copyfile('srcfile', 'destfile') + self.assertTrue(srcfile._entered) + self.assertTrue(srcfile._exited_with[0] is IOError) + self.assertEqual(srcfile._exited_with[1].args, + ('Cannot open "destfile"',)) + + @unittest.skip("can't use the with statement and support 2.4") + def test_w_dest_close_fails(self): + + srcfile = self.Faux() + destfile = self.Faux(True) + + def _open(filename, mode='r'): + if filename == 'srcfile': + return srcfile + if filename == 'destfile': + return destfile + assert 0 # shouldn't reach here. + + self._set_shutil_open(_open) + + shutil.copyfile('srcfile', 'destfile') + self.assertTrue(srcfile._entered) + self.assertTrue(destfile._entered) + self.assertTrue(destfile._raised) + self.assertTrue(srcfile._exited_with[0] is IOError) + self.assertEqual(srcfile._exited_with[1].args, + ('Cannot close',)) + + @unittest.skip("can't use the with statement and support 2.4") + def test_w_source_close_fails(self): + + srcfile = self.Faux(True) + destfile = self.Faux() + + def _open(filename, mode='r'): + if filename == 'srcfile': + return srcfile + if filename == 'destfile': + return destfile + assert 0 # shouldn't reach here. + + self._set_shutil_open(_open) + + self.assertRaises(IOError, + shutil.copyfile, 'srcfile', 'destfile') + self.assertTrue(srcfile._entered) + self.assertTrue(destfile._entered) + self.assertFalse(destfile._raised) + self.assertTrue(srcfile._exited_with[0] is None) + self.assertTrue(srcfile._raised) + + +def test_suite(): + suite = unittest.TestSuite() + load = unittest.defaultTestLoader.loadTestsFromTestCase + suite.addTest(load(TestCopyFile)) + suite.addTest(load(TestMove)) + suite.addTest(load(TestShutil)) + return suite + + +if __name__ == '__main__': + unittest.main(defaultTest='test_suite') diff --git a/distutils2/_backport/tests/test_sysconfig.py b/distutils2/_backport/tests/test_sysconfig.py --- a/distutils2/_backport/tests/test_sysconfig.py +++ b/distutils2/_backport/tests/test_sysconfig.py @@ -4,7 +4,7 @@ import sys import subprocess import shutil -from copy import copy, deepcopy +from copy import copy from ConfigParser import RawConfigParser from StringIO import StringIO @@ -16,6 +16,7 @@ from distutils2.tests import unittest, TESTFN, unlink from distutils2.tests.support import EnvironGuard +from test.test_support import TESTFN, unlink try: from test.test_support import skip_unless_symlink diff --git a/distutils2/command/__init__.py b/distutils2/command/__init__.py --- a/distutils2/command/__init__.py +++ b/distutils2/command/__init__.py @@ -5,6 +5,9 @@ from distutils2.errors import DistutilsModuleError from distutils2.util import resolve_name +__all__ = ['get_command_names', 'set_command', 'get_command_class', + 'STANDARD_COMMANDS'] + _COMMANDS = { 'check': 'distutils2.command.check.check', 'test': 'distutils2.command.test.test', @@ -29,10 +32,12 @@ 'upload': 'distutils2.command.upload.upload', 'upload_docs': 'distutils2.command.upload_docs.upload_docs'} +STANDARD_COMMANDS = set(_COMMANDS) + def get_command_names(): - return sorted(_COMMANDS.keys()) """Return registered commands""" + return sorted(_COMMANDS) def set_command(location): diff --git a/distutils2/command/bdist.py b/distutils2/command/bdist.py --- a/distutils2/command/bdist.py +++ b/distutils2/command/bdist.py @@ -4,7 +4,7 @@ distribution).""" import os -from distutils2.util import get_platform +from distutils2 import util from distutils2.command.cmd import Command from distutils2.errors import DistutilsPlatformError, DistutilsOptionError @@ -29,7 +29,7 @@ "temporary directory for creating built distributions"), ('plat-name=', 'p', "platform name to embed in generated filenames " - "(default: %s)" % get_platform()), + "(default: %s)" % util.get_platform()), ('formats=', None, "formats for distribution (comma-separated list)"), ('dist-dir=', 'd', @@ -87,7 +87,7 @@ # have to finalize 'plat_name' before 'bdist_base' if self.plat_name is None: if self.skip_build: - self.plat_name = get_platform() + self.plat_name = util.get_platform() else: self.plat_name = self.get_finalized_command('build').plat_name diff --git a/distutils2/command/bdist_dumb.py b/distutils2/command/bdist_dumb.py --- a/distutils2/command/bdist_dumb.py +++ b/distutils2/command/bdist_dumb.py @@ -87,7 +87,7 @@ install.skip_build = self.skip_build install.warn_dir = 0 - logger.info("installing to %s" % self.bdist_dir) + logger.info("installing to %s", self.bdist_dir) self.run_command('install_dist') # And make an archive relative to the root of the @@ -106,11 +106,10 @@ else: if (self.distribution.has_ext_modules() and (install.install_base != install.install_platbase)): - raise DistutilsPlatformError, \ - ("can't make a dumb built distribution where " - "base and platbase are different (%s, %s)" - % (repr(install.install_base), - repr(install.install_platbase))) + raise DistutilsPlatformError( + "can't make a dumb built distribution where base and " + "platbase are different (%r, %r)" % + (install.install_base, install.install_platbase)) else: archive_root = os.path.join( self.bdist_dir, @@ -129,7 +128,7 @@ if not self.keep_temp: if self.dry_run: - logger.info('Removing %s' % self.bdist_dir) + logger.info('removing %s', self.bdist_dir) else: rmtree(self.bdist_dir) diff --git a/distutils2/command/bdist_wininst.py b/distutils2/command/bdist_wininst.py --- a/distutils2/command/bdist_wininst.py +++ b/distutils2/command/bdist_wininst.py @@ -192,7 +192,7 @@ if not self.keep_temp: if self.dry_run: - logger.info('Removing %s' % self.bdist_dir) + logger.info('removing %s', self.bdist_dir) else: rmtree(self.bdist_dir) diff --git a/distutils2/command/build_ext.py b/distutils2/command/build_ext.py --- a/distutils2/command/build_ext.py +++ b/distutils2/command/build_ext.py @@ -257,7 +257,7 @@ elif MSVC_VERSION == 8: self.library_dirs.append(os.path.join(sys.exec_prefix, - 'PC', 'VS8.0', 'win32release')) + 'PC', 'VS8.0')) elif MSVC_VERSION == 7: self.library_dirs.append(os.path.join(sys.exec_prefix, 'PC', 'VS7.1')) diff --git a/distutils2/command/build_py.py b/distutils2/command/build_py.py --- a/distutils2/command/build_py.py +++ b/distutils2/command/build_py.py @@ -8,7 +8,6 @@ import logging from glob import glob -import distutils2 from distutils2.command.cmd import Command from distutils2.errors import DistutilsOptionError, DistutilsFileError from distutils2.util import convert_path @@ -66,10 +65,9 @@ self.packages = self.distribution.packages self.py_modules = self.distribution.py_modules self.package_data = self.distribution.package_data - self.package_dir = {} - if self.distribution.package_dir: - for name, path in self.distribution.package_dir.items(): - self.package_dir[name] = convert_path(path) + self.package_dir = None + if self.distribution.package_dir is not None: + self.package_dir = convert_path(self.distribution.package_dir) self.data_files = self.get_data_files() # Ick, copied straight from install_lib.py (fancy_getopt needs a @@ -164,11 +162,13 @@ Helper function for `run()`. """ + # FIXME add tests for this method for package, src_dir, build_dir, filenames in self.data_files: for filename in filenames: target = os.path.join(build_dir, filename) + srcfile = os.path.join(src_dir, filename) self.mkpath(os.path.dirname(target)) - outf, copied = self.copy_file(os.path.join(src_dir, filename), + outf, copied = self.copy_file(srcfile, target, preserve_mode=False) if copied and srcfile in self.distribution.convert_2to3.doctests: self._doctests_2to3.append(outf) @@ -179,41 +179,14 @@ """Return the directory, relative to the top of the source distribution, where package 'package' should be found (at least according to the 'package_dir' option, if any).""" + path = package.split('.') + if self.package_dir is not None: + path.insert(0, self.package_dir) - path = package.split('.') + if len(path) > 0: + return os.path.join(*path) - if not self.package_dir: - if path: - return os.path.join(*path) - else: - return '' - else: - tail = [] - while path: - try: - pdir = self.package_dir['.'.join(path)] - except KeyError: - tail.insert(0, path[-1]) - del path[-1] - else: - tail.insert(0, pdir) - return os.path.join(*tail) - else: - # Oops, got all the way through 'path' without finding a - # match in package_dir. If package_dir defines a directory - # for the root (nameless) package, then fallback on it; - # otherwise, we might as well have not consulted - # package_dir at all, as we just use the directory implied - # by 'tail' (which should be the same as the original value - # of 'path' at this point). - pdir = self.package_dir.get('') - if pdir is not None: - tail.insert(0, pdir) - - if tail: - return os.path.join(*tail) - else: - return '' + return '' def check_package(self, package, package_dir): """Helper function for `find_package_modules()` and `find_modules()'. diff --git a/distutils2/command/check.py b/distutils2/command/check.py --- a/distutils2/command/check.py +++ b/distutils2/command/check.py @@ -52,18 +52,19 @@ def check_metadata(self): """Ensures that all required elements of metadata are supplied. - name, version, URL, (author and author_email) or - (maintainer and maintainer_email)). + name, version, URL, author Warns if any are missing. """ - missing, __ = self.distribution.metadata.check() + missing, warnings = self.distribution.metadata.check(strict=True) if missing != []: self.warn("missing required metadata: %s" % ', '.join(missing)) + for warning in warnings: + self.warn(warning) def check_restructuredtext(self): """Checks if the long string fields are reST-compliant.""" - missing, warnings = self.distribution.metadata.check() + missing, warnings = self.distribution.metadata.check(restructuredtext=True) if self.distribution.metadata.docutils_support: for warning in warnings: line = warning[-1].get('line') @@ -76,11 +77,11 @@ raise DistutilsSetupError('The docutils package is needed.') def check_hooks_resolvable(self): - for options in self.distribution.command_options.values(): + for options in self.distribution.command_options.itervalues(): for hook_kind in ("pre_hook", "post_hook"): if hook_kind not in options: break - for hook_name in options[hook_kind][1].values(): + for hook_name in options[hook_kind][1].itervalues(): try: resolve_name(hook_name) except ImportError: diff --git a/distutils2/command/clean.py b/distutils2/command/clean.py --- a/distutils2/command/clean.py +++ b/distutils2/command/clean.py @@ -48,7 +48,7 @@ # gone) if os.path.exists(self.build_temp): if self.dry_run: - logger.info('Removing %s' % self.build_temp) + logger.info('removing %s', self.build_temp) else: rmtree(self.build_temp) else: @@ -62,7 +62,7 @@ self.build_scripts): if os.path.exists(directory): if self.dry_run: - logger.info('Removing %s' % directory) + logger.info('removing %s', directory) else: rmtree(directory) else: diff --git a/distutils2/command/cmd.py b/distutils2/command/cmd.py --- a/distutils2/command/cmd.py +++ b/distutils2/command/cmd.py @@ -10,14 +10,7 @@ from distutils2.errors import DistutilsOptionError from distutils2 import util from distutils2 import logger - -# XXX see if we want to backport this -from distutils2._backport.shutil import copytree, copyfile, move - -try: - from shutil import make_archive -except ImportError: - from distutils2._backport.shutil import make_archive +from distutils2._backport.shutil import copytree, copyfile, move, make_archive class Command(object): @@ -165,7 +158,10 @@ header = "command options for '%s':" % self.get_command_name() self.announce(indent + header, level=logging.INFO) indent = indent + " " + negative_opt = getattr(self, 'negative_opt', ()) for (option, _, _) in self.user_options: + if option in negative_opt: + continue option = option.replace('-', '_') if option[-1] == "=": option = option[:-1] @@ -186,6 +182,7 @@ raise RuntimeError( "abstract method -- subclass %s must override" % self.__class__) + # TODO remove this method, just use logging.info def announce(self, msg, level=logging.INFO): """If the current verbosity level is of greater than or equal to 'level' print 'msg' to stdout. @@ -367,8 +364,9 @@ # -- External world manipulation ----------------------------------- + # TODO remove this method, just use logging.warn def warn(self, msg): - logger.warning("warning: %s: %s\n" % (self.get_command_name(), msg)) + logger.warning("warning: %s: %s\n", self.get_command_name(), msg) def execute(self, func, args, msg=None, level=1): util.execute(func, args, msg, dry_run=self.dry_run) diff --git a/distutils2/command/config.py b/distutils2/command/config.py --- a/distutils2/command/config.py +++ b/distutils2/command/config.py @@ -345,7 +345,7 @@ If head is not None, will be dumped before the file content. """ if head is None: - logger.info('%s' % filename) + logger.info(filename) else: logger.info(head) file = open(filename) diff --git a/distutils2/command/install_data.py b/distutils2/command/install_data.py --- a/distutils2/command/install_data.py +++ b/distutils2/command/install_data.py @@ -9,6 +9,8 @@ import os from distutils2.command.cmd import Command from distutils2.util import change_root, convert_path +from distutils2._backport.sysconfig import get_paths, format_value +from distutils2._backport.shutil import Error class install_data(Command): @@ -28,6 +30,7 @@ def initialize_options(self): self.install_dir = None self.outfiles = [] + self.data_files_out = [] self.root = None self.force = 0 self.data_files = self.distribution.data_files @@ -40,54 +43,38 @@ def run(self): self.mkpath(self.install_dir) - for f in self.data_files: - if isinstance(f, str): - # it's a simple file, so copy it - f = convert_path(f) - if self.warn_dir: - self.warn("setup script did not provide a directory for " - "'%s' -- installing right in '%s'" % - (f, self.install_dir)) - (out, _) = self.copy_file(f, self.install_dir) - self.outfiles.append(out) - else: - # it's a tuple with path to install to and a list of files - dir = convert_path(f[0]) - if not os.path.isabs(dir): - dir = os.path.join(self.install_dir, dir) - elif self.root: - dir = change_root(self.root, dir) - self.mkpath(dir) + for file in self.data_files.items(): + destination = convert_path(self.expand_categories(file[1])) + dir_dest = os.path.abspath(os.path.dirname(destination)) + + self.mkpath(dir_dest) + try: + (out, _) = self.copy_file(file[0], dir_dest) + except Error, e: + self.warn(e) + out = destination - if f[1] == []: - # If there are no files listed, the user must be - # trying to create an empty directory, so add the - # directory to the list of output files. - self.outfiles.append(dir) - else: - # Copy files, adding them to the list of output files. - for data in f[1]: - data = convert_path(data) - (out, _) = self.copy_file(data, dir) - self.outfiles.append(out) + self.outfiles.append(out) + self.data_files_out.append((file[0], destination)) + + def expand_categories(self, path_with_categories): + local_vars = get_paths() + local_vars['distribution.name'] = self.distribution.metadata['Name'] + expanded_path = format_value(path_with_categories, local_vars) + expanded_path = format_value(expanded_path, local_vars) + if '{' in expanded_path and '}' in expanded_path: + self.warn("Unable to expand %s, some categories may missing." % + path_with_categories) + return expanded_path def get_source_files(self): - sources = [] - for item in self.data_files: - if isinstance(item, str): # plain file - item = convert_path(item) - if os.path.isfile(item): - sources.append(item) - else: # a (dirname, filenames) tuple - dirname, filenames = item - for f in filenames: - f = convert_path(f) - if os.path.isfile(f): - sources.append(f) - return sources + return self.data_files.keys() def get_inputs(self): - return self.data_files or [] + return self.data_files.keys() def get_outputs(self): return self.outfiles + + def get_resources_out(self): + return self.data_files_out diff --git a/distutils2/command/install_dist.py b/distutils2/command/install_dist.py --- a/distutils2/command/install_dist.py +++ b/distutils2/command/install_dist.py @@ -87,6 +87,8 @@ ('record=', None, "filename in which to record a list of installed files " "(not PEP 376-compliant)"), + ('resources=', None, + "data files mapping"), # .dist-info related arguments, read by install_dist_info ('no-distinfo', None, @@ -184,12 +186,14 @@ #self.install_info = None self.record = None + self.resources = None # .dist-info related options self.no_distinfo = None self.installer = None self.requested = None self.no_record = None + self.no_resources = None # -- Option finalizing methods ------------------------------------- # (This is rather more involved than for most commands, @@ -418,13 +422,13 @@ else: opt_name = opt_name.replace('-', '_') val = getattr(self, opt_name) - logger.debug(" %s: %s" % (opt_name, val)) + logger.debug(" %s: %s", opt_name, val) def select_scheme(self, name): """Set the install directories by applying the install schemes.""" # it's the caller's problem if they supply a bad name! scheme = get_paths(name, expand=False) - for key, value in scheme.items(): + for key, value in scheme.iteritems(): if key == 'platinclude': key = 'headers' value = os.path.join(value, self.distribution.metadata['Name']) diff --git a/distutils2/command/install_distinfo.py b/distutils2/command/install_distinfo.py --- a/distutils2/command/install_distinfo.py +++ b/distutils2/command/install_distinfo.py @@ -12,12 +12,12 @@ # This file was created from the code for the former command install_egg_info -import os import csv -import re -from distutils2.command.cmd import Command from distutils2 import logger from distutils2._backport.shutil import rmtree +from distutils2.command.cmd import Command +import os +import re try: import hashlib except ImportError: @@ -39,9 +39,11 @@ "do not generate a REQUESTED file"), ('no-record', None, "do not generate a RECORD file"), + ('no-resources', None, + "do not generate a RESSOURCES list installed file") ] - boolean_options = ['requested', 'no-record'] + boolean_options = ['requested', 'no-record', 'no-resources'] negative_opt = {'no-requested': 'requested'} @@ -50,6 +52,7 @@ self.installer = None self.requested = None self.no_record = None + self.no_resources = None def finalize_options(self): self.set_undefined_options('install_dist', @@ -66,13 +69,16 @@ self.requested = True if self.no_record is None: self.no_record = False + if self.no_resources is None: + self.no_resources = False + metadata = self.distribution.metadata basename = "%s-%s.dist-info" % ( - to_filename(safe_name(metadata['Name'])), - to_filename(safe_version(metadata['Version'])), - ) + to_filename(safe_name(metadata['Name'])), + to_filename(safe_version(metadata['Version'])), + ) self.distinfo_dir = os.path.join(self.distinfo_dir, basename) self.outputs = [] @@ -113,6 +119,25 @@ f.close() self.outputs.append(requested_path) + + if not self.no_resources: + install_data = self.get_finalized_command('install_data') + if install_data.get_resources_out() != []: + resources_path = os.path.join(self.distinfo_dir, + 'RESOURCES') + logger.info('creating %s', resources_path) + f = open(resources_path, 'wb') + try: + writer = csv.writer(f, delimiter=',', + lineterminator=os.linesep, + quotechar='"') + for tuple in install_data.get_resources_out(): + writer.writerow(tuple) + + self.outputs.append(resources_path) + finally: + f.close() + if not self.no_record: record_path = os.path.join(self.distinfo_dir, 'RECORD') logger.info('creating %s', record_path) @@ -142,6 +167,7 @@ finally: f.close() + def get_outputs(self): return self.outputs diff --git a/distutils2/command/register.py b/distutils2/command/register.py --- a/distutils2/command/register.py +++ b/distutils2/command/register.py @@ -11,13 +11,12 @@ import urlparse import StringIO import logging -from warnings import warn from distutils2.command.cmd import Command from distutils2 import logger -from distutils2.util import (metadata_to_dict, read_pypirc, generate_pypirc, - DEFAULT_REPOSITORY, DEFAULT_REALM, - get_pypirc_path) +from distutils2.metadata import metadata_to_dict +from distutils2.util import (read_pypirc, generate_pypirc, DEFAULT_REPOSITORY, + DEFAULT_REALM, get_pypirc_path) class register(Command): @@ -33,8 +32,7 @@ "stop the registration if the metadata is not fully compliant") ] - boolean_options = ['show-response', 'verify', 'list-classifiers', - 'strict'] + boolean_options = ['show-response', 'list-classifiers', 'strict'] def initialize_options(self): self.repository = None @@ -48,16 +46,15 @@ self.repository = DEFAULT_REPOSITORY if self.realm is None: self.realm = DEFAULT_REALM - # setting options for the `check` subcommand - check_options = {'strict': ('register', self.strict), - 'all': ('register', 1)} - self.distribution.command_options['check'] = check_options def run(self): self.finalize_options() self._set_config() # Check the package metadata + check = self.distribution.get_command_obj('check') + check.strict = self.strict + check.all = 1 self.run_command('check') if self.dry_run: @@ -67,16 +64,6 @@ else: self.send_metadata() - def check_metadata(self): - """Deprecated API.""" - warn("distutils.command.register.check_metadata is deprecated, \ - use the check command instead", PendingDeprecationWarning) - check = self.distribution.get_command_obj('check') - check.ensure_finalized() - check.strict = self.strict - check.all = 1 - check.run() - def _set_config(self): ''' Reads the configuration file and set attributes. ''' @@ -105,7 +92,7 @@ ''' # send the info to the server and report the result code, result = self.post_to_server(self.build_post_data('verify')) - logger.info('Server response (%s): %s' % (code, result)) + logger.info('server response (%s): %s', code, result) def send_metadata(self): @@ -219,18 +206,17 @@ data['email'] = raw_input(' EMail: ') code, result = self.post_to_server(data) if code != 200: - logger.info('Server response (%s): %s' % (code, result)) + logger.info('server response (%s): %s', code, result) else: - logger.info('You will receive an email shortly.') - logger.info(('Follow the instructions in it to ' - 'complete registration.')) + logger.info('you will receive an email shortly; follow the ' + 'instructions in it to complete registration.') elif choice == '3': data = {':action': 'password_reset'} data['email'] = '' while not data['email']: data['email'] = raw_input('Your email address: ') code, result = self.post_to_server(data) - logger.info('Server response (%s): %s' % (code, result)) + logger.info('server response (%s): %s', code, result) def build_post_data(self, action): # figure the data to send - the metadata plus some additional @@ -252,7 +238,7 @@ sep_boundary = '\n--' + boundary end_boundary = sep_boundary + '--' body = StringIO.StringIO() - for key, value in data.items(): + for key, value in data.iteritems(): # handle multiple entries for the same name if not isinstance(value, (tuple, list)): value = [value] diff --git a/distutils2/command/sdist.py b/distutils2/command/sdist.py --- a/distutils2/command/sdist.py +++ b/distutils2/command/sdist.py @@ -2,10 +2,7 @@ Implements the Distutils 'sdist' command (create a source distribution).""" import os -import string import sys -from glob import glob -from warnings import warn from shutil import rmtree import re from StringIO import StringIO @@ -18,10 +15,10 @@ from distutils2.command import get_command_names from distutils2.command.cmd import Command from distutils2.errors import (DistutilsPlatformError, DistutilsOptionError, - DistutilsTemplateError, DistutilsModuleError) + DistutilsModuleError, DistutilsFileError) from distutils2.manifest import Manifest from distutils2 import logger -from distutils2.util import convert_path, resolve_name +from distutils2.util import resolve_name def show_formats(): """Print all possible values for the 'formats' option (used by @@ -214,8 +211,6 @@ def add_defaults(self): """Add all the default files to self.filelist: - - README or README.txt - - test/test*.py - all pure Python modules mentioned in setup script - all files pointed by package_data (build_py) - all files defined in data_files. @@ -225,32 +220,6 @@ Warns if (README or README.txt) or setup.py are missing; everything else is optional. """ - standards = [('README', 'README.txt')] - for fn in standards: - if isinstance(fn, tuple): - alts = fn - got_it = 0 - for fn in alts: - if os.path.exists(fn): - got_it = 1 - self.filelist.append(fn) - break - - if not got_it: - self.warn("standard file not found: should have one of " + - string.join(alts, ', ')) - else: - if os.path.exists(fn): - self.filelist.append(fn) - else: - self.warn("standard file '%s' not found" % fn) - - optional = ['test/test*.py', 'setup.cfg'] - for pattern in optional: - files = filter(os.path.isfile, glob(pattern)) - if files: - self.filelist.extend(files) - for cmd_name in get_command_names(): try: cmd_obj = self.get_finalized_command(cmd_name) @@ -319,9 +288,15 @@ logger.warn("no files to distribute -- empty manifest?") else: logger.info(msg) + + for file in self.distribution.metadata.requires_files: + if file not in files: + msg = "'%s' must be included explicitly in 'extra_files'" % file + raise DistutilsFileError(msg) + for file in files: if not os.path.isfile(file): - logger.warn("'%s' not a regular file -- skipping" % file) + logger.warn("'%s' not a regular file -- skipping", file) else: dest = os.path.join(base_dir, file) self.copy_file(file, dest, link=link) @@ -357,7 +332,7 @@ if not self.keep_temp: if self.dry_run: - logger.info('Removing %s' % base_dir) + logger.info('removing %s', base_dir) else: rmtree(base_dir) @@ -371,10 +346,8 @@ need_dir = {} for file in files: need_dir[os.path.join(base_dir, os.path.dirname(file))] = 1 - need_dirs = need_dir.keys() - need_dirs.sort() + need_dirs = sorted(need_dir) # Now create them for dir in need_dirs: self.mkpath(dir, mode, verbose=verbose, dry_run=dry_run) - diff --git a/distutils2/command/upload.py b/distutils2/command/upload.py --- a/distutils2/command/upload.py +++ b/distutils2/command/upload.py @@ -20,8 +20,8 @@ from distutils2.errors import DistutilsOptionError from distutils2.util import spawn from distutils2.command.cmd import Command -from distutils2.util import (metadata_to_dict, read_pypirc, - DEFAULT_REPOSITORY, DEFAULT_REALM) +from distutils2.metadata import metadata_to_dict +from distutils2.util import read_pypirc, DEFAULT_REPOSITORY, DEFAULT_REALM class upload(Command): @@ -140,7 +140,7 @@ body = StringIO() file_fields = ('content', 'gpg_signature') - for key, values in data.items(): + for key, values in data.iteritems(): # handle multiple entries for the same name if not isinstance(values, (tuple, list)): values = [values] diff --git a/distutils2/compat.py b/distutils2/compat.py --- a/distutils2/compat.py +++ b/distutils2/compat.py @@ -7,10 +7,13 @@ import logging +# XXX Having two classes with the same name is not a good thing. +# XXX 2to3-related code should move from util to this module + +# TODO Move common code here: PY3 (bool indicating if we're on 3.x), any, etc. + try: from distutils2.util import Mixin2to3 as _Mixin2to3 - from distutils2 import run_2to3_on_doctests - from lib2to3.refactor import get_fixers_from_package _CONVERT = True _KLASS = _Mixin2to3 except ImportError: @@ -20,6 +23,7 @@ # marking public APIs __all__ = ['Mixin2to3'] + class Mixin2to3(_KLASS): """ The base class which can be used for refactoring. When run under Python 3.0, the run_2to3 method provided by Mixin2to3 is overridden. @@ -46,19 +50,10 @@ logging.info("Converting doctests with '.py' files") _KLASS.run_2to3(self, files, doctests_only=True) - # If the following conditions are met, then convert:- - # 1. User has specified the 'convert_2to3_doctests' option. So, we - # can expect that the list 'doctests' is not empty. - # 2. The default is allow distutils2 to allow conversion of text files - # containing doctests. It is set as - # distutils2.run_2to3_on_doctests - - if doctests != [] and run_2to3_on_doctests: + if doctests != []: logging.info("Converting text files which contain doctests") _KLASS.run_2to3(self, doctests, doctests_only=True) else: # If run on Python 2.x, there is nothing to do. def _run_2to3(self, files, doctests=[], fixers=[]): pass - - diff --git a/distutils2/compiler/__init__.py b/distutils2/compiler/__init__.py --- a/distutils2/compiler/__init__.py +++ b/distutils2/compiler/__init__.py @@ -127,7 +127,7 @@ from distutils2.fancy_getopt import FancyGetopt compilers = [] - for name, cls in _COMPILERS.items(): + for name, cls in _COMPILERS.iteritems(): if isinstance(cls, str): cls = resolve_name(cls) _COMPILERS[name] = cls diff --git a/distutils2/compiler/bcppcompiler.py b/distutils2/compiler/bcppcompiler.py --- a/distutils2/compiler/bcppcompiler.py +++ b/distutils2/compiler/bcppcompiler.py @@ -191,9 +191,8 @@ self._fix_lib_args (libraries, library_dirs, runtime_library_dirs) if runtime_library_dirs: - logger.warning(("I don't know what to do with " - "'runtime_library_dirs': %s"), - str(runtime_library_dirs)) + logger.warning("don't know what to do with " + "'runtime_library_dirs': %r", runtime_library_dirs) if output_dir is not None: output_filename = os.path.join (output_dir, output_filename) diff --git a/distutils2/compiler/ccompiler.py b/distutils2/compiler/ccompiler.py --- a/distutils2/compiler/ccompiler.py +++ b/distutils2/compiler/ccompiler.py @@ -116,8 +116,8 @@ # named library files) to include on any link self.objects = [] - for key in self.executables.keys(): - self.set_executable(key, self.executables[key]) + for key, value in self.executables.iteritems(): + self.set_executable(key, value) def set_executables(self, **args): """Define the executables (and options for them) that will be run @@ -145,12 +145,12 @@ # discovered at run-time, since there are many different ways to do # basically the same things with Unix C compilers. - for key in args.keys(): + for key, value in args.iteritems(): if key not in self.executables: raise ValueError, \ "unknown executable '%s' for class %s" % \ (key, self.__class__.__name__) - self.set_executable(key, args[key]) + self.set_executable(key, value) def set_executable(self, key, value): if isinstance(value, str): @@ -850,6 +850,7 @@ # -- Utility methods ----------------------------------------------- + # TODO use logging.info def announce(self, msg, level=None): logger.debug(msg) @@ -858,6 +859,7 @@ if DEBUG: print msg + # TODO use logging.warn def warn(self, msg): sys.stderr.write("warning: %s\n" % msg) diff --git a/distutils2/compiler/cygwinccompiler.py b/distutils2/compiler/cygwinccompiler.py --- a/distutils2/compiler/cygwinccompiler.py +++ b/distutils2/compiler/cygwinccompiler.py @@ -358,27 +358,3 @@ except IOError, exc: return (CONFIG_H_UNCERTAIN, "couldn't read '%s': %s" % (fn, exc.strerror)) - -class _Deprecated_SRE_Pattern(object): - def __init__(self, pattern): - self.pattern = pattern - - def __getattr__(self, name): - if name in ('findall', 'finditer', 'match', 'scanner', 'search', - 'split', 'sub', 'subn'): - warn("'distutils.cygwinccompiler.RE_VERSION' is deprecated " - "and will be removed in the next version", DeprecationWarning) - return getattr(self.pattern, name) - -RE_VERSION = _Deprecated_SRE_Pattern(re.compile('(\d+\.\d+(\.\d+)*)')) - -def get_versions(): - """ Try to find out the versions of gcc, ld and dllwrap. - - If not possible it returns None for it. - """ - warn("'distutils.cygwinccompiler.get_versions' is deprecated " - "use 'distutils.util.get_compiler_versions' instead", - DeprecationWarning) - - return get_compiler_versions() diff --git a/distutils2/compiler/msvc9compiler.py b/distutils2/compiler/msvc9compiler.py --- a/distutils2/compiler/msvc9compiler.py +++ b/distutils2/compiler/msvc9compiler.py @@ -153,7 +153,7 @@ self.macros["$(FrameworkVersion)"] = d["version"] def sub(self, s): - for k, v in self.macros.items(): + for k, v in self.macros.iteritems(): s = s.replace(k, v) return s @@ -226,17 +226,17 @@ productdir = os.path.join(toolsdir, os.pardir, os.pardir, "VC") productdir = os.path.abspath(productdir) if not os.path.isdir(productdir): - logger.debug("%s is not a valid directory" % productdir) + logger.debug("%s is not a valid directory", productdir) return None else: - logger.debug("Env var %s is not set or invalid" % toolskey) + logger.debug("env var %s is not set or invalid", toolskey) if not productdir: - logger.debug("No productdir found") + logger.debug("no productdir found") return None vcvarsall = os.path.join(productdir, "vcvarsall.bat") if os.path.isfile(vcvarsall): return vcvarsall - logger.debug("Unable to find vcvarsall.bat") + logger.debug("unable to find vcvarsall.bat") return None def query_vcvarsall(version, arch="x86"): @@ -248,7 +248,7 @@ if vcvarsall is None: raise DistutilsPlatformError("Unable to find vcvarsall.bat") - logger.debug("Calling 'vcvarsall.bat %s' (version=%s)", arch, version) + logger.debug("calling 'vcvarsall.bat %s' (version=%s)", arch, version) popen = subprocess.Popen('"%s" %s & set' % (vcvarsall, arch), stdout=subprocess.PIPE, stderr=subprocess.PIPE) @@ -271,7 +271,7 @@ result[key] = removeDuplicates(value) if len(result) != len(interesting): - raise ValueError(str(list(result.keys()))) + raise ValueError(str(list(result))) return result diff --git a/distutils2/compiler/msvccompiler.py b/distutils2/compiler/msvccompiler.py --- a/distutils2/compiler/msvccompiler.py +++ b/distutils2/compiler/msvccompiler.py @@ -44,11 +44,10 @@ RegError = win32api.error except ImportError: - logger.info("Warning: Can't read registry to find the " - "necessary compiler setting\n" - "Make sure that Python modules _winreg, " - "win32api or win32con are installed.") - pass + logger.warning( + "can't read registry to find the necessary compiler setting;\n" + "make sure that Python modules _winreg, win32api or win32con " + "are installed.") if _can_read_reg: HKEYS = (hkey_mod.HKEY_USERS, @@ -146,7 +145,7 @@ self.macros["$(FrameworkVersion)"] = d["version"] def sub(self, s): - for k, v in self.macros.items(): + for k, v in self.macros.iteritems(): s = string.replace(s, k, v) return s @@ -653,7 +652,7 @@ if get_build_version() >= 8.0: - logger.debug("Importing new compiler from distutils.msvc9compiler") + logger.debug("importing new compiler from distutils.msvc9compiler") OldMSVCCompiler = MSVCCompiler from distutils2.compiler.msvc9compiler import MSVCCompiler # get_build_architecture not really relevant now we support cross-compile diff --git a/distutils2/compiler/unixccompiler.py b/distutils2/compiler/unixccompiler.py --- a/distutils2/compiler/unixccompiler.py +++ b/distutils2/compiler/unixccompiler.py @@ -97,9 +97,9 @@ sysroot = compiler_so[idx+1] if sysroot and not os.path.isdir(sysroot): - logger.warning("Compiling with an SDK that doesn't seem to exist: %s", - sysroot) - logger.warning("Please check your Xcode installation") + logger.warning( + "compiling with an SDK that doesn't seem to exist: %r;\n" + "please check your Xcode installation", sysroot) return compiler_so diff --git a/distutils2/config.py b/distutils2/config.py --- a/distutils2/config.py +++ b/distutils2/config.py @@ -2,14 +2,39 @@ Know how to read all config files Distutils2 uses. """ +import os.path import os import sys +import logging from ConfigParser import RawConfigParser +from shlex import split from distutils2 import logger -from distutils2.util import check_environ, resolve_name +from distutils2.errors import DistutilsOptionError +from distutils2.compiler.extension import Extension +from distutils2.util import check_environ, resolve_name, strtobool from distutils2.compiler import set_compiler from distutils2.command import set_command +from distutils2.resources import resources_dests +from distutils2.markers import interpret + + +def _pop_values(values_dct, key): + """Remove values from the dictionary and convert them as a list""" + vals_str = values_dct.pop(key, '') + if not vals_str: + return + fields = [] + for field in vals_str.split(os.linesep): + tmp_vals = field.split('--') + if (len(tmp_vals) == 2) and (not interpret(tmp_vals[1])): + continue + fields.append(tmp_vals[0]) + # Get bash options like `gcc -print-file-name=libgcc.a` + vals = split(' '.join(fields)) + if vals: + return vals + class Config(object): """Reads configuration files and work with the Distribution instance @@ -67,7 +92,8 @@ if os.path.isfile(local_file): files.append(local_file) - logger.debug("using config files: %s" % ', '.join(files)) + if logger.isEnabledFor(logging.DEBUG): + logger.debug("using config files: %s", ', '.join(files)) return files def _convert_metadata(self, name, value): @@ -76,13 +102,13 @@ return value def _multiline(self, value): - if '\n' in value: - value = [v for v in - [v.strip() for v in value.split('\n')] - if v != ''] + value = [v for v in + [v.strip() for v in value.split('\n')] + if v != ''] return value - def _read_setup_cfg(self, parser): + def _read_setup_cfg(self, parser, cfg_filename): + cfg_directory = os.path.dirname(os.path.abspath(cfg_filename)) content = {} for section in parser.sections(): content[section] = dict(parser.items(section)) @@ -98,9 +124,11 @@ # setting the metadata values if 'metadata' in content: - for key, value in content['metadata'].items(): + for key, value in content['metadata'].iteritems(): key = key.replace('_', '-') - value = self._multiline(value) + if metadata.is_multi_field(key): + value = self._multiline(value) + if key == 'project-url': value = [(label.strip(), url.strip()) for label, url in @@ -112,30 +140,46 @@ "mutually exclusive") raise DistutilsOptionError(msg) - f = open(value) # will raise if file not found - try: - value = f.read() - finally: - f.close() + if isinstance(value, list): + filenames = value + else: + filenames = value.split() + + # concatenate each files + value = '' + for filename in filenames: + # will raise if file not found + description_file = open(filename) + try: + value += description_file.read().strip() + '\n' + finally: + description_file.close() + # add filename as a required file + if filename not in metadata.requires_files: + metadata.requires_files.append(filename) + value = value.strip() key = 'description' if metadata.is_metadata_field(key): metadata[key] = self._convert_metadata(key, value) + if 'files' in content: - files = dict([(key, self._multiline(value)) - for key, value in content['files'].items()]) + def _convert(key, value): + if key not in ('packages_root',): + value = self._multiline(value) + return value + + files = dict([(key, _convert(key, value)) + for key, value in content['files'].iteritems()]) self.dist.packages = [] - self.dist.package_dir = {} + self.dist.package_dir = files.get('packages_root') packages = files.get('packages', []) if isinstance(packages, str): packages = [packages] for package in packages: - if ':' in package: - dir_, package = package.split(':') - self.dist.package_dir[package] = dir_ self.dist.packages.append(package) self.dist.py_modules = files.get('modules', []) @@ -149,22 +193,55 @@ for data in files.get('package_data', []): data = data.split('=') if len(data) != 2: - continue + continue # XXX error should never pass silently key, value = data self.dist.package_data[key.strip()] = value.strip() - self.dist.data_files = [] - for data in files.get('data_files', []): - data = data.split('=') - if len(data) != 2: - continue - key, value = data - values = [v.strip() for v in value.split(',')] - self.dist.data_files.append((key, values)) - # manifest template self.dist.extra_files = files.get('extra_files', []) + resources = [] + for rule in files.get('resources', []): + glob , destination = rule.split('=', 1) + rich_glob = glob.strip().split(' ', 1) + if len(rich_glob) == 2: + prefix, suffix = rich_glob + else: + assert len(rich_glob) == 1 + prefix = '' + suffix = glob + if destination == '': + destination = None + resources.append((prefix.strip(), suffix.strip(), destination.strip())) + self.dist.data_files = resources_dests(cfg_directory, resources) + + ext_modules = self.dist.ext_modules + for section_key in content: + labels = section_key.split('=') + if (len(labels) == 2) and (labels[0] == 'extension'): + # labels[1] not used from now but should be implemented + # for extension build dependency + values_dct = content[section_key] + ext_modules.append(Extension( + values_dct.pop('name'), + _pop_values(values_dct, 'sources'), + _pop_values(values_dct, 'include_dirs'), + _pop_values(values_dct, 'define_macros'), + _pop_values(values_dct, 'undef_macros'), + _pop_values(values_dct, 'library_dirs'), + _pop_values(values_dct, 'libraries'), + _pop_values(values_dct, 'runtime_library_dirs'), + _pop_values(values_dct, 'extra_objects'), + _pop_values(values_dct, 'extra_compile_args'), + _pop_values(values_dct, 'extra_link_args'), + _pop_values(values_dct, 'export_symbols'), + _pop_values(values_dct, 'swig_opts'), + _pop_values(values_dct, 'depends'), + values_dct.pop('language', None), + values_dct.pop('optional', None), + **values_dct + )) + def parse_config_files(self, filenames=None): if filenames is None: filenames = self.find_config_files() @@ -174,11 +251,11 @@ parser = RawConfigParser() for filename in filenames: - logger.debug(" reading %s" % filename) + logger.debug(" reading %s", filename) parser.read(filename) if os.path.split(filename)[-1] == 'setup.cfg': - self._read_setup_cfg(parser) + self._read_setup_cfg(parser, filename) for section in parser.sections(): if section == 'global': @@ -223,7 +300,7 @@ # If there was a "global" section in the config file, use it # to set Distribution options. if 'global' in self.dist.command_options: - for (opt, (src, val)) in self.dist.command_options['global'].items(): + for (opt, (src, val)) in self.dist.command_options['global'].iteritems(): alias = self.dist.negative_opt.get(opt) try: if alias: diff --git a/distutils2/depgraph.py b/distutils2/depgraph.py --- a/distutils2/depgraph.py +++ b/distutils2/depgraph.py @@ -66,18 +66,28 @@ """ self.missing[distribution].append(requirement) + def _repr_dist(self, dist): + return '%s %s' % (dist.name, dist.metadata['Version']) + + def repr_node(self, dist, level=1): + """Prints only a subgraph""" + output = [] + output.append(self._repr_dist(dist)) + for other, label in self.adjacency_list[dist]: + dist = self._repr_dist(other) + if label is not None: + dist = '%s [%s]' % (dist, label) + output.append(' ' * level + '%s' % dist) + suboutput = self.repr_node(other, level + 1) + subs = suboutput.split('\n') + output.extend(subs[1:]) + return '\n'.join(output) + def __repr__(self): """Representation of the graph""" - def _repr_dist(dist): - return '%s %s' % (dist.name, dist.metadata['Version']) output = [] for dist, adjs in self.adjacency_list.iteritems(): - output.append(_repr_dist(dist)) - for other, label in adjs: - dist = _repr_dist(other) - if label is not None: - dist = '%s [%s]' % (dist, label) - output.append(' %s' % dist) + output.append(self.repr_node(dist)) return '\n'.join(output) @@ -123,13 +133,15 @@ :rtype: an :class:`DependencyGraph` instance """ graph = DependencyGraph() - provided = {} # maps names to lists of (version, dist) tuples - dists = list(dists) # maybe use generator_tools in future + provided = {} # maps names to lists of (version, dist) tuples + dists = list(dists) # maybe use generator_tools in future # first, build the graph and find out the provides for dist in dists: graph.add_distribution(dist) - provides = dist.metadata['Provides-Dist'] + dist.metadata['Provides'] + provides = (dist.metadata['Provides-Dist'] + + dist.metadata['Provides'] + + ['%s (%s)' % (dist.name, dist.metadata['Version'])]) for p in provides: comps = p.strip().rsplit(" ", 1) @@ -140,7 +152,7 @@ if len(version) < 3 or version[0] != '(' or version[-1] != ')': raise DistutilsError('Distribution %s has ill formed' \ 'provides field: %s' % (dist.name, p)) - version = version[1:-1] # trim off parenthesis + version = version[1:-1] # trim off parenthesis if not name in provided: provided[name] = [] provided[name].append((version, dist)) @@ -149,7 +161,13 @@ for dist in dists: requires = dist.metadata['Requires-Dist'] + dist.metadata['Requires'] for req in requires: - predicate = VersionPredicate(req) + try: + predicate = VersionPredicate(req) + except IrrationalVersionError: + # XXX compat-mode if cannot read the version + name = req.split()[0] + predicate = VersionPredicate(name) + name = predicate.name if not name in provided: @@ -161,7 +179,7 @@ match = predicate.match(version) except IrrationalVersionError: # XXX small compat-mode - if version.split(' ' ) == 1: + if version.split(' ') == 1: match = True else: match = False @@ -172,7 +190,6 @@ break if not matched: graph.add_missing(dist, req) - return graph @@ -187,8 +204,8 @@ raise ValueError('The given distribution is not a member of the list') graph = generate_graph(dists) - dep = [dist] # dependent distributions - fringe = graph.reverse_list[dist] # list of nodes we should inspect + dep = [dist] # dependent distributions + fringe = graph.reverse_list[dist] # list of nodes we should inspect while not len(fringe) == 0: node = fringe.pop() @@ -197,9 +214,10 @@ if not prev in dep: fringe.append(prev) - dep.pop(0) # remove dist from dep, was there to prevent infinite loops + dep.pop(0) # remove dist from dep, was there to prevent infinite loops return dep + def main(): from distutils2._backport.pkgutil import get_distributions tempout = StringIO() diff --git a/distutils2/dist.py b/distutils2/dist.py --- a/distutils2/dist.py +++ b/distutils2/dist.py @@ -5,7 +5,6 @@ """ -import sys import os import re import warnings @@ -16,9 +15,9 @@ from distutils2.fancy_getopt import FancyGetopt from distutils2.util import strtobool, resolve_name from distutils2 import logger -from distutils2.metadata import DistributionMetadata +from distutils2.metadata import Metadata from distutils2.config import Config -from distutils2.command import get_command_class +from distutils2.command import get_command_class, STANDARD_COMMANDS # Regex to define acceptable Distutils command names. This is not *quite* # the same as a Python NAME -- I don't allow leading underscores. The fact @@ -146,7 +145,7 @@ # forth) in a separate object -- we're getting to have enough # information here (and enough command-line options) that it's # worth it. - self.metadata = DistributionMetadata() + self.metadata = Metadata() # 'cmdclass' maps command names to class objects, so we # can 1) quickly figure out which class to instantiate when @@ -192,7 +191,7 @@ self.include_dirs = [] self.extra_path = None self.scripts = [] - self.data_files = [] + self.data_files = {} self.password = '' self.use_2to3 = False self.convert_2to3_doctests = [] @@ -228,14 +227,14 @@ options = attrs.get('options') if options is not None: del attrs['options'] - for (command, cmd_options) in options.items(): + for (command, cmd_options) in options.iteritems(): opt_dict = self.get_option_dict(command) - for (opt, val) in cmd_options.items(): + for (opt, val) in cmd_options.iteritems(): opt_dict[opt] = ("setup script", val) # Now work on the rest of the attributes. Any attribute that's # not already defined is invalid! - for key, val in attrs.items(): + for key, val in attrs.iteritems(): if self.metadata.is_metadata_field(key): self.metadata[key] = val elif hasattr(self, key): @@ -280,8 +279,7 @@ from pprint import pformat if commands is None: # dump all command option dicts - commands = self.command_options.keys() - commands.sort() + commands = sorted(self.command_options) if header is not None: self.announce(indent + header) @@ -295,10 +293,10 @@ opt_dict = self.command_options.get(cmd_name) if opt_dict is None: self.announce(indent + - "no option dict for '%s' command" % cmd_name) + "no option dict for %r command" % cmd_name) else: self.announce(indent + - "option dict for '%s' command:" % cmd_name) + "option dict for %r command:" % cmd_name) out = pformat(opt_dict) for line in out.split('\n'): self.announce(indent + " " + line) @@ -403,7 +401,7 @@ # Pull the current command from the head of the command line command = args[0] if not command_re.match(command): - raise SystemExit("invalid command name '%s'" % command) + raise SystemExit("invalid command name %r" % command) self.commands.append(command) # Dig up the command class that implements this command, so we @@ -422,15 +420,15 @@ if hasattr(cmd_class, meth): continue raise DistutilsClassError( - 'command "%s" must implement "%s"' % (cmd_class, meth)) + 'command %r must implement %r' % (cmd_class, meth)) # Also make sure that the command object provides a list of its # known options. if not (hasattr(cmd_class, 'user_options') and isinstance(cmd_class.user_options, list)): raise DistutilsClassError( - ("command class %s must provide " - "'user_options' attribute (a list of tuples)") % cmd_class) + "command class %s must provide " + "'user_options' attribute (a list of tuples)" % cmd_class) # If the command class has a list of negative alias options, # merge it in with the global negative aliases. @@ -468,7 +466,7 @@ func() else: raise DistutilsClassError( - "invalid help function %r for help option '%s': " + "invalid help function %r for help option %r: " "must be a callable object (function, etc.)" % (func, help_option)) @@ -478,7 +476,7 @@ # Put the options from the command line into their official # holding pen, the 'command_options' dictionary. opt_dict = self.get_option_dict(command) - for (name, value) in vars(opts).items(): + for (name, value) in vars(opts).iteritems(): opt_dict[name] = ("command line", value) return args @@ -539,7 +537,7 @@ fix_help_options(cls.help_options)) else: parser.set_option_table(cls.user_options) - parser.print_help("Options for '%s' command:" % cls.__name__) + parser.print_help("Options for %r command:" % cls.__name__) print('') print(gen_usage(self.script_name)) @@ -591,31 +589,26 @@ print(header + ":") for cmd in commands: - cls = self.cmdclass.get(cmd) - if not cls: - cls = get_command_class(cmd) - try: - description = cls.description - except AttributeError: - description = "(no description available)" + cls = self.cmdclass.get(cmd) or get_command_class(cmd) + description = getattr(cls, 'description', + '(no description available)') print(" %-*s %s" % (max_length, cmd, description)) def _get_command_groups(self): """Helper function to retrieve all the command class names divided - into standard commands (listed in distutils2.command.__all__) - and extra commands (given in self.cmdclass and not standard - commands). + into standard commands (listed in + distutils2.command.STANDARD_COMMANDS) and extra commands (given in + self.cmdclass and not standard commands). """ - from distutils2.command import __all__ as std_commands extra_commands = [cmd for cmd in self.cmdclass - if cmd not in std_commands] - return std_commands, extra_commands + if cmd not in STANDARD_COMMANDS] + return STANDARD_COMMANDS, extra_commands def print_commands(self): """Print out a help message listing all available commands with a description of each. The list is divided into standard commands - (listed in distutils2.command.__all__) and extra commands + (listed in distutils2.command.STANDARD_COMMANDS) and extra commands (given in self.cmdclass and not standard commands). The descriptions come from the command class attribute 'description'. @@ -635,10 +628,8 @@ "Extra commands", max_length) - # -- Command class/object methods ---------------------------------- - def get_command_obj(self, command, create=1): """Return the command object for 'command'. Normally this object is cached on a previous call to 'get_command_obj()'; if no command @@ -648,7 +639,7 @@ cmd_obj = self.command_obj.get(command) if not cmd_obj and create: logger.debug("Distribution.get_command_obj(): " \ - "creating '%s' command object" % command) + "creating %r command object", command) cls = get_command_class(command) cmd_obj = self.command_obj[command] = cls(self) @@ -678,10 +669,10 @@ if option_dict is None: option_dict = self.get_option_dict(command_name) - logger.debug(" setting options for '%s' command:" % command_name) + logger.debug(" setting options for %r command:", command_name) - for (option, (source, value)) in option_dict.items(): - logger.debug(" %s = %s (from %s)" % (option, value, source)) + for (option, (source, value)) in option_dict.iteritems(): + logger.debug(" %s = %s (from %s)", option, value, source) try: bool_opts = [x.replace('-', '_') for x in command_obj.boolean_options] @@ -702,7 +693,7 @@ setattr(command_obj, option, value) else: raise DistutilsOptionError( - "error in %s: command '%s' has no such option '%s'" % + "error in %s: command %r has no such option %r" % (source, command_name, option)) except ValueError, msg: raise DistutilsOptionError(msg) diff --git a/distutils2/errors.py b/distutils2/errors.py --- a/distutils2/errors.py +++ b/distutils2/errors.py @@ -9,7 +9,6 @@ symbols whose names start with "Distutils" and end with "Error".""" - class DistutilsError(Exception): """The root of all Distutils evil.""" @@ -110,6 +109,10 @@ """Attempt to process an unknown file type.""" +class MetadataMissingError(DistutilsError): + """A required metadata is missing""" + + class MetadataConflictError(DistutilsError): """Attempt to read or write metadata fields that are conflictual.""" @@ -131,3 +134,11 @@ This guard can be disabled by setting that option False. """ pass + + +class InstallationException(Exception): + """Base exception for installation scripts""" + + +class InstallationConflict(InstallationException): + """Raised when a conflict is detected""" diff --git a/distutils2/fancy_getopt.py b/distutils2/fancy_getopt.py --- a/distutils2/fancy_getopt.py +++ b/distutils2/fancy_getopt.py @@ -26,6 +26,7 @@ # For recognizing "negative alias" options, eg. "quiet=!verbose" neg_alias_re = re.compile("^(%s)=!(%s)$" % (longopt_pat, longopt_pat)) + class FancyGetopt(object): """Wrapper around the standard 'getopt()' module that provides some handy extra functionality: @@ -37,7 +38,6 @@ --quiet is the "negative alias" of --verbose, then "--quiet" on the command line sets 'verbose' to false """ - def __init__(self, option_table=None): # The option table is (currently) a list of tuples. The @@ -79,51 +79,47 @@ # but expands short options, converts aliases, etc. self.option_order = [] - # __init__ () - - - def _build_index (self): + def _build_index(self): self.option_index.clear() for option in self.option_table: self.option_index[option[0]] = option - def set_option_table (self, option_table): + def set_option_table(self, option_table): self.option_table = option_table self._build_index() - def add_option (self, long_option, short_option=None, help_string=None): + def add_option(self, long_option, short_option=None, help_string=None): if long_option in self.option_index: - raise DistutilsGetoptError, \ - "option conflict: already an option '%s'" % long_option + raise DistutilsGetoptError( + "option conflict: already an option '%s'" % long_option) else: option = (long_option, short_option, help_string) self.option_table.append(option) self.option_index[long_option] = option - - def has_option (self, long_option): + def has_option(self, long_option): """Return true if the option table for this parser has an option with long name 'long_option'.""" return long_option in self.option_index - def _check_alias_dict (self, aliases, what): + def _check_alias_dict(self, aliases, what): assert isinstance(aliases, dict) - for (alias, opt) in aliases.items(): + for (alias, opt) in aliases.iteritems(): if alias not in self.option_index: - raise DistutilsGetoptError, \ + raise DistutilsGetoptError( ("invalid %s '%s': " - "option '%s' not defined") % (what, alias, alias) + "option '%s' not defined") % (what, alias, alias)) if opt not in self.option_index: - raise DistutilsGetoptError, \ + raise DistutilsGetoptError( ("invalid %s '%s': " - "aliased option '%s' not defined") % (what, alias, opt) + "aliased option '%s' not defined") % (what, alias, opt)) - def set_aliases (self, alias): + def set_aliases(self, alias): """Set the aliases for this option parser.""" self._check_alias_dict(alias, "alias") self.alias = alias - def set_negative_aliases (self, negative_alias): + def set_negative_aliases(self, negative_alias): """Set the negative aliases for this option parser. 'negative_alias' should be a dictionary mapping option names to option names, both the key and value must already be defined @@ -131,8 +127,7 @@ self._check_alias_dict(negative_alias, "negative alias") self.negative_alias = negative_alias - - def _grok_option_table (self): + def _grok_option_table(self): """Populate the various data structures that keep tabs on the option table. Called by 'getopt()' before it can do anything worthwhile. @@ -151,19 +146,19 @@ else: # the option table is part of the code, so simply # assert that it is correct - raise ValueError, "invalid option tuple: %r" % (option,) + raise ValueError("invalid option tuple: %r" % option) # Type- and value-check the option names if not isinstance(long, str) or len(long) < 2: - raise DistutilsGetoptError, \ + raise DistutilsGetoptError( ("invalid long option '%s': " - "must be a string of length >= 2") % long + "must be a string of length >= 2") % long) if (not ((short is None) or (isinstance(short, str) and len(short) == 1))): - raise DistutilsGetoptError, \ + raise DistutilsGetoptError( ("invalid short option '%s': " - "must a single character or None") % short + "must a single character or None") % short) self.repeat[long] = repeat self.long_opts.append(long) @@ -180,12 +175,12 @@ alias_to = self.negative_alias.get(long) if alias_to is not None: if self.takes_arg[alias_to]: - raise DistutilsGetoptError, \ + raise DistutilsGetoptError( ("invalid negative alias '%s': " "aliased option '%s' takes a value") % \ - (long, alias_to) + (long, alias_to)) - self.long_opts[-1] = long # XXX redundant?! + self.long_opts[-1] = long # XXX redundant?! self.takes_arg[long] = 0 else: @@ -196,32 +191,26 @@ alias_to = self.alias.get(long) if alias_to is not None: if self.takes_arg[long] != self.takes_arg[alias_to]: - raise DistutilsGetoptError, \ + raise DistutilsGetoptError( ("invalid alias '%s': inconsistent with " "aliased option '%s' (one of them takes a value, " - "the other doesn't") % (long, alias_to) - + "the other doesn't") % (long, alias_to)) # Now enforce some bondage on the long option name, so we can # later translate it to an attribute name on some object. Have # to do this a bit late to make sure we've removed any trailing # '='. if not longopt_re.match(long): - raise DistutilsGetoptError, \ + raise DistutilsGetoptError( ("invalid long option name '%s' " + - "(must be letters, numbers, hyphens only") % long + "(must be letters, numbers, hyphens only") % long) self.attr_name[long] = long.replace('-', '_') if short: self.short_opts.append(short) self.short2long[short[0]] = long - # for option_table - - # _grok_option_table() - - - def getopt (self, args=None, object=None): + def getopt(self, args=None, object=None): """Parse command-line options in args. Store as attributes on object. If 'args' is None or not supplied, uses 'sys.argv[1:]'. If @@ -246,10 +235,10 @@ try: opts, args = getopt.getopt(args, short_opts, self.long_opts) except getopt.error, msg: - raise DistutilsArgError, msg + raise DistutilsArgError(msg) for opt, val in opts: - if len(opt) == 2 and opt[0] == '-': # it's a short option + if len(opt) == 2 and opt[0] == '-': # it's a short option opt = self.short2long[opt[1]] else: assert len(opt) > 2 and opt[:2] == '--' @@ -282,21 +271,17 @@ else: return args - # getopt() - - - def get_option_order (self): + def get_option_order(self): """Returns the list of (option, value) tuples processed by the previous run of 'getopt()'. Raises RuntimeError if 'getopt()' hasn't been called yet. """ if self.option_order is None: - raise RuntimeError, "'getopt()' hasn't been called yet" - else: - return self.option_order + raise RuntimeError("'getopt()' hasn't been called yet") + return self.option_order - def generate_help (self, header=None): + def generate_help(self, header=None): """Generate help text (a list of strings, one per suggested line of output) from the option table for this FancyGetopt object. """ @@ -374,32 +359,87 @@ for l in text[1:]: lines.append(big_indent + l) - # for self.option_table - return lines - # generate_help () - - def print_help (self, header=None, file=None): + def print_help(self, header=None, file=None): if file is None: file = sys.stdout for line in self.generate_help(header): file.write(line + "\n") -# class FancyGetopt - -def fancy_getopt (options, negative_opt, object, args): +def fancy_getopt(options, negative_opt, object, args): parser = FancyGetopt(options) parser.set_negative_aliases(negative_opt) return parser.getopt(args, object) + +WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace)) + + +def wrap_text(text, width): + """wrap_text(text : string, width : int) -> [string] + + Split 'text' into multiple lines of no more than 'width' characters + each, and return the list of strings that results. + """ + + if text is None: + return [] + if len(text) <= width: + return [text] + + text = string.expandtabs(text) + text = string.translate(text, WS_TRANS) + chunks = re.split(r'( +|-+)', text) + chunks = filter(None, chunks) # ' - ' results in empty strings + lines = [] + + while chunks: + + cur_line = [] # list of chunks (to-be-joined) + cur_len = 0 # length of current line + + while chunks: + l = len(chunks[0]) + if cur_len + l <= width: # can squeeze (at least) this chunk in + cur_line.append(chunks[0]) + del chunks[0] + cur_len = cur_len + l + else: # this line is full + # drop last chunk if all space + if cur_line and cur_line[-1][0] == ' ': + del cur_line[-1] + break + + if chunks: # any chunks left to process? + + # if the current line is still empty, then we had a single + # chunk that's too big too fit on a line -- so we break + # down and break it up at the line width + if cur_len == 0: + cur_line.append(chunks[0][0:width]) + chunks[0] = chunks[0][width:] + + # all-whitespace chunks at the end of a line can be discarded + # (and we know from the re.split above that if a chunk has + # *any* whitespace, it is *all* whitespace) + if chunks[0][0] == ' ': + del chunks[0] + + # and store this line in the list-of-all-lines -- as a single + # string, of course! + lines.append(string.join(cur_line, '')) + + return lines + + class OptionDummy(object): """Dummy class just used as a place to hold command-line option values as instance attributes.""" - def __init__ (self, options=[]): + def __init__(self, options=[]): """Create a new OptionDummy instance. The attributes listed in 'options' will be initialized to None.""" for opt in options: diff --git a/distutils2/index/__init__.py b/distutils2/index/__init__.py --- a/distutils2/index/__init__.py +++ b/distutils2/index/__init__.py @@ -6,6 +6,6 @@ 'xmlrpc', 'dist', 'errors', - 'mirrors',] + 'mirrors'] from dist import ReleaseInfo, ReleasesList, DistInfo diff --git a/distutils2/index/dist.py b/distutils2/index/dist.py --- a/distutils2/index/dist.py +++ b/distutils2/index/dist.py @@ -17,19 +17,19 @@ import urllib import urlparse import zipfile - try: import hashlib except ImportError: from distutils2._backport import hashlib +from distutils2._backport.shutil import unpack_archive from distutils2.errors import IrrationalVersionError from distutils2.index.errors import (HashDoesNotMatch, UnsupportedHashName, CantParseArchiveName) from distutils2.version import (suggest_normalized_version, NormalizedVersion, get_version_predicate) -from distutils2.metadata import DistributionMetadata -from distutils2.util import untar_file, unzip_file, splitext +from distutils2.metadata import Metadata +from distutils2.util import splitext __all__ = ['ReleaseInfo', 'DistInfo', 'ReleasesList', 'get_infos_from_url'] @@ -66,7 +66,7 @@ self._version = None self.version = version if metadata: - self.metadata = DistributionMetadata(mapping=metadata) + self.metadata = Metadata(mapping=metadata) else: self.metadata = None self.dists = {} @@ -101,7 +101,7 @@ def is_final(self): """proxy to version.is_final""" return self.version.is_final - + def fetch_distributions(self): if self.dists is None: self._index.get_distributions(self.name, '%s' % self.version) @@ -109,7 +109,8 @@ self.dists = {} return self.dists - def add_distribution(self, dist_type='sdist', python_version=None, **params): + def add_distribution(self, dist_type='sdist', python_version=None, + **params): """Add distribution informations to this release. If distribution information is already set for this distribution type, add the given url paths to the distribution. This can be useful while @@ -127,7 +128,7 @@ self.dists[dist_type] = DistInfo(self, dist_type, index=self._index, **params) if python_version: - self.dists[dist_type].python_version = python_version + self.dists[dist_type].python_version = python_version def get_distribution(self, dist_type=None, prefer_source=True): """Return a distribution. @@ -149,6 +150,16 @@ dist = self.dists.values()[0] return dist + def unpack(self, path=None, prefer_source=True): + """Unpack the distribution to the given path. + + If not destination is given, creates a temporary location. + + Returns the location of the extracted files (root). + """ + return self.get_distribution(prefer_source=prefer_source)\ + .unpack(path=path) + def download(self, temp_path=None, prefer_source=True): """Download the distribution, using the requirements. @@ -164,7 +175,7 @@ def set_metadata(self, metadata): if not self.metadata: - self.metadata = DistributionMetadata() + self.metadata = Metadata() self.metadata.update(metadata) def __getitem__(self, item): @@ -302,7 +313,7 @@ def unpack(self, path=None): """Unpack the distribution to the given path. - + If not destination is given, creates a temporary location. Returns the location of the extracted files (root). @@ -310,20 +321,11 @@ if not self._unpacked_dir: if path is None: path = tempfile.mkdtemp() - - filename = self.download() + + filename = self.download(path) content_type = mimetypes.guess_type(filename)[0] - - if (content_type == 'application/zip' - or filename.endswith('.zip') - or filename.endswith('.pybundle') - or zipfile.is_zipfile(filename)): - unzip_file(filename, path, flatten=not filename.endswith('.pybundle')) - elif (content_type == 'application/x-gzip' - or tarfile.is_tarfile(filename) - or splitext(filename)[1].lower() in ('.tar', '.tar.gz', '.tar.bz2', '.tgz', '.tbz')): - untar_file(filename, path) - self._unpacked_dir = path + self._unpacked_dir = unpack_archive(filename, path) + return self._unpacked_dir def _check_md5(self, filename): @@ -340,6 +342,9 @@ % (hashval.hexdigest(), expected_hashval)) def __repr__(self): + if self.release is None: + return "" % self.dist_type + return "<%s %s %s>" % ( self.release.name, self.release.version, self.dist_type or "") @@ -351,7 +356,7 @@ """ def __init__(self, name, releases=None, contains_hidden=False, index=None): self.set_index(index) - self.releases = [] + self.releases = [] self.name = name self.contains_hidden = contains_hidden if releases: @@ -376,6 +381,8 @@ """ predicate = get_version_predicate(requirements) releases = self.filter(predicate) + if len(releases) == 0: + return None releases.sort_releases(prefer_final, reverse=True) return releases[0] @@ -404,11 +411,11 @@ raise ValueError("%s is not the same project than %s" % (release.name, self.name)) version = '%s' % release.version - + if not version in self.get_versions(): # append only if not already exists self.releases.append(release) - for dist in release.dists.values(): + for dist in release.dists.itervalues(): for url in dist.urls: self.add_release(version, dist.dist_type, **url) else: @@ -445,8 +452,7 @@ reverse=reverse, *args, **kwargs) def get_release(self, version): - """Return a release from it's version. - """ + """Return a release from its version.""" matches = [r for r in self.releases if "%s" % r.version == version] if len(matches) != 1: raise KeyError(version) diff --git a/distutils2/index/mirrors.py b/distutils2/index/mirrors.py --- a/distutils2/index/mirrors.py +++ b/distutils2/index/mirrors.py @@ -1,4 +1,4 @@ -"""Utilities related to the mirror infrastructure defined in PEP 381. +"""Utilities related to the mirror infrastructure defined in PEP 381. See http://www.python.org/dev/peps/pep-0381/ """ @@ -7,6 +7,7 @@ DEFAULT_MIRROR_URL = "last.pypi.python.org" + def get_mirrors(hostname=None): """Return the list of mirrors from the last record found on the DNS entry:: @@ -19,7 +20,7 @@ """ if hostname is None: hostname = DEFAULT_MIRROR_URL - + # return the last mirror registered on PyPI. try: hostname = socket.gethostbyname_ex(hostname)[0] @@ -30,23 +31,24 @@ # determine the list from the last one. return ["%s.%s" % (s, end_letter[1]) for s in string_range(end_letter[0])] + def string_range(last): """Compute the range of string between "a" and last. - + This works for simple "a to z" lists, but also for "a to zz" lists. """ for k in range(len(last)): - for x in product(ascii_lowercase, repeat=k+1): + for x in product(ascii_lowercase, repeat=(k + 1)): result = ''.join(x) yield result if result == last: return + def product(*args, **kwds): pools = map(tuple, args) * kwds.get('repeat', 1) result = [[]] for pool in pools: - result = [x+[y] for x in result for y in pool] + result = [x + [y] for x in result for y in pool] for prod in result: yield tuple(prod) - diff --git a/distutils2/index/simple.py b/distutils2/index/simple.py --- a/distutils2/index/simple.py +++ b/distutils2/index/simple.py @@ -1,7 +1,7 @@ """index.simple Contains the class "SimpleIndexCrawler", a simple spider to find and retrieve -distributions on the Python Package Index, using it's "simple" API, +distributions on the Python Package Index, using its "simple" API, avalaible at http://pypi.python.org/simple/ """ from fnmatch import translate @@ -11,9 +11,9 @@ import sys import urllib2 import urlparse -import logging import os +from distutils2 import logger from distutils2.index.base import BaseClient from distutils2.index.dist import (ReleasesList, EXTENSIONS, get_infos_from_url, MD5_HASH) @@ -21,7 +21,7 @@ UnableToDownload, CantParseArchiveName, ReleaseNotFound, ProjectNotFound) from distutils2.index.mirrors import get_mirrors -from distutils2.metadata import DistributionMetadata +from distutils2.metadata import Metadata from distutils2.version import get_version_predicate from distutils2 import __version__ as __distutils2_version__ @@ -167,6 +167,7 @@ if predicate.name.lower() in self._projects and not force_update: return self._projects.get(predicate.name.lower()) prefer_final = self._get_prefer_final(prefer_final) + logger.info('reading info on PyPI about %s', predicate.name) self._process_index_page(predicate.name) if predicate.name.lower() not in self._projects: @@ -201,7 +202,7 @@ if not release._metadata: location = release.get_distribution().unpack() pkg_info = os.path.join(location, 'PKG-INFO') - release._metadata = DistributionMetadata(pkg_info) + release._metadata = Metadata(pkg_info) return release def _switch_to_next_mirror(self): @@ -304,8 +305,8 @@ infos = get_infos_from_url(link, project_name, is_external=not self.index_url in url) except CantParseArchiveName, e: - logging.warning("version has not been parsed: %s" - % e) + logger.warning( + "version has not been parsed: %s", e) else: self._register_release(release_info=infos) else: diff --git a/distutils2/index/wrapper.py b/distutils2/index/wrapper.py --- a/distutils2/index/wrapper.py +++ b/distutils2/index/wrapper.py @@ -1,5 +1,4 @@ -import xmlrpc -import simple +from distutils2.index import simple, xmlrpc _WRAPPER_MAPPINGS = {'get_release': 'simple', 'get_releases': 'simple', @@ -10,6 +9,7 @@ _WRAPPER_INDEXES = {'xmlrpc': xmlrpc.Client, 'simple': simple.Crawler} + def switch_index_if_fails(func, wrapper): """Decorator that switch of index (for instance from xmlrpc to simple) if the first mirror return an empty list or raises an exception. @@ -58,7 +58,7 @@ # instantiate the classes and set their _project attribute to the one # of the wrapper. - for name, cls in index_classes.items(): + for name, cls in index_classes.iteritems(): obj = self._indexes.setdefault(name, cls()) obj._projects = self._projects obj._index = self @@ -83,11 +83,11 @@ other_indexes = [i for i in self._indexes if i != self._default_index] for index in other_indexes: - real_method = getattr(self._indexes[index], method_name, None) + real_method = getattr(self._indexes[index], method_name, + None) if real_method: break if real_method: return switch_index_if_fails(real_method, self) else: raise AttributeError("No index have attribute '%s'" % method_name) - diff --git a/distutils2/index/xmlrpc.py b/distutils2/index/xmlrpc.py --- a/distutils2/index/xmlrpc.py +++ b/distutils2/index/xmlrpc.py @@ -103,7 +103,6 @@ project.sort_releases(prefer_final) return project - def get_distributions(self, project_name, version): """Grab informations about distributions from XML-RPC. @@ -127,10 +126,17 @@ return release def get_metadata(self, project_name, version): - """Retreive project metadatas. + """Retrieve project metadata. Return a ReleaseInfo object, with metadata informations filled in. """ + # to be case-insensitive, get the informations from the XMLRPC API + projects = [d['name'] for d in + self.proxy.search({'name': project_name}) + if d['name'].lower() == project_name] + if len(projects) > 0: + project_name = projects[0] + metadata = self.proxy.release_data(project_name, version) project = self._get_project(project_name) if version not in project.get_versions(): @@ -158,9 +164,16 @@ p['version'], metadata={'summary': p['summary']}, index=self._index)) except IrrationalVersionError, e: - logging.warn("Irrational version error found: %s" % e) + logging.warn("Irrational version error found: %s", e) + return [self._projects[p['name'].lower()] for p in projects] - return [self._projects[p['name'].lower()] for p in projects] + def get_all_projects(self): + """Return the list of all projects registered in the package index""" + projects = self.proxy.list_packages() + for name in projects: + self.get_releases(name, show_hidden=True) + + return [self._projects[name.lower()] for name in set(projects)] @property def proxy(self): diff --git a/distutils2/install.py b/distutils2/install.py --- a/distutils2/install.py +++ b/distutils2/install.py @@ -1,14 +1,3 @@ -from tempfile import mkdtemp -import logging -import shutil -import os -import errno - -from distutils2._backport.pkgutil import get_distributions -from distutils2.depgraph import generate_graph -from distutils2.index import wrapper -from distutils2.index.errors import ProjectNotFound, ReleaseNotFound - """Provides installations scripts. The goal of this script is to install a release from the indexes (eg. @@ -17,26 +6,32 @@ It uses the work made in pkgutil and by the index crawlers to browse the installed distributions, and rely on the instalation commands to install. """ +import shutil +import os +import sys +import stat +import errno +import itertools +import logging +import tempfile +from distutils2 import logger +from distutils2._backport.pkgutil import get_distributions +from distutils2._backport.pkgutil import get_distribution +from distutils2._backport.sysconfig import get_config_var +from distutils2.depgraph import generate_graph +from distutils2.index import wrapper +from distutils2.index.errors import ProjectNotFound, ReleaseNotFound +from distutils2.errors import (DistutilsError, InstallationException, + InstallationConflict) +from distutils2.version import get_version_predicate -class InstallationException(Exception): - """Base exception for installation scripts""" +__all__ = ['install_dists', 'install_from_infos', 'get_infos', 'remove', + 'install'] -class InstallationConflict(InstallationException): - """Raised when a conflict is detected""" - -def _update_infos(infos, new_infos): - """extends the lists contained in the `info` dict with those contained - in the `new_info` one - """ - for key, value in infos.items(): - if key in new_infos: - infos[key].extend(new_infos[key]) - - -def move_files(files, destination=None): +def _move_files(files, destination): """Move the list of files in the destination folder, keeping the same structure. @@ -44,13 +39,11 @@ :param files: a list of files to move. :param destination: the destination directory to put on the files. - if not defined, create a new one, using mkdtemp """ - if not destination: - destination = mkdtemp() - for old in files: - new = '%s%s' % (destination, old) + # not using os.path.join() because basename() might not be + # unique in destination + new = "%s%s" % (destination, old) # try to make the paths. try: @@ -61,10 +54,66 @@ else: raise e os.rename(old, new) - yield(old, new) + yield old, new -def install_dists(dists, path=None): +def _run_d1_install(archive_dir, path): + # backward compat: using setuptools or plain-distutils + cmd = '%s setup.py install --root=%s --record=%s' + setup_py = os.path.join(archive_dir, 'setup.py') + if 'setuptools' in open(setup_py).read(): + cmd += ' --single-version-externally-managed' + + # how to place this file in the egg-info dir + # for non-distutils2 projects ? + record_file = os.path.join(archive_dir, 'RECORD') + os.system(cmd % (sys.executable, path, record_file)) + if not os.path.exists(record_file): + raise ValueError('failed to install') + return open(record_file).read().split('\n') + + +def _run_d2_install(archive_dir, path): + # using our own install command + raise NotImplementedError() + + +def _install_dist(dist, path): + """Install a distribution into a path. + + This: + + * unpack the distribution + * copy the files in "path" + * determine if the distribution is distutils2 or distutils1. + """ + where = dist.unpack(path) + + # get into the dir + archive_dir = None + for item in os.listdir(where): + fullpath = os.path.join(where, item) + if os.path.isdir(fullpath): + archive_dir = fullpath + break + + if archive_dir is None: + raise ValueError('Cannot locate the unpacked archive') + + # install + old_dir = os.getcwd() + os.chdir(archive_dir) + try: + # distutils2 or distutils1 ? + if 'setup.py' in os.listdir(archive_dir): + return _run_d1_install(archive_dir, path) + else: + return _run_d2_install(archive_dir, path) + finally: + os.chdir(old_dir) + + +def install_dists(dists, path, paths=sys.path): """Install all distributions provided in dists, with the given prefix. If an error occurs while installing one of the distributions, uninstall all @@ -73,24 +122,29 @@ Return a list of installed files. :param dists: distributions to install - :param path: base path to install distribution on + :param path: base path to install distribution in + :param paths: list of paths (defaults to sys.path) to look for info """ - if not path: - path = mkdtemp() installed_dists, installed_files = [], [] - for d in dists: + for dist in dists: + logger.info('installing %s %s', dist.name, dist.version) try: - installed_files.extend(d.install(path)) - installed_dists.append(d) - except Exception, e : - for d in installed_dists: - d.uninstall() + installed_files.extend(_install_dist(dist, path)) + installed_dists.append(dist) + except Exception, e: + logger.info('failed: %s', e) + + # reverting + for installed_dist in installed_dists: + _remove_dist(installed_dist, paths) raise e + return installed_files -def install_from_infos(install=[], remove=[], conflicts=[], install_path=None): +def install_from_infos(install_path=None, install=[], remove=[], conflicts=[], + paths=sys.path): """Install and remove the given distributions. The function signature is made to be compatible with the one of get_infos. @@ -109,37 +163,57 @@ 4. Else, move the distributions to the right locations, and remove for real the distributions thats need to be removed. - :param install: list of distributions that will be installed. + :param install_path: the installation path where we want to install the + distributions. + :param install: list of distributions that will be installed; install_path + must be provided if this list is not empty. :param remove: list of distributions that will be removed. :param conflicts: list of conflicting distributions, eg. that will be in conflict once the install and remove distribution will be processed. - :param install_path: the installation path where we want to install the - distributions. + :param paths: list of paths (defaults to sys.path) to look for info """ # first of all, if we have conflicts, stop here. if conflicts: raise InstallationConflict(conflicts) + if install and not install_path: + raise ValueError("Distributions are to be installed but `install_path`" + " is not provided.") + # before removing the files, we will start by moving them away # then, if any error occurs, we could replace them in the good place. temp_files = {} # contains lists of {dist: (old, new)} paths + temp_dir = None if remove: + temp_dir = tempfile.mkdtemp() for dist in remove: files = dist.get_installed_files() - temp_files[dist] = move_files(files) + temp_files[dist] = _move_files(files, temp_dir) try: if install: - installed_files = install_dists(install, install_path) # install to tmp first - for files in temp_files.values(): - for old, new in files: - os.remove(new) - - except Exception,e: - # if an error occurs, put back the files in the good place. + install_dists(install, install_path, paths) + except: + # if an error occurs, put back the files in the right place. for files in temp_files.values(): for old, new in files: shutil.move(new, old) + if temp_dir: + shutil.rmtree(temp_dir) + # now re-raising + raise + + # we can remove them for good + for files in temp_files.values(): + for old, new in files: + os.remove(new) + if temp_dir: + shutil.rmtree(temp_dir) + + +def _get_setuptools_deps(release): + # NotImplementedError + pass def get_infos(requirements, index=None, installed=None, prefer_final=True): @@ -162,47 +236,188 @@ Conflict contains all the conflicting distributions, if there is a conflict. """ + if not installed: + logger.info('reading installed distributions') + installed = get_distributions(use_egg_info=True) + + infos = {'install': [], 'remove': [], 'conflict': []} + # Is a compatible version of the project is already installed ? + predicate = get_version_predicate(requirements) + found = False + installed = list(installed) + + # check that the project isnt already installed + for installed_project in installed: + # is it a compatible project ? + if predicate.name.lower() != installed_project.name.lower(): + continue + found = True + logger.info('found %s %s', installed_project.name, + installed_project.version) + + # if we already have something installed, check it matches the + # requirements + if predicate.match(installed_project.version): + return infos + break + + if not found: + logger.info('project not installed') if not index: index = wrapper.ClientWrapper() - if not installed: - installed = get_distributions() - # Get all the releases that match the requirements try: releases = index.get_releases(requirements) - except (ReleaseNotFound, ProjectNotFound), e: + except (ReleaseNotFound, ProjectNotFound): raise InstallationException('Release not found: "%s"' % requirements) # Pick up a release, and try to get the dependency tree release = releases.get_last(requirements, prefer_final=prefer_final) - # Iter since we found something without conflicts + if release is None: + logger.info('could not find a matching project') + return infos + + # this works for Metadata 1.2 metadata = release.fetch_metadata() - # Get the distributions already_installed on the system - # and add the one we want to install + # for earlier, we need to build setuptools deps if any + if 'requires_dist' not in metadata: + deps = _get_setuptools_deps(release) + else: + deps = metadata['requires_dist'] - distributions = installed + [release] + # XXX deps not used + + distributions = itertools.chain(installed, [release]) depgraph = generate_graph(distributions) # Store all the already_installed packages in a list, in case of rollback. - infos = {'install': [], 'remove': [], 'conflict': []} - # Get what the missing deps are - for dists in depgraph.missing.values(): - if dists: - logging.info("missing dependencies found, installing them") - # we have missing deps - for dist in dists: - _update_infos(infos, - get_infos(dist, index, installed)) + dists = depgraph.missing[release] + if dists: + logger.info("missing dependencies found, retrieving metadata") + # we have missing deps + for dist in dists: + _update_infos(infos, get_infos(dist, index, installed)) # Fill in the infos existing = [d for d in installed if d.name == release.name] + if existing: infos['remove'].append(existing[0]) infos['conflict'].extend(depgraph.reverse_list[existing[0]]) infos['install'].append(release) return infos + + +def _update_infos(infos, new_infos): + """extends the lists contained in the `info` dict with those contained + in the `new_info` one + """ + for key, value in infos.items(): + if key in new_infos: + infos[key].extend(new_infos[key]) + + +def _remove_dist(dist, paths=sys.path): + remove(dist.name, paths) + + +def remove(project_name, paths=sys.path): + """Removes a single project from the installation""" + dist = get_distribution(project_name, use_egg_info=True, paths=paths) + if dist is None: + raise DistutilsError('Distribution "%s" not found' % project_name) + files = dist.get_installed_files(local=True) + rmdirs = [] + rmfiles = [] + tmp = tempfile.mkdtemp(prefix=project_name + '-uninstall') + try: + for file_, md5, size in files: + if os.path.isfile(file_): + dirname, filename = os.path.split(file_) + tmpfile = os.path.join(tmp, filename) + try: + os.rename(file_, tmpfile) + finally: + if not os.path.isfile(file_): + os.rename(tmpfile, file_) + if file_ not in rmfiles: + rmfiles.append(file_) + if dirname not in rmdirs: + rmdirs.append(dirname) + finally: + shutil.rmtree(tmp) + + logger.info('removing %r...', project_name) + + file_count = 0 + for file_ in rmfiles: + os.remove(file_) + file_count += 1 + + dir_count = 0 + for dirname in rmdirs: + if not os.path.exists(dirname): + # could + continue + + files_count = 0 + for root, dir, files in os.walk(dirname): + files_count += len(files) + + if files_count > 0: + # XXX Warning + continue + + # empty dirs with only empty dirs + if bool(os.stat(dirname).st_mode & stat.S_IWUSR): + # XXX Add a callable in shutil.rmtree to count + # the number of deleted elements + shutil.rmtree(dirname) + dir_count += 1 + + # removing the top path + # XXX count it ? + if os.path.exists(dist.path): + shutil.rmtree(dist.path) + + logger.info('success: removed %d files and %d dirs', + file_count, dir_count) + + +def install(project): + logger.info('getting information about %r', project) + try: + info = get_infos(project) + except InstallationException: + logger.info('cound not find %r', project) + return + + if info['install'] == []: + logger.info('nothing to install') + return + + install_path = get_config_var('base') + try: + install_from_infos(install_path, + info['install'], info['remove'], info['conflict']) + + except InstallationConflict, e: + if logger.isEnabledFor(logging.INFO): + projects = ['%s %s' % (p.name, p.version) for p in e.args[0]] + logger.info('%r conflicts with %s', project, ','.join(projects)) + + +def _main(**attrs): + if 'script_args' not in attrs: + import sys + attrs['requirements'] = sys.argv[1] + get_infos(**attrs) + + +if __name__ == '__main__': + _main() diff --git a/distutils2/manifest.py b/distutils2/manifest.py --- a/distutils2/manifest.py +++ b/distutils2/manifest.py @@ -95,7 +95,7 @@ try: self._process_template_line(line) except DistutilsTemplateError, msg: - logging.warning("%s, %s" % (path_or_file, msg)) + logging.warning("%s, %s", path_or_file, msg) def write(self, path): """Write the file list in 'self.filelist' (presumably as filled in @@ -111,14 +111,14 @@ if first_line != '# file GENERATED by distutils, do NOT edit\n': logging.info("not writing to manually maintained " - "manifest file '%s'", path) + "manifest file %r", path) return self.sort() self.remove_duplicates() content = self.files[:] content.insert(0, '# file GENERATED by distutils, do NOT edit') - logging.info("writing manifest file '%s'", path) + logging.info("writing manifest file %r", path) write_file(path, content) def read(self, path): @@ -126,7 +126,7 @@ fill in 'self.filelist', the list of files to include in the source distribution. """ - logging.info("reading manifest file '%s'" % path) + logging.info("reading manifest file %r", path) manifest = open(path) try: for line in manifest.readlines(): @@ -168,14 +168,14 @@ 'global-include', 'global-exclude'): if len(words) < 2: raise DistutilsTemplateError( - "'%s' expects ..." % action) + "%r expects ..." % action) patterns = map(convert_path, words[1:]) elif action in ('recursive-include', 'recursive-exclude'): if len(words) < 3: raise DistutilsTemplateError( - "'%s' expects ..." % action) + "%r expects ..." % action) dir = convert_path(words[1]) patterns = map(convert_path, words[2:]) @@ -183,12 +183,12 @@ elif action in ('graft', 'prune'): if len(words) != 2: raise DistutilsTemplateError( - "'%s' expects a single " % action) + "%r expects a single " % action) dir_pattern = convert_path(words[1]) else: - raise DistutilsTemplateError("unknown action '%s'" % action) + raise DistutilsTemplateError("unknown action %r" % action) return action, patterns, dir, dir_pattern @@ -206,53 +206,52 @@ if action == 'include': for pattern in patterns: if not self._include_pattern(pattern, anchor=1): - logging.warning("warning: no files found matching '%s'" % - pattern) + logging.warning("no files found matching %r", pattern) elif action == 'exclude': for pattern in patterns: if not self.exclude_pattern(pattern, anchor=1): - logging.warning(("warning: no previously-included files " - "found matching '%s'") % pattern) + logging.warning("no previously-included files " + "found matching %r", pattern) elif action == 'global-include': for pattern in patterns: if not self._include_pattern(pattern, anchor=0): - logging.warning(("warning: no files found matching '%s' " + - "anywhere in distribution") % pattern) + logging.warning("no files found matching %r " + "anywhere in distribution", pattern) elif action == 'global-exclude': for pattern in patterns: if not self.exclude_pattern(pattern, anchor=0): - logging.warning(("warning: no previously-included files " - "matching '%s' found anywhere in distribution") % - pattern) + logging.warning("no previously-included files " + "matching %r found anywhere in " + "distribution", pattern) elif action == 'recursive-include': for pattern in patterns: if not self._include_pattern(pattern, prefix=dir): - logging.warning(("warning: no files found matching '%s' " - "under directory '%s'" % (pattern, dir))) + logging.warning("no files found matching %r " + "under directory %r", pattern, dir) elif action == 'recursive-exclude': for pattern in patterns: if not self.exclude_pattern(pattern, prefix=dir): - logging.warning(("warning: no previously-included files " - "matching '%s' found under directory '%s'") % - (pattern, dir)) + logging.warning("no previously-included files " + "matching %r found under directory %r", + pattern, dir) elif action == 'graft': if not self._include_pattern(None, prefix=dir_pattern): - logging.warning("warning: no directories found matching '%s'" % - dir_pattern) + logging.warning("no directories found matching %r", + dir_pattern) elif action == 'prune': if not self.exclude_pattern(None, prefix=dir_pattern): - logging.warning(("no previously-included directories found " + - "matching '%s'") % dir_pattern) + logging.warning("no previously-included directories found " + "matching %r", dir_pattern) else: raise DistutilsInternalError( - "this cannot happen: invalid action '%s'" % action) + "this cannot happen: invalid action %r" % action) def _include_pattern(self, pattern, anchor=1, prefix=None, is_regex=0): """Select strings (presumably filenames) from 'self.files' that diff --git a/distutils2/markers.py b/distutils2/markers.py new file mode 100644 --- /dev/null +++ b/distutils2/markers.py @@ -0,0 +1,194 @@ +""" Micro-language for PEP 345 environment markers +""" +import sys +import platform +import os +from tokenize import tokenize, NAME, OP, STRING, ENDMARKER +from StringIO import StringIO + +__all__ = ['interpret'] + + +# allowed operators +_OPERATORS = {'==': lambda x, y: x == y, + '!=': lambda x, y: x != y, + '>': lambda x, y: x > y, + '>=': lambda x, y: x >= y, + '<': lambda x, y: x < y, + '<=': lambda x, y: x <= y, + 'in': lambda x, y: x in y, + 'not in': lambda x, y: x not in y} + + +def _operate(operation, x, y): + return _OPERATORS[operation](x, y) + + +# restricted set of variables +_VARS = {'sys.platform': sys.platform, + 'python_version': sys.version[:3], + 'python_full_version': sys.version.split(' ', 1)[0], + 'os.name': os.name, + 'platform.version': platform.version(), + 'platform.machine': platform.machine()} + + +class _Operation(object): + + def __init__(self, execution_context=None): + self.left = None + self.op = None + self.right = None + if execution_context is None: + execution_context = {} + self.execution_context = execution_context + + def _get_var(self, name): + if name in self.execution_context: + return self.execution_context[name] + return _VARS[name] + + def __repr__(self): + return '%s %s %s' % (self.left, self.op, self.right) + + def _is_string(self, value): + if value is None or len(value) < 2: + return False + for delimiter in '"\'': + if value[0] == value[-1] == delimiter: + return True + return False + + def _is_name(self, value): + return value in _VARS + + def _convert(self, value): + if value in _VARS: + return self._get_var(value) + return value.strip('"\'') + + def _check_name(self, value): + if value not in _VARS: + raise NameError(value) + + def _nonsense_op(self): + msg = 'This operation is not supported : "%s"' % self + raise SyntaxError(msg) + + def __call__(self): + # make sure we do something useful + if self._is_string(self.left): + if self._is_string(self.right): + self._nonsense_op() + self._check_name(self.right) + else: + if not self._is_string(self.right): + self._nonsense_op() + self._check_name(self.left) + + if self.op not in _OPERATORS: + raise TypeError('Operator not supported "%s"' % self.op) + + left = self._convert(self.left) + right = self._convert(self.right) + return _operate(self.op, left, right) + + +class _OR(object): + def __init__(self, left, right=None): + self.left = left + self.right = right + + def filled(self): + return self.right is not None + + def __repr__(self): + return 'OR(%r, %r)' % (self.left, self.right) + + def __call__(self): + return self.left() or self.right() + + +class _AND(object): + def __init__(self, left, right=None): + self.left = left + self.right = right + + def filled(self): + return self.right is not None + + def __repr__(self): + return 'AND(%r, %r)' % (self.left, self.right) + + def __call__(self): + return self.left() and self.right() + + +class _CHAIN(object): + + def __init__(self, execution_context=None): + self.ops = [] + self.op_starting = True + self.execution_context = execution_context + + def eat(self, toktype, tokval, rowcol, line, logical_line): + if toktype not in (NAME, OP, STRING, ENDMARKER): + raise SyntaxError('Type not supported "%s"' % tokval) + + if self.op_starting: + op = _Operation(self.execution_context) + if len(self.ops) > 0: + last = self.ops[-1] + if isinstance(last, (_OR, _AND)) and not last.filled(): + last.right = op + else: + self.ops.append(op) + else: + self.ops.append(op) + self.op_starting = False + else: + op = self.ops[-1] + + if (toktype == ENDMARKER or + (toktype == NAME and tokval in ('and', 'or'))): + if toktype == NAME and tokval == 'and': + self.ops.append(_AND(self.ops.pop())) + elif toktype == NAME and tokval == 'or': + self.ops.append(_OR(self.ops.pop())) + self.op_starting = True + return + + if isinstance(op, (_OR, _AND)) and op.right is not None: + op = op.right + + if ((toktype in (NAME, STRING) and tokval not in ('in', 'not')) + or (toktype == OP and tokval == '.')): + if op.op is None: + if op.left is None: + op.left = tokval + else: + op.left += tokval + else: + if op.right is None: + op.right = tokval + else: + op.right += tokval + elif toktype == OP or tokval in ('in', 'not'): + if tokval == 'in' and op.op == 'not': + op.op = 'not in' + else: + op.op = tokval + + def result(self): + for op in self.ops: + if not op(): + return False + return True + + +def interpret(marker, execution_context=None): + """Interpret a marker and return a result depending on environment.""" + marker = marker.strip() + operations = _CHAIN(execution_context) + tokenize(StringIO(marker).readline, operations.eat) + return operations.result() diff --git a/distutils2/metadata.py b/distutils2/metadata.py --- a/distutils2/metadata.py +++ b/distutils2/metadata.py @@ -3,18 +3,16 @@ Supports all metadata formats (1.0, 1.1, 1.2). """ -import os -import sys -import platform import re from StringIO import StringIO from email import message_from_file -from tokenize import tokenize, NAME, OP, STRING, ENDMARKER from distutils2 import logger +from distutils2.markers import interpret from distutils2.version import (is_valid_predicate, is_valid_version, is_valid_versions) -from distutils2.errors import (MetadataConflictError, +from distutils2.errors import (MetadataMissingError, + MetadataConflictError, MetadataUnrecognizedVersionError) try: @@ -41,8 +39,8 @@ _HAS_DOCUTILS = False # public API of this module -__all__ = ('DistributionMetadata', 'PKG_INFO_ENCODING', - 'PKG_INFO_PREFERRED_VERSION') +__all__ = ['Metadata', 'get_metadata_version', 'metadata_to_dict', + 'PKG_INFO_ENCODING', 'PKG_INFO_PREFERRED_VERSION'] # Encoding used for the PKG-INFO files PKG_INFO_ENCODING = 'utf-8' @@ -139,49 +137,104 @@ # default marker when 1.0 is disqualified return '1.2' -_ATTR2FIELD = {'metadata_version': 'Metadata-Version', - 'name': 'Name', - 'version': 'Version', - 'platform': 'Platform', - 'supported_platform': 'Supported-Platform', - 'summary': 'Summary', - 'description': 'Description', - 'keywords': 'Keywords', - 'home_page': 'Home-page', - 'author': 'Author', - 'author_email': 'Author-email', - 'maintainer': 'Maintainer', - 'maintainer_email': 'Maintainer-email', - 'license': 'License', - 'classifier': 'Classifier', - 'download_url': 'Download-URL', - 'obsoletes_dist': 'Obsoletes-Dist', - 'provides_dist': 'Provides-Dist', - 'requires_dist': 'Requires-Dist', - 'requires_python': 'Requires-Python', - 'requires_external': 'Requires-External', - 'requires': 'Requires', - 'provides': 'Provides', - 'obsoletes': 'Obsoletes', - 'project_url': 'Project-URL', - } + +def get_metadata_version(metadata): + """Return the Metadata-Version attribute + + - *metadata* give a METADATA object + """ + return metadata['Metadata-Version'] + + +def metadata_to_dict(metadata): + """Convert a metadata object to a dict + + - *metadata* give a METADATA object + """ + data = { + 'metadata_version': metadata['Metadata-Version'], + 'name': metadata['Name'], + 'version': metadata['Version'], + 'summary': metadata['Summary'], + 'home_page': metadata['Home-page'], + 'author': metadata['Author'], + 'author_email': metadata['Author-email'], + 'license': metadata['License'], + 'description': metadata['Description'], + 'keywords': metadata['Keywords'], + 'platform': metadata['Platform'], + 'classifier': metadata['Classifier'], + 'download_url': metadata['Download-URL'], + } + + if metadata['Metadata-Version'] == '1.2': + data['requires_dist'] = metadata['Requires-Dist'] + data['requires_python'] = metadata['Requires-Python'] + data['requires_external'] = metadata['Requires-External'] + data['provides_dist'] = metadata['Provides-Dist'] + data['obsoletes_dist'] = metadata['Obsoletes-Dist'] + data['project_url'] = [','.join(url) for url in + metadata['Project-URL']] + + elif metadata['Metadata-Version'] == '1.1': + data['provides'] = metadata['Provides'] + data['requires'] = metadata['Requires'] + data['obsoletes'] = metadata['Obsoletes'] + + return data + + +_ATTR2FIELD = { + 'metadata_version': 'Metadata-Version', + 'name': 'Name', + 'version': 'Version', + 'platform': 'Platform', + 'supported_platform': 'Supported-Platform', + 'summary': 'Summary', + 'description': 'Description', + 'keywords': 'Keywords', + 'home_page': 'Home-page', + 'author': 'Author', + 'author_email': 'Author-email', + 'maintainer': 'Maintainer', + 'maintainer_email': 'Maintainer-email', + 'license': 'License', + 'classifier': 'Classifier', + 'download_url': 'Download-URL', + 'obsoletes_dist': 'Obsoletes-Dist', + 'provides_dist': 'Provides-Dist', + 'requires_dist': 'Requires-Dist', + 'requires_python': 'Requires-Python', + 'requires_external': 'Requires-External', + 'requires': 'Requires', + 'provides': 'Provides', + 'obsoletes': 'Obsoletes', + 'project_url': 'Project-URL', +} _PREDICATE_FIELDS = ('Requires-Dist', 'Obsoletes-Dist', 'Provides-Dist') _VERSIONS_FIELDS = ('Requires-Python',) _VERSION_FIELDS = ('Version',) _LISTFIELDS = ('Platform', 'Classifier', 'Obsoletes', - 'Requires', 'Provides', 'Obsoletes-Dist', - 'Provides-Dist', 'Requires-Dist', 'Requires-External', - 'Project-URL') + 'Requires', 'Provides', 'Obsoletes-Dist', + 'Provides-Dist', 'Requires-Dist', 'Requires-External', + 'Project-URL', 'Supported-Platform') _LISTTUPLEFIELDS = ('Project-URL',) _ELEMENTSFIELD = ('Keywords',) _UNICODEFIELDS = ('Author', 'Maintainer', 'Summary', 'Description') -_MISSING = object() -class DistributionMetadata(object): +class NoDefault(object): + """Marker object used for clean representation""" + def __repr__(self): + return '' + +_MISSING = NoDefault() + + +class Metadata(object): """The metadata of a release. Supports versions 1.0, 1.1 and 1.2 (auto-detected). You can @@ -195,9 +248,11 @@ # also document the mapping API and UNKNOWN default key def __init__(self, path=None, platform_dependent=False, - execution_context=None, fileobj=None, mapping=None): + execution_context=None, fileobj=None, mapping=None, + display_warnings=False): self._fields = {} - self.version = None + self.display_warnings = display_warnings + self.requires_files = [] self.docutils_support = _HAS_DOCUTILS self.platform_dependent = platform_dependent self.execution_context = execution_context @@ -211,8 +266,7 @@ self.update(mapping) def _set_best_version(self): - self.version = _best_version(self._fields) - self._fields['Metadata-Version'] = self.version + self._fields['Metadata-Version'] = _best_version(self._fields) def _write_field(self, file, name, value): file.write('%s: %s\n' % (name, value)) @@ -281,7 +335,7 @@ if not self.platform_dependent or ';' not in value: return True, value value, marker = value.split(';') - return _interpret(marker, self.execution_context), value + return interpret(marker, self.execution_context), value def _remove_line_prefix(self, value): return _LINE_PREFIX.sub('\n', value) @@ -290,21 +344,28 @@ # Public API # def get_fullname(self): + """Return the distribution name with version""" return '%s-%s' % (self['Name'], self['Version']) def is_metadata_field(self, name): + """return True if name is a valid metadata key""" name = self._convert_name(name) return name in _ALL_FIELDS + def is_multi_field(self, name): + name = self._convert_name(name) + return name in _LISTFIELDS + def read(self, filepath): + """Read the metadata values from a file path.""" self.read_file(open(filepath)) def read_file(self, fileob): """Read the metadata values from a file object.""" msg = message_from_file(fileob) - self.version = msg['metadata-version'] + self._fields['Metadata-Version'] = msg['metadata-version'] - for field in _version2fieldlist(self.version): + for field in _version2fieldlist(self['Metadata-Version']): if field in _LISTFIELDS: # we can have multiple lines values = msg.get_all(field) @@ -328,7 +389,7 @@ def write_file(self, fileobject): """Write the PKG-INFO format data to a file object.""" self._set_best_version() - for field in _version2fieldlist(self.version): + for field in _version2fieldlist(self['Metadata-Version']): values = self.get(field) if field in _ELEMENTSFIELD: self._write_field(fileobject, field, ','.join(values)) @@ -387,21 +448,22 @@ else: value = [] - if name in _PREDICATE_FIELDS and value is not None: - for v in value: - # check that the values are valid predicates - if not is_valid_predicate(v.split(';')[0]): - logger.warn('"%s" is not a valid predicate (field "%s")' % - (v, name)) - # FIXME this rejects UNKNOWN, is that right? - elif name in _VERSIONS_FIELDS and value is not None: - if not is_valid_versions(value): - logger.warn('"%s" is not a valid version (field "%s")' % - (value, name)) - elif name in _VERSION_FIELDS and value is not None: - if not is_valid_version(value): - logger.warn('"%s" is not a valid version (field "%s")' % - (value, name)) + if self.display_warnings: + if name in _PREDICATE_FIELDS and value is not None: + for v in value: + # check that the values are valid predicates + if not is_valid_predicate(v.split(';')[0]): + logger.warn('"%s" is not a valid predicate (field "%s")' % + (v, name)) + # FIXME this rejects UNKNOWN, is that right? + elif name in _VERSIONS_FIELDS and value is not None: + if not is_valid_versions(value): + logger.warn('"%s" is not a valid version (field "%s")' % + (value, name)) + elif name in _VERSION_FIELDS and value is not None: + if not is_valid_version(value): + logger.warn('"%s" is not a valid version (field "%s")' % + (value, name)) if name in _UNICODEFIELDS: value = self._encode_field(value) @@ -448,15 +510,25 @@ return None return value - def check(self): - """Check if the metadata is compliant.""" + def check(self, strict=False, restructuredtext=False): + """Check if the metadata is compliant. If strict is False then raise if + no Name or Version are provided""" # XXX should check the versions (if the file was loaded) missing, warnings = [], [] - for attr in ('Name', 'Version', 'Home-page'): + + for attr in ('Name', 'Version'): # required by PEP 345 if attr not in self: missing.append(attr) - if _HAS_DOCUTILS: + if strict and missing != []: + msg = 'missing required metadata: %s' % ', '.join(missing) + raise MetadataMissingError(msg) + + for attr in ('Home-page', 'Author'): + if attr not in self: + missing.append(attr) + + if _HAS_DOCUTILS and restructuredtext: warnings.extend(self._check_rst_data(self['Description'])) # checking metadata 1.2 (XXX needs to check 1.1, 1.0) @@ -479,199 +551,13 @@ return missing, warnings + # Mapping API + def keys(self): - return _version2fieldlist(self.version) + return _version2fieldlist(self['Metadata-Version']) def values(self): return [self[key] for key in self.keys()] def items(self): return [(key, self[key]) for key in self.keys()] - - -# -# micro-language for PEP 345 environment markers -# - -# allowed operators -_OPERATORS = {'==': lambda x, y: x == y, - '!=': lambda x, y: x != y, - '>': lambda x, y: x > y, - '>=': lambda x, y: x >= y, - '<': lambda x, y: x < y, - '<=': lambda x, y: x <= y, - 'in': lambda x, y: x in y, - 'not in': lambda x, y: x not in y} - - -def _operate(operation, x, y): - return _OPERATORS[operation](x, y) - -# restricted set of variables -_VARS = {'sys.platform': sys.platform, - 'python_version': sys.version[:3], - 'python_full_version': sys.version.split(' ', 1)[0], - 'os.name': os.name, - 'platform.version': platform.version(), - 'platform.machine': platform.machine()} - - -class _Operation(object): - - def __init__(self, execution_context=None): - self.left = None - self.op = None - self.right = None - if execution_context is None: - execution_context = {} - self.execution_context = execution_context - - def _get_var(self, name): - if name in self.execution_context: - return self.execution_context[name] - return _VARS[name] - - def __repr__(self): - return '%s %s %s' % (self.left, self.op, self.right) - - def _is_string(self, value): - if value is None or len(value) < 2: - return False - for delimiter in '"\'': - if value[0] == value[-1] == delimiter: - return True - return False - - def _is_name(self, value): - return value in _VARS - - def _convert(self, value): - if value in _VARS: - return self._get_var(value) - return value.strip('"\'') - - def _check_name(self, value): - if value not in _VARS: - raise NameError(value) - - def _nonsense_op(self): - msg = 'This operation is not supported : "%s"' % self - raise SyntaxError(msg) - - def __call__(self): - # make sure we do something useful - if self._is_string(self.left): - if self._is_string(self.right): - self._nonsense_op() - self._check_name(self.right) - else: - if not self._is_string(self.right): - self._nonsense_op() - self._check_name(self.left) - - if self.op not in _OPERATORS: - raise TypeError('Operator not supported "%s"' % self.op) - - left = self._convert(self.left) - right = self._convert(self.right) - return _operate(self.op, left, right) - - -class _OR(object): - def __init__(self, left, right=None): - self.left = left - self.right = right - - def filled(self): - return self.right is not None - - def __repr__(self): - return 'OR(%r, %r)' % (self.left, self.right) - - def __call__(self): - return self.left() or self.right() - - -class _AND(object): - def __init__(self, left, right=None): - self.left = left - self.right = right - - def filled(self): - return self.right is not None - - def __repr__(self): - return 'AND(%r, %r)' % (self.left, self.right) - - def __call__(self): - return self.left() and self.right() - - -class _CHAIN(object): - - def __init__(self, execution_context=None): - self.ops = [] - self.op_starting = True - self.execution_context = execution_context - - def eat(self, toktype, tokval, rowcol, line, logical_line): - if toktype not in (NAME, OP, STRING, ENDMARKER): - raise SyntaxError('Type not supported "%s"' % tokval) - - if self.op_starting: - op = _Operation(self.execution_context) - if len(self.ops) > 0: - last = self.ops[-1] - if isinstance(last, (_OR, _AND)) and not last.filled(): - last.right = op - else: - self.ops.append(op) - else: - self.ops.append(op) - self.op_starting = False - else: - op = self.ops[-1] - - if (toktype == ENDMARKER or - (toktype == NAME and tokval in ('and', 'or'))): - if toktype == NAME and tokval == 'and': - self.ops.append(_AND(self.ops.pop())) - elif toktype == NAME and tokval == 'or': - self.ops.append(_OR(self.ops.pop())) - self.op_starting = True - return - - if isinstance(op, (_OR, _AND)) and op.right is not None: - op = op.right - - if ((toktype in (NAME, STRING) and tokval not in ('in', 'not')) - or (toktype == OP and tokval == '.')): - if op.op is None: - if op.left is None: - op.left = tokval - else: - op.left += tokval - else: - if op.right is None: - op.right = tokval - else: - op.right += tokval - elif toktype == OP or tokval in ('in', 'not'): - if tokval == 'in' and op.op == 'not': - op.op = 'not in' - else: - op.op = tokval - - def result(self): - for op in self.ops: - if not op(): - return False - return True - - -def _interpret(marker, execution_context=None): - """Interpret a marker and return a result depending on environment.""" - marker = marker.strip() - operations = _CHAIN(execution_context) - tokenize(StringIO(marker).readline, operations.eat) - return operations.result() diff --git a/distutils2/mkcfg.py b/distutils2/mkcfg.py --- a/distutils2/mkcfg.py +++ b/distutils2/mkcfg.py @@ -20,17 +20,24 @@ # Ask for the dependencies. # Ask for the Requires-Dist # Ask for the Provides-Dist +# Ask for a description # Detect scripts (not sure how. #! outside of package?) import os import sys +import glob import re import shutil from ConfigParser import RawConfigParser from textwrap import dedent +try: + from hashlib import md5 +except ImportError: + from distutils2._backport.hashlib import md5 # importing this with an underscore as it should be replaced by the # dict form or another structures for all purposes from distutils2._trove import all_classifiers as _CLASSIFIERS_LIST +from distutils2._backport import sysconfig _FILENAME = 'setup.cfg' @@ -82,6 +89,10 @@ Optionally, you can set other trove identifiers for things such as the human language, programming language, user interface, etc... ''', + 'setup.py found': ''' +The setup.py script will be executed to retrieve the metadata. +A wizard will be run if you answer "n", +''', } # XXX everything needs docstrings and tests (both low-level tests of various @@ -106,7 +117,7 @@ if default and len(question) + len(default) > 70: prompt = '%s\n [%s]: ' % (question, default) if lengthy or multiline: - prompt += '\n >' + prompt += '\n > ' if not helptext: helptext = 'No additional help available.' @@ -148,6 +159,7 @@ CLASSIFIERS = _build_classifiers_dict(_CLASSIFIERS_LIST) + def _build_licences(classifiers): res = [] for index, item in enumerate(classifiers): @@ -162,12 +174,15 @@ class MainProgram(object): def __init__(self): self.configparser = None - self.classifiers = {} + self.classifiers = set([]) self.data = {} self.data['classifier'] = self.classifiers self.data['packages'] = [] self.data['modules'] = [] + self.data['platform'] = [] + self.data['resources'] = [] self.data['extra_files'] = [] + self.data['scripts'] = [] self.load_config_file() def lookup_option(self, key): @@ -178,6 +193,7 @@ def load_config_file(self): self.configparser = RawConfigParser() # TODO replace with section in distutils config file + #XXX freedesktop self.configparser.read(os.path.expanduser('~/.mkcfg')) self.data['author'] = self.lookup_option('author') self.data['author_email'] = self.lookup_option('author_email') @@ -194,6 +210,7 @@ if not valuesDifferent: return + #XXX freedesktop fp = open(os.path.expanduser('~/.mkcfgpy'), 'w') try: self.configparser.write(fp) @@ -201,30 +218,139 @@ fp.close() def load_existing_setup_script(self): - raise NotImplementedError - # Ideas: - # - define a mock module to assign to sys.modules['distutils'] before - # importing the setup script as a module (or executing it); it would - # provide setup (a function that just returns its args as a dict), - # Extension (ditto), find_packages (the real function) - # - we could even mock Distribution and commands to handle more setup - # scripts - # - we could use a sandbox (http://bugs.python.org/issue8680) - # - the cleanest way is to parse the file, not import it, but there is - # no way to do that across versions (the compiler package is - # deprecated or removed in recent Pythons, the ast module is not - # present before 2.6) + """ Generate a setup.cfg from an existing setup.py. + + It only exports the distutils metadata (setuptools specific metadata + is not actually supported). + """ + setuppath = 'setup.py' + if not os.path.exists(setuppath): + return + else: + ans = ask_yn(('A legacy setup.py has been found.\n' + 'Would you like to convert it to a setup.cfg ?'), + 'y', + _helptext['setup.py found']) + if ans != 'y': + return + + data = self.data + + def setup(**attrs): + """Mock the setup(**attrs) in order to retrive metadata.""" + # use the distutils v1 processings to correctly parse metadata. + #XXX we could also use the setuptools distibution ??? + from distutils.dist import Distribution + dist = Distribution(attrs) + dist.parse_config_files() + # 1. retrieves metadata that are quite similar PEP314<->PEP345 + labels = (('name',) * 2, + ('version',) * 2, + ('author',) * 2, + ('author_email',) * 2, + ('maintainer',) * 2, + ('maintainer_email',) * 2, + ('description', 'summary'), + ('long_description', 'description'), + ('url', 'home_page'), + ('platforms', 'platform')) + + if sys.version[:3] >= '2.5': + labels += (('provides', 'provides-dist'), + ('obsoletes', 'obsoletes-dist'), + ('requires', 'requires-dist'),) + get = lambda lab: getattr(dist.metadata, lab.replace('-', '_')) + data.update((new, get(old)) for (old, new) in labels if get(old)) + # 2. retrieves data that requires special processings. + data['classifier'].update(dist.get_classifiers() or []) + data['scripts'].extend(dist.scripts or []) + data['packages'].extend(dist.packages or []) + data['modules'].extend(dist.py_modules or []) + # 2.1 data_files -> resources. + if dist.data_files: + if len(dist.data_files) < 2 or \ + isinstance(dist.data_files[1], str): + dist.data_files = [('', dist.data_files)] + # add tokens in the destination paths + vars = {'distribution.name': data['name']} + path_tokens = sysconfig.get_paths(vars=vars).items() + # sort tokens to use the longest one first + # TODO chain two sorted with key arguments, remove cmp + path_tokens.sort(cmp=lambda x, y: cmp(len(y), len(x)), + key=lambda x: x[1]) + for dest, srcs in (dist.data_files or []): + dest = os.path.join(sys.prefix, dest) + for tok, path in path_tokens: + if dest.startswith(path): + dest = ('{%s}' % tok) + dest[len(path):] + files = [('/ '.join(src.rsplit('/', 1)), dest) + for src in srcs] + data['resources'].extend(files) + continue + # 2.2 package_data -> extra_files + package_dirs = dist.package_dir or {} + for package, extras in dist.package_data.iteritems() or []: + package_dir = package_dirs.get(package, package) + files = [os.path.join(package_dir, f) for f in extras] + data['extra_files'].extend(files) + + # Use README file if its content is the desciption + if "description" in data: + ref = md5(re.sub('\s', '', self.data['description']).lower()) + ref = ref.digest() + for readme in glob.glob('README*'): + fp = open(readme) + try: + contents = fp.read() + finally: + fp.close() + val = md5(re.sub('\s', '', contents.lower())).digest() + if val == ref: + del data['description'] + data['description-file'] = readme + break + + # apply monkey patch to distutils (v1) and setuptools (if needed) + # (abord the feature if distutils v1 has been killed) + try: + import distutils.core as DC + DC.setup # ensure distutils v1 + except (ImportError, AttributeError): + return + saved_setups = [(DC, DC.setup)] + DC.setup = setup + try: + import setuptools + saved_setups.append((setuptools, setuptools.setup)) + setuptools.setup = setup + except (ImportError, AttributeError): + pass + # get metadata by executing the setup.py with the patched setup(...) + success = False # for python < 2.4 + try: + pyenv = globals().copy() + execfile(setuppath, pyenv) + success = True + finally: # revert monkey patches + for patched_module, original_setup in saved_setups: + patched_module.setup = original_setup + if not self.data: + raise ValueError('Unable to load metadata from setup.py') + return success def inspect_file(self, path): fp = open(path, 'r') try: - for line in [fp.readline() for _ in range(10)]: + for _ in xrange(10): + line = fp.readline() m = re.match(r'^#!.*python((?P\d)(\.\d+)?)?$', line) if m: if m.group('major') == '3': - self.classifiers['Programming Language :: Python :: 3'] = 1 + self.classifiers.add( + 'Programming Language :: Python :: 3') else: - self.classifiers['Programming Language :: Python :: 2'] = 1 + self.classifiers.add( + 'Programming Language :: Python :: 2') finally: fp.close() @@ -270,7 +396,6 @@ helptext=_helptext['extra_files']) == 'y': self._set_multi('Extra file/dir name', 'extra_files') - if ask_yn('Do you want to set Trove classifiers?', helptext=_helptext['do_classifier']) == 'y': self.set_classifier() @@ -290,7 +415,6 @@ _pref = ['lib', 'include', 'dist', 'build', '.', '~'] _suf = ['.pyc'] - def to_skip(path): path = relative(path) @@ -317,7 +441,7 @@ for root, dirs, files in os.walk(curdir): if to_skip(root): continue - for dir_ in dirs: + for dir_ in sorted(dirs): if to_skip(dir_): continue fullpath = os.path.join(root, dir_) @@ -334,7 +458,7 @@ if True in [root.startswith(path) for path in scanned]: continue - for file in files: + for file in sorted(files): fullpath = os.path.join(root, file) if to_skip(fullpath): continue @@ -347,8 +471,6 @@ def _set_multi(self, question, name): existing_values = self.data[name] value = ask(question, helptext=_helptext[name]).strip() - if value == '': - return if value not in existing_values: existing_values.append(value) @@ -369,10 +491,10 @@ if not trove: return - for key in sorted(trove.keys()): + for key in sorted(trove): if len(trove[key]) == 0: if ask_yn('Add "%s"' % desc[4:] + ' :: ' + key, 'n') == 'y': - classifiers[desc[4:] + ' :: ' + key] = 1 + classifiers.add(desc[4:] + ' :: ' + key) continue if ask_yn('Do you want to set items under\n "%s" (%d sub-items)' @@ -423,7 +545,7 @@ print ("ERROR: Invalid selection, type a number from the list " "above.") - classifiers[_CLASSIFIERS_LIST[index]] = 1 + classifiers.add(_CLASSIFIERS_LIST[index]) return def set_devel_status(self, classifiers): @@ -450,14 +572,14 @@ 'Development Status :: 5 - Production/Stable', 'Development Status :: 6 - Mature', 'Development Status :: 7 - Inactive'][choice] - classifiers[key] = 1 + classifiers.add(key) return except (IndexError, ValueError): print ("ERROR: Invalid selection, type a single digit " "number.") def _dotted_packages(self, data): - packages = sorted(data.keys()) + packages = sorted(data) modified_pkgs = [] for pkg in packages: pkg = pkg.lstrip('./') @@ -477,32 +599,45 @@ fp = open(_FILENAME, 'w') try: fp.write('[metadata]\n') - fp.write('name = %s\n' % self.data['name']) - fp.write('version = %s\n' % self.data['version']) - fp.write('author = %s\n' % self.data['author']) - fp.write('author_email = %s\n' % self.data['author_email']) - fp.write('summary = %s\n' % self.data['summary']) - fp.write('home_page = %s\n' % self.data['home_page']) + # simple string entries + for name in ('name', 'version', 'summary', 'download_url'): + fp.write('%s = %s\n' % (name, self.data.get(name, 'UNKNOWN'))) + # optional string entries + if 'keywords' in self.data and self.data['keywords']: + fp.write('keywords = %s\n' % ' '.join(self.data['keywords'])) + for name in ('home_page', 'author', 'author_email', + 'maintainer', 'maintainer_email', 'description-file'): + if name in self.data and self.data[name]: + fp.write('%s = %s\n' % (name, self.data[name])) + if 'description' in self.data: + fp.write( + 'description = %s\n' + % '\n |'.join(self.data['description'].split('\n'))) + # multiple use string entries + for name in ('platform', 'supported-platform', 'classifier', + 'requires-dist', 'provides-dist', 'obsoletes-dist', + 'requires-external'): + if not(name in self.data and self.data[name]): + continue + fp.write('%s = ' % name) + fp.write(''.join(' %s\n' % val + for val in self.data[name]).lstrip()) + fp.write('\n[files]\n') + for name in ('packages', 'modules', 'scripts', + 'package_data', 'extra_files'): + if not(name in self.data and self.data[name]): + continue + fp.write('%s = %s\n' + % (name, '\n '.join(self.data[name]).strip())) + fp.write('\nresources =\n') + for src, dest in self.data['resources']: + fp.write(' %s = %s\n' % (src, dest)) fp.write('\n') - if len(self.data['classifier']) > 0: - classifiers = '\n'.join([' %s' % clas for clas in - self.data['classifier']]) - fp.write('classifier = %s\n' % classifiers.strip()) - fp.write('\n') - fp.write('[files]\n') - for element in ('packages', 'modules', 'extra_files'): - if len(self.data[element]) == 0: - continue - items = '\n'.join([' %s' % item for item in - self.data[element]]) - fp.write('%s = %s\n' % (element, items.strip())) - - fp.write('\n') finally: fp.close() - os.chmod(_FILENAME, 0755) + os.chmod(_FILENAME, 0644) print 'Wrote "%s".' % _FILENAME @@ -510,11 +645,12 @@ """Main entry point.""" program = MainProgram() # uncomment when implemented - #program.load_existing_setup_script() - program.inspect_directory() - program.query_user() - program.update_config_file() + if not program.load_existing_setup_script(): + program.inspect_directory() + program.query_user() + program.update_config_file() program.write_setup_script() + # distutils2.util.cfg_to_args() if __name__ == '__main__': diff --git a/distutils2/resources.py b/distutils2/resources.py new file mode 100644 --- /dev/null +++ b/distutils2/resources.py @@ -0,0 +1,25 @@ +import os + +from distutils2.util import iglob + + +def _rel_path(base, path): + assert path.startswith(base) + return path[len(base):].lstrip('/') + + +def resources_dests(resources_root, rules): + """find destination of resources files""" + destinations = {} + for (base, suffix, dest) in rules: + prefix = os.path.join(resources_root, base) + for abs_base in iglob(prefix): + abs_glob = os.path.join(abs_base, suffix) + for abs_path in iglob(abs_glob): + resource_file = _rel_path(resources_root, abs_path) + if dest is None: # remove the entry if it was here + destinations.pop(resource_file, None) + else: + rel_path = _rel_path(abs_base, abs_path) + destinations[resource_file] = os.path.join(dest, rel_path) + return destinations diff --git a/distutils2/run.py b/distutils2/run.py --- a/distutils2/run.py +++ b/distutils2/run.py @@ -1,12 +1,16 @@ import os import sys from optparse import OptionParser +import logging -from distutils2.util import grok_environment_error +from distutils2 import logger from distutils2.errors import (DistutilsSetupError, DistutilsArgError, DistutilsError, CCompilerError) from distutils2.dist import Distribution from distutils2 import __version__ +from distutils2._backport.pkgutil import get_distributions, get_distribution +from distutils2.depgraph import generate_graph +from distutils2.install import install, remove # This is a barebones help message generated displayed when the user # runs the setup script with no arguments at all. More useful help @@ -78,10 +82,10 @@ dist = distclass(attrs) except DistutilsSetupError, msg: if 'name' in attrs: - raise SystemExit, "error in %s setup command: %s" % \ - (attrs['name'], msg) + raise SystemExit("error in %s setup command: %s" % \ + (attrs['name'], msg)) else: - raise SystemExit, "error in setup command: %s" % msg + raise SystemExit("error in setup command: %s" % msg) # Find and parse the config file(s): they will override options from # the setup script, but be overridden by the command line. @@ -93,43 +97,139 @@ try: res = dist.parse_command_line() except DistutilsArgError, msg: - raise SystemExit, gen_usage(dist.script_name) + "\nerror: %s" % msg + raise SystemExit(gen_usage(dist.script_name) + "\nerror: %s" % msg) # And finally, run all the commands found on the command line. if res: try: dist.run_commands() except KeyboardInterrupt: - raise SystemExit, "interrupted" - except (IOError, os.error), exc: - error = grok_environment_error(exc) - raise SystemExit, error - - except (DistutilsError, - CCompilerError), msg: - raise SystemExit, "error: " + str(msg) + raise SystemExit("interrupted") + except (IOError, os.error, DistutilsError, CCompilerError), msg: + raise SystemExit("error: " + str(msg)) return dist +def _set_logger(): + logger.setLevel(logging.INFO) + sth = logging.StreamHandler(sys.stderr) + sth.setLevel(logging.INFO) + logger.addHandler(sth) + logger.propagate = 0 + + def main(): - """Main entry point for Distutils2""" + """Main entry point for Distutils2 + + Execute an action or delegate to the commands system. + """ + _set_logger() parser = OptionParser() parser.disable_interspersed_args() + parser.usage = '%prog [options] cmd1 cmd2 ..' + parser.add_option("-v", "--version", action="store_true", dest="version", default=False, help="Prints out the version of Distutils2 and exits.") + parser.add_option("-m", "--metadata", + action="append", dest="metadata", default=[], + help="List METADATA metadata or 'all' for all metadatas.") + + parser.add_option("-s", "--search", + action="store", dest="search", default=None, + help="Search for installed distributions.") + + parser.add_option("-g", "--graph", + action="store", dest="graph", default=None, + help="Display the graph for a given installed distribution.") + + parser.add_option("-f", "--full-graph", + action="store_true", dest="fgraph", default=False, + help="Display the full graph for installed distributions.") + + parser.add_option("-i", "--install", + action="store", dest="install", + help="Install a project.") + + parser.add_option("-r", "--remove", + action="store", dest="remove", + help="Remove a project.") + options, args = parser.parse_args() if options.version: print('Distutils2 %s' % __version__) - sys.exit(0) + return 0 + + if len(options.metadata): + from distutils2.dist import Distribution + dist = Distribution() + dist.parse_config_files() + metadata = dist.metadata + + if 'all' in options.metadata: + keys = metadata.keys() + else: + keys = options.metadata + if len(keys) == 1: + print metadata[keys[0]] + return + + for key in keys: + if key in metadata: + print(metadata._convert_name(key) + ':') + value = metadata[key] + if isinstance(value, list): + for v in value: + print(' ' + v) + else: + print(' ' + value.replace('\n', '\n ')) + return 0 + + if options.search is not None: + search = options.search.lower() + for dist in get_distributions(use_egg_info=True): + name = dist.name.lower() + if search in name: + print('%s %s at %s' % (dist.name, dist.metadata['version'], + dist.path)) + + return 0 + + if options.graph is not None: + name = options.graph + dist = get_distribution(name, use_egg_info=True) + if dist is None: + print('Distribution not found.') + else: + dists = get_distributions(use_egg_info=True) + graph = generate_graph(dists) + print(graph.repr_node(dist)) + + return 0 + + if options.fgraph: + dists = get_distributions(use_egg_info=True) + graph = generate_graph(dists) + print(graph) + return 0 + + if options.install is not None: + install(options.install) + return 0 + + if options.remove is not None: + remove(options.remove) + return 0 if len(args) == 0: parser.print_help() + return 0 commands_main() - sys.exit(0) + return 0 + if __name__ == '__main__': - main() + sys.exit(main()) diff --git a/distutils2/tests/pypi_server.py b/distutils2/tests/pypi_server.py --- a/distutils2/tests/pypi_server.py +++ b/distutils2/tests/pypi_server.py @@ -375,6 +375,7 @@ def __init__(self, dists=[]): self._dists = dists + self._search_result = [] def add_distributions(self, dists): for dist in dists: @@ -400,7 +401,7 @@ self._dists.append(dist) return [r.search_result() for r in results] - def list_package(self): + def list_packages(self): return [d.name for d in self._dists] def package_releases(self, package_name, show_hidden=False): diff --git a/distutils2/tests/pypiserver/downloads_with_md5/simple/foobar/foobar-0.1.tar.gz b/distutils2/tests/pypiserver/downloads_with_md5/simple/foobar/foobar-0.1.tar.gz index 0000000000000000000000000000000000000000..333961eb18a6e7db80fefd41c339ab218d5180c4 GIT binary patch literal 110 zc$|~(=3uy!>FUeC{PvtR-ysJc)&sVu?9yZ7`(A1Di)P(6s!I71JWZ;--fWND`LA)=lAmk-7Jbj=XMlnFEsQ#U Kd|Vkc7#IK&xGYxy diff --git a/distutils2/tests/support.py b/distutils2/tests/support.py --- a/distutils2/tests/support.py +++ b/distutils2/tests/support.py @@ -17,10 +17,11 @@ super(SomeTestCase, self).setUp() ... # other setup code -Read each class' docstring to see its purpose and usage. +Also provided is a DummyCommand class, useful to mock commands in the +tests of another command that needs them, a create_distribution function +and a skip_unless_symlink decorator. -Also provided is a DummyCommand class, useful to mock commands in the -tests of another command that needs them (see docstring). +Each class or function has a docstring to explain its purpose and usage. """ import os @@ -35,7 +36,8 @@ from distutils2.tests import unittest __all__ = ['LoggingCatcher', 'WarningsCatcher', 'TempdirManager', - 'EnvironGuard', 'DummyCommand', 'unittest'] + 'EnvironGuard', 'DummyCommand', 'unittest', 'create_distribution', + 'skip_unless_symlink'] class LoggingCatcher(object): @@ -49,6 +51,9 @@ def setUp(self): super(LoggingCatcher, self).setUp() + # TODO read the new logging docs and/or the python-dev posts about + # logging and tests to properly use a handler instead of + # monkey-patching self.old_log = logger._log logger._log = self._log logger.setLevel(logging.INFO) @@ -135,7 +140,7 @@ finally: f.close() - def create_dist(self, pkg_name='foo', **kw): + def create_dist(self, **kw): """Create a stub distribution object and files. This function creates a Distribution instance (use keyword arguments @@ -143,18 +148,35 @@ (currently an empty directory). It returns the path to the directory and the Distribution instance. - You can use TempdirManager.write_file to write any file in that + You can use self.write_file to write any file in that directory, e.g. setup scripts or Python modules. """ # Late import so that third parties can import support without # loading a ton of distutils2 modules in memory. from distutils2.dist import Distribution + if 'name' not in kw: + kw['name'] = 'foo' tmp_dir = self.mkdtemp() - pkg_dir = os.path.join(tmp_dir, pkg_name) - os.mkdir(pkg_dir) + project_dir = os.path.join(tmp_dir, kw['name']) + os.mkdir(project_dir) dist = Distribution(attrs=kw) - return pkg_dir, dist + return project_dir, dist + def assertIsFile(self, *args): + path = os.path.join(*args) + dirname = os.path.dirname(path) + file = os.path.basename(path) + if os.path.isdir(dirname): + files = os.listdir(dirname) + msg = "%s not found in %s: %s" % (file, dirname, files) + assert os.path.isfile(path), msg + else: + raise AssertionError( + '%s not found. %s does not exist' % (file, dirname)) + + def assertIsNotFile(self, *args): + path = os.path.join(*args) + assert not os.path.isfile(path), "%s exist" % path class EnvironGuard(object): """TestCase-compatible mixin to save and restore the environment.""" @@ -211,3 +233,9 @@ d.parse_command_line() return d + +try: + from test.test_support import skip_unless_symlink +except ImportError: + skip_unless_symlink = unittest.skip( + 'requires test.test_support.skip_unless_symlink') diff --git a/distutils2/tests/test_command_bdist.py b/distutils2/tests/test_command_bdist.py --- a/distutils2/tests/test_command_bdist.py +++ b/distutils2/tests/test_command_bdist.py @@ -1,13 +1,31 @@ """Tests for distutils.command.bdist.""" +from distutils2 import util from distutils2.tests import run_unittest -from distutils2.command.bdist import bdist -from distutils2.tests import unittest, support +from distutils2.command.bdist import bdist, show_formats +from distutils2.tests import unittest, support, captured_stdout + class BuildTestCase(support.TempdirManager, unittest.TestCase): + def _mock_get_platform(self): + self._get_platform_called = True + return self._get_platform() + + def setUp(self): + super(BuildTestCase, self).setUp() + + # mock util.get_platform + self._get_platform_called = False + self._get_platform = util.get_platform + util.get_platform = self._mock_get_platform + + def tearDown(self): + super(BuildTestCase, self).tearDown() + util.get_platform = self._get_platform + def test_formats(self): # let's create a command and make sure @@ -22,12 +40,36 @@ # XXX an explicit list in bdist is # not the best way to bdist_* commands # we should add a registry - formats = ['zip', 'gztar', 'bztar', 'ztar', 'tar', 'wininst', 'msi'] - formats.sort() - found = cmd.format_command.keys() - found.sort() + formats = sorted(('zip', 'gztar', 'bztar', 'ztar', + 'tar', 'wininst', 'msi')) + found = sorted(cmd.format_command) self.assertEqual(found, formats) + def test_skip_build(self): + pkg_pth, dist = self.create_dist() + cmd = bdist(dist) + cmd.skip_build = False + cmd.formats = ['ztar'] + cmd.ensure_finalized() + self.assertFalse(self._get_platform_called) + + pkg_pth, dist = self.create_dist() + cmd = bdist(dist) + cmd.skip_build = True + cmd.formats = ['ztar'] + cmd.ensure_finalized() + self.assertTrue(self._get_platform_called) + + def test_show_formats(self): + __, stdout = captured_stdout(show_formats) + + # the output should be a header line + one line per format + num_formats = len(bdist.format_commands) + output = [line for line in stdout.split('\n') + if line.strip().startswith('--formats=')] + self.assertEqual(len(output), num_formats) + + def test_suite(): return unittest.makeSuite(BuildTestCase) diff --git a/distutils2/tests/test_command_build_ext.py b/distutils2/tests/test_command_build_ext.py --- a/distutils2/tests/test_command_build_ext.py +++ b/distutils2/tests/test_command_build_ext.py @@ -289,7 +289,7 @@ # inplace = 0, cmd.package = 'bar' build_py = cmd.get_finalized_command('build_py') - build_py.package_dir = {'': 'bar'} + build_py.package_dir = 'bar' path = cmd.get_ext_fullpath('foo') # checking that the last directory is the build_dir path = os.path.split(path)[0] @@ -318,7 +318,7 @@ dist = Distribution() cmd = build_ext(dist) cmd.inplace = 1 - cmd.distribution.package_dir = {'': 'src'} + cmd.distribution.package_dir = 'src' cmd.distribution.packages = ['lxml', 'lxml.html'] curdir = os.getcwd() wanted = os.path.join(curdir, 'src', 'lxml', 'etree' + ext) @@ -334,7 +334,7 @@ # building twisted.runner.portmap not inplace build_py = cmd.get_finalized_command('build_py') - build_py.package_dir = {} + build_py.package_dir = None cmd.distribution.packages = ['twisted', 'twisted.runner.portmap'] path = cmd.get_ext_fullpath('twisted.runner.portmap') wanted = os.path.join(curdir, 'tmpdir', 'twisted', 'runner', diff --git a/distutils2/tests/test_command_build_py.py b/distutils2/tests/test_command_build_py.py --- a/distutils2/tests/test_command_build_py.py +++ b/distutils2/tests/test_command_build_py.py @@ -17,12 +17,14 @@ def test_package_data(self): sources = self.mkdtemp() - f = open(os.path.join(sources, "__init__.py"), "w") + pkg_dir = os.path.join(sources, 'pkg') + os.mkdir(pkg_dir) + f = open(os.path.join(pkg_dir, "__init__.py"), "w") try: f.write("# Pretend this is a package.") finally: f.close() - f = open(os.path.join(sources, "README.txt"), "w") + f = open(os.path.join(pkg_dir, "README.txt"), "w") try: f.write("Info about this package") finally: @@ -31,8 +33,9 @@ destination = self.mkdtemp() dist = Distribution({"packages": ["pkg"], - "package_dir": {"pkg": sources}}) + "package_dir": sources}) # script_name need not exist, it just need to be initialized + dist.script_name = os.path.join(sources, "setup.py") dist.command_obj["build"] = support.DummyCommand( force=0, @@ -42,7 +45,7 @@ use_2to3=False) dist.packages = ["pkg"] dist.package_data = {"pkg": ["README.txt"]} - dist.package_dir = {"pkg": sources} + dist.package_dir = sources cmd = build_py(dist) cmd.compile = 1 @@ -68,19 +71,20 @@ # create the distribution files. sources = self.mkdtemp() - open(os.path.join(sources, "__init__.py"), "w").close() - - testdir = os.path.join(sources, "doc") + pkg = os.path.join(sources, 'pkg') + os.mkdir(pkg) + open(os.path.join(pkg, "__init__.py"), "w").close() + testdir = os.path.join(pkg, "doc") os.mkdir(testdir) open(os.path.join(testdir, "testfile"), "w").close() os.chdir(sources) old_stdout = sys.stdout - sys.stdout = StringIO.StringIO() + #sys.stdout = StringIO.StringIO() try: dist = Distribution({"packages": ["pkg"], - "package_dir": {"pkg": ""}, + "package_dir": sources, "package_data": {"pkg": ["doc/*"]}}) # script_name need not exist, it just need to be initialized dist.script_name = os.path.join(sources, "setup.py") @@ -89,7 +93,7 @@ try: dist.run_commands() - except DistutilsFileError: + except DistutilsFileError, e: self.fail("failed package_data test when package_dir is ''") finally: # Restore state. @@ -112,7 +116,7 @@ finally: sys.dont_write_bytecode = old_dont_write_bytecode - self.assertTrue('byte-compiling is disabled' in self.logs[0][1]) + self.assertIn('byte-compiling is disabled', self.logs[0][2][1]) def test_suite(): return unittest.makeSuite(BuildPyTestCase) diff --git a/distutils2/tests/test_command_check.py b/distutils2/tests/test_command_check.py --- a/distutils2/tests/test_command_check.py +++ b/distutils2/tests/test_command_check.py @@ -4,6 +4,8 @@ from distutils2.metadata import _HAS_DOCUTILS from distutils2.tests import unittest, support from distutils2.errors import DistutilsSetupError +from distutils2.errors import MetadataMissingError + class CheckTestCase(support.LoggingCatcher, support.TempdirManager, @@ -11,7 +13,7 @@ def _run(self, metadata=None, **options): if metadata is None: - metadata = {} + metadata = {'name': 'xxx', 'version': 'xxx'} pkg_info, dist = self.create_dist(**metadata) cmd = check(dist) cmd.initialize_options() @@ -33,19 +35,60 @@ # any warning anymore metadata = {'home_page': 'xxx', 'author': 'xxx', 'author_email': 'xxx', - 'name': 'xxx', 'version': 'xxx' + 'name': 'xxx', 'version': 'xxx', } cmd = self._run(metadata) self.assertEqual(len(cmd._warnings), 0) # now with the strict mode, we should # get an error if there are missing metadata - self.assertRaises(DistutilsSetupError, self._run, {}, **{'strict': 1}) + self.assertRaises(MetadataMissingError, self._run, {}, **{'strict': 1}) + self.assertRaises(DistutilsSetupError, self._run, + {'name': 'xxx', 'version': 'xxx'}, **{'strict': 1}) # and of course, no error when all metadata fields are present cmd = self._run(metadata, strict=1) self.assertEqual(len(cmd._warnings), 0) + def test_check_metadata_1_2(self): + # let's run the command with no metadata at all + # by default, check is checking the metadata + # should have some warnings + cmd = self._run() + self.assertTrue(len(cmd._warnings) > 0) + + # now let's add the required fields + # and run it again, to make sure we don't get + # any warning anymore + # let's use requires_python as a marker to enforce + # Metadata-Version 1.2 + metadata = {'home_page': 'xxx', 'author': 'xxx', + 'author_email': 'xxx', + 'name': 'xxx', 'version': 'xxx', + 'requires_python': '2.4', + } + cmd = self._run(metadata) + self.assertEqual(len(cmd._warnings), 1) + + # now with the strict mode, we should + # get an error if there are missing metadata + self.assertRaises(MetadataMissingError, self._run, {}, **{'strict': 1}) + self.assertRaises(DistutilsSetupError, self._run, + {'name': 'xxx', 'version': 'xxx'}, **{'strict': 1}) + + # complain about version format + self.assertRaises(DistutilsSetupError, self._run, metadata, + **{'strict': 1}) + + # now with correct version format + metadata = {'home_page': 'xxx', 'author': 'xxx', + 'author_email': 'xxx', + 'name': 'xxx', 'version': '1.2', + 'requires_python': '2.4', + } + cmd = self._run(metadata, strict=1) + self.assertEqual(len(cmd._warnings), 0) + @unittest.skipUnless(_HAS_DOCUTILS, "requires docutils") def test_check_restructuredtext(self): # let's see if it detects broken rest in long_description @@ -62,8 +105,10 @@ def test_check_all(self): - metadata = {'home_page': 'xxx', 'author': 'xxx'} self.assertRaises(DistutilsSetupError, self._run, + {'name': 'xxx', 'version': 'xxx'}, **{'strict': 1, + 'all': 1}) + self.assertRaises(MetadataMissingError, self._run, {}, **{'strict': 1, 'all': 1}) @@ -75,7 +120,7 @@ cmd = check(dist) cmd.check_hooks_resolvable() self.assertEqual(len(cmd._warnings), 1) - + def test_suite(): return unittest.makeSuite(CheckTestCase) diff --git a/distutils2/tests/test_command_cmd.py b/distutils2/tests/test_command_cmd.py --- a/distutils2/tests/test_command_cmd.py +++ b/distutils2/tests/test_command_cmd.py @@ -17,22 +17,6 @@ dist = Distribution() self.cmd = MyCmd(dist) - def test_ensure_string_list(self): - - cmd = self.cmd - cmd.not_string_list = ['one', 2, 'three'] - cmd.yes_string_list = ['one', 'two', 'three'] - cmd.not_string_list2 = object() - cmd.yes_string_list2 = 'ok' - cmd.ensure_string_list('yes_string_list') - cmd.ensure_string_list('yes_string_list2') - - self.assertRaises(DistutilsOptionError, - cmd.ensure_string_list, 'not_string_list') - - self.assertRaises(DistutilsOptionError, - cmd.ensure_string_list, 'not_string_list2') - def test_make_file(self): cmd = self.cmd @@ -82,12 +66,20 @@ cmd.ensure_string_list('option1') self.assertEqual(cmd.option1, ['ok', 'dok']) - cmd.option2 = ['xxx', 'www'] - cmd.ensure_string_list('option2') + cmd.yes_string_list = ['one', 'two', 'three'] + cmd.yes_string_list2 = 'ok' + cmd.ensure_string_list('yes_string_list') + cmd.ensure_string_list('yes_string_list2') + self.assertEqual(cmd.yes_string_list, ['one', 'two', 'three']) + self.assertEqual(cmd.yes_string_list2, ['ok']) - cmd.option3 = ['ok', 2] - self.assertRaises(DistutilsOptionError, cmd.ensure_string_list, - 'option3') + cmd.not_string_list = ['one', 2, 'three'] + cmd.not_string_list2 = object() + self.assertRaises(DistutilsOptionError, + cmd.ensure_string_list, 'not_string_list') + + self.assertRaises(DistutilsOptionError, + cmd.ensure_string_list, 'not_string_list2') def test_ensure_filename(self): cmd = self.cmd diff --git a/distutils2/tests/test_command_install_data.py b/distutils2/tests/test_command_install_data.py --- a/distutils2/tests/test_command_install_data.py +++ b/distutils2/tests/test_command_install_data.py @@ -1,7 +1,6 @@ """Tests for distutils.command.install_data.""" -import sys +import cmd import os -import getpass from distutils2.command.install_data import install_data from distutils2.tests import unittest, support @@ -12,21 +11,29 @@ unittest.TestCase): def test_simple_run(self): + from distutils2._backport.sysconfig import _SCHEMES as sysconfig_SCHEMES + from distutils2._backport.sysconfig import _get_default_scheme + #dirty but hit marmoute + + old_scheme = sysconfig_SCHEMES + pkg_dir, dist = self.create_dist() cmd = install_data(dist) cmd.install_dir = inst = os.path.join(pkg_dir, 'inst') - # data_files can contain - # - simple files - # - a tuple with a path, and a list of file + sysconfig_SCHEMES.set(_get_default_scheme(), 'inst', + os.path.join(pkg_dir, 'inst')) + sysconfig_SCHEMES.set(_get_default_scheme(), 'inst2', + os.path.join(pkg_dir, 'inst2')) + one = os.path.join(pkg_dir, 'one') self.write_file(one, 'xxx') inst2 = os.path.join(pkg_dir, 'inst2') two = os.path.join(pkg_dir, 'two') self.write_file(two, 'xxx') - cmd.data_files = [one, (inst2, [two])] - self.assertEqual(cmd.get_inputs(), [one, (inst2, [two])]) + cmd.data_files = {one : '{inst}/one', two : '{inst2}/two'} + self.assertItemsEqual(cmd.get_inputs(), [one, two]) # let's run the command cmd.ensure_finalized() @@ -53,21 +60,25 @@ # now using root and empty dir cmd.root = os.path.join(pkg_dir, 'root') - inst3 = os.path.join(cmd.install_dir, 'inst3') inst4 = os.path.join(pkg_dir, 'inst4') three = os.path.join(cmd.install_dir, 'three') self.write_file(three, 'xx') - cmd.data_files = [one, (inst2, [two]), - ('inst3', [three]), - (inst4, [])] + + sysconfig_SCHEMES.set(_get_default_scheme(), 'inst3', cmd.install_dir) + + cmd.data_files = {one : '{inst}/one', + two : '{inst2}/two', + three : '{inst3}/three'} cmd.ensure_finalized() cmd.run() # let's check the result - self.assertEqual(len(cmd.get_outputs()), 4) + self.assertEqual(len(cmd.get_outputs()), 3) self.assertTrue(os.path.exists(os.path.join(inst2, rtwo))) self.assertTrue(os.path.exists(os.path.join(inst, rone))) + sysconfig_SCHEMES = old_scheme + def test_suite(): return unittest.makeSuite(InstallDataTestCase) diff --git a/distutils2/tests/test_command_install_dist.py b/distutils2/tests/test_command_install_dist.py --- a/distutils2/tests/test_command_install_dist.py +++ b/distutils2/tests/test_command_install_dist.py @@ -180,8 +180,8 @@ cmd.user = 'user' self.assertRaises(DistutilsOptionError, cmd.finalize_options) - def test_record(self): - + def test_old_record(self): + # test pre-PEP 376 --record option (outside dist-info dir) install_dir = self.mkdtemp() pkgdir, dist = self.create_dist() @@ -189,11 +189,11 @@ cmd = install_dist(dist) dist.command_obj['install_dist'] = cmd cmd.root = install_dir - cmd.record = os.path.join(pkgdir, 'RECORD') + cmd.record = os.path.join(pkgdir, 'filelist') cmd.ensure_finalized() cmd.run() - # let's check the RECORD file was created with four + # let's check the record file was created with four # lines, one for each .dist-info entry: METADATA, # INSTALLER, REQUSTED, RECORD f = open(cmd.record) diff --git a/distutils2/tests/test_command_install_distinfo.py b/distutils2/tests/test_command_install_distinfo.py --- a/distutils2/tests/test_command_install_distinfo.py +++ b/distutils2/tests/test_command_install_distinfo.py @@ -1,12 +1,11 @@ """Tests for ``distutils2.command.install_distinfo``. """ import os -import sys import csv from distutils2.command.install_distinfo import install_distinfo from distutils2.command.cmd import Command -from distutils2.metadata import DistributionMetadata +from distutils2.metadata import Metadata from distutils2.tests import unittest, support try: @@ -65,7 +64,7 @@ self.assertEqual(open(os.path.join(dist_info, 'REQUESTED')).read(), '') meta_path = os.path.join(dist_info, 'METADATA') - self.assertTrue(DistributionMetadata(path=meta_path).check()) + self.assertTrue(Metadata(path=meta_path).check()) def test_installer(self): pkg_dir, dist = self.create_dist(name='foo', diff --git a/distutils2/tests/test_command_install_headers.py b/distutils2/tests/test_command_install_headers.py --- a/distutils2/tests/test_command_install_headers.py +++ b/distutils2/tests/test_command_install_headers.py @@ -1,7 +1,5 @@ """Tests for distutils.command.install_headers.""" -import sys import os -import getpass from distutils2.command.install_headers import install_headers from distutils2.tests import unittest, support diff --git a/distutils2/tests/test_command_install_lib.py b/distutils2/tests/test_command_install_lib.py --- a/distutils2/tests/test_command_install_lib.py +++ b/distutils2/tests/test_command_install_lib.py @@ -97,7 +97,7 @@ finally: sys.dont_write_bytecode = old_dont_write_bytecode - self.assertTrue('byte-compiling is disabled' in self.logs[0][1]) + self.assertIn('byte-compiling is disabled', self.logs[0][2][1]) def test_suite(): return unittest.makeSuite(InstallLibTestCase) diff --git a/distutils2/tests/test_command_register.py b/distutils2/tests/test_command_register.py --- a/distutils2/tests/test_command_register.py +++ b/distutils2/tests/test_command_register.py @@ -1,6 +1,5 @@ # -*- encoding: utf-8 -*- """Tests for distutils.command.register.""" -import sys import os import getpass import urllib2 @@ -87,6 +86,8 @@ def tearDown(self): getpass.getpass = self._old_getpass urllib2.build_opener = self.old_opener + if hasattr(register_module, 'raw_input'): + del register_module.raw_input super(RegisterTestCase, self).tearDown() def _get_cmd(self, metadata=None): @@ -109,7 +110,6 @@ # patching raw_input and getpass.getpass # so register gets happy - # # Here's what we are faking : # use your existing login (choice 1.) # Username : 'tarek' @@ -117,11 +117,7 @@ # Save your login (y/N)? : 'y' inputs = RawInputs('1', 'tarek', 'y') register_module.raw_input = inputs.__call__ - # let's run the command - try: - cmd.run() - finally: - del register_module.raw_input + cmd.run() # we should have a brand new .pypirc file self.assertTrue(os.path.exists(self.rc)) @@ -135,8 +131,8 @@ # if we run the command again def _no_way(prompt=''): raise AssertionError(prompt) + register_module.raw_input = _no_way - cmd.show_response = 1 cmd.run() @@ -165,13 +161,10 @@ cmd = self._get_cmd() inputs = RawInputs('2', 'tarek', 'tarek at ziade.org') register_module.raw_input = inputs.__call__ - try: - # let's run the command - # FIXME does this send a real request? use a mock server - # also, silence self.announce (with LoggingCatcher) - cmd.run() - finally: - del register_module.raw_input + # let's run the command + # FIXME does this send a real request? use a mock server + # also, silence self.announce (with LoggingCatcher) + cmd.run() # we should have send a request self.assertTrue(self.conn.reqs, 1) @@ -185,11 +178,7 @@ cmd = self._get_cmd() inputs = RawInputs('3', 'tarek at ziade.org') register_module.raw_input = inputs.__call__ - try: - # let's run the command - cmd.run() - finally: - del register_module.raw_input + cmd.run() # we should have send a request self.assertTrue(self.conn.reqs, 1) @@ -206,9 +195,11 @@ # long_description is not reSt compliant # empty metadata - cmd = self._get_cmd({}) + cmd = self._get_cmd({'name': 'xxx', 'version': 'xxx'}) cmd.ensure_finalized() cmd.strict = 1 + inputs = RawInputs('1', 'tarek', 'y') + register_module.raw_input = inputs.__call__ self.assertRaises(DistutilsSetupError, cmd.run) # metadata is OK but long_description is broken @@ -230,22 +221,14 @@ cmd.strict = 1 inputs = RawInputs('1', 'tarek', 'y') register_module.raw_input = inputs.__call__ - # let's run the command - try: - cmd.run() - finally: - del register_module.raw_input + cmd.run() # strict is not by default cmd = self._get_cmd() cmd.ensure_finalized() inputs = RawInputs('1', 'tarek', 'y') register_module.raw_input = inputs.__call__ - # let's run the command - try: - cmd.run() - finally: - del register_module.raw_input + cmd.run() def test_register_pep345(self): cmd = self._get_cmd({}) diff --git a/distutils2/tests/test_command_sdist.py b/distutils2/tests/test_command_sdist.py --- a/distutils2/tests/test_command_sdist.py +++ b/distutils2/tests/test_command_sdist.py @@ -45,7 +45,6 @@ MANIFEST = """\ # file GENERATED by distutils, do NOT edit -README inroot.txt data%(sep)sdata.dt scripts%(sep)sscript.py @@ -96,9 +95,6 @@ dist.include_package_data = True cmd = sdist(dist) cmd.dist_dir = 'dist' - def _warn(*args): - pass - cmd.warn = _warn return dist, cmd @unittest.skipUnless(zlib, "requires zlib") @@ -141,7 +137,7 @@ zip_file.close() # making sure everything has been pruned correctly - self.assertEqual(len(content), 3) + self.assertEqual(len(content), 2) @unittest.skipUnless(zlib, "requires zlib") def test_make_distribution(self): @@ -206,11 +202,10 @@ self.write_file((some_dir, 'file.txt'), '#') self.write_file((some_dir, 'other_file.txt'), '#') - dist.data_files = [('data', ['data/data.dt', - 'inroot.txt', - 'notexisting']), - 'some/file.txt', - 'some/other_file.txt'] + dist.data_files = {'data/data.dt' : '{appdata}/data.dt', + 'inroot.txt' : '{appdata}/inroot.txt', + 'some/file.txt' : '{appdata}/file.txt', + 'some/other_file.txt' : '{appdata}/other_file.txt'} # adding a script script_dir = join(self.tmp_dir, 'scripts') @@ -236,7 +231,7 @@ zip_file.close() # making sure everything was added - self.assertEqual(len(content), 10) + self.assertEqual(len(content), 9) # checking the MANIFEST manifest = open(join(self.tmp_dir, 'MANIFEST')).read() @@ -245,14 +240,14 @@ @unittest.skipUnless(zlib, "requires zlib") def test_metadata_check_option(self): # testing the `check-metadata` option - dist, cmd = self.get_cmd(metadata={}) + dist, cmd = self.get_cmd(metadata={'name':'xxx', 'version':'xxx'}) # this should raise some warnings ! # with the `check` subcommand cmd.ensure_finalized() cmd.run() warnings = self.get_logs(logging.WARN) - self.assertEqual(len(warnings), 1) + self.assertEqual(len(warnings), 2) # trying with a complete set of metadata self.clear_logs() @@ -264,7 +259,8 @@ # removing manifest generated warnings warnings = [warn for warn in warnings if not warn.endswith('-- skipping')] - self.assertEqual(len(warnings), 0) + # the remaining warning is about the use of the default file list + self.assertEqual(len(warnings), 1) def test_show_formats(self): @@ -362,8 +358,7 @@ if line.strip() != ''] finally: f.close() - - self.assertEquals(len(manifest), 4) + self.assertEqual(len(manifest), 3) # adding a file self.write_file((self.tmp_dir, 'somecode', 'doc2.txt'), '#') @@ -383,7 +378,7 @@ f.close() # do we have the new file in MANIFEST ? - self.assertEquals(len(manifest2), 5) + self.assertEqual(len(manifest2), 4) self.assertIn('doc2.txt', manifest2[-1]) def test_manifest_marker(self): diff --git a/distutils2/tests/test_command_test.py b/distutils2/tests/test_command_test.py --- a/distutils2/tests/test_command_test.py +++ b/distutils2/tests/test_command_test.py @@ -17,10 +17,6 @@ from distutils2.dist import Distribution from distutils2._backport import pkgutil -try: - any -except NameError: - from distutils2._backport import any EXPECTED_OUTPUT_RE = r'''FAIL: test_blah \(myowntestmodule.SomeTest\) ---------------------------------------------------------------------- diff --git a/distutils2/tests/test_command_upload.py b/distutils2/tests/test_command_upload.py --- a/distutils2/tests/test_command_upload.py +++ b/distutils2/tests/test_command_upload.py @@ -5,6 +5,7 @@ from distutils2.command.upload import upload from distutils2.dist import Distribution +from distutils2.errors import DistutilsOptionError from distutils2.tests import unittest, support from distutils2.tests.pypi_server import PyPIServer, PyPIServerTestCase @@ -59,6 +60,14 @@ ('repository', 'http://pypi.python.org/pypi')): self.assertEqual(getattr(cmd, attr), expected) + def test_finalize_options_unsigned_identity_yields_exception(self): + self.write_file(self.rc, PYPIRC) + dist = Distribution() + cmd = upload(dist) + cmd.identity = True + cmd.sign = False + self.assertRaises(DistutilsOptionError, cmd.finalize_options) + def test_saved_password(self): # file with no password self.write_file(self.rc, PYPIRC_NOPASSWORD) @@ -76,6 +85,11 @@ cmd.finalize_options() self.assertEqual(cmd.password, 'xxx') + def test_upload_without_files_yields_exception(self): + dist = Distribution() + cmd = upload(dist) + self.assertRaises(DistutilsOptionError, cmd.run) + def test_upload(self): path = os.path.join(self.tmp_dir, 'xxx') self.write_file(path) diff --git a/distutils2/tests/test_config.py b/distutils2/tests/test_config.py --- a/distutils2/tests/test_config.py +++ b/distutils2/tests/test_config.py @@ -1,10 +1,12 @@ -# -*- encoding: utf8 -*- +# -*- encoding: utf-8 -*- """Tests for distutils.config.""" import os import sys from StringIO import StringIO from distutils2.tests import unittest, support, run_unittest +from distutils2.command.sdist import sdist +from distutils2.errors import DistutilsFileError SETUP_CFG = """ @@ -16,7 +18,7 @@ maintainer = ?ric Araujo maintainer_email = merwok at netwok.org summary = A sample project demonstrating distutils2 packaging -description-file = README +description-file = %(description-file)s keywords = distutils2, packaging, sample project classifier = @@ -47,9 +49,11 @@ Fork in progress, http://bitbucket.org/Merwok/sample-distutils2-project [files] +packages_root = src + packages = one - src:two - src2:three + two + three modules = haven @@ -61,10 +65,7 @@ package_data = cheese = data/templates/* -data_files = - bitmaps = bm/b1.gif, bm/b2.gif - config = cfg/data.cfg - /etc/init.d = init-script +extra_files = %(extra-files)s # Replaces MANIFEST.in sdist_extra = @@ -72,6 +73,11 @@ recursive-include examples *.txt *.py prune examples/sample?/build +resources= + bm/ {b1,b2}.gif = {icon} + Cf*/ *.CFG = {config}/baBar/ + init_script = {script}/JunGle/ + [global] commands = distutils2.tests.test_config.FooBarBazTest @@ -87,6 +93,34 @@ sub_commands = foo """ +# Can not be merged with SETUP_CFG else install_dist +# command will fail when trying to compile C sources +EXT_SETUP_CFG = """ +[files] +packages = one + two + +[extension=speed_coconuts] +name = one.speed_coconuts +sources = c_src/speed_coconuts.c +extra_link_args = "`gcc -print-file-name=libgcc.a`" -shared +define_macros = HAVE_CAIRO HAVE_GTK2 +libraries = gecodeint gecodekernel -- sys.platform != 'win32' + GecodeInt GecodeKernel -- sys.platform == 'win32' + +[extension=fast_taunt] +name = three.fast_taunt +sources = cxx_src/utils_taunt.cxx + cxx_src/python_module.cxx +include_dirs = /usr/include/gecode + /usr/include/blitz +extra_compile_args = -fPIC -O2 + -DGECODE_VERSION=$(./gecode_version) -- sys.platform != 'win32' + /DGECODE_VERSION='win32' -- sys.platform == 'win32' +language = cxx + +""" + class DCompiler(object): name = 'd' @@ -128,23 +162,46 @@ super(ConfigTestCase, self).setUp() self.addCleanup(setattr, sys, 'stdout', sys.stdout) self.addCleanup(setattr, sys, 'stderr', sys.stderr) + sys.stdout = sys.stderr = StringIO() + self.addCleanup(os.chdir, os.getcwd()) + tempdir = self.mkdtemp() + os.chdir(tempdir) + self.tempdir = tempdir + + self.addCleanup(setattr, sys, 'argv', sys.argv) + + def write_setup(self, kwargs=None): + opts = {'description-file': 'README', 'extra-files':''} + if kwargs: + opts.update(kwargs) + self.write_file('setup.cfg', SETUP_CFG % opts) + + + def run_setup(self, *args): + # run setup with args + sys.stdout = StringIO() + sys.argv[:] = [''] + list(args) + old_sys = sys.argv[:] + try: + from distutils2.run import commands_main + dist = commands_main() + finally: + sys.argv[:] = old_sys + return dist def test_config(self): - tempdir = self.mkdtemp() - os.chdir(tempdir) - self.write_file('setup.cfg', SETUP_CFG) + self.write_setup() self.write_file('README', 'yeah') + os.mkdir('bm') + self.write_file(os.path.join('bm', 'b1.gif'), '') + self.write_file(os.path.join('bm', 'b2.gif'), '') + os.mkdir('Cfg') + self.write_file(os.path.join('Cfg', 'data.CFG'), '') + self.write_file('init_script', '') # try to load the metadata now - sys.stdout = StringIO() - sys.argv[:] = ['setup.py', '--version'] - old_sys = sys.argv[:] - try: - from distutils2.run import main - dist = main() - finally: - sys.argv[:] = old_sys + dist = self.run_setup('--version') # sanity check self.assertEqual(sys.stdout.getvalue(), '0.6.4.dev1' + os.linesep) @@ -183,15 +240,17 @@ 'http://bitbucket.org/Merwok/sample-distutils2-project')] self.assertEqual(dist.metadata['Project-Url'], urls) - self.assertEqual(dist.packages, ['one', 'two', 'three']) self.assertEqual(dist.py_modules, ['haven']) self.assertEqual(dist.package_data, {'cheese': 'data/templates/*'}) - self.assertEqual(dist.data_files, - [('bitmaps ', ['bm/b1.gif', 'bm/b2.gif']), - ('config ', ['cfg/data.cfg']), - ('/etc/init.d ', ['init-script'])]) - self.assertEqual(dist.package_dir['two'], 'src') + self.assertEqual( + {'bm/b1.gif' : '{icon}/b1.gif', + 'bm/b2.gif' : '{icon}/b2.gif', + 'Cfg/data.CFG' : '{config}/baBar/data.CFG', + 'init_script' : '{script}/JunGle/init_script'}, + dist.data_files) + + self.assertEqual(dist.package_dir, 'src') # Make sure we get the foo command loaded. We use a string comparison # instead of assertIsInstance because the class is not the same when @@ -204,7 +263,7 @@ 'FooBarBazTest') # did the README got loaded ? - self.assertEquals(dist.metadata['description'], 'yeah') + self.assertEqual(dist.metadata['description'], 'yeah') # do we have the D Compiler enabled ? from distutils2.compiler import new_compiler, _COMPILERS @@ -212,10 +271,112 @@ d = new_compiler(compiler='d') self.assertEqual(d.description, 'D Compiler') + + def test_multiple_description_file(self): + self.write_setup({'description-file': 'README CHANGES'}) + self.write_file('README', 'yeah') + self.write_file('CHANGES', 'changelog2') + dist = self.run_setup('--version') + self.assertEqual(dist.metadata.requires_files, ['README', 'CHANGES']) + + def test_multiline_description_file(self): + self.write_setup({'description-file': 'README\n CHANGES'}) + self.write_file('README', 'yeah') + self.write_file('CHANGES', 'changelog') + dist = self.run_setup('--version') + self.assertEqual(dist.metadata['description'], 'yeah\nchangelog') + self.assertEqual(dist.metadata.requires_files, ['README', 'CHANGES']) + + def test_parse_extensions_in_config(self): + self.write_file('setup.cfg', EXT_SETUP_CFG) + dist = self.run_setup('--version') + + ext_modules = dict((mod.name, mod) for mod in dist.ext_modules) + self.assertEqual(len(ext_modules), 2) + ext = ext_modules.get('one.speed_coconuts') + self.assertEqual(ext.sources, ['c_src/speed_coconuts.c']) + self.assertEqual(ext.define_macros, ['HAVE_CAIRO', 'HAVE_GTK2']) + libs = ['gecodeint', 'gecodekernel'] + if sys.platform == 'win32': + libs = ['GecodeInt', 'GecodeKernel'] + self.assertEqual(ext.libraries, libs) + self.assertEqual(ext.extra_link_args, + ['`gcc -print-file-name=libgcc.a`', '-shared']) + + ext = ext_modules.get('three.fast_taunt') + self.assertEqual(ext.sources, + ['cxx_src/utils_taunt.cxx', 'cxx_src/python_module.cxx']) + self.assertEqual(ext.include_dirs, + ['/usr/include/gecode', '/usr/include/blitz']) + cargs = ['-fPIC', '-O2'] + if sys.platform == 'win32': + cargs.append("/DGECODE_VERSION='win32'") + else: + cargs.append('-DGECODE_VERSION=$(./gecode_version)') + self.assertEqual(ext.extra_compile_args, cargs) + self.assertEqual(ext.language, 'cxx') + + + def test_metadata_requires_description_files_missing(self): + self.write_setup({'description-file': 'README\n README2'}) + self.write_file('README', 'yeah') + self.write_file('README2', 'yeah') + self.write_file('haven.py', '#') + self.write_file('script1.py', '#') + os.mkdir('scripts') + self.write_file(os.path.join('scripts', 'find-coconuts'), '#') + os.mkdir('bin') + self.write_file(os.path.join('bin', 'taunt'), '#') + + os.mkdir('src') + for pkg in ('one', 'two', 'three'): + pkg = os.path.join('src', pkg) + os.mkdir(pkg) + self.write_file(os.path.join(pkg, '__init__.py'), '#') + + dist = self.run_setup('--version') + cmd = sdist(dist) + cmd.finalize_options() + cmd.get_file_list() + self.assertRaises(DistutilsFileError, cmd.make_distribution) + + def test_metadata_requires_description_files(self): + self.write_setup({'description-file': 'README\n README2', + 'extra-files':'\n README2'}) + self.write_file('README', 'yeah') + self.write_file('README2', 'yeah') + self.write_file('haven.py', '#') + self.write_file('script1.py', '#') + os.mkdir('scripts') + self.write_file(os.path.join('scripts', 'find-coconuts'), '#') + os.mkdir('bin') + self.write_file(os.path.join('bin', 'taunt'), '#') + + os.mkdir('src') + for pkg in ('one', 'two', 'three'): + pkg = os.path.join('src', pkg) + os.mkdir(pkg) + self.write_file(os.path.join(pkg, '__init__.py'), '#') + + dist = self.run_setup('--description') + self.assertIn('yeah\nyeah\n', sys.stdout.getvalue()) + + cmd = sdist(dist) + cmd.finalize_options() + cmd.get_file_list() + self.assertRaises(DistutilsFileError, cmd.make_distribution) + + self.write_setup({'description-file': 'README\n README2', + 'extra-files': '\n README2\n README'}) + dist = self.run_setup('--description') + cmd = sdist(dist) + cmd.finalize_options() + cmd.get_file_list() + cmd.make_distribution() + self.assertIn('README\nREADME2\n', open('MANIFEST').read()) + def test_sub_commands(self): - tempdir = self.mkdtemp() - os.chdir(tempdir) - self.write_file('setup.cfg', SETUP_CFG) + self.write_setup() self.write_file('README', 'yeah') self.write_file('haven.py', '#') self.write_file('script1.py', '#') @@ -223,22 +384,17 @@ self.write_file(os.path.join('scripts', 'find-coconuts'), '#') os.mkdir('bin') self.write_file(os.path.join('bin', 'taunt'), '#') + os.mkdir('src') - for pkg in ('one', 'src', 'src2'): + for pkg in ('one', 'two', 'three'): + pkg = os.path.join('src', pkg) os.mkdir(pkg) self.write_file(os.path.join(pkg, '__init__.py'), '#') # try to run the install command to see if foo is called - sys.stdout = sys.stderr = StringIO() - sys.argv[:] = ['', 'install_dist'] - old_sys = sys.argv[:] - try: - from distutils2.run import main - dist = main() - finally: - sys.argv[:] = old_sys + dist = self.run_setup('install_dist') - self.assertEquals(dist.foo_was_here, 1) + self.assertEqual(dist.foo_was_here, 1) def test_suite(): diff --git a/distutils2/tests/test_cygwinccompiler.py b/distutils2/tests/test_cygwinccompiler.py --- a/distutils2/tests/test_cygwinccompiler.py +++ b/distutils2/tests/test_cygwinccompiler.py @@ -8,10 +8,9 @@ from distutils2.tests import captured_stdout from distutils2.compiler import cygwinccompiler -from distutils2.compiler.cygwinccompiler import (CygwinCCompiler, check_config_h, - CONFIG_H_OK, CONFIG_H_NOTOK, - CONFIG_H_UNCERTAIN, get_versions, - get_msvcr, RE_VERSION) +from distutils2.compiler.cygwinccompiler import ( + CygwinCCompiler, check_config_h, get_msvcr, + CONFIG_H_OK, CONFIG_H_NOTOK, CONFIG_H_UNCERTAIN) from distutils2.util import get_compiler_versions from distutils2.tests import unittest, support diff --git a/distutils2/tests/test_depgraph.py b/distutils2/tests/test_depgraph.py --- a/distutils2/tests/test_depgraph.py +++ b/distutils2/tests/test_depgraph.py @@ -184,6 +184,67 @@ self.checkLists(matches, expected) + def test_graph_disconnected_to_dot(self): + dependencies_expected = ( + ('towel-stuff', 'bacon', 'bacon (<=0.2)'), + ('grammar', 'bacon', 'truffles (>=1.2)'), + ('choxie', 'towel-stuff', 'towel-stuff (0.1)'), + ('banana', 'strawberry', 'strawberry (>=0.5)') + ) + disconnected_expected = ('cheese', 'bacon', 'strawberry') + + dists = [] + for name in self.DISTROS_DIST + self.DISTROS_EGG: + dist = pkgutil.get_distribution(name, use_egg_info=True) + self.assertNotEqual(dist, None) + dists.append(dist) + + graph = depgraph.generate_graph(dists) + buf = StringIO.StringIO() + depgraph.graph_to_dot(graph, buf, skip_disconnected=False) + buf.seek(0) + lines = buf.readlines() + + dependencies_lines = [] + disconnected_lines = [] + + # First sort output lines into dependencies and disconnected lines. + # We also skip the attribute lines, and don't include the "{" and "}" + # lines. + disconnected_active = False + for line in lines[1:-1]: # Skip first and last line + if line.startswith('subgraph disconnected'): + disconnected_active = True + continue + if line.startswith('}') and disconnected_active: + disconnected_active = False + continue + + if disconnected_active: + # Skip the 'label = "Disconnected"', etc. attribute lines. + if ' = ' not in line: + disconnected_lines.append(line) + else: + dependencies_lines.append(line) + + dependencies_matches = [] + for line in dependencies_lines: + if line[-1] == '\n': + line = line[:-1] + match = self.EDGE.match(line.strip()) + self.assertTrue(match is not None) + dependencies_matches.append(match.groups()) + + disconnected_matches = [] + for line in disconnected_lines: + if line[-1] == '\n': + line = line[:-1] + line = line.strip('"') + disconnected_matches.append(line) + + self.checkLists(dependencies_matches, dependencies_expected) + self.checkLists(disconnected_matches, disconnected_expected) + def test_graph_bad_version_to_dot(self): expected = ( ('towel-stuff', 'bacon', 'bacon (<=0.2)'), @@ -213,6 +274,16 @@ self.checkLists(matches, expected) + def test_repr(self): + dists = [] + for name in self.DISTROS_DIST + self.DISTROS_EGG + self.BAD_EGGS: + dist = pkgutil.get_distribution(name, use_egg_info=True) + self.assertNotEqual(dist, None) + dists.append(dist) + + graph = depgraph.generate_graph(dists) + assert repr(graph) + def test_main(self): tempout = StringIO.StringIO() old = sys.stdout diff --git a/distutils2/tests/test_dist.py b/distutils2/tests/test_dist.py --- a/distutils2/tests/test_dist.py +++ b/distutils2/tests/test_dist.py @@ -68,7 +68,7 @@ distutils2.dist.DEBUG = False def test_write_pkg_file(self): - # Check DistributionMetadata handling of Unicode fields + # Check Metadata handling of Unicode fields tmp_dir = self.mkdtemp() my_file = os.path.join(tmp_dir, 'f') cls = Distribution diff --git a/distutils2/tests/test_index_dist.py b/distutils2/tests/test_index_dist.py --- a/distutils2/tests/test_index_dist.py +++ b/distutils2/tests/test_index_dist.py @@ -127,7 +127,7 @@ url = "%s/simple/foobar/foobar-0.1.tar.gz" % server.full_address # check md5 if given dist = Dist(url=url, hashname="md5", - hashval="d41d8cd98f00b204e9800998ecf8427e") + hashval="fe18804c5b722ff024cabdf514924fc4") dist.download(self.mkdtemp()) # a wrong md5 fails @@ -157,6 +157,35 @@ hashname="invalid_hashname", hashval="value") + @use_pypi_server('downloads_with_md5') + def test_unpack(self, server): + url = "%s/simple/foobar/foobar-0.1.tar.gz" % server.full_address + dist1 = Dist(url=url) + # doing an unpack + dist1_here = self.mkdtemp() + dist1_there = dist1.unpack(path=dist1_here) + # assert we unpack to the path provided + self.assertEqual(dist1_here, dist1_there) + dist1_result = os.listdir(dist1_there) + self.assertIn('paf', dist1_result) + os.remove(os.path.join(dist1_there, 'paf')) + + # Test unpack works without a path argument + dist2 = Dist(url=url) + # doing an unpack + dist2_there = dist2.unpack() + dist2_result = os.listdir(dist2_there) + self.assertIn('paf', dist2_result) + os.remove(os.path.join(dist2_there, 'paf')) + + def test_hashname(self): + # Invalid hashnames raises an exception on assignation + Dist(hashname="md5", hashval="value") + + self.assertRaises(UnsupportedHashName, Dist, + hashname="invalid_hashname", + hashval="value") + class TestReleasesList(unittest.TestCase): @@ -237,6 +266,10 @@ # dists.sort_distributions(prefer_source=True) # self.assertEqual(fb2_binary, dists[0]) + def test_get_last(self): + dists = ReleasesList('Foo') + self.assertEqual(dists.get_last('Foo 1.0'), None) + def test_suite(): suite = unittest.TestSuite() diff --git a/distutils2/tests/test_index_simple.py b/distutils2/tests/test_index_simple.py --- a/distutils2/tests/test_index_simple.py +++ b/distutils2/tests/test_index_simple.py @@ -6,12 +6,15 @@ import urllib2 from distutils2.index.simple import Crawler -from distutils2.tests import unittest, support +from distutils2.tests import unittest +from distutils2.tests.support import TempdirManager, LoggingCatcher from distutils2.tests.pypi_server import (use_pypi_server, PyPIServer, PYPI_DEFAULT_STATIC_PATH) -class SimpleCrawlerTestCase(support.TempdirManager, unittest.TestCase): +class SimpleCrawlerTestCase(TempdirManager, + LoggingCatcher, + unittest.TestCase): def _get_simple_crawler(self, server, base_url="/simple/", hosts=None, *args, **kwargs): @@ -293,8 +296,8 @@ link2 link2 """ - found_links = dict(crawler._default_link_matcher(content, - base_url)).keys() + found_links = set(dict(crawler._default_link_matcher(content, + base_url))) self.assertIn('http://example.org/some/homepage', found_links) self.assertIn('http://example.org/some/simpleurl', found_links) self.assertIn('http://example.org/some/download', found_links) diff --git a/distutils2/tests/test_index_xmlrpc.py b/distutils2/tests/test_index_xmlrpc.py --- a/distutils2/tests/test_index_xmlrpc.py +++ b/distutils2/tests/test_index_xmlrpc.py @@ -25,6 +25,24 @@ invalid="test") @use_xmlrpc_server() + def test_get_all_projects(self, server): + client = self._get_client(server) + server.xmlrpc.set_distributions([ + {'name': 'FooBar', 'version': '1.1'}, + {'name': 'FooBar', 'version': '1.2'}, + {'name': 'Foo', 'version': '1.1'}, + ]) + results = client.get_all_projects() + self.assertEqual(2, len(results)) + + # check we do have two releases for Foobar's project + self.assertEqual(2, len(results[0].releases)) + + names = [r.name for r in results] + self.assertIn('FooBar', names) + self.assertIn('Foo', names) + + @use_xmlrpc_server() def test_get_releases(self, server): client = self._get_client(server) server.xmlrpc.set_distributions([ diff --git a/distutils2/tests/test_install.py b/distutils2/tests/test_install.py --- a/distutils2/tests/test_install.py +++ b/distutils2/tests/test_install.py @@ -1,15 +1,14 @@ """Tests for the distutils2.install module.""" import os + from tempfile import mkstemp - from distutils2 import install from distutils2.index.xmlrpc import Client -from distutils2.metadata import DistributionMetadata +from distutils2.metadata import Metadata from distutils2.tests import run_unittest -from distutils2.tests.support import TempdirManager +from distutils2.tests.support import LoggingCatcher, TempdirManager, unittest from distutils2.tests.pypi_server import use_xmlrpc_server -from distutils2.tests.support import unittest class InstalledDist(object): @@ -18,7 +17,7 @@ def __init__(self, name, version, deps): self.name = name self.version = version - self.metadata = DistributionMetadata() + self.metadata = Metadata() self.metadata['Requires-Dist'] = deps self.metadata['Provides-Dist'] = ['%s (%s)' % (name, version)] @@ -29,26 +28,20 @@ class ToInstallDist(object): """Distribution that will be installed""" - def __init__(self, raise_error=False, files=False): - self._raise_error = raise_error + def __init__(self, files=False): self._files = files - self.install_called = False - self.install_called_with = {} self.uninstall_called = False self._real_files = [] + self.name = "fake" + self.version = "fake" if files: for f in range(0,3): self._real_files.append(mkstemp()) - def install(self, *args): - self.install_called = True - self.install_called_with = args - if self._raise_error: - raise Exception('Oops !') - return ['/path/to/foo', '/path/to/bar'] - - def uninstall(self, **args): - self.uninstall_called = True + def _unlink_installed_files(self): + if self._files: + for f in self._real_files: + os.unlink(f[1]) def get_installed_files(self, **args): if self._files: @@ -58,14 +51,39 @@ return self.get_installed_files() +class MagicMock(object): + def __init__(self, return_value=None, raise_exception=False): + self.called = False + self._times_called = 0 + self._called_with = [] + self._return_value = return_value + self._raise = raise_exception + + def __call__(self, *args, **kwargs): + self.called = True + self._times_called = self._times_called + 1 + self._called_with.append((args, kwargs)) + iterable = hasattr(self._raise, '__iter__') + if self._raise: + if ((not iterable and self._raise) + or self._raise[self._times_called - 1]): + raise Exception + return self._return_value + + def called_with(self, *args, **kwargs): + return (args, kwargs) in self._called_with + + def get_installed_dists(dists): + """Return a list of fake installed dists. + The list is name, version, deps""" objects = [] for (name, version, deps) in dists: objects.append(InstalledDist(name, version, deps)) return objects -class TestInstall(TempdirManager, unittest.TestCase): +class TestInstall(LoggingCatcher, TempdirManager, unittest.TestCase): def _get_client(self, server, *args, **kwargs): return Client(server.full_address, *args, **kwargs) @@ -150,6 +168,8 @@ # Tests that conflicts are detected client = self._get_client(server) archive_path = '%s/distribution.tar.gz' % server.full_address + + # choxie depends on towel-stuff, which depends on bacon. server.xmlrpc.set_distributions([ {'name':'choxie', 'version': '2.0.0.9', @@ -164,6 +184,8 @@ 'requires_dist': [], 'url': archive_path}, ]) + + # name, version, deps. already_installed = [('bacon', '0.1', []), ('chicken', '1.1', ['bacon (0.1)'])] output = install.get_infos("choxie", index=client, installed= @@ -195,7 +217,7 @@ files = [os.path.join(path, '%s' % x) for x in range(1, 20)] for f in files: file(f, 'a+') - output = [o for o in install.move_files(files, newpath)] + output = [o for o in install._move_files(files, newpath)] # check that output return the list of old/new places for f in files: @@ -214,30 +236,46 @@ for dict1, dict2, expect in tests: install._update_infos(dict1, dict2) - for key in expect.keys(): + for key in expect: self.assertEqual(expect[key], dict1[key]) def test_install_dists_rollback(self): # if one of the distribution installation fails, call uninstall on all # installed distributions. - d1 = ToInstallDist() - d2 = ToInstallDist(raise_error=True) - self.assertRaises(Exception, install.install_dists, [d1, d2]) - for dist in (d1, d2): - self.assertTrue(dist.install_called) - self.assertTrue(d1.uninstall_called) - self.assertFalse(d2.uninstall_called) + old_install_dist = install._install_dist + old_uninstall = getattr(install, 'uninstall', None) + + install._install_dist = MagicMock(return_value=[], + raise_exception=(False, True)) + install.remove = MagicMock() + try: + d1 = ToInstallDist() + d2 = ToInstallDist() + path = self.mkdtemp() + self.assertRaises(Exception, install.install_dists, [d1, d2], path) + self.assertTrue(install._install_dist.called_with(d1, path)) + self.assertTrue(install.remove.called) + finally: + install._install_dist = old_install_dist + install.remove = old_uninstall + def test_install_dists_success(self): - # test that the install method is called on each of the distributions. - d1 = ToInstallDist() - d2 = ToInstallDist() - install.install_dists([d1, d2]) - for dist in (d1, d2): - self.assertTrue(dist.install_called) - self.assertFalse(d1.uninstall_called) - self.assertFalse(d2.uninstall_called) + old_install_dist = install._install_dist + install._install_dist = MagicMock(return_value=[]) + try: + # test that the install method is called on each of the distributions. + d1 = ToInstallDist() + d2 = ToInstallDist() + + # should call install + path = self.mkdtemp() + install.install_dists([d1, d2], path) + for dist in (d1, d2): + self.assertTrue(install._install_dist.called_with(dist, path)) + finally: + install._install_dist = old_install_dist def test_install_from_infos_conflict(self): # assert conflicts raise an exception @@ -262,29 +300,48 @@ install.install_dists = old_install_dists def test_install_from_infos_remove_rollback(self): - # assert that if an error occurs, the removed files are restored. - remove = [] - for i in range(0,2): - remove.append(ToInstallDist(files=True, raise_error=True)) - to_install = [ToInstallDist(raise_error=True), - ToInstallDist()] + old_install_dist = install._install_dist + old_uninstall = getattr(install, 'uninstall', None) - install.install_from_infos(remove=remove, install=to_install) - # assert that the files are in the same place - # assert that the files have been removed - for dist in remove: - for f in dist.get_installed_files(): - self.assertTrue(os.path.exists(f)) + install._install_dist = MagicMock(return_value=[], + raise_exception=(False, True)) + install.uninstall = MagicMock() + try: + # assert that if an error occurs, the removed files are restored. + remove = [] + for i in range(0,2): + remove.append(ToInstallDist(files=True)) + to_install = [ToInstallDist(), ToInstallDist()] + temp_dir = self.mkdtemp() + + self.assertRaises(Exception, install.install_from_infos, + install_path=temp_dir, install=to_install, + remove=remove) + # assert that the files are in the same place + # assert that the files have been removed + for dist in remove: + for f in dist.get_installed_files(): + self.assertTrue(os.path.exists(f)) + dist._unlink_installed_files() + finally: + install.install_dist = old_install_dist + install.uninstall = old_uninstall + def test_install_from_infos_install_succes(self): - # assert that the distribution can be installed - install_path = "my_install_path" - to_install = [ToInstallDist(), ToInstallDist()] + old_install_dist = install._install_dist + install._install_dist = MagicMock([]) + try: + # assert that the distribution can be installed + install_path = "my_install_path" + to_install = [ToInstallDist(), ToInstallDist()] - install.install_from_infos(install=to_install, - install_path=install_path) - for dist in to_install: - self.assertEquals(dist.install_called_with, (install_path,)) + install.install_from_infos(install_path, install=to_install) + for dist in to_install: + install._install_dist.called_with(install_path) + finally: + install._install_dist = old_install_dist + def test_suite(): suite = unittest.TestSuite() diff --git a/distutils2/tests/test_manifest.py b/distutils2/tests/test_manifest.py --- a/distutils2/tests/test_manifest.py +++ b/distutils2/tests/test_manifest.py @@ -1,6 +1,5 @@ """Tests for distutils.manifest.""" import os -import sys import logging from StringIO import StringIO @@ -25,10 +24,11 @@ class ManifestTestCase(support.TempdirManager, + # enable this after LoggingCatcher is fixed + #support.LoggingCatcher, unittest.TestCase): def test_manifest_reader(self): - tmpdir = self.mkdtemp() MANIFEST = os.path.join(tmpdir, 'MANIFEST.in') f = open(MANIFEST, 'w') @@ -38,9 +38,10 @@ f.close() manifest = Manifest() + # remove this when LoggingCatcher is fixed warns = [] - def _warn(msg): - warns.append(msg) + def _warn(*args): + warns.append(args[0]) old_warn = logging.warning logging.warning = _warn @@ -53,7 +54,7 @@ # and 3 warnings issued (we ddidn't provided the files) self.assertEqual(len(warns), 3) for warn in warns: - self.assertIn('warning: no files found matching', warn) + self.assertIn('no files found matching', warn) # manifest also accepts file-like objects old_warn = logging.warning diff --git a/distutils2/tests/test_markers.py b/distutils2/tests/test_markers.py new file mode 100644 --- /dev/null +++ b/distutils2/tests/test_markers.py @@ -0,0 +1,69 @@ +"""Tests for distutils.metadata.""" +import os +import sys +import platform +from StringIO import StringIO + +from distutils2.markers import interpret +from distutils2.tests import run_unittest, unittest +from distutils2.tests.support import LoggingCatcher, WarningsCatcher + + +class MarkersTestCase(LoggingCatcher, WarningsCatcher, + unittest.TestCase): + + def test_interpret(self): + sys_platform = sys.platform + version = sys.version.split()[0] + os_name = os.name + platform_version = platform.version() + platform_machine = platform.machine() + + self.assertTrue(interpret("sys.platform == '%s'" % sys_platform)) + self.assertTrue(interpret( + "sys.platform == '%s' or python_version == '2.4'" % sys_platform)) + self.assertTrue(interpret( + "sys.platform == '%s' and python_full_version == '%s'" % + (sys_platform, version))) + self.assertTrue(interpret("'%s' == sys.platform" % sys_platform)) + self.assertTrue(interpret('os.name == "%s"' % os_name)) + self.assertTrue(interpret( + 'platform.version == "%s" and platform.machine == "%s"' % + (platform_version, platform_machine))) + + # stuff that need to raise a syntax error + ops = ('os.name == os.name', 'os.name == 2', "'2' == '2'", + 'okpjonon', '', 'os.name ==', 'python_version == 2.4') + for op in ops: + self.assertRaises(SyntaxError, interpret, op) + + # combined operations + OP = 'os.name == "%s"' % os_name + AND = ' and ' + OR = ' or ' + self.assertTrue(interpret(OP + AND + OP)) + self.assertTrue(interpret(OP + AND + OP + AND + OP)) + self.assertTrue(interpret(OP + OR + OP)) + self.assertTrue(interpret(OP + OR + OP + OR + OP)) + + # other operators + self.assertTrue(interpret("os.name != 'buuuu'")) + self.assertTrue(interpret("python_version > '1.0'")) + self.assertTrue(interpret("python_version < '5.0'")) + self.assertTrue(interpret("python_version <= '5.0'")) + self.assertTrue(interpret("python_version >= '1.0'")) + self.assertTrue(interpret("'%s' in os.name" % os_name)) + self.assertTrue(interpret("'buuuu' not in os.name")) + self.assertTrue(interpret( + "'buuuu' not in os.name and '%s' in os.name" % os_name)) + + # execution context + self.assertTrue(interpret('python_version == "0.1"', + {'python_version': '0.1'})) + + +def test_suite(): + return unittest.makeSuite(MarkersTestCase) + +if __name__ == '__main__': + run_unittest(test_suite()) diff --git a/distutils2/tests/test_metadata.py b/distutils2/tests/test_metadata.py --- a/distutils2/tests/test_metadata.py +++ b/distutils2/tests/test_metadata.py @@ -1,10 +1,10 @@ -"""Tests for distutils.command.bdist.""" +"""Tests for distutils.metadata.""" import os import sys import platform from StringIO import StringIO -from distutils2.metadata import (DistributionMetadata, _interpret, +from distutils2.metadata import (Metadata, get_metadata_version, PKG_INFO_PREFERRED_VERSION) from distutils2.tests import run_unittest, unittest from distutils2.tests.support import LoggingCatcher, WarningsCatcher @@ -12,7 +12,7 @@ MetadataUnrecognizedVersionError) -class DistributionMetadataTestCase(LoggingCatcher, WarningsCatcher, +class MetadataTestCase(LoggingCatcher, WarningsCatcher, unittest.TestCase): def test_instantiation(self): @@ -24,84 +24,35 @@ fp.close() fp = StringIO(contents) - m = DistributionMetadata() + m = Metadata() self.assertRaises(MetadataUnrecognizedVersionError, m.items) - m = DistributionMetadata(PKG_INFO) + m = Metadata(PKG_INFO) self.assertEqual(len(m.items()), 22) - m = DistributionMetadata(fileobj=fp) + m = Metadata(fileobj=fp) self.assertEqual(len(m.items()), 22) - m = DistributionMetadata(mapping=dict(name='Test', version='1.0')) + m = Metadata(mapping=dict(name='Test', version='1.0')) self.assertEqual(len(m.items()), 11) d = dict(m.items()) - self.assertRaises(TypeError, DistributionMetadata, + self.assertRaises(TypeError, Metadata, PKG_INFO, fileobj=fp) - self.assertRaises(TypeError, DistributionMetadata, + self.assertRaises(TypeError, Metadata, PKG_INFO, mapping=d) - self.assertRaises(TypeError, DistributionMetadata, + self.assertRaises(TypeError, Metadata, fileobj=fp, mapping=d) - self.assertRaises(TypeError, DistributionMetadata, + self.assertRaises(TypeError, Metadata, PKG_INFO, mapping=m, fileobj=fp) - def test_interpret(self): - sys_platform = sys.platform - version = sys.version.split()[0] - os_name = os.name - platform_version = platform.version() - platform_machine = platform.machine() - - self.assertTrue(_interpret("sys.platform == '%s'" % sys_platform)) - self.assertTrue(_interpret( - "sys.platform == '%s' or python_version == '2.4'" % sys_platform)) - self.assertTrue(_interpret( - "sys.platform == '%s' and python_full_version == '%s'" % - (sys_platform, version))) - self.assertTrue(_interpret("'%s' == sys.platform" % sys_platform)) - self.assertTrue(_interpret('os.name == "%s"' % os_name)) - self.assertTrue(_interpret( - 'platform.version == "%s" and platform.machine == "%s"' % - (platform_version, platform_machine))) - - # stuff that need to raise a syntax error - ops = ('os.name == os.name', 'os.name == 2', "'2' == '2'", - 'okpjonon', '', 'os.name ==', 'python_version == 2.4') - for op in ops: - self.assertRaises(SyntaxError, _interpret, op) - - # combined operations - OP = 'os.name == "%s"' % os_name - AND = ' and ' - OR = ' or ' - self.assertTrue(_interpret(OP + AND + OP)) - self.assertTrue(_interpret(OP + AND + OP + AND + OP)) - self.assertTrue(_interpret(OP + OR + OP)) - self.assertTrue(_interpret(OP + OR + OP + OR + OP)) - - # other operators - self.assertTrue(_interpret("os.name != 'buuuu'")) - self.assertTrue(_interpret("python_version > '1.0'")) - self.assertTrue(_interpret("python_version < '5.0'")) - self.assertTrue(_interpret("python_version <= '5.0'")) - self.assertTrue(_interpret("python_version >= '1.0'")) - self.assertTrue(_interpret("'%s' in os.name" % os_name)) - self.assertTrue(_interpret("'buuuu' not in os.name")) - self.assertTrue(_interpret( - "'buuuu' not in os.name and '%s' in os.name" % os_name)) - - # execution context - self.assertTrue(_interpret('python_version == "0.1"', - {'python_version': '0.1'})) - def test_metadata_read_write(self): PKG_INFO = os.path.join(os.path.dirname(__file__), 'PKG-INFO') - metadata = DistributionMetadata(PKG_INFO) + metadata = Metadata(PKG_INFO) out = StringIO() metadata.write_file(out) out.seek(0) - res = DistributionMetadata() + res = Metadata() res.read_file(out) for k in metadata.keys(): self.assertTrue(metadata[k] == res[k]) @@ -111,17 +62,17 @@ PKG_INFO = os.path.join(os.path.dirname(__file__), 'PKG-INFO') content = open(PKG_INFO).read() content = content % sys.platform - metadata = DistributionMetadata(platform_dependent=True) + metadata = Metadata(platform_dependent=True) metadata.read_file(StringIO(content)) self.assertEqual(metadata['Requires-Dist'], ['bar']) metadata['Name'] = "baz; sys.platform == 'blah'" # FIXME is None or 'UNKNOWN' correct here? # where is that documented? - self.assertEquals(metadata['Name'], None) + self.assertEqual(metadata['Name'], None) # test with context context = {'sys.platform': 'okook'} - metadata = DistributionMetadata(platform_dependent=True, + metadata = Metadata(platform_dependent=True, execution_context=context) metadata.read_file(StringIO(content)) self.assertEqual(metadata['Requires-Dist'], ['foo']) @@ -130,7 +81,7 @@ PKG_INFO = os.path.join(os.path.dirname(__file__), 'PKG-INFO') content = open(PKG_INFO).read() content = content % sys.platform - metadata = DistributionMetadata() + metadata = Metadata() metadata.read_file(StringIO(content)) # see if we can read the description now @@ -149,7 +100,7 @@ PKG_INFO = os.path.join(os.path.dirname(__file__), 'PKG-INFO') content = open(PKG_INFO).read() content = content % sys.platform - metadata = DistributionMetadata(fileobj=StringIO(content)) + metadata = Metadata(fileobj=StringIO(content)) self.assertIn('Version', metadata.keys()) self.assertIn('0.5', metadata.values()) self.assertIn(('Version', '0.5'), metadata.items()) @@ -160,7 +111,7 @@ self.assertEqual(metadata['Version'], '0.7') def test_versions(self): - metadata = DistributionMetadata() + metadata = Metadata() metadata['Obsoletes'] = 'ok' self.assertEqual(metadata['Metadata-Version'], '1.1') @@ -175,22 +126,28 @@ del metadata['Obsoletes-Dist'] metadata['Version'] = '1' self.assertEqual(metadata['Metadata-Version'], '1.0') + self.assertEqual(get_metadata_version(metadata), '1.0') PKG_INFO = os.path.join(os.path.dirname(__file__), 'SETUPTOOLS-PKG-INFO') metadata.read_file(StringIO(open(PKG_INFO).read())) self.assertEqual(metadata['Metadata-Version'], '1.0') + self.assertEqual(get_metadata_version(metadata), '1.0') PKG_INFO = os.path.join(os.path.dirname(__file__), 'SETUPTOOLS-PKG-INFO2') metadata.read_file(StringIO(open(PKG_INFO).read())) self.assertEqual(metadata['Metadata-Version'], '1.1') + self.assertEqual(get_metadata_version(metadata), '1.1') - metadata.version = '1.618' + # Update the _fields dict directly to prevent 'Metadata-Version' + # from being updated by the _set_best_version() method. + metadata._fields['Metadata-Version'] = '1.618' self.assertRaises(MetadataUnrecognizedVersionError, metadata.keys) - def test_warnings(self): - metadata = DistributionMetadata() + # XXX Spurious Warnings were disabled + def XXXtest_warnings(self): + metadata = Metadata() # these should raise a warning values = (('Requires-Dist', 'Funky (Groovie)'), @@ -203,7 +160,7 @@ self.assertEqual(len(self.logs), 2) def test_multiple_predicates(self): - metadata = DistributionMetadata() + metadata = Metadata() # see for "3" instead of "3.0" ??? # its seems like the MINOR VERSION can be omitted @@ -213,35 +170,97 @@ self.assertEqual(len(self.warnings), 0) def test_project_url(self): - metadata = DistributionMetadata() + metadata = Metadata() metadata['Project-URL'] = [('one', 'http://ok')] self.assertEqual(metadata['Project-URL'], [('one', 'http://ok')]) - self.assertEqual(metadata.version, '1.2') + self.assertEqual(metadata['Metadata-Version'], '1.2') - def test_check(self): - metadata = DistributionMetadata() + def test_check_version(self): + metadata = Metadata() + metadata['Name'] = 'vimpdb' + metadata['Home-page'] = 'http://pypi.python.org' + metadata['Author'] = 'Monty Python' + metadata.docutils_support = False + missing, warnings = metadata.check() + self.assertEqual(missing, ['Version']) + + def test_check_version_strict(self): + metadata = Metadata() + metadata['Name'] = 'vimpdb' + metadata['Home-page'] = 'http://pypi.python.org' + metadata['Author'] = 'Monty Python' + metadata.docutils_support = False + from distutils2.errors import MetadataMissingError + self.assertRaises(MetadataMissingError, metadata.check, strict=True) + + def test_check_name(self): + metadata = Metadata() + metadata['Version'] = '1.0' + metadata['Home-page'] = 'http://pypi.python.org' + metadata['Author'] = 'Monty Python' + metadata.docutils_support = False + missing, warnings = metadata.check() + self.assertEqual(missing, ['Name']) + + def test_check_name_strict(self): + metadata = Metadata() + metadata['Version'] = '1.0' + metadata['Home-page'] = 'http://pypi.python.org' + metadata['Author'] = 'Monty Python' + metadata.docutils_support = False + from distutils2.errors import MetadataMissingError + self.assertRaises(MetadataMissingError, metadata.check, strict=True) + + def test_check_author(self): + metadata = Metadata() + metadata['Version'] = '1.0' + metadata['Name'] = 'vimpdb' + metadata['Home-page'] = 'http://pypi.python.org' + metadata.docutils_support = False + missing, warnings = metadata.check() + self.assertEqual(missing, ['Author']) + + def test_check_homepage(self): + metadata = Metadata() + metadata['Version'] = '1.0' + metadata['Name'] = 'vimpdb' + metadata['Author'] = 'Monty Python' + metadata.docutils_support = False + missing, warnings = metadata.check() + self.assertEqual(missing, ['Home-page']) + + def test_check_predicates(self): + metadata = Metadata() metadata['Version'] = 'rr' + metadata['Name'] = 'vimpdb' + metadata['Home-page'] = 'http://pypi.python.org' + metadata['Author'] = 'Monty Python' metadata['Requires-dist'] = ['Foo (a)'] + metadata['Obsoletes-dist'] = ['Foo (a)'] + metadata['Provides-dist'] = ['Foo (a)'] if metadata.docutils_support: missing, warnings = metadata.check() - self.assertEqual(len(warnings), 2) + self.assertEqual(len(warnings), 4) metadata.docutils_support = False missing, warnings = metadata.check() - self.assertEqual(missing, ['Name', 'Home-page']) - self.assertEqual(len(warnings), 2) + self.assertEqual(len(warnings), 4) def test_best_choice(self): - metadata = DistributionMetadata() + metadata = Metadata() metadata['Version'] = '1.0' - self.assertEqual(metadata.version, PKG_INFO_PREFERRED_VERSION) + self.assertEqual(metadata['Metadata-Version'], + PKG_INFO_PREFERRED_VERSION) + self.assertEqual(get_metadata_version(metadata), + PKG_INFO_PREFERRED_VERSION) metadata['Classifier'] = ['ok'] - self.assertEqual(metadata.version, '1.2') + self.assertEqual(metadata['Metadata-Version'], '1.2') + self.assertEqual(get_metadata_version(metadata), '1.2') def test_project_urls(self): # project-url is a bit specific, make sure we write it # properly in PKG-INFO - metadata = DistributionMetadata() + metadata = Metadata() metadata['Version'] = '1.0' metadata['Project-Url'] = [('one', 'http://ok')] self.assertEqual(metadata['Project-Url'], [('one', 'http://ok')]) @@ -252,13 +271,13 @@ self.assertIn('Project-URL: one,http://ok', res) file_.seek(0) - metadata = DistributionMetadata() + metadata = Metadata() metadata.read_file(file_) self.assertEqual(metadata['Project-Url'], [('one', 'http://ok')]) def test_suite(): - return unittest.makeSuite(DistributionMetadataTestCase) + return unittest.makeSuite(MetadataTestCase) if __name__ == '__main__': run_unittest(test_suite()) diff --git a/distutils2/tests/test_mixin2to3.py b/distutils2/tests/test_mixin2to3.py --- a/distutils2/tests/test_mixin2to3.py +++ b/distutils2/tests/test_mixin2to3.py @@ -25,7 +25,7 @@ converted_code_content = "print('test')\n" new_code_content = "".join(open(code_name).readlines()) - self.assertEquals(new_code_content, converted_code_content) + self.assertEqual(new_code_content, converted_code_content) @unittest.skipIf(sys.version < '2.6', 'requires Python 2.6 or higher') def test_doctests_only(self): @@ -45,7 +45,7 @@ converted_doctest_content = '\n'.join(converted_doctest_content) new_doctest_content = "".join(open(doctest_name).readlines()) - self.assertEquals(new_doctest_content, converted_doctest_content) + self.assertEqual(new_doctest_content, converted_doctest_content) @unittest.skipIf(sys.version < '2.6', 'requires Python 2.6 or higher') def test_additional_fixers(self): @@ -60,11 +60,11 @@ mixin2to3 = Mixin2to3() - mixin2to3._run_2to3(files=[code_name], + mixin2to3._run_2to3(files=[code_name], doctests=[code_name], fixers=['distutils2.tests.fixer']) converted_code_content = "isinstance(x, T)" new_code_content = "".join(open(code_name).readlines()) - self.assertEquals(new_code_content, converted_code_content) + self.assertEqual(new_code_content, converted_code_content) def test_suite(): return unittest.makeSuite(Mixin2to3TestCase) diff --git a/distutils2/tests/test_mkcfg.py b/distutils2/tests/test_mkcfg.py --- a/distutils2/tests/test_mkcfg.py +++ b/distutils2/tests/test_mkcfg.py @@ -1,18 +1,67 @@ +# -*- coding: utf-8 -*- """Tests for distutils.mkcfg.""" import os +import sys +import StringIO +from textwrap import dedent + from distutils2.tests import run_unittest, support, unittest from distutils2.mkcfg import MainProgram +from distutils2.mkcfg import ask_yn, ask, main +from distutils2._backport import sysconfig class MkcfgTestCase(support.TempdirManager, unittest.TestCase): + def setUp(self): + super(MkcfgTestCase, self).setUp() + self._stdin = sys.stdin + self._stdout = sys.stdout + sys.stdin = StringIO.StringIO() + sys.stdout = StringIO.StringIO() + self._cwd = os.getcwd() + self.wdir = self.mkdtemp() + os.chdir(self.wdir) + # patch sysconfig + self._old_get_paths = sysconfig.get_paths + sysconfig.get_paths = lambda *args, **kwargs: { + 'man': sys.prefix + '/share/man', + 'doc': sys.prefix + '/share/doc/pyxfoil',} + + def tearDown(self): + super(MkcfgTestCase, self).tearDown() + sys.stdin = self._stdin + sys.stdout = self._stdout + os.chdir(self._cwd) + sysconfig.get_paths = self._old_get_paths + + def test_ask_yn(self): + sys.stdin.write('y\n') + sys.stdin.seek(0) + self.assertEqual('y', ask_yn('is this a test')) + + def test_ask(self): + sys.stdin.write('a\n') + sys.stdin.write('b\n') + sys.stdin.seek(0) + self.assertEqual('a', ask('is this a test')) + self.assertEqual('b', ask(str(range(0,70)), default='c', lengthy=True)) + + def test_set_multi(self): + main = MainProgram() + sys.stdin.write('aaaaa\n') + sys.stdin.seek(0) + main.data['author'] = [] + main._set_multi('_set_multi test', 'author') + self.assertEqual(['aaaaa'], main.data['author']) + def test_find_files(self): # making sure we scan a project dir correctly main = MainProgram() # building the structure - tempdir = self.mkdtemp() + tempdir = self.wdir dirs = ['pkg1', 'data', 'pkg2', 'pkg2/sub'] files = ['README', 'setup.cfg', 'foo.py', 'pkg1/__init__.py', 'pkg1/bar.py', @@ -26,18 +75,143 @@ path = os.path.join(tempdir, file_) self.write_file(path, 'xxx') - old_dir = os.getcwd() - os.chdir(tempdir) - try: - main._find_files() - finally: - os.chdir(old_dir) + main._find_files() # do we have what we want ? self.assertEqual(main.data['packages'], ['pkg1', 'pkg2', 'pkg2.sub']) self.assertEqual(main.data['modules'], ['foo']) - self.assertEqual(main.data['extra_files'], - ['setup.cfg', 'README', 'data/data1']) + self.assertEqual(set(main.data['extra_files']), + set(['setup.cfg', 'README', 'data/data1'])) + + def test_convert_setup_py_to_cfg(self): + self.write_file((self.wdir, 'setup.py'), + dedent(""" + # -*- coding: utf-8 -*- + from distutils.core import setup + lg_dsc = '''My super Death-scription + barbar is now on the public domain, + ho, baby !''' + setup(name='pyxfoil', + version='0.2', + description='Python bindings for the Xfoil engine', + long_description = lg_dsc, + maintainer='Andr? Espaze', + maintainer_email='andre.espaze at logilab.fr', + url='http://www.python-science.org/project/pyxfoil', + license='GPLv2', + packages=['pyxfoil', 'babar', 'me'], + data_files=[('share/doc/pyxfoil', ['README.rst']), + ('share/man', ['pyxfoil.1']), + ], + py_modules = ['my_lib', 'mymodule'], + package_dir = {'babar' : '', + 'me' : 'Martinique/Lamentin', + }, + package_data = {'babar': ['Pom', 'Flora', 'Alexander'], + 'me': ['dady', 'mumy', 'sys', 'bro'], + '': ['setup.py', 'README'], + 'pyxfoil' : ['fengine.so'], + }, + scripts = ['my_script', 'bin/run'], + ) + """)) + sys.stdin.write('y\n') + sys.stdin.seek(0) + main() + fp = open(os.path.join(self.wdir, 'setup.cfg')) + try: + lines = set([line.rstrip() for line in fp]) + finally: + fp.close() + self.assertEqual(lines, set(['', + '[metadata]', + 'version = 0.2', + 'name = pyxfoil', + 'maintainer = Andr? Espaze', + 'description = My super Death-scription', + ' |barbar is now on the public domain,', + ' |ho, baby !', + 'maintainer_email = andre.espaze at logilab.fr', + 'home_page = http://www.python-science.org/project/pyxfoil', + 'download_url = UNKNOWN', + 'summary = Python bindings for the Xfoil engine', + '[files]', + 'modules = my_lib', + ' mymodule', + 'packages = pyxfoil', + ' babar', + ' me', + 'extra_files = Martinique/Lamentin/dady', + ' Martinique/Lamentin/mumy', + ' Martinique/Lamentin/sys', + ' Martinique/Lamentin/bro', + ' Pom', + ' Flora', + ' Alexander', + ' setup.py', + ' README', + ' pyxfoil/fengine.so', + 'scripts = my_script', + ' bin/run', + 'resources =', + ' README.rst = {doc}', + ' pyxfoil.1 = {man}', + ])) + + def test_convert_setup_py_to_cfg_with_description_in_readme(self): + self.write_file((self.wdir, 'setup.py'), + dedent(""" + # -*- coding: utf-8 -*- + from distutils.core import setup + lg_dsc = open('README.txt').read() + setup(name='pyxfoil', + version='0.2', + description='Python bindings for the Xfoil engine', + long_description=lg_dsc, + maintainer='Andr? Espaze', + maintainer_email='andre.espaze at logilab.fr', + url='http://www.python-science.org/project/pyxfoil', + license='GPLv2', + packages=['pyxfoil'], + package_data={'pyxfoil' : ['fengine.so', 'babar.so']}, + data_files=[ + ('share/doc/pyxfoil', ['README.rst']), + ('share/man', ['pyxfoil.1']), + ], + ) + """)) + self.write_file((self.wdir, 'README.txt'), + dedent(''' +My super Death-scription +barbar is now on the public domain, +ho, baby ! + ''')) + sys.stdin.write('y\n') + sys.stdin.seek(0) + main() + fp = open(os.path.join(self.wdir, 'setup.cfg')) + try: + lines = set([line.rstrip() for line in fp]) + finally: + fp.close() + self.assertEqual(lines, set(['', + '[metadata]', + 'version = 0.2', + 'name = pyxfoil', + 'maintainer = Andr? Espaze', + 'maintainer_email = andre.espaze at logilab.fr', + 'home_page = http://www.python-science.org/project/pyxfoil', + 'download_url = UNKNOWN', + 'summary = Python bindings for the Xfoil engine', + 'description-file = README.txt', + '[files]', + 'packages = pyxfoil', + 'extra_files = pyxfoil/fengine.so', + ' pyxfoil/babar.so', + 'resources =', + ' README.rst = {doc}', + ' pyxfoil.1 = {man}', + ])) def test_suite(): diff --git a/distutils2/tests/test_resources.py b/distutils2/tests/test_resources.py new file mode 100644 --- /dev/null +++ b/distutils2/tests/test_resources.py @@ -0,0 +1,174 @@ +# -*- encoding: utf-8 -*- +"""Tests for distutils.data.""" +import pkgutil +import sys + +from distutils2._backport.pkgutil import resource_open +from distutils2._backport.pkgutil import resource_path +from distutils2._backport.pkgutil import disable_cache +from distutils2._backport.pkgutil import enable_cache +from distutils2.command.install_dist import install_dist +from distutils2.resources import resources_dests +from distutils2.tests import run_unittest +from distutils2.tests import unittest +from distutils2.tests.test_util import GlobTestCaseBase +import os +import tempfile + + +class DataFilesTestCase(GlobTestCaseBase): + + def assertRulesMatch(self, rules, spec): + tempdir = self.build_files_tree(spec) + expected = self.clean_tree(spec) + result = resources_dests(tempdir, rules) + self.assertEquals(expected, result) + + def clean_tree(self, spec): + files = {} + for path, value in spec.items(): + if value is not None: + path = self.os_dependant_path(path) + files[path] = value + return files + + def test_simple_glob(self): + rules = [('', '*.tpl', '{data}')] + spec = {'coucou.tpl': '{data}/coucou.tpl', + 'Donotwant': None} + self.assertRulesMatch(rules, spec) + + def test_multiple_match(self): + rules = [('scripts', '*.bin', '{appdata}'), + ('scripts', '*', '{appscript}')] + spec = {'scripts/script.bin': '{appscript}/script.bin', + 'Babarlikestrawberry': None} + self.assertRulesMatch(rules, spec) + + def test_set_match(self): + rules = [('scripts', '*.{bin,sh}', '{appscript}')] + spec = {'scripts/script.bin': '{appscript}/script.bin', + 'scripts/babar.sh': '{appscript}/babar.sh', + 'Babarlikestrawberry': None} + self.assertRulesMatch(rules, spec) + + def test_set_match_multiple(self): + rules = [('scripts', 'script{s,}.{bin,sh}', '{appscript}')] + spec = {'scripts/scripts.bin': '{appscript}/scripts.bin', + 'scripts/script.sh': '{appscript}/script.sh', + 'Babarlikestrawberry': None} + self.assertRulesMatch(rules, spec) + + def test_set_match_exclude(self): + rules = [('scripts', '*', '{appscript}'), + ('', '**/*.sh', None)] + spec = {'scripts/scripts.bin': '{appscript}/scripts.bin', + 'scripts/script.sh': None, + 'Babarlikestrawberry': None} + self.assertRulesMatch(rules, spec) + + def test_glob_in_base(self): + rules = [('scrip*', '*.bin', '{appscript}')] + spec = {'scripts/scripts.bin': '{appscript}/scripts.bin', + 'scripouille/babar.bin': '{appscript}/babar.bin', + 'scriptortu/lotus.bin': '{appscript}/lotus.bin', + 'Babarlikestrawberry': None} + self.assertRulesMatch(rules, spec) + + def test_recursive_glob(self): + rules = [('', '**/*.bin', '{binary}')] + spec = {'binary0.bin': '{binary}/binary0.bin', + 'scripts/binary1.bin': '{binary}/scripts/binary1.bin', + 'scripts/bin/binary2.bin': '{binary}/scripts/bin/binary2.bin', + 'you/kill/pandabear.guy': None} + self.assertRulesMatch(rules, spec) + + def test_final_exemple_glob(self): + rules = [ + ('mailman/database/schemas/', '*', '{appdata}/schemas'), + ('', '**/*.tpl', '{appdata}/templates'), + ('', 'developer-docs/**/*.txt', '{doc}'), + ('', 'README', '{doc}'), + ('mailman/etc/', '*', '{config}'), + ('mailman/foo/', '**/bar/*.cfg', '{config}/baz'), + ('mailman/foo/', '**/*.cfg', '{config}/hmm'), + ('', 'some-new-semantic.sns', '{funky-crazy-category}') + ] + spec = { + 'README': '{doc}/README', + 'some.tpl': '{appdata}/templates/some.tpl', + 'some-new-semantic.sns': '{funky-crazy-category}/some-new-semantic.sns', + 'mailman/database/mailman.db': None, + 'mailman/database/schemas/blah.schema': '{appdata}/schemas/blah.schema', + 'mailman/etc/my.cnf': '{config}/my.cnf', + 'mailman/foo/some/path/bar/my.cfg': '{config}/hmm/some/path/bar/my.cfg', + 'mailman/foo/some/path/other.cfg': '{config}/hmm/some/path/other.cfg', + 'developer-docs/index.txt': '{doc}/developer-docs/index.txt', + 'developer-docs/api/toc.txt': '{doc}/developer-docs/api/toc.txt', + } + self.maxDiff = None + self.assertRulesMatch(rules, spec) + + def test_resource_open(self): + + + #Create a fake-dist + temp_site_packages = tempfile.mkdtemp() + + dist_name = 'test' + dist_info = os.path.join(temp_site_packages, 'test-0.1.dist-info') + os.mkdir(dist_info) + + metadata_path = os.path.join(dist_info, 'METADATA') + resources_path = os.path.join(dist_info, 'RESOURCES') + + metadata_file = open(metadata_path, 'w') + + metadata_file.write( +"""Metadata-Version: 1.2 +Name: test +Version: 0.1 +Summary: test +Author: me + """) + + metadata_file.close() + + test_path = 'test.cfg' + + _, test_resource_path = tempfile.mkstemp() + + test_resource_file = open(test_resource_path, 'w') + + content = 'Config' + test_resource_file.write(content) + test_resource_file.close() + + resources_file = open(resources_path, 'w') + + resources_file.write("""%s,%s""" % (test_path, test_resource_path)) + resources_file.close() + + #Add fake site-packages to sys.path to retrieve fake dist + old_sys_path = sys.path + sys.path.insert(0, temp_site_packages) + + #Force pkgutil to rescan the sys.path + disable_cache() + + #Try to retrieve resources paths and files + self.assertEqual(resource_path(dist_name, test_path), test_resource_path) + self.assertRaises(KeyError, resource_path, dist_name, 'notexis') + + self.assertEqual(resource_open(dist_name, test_path).read(), content) + self.assertRaises(KeyError, resource_open, dist_name, 'notexis') + + sys.path = old_sys_path + + enable_cache() + +def test_suite(): + return unittest.makeSuite(DataFilesTestCase) + +if __name__ == '__main__': + run_unittest(test_suite()) diff --git a/distutils2/tests/test_uninstall.py b/distutils2/tests/test_uninstall.py new file mode 100644 --- /dev/null +++ b/distutils2/tests/test_uninstall.py @@ -0,0 +1,93 @@ +"""Tests for the uninstall command.""" +import os +import sys +from StringIO import StringIO +from distutils2._backport.pkgutil import disable_cache, enable_cache +from distutils2.tests import unittest, support, run_unittest +from distutils2.errors import DistutilsError +from distutils2.install import remove + +SETUP_CFG = """ +[metadata] +name = %(name)s +version = %(version)s + +[files] +packages = + %(name)s + %(name)s.sub +""" + +class UninstallTestCase(support.TempdirManager, + support.LoggingCatcher, + unittest.TestCase): + + def setUp(self): + super(UninstallTestCase, self).setUp() + self.addCleanup(setattr, sys, 'stdout', sys.stdout) + self.addCleanup(setattr, sys, 'stderr', sys.stderr) + self.addCleanup(os.chdir, os.getcwd()) + self.addCleanup(enable_cache) + self.root_dir = self.mkdtemp() + disable_cache() + + def run_setup(self, *args): + # run setup with args + #sys.stdout = StringIO() + sys.argv[:] = [''] + list(args) + old_sys = sys.argv[:] + try: + from distutils2.run import commands_main + dist = commands_main() + finally: + sys.argv[:] = old_sys + return dist + + def get_path(self, dist, name): + from distutils2.command.install_dist import install_dist + cmd = install_dist(dist) + cmd.prefix = self.root_dir + cmd.finalize_options() + return getattr(cmd, 'install_'+name) + + def make_dist(self, pkg_name='foo', **kw): + dirname = self.mkdtemp() + kw['name'] = pkg_name + if 'version' not in kw: + kw['version'] = '0.1' + self.write_file((dirname, 'setup.cfg'), SETUP_CFG % kw) + os.mkdir(os.path.join(dirname, pkg_name)) + self.write_file((dirname, '__init__.py'), '#') + self.write_file((dirname, pkg_name+'_utils.py'), '#') + os.mkdir(os.path.join(dirname, pkg_name, 'sub')) + self.write_file((dirname, pkg_name, 'sub', '__init__.py'), '#') + self.write_file((dirname, pkg_name, 'sub', pkg_name+'_utils.py'), '#') + return dirname + + def install_dist(self, pkg_name='foo', dirname=None, **kw): + if not dirname: + dirname = self.make_dist(pkg_name, **kw) + os.chdir(dirname) + dist = self.run_setup('install_dist', '--prefix='+self.root_dir) + install_lib = self.get_path(dist, 'purelib') + return dist, install_lib + + def test_uninstall_unknow_distribution(self): + self.assertRaises(DistutilsError, remove, 'foo', paths=[self.root_dir]) + + def test_uninstall(self): + dist, install_lib = self.install_dist() + self.assertIsFile(install_lib, 'foo', 'sub', '__init__.py') + self.assertIsFile(install_lib, 'foo-0.1.dist-info', 'RECORD') + remove('foo', paths=[install_lib]) + self.assertIsNotFile(install_lib, 'foo', 'sub', '__init__.py') + self.assertIsNotFile(install_lib, 'foo-0.1.dist-info', 'RECORD') + + + + +def test_suite(): + return unittest.makeSuite(UninstallTestCase) + +if __name__ == '__main__': + run_unittest(test_suite()) diff --git a/distutils2/tests/test_util.py b/distutils2/tests/test_util.py --- a/distutils2/tests/test_util.py +++ b/distutils2/tests/test_util.py @@ -18,7 +18,7 @@ _find_exe_version, _MAC_OS_X_LD_VERSION, byte_compile, find_packages, spawn, find_executable, _nt_quote_args, get_pypirc_path, generate_pypirc, - read_pypirc, resolve_name) + read_pypirc, resolve_name, iglob, RICH_GLOB) from distutils2 import util from distutils2.tests import unittest, support @@ -144,7 +144,7 @@ os.path.join = _join self.assertEqual(convert_path('/home/to/my/stuff'), - '/home/to/my/stuff') + '/home/to/my/stuff') # win os.sep = '\\' @@ -156,9 +156,9 @@ self.assertRaises(ValueError, convert_path, 'home/to/my/stuff/') self.assertEqual(convert_path('home/to/my/stuff'), - 'home\\to\\my\\stuff') + 'home\\to\\my\\stuff') self.assertEqual(convert_path('.'), - os.curdir) + os.curdir) def test_change_root(self): # linux/mac @@ -171,9 +171,9 @@ os.path.join = _join self.assertEqual(change_root('/root', '/old/its/here'), - '/root/old/its/here') + '/root/old/its/here') self.assertEqual(change_root('/root', 'its/here'), - '/root/its/here') + '/root/its/here') # windows os.name = 'nt' @@ -190,9 +190,9 @@ os.path.join = _join self.assertEqual(change_root('c:\\root', 'c:\\old\\its\\here'), - 'c:\\root\\old\\its\\here') + 'c:\\root\\old\\its\\here') self.assertEqual(change_root('c:\\root', 'its\\here'), - 'c:\\root\\its\\here') + 'c:\\root\\its\\here') # BugsBunny os (it's a great os) os.name = 'BugsBunny' @@ -203,7 +203,7 @@ def test_split_quoted(self): self.assertEqual(split_quoted('""one"" "two" \'three\' \\four'), - ['one', 'two', 'three', 'four']) + ['one', 'two', 'three', 'four']) def test_strtobool(self): yes = ('y', 'Y', 'yes', 'True', 't', 'true', 'True', 'On', 'on', '1') @@ -383,7 +383,7 @@ run_2to3([file_name]) new_content = "".join(file_handle.read()) file_handle.close() - self.assertEquals(new_content, converted_content) + self.assertEqual(new_content, converted_content) @unittest.skipIf(sys.version < '2.6', 'requires Python 2.6 or higher') def test_run_2to3_on_doctests(self): @@ -399,7 +399,7 @@ run_2to3([file_name], doctests_only=True) new_content = "".join(file_handle.readlines()) file_handle.close() - self.assertEquals(new_content, converted_content) + self.assertEqual(new_content, converted_content) def test_nt_quote_args(self): @@ -414,6 +414,10 @@ @unittest.skipUnless(os.name in ('nt', 'posix'), 'runs only under posix or nt') def test_spawn(self): + # Do not patch subprocess on unix because + # distutils2.util._spawn_posix uses it + if os.name in 'posix': + subprocess.Popen = self.old_popen tmpdir = self.mkdtemp() # creating something executable @@ -475,9 +479,186 @@ content = open(rc).read() self.assertEqual(content, WANTED) +class GlobTestCaseBase(support.TempdirManager, + support.LoggingCatcher, + unittest.TestCase): + + def build_files_tree(self, files): + tempdir = self.mkdtemp() + for filepath in files: + is_dir = filepath.endswith('/') + filepath = os.path.join(tempdir, *filepath.split('/')) + if is_dir: + dirname = filepath + else: + dirname = os.path.dirname(filepath) + if dirname and not os.path.exists(dirname): + os.makedirs(dirname) + if not is_dir: + self.write_file(filepath, 'babar') + return tempdir + + @staticmethod + def os_dependant_path(path): + path = path.rstrip('/').split('/') + return os.path.join(*path) + + def clean_tree(self, spec): + files = [] + for path, includes in list(spec.items()): + if includes: + files.append(self.os_dependant_path(path)) + return files + +class GlobTestCase(GlobTestCaseBase): + + + def assertGlobMatch(self, glob, spec): + """""" + tempdir = self.build_files_tree(spec) + expected = self.clean_tree(spec) + self.addCleanup(os.chdir, os.getcwd()) + os.chdir(tempdir) + result = list(iglob(glob)) + self.assertItemsEqual(expected, result) + + def test_regex_rich_glob(self): + matches = RICH_GLOB.findall(r"babar aime les {fraises} est les {huitres}") + self.assertEquals(["fraises","huitres"], matches) + + def test_simple_glob(self): + glob = '*.tp?' + spec = {'coucou.tpl': True, + 'coucou.tpj': True, + 'Donotwant': False} + self.assertGlobMatch(glob, spec) + + def test_simple_glob_in_dir(self): + glob = 'babar/*.tp?' + spec = {'babar/coucou.tpl': True, + 'babar/coucou.tpj': True, + 'babar/toto.bin': False, + 'Donotwant': False} + self.assertGlobMatch(glob, spec) + + def test_recursive_glob_head(self): + glob = '**/tip/*.t?l' + spec = {'babar/zaza/zuzu/tip/coucou.tpl': True, + 'babar/z/tip/coucou.tpl': True, + 'babar/tip/coucou.tpl': True, + 'babar/zeop/tip/babar/babar.tpl': False, + 'babar/z/tip/coucou.bin': False, + 'babar/toto.bin': False, + 'zozo/zuzu/tip/babar.tpl': True, + 'zozo/tip/babar.tpl': True, + 'Donotwant': False} + self.assertGlobMatch(glob, spec) + + def test_recursive_glob_tail(self): + glob = 'babar/**' + spec = {'babar/zaza/': True, + 'babar/zaza/zuzu/': True, + 'babar/zaza/zuzu/babar.xml': True, + 'babar/zaza/zuzu/toto.xml': True, + 'babar/zaza/zuzu/toto.csv': True, + 'babar/zaza/coucou.tpl': True, + 'babar/bubu.tpl': True, + 'zozo/zuzu/tip/babar.tpl': False, + 'zozo/tip/babar.tpl': False, + 'Donotwant': False} + self.assertGlobMatch(glob, spec) + + def test_recursive_glob_middle(self): + glob = 'babar/**/tip/*.t?l' + spec = {'babar/zaza/zuzu/tip/coucou.tpl': True, + 'babar/z/tip/coucou.tpl': True, + 'babar/tip/coucou.tpl': True, + 'babar/zeop/tip/babar/babar.tpl': False, + 'babar/z/tip/coucou.bin': False, + 'babar/toto.bin': False, + 'zozo/zuzu/tip/babar.tpl': False, + 'zozo/tip/babar.tpl': False, + 'Donotwant': False} + self.assertGlobMatch(glob, spec) + + def test_glob_set_tail(self): + glob = 'bin/*.{bin,sh,exe}' + spec = {'bin/babar.bin': True, + 'bin/zephir.sh': True, + 'bin/celestine.exe': True, + 'bin/cornelius.bat': False, + 'bin/cornelius.xml': False, + 'toto/yurg': False, + 'Donotwant': False} + self.assertGlobMatch(glob, spec) + + def test_glob_set_middle(self): + glob = 'xml/{babar,toto}.xml' + spec = {'xml/babar.xml': True, + 'xml/toto.xml': True, + 'xml/babar.xslt': False, + 'xml/cornelius.sgml': False, + 'xml/zephir.xml': False, + 'toto/yurg.xml': False, + 'Donotwant': False} + self.assertGlobMatch(glob, spec) + + def test_glob_set_head(self): + glob = '{xml,xslt}/babar.*' + spec = {'xml/babar.xml': True, + 'xml/toto.xml': False, + 'xslt/babar.xslt': True, + 'xslt/toto.xslt': False, + 'toto/yurg.xml': False, + 'Donotwant': False} + self.assertGlobMatch(glob, spec) + + def test_glob_all(self): + glob = '{xml/*,xslt/**}/babar.xml' + spec = {'xml/a/babar.xml': True, + 'xml/b/babar.xml': True, + 'xml/a/c/babar.xml': False, + 'xslt/a/babar.xml': True, + 'xslt/b/babar.xml': True, + 'xslt/a/c/babar.xml': True, + 'toto/yurg.xml': False, + 'Donotwant': False} + self.assertGlobMatch(glob, spec) + + def test_invalid_glob_pattern(self): + invalids = [ + 'ppooa**', + 'azzaeaz4**/', + '/**ddsfs', + '**##1e"&e', + 'DSFb**c009', + '{' + '{aaQSDFa' + '}' + 'aQSDFSaa}' + '{**a,' + ',**a}' + '{a**,' + ',b**}' + '{a**a,babar}' + '{bob,b**z}' + ] + msg = "%r is not supposed to be a valid pattern" + for pattern in invalids: + try: + iglob(pattern) + except ValueError: + continue + else: + self.fail("%r is not a valid iglob pattern" % pattern) + + def test_suite(): - return unittest.makeSuite(UtilTestCase) + suite = unittest.makeSuite(UtilTestCase) + suite.addTest(unittest.makeSuite(GlobTestCase)) + return suite + if __name__ == "__main__": unittest.main(defaultTest="test_suite") diff --git a/distutils2/tests/test_version.py b/distutils2/tests/test_version.py --- a/distutils2/tests/test_version.py +++ b/distutils2/tests/test_version.py @@ -61,9 +61,9 @@ def test_huge_version(self): - self.assertEquals(str(V('1980.0')), '1980.0') + self.assertEqual(str(V('1980.0')), '1980.0') self.assertRaises(HugeMajorVersionNumError, V, '1981.0') - self.assertEquals(str(V('1981.0', error_on_huge_major_num=False)), '1981.0') + self.assertEqual(str(V('1981.0', error_on_huge_major_num=False)), '1981.0') def test_comparison(self): r""" @@ -196,9 +196,20 @@ self.assertRaises(ValueError, VersionPredicate, '') + self.assertTrue(VersionPredicate('Hey 2.5').match('2.5.1')) + # XXX need to silent the micro version in this case #assert not VersionPredicate('Ho (<3.0,!=2.6)').match('2.6.3') + + # Make sure a predicate that ends with a number works + self.assertTrue(VersionPredicate('virtualenv5 (1.0)').match('1.0')) + self.assertTrue(VersionPredicate('virtualenv5').match('1.0')) + self.assertTrue(VersionPredicate('vi5two').match('1.0')) + self.assertTrue(VersionPredicate('5two').match('1.0')) + self.assertTrue(VersionPredicate('vi5two 1.0').match('1.0')) + self.assertTrue(VersionPredicate('5two 1.0').match('1.0')) + # test repr for predicate in predicates: self.assertEqual(str(VersionPredicate(predicate)), predicate) @@ -220,12 +231,13 @@ for version in other_versions: self.assertFalse(V(version).is_final) + class VersionWhiteBoxTestCase(unittest.TestCase): def test_parse_numdots(self): # For code coverage completeness, as pad_zeros_length can't be set or # influenced from the public interface - self.assertEquals(V('1.0')._parse_numdots('1.0', '1.0', + self.assertEqual(V('1.0')._parse_numdots('1.0', '1.0', pad_zeros_length=3), [1, 0, 0]) diff --git a/distutils2/util.py b/distutils2/util.py --- a/distutils2/util.py +++ b/distutils2/util.py @@ -9,12 +9,15 @@ import re import string import sys -import shutil -import tarfile -import zipfile +from subprocess import call as sub_call from copy import copy from fnmatch import fnmatchcase +try: + from glob import iglob as std_iglob +except ImportError: + from glob import glob as std_iglob # for python < 2.5 from ConfigParser import RawConfigParser +from inspect import getsource from distutils2.errors import (DistutilsPlatformError, DistutilsFileError, DistutilsByteCompileError, DistutilsExecError) @@ -175,29 +178,6 @@ raise ValueError("invalid variable '$%s'" % var) -def grok_environment_error(exc, prefix="error: "): - """Generate a useful error message from an EnvironmentError. - - This will generate an IOError or an OSError exception object. - Handles Python 1.5.1 and 1.5.2 styles, and - does what it can to deal with exception objects that don't have a - filename (which happens when the error is due to a two-file operation, - such as 'rename()' or 'link()'. Returns the error message as a string - prefixed with 'prefix'. - """ - # check for Python 1.5.2-style {IO,OS}Error exception objects - if hasattr(exc, 'filename') and hasattr(exc, 'strerror'): - if exc.filename: - error = prefix + "%s: %s" % (exc.filename, exc.strerror) - else: - # two-argument functions in posix module don't - # include the filename in the exception object! - error = prefix + "%s" % exc.strerror - else: - error = prefix + str(exc[-1]) - - return error - # Needed by 'split_quoted()' _wordchars_re = _squote_re = _dquote_re = None @@ -238,20 +218,20 @@ words.append(s[:end]) break - if s[end] in string.whitespace: # unescaped, unquoted whitespace: now - words.append(s[:end]) # we definitely have a word delimiter + if s[end] in string.whitespace: # unescaped, unquoted whitespace: now + words.append(s[:end]) # we definitely have a word delimiter s = s[end:].lstrip() pos = 0 - elif s[end] == '\\': # preserve whatever is being escaped; - # will become part of the current word + elif s[end] == '\\': # preserve whatever is being escaped; + # will become part of the current word s = s[:end] + s[end + 1:] pos = end + 1 else: - if s[end] == "'": # slurp singly-quoted string + if s[end] == "'": # slurp singly-quoted string m = _squote_re.match(s, end) - elif s[end] == '"': # slurp doubly-quoted string + elif s[end] == '"': # slurp doubly-quoted string m = _dquote_re.match(s, end) else: raise RuntimeError("this can't happen " @@ -542,9 +522,9 @@ if missing == 'error': # blow up when we stat() the file pass elif missing == 'ignore': # missing source dropped from - continue # target's dependency list + continue # target's dependency list elif missing == 'newer': # missing source means target is - return True # out-of-date + return True # out-of-date if os.stat(source).st_mtime > target_mtime: return True @@ -664,6 +644,7 @@ return ret + def splitext(path): """Like os.path.splitext, but take off .tar too""" base, ext = posixpath.splitext(path) @@ -673,83 +654,6 @@ return base, ext -def unzip_file(filename, location, flatten=True): - """Unzip the file (zip file located at filename) to the destination - location""" - if not os.path.exists(location): - os.makedirs(location) - zipfp = open(filename, 'rb') - try: - zip = zipfile.ZipFile(zipfp) - leading = has_leading_dir(zip.namelist()) and flatten - for name in zip.namelist(): - data = zip.read(name) - fn = name - if leading: - fn = split_leading_dir(name)[1] - fn = os.path.join(location, fn) - dir = os.path.dirname(fn) - if not os.path.exists(dir): - os.makedirs(dir) - if fn.endswith('/') or fn.endswith('\\'): - # A directory - if not os.path.exists(fn): - os.makedirs(fn) - else: - fp = open(fn, 'wb') - try: - fp.write(data) - finally: - fp.close() - finally: - zipfp.close() - - -def untar_file(filename, location): - """Untar the file (tar file located at filename) to the destination - location - """ - if not os.path.exists(location): - os.makedirs(location) - if filename.lower().endswith('.gz') or filename.lower().endswith('.tgz'): - mode = 'r:gz' - elif (filename.lower().endswith('.bz2') - or filename.lower().endswith('.tbz')): - mode = 'r:bz2' - elif filename.lower().endswith('.tar'): - mode = 'r' - else: - mode = 'r:*' - tar = tarfile.open(filename, mode) - try: - leading = has_leading_dir([member.name for member in tar.getmembers()]) - for member in tar.getmembers(): - fn = member.name - if leading: - fn = split_leading_dir(fn)[1] - path = os.path.join(location, fn) - if member.isdir(): - if not os.path.exists(path): - os.makedirs(path) - else: - try: - fp = tar.extractfile(member) - except (KeyError, AttributeError): - # Some corrupt tar files seem to produce this - # (specifically bad symlinks) - continue - if not os.path.exists(os.path.dirname(path)): - os.makedirs(os.path.dirname(path)) - destfp = open(path, 'wb') - try: - shutil.copyfileobj(fp, destfp) - finally: - destfp.close() - fp.close() - finally: - tar.close() - - def has_leading_dir(paths): """Returns true if all the paths have the same leading path name (i.e., everything is in one subdirectory in an archive)""" @@ -869,69 +773,22 @@ "command '%s' failed: %s" % (cmd[0], exc[-1])) if rc != 0: # and this reflects the command running but failing - logger.debug("command '%s' failed with exit status %d" % (cmd[0], rc)) + logger.debug("command '%s' failed with exit status %d", + (cmd[0], rc)) raise DistutilsExecError( "command '%s' failed with exit status %d" % (cmd[0], rc)) -def _spawn_posix(cmd, search_path=1, verbose=0, dry_run=0, env=None): - logger.info(' '.join(cmd)) +def _spawn_posix(cmd, search_path=1, verbose=1, dry_run=0, env=None): + cmd = ' '.join(cmd) + if verbose: + logger.info(cmd) if dry_run: return - - if env is None: - exec_fn = search_path and os.execvp or os.execv - else: - exec_fn = search_path and os.execvpe or os.execve - - pid = os.fork() - - if pid == 0: # in the child - try: - if env is None: - exec_fn(cmd[0], cmd) - else: - exec_fn(cmd[0], cmd, env) - except OSError, e: - sys.stderr.write("unable to execute %s: %s\n" % - (cmd[0], e.strerror)) - os._exit(1) - - sys.stderr.write("unable to execute %s for unknown reasons" % cmd[0]) - os._exit(1) - else: # in the parent - # Loop until the child either exits or is terminated by a signal - # (ie. keep waiting if it's merely stopped) - while 1: - try: - pid, status = os.waitpid(pid, 0) - except OSError, exc: - import errno - if exc.errno == errno.EINTR: - continue - raise DistutilsExecError( - "command '%s' failed: %s" % (cmd[0], exc[-1])) - if os.WIFSIGNALED(status): - raise DistutilsExecError( - "command '%s' terminated by signal %d" % \ - (cmd[0], os.WTERMSIG(status))) - - elif os.WIFEXITED(status): - exit_status = os.WEXITSTATUS(status) - if exit_status == 0: - return # hey, it succeeded! - else: - raise DistutilsExecError( - "command '%s' failed with exit status %d" % \ - (cmd[0], exit_status)) - - elif os.WIFSTOPPED(status): - continue - - else: - raise DistutilsExecError( - "unknown error executing '%s': termination status %d" % \ - (cmd[0], status)) + exit_status = sub_call(cmd, shell=True, env=env) + if exit_status != 0: + msg = "command '%s' failed with exit status %d" + raise DistutilsExecError(msg % (cmd, exit_status)) def find_executable(executable, path=None): @@ -971,6 +828,7 @@ password:%s """ + def get_pypirc_path(): """Returns rc file path.""" return os.path.join(os.path.expanduser('~'), '.pypirc') @@ -1045,44 +903,10 @@ return {} -def metadata_to_dict(meta): - """XXX might want to move it to the Metadata class.""" - data = { - 'metadata_version' : meta.version, - 'name': meta['Name'], - 'version': meta['Version'], - 'summary': meta['Summary'], - 'home_page': meta['Home-page'], - 'author': meta['Author'], - 'author_email': meta['Author-email'], - 'license': meta['License'], - 'description': meta['Description'], - 'keywords': meta['Keywords'], - 'platform': meta['Platform'], - 'classifier': meta['Classifier'], - 'download_url': meta['Download-URL'], - } - - if meta.version == '1.2': - data['requires_dist'] = meta['Requires-Dist'] - data['requires_python'] = meta['Requires-Python'] - data['requires_external'] = meta['Requires-External'] - data['provides_dist'] = meta['Provides-Dist'] - data['obsoletes_dist'] = meta['Obsoletes-Dist'] - data['project_url'] = [','.join(url) for url in - meta['Project-URL']] - - elif meta.version == '1.1': - data['provides'] = meta['Provides'] - data['requires'] = meta['Requires'] - data['obsoletes'] = meta['Obsoletes'] - - return data - # utility functions for 2to3 support -def run_2to3(files, doctests_only=False, fixer_names=None, options=None, - explicit=None): +def run_2to3(files, doctests_only=False, fixer_names=None, + options=None, explicit=None): """ Wrapper function around the refactor() class which performs the conversions on a list of python files. Invoke 2to3 on a list of Python files. The files should all come @@ -1096,15 +920,13 @@ fixers = [] fixers = get_fixers_from_package('lib2to3.fixes') - if fixer_names: for fixername in fixer_names: - fixers.extend([fixer for fixer in get_fixers_from_package(fixername)]) + fixers.extend([fixer for fixer in + get_fixers_from_package(fixername)]) r = RefactoringTool(fixers, options=options) - if doctests_only: - r.refactor(files, doctests_only=True, write=True) - else: - r.refactor(files, write=True) + r.refactor(files, write=True, doctests_only=doctests_only) + class Mixin2to3: """ Wrapper class for commands that run 2to3. @@ -1126,3 +948,164 @@ """ Issues a call to util.run_2to3. """ return run_2to3(files, doctests_only, self.fixer_names, self.options, self.explicit) + +RICH_GLOB = re.compile(r'\{([^}]*)\}') +_CHECK_RECURSIVE_GLOB = re.compile(r'[^/,{]\*\*|\*\*[^/,}]') +_CHECK_MISMATCH_SET = re.compile(r'^[^{]*\}|\{[^}]*$') + + +def iglob(path_glob): + """Richer glob than the std glob module support ** and {opt1,opt2,opt3}""" + if _CHECK_RECURSIVE_GLOB.search(path_glob): + msg = """Invalid glob %r: Recursive glob "**" must be used alone""" + raise ValueError(msg % path_glob) + if _CHECK_MISMATCH_SET.search(path_glob): + msg = """Invalid glob %r: Mismatching set marker '{' or '}'""" + raise ValueError(msg % path_glob) + return _iglob(path_glob) + + +def _iglob(path_glob): + """Actual logic of the iglob function""" + rich_path_glob = RICH_GLOB.split(path_glob, 1) + if len(rich_path_glob) > 1: + assert len(rich_path_glob) == 3, rich_path_glob + prefix, set, suffix = rich_path_glob + for item in set.split(','): + for path in _iglob(''.join((prefix, item, suffix))): + yield path + else: + if '**' not in path_glob: + for item in std_iglob(path_glob): + yield item + else: + prefix, radical = path_glob.split('**', 1) + if prefix == '': + prefix = '.' + if radical == '': + radical = '*' + else: + radical = radical.lstrip('/') + for (path, dir, files) in os.walk(prefix): + path = os.path.normpath(path) + for file in _iglob(os.path.join(path, radical)): + yield file + + +def cfg_to_args(path='setup.cfg'): + """ Distutils2 to distutils1 compatibility util. + + This method uses an existing setup.cfg to generate a dictionnary of + keywords that can be used by distutils.core.setup(kwargs**). + + :param file: + The setup.cfg path. + :raises DistutilsFileError: + When the setup.cfg file is not found. + + """ + # We need to declare the following constants here so that it's easier to + # generate the setup.py afterwards, using inspect.getsource. + + # XXX ** == needs testing + D1_D2_SETUP_ARGS = {"name": ("metadata",), + "version": ("metadata",), + "author": ("metadata",), + "author_email": ("metadata",), + "maintainer": ("metadata",), + "maintainer_email": ("metadata",), + "url": ("metadata", "home_page"), + "description": ("metadata", "summary"), + "long_description": ("metadata", "description"), + "download-url": ("metadata",), + "classifiers": ("metadata", "classifier"), + "platforms": ("metadata", "platform"), # ** + "license": ("metadata",), + "requires": ("metadata", "requires_dist"), + "provides": ("metadata", "provides_dist"), # ** + "obsoletes": ("metadata", "obsoletes_dist"), # ** + "packages": ("files",), + "scripts": ("files",), + "py_modules": ("files", "modules"), # ** + } + + MULTI_FIELDS = ("classifiers", + "requires", + "platforms", + "packages", + "scripts") + + def has_get_option(config, section, option): + if config.has_option(section, option): + return config.get(section, option) + elif config.has_option(section, option.replace('_', '-')): + return config.get(section, option.replace('_', '-')) + else: + return False + + # The method source code really starts here. + config = RawConfigParser() + if not os.path.exists(file): + raise DistutilsFileError("file '%s' does not exist" % + os.path.abspath(file)) + config.read(path) + + kwargs = {} + for arg in D1_D2_SETUP_ARGS: + if len(D1_D2_SETUP_ARGS[arg]) == 2: + # The distutils field name is different than distutils2's. + section, option = D1_D2_SETUP_ARGS[arg] + + elif len(D1_D2_SETUP_ARGS[arg]) == 1: + # The distutils field name is the same thant distutils2's. + section = D1_D2_SETUP_ARGS[arg][0] + option = arg + + in_cfg_value = has_get_option(config, section, option) + if not in_cfg_value: + # There is no such option in the setup.cfg + if arg == "long_description": + filename = has_get_option(config, section, "description_file") + if filename: + in_cfg_value = open(filename).read() + else: + continue + + if arg in MULTI_FIELDS: + # Special behaviour when we have a multi line option + if "\n" in in_cfg_value: + in_cfg_value = in_cfg_value.strip().split('\n') + else: + in_cfg_value = list((in_cfg_value,)) + + kwargs[arg] = in_cfg_value + + return kwargs + + +_SETUP_TMPL = """\ +# This script was automatically generated by Distutils2 +import os +from distutils.core import setup +from ConfigParser import RawConfigParser + +%(func)s + +setup(**cfg_to_args()) +""" + + +def generate_setup_py(): + """Generates a distutils compatible setup.py using an existing setup.cfg. + + :raises DistutilsFileError: + When a setup.py already exists. + """ + if os.path.exists("setup.py"): + raise DistutilsFileError("A pre existing setup.py file exists") + + handle = open("setup.py", "w") + try: + handle.write(_SETUP_TMPL % {'func': getsource(cfg_to_args)}) + finally: + handle.close() diff --git a/distutils2/version.py b/distutils2/version.py --- a/distutils2/version.py +++ b/distutils2/version.py @@ -322,8 +322,9 @@ return None -_PREDICATE = re.compile(r"(?i)^\s*([a-z_][\sa-zA-Z_-]*(?:\.[a-z_]\w*)*)(.*)") -_VERSIONS = re.compile(r"^\s*\((.*)\)\s*$") +# A predicate is: "ProjectName (VERSION1, VERSION2, ..) +_PREDICATE = re.compile(r"(?i)^\s*(\w[\s\w-]*(?:\.\w*)*)(.*)") +_VERSIONS = re.compile(r"^\s*\((?P.*)\)\s*$|^\s*(?P.*)\s*$") _PLAIN_VERSIONS = re.compile(r"^\s*(.*)\s*$") _SPLIT_CMP = re.compile(r"^\s*(<=|>=|<|>|!=|==)\s*([^\s,]+)\s*$") @@ -358,14 +359,25 @@ name, predicates = match.groups() self.name = name.strip() - predicates = predicates.strip() - predicates = _VERSIONS.match(predicates) - if predicates is not None: - predicates = predicates.groups()[0] - self.predicates = [_split_predicate(pred.strip()) - for pred in predicates.split(',')] + self.predicates = [] + if predicates is None: + return + + predicates = _VERSIONS.match(predicates.strip()) + if predicates is None: + return + + predicates = predicates.groupdict() + if predicates['versions'] is not None: + versions = predicates['versions'] else: - self.predicates = [] + versions = predicates.get('versions2') + + if versions is not None: + for version in versions.split(','): + if version.strip() == '': + continue + self.predicates.append(_split_predicate(version)) def match(self, version): """Check if the provided version matches the predicates.""" diff --git a/docs/design/configfile.rst b/docs/design/configfile.rst new file mode 100644 --- /dev/null +++ b/docs/design/configfile.rst @@ -0,0 +1,132 @@ +.. _setup-config: + +************************************ +Writing the Setup Configuration File +************************************ + +Often, it's not possible to write down everything needed to build a distribution +*a priori*: you may need to get some information from the user, or from the +user's system, in order to proceed. As long as that information is fairly +simple---a list of directories to search for C header files or libraries, for +example---then providing a configuration file, :file:`setup.cfg`, for users to +edit is a cheap and easy way to solicit it. Configuration files also let you +provide default values for any command option, which the installer can then +override either on the command line or by editing the config file. + +The setup configuration file is a useful middle-ground between the setup script +---which, ideally, would be opaque to installers [#]_---and the command line to +the setup script, which is outside of your control and entirely up to the +installer. In fact, :file:`setup.cfg` (and any other Distutils configuration +files present on the target system) are processed after the contents of the +setup script, but before the command line. This has several useful +consequences: + +.. If you have more advanced needs, such as determining which extensions to + build based on what capabilities are present on the target system, then you + need the Distutils auto-configuration facility. This started to appear in + Distutils 0.9 but, as of this writing, isn't mature or stable enough yet + for real-world use. + +* installers can override some of what you put in :file:`setup.py` by editing + :file:`setup.cfg` + +* you can provide non-standard defaults for options that are not easily set in + :file:`setup.py` + +* installers can override anything in :file:`setup.cfg` using the command-line + options to :file:`setup.py` + +The basic syntax of the configuration file is simple:: + + [command] + option=value + ... + +where *command* is one of the Distutils commands (e.g. :command:`build_py`, +:command:`install`), and *option* is one of the options that command supports. +Any number of options can be supplied for each command, and any number of +command sections can be included in the file. Blank lines are ignored, as are +comments, which run from a ``'#'`` character until the end of the line. Long +option values can be split across multiple lines simply by indenting the +continuation lines. + +You can find out the list of options supported by a particular command with the +universal :option:`--help` option, e.g. :: + + > python setup.py --help build_ext + [...] + Options for 'build_ext' command: + --build-lib (-b) directory for compiled extension modules + --build-temp (-t) directory for temporary files (build by-products) + --inplace (-i) ignore build-lib and put compiled extensions into the + source directory alongside your pure Python modules + --include-dirs (-I) list of directories to search for header files + --define (-D) C preprocessor macros to define + --undef (-U) C preprocessor macros to undefine + --swig-opts list of SWIG command-line options + [...] + +.. XXX do we want to support ``setup.py --help metadata``? + +Note that an option spelled :option:`--foo-bar` on the command line is spelled +:option:`foo_bar` in configuration files. + +For example, say you want your extensions to be built "in-place"---that is, you +have an extension :mod:`pkg.ext`, and you want the compiled extension file +(:file:`ext.so` on Unix, say) to be put in the same source directory as your +pure Python modules :mod:`pkg.mod1` and :mod:`pkg.mod2`. You can always use the +:option:`--inplace` option on the command line to ensure this:: + + python setup.py build_ext --inplace + +But this requires that you always specify the :command:`build_ext` command +explicitly, and remember to provide :option:`--inplace`. An easier way is to +"set and forget" this option, by encoding it in :file:`setup.cfg`, the +configuration file for this distribution:: + + [build_ext] + inplace=1 + +This will affect all builds of this module distribution, whether or not you +explicitly specify :command:`build_ext`. If you include :file:`setup.cfg` in +your source distribution, it will also affect end-user builds---which is +probably a bad idea for this option, since always building extensions in-place +would break installation of the module distribution. In certain peculiar cases, +though, modules are built right in their installation directory, so this is +conceivably a useful ability. (Distributing extensions that expect to be built +in their installation directory is almost always a bad idea, though.) + +Another example: certain commands take a lot of options that don't change from +run to run; for example, :command:`bdist_rpm` needs to know everything required +to generate a "spec" file for creating an RPM distribution. Some of this +information comes from the setup script, and some is automatically generated by +the Distutils (such as the list of files installed). But some of it has to be +supplied as options to :command:`bdist_rpm`, which would be very tedious to do +on the command line for every run. Hence, here is a snippet from the Distutils' +own :file:`setup.cfg`:: + + [bdist_rpm] + release = 1 + packager = Greg Ward + doc_files = CHANGES.txt + README.txt + USAGE.txt + doc/ + examples/ + +Note that the :option:`doc_files` option is simply a whitespace-separated string +split across multiple lines for readability. + + +.. seealso:: + + :ref:`inst-config-syntax` in "Installing Python Modules" + More information on the configuration files is available in the manual for + system administrators. + + +.. rubric:: Footnotes + +.. [#] This ideal probably won't be achieved until auto-configuration is fully + supported by the Distutils. + diff --git a/docs/design/pep-0376.txt b/docs/design/pep-0376.txt --- a/docs/design/pep-0376.txt +++ b/docs/design/pep-0376.txt @@ -425,7 +425,7 @@ - ``name``: The name of the distribution. -- ``metadata``: A ``DistributionMetadata`` instance loaded with the +- ``metadata``: A ``Metadata`` instance loaded with the distribution's PKG-INFO file. - ``requested``: A boolean that indicates whether the REQUESTED diff --git a/docs/design/wiki.rst b/docs/design/wiki.rst --- a/docs/design/wiki.rst +++ b/docs/design/wiki.rst @@ -250,8 +250,8 @@ == ==================================== =================================================================================================== 1 mailman/database/schemas/blah.schema /var/mailman/schemas/blah.schema 2 some.tpl /var/mailman/templates/some.tpl -3 path/to/some.tpl /var/mailman/templates/path/to/some.tpl -4 mailman/database/mailman.db /var/mailman/database/mailman.db +3 path/to/some.tpl /var/mailman/templates/path/to/some.tpl ! +4 mailman/database/mailman.db /var/mailman/database/mailman.db ! 5 developer-docs/index.txt /usr/share/doc/mailman/developer-docs/index.txt 6 developer-docs/api/toc.txt /usr/share/doc/mailman/developer-docs/api/toc.txt 7 README /usr/share/doc/mailman/README @@ -259,7 +259,7 @@ 9 mailman/foo/some/path/bar/my.cfg /etc/mailman/baz/some/path/bar/my.cfg AND /etc/mailman/hmm/some/path/bar/my.cfg + emit a warning -10 mailman/foo/some/path/other.cfg /etc/mailman/some/path/other.cfg +10 mailman/foo/some/path/other.cfg /etc/mailman/some/path/other.cfg ! 11 some-new-semantic.sns /var/funky/mailman/some-new-semantic.sns == ==================================== =================================================================================================== diff --git a/docs/source/contributing.rst b/docs/source/contributing.rst new file mode 100644 --- /dev/null +++ b/docs/source/contributing.rst @@ -0,0 +1,27 @@ +========================== +Contributing to Distutils2 +========================== + +---------------- +Reporting Issues +---------------- + +When using, testing or developping distutils2, you may encounter issues. Please report to the following sections to know how these issues should be reported. + +Please keep in mind that this guide is intended to ease the triage and fixing processes by giving the maximum information to the developers. It should not be viewed as mandatory, only advisory ;). + + +- Go to http://bugs.python.org/ (you'll need a Python Bugs account), then "Issues" > "Create ticket". +- **Title**: write in a short summary of the issue. You may prefix the issue title with ?component:?, where component can be something like installer, sdist, setup.cfg, etc., or add it at the end of your title if the normal flow of the sentence allows it. This will ease up later searches. +- **Components**: choose "Distutils2" +- **Version**: choose "3rd party" +- **Body**: explain how to reproduce the bug: What you want to do, what code you write, what happens, what should happen, how to fix it (if you have an idea). + * You should always test with the tip of the main repository, not releases. + * Mention the versions of Python you tested with. d2 supports 2.4 to 2.7. + * If relevant, mention the version of your operating system (for example with issues related to C extensions). + * When referencing commits, be careful to use the universal changeset identifiers (12 characters, for instance c3cf81fc64db), not the local sequential numbers (for example 925) that are not shared among clones. + * Try to be as concise as possible, but not too much. + * If useful, paste tracebacks. + * If useful, attach setup.cfg or other files (binary files like archives are not very convenient, better to stick to text). + +Issues related to PyPI are reported via email to the **catalog-sig at python.org** mailing list, not within bugs.python.org. diff --git a/docs/source/distutils/apiref.rst b/docs/source/distutils/apiref.rst --- a/docs/source/distutils/apiref.rst +++ b/docs/source/distutils/apiref.rst @@ -104,6 +104,26 @@ | *package_dir* | A mapping of package to | a dictionary | | | directory names | | +--------------------+--------------------------------+-------------------------------------------------------------+ + | *extra_path* | Information about an | a string, 1-tuple or 2-tuple | + | | intervening directory the | | + | | install directory and the | | + | | actual installation directory. | | + | | | | + | | If the value is a string is is | | + | | treated as a comma-separated | | + | | tuple. | | + | | | | + | | If the value is a 2-tuple, | | + | | the first element is the | | + | | ``.pth`` file and the second | | + | | is the name of the intervening | | + | | directory. | | + | | | | + | | If the value is a 1-tuple that | | + | | element is both the name of | | + | | the ``.pth`` file and the | | + | | intervening directory. | | + +--------------------+--------------------------------+-------------------------------------------------------------+ @@ -888,7 +908,7 @@ .. function:: make_zipfile(base_name, base_dir[, verbose=0, dry_run=0]) Create a zip file from all files in and under *base_dir*. The output zip file - will be named *base_dir* + :file:`.zip`. Uses either the :mod:`zipfile` Python + will be named *base_name* + :file:`.zip`. Uses either the :mod:`zipfile` Python module (if available) or the InfoZIP :file:`zip` utility (if installed and found on the default search path). If neither tool is available, raises :exc:`DistutilsExecError`. Returns the name of the output zip file. @@ -1055,6 +1075,15 @@ Create a file called *filename* and write *contents* (a sequence of strings without line terminators) to it. +:mod:`distutils2.metadata` --- Metadata handling +================================================================ + +.. module:: distutils2.metadata + +.. FIXME CPython/stdlib docs don't use autoclass, write doc manually here + +.. autoclass:: distutils2.metadata.Metadata + :members: :mod:`distutils2.util` --- Miscellaneous other utility functions ================================================================ @@ -1157,15 +1186,6 @@ an underscore. No { } or ( ) style quoting is available. -.. function:: grok_environment_error(exc[, prefix='error: ']) - - Generate a useful error message from an :exc:`EnvironmentError` - (:exc:`IOError` or :exc:`OSError`) exception object. Does what it can to deal - with exception objects that don't have a filename (which happens when the - error is due to a two-file operation, such as :func:`rename` or - :func:`link`). Returns the error message as a string prefixed with *prefix*. - - .. function:: split_quoted(s) Split a string up according to Unix shell-like rules for quotes and diff --git a/docs/source/distutils/examples.rst b/docs/source/distutils/examples.rst --- a/docs/source/distutils/examples.rst +++ b/docs/source/distutils/examples.rst @@ -298,11 +298,11 @@ ``2.7`` or ``3.2``. You can read back this static file, by using the -:class:`distutils2.dist.DistributionMetadata` class and its +:class:`distutils2.dist.Metadata` class and its :func:`read_pkg_file` method:: - >>> from distutils2.dist import DistributionMetadata - >>> metadata = DistributionMetadata() + >>> from distutils2.metadata import Metadata + >>> metadata = Metadata() >>> metadata.read_pkg_file(open('distribute-0.6.8-py2.7.egg-info')) >>> metadata.name 'distribute' @@ -315,7 +315,7 @@ loads its values:: >>> pkg_info_path = 'distribute-0.6.8-py2.7.egg-info' - >>> DistributionMetadata(pkg_info_path).name + >>> Metadata(pkg_info_path).name 'distribute' diff --git a/docs/source/distutils/sourcedist.rst b/docs/source/distutils/sourcedist.rst --- a/docs/source/distutils/sourcedist.rst +++ b/docs/source/distutils/sourcedist.rst @@ -86,8 +86,7 @@ distributions, but in the future there will be a standard for testing Python module distributions) -* :file:`README.txt` (or :file:`README`), :file:`setup.py` (or whatever you - called your setup script), and :file:`setup.cfg` +* The configuration file :file:`setup.cfg` * all files that matches the ``package_data`` metadata. See :ref:`distutils-installing-package-data`. @@ -95,6 +94,10 @@ * all files that matches the ``data_files`` metadata. See :ref:`distutils-additional-files`. +.. Warning:: + In Distutils2, setup.py and README (or README.txt) files are not more + included in source distribution by default + Sometimes this is enough, but usually you will want to specify additional files to distribute. The typical way to do this is to write a *manifest template*, called :file:`MANIFEST.in` by default. The manifest template is just a list of diff --git a/docs/source/index.rst b/docs/source/index.rst --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -29,7 +29,7 @@ .. __: http://bitbucket.org/tarek/distutils2/wiki/GSoC_2010_teams If you?re looking for information on how to contribute, head to -:doc:`devresources`. +:doc:`devresources`, and be sure to have a look at :doc:`contributing`. Documentation @@ -76,6 +76,7 @@ distutils/index library/distutils2 library/pkgutil + contributing Indices and tables diff --git a/docs/source/install/index.rst b/docs/source/install/index.rst --- a/docs/source/install/index.rst +++ b/docs/source/install/index.rst @@ -927,15 +927,34 @@ GNU C / Cygwin / MinGW ^^^^^^^^^^^^^^^^^^^^^^ -These instructions only apply if you're using a version of Python prior to -2.4.1 with a MinGW prior to 3.0.0 (with binutils-2.13.90-20030111-1). - This section describes the necessary steps to use Distutils with the GNU C/C++ compilers in their Cygwin and MinGW distributions. [#]_ For a Python interpreter that was built with Cygwin, everything should work without any of these following steps. -These compilers require some special libraries. This task is more complex than +Not all extensions can be built with MinGW or Cygwin, but many can. Extensions +most likely to not work are those that use C++ or depend on Microsoft Visual C +extensions. + +To let Distutils compile your extension with Cygwin you have to type:: + + python setup.py build --compiler=cygwin + +and for Cygwin in no-cygwin mode [#]_ or for MinGW type:: + + python setup.py build --compiler=mingw32 + +If you want to use any of these options/compilers as default, you should +consider writing it in your personal or system-wide configuration file for +Distutils (see section :ref:`inst-config-files`.) + +Older Versions of Python and MinGW +"""""""""""""""""""""""""""""""""" +The following instructions only apply if you're using a version of Python +inferior to 2.4.1 with a MinGW inferior to 3.0.0 (with +binutils-2.13.90-20030111-1). + +These compilers require some special libraries. This task is more complex than for Borland's C++, because there is no program to convert the library. First you have to create a list of symbols which the Python DLL exports. (You can find a good program for this task at @@ -965,18 +984,6 @@ them too. The converted files have to reside in the same directories as the normal libraries do. -To let Distutils compile your extension with Cygwin you now have to type :: - - python setup.py build --compiler cygwin - -and for Cygwin in no-cygwin mode [#]_ or for MinGW type:: - - python setup.py build --compiler mingw32 - -If you want to use any of these options/compilers as default, you should -consider to write it in your personal or system-wide configuration file for -Distutils (see section :ref:`inst-config-files`.) - .. seealso:: diff --git a/docs/source/library/distutils2.index.xmlrpc.rst b/docs/source/library/distutils2.index.xmlrpc.rst --- a/docs/source/library/distutils2.index.xmlrpc.rst +++ b/docs/source/library/distutils2.index.xmlrpc.rst @@ -90,7 +90,7 @@ Assuming we already have a :class:`distutils2.index.ReleaseInfo` object defined, -it's possible to pass it ot the xmlrpc client to retrieve and complete it's +it's possible to pass it ot the xmlrpc client to retrieve and complete its metadata:: >>> foobar11 = ReleaseInfo("FooBar", "1.1") diff --git a/docs/source/library/distutils2.metadata.rst b/docs/source/library/distutils2.metadata.rst --- a/docs/source/library/distutils2.metadata.rst +++ b/docs/source/library/distutils2.metadata.rst @@ -2,7 +2,9 @@ Metadata ======== -Distutils2 provides a :class:`DistributionMetadata` class that can read and +.. module:: distutils2.metadata + +Distutils2 provides a :class:`~distutils2.metadata.Metadata` class that can read and write metadata files. This class is compatible with all metadata versions: * 1.0: :PEP:`241` @@ -17,11 +19,11 @@ Reading metadata ================ -The :class:`DistributionMetadata` class can be instantiated with the path of +The :class:`~distutils2.metadata.Metadata` class can be instantiated with the path of the metadata file, and provides a dict-like interface to the values:: - >>> from distutils2.metadata import DistributionMetadata - >>> metadata = DistributionMetadata('PKG-INFO') + >>> from distutils2.metadata import Metadata + >>> metadata = Metadata('PKG-INFO') >>> metadata.keys()[:5] ('Metadata-Version', 'Name', 'Version', 'Platform', 'Supported-Platform') >>> metadata['Name'] @@ -33,13 +35,13 @@ The fields that supports environment markers can be automatically ignored if the object is instantiated using the ``platform_dependent`` option. -:class:`DistributionMetadata` will interpret in the case the markers and will +:class:`~distutils2.metadata.Metadata` will interpret in the case the markers and will automatically remove the fields that are not compliant with the running environment. Here's an example under Mac OS X. The win32 dependency we saw earlier is ignored:: - >>> from distutils2.metadata import DistributionMetadata - >>> metadata = DistributionMetadata('PKG-INFO', platform_dependent=True) + >>> from distutils2.metadata import Metadata + >>> metadata = Metadata('PKG-INFO', platform_dependent=True) >>> metadata['Requires-Dist'] ['bar'] @@ -51,9 +53,9 @@ Here's an example, simulating a win32 environment:: - >>> from distutils2.metadata import DistributionMetadata + >>> from distutils2.metadata import Metadata >>> context = {'sys.platform': 'win32'} - >>> metadata = DistributionMetadata('PKG-INFO', platform_dependent=True, + >>> metadata = Metadata('PKG-INFO', platform_dependent=True, ... execution_context=context) ... >>> metadata['Requires-Dist'] = ["pywin32; sys.platform == 'win32'", @@ -81,8 +83,8 @@ Some fields in :PEP:`345` have to follow a version scheme in their versions predicate. When the scheme is violated, a warning is emitted:: - >>> from distutils2.metadata import DistributionMetadata - >>> metadata = DistributionMetadata() + >>> from distutils2.metadata import Metadata + >>> metadata = Metadata() >>> metadata['Requires-Dist'] = ['Funky (Groovie)'] "Funky (Groovie)" is not a valid predicate >>> metadata['Requires-Dist'] = ['Funky (1.2)'] diff --git a/docs/source/library/distutils2.rst b/docs/source/library/distutils2.rst --- a/docs/source/library/distutils2.rst +++ b/docs/source/library/distutils2.rst @@ -24,6 +24,7 @@ distutils2.version distutils2.metadata distutils2.depgraph + distutils2.install distutils2.index distutils2.tests.pypi_server diff --git a/docs/source/library/distutils2.tests.pypi_server.rst b/docs/source/library/distutils2.tests.pypi_server.rst --- a/docs/source/library/distutils2.tests.pypi_server.rst +++ b/docs/source/library/distutils2.tests.pypi_server.rst @@ -77,6 +77,7 @@ @use_pypi_server() def test_somthing(self, server): # your tests goes here + ... The decorator will instantiate the server for you, and run and stop it just before and after your method call. You also can pass the server initializer, @@ -85,4 +86,4 @@ class SampleTestCase(TestCase): @use_pypi_server("test_case_name") def test_something(self, server): - # something + ... diff --git a/docs/source/library/pkgutil.rst b/docs/source/library/pkgutil.rst --- a/docs/source/library/pkgutil.rst +++ b/docs/source/library/pkgutil.rst @@ -4,77 +4,204 @@ .. module:: pkgutil :synopsis: Utilities to support packages. -.. TODO Follow the reST conventions used in the stdlib +This module provides utilities to manipulate packages: support for the +Importer protocol defined in :PEP:`302` and implementation of the API +described in :PEP:`376` to work with the database of installed Python +distributions. -This module provides functions to manipulate packages, as well as -the necessary functions to provide support for the "Importer Protocol" as -described in :PEP:`302` and for working with the database of installed Python -distributions which is specified in :PEP:`376`. In addition to the functions -required in :PEP:`376`, back support for older ``.egg`` and ``.egg-info`` -distributions is provided as well. These distributions are represented by the -class :class:`~distutils2._backport.pkgutil.EggInfoDistribution` and most -functions provide an extra argument ``use_egg_info`` which indicates if -they should consider these old styled distributions. This document details -first the functions and classes available and then presents several use cases. - +Import system utilities +----------------------- .. function:: extend_path(path, name) - Extend the search path for the modules which comprise a package. Intended use is - to place the following code in a package's :file:`__init__.py`:: + Extend the search path for the modules which comprise a package. Intended + use is to place the following code in a package's :file:`__init__.py`:: from pkgutil import extend_path __path__ = extend_path(__path__, __name__) - This will add to the package's ``__path__`` all subdirectories of directories on - ``sys.path`` named after the package. This is useful if one wants to distribute - different parts of a single logical package as multiple directories. + This will add to the package's ``__path__`` all subdirectories of directories + on :data:`sys.path` named after the package. This is useful if one wants to + distribute different parts of a single logical package as multiple + directories. - It also looks for :file:`\*.pkg` files beginning where ``*`` matches the *name* - argument. This feature is similar to :file:`\*.pth` files (see the :mod:`site` - module for more information), except that it doesn't special-case lines starting - with ``import``. A :file:`\*.pkg` file is trusted at face value: apart from - checking for duplicates, all entries found in a :file:`\*.pkg` file are added to - the path, regardless of whether they exist on the filesystem. (This is a - feature.) + It also looks for :file:`\*.pkg` files beginning where ``*`` matches the + *name* argument. This feature is similar to :file:`\*.pth` files (see the + :mod:`site` module for more information), except that it doesn't special-case + lines starting with ``import``. A :file:`\*.pkg` file is trusted at face + value: apart from checking for duplicates, all entries found in a + :file:`\*.pkg` file are added to the path, regardless of whether they exist + on the filesystem. (This is a feature.) If the input path is not a list (as is the case for frozen packages) it is returned unchanged. The input path is not modified; an extended copy is returned. Items are only appended to the copy at the end. - It is assumed that ``sys.path`` is a sequence. Items of ``sys.path`` that are - not strings referring to existing directories are ignored. Unicode items on - ``sys.path`` that cause errors when used as filenames may cause this function - to raise an exception (in line with :func:`os.path.isdir` behavior). + It is assumed that :data:`sys.path` is a sequence. Items of :data:`sys.path` + that are not strings referring to existing directories are ignored. Unicode + items on :data:`sys.path` that cause errors when used as filenames may cause + this function to raise an exception (in line with :func:`os.path.isdir` + behavior). + + +.. class:: ImpImporter(dirname=None) + + :pep:`302` Importer that wraps Python's "classic" import algorithm. + + If *dirname* is a string, a :pep:`302` importer is created that searches that + directory. If *dirname* is ``None``, a :pep:`302` importer is created that + searches the current :data:`sys.path`, plus any modules that are frozen or + built-in. + + Note that :class:`ImpImporter` does not currently support being used by + placement on :data:`sys.meta_path`. + + +.. class:: ImpLoader(fullname, file, filename, etc) + + :pep:`302` Loader that wraps Python's "classic" import algorithm. + + +.. function:: find_loader(fullname) + + Find a :pep:`302` "loader" object for *fullname*. + + If *fullname* contains dots, path must be the containing package's + ``__path__``. Returns ``None`` if the module cannot be found or imported. + This function uses :func:`iter_importers`, and is thus subject to the same + limitations regarding platform-specific special import locations such as the + Windows registry. + + +.. function:: get_importer(path_item) + + Retrieve a :pep:`302` importer for the given *path_item*. + + The returned importer is cached in :data:`sys.path_importer_cache` if it was + newly created by a path hook. + + If there is no importer, a wrapper around the basic import machinery is + returned. This wrapper is never inserted into the importer cache (None is + inserted instead). + + The cache (or part of it) can be cleared manually if a rescan of + :data:`sys.path_hooks` is necessary. + + +.. function:: get_loader(module_or_name) + + Get a :pep:`302` "loader" object for *module_or_name*. + + If the module or package is accessible via the normal import mechanism, a + wrapper around the relevant part of that machinery is returned. Returns + ``None`` if the module cannot be found or imported. If the named module is + not already imported, its containing package (if any) is imported, in order + to establish the package ``__path__``. + + This function uses :func:`iter_importers`, and is thus subject to the same + limitations regarding platform-specific special import locations such as the + Windows registry. + + +.. function:: iter_importers(fullname='') + + Yield :pep:`302` importers for the given module name. + + If fullname contains a '.', the importers will be for the package containing + fullname, otherwise they will be importers for :data:`sys.meta_path`, + :data:`sys.path`, and Python's "classic" import machinery, in that order. If + the named module is in a package, that package is imported as a side effect + of invoking this function. + + Non-:pep:`302` mechanisms (e.g. the Windows registry) used by the standard + import machinery to find files in alternative locations are partially + supported, but are searched *after* :data:`sys.path`. Normally, these + locations are searched *before* :data:`sys.path`, preventing :data:`sys.path` + entries from shadowing them. + + For this to cause a visible difference in behaviour, there must be a module + or package name that is accessible via both :data:`sys.path` and one of the + non-:pep:`302` file system mechanisms. In this case, the emulation will find + the former version, while the builtin import mechanism will find the latter. + + Items of the following types can be affected by this discrepancy: + ``imp.C_EXTENSION``, ``imp.PY_SOURCE``, ``imp.PY_COMPILED``, + ``imp.PKG_DIRECTORY``. + + +.. function:: iter_modules(path=None, prefix='') + + Yields ``(module_loader, name, ispkg)`` for all submodules on *path*, or, if + path is ``None``, all top-level modules on :data:`sys.path`. + + *path* should be either ``None`` or a list of paths to look for modules in. + + *prefix* is a string to output on the front of every module name on output. + + +.. function:: walk_packages(path=None, prefix='', onerror=None) + + Yields ``(module_loader, name, ispkg)`` for all modules recursively on + *path*, or, if path is ``None``, all accessible modules. + + *path* should be either ``None`` or a list of paths to look for modules in. + + *prefix* is a string to output on the front of every module name on output. + + Note that this function must import all *packages* (*not* all modules!) on + the given *path*, in order to access the ``__path__`` attribute to find + submodules. + + *onerror* is a function which gets called with one argument (the name of the + package which was being imported) if any exception occurs while trying to + import a package. If no *onerror* function is supplied, :exc:`ImportError`\s + are caught and ignored, while all other exceptions are propagated, + terminating the search. + + Examples:: + + # list all modules python can access + walk_packages() + + # list all submodules of ctypes + walk_packages(ctypes.__path__, ctypes.__name__ + '.') + .. function:: get_data(package, resource) Get a resource from a package. - This is a wrapper for the :pep:`302` loader :func:`get_data` API. The package - argument should be the name of a package, in standard module format - (foo.bar). The resource argument should be in the form of a relative - filename, using ``/`` as the path separator. The parent directory name + This is a wrapper for the :pep:`302` loader :func:`get_data` API. The + *package* argument should be the name of a package, in standard module format + (``foo.bar``). The *resource* argument should be in the form of a relative + filename, using ``/`` as the path separator. The parent directory name ``..`` is not allowed, and nor is a rooted name (starting with a ``/``). - The function returns a binary string that is the contents of the - specified resource. + The function returns a binary string that is the contents of the specified + resource. For packages located in the filesystem, which have already been imported, this is the rough equivalent of:: - d = os.path.dirname(sys.modules[package].__file__) - data = open(os.path.join(d, resource), 'rb').read() + d = os.path.dirname(sys.modules[package].__file__) + data = open(os.path.join(d, resource), 'rb').read() If the package cannot be located or loaded, or it uses a :pep:`302` loader - which does not support :func:`get_data`, then None is returned. + which does not support :func:`get_data`, then ``None`` is returned. -API Reference -============= +Installed distributions database +-------------------------------- -.. automodule:: distutils2._backport.pkgutil - :members: +Installed Python distributions are represented by instances of +:class:`~distutils2._backport.pkgutil.Distribution`, or its subclass +:class:`~distutils2._backport.pkgutil.EggInfoDistribution` for legacy ``.egg`` +and ``.egg-info`` formats). Most functions also provide an extra argument +``use_egg_info`` to take legacy distributions into account. + +.. TODO write docs here, don't rely on automodule + classes: Distribution and descendents + functions: provides, obsoletes, replaces, etc. Caching +++++++ @@ -86,11 +213,10 @@ :func:`~distutils2._backport.pkgutil.clear_cache`. +Examples +-------- -Example Usage -============= - -Print All Information About a Distribution +Print all information about a distribution ++++++++++++++++++++++++++++++++++++++++++ Given a path to a ``.dist-info`` distribution, we shall print out all @@ -182,7 +308,7 @@ ===== * It was installed as a dependency -Find Out Obsoleted Distributions +Find out obsoleted distributions ++++++++++++++++++++++++++++++++ Now, we take tackle a different problem, we are interested in finding out diff --git a/docs/source/setupcfg.rst b/docs/source/setupcfg.rst --- a/docs/source/setupcfg.rst +++ b/docs/source/setupcfg.rst @@ -7,24 +7,35 @@ Each section contains a description of its options. -- Options that are marked *\*multi* can have multiple values, one value - per line. +- Options that are marked *\*multi* can have multiple values, one value per + line. - Options that are marked *\*optional* can be omited. -- Options that are marked *\*environ* can use environement markes, as described - in PEP 345. +- Options that are marked *\*environ* can use environment markers, as described + in :PEP:`345`. + The sections are: -- global -- metadata -- files -- command sections +global + Global options for Distutils2. + +metadata + The metadata section contains the metadata for the project as described in + :PEP:`345`. + +files + Declaration of package files included in the project. + +`command` sections + Redefinition of user options for Distutils2 commands. global ====== -Contains global options for Distutils2. This section is shared with Distutils1. +Contains global options for Distutils2. This section is shared with Distutils1 +(legacy version distributed in python 2.X standard library). + - **commands**: Defined Distutils2 command. A command is defined by its fully qualified name. @@ -38,13 +49,13 @@ *\*optional* *\*multi* - **compilers**: Defined Distutils2 compiler. A compiler is defined by its fully - qualified name. + qualified name. Example:: [global] compiler = - package.compilers.CustomCCompiler + package.compiler.CustomCCompiler *\*optional* *\*multi* @@ -52,21 +63,29 @@ :file:`setup.cfg` file is read. The callable receives the configuration in form of a mapping and can make some changes to it. *\*optional* + Example:: + + [global] + setup_hook = + distutils2.tests.test_config.hook + metadata ======== The metadata section contains the metadata for the project as described in -PEP 345. +:PEP:`345`. +.. Note:: + Field names are case-insensitive. Fields: - **name**: Name of the project. -- **version**: Version of the project. Must comply with PEP 386. +- **version**: Version of the project. Must comply with :PEP:`386`. - **platform**: Platform specification describing an operating system supported by the distribution which is not listed in the "Operating System" Trove - classifiers. *\*multi* *\*optional* + classifiers (:PEP:`301`). *\*multi* *\*optional* - **supported-platform**: Binary distributions containing a PKG-INFO file will use the Supported-Platform field in their metadata to specify the OS and CPU for which the binary distribution was compiled. The semantics of @@ -113,14 +132,18 @@ name = pypi2rpm version = 0.1 author = Tarek Ziade - author_email = tarek at ziade.org + author-email = tarek at ziade.org summary = Script that transforms a sdist archive into a rpm archive description-file = README - home_page = http://bitbucket.org/tarek/pypi2rpm + home-page = http://bitbucket.org/tarek/pypi2rpm + project-url: RSS feed, https://bitbucket.org/tarek/pypi2rpm/rss classifier = Development Status :: 3 - Alpha License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1) +.. Note:: + Some metadata fields seen in :PEP:`345` are automatically generated + (for instance Metadata-Version value). files @@ -128,6 +151,8 @@ This section describes the files included in the project. +- **packages_root**: the root directory containing all packages. If not provided + Distutils2 will use the current directory. *\*optional* - **packages**: a list of packages the project includes *\*optional* *\*multi* - **modules**: a list of packages the project includes *\*optional* *\*multi* - **scripts**: a list of scripts the project includes *\*optional* *\*multi* @@ -136,6 +161,7 @@ Example:: [files] + packages_root = src packages = pypi2rpm pypi2rpm.command @@ -145,17 +171,379 @@ extra_files = setup.py + README +.. Note:: + In Distutils2, setup.cfg will be implicitly included. -command sections -================ +Resources +========= -Each command can have its options described in :file:`setup.cfg` +This section describes the files used by the project which must not be installed in the same place that python modules or libraries, they are called **resources**. They are for example documentation files, script files, databases, etc... +For declaring resources, you must use this notation :: + + source = destination + +Data-files are declared in the **resources** field in the **file** section, for example:: + + [files] + resources = + source1 = destination1 + source2 = destination2 + +The **source** part of the declaration are relative paths of resources files (using unix path separator **/**). For example, if you've this source tree:: + + foo/ + doc/ + doc.man + scripts/ + foo.sh + +Your setup.cfg will look like:: + + [files] + resources = + doc/doc.man = destination_doc + scripts/foo.sh = destination_scripts + +The final paths where files will be placed are composed by : **source** + **destination**. In the previous example, **doc/doc.man** will be placed in **destination_doc/doc/doc.man** and **scripts/foo.sh** will be placed in **destination_scripts/scripts/foo.sh**. (If you want more control on the final path, take a look at base_prefix_). + +The **destination** part of resources declaration are paths with categories. Indeed, it's generally a bad idea to give absolute path as it will be cross incompatible. So, you must use resources categories in your **destination** declaration. Categories will be replaced by their real path at the installation time. Using categories is all benefit, your declaration will be simpler, cross platform and it will allow packager to place resources files where they want without breaking your code. + +Categories can be specified by using this syntax:: + + {category} + +Default categories are:: + +* config +* appdata +* appdata.arch +* appdata.persistent +* appdata.disposable +* help +* icon +* scripts +* doc +* info +* man + +A special category also exists **{distribution.name}** that will be replaced by the name of the distribution, but as most of the defaults categories use them, so it's not necessary to add **{distribution.name}** into your destination. + +If you use categories in your declarations, and you are encouraged to do, final path will be:: + + source + destination_expanded + +.. _example_final_path: + +For example, if you have this setup.cfg:: + + [metadata] + name = foo + + [files] + resources = + doc/doc.man = {doc} + +And if **{doc}** is replaced by **{datadir}/doc/{distribution.name}**, final path will be:: + + {datadir}/doc/foo/doc/doc.man + +Where {datafir} category will be platform-dependent. + + +More control on source part +--------------------------- + +Glob syntax +___________ + +When you declare source file, you can use a glob-like syntax to match multiples file, for example:: + + scripts/* = {script} + +Will match all the files in the scripts directory and placed them in the script category. + +Glob tokens are: + + * * : match all files. + * ? : match any character. + * ** : match any level of tree recursion (even 0). + * {} : will match any part separated by comma (example : {sh,bat}). + +TODO :: + + Add an example + +Order of declaration +____________________ + +The order of declaration is important if one file match multiple rules. The last rules matched by file is used, this is useful if you have this source tree:: + + foo/ + doc/ + index.rst + setup.rst + documentation.txt + doc.tex + README + +And you want all the files in the doc directory to be placed in {doc} category, but README must be placed in {help} category, instead of listing all the files one by one, you can declare them in this way:: + + [files] + resources = + doc/* = {doc} + doc/README = {help} + +Exclude +_______ + +You can exclude some files of resources declaration by giving no destination, it can be useful if you have a non-resources file in the same directory of resources files:: + + foo/ + doc/ + RELEASES + doc.tex + documentation.txt + docu.rst + +Your **file** section will be:: + + [files] + resources = + doc/* = {doc} + doc/RELEASES = + +More control on destination part +-------------------------------- + +.. _base_prefix: + +Define a base-prefix +____________________ + +When you define your resources, you can have more control of how the final path is compute. + +By default, the final path is:: + + destination + source + +This can generate long paths, for example (example_final_path_):: + + {datadir}/doc/foo/doc/doc.man + +When you declare your source, you can use a separator to split the source in **prefix** **suffix**. The supported separator are : + + * Whitespace + +So, for example, if you have this source:: + + docs/ doc.man + +The **prefix** is "docs/" and the **suffix** is "doc.html". + +.. note:: + + Separator can be placed after a path separator or replace it. So theses two sources are equivalent:: + + docs/ doc.man + docs doc.man + +.. note:: + + Glob syntax is working the same way with standard source and splitted source. So theses rules:: + + docs/* + docs/ * + docs * + + Will match all the files in the docs directory. + +When you use splitted source, the final path is compute in this way:: + + destination + prefix + +So for example, if you have this setup.cfg:: + + [metadata] + name = foo + + [files] + resources = + doc/ doc.man = {doc} + +And if **{doc}** is replaced by **{datadir}/doc/{distribution.name}**, final path will be:: + + {datadir}/doc/foo/doc.man + + +Overwrite paths for categories +------------------------------ + +.. warning:: + + This part is intended for system administrator or packager. + +The real paths of categories are registered in the *sysconfig.cfg* file installed in your python installation. The format of this file is INI-like. The content of the file is organized into several sections : + + * globals : Standard categories's paths. + * posix_prefix : Standard paths for categories and installation paths for posix system. + * other one... + +Standard categories's paths are platform independent, they generally refers to other categories, which are platform dependent. Sysconfig module will choose these category from sections matching os.name. For example:: + + doc = {datadir}/doc/{distribution.name} + +It refers to datadir category, which can be different between platforms. In posix system, it may be:: + + datadir = /usr/share + +So the final path will be:: + + doc = /usr/share/doc/{distribution.name} + +The platform dependent categories are : + + * confdir + * datadir + * libdir + * base + +Define extra-categories +----------------------- + +Examples +-------- + +.. note:: + + These examples are incremental but works unitarily. + +Resources in root dir +_____________________ + +Source tree:: + + babar-1.0/ + README + babar.sh + launch.sh + babar.py + +Setup.cfg:: + + [files] + resources = + README = {doc} + *.sh = {scripts} + +So babar.sh and launch.sh will be placed in {scripts} directory. + +Now let's move all the scripts into a scripts directory. + +Resources in sub-directory +__________________________ + +Source tree:: + + babar-1.1/ + README + scripts/ + babar.sh + launch.sh + LAUNCH + babar.py + +Setup.cfg:: + + [files] + resources = + README = {doc} + scripts/ LAUNCH = {doc} + scripts/ *.sh = {scripts} + +It's important to use the separator after scripts/ to install all the bash scripts into {scripts} instead of {scripts}/scripts. + +Now let's add some docs. + +Resources in multiple sub-directories +_____________________________________ + +Source tree:: + + babar-1.2/ + README + scripts/ + babar.sh + launch.sh + LAUNCH + docs/ + api + man + babar.py + +Setup.cfg:: + + [files] + resources = + README = {doc} + scripts/ LAUNCH = {doc} + scripts/ *.sh = {scripts} + doc/ * = {doc} + doc/ man = {man} + +You want to place all the file in the docs script into {doc} category, instead of man, which must be placed into {man} category, we will use the order of declaration of globs to choose the destination, the last glob that match the file is used. + +Now let's add some scripts for windows users. + +Complete example +________________ + +Source tree:: + + babar-1.3/ + README + doc/ + api + man + scripts/ + babar.sh + launch.sh + babar.bat + launch.bat + LAUNCH + +Setup.cfg:: + + [files] + resources = + README = {doc} + scripts/ LAUNCH = {doc} + scripts/ *.{sh,bat} = {scripts} + doc/ * = {doc} + doc/ man = {man} + +We use brace expansion syntax to place all the bash and batch scripts into {scripts} category. + +.. Warning:: + In Distutils2, setup.py and README (or README.txt) files are not more + included in source distribution by default + +`command` sections +================== + +Each Distutils2 command can have its own user options defined in :file:`setup.cfg` Example:: [sdist] - manifest_makers = package.module.Maker + manifest-builders = package.module.Maker +To override the build class in order to generate Python3 code from your Python2 base:: + + [build_py] + use-2to3 = True + + diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -1,12 +1,11 @@ #!/usr/bin/env python -# -*- encoding: utf8 -*- +# -*- encoding: utf-8 -*- import sys import os import re from distutils2 import __version__ as VERSION from distutils import log -from distutils.core import setup, Extension from distutils.ccompiler import new_compiler from distutils.command.sdist import sdist from distutils.command.install import install @@ -15,8 +14,13 @@ try: from distutils.command.build_py import build_py_2to3 as build_py except ImportError: - # 2.x - from distutils.command.build_py import build_py + # 2.x, try to use setuptools if available + try : + from setuptools import setup, Extension + from setuptools.command.build_py import build_py + except ImportError: + from distutils.core import setup, Extension + from distutils.command.build_py import build_py f = open('README.txt') @@ -196,9 +200,10 @@ return exts -setup_kwargs = {} +setup_kwargs = {'scripts': ['distutils2/pysetup']} + if sys.version < '2.6': - setup_kwargs['scripts'] = ['distutils2/mkcfg.py'] + setup_kwargs['scripts'].append('distutils2/mkcfg.py') if sys.version < '2.5': setup_kwargs['ext_modules'] = prepare_hashlib_extensions() -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 19:59:24 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 19:59:24 +0100 Subject: [Python-checkins] distutils2: now calls get_platform() to get the right lib.VALUE Message-ID: http://hg.python.org/distutils2/rev/22da53c1cf98 changeset: 1112:22da53c1cf98 user: Tarek Ziade date: Sun Mar 13 14:59:18 2011 -0400 summary: now calls get_platform() to get the right lib.VALUE files: tests.sh diff --git a/tests.sh b/tests.sh --- a/tests.sh +++ b/tests.sh @@ -38,11 +38,14 @@ echo Success fi +LIB=$( python3.1 -c "from distutils.util import get_platform; import sys; print('lib.%s-%s' % (get_platform(), sys.version[0:3]))" ) + + echo -n "Running tests for Python 3.1... " python3.1 setup.py build -q 2> /dev/null > /dev/null cp runtests.py build/ cd build -PYTHONPATH=lib.linux-x86_64-3.1/ python3.1 runtests.py -q 2> /dev/null +PYTHONPATH=${LIB} python3.1 runtests.py -q 2> /dev/null if [ $? -ne 0 ];then echo Failed @@ -55,7 +58,7 @@ python3.2 setup.py build -q 2> /dev/null > /dev/null cp runtests.py build/ cd build -PYTHONPATH=lib.linux-x86_64-3.1/ python3.2 runtests.py -q 2> /dev/null +PYTHONPATH=${LIB} python3.2 runtests.py -q 2> /dev/null if [ $? -ne 0 ];then echo Failed @@ -68,7 +71,7 @@ python3.2 setup.py build -q 2> /dev/null > /dev/null cp runtests.py build/ cd build -PYTHONPATH=lib.linux-x86_64-3.1/ python3.3 runtests.py -q 2> /dev/null +PYTHONPATH=${LIB} python3.3 runtests.py -q 2> /dev/null if [ $? -ne 0 ];then echo Failed -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 20:56:01 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 20:56:01 +0100 Subject: [Python-checkins] distutils2: added a create action Message-ID: http://hg.python.org/distutils2/rev/87afa2e775c5 changeset: 1114:87afa2e775c5 user: Tarek Ziade date: Sat Mar 12 09:54:09 2011 -0500 summary: added a create action files: distutils2/run.py diff --git a/distutils2/run.py b/distutils2/run.py --- a/distutils2/run.py +++ b/distutils2/run.py @@ -180,13 +180,20 @@ remove(options.remove) return 0 +def _create(distpatcher, args, **kw): + from distutils2.mkcfg import main + main() + return 0 + actions = [('run', 'Run one or several commands', _run), ('metadata', 'Display the metadata of a project', _metadata), ('install', 'Install a project', _install), ('remove', 'Remove a project', _remove), ('search', 'Search for a project', _search), - ('graph', 'Display a graph', _graph),] + ('graph', 'Display a graph', _graph), + ('create', 'Create a Project', _create),] + -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 20:56:01 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 20:56:01 +0100 Subject: [Python-checkins] distutils2: added a create action Message-ID: http://hg.python.org/distutils2/rev/6cf51c545e01 changeset: 1115:6cf51c545e01 user: Tarek Ziade date: Sat Mar 12 09:54:27 2011 -0500 summary: added a create action files: distutils2/run.py diff --git a/distutils2/run.py b/distutils2/run.py --- a/distutils2/run.py +++ b/distutils2/run.py @@ -5,6 +5,7 @@ import logging import re import os +import sys from distutils2.errors import DistutilsError, CCompilerError from distutils2._backport.pkgutil import get_distributions, get_distribution -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 20:56:01 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 20:56:01 +0100 Subject: [Python-checkins] distutils2: [mq]: commandline Message-ID: http://hg.python.org/distutils2/rev/3a2f1a407820 changeset: 1113:3a2f1a407820 parent: 1097:a8c8ef7c3b92 user: Tarek Ziade date: Sun Feb 20 00:43:59 2011 +0100 summary: [mq]: commandline files: distutils2/dist.py distutils2/run.py distutils2/tests/test_config.py distutils2/tests/test_run.py distutils2/tests/test_uninstall.py setup.cfg diff --git a/distutils2/dist.py b/distutils2/dist.py --- a/distutils2/dist.py +++ b/distutils2/dist.py @@ -25,6 +25,16 @@ # to look for a Python module named after the command. command_re = re.compile(r'^[a-zA-Z]([a-zA-Z0-9_]*)$') +USAGE = """\ +usage: %(script)s [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] + or: %(script)s --help [cmd1 cmd2 ...] + or: %(script)s --help-commands + or: %(script)s cmd --help +""" + +def gen_usage(script_name): + script = os.path.basename(script_name) + return USAGE % {'script': script} class Distribution(object): """The core of the Distutils. Most of the work hiding behind 'setup' @@ -507,7 +517,6 @@ in 'commands'. """ # late import because of mutual dependence between these modules - from distutils2.run import gen_usage from distutils2.command.cmd import Command if global_options: @@ -548,8 +557,6 @@ line, display the requested info and return true; else return false. """ - from distutils2.run import gen_usage - # User just wants a list of commands -- we'll print it out and stop # processing now (ie. if they ran "setup --help-commands foo bar", # we ignore "foo bar"). @@ -752,7 +759,7 @@ # -- Methods that operate on its Commands -------------------------- - def run_command(self, command): + def run_command(self, command, options=None): """Do whatever it takes to run a command (including nothing at all, if the command has already been run). Specifically: if we have already created and run the command named by 'command', return @@ -764,6 +771,9 @@ if self.have_run.get(command): return + if options is not None: + self.command_options[command] = options + cmd_obj = self.get_command_obj(command) cmd_obj.ensure_finalized() self.run_command_hooks(cmd_obj, 'pre_hook') diff --git a/distutils2/run.py b/distutils2/run.py --- a/distutils2/run.py +++ b/distutils2/run.py @@ -1,115 +1,60 @@ +"""distutils2.dispatcher + +Parses the command line. +""" +import logging +import re import os -import sys -from optparse import OptionParser -import logging -from distutils2 import logger -from distutils2.errors import (DistutilsSetupError, DistutilsArgError, - DistutilsError, CCompilerError) -from distutils2.dist import Distribution -from distutils2 import __version__ +from distutils2.errors import DistutilsError, CCompilerError from distutils2._backport.pkgutil import get_distributions, get_distribution from distutils2.depgraph import generate_graph from distutils2.install import install, remove +from distutils2.dist import Distribution -# This is a barebones help message generated displayed when the user -# runs the setup script with no arguments at all. More useful help -# is generated with various --help options: global help, list commands, -# and per-command help. -USAGE = """\ -usage: %(script)s [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] - or: %(script)s --help [cmd1 cmd2 ...] - or: %(script)s --help-commands - or: %(script)s cmd --help +from distutils2.command import get_command_class, STANDARD_COMMANDS + +from distutils2.errors import (DistutilsOptionError, DistutilsArgError, + DistutilsModuleError, DistutilsClassError) + +from distutils2 import logger +from distutils2.fancy_getopt import FancyGetopt + +command_re = re.compile(r'^[a-zA-Z]([a-zA-Z0-9_]*)$') + +run_usage = """\ +usage: pysetup run [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] + or: pysetup run --help + or: pysetup run --list-commands + or: pysetup run cmd --help """ +common_usage = """\ +Actions: +%(actions)s -def gen_usage(script_name): - script = os.path.basename(script_name) - return USAGE % {'script': script} +To get more help on an action, use: + pysetup action --help +""" -def commands_main(**attrs): - """The gateway to the Distutils: do everything your setup script needs - to do, in a highly flexible and user-driven way. Briefly: create a - Distribution instance; find and parse config files; parse the command - line; run each Distutils command found there, customized by the options - supplied to 'setup()' (as keyword arguments), in config files, and on - the command line. +global_options = [('verbose', 'v', "run verbosely (default)", 1), + ('quiet', 'q', "run quietly (turns verbosity off)"), + ('dry-run', 'n', "don't actually do anything"), + ('help', 'h', "show detailed help message"), + ('no-user-cfg', None, + 'ignore pydistutils.cfg in your home directory'), + ('version', None, 'Display the version'), + ] - The Distribution instance might be an instance of a class supplied via - the 'distclass' keyword argument to 'setup'; if no such class is - supplied, then the Distribution class (in dist.py) is instantiated. - All other arguments to 'setup' (except for 'cmdclass') are used to set - attributes of the Distribution instance. +display_options = [ + ('help-commands', None, + "list all available commands"), + ] - The 'cmdclass' argument, if supplied, is a dictionary mapping command - names to command classes. Each command encountered on the command line - will be turned into a command class, which is in turn instantiated; any - class found in 'cmdclass' is used in place of the default, which is - (for command 'foo_bar') class 'foo_bar' in module - 'distutils2.command.foo_bar'. The command class must provide a - 'user_options' attribute which is a list of option specifiers for - 'distutils2.fancy_getopt'. Any command-line options between the current - and the next command are used to set attributes of the current command - object. - When the entire command line has been successfully parsed, calls the - 'run()' method on each command object in turn. This method will be - driven entirely by the Distribution object (which each command object - has a reference to, thanks to its constructor), and the - command-specific options that became attributes of each command - object. - """ - # Determine the distribution class -- either caller-supplied or - # our Distribution (see below). - distclass = attrs.pop('distclass', Distribution) - - if 'script_name' not in attrs: - attrs['script_name'] = os.path.basename(sys.argv[0]) - - if 'script_args' not in attrs: - if sys.argv[1] == "help": - script_args = sys.argv[2:] - script_args.append("--help") - else: - script_args = sys.argv[1:] - attrs['script_args'] = script_args - - # Create the Distribution instance, using the remaining arguments - # (ie. everything except distclass) to initialize it - try: - dist = distclass(attrs) - except DistutilsSetupError, msg: - if 'name' in attrs: - raise SystemExit("error in %s setup command: %s" % \ - (attrs['name'], msg)) - else: - raise SystemExit("error in setup command: %s" % msg) - - # Find and parse the config file(s): they will override options from - # the setup script, but be overridden by the command line. - dist.parse_config_files() - - # Parse the command line and override config files; any - # command line errors are the end user's fault, so turn them into - # SystemExit to suppress tracebacks. - try: - res = dist.parse_command_line() - except DistutilsArgError, msg: - raise SystemExit(gen_usage(dist.script_name) + "\nerror: %s" % msg) - - # And finally, run all the commands found on the command line. - if res: - try: - dist.run_commands() - except KeyboardInterrupt: - raise SystemExit("interrupted") - except (IOError, os.error, DistutilsError, CCompilerError), msg: - raise SystemExit("error: " + str(msg)) - - return dist - +display_option_names = [x[0].replace('-', '_') for x in display_options] +negative_opt = {'quiet': 'verbose'} def _set_logger(): logger.setLevel(logging.INFO) @@ -118,118 +63,419 @@ logger.addHandler(sth) logger.propagate = 0 +def _graph(dispatcher, args, **kw): + # XXX + dists = get_distributions(use_egg_info=True) + graph = generate_graph(dists) + print(graph) + return 0 -def main(): - """Main entry point for Distutils2 - Execute an action or delegate to the commands system. + name = args[0] + dist = get_distribution(name, use_egg_info=True) + if dist is None: + print('Distribution not found.') + else: + dists = get_distributions(use_egg_info=True) + graph = generate_graph(dists) + print(graph.repr_node(dist)) + + return 0 + + + +def _search(dispatcher, args, **kw): + search = args[0].lower() + for dist in get_distributions(use_egg_info=True): + name = dist.name.lower() + if search in name: + print('%s %s at %s' % (dist.name, dist.metadata['version'], + dist.path)) + + return 0 + + +def _metadata(dispatcher, args, **kw): + ### XXX Needs to work on any installed package as well + from distutils2.dist import Distribution + dist = Distribution() + dist.parse_config_files() + metadata = dist.metadata + + if 'all' in args: + keys = metadata.keys() + else: + keys = args + if len(keys) == 1: + print metadata[keys[0]] + return + + for key in keys: + if key in metadata: + print(metadata._convert_name(key) + ':') + value = metadata[key] + if isinstance(value, list): + for v in value: + print(' ' + v) + else: + print(' ' + value.replace('\n', '\n ')) + return 0 + +def _run(dispatcher, args, **kw): + parser = dispatcher.parser + args = args[1:] + + commands = STANDARD_COMMANDS # + extra commands + + # do we have a global option ? + if args in (['--help'], []): + print(run_usage) + return + + if args == ['--list-commands']: + print('List of available commands:') + cmds = list(commands) + cmds.sort() + + for cmd in cmds: + cls = dispatcher.cmdclass.get(cmd) or get_command_class(cmd) + desc = getattr(cls, 'description', + '(no description available)') + print(' %s: %s' % (cmd, desc)) + return + + while args: + args = dispatcher._parse_command_opts(parser, args) + if args is None: + return + + # create the Distribution class + # need to feed setup.cfg here ! + dist = Distribution() + + # Find and parse the config file(s): they will override options from + # the setup script, but be overridden by the command line. + + # XXX still need to be extracted from Distribution + dist.parse_config_files() + + + try: + for cmd in dispatcher.commands: + dist.run_command(cmd, dispatcher.command_options[cmd]) + + except KeyboardInterrupt: + raise SystemExit("interrupted") + except (IOError, os.error, DistutilsError, CCompilerError), msg: + raise SystemExit("error: " + str(msg)) + + # XXX this is crappy + return dist + +def _install(dispatcher, args, **kw): + install(args[0]) + return 0 + +def _remove(distpatcher, args, **kw): + remove(options.remove) + return 0 + + +actions = [('run', 'Run one or several commands', _run), + ('metadata', 'Display the metadata of a project', _metadata), + ('install', 'Install a project', _install), + ('remove', 'Remove a project', _remove), + ('search', 'Search for a project', _search), + ('graph', 'Display a graph', _graph),] + + + +def fix_help_options(options): + """Convert a 4-tuple 'help_options' list as found in various command + classes to the 3-tuple form required by FancyGetopt. """ - _set_logger() - parser = OptionParser() - parser.disable_interspersed_args() - parser.usage = '%prog [options] cmd1 cmd2 ..' + new_options = [] + for help_tuple in options: + new_options.append(help_tuple[0:3]) + return new_options - parser.add_option("-v", "--version", - action="store_true", dest="version", default=False, - help="Prints out the version of Distutils2 and exits.") - parser.add_option("-m", "--metadata", - action="append", dest="metadata", default=[], - help="List METADATA metadata or 'all' for all metadatas.") - parser.add_option("-s", "--search", - action="store", dest="search", default=None, - help="Search for installed distributions.") +class Dispatcher(object): + """Reads the command-line options + """ + def __init__(self, args=None): + self.verbose = 1 + self.dry_run = 0 + self.help = 0 + self.script_name = 'pysetup' + self.cmdclass = {} + self.commands = [] + self.command_options = {} - parser.add_option("-g", "--graph", - action="store", dest="graph", default=None, - help="Display the graph for a given installed distribution.") + for attr in display_option_names: + setattr(self, attr, 0) - parser.add_option("-f", "--full-graph", - action="store_true", dest="fgraph", default=False, - help="Display the full graph for installed distributions.") + self.parser = FancyGetopt(global_options + display_options) + self.parser.set_negative_aliases(negative_opt) + args = self.parser.getopt(args=args, object=self) - parser.add_option("-i", "--install", - action="store", dest="install", - help="Install a project.") + #args = args[1:] - parser.add_option("-r", "--remove", - action="store", dest="remove", - help="Remove a project.") + # if first arg is "run", we have some commands + if len(args) == 0: + self.action = None + else: + self.action = args[0] - options, args = parser.parse_args() - if options.version: - print('Distutils2 %s' % __version__) + allowed = [action[0] for action in actions] + [None] + if self.action not in allowed: + msg = 'Unrecognized action "%s"' % self.action + raise DistutilsArgError(msg) + + # setting up the logger + handler = logging.StreamHandler() + logger.addHandler(handler) + + if self.verbose: + handler.setLevel(logging.DEBUG) + else: + handler.setLevel(logging.INFO) + + # for display options we return immediately + option_order = self.parser.get_option_order() + + self.args = args + + if self.help or self.action is None: + self._show_help(self.parser, display_options_=False) + return + + def _parse_command_opts(self, parser, args): + # Pull the current command from the head of the command line + command = args[0] + if not command_re.match(command): + raise SystemExit("invalid command name %r" % command) + self.commands.append(command) + + # Dig up the command class that implements this command, so we + # 1) know that it's a valid command, and 2) know which options + # it takes. + try: + cmd_class = get_command_class(command) + except DistutilsModuleError, msg: + raise DistutilsArgError(msg) + + # XXX We want to push this in distutils.command + # + # Require that the command class be derived from Command -- want + # to be sure that the basic "command" interface is implemented. + for meth in ('initialize_options', 'finalize_options', 'run'): + if hasattr(cmd_class, meth): + continue + raise DistutilsClassError( + 'command %r must implement %r' % (cmd_class, meth)) + + # Also make sure that the command object provides a list of its + # known options. + if not (hasattr(cmd_class, 'user_options') and + isinstance(cmd_class.user_options, list)): + raise DistutilsClassError( + "command class %s must provide " + "'user_options' attribute (a list of tuples)" % cmd_class) + + # If the command class has a list of negative alias options, + # merge it in with the global negative aliases. + _negative_opt = negative_opt.copy() + + if hasattr(cmd_class, 'negative_opt'): + _negative_opt.update(cmd_class.negative_opt) + + # Check for help_options in command class. They have a different + # format (tuple of four) so we need to preprocess them here. + if (hasattr(cmd_class, 'help_options') and + isinstance(cmd_class.help_options, list)): + help_options = fix_help_options(cmd_class.help_options) + else: + help_options = [] + + # All commands support the global options too, just by adding + # in 'global_options'. + parser.set_option_table(global_options + + cmd_class.user_options + + help_options) + parser.set_negative_aliases(_negative_opt) + args, opts = parser.getopt(args[1:]) + + if hasattr(opts, 'help') and opts.help: + self._show_command_help(cmd_class) + return + + if (hasattr(cmd_class, 'help_options') and + isinstance(cmd_class.help_options, list)): + help_option_found = 0 + for (help_option, short, desc, func) in cmd_class.help_options: + if hasattr(opts, help_option.replace('-', '_')): + help_option_found = 1 + if hasattr(func, '__call__'): + func() + else: + raise DistutilsClassError( + "invalid help function %r for help option %r: " + "must be a callable object (function, etc.)" + % (func, help_option)) + + if help_option_found: + return + + # Put the options from the command line into their official + # holding pen, the 'command_options' dictionary. + opt_dict = self.get_option_dict(command) + for (name, value) in vars(opts).iteritems(): + opt_dict[name] = ("command line", value) + + return args + + def get_option_dict(self, command): + """Get the option dictionary for a given command. If that + command's option dictionary hasn't been created yet, then create it + and return the new dictionary; otherwise, return the existing + option dictionary. + """ + d = self.command_options.get(command) + if d is None: + d = self.command_options[command] = {} + return d + + def show_help(self): + self._show_help(self.parser) + + def print_usage(self, parser): + parser.set_option_table(global_options) + + actions_ = [' %s: %s' % (name, desc) for name, desc, __ in actions] + usage = common_usage % {'actions': '\n'.join(actions_)} + + parser.print_help(usage + "\nGlobal options:") + + def _show_help(self, parser, global_options_=1, display_options_=1, + commands=[]): + # late import because of mutual dependence between these modules + from distutils2.command.cmd import Command + + print('Usage: pysetup [options] action [action_options]') + print('') + if global_options_: + self.print_usage(self.parser) + print('') + + if display_options_: + parser.set_option_table(display_options) + parser.print_help( + "Information display options (just display " + + "information, ignore any commands)") + print('') + + for command in commands: + if isinstance(command, type) and issubclass(command, Command): + cls = command + else: + cls = get_command_class(command) + if (hasattr(cls, 'help_options') and + isinstance(cls.help_options, list)): + parser.set_option_table(cls.user_options + + fix_help_options(cls.help_options)) + else: + parser.set_option_table(cls.user_options) + + + parser.print_help("Options for %r command:" % cls.__name__) + print('') + + def _show_command_help(self, command): + from distutils2.command.cmd import Command + if isinstance(command, str): + command = get_command_class(command) + + name = command.get_command_name() + + desc = getattr(command, 'description', '(no description available)') + print('Description: %s' % desc) + print('') + + if (hasattr(command, 'help_options') and + isinstance(command.help_options, list)): + self.parser.set_option_table(command.user_options + + fix_help_options(command.help_options)) + else: + self.parser.set_option_table(command.user_options) + + self.parser.print_help("Options:") + print('') + + def _get_command_groups(self): + """Helper function to retrieve all the command class names divided + into standard commands (listed in + distutils2.command.STANDARD_COMMANDS) and extra commands (given in + self.cmdclass and not standard commands). + """ + extra_commands = [cmd for cmd in self.cmdclass + if cmd not in STANDARD_COMMANDS] + return STANDARD_COMMANDS, extra_commands + + def print_commands(self): + """Print out a help message listing all available commands with a + description of each. The list is divided into standard commands + (listed in distutils2.command.STANDARD_COMMANDS) and extra commands + (given in self.cmdclass and not standard commands). The + descriptions come from the command class attribute + 'description'. + """ + std_commands, extra_commands = self._get_command_groups() + max_length = 0 + for cmd in list(std_commands) + list(extra_commands): + if len(cmd) > max_length: + max_length = len(cmd) + + self.print_command_list(std_commands, + "Standard commands", + max_length) + if extra_commands: + print + self.print_command_list(extra_commands, + "Extra commands", + max_length) + + + def print_command_list(self, commands, header, max_length): + """Print a subset of the list of all commands -- used by + 'print_commands()'. + """ + print(header + ":") + + for cmd in commands: + cls = self.cmdclass.get(cmd) or get_command_class(cmd) + description = getattr(cls, 'description', + '(no description available)') + + print(" %-*s %s" % (max_length, cmd, description)) + + + def __call__(self): + if self.action is None: + return 0 + for action, desc, func in actions: + if action == self.action: + return func(self, self.args) + return -1 + + +def main(args=None): + dispatcher = Dispatcher(args) + if dispatcher.action is None: return 0 - if len(options.metadata): - from distutils2.dist import Distribution - dist = Distribution() - dist.parse_config_files() - metadata = dist.metadata - - if 'all' in options.metadata: - keys = metadata.keys() - else: - keys = options.metadata - if len(keys) == 1: - print metadata[keys[0]] - return - - for key in keys: - if key in metadata: - print(metadata._convert_name(key) + ':') - value = metadata[key] - if isinstance(value, list): - for v in value: - print(' ' + v) - else: - print(' ' + value.replace('\n', '\n ')) - return 0 - - if options.search is not None: - search = options.search.lower() - for dist in get_distributions(use_egg_info=True): - name = dist.name.lower() - if search in name: - print('%s %s at %s' % (dist.name, dist.metadata['version'], - dist.path)) - - return 0 - - if options.graph is not None: - name = options.graph - dist = get_distribution(name, use_egg_info=True) - if dist is None: - print('Distribution not found.') - else: - dists = get_distributions(use_egg_info=True) - graph = generate_graph(dists) - print(graph.repr_node(dist)) - - return 0 - - if options.fgraph: - dists = get_distributions(use_egg_info=True) - graph = generate_graph(dists) - print(graph) - return 0 - - if options.install is not None: - install(options.install) - return 0 - - if options.remove is not None: - remove(options.remove) - return 0 - - if len(args) == 0: - parser.print_help() - return 0 - - commands_main() - return 0 - + return dispatcher() if __name__ == '__main__': sys.exit(main()) diff --git a/distutils2/tests/test_config.py b/distutils2/tests/test_config.py --- a/distutils2/tests/test_config.py +++ b/distutils2/tests/test_config.py @@ -180,14 +180,9 @@ def run_setup(self, *args): # run setup with args - sys.stdout = StringIO() - sys.argv[:] = [''] + list(args) - old_sys = sys.argv[:] - try: - from distutils2.run import commands_main - dist = commands_main() - finally: - sys.argv[:] = old_sys + args = ['', 'run'] + list(args) + from distutils2.run import main + dist = main(args) return dist def test_config(self): diff --git a/distutils2/tests/test_run.py b/distutils2/tests/test_run.py --- a/distutils2/tests/test_run.py +++ b/distutils2/tests/test_run.py @@ -6,6 +6,7 @@ import sys import distutils2 +from distutils2.run import main from distutils2.tests import captured_stdout from distutils2.tests import unittest, support @@ -54,6 +55,7 @@ open(path, "w").write(text) return path + def test_suite(): return unittest.makeSuite(CoreTestCase) diff --git a/distutils2/tests/test_uninstall.py b/distutils2/tests/test_uninstall.py --- a/distutils2/tests/test_uninstall.py +++ b/distutils2/tests/test_uninstall.py @@ -33,14 +33,9 @@ def run_setup(self, *args): # run setup with args - #sys.stdout = StringIO() - sys.argv[:] = [''] + list(args) - old_sys = sys.argv[:] - try: - from distutils2.run import commands_main - dist = commands_main() - finally: - sys.argv[:] = old_sys + args = ['', 'run'] + list(args) + from distutils2.run import main + dist = main(args) return dist def get_path(self, dist, name): diff --git a/setup.cfg b/setup.cfg --- a/setup.cfg +++ b/setup.cfg @@ -4,3 +4,9 @@ [upload_docs] upload-dir = docs/build/html + +[metadata] +name = Distutils2 +version = 1.0a3 +home-page = http://xxx +author = Ok -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 20:56:01 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 20:56:01 +0100 Subject: [Python-checkins] distutils2: fix pysetup tests Message-ID: http://hg.python.org/distutils2/rev/6c3d67ed3adb changeset: 1117:6c3d67ed3adb user: Tarek Ziade date: Sun Mar 13 15:52:26 2011 -0400 summary: fix pysetup tests files: distutils2/command/build_py.py distutils2/tests/test_config.py distutils2/tests/test_uninstall.py diff --git a/distutils2/command/build_py.py b/distutils2/command/build_py.py --- a/distutils2/command/build_py.py +++ b/distutils2/command/build_py.py @@ -229,7 +229,10 @@ self.check_package(package, package_dir) module_files = glob(os.path.join(package_dir, "*.py")) modules = [] - setup_script = os.path.abspath(self.distribution.script_name) + if self.distribution.script_name is not None: + setup_script = os.path.abspath(self.distribution.script_name) + else: + setup_script = None for f in module_files: abs_f = os.path.abspath(f) diff --git a/distutils2/tests/test_config.py b/distutils2/tests/test_config.py --- a/distutils2/tests/test_config.py +++ b/distutils2/tests/test_config.py @@ -3,6 +3,8 @@ import os import sys from StringIO import StringIO +import tempfile +import shutil from distutils2.tests import unittest, support, run_unittest from distutils2.command.sdist import sdist @@ -162,7 +164,7 @@ super(ConfigTestCase, self).setUp() self.addCleanup(setattr, sys, 'stdout', sys.stdout) self.addCleanup(setattr, sys, 'stderr', sys.stderr) - sys.stdout = sys.stderr = StringIO() + #sys.stdout = sys.stderr = StringIO() self.addCleanup(os.chdir, os.getcwd()) tempdir = self.mkdtemp() @@ -180,11 +182,17 @@ def run_setup(self, *args): # run setup with args - args = ['', 'run'] + list(args) + args = ['run'] + list(args) from distutils2.run import main dist = main(args) return dist + def _get_metadata(self, name='version'): + from distutils2.dist import Distribution + dist = Distribution() + dist.parse_config_files() + return dist, dist.metadata[name] + def test_config(self): self.write_setup() self.write_file('README', 'yeah') @@ -196,10 +204,10 @@ self.write_file('init_script', '') # try to load the metadata now - dist = self.run_setup('--version') + dist, version = self._get_metadata() # sanity check - self.assertEqual(sys.stdout.getvalue(), '0.6.4.dev1' + os.linesep) + self.assertEqual(version, '0.6.4.dev1') # check what was done self.assertEqual(dist.metadata['Author'], 'Carl Meyer') @@ -271,21 +279,20 @@ self.write_setup({'description-file': 'README CHANGES'}) self.write_file('README', 'yeah') self.write_file('CHANGES', 'changelog2') - dist = self.run_setup('--version') + dist, version = self._get_metadata() self.assertEqual(dist.metadata.requires_files, ['README', 'CHANGES']) def test_multiline_description_file(self): self.write_setup({'description-file': 'README\n CHANGES'}) self.write_file('README', 'yeah') self.write_file('CHANGES', 'changelog') - dist = self.run_setup('--version') - self.assertEqual(dist.metadata['description'], 'yeah\nchangelog') + dist, desc = self._get_metadata('description') + self.assertEqual(desc, 'yeah\nchangelog') self.assertEqual(dist.metadata.requires_files, ['README', 'CHANGES']) def test_parse_extensions_in_config(self): self.write_file('setup.cfg', EXT_SETUP_CFG) - dist = self.run_setup('--version') - + dist, version = self._get_metadata() ext_modules = dict((mod.name, mod) for mod in dist.ext_modules) self.assertEqual(len(ext_modules), 2) ext = ext_modules.get('one.speed_coconuts') @@ -329,7 +336,7 @@ os.mkdir(pkg) self.write_file(os.path.join(pkg, '__init__.py'), '#') - dist = self.run_setup('--version') + dist, version = self._get_metadata() cmd = sdist(dist) cmd.finalize_options() cmd.get_file_list() @@ -353,8 +360,8 @@ os.mkdir(pkg) self.write_file(os.path.join(pkg, '__init__.py'), '#') - dist = self.run_setup('--description') - self.assertIn('yeah\nyeah\n', sys.stdout.getvalue()) + dist, desc = self._get_metadata('description') + self.assertIn('yeah\nyeah', desc) cmd = sdist(dist) cmd.finalize_options() @@ -363,7 +370,8 @@ self.write_setup({'description-file': 'README\n README2', 'extra-files': '\n README2\n README'}) - dist = self.run_setup('--description') + dist, desc = self._get_metadata('description') + cmd = sdist(dist) cmd.finalize_options() cmd.get_file_list() @@ -387,7 +395,11 @@ self.write_file(os.path.join(pkg, '__init__.py'), '#') # try to run the install command to see if foo is called - dist = self.run_setup('install_dist') + tmpdir = tempfile.mkdtemp() + try: + dist = self.run_setup('install_dist', '--root=%s' % tmpdir) + finally: + shutil.rmtree(tmpdir) self.assertEqual(dist.foo_was_here, 1) diff --git a/distutils2/tests/test_uninstall.py b/distutils2/tests/test_uninstall.py --- a/distutils2/tests/test_uninstall.py +++ b/distutils2/tests/test_uninstall.py @@ -33,7 +33,7 @@ def run_setup(self, *args): # run setup with args - args = ['', 'run'] + list(args) + args = ['run'] + list(args) from distutils2.run import main dist = main(args) return dist -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 20:56:01 2011 From: python-checkins at python.org (tarek.ziade) Date: Sun, 13 Mar 2011 20:56:01 +0100 Subject: [Python-checkins] distutils2 (merge default -> default): merge Message-ID: http://hg.python.org/distutils2/rev/ba136beee019 changeset: 1116:ba136beee019 parent: 1115:6cf51c545e01 parent: 1112:22da53c1cf98 user: Tarek Ziade date: Sun Mar 13 15:13:28 2011 -0400 summary: merge files: diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -21,6 +21,7 @@ - Andrew Francis - Yannick Gingras - Alexandre Hamelin +- Kelsey Hightower - Christian Hudon - Jeremy Kloth - Amos Latteier diff --git a/distutils2/_backport/tests/test_pkgutil.py b/distutils2/_backport/tests/test_pkgutil.py --- a/distutils2/_backport/tests/test_pkgutil.py +++ b/distutils2/_backport/tests/test_pkgutil.py @@ -15,7 +15,7 @@ from distutils2.errors import DistutilsError from distutils2.metadata import Metadata -from distutils2.tests import unittest, run_unittest, support +from distutils2.tests import unittest, run_unittest, support, TESTFN from distutils2._backport import pkgutil from distutils2._backport.pkgutil import ( diff --git a/distutils2/_backport/tests/test_sysconfig.py b/distutils2/_backport/tests/test_sysconfig.py --- a/distutils2/_backport/tests/test_sysconfig.py +++ b/distutils2/_backport/tests/test_sysconfig.py @@ -14,10 +14,15 @@ get_config_var, get_config_vars, get_path, get_paths, get_platform, get_scheme_names, _main, _SCHEMES) -from distutils2.tests import unittest -from distutils2.tests.support import EnvironGuard, skip_unless_symlink +from distutils2.tests import unittest, TESTFN, unlink +from distutils2.tests.support import EnvironGuard from test.test_support import TESTFN, unlink +try: + from test.test_support import skip_unless_symlink +except ImportError: + skip_unless_symlink = unittest.skip( + 'requires test.test_support.skip_unless_symlink') class TestSysConfig(EnvironGuard, unittest.TestCase): diff --git a/distutils2/compiler/unixccompiler.py b/distutils2/compiler/unixccompiler.py --- a/distutils2/compiler/unixccompiler.py +++ b/distutils2/compiler/unixccompiler.py @@ -15,7 +15,6 @@ import os, sys -from types import StringType, NoneType from distutils2.util import newer from distutils2.compiler.ccompiler import CCompiler @@ -217,7 +216,7 @@ lib_opts = gen_lib_options(self, library_dirs, runtime_library_dirs, libraries) - if type(output_dir) not in (StringType, NoneType): + if not isinstance(output_dir, (str, type(None))): raise TypeError, "'output_dir' must be a string or None" if output_dir is not None: output_filename = os.path.join(output_dir, output_filename) diff --git a/distutils2/depgraph.py b/distutils2/depgraph.py --- a/distutils2/depgraph.py +++ b/distutils2/depgraph.py @@ -78,7 +78,7 @@ if label is not None: dist = '%s [%s]' % (dist, label) output.append(' ' * level + '%s' % dist) - suboutput = self.repr_node(other, level+1) + suboutput = self.repr_node(other, level + 1) subs = suboutput.split('\n') output.extend(subs[1:]) return '\n'.join(output) @@ -133,16 +133,16 @@ :rtype: an :class:`DependencyGraph` instance """ graph = DependencyGraph() - provided = {} # maps names to lists of (version, dist) tuples - dists = list(dists) # maybe use generator_tools in future + provided = {} # maps names to lists of (version, dist) tuples + dists = list(dists) # maybe use generator_tools in future # first, build the graph and find out the provides for dist in dists: graph.add_distribution(dist) - provides = (dist.metadata['Provides-Dist'] + dist.metadata['Provides'] + + provides = (dist.metadata['Provides-Dist'] + + dist.metadata['Provides'] + ['%s (%s)' % (dist.name, dist.metadata['Version'])]) - for p in provides: comps = p.strip().rsplit(" ", 1) name = comps[0] @@ -152,7 +152,7 @@ if len(version) < 3 or version[0] != '(' or version[-1] != ')': raise DistutilsError('Distribution %s has ill formed' \ 'provides field: %s' % (dist.name, p)) - version = version[1:-1] # trim off parenthesis + version = version[1:-1] # trim off parenthesis if not name in provided: provided[name] = [] provided[name].append((version, dist)) @@ -179,7 +179,7 @@ match = predicate.match(version) except IrrationalVersionError: # XXX small compat-mode - if version.split(' ' ) == 1: + if version.split(' ') == 1: match = True else: match = False @@ -204,8 +204,8 @@ raise ValueError('The given distribution is not a member of the list') graph = generate_graph(dists) - dep = [dist] # dependent distributions - fringe = graph.reverse_list[dist] # list of nodes we should inspect + dep = [dist] # dependent distributions + fringe = graph.reverse_list[dist] # list of nodes we should inspect while not len(fringe) == 0: node = fringe.pop() @@ -214,9 +214,10 @@ if not prev in dep: fringe.append(prev) - dep.pop(0) # remove dist from dep, was there to prevent infinite loops + dep.pop(0) # remove dist from dep, was there to prevent infinite loops return dep + def main(): from distutils2._backport.pkgutil import get_distributions tempout = StringIO() diff --git a/distutils2/fancy_getopt.py b/distutils2/fancy_getopt.py --- a/distutils2/fancy_getopt.py +++ b/distutils2/fancy_getopt.py @@ -13,6 +13,7 @@ import string import re import getopt +import textwrap from distutils2.errors import DistutilsGetoptError, DistutilsArgError # Much like command_re in distutils.core, this is close to but not quite @@ -334,7 +335,7 @@ for option in self.option_table: long, short, help = option[:3] - text = wrap_text(help, text_width) + text = textwrap.wrap(help, text_width) if long[-1] == '=': long = long[0:-1] @@ -373,7 +374,12 @@ return parser.getopt(args, object) -WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace)) +if 'maketrans' in str.__dict__ : + # Python 3.2+ + WS_TRANS = str.maketrans(string.whitespace, ' ' * len(string.whitespace)) +else : + # Depreciated syntax + WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace)) def wrap_text(text, width): diff --git a/distutils2/resources.py b/distutils2/resources.py --- a/distutils2/resources.py +++ b/distutils2/resources.py @@ -1,12 +1,15 @@ import os + from distutils2.util import iglob + def _rel_path(base, path): assert path.startswith(base) return path[len(base):].lstrip('/') + def resources_dests(resources_root, rules): - """find destination of ressources files""" + """find destination of resources files""" destinations = {} for (base, suffix, dest) in rules: prefix = os.path.join(resources_root, base) @@ -14,7 +17,7 @@ abs_glob = os.path.join(abs_base, suffix) for abs_path in iglob(abs_glob): resource_file = _rel_path(resources_root, abs_path) - if dest is None: #remove the entry if it was here + if dest is None: # remove the entry if it was here destinations.pop(resource_file, None) else: rel_path = _rel_path(abs_base, abs_path) diff --git a/distutils2/tests/__init__.py b/distutils2/tests/__init__.py --- a/distutils2/tests/__init__.py +++ b/distutils2/tests/__init__.py @@ -30,8 +30,11 @@ except ImportError: sys.exit('Error: You have to install unittest2') - -from test.test_support import TESTFN # use TESTFN from stdlib/test_support. +# use TESTFN from stdlib, pull in unlink for other modules to use as well +if sys.version_info[0] == 3: + from test.support import TESTFN, unlink +else : + from test.test_support import TESTFN, unlink here = os.path.dirname(__file__) or os.curdir diff --git a/distutils2/tests/pypi_server.py b/distutils2/tests/pypi_server.py --- a/distutils2/tests/pypi_server.py +++ b/distutils2/tests/pypi_server.py @@ -29,16 +29,23 @@ implementations (static HTTP and XMLRPC over HTTP). """ -import Queue -import SocketServer import os.path import select import socket import threading -from BaseHTTPServer import HTTPServer -from SimpleHTTPServer import SimpleHTTPRequestHandler -from SimpleXMLRPCServer import SimpleXMLRPCServer +# several packages had different names in Python 2.x +try: + import queue + import socketserver + from http.server import HTTPServer, SimpleHTTPRequestHandler + from xmlrpc.server import SimpleXMLRPCServer +except ImportError: + import Queue as queue + import SocketServer as socketserver + from BaseHTTPServer import HTTPServer + from SimpleHTTPServer import SimpleHTTPRequestHandler + from SimpleXMLRPCServer import SimpleXMLRPCServer from distutils2.tests import unittest @@ -109,7 +116,7 @@ self.server = HTTPServer(('127.0.0.1', 0), PyPIRequestHandler) self.server.RequestHandlerClass.pypi_server = self - self.request_queue = Queue.Queue() + self.request_queue = queue.Queue() self._requests = [] self.default_response_status = 200 self.default_response_headers = [('Content-type', 'text/plain')] @@ -157,7 +164,7 @@ while True: try: self._requests.append(self.request_queue.get_nowait()) - except Queue.Empty: + except queue.Empty: break return self._requests @@ -252,7 +259,7 @@ class PyPIXMLRPCServer(SimpleXMLRPCServer): def server_bind(self): """Override server_bind to store the server name.""" - SocketServer.TCPServer.server_bind(self) + socketserver.TCPServer.server_bind(self) host, port = self.socket.getsockname()[:2] self.server_name = socket.getfqdn(host) self.server_port = port diff --git a/distutils2/util.py b/distutils2/util.py --- a/distutils2/util.py +++ b/distutils2/util.py @@ -15,7 +15,7 @@ try: from glob import iglob as std_iglob except ImportError: - from glob import glob as std_iglob # for python < 2.5 + from glob import glob as std_iglob # for python < 2.5 from ConfigParser import RawConfigParser from inspect import getsource @@ -953,6 +953,7 @@ _CHECK_RECURSIVE_GLOB = re.compile(r'[^/,{]\*\*|\*\*[^/,}]') _CHECK_MISMATCH_SET = re.compile(r'^[^{]*\}|\{[^}]*$') + def iglob(path_glob): """Richer glob than the std glob module support ** and {opt1,opt2,opt3}""" if _CHECK_RECURSIVE_GLOB.search(path_glob): @@ -971,7 +972,7 @@ assert len(rich_path_glob) == 3, rich_path_glob prefix, set, suffix = rich_path_glob for item in set.split(','): - for path in _iglob( ''.join((prefix, item, suffix))): + for path in _iglob(''.join((prefix, item, suffix))): yield path else: if '**' not in path_glob: @@ -988,7 +989,7 @@ for (path, dir, files) in os.walk(prefix): path = os.path.normpath(path) for file in _iglob(os.path.join(path, radical)): - yield file + yield file def cfg_to_args(path='setup.cfg'): diff --git a/docs/source/contributing.rst b/docs/source/contributing.rst --- a/docs/source/contributing.rst +++ b/docs/source/contributing.rst @@ -6,47 +6,22 @@ Reporting Issues ---------------- -When using, testing, developping distutils2, you may encounter issues. Please report to the following sections to know how these issues should be reported. +When using, testing or developping distutils2, you may encounter issues. Please report to the following sections to know how these issues should be reported. -Please keep in mind that this guide is intended to ease the triage and fixing processes by giving the maximum information to the developers. It should not be viewed as mandatory, only advised ;). +Please keep in mind that this guide is intended to ease the triage and fixing processes by giving the maximum information to the developers. It should not be viewed as mandatory, only advisory ;). -Issues regarding distutils2 commands -==================================== - Go to http://bugs.python.org/ (you'll need a Python Bugs account), then "Issues" > "Create ticket". -- **Title**: write in a short summary of the issue. - * You may prefix the issue title with [d2_component], where d2_component can be : installer, sdist, setup.cfg, ... This will ease up the triage process. - +- **Title**: write in a short summary of the issue. You may prefix the issue title with ?component:?, where component can be something like installer, sdist, setup.cfg, etc., or add it at the end of your title if the normal flow of the sentence allows it. This will ease up later searches. - **Components**: choose "Distutils2" - **Version**: choose "3rd party" -- **Comment**: use the following template for versions, reproduction conditions: - * If some of the fields presented don't apply to the issue, feel free to pick only the ones you need. +- **Body**: explain how to reproduce the bug: What you want to do, what code you write, what happens, what should happen, how to fix it (if you have an idea). + * You should always test with the tip of the main repository, not releases. + * Mention the versions of Python you tested with. d2 supports 2.4 to 2.7. + * If relevant, mention the version of your operating system (for example with issues related to C extensions). + * When referencing commits, be careful to use the universal changeset identifiers (12 characters, for instance c3cf81fc64db), not the local sequential numbers (for example 925) that are not shared among clones. + * Try to be as concise as possible, but not too much. + * If useful, paste tracebacks. + * If useful, attach setup.cfg or other files (binary files like archives are not very convenient, better to stick to text). -:: - - Operating System: - Version of Python: - Version of Distutils2: - - How to reproduce: - - What happens: - - What should happen: - -- Filling in the fields: - * **How to reproduce**: indicate some test case to reproduce the issue. - * **What happens**: describe what is the error, paste tracebacks if you have any. - * **What should happen**: indicate what you think should be the result of the test case (wanted behaviour). - * **Versions**: - - If you're using a release of distutils2, you may want to test the latest version of the project (under developpment code). - - If the issue is present in the latest version, please indicate the tip commit of the version tested. - - Be careful to indicate the remote reference (12 characters, for instance c3cf81fc64db), not the local reference (rXXX). - -- If it is relevant, please join any file that will help reproducing the issue or logs to understand the problem (setup.cfg, strace ouptups, ...). - -Issues regarding PyPI display of the distutils2 projects -======================================================== - -- Please send a bug report to the catalog-sig at python.org mailing list. -- You can include your setup.cfg, and a link to your project page. +Issues related to PyPI are reported via email to the **catalog-sig at python.org** mailing list, not within bugs.python.org. diff --git a/runtests.py b/runtests.py --- a/runtests.py +++ b/runtests.py @@ -64,7 +64,7 @@ # running coverage 2.x cov.cache = COVERAGE_FILE cov.restore() - morfs = [m for m in cov.cexecuted if "distutils2" in m] + morfs = [m for m in list(cov.cexecuted.keys()) if "distutils2" in m] prefixes = ["runtests", "distutils2/tests", "distutils2/_backport"] prefixes += ignore_prefixes(unittest) diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -5,16 +5,24 @@ import re from distutils2 import __version__ as VERSION -from distutils2.util import find_packages from distutils import log from distutils.ccompiler import new_compiler from distutils.command.sdist import sdist from distutils.command.install import install +# Python 3.x hook to run 2to3 automatically try: - from setuptools import setup, Extension + from distutils.command.build_py import build_py_2to3 as build_py + from distutils.core import setup, Extension except ImportError: - from distutils.core import setup, Extension + # 2.x, try to use setuptools if available + try : + from setuptools.command.build_py import build_py + from setuptools import setup, Extension + except ImportError: + from distutils.command.build_py import build_py + from distutils.core import setup, Extension + f = open('README.txt') try: @@ -30,7 +38,7 @@ except OSError: return 0 rev = cmd.stdout.read() - if rev == '': + if not rev : # there has been an error in the command return 0 return int(rev) @@ -222,7 +230,20 @@ license="PSF", long_description=README, classifiers=_CLASSIFIERS.split('\n'), - packages=find_packages(), - cmdclass={'sdist_hg': sdist_hg, 'install_hg': install_hg}, + packages=[ + 'distutils2', + 'distutils2.tests', + 'distutils2.compiler', + 'distutils2.command', + 'distutils2._backport', + 'distutils2.index', + 'distutils2.tests.fixer', + 'distutils2._backport.tests', + ], + cmdclass={ + 'build_py':build_py, + 'install_hg': install_hg, + 'sdist_hg': sdist_hg, + }, package_data={'distutils2._backport': ['sysconfig.cfg']}, **setup_kwargs) diff --git a/tests.sh b/tests.sh --- a/tests.sh +++ b/tests.sh @@ -37,4 +37,46 @@ else echo Success fi + +LIB=$( python3.1 -c "from distutils.util import get_platform; import sys; print('lib.%s-%s' % (get_platform(), sys.version[0:3]))" ) + + +echo -n "Running tests for Python 3.1... " +python3.1 setup.py build -q 2> /dev/null > /dev/null +cp runtests.py build/ +cd build +PYTHONPATH=${LIB} python3.1 runtests.py -q 2> /dev/null + +if [ $? -ne 0 ];then + echo Failed + exit 1 +else + echo Success +fi + +echo -n "Running tests for Python 3.2... " +python3.2 setup.py build -q 2> /dev/null > /dev/null +cp runtests.py build/ +cd build +PYTHONPATH=${LIB} python3.2 runtests.py -q 2> /dev/null + +if [ $? -ne 0 ];then + echo Failed + exit 1 +else + echo Success +fi + +echo -n "Running tests for Python 3.3... " +python3.2 setup.py build -q 2> /dev/null > /dev/null +cp runtests.py build/ +cd build +PYTHONPATH=${LIB} python3.3 runtests.py -q 2> /dev/null + +if [ $? -ne 0 ];then + echo Failed + exit 1 +else + echo Success +fi echo "Good job, commit now! (or add tests)" -- Repository URL: http://hg.python.org/distutils2 From python-checkins at python.org Sun Mar 13 21:56:11 2011 From: python-checkins at python.org (ezio.melotti) Date: Sun, 13 Mar 2011 21:56:11 +0100 Subject: [Python-checkins] cpython (2.7): #11484: remove paragraph about with_traceback from 2.7 doc. Message-ID: http://hg.python.org/cpython/rev/22f991bb9b0b changeset: 68427:22f991bb9b0b branch: 2.7 user: Ezio Melotti date: Sun Mar 13 22:55:41 2011 +0200 summary: #11484: remove paragraph about with_traceback from 2.7 doc. files: Doc/library/exceptions.rst diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -63,18 +63,6 @@ assign a special meaning to the elements of this tuple, while others are usually called only with a single string giving an error message. - .. method:: with_traceback(tb) - - This method sets *tb* as the new traceback for the exception and returns - the exception object. It is usually used in exception handling code like - this:: - - try: - ... - except SomeException: - tb = sys.exc_info()[2] - raise OtherException(...).with_traceback(tb) - .. exception:: Exception -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 22:34:38 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 13 Mar 2011 22:34:38 +0100 Subject: [Python-checkins] cpython: use only the hex version, since the revno is unreliable across repos Message-ID: http://hg.python.org/cpython/rev/5f23a6557e36 changeset: 68428:5f23a6557e36 parent: 68425:955547e57cff user: Benjamin Peterson date: Sun Mar 13 16:36:08 2011 -0500 summary: use only the hex version, since the revno is unreliable across repos files: Parser/asdl_c.py Python/Python-ast.c diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py --- a/Parser/asdl_c.py +++ b/Parser/asdl_c.py @@ -1138,7 +1138,7 @@ def get_file_revision(f): """Fish out the last change to a file in hg.""" - args = ["hg", "log", "--template", "{rev}:{node|short}", "--limit", "1", f] + args = ["hg", "log", "--template", "{node|short}", "--limit", "1", f] p = subprocess.Popen(args, stdout=subprocess.PIPE) out = p.communicate()[0] if p.returncode: diff --git a/Python/Python-ast.c b/Python/Python-ast.c --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -2,7 +2,7 @@ /* - __version__ 68410:0daa6ba25d9b. + __version__ 0daa6ba25d9b. This module must be committed separately after each AST grammar change; The __version__ number is set to the revision number of the commit @@ -6739,8 +6739,7 @@ NULL; if (PyModule_AddIntConstant(m, "PyCF_ONLY_AST", PyCF_ONLY_AST) < 0) return NULL; - if (PyModule_AddStringConstant(m, "__version__", "68410:0daa6ba25d9b") - < 0) + if (PyModule_AddStringConstant(m, "__version__", "0daa6ba25d9b") < 0) return NULL; if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return NULL; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 23:29:32 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 13 Mar 2011 23:29:32 +0100 Subject: [Python-checkins] cpython (3.2): Issue #11329: PyEval_InitThreads() cannot be called before Py_Initialize() Message-ID: http://hg.python.org/cpython/rev/4c59cd84086f changeset: 68429:4c59cd84086f branch: 3.2 parent: 68424:eb8c2f43b251 user: Antoine Pitrou date: Sun Mar 13 23:28:28 2011 +0100 summary: Issue #11329: PyEval_InitThreads() cannot be called before Py_Initialize() anymore files: Doc/ACKS.txt Doc/c-api/init.rst diff --git a/Doc/ACKS.txt b/Doc/ACKS.txt --- a/Doc/ACKS.txt +++ b/Doc/ACKS.txt @@ -120,6 +120,7 @@ * Robert Lehmann * Marc-Andr? Lemburg * Ross Light + * Gediminas Liktaras * Ulf A. Lindgren * Everett Lipman * Mirko Liss diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -29,8 +29,7 @@ Initialize the Python interpreter. In an application embedding Python, this should be called before using any other Python/C API functions; with the - exception of :c:func:`Py_SetProgramName`, :c:func:`Py_SetPath`, - and :c:func:`PyEval_InitThreads`. This initializes + exception of :c:func:`Py_SetProgramName` and :c:func:`Py_SetPath`. This initializes the table of loaded modules (``sys.modules``), and creates the fundamental modules :mod:`builtins`, :mod:`__main__` and :mod:`sys`. It also initializes the module search path (``sys.path``). It does not set ``sys.argv``; use @@ -540,8 +539,7 @@ .. index:: single: Py_Initialize() - This is a no-op when called for a second time. It is safe to call this function - before calling :c:func:`Py_Initialize`. + This is a no-op when called for a second time. .. index:: module: _thread -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 13 23:29:33 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 13 Mar 2011 23:29:33 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #11329: PyEval_InitThreads() cannot be called before Py_Initialize() Message-ID: http://hg.python.org/cpython/rev/3c0edb157ea2 changeset: 68430:3c0edb157ea2 parent: 68428:5f23a6557e36 parent: 68429:4c59cd84086f user: Antoine Pitrou date: Sun Mar 13 23:29:10 2011 +0100 summary: Issue #11329: PyEval_InitThreads() cannot be called before Py_Initialize() anymore files: diff --git a/Doc/ACKS.txt b/Doc/ACKS.txt --- a/Doc/ACKS.txt +++ b/Doc/ACKS.txt @@ -120,6 +120,7 @@ * Robert Lehmann * Marc-Andr? Lemburg * Ross Light + * Gediminas Liktaras * Ulf A. Lindgren * Everett Lipman * Mirko Liss diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -29,8 +29,7 @@ Initialize the Python interpreter. In an application embedding Python, this should be called before using any other Python/C API functions; with the - exception of :c:func:`Py_SetProgramName`, :c:func:`Py_SetPath`, - and :c:func:`PyEval_InitThreads`. This initializes + exception of :c:func:`Py_SetProgramName` and :c:func:`Py_SetPath`. This initializes the table of loaded modules (``sys.modules``), and creates the fundamental modules :mod:`builtins`, :mod:`__main__` and :mod:`sys`. It also initializes the module search path (``sys.path``). It does not set ``sys.argv``; use @@ -540,8 +539,7 @@ .. index:: single: Py_Initialize() - This is a no-op when called for a second time. It is safe to call this function - before calling :c:func:`Py_Initialize`. + This is a no-op when called for a second time. .. index:: module: _thread -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 14 00:39:50 2011 From: python-checkins at python.org (ezio.melotti) Date: Mon, 14 Mar 2011 00:39:50 +0100 (CET) Subject: [Python-checkins] r88776 - tracker/instances/python-dev/html/issue.item.html Message-ID: <20110313233950.E75F6EEA17@mail.python.org> Author: ezio.melotti Date: Mon Mar 14 00:39:50 2011 New Revision: 88776 Log: Align the new field for remote repos with the other fields. Modified: tracker/instances/python-dev/html/issue.item.html Modified: tracker/instances/python-dev/html/issue.item.html ============================================================================== --- tracker/instances/python-dev/html/issue.item.html (original) +++ tracker/instances/python-dev/html/issue.item.html Mon Mar 14 00:39:50 2011 @@ -188,22 +188,22 @@
    File: + - +
    File Description:
    Mercurial Repo containing patches: + Remote hg repo: - +
    Author: () * + + + Date:
    Is Committer +
    E-mail address http://hg.python.org/cpython/rev/912eb87946e0 changeset: 68563:912eb87946e0 branch: 3.2 parent: 68561:4d25b9d2aa05 user: Raymond Hettinger date: Tue Mar 15 14:50:16 2011 -0700 summary: Issue 11510: Fix BUILD_SET optimizer bug. files: Lib/test/test_peepholer.py Misc/NEWS Python/peephole.c diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py --- a/Lib/test/test_peepholer.py +++ b/Lib/test/test_peepholer.py @@ -267,11 +267,23 @@ asm = disassemble(f) self.assertNotIn('BINARY_ADD', asm) +class TestBuglets(unittest.TestCase): + + def test_bug_11510(self): + # folded constant set optimization was commingled with the tuple + # unpacking optimization which would fail if the set had duplicate + # elements so that the set length was unexpected + def f(): + x, y = {1, 1} + return x, y + with self.assertRaises(ValueError): + f() + def test_main(verbose=None): import sys from test import support - test_classes = (TestTranforms,) + test_classes = (TestTranforms, TestBuglets) support.run_unittest(*test_classes) # verify reference counting diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,8 @@ Core and Builtins ----------------- +- Issue #11510: Fixed optimizer bug which turned "a,b={1,1}" into "a,b=(1,1)". + - Issue #11432: A bug was introduced in subprocess.Popen on posix systems with 3.2.0 where the stdout or stderr file descriptor being the same as the stdin file descriptor would raise an exception. webbrowser.open would fail. fixed. diff --git a/Python/peephole.c b/Python/peephole.c --- a/Python/peephole.c +++ b/Python/peephole.c @@ -475,7 +475,8 @@ } if (codestr[i+3] != UNPACK_SEQUENCE || !ISBASICBLOCK(blocks,i,6) || - j != GETARG(codestr, i+3)) + j != GETARG(codestr, i+3) || + opcode == BUILD_SET) continue; if (j == 1) { memset(codestr+i, NOP, 6); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 23:01:38 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 15 Mar 2011 23:01:38 +0100 Subject: [Python-checkins] cpython (2.7): Merge #11216: document all possible set_charset execution paths. Message-ID: http://hg.python.org/cpython/rev/43ccd051ec6c changeset: 68564:43ccd051ec6c branch: 2.7 parent: 68537:2baaabf6bb05 user: R David Murray date: Tue Mar 15 18:01:04 2011 -0400 summary: Merge #11216: document all possible set_charset execution paths. files: Doc/library/email.message.rst diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -133,8 +133,22 @@ string naming a character set, or ``None``. If it is a string, it will be converted to a :class:`~email.charset.Charset` instance. If *charset* is ``None``, the ``charset`` parameter will be removed from the - :mailheader:`Content-Type` header. Anything else will generate a - :exc:`TypeError`. + :mailheader:`Content-Type` header (the message will not be otherwise + modified). Anything else will generate a :exc:`TypeError`. + + If there is no existing :mailheader:`MIME-Version` header one will be + added. If there is no existing :mailheader:`Content-Type` header, one + will be added with a value of :mimetype:`text/plain`. Whether the + :mailheader:`Content-Type` header already exists or not, its ``charset`` + parameter will be set to *charset.output_charset*. If + *charset.input_charset* and *charset.output_charset* differ, the payload + will be re-encoded to the *output_charset*. If there is no existing + :mailheader:`Content-Transfer-Encoding` header, then the payload will be + transfer-encoded, if needed, using the specified + :class:`~email.charset.Charset`, and a header with the appropriate value + will be added. If a :mailheader:`Content-Transfer-Encoding` header + already exists, the payload is assumed to already be correctly encoded + using that :mailheader:`Content-Transfer-Encoding` and is not modified. The message will be assumed to be of type :mimetype:`text/\*`, with the payload either in unicode or encoded with *charset.input_charset*. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 23:07:56 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 15 Mar 2011 23:07:56 +0100 Subject: [Python-checkins] cpython: Issue 11510: Fix BUILD_SET optimizer bug. Message-ID: http://hg.python.org/cpython/rev/db6997fb4c99 changeset: 68565:db6997fb4c99 parent: 68562:2dd70fd26f24 user: Raymond Hettinger date: Tue Mar 15 15:03:36 2011 -0700 summary: Issue 11510: Fix BUILD_SET optimizer bug. files: Lib/test/test_peepholer.py Python/peephole.c diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py --- a/Lib/test/test_peepholer.py +++ b/Lib/test/test_peepholer.py @@ -294,11 +294,23 @@ self.assertNotIn('BINARY_', asm, e) self.assertNotIn('BUILD_', asm, e) +class TestBuglets(unittest.TestCase): + + def test_bug_11510(self): + # folded constant set optimization was commingled with the tuple + # unpacking optimization which would fail if the set had duplicate + # elements so that the set length was unexpected + def f(): + x, y = {1, 1} + return x, y + with self.assertRaises(ValueError): + f() + def test_main(verbose=None): import sys from test import support - test_classes = (TestTranforms,) + test_classes = (TestTranforms, TestBuglets) support.run_unittest(*test_classes) # verify reference counting diff --git a/Python/peephole.c b/Python/peephole.c --- a/Python/peephole.c +++ b/Python/peephole.c @@ -535,7 +535,8 @@ } if (codestr[i+3] != UNPACK_SEQUENCE || !ISBASICBLOCK(blocks,i,6) || - j != GETARG(codestr, i+3)) + j != GETARG(codestr, i+3) || + opcode == BUILD_SET) continue; if (j == 1) { memset(codestr+i, NOP, 6); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 23:07:57 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 15 Mar 2011 23:07:57 +0100 Subject: [Python-checkins] cpython: whitespace fix Message-ID: http://hg.python.org/cpython/rev/8974dfe987f6 changeset: 68566:8974dfe987f6 user: Raymond Hettinger date: Tue Mar 15 15:06:09 2011 -0700 summary: whitespace fix files: Lib/test/test_peepholer.py diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py --- a/Lib/test/test_peepholer.py +++ b/Lib/test/test_peepholer.py @@ -19,6 +19,7 @@ def dis_single(line): return disassemble(compile(line, '', 'single')) + class TestTranforms(unittest.TestCase): def test_unot(self): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 23:07:58 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 15 Mar 2011 23:07:58 +0100 Subject: [Python-checkins] cpython: whitespace fix Message-ID: http://hg.python.org/cpython/rev/6d884c1a4654 changeset: 68567:6d884c1a4654 user: Raymond Hettinger date: Tue Mar 15 15:07:38 2011 -0700 summary: whitespace fix files: Lib/test/test_peepholer.py diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py --- a/Lib/test/test_peepholer.py +++ b/Lib/test/test_peepholer.py @@ -297,15 +297,15 @@ class TestBuglets(unittest.TestCase): - def test_bug_11510(self): - # folded constant set optimization was commingled with the tuple - # unpacking optimization which would fail if the set had duplicate - # elements so that the set length was unexpected - def f(): - x, y = {1, 1} - return x, y - with self.assertRaises(ValueError): - f() + def test_bug_11510(self): + # folded constant set optimization was commingled with the tuple + # unpacking optimization which would fail if the set had duplicate + # elements so that the set length was unexpected + def f(): + x, y = {1, 1} + return x, y + with self.assertRaises(ValueError): + f() def test_main(verbose=None): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 23:19:03 2011 From: python-checkins at python.org (michael.foord) Date: Tue, 15 Mar 2011 23:19:03 +0100 Subject: [Python-checkins] cpython (3.2): Wing project file update for mercurial Message-ID: http://hg.python.org/cpython/rev/8526763a03eb changeset: 68568:8526763a03eb branch: 3.2 parent: 68563:912eb87946e0 user: Michael Foord date: Tue Mar 15 18:19:58 2011 -0400 summary: Wing project file update for mercurial files: .hgignore Misc/python-wing4.wpr diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -50,6 +50,7 @@ *~ Lib/lib2to3/*.pickle Lib/test/data/* +Misc/*.wpu PC/python_nt*.h PC/pythonnt_rc*.h PC/*.obj diff --git a/Misc/python-wing4.wpr b/Misc/python-wing4.wpr --- a/Misc/python-wing4.wpr +++ b/Misc/python-wing4.wpr @@ -5,11 +5,12 @@ ################################################################## [project attributes] proj.directory-list = [{'dirloc': loc('..'), - 'excludes': [u'Lib/unittest/test/__pycache__', + 'excludes': [u'.hg', + u'Lib/unittest/__pycache__', + u'Lib/unittest/test/__pycache__', u'Lib/__pycache__', - u'Doc/build', - u'Lib/unittest/__pycache__', - u'build'], + u'build', + u'Doc/build'], 'filter': '*', 'include_hidden': False, 'recursive': True, -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 23:38:01 2011 From: python-checkins at python.org (michael.foord) Date: Tue, 15 Mar 2011 23:38:01 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Changes to Wing IDE project file. Merge of peepholer changesets that were Message-ID: http://hg.python.org/cpython/rev/e592317811f2 changeset: 68569:e592317811f2 parent: 68562:2dd70fd26f24 parent: 68568:8526763a03eb user: Michael Foord date: Tue Mar 15 18:38:09 2011 -0400 summary: Changes to Wing IDE project file. Merge of peepholer changesets that were applied separately. files: Lib/test/test_peepholer.py Misc/NEWS Python/peephole.c diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -50,6 +50,7 @@ *~ Lib/lib2to3/*.pickle Lib/test/data/* +Misc/*.wpu PC/python_nt*.h PC/pythonnt_rc*.h PC/*.obj diff --git a/Misc/python-wing4.wpr b/Misc/python-wing4.wpr --- a/Misc/python-wing4.wpr +++ b/Misc/python-wing4.wpr @@ -5,11 +5,12 @@ ################################################################## [project attributes] proj.directory-list = [{'dirloc': loc('..'), - 'excludes': [u'Lib/unittest/test/__pycache__', + 'excludes': [u'.hg', + u'Lib/unittest/__pycache__', + u'Lib/unittest/test/__pycache__', u'Lib/__pycache__', - u'Doc/build', - u'Lib/unittest/__pycache__', - u'build'], + u'build', + u'Doc/build'], 'filter': '*', 'include_hidden': False, 'recursive': True, -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 23:38:02 2011 From: python-checkins at python.org (michael.foord) Date: Tue, 15 Mar 2011 23:38:02 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge Message-ID: http://hg.python.org/cpython/rev/ab45c4d0b6ef changeset: 68570:ab45c4d0b6ef parent: 68569:e592317811f2 parent: 68567:6d884c1a4654 user: Michael Foord date: Tue Mar 15 18:38:41 2011 -0400 summary: merge files: Lib/test/test_peepholer.py Python/peephole.c diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py --- a/Lib/test/test_peepholer.py +++ b/Lib/test/test_peepholer.py @@ -19,6 +19,7 @@ def dis_single(line): return disassemble(compile(line, '', 'single')) + class TestTranforms(unittest.TestCase): def test_unot(self): @@ -294,11 +295,23 @@ self.assertNotIn('BINARY_', asm, e) self.assertNotIn('BUILD_', asm, e) +class TestBuglets(unittest.TestCase): + + def test_bug_11510(self): + # folded constant set optimization was commingled with the tuple + # unpacking optimization which would fail if the set had duplicate + # elements so that the set length was unexpected + def f(): + x, y = {1, 1} + return x, y + with self.assertRaises(ValueError): + f() + def test_main(verbose=None): import sys from test import support - test_classes = (TestTranforms,) + test_classes = (TestTranforms, TestBuglets) support.run_unittest(*test_classes) # verify reference counting diff --git a/Python/peephole.c b/Python/peephole.c --- a/Python/peephole.c +++ b/Python/peephole.c @@ -535,7 +535,8 @@ } if (codestr[i+3] != UNPACK_SEQUENCE || !ISBASICBLOCK(blocks,i,6) || - j != GETARG(codestr, i+3)) + j != GETARG(codestr, i+3) || + opcode == BUILD_SET) continue; if (j == 1) { memset(codestr+i, NOP, 6); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 23:46:08 2011 From: python-checkins at python.org (brett.cannon) Date: Tue, 15 Mar 2011 23:46:08 +0100 Subject: [Python-checkins] cpython: Be more thorough in blanking out methods grabbed off of an fp. Message-ID: http://hg.python.org/cpython/rev/30062a3331be changeset: 68571:30062a3331be parent: 68559:9050675cb94e user: Brett Cannon date: Tue Mar 15 18:45:13 2011 -0400 summary: Be more thorough in blanking out methods grabbed off of an fp. files: Lib/urllib/response.py diff --git a/Lib/urllib/response.py b/Lib/urllib/response.py --- a/Lib/urllib/response.py +++ b/Lib/urllib/response.py @@ -33,12 +33,15 @@ id(self), self.fp) def close(self): + if self.fp: + self.fp.close() + self.fp = None self.read = None self.readline = None self.readlines = None self.fileno = None - if self.fp: self.fp.close() - self.fp = None + self.__iter__ = None + self.__next__ = None def __enter__(self): if self.fp is None: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 23:46:09 2011 From: python-checkins at python.org (brett.cannon) Date: Tue, 15 Mar 2011 23:46:09 +0100 Subject: [Python-checkins] cpython: merge Message-ID: http://hg.python.org/cpython/rev/63929bacb4b6 changeset: 68572:63929bacb4b6 user: Brett Cannon date: Tue Mar 15 18:45:38 2011 -0400 summary: merge files: Lib/test/test_urllibnet.py diff --git a/Lib/test/test_urllibnet.py b/Lib/test/test_urllibnet.py --- a/Lib/test/test_urllibnet.py +++ b/Lib/test/test_urllibnet.py @@ -46,7 +46,7 @@ with support.transient_internet(resource): return urllib.request.urlopen(*args, **kwargs) - def test_basic(self): + def _test_basic(self): # Simple test expected to pass. open_url = self.urlopen("http://www.python.org/") for attr in ("read", "readline", "readlines", "fileno", "close", @@ -58,7 +58,7 @@ finally: open_url.close() - def test_readlines(self): + def _test_readlines(self): # Test both readline and readlines. open_url = self.urlopen("http://www.python.org/") try: @@ -69,7 +69,7 @@ finally: open_url.close() - def test_info(self): + def _test_info(self): # Test 'info'. open_url = self.urlopen("http://www.python.org/") try: @@ -81,7 +81,7 @@ "instance of email.message.Message") self.assertEqual(info_obj.get_content_subtype(), "html") - def test_geturl(self): + def _test_geturl(self): # Make sure same URL as opened is returned by geturl. URL = "http://www.python.org/" open_url = self.urlopen(URL) @@ -94,14 +94,14 @@ def test_getcode(self): # test getcode() with the fancy opener to get 404 error codes URL = "http://www.python.org/XXXinvalidXXX" - open_url = urllib.request.FancyURLopener().open(URL) - try: - code = open_url.getcode() - finally: - open_url.close() - self.assertEqual(code, 404) + opener = urllib.request.FancyURLopener() + self.addCleanup(opener.close) + open_url = opener.open(URL) + self.addCleanup(open_url.close) + #code = open_url.getcode() + #self.assertEqual(code, 404) - def test_fileno(self): + def _test_fileno(self): if sys.platform in ('win32',): # On Windows, socket handles are not file descriptors; this # test can't pass on Windows. @@ -116,7 +116,7 @@ finally: FILE.close() - def test_bad_address(self): + def _test_bad_address(self): # Make sure proper exception is raised when connecting to a bogus # address. self.assertRaises(IOError, @@ -185,9 +185,11 @@ def test_main(): support.requires('network') - support.run_unittest(URLTimeoutTest, - urlopenNetworkTests, - urlretrieveNetworkTests) + support.run_unittest( + #URLTimeoutTest, + urlopenNetworkTests, + #urlretrieveNetworkTests + ) if __name__ == "__main__": test_main() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 23:46:10 2011 From: python-checkins at python.org (brett.cannon) Date: Tue, 15 Mar 2011 23:46:10 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge Message-ID: http://hg.python.org/cpython/rev/87d8ccc766d4 changeset: 68573:87d8ccc766d4 parent: 68572:63929bacb4b6 parent: 68570:ab45c4d0b6ef user: Brett Cannon date: Tue Mar 15 18:45:59 2011 -0400 summary: merge files: diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -50,6 +50,7 @@ *~ Lib/lib2to3/*.pickle Lib/test/data/* +Misc/*.wpu PC/python_nt*.h PC/pythonnt_rc*.h PC/*.obj diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -139,15 +139,22 @@ string naming a character set, or ``None``. If it is a string, it will be converted to a :class:`~email.charset.Charset` instance. If *charset* is ``None``, the ``charset`` parameter will be removed from the - :mailheader:`Content-Type` header. Anything else will generate a - :exc:`TypeError`. + :mailheader:`Content-Type` header (the message will not be otherwise + modified). Anything else will generate a :exc:`TypeError`. - The message will be assumed to be of type :mimetype:`text/\*` encoded with - *charset.input_charset*. It will be converted to *charset.output_charset* - and encoded properly, if needed, when generating the plain text - representation of the message. MIME headers (:mailheader:`MIME-Version`, - :mailheader:`Content-Type`, :mailheader:`Content-Transfer-Encoding`) will - be added as needed. + If there is no existing :mailheader:`MIME-Version` header one will be + added. If there is no existing :mailheader:`Content-Type` header, one + will be added with a value of :mimetype:`text/plain`. Whether the + :mailheader:`Content-Type` header already exists or not, its ``charset`` + parameter will be set to *charset.output_charset*. If + *charset.input_charset* and *charset.output_charset* differ, the payload + will be re-encoded to the *output_charset*. If there is no existing + :mailheader:`Content-Transfer-Encoding` header, then the payload will be + transfer-encoded, if needed, using the specified + :class:`~email.charset.Charset`, and a header with the appropriate value + will be added. If a :mailheader:`Content-Transfer-Encoding` header + already exists, the payload is assumed to already be correctly encoded + using that :mailheader:`Content-Transfer-Encoding` and is not modified. .. method:: get_charset() diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py --- a/Lib/test/test_peepholer.py +++ b/Lib/test/test_peepholer.py @@ -19,6 +19,7 @@ def dis_single(line): return disassemble(compile(line, '', 'single')) + class TestTranforms(unittest.TestCase): def test_unot(self): @@ -294,11 +295,23 @@ self.assertNotIn('BINARY_', asm, e) self.assertNotIn('BUILD_', asm, e) +class TestBuglets(unittest.TestCase): + + def test_bug_11510(self): + # folded constant set optimization was commingled with the tuple + # unpacking optimization which would fail if the set had duplicate + # elements so that the set length was unexpected + def f(): + x, y = {1, 1} + return x, y + with self.assertRaises(ValueError): + f() + def test_main(verbose=None): import sys from test import support - test_classes = (TestTranforms,) + test_classes = (TestTranforms, TestBuglets) support.run_unittest(*test_classes) # verify reference counting diff --git a/Misc/python-wing4.wpr b/Misc/python-wing4.wpr --- a/Misc/python-wing4.wpr +++ b/Misc/python-wing4.wpr @@ -5,11 +5,12 @@ ################################################################## [project attributes] proj.directory-list = [{'dirloc': loc('..'), - 'excludes': [u'Lib/unittest/test/__pycache__', + 'excludes': [u'.hg', + u'Lib/unittest/__pycache__', + u'Lib/unittest/test/__pycache__', u'Lib/__pycache__', - u'Doc/build', - u'Lib/unittest/__pycache__', - u'build'], + u'build', + u'Doc/build'], 'filter': '*', 'include_hidden': False, 'recursive': True, diff --git a/Python/peephole.c b/Python/peephole.c --- a/Python/peephole.c +++ b/Python/peephole.c @@ -535,7 +535,8 @@ } if (codestr[i+3] != UNPACK_SEQUENCE || !ISBASICBLOCK(blocks,i,6) || - j != GETARG(codestr, i+3)) + j != GETARG(codestr, i+3) || + opcode == BUILD_SET) continue; if (j == 1) { memset(codestr+i, NOP, 6); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 15 23:48:59 2011 From: python-checkins at python.org (brett.cannon) Date: Tue, 15 Mar 2011 23:48:59 +0100 Subject: [Python-checkins] cpython: Undo an accidental commit. Message-ID: http://hg.python.org/cpython/rev/0a3b00d2c31c changeset: 68574:0a3b00d2c31c user: Brett Cannon date: Tue Mar 15 18:48:52 2011 -0400 summary: Undo an accidental commit. files: Lib/test/test_urllibnet.py diff --git a/Lib/test/test_urllibnet.py b/Lib/test/test_urllibnet.py --- a/Lib/test/test_urllibnet.py +++ b/Lib/test/test_urllibnet.py @@ -46,7 +46,7 @@ with support.transient_internet(resource): return urllib.request.urlopen(*args, **kwargs) - def _test_basic(self): + def test_basic(self): # Simple test expected to pass. open_url = self.urlopen("http://www.python.org/") for attr in ("read", "readline", "readlines", "fileno", "close", @@ -58,7 +58,7 @@ finally: open_url.close() - def _test_readlines(self): + def test_readlines(self): # Test both readline and readlines. open_url = self.urlopen("http://www.python.org/") try: @@ -69,7 +69,7 @@ finally: open_url.close() - def _test_info(self): + def test_info(self): # Test 'info'. open_url = self.urlopen("http://www.python.org/") try: @@ -81,7 +81,7 @@ "instance of email.message.Message") self.assertEqual(info_obj.get_content_subtype(), "html") - def _test_geturl(self): + def test_geturl(self): # Make sure same URL as opened is returned by geturl. URL = "http://www.python.org/" open_url = self.urlopen(URL) @@ -94,14 +94,14 @@ def test_getcode(self): # test getcode() with the fancy opener to get 404 error codes URL = "http://www.python.org/XXXinvalidXXX" - opener = urllib.request.FancyURLopener() - self.addCleanup(opener.close) - open_url = opener.open(URL) - self.addCleanup(open_url.close) - #code = open_url.getcode() - #self.assertEqual(code, 404) + open_url = urllib.request.FancyURLopener().open(URL) + try: + code = open_url.getcode() + finally: + open_url.close() + self.assertEqual(code, 404) - def _test_fileno(self): + def test_fileno(self): if sys.platform in ('win32',): # On Windows, socket handles are not file descriptors; this # test can't pass on Windows. @@ -116,7 +116,7 @@ finally: FILE.close() - def _test_bad_address(self): + def test_bad_address(self): # Make sure proper exception is raised when connecting to a bogus # address. self.assertRaises(IOError, @@ -185,11 +185,9 @@ def test_main(): support.requires('network') - support.run_unittest( - #URLTimeoutTest, - urlopenNetworkTests, - #urlretrieveNetworkTests - ) + support.run_unittest(URLTimeoutTest, + urlopenNetworkTests, + urlretrieveNetworkTests) if __name__ == "__main__": test_main() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 00:19:48 2011 From: python-checkins at python.org (michael.foord) Date: Wed, 16 Mar 2011 00:19:48 +0100 Subject: [Python-checkins] cpython (3.2): Closes issue 11133. Fixes two cases where inspect.getattr_static could trigger Message-ID: http://hg.python.org/cpython/rev/8c7eac34f7bf changeset: 68575:8c7eac34f7bf branch: 3.2 parent: 68568:8526763a03eb user: Michael Foord date: Tue Mar 15 19:20:44 2011 -0400 summary: Closes issue 11133. Fixes two cases where inspect.getattr_static could trigger code execution files: Doc/library/inspect.rst Lib/inspect.py Lib/test/test_inspect.py Misc/NEWS diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -589,14 +589,11 @@ that raise AttributeError). It can also return descriptors objects instead of instance members. + If the instance `__dict__` is shadowed by another member (for example a + property) then this function will be unable to find instance members. + .. versionadded:: 3.2 -The only known case that can cause `getattr_static` to trigger code execution, -and cause it to return incorrect results (or even break), is where a class uses -:data:`~object.__slots__` and provides a `__dict__` member using a property or -descriptor. If you find other cases please report them so they can be fixed -or documented. - `getattr_static` does not resolve descriptors, for example slot descriptors or getset descriptors on objects implemented in C. The descriptor object is returned instead of the underlying attribute. diff --git a/Lib/inspect.py b/Lib/inspect.py --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -1069,15 +1069,16 @@ instance_dict = object.__getattribute__(obj, "__dict__") except AttributeError: pass - return instance_dict.get(attr, _sentinel) + return dict.get(instance_dict, attr, _sentinel) def _check_class(klass, attr): for entry in _static_getmro(klass): - try: - return entry.__dict__[attr] - except KeyError: - pass + if not _shadowed_dict(type(entry)): + try: + return entry.__dict__[attr] + except KeyError: + pass return _sentinel def _is_type(obj): @@ -1087,6 +1088,19 @@ return False return True +def _shadowed_dict(klass): + dict_attr = type.__dict__["__dict__"] + for entry in _static_getmro(klass): + try: + class_dict = dict_attr.__get__(entry)["__dict__"] + except KeyError: + pass + else: + if not (type(class_dict) is types.GetSetDescriptorType and + class_dict.__name__ == "__dict__" and + class_dict.__objclass__ is entry): + return True + return False def getattr_static(obj, attr, default=_sentinel): """Retrieve attributes without triggering dynamic lookup via the @@ -1101,8 +1115,9 @@ """ instance_result = _sentinel if not _is_type(obj): - instance_result = _check_instance(obj, attr) klass = type(obj) + if not _shadowed_dict(klass): + instance_result = _check_instance(obj, attr) else: klass = obj diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -906,6 +906,53 @@ self.assertEqual(inspect.getattr_static(Something(), 'foo'), 3) self.assertEqual(inspect.getattr_static(Something, 'foo'), 3) + def test_dict_as_property(self): + test = self + test.called = False + + class Foo(dict): + a = 3 + @property + def __dict__(self): + test.called = True + return {} + + foo = Foo() + foo.a = 4 + self.assertEqual(inspect.getattr_static(foo, 'a'), 3) + self.assertFalse(test.called) + + def test_custom_object_dict(self): + test = self + test.called = False + + class Custom(dict): + def get(self, key, default=None): + test.called = True + super().get(key, default) + + class Foo(object): + a = 3 + foo = Foo() + foo.__dict__ = Custom() + self.assertEqual(inspect.getattr_static(foo, 'a'), 3) + self.assertFalse(test.called) + + def test_metaclass_dict_as_property(self): + class Meta(type): + @property + def __dict__(self): + self.executed = True + + class Thing(metaclass=Meta): + executed = False + + def __init__(self): + self.spam = 42 + + instance = Thing() + self.assertEqual(inspect.getattr_static(instance, "spam"), 42) + self.assertFalse(Thing.executed) class TestGetGeneratorState(unittest.TestCase): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,9 @@ Library ------- +- Issue #11133: fix two cases where inspect.getattr_static can trigger code + execution. Patch by Daniel Urban. + - Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is not installed. Instead, the zipfile.ZIP_STORED compression is used to create the ZipFile. Patch by Natalia B. Bidart. @@ -48,7 +51,7 @@ encoding was not done if euc-jp or shift-jis was specified as the charset. - Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified - IP addresses in the proxy exception list. + IP addresses in the proxy exception list. - Issue #11491: dbm.error is no longer raised when dbm.open is called with the "n" as the flag argument and the file exists. The behavior matches -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 00:21:23 2011 From: python-checkins at python.org (michael.foord) Date: Wed, 16 Mar 2011 00:21:23 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge 3.2 Message-ID: http://hg.python.org/cpython/rev/60866549e653 changeset: 68576:60866549e653 parent: 68574:0a3b00d2c31c parent: 68575:8c7eac34f7bf user: Michael Foord date: Tue Mar 15 19:22:19 2011 -0400 summary: merge 3.2 files: Misc/NEWS diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -589,14 +589,11 @@ that raise AttributeError). It can also return descriptors objects instead of instance members. + If the instance `__dict__` is shadowed by another member (for example a + property) then this function will be unable to find instance members. + .. versionadded:: 3.2 -The only known case that can cause `getattr_static` to trigger code execution, -and cause it to return incorrect results (or even break), is where a class uses -:data:`~object.__slots__` and provides a `__dict__` member using a property or -descriptor. If you find other cases please report them so they can be fixed -or documented. - `getattr_static` does not resolve descriptors, for example slot descriptors or getset descriptors on objects implemented in C. The descriptor object is returned instead of the underlying attribute. diff --git a/Lib/inspect.py b/Lib/inspect.py --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -1069,15 +1069,16 @@ instance_dict = object.__getattribute__(obj, "__dict__") except AttributeError: pass - return instance_dict.get(attr, _sentinel) + return dict.get(instance_dict, attr, _sentinel) def _check_class(klass, attr): for entry in _static_getmro(klass): - try: - return entry.__dict__[attr] - except KeyError: - pass + if not _shadowed_dict(type(entry)): + try: + return entry.__dict__[attr] + except KeyError: + pass return _sentinel def _is_type(obj): @@ -1087,6 +1088,19 @@ return False return True +def _shadowed_dict(klass): + dict_attr = type.__dict__["__dict__"] + for entry in _static_getmro(klass): + try: + class_dict = dict_attr.__get__(entry)["__dict__"] + except KeyError: + pass + else: + if not (type(class_dict) is types.GetSetDescriptorType and + class_dict.__name__ == "__dict__" and + class_dict.__objclass__ is entry): + return True + return False def getattr_static(obj, attr, default=_sentinel): """Retrieve attributes without triggering dynamic lookup via the @@ -1101,8 +1115,9 @@ """ instance_result = _sentinel if not _is_type(obj): - instance_result = _check_instance(obj, attr) klass = type(obj) + if not _shadowed_dict(klass): + instance_result = _check_instance(obj, attr) else: klass = obj diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -906,6 +906,53 @@ self.assertEqual(inspect.getattr_static(Something(), 'foo'), 3) self.assertEqual(inspect.getattr_static(Something, 'foo'), 3) + def test_dict_as_property(self): + test = self + test.called = False + + class Foo(dict): + a = 3 + @property + def __dict__(self): + test.called = True + return {} + + foo = Foo() + foo.a = 4 + self.assertEqual(inspect.getattr_static(foo, 'a'), 3) + self.assertFalse(test.called) + + def test_custom_object_dict(self): + test = self + test.called = False + + class Custom(dict): + def get(self, key, default=None): + test.called = True + super().get(key, default) + + class Foo(object): + a = 3 + foo = Foo() + foo.__dict__ = Custom() + self.assertEqual(inspect.getattr_static(foo, 'a'), 3) + self.assertFalse(test.called) + + def test_metaclass_dict_as_property(self): + class Meta(type): + @property + def __dict__(self): + self.executed = True + + class Thing(metaclass=Meta): + executed = False + + def __init__(self): + self.spam = 42 + + instance = Thing() + self.assertEqual(inspect.getattr_static(instance, "spam"), 42) + self.assertFalse(Thing.executed) class TestGetGeneratorState(unittest.TestCase): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,9 @@ Library ------- +- Issue #11133: fix two cases where inspect.getattr_static can trigger code + execution. Patch by Daniel Urban. + - Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is not installed. Instead, the zipfile.ZIP_STORED compression is used to create the ZipFile. Patch by Natalia B. Bidart. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 01:25:46 2011 From: python-checkins at python.org (jesus.cea) Date: Wed, 16 Mar 2011 01:25:46 +0100 Subject: [Python-checkins] cpython (2.7): Close issue #8600: test_gdb failures because innocuous warnings Message-ID: http://hg.python.org/cpython/rev/93053ce76075 changeset: 68577:93053ce76075 branch: 2.7 parent: 68564:43ccd051ec6c user: Jesus Cea date: Wed Mar 16 01:19:49 2011 +0100 summary: Close issue #8600: test_gdb failures because innocuous warnings files: Lib/test/test_gdb.py diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -125,6 +125,9 @@ " inferior's thread library, thread debugging will" " not be available.\n", '') + err = err.replace("warning: Cannot initialize thread debugging" + " library: Debugger service failed\n", + '') # Ensure no unexpected error messages: self.assertEqual(err, '') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 01:26:02 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 16 Mar 2011 01:26:02 +0100 Subject: [Python-checkins] cpython (3.2): Emphasize the ['x', 'y'] option for listing field names. Remove PS2 prompts to Message-ID: http://hg.python.org/cpython/rev/6544accfefc3 changeset: 68578:6544accfefc3 branch: 3.2 parent: 68575:8c7eac34f7bf user: Raymond Hettinger date: Tue Mar 15 17:25:51 2011 -0700 summary: Emphasize the ['x', 'y'] option for listing field names. Remove PS2 prompts to make the examples cut-and-pasteable. files: Doc/library/collections.rst diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -590,7 +590,7 @@ :options: +NORMALIZE_WHITESPACE >>> # Basic example - >>> Point = namedtuple('Point', 'x y') + >>> Point = namedtuple('Point', ['x', 'y']) >>> p = Point(x=10, y=11) >>> # Example using the verbose option to print the class definition @@ -735,15 +735,15 @@ a fixed-width print format: >>> class Point(namedtuple('Point', 'x y')): - ... __slots__ = () - ... @property - ... def hypot(self): - ... return (self.x ** 2 + self.y ** 2) ** 0.5 - ... def __str__(self): - ... return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot) + __slots__ = () + @property + def hypot(self): + return (self.x ** 2 + self.y ** 2) ** 0.5 + def __str__(self): + return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot) >>> for p in Point(3, 4), Point(14, 5/7): - ... print(p) + print(p) Point: x= 3.000 y= 4.000 hypot= 5.000 Point: x=14.000 y= 0.714 hypot=14.018 @@ -770,7 +770,7 @@ >>> Status.open, Status.pending, Status.closed (0, 1, 2) >>> class Status: - ... open, pending, closed = range(3) + open, pending, closed = range(3) .. seealso:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 01:41:11 2011 From: python-checkins at python.org (jesus.cea) Date: Wed, 16 Mar 2011 01:41:11 +0100 Subject: [Python-checkins] cpython (3.2): Close issue #8600: test_gdb failures because innocuous warnings Message-ID: http://hg.python.org/cpython/rev/bca545c0941a changeset: 68579:bca545c0941a branch: 3.2 parent: 68575:8c7eac34f7bf user: Jesus Cea date: Wed Mar 16 01:33:16 2011 +0100 summary: Close issue #8600: test_gdb failures because innocuous warnings files: Lib/test/test_gdb.py diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -127,6 +127,9 @@ " inferior's thread library, thread debugging will" " not be available.\n", '') + err = err.replace("warning: Cannot initialize thread debugging" + " library: Debugger service failed\n", + '') # Ensure no unexpected error messages: self.assertEqual(err, '') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 01:41:11 2011 From: python-checkins at python.org (jesus.cea) Date: Wed, 16 Mar 2011 01:41:11 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge: Close issue #8600: test_gdb failures because innocuous warnings Message-ID: http://hg.python.org/cpython/rev/bbfc6a6ca017 changeset: 68580:bbfc6a6ca017 parent: 68576:60866549e653 parent: 68579:bca545c0941a user: Jesus Cea date: Wed Mar 16 01:34:29 2011 +0100 summary: Merge: Close issue #8600: test_gdb failures because innocuous warnings files: diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -127,6 +127,9 @@ " inferior's thread library, thread debugging will" " not be available.\n", '') + err = err.replace("warning: Cannot initialize thread debugging" + " library: Debugger service failed\n", + '') # Ensure no unexpected error messages: self.assertEqual(err, '') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 01:41:12 2011 From: python-checkins at python.org (jesus.cea) Date: Wed, 16 Mar 2011 01:41:12 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> 3.2): Merge Message-ID: http://hg.python.org/cpython/rev/9a817ab166e0 changeset: 68581:9a817ab166e0 branch: 3.2 parent: 68578:6544accfefc3 parent: 68579:bca545c0941a user: Jesus Cea date: Wed Mar 16 01:40:50 2011 +0100 summary: Merge files: diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -127,6 +127,9 @@ " inferior's thread library, thread debugging will" " not be available.\n", '') + err = err.replace("warning: Cannot initialize thread debugging" + " library: Debugger service failed\n", + '') # Ensure no unexpected error messages: self.assertEqual(err, '') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 02:21:22 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 16 Mar 2011 02:21:22 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Forward port doc update. Message-ID: http://hg.python.org/cpython/rev/36202463a9d0 changeset: 68582:36202463a9d0 parent: 68576:60866549e653 parent: 68578:6544accfefc3 user: Raymond Hettinger date: Tue Mar 15 18:19:52 2011 -0700 summary: Forward port doc update. files: Doc/library/collections.rst diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -706,7 +706,7 @@ :options: +NORMALIZE_WHITESPACE >>> # Basic example - >>> Point = namedtuple('Point', 'x y') + >>> Point = namedtuple('Point', ['x', 'y']) >>> p = Point(x=10, y=11) >>> # Example using the verbose option to print the class definition @@ -851,15 +851,15 @@ a fixed-width print format: >>> class Point(namedtuple('Point', 'x y')): - ... __slots__ = () - ... @property - ... def hypot(self): - ... return (self.x ** 2 + self.y ** 2) ** 0.5 - ... def __str__(self): - ... return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot) + __slots__ = () + @property + def hypot(self): + return (self.x ** 2 + self.y ** 2) ** 0.5 + def __str__(self): + return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot) >>> for p in Point(3, 4), Point(14, 5/7): - ... print(p) + print(p) Point: x= 3.000 y= 4.000 hypot= 5.000 Point: x=14.000 y= 0.714 hypot=14.018 @@ -886,7 +886,7 @@ >>> Status.open, Status.pending, Status.closed (0, 1, 2) >>> class Status: - ... open, pending, closed = range(3) + open, pending, closed = range(3) .. seealso:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 02:21:23 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 16 Mar 2011 02:21:23 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merge Message-ID: http://hg.python.org/cpython/rev/45f100e627f0 changeset: 68583:45f100e627f0 parent: 68582:36202463a9d0 parent: 68580:bbfc6a6ca017 user: Raymond Hettinger date: Tue Mar 15 18:21:00 2011 -0700 summary: Merge files: diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -127,6 +127,9 @@ " inferior's thread library, thread debugging will" " not be available.\n", '') + err = err.replace("warning: Cannot initialize thread debugging" + " library: Debugger service failed\n", + '') # Ensure no unexpected error messages: self.assertEqual(err, '') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 02:35:45 2011 From: python-checkins at python.org (jesus.cea) Date: Wed, 16 Mar 2011 02:35:45 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Dummy merge Message-ID: http://hg.python.org/cpython/rev/b153c341e6ef changeset: 68584:b153c341e6ef parent: 68583:45f100e627f0 parent: 68581:9a817ab166e0 user: Jesus Cea date: Wed Mar 16 02:35:37 2011 +0100 summary: Dummy merge files: -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Wed Mar 16 05:11:42 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Wed, 16 Mar 2011 05:11:42 +0100 Subject: [Python-checkins] Daily reference leaks (b153c341e6ef): sum=0 Message-ID: results for b153c341e6ef on branch "default" -------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogld1BJ8', '-x'] From python-checkins at python.org Wed Mar 16 10:06:27 2011 From: python-checkins at python.org (ezio.melotti) Date: Wed, 16 Mar 2011 10:06:27 +0100 Subject: [Python-checkins] cpython (3.1): #11565: Fix several typos. Patch by Piotr Kasprzyk. Message-ID: http://hg.python.org/cpython/rev/bf94b6a73fc8 changeset: 68585:bf94b6a73fc8 branch: 3.1 parent: 68560:cf1859f9aed9 user: Ezio Melotti date: Wed Mar 16 11:05:33 2011 +0200 summary: #11565: Fix several typos. Patch by Piotr Kasprzyk. files: Demo/turtle/tdemo_bytedesign.py Doc/includes/sqlite3/shared_cache.py Include/abstract.h Include/pymacconfig.h Lib/csv.py Lib/ctypes/test/test_arrays.py Lib/ctypes/test/test_init.py Lib/ctypes/test/test_numbers.py Lib/ctypes/test/test_win32.py Lib/difflib.py Lib/distutils/cmd.py Lib/distutils/cygwinccompiler.py Lib/distutils/tests/test_clean.py Lib/distutils/tests/test_install.py Lib/distutils/tests/test_sdist.py Lib/doctest.py Lib/email/header.py Lib/idlelib/FormatParagraph.py Lib/idlelib/extend.txt Lib/idlelib/macosxSupport.py Lib/lib2to3/fixes/fix_metaclass.py Lib/lib2to3/pgen2/conv.py Lib/lib2to3/pytree.py Lib/lib2to3/tests/data/py2_test_grammar.py Lib/lib2to3/tests/data/py3_test_grammar.py Lib/ntpath.py Lib/pickletools.py Lib/platform.py Lib/pstats.py Lib/subprocess.py Lib/test/pyclbr_input.py Lib/test/test_capi.py Lib/test/test_datetime.py Lib/test/test_decimal.py Lib/test/test_descr.py Lib/test/test_doctest.py Lib/test/test_extcall.py Lib/test/test_float.py Lib/test/test_grammar.py Lib/test/test_httpservers.py Lib/test/test_iterlen.py Lib/test/test_itertools.py Lib/test/test_marshal.py Lib/test/test_math.py Lib/test/test_mmap.py Lib/test/test_multiprocessing.py Lib/test/test_pkg.py Lib/test/test_print.py Lib/test/test_strlit.py Lib/test/test_strptime.py Lib/test/test_struct.py Lib/test/test_syntax.py Lib/test/test_sys.py Lib/test/test_threading.py Lib/test/test_trace.py Lib/test/test_urllib.py Lib/test/test_warnings.py Lib/tkinter/test/test_ttk/test_functions.py Lib/tkinter/tix.py Lib/tkinter/ttk.py Lib/turtle.py Lib/xml/dom/minicompat.py Lib/xml/dom/minidom.py Lib/xmlrpc/server.py Mac/BuildScript/build-installer.py Modules/_ctypes/_ctypes.c Modules/_ctypes/callbacks.c Modules/_ctypes/callproc.c Modules/_functoolsmodule.c Modules/_io/iobase.c Modules/_io/stringio.c Modules/_pickle.c Modules/_sqlite/connection.h Modules/cmathmodule.c Modules/socketmodule.c Modules/timemodule.c Modules/zipimport.c Modules/zlib/deflate.h Modules/zlib/gzio.c Objects/dictobject.c Objects/listobject.c Objects/longobject.c Objects/typeobject.c PC/bdist_wininst/extract.c PC/bdist_wininst/install.c PC/os2emx/dlfcn.c PC/os2emx/dlfcn.h Python/ceval.c Python/pystate.c Python/thread.c Tools/freeze/checkextensions_win32.py Tools/scripts/fixcid.py Tools/unicode/makeunicodedata.py setup.py diff --git a/Demo/turtle/tdemo_bytedesign.py b/Demo/turtle/tdemo_bytedesign.py --- a/Demo/turtle/tdemo_bytedesign.py +++ b/Demo/turtle/tdemo_bytedesign.py @@ -4,7 +4,7 @@ tdemo_bytedesign.py An example adapted from the example-suite -of PythonCard's turtle graphcis. +of PythonCard's turtle graphics. It's based on an article in BYTE magazine Problem Solving with Logo: Using Turtle diff --git a/Doc/includes/sqlite3/shared_cache.py b/Doc/includes/sqlite3/shared_cache.py --- a/Doc/includes/sqlite3/shared_cache.py +++ b/Doc/includes/sqlite3/shared_cache.py @@ -1,6 +1,6 @@ import sqlite3 # The shared cache is only available in SQLite versions 3.3.3 or later -# See the SQLite documentaton for details. +# See the SQLite documentation for details. sqlite3.enable_shared_cache(True) diff --git a/Include/abstract.h b/Include/abstract.h --- a/Include/abstract.h +++ b/Include/abstract.h @@ -466,7 +466,7 @@ arbitrary data. 0 is returned on success. buffer and buffer_len are only - set in case no error occurrs. Otherwise, -1 is returned and + set in case no error occurs. Otherwise, -1 is returned and an exception set. */ @@ -480,7 +480,7 @@ writable memory location in buffer of size buffer_len. 0 is returned on success. buffer and buffer_len are only - set in case no error occurrs. Otherwise, -1 is returned and + set in case no error occurs. Otherwise, -1 is returned and an exception set. */ diff --git a/Include/pymacconfig.h b/Include/pymacconfig.h --- a/Include/pymacconfig.h +++ b/Include/pymacconfig.h @@ -55,7 +55,7 @@ # endif # if defined(__LP64__) - /* MacOSX 10.4 (the first release to suppport 64-bit code + /* MacOSX 10.4 (the first release to support 64-bit code * at all) only supports 64-bit in the UNIX layer. * Therefore surpress the toolbox-glue in 64-bit mode. */ diff --git a/Lib/csv.py b/Lib/csv.py --- a/Lib/csv.py +++ b/Lib/csv.py @@ -270,7 +270,7 @@ an all or nothing approach, so we allow for small variations in this number. 1) build a table of the frequency of each character on every line. - 2) build a table of freqencies of this frequency (meta-frequency?), + 2) build a table of frequencies of this frequency (meta-frequency?), e.g. 'x occurred 5 times in 10 rows, 6 times in 1000 rows, 7 times in 2 rows' 3) use the mode of the meta-frequency to determine the /expected/ diff --git a/Lib/ctypes/test/test_arrays.py b/Lib/ctypes/test/test_arrays.py --- a/Lib/ctypes/test/test_arrays.py +++ b/Lib/ctypes/test/test_arrays.py @@ -37,7 +37,7 @@ values = [ia[i] for i in range(len(init))] self.assertEqual(values, [0] * len(init)) - # Too many in itializers should be caught + # Too many initializers should be caught self.assertRaises(IndexError, int_array, *range(alen*2)) CharArray = ARRAY(c_char, 3) diff --git a/Lib/ctypes/test/test_init.py b/Lib/ctypes/test/test_init.py --- a/Lib/ctypes/test/test_init.py +++ b/Lib/ctypes/test/test_init.py @@ -27,7 +27,7 @@ self.assertEqual((y.x.a, y.x.b), (0, 0)) self.assertEqual(y.x.new_was_called, False) - # But explicitely creating an X structure calls __new__ and __init__, of course. + # But explicitly creating an X structure calls __new__ and __init__, of course. x = X() self.assertEqual((x.a, x.b), (9, 12)) self.assertEqual(x.new_was_called, True) diff --git a/Lib/ctypes/test/test_numbers.py b/Lib/ctypes/test/test_numbers.py --- a/Lib/ctypes/test/test_numbers.py +++ b/Lib/ctypes/test/test_numbers.py @@ -157,7 +157,7 @@ def test_int_from_address(self): from array import array for t in signed_types + unsigned_types: - # the array module doesn't suppport all format codes + # the array module doesn't support all format codes # (no 'q' or 'Q') try: array(t._type_) diff --git a/Lib/ctypes/test/test_win32.py b/Lib/ctypes/test/test_win32.py --- a/Lib/ctypes/test/test_win32.py +++ b/Lib/ctypes/test/test_win32.py @@ -17,7 +17,7 @@ # ValueError: Procedure probably called with not enough arguments (4 bytes missing) self.assertRaises(ValueError, IsWindow) - # This one should succeeed... + # This one should succeed... self.assertEqual(0, IsWindow(0)) # ValueError: Procedure probably called with too many arguments (8 bytes in excess) diff --git a/Lib/difflib.py b/Lib/difflib.py --- a/Lib/difflib.py +++ b/Lib/difflib.py @@ -1712,7 +1712,7 @@ line = line.replace(' ','\0') # expand tabs into spaces line = line.expandtabs(self._tabsize) - # relace spaces from expanded tabs back into tab characters + # replace spaces from expanded tabs back into tab characters # (we'll replace them with markup after we do differencing) line = line.replace(' ','\t') return line.replace('\0',' ').rstrip('\n') diff --git a/Lib/distutils/cmd.py b/Lib/distutils/cmd.py --- a/Lib/distutils/cmd.py +++ b/Lib/distutils/cmd.py @@ -359,7 +359,7 @@ not self.force, dry_run=self.dry_run) def move_file (self, src, dst, level=1): - """Move a file respectin dry-run flag.""" + """Move a file respecting dry-run flag.""" return file_util.move_file(src, dst, dry_run=self.dry_run) def spawn(self, cmd, search_path=1, level=1): diff --git a/Lib/distutils/cygwinccompiler.py b/Lib/distutils/cygwinccompiler.py --- a/Lib/distutils/cygwinccompiler.py +++ b/Lib/distutils/cygwinccompiler.py @@ -155,7 +155,7 @@ self.dll_libraries = get_msvcr() def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): - """Compiles the source by spawing GCC and windres if needed.""" + """Compiles the source by spawning GCC and windres if needed.""" if ext == '.rc' or ext == '.res': # gcc needs '.res' and '.rc' compiled to object files !!! try: diff --git a/Lib/distutils/tests/test_clean.py b/Lib/distutils/tests/test_clean.py --- a/Lib/distutils/tests/test_clean.py +++ b/Lib/distutils/tests/test_clean.py @@ -39,7 +39,7 @@ self.assertTrue(not os.path.exists(path), '%s was not removed' % path) - # let's run the command again (should spit warnings but suceed) + # let's run the command again (should spit warnings but succeed) cmd.all = 1 cmd.ensure_finalized() cmd.run() diff --git a/Lib/distutils/tests/test_install.py b/Lib/distutils/tests/test_install.py --- a/Lib/distutils/tests/test_install.py +++ b/Lib/distutils/tests/test_install.py @@ -62,7 +62,7 @@ if sys.version < '2.6': return - # preparing the environement for the test + # preparing the environment for the test self.old_user_base = site.USER_BASE self.old_user_site = site.USER_SITE self.tmpdir = self.mkdtemp() diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -311,7 +311,7 @@ # adding a file self.write_file((self.tmp_dir, 'somecode', 'doc2.txt'), '#') - # make sure build_py is reinitinialized, like a fresh run + # make sure build_py is reinitialized, like a fresh run build_py = dist.get_command_obj('build_py') build_py.finalized = False build_py.ensure_finalized() diff --git a/Lib/doctest.py b/Lib/doctest.py --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -1210,7 +1210,7 @@ # Process each example. for examplenum, example in enumerate(test.examples): - # If REPORT_ONLY_FIRST_FAILURE is set, then supress + # If REPORT_ONLY_FIRST_FAILURE is set, then suppress # reporting after the first failure. quiet = (self.optionflags & REPORT_ONLY_FIRST_FAILURE and failures > 0) @@ -2132,7 +2132,7 @@ caller can catch the errors and initiate post-mortem debugging. The DocTestCase provides a debug method that raises - UnexpectedException errors if there is an unexepcted + UnexpectedException errors if there is an unexpected exception: >>> test = DocTestParser().get_doctest('>>> raise KeyError\n42', diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -46,7 +46,7 @@ # For use with .match() fcre = re.compile(r'[\041-\176]+:$') -# Find a header embeded in a putative header value. Used to check for +# Find a header embedded in a putative header value. Used to check for # header injection attack. _embeded_header = re.compile(r'\n[^ \t]+:') diff --git a/Lib/idlelib/FormatParagraph.py b/Lib/idlelib/FormatParagraph.py --- a/Lib/idlelib/FormatParagraph.py +++ b/Lib/idlelib/FormatParagraph.py @@ -54,7 +54,7 @@ # If the block ends in a \n, we dont want the comment # prefix inserted after it. (Im not sure it makes sense to # reformat a comment block that isnt made of complete - # lines, but whatever!) Can't think of a clean soltution, + # lines, but whatever!) Can't think of a clean solution, # so we hack away block_suffix = "" if not newdata[-1]: diff --git a/Lib/idlelib/extend.txt b/Lib/idlelib/extend.txt --- a/Lib/idlelib/extend.txt +++ b/Lib/idlelib/extend.txt @@ -18,7 +18,7 @@ An IDLE extension class is instantiated with a single argument, `editwin', an EditorWindow instance. The extension cannot assume much -about this argument, but it is guarateed to have the following instance +about this argument, but it is guaranteed to have the following instance variables: text a Text instance (a widget) diff --git a/Lib/idlelib/macosxSupport.py b/Lib/idlelib/macosxSupport.py --- a/Lib/idlelib/macosxSupport.py +++ b/Lib/idlelib/macosxSupport.py @@ -15,8 +15,8 @@ def addOpenEventSupport(root, flist): """ - This ensures that the application will respont to open AppleEvents, which - makes is feaseable to use IDLE as the default application for python files. + This ensures that the application will respond to open AppleEvents, which + makes is feasible to use IDLE as the default application for python files. """ def doOpenFile(*args): for fn in args: diff --git a/Lib/lib2to3/fixes/fix_metaclass.py b/Lib/lib2to3/fixes/fix_metaclass.py --- a/Lib/lib2to3/fixes/fix_metaclass.py +++ b/Lib/lib2to3/fixes/fix_metaclass.py @@ -48,7 +48,7 @@ """ for node in cls_node.children: if node.type == syms.suite: - # already in the prefered format, do nothing + # already in the preferred format, do nothing return # !%@#! oneliners have no suite node, we have to fake one up diff --git a/Lib/lib2to3/pgen2/conv.py b/Lib/lib2to3/pgen2/conv.py --- a/Lib/lib2to3/pgen2/conv.py +++ b/Lib/lib2to3/pgen2/conv.py @@ -51,7 +51,7 @@ self.finish_off() def parse_graminit_h(self, filename): - """Parse the .h file writen by pgen. (Internal) + """Parse the .h file written by pgen. (Internal) This file is a sequence of #define statements defining the nonterminals of the grammar as numbers. We build two tables @@ -82,7 +82,7 @@ return True def parse_graminit_c(self, filename): - """Parse the .c file writen by pgen. (Internal) + """Parse the .c file written by pgen. (Internal) The file looks as follows. The first two lines are always this: diff --git a/Lib/lib2to3/pytree.py b/Lib/lib2to3/pytree.py --- a/Lib/lib2to3/pytree.py +++ b/Lib/lib2to3/pytree.py @@ -658,8 +658,8 @@ content: optional sequence of subsequences of patterns; if absent, matches one node; if present, each subsequence is an alternative [*] - min: optinal minumum number of times to match, default 0 - max: optional maximum number of times tro match, default HUGE + min: optional minimum number of times to match, default 0 + max: optional maximum number of times to match, default HUGE name: optional name assigned to this match [*] Thus, if content is [[a, b, c], [d, e], [f, g, h]] this is diff --git a/Lib/lib2to3/tests/data/py2_test_grammar.py b/Lib/lib2to3/tests/data/py2_test_grammar.py --- a/Lib/lib2to3/tests/data/py2_test_grammar.py +++ b/Lib/lib2to3/tests/data/py2_test_grammar.py @@ -316,7 +316,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/lib2to3/tests/data/py3_test_grammar.py b/Lib/lib2to3/tests/data/py3_test_grammar.py --- a/Lib/lib2to3/tests/data/py3_test_grammar.py +++ b/Lib/lib2to3/tests/data/py3_test_grammar.py @@ -356,7 +356,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/ntpath.py b/Lib/ntpath.py --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -389,7 +389,7 @@ # - $varname is accepted. # - %varname% is accepted. # - varnames can be made out of letters, digits and the characters '_-' -# (though is not verifed in the ${varname} and %varname% cases) +# (though is not verified in the ${varname} and %varname% cases) # XXX With COMMAND.COM you can use any characters in a variable name, # XXX except '^|<>='. diff --git a/Lib/pickletools.py b/Lib/pickletools.py --- a/Lib/pickletools.py +++ b/Lib/pickletools.py @@ -1406,7 +1406,7 @@ proto=0, doc="""Read an object from the memo and push it on the stack. - The index of the memo object to push is given by the newline-teriminated + The index of the memo object to push is given by the newline-terminated decimal string following. BINGET and LONG_BINGET are space-optimized versions. """), diff --git a/Lib/platform.py b/Lib/platform.py --- a/Lib/platform.py +++ b/Lib/platform.py @@ -476,7 +476,7 @@ info = pipe.read() if pipe.close(): raise os.error('command failed') - # XXX How can I supress shell errors from being written + # XXX How can I suppress shell errors from being written # to stderr ? except os.error as why: #print 'Command %s failed: %s' % (cmd,why) diff --git a/Lib/pstats.py b/Lib/pstats.py --- a/Lib/pstats.py +++ b/Lib/pstats.py @@ -71,7 +71,7 @@ """ def __init__(self, *args, **kwds): - # I can't figure out how to explictly specify a stream keyword arg + # I can't figure out how to explicitly specify a stream keyword arg # with *args: # def __init__(self, *args, stream=sys.stdout): ... # so I use **kwds and sqauwk if something unexpected is passed in. diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -858,7 +858,7 @@ except pywintypes.error as e: # Translate pywintypes.error to WindowsError, which is # a subclass of OSError. FIXME: We should really - # translate errno using _sys_errlist (or simliar), but + # translate errno using _sys_errlist (or similar), but # how can this be done from Python? raise WindowsError(*e.args) finally: diff --git a/Lib/test/pyclbr_input.py b/Lib/test/pyclbr_input.py --- a/Lib/test/pyclbr_input.py +++ b/Lib/test/pyclbr_input.py @@ -19,7 +19,7 @@ # XXX: This causes test_pyclbr.py to fail, but only because the # introspection-based is_method() code in the test can't - # distinguish between this and a geniune method function like m(). + # distinguish between this and a genuine method function like m(). # The pyclbr.py module gets this right as it parses the text. # #f = f diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py --- a/Lib/test/test_capi.py +++ b/Lib/test/test_capi.py @@ -106,7 +106,7 @@ context.event.set() def test_pendingcalls_non_threaded(self): - #again, just using the main thread, likely they will all be dispathced at + #again, just using the main thread, likely they will all be dispatched at #once. It is ok to ask for too many, because we loop until we find a slot. #the loop can be interrupted to dispatch. #there are only 32 dispatch slots, so we go for twice that! diff --git a/Lib/test/test_datetime.py b/Lib/test/test_datetime.py --- a/Lib/test/test_datetime.py +++ b/Lib/test/test_datetime.py @@ -3120,7 +3120,7 @@ self.assertEqual(dt, there_and_back) # Because we have a redundant spelling when DST begins, there is - # (unforunately) an hour when DST ends that can't be spelled at all in + # (unfortunately) an hour when DST ends that can't be spelled at all in # local time. When DST ends, the clock jumps from 1:59 back to 1:00 # again. The hour 1:MM DST has no spelling then: 1:MM is taken to be # standard time. 1:MM DST == 0:MM EST, but 0:MM is taken to be diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -225,7 +225,7 @@ try: t = self.eval_line(line) except DecimalException as exception: - #Exception raised where there shoudn't have been one. + #Exception raised where there shouldn't have been one. self.fail('Exception "'+exception.__class__.__name__ + '" raised on line '+line) return diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -3976,7 +3976,7 @@ except TypeError: pass else: - self.fail("Carlo Verre __setattr__ suceeded!") + self.fail("Carlo Verre __setattr__ succeeded!") try: object.__delattr__(str, "lower") except TypeError: diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -1222,7 +1222,7 @@ ? + ++ ^ TestResults(failed=1, attempted=1) -The REPORT_ONLY_FIRST_FAILURE supresses result output after the first +The REPORT_ONLY_FIRST_FAILURE suppresses result output after the first failing example: >>> def f(x): @@ -1252,7 +1252,7 @@ 2 TestResults(failed=3, attempted=5) -However, output from `report_start` is not supressed: +However, output from `report_start` is not suppressed: >>> doctest.DocTestRunner(verbose=True, optionflags=flags).run(test) ... # doctest: +ELLIPSIS @@ -2199,7 +2199,7 @@ >>> doctest.master = None # Reset master. (Note: we'll be clearing doctest.master after each call to -`doctest.testfile`, to supress warnings about multiple tests with the +`doctest.testfile`, to suppress warnings about multiple tests with the same name.) Globals may be specified with the `globs` and `extraglobs` parameters: @@ -2235,7 +2235,7 @@ TestResults(failed=0, attempted=2) >>> doctest.master = None # Reset master. -Verbosity can be increased with the optional `verbose` paremter: +Verbosity can be increased with the optional `verbose` parameter: >>> doctest.testfile('test_doctest.txt', globs=globs, verbose=True) Trying: @@ -2272,7 +2272,7 @@ TestResults(failed=1, attempted=2) >>> doctest.master = None # Reset master. -The summary report may be supressed with the optional `report` +The summary report may be suppressed with the optional `report` parameter: >>> doctest.testfile('test_doctest.txt', report=False) diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py --- a/Lib/test/test_extcall.py +++ b/Lib/test/test_extcall.py @@ -227,7 +227,7 @@ >>> Foo.method(1, *[2, 3]) 5 -A PyCFunction that takes only positional parameters shoud allow an +A PyCFunction that takes only positional parameters should allow an empty keyword dictionary to pass without a complaint, but raise a TypeError if te dictionary is not empty diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -121,7 +121,7 @@ def test_float_with_comma(self): # set locale to something that doesn't use '.' for the decimal point # float must not accept the locale specific decimal point but - # it still has to accept the normal python syntac + # it still has to accept the normal python syntax import locale if not locale.localeconv()['decimal_point'] == ',': return @@ -243,7 +243,7 @@ def assertEqualAndEqualSign(self, a, b): # fail unless a == b and a and b have the same sign bit; # the only difference from assertEqual is that this test - # distingishes -0.0 and 0.0. + # distinguishes -0.0 and 0.0. self.assertEqual((a, copysign(1.0, a)), (b, copysign(1.0, b))) @requires_IEEE_754 diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -356,7 +356,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -83,7 +83,7 @@ return self.connection.getresponse() class BaseHTTPRequestHandlerTestCase(unittest.TestCase): - """Test the functionaility of the BaseHTTPServer.""" + """Test the functionality of the BaseHTTPServer.""" HTTPResponseMatch = re.compile(b'HTTP/1.[0-9]+ 200 OK') diff --git a/Lib/test/test_iterlen.py b/Lib/test/test_iterlen.py --- a/Lib/test/test_iterlen.py +++ b/Lib/test/test_iterlen.py @@ -20,11 +20,11 @@ Some containers become temporarily immutable during iteration. This includes dicts, sets, and collections.deque. Their implementation is equally simple -though they need to permantently set their length to zero whenever there is +though they need to permanently set their length to zero whenever there is an attempt to iterate after a length mutation. The situation slightly more involved whenever an object allows length mutation -during iteration. Lists and sequence iterators are dynanamically updatable. +during iteration. Lists and sequence iterators are dynamically updatable. So, if a list is extended during iteration, the iterator will continue through the new items. If it shrinks to a point before the most recent iteration, then no further items are available and the length is reported at zero. diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -1490,7 +1490,7 @@ ... return chain(iterable, repeat(None)) >>> def ncycles(iterable, n): -... "Returns the seqeuence elements n times" +... "Returns the sequence elements n times" ... return chain(*repeat(iterable, n)) >>> def dotproduct(vec1, vec2): diff --git a/Lib/test/test_marshal.py b/Lib/test/test_marshal.py --- a/Lib/test/test_marshal.py +++ b/Lib/test/test_marshal.py @@ -200,7 +200,7 @@ # >>> type(loads(dumps(Int()))) # for typ in (int, float, complex, tuple, list, dict, set, frozenset): - # Note: str sublclasses are not tested because they get handled + # Note: str subclasses are not tested because they get handled # by marshal's routines for objects supporting the buffer API. subtyp = type('subtyp', (typ,), {}) self.assertRaises(ValueError, marshal.dumps, subtyp()) diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -697,7 +697,7 @@ # the following tests have been commented out since they don't # really belong here: the implementation of ** for floats is - # independent of the implemention of math.pow + # independent of the implementation of math.pow #self.assertEqual(1**NAN, 1) #self.assertEqual(1**INF, 1) #self.assertEqual(1**NINF, 1) diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -599,7 +599,7 @@ m2.close() m1.close() - # Test differnt tag + # Test different tag m1 = mmap.mmap(-1, len(data1), tagname="foo") m1[:] = data1 m2 = mmap.mmap(-1, len(data2), tagname="boo") diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -780,7 +780,7 @@ event = self.Event() wait = TimingWrapper(event.wait) - # Removed temporaily, due to API shear, this does not + # Removed temporarily, due to API shear, this does not # work with threading._Event objects. is_set == isSet self.assertEqual(event.is_set(), False) @@ -1671,7 +1671,7 @@ util.Finalize(None, conn.send, args=('STOP',), exitpriority=-100) - # call mutliprocessing's cleanup function then exit process without + # call multiprocessing's cleanup function then exit process without # garbage collecting locals util._exit_function() conn.close() diff --git a/Lib/test/test_pkg.py b/Lib/test/test_pkg.py --- a/Lib/test/test_pkg.py +++ b/Lib/test/test_pkg.py @@ -55,7 +55,7 @@ support.modules_cleanup(*self.modules_before) cleanout(self.root) - # delete all modules concerning the tested hiearchy + # delete all modules concerning the tested hierarchy if self.pkgname: modules = [name for name in sys.modules if self.pkgname in name.split('.')] diff --git a/Lib/test/test_print.py b/Lib/test/test_print.py --- a/Lib/test/test_print.py +++ b/Lib/test/test_print.py @@ -21,7 +21,7 @@ # A dispatch table all 8 combinations of providing # sep, end, and file # I use this machinery so that I'm not just passing default -# values to print, I'm eiher passing or not passing in the +# values to print, I'm either passing or not passing in the # arguments dispatch = { (False, False, False): diff --git a/Lib/test/test_strlit.py b/Lib/test/test_strlit.py --- a/Lib/test/test_strlit.py +++ b/Lib/test/test_strlit.py @@ -22,7 +22,7 @@ exec()/eval(), which uses a different code path. This file is really about correct treatment of encodings and -backslashes. It doens't concern itself with issues like single +backslashes. It doesn't concern itself with issues like single vs. double quotes or singly- vs. triply-quoted strings: that's dealt with elsewhere (I assume). """ diff --git a/Lib/test/test_strptime.py b/Lib/test/test_strptime.py --- a/Lib/test/test_strptime.py +++ b/Lib/test/test_strptime.py @@ -541,7 +541,7 @@ self.assertIsNot(first_time_re, second_time_re) # Possible test locale is not supported while initial locale is. # If this is the case just suppress the exception and fall-through - # to the reseting to the original locale. + # to the resetting to the original locale. except locale.Error: pass # Make sure we don't trample on the locale setting once we leave the diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py --- a/Lib/test/test_struct.py +++ b/Lib/test/test_struct.py @@ -476,7 +476,7 @@ test_string) def test_unpack_with_buffer(self): - # SF bug 1563759: struct.unpack doens't support buffer protocol objects + # SF bug 1563759: struct.unpack doesn't support buffer protocol objects data1 = array.array('B', b'\x12\x34\x56\x78') data2 = memoryview(b'\x12\x34\x56\x78') # XXX b'......XXXX......', 6, 4 for data in [data1, data2]: diff --git a/Lib/test/test_syntax.py b/Lib/test/test_syntax.py --- a/Lib/test/test_syntax.py +++ b/Lib/test/test_syntax.py @@ -237,7 +237,7 @@ Test continue in finally in weird combinations. -continue in for loop under finally shouuld be ok. +continue in for loop under finally should be ok. >>> def test(): ... try: diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -416,7 +416,7 @@ # provide too much opportunity for insane things to happen. # We don't want them in the interned dict and if they aren't # actually interned, we don't want to create the appearance - # that they are by allowing intern() to succeeed. + # that they are by allowing intern() to succeed. class S(str): def __hash__(self): return 123 diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -543,7 +543,7 @@ # This acquires the lock and then waits until the child has forked # before returning, which will release the lock soon after. If # someone else tries to fix this test case by acquiring this lock - # before forking instead of reseting it, the test case will + # before forking instead of resetting it, the test case will # deadlock when it shouldn't. condition = w._block orig_acquire = condition.acquire diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py --- a/Lib/test/test_trace.py +++ b/Lib/test/test_trace.py @@ -185,7 +185,7 @@ (self.my_py_filename, firstlineno + 4): 1, } - # When used through 'run', some other spurios counts are produced, like + # When used through 'run', some other spurious counts are produced, like # the settrace of threading, which we ignore, just making sure that the # counts fo traced_func_loop were right. # diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -1003,7 +1003,7 @@ # Just commented them out. # Can't really tell why keep failing in windows and sparc. -# Everywhere else they work ok, but on those machines, someteimes +# Everywhere else they work ok, but on those machines, sometimes # fail in one of the tests, sometimes in other. I have a linux, and # the tests go ok. # If anybody has one of the problematic enviroments, please help! diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py --- a/Lib/test/test_warnings.py +++ b/Lib/test/test_warnings.py @@ -333,7 +333,7 @@ sys.argv = argv def test_warn_explicit_type_errors(self): - # warn_explicit() shoud error out gracefully if it is given objects + # warn_explicit() should error out gracefully if it is given objects # of the wrong types. # lineno is expected to be an integer. self.assertRaises(TypeError, self.module.warn_explicit, diff --git a/Lib/tkinter/test/test_ttk/test_functions.py b/Lib/tkinter/test/test_ttk/test_functions.py --- a/Lib/tkinter/test/test_ttk/test_functions.py +++ b/Lib/tkinter/test/test_ttk/test_functions.py @@ -135,7 +135,7 @@ # minimum acceptable for image type self.assertEqual(ttk._format_elemcreate('image', False, 'test'), ("test ", ())) - # specifiyng a state spec + # specifying a state spec self.assertEqual(ttk._format_elemcreate('image', False, 'test', ('', 'a')), ("test {} a", ())) # state spec with multiple states diff --git a/Lib/tkinter/tix.py b/Lib/tkinter/tix.py --- a/Lib/tkinter/tix.py +++ b/Lib/tkinter/tix.py @@ -156,7 +156,7 @@ return self.tk.call('tix', 'getimage', name) def tix_option_get(self, name): - """Gets the options manitained by the Tix + """Gets the options maintained by the Tix scheme mechanism. Available options include: active_bg active_fg bg @@ -561,7 +561,7 @@ class ComboBox(TixWidget): """ComboBox - an Entry field with a dropdown menu. The user can select a - choice by either typing in the entry subwdget or selecting from the + choice by either typing in the entry subwidget or selecting from the listbox subwidget. Subwidget Class @@ -854,7 +854,7 @@ """HList - Hierarchy display widget can be used to display any data that have a hierarchical structure, for example, file system directory trees. The list entries are indented and connected by branch lines - according to their places in the hierachy. + according to their places in the hierarchy. Subwidgets - None""" @@ -1509,7 +1509,7 @@ self.tk.call(self._w, 'yview', *args) class Tree(TixWidget): - """Tree - The tixTree widget can be used to display hierachical + """Tree - The tixTree widget can be used to display hierarchical data in a tree form. The user can adjust the view of the tree by opening or closing parts of the tree.""" diff --git a/Lib/tkinter/ttk.py b/Lib/tkinter/ttk.py --- a/Lib/tkinter/ttk.py +++ b/Lib/tkinter/ttk.py @@ -707,7 +707,7 @@ textvariable, values, width """ # The "values" option may need special formatting, so leave to - # _format_optdict the responsability to format it + # _format_optdict the responsibility to format it if "values" in kw: kw["values"] = _format_optdict({'v': kw["values"]})[1] diff --git a/Lib/turtle.py b/Lib/turtle.py --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -1488,7 +1488,7 @@ Optional arguments: canvwidth -- positive integer, new width of canvas in pixels canvheight -- positive integer, new height of canvas in pixels - bg -- colorstring or color-tupel, new backgroundcolor + bg -- colorstring or color-tuple, new backgroundcolor If no arguments are given, return current (canvaswidth, canvasheight) Do not alter the drawing window. To observe hidden parts of @@ -3242,9 +3242,9 @@ fill="", width=ps) # Turtle now at position old, self._position = old - ## if undo is done during crating a polygon, the last vertex - ## will be deleted. if the polygon is entirel deleted, - ## creatigPoly will be set to False. + ## if undo is done during creating a polygon, the last vertex + ## will be deleted. if the polygon is entirely deleted, + ## creatingPoly will be set to False. ## Polygons created before the last one will not be affected by undo() if self._creatingPoly: if len(self._poly) > 0: @@ -3796,7 +3796,7 @@ class Turtle(RawTurtle): - """RawTurtle auto-crating (scrolled) canvas. + """RawTurtle auto-creating (scrolled) canvas. When a Turtle object is created or a function derived from some Turtle method is called a TurtleScreen object is automatically created. @@ -3836,7 +3836,7 @@ filename -- a string, used as filename default value is turtle_docstringdict - Has to be called explicitely, (not used by the turtle-graphics classes) + Has to be called explicitly, (not used by the turtle-graphics classes) The docstring dictionary will be written to the Python script .py It is intended to serve as a template for translation of the docstrings into different languages. diff --git a/Lib/xml/dom/minicompat.py b/Lib/xml/dom/minicompat.py --- a/Lib/xml/dom/minicompat.py +++ b/Lib/xml/dom/minicompat.py @@ -6,7 +6,7 @@ # # NodeList -- lightest possible NodeList implementation # -# EmptyNodeList -- lightest possible NodeList that is guarateed to +# EmptyNodeList -- lightest possible NodeList that is guaranteed to # remain empty (immutable) # # StringTypes -- tuple of defined string types diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -1893,7 +1893,7 @@ e._call_user_data_handler(operation, n, entity) else: # Note the cloning of Document and DocumentType nodes is - # implemenetation specific. minidom handles those cases + # implementation specific. minidom handles those cases # directly in the cloneNode() methods. raise xml.dom.NotSupportedErr("Cannot clone node %s" % repr(node)) diff --git a/Lib/xmlrpc/server.py b/Lib/xmlrpc/server.py --- a/Lib/xmlrpc/server.py +++ b/Lib/xmlrpc/server.py @@ -239,7 +239,7 @@ marshalled data. For backwards compatibility, a dispatch function can be provided as an argument (see comment in SimpleXMLRPCRequestHandler.do_POST) but overriding the - existing method through subclassing is the prefered means + existing method through subclassing is the preferred means of changing method dispatch behavior. """ diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -354,7 +354,7 @@ def runCommand(commandline): """ - Run a command and raise RuntimeError if it fails. Output is surpressed + Run a command and raise RuntimeError if it fails. Output is suppressed unless the command fails. """ fd = os.popen(commandline, 'r') diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -3331,7 +3331,7 @@ /* XXX XXX This would allow to pass additional options. For COM method *implementations*, we would probably want different behaviour than in 'normal' callback functions: return a HRESULT if - an exception occurrs in the callback, and print the traceback not + an exception occurs in the callback, and print the traceback not only on the console, but also to OutputDebugString() or something like that. */ diff --git a/Modules/_ctypes/callbacks.c b/Modules/_ctypes/callbacks.c --- a/Modules/_ctypes/callbacks.c +++ b/Modules/_ctypes/callbacks.c @@ -234,7 +234,7 @@ /* XXX XXX XX We have the problem that c_byte or c_short have dict->size of 1 resp. 4, but these parameters are pushed as sizeof(int) bytes. - BTW, the same problem occurrs when they are pushed as parameters + BTW, the same problem occurs when they are pushed as parameters */ } else if (dict) { /* Hm, shouldn't we use PyCData_AtAddress() or something like that instead? */ diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -29,7 +29,7 @@ 4. _ctypes_callproc is then called with the 'callargs' tuple. _ctypes_callproc first allocates two arrays. The first is an array of 'struct argument' items, the - second array has 'void *' entried. + second array has 'void *' entries. 5. If 'converters' are present (converters is a sequence of argtypes' from_param methods), for each item in 'callargs' converter is called and the diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c --- a/Modules/_functoolsmodule.c +++ b/Modules/_functoolsmodule.c @@ -200,7 +200,7 @@ __reduce__ by itself doesn't support getting kwargs in the unpickle operation so we define a __setstate__ that replaces all the information about the partial. If we only replaced part of it someone would use - it as a hook to do stange things. + it as a hook to do strange things. */ static PyObject * diff --git a/Modules/_io/iobase.c b/Modules/_io/iobase.c --- a/Modules/_io/iobase.c +++ b/Modules/_io/iobase.c @@ -49,7 +49,7 @@ "stream.\n" "\n" "IOBase also supports the :keyword:`with` statement. In this example,\n" - "fp is closed after the suite of the with statment is complete:\n" + "fp is closed after the suite of the with statement is complete:\n" "\n" "with open('spam.txt', 'r') as fp:\n" " fp.write('Spam and eggs!')\n"); diff --git a/Modules/_io/stringio.c b/Modules/_io/stringio.c --- a/Modules/_io/stringio.c +++ b/Modules/_io/stringio.c @@ -157,7 +157,7 @@ 0 lo string_size hi | |<---used--->|<----------available----------->| | | <--to pad-->|<---to write---> | - 0 buf positon + 0 buf position */ memset(self->buf + self->string_size, '\0', diff --git a/Modules/_pickle.c b/Modules/_pickle.c --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -4874,7 +4874,7 @@ goto error; if (!PyDict_CheckExact(name_mapping_3to2)) { PyErr_Format(PyExc_RuntimeError, - "_compat_pickle.REVERSE_NAME_MAPPING shouldbe a dict, " + "_compat_pickle.REVERSE_NAME_MAPPING should be a dict, " "not %.200s", Py_TYPE(name_mapping_3to2)->tp_name); goto error; } diff --git a/Modules/_sqlite/connection.h b/Modules/_sqlite/connection.h --- a/Modules/_sqlite/connection.h +++ b/Modules/_sqlite/connection.h @@ -55,7 +55,7 @@ /* None for autocommit, otherwise a PyString with the isolation level */ PyObject* isolation_level; - /* NULL for autocommit, otherwise a string with the BEGIN statment; will be + /* NULL for autocommit, otherwise a string with the BEGIN statement; will be * freed in connection destructor */ char* begin_statement; diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c --- a/Modules/cmathmodule.c +++ b/Modules/cmathmodule.c @@ -22,7 +22,7 @@ /* CM_LARGE_DOUBLE is used to avoid spurious overflow in the sqrt, log, inverse trig and inverse hyperbolic trig functions. Its log is used in the - evaluation of exp, cos, cosh, sin, sinh, tan, and tanh to avoid unecessary + evaluation of exp, cos, cosh, sin, sinh, tan, and tanh to avoid unnecessary overflow. */ diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2151,7 +2151,7 @@ * This is the guts of the recv() and recv_into() methods, which reads into a * char buffer. If you have any inc/dec ref to do to the objects that contain * the buffer, do it in the caller. This function returns the number of bytes - * succesfully read. If there was an error, it returns -1. Note that it is + * successfully read. If there was an error, it returns -1. Note that it is * also possible that we return a number of bytes smaller than the request * bytes. */ @@ -2350,7 +2350,7 @@ * This is the guts of the recvfrom() and recvfrom_into() methods, which reads * into a char buffer. If you have any inc/def ref to do to the objects that * contain the buffer, do it in the caller. This function returns the number - * of bytes succesfully read. If there was an error, it returns -1. Note + * of bytes successfully read. If there was an error, it returns -1. Note * that it is also possible that we return a number of bytes smaller than the * request bytes. * @@ -2443,9 +2443,9 @@ if (outlen != recvlen) { /* We did not read as many bytes as we anticipated, resize the - string if possible and be succesful. */ + string if possible and be successful. */ if (_PyBytes_Resize(&buf, outlen) < 0) - /* Oopsy, not so succesful after all. */ + /* Oopsy, not so successful after all. */ goto finally; } @@ -4162,7 +4162,7 @@ return 0; /* Failure */ #else - /* No need to initialise sockets with GCC/EMX */ + /* No need to initialize sockets with GCC/EMX */ return 1; /* Success */ #endif } @@ -4195,7 +4195,7 @@ "socket.py" which implements some additional functionality. The import of "_socket" may fail with an ImportError exception if os-specific initialization fails. On Windows, this does WINSOCK - initialization. When WINSOCK is initialized succesfully, a call to + initialization. When WINSOCK is initialized successfully, a call to WSACleanup() is scheduled to be made at exit time. */ diff --git a/Modules/timemodule.c b/Modules/timemodule.c --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -706,7 +706,7 @@ buf.tm_wday = -1; /* sentinel; original value ignored */ tt = mktime(&buf); /* Return value of -1 does not necessarily mean an error, but tm_wday - * cannot remain set to -1 if mktime succedded. */ + * cannot remain set to -1 if mktime succeeded. */ if (tt == (time_t)(-1) && buf.tm_wday == -1) { PyErr_SetString(PyExc_OverflowError, "mktime argument out of range"); diff --git a/Modules/zipimport.c b/Modules/zipimport.c --- a/Modules/zipimport.c +++ b/Modules/zipimport.c @@ -1049,7 +1049,7 @@ } /* Given a path to a .pyc or .pyo file in the archive, return the - modifictaion time of the matching .py file, or 0 if no source + modification time of the matching .py file, or 0 if no source is available. */ static time_t get_mtime_of_source(ZipImporter *self, char *path) diff --git a/Modules/zlib/deflate.h b/Modules/zlib/deflate.h --- a/Modules/zlib/deflate.h +++ b/Modules/zlib/deflate.h @@ -188,7 +188,7 @@ int nice_match; /* Stop searching when current match exceeds this */ /* used by trees.c: */ - /* Didn't use ct_data typedef below to supress compiler warning */ + /* Didn't use ct_data typedef below to suppress compiler warning */ struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */ struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */ struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */ diff --git a/Modules/zlib/gzio.c b/Modules/zlib/gzio.c --- a/Modules/zlib/gzio.c +++ b/Modules/zlib/gzio.c @@ -256,7 +256,7 @@ /* =========================================================================== Read a byte from a gz_stream; update next_in and avail_in. Return EOF for end of file. - IN assertion: the stream s has been sucessfully opened for reading. + IN assertion: the stream s has been successfully opened for reading. */ local int get_byte(s) gz_stream *s; @@ -281,7 +281,7 @@ mode to transparent if the gzip magic header is not present; set s->err to Z_DATA_ERROR if the magic header is present but the rest of the header is incorrect. - IN assertion: the stream s has already been created sucessfully; + IN assertion: the stream s has already been created successfully; s->stream.avail_in is zero for the first time, but may be non-zero for concatenated .gz files. */ diff --git a/Objects/dictobject.c b/Objects/dictobject.c --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -2070,7 +2070,7 @@ assert(d->ma_table == NULL && d->ma_fill == 0 && d->ma_used == 0); INIT_NONZERO_DICT_SLOTS(d); d->ma_lookup = lookdict_unicode; - /* The object has been implicitely tracked by tp_alloc */ + /* The object has been implicitly tracked by tp_alloc */ if (type == &PyDict_Type) _PyObject_GC_UNTRACK(d); #ifdef SHOW_CONVERSION_COUNTS diff --git a/Objects/listobject.c b/Objects/listobject.c --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -11,7 +11,7 @@ /* Ensure ob_item has room for at least newsize elements, and set * ob_size to newsize. If newsize > ob_size on entry, the content * of the new slots at exit is undefined heap trash; it's the caller's - * responsiblity to overwrite them with sane values. + * responsibility to overwrite them with sane values. * The number of allocated elements may grow, shrink, or stay the same. * Failure is impossible if newsize <= self.allocated on entry, although * that partly relies on an assumption that the system realloc() never diff --git a/Objects/longobject.c b/Objects/longobject.c --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -712,7 +712,7 @@ is_signed = *pendbyte >= 0x80; /* Compute numsignificantbytes. This consists of finding the most - significant byte. Leading 0 bytes are insignficant if the number + significant byte. Leading 0 bytes are insignificant if the number is positive, and leading 0xff bytes if negative. */ { size_t i; @@ -3196,7 +3196,7 @@ if (failed) return NULL; /* 'aexp' and 'bexp' were initialized to -1 to silence gcc-4.0.x, - but should really be set correctly after sucessful calls to + but should really be set correctly after successful calls to _PyLong_AsScaledDouble() */ assert(aexp >= 0 && bexp >= 0); diff --git a/Objects/typeobject.c b/Objects/typeobject.c --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -1008,7 +1008,7 @@ self has a refcount of 0, and if gc ever gets its hands on it (which can happen if any weakref callback gets invoked), it looks like trash to gc too, and gc also tries to delete self - then. But we're already deleting self. Double dealloction is + then. But we're already deleting self. Double deallocation is a subtle disaster. Q. Why the bizarre (net-zero) manipulation of @@ -5872,7 +5872,7 @@ slots compete for the same descriptor (for example both sq_item and mp_subscript generate a __getitem__ descriptor). - In the latter case, the first slotdef entry encoutered wins. Since + In the latter case, the first slotdef entry encountered wins. Since slotdef entries are sorted by the offset of the slot in the PyHeapTypeObject, this gives us some control over disambiguating between competing slots: the members of PyHeapTypeObject are listed diff --git a/PC/bdist_wininst/extract.c b/PC/bdist_wininst/extract.c --- a/PC/bdist_wininst/extract.c +++ b/PC/bdist_wininst/extract.c @@ -54,7 +54,7 @@ return TRUE; } -/* XXX Should better explicitely specify +/* XXX Should better explicitly specify * uncomp_size and file_times instead of pfhdr! */ char *map_new_file(DWORD flags, char *filename, @@ -164,7 +164,7 @@ zstream.avail_out = uncomp_size; /* Apparently an undocumented feature of zlib: Set windowsize - to negative values to supress the gzip header and be compatible with + to negative values to suppress the gzip header and be compatible with zip! */ result = TRUE; if (Z_OK != (x = inflateInit2(&zstream, -15))) { diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c --- a/PC/bdist_wininst/install.c +++ b/PC/bdist_wininst/install.c @@ -148,7 +148,7 @@ the permissions of the current user. */ HKEY hkey_root = (HKEY)-1; -BOOL success; /* Installation successfull? */ +BOOL success; /* Installation successful? */ char *failure_reason = NULL; HANDLE hBitmap; @@ -797,7 +797,7 @@ tempname = tempnam(NULL, NULL); // We use a static CRT while the Python version we load uses - // the CRT from one of various possibile DLLs. As a result we + // the CRT from one of various possible DLLs. As a result we // need to redirect the standard handles using the API rather // than the CRT. redirected = CreateFile( diff --git a/PC/os2emx/dlfcn.c b/PC/os2emx/dlfcn.c --- a/PC/os2emx/dlfcn.c +++ b/PC/os2emx/dlfcn.c @@ -188,7 +188,7 @@ return NULL; } -/* free dynamicaly-linked library */ +/* free dynamically-linked library */ int dlclose(void *handle) { int rc; diff --git a/PC/os2emx/dlfcn.h b/PC/os2emx/dlfcn.h --- a/PC/os2emx/dlfcn.h +++ b/PC/os2emx/dlfcn.h @@ -42,7 +42,7 @@ /* return a pointer to the `symbol' in DLL */ void *dlsym(void *handle, char *symbol); -/* free dynamicaly-linked library */ +/* free dynamically-linked library */ int dlclose(void *handle); /* return a string describing last occurred dl error */ diff --git a/Python/ceval.c b/Python/ceval.c --- a/Python/ceval.c +++ b/Python/ceval.c @@ -27,7 +27,7 @@ typedef unsigned long long uint64; -/* PowerPC suppport. +/* PowerPC support. "__ppc__" appears to be the preprocessor definition to detect on OS X, whereas "__powerpc__" appears to be the correct one for Linux with GCC */ @@ -1169,7 +1169,7 @@ if (--_Py_Ticker < 0) { if (*next_instr == SETUP_FINALLY) { /* Make the last opcode before - a try: finally: block uninterruptable. */ + a try: finally: block uninterruptible. */ goto fast_next_opcode; } _Py_Ticker = _Py_CheckInterval; diff --git a/Python/pystate.c b/Python/pystate.c --- a/Python/pystate.c +++ b/Python/pystate.c @@ -503,7 +503,7 @@ /* for i in all interpreters: * for t in all of i's thread states: * if t's frame isn't NULL, map t's id to its frame - * Because these lists can mutute even when the GIL is held, we + * Because these lists can mutate even when the GIL is held, we * need to grab head_mutex for the duration. */ HEAD_LOCK(); diff --git a/Python/thread.c b/Python/thread.c --- a/Python/thread.c +++ b/Python/thread.c @@ -46,7 +46,7 @@ #endif /* Check if we're running on HP-UX and _SC_THREADS is defined. If so, then - enough of the Posix threads package is implimented to support python + enough of the Posix threads package is implemented to support python threads. This is valid for HP-UX 11.23 running on an ia64 system. If needed, add diff --git a/Tools/freeze/checkextensions_win32.py b/Tools/freeze/checkextensions_win32.py --- a/Tools/freeze/checkextensions_win32.py +++ b/Tools/freeze/checkextensions_win32.py @@ -7,7 +7,7 @@ we get it just right, a specific freeze application may have specific compiler options anyway (eg, to enable or disable specific functionality) -So my basic stragtegy is: +So my basic strategy is: * Have some Windows INI files which "describe" one or more extension modules. (Freeze comes with a default one for all known modules - but you can specify diff --git a/Tools/scripts/fixcid.py b/Tools/scripts/fixcid.py --- a/Tools/scripts/fixcid.py +++ b/Tools/scripts/fixcid.py @@ -188,7 +188,7 @@ except os.error as msg: err(filename + ': rename failed (' + str(msg) + ')\n') return 1 - # Return succes + # Return success return 0 # Tokenizing ANSI C (partly) diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py --- a/Tools/unicode/makeunicodedata.py +++ b/Tools/unicode/makeunicodedata.py @@ -866,7 +866,7 @@ poly = size + poly break else: - raise AssertionError("ran out of polynominals") + raise AssertionError("ran out of polynomials") print(size, "slots in hash table") diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -993,8 +993,8 @@ if sys.platform == 'darwin': # In every directory on the search path search for a dynamic # library and then a static library, instead of first looking - # for dynamic libraries on the entiry path. - # This way a staticly linked custom sqlite gets picked up + # for dynamic libraries on the entire path. + # This way a statically linked custom sqlite gets picked up # before the dynamic library in /usr/lib. sqlite_extra_link_args = ('-Wl,-search_paths_first',) else: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 10:36:30 2011 From: python-checkins at python.org (ezio.melotti) Date: Wed, 16 Mar 2011 10:36:30 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): #11565: Merge with 3.1. Message-ID: http://hg.python.org/cpython/rev/dc245d681901 changeset: 68586:dc245d681901 branch: 3.2 parent: 68581:9a817ab166e0 parent: 68585:bf94b6a73fc8 user: Ezio Melotti date: Wed Mar 16 11:35:38 2011 +0200 summary: #11565: Merge with 3.1. files: Include/abstract.h Include/pymacconfig.h Lib/csv.py Lib/ctypes/test/test_arrays.py Lib/ctypes/test/test_win32.py Lib/difflib.py Lib/distutils/cmd.py Lib/distutils/cygwinccompiler.py Lib/distutils/tests/test_install.py Lib/distutils/tests/test_sdist.py Lib/doctest.py Lib/email/header.py Lib/idlelib/macosxSupport.py Lib/lib2to3/tests/data/py2_test_grammar.py Lib/lib2to3/tests/data/py3_test_grammar.py Lib/ntpath.py Lib/pickletools.py Lib/platform.py Lib/pstats.py Lib/subprocess.py Lib/test/datetimetester.py Lib/test/test_capi.py Lib/test/test_datetime.py Lib/test/test_decimal.py Lib/test/test_descr.py Lib/test/test_doctest.py Lib/test/test_extcall.py Lib/test/test_float.py Lib/test/test_grammar.py Lib/test/test_httpservers.py Lib/test/test_itertools.py Lib/test/test_marshal.py Lib/test/test_math.py Lib/test/test_mmap.py Lib/test/test_multiprocessing.py Lib/test/test_pkg.py Lib/test/test_print.py Lib/test/test_strptime.py Lib/test/test_struct.py Lib/test/test_syntax.py Lib/test/test_sys.py Lib/test/test_threading.py Lib/test/test_trace.py Lib/test/test_urllib.py Lib/test/test_warnings.py Lib/tkinter/tix.py Lib/tkinter/ttk.py Lib/turtle.py Lib/turtledemo/bytedesign.py Lib/xml/dom/minidom.py Lib/xmlrpc/server.py Mac/BuildScript/build-installer.py Modules/_ctypes/_ctypes.c Modules/_ctypes/callbacks.c Modules/_ctypes/callproc.c Modules/_functoolsmodule.c Modules/_io/iobase.c Modules/_io/stringio.c Modules/_pickle.c Modules/_sqlite/connection.h Modules/cmathmodule.c Modules/socketmodule.c Modules/timemodule.c Modules/zipimport.c Modules/zlib/deflate.h Objects/dictobject.c Objects/listobject.c Objects/longobject.c Objects/typeobject.c Python/ceval.c Python/pystate.c Python/thread.c Tools/scripts/fixcid.py Tools/unicode/makeunicodedata.py setup.py diff --git a/Doc/includes/sqlite3/shared_cache.py b/Doc/includes/sqlite3/shared_cache.py --- a/Doc/includes/sqlite3/shared_cache.py +++ b/Doc/includes/sqlite3/shared_cache.py @@ -1,6 +1,6 @@ import sqlite3 # The shared cache is only available in SQLite versions 3.3.3 or later -# See the SQLite documentaton for details. +# See the SQLite documentation for details. sqlite3.enable_shared_cache(True) diff --git a/Include/abstract.h b/Include/abstract.h --- a/Include/abstract.h +++ b/Include/abstract.h @@ -468,7 +468,7 @@ arbitrary data. 0 is returned on success. buffer and buffer_len are only - set in case no error occurrs. Otherwise, -1 is returned and + set in case no error occurs. Otherwise, -1 is returned and an exception set. */ @@ -482,7 +482,7 @@ writable memory location in buffer of size buffer_len. 0 is returned on success. buffer and buffer_len are only - set in case no error occurrs. Otherwise, -1 is returned and + set in case no error occurs. Otherwise, -1 is returned and an exception set. */ diff --git a/Include/pymacconfig.h b/Include/pymacconfig.h --- a/Include/pymacconfig.h +++ b/Include/pymacconfig.h @@ -61,7 +61,7 @@ # endif # if defined(__LP64__) - /* MacOSX 10.4 (the first release to suppport 64-bit code + /* MacOSX 10.4 (the first release to support 64-bit code * at all) only supports 64-bit in the UNIX layer. * Therefore surpress the toolbox-glue in 64-bit mode. */ diff --git a/Lib/csv.py b/Lib/csv.py --- a/Lib/csv.py +++ b/Lib/csv.py @@ -284,7 +284,7 @@ an all or nothing approach, so we allow for small variations in this number. 1) build a table of the frequency of each character on every line. - 2) build a table of freqencies of this frequency (meta-frequency?), + 2) build a table of frequencies of this frequency (meta-frequency?), e.g. 'x occurred 5 times in 10 rows, 6 times in 1000 rows, 7 times in 2 rows' 3) use the mode of the meta-frequency to determine the /expected/ diff --git a/Lib/ctypes/test/test_arrays.py b/Lib/ctypes/test/test_arrays.py --- a/Lib/ctypes/test/test_arrays.py +++ b/Lib/ctypes/test/test_arrays.py @@ -37,7 +37,7 @@ values = [ia[i] for i in range(len(init))] self.assertEqual(values, [0] * len(init)) - # Too many in itializers should be caught + # Too many initializers should be caught self.assertRaises(IndexError, int_array, *range(alen*2)) CharArray = ARRAY(c_char, 3) diff --git a/Lib/ctypes/test/test_init.py b/Lib/ctypes/test/test_init.py --- a/Lib/ctypes/test/test_init.py +++ b/Lib/ctypes/test/test_init.py @@ -27,7 +27,7 @@ self.assertEqual((y.x.a, y.x.b), (0, 0)) self.assertEqual(y.x.new_was_called, False) - # But explicitely creating an X structure calls __new__ and __init__, of course. + # But explicitly creating an X structure calls __new__ and __init__, of course. x = X() self.assertEqual((x.a, x.b), (9, 12)) self.assertEqual(x.new_was_called, True) diff --git a/Lib/ctypes/test/test_numbers.py b/Lib/ctypes/test/test_numbers.py --- a/Lib/ctypes/test/test_numbers.py +++ b/Lib/ctypes/test/test_numbers.py @@ -157,7 +157,7 @@ def test_int_from_address(self): from array import array for t in signed_types + unsigned_types: - # the array module doesn't suppport all format codes + # the array module doesn't support all format codes # (no 'q' or 'Q') try: array(t._type_) diff --git a/Lib/ctypes/test/test_win32.py b/Lib/ctypes/test/test_win32.py --- a/Lib/ctypes/test/test_win32.py +++ b/Lib/ctypes/test/test_win32.py @@ -17,7 +17,7 @@ # ValueError: Procedure probably called with not enough arguments (4 bytes missing) self.assertRaises(ValueError, IsWindow) - # This one should succeeed... + # This one should succeed... self.assertEqual(0, IsWindow(0)) # ValueError: Procedure probably called with too many arguments (8 bytes in excess) diff --git a/Lib/difflib.py b/Lib/difflib.py --- a/Lib/difflib.py +++ b/Lib/difflib.py @@ -1719,7 +1719,7 @@ line = line.replace(' ','\0') # expand tabs into spaces line = line.expandtabs(self._tabsize) - # relace spaces from expanded tabs back into tab characters + # replace spaces from expanded tabs back into tab characters # (we'll replace them with markup after we do differencing) line = line.replace(' ','\t') return line.replace('\0',' ').rstrip('\n') diff --git a/Lib/distutils/cmd.py b/Lib/distutils/cmd.py --- a/Lib/distutils/cmd.py +++ b/Lib/distutils/cmd.py @@ -359,7 +359,7 @@ not self.force, dry_run=self.dry_run) def move_file (self, src, dst, level=1): - """Move a file respectin dry-run flag.""" + """Move a file respecting dry-run flag.""" return file_util.move_file(src, dst, dry_run=self.dry_run) def spawn(self, cmd, search_path=1, level=1): diff --git a/Lib/distutils/cygwinccompiler.py b/Lib/distutils/cygwinccompiler.py --- a/Lib/distutils/cygwinccompiler.py +++ b/Lib/distutils/cygwinccompiler.py @@ -155,7 +155,7 @@ self.dll_libraries = get_msvcr() def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): - """Compiles the source by spawing GCC and windres if needed.""" + """Compiles the source by spawning GCC and windres if needed.""" if ext == '.rc' or ext == '.res': # gcc needs '.res' and '.rc' compiled to object files !!! try: diff --git a/Lib/distutils/tests/test_clean.py b/Lib/distutils/tests/test_clean.py --- a/Lib/distutils/tests/test_clean.py +++ b/Lib/distutils/tests/test_clean.py @@ -39,7 +39,7 @@ self.assertTrue(not os.path.exists(path), '%s was not removed' % path) - # let's run the command again (should spit warnings but suceed) + # let's run the command again (should spit warnings but succeed) cmd.all = 1 cmd.ensure_finalized() cmd.run() diff --git a/Lib/distutils/tests/test_install.py b/Lib/distutils/tests/test_install.py --- a/Lib/distutils/tests/test_install.py +++ b/Lib/distutils/tests/test_install.py @@ -62,7 +62,7 @@ if sys.version < '2.6': return - # preparing the environement for the test + # preparing the environment for the test self.old_user_base = site.USER_BASE self.old_user_site = site.USER_SITE self.tmpdir = self.mkdtemp() diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -311,7 +311,7 @@ # adding a file self.write_file((self.tmp_dir, 'somecode', 'doc2.txt'), '#') - # make sure build_py is reinitinialized, like a fresh run + # make sure build_py is reinitialized, like a fresh run build_py = dist.get_command_obj('build_py') build_py.finalized = False build_py.ensure_finalized() diff --git a/Lib/doctest.py b/Lib/doctest.py --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -1211,7 +1211,7 @@ # Process each example. for examplenum, example in enumerate(test.examples): - # If REPORT_ONLY_FIRST_FAILURE is set, then supress + # If REPORT_ONLY_FIRST_FAILURE is set, then suppress # reporting after the first failure. quiet = (self.optionflags & REPORT_ONLY_FIRST_FAILURE and failures > 0) @@ -2133,7 +2133,7 @@ caller can catch the errors and initiate post-mortem debugging. The DocTestCase provides a debug method that raises - UnexpectedException errors if there is an unexepcted + UnexpectedException errors if there is an unexpected exception: >>> test = DocTestParser().get_doctest('>>> raise KeyError\n42', diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -47,7 +47,7 @@ # For use with .match() fcre = re.compile(r'[\041-\176]+:$') -# Find a header embeded in a putative header value. Used to check for +# Find a header embedded in a putative header value. Used to check for # header injection attack. _embeded_header = re.compile(r'\n[^ \t]+:') diff --git a/Lib/idlelib/FormatParagraph.py b/Lib/idlelib/FormatParagraph.py --- a/Lib/idlelib/FormatParagraph.py +++ b/Lib/idlelib/FormatParagraph.py @@ -54,7 +54,7 @@ # If the block ends in a \n, we dont want the comment # prefix inserted after it. (Im not sure it makes sense to # reformat a comment block that isnt made of complete - # lines, but whatever!) Can't think of a clean soltution, + # lines, but whatever!) Can't think of a clean solution, # so we hack away block_suffix = "" if not newdata[-1]: diff --git a/Lib/idlelib/extend.txt b/Lib/idlelib/extend.txt --- a/Lib/idlelib/extend.txt +++ b/Lib/idlelib/extend.txt @@ -18,7 +18,7 @@ An IDLE extension class is instantiated with a single argument, `editwin', an EditorWindow instance. The extension cannot assume much -about this argument, but it is guarateed to have the following instance +about this argument, but it is guaranteed to have the following instance variables: text a Text instance (a widget) diff --git a/Lib/idlelib/macosxSupport.py b/Lib/idlelib/macosxSupport.py --- a/Lib/idlelib/macosxSupport.py +++ b/Lib/idlelib/macosxSupport.py @@ -53,8 +53,8 @@ def addOpenEventSupport(root, flist): """ - This ensures that the application will respont to open AppleEvents, which - makes is feaseable to use IDLE as the default application for python files. + This ensures that the application will respond to open AppleEvents, which + makes is feasible to use IDLE as the default application for python files. """ def doOpenFile(*args): for fn in args: diff --git a/Lib/lib2to3/fixes/fix_metaclass.py b/Lib/lib2to3/fixes/fix_metaclass.py --- a/Lib/lib2to3/fixes/fix_metaclass.py +++ b/Lib/lib2to3/fixes/fix_metaclass.py @@ -48,7 +48,7 @@ """ for node in cls_node.children: if node.type == syms.suite: - # already in the prefered format, do nothing + # already in the preferred format, do nothing return # !%@#! oneliners have no suite node, we have to fake one up diff --git a/Lib/lib2to3/pgen2/conv.py b/Lib/lib2to3/pgen2/conv.py --- a/Lib/lib2to3/pgen2/conv.py +++ b/Lib/lib2to3/pgen2/conv.py @@ -51,7 +51,7 @@ self.finish_off() def parse_graminit_h(self, filename): - """Parse the .h file writen by pgen. (Internal) + """Parse the .h file written by pgen. (Internal) This file is a sequence of #define statements defining the nonterminals of the grammar as numbers. We build two tables @@ -82,7 +82,7 @@ return True def parse_graminit_c(self, filename): - """Parse the .c file writen by pgen. (Internal) + """Parse the .c file written by pgen. (Internal) The file looks as follows. The first two lines are always this: diff --git a/Lib/lib2to3/pytree.py b/Lib/lib2to3/pytree.py --- a/Lib/lib2to3/pytree.py +++ b/Lib/lib2to3/pytree.py @@ -658,8 +658,8 @@ content: optional sequence of subsequences of patterns; if absent, matches one node; if present, each subsequence is an alternative [*] - min: optinal minumum number of times to match, default 0 - max: optional maximum number of times tro match, default HUGE + min: optional minimum number of times to match, default 0 + max: optional maximum number of times to match, default HUGE name: optional name assigned to this match [*] Thus, if content is [[a, b, c], [d, e], [f, g, h]] this is diff --git a/Lib/lib2to3/tests/data/py2_test_grammar.py b/Lib/lib2to3/tests/data/py2_test_grammar.py --- a/Lib/lib2to3/tests/data/py2_test_grammar.py +++ b/Lib/lib2to3/tests/data/py2_test_grammar.py @@ -316,7 +316,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/lib2to3/tests/data/py3_test_grammar.py b/Lib/lib2to3/tests/data/py3_test_grammar.py --- a/Lib/lib2to3/tests/data/py3_test_grammar.py +++ b/Lib/lib2to3/tests/data/py3_test_grammar.py @@ -356,7 +356,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/ntpath.py b/Lib/ntpath.py --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -405,7 +405,7 @@ # - $varname is accepted. # - %varname% is accepted. # - varnames can be made out of letters, digits and the characters '_-' -# (though is not verifed in the ${varname} and %varname% cases) +# (though is not verified in the ${varname} and %varname% cases) # XXX With COMMAND.COM you can use any characters in a variable name, # XXX except '^|<>='. diff --git a/Lib/pickletools.py b/Lib/pickletools.py --- a/Lib/pickletools.py +++ b/Lib/pickletools.py @@ -1406,7 +1406,7 @@ proto=0, doc="""Read an object from the memo and push it on the stack. - The index of the memo object to push is given by the newline-teriminated + The index of the memo object to push is given by the newline-terminated decimal string following. BINGET and LONG_BINGET are space-optimized versions. """), diff --git a/Lib/platform.py b/Lib/platform.py --- a/Lib/platform.py +++ b/Lib/platform.py @@ -498,7 +498,7 @@ info = pipe.read() if pipe.close(): raise os.error('command failed') - # XXX How can I supress shell errors from being written + # XXX How can I suppress shell errors from being written # to stderr ? except os.error as why: #print 'Command %s failed: %s' % (cmd,why) diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -947,7 +947,7 @@ except pywintypes.error as e: # Translate pywintypes.error to WindowsError, which is # a subclass of OSError. FIXME: We should really - # translate errno using _sys_errlist (or simliar), but + # translate errno using _sys_errlist (or similar), but # how can this be done from Python? raise WindowsError(*e.args) finally: diff --git a/Lib/test/datetimetester.py b/Lib/test/datetimetester.py --- a/Lib/test/datetimetester.py +++ b/Lib/test/datetimetester.py @@ -3414,7 +3414,7 @@ self.assertEqual(dt, there_and_back) # Because we have a redundant spelling when DST begins, there is - # (unforunately) an hour when DST ends that can't be spelled at all in + # (unfortunately) an hour when DST ends that can't be spelled at all in # local time. When DST ends, the clock jumps from 1:59 back to 1:00 # again. The hour 1:MM DST has no spelling then: 1:MM is taken to be # standard time. 1:MM DST == 0:MM EST, but 0:MM is taken to be diff --git a/Lib/test/pyclbr_input.py b/Lib/test/pyclbr_input.py --- a/Lib/test/pyclbr_input.py +++ b/Lib/test/pyclbr_input.py @@ -19,7 +19,7 @@ # XXX: This causes test_pyclbr.py to fail, but only because the # introspection-based is_method() code in the test can't - # distinguish between this and a geniune method function like m(). + # distinguish between this and a genuine method function like m(). # The pyclbr.py module gets this right as it parses the text. # #f = f diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py --- a/Lib/test/test_capi.py +++ b/Lib/test/test_capi.py @@ -127,7 +127,7 @@ context.event.set() def test_pendingcalls_non_threaded(self): - #again, just using the main thread, likely they will all be dispathced at + #again, just using the main thread, likely they will all be dispatched at #once. It is ok to ask for too many, because we loop until we find a slot. #the loop can be interrupted to dispatch. #there are only 32 dispatch slots, so we go for twice that! diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -228,7 +228,7 @@ try: t = self.eval_line(line) except DecimalException as exception: - #Exception raised where there shoudn't have been one. + #Exception raised where there shouldn't have been one. self.fail('Exception "'+exception.__class__.__name__ + '" raised on line '+line) return diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -3967,7 +3967,7 @@ except TypeError: pass else: - self.fail("Carlo Verre __setattr__ suceeded!") + self.fail("Carlo Verre __setattr__ succeeded!") try: object.__delattr__(str, "lower") except TypeError: diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -1296,7 +1296,7 @@ ? + ++ ^ TestResults(failed=1, attempted=1) -The REPORT_ONLY_FIRST_FAILURE supresses result output after the first +The REPORT_ONLY_FIRST_FAILURE suppresses result output after the first failing example: >>> def f(x): @@ -1326,7 +1326,7 @@ 2 TestResults(failed=3, attempted=5) -However, output from `report_start` is not supressed: +However, output from `report_start` is not suppressed: >>> doctest.DocTestRunner(verbose=True, optionflags=flags).run(test) ... # doctest: +ELLIPSIS @@ -2276,7 +2276,7 @@ >>> doctest.master = None # Reset master. (Note: we'll be clearing doctest.master after each call to -`doctest.testfile`, to supress warnings about multiple tests with the +`doctest.testfile`, to suppress warnings about multiple tests with the same name.) Globals may be specified with the `globs` and `extraglobs` parameters: @@ -2312,7 +2312,7 @@ TestResults(failed=0, attempted=2) >>> doctest.master = None # Reset master. -Verbosity can be increased with the optional `verbose` paremter: +Verbosity can be increased with the optional `verbose` parameter: >>> doctest.testfile('test_doctest.txt', globs=globs, verbose=True) Trying: @@ -2349,7 +2349,7 @@ TestResults(failed=1, attempted=2) >>> doctest.master = None # Reset master. -The summary report may be supressed with the optional `report` +The summary report may be suppressed with the optional `report` parameter: >>> doctest.testfile('test_doctest.txt', report=False) diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py --- a/Lib/test/test_extcall.py +++ b/Lib/test/test_extcall.py @@ -228,7 +228,7 @@ >>> Foo.method(1, *[2, 3]) 5 -A PyCFunction that takes only positional parameters shoud allow an +A PyCFunction that takes only positional parameters should allow an empty keyword dictionary to pass without a complaint, but raise a TypeError if te dictionary is not empty diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -67,7 +67,7 @@ def test_float_with_comma(self): # set locale to something that doesn't use '.' for the decimal point # float must not accept the locale specific decimal point but - # it still has to accept the normal python syntac + # it still has to accept the normal python syntax import locale if not locale.localeconv()['decimal_point'] == ',': return @@ -189,7 +189,7 @@ def assertEqualAndEqualSign(self, a, b): # fail unless a == b and a and b have the same sign bit; # the only difference from assertEqual is that this test - # distingishes -0.0 and 0.0. + # distinguishes -0.0 and 0.0. self.assertEqual((a, copysign(1.0, a)), (b, copysign(1.0, b))) @support.requires_IEEE_754 diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -350,7 +350,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -462,7 +462,7 @@ return False class BaseHTTPRequestHandlerTestCase(unittest.TestCase): - """Test the functionaility of the BaseHTTPServer. + """Test the functionality of the BaseHTTPServer. Test the support for the Expect 100-continue header. """ diff --git a/Lib/test/test_iterlen.py b/Lib/test/test_iterlen.py --- a/Lib/test/test_iterlen.py +++ b/Lib/test/test_iterlen.py @@ -20,11 +20,11 @@ Some containers become temporarily immutable during iteration. This includes dicts, sets, and collections.deque. Their implementation is equally simple -though they need to permantently set their length to zero whenever there is +though they need to permanently set their length to zero whenever there is an attempt to iterate after a length mutation. The situation slightly more involved whenever an object allows length mutation -during iteration. Lists and sequence iterators are dynanamically updatable. +during iteration. Lists and sequence iterators are dynamically updatable. So, if a list is extended during iteration, the iterator will continue through the new items. If it shrinks to a point before the most recent iteration, then no further items are available and the length is reported at zero. diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -1526,7 +1526,7 @@ ... return chain(iterable, repeat(None)) >>> def ncycles(iterable, n): -... "Returns the seqeuence elements n times" +... "Returns the sequence elements n times" ... return chain(*repeat(iterable, n)) >>> def dotproduct(vec1, vec2): diff --git a/Lib/test/test_marshal.py b/Lib/test/test_marshal.py --- a/Lib/test/test_marshal.py +++ b/Lib/test/test_marshal.py @@ -194,7 +194,7 @@ # >>> type(loads(dumps(Int()))) # for typ in (int, float, complex, tuple, list, dict, set, frozenset): - # Note: str sublclasses are not tested because they get handled + # Note: str subclasses are not tested because they get handled # by marshal's routines for objects supporting the buffer API. subtyp = type('subtyp', (typ,), {}) self.assertRaises(ValueError, marshal.dumps, subtyp()) diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -820,7 +820,7 @@ # the following tests have been commented out since they don't # really belong here: the implementation of ** for floats is - # independent of the implemention of math.pow + # independent of the implementation of math.pow #self.assertEqual(1**NAN, 1) #self.assertEqual(1**INF, 1) #self.assertEqual(1**NINF, 1) diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -594,7 +594,7 @@ m2.close() m1.close() - # Test differnt tag + # Test different tag m1 = mmap.mmap(-1, len(data1), tagname="foo") m1[:] = data1 m2 = mmap.mmap(-1, len(data2), tagname="boo") diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -783,7 +783,7 @@ event = self.Event() wait = TimingWrapper(event.wait) - # Removed temporaily, due to API shear, this does not + # Removed temporarily, due to API shear, this does not # work with threading._Event objects. is_set == isSet self.assertEqual(event.is_set(), False) @@ -1753,7 +1753,7 @@ util.Finalize(None, conn.send, args=('STOP',), exitpriority=-100) - # call mutliprocessing's cleanup function then exit process without + # call multiprocessing's cleanup function then exit process without # garbage collecting locals util._exit_function() conn.close() diff --git a/Lib/test/test_pkg.py b/Lib/test/test_pkg.py --- a/Lib/test/test_pkg.py +++ b/Lib/test/test_pkg.py @@ -56,7 +56,7 @@ if self.root: # Only clean if the test was actually run cleanout(self.root) - # delete all modules concerning the tested hiearchy + # delete all modules concerning the tested hierarchy if self.pkgname: modules = [name for name in sys.modules if self.pkgname in name.split('.')] diff --git a/Lib/test/test_print.py b/Lib/test/test_print.py --- a/Lib/test/test_print.py +++ b/Lib/test/test_print.py @@ -20,7 +20,7 @@ # A dispatch table all 8 combinations of providing # sep, end, and file # I use this machinery so that I'm not just passing default -# values to print, I'm eiher passing or not passing in the +# values to print, I'm either passing or not passing in the # arguments dispatch = { (False, False, False): diff --git a/Lib/test/test_strlit.py b/Lib/test/test_strlit.py --- a/Lib/test/test_strlit.py +++ b/Lib/test/test_strlit.py @@ -22,7 +22,7 @@ exec()/eval(), which uses a different code path. This file is really about correct treatment of encodings and -backslashes. It doens't concern itself with issues like single +backslashes. It doesn't concern itself with issues like single vs. double quotes or singly- vs. triply-quoted strings: that's dealt with elsewhere (I assume). """ diff --git a/Lib/test/test_strptime.py b/Lib/test/test_strptime.py --- a/Lib/test/test_strptime.py +++ b/Lib/test/test_strptime.py @@ -536,7 +536,7 @@ self.assertIsNot(first_time_re, second_time_re) # Possible test locale is not supported while initial locale is. # If this is the case just suppress the exception and fall-through - # to the reseting to the original locale. + # to the resetting to the original locale. except locale.Error: pass # Make sure we don't trample on the locale setting once we leave the diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py --- a/Lib/test/test_struct.py +++ b/Lib/test/test_struct.py @@ -463,7 +463,7 @@ test_string) def test_unpack_with_buffer(self): - # SF bug 1563759: struct.unpack doens't support buffer protocol objects + # SF bug 1563759: struct.unpack doesn't support buffer protocol objects data1 = array.array('B', b'\x12\x34\x56\x78') data2 = memoryview(b'\x12\x34\x56\x78') # XXX b'......XXXX......', 6, 4 for data in [data1, data2]: diff --git a/Lib/test/test_syntax.py b/Lib/test/test_syntax.py --- a/Lib/test/test_syntax.py +++ b/Lib/test/test_syntax.py @@ -237,7 +237,7 @@ Test continue in finally in weird combinations. -continue in for loop under finally shouuld be ok. +continue in for loop under finally should be ok. >>> def test(): ... try: diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -491,7 +491,7 @@ # provide too much opportunity for insane things to happen. # We don't want them in the interned dict and if they aren't # actually interned, we don't want to create the appearance - # that they are by allowing intern() to succeeed. + # that they are by allowing intern() to succeed. class S(str): def __hash__(self): return 123 diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -570,7 +570,7 @@ # This acquires the lock and then waits until the child has forked # before returning, which will release the lock soon after. If # someone else tries to fix this test case by acquiring this lock - # before forking instead of reseting it, the test case will + # before forking instead of resetting it, the test case will # deadlock when it shouldn't. condition = w._block orig_acquire = condition.acquire diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py --- a/Lib/test/test_trace.py +++ b/Lib/test/test_trace.py @@ -207,7 +207,7 @@ (self.my_py_filename, firstlineno + 4): 1, } - # When used through 'run', some other spurios counts are produced, like + # When used through 'run', some other spurious counts are produced, like # the settrace of threading, which we ignore, just making sure that the # counts fo traced_func_loop were right. # diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -1021,7 +1021,7 @@ # Just commented them out. # Can't really tell why keep failing in windows and sparc. -# Everywhere else they work ok, but on those machines, someteimes +# Everywhere else they work ok, but on those machines, sometimes # fail in one of the tests, sometimes in other. I have a linux, and # the tests go ok. # If anybody has one of the problematic enviroments, please help! diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py --- a/Lib/test/test_warnings.py +++ b/Lib/test/test_warnings.py @@ -332,7 +332,7 @@ sys.argv = argv def test_warn_explicit_type_errors(self): - # warn_explicit() shoud error out gracefully if it is given objects + # warn_explicit() should error out gracefully if it is given objects # of the wrong types. # lineno is expected to be an integer. self.assertRaises(TypeError, self.module.warn_explicit, diff --git a/Lib/tkinter/test/test_ttk/test_functions.py b/Lib/tkinter/test/test_ttk/test_functions.py --- a/Lib/tkinter/test/test_ttk/test_functions.py +++ b/Lib/tkinter/test/test_ttk/test_functions.py @@ -135,7 +135,7 @@ # minimum acceptable for image type self.assertEqual(ttk._format_elemcreate('image', False, 'test'), ("test ", ())) - # specifiyng a state spec + # specifying a state spec self.assertEqual(ttk._format_elemcreate('image', False, 'test', ('', 'a')), ("test {} a", ())) # state spec with multiple states diff --git a/Lib/tkinter/tix.py b/Lib/tkinter/tix.py --- a/Lib/tkinter/tix.py +++ b/Lib/tkinter/tix.py @@ -171,7 +171,7 @@ return self.tk.call('tix', 'getimage', name) def tix_option_get(self, name): - """Gets the options manitained by the Tix + """Gets the options maintained by the Tix scheme mechanism. Available options include: active_bg active_fg bg @@ -576,7 +576,7 @@ class ComboBox(TixWidget): """ComboBox - an Entry field with a dropdown menu. The user can select a - choice by either typing in the entry subwdget or selecting from the + choice by either typing in the entry subwidget or selecting from the listbox subwidget. Subwidget Class @@ -869,7 +869,7 @@ """HList - Hierarchy display widget can be used to display any data that have a hierarchical structure, for example, file system directory trees. The list entries are indented and connected by branch lines - according to their places in the hierachy. + according to their places in the hierarchy. Subwidgets - None""" @@ -1519,7 +1519,7 @@ self.tk.call(self._w, 'selection', 'set', first, last) class Tree(TixWidget): - """Tree - The tixTree widget can be used to display hierachical + """Tree - The tixTree widget can be used to display hierarchical data in a tree form. The user can adjust the view of the tree by opening or closing parts of the tree.""" diff --git a/Lib/tkinter/ttk.py b/Lib/tkinter/ttk.py --- a/Lib/tkinter/ttk.py +++ b/Lib/tkinter/ttk.py @@ -707,7 +707,7 @@ textvariable, values, width """ # The "values" option may need special formatting, so leave to - # _format_optdict the responsability to format it + # _format_optdict the responsibility to format it if "values" in kw: kw["values"] = _format_optdict({'v': kw["values"]})[1] diff --git a/Lib/turtle.py b/Lib/turtle.py --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -1488,7 +1488,7 @@ Optional arguments: canvwidth -- positive integer, new width of canvas in pixels canvheight -- positive integer, new height of canvas in pixels - bg -- colorstring or color-tupel, new backgroundcolor + bg -- colorstring or color-tuple, new backgroundcolor If no arguments are given, return current (canvaswidth, canvasheight) Do not alter the drawing window. To observe hidden parts of @@ -3242,9 +3242,9 @@ fill="", width=ps) # Turtle now at position old, self._position = old - ## if undo is done during crating a polygon, the last vertex - ## will be deleted. if the polygon is entirel deleted, - ## creatigPoly will be set to False. + ## if undo is done during creating a polygon, the last vertex + ## will be deleted. if the polygon is entirely deleted, + ## creatingPoly will be set to False. ## Polygons created before the last one will not be affected by undo() if self._creatingPoly: if len(self._poly) > 0: @@ -3796,7 +3796,7 @@ class Turtle(RawTurtle): - """RawTurtle auto-crating (scrolled) canvas. + """RawTurtle auto-creating (scrolled) canvas. When a Turtle object is created or a function derived from some Turtle method is called a TurtleScreen object is automatically created. @@ -3836,7 +3836,7 @@ filename -- a string, used as filename default value is turtle_docstringdict - Has to be called explicitely, (not used by the turtle-graphics classes) + Has to be called explicitly, (not used by the turtle-graphics classes) The docstring dictionary will be written to the Python script .py It is intended to serve as a template for translation of the docstrings into different languages. diff --git a/Lib/turtledemo/bytedesign.py b/Lib/turtledemo/bytedesign.py --- a/Lib/turtledemo/bytedesign.py +++ b/Lib/turtledemo/bytedesign.py @@ -4,7 +4,7 @@ tdemo_bytedesign.py An example adapted from the example-suite -of PythonCard's turtle graphcis. +of PythonCard's turtle graphics. It's based on an article in BYTE magazine Problem Solving with Logo: Using Turtle diff --git a/Lib/xml/dom/minicompat.py b/Lib/xml/dom/minicompat.py --- a/Lib/xml/dom/minicompat.py +++ b/Lib/xml/dom/minicompat.py @@ -6,7 +6,7 @@ # # NodeList -- lightest possible NodeList implementation # -# EmptyNodeList -- lightest possible NodeList that is guarateed to +# EmptyNodeList -- lightest possible NodeList that is guaranteed to # remain empty (immutable) # # StringTypes -- tuple of defined string types diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -1905,7 +1905,7 @@ e._call_user_data_handler(operation, n, entity) else: # Note the cloning of Document and DocumentType nodes is - # implemenetation specific. minidom handles those cases + # implementation specific. minidom handles those cases # directly in the cloneNode() methods. raise xml.dom.NotSupportedErr("Cannot clone node %s" % repr(node)) diff --git a/Lib/xmlrpc/server.py b/Lib/xmlrpc/server.py --- a/Lib/xmlrpc/server.py +++ b/Lib/xmlrpc/server.py @@ -240,7 +240,7 @@ marshalled data. For backwards compatibility, a dispatch function can be provided as an argument (see comment in SimpleXMLRPCRequestHandler.do_POST) but overriding the - existing method through subclassing is the prefered means + existing method through subclassing is the preferred means of changing method dispatch behavior. """ diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -362,7 +362,7 @@ def runCommand(commandline): """ - Run a command and raise RuntimeError if it fails. Output is surpressed + Run a command and raise RuntimeError if it fails. Output is suppressed unless the command fails. """ fd = os.popen(commandline, 'r') diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -3317,7 +3317,7 @@ /* XXX XXX This would allow to pass additional options. For COM method *implementations*, we would probably want different behaviour than in 'normal' callback functions: return a HRESULT if - an exception occurrs in the callback, and print the traceback not + an exception occurs in the callback, and print the traceback not only on the console, but also to OutputDebugString() or something like that. */ diff --git a/Modules/_ctypes/callbacks.c b/Modules/_ctypes/callbacks.c --- a/Modules/_ctypes/callbacks.c +++ b/Modules/_ctypes/callbacks.c @@ -202,7 +202,7 @@ /* XXX XXX XX We have the problem that c_byte or c_short have dict->size of 1 resp. 4, but these parameters are pushed as sizeof(int) bytes. - BTW, the same problem occurrs when they are pushed as parameters + BTW, the same problem occurs when they are pushed as parameters */ } else if (dict) { /* Hm, shouldn't we use PyCData_AtAddress() or something like that instead? */ diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -29,7 +29,7 @@ 4. _ctypes_callproc is then called with the 'callargs' tuple. _ctypes_callproc first allocates two arrays. The first is an array of 'struct argument' items, the - second array has 'void *' entried. + second array has 'void *' entries. 5. If 'converters' are present (converters is a sequence of argtypes' from_param methods), for each item in 'callargs' converter is called and the diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c --- a/Modules/_functoolsmodule.c +++ b/Modules/_functoolsmodule.c @@ -242,7 +242,7 @@ __reduce__ by itself doesn't support getting kwargs in the unpickle operation so we define a __setstate__ that replaces all the information about the partial. If we only replaced part of it someone would use - it as a hook to do stange things. + it as a hook to do strange things. */ static PyObject * diff --git a/Modules/_io/iobase.c b/Modules/_io/iobase.c --- a/Modules/_io/iobase.c +++ b/Modules/_io/iobase.c @@ -50,7 +50,7 @@ "stream.\n" "\n" "IOBase also supports the :keyword:`with` statement. In this example,\n" - "fp is closed after the suite of the with statment is complete:\n" + "fp is closed after the suite of the with statement is complete:\n" "\n" "with open('spam.txt', 'r') as fp:\n" " fp.write('Spam and eggs!')\n"); diff --git a/Modules/_io/stringio.c b/Modules/_io/stringio.c --- a/Modules/_io/stringio.c +++ b/Modules/_io/stringio.c @@ -157,7 +157,7 @@ 0 lo string_size hi | |<---used--->|<----------available----------->| | | <--to pad-->|<---to write---> | - 0 buf positon + 0 buf position */ memset(self->buf + self->string_size, '\0', diff --git a/Modules/_pickle.c b/Modules/_pickle.c --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -6242,7 +6242,7 @@ goto error; if (!PyDict_CheckExact(name_mapping_3to2)) { PyErr_Format(PyExc_RuntimeError, - "_compat_pickle.REVERSE_NAME_MAPPING shouldbe a dict, " + "_compat_pickle.REVERSE_NAME_MAPPING should be a dict, " "not %.200s", Py_TYPE(name_mapping_3to2)->tp_name); goto error; } diff --git a/Modules/_sqlite/connection.h b/Modules/_sqlite/connection.h --- a/Modules/_sqlite/connection.h +++ b/Modules/_sqlite/connection.h @@ -55,7 +55,7 @@ /* None for autocommit, otherwise a PyString with the isolation level */ PyObject* isolation_level; - /* NULL for autocommit, otherwise a string with the BEGIN statment; will be + /* NULL for autocommit, otherwise a string with the BEGIN statement; will be * freed in connection destructor */ char* begin_statement; diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c --- a/Modules/cmathmodule.c +++ b/Modules/cmathmodule.c @@ -23,7 +23,7 @@ /* CM_LARGE_DOUBLE is used to avoid spurious overflow in the sqrt, log, inverse trig and inverse hyperbolic trig functions. Its log is used in the - evaluation of exp, cos, cosh, sin, sinh, tan, and tanh to avoid unecessary + evaluation of exp, cos, cosh, sin, sinh, tan, and tanh to avoid unnecessary overflow. */ diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2242,7 +2242,7 @@ * This is the guts of the recv() and recv_into() methods, which reads into a * char buffer. If you have any inc/dec ref to do to the objects that contain * the buffer, do it in the caller. This function returns the number of bytes - * succesfully read. If there was an error, it returns -1. Note that it is + * successfully read. If there was an error, it returns -1. Note that it is * also possible that we return a number of bytes smaller than the request * bytes. */ @@ -2446,7 +2446,7 @@ * This is the guts of the recvfrom() and recvfrom_into() methods, which reads * into a char buffer. If you have any inc/def ref to do to the objects that * contain the buffer, do it in the caller. This function returns the number - * of bytes succesfully read. If there was an error, it returns -1. Note + * of bytes successfully read. If there was an error, it returns -1. Note * that it is also possible that we return a number of bytes smaller than the * request bytes. * @@ -2541,9 +2541,9 @@ if (outlen != recvlen) { /* We did not read as many bytes as we anticipated, resize the - string if possible and be succesful. */ + string if possible and be successful. */ if (_PyBytes_Resize(&buf, outlen) < 0) - /* Oopsy, not so succesful after all. */ + /* Oopsy, not so successful after all. */ goto finally; } @@ -4337,7 +4337,7 @@ return 0; /* Failure */ #else - /* No need to initialise sockets with GCC/EMX */ + /* No need to initialize sockets with GCC/EMX */ return 1; /* Success */ #endif } @@ -4371,7 +4371,7 @@ "socket.py" which implements some additional functionality. The import of "_socket" may fail with an ImportError exception if os-specific initialization fails. On Windows, this does WINSOCK - initialization. When WINSOCK is initialized succesfully, a call to + initialization. When WINSOCK is initialized successfully, a call to WSACleanup() is scheduled to be made at exit time. */ diff --git a/Modules/timemodule.c b/Modules/timemodule.c --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -697,7 +697,7 @@ buf.tm_wday = -1; /* sentinel; original value ignored */ tt = mktime(&buf); /* Return value of -1 does not necessarily mean an error, but tm_wday - * cannot remain set to -1 if mktime succedded. */ + * cannot remain set to -1 if mktime succeeded. */ if (tt == (time_t)(-1) && buf.tm_wday == -1) { PyErr_SetString(PyExc_OverflowError, "mktime argument out of range"); diff --git a/Modules/zipimport.c b/Modules/zipimport.c --- a/Modules/zipimport.c +++ b/Modules/zipimport.c @@ -1120,7 +1120,7 @@ } /* Given a path to a .pyc or .pyo file in the archive, return the - modifictaion time of the matching .py file, or 0 if no source + modification time of the matching .py file, or 0 if no source is available. */ static time_t get_mtime_of_source(ZipImporter *self, char *path) diff --git a/Modules/zlib/deflate.h b/Modules/zlib/deflate.h --- a/Modules/zlib/deflate.h +++ b/Modules/zlib/deflate.h @@ -188,7 +188,7 @@ int nice_match; /* Stop searching when current match exceeds this */ /* used by trees.c: */ - /* Didn't use ct_data typedef below to supress compiler warning */ + /* Didn't use ct_data typedef below to suppress compiler warning */ struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */ struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */ struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */ diff --git a/Modules/zlib/gzio.c b/Modules/zlib/gzio.c --- a/Modules/zlib/gzio.c +++ b/Modules/zlib/gzio.c @@ -256,7 +256,7 @@ /* =========================================================================== Read a byte from a gz_stream; update next_in and avail_in. Return EOF for end of file. - IN assertion: the stream s has been sucessfully opened for reading. + IN assertion: the stream s has been successfully opened for reading. */ local int get_byte(s) gz_stream *s; @@ -281,7 +281,7 @@ mode to transparent if the gzip magic header is not present; set s->err to Z_DATA_ERROR if the magic header is present but the rest of the header is incorrect. - IN assertion: the stream s has already been created sucessfully; + IN assertion: the stream s has already been created successfully; s->stream.avail_in is zero for the first time, but may be non-zero for concatenated .gz files. */ diff --git a/Objects/dictobject.c b/Objects/dictobject.c --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -2080,7 +2080,7 @@ assert(d->ma_table == NULL && d->ma_fill == 0 && d->ma_used == 0); INIT_NONZERO_DICT_SLOTS(d); d->ma_lookup = lookdict_unicode; - /* The object has been implicitely tracked by tp_alloc */ + /* The object has been implicitly tracked by tp_alloc */ if (type == &PyDict_Type) _PyObject_GC_UNTRACK(d); #ifdef SHOW_CONVERSION_COUNTS diff --git a/Objects/listobject.c b/Objects/listobject.c --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -11,7 +11,7 @@ /* Ensure ob_item has room for at least newsize elements, and set * ob_size to newsize. If newsize > ob_size on entry, the content * of the new slots at exit is undefined heap trash; it's the caller's - * responsiblity to overwrite them with sane values. + * responsibility to overwrite them with sane values. * The number of allocated elements may grow, shrink, or stay the same. * Failure is impossible if newsize <= self.allocated on entry, although * that partly relies on an assumption that the system realloc() never diff --git a/Objects/longobject.c b/Objects/longobject.c --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -709,7 +709,7 @@ is_signed = *pendbyte >= 0x80; /* Compute numsignificantbytes. This consists of finding the most - significant byte. Leading 0 bytes are insignficant if the number + significant byte. Leading 0 bytes are insignificant if the number is positive, and leading 0xff bytes if negative. */ { size_t i; diff --git a/Objects/typeobject.c b/Objects/typeobject.c --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -1008,7 +1008,7 @@ self has a refcount of 0, and if gc ever gets its hands on it (which can happen if any weakref callback gets invoked), it looks like trash to gc too, and gc also tries to delete self - then. But we're already deleting self. Double dealloction is + then. But we're already deleting self. Double deallocation is a subtle disaster. Q. Why the bizarre (net-zero) manipulation of @@ -5937,7 +5937,7 @@ slots compete for the same descriptor (for example both sq_item and mp_subscript generate a __getitem__ descriptor). - In the latter case, the first slotdef entry encoutered wins. Since + In the latter case, the first slotdef entry encountered wins. Since slotdef entries are sorted by the offset of the slot in the PyHeapTypeObject, this gives us some control over disambiguating between competing slots: the members of PyHeapTypeObject are listed diff --git a/PC/bdist_wininst/extract.c b/PC/bdist_wininst/extract.c --- a/PC/bdist_wininst/extract.c +++ b/PC/bdist_wininst/extract.c @@ -54,7 +54,7 @@ return TRUE; } -/* XXX Should better explicitely specify +/* XXX Should better explicitly specify * uncomp_size and file_times instead of pfhdr! */ char *map_new_file(DWORD flags, char *filename, @@ -164,7 +164,7 @@ zstream.avail_out = uncomp_size; /* Apparently an undocumented feature of zlib: Set windowsize - to negative values to supress the gzip header and be compatible with + to negative values to suppress the gzip header and be compatible with zip! */ result = TRUE; if (Z_OK != (x = inflateInit2(&zstream, -15))) { diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c --- a/PC/bdist_wininst/install.c +++ b/PC/bdist_wininst/install.c @@ -148,7 +148,7 @@ the permissions of the current user. */ HKEY hkey_root = (HKEY)-1; -BOOL success; /* Installation successfull? */ +BOOL success; /* Installation successful? */ char *failure_reason = NULL; HANDLE hBitmap; @@ -797,7 +797,7 @@ tempname = tempnam(NULL, NULL); // We use a static CRT while the Python version we load uses - // the CRT from one of various possibile DLLs. As a result we + // the CRT from one of various possible DLLs. As a result we // need to redirect the standard handles using the API rather // than the CRT. redirected = CreateFile( diff --git a/PC/os2emx/dlfcn.c b/PC/os2emx/dlfcn.c --- a/PC/os2emx/dlfcn.c +++ b/PC/os2emx/dlfcn.c @@ -188,7 +188,7 @@ return NULL; } -/* free dynamicaly-linked library */ +/* free dynamically-linked library */ int dlclose(void *handle) { int rc; diff --git a/PC/os2emx/dlfcn.h b/PC/os2emx/dlfcn.h --- a/PC/os2emx/dlfcn.h +++ b/PC/os2emx/dlfcn.h @@ -42,7 +42,7 @@ /* return a pointer to the `symbol' in DLL */ void *dlsym(void *handle, char *symbol); -/* free dynamicaly-linked library */ +/* free dynamically-linked library */ int dlclose(void *handle); /* return a string describing last occurred dl error */ diff --git a/Python/ceval.c b/Python/ceval.c --- a/Python/ceval.c +++ b/Python/ceval.c @@ -26,7 +26,7 @@ typedef unsigned long long uint64; -/* PowerPC suppport. +/* PowerPC support. "__ppc__" appears to be the preprocessor definition to detect on OS X, whereas "__powerpc__" appears to be the correct one for Linux with GCC */ @@ -1282,7 +1282,7 @@ if (_Py_atomic_load_relaxed(&eval_breaker)) { if (*next_instr == SETUP_FINALLY) { /* Make the last opcode before - a try: finally: block uninterruptable. */ + a try: finally: block uninterruptible. */ goto fast_next_opcode; } tstate->tick_counter++; diff --git a/Python/pystate.c b/Python/pystate.c --- a/Python/pystate.c +++ b/Python/pystate.c @@ -512,7 +512,7 @@ /* for i in all interpreters: * for t in all of i's thread states: * if t's frame isn't NULL, map t's id to its frame - * Because these lists can mutute even when the GIL is held, we + * Because these lists can mutate even when the GIL is held, we * need to grab head_mutex for the duration. */ HEAD_LOCK(); diff --git a/Python/thread.c b/Python/thread.c --- a/Python/thread.c +++ b/Python/thread.c @@ -40,7 +40,7 @@ #endif /* Check if we're running on HP-UX and _SC_THREADS is defined. If so, then - enough of the Posix threads package is implimented to support python + enough of the Posix threads package is implemented to support python threads. This is valid for HP-UX 11.23 running on an ia64 system. If needed, add diff --git a/Tools/freeze/checkextensions_win32.py b/Tools/freeze/checkextensions_win32.py --- a/Tools/freeze/checkextensions_win32.py +++ b/Tools/freeze/checkextensions_win32.py @@ -7,7 +7,7 @@ we get it just right, a specific freeze application may have specific compiler options anyway (eg, to enable or disable specific functionality) -So my basic stragtegy is: +So my basic strategy is: * Have some Windows INI files which "describe" one or more extension modules. (Freeze comes with a default one for all known modules - but you can specify diff --git a/Tools/scripts/fixcid.py b/Tools/scripts/fixcid.py --- a/Tools/scripts/fixcid.py +++ b/Tools/scripts/fixcid.py @@ -188,7 +188,7 @@ except os.error as msg: err(filename + ': rename failed (' + str(msg) + ')\n') return 1 - # Return succes + # Return success return 0 # Tokenizing ANSI C (partly) diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py --- a/Tools/unicode/makeunicodedata.py +++ b/Tools/unicode/makeunicodedata.py @@ -1002,7 +1002,7 @@ poly = size + poly break else: - raise AssertionError("ran out of polynominals") + raise AssertionError("ran out of polynomials") print(size, "slots in hash table") diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -1017,8 +1017,8 @@ if sys.platform == 'darwin': # In every directory on the search path search for a dynamic # library and then a static library, instead of first looking - # for dynamic libraries on the entiry path. - # This way a staticly linked custom sqlite gets picked up + # for dynamic libraries on the entire path. + # This way a statically linked custom sqlite gets picked up # before the dynamic library in /usr/lib. sqlite_extra_link_args = ('-Wl,-search_paths_first',) else: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 10:39:48 2011 From: python-checkins at python.org (ezio.melotti) Date: Wed, 16 Mar 2011 10:39:48 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): #11565: Merge with 3.2. Message-ID: http://hg.python.org/cpython/rev/db73857669fb changeset: 68587:db73857669fb parent: 68584:b153c341e6ef parent: 68586:dc245d681901 user: Ezio Melotti date: Wed Mar 16 11:38:59 2011 +0200 summary: #11565: Merge with 3.2. files: Lib/doctest.py Lib/platform.py Lib/subprocess.py Lib/test/test_descr.py Lib/test/test_doctest.py Lib/test/test_float.py Lib/test/test_multiprocessing.py Lib/test/test_strlit.py Lib/test/test_sys.py Lib/test/test_threading.py Lib/test/test_trace.py Lib/test/test_urllib.py Modules/_ctypes/_ctypes.c Modules/_pickle.c Modules/socketmodule.c Objects/listobject.c Objects/typeobject.c Python/ceval.c setup.py diff --git a/Doc/includes/sqlite3/shared_cache.py b/Doc/includes/sqlite3/shared_cache.py --- a/Doc/includes/sqlite3/shared_cache.py +++ b/Doc/includes/sqlite3/shared_cache.py @@ -1,6 +1,6 @@ import sqlite3 # The shared cache is only available in SQLite versions 3.3.3 or later -# See the SQLite documentaton for details. +# See the SQLite documentation for details. sqlite3.enable_shared_cache(True) diff --git a/Include/abstract.h b/Include/abstract.h --- a/Include/abstract.h +++ b/Include/abstract.h @@ -468,7 +468,7 @@ arbitrary data. 0 is returned on success. buffer and buffer_len are only - set in case no error occurrs. Otherwise, -1 is returned and + set in case no error occurs. Otherwise, -1 is returned and an exception set. */ @@ -482,7 +482,7 @@ writable memory location in buffer of size buffer_len. 0 is returned on success. buffer and buffer_len are only - set in case no error occurrs. Otherwise, -1 is returned and + set in case no error occurs. Otherwise, -1 is returned and an exception set. */ diff --git a/Include/pymacconfig.h b/Include/pymacconfig.h --- a/Include/pymacconfig.h +++ b/Include/pymacconfig.h @@ -61,7 +61,7 @@ # endif # if defined(__LP64__) - /* MacOSX 10.4 (the first release to suppport 64-bit code + /* MacOSX 10.4 (the first release to support 64-bit code * at all) only supports 64-bit in the UNIX layer. * Therefore surpress the toolbox-glue in 64-bit mode. */ diff --git a/Lib/csv.py b/Lib/csv.py --- a/Lib/csv.py +++ b/Lib/csv.py @@ -284,7 +284,7 @@ an all or nothing approach, so we allow for small variations in this number. 1) build a table of the frequency of each character on every line. - 2) build a table of freqencies of this frequency (meta-frequency?), + 2) build a table of frequencies of this frequency (meta-frequency?), e.g. 'x occurred 5 times in 10 rows, 6 times in 1000 rows, 7 times in 2 rows' 3) use the mode of the meta-frequency to determine the /expected/ diff --git a/Lib/ctypes/test/test_arrays.py b/Lib/ctypes/test/test_arrays.py --- a/Lib/ctypes/test/test_arrays.py +++ b/Lib/ctypes/test/test_arrays.py @@ -37,7 +37,7 @@ values = [ia[i] for i in range(len(init))] self.assertEqual(values, [0] * len(init)) - # Too many in itializers should be caught + # Too many initializers should be caught self.assertRaises(IndexError, int_array, *range(alen*2)) CharArray = ARRAY(c_char, 3) diff --git a/Lib/ctypes/test/test_init.py b/Lib/ctypes/test/test_init.py --- a/Lib/ctypes/test/test_init.py +++ b/Lib/ctypes/test/test_init.py @@ -27,7 +27,7 @@ self.assertEqual((y.x.a, y.x.b), (0, 0)) self.assertEqual(y.x.new_was_called, False) - # But explicitely creating an X structure calls __new__ and __init__, of course. + # But explicitly creating an X structure calls __new__ and __init__, of course. x = X() self.assertEqual((x.a, x.b), (9, 12)) self.assertEqual(x.new_was_called, True) diff --git a/Lib/ctypes/test/test_numbers.py b/Lib/ctypes/test/test_numbers.py --- a/Lib/ctypes/test/test_numbers.py +++ b/Lib/ctypes/test/test_numbers.py @@ -157,7 +157,7 @@ def test_int_from_address(self): from array import array for t in signed_types + unsigned_types: - # the array module doesn't suppport all format codes + # the array module doesn't support all format codes # (no 'q' or 'Q') try: array(t._type_) diff --git a/Lib/ctypes/test/test_win32.py b/Lib/ctypes/test/test_win32.py --- a/Lib/ctypes/test/test_win32.py +++ b/Lib/ctypes/test/test_win32.py @@ -17,7 +17,7 @@ # ValueError: Procedure probably called with not enough arguments (4 bytes missing) self.assertRaises(ValueError, IsWindow) - # This one should succeeed... + # This one should succeed... self.assertEqual(0, IsWindow(0)) # ValueError: Procedure probably called with too many arguments (8 bytes in excess) diff --git a/Lib/difflib.py b/Lib/difflib.py --- a/Lib/difflib.py +++ b/Lib/difflib.py @@ -1719,7 +1719,7 @@ line = line.replace(' ','\0') # expand tabs into spaces line = line.expandtabs(self._tabsize) - # relace spaces from expanded tabs back into tab characters + # replace spaces from expanded tabs back into tab characters # (we'll replace them with markup after we do differencing) line = line.replace(' ','\t') return line.replace('\0',' ').rstrip('\n') diff --git a/Lib/distutils/cmd.py b/Lib/distutils/cmd.py --- a/Lib/distutils/cmd.py +++ b/Lib/distutils/cmd.py @@ -359,7 +359,7 @@ not self.force, dry_run=self.dry_run) def move_file (self, src, dst, level=1): - """Move a file respectin dry-run flag.""" + """Move a file respecting dry-run flag.""" return file_util.move_file(src, dst, dry_run=self.dry_run) def spawn(self, cmd, search_path=1, level=1): diff --git a/Lib/distutils/cygwinccompiler.py b/Lib/distutils/cygwinccompiler.py --- a/Lib/distutils/cygwinccompiler.py +++ b/Lib/distutils/cygwinccompiler.py @@ -155,7 +155,7 @@ self.dll_libraries = get_msvcr() def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): - """Compiles the source by spawing GCC and windres if needed.""" + """Compiles the source by spawning GCC and windres if needed.""" if ext == '.rc' or ext == '.res': # gcc needs '.res' and '.rc' compiled to object files !!! try: diff --git a/Lib/distutils/tests/test_clean.py b/Lib/distutils/tests/test_clean.py --- a/Lib/distutils/tests/test_clean.py +++ b/Lib/distutils/tests/test_clean.py @@ -39,7 +39,7 @@ self.assertTrue(not os.path.exists(path), '%s was not removed' % path) - # let's run the command again (should spit warnings but suceed) + # let's run the command again (should spit warnings but succeed) cmd.all = 1 cmd.ensure_finalized() cmd.run() diff --git a/Lib/distutils/tests/test_install.py b/Lib/distutils/tests/test_install.py --- a/Lib/distutils/tests/test_install.py +++ b/Lib/distutils/tests/test_install.py @@ -62,7 +62,7 @@ if sys.version < '2.6': return - # preparing the environement for the test + # preparing the environment for the test self.old_user_base = site.USER_BASE self.old_user_site = site.USER_SITE self.tmpdir = self.mkdtemp() diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -311,7 +311,7 @@ # adding a file self.write_file((self.tmp_dir, 'somecode', 'doc2.txt'), '#') - # make sure build_py is reinitinialized, like a fresh run + # make sure build_py is reinitialized, like a fresh run build_py = dist.get_command_obj('build_py') build_py.finalized = False build_py.ensure_finalized() diff --git a/Lib/doctest.py b/Lib/doctest.py --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -1211,7 +1211,7 @@ # Process each example. for examplenum, example in enumerate(test.examples): - # If REPORT_ONLY_FIRST_FAILURE is set, then supress + # If REPORT_ONLY_FIRST_FAILURE is set, then suppress # reporting after the first failure. quiet = (self.optionflags & REPORT_ONLY_FIRST_FAILURE and failures > 0) @@ -2135,7 +2135,7 @@ caller can catch the errors and initiate post-mortem debugging. The DocTestCase provides a debug method that raises - UnexpectedException errors if there is an unexepcted + UnexpectedException errors if there is an unexpected exception: >>> test = DocTestParser().get_doctest('>>> raise KeyError\n42', diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -47,7 +47,7 @@ # For use with .match() fcre = re.compile(r'[\041-\176]+:$') -# Find a header embeded in a putative header value. Used to check for +# Find a header embedded in a putative header value. Used to check for # header injection attack. _embeded_header = re.compile(r'\n[^ \t]+:') diff --git a/Lib/idlelib/FormatParagraph.py b/Lib/idlelib/FormatParagraph.py --- a/Lib/idlelib/FormatParagraph.py +++ b/Lib/idlelib/FormatParagraph.py @@ -54,7 +54,7 @@ # If the block ends in a \n, we dont want the comment # prefix inserted after it. (Im not sure it makes sense to # reformat a comment block that isnt made of complete - # lines, but whatever!) Can't think of a clean soltution, + # lines, but whatever!) Can't think of a clean solution, # so we hack away block_suffix = "" if not newdata[-1]: diff --git a/Lib/idlelib/extend.txt b/Lib/idlelib/extend.txt --- a/Lib/idlelib/extend.txt +++ b/Lib/idlelib/extend.txt @@ -18,7 +18,7 @@ An IDLE extension class is instantiated with a single argument, `editwin', an EditorWindow instance. The extension cannot assume much -about this argument, but it is guarateed to have the following instance +about this argument, but it is guaranteed to have the following instance variables: text a Text instance (a widget) diff --git a/Lib/idlelib/macosxSupport.py b/Lib/idlelib/macosxSupport.py --- a/Lib/idlelib/macosxSupport.py +++ b/Lib/idlelib/macosxSupport.py @@ -53,8 +53,8 @@ def addOpenEventSupport(root, flist): """ - This ensures that the application will respont to open AppleEvents, which - makes is feaseable to use IDLE as the default application for python files. + This ensures that the application will respond to open AppleEvents, which + makes is feasible to use IDLE as the default application for python files. """ def doOpenFile(*args): for fn in args: diff --git a/Lib/lib2to3/fixes/fix_metaclass.py b/Lib/lib2to3/fixes/fix_metaclass.py --- a/Lib/lib2to3/fixes/fix_metaclass.py +++ b/Lib/lib2to3/fixes/fix_metaclass.py @@ -48,7 +48,7 @@ """ for node in cls_node.children: if node.type == syms.suite: - # already in the prefered format, do nothing + # already in the preferred format, do nothing return # !%@#! oneliners have no suite node, we have to fake one up diff --git a/Lib/lib2to3/pgen2/conv.py b/Lib/lib2to3/pgen2/conv.py --- a/Lib/lib2to3/pgen2/conv.py +++ b/Lib/lib2to3/pgen2/conv.py @@ -51,7 +51,7 @@ self.finish_off() def parse_graminit_h(self, filename): - """Parse the .h file writen by pgen. (Internal) + """Parse the .h file written by pgen. (Internal) This file is a sequence of #define statements defining the nonterminals of the grammar as numbers. We build two tables @@ -82,7 +82,7 @@ return True def parse_graminit_c(self, filename): - """Parse the .c file writen by pgen. (Internal) + """Parse the .c file written by pgen. (Internal) The file looks as follows. The first two lines are always this: diff --git a/Lib/lib2to3/pytree.py b/Lib/lib2to3/pytree.py --- a/Lib/lib2to3/pytree.py +++ b/Lib/lib2to3/pytree.py @@ -658,8 +658,8 @@ content: optional sequence of subsequences of patterns; if absent, matches one node; if present, each subsequence is an alternative [*] - min: optinal minumum number of times to match, default 0 - max: optional maximum number of times tro match, default HUGE + min: optional minimum number of times to match, default 0 + max: optional maximum number of times to match, default HUGE name: optional name assigned to this match [*] Thus, if content is [[a, b, c], [d, e], [f, g, h]] this is diff --git a/Lib/lib2to3/tests/data/py2_test_grammar.py b/Lib/lib2to3/tests/data/py2_test_grammar.py --- a/Lib/lib2to3/tests/data/py2_test_grammar.py +++ b/Lib/lib2to3/tests/data/py2_test_grammar.py @@ -316,7 +316,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/lib2to3/tests/data/py3_test_grammar.py b/Lib/lib2to3/tests/data/py3_test_grammar.py --- a/Lib/lib2to3/tests/data/py3_test_grammar.py +++ b/Lib/lib2to3/tests/data/py3_test_grammar.py @@ -356,7 +356,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/ntpath.py b/Lib/ntpath.py --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -405,7 +405,7 @@ # - $varname is accepted. # - %varname% is accepted. # - varnames can be made out of letters, digits and the characters '_-' -# (though is not verifed in the ${varname} and %varname% cases) +# (though is not verified in the ${varname} and %varname% cases) # XXX With COMMAND.COM you can use any characters in a variable name, # XXX except '^|<>='. diff --git a/Lib/pickletools.py b/Lib/pickletools.py --- a/Lib/pickletools.py +++ b/Lib/pickletools.py @@ -1406,7 +1406,7 @@ proto=0, doc="""Read an object from the memo and push it on the stack. - The index of the memo object to push is given by the newline-teriminated + The index of the memo object to push is given by the newline-terminated decimal string following. BINGET and LONG_BINGET are space-optimized versions. """), diff --git a/Lib/platform.py b/Lib/platform.py --- a/Lib/platform.py +++ b/Lib/platform.py @@ -417,7 +417,7 @@ info = pipe.read() if pipe.close(): raise os.error('command failed') - # XXX How can I supress shell errors from being written + # XXX How can I suppress shell errors from being written # to stderr ? except os.error as why: #print 'Command %s failed: %s' % (cmd,why) diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -1010,7 +1010,7 @@ except pywintypes.error as e: # Translate pywintypes.error to WindowsError, which is # a subclass of OSError. FIXME: We should really - # translate errno using _sys_errlist (or simliar), but + # translate errno using _sys_errlist (or similar), but # how can this be done from Python? raise WindowsError(*e.args) finally: diff --git a/Lib/test/datetimetester.py b/Lib/test/datetimetester.py --- a/Lib/test/datetimetester.py +++ b/Lib/test/datetimetester.py @@ -3414,7 +3414,7 @@ self.assertEqual(dt, there_and_back) # Because we have a redundant spelling when DST begins, there is - # (unforunately) an hour when DST ends that can't be spelled at all in + # (unfortunately) an hour when DST ends that can't be spelled at all in # local time. When DST ends, the clock jumps from 1:59 back to 1:00 # again. The hour 1:MM DST has no spelling then: 1:MM is taken to be # standard time. 1:MM DST == 0:MM EST, but 0:MM is taken to be diff --git a/Lib/test/pyclbr_input.py b/Lib/test/pyclbr_input.py --- a/Lib/test/pyclbr_input.py +++ b/Lib/test/pyclbr_input.py @@ -19,7 +19,7 @@ # XXX: This causes test_pyclbr.py to fail, but only because the # introspection-based is_method() code in the test can't - # distinguish between this and a geniune method function like m(). + # distinguish between this and a genuine method function like m(). # The pyclbr.py module gets this right as it parses the text. # #f = f diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py --- a/Lib/test/test_capi.py +++ b/Lib/test/test_capi.py @@ -127,7 +127,7 @@ context.event.set() def test_pendingcalls_non_threaded(self): - #again, just using the main thread, likely they will all be dispathced at + #again, just using the main thread, likely they will all be dispatched at #once. It is ok to ask for too many, because we loop until we find a slot. #the loop can be interrupted to dispatch. #there are only 32 dispatch slots, so we go for twice that! diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -228,7 +228,7 @@ try: t = self.eval_line(line) except DecimalException as exception: - #Exception raised where there shoudn't have been one. + #Exception raised where there shouldn't have been one. self.fail('Exception "'+exception.__class__.__name__ + '" raised on line '+line) return diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -3967,7 +3967,7 @@ except TypeError: pass else: - self.fail("Carlo Verre __setattr__ suceeded!") + self.fail("Carlo Verre __setattr__ succeeded!") try: object.__delattr__(str, "lower") except TypeError: diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -1297,7 +1297,7 @@ ? + ++ ^ TestResults(failed=1, attempted=1) -The REPORT_ONLY_FIRST_FAILURE supresses result output after the first +The REPORT_ONLY_FIRST_FAILURE suppresses result output after the first failing example: >>> def f(x): @@ -1327,7 +1327,7 @@ 2 TestResults(failed=3, attempted=5) -However, output from `report_start` is not supressed: +However, output from `report_start` is not suppressed: >>> doctest.DocTestRunner(verbose=True, optionflags=flags).run(test) ... # doctest: +ELLIPSIS @@ -2278,7 +2278,7 @@ >>> doctest.master = None # Reset master. (Note: we'll be clearing doctest.master after each call to -`doctest.testfile`, to supress warnings about multiple tests with the +`doctest.testfile`, to suppress warnings about multiple tests with the same name.) Globals may be specified with the `globs` and `extraglobs` parameters: @@ -2314,7 +2314,7 @@ TestResults(failed=0, attempted=2) >>> doctest.master = None # Reset master. -Verbosity can be increased with the optional `verbose` paremter: +Verbosity can be increased with the optional `verbose` parameter: >>> doctest.testfile('test_doctest.txt', globs=globs, verbose=True) Trying: @@ -2351,7 +2351,7 @@ TestResults(failed=1, attempted=2) >>> doctest.master = None # Reset master. -The summary report may be supressed with the optional `report` +The summary report may be suppressed with the optional `report` parameter: >>> doctest.testfile('test_doctest.txt', report=False) diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py --- a/Lib/test/test_extcall.py +++ b/Lib/test/test_extcall.py @@ -228,7 +228,7 @@ >>> Foo.method(1, *[2, 3]) 5 -A PyCFunction that takes only positional parameters shoud allow an +A PyCFunction that takes only positional parameters should allow an empty keyword dictionary to pass without a complaint, but raise a TypeError if te dictionary is not empty diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -67,7 +67,7 @@ def test_float_with_comma(self): # set locale to something that doesn't use '.' for the decimal point # float must not accept the locale specific decimal point but - # it still has to accept the normal python syntac + # it still has to accept the normal python syntax import locale if not locale.localeconv()['decimal_point'] == ',': return @@ -189,7 +189,7 @@ def assertEqualAndEqualSign(self, a, b): # fail unless a == b and a and b have the same sign bit; # the only difference from assertEqual is that this test - # distingishes -0.0 and 0.0. + # distinguishes -0.0 and 0.0. self.assertEqual((a, copysign(1.0, a)), (b, copysign(1.0, b))) @support.requires_IEEE_754 diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -350,7 +350,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -462,7 +462,7 @@ return False class BaseHTTPRequestHandlerTestCase(unittest.TestCase): - """Test the functionaility of the BaseHTTPServer. + """Test the functionality of the BaseHTTPServer. Test the support for the Expect 100-continue header. """ diff --git a/Lib/test/test_iterlen.py b/Lib/test/test_iterlen.py --- a/Lib/test/test_iterlen.py +++ b/Lib/test/test_iterlen.py @@ -20,11 +20,11 @@ Some containers become temporarily immutable during iteration. This includes dicts, sets, and collections.deque. Their implementation is equally simple -though they need to permantently set their length to zero whenever there is +though they need to permanently set their length to zero whenever there is an attempt to iterate after a length mutation. The situation slightly more involved whenever an object allows length mutation -during iteration. Lists and sequence iterators are dynanamically updatable. +during iteration. Lists and sequence iterators are dynamically updatable. So, if a list is extended during iteration, the iterator will continue through the new items. If it shrinks to a point before the most recent iteration, then no further items are available and the length is reported at zero. diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -1526,7 +1526,7 @@ ... return chain(iterable, repeat(None)) >>> def ncycles(iterable, n): -... "Returns the seqeuence elements n times" +... "Returns the sequence elements n times" ... return chain(*repeat(iterable, n)) >>> def dotproduct(vec1, vec2): diff --git a/Lib/test/test_marshal.py b/Lib/test/test_marshal.py --- a/Lib/test/test_marshal.py +++ b/Lib/test/test_marshal.py @@ -194,7 +194,7 @@ # >>> type(loads(dumps(Int()))) # for typ in (int, float, complex, tuple, list, dict, set, frozenset): - # Note: str sublclasses are not tested because they get handled + # Note: str subclasses are not tested because they get handled # by marshal's routines for objects supporting the buffer API. subtyp = type('subtyp', (typ,), {}) self.assertRaises(ValueError, marshal.dumps, subtyp()) diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -820,7 +820,7 @@ # the following tests have been commented out since they don't # really belong here: the implementation of ** for floats is - # independent of the implemention of math.pow + # independent of the implementation of math.pow #self.assertEqual(1**NAN, 1) #self.assertEqual(1**INF, 1) #self.assertEqual(1**NINF, 1) diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -594,7 +594,7 @@ m2.close() m1.close() - # Test differnt tag + # Test different tag m1 = mmap.mmap(-1, len(data1), tagname="foo") m1[:] = data1 m2 = mmap.mmap(-1, len(data2), tagname="boo") diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -795,7 +795,7 @@ event = self.Event() wait = TimingWrapper(event.wait) - # Removed temporaily, due to API shear, this does not + # Removed temporarily, due to API shear, this does not # work with threading._Event objects. is_set == isSet self.assertEqual(event.is_set(), False) @@ -1765,7 +1765,7 @@ util.Finalize(None, conn.send, args=('STOP',), exitpriority=-100) - # call mutliprocessing's cleanup function then exit process without + # call multiprocessing's cleanup function then exit process without # garbage collecting locals util._exit_function() conn.close() diff --git a/Lib/test/test_pkg.py b/Lib/test/test_pkg.py --- a/Lib/test/test_pkg.py +++ b/Lib/test/test_pkg.py @@ -56,7 +56,7 @@ if self.root: # Only clean if the test was actually run cleanout(self.root) - # delete all modules concerning the tested hiearchy + # delete all modules concerning the tested hierarchy if self.pkgname: modules = [name for name in sys.modules if self.pkgname in name.split('.')] diff --git a/Lib/test/test_print.py b/Lib/test/test_print.py --- a/Lib/test/test_print.py +++ b/Lib/test/test_print.py @@ -20,7 +20,7 @@ # A dispatch table all 8 combinations of providing # sep, end, and file # I use this machinery so that I'm not just passing default -# values to print, I'm eiher passing or not passing in the +# values to print, I'm either passing or not passing in the # arguments dispatch = { (False, False, False): diff --git a/Lib/test/test_strlit.py b/Lib/test/test_strlit.py --- a/Lib/test/test_strlit.py +++ b/Lib/test/test_strlit.py @@ -22,7 +22,7 @@ exec()/eval(), which uses a different code path. This file is really about correct treatment of encodings and -backslashes. It doens't concern itself with issues like single +backslashes. It doesn't concern itself with issues like single vs. double quotes or singly- vs. triply-quoted strings: that's dealt with elsewhere (I assume). """ diff --git a/Lib/test/test_strptime.py b/Lib/test/test_strptime.py --- a/Lib/test/test_strptime.py +++ b/Lib/test/test_strptime.py @@ -536,7 +536,7 @@ self.assertIsNot(first_time_re, second_time_re) # Possible test locale is not supported while initial locale is. # If this is the case just suppress the exception and fall-through - # to the reseting to the original locale. + # to the resetting to the original locale. except locale.Error: pass # Make sure we don't trample on the locale setting once we leave the diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py --- a/Lib/test/test_struct.py +++ b/Lib/test/test_struct.py @@ -463,7 +463,7 @@ test_string) def test_unpack_with_buffer(self): - # SF bug 1563759: struct.unpack doens't support buffer protocol objects + # SF bug 1563759: struct.unpack doesn't support buffer protocol objects data1 = array.array('B', b'\x12\x34\x56\x78') data2 = memoryview(b'\x12\x34\x56\x78') # XXX b'......XXXX......', 6, 4 for data in [data1, data2]: diff --git a/Lib/test/test_syntax.py b/Lib/test/test_syntax.py --- a/Lib/test/test_syntax.py +++ b/Lib/test/test_syntax.py @@ -237,7 +237,7 @@ Test continue in finally in weird combinations. -continue in for loop under finally shouuld be ok. +continue in for loop under finally should be ok. >>> def test(): ... try: diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -492,7 +492,7 @@ # provide too much opportunity for insane things to happen. # We don't want them in the interned dict and if they aren't # actually interned, we don't want to create the appearance - # that they are by allowing intern() to succeeed. + # that they are by allowing intern() to succeed. class S(str): def __hash__(self): return 123 diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -578,7 +578,7 @@ # This acquires the lock and then waits until the child has forked # before returning, which will release the lock soon after. If # someone else tries to fix this test case by acquiring this lock - # before forking instead of reseting it, the test case will + # before forking instead of resetting it, the test case will # deadlock when it shouldn't. condition = w._block orig_acquire = condition.acquire diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py --- a/Lib/test/test_trace.py +++ b/Lib/test/test_trace.py @@ -209,7 +209,7 @@ (self.my_py_filename, firstlineno + 4): 1, } - # When used through 'run', some other spurios counts are produced, like + # When used through 'run', some other spurious counts are produced, like # the settrace of threading, which we ignore, just making sure that the # counts fo traced_func_loop were right. # diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -1021,7 +1021,7 @@ # Just commented them out. # Can't really tell why keep failing in windows and sparc. -# Everywhere else they work ok, but on those machines, someteimes +# Everywhere else they work ok, but on those machines, sometimes # fail in one of the tests, sometimes in other. I have a linux, and # the tests go ok. # If anybody has one of the problematic enviroments, please help! diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py --- a/Lib/test/test_warnings.py +++ b/Lib/test/test_warnings.py @@ -332,7 +332,7 @@ sys.argv = argv def test_warn_explicit_type_errors(self): - # warn_explicit() shoud error out gracefully if it is given objects + # warn_explicit() should error out gracefully if it is given objects # of the wrong types. # lineno is expected to be an integer. self.assertRaises(TypeError, self.module.warn_explicit, diff --git a/Lib/tkinter/test/test_ttk/test_functions.py b/Lib/tkinter/test/test_ttk/test_functions.py --- a/Lib/tkinter/test/test_ttk/test_functions.py +++ b/Lib/tkinter/test/test_ttk/test_functions.py @@ -135,7 +135,7 @@ # minimum acceptable for image type self.assertEqual(ttk._format_elemcreate('image', False, 'test'), ("test ", ())) - # specifiyng a state spec + # specifying a state spec self.assertEqual(ttk._format_elemcreate('image', False, 'test', ('', 'a')), ("test {} a", ())) # state spec with multiple states diff --git a/Lib/tkinter/tix.py b/Lib/tkinter/tix.py --- a/Lib/tkinter/tix.py +++ b/Lib/tkinter/tix.py @@ -171,7 +171,7 @@ return self.tk.call('tix', 'getimage', name) def tix_option_get(self, name): - """Gets the options manitained by the Tix + """Gets the options maintained by the Tix scheme mechanism. Available options include: active_bg active_fg bg @@ -576,7 +576,7 @@ class ComboBox(TixWidget): """ComboBox - an Entry field with a dropdown menu. The user can select a - choice by either typing in the entry subwdget or selecting from the + choice by either typing in the entry subwidget or selecting from the listbox subwidget. Subwidget Class @@ -869,7 +869,7 @@ """HList - Hierarchy display widget can be used to display any data that have a hierarchical structure, for example, file system directory trees. The list entries are indented and connected by branch lines - according to their places in the hierachy. + according to their places in the hierarchy. Subwidgets - None""" @@ -1519,7 +1519,7 @@ self.tk.call(self._w, 'selection', 'set', first, last) class Tree(TixWidget): - """Tree - The tixTree widget can be used to display hierachical + """Tree - The tixTree widget can be used to display hierarchical data in a tree form. The user can adjust the view of the tree by opening or closing parts of the tree.""" diff --git a/Lib/tkinter/ttk.py b/Lib/tkinter/ttk.py --- a/Lib/tkinter/ttk.py +++ b/Lib/tkinter/ttk.py @@ -707,7 +707,7 @@ textvariable, values, width """ # The "values" option may need special formatting, so leave to - # _format_optdict the responsability to format it + # _format_optdict the responsibility to format it if "values" in kw: kw["values"] = _format_optdict({'v': kw["values"]})[1] diff --git a/Lib/turtle.py b/Lib/turtle.py --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -1488,7 +1488,7 @@ Optional arguments: canvwidth -- positive integer, new width of canvas in pixels canvheight -- positive integer, new height of canvas in pixels - bg -- colorstring or color-tupel, new backgroundcolor + bg -- colorstring or color-tuple, new backgroundcolor If no arguments are given, return current (canvaswidth, canvasheight) Do not alter the drawing window. To observe hidden parts of @@ -3242,9 +3242,9 @@ fill="", width=ps) # Turtle now at position old, self._position = old - ## if undo is done during crating a polygon, the last vertex - ## will be deleted. if the polygon is entirel deleted, - ## creatigPoly will be set to False. + ## if undo is done during creating a polygon, the last vertex + ## will be deleted. if the polygon is entirely deleted, + ## creatingPoly will be set to False. ## Polygons created before the last one will not be affected by undo() if self._creatingPoly: if len(self._poly) > 0: @@ -3796,7 +3796,7 @@ class Turtle(RawTurtle): - """RawTurtle auto-crating (scrolled) canvas. + """RawTurtle auto-creating (scrolled) canvas. When a Turtle object is created or a function derived from some Turtle method is called a TurtleScreen object is automatically created. @@ -3836,7 +3836,7 @@ filename -- a string, used as filename default value is turtle_docstringdict - Has to be called explicitely, (not used by the turtle-graphics classes) + Has to be called explicitly, (not used by the turtle-graphics classes) The docstring dictionary will be written to the Python script .py It is intended to serve as a template for translation of the docstrings into different languages. diff --git a/Lib/turtledemo/bytedesign.py b/Lib/turtledemo/bytedesign.py --- a/Lib/turtledemo/bytedesign.py +++ b/Lib/turtledemo/bytedesign.py @@ -4,7 +4,7 @@ tdemo_bytedesign.py An example adapted from the example-suite -of PythonCard's turtle graphcis. +of PythonCard's turtle graphics. It's based on an article in BYTE magazine Problem Solving with Logo: Using Turtle diff --git a/Lib/xml/dom/minicompat.py b/Lib/xml/dom/minicompat.py --- a/Lib/xml/dom/minicompat.py +++ b/Lib/xml/dom/minicompat.py @@ -6,7 +6,7 @@ # # NodeList -- lightest possible NodeList implementation # -# EmptyNodeList -- lightest possible NodeList that is guarateed to +# EmptyNodeList -- lightest possible NodeList that is guaranteed to # remain empty (immutable) # # StringTypes -- tuple of defined string types diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -1905,7 +1905,7 @@ e._call_user_data_handler(operation, n, entity) else: # Note the cloning of Document and DocumentType nodes is - # implemenetation specific. minidom handles those cases + # implementation specific. minidom handles those cases # directly in the cloneNode() methods. raise xml.dom.NotSupportedErr("Cannot clone node %s" % repr(node)) diff --git a/Lib/xmlrpc/server.py b/Lib/xmlrpc/server.py --- a/Lib/xmlrpc/server.py +++ b/Lib/xmlrpc/server.py @@ -240,7 +240,7 @@ marshalled data. For backwards compatibility, a dispatch function can be provided as an argument (see comment in SimpleXMLRPCRequestHandler.do_POST) but overriding the - existing method through subclassing is the prefered means + existing method through subclassing is the preferred means of changing method dispatch behavior. """ diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -362,7 +362,7 @@ def runCommand(commandline): """ - Run a command and raise RuntimeError if it fails. Output is surpressed + Run a command and raise RuntimeError if it fails. Output is suppressed unless the command fails. """ fd = os.popen(commandline, 'r') diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -3317,7 +3317,7 @@ /* XXX XXX This would allow to pass additional options. For COM method *implementations*, we would probably want different behaviour than in 'normal' callback functions: return a HRESULT if - an exception occurrs in the callback, and print the traceback not + an exception occurs in the callback, and print the traceback not only on the console, but also to OutputDebugString() or something like that. */ diff --git a/Modules/_ctypes/callbacks.c b/Modules/_ctypes/callbacks.c --- a/Modules/_ctypes/callbacks.c +++ b/Modules/_ctypes/callbacks.c @@ -202,7 +202,7 @@ /* XXX XXX XX We have the problem that c_byte or c_short have dict->size of 1 resp. 4, but these parameters are pushed as sizeof(int) bytes. - BTW, the same problem occurrs when they are pushed as parameters + BTW, the same problem occurs when they are pushed as parameters */ } else if (dict) { /* Hm, shouldn't we use PyCData_AtAddress() or something like that instead? */ diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -29,7 +29,7 @@ 4. _ctypes_callproc is then called with the 'callargs' tuple. _ctypes_callproc first allocates two arrays. The first is an array of 'struct argument' items, the - second array has 'void *' entried. + second array has 'void *' entries. 5. If 'converters' are present (converters is a sequence of argtypes' from_param methods), for each item in 'callargs' converter is called and the diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c --- a/Modules/_functoolsmodule.c +++ b/Modules/_functoolsmodule.c @@ -242,7 +242,7 @@ __reduce__ by itself doesn't support getting kwargs in the unpickle operation so we define a __setstate__ that replaces all the information about the partial. If we only replaced part of it someone would use - it as a hook to do stange things. + it as a hook to do strange things. */ static PyObject * diff --git a/Modules/_io/iobase.c b/Modules/_io/iobase.c --- a/Modules/_io/iobase.c +++ b/Modules/_io/iobase.c @@ -50,7 +50,7 @@ "stream.\n" "\n" "IOBase also supports the :keyword:`with` statement. In this example,\n" - "fp is closed after the suite of the with statment is complete:\n" + "fp is closed after the suite of the with statement is complete:\n" "\n" "with open('spam.txt', 'r') as fp:\n" " fp.write('Spam and eggs!')\n"); diff --git a/Modules/_io/stringio.c b/Modules/_io/stringio.c --- a/Modules/_io/stringio.c +++ b/Modules/_io/stringio.c @@ -157,7 +157,7 @@ 0 lo string_size hi | |<---used--->|<----------available----------->| | | <--to pad-->|<---to write---> | - 0 buf positon + 0 buf position */ memset(self->buf + self->string_size, '\0', diff --git a/Modules/_pickle.c b/Modules/_pickle.c --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -6259,7 +6259,7 @@ goto error; if (!PyDict_CheckExact(name_mapping_3to2)) { PyErr_Format(PyExc_RuntimeError, - "_compat_pickle.REVERSE_NAME_MAPPING shouldbe a dict, " + "_compat_pickle.REVERSE_NAME_MAPPING should be a dict, " "not %.200s", Py_TYPE(name_mapping_3to2)->tp_name); goto error; } diff --git a/Modules/_sqlite/connection.h b/Modules/_sqlite/connection.h --- a/Modules/_sqlite/connection.h +++ b/Modules/_sqlite/connection.h @@ -55,7 +55,7 @@ /* None for autocommit, otherwise a PyString with the isolation level */ PyObject* isolation_level; - /* NULL for autocommit, otherwise a string with the BEGIN statment; will be + /* NULL for autocommit, otherwise a string with the BEGIN statement; will be * freed in connection destructor */ char* begin_statement; diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c --- a/Modules/cmathmodule.c +++ b/Modules/cmathmodule.c @@ -23,7 +23,7 @@ /* CM_LARGE_DOUBLE is used to avoid spurious overflow in the sqrt, log, inverse trig and inverse hyperbolic trig functions. Its log is used in the - evaluation of exp, cos, cosh, sin, sinh, tan, and tanh to avoid unecessary + evaluation of exp, cos, cosh, sin, sinh, tan, and tanh to avoid unnecessary overflow. */ diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2242,7 +2242,7 @@ * This is the guts of the recv() and recv_into() methods, which reads into a * char buffer. If you have any inc/dec ref to do to the objects that contain * the buffer, do it in the caller. This function returns the number of bytes - * succesfully read. If there was an error, it returns -1. Note that it is + * successfully read. If there was an error, it returns -1. Note that it is * also possible that we return a number of bytes smaller than the request * bytes. */ @@ -2446,7 +2446,7 @@ * This is the guts of the recvfrom() and recvfrom_into() methods, which reads * into a char buffer. If you have any inc/def ref to do to the objects that * contain the buffer, do it in the caller. This function returns the number - * of bytes succesfully read. If there was an error, it returns -1. Note + * of bytes successfully read. If there was an error, it returns -1. Note * that it is also possible that we return a number of bytes smaller than the * request bytes. * @@ -2541,9 +2541,9 @@ if (outlen != recvlen) { /* We did not read as many bytes as we anticipated, resize the - string if possible and be succesful. */ + string if possible and be successful. */ if (_PyBytes_Resize(&buf, outlen) < 0) - /* Oopsy, not so succesful after all. */ + /* Oopsy, not so successful after all. */ goto finally; } @@ -4372,7 +4372,7 @@ return 0; /* Failure */ #else - /* No need to initialise sockets with GCC/EMX */ + /* No need to initialize sockets with GCC/EMX */ return 1; /* Success */ #endif } @@ -4406,7 +4406,7 @@ "socket.py" which implements some additional functionality. The import of "_socket" may fail with an ImportError exception if os-specific initialization fails. On Windows, this does WINSOCK - initialization. When WINSOCK is initialized succesfully, a call to + initialization. When WINSOCK is initialized successfully, a call to WSACleanup() is scheduled to be made at exit time. */ diff --git a/Modules/timemodule.c b/Modules/timemodule.c --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -697,7 +697,7 @@ buf.tm_wday = -1; /* sentinel; original value ignored */ tt = mktime(&buf); /* Return value of -1 does not necessarily mean an error, but tm_wday - * cannot remain set to -1 if mktime succedded. */ + * cannot remain set to -1 if mktime succeeded. */ if (tt == (time_t)(-1) && buf.tm_wday == -1) { PyErr_SetString(PyExc_OverflowError, "mktime argument out of range"); diff --git a/Modules/zipimport.c b/Modules/zipimport.c --- a/Modules/zipimport.c +++ b/Modules/zipimport.c @@ -1120,7 +1120,7 @@ } /* Given a path to a .pyc or .pyo file in the archive, return the - modifictaion time of the matching .py file, or 0 if no source + modification time of the matching .py file, or 0 if no source is available. */ static time_t get_mtime_of_source(ZipImporter *self, char *path) diff --git a/Modules/zlib/deflate.h b/Modules/zlib/deflate.h --- a/Modules/zlib/deflate.h +++ b/Modules/zlib/deflate.h @@ -188,7 +188,7 @@ int nice_match; /* Stop searching when current match exceeds this */ /* used by trees.c: */ - /* Didn't use ct_data typedef below to supress compiler warning */ + /* Didn't use ct_data typedef below to suppress compiler warning */ struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */ struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */ struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */ diff --git a/Modules/zlib/gzio.c b/Modules/zlib/gzio.c --- a/Modules/zlib/gzio.c +++ b/Modules/zlib/gzio.c @@ -256,7 +256,7 @@ /* =========================================================================== Read a byte from a gz_stream; update next_in and avail_in. Return EOF for end of file. - IN assertion: the stream s has been sucessfully opened for reading. + IN assertion: the stream s has been successfully opened for reading. */ local int get_byte(s) gz_stream *s; @@ -281,7 +281,7 @@ mode to transparent if the gzip magic header is not present; set s->err to Z_DATA_ERROR if the magic header is present but the rest of the header is incorrect. - IN assertion: the stream s has already been created sucessfully; + IN assertion: the stream s has already been created successfully; s->stream.avail_in is zero for the first time, but may be non-zero for concatenated .gz files. */ diff --git a/Objects/dictobject.c b/Objects/dictobject.c --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -2080,7 +2080,7 @@ assert(d->ma_table == NULL && d->ma_fill == 0 && d->ma_used == 0); INIT_NONZERO_DICT_SLOTS(d); d->ma_lookup = lookdict_unicode; - /* The object has been implicitely tracked by tp_alloc */ + /* The object has been implicitly tracked by tp_alloc */ if (type == &PyDict_Type) _PyObject_GC_UNTRACK(d); #ifdef SHOW_CONVERSION_COUNTS diff --git a/Objects/listobject.c b/Objects/listobject.c --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -11,7 +11,7 @@ /* Ensure ob_item has room for at least newsize elements, and set * ob_size to newsize. If newsize > ob_size on entry, the content * of the new slots at exit is undefined heap trash; it's the caller's - * responsiblity to overwrite them with sane values. + * responsibility to overwrite them with sane values. * The number of allocated elements may grow, shrink, or stay the same. * Failure is impossible if newsize <= self.allocated on entry, although * that partly relies on an assumption that the system realloc() never diff --git a/Objects/longobject.c b/Objects/longobject.c --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -709,7 +709,7 @@ is_signed = *pendbyte >= 0x80; /* Compute numsignificantbytes. This consists of finding the most - significant byte. Leading 0 bytes are insignficant if the number + significant byte. Leading 0 bytes are insignificant if the number is positive, and leading 0xff bytes if negative. */ { size_t i; diff --git a/Objects/typeobject.c b/Objects/typeobject.c --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -1008,7 +1008,7 @@ self has a refcount of 0, and if gc ever gets its hands on it (which can happen if any weakref callback gets invoked), it looks like trash to gc too, and gc also tries to delete self - then. But we're already deleting self. Double dealloction is + then. But we're already deleting self. Double deallocation is a subtle disaster. Q. Why the bizarre (net-zero) manipulation of @@ -5955,7 +5955,7 @@ slots compete for the same descriptor (for example both sq_item and mp_subscript generate a __getitem__ descriptor). - In the latter case, the first slotdef entry encoutered wins. Since + In the latter case, the first slotdef entry encountered wins. Since slotdef entries are sorted by the offset of the slot in the PyHeapTypeObject, this gives us some control over disambiguating between competing slots: the members of PyHeapTypeObject are listed diff --git a/PC/bdist_wininst/extract.c b/PC/bdist_wininst/extract.c --- a/PC/bdist_wininst/extract.c +++ b/PC/bdist_wininst/extract.c @@ -54,7 +54,7 @@ return TRUE; } -/* XXX Should better explicitely specify +/* XXX Should better explicitly specify * uncomp_size and file_times instead of pfhdr! */ char *map_new_file(DWORD flags, char *filename, @@ -164,7 +164,7 @@ zstream.avail_out = uncomp_size; /* Apparently an undocumented feature of zlib: Set windowsize - to negative values to supress the gzip header and be compatible with + to negative values to suppress the gzip header and be compatible with zip! */ result = TRUE; if (Z_OK != (x = inflateInit2(&zstream, -15))) { diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c --- a/PC/bdist_wininst/install.c +++ b/PC/bdist_wininst/install.c @@ -148,7 +148,7 @@ the permissions of the current user. */ HKEY hkey_root = (HKEY)-1; -BOOL success; /* Installation successfull? */ +BOOL success; /* Installation successful? */ char *failure_reason = NULL; HANDLE hBitmap; @@ -797,7 +797,7 @@ tempname = tempnam(NULL, NULL); // We use a static CRT while the Python version we load uses - // the CRT from one of various possibile DLLs. As a result we + // the CRT from one of various possible DLLs. As a result we // need to redirect the standard handles using the API rather // than the CRT. redirected = CreateFile( diff --git a/PC/os2emx/dlfcn.c b/PC/os2emx/dlfcn.c --- a/PC/os2emx/dlfcn.c +++ b/PC/os2emx/dlfcn.c @@ -188,7 +188,7 @@ return NULL; } -/* free dynamicaly-linked library */ +/* free dynamically-linked library */ int dlclose(void *handle) { int rc; diff --git a/PC/os2emx/dlfcn.h b/PC/os2emx/dlfcn.h --- a/PC/os2emx/dlfcn.h +++ b/PC/os2emx/dlfcn.h @@ -42,7 +42,7 @@ /* return a pointer to the `symbol' in DLL */ void *dlsym(void *handle, char *symbol); -/* free dynamicaly-linked library */ +/* free dynamically-linked library */ int dlclose(void *handle); /* return a string describing last occurred dl error */ diff --git a/Python/ceval.c b/Python/ceval.c --- a/Python/ceval.c +++ b/Python/ceval.c @@ -26,7 +26,7 @@ typedef unsigned long long uint64; -/* PowerPC suppport. +/* PowerPC support. "__ppc__" appears to be the preprocessor definition to detect on OS X, whereas "__powerpc__" appears to be the correct one for Linux with GCC */ @@ -1266,7 +1266,7 @@ if (_Py_atomic_load_relaxed(&eval_breaker)) { if (*next_instr == SETUP_FINALLY) { /* Make the last opcode before - a try: finally: block uninterruptable. */ + a try: finally: block uninterruptible. */ goto fast_next_opcode; } tstate->tick_counter++; diff --git a/Python/pystate.c b/Python/pystate.c --- a/Python/pystate.c +++ b/Python/pystate.c @@ -512,7 +512,7 @@ /* for i in all interpreters: * for t in all of i's thread states: * if t's frame isn't NULL, map t's id to its frame - * Because these lists can mutute even when the GIL is held, we + * Because these lists can mutate even when the GIL is held, we * need to grab head_mutex for the duration. */ HEAD_LOCK(); diff --git a/Python/thread.c b/Python/thread.c --- a/Python/thread.c +++ b/Python/thread.c @@ -40,7 +40,7 @@ #endif /* Check if we're running on HP-UX and _SC_THREADS is defined. If so, then - enough of the Posix threads package is implimented to support python + enough of the Posix threads package is implemented to support python threads. This is valid for HP-UX 11.23 running on an ia64 system. If needed, add diff --git a/Tools/freeze/checkextensions_win32.py b/Tools/freeze/checkextensions_win32.py --- a/Tools/freeze/checkextensions_win32.py +++ b/Tools/freeze/checkextensions_win32.py @@ -7,7 +7,7 @@ we get it just right, a specific freeze application may have specific compiler options anyway (eg, to enable or disable specific functionality) -So my basic stragtegy is: +So my basic strategy is: * Have some Windows INI files which "describe" one or more extension modules. (Freeze comes with a default one for all known modules - but you can specify diff --git a/Tools/scripts/fixcid.py b/Tools/scripts/fixcid.py --- a/Tools/scripts/fixcid.py +++ b/Tools/scripts/fixcid.py @@ -188,7 +188,7 @@ except os.error as msg: err(filename + ': rename failed (' + str(msg) + ')\n') return 1 - # Return succes + # Return success return 0 # Tokenizing ANSI C (partly) diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py --- a/Tools/unicode/makeunicodedata.py +++ b/Tools/unicode/makeunicodedata.py @@ -1002,7 +1002,7 @@ poly = size + poly break else: - raise AssertionError("ran out of polynominals") + raise AssertionError("ran out of polynomials") print(size, "slots in hash table") diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -1017,8 +1017,8 @@ if sys.platform == 'darwin': # In every directory on the search path search for a dynamic # library and then a static library, instead of first looking - # for dynamic libraries on the entiry path. - # This way a staticly linked custom sqlite gets picked up + # for dynamic libraries on the entire path. + # This way a statically linked custom sqlite gets picked up # before the dynamic library in /usr/lib. sqlite_extra_link_args = ('-Wl,-search_paths_first',) else: -- Repository URL: http://hg.python.org/cpython From ezio.melotti at gmail.com Wed Mar 16 10:40:48 2011 From: ezio.melotti at gmail.com (Ezio Melotti) Date: Wed, 16 Mar 2011 11:40:48 +0200 Subject: [Python-checkins] distutils2: started setupcfg-spec In-Reply-To: References: Message-ID: <4D8085A0.8090702@gmail.com> Hi, On 15/03/2011 21.18, tarek.ziade wrote: > http://hg.python.org/distutils2/rev/6fca65ff60ad > changeset: 1119:6fca65ff60ad > user: Tarek Ziade > date: Tue Mar 15 15:18:39 2011 -0400 > summary: > started setupcfg-spec > > files: > docs/source/index.rst > docs/source/setupcfg-spec.rst > > diff --git a/docs/source/index.rst b/docs/source/index.rst > --- a/docs/source/index.rst > +++ b/docs/source/index.rst > @@ -48,8 +48,11 @@ > A guide for for end-users wanting to install a Python application or > library. > > +:doc:`setupcfg-spec` > + Specifications of setup.cfg, the most important file for developers. > + > :doc:`setupcfg` > - Specifications of setup.cfg, the most important file for developers. > + Documenation about using setup.cfg s/Documenation/Documentation/ > > :doc:`tutorial` > A tutorial for Python developers to discover Distutils2 main features. > @@ -71,6 +74,7 @@ > > devresources > install/index > + setupcfg-spec > setupcfg > tutorial > distutils/index > diff --git a/docs/source/setupcfg-spec.rst b/docs/source/setupcfg-spec.rst > new file mode 100644 > --- /dev/null > +++ b/docs/source/setupcfg-spec.rst > [...] > + > +Description of sections and fields > +================================== > + > +Each section contains a description of its options. > + > +- Options that are marked *\*multi* can have multiple values, one value per > + line. > +- Options that are marked *\*optional* can be omited. s/omited/omitted/ > + > + > +The sections are: > + > +global > + Global options for Distutils2. > + > +metadata > + The metadata section contains the metadata for the project as described in > + :PEP:`345`. > + > +files > + Declaration of package files included in the project. > + > +`command` sections > + Redefinition of user options for Distutils2 commands. > + > +[...] > + > +Changes in the specification > +============================ > + > +The version scheme for this specification is **MAJOR.MINOR**. > +Changes in the specification will increment the version. > + > +- minor version changes (1.x): backwards compatible > + - new fields and sections (both optional and mandatory) can be added > + - optional fields can be removed > +- major channges (2.X): backwards-incompatible s/channges/changes/ > + - mandatory fields/sections are removed > + - fields change their meaning > + > +As a consequence, a tool written to consume 1.X (say, X=5) has these > +properties: > + > +- reading 1.Y, Y + optional fields weren't there > +- reading 1.Y, Y>X is also possible. The tool will just ignore the new > + fields (even if they are mandatory in that version) > + If optional fields were removed, the tool will just consider them absent. > +- reading 2.X is not possible; the tool should refuse to interpret > + the file. > + > +A tool written to produce 1.X should have these properties: > +- it will write all mandatory fields > +- it may write optional fields > + > +Acks > +==== > + > +XXX Best Regards, Ezio Melotti From python-checkins at python.org Wed Mar 16 11:35:26 2011 From: python-checkins at python.org (ezio.melotti) Date: Wed, 16 Mar 2011 11:35:26 +0100 Subject: [Python-checkins] cpython (2.7): #11565: Fix several typos. Patch by Piotr Kasprzyk. Message-ID: http://hg.python.org/cpython/rev/cd8d3c2d3bce changeset: 68588:cd8d3c2d3bce branch: 2.7 parent: 68577:93053ce76075 user: Ezio Melotti date: Wed Mar 16 12:34:31 2011 +0200 summary: #11565: Fix several typos. Patch by Piotr Kasprzyk. files: Doc/includes/sqlite3/shared_cache.py Doc/library/imaplib.rst Include/abstract.h Include/pymacconfig.h Lib/SimpleXMLRPCServer.py Lib/csv.py Lib/ctypes/test/test_arrays.py Lib/ctypes/test/test_init.py Lib/ctypes/test/test_numbers.py Lib/ctypes/test/test_win32.py Lib/difflib.py Lib/distutils/cmd.py Lib/distutils/tests/test_clean.py Lib/distutils/tests/test_sdist.py Lib/doctest.py Lib/email/header.py Lib/idlelib/FormatParagraph.py Lib/idlelib/extend.txt Lib/idlelib/macosxSupport.py Lib/imaplib.py Lib/lib-tk/Tix.py Lib/lib-tk/test/test_ttk/test_functions.py Lib/lib-tk/ttk.py Lib/lib-tk/turtle.py Lib/lib2to3/fixes/fix_metaclass.py Lib/lib2to3/pgen2/conv.py Lib/lib2to3/pytree.py Lib/lib2to3/tests/data/py2_test_grammar.py Lib/lib2to3/tests/data/py3_test_grammar.py Lib/ntpath.py Lib/pickletools.py Lib/platform.py Lib/subprocess.py Lib/test/pyclbr_input.py Lib/test/test_builtin.py Lib/test/test_capi.py Lib/test/test_datetime.py Lib/test/test_decimal.py Lib/test/test_descr.py Lib/test/test_doctest.py Lib/test/test_extcall.py Lib/test/test_float.py Lib/test/test_grammar.py Lib/test/test_httpservers.py Lib/test/test_iterlen.py Lib/test/test_itertools.py Lib/test/test_marshal.py Lib/test/test_math.py Lib/test/test_memoryio.py Lib/test/test_mmap.py Lib/test/test_multiprocessing.py Lib/test/test_pep277.py Lib/test/test_pkg.py Lib/test/test_print.py Lib/test/test_strptime.py Lib/test/test_syntax.py Lib/test/test_threading.py Lib/test/test_trace.py Lib/test/test_urllib.py Lib/test/test_warnings.py Lib/unittest/test/test_program.py Lib/xml/dom/minicompat.py Lib/xml/dom/minidom.py Mac/BuildScript/build-installer.py Modules/_ctypes/_ctypes.c Modules/_ctypes/callbacks.c Modules/_ctypes/callproc.c Modules/_functoolsmodule.c Modules/_io/iobase.c Modules/_io/stringio.c Modules/_sqlite/connection.h Modules/cmathmodule.c Modules/socketmodule.c Modules/timemodule.c Modules/zipimport.c Modules/zlib/deflate.h Modules/zlib/gzio.c Objects/dictobject.c Objects/listobject.c Objects/longobject.c Objects/typeobject.c PC/bdist_wininst/extract.c PC/bdist_wininst/install.c PC/os2emx/dlfcn.c PC/os2emx/dlfcn.h Python/ceval.c Python/pystate.c Python/thread.c Tools/freeze/checkextensions_win32.py Tools/scripts/fixcid.py setup.py diff --git a/Doc/includes/sqlite3/shared_cache.py b/Doc/includes/sqlite3/shared_cache.py --- a/Doc/includes/sqlite3/shared_cache.py +++ b/Doc/includes/sqlite3/shared_cache.py @@ -1,6 +1,6 @@ import sqlite3 # The shared cache is only available in SQLite versions 3.3.3 or later -# See the SQLite documentaton for details. +# See the SQLite documentation for details. sqlite3.enable_shared_cache(True) diff --git a/Doc/library/imaplib.rst b/Doc/library/imaplib.rst --- a/Doc/library/imaplib.rst +++ b/Doc/library/imaplib.rst @@ -104,7 +104,7 @@ Convert *date_time* to an IMAP4 ``INTERNALDATE`` representation. The return value is a string in the form: ``"DD-Mmm-YYYY HH:MM:SS +HHMM"`` (including double-quotes). The *date_time* argument can be a - number (int or float) represening seconds since epoch (as returned + number (int or float) representing seconds since epoch (as returned by :func:`time.time`), a 9-tuple representing local time (as returned by :func:`time.localtime`), or a double-quoted string. In the last case, it is assumed to already be in the correct format. diff --git a/Include/abstract.h b/Include/abstract.h --- a/Include/abstract.h +++ b/Include/abstract.h @@ -509,7 +509,7 @@ arbitrary data. 0 is returned on success. buffer and buffer_len are only - set in case no error occurrs. Otherwise, -1 is returned and + set in case no error occurs. Otherwise, -1 is returned and an exception set. */ @@ -524,7 +524,7 @@ writeable memory location in buffer of size buffer_len. 0 is returned on success. buffer and buffer_len are only - set in case no error occurrs. Otherwise, -1 is returned and + set in case no error occurs. Otherwise, -1 is returned and an exception set. */ diff --git a/Include/pymacconfig.h b/Include/pymacconfig.h --- a/Include/pymacconfig.h +++ b/Include/pymacconfig.h @@ -61,7 +61,7 @@ # endif # if defined(__LP64__) - /* MacOSX 10.4 (the first release to suppport 64-bit code + /* MacOSX 10.4 (the first release to support 64-bit code * at all) only supports 64-bit in the UNIX layer. * Therefore surpress the toolbox-glue in 64-bit mode. */ diff --git a/Lib/SimpleXMLRPCServer.py b/Lib/SimpleXMLRPCServer.py --- a/Lib/SimpleXMLRPCServer.py +++ b/Lib/SimpleXMLRPCServer.py @@ -246,7 +246,7 @@ marshalled data. For backwards compatibility, a dispatch function can be provided as an argument (see comment in SimpleXMLRPCRequestHandler.do_POST) but overriding the - existing method through subclassing is the prefered means + existing method through subclassing is the preferred means of changing method dispatch behavior. """ diff --git a/Lib/csv.py b/Lib/csv.py --- a/Lib/csv.py +++ b/Lib/csv.py @@ -281,7 +281,7 @@ an all or nothing approach, so we allow for small variations in this number. 1) build a table of the frequency of each character on every line. - 2) build a table of freqencies of this frequency (meta-frequency?), + 2) build a table of frequencies of this frequency (meta-frequency?), e.g. 'x occurred 5 times in 10 rows, 6 times in 1000 rows, 7 times in 2 rows' 3) use the mode of the meta-frequency to determine the /expected/ diff --git a/Lib/ctypes/test/test_arrays.py b/Lib/ctypes/test/test_arrays.py --- a/Lib/ctypes/test/test_arrays.py +++ b/Lib/ctypes/test/test_arrays.py @@ -37,7 +37,7 @@ values = [ia[i] for i in range(len(init))] self.assertEqual(values, [0] * len(init)) - # Too many in itializers should be caught + # Too many initializers should be caught self.assertRaises(IndexError, int_array, *range(alen*2)) CharArray = ARRAY(c_char, 3) diff --git a/Lib/ctypes/test/test_init.py b/Lib/ctypes/test/test_init.py --- a/Lib/ctypes/test/test_init.py +++ b/Lib/ctypes/test/test_init.py @@ -27,7 +27,7 @@ self.assertEqual((y.x.a, y.x.b), (0, 0)) self.assertEqual(y.x.new_was_called, False) - # But explicitely creating an X structure calls __new__ and __init__, of course. + # But explicitly creating an X structure calls __new__ and __init__, of course. x = X() self.assertEqual((x.a, x.b), (9, 12)) self.assertEqual(x.new_was_called, True) diff --git a/Lib/ctypes/test/test_numbers.py b/Lib/ctypes/test/test_numbers.py --- a/Lib/ctypes/test/test_numbers.py +++ b/Lib/ctypes/test/test_numbers.py @@ -157,7 +157,7 @@ def test_int_from_address(self): from array import array for t in signed_types + unsigned_types: - # the array module doesn't suppport all format codes + # the array module doesn't support all format codes # (no 'q' or 'Q') try: array(t._type_) diff --git a/Lib/ctypes/test/test_win32.py b/Lib/ctypes/test/test_win32.py --- a/Lib/ctypes/test/test_win32.py +++ b/Lib/ctypes/test/test_win32.py @@ -17,7 +17,7 @@ # ValueError: Procedure probably called with not enough arguments (4 bytes missing) self.assertRaises(ValueError, IsWindow) - # This one should succeeed... + # This one should succeed... self.assertEqual(0, IsWindow(0)) # ValueError: Procedure probably called with too many arguments (8 bytes in excess) diff --git a/Lib/difflib.py b/Lib/difflib.py --- a/Lib/difflib.py +++ b/Lib/difflib.py @@ -1714,7 +1714,7 @@ line = line.replace(' ','\0') # expand tabs into spaces line = line.expandtabs(self._tabsize) - # relace spaces from expanded tabs back into tab characters + # replace spaces from expanded tabs back into tab characters # (we'll replace them with markup after we do differencing) line = line.replace(' ','\t') return line.replace('\0',' ').rstrip('\n') diff --git a/Lib/distutils/cmd.py b/Lib/distutils/cmd.py --- a/Lib/distutils/cmd.py +++ b/Lib/distutils/cmd.py @@ -377,7 +377,7 @@ dry_run=self.dry_run) def move_file (self, src, dst, level=1): - """Move a file respectin dry-run flag.""" + """Move a file respecting dry-run flag.""" return file_util.move_file(src, dst, dry_run = self.dry_run) def spawn (self, cmd, search_path=1, level=1): diff --git a/Lib/distutils/tests/test_clean.py b/Lib/distutils/tests/test_clean.py --- a/Lib/distutils/tests/test_clean.py +++ b/Lib/distutils/tests/test_clean.py @@ -39,7 +39,7 @@ self.assertTrue(not os.path.exists(path), '%s was not removed' % path) - # let's run the command again (should spit warnings but suceed) + # let's run the command again (should spit warnings but succeed) cmd.all = 1 cmd.ensure_finalized() cmd.run() diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -370,7 +370,7 @@ # adding a file self.write_file((self.tmp_dir, 'somecode', 'doc2.txt'), '#') - # make sure build_py is reinitinialized, like a fresh run + # make sure build_py is reinitialized, like a fresh run build_py = dist.get_command_obj('build_py') build_py.finalized = False build_py.ensure_finalized() diff --git a/Lib/doctest.py b/Lib/doctest.py --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -1217,7 +1217,7 @@ # Process each example. for examplenum, example in enumerate(test.examples): - # If REPORT_ONLY_FIRST_FAILURE is set, then supress + # If REPORT_ONLY_FIRST_FAILURE is set, then suppress # reporting after the first failure. quiet = (self.optionflags & REPORT_ONLY_FIRST_FAILURE and failures > 0) @@ -2186,7 +2186,7 @@ caller can catch the errors and initiate post-mortem debugging. The DocTestCase provides a debug method that raises - UnexpectedException errors if there is an unexepcted + UnexpectedException errors if there is an unexpected exception: >>> test = DocTestParser().get_doctest('>>> raise KeyError\n42', diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -47,7 +47,7 @@ # For use with .match() fcre = re.compile(r'[\041-\176]+:$') -# Find a header embeded in a putative header value. Used to check for +# Find a header embedded in a putative header value. Used to check for # header injection attack. _embeded_header = re.compile(r'\n[^ \t]+:') diff --git a/Lib/idlelib/FormatParagraph.py b/Lib/idlelib/FormatParagraph.py --- a/Lib/idlelib/FormatParagraph.py +++ b/Lib/idlelib/FormatParagraph.py @@ -54,7 +54,7 @@ # If the block ends in a \n, we dont want the comment # prefix inserted after it. (Im not sure it makes sense to # reformat a comment block that isnt made of complete - # lines, but whatever!) Can't think of a clean soltution, + # lines, but whatever!) Can't think of a clean solution, # so we hack away block_suffix = "" if not newdata[-1]: diff --git a/Lib/idlelib/extend.txt b/Lib/idlelib/extend.txt --- a/Lib/idlelib/extend.txt +++ b/Lib/idlelib/extend.txt @@ -18,7 +18,7 @@ An IDLE extension class is instantiated with a single argument, `editwin', an EditorWindow instance. The extension cannot assume much -about this argument, but it is guarateed to have the following instance +about this argument, but it is guaranteed to have the following instance variables: text a Text instance (a widget) diff --git a/Lib/idlelib/macosxSupport.py b/Lib/idlelib/macosxSupport.py --- a/Lib/idlelib/macosxSupport.py +++ b/Lib/idlelib/macosxSupport.py @@ -53,8 +53,8 @@ def addOpenEventSupport(root, flist): """ - This ensures that the application will respont to open AppleEvents, which - makes is feaseable to use IDLE as the default application for python files. + This ensures that the application will respond to open AppleEvents, which + makes is feasible to use IDLE as the default application for python files. """ def doOpenFile(*args): for fn in args: diff --git a/Lib/imaplib.py b/Lib/imaplib.py --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -1394,7 +1394,7 @@ """Convert date_time to IMAP4 INTERNALDATE representation. Return string in form: '"DD-Mmm-YYYY HH:MM:SS +HHMM"'. The - date_time argument can be a number (int or float) represening + date_time argument can be a number (int or float) representing seconds since epoch (as returned by time.time()), a 9-tuple representing local time (as returned by time.localtime()), or a double-quoted string. In the last case, it is assumed to already diff --git a/Lib/lib-tk/Tix.py b/Lib/lib-tk/Tix.py --- a/Lib/lib-tk/Tix.py +++ b/Lib/lib-tk/Tix.py @@ -171,7 +171,7 @@ return self.tk.call('tix', 'getimage', name) def tix_option_get(self, name): - """Gets the options manitained by the Tix + """Gets the options maintained by the Tix scheme mechanism. Available options include: active_bg active_fg bg @@ -576,7 +576,7 @@ class ComboBox(TixWidget): """ComboBox - an Entry field with a dropdown menu. The user can select a - choice by either typing in the entry subwdget or selecting from the + choice by either typing in the entry subwidget or selecting from the listbox subwidget. Subwidget Class @@ -869,7 +869,7 @@ """HList - Hierarchy display widget can be used to display any data that have a hierarchical structure, for example, file system directory trees. The list entries are indented and connected by branch lines - according to their places in the hierachy. + according to their places in the hierarchy. Subwidgets - None""" @@ -1520,7 +1520,7 @@ self.tk.call(self._w, 'selection', 'set', first, last) class Tree(TixWidget): - """Tree - The tixTree widget can be used to display hierachical + """Tree - The tixTree widget can be used to display hierarchical data in a tree form. The user can adjust the view of the tree by opening or closing parts of the tree.""" diff --git a/Lib/lib-tk/test/test_ttk/test_functions.py b/Lib/lib-tk/test/test_ttk/test_functions.py --- a/Lib/lib-tk/test/test_ttk/test_functions.py +++ b/Lib/lib-tk/test/test_ttk/test_functions.py @@ -136,7 +136,7 @@ # minimum acceptable for image type self.assertEqual(ttk._format_elemcreate('image', False, 'test'), ("test ", ())) - # specifiyng a state spec + # specifying a state spec self.assertEqual(ttk._format_elemcreate('image', False, 'test', ('', 'a')), ("test {} a", ())) # state spec with multiple states diff --git a/Lib/lib-tk/ttk.py b/Lib/lib-tk/ttk.py --- a/Lib/lib-tk/ttk.py +++ b/Lib/lib-tk/ttk.py @@ -707,7 +707,7 @@ textvariable, values, width """ # The "values" option may need special formatting, so leave to - # _format_optdict the responsability to format it + # _format_optdict the responsibility to format it if "values" in kw: kw["values"] = _format_optdict({'v': kw["values"]})[1] diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py --- a/Lib/lib-tk/turtle.py +++ b/Lib/lib-tk/turtle.py @@ -1409,7 +1409,7 @@ Optional arguments: canvwidth -- positive integer, new width of canvas in pixels canvheight -- positive integer, new height of canvas in pixels - bg -- colorstring or color-tupel, new backgroundcolor + bg -- colorstring or color-tuple, new backgroundcolor If no arguments are given, return current (canvaswidth, canvasheight) Do not alter the drawing window. To observe hidden parts of @@ -3079,9 +3079,9 @@ fill="", width=ps) # Turtle now at position old, self._position = old - ## if undo is done during crating a polygon, the last vertex - ## will be deleted. if the polygon is entirel deleted, - ## creatigPoly will be set to False. + ## if undo is done during creating a polygon, the last vertex + ## will be deleted. if the polygon is entirely deleted, + ## creatingPoly will be set to False. ## Polygons created before the last one will not be affected by undo() if self._creatingPoly: if len(self._poly) > 0: @@ -3691,7 +3691,7 @@ class Turtle(RawTurtle): - """RawTurtle auto-crating (scrolled) canvas. + """RawTurtle auto-creating (scrolled) canvas. When a Turtle object is created or a function derived from some Turtle method is called a TurtleScreen object is automatically created. @@ -3731,7 +3731,7 @@ filename -- a string, used as filename default value is turtle_docstringdict - Has to be called explicitely, (not used by the turtle-graphics classes) + Has to be called explicitly, (not used by the turtle-graphics classes) The docstring dictionary will be written to the Python script .py It is intended to serve as a template for translation of the docstrings into different languages. diff --git a/Lib/lib2to3/fixes/fix_metaclass.py b/Lib/lib2to3/fixes/fix_metaclass.py --- a/Lib/lib2to3/fixes/fix_metaclass.py +++ b/Lib/lib2to3/fixes/fix_metaclass.py @@ -48,7 +48,7 @@ """ for node in cls_node.children: if node.type == syms.suite: - # already in the prefered format, do nothing + # already in the preferred format, do nothing return # !%@#! oneliners have no suite node, we have to fake one up diff --git a/Lib/lib2to3/pgen2/conv.py b/Lib/lib2to3/pgen2/conv.py --- a/Lib/lib2to3/pgen2/conv.py +++ b/Lib/lib2to3/pgen2/conv.py @@ -51,7 +51,7 @@ self.finish_off() def parse_graminit_h(self, filename): - """Parse the .h file writen by pgen. (Internal) + """Parse the .h file written by pgen. (Internal) This file is a sequence of #define statements defining the nonterminals of the grammar as numbers. We build two tables @@ -82,7 +82,7 @@ return True def parse_graminit_c(self, filename): - """Parse the .c file writen by pgen. (Internal) + """Parse the .c file written by pgen. (Internal) The file looks as follows. The first two lines are always this: diff --git a/Lib/lib2to3/pytree.py b/Lib/lib2to3/pytree.py --- a/Lib/lib2to3/pytree.py +++ b/Lib/lib2to3/pytree.py @@ -658,8 +658,8 @@ content: optional sequence of subsequences of patterns; if absent, matches one node; if present, each subsequence is an alternative [*] - min: optinal minumum number of times to match, default 0 - max: optional maximum number of times tro match, default HUGE + min: optional minimum number of times to match, default 0 + max: optional maximum number of times to match, default HUGE name: optional name assigned to this match [*] Thus, if content is [[a, b, c], [d, e], [f, g, h]] this is diff --git a/Lib/lib2to3/tests/data/py2_test_grammar.py b/Lib/lib2to3/tests/data/py2_test_grammar.py --- a/Lib/lib2to3/tests/data/py2_test_grammar.py +++ b/Lib/lib2to3/tests/data/py2_test_grammar.py @@ -316,7 +316,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/lib2to3/tests/data/py3_test_grammar.py b/Lib/lib2to3/tests/data/py3_test_grammar.py --- a/Lib/lib2to3/tests/data/py3_test_grammar.py +++ b/Lib/lib2to3/tests/data/py3_test_grammar.py @@ -356,7 +356,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/ntpath.py b/Lib/ntpath.py --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -310,7 +310,7 @@ # - $varname is accepted. # - %varname% is accepted. # - varnames can be made out of letters, digits and the characters '_-' -# (though is not verifed in the ${varname} and %varname% cases) +# (though is not verified in the ${varname} and %varname% cases) # XXX With COMMAND.COM you can use any characters in a variable name, # XXX except '^|<>='. diff --git a/Lib/pickletools.py b/Lib/pickletools.py --- a/Lib/pickletools.py +++ b/Lib/pickletools.py @@ -1370,7 +1370,7 @@ proto=0, doc="""Read an object from the memo and push it on the stack. - The index of the memo object to push is given by the newline-teriminated + The index of the memo object to push is given by the newline-terminated decimal string following. BINGET and LONG_BINGET are space-optimized versions. """), diff --git a/Lib/platform.py b/Lib/platform.py --- a/Lib/platform.py +++ b/Lib/platform.py @@ -503,7 +503,7 @@ info = pipe.read() if pipe.close(): raise os.error,'command failed' - # XXX How can I supress shell errors from being written + # XXX How can I suppress shell errors from being written # to stderr ? except os.error,why: #print 'Command %s failed: %s' % (cmd,why) diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -883,7 +883,7 @@ except pywintypes.error, e: # Translate pywintypes.error to WindowsError, which is # a subclass of OSError. FIXME: We should really - # translate errno using _sys_errlist (or simliar), but + # translate errno using _sys_errlist (or similar), but # how can this be done from Python? raise WindowsError(*e.args) finally: diff --git a/Lib/test/pyclbr_input.py b/Lib/test/pyclbr_input.py --- a/Lib/test/pyclbr_input.py +++ b/Lib/test/pyclbr_input.py @@ -19,7 +19,7 @@ # XXX: This causes test_pyclbr.py to fail, but only because the # introspection-based is_method() code in the test can't - # distinguish between this and a geniune method function like m(). + # distinguish between this and a genuine method function like m(). # The pyclbr.py module gets this right as it parses the text. # #f = f diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py --- a/Lib/test/test_builtin.py +++ b/Lib/test/test_builtin.py @@ -693,7 +693,7 @@ # provide too much opportunity for insane things to happen. # We don't want them in the interned dict and if they aren't # actually interned, we don't want to create the appearance - # that they are by allowing intern() to succeeed. + # that they are by allowing intern() to succeed. class S(str): def __hash__(self): return 123 diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py --- a/Lib/test/test_capi.py +++ b/Lib/test/test_capi.py @@ -86,7 +86,7 @@ context.event.set() def test_pendingcalls_non_threaded(self): - #again, just using the main thread, likely they will all be dispathced at + #again, just using the main thread, likely they will all be dispatched at #once. It is ok to ask for too many, because we loop until we find a slot. #the loop can be interrupted to dispatch. #there are only 32 dispatch slots, so we go for twice that! diff --git a/Lib/test/test_datetime.py b/Lib/test/test_datetime.py --- a/Lib/test/test_datetime.py +++ b/Lib/test/test_datetime.py @@ -3108,7 +3108,7 @@ self.assertEqual(dt, there_and_back) # Because we have a redundant spelling when DST begins, there is - # (unforunately) an hour when DST ends that can't be spelled at all in + # (unfortunately) an hour when DST ends that can't be spelled at all in # local time. When DST ends, the clock jumps from 1:59 back to 1:00 # again. The hour 1:MM DST has no spelling then: 1:MM is taken to be # standard time. 1:MM DST == 0:MM EST, but 0:MM is taken to be diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -231,7 +231,7 @@ try: t = self.eval_line(line) except DecimalException as exception: - #Exception raised where there shoudn't have been one. + #Exception raised where there shouldn't have been one. self.fail('Exception "'+exception.__class__.__name__ + '" raised on line '+line) return diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -4282,7 +4282,7 @@ except TypeError: pass else: - self.fail("Carlo Verre __setattr__ suceeded!") + self.fail("Carlo Verre __setattr__ succeeded!") try: object.__delattr__(str, "lower") except TypeError: diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -1292,7 +1292,7 @@ ? + ++ ^ TestResults(failed=1, attempted=1) -The REPORT_ONLY_FIRST_FAILURE supresses result output after the first +The REPORT_ONLY_FIRST_FAILURE suppresses result output after the first failing example: >>> def f(x): @@ -1322,7 +1322,7 @@ 2 TestResults(failed=3, attempted=5) -However, output from `report_start` is not supressed: +However, output from `report_start` is not suppressed: >>> doctest.DocTestRunner(verbose=True, optionflags=flags).run(test) ... # doctest: +ELLIPSIS @@ -2334,7 +2334,7 @@ TestResults(failed=0, attempted=2) >>> doctest.master = None # Reset master. -Verbosity can be increased with the optional `verbose` paremter: +Verbosity can be increased with the optional `verbose` parameter: >>> doctest.testfile('test_doctest.txt', globs=globs, verbose=True) Trying: @@ -2371,7 +2371,7 @@ TestResults(failed=1, attempted=2) >>> doctest.master = None # Reset master. -The summary report may be supressed with the optional `report` +The summary report may be suppressed with the optional `report` parameter: >>> doctest.testfile('test_doctest.txt', report=False) diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py --- a/Lib/test/test_extcall.py +++ b/Lib/test/test_extcall.py @@ -236,7 +236,7 @@ TypeError: unbound method method() must be called with Foo instance as \ first argument (got int instance instead) -A PyCFunction that takes only positional parameters shoud allow an +A PyCFunction that takes only positional parameters should allow an empty keyword dictionary to pass without a complaint, but raise a TypeError if te dictionary is not empty diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -56,7 +56,7 @@ def test_float_with_comma(self): # set locale to something that doesn't use '.' for the decimal point # float must not accept the locale specific decimal point but - # it still has to accept the normal python syntac + # it still has to accept the normal python syntax import locale if not locale.localeconv()['decimal_point'] == ',': return @@ -158,7 +158,7 @@ def assertEqualAndEqualSign(self, a, b): # fail unless a == b and a and b have the same sign bit; # the only difference from assertEqual is that this test - # distingishes -0.0 and 0.0. + # distinguishes -0.0 and 0.0. self.assertEqual((a, copysign(1.0, a)), (b, copysign(1.0, b))) @requires_IEEE_754 diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -314,7 +314,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -87,7 +87,7 @@ return self.connection.getresponse() class BaseHTTPRequestHandlerTestCase(unittest.TestCase): - """Test the functionaility of the BaseHTTPServer focussing on + """Test the functionality of the BaseHTTPServer focussing on BaseHTTPRequestHandler. """ diff --git a/Lib/test/test_iterlen.py b/Lib/test/test_iterlen.py --- a/Lib/test/test_iterlen.py +++ b/Lib/test/test_iterlen.py @@ -20,11 +20,11 @@ Some containers become temporarily immutable during iteration. This includes dicts, sets, and collections.deque. Their implementation is equally simple -though they need to permantently set their length to zero whenever there is +though they need to permanently set their length to zero whenever there is an attempt to iterate after a length mutation. The situation slightly more involved whenever an object allows length mutation -during iteration. Lists and sequence iterators are dynanamically updatable. +during iteration. Lists and sequence iterators are dynamically updatable. So, if a list is extended during iteration, the iterator will continue through the new items. If it shrinks to a point before the most recent iteration, then no further items are available and the length is reported at zero. diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -1475,7 +1475,7 @@ ... return chain(iterable, repeat(None)) >>> def ncycles(iterable, n): -... "Returns the seqeuence elements n times" +... "Returns the sequence elements n times" ... return chain(*repeat(iterable, n)) >>> def dotproduct(vec1, vec2): diff --git a/Lib/test/test_marshal.py b/Lib/test/test_marshal.py --- a/Lib/test/test_marshal.py +++ b/Lib/test/test_marshal.py @@ -252,7 +252,7 @@ # >>> type(loads(dumps(Int()))) # for typ in (int, long, float, complex, tuple, list, dict, set, frozenset): - # Note: str and unicode sublclasses are not tested because they get handled + # Note: str and unicode subclasses are not tested because they get handled # by marshal's routines for objects supporting the buffer API. subtyp = type('subtyp', (typ,), {}) self.assertRaises(ValueError, marshal.dumps, subtyp()) diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -780,7 +780,7 @@ # the following tests have been commented out since they don't # really belong here: the implementation of ** for floats is - # independent of the implemention of math.pow + # independent of the implementation of math.pow #self.assertEqual(1**NAN, 1) #self.assertEqual(1**INF, 1) #self.assertEqual(1**NINF, 1) diff --git a/Lib/test/test_memoryio.py b/Lib/test/test_memoryio.py --- a/Lib/test/test_memoryio.py +++ b/Lib/test/test_memoryio.py @@ -372,7 +372,7 @@ # Pickle expects the class to be on the module level. Here we use a # little hack to allow the PickleTestMemIO class to derive from - # self.ioclass without having to define all combinations explictly on + # self.ioclass without having to define all combinations explicitly on # the module-level. import __main__ PickleTestMemIO.__module__ = '__main__' diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -590,7 +590,7 @@ m2.close() m1.close() - # Test differnt tag + # Test different tag m1 = mmap.mmap(-1, len(data1), tagname="foo") m1[:] = data1 m2 = mmap.mmap(-1, len(data2), tagname="boo") diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -18,7 +18,7 @@ from test import test_support from StringIO import StringIO _multiprocessing = test_support.import_module('_multiprocessing') -# import threading after _multiprocessing to raise a more revelant error +# import threading after _multiprocessing to raise a more relevant error # message: "No module named _multiprocessing". _multiprocessing is not compiled # without thread support. import threading @@ -780,7 +780,7 @@ event = self.Event() wait = TimingWrapper(event.wait) - # Removed temporaily, due to API shear, this does not + # Removed temporarily, due to API shear, this does not # work with threading._Event objects. is_set == isSet self.assertEqual(event.is_set(), False) @@ -1705,7 +1705,7 @@ util.Finalize(None, conn.send, args=('STOP',), exitpriority=-100) - # call mutliprocessing's cleanup function then exit process without + # call multiprocessing's cleanup function then exit process without # garbage collecting locals util._exit_function() conn.close() diff --git a/Lib/test/test_pep277.py b/Lib/test/test_pep277.py --- a/Lib/test/test_pep277.py +++ b/Lib/test/test_pep277.py @@ -126,7 +126,7 @@ # NFD (a variant of Unicode NFD form). Normalize the filename to NFC, NFKC, # NFKD in Python is useless, because darwin will normalize it later and so # open(), os.stat(), etc. don't raise any exception. - @unittest.skipIf(sys.platform == 'darwin', 'irrevelant test on Mac OS X') + @unittest.skipIf(sys.platform == 'darwin', 'irrelevant test on Mac OS X') def test_normalize(self): files = set(f for f in self.files if isinstance(f, unicode)) others = set() @@ -145,7 +145,7 @@ # Skip the test on darwin, because darwin uses a normalization different # than Python NFD normalization: filenames are different even if we use # Python NFD normalization. - @unittest.skipIf(sys.platform == 'darwin', 'irrevelant test on Mac OS X') + @unittest.skipIf(sys.platform == 'darwin', 'irrelevant test on Mac OS X') def test_listdir(self): sf0 = set(self.files) f1 = os.listdir(test_support.TESTFN) diff --git a/Lib/test/test_pkg.py b/Lib/test/test_pkg.py --- a/Lib/test/test_pkg.py +++ b/Lib/test/test_pkg.py @@ -54,7 +54,7 @@ if self.root: # Only clean if the test was actually run cleanout(self.root) - # delete all modules concerning the tested hiearchy + # delete all modules concerning the tested hierarchy if self.pkgname: modules = [name for name in sys.modules if self.pkgname in name.split('.')] diff --git a/Lib/test/test_print.py b/Lib/test/test_print.py --- a/Lib/test/test_print.py +++ b/Lib/test/test_print.py @@ -15,7 +15,7 @@ # A dispatch table all 8 combinations of providing # sep, end, and file # I use this machinery so that I'm not just passing default -# values to print, I'm eiher passing or not passing in the +# values to print, I'm either passing or not passing in the # arguments dispatch = { (False, False, False): diff --git a/Lib/test/test_strptime.py b/Lib/test/test_strptime.py --- a/Lib/test/test_strptime.py +++ b/Lib/test/test_strptime.py @@ -536,7 +536,7 @@ self.assertIsNot(first_time_re, second_time_re) # Possible test locale is not supported while initial locale is. # If this is the case just suppress the exception and fall-through - # to the reseting to the original locale. + # to the resetting to the original locale. except locale.Error: pass # Make sure we don't trample on the locale setting once we leave the diff --git a/Lib/test/test_syntax.py b/Lib/test/test_syntax.py --- a/Lib/test/test_syntax.py +++ b/Lib/test/test_syntax.py @@ -266,7 +266,7 @@ Test continue in finally in weird combinations. -continue in for loop under finally shouuld be ok. +continue in for loop under finally should be ok. >>> def test(): ... try: diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -559,7 +559,7 @@ # This acquires the lock and then waits until the child has forked # before returning, which will release the lock soon after. If # someone else tries to fix this test case by acquiring this lock - # before forking instead of reseting it, the test case will + # before forking instead of resetting it, the test case will # deadlock when it shouldn't. condition = w._block orig_acquire = condition.acquire diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py --- a/Lib/test/test_trace.py +++ b/Lib/test/test_trace.py @@ -205,7 +205,7 @@ (self.my_py_filename, firstlineno + 4): 1, } - # When used through 'run', some other spurios counts are produced, like + # When used through 'run', some other spurious counts are produced, like # the settrace of threading, which we ignore, just making sure that the # counts fo traced_func_loop were right. # diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -641,7 +641,7 @@ # Just commented them out. # Can't really tell why keep failing in windows and sparc. -# Everywhere else they work ok, but on those machines, someteimes +# Everywhere else they work ok, but on those machines, sometimes # fail in one of the tests, sometimes in other. I have a linux, and # the tests go ok. # If anybody has one of the problematic enviroments, please help! diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py --- a/Lib/test/test_warnings.py +++ b/Lib/test/test_warnings.py @@ -320,7 +320,7 @@ sys.argv = argv def test_warn_explicit_type_errors(self): - # warn_explicit() shoud error out gracefully if it is given objects + # warn_explicit() should error out gracefully if it is given objects # of the wrong types. # lineno is expected to be an integer. self.assertRaises(TypeError, self.module.warn_explicit, diff --git a/Lib/unittest/test/test_program.py b/Lib/unittest/test/test_program.py --- a/Lib/unittest/test/test_program.py +++ b/Lib/unittest/test/test_program.py @@ -224,7 +224,7 @@ program.runTests() - # If initialising raises a type error it should be retried + # If initializing raises a type error it should be retried # without the new keyword arguments self.assertEqual(FakeRunner.initArgs, {}) self.assertEqual(FakeRunner.test, 'test') diff --git a/Lib/xml/dom/minicompat.py b/Lib/xml/dom/minicompat.py --- a/Lib/xml/dom/minicompat.py +++ b/Lib/xml/dom/minicompat.py @@ -6,7 +6,7 @@ # # NodeList -- lightest possible NodeList implementation # -# EmptyNodeList -- lightest possible NodeList that is guarateed to +# EmptyNodeList -- lightest possible NodeList that is guaranteed to # remain empty (immutable) # # StringTypes -- tuple of defined string types diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -1875,7 +1875,7 @@ e._call_user_data_handler(operation, n, entity) else: # Note the cloning of Document and DocumentType nodes is - # implemenetation specific. minidom handles those cases + # implementation specific. minidom handles those cases # directly in the cloneNode() methods. raise xml.dom.NotSupportedErr("Cannot clone node %s" % repr(node)) diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -362,7 +362,7 @@ def runCommand(commandline): """ - Run a command and raise RuntimeError if it fails. Output is surpressed + Run a command and raise RuntimeError if it fails. Output is suppressed unless the command fails. """ fd = os.popen(commandline, 'r') diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -3427,7 +3427,7 @@ /* XXX XXX This would allow to pass additional options. For COM method *implementations*, we would probably want different behaviour than in 'normal' callback functions: return a HRESULT if - an exception occurrs in the callback, and print the traceback not + an exception occurs in the callback, and print the traceback not only on the console, but also to OutputDebugString() or something like that. */ diff --git a/Modules/_ctypes/callbacks.c b/Modules/_ctypes/callbacks.c --- a/Modules/_ctypes/callbacks.c +++ b/Modules/_ctypes/callbacks.c @@ -256,7 +256,7 @@ /* XXX XXX XX We have the problem that c_byte or c_short have dict->size of 1 resp. 4, but these parameters are pushed as sizeof(int) bytes. - BTW, the same problem occurrs when they are pushed as parameters + BTW, the same problem occurs when they are pushed as parameters */ } else if (dict) { /* Hm, shouldn't we use PyCData_AtAddress() or something like that instead? */ diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -34,7 +34,7 @@ 4. _ctypes_callproc is then called with the 'callargs' tuple. _ctypes_callproc first allocates two arrays. The first is an array of 'struct argument' items, the - second array has 'void *' entried. + second array has 'void *' entries. 5. If 'converters' are present (converters is a sequence of argtypes' from_param methods), for each item in 'callargs' converter is called and the diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c --- a/Modules/_functoolsmodule.c +++ b/Modules/_functoolsmodule.c @@ -278,7 +278,7 @@ __reduce__ by itself doesn't support getting kwargs in the unpickle operation so we define a __setstate__ that replaces all the information about the partial. If we only replaced part of it someone would use - it as a hook to do stange things. + it as a hook to do strange things. */ PyObject * diff --git a/Modules/_io/iobase.c b/Modules/_io/iobase.c --- a/Modules/_io/iobase.c +++ b/Modules/_io/iobase.c @@ -49,7 +49,7 @@ "stream.\n" "\n" "IOBase also supports the :keyword:`with` statement. In this example,\n" - "fp is closed after the suite of the with statment is complete:\n" + "fp is closed after the suite of the with statement is complete:\n" "\n" "with open('spam.txt', 'r') as fp:\n" " fp.write('Spam and eggs!')\n"); diff --git a/Modules/_io/stringio.c b/Modules/_io/stringio.c --- a/Modules/_io/stringio.c +++ b/Modules/_io/stringio.c @@ -157,7 +157,7 @@ 0 lo string_size hi | |<---used--->|<----------available----------->| | | <--to pad-->|<---to write---> | - 0 buf positon + 0 buf position */ memset(self->buf + self->string_size, '\0', diff --git a/Modules/_sqlite/connection.h b/Modules/_sqlite/connection.h --- a/Modules/_sqlite/connection.h +++ b/Modules/_sqlite/connection.h @@ -55,7 +55,7 @@ /* None for autocommit, otherwise a PyString with the isolation level */ PyObject* isolation_level; - /* NULL for autocommit, otherwise a string with the BEGIN statment; will be + /* NULL for autocommit, otherwise a string with the BEGIN statement; will be * freed in connection destructor */ char* begin_statement; diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c --- a/Modules/cmathmodule.c +++ b/Modules/cmathmodule.c @@ -23,7 +23,7 @@ /* CM_LARGE_DOUBLE is used to avoid spurious overflow in the sqrt, log, inverse trig and inverse hyperbolic trig functions. Its log is used in the - evaluation of exp, cos, cosh, sin, sinh, tan, and tanh to avoid unecessary + evaluation of exp, cos, cosh, sin, sinh, tan, and tanh to avoid unnecessary overflow. */ diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2329,7 +2329,7 @@ * This is the guts of the recv() and recv_into() methods, which reads into a * char buffer. If you have any inc/dec ref to do to the objects that contain * the buffer, do it in the caller. This function returns the number of bytes - * succesfully read. If there was an error, it returns -1. Note that it is + * successfully read. If there was an error, it returns -1. Note that it is * also possible that we return a number of bytes smaller than the request * bytes. */ @@ -2442,9 +2442,9 @@ } if (outlen != recvlen) { /* We did not read as many bytes as we anticipated, resize the - string if possible and be succesful. */ + string if possible and be successful. */ if (_PyString_Resize(&buf, outlen) < 0) - /* Oopsy, not so succesful after all. */ + /* Oopsy, not so successful after all. */ return NULL; } @@ -2527,7 +2527,7 @@ * This is the guts of the recvfrom() and recvfrom_into() methods, which reads * into a char buffer. If you have any inc/def ref to do to the objects that * contain the buffer, do it in the caller. This function returns the number - * of bytes succesfully read. If there was an error, it returns -1. Note + * of bytes successfully read. If there was an error, it returns -1. Note * that it is also possible that we return a number of bytes smaller than the * request bytes. * @@ -2620,9 +2620,9 @@ if (outlen != recvlen) { /* We did not read as many bytes as we anticipated, resize the - string if possible and be succesful. */ + string if possible and be successful. */ if (_PyString_Resize(&buf, outlen) < 0) - /* Oopsy, not so succesful after all. */ + /* Oopsy, not so successful after all. */ goto finally; } @@ -4413,7 +4413,7 @@ return 0; /* Failure */ #else - /* No need to initialise sockets with GCC/EMX */ + /* No need to initialize sockets with GCC/EMX */ return 1; /* Success */ #endif } @@ -4449,7 +4449,7 @@ as makefile(), dup() and fromfd(). The import of "_socket" may fail with an ImportError exception if os-specific initialization fails. On Windows, this does WINSOCK initialization. When WINSOCK is - initialized succesfully, a call to WSACleanup() is scheduled to be + initialized successfully, a call to WSACleanup() is scheduled to be made at exit time. */ diff --git a/Modules/timemodule.c b/Modules/timemodule.c --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -635,7 +635,7 @@ buf.tm_wday = -1; /* sentinel; original value ignored */ tt = mktime(&buf); /* Return value of -1 does not necessarily mean an error, but tm_wday - * cannot remain set to -1 if mktime succedded. */ + * cannot remain set to -1 if mktime succeeded. */ if (tt == (time_t)(-1) && buf.tm_wday == -1) { PyErr_SetString(PyExc_OverflowError, "mktime argument out of range"); diff --git a/Modules/zipimport.c b/Modules/zipimport.c --- a/Modules/zipimport.c +++ b/Modules/zipimport.c @@ -1053,7 +1053,7 @@ } /* Given a path to a .pyc or .pyo file in the archive, return the - modifictaion time of the matching .py file, or 0 if no source + modification time of the matching .py file, or 0 if no source is available. */ static time_t get_mtime_of_source(ZipImporter *self, char *path) diff --git a/Modules/zlib/deflate.h b/Modules/zlib/deflate.h --- a/Modules/zlib/deflate.h +++ b/Modules/zlib/deflate.h @@ -188,7 +188,7 @@ int nice_match; /* Stop searching when current match exceeds this */ /* used by trees.c: */ - /* Didn't use ct_data typedef below to supress compiler warning */ + /* Didn't use ct_data typedef below to suppress compiler warning */ struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */ struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */ struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */ diff --git a/Modules/zlib/gzio.c b/Modules/zlib/gzio.c --- a/Modules/zlib/gzio.c +++ b/Modules/zlib/gzio.c @@ -256,7 +256,7 @@ /* =========================================================================== Read a byte from a gz_stream; update next_in and avail_in. Return EOF for end of file. - IN assertion: the stream s has been sucessfully opened for reading. + IN assertion: the stream s has been successfully opened for reading. */ local int get_byte(s) gz_stream *s; @@ -281,7 +281,7 @@ mode to transparent if the gzip magic header is not present; set s->err to Z_DATA_ERROR if the magic header is present but the rest of the header is incorrect. - IN assertion: the stream s has already been created sucessfully; + IN assertion: the stream s has already been created successfully; s->stream.avail_in is zero for the first time, but may be non-zero for concatenated .gz files. */ diff --git a/Objects/dictobject.c b/Objects/dictobject.c --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -2297,7 +2297,7 @@ assert(d->ma_table == NULL && d->ma_fill == 0 && d->ma_used == 0); INIT_NONZERO_DICT_SLOTS(d); d->ma_lookup = lookdict_string; - /* The object has been implicitely tracked by tp_alloc */ + /* The object has been implicitly tracked by tp_alloc */ if (type == &PyDict_Type) _PyObject_GC_UNTRACK(d); #ifdef SHOW_CONVERSION_COUNTS diff --git a/Objects/listobject.c b/Objects/listobject.c --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -11,7 +11,7 @@ /* Ensure ob_item has room for at least newsize elements, and set * ob_size to newsize. If newsize > ob_size on entry, the content * of the new slots at exit is undefined heap trash; it's the caller's - * responsiblity to overwrite them with sane values. + * responsibility to overwrite them with sane values. * The number of allocated elements may grow, shrink, or stay the same. * Failure is impossible if newsize <= self.allocated on entry, although * that partly relies on an assumption that the system realloc() never diff --git a/Objects/longobject.c b/Objects/longobject.c --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -532,7 +532,7 @@ is_signed = *pendbyte >= 0x80; /* Compute numsignificantbytes. This consists of finding the most - significant byte. Leading 0 bytes are insignficant if the number + significant byte. Leading 0 bytes are insignificant if the number is positive, and leading 0xff bytes if negative. */ { size_t i; diff --git a/Objects/typeobject.c b/Objects/typeobject.c --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -1054,7 +1054,7 @@ self has a refcount of 0, and if gc ever gets its hands on it (which can happen if any weakref callback gets invoked), it looks like trash to gc too, and gc also tries to delete self - then. But we're already deleting self. Double dealloction is + then. But we're already deleting self. Double deallocation is a subtle disaster. Q. Why the bizarre (net-zero) manipulation of @@ -6345,7 +6345,7 @@ slots compete for the same descriptor (for example both sq_item and mp_subscript generate a __getitem__ descriptor). - In the latter case, the first slotdef entry encoutered wins. Since + In the latter case, the first slotdef entry encountered wins. Since slotdef entries are sorted by the offset of the slot in the PyHeapTypeObject, this gives us some control over disambiguating between competing slots: the members of PyHeapTypeObject are listed diff --git a/PC/bdist_wininst/extract.c b/PC/bdist_wininst/extract.c --- a/PC/bdist_wininst/extract.c +++ b/PC/bdist_wininst/extract.c @@ -54,7 +54,7 @@ return TRUE; } -/* XXX Should better explicitely specify +/* XXX Should better explicitly specify * uncomp_size and file_times instead of pfhdr! */ char *map_new_file(DWORD flags, char *filename, @@ -164,7 +164,7 @@ zstream.avail_out = uncomp_size; /* Apparently an undocumented feature of zlib: Set windowsize - to negative values to supress the gzip header and be compatible with + to negative values to suppress the gzip header and be compatible with zip! */ result = TRUE; if (Z_OK != (x = inflateInit2(&zstream, -15))) { diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c --- a/PC/bdist_wininst/install.c +++ b/PC/bdist_wininst/install.c @@ -147,7 +147,7 @@ the permissions of the current user. */ HKEY hkey_root = (HKEY)-1; -BOOL success; /* Installation successfull? */ +BOOL success; /* Installation successful? */ char *failure_reason = NULL; HANDLE hBitmap; @@ -765,7 +765,7 @@ tempname = tempnam(NULL, NULL); // We use a static CRT while the Python version we load uses - // the CRT from one of various possibile DLLs. As a result we + // the CRT from one of various possible DLLs. As a result we // need to redirect the standard handles using the API rather // than the CRT. redirected = CreateFile( diff --git a/PC/os2emx/dlfcn.c b/PC/os2emx/dlfcn.c --- a/PC/os2emx/dlfcn.c +++ b/PC/os2emx/dlfcn.c @@ -188,7 +188,7 @@ return NULL; } -/* free dynamicaly-linked library */ +/* free dynamically-linked library */ int dlclose(void *handle) { int rc; diff --git a/PC/os2emx/dlfcn.h b/PC/os2emx/dlfcn.h --- a/PC/os2emx/dlfcn.h +++ b/PC/os2emx/dlfcn.h @@ -42,7 +42,7 @@ /* return a pointer to the `symbol' in DLL */ void *dlsym(void *handle, char *symbol); -/* free dynamicaly-linked library */ +/* free dynamically-linked library */ int dlclose(void *handle); /* return a string describing last occurred dl error */ diff --git a/Python/ceval.c b/Python/ceval.c --- a/Python/ceval.c +++ b/Python/ceval.c @@ -27,7 +27,7 @@ typedef unsigned long long uint64; -/* PowerPC suppport. +/* PowerPC support. "__ppc__" appears to be the preprocessor definition to detect on OS X, whereas "__powerpc__" appears to be the correct one for Linux with GCC */ @@ -987,7 +987,7 @@ if (--_Py_Ticker < 0) { if (*next_instr == SETUP_FINALLY) { /* Make the last opcode before - a try: finally: block uninterruptable. */ + a try: finally: block uninterruptible. */ goto fast_next_opcode; } _Py_Ticker = _Py_CheckInterval; diff --git a/Python/pystate.c b/Python/pystate.c --- a/Python/pystate.c +++ b/Python/pystate.c @@ -463,7 +463,7 @@ /* for i in all interpreters: * for t in all of i's thread states: * if t's frame isn't NULL, map t's id to its frame - * Because these lists can mutute even when the GIL is held, we + * Because these lists can mutate even when the GIL is held, we * need to grab head_mutex for the duration. */ HEAD_LOCK(); diff --git a/Python/thread.c b/Python/thread.c --- a/Python/thread.c +++ b/Python/thread.c @@ -46,7 +46,7 @@ #endif /* Check if we're running on HP-UX and _SC_THREADS is defined. If so, then - enough of the Posix threads package is implimented to support python + enough of the Posix threads package is implemented to support python threads. This is valid for HP-UX 11.23 running on an ia64 system. If needed, add diff --git a/Tools/freeze/checkextensions_win32.py b/Tools/freeze/checkextensions_win32.py --- a/Tools/freeze/checkextensions_win32.py +++ b/Tools/freeze/checkextensions_win32.py @@ -7,7 +7,7 @@ we get it just right, a specific freeze application may have specific compiler options anyway (eg, to enable or disable specific functionality) -So my basic stragtegy is: +So my basic strategy is: * Have some Windows INI files which "describe" one or more extension modules. (Freeze comes with a default one for all known modules - but you can specify diff --git a/Tools/scripts/fixcid.py b/Tools/scripts/fixcid.py --- a/Tools/scripts/fixcid.py +++ b/Tools/scripts/fixcid.py @@ -188,7 +188,7 @@ except os.error, msg: err(filename + ': rename failed (' + str(msg) + ')\n') return 1 - # Return succes + # Return success return 0 # Tokenizing ANSI C (partly) diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -1061,8 +1061,8 @@ if sys.platform == 'darwin': # In every directory on the search path search for a dynamic # library and then a static library, instead of first looking - # for dynamic libraries on the entiry path. - # This way a staticly linked custom sqlite gets picked up + # for dynamic libraries on the entire path. + # This way a statically linked custom sqlite gets picked up # before the dynamic library in /usr/lib. sqlite_extra_link_args = ('-Wl,-search_paths_first',) else: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 11:47:28 2011 From: python-checkins at python.org (ezio.melotti) Date: Wed, 16 Mar 2011 11:47:28 +0100 Subject: [Python-checkins] cpython (2.7): Revert typo fixes in zlib/* Message-ID: http://hg.python.org/cpython/rev/b3e07abeff45 changeset: 68589:b3e07abeff45 branch: 2.7 user: Ezio Melotti date: Wed Mar 16 12:46:40 2011 +0200 summary: Revert typo fixes in zlib/* files: Modules/zlib/deflate.h Modules/zlib/gzio.c diff --git a/Modules/zlib/deflate.h b/Modules/zlib/deflate.h --- a/Modules/zlib/deflate.h +++ b/Modules/zlib/deflate.h @@ -188,7 +188,7 @@ int nice_match; /* Stop searching when current match exceeds this */ /* used by trees.c: */ - /* Didn't use ct_data typedef below to suppress compiler warning */ + /* Didn't use ct_data typedef below to supress compiler warning */ struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */ struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */ struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */ diff --git a/Modules/zlib/gzio.c b/Modules/zlib/gzio.c --- a/Modules/zlib/gzio.c +++ b/Modules/zlib/gzio.c @@ -256,7 +256,7 @@ /* =========================================================================== Read a byte from a gz_stream; update next_in and avail_in. Return EOF for end of file. - IN assertion: the stream s has been successfully opened for reading. + IN assertion: the stream s has been sucessfully opened for reading. */ local int get_byte(s) gz_stream *s; @@ -281,7 +281,7 @@ mode to transparent if the gzip magic header is not present; set s->err to Z_DATA_ERROR if the magic header is present but the rest of the header is incorrect. - IN assertion: the stream s has already been created successfully; + IN assertion: the stream s has already been created sucessfully; s->stream.avail_in is zero for the first time, but may be non-zero for concatenated .gz files. */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 11:49:47 2011 From: python-checkins at python.org (ezio.melotti) Date: Wed, 16 Mar 2011 11:49:47 +0100 Subject: [Python-checkins] cpython (3.1): Revert typo fixes in zlib/* Message-ID: http://hg.python.org/cpython/rev/f2ac5bbc1623 changeset: 68590:f2ac5bbc1623 branch: 3.1 parent: 68585:bf94b6a73fc8 user: Ezio Melotti date: Wed Mar 16 12:48:54 2011 +0200 summary: Revert typo fixes in zlib/* files: Modules/zlib/deflate.h Modules/zlib/gzio.c diff --git a/Modules/zlib/deflate.h b/Modules/zlib/deflate.h --- a/Modules/zlib/deflate.h +++ b/Modules/zlib/deflate.h @@ -188,7 +188,7 @@ int nice_match; /* Stop searching when current match exceeds this */ /* used by trees.c: */ - /* Didn't use ct_data typedef below to suppress compiler warning */ + /* Didn't use ct_data typedef below to supress compiler warning */ struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */ struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */ struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */ diff --git a/Modules/zlib/gzio.c b/Modules/zlib/gzio.c --- a/Modules/zlib/gzio.c +++ b/Modules/zlib/gzio.c @@ -256,7 +256,7 @@ /* =========================================================================== Read a byte from a gz_stream; update next_in and avail_in. Return EOF for end of file. - IN assertion: the stream s has been successfully opened for reading. + IN assertion: the stream s has been sucessfully opened for reading. */ local int get_byte(s) gz_stream *s; @@ -281,7 +281,7 @@ mode to transparent if the gzip magic header is not present; set s->err to Z_DATA_ERROR if the magic header is present but the rest of the header is incorrect. - IN assertion: the stream s has already been created successfully; + IN assertion: the stream s has already been created sucessfully; s->stream.avail_in is zero for the first time, but may be non-zero for concatenated .gz files. */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 11:53:46 2011 From: python-checkins at python.org (ezio.melotti) Date: Wed, 16 Mar 2011 11:53:46 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge with 3.1. Message-ID: http://hg.python.org/cpython/rev/6b75ef7cc49e changeset: 68591:6b75ef7cc49e branch: 3.2 parent: 68586:dc245d681901 parent: 68590:f2ac5bbc1623 user: Ezio Melotti date: Wed Mar 16 12:51:44 2011 +0200 summary: Merge with 3.1. files: Modules/zlib/deflate.h diff --git a/Modules/zlib/deflate.h b/Modules/zlib/deflate.h --- a/Modules/zlib/deflate.h +++ b/Modules/zlib/deflate.h @@ -188,7 +188,7 @@ int nice_match; /* Stop searching when current match exceeds this */ /* used by trees.c: */ - /* Didn't use ct_data typedef below to suppress compiler warning */ + /* Didn't use ct_data typedef below to supress compiler warning */ struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */ struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */ struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */ diff --git a/Modules/zlib/gzio.c b/Modules/zlib/gzio.c --- a/Modules/zlib/gzio.c +++ b/Modules/zlib/gzio.c @@ -256,7 +256,7 @@ /* =========================================================================== Read a byte from a gz_stream; update next_in and avail_in. Return EOF for end of file. - IN assertion: the stream s has been successfully opened for reading. + IN assertion: the stream s has been sucessfully opened for reading. */ local int get_byte(s) gz_stream *s; @@ -281,7 +281,7 @@ mode to transparent if the gzip magic header is not present; set s->err to Z_DATA_ERROR if the magic header is present but the rest of the header is incorrect. - IN assertion: the stream s has already been created successfully; + IN assertion: the stream s has already been created sucessfully; s->stream.avail_in is zero for the first time, but may be non-zero for concatenated .gz files. */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 11:53:47 2011 From: python-checkins at python.org (ezio.melotti) Date: Wed, 16 Mar 2011 11:53:47 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge with 3.2. Message-ID: http://hg.python.org/cpython/rev/251fe1a3dbba changeset: 68592:251fe1a3dbba parent: 68587:db73857669fb parent: 68591:6b75ef7cc49e user: Ezio Melotti date: Wed Mar 16 12:52:57 2011 +0200 summary: Merge with 3.2. files: diff --git a/Modules/zlib/deflate.h b/Modules/zlib/deflate.h --- a/Modules/zlib/deflate.h +++ b/Modules/zlib/deflate.h @@ -188,7 +188,7 @@ int nice_match; /* Stop searching when current match exceeds this */ /* used by trees.c: */ - /* Didn't use ct_data typedef below to suppress compiler warning */ + /* Didn't use ct_data typedef below to supress compiler warning */ struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */ struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */ struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */ diff --git a/Modules/zlib/gzio.c b/Modules/zlib/gzio.c --- a/Modules/zlib/gzio.c +++ b/Modules/zlib/gzio.c @@ -256,7 +256,7 @@ /* =========================================================================== Read a byte from a gz_stream; update next_in and avail_in. Return EOF for end of file. - IN assertion: the stream s has been successfully opened for reading. + IN assertion: the stream s has been sucessfully opened for reading. */ local int get_byte(s) gz_stream *s; @@ -281,7 +281,7 @@ mode to transparent if the gzip magic header is not present; set s->err to Z_DATA_ERROR if the magic header is present but the rest of the header is incorrect. - IN assertion: the stream s has already been created successfully; + IN assertion: the stream s has already been created sucessfully; s->stream.avail_in is zero for the first time, but may be non-zero for concatenated .gz files. */ -- Repository URL: http://hg.python.org/cpython From orsenthil at gmail.com Wed Mar 16 13:52:43 2011 From: orsenthil at gmail.com (Senthil Kumaran) Date: Wed, 16 Mar 2011 20:52:43 +0800 Subject: [Python-checkins] cpython (2.7): #11565: Fix several typos. Patch by Piotr Kasprzyk. In-Reply-To: References: Message-ID: On Wed, Mar 16, 2011 at 6:35 PM, ezio.melotti wrote: > ?#11565: Fix several typos. Patch by Piotr Kasprzyk. Woo. cool. :) For a moment I got scared if Piotr was a spam bot or spellcheck bot. Yes, having correct spelling definitely helps. -- Senthil From python-checkins at python.org Wed Mar 16 14:47:49 2011 From: python-checkins at python.org (ronald.oussoren) Date: Wed, 16 Mar 2011 14:47:49 +0100 Subject: [Python-checkins] cpython (3.1): Issue #11569: use absolute path to the sysctl command in multiprocessing to Message-ID: http://hg.python.org/cpython/rev/c394f2d42ff8 changeset: 68593:c394f2d42ff8 branch: 3.1 parent: 68590:f2ac5bbc1623 user: Ronald Oussoren date: Wed Mar 16 09:41:32 2011 -0400 summary: Issue #11569: use absolute path to the sysctl command in multiprocessing to ensure that it will be found regardless of the shell PATH. This ensures that multiprocessing.cpu_count works on default installs of MacOSX. files: Lib/multiprocessing/__init__.py Misc/ACKS Misc/NEWS diff --git a/Lib/multiprocessing/__init__.py b/Lib/multiprocessing/__init__.py --- a/Lib/multiprocessing/__init__.py +++ b/Lib/multiprocessing/__init__.py @@ -115,8 +115,11 @@ except (ValueError, KeyError): num = 0 elif 'bsd' in sys.platform or sys.platform == 'darwin': + comm = '/sbin/sysctl -n hw.ncpu' + if sys.platform == 'darwin': + comm = '/usr' + comm try: - with os.popen('sysctl -n hw.ncpu') as p: + with os.popen(comm) as p: num = int(p.read()) except ValueError: num = 0 diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -583,6 +583,7 @@ Joe Norton Neal Norwitz Michal Nowikowski +Steffen Daode Nurpmeso Nigel O'Brian Kevin O'Connor Tim O'Malley diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,10 @@ Library ------- +- Issue #11569: use absolute path to the sysctl command in multiprocessing to + ensure that it will be found regardless of the shell PATH. This ensures + that multiprocessing.cpu_count works on default installs of MacOSX. + - Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is not installed. Instead, the zipfile.ZIP_STORED compression is used to create the ZipFile. Patch by Natalia B. Bidart. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 14:47:50 2011 From: python-checkins at python.org (ronald.oussoren) Date: Wed, 16 Mar 2011 14:47:50 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge with 3.1 Message-ID: http://hg.python.org/cpython/rev/02dbfceeee55 changeset: 68594:02dbfceeee55 branch: 3.2 parent: 68591:6b75ef7cc49e parent: 68593:c394f2d42ff8 user: Ronald Oussoren date: Wed Mar 16 09:43:06 2011 -0400 summary: Merge with 3.1 files: Lib/multiprocessing/__init__.py Misc/ACKS Misc/NEWS diff --git a/Lib/multiprocessing/__init__.py b/Lib/multiprocessing/__init__.py --- a/Lib/multiprocessing/__init__.py +++ b/Lib/multiprocessing/__init__.py @@ -115,8 +115,11 @@ except (ValueError, KeyError): num = 0 elif 'bsd' in sys.platform or sys.platform == 'darwin': + comm = '/sbin/sysctl -n hw.ncpu' + if sys.platform == 'darwin': + comm = '/usr' + comm try: - with os.popen('sysctl -n hw.ncpu') as p: + with os.popen(comm) as p: num = int(p.read()) except ValueError: num = 0 diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -624,6 +624,7 @@ Joe Norton Neal Norwitz Michal Nowikowski +Steffen Daode Nurpmeso Nigel O'Brian Kevin O'Connor Tim O'Malley diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -43,6 +43,10 @@ - Issue #11133: fix two cases where inspect.getattr_static can trigger code execution. Patch by Daniel Urban. +- Issue #11569: use absolute path to the sysctl command in multiprocessing to + ensure that it will be found regardless of the shell PATH. This ensures + that multiprocessing.cpu_count works on default installs of MacOSX. + - Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is not installed. Instead, the zipfile.ZIP_STORED compression is used to create the ZipFile. Patch by Natalia B. Bidart. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 14:47:57 2011 From: python-checkins at python.org (ronald.oussoren) Date: Wed, 16 Mar 2011 14:47:57 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge with 3.2 Message-ID: http://hg.python.org/cpython/rev/71b182134853 changeset: 68595:71b182134853 parent: 68592:251fe1a3dbba parent: 68594:02dbfceeee55 user: Ronald Oussoren date: Wed Mar 16 09:44:26 2011 -0400 summary: Merge with 3.2 files: Misc/ACKS Misc/NEWS diff --git a/Lib/multiprocessing/__init__.py b/Lib/multiprocessing/__init__.py --- a/Lib/multiprocessing/__init__.py +++ b/Lib/multiprocessing/__init__.py @@ -115,8 +115,11 @@ except (ValueError, KeyError): num = 0 elif 'bsd' in sys.platform or sys.platform == 'darwin': + comm = '/sbin/sysctl -n hw.ncpu' + if sys.platform == 'darwin': + comm = '/usr' + comm try: - with os.popen('sysctl -n hw.ncpu') as p: + with os.popen(comm) as p: num = int(p.read()) except ValueError: num = 0 diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -75,6 +75,10 @@ - Issue #11133: fix two cases where inspect.getattr_static can trigger code execution. Patch by Daniel Urban. +- Issue #11569: use absolute path to the sysctl command in multiprocessing to + ensure that it will be found regardless of the shell PATH. This ensures + that multiprocessing.cpu_count works on default installs of MacOSX. + - Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is not installed. Instead, the zipfile.ZIP_STORED compression is used to create the ZipFile. Patch by Natalia B. Bidart. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 14:48:02 2011 From: python-checkins at python.org (ronald.oussoren) Date: Wed, 16 Mar 2011 14:48:02 +0100 Subject: [Python-checkins] cpython (2.7): Issue #11569: use absolute path to the sysctl command in multiprocessing to Message-ID: http://hg.python.org/cpython/rev/b8f280d0cdbf changeset: 68596:b8f280d0cdbf branch: 2.7 parent: 68589:b3e07abeff45 user: Ronald Oussoren date: Wed Mar 16 09:47:15 2011 -0400 summary: Issue #11569: use absolute path to the sysctl command in multiprocessing to ensure that it will be found regardless of the shell PATH. This ensures that multiprocessing.cpu_count works on default installs of MacOSX. Patch by Steffen Daode Nurpmeso. files: Lib/multiprocessing/__init__.py Misc/ACKS Misc/NEWS diff --git a/Lib/multiprocessing/__init__.py b/Lib/multiprocessing/__init__.py --- a/Lib/multiprocessing/__init__.py +++ b/Lib/multiprocessing/__init__.py @@ -116,8 +116,11 @@ except (ValueError, KeyError): num = 0 elif 'bsd' in sys.platform or sys.platform == 'darwin': + comm = '/sbin/sysctl -n hw.ncpu' + if sys.platform == 'darwin': + comm = '/usr' + comm try: - with os.popen('sysctl -n hw.ncpu') as p: + with os.popen(comm) as p: num = int(p.read()) except ValueError: num = 0 diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -587,6 +587,7 @@ Joe Norton Neal Norwitz Michal Nowikowski +Steffen Daode Nurpmeso Nigel O'Brian Kevin O'Connor Tim O'Malley diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -43,6 +43,10 @@ Library ------- +- Issue #11569: use absolute path to the sysctl command in multiprocessing to + ensure that it will be found regardless of the shell PATH. This ensures + that multiprocessing.cpu_count works on default installs of MacOSX. + - Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP addresses in the proxy exception list. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 15:03:18 2011 From: python-checkins at python.org (ronald.oussoren) Date: Wed, 16 Mar 2011 15:03:18 +0100 Subject: [Python-checkins] cpython: Fix typo in subprocess documentation. Message-ID: http://hg.python.org/cpython/rev/e33e45cc4ea8 changeset: 68597:e33e45cc4ea8 parent: 68595:71b182134853 user: Ronald Oussoren date: Wed Mar 16 10:03:10 2011 -0400 summary: Fix typo in subprocess documentation. files: Doc/library/subprocess.rst diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -387,7 +387,7 @@ :func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if the timeout expires before the process exits. -Exceptions defined in this module all inherit from :ext:`SubprocessError`. +Exceptions defined in this module all inherit from :exc:`SubprocessError`. .. versionadded:: 3.3 The :exc:`SubprocessError` base class was added. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 16:29:45 2011 From: python-checkins at python.org (benjamin.peterson) Date: Wed, 16 Mar 2011 16:29:45 +0100 Subject: [Python-checkins] cpython (3.2): correct patch ack (#11133) Message-ID: http://hg.python.org/cpython/rev/382cb3386d57 changeset: 68598:382cb3386d57 branch: 3.2 parent: 68594:02dbfceeee55 user: Benjamin Peterson date: Wed Mar 16 10:29:19 2011 -0500 summary: correct patch ack (#11133) files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -41,7 +41,7 @@ ------- - Issue #11133: fix two cases where inspect.getattr_static can trigger code - execution. Patch by Daniel Urban. + execution. Patch by Andreas St?hrk. - Issue #11569: use absolute path to the sysctl command in multiprocessing to ensure that it will be found regardless of the shell PATH. This ensures -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 16:29:49 2011 From: python-checkins at python.org (benjamin.peterson) Date: Wed, 16 Mar 2011 16:29:49 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge 3.2 Message-ID: http://hg.python.org/cpython/rev/f0d3a3699593 changeset: 68599:f0d3a3699593 parent: 68597:e33e45cc4ea8 parent: 68598:382cb3386d57 user: Benjamin Peterson date: Wed Mar 16 10:29:37 2011 -0500 summary: merge 3.2 files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -73,7 +73,7 @@ ------- - Issue #11133: fix two cases where inspect.getattr_static can trigger code - execution. Patch by Daniel Urban. + execution. Patch by Andreas St?hrk. - Issue #11569: use absolute path to the sysctl command in multiprocessing to ensure that it will be found regardless of the shell PATH. This ensures -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 18:28:25 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 16 Mar 2011 18:28:25 +0100 Subject: [Python-checkins] devguide: Add new committers from packaging development. Message-ID: http://hg.python.org/devguide/rev/5947b7af167a changeset: 395:5947b7af167a user: Georg Brandl date: Wed Mar 16 18:28:19 2011 +0100 summary: Add new committers from packaging development. files: developers.rst diff --git a/developers.rst b/developers.rst --- a/developers.rst +++ b/developers.rst @@ -24,6 +24,10 @@ Permissions History ------------------- +- Alexis M?taireau, Elson Rodriguez, Kelsey Hightower, Michael Mulich and + Walker Hale were given push privileges on Mar 16 2011 by GFB, for + contributions to the packaging module. + - Jeff Hardy was given push privileges on Mar 14 2011 by BAC, for stdlib compatibility work for IronPython. -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Wed Mar 16 18:36:55 2011 From: python-checkins at python.org (ross.lagerwall) Date: Wed, 16 Mar 2011 18:36:55 +0100 Subject: [Python-checkins] cpython: Issue #5870: Add subprocess.DEVNULL constant. Message-ID: http://hg.python.org/cpython/rev/eaf93e156dff changeset: 68600:eaf93e156dff user: Ross Lagerwall date: Wed Mar 16 18:40:25 2011 +0200 summary: Issue #5870: Add subprocess.DEVNULL constant. files: Doc/library/subprocess.rst Lib/subprocess.py Lib/test/test_subprocess.py Misc/NEWS diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -125,12 +125,14 @@ *stdin*, *stdout* and *stderr* specify the executed programs' standard input, standard output and standard error file handles, respectively. Valid values - are :data:`PIPE`, an existing file descriptor (a positive integer), an - existing :term:`file object`, and ``None``. :data:`PIPE` indicates that a - new pipe to the child should be created. With ``None``, no redirection will - occur; the child's file handles will be inherited from the parent. Additionally, - *stderr* can be :data:`STDOUT`, which indicates that the stderr data from the - applications should be captured into the same file handle as for stdout. + are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive + integer), an existing :term:`file object`, and ``None``. :data:`PIPE` + indicates that a new pipe to the child should be created. :data:`DEVNULL` + indicates that the special file :data:`os.devnull` will be used. With ``None``, + no redirection will occur; the child's file handles will be inherited from + the parent. Additionally, *stderr* can be :data:`STDOUT`, which indicates + that the stderr data from the applications should be captured into the same + file handle as for stdout. If *preexec_fn* is set to a callable object, this object will be called in the child process just before the child is executed. @@ -229,6 +231,15 @@ Added context manager support. +.. data:: DEVNULL + + Special value that can be used as the *stdin*, *stdout* or *stderr* argument + to :class:`Popen` and indicates that the special file :data:`os.devnull` + will be used. + + .. versionadded:: 3.3 + + .. data:: PIPE Special value that can be used as the *stdin*, *stdout* or *stderr* argument diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -431,7 +431,7 @@ return fds __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput", - "getoutput", "check_output", "CalledProcessError"] + "getoutput", "check_output", "CalledProcessError", "DEVNULL"] if mswindows: from _subprocess import CREATE_NEW_CONSOLE, CREATE_NEW_PROCESS_GROUP @@ -456,6 +456,7 @@ PIPE = -1 STDOUT = -2 +DEVNULL = -3 def _eintr_retry_call(func, *args): @@ -800,6 +801,10 @@ # Child is still running, keep us alive until we can wait on it. _active.append(self) + def _get_devnull(self): + if not hasattr(self, '_devnull'): + self._devnull = os.open(os.devnull, os.O_RDWR) + return self._devnull def communicate(self, input=None, timeout=None): """Interact with process: Send data to stdin. Read data from @@ -889,6 +894,8 @@ p2cread, _ = _subprocess.CreatePipe(None, 0) elif stdin == PIPE: p2cread, p2cwrite = _subprocess.CreatePipe(None, 0) + elif stdin == DEVNULL: + p2cread = msvcrt.get_osfhandle(self._get_devnull()) elif isinstance(stdin, int): p2cread = msvcrt.get_osfhandle(stdin) else: @@ -902,6 +909,8 @@ _, c2pwrite = _subprocess.CreatePipe(None, 0) elif stdout == PIPE: c2pread, c2pwrite = _subprocess.CreatePipe(None, 0) + elif stdout == DEVNULL: + c2pwrite = msvcrt.get_osfhandle(self._get_devnull()) elif isinstance(stdout, int): c2pwrite = msvcrt.get_osfhandle(stdout) else: @@ -917,6 +926,8 @@ errread, errwrite = _subprocess.CreatePipe(None, 0) elif stderr == STDOUT: errwrite = c2pwrite + elif stderr == DEVNULL: + errwrite = msvcrt.get_osfhandle(self._get_devnull()) elif isinstance(stderr, int): errwrite = msvcrt.get_osfhandle(stderr) else: @@ -1026,6 +1037,8 @@ c2pwrite.Close() if errwrite != -1: errwrite.Close() + if hasattr(self, '_devnull'): + os.close(self._devnull) # Retain the process handle, but close the thread handle self._child_created = True @@ -1159,6 +1172,8 @@ pass elif stdin == PIPE: p2cread, p2cwrite = _create_pipe() + elif stdin == DEVNULL: + p2cread = self._get_devnull() elif isinstance(stdin, int): p2cread = stdin else: @@ -1169,6 +1184,8 @@ pass elif stdout == PIPE: c2pread, c2pwrite = _create_pipe() + elif stdout == DEVNULL: + c2pwrite = self._get_devnull() elif isinstance(stdout, int): c2pwrite = stdout else: @@ -1181,6 +1198,8 @@ errread, errwrite = _create_pipe() elif stderr == STDOUT: errwrite = c2pwrite + elif stderr == DEVNULL: + errwrite = self._get_devnull() elif isinstance(stderr, int): errwrite = stderr else: @@ -1374,6 +1393,8 @@ os.close(c2pwrite) if errwrite != -1 and errread != -1: os.close(errwrite) + if hasattr(self, '_devnull'): + os.close(self._devnull) # Wait for exec to fail or succeed; possibly raising an # exception (limited in size) diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -323,6 +323,31 @@ rc = subprocess.call([sys.executable, "-c", cmd], stdout=1) self.assertEqual(rc, 2) + def test_stdout_devnull(self): + p = subprocess.Popen([sys.executable, "-c", + 'for i in range(10240):' + 'print("x" * 1024)'], + stdout=subprocess.DEVNULL) + p.wait() + self.assertEqual(p.stdout, None) + + def test_stderr_devnull(self): + p = subprocess.Popen([sys.executable, "-c", + 'import sys\n' + 'for i in range(10240):' + 'sys.stderr.write("x" * 1024)'], + stderr=subprocess.DEVNULL) + p.wait() + self.assertEqual(p.stderr, None) + + def test_stdin_devnull(self): + p = subprocess.Popen([sys.executable, "-c", + 'import sys;' + 'sys.stdin.read(1)'], + stdin=subprocess.DEVNULL) + p.wait() + self.assertEqual(p.stdin, None) + def test_cwd(self): tmpdir = tempfile.gettempdir() # We cannot use os.path.realpath to canonicalize the path, diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,8 @@ Library ------- +- Issue #5870: Add `subprocess.DEVNULL` constant. + - Issue #11133: fix two cases where inspect.getattr_static can trigger code execution. Patch by Andreas St?hrk. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 18:50:45 2011 From: python-checkins at python.org (nick.coghlan) Date: Wed, 16 Mar 2011 18:50:45 +0100 Subject: [Python-checkins] cpython (3.2): Close #11548: Correctly handle format argument in shutil.unpack_archive Message-ID: http://hg.python.org/cpython/rev/d1619747c17d changeset: 68601:d1619747c17d branch: 3.2 parent: 68598:382cb3386d57 user: Nick Coghlan date: Wed Mar 16 13:52:20 2011 -0400 summary: Close #11548: Correctly handle format argument in shutil.unpack_archive files: Lib/shutil.py Lib/test/test_shutil.py diff --git a/Lib/shutil.py b/Lib/shutil.py --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -737,8 +737,8 @@ except KeyError: raise ValueError("Unknown unpack format '{0}'".format(format)) - func = format_info[0] - func(filename, extract_dir, **dict(format_info[1])) + func = format_info[1] + func(filename, extract_dir, **dict(format_info[2])) else: # we need to look at the registered unpackers supported extensions format = _find_unpack_format(filename) diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -645,6 +645,14 @@ diff = self._compare_dirs(tmpdir, tmpdir2) self.assertEqual(diff, []) + # and again, this time with the format specified + tmpdir3 = self.mkdtemp() + unpack_archive(filename, tmpdir3, format=format) + diff = self._compare_dirs(tmpdir, tmpdir3) + self.assertEqual(diff, []) + self.assertRaises(shutil.ReadError, unpack_archive, TESTFN) + self.assertRaises(ValueError, unpack_archive, TESTFN, format='xxx') + def test_unpack_registery(self): formats = get_unpack_formats() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 18:50:46 2011 From: python-checkins at python.org (nick.coghlan) Date: Wed, 16 Mar 2011 18:50:46 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge fix for #11548 from 3.2 Message-ID: http://hg.python.org/cpython/rev/e376d04539bb changeset: 68602:e376d04539bb parent: 68599:f0d3a3699593 parent: 68601:d1619747c17d user: Nick Coghlan date: Wed Mar 16 13:55:03 2011 -0400 summary: Merge fix for #11548 from 3.2 files: diff --git a/Lib/shutil.py b/Lib/shutil.py --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -737,8 +737,8 @@ except KeyError: raise ValueError("Unknown unpack format '{0}'".format(format)) - func = format_info[0] - func(filename, extract_dir, **dict(format_info[1])) + func = format_info[1] + func(filename, extract_dir, **dict(format_info[2])) else: # we need to look at the registered unpackers supported extensions format = _find_unpack_format(filename) diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -645,6 +645,14 @@ diff = self._compare_dirs(tmpdir, tmpdir2) self.assertEqual(diff, []) + # and again, this time with the format specified + tmpdir3 = self.mkdtemp() + unpack_archive(filename, tmpdir3, format=format) + diff = self._compare_dirs(tmpdir, tmpdir3) + self.assertEqual(diff, []) + self.assertRaises(shutil.ReadError, unpack_archive, TESTFN) + self.assertRaises(ValueError, unpack_archive, TESTFN, format='xxx') + def test_unpack_registery(self): formats = get_unpack_formats() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 18:50:49 2011 From: python-checkins at python.org (nick.coghlan) Date: Wed, 16 Mar 2011 18:50:49 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merge from remote Message-ID: http://hg.python.org/cpython/rev/fcd4017be6af changeset: 68603:fcd4017be6af parent: 68602:e376d04539bb parent: 68600:eaf93e156dff user: Nick Coghlan date: Wed Mar 16 13:55:58 2011 -0400 summary: Merge from remote files: diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -125,12 +125,14 @@ *stdin*, *stdout* and *stderr* specify the executed programs' standard input, standard output and standard error file handles, respectively. Valid values - are :data:`PIPE`, an existing file descriptor (a positive integer), an - existing :term:`file object`, and ``None``. :data:`PIPE` indicates that a - new pipe to the child should be created. With ``None``, no redirection will - occur; the child's file handles will be inherited from the parent. Additionally, - *stderr* can be :data:`STDOUT`, which indicates that the stderr data from the - applications should be captured into the same file handle as for stdout. + are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive + integer), an existing :term:`file object`, and ``None``. :data:`PIPE` + indicates that a new pipe to the child should be created. :data:`DEVNULL` + indicates that the special file :data:`os.devnull` will be used. With ``None``, + no redirection will occur; the child's file handles will be inherited from + the parent. Additionally, *stderr* can be :data:`STDOUT`, which indicates + that the stderr data from the applications should be captured into the same + file handle as for stdout. If *preexec_fn* is set to a callable object, this object will be called in the child process just before the child is executed. @@ -229,6 +231,15 @@ Added context manager support. +.. data:: DEVNULL + + Special value that can be used as the *stdin*, *stdout* or *stderr* argument + to :class:`Popen` and indicates that the special file :data:`os.devnull` + will be used. + + .. versionadded:: 3.3 + + .. data:: PIPE Special value that can be used as the *stdin*, *stdout* or *stderr* argument diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -431,7 +431,7 @@ return fds __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput", - "getoutput", "check_output", "CalledProcessError"] + "getoutput", "check_output", "CalledProcessError", "DEVNULL"] if mswindows: from _subprocess import CREATE_NEW_CONSOLE, CREATE_NEW_PROCESS_GROUP @@ -456,6 +456,7 @@ PIPE = -1 STDOUT = -2 +DEVNULL = -3 def _eintr_retry_call(func, *args): @@ -800,6 +801,10 @@ # Child is still running, keep us alive until we can wait on it. _active.append(self) + def _get_devnull(self): + if not hasattr(self, '_devnull'): + self._devnull = os.open(os.devnull, os.O_RDWR) + return self._devnull def communicate(self, input=None, timeout=None): """Interact with process: Send data to stdin. Read data from @@ -889,6 +894,8 @@ p2cread, _ = _subprocess.CreatePipe(None, 0) elif stdin == PIPE: p2cread, p2cwrite = _subprocess.CreatePipe(None, 0) + elif stdin == DEVNULL: + p2cread = msvcrt.get_osfhandle(self._get_devnull()) elif isinstance(stdin, int): p2cread = msvcrt.get_osfhandle(stdin) else: @@ -902,6 +909,8 @@ _, c2pwrite = _subprocess.CreatePipe(None, 0) elif stdout == PIPE: c2pread, c2pwrite = _subprocess.CreatePipe(None, 0) + elif stdout == DEVNULL: + c2pwrite = msvcrt.get_osfhandle(self._get_devnull()) elif isinstance(stdout, int): c2pwrite = msvcrt.get_osfhandle(stdout) else: @@ -917,6 +926,8 @@ errread, errwrite = _subprocess.CreatePipe(None, 0) elif stderr == STDOUT: errwrite = c2pwrite + elif stderr == DEVNULL: + errwrite = msvcrt.get_osfhandle(self._get_devnull()) elif isinstance(stderr, int): errwrite = msvcrt.get_osfhandle(stderr) else: @@ -1026,6 +1037,8 @@ c2pwrite.Close() if errwrite != -1: errwrite.Close() + if hasattr(self, '_devnull'): + os.close(self._devnull) # Retain the process handle, but close the thread handle self._child_created = True @@ -1159,6 +1172,8 @@ pass elif stdin == PIPE: p2cread, p2cwrite = _create_pipe() + elif stdin == DEVNULL: + p2cread = self._get_devnull() elif isinstance(stdin, int): p2cread = stdin else: @@ -1169,6 +1184,8 @@ pass elif stdout == PIPE: c2pread, c2pwrite = _create_pipe() + elif stdout == DEVNULL: + c2pwrite = self._get_devnull() elif isinstance(stdout, int): c2pwrite = stdout else: @@ -1181,6 +1198,8 @@ errread, errwrite = _create_pipe() elif stderr == STDOUT: errwrite = c2pwrite + elif stderr == DEVNULL: + errwrite = self._get_devnull() elif isinstance(stderr, int): errwrite = stderr else: @@ -1374,6 +1393,8 @@ os.close(c2pwrite) if errwrite != -1 and errread != -1: os.close(errwrite) + if hasattr(self, '_devnull'): + os.close(self._devnull) # Wait for exec to fail or succeed; possibly raising an # exception (limited in size) diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -323,6 +323,31 @@ rc = subprocess.call([sys.executable, "-c", cmd], stdout=1) self.assertEqual(rc, 2) + def test_stdout_devnull(self): + p = subprocess.Popen([sys.executable, "-c", + 'for i in range(10240):' + 'print("x" * 1024)'], + stdout=subprocess.DEVNULL) + p.wait() + self.assertEqual(p.stdout, None) + + def test_stderr_devnull(self): + p = subprocess.Popen([sys.executable, "-c", + 'import sys\n' + 'for i in range(10240):' + 'sys.stderr.write("x" * 1024)'], + stderr=subprocess.DEVNULL) + p.wait() + self.assertEqual(p.stderr, None) + + def test_stdin_devnull(self): + p = subprocess.Popen([sys.executable, "-c", + 'import sys;' + 'sys.stdin.read(1)'], + stdin=subprocess.DEVNULL) + p.wait() + self.assertEqual(p.stdin, None) + def test_cwd(self): tmpdir = tempfile.gettempdir() # We cannot use os.path.realpath to canonicalize the path, diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,8 @@ Library ------- +- Issue #5870: Add `subprocess.DEVNULL` constant. + - Issue #11133: fix two cases where inspect.getattr_static can trigger code execution. Patch by Andreas St?hrk. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 19:01:14 2011 From: python-checkins at python.org (nick.coghlan) Date: Wed, 16 Mar 2011 19:01:14 +0100 Subject: [Python-checkins] cpython (3.2): Close #11560: Improve test coverage of shutil Message-ID: http://hg.python.org/cpython/rev/b313b05221a9 changeset: 68604:b313b05221a9 branch: 3.2 parent: 68601:d1619747c17d user: Nick Coghlan date: Wed Mar 16 14:05:35 2011 -0400 summary: Close #11560: Improve test coverage of shutil files: Lib/test/test_shutil.py diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -7,6 +7,7 @@ import stat import os import os.path +import functools from test import support from test.support import TESTFN from os.path import splitdrive @@ -48,6 +49,21 @@ except ImportError: ZIP_SUPPORT = find_executable('zip') +def _fake_rename(*args, **kwargs): + # Pretend the destination path is on a different filesystem. + raise OSError() + +def mock_rename(func): + @functools.wraps(func) + def wrap(*args, **kwargs): + try: + builtin_rename = os.rename + os.rename = _fake_rename + return func(*args, **kwargs) + finally: + os.rename = builtin_rename + return wrap + class TestShutil(unittest.TestCase): def setUp(self): @@ -393,6 +409,41 @@ shutil.copytree(src_dir, dst_dir, symlinks=True) self.assertIn('test.txt', os.listdir(dst_dir)) + def _copy_file(self, method): + fname = 'test.txt' + tmpdir = self.mkdtemp() + self.write_file([tmpdir, fname]) + file1 = os.path.join(tmpdir, fname) + tmpdir2 = self.mkdtemp() + method(file1, tmpdir2) + file2 = os.path.join(tmpdir2, fname) + return (file1, file2) + + @unittest.skipUnless(hasattr(os, 'chmod'), 'requires os.chmod') + def test_copy(self): + # Ensure that the copied file exists and has the same mode bits. + file1, file2 = self._copy_file(shutil.copy) + self.assertTrue(os.path.exists(file2)) + self.assertEqual(os.stat(file1).st_mode, os.stat(file2).st_mode) + + @unittest.skipUnless(hasattr(os, 'chmod'), 'requires os.chmod') + @unittest.skipUnless(hasattr(os, 'chmod'), 'requires os.utime') + def test_copy2(self): + # Ensure that the copied file exists and has the same mode and + # modification time bits. + file1, file2 = self._copy_file(shutil.copy2) + self.assertTrue(os.path.exists(file2)) + file1_stat = os.stat(file1) + file2_stat = os.stat(file2) + self.assertEqual(file1_stat.st_mode, file2_stat.st_mode) + for attr in 'st_atime', 'st_mtime': + # The modification times may be truncated in the new file. + self.assertLessEqual(getattr(file1_stat, attr), + getattr(file2_stat, attr) + 1) + if hasattr(os, 'chflags') and hasattr(file1_stat, 'st_flags'): + self.assertEqual(getattr(file1_stat, 'st_flags'), + getattr(file2_stat, 'st_flags')) + @unittest.skipUnless(zlib, "requires zlib") def test_make_tarball(self): # creating something to tar @@ -403,6 +454,8 @@ self.write_file([tmpdir, 'sub', 'file3'], 'xxx') tmpdir2 = self.mkdtemp() + # force shutil to create the directory + os.rmdir(tmpdir2) unittest.skipUnless(splitdrive(tmpdir)[0] == splitdrive(tmpdir2)[0], "source and target should be on same drive") @@ -518,6 +571,8 @@ self.write_file([tmpdir, 'file2'], 'xxx') tmpdir2 = self.mkdtemp() + # force shutil to create the directory + os.rmdir(tmpdir2) base_name = os.path.join(tmpdir2, 'archive') _make_zipfile(base_name, tmpdir) @@ -688,20 +743,11 @@ self.dst_dir = tempfile.mkdtemp() self.src_file = os.path.join(self.src_dir, filename) self.dst_file = os.path.join(self.dst_dir, filename) - # Try to create a dir in the current directory, hoping that it is - # not located on the same filesystem as the system tmp dir. - try: - self.dir_other_fs = tempfile.mkdtemp( - dir=os.path.dirname(__file__)) - self.file_other_fs = os.path.join(self.dir_other_fs, - filename) - except OSError: - self.dir_other_fs = None with open(self.src_file, "wb") as f: f.write(b"spam") def tearDown(self): - for d in (self.src_dir, self.dst_dir, self.dir_other_fs): + for d in (self.src_dir, self.dst_dir): try: if d: shutil.rmtree(d) @@ -730,21 +776,15 @@ # Move a file inside an existing dir on the same filesystem. self._check_move_file(self.src_file, self.dst_dir, self.dst_file) + @mock_rename def test_move_file_other_fs(self): # Move a file to an existing dir on another filesystem. - if not self.dir_other_fs: - # skip - return - self._check_move_file(self.src_file, self.file_other_fs, - self.file_other_fs) + self.test_move_file() + @mock_rename def test_move_file_to_dir_other_fs(self): # Move a file to another location on another filesystem. - if not self.dir_other_fs: - # skip - return - self._check_move_file(self.src_file, self.dir_other_fs, - self.file_other_fs) + self.test_move_file_to_dir() def test_move_dir(self): # Move a dir to another location on the same filesystem. @@ -757,32 +797,20 @@ except: pass + @mock_rename def test_move_dir_other_fs(self): # Move a dir to another location on another filesystem. - if not self.dir_other_fs: - # skip - return - dst_dir = tempfile.mktemp(dir=self.dir_other_fs) - try: - self._check_move_dir(self.src_dir, dst_dir, dst_dir) - finally: - try: - shutil.rmtree(dst_dir) - except: - pass + self.test_move_dir() def test_move_dir_to_dir(self): # Move a dir inside an existing dir on the same filesystem. self._check_move_dir(self.src_dir, self.dst_dir, os.path.join(self.dst_dir, os.path.basename(self.src_dir))) + @mock_rename def test_move_dir_to_dir_other_fs(self): # Move a dir inside an existing dir on another filesystem. - if not self.dir_other_fs: - # skip - return - self._check_move_dir(self.src_dir, self.dir_other_fs, - os.path.join(self.dir_other_fs, os.path.basename(self.src_dir))) + self.test_move_dir_to_dir() def test_existing_file_inside_dest_dir(self): # A file with the same name inside the destination dir already exists. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 19:01:16 2011 From: python-checkins at python.org (nick.coghlan) Date: Wed, 16 Mar 2011 19:01:16 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge fix for #11560 from 3.2 Message-ID: http://hg.python.org/cpython/rev/5b61334bb776 changeset: 68605:5b61334bb776 parent: 68603:fcd4017be6af parent: 68604:b313b05221a9 user: Nick Coghlan date: Wed Mar 16 14:06:31 2011 -0400 summary: Merge fix for #11560 from 3.2 files: diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -7,6 +7,7 @@ import stat import os import os.path +import functools from test import support from test.support import TESTFN from os.path import splitdrive @@ -48,6 +49,21 @@ except ImportError: ZIP_SUPPORT = find_executable('zip') +def _fake_rename(*args, **kwargs): + # Pretend the destination path is on a different filesystem. + raise OSError() + +def mock_rename(func): + @functools.wraps(func) + def wrap(*args, **kwargs): + try: + builtin_rename = os.rename + os.rename = _fake_rename + return func(*args, **kwargs) + finally: + os.rename = builtin_rename + return wrap + class TestShutil(unittest.TestCase): def setUp(self): @@ -393,6 +409,41 @@ shutil.copytree(src_dir, dst_dir, symlinks=True) self.assertIn('test.txt', os.listdir(dst_dir)) + def _copy_file(self, method): + fname = 'test.txt' + tmpdir = self.mkdtemp() + self.write_file([tmpdir, fname]) + file1 = os.path.join(tmpdir, fname) + tmpdir2 = self.mkdtemp() + method(file1, tmpdir2) + file2 = os.path.join(tmpdir2, fname) + return (file1, file2) + + @unittest.skipUnless(hasattr(os, 'chmod'), 'requires os.chmod') + def test_copy(self): + # Ensure that the copied file exists and has the same mode bits. + file1, file2 = self._copy_file(shutil.copy) + self.assertTrue(os.path.exists(file2)) + self.assertEqual(os.stat(file1).st_mode, os.stat(file2).st_mode) + + @unittest.skipUnless(hasattr(os, 'chmod'), 'requires os.chmod') + @unittest.skipUnless(hasattr(os, 'chmod'), 'requires os.utime') + def test_copy2(self): + # Ensure that the copied file exists and has the same mode and + # modification time bits. + file1, file2 = self._copy_file(shutil.copy2) + self.assertTrue(os.path.exists(file2)) + file1_stat = os.stat(file1) + file2_stat = os.stat(file2) + self.assertEqual(file1_stat.st_mode, file2_stat.st_mode) + for attr in 'st_atime', 'st_mtime': + # The modification times may be truncated in the new file. + self.assertLessEqual(getattr(file1_stat, attr), + getattr(file2_stat, attr) + 1) + if hasattr(os, 'chflags') and hasattr(file1_stat, 'st_flags'): + self.assertEqual(getattr(file1_stat, 'st_flags'), + getattr(file2_stat, 'st_flags')) + @unittest.skipUnless(zlib, "requires zlib") def test_make_tarball(self): # creating something to tar @@ -403,6 +454,8 @@ self.write_file([tmpdir, 'sub', 'file3'], 'xxx') tmpdir2 = self.mkdtemp() + # force shutil to create the directory + os.rmdir(tmpdir2) unittest.skipUnless(splitdrive(tmpdir)[0] == splitdrive(tmpdir2)[0], "source and target should be on same drive") @@ -518,6 +571,8 @@ self.write_file([tmpdir, 'file2'], 'xxx') tmpdir2 = self.mkdtemp() + # force shutil to create the directory + os.rmdir(tmpdir2) base_name = os.path.join(tmpdir2, 'archive') _make_zipfile(base_name, tmpdir) @@ -688,20 +743,11 @@ self.dst_dir = tempfile.mkdtemp() self.src_file = os.path.join(self.src_dir, filename) self.dst_file = os.path.join(self.dst_dir, filename) - # Try to create a dir in the current directory, hoping that it is - # not located on the same filesystem as the system tmp dir. - try: - self.dir_other_fs = tempfile.mkdtemp( - dir=os.path.dirname(__file__)) - self.file_other_fs = os.path.join(self.dir_other_fs, - filename) - except OSError: - self.dir_other_fs = None with open(self.src_file, "wb") as f: f.write(b"spam") def tearDown(self): - for d in (self.src_dir, self.dst_dir, self.dir_other_fs): + for d in (self.src_dir, self.dst_dir): try: if d: shutil.rmtree(d) @@ -730,21 +776,15 @@ # Move a file inside an existing dir on the same filesystem. self._check_move_file(self.src_file, self.dst_dir, self.dst_file) + @mock_rename def test_move_file_other_fs(self): # Move a file to an existing dir on another filesystem. - if not self.dir_other_fs: - # skip - return - self._check_move_file(self.src_file, self.file_other_fs, - self.file_other_fs) + self.test_move_file() + @mock_rename def test_move_file_to_dir_other_fs(self): # Move a file to another location on another filesystem. - if not self.dir_other_fs: - # skip - return - self._check_move_file(self.src_file, self.dir_other_fs, - self.file_other_fs) + self.test_move_file_to_dir() def test_move_dir(self): # Move a dir to another location on the same filesystem. @@ -757,32 +797,20 @@ except: pass + @mock_rename def test_move_dir_other_fs(self): # Move a dir to another location on another filesystem. - if not self.dir_other_fs: - # skip - return - dst_dir = tempfile.mktemp(dir=self.dir_other_fs) - try: - self._check_move_dir(self.src_dir, dst_dir, dst_dir) - finally: - try: - shutil.rmtree(dst_dir) - except: - pass + self.test_move_dir() def test_move_dir_to_dir(self): # Move a dir inside an existing dir on the same filesystem. self._check_move_dir(self.src_dir, self.dst_dir, os.path.join(self.dst_dir, os.path.basename(self.src_dir))) + @mock_rename def test_move_dir_to_dir_other_fs(self): # Move a dir inside an existing dir on another filesystem. - if not self.dir_other_fs: - # skip - return - self._check_move_dir(self.src_dir, self.dir_other_fs, - os.path.join(self.dir_other_fs, os.path.basename(self.src_dir))) + self.test_move_dir_to_dir() def test_existing_file_inside_dest_dir(self): # A file with the same name inside the destination dir already exists. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 19:13:12 2011 From: python-checkins at python.org (nick.coghlan) Date: Wed, 16 Mar 2011 19:13:12 +0100 Subject: [Python-checkins] cpython (3.2): Add missing NEWS entries Message-ID: http://hg.python.org/cpython/rev/4b4974479f43 changeset: 68606:4b4974479f43 branch: 3.2 parent: 68604:b313b05221a9 user: Nick Coghlan date: Wed Mar 16 14:14:18 2011 -0400 summary: Add missing NEWS entries files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,9 @@ Library ------- +- Issue #11548: shutil.unpack_archive now correctly handles the format + parameter. Patch by Evan Dandrea. + - Issue #11133: fix two cases where inspect.getattr_static can trigger code execution. Patch by Andreas St?hrk. @@ -119,6 +122,9 @@ Tests ----- +- Issue #11548: Improve test coverage of the shutil module. Patch by + Evan Dandrea. + - Issue #11554: Reactivated test_email_codecs. - Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 19:13:13 2011 From: python-checkins at python.org (nick.coghlan) Date: Wed, 16 Mar 2011 19:13:13 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge NEWS entries from 3.2 Message-ID: http://hg.python.org/cpython/rev/8109103d4e33 changeset: 68607:8109103d4e33 parent: 68605:5b61334bb776 parent: 68606:4b4974479f43 user: Nick Coghlan date: Wed Mar 16 14:18:29 2011 -0400 summary: Merge NEWS entries from 3.2 files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,9 @@ Library ------- +- Issue #11560: shutil.unpack_archive now correctly handles the format + parameter. Patch by Evan Dandrea. + - Issue #5870: Add `subprocess.DEVNULL` constant. - Issue #11133: fix two cases where inspect.getattr_static can trigger code @@ -229,6 +232,9 @@ Tests ----- +- Issue #11548: Improve test coverage of the shutil module. Patch by + Evan Dandrea. + - Issue #11554: Reactivated test_email_codecs. - Issue #11505: improves test coverage of string.py -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 19:15:10 2011 From: python-checkins at python.org (nick.coghlan) Date: Wed, 16 Mar 2011 19:15:10 +0100 Subject: [Python-checkins] cpython (3.2): Fix typo in NEWS Message-ID: http://hg.python.org/cpython/rev/65a75f386a71 changeset: 68608:65a75f386a71 branch: 3.2 parent: 68606:4b4974479f43 user: Nick Coghlan date: Wed Mar 16 14:19:22 2011 -0400 summary: Fix typo in NEWS files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,7 +40,7 @@ Library ------- -- Issue #11548: shutil.unpack_archive now correctly handles the format +- Issue #11560: shutil.unpack_archive now correctly handles the format parameter. Patch by Evan Dandrea. - Issue #11133: fix two cases where inspect.getattr_static can trigger code -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 19:15:10 2011 From: python-checkins at python.org (nick.coghlan) Date: Wed, 16 Mar 2011 19:15:10 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Dummy merge Message-ID: http://hg.python.org/cpython/rev/c84753e4ce97 changeset: 68609:c84753e4ce97 parent: 68607:8109103d4e33 parent: 68608:65a75f386a71 user: Nick Coghlan date: Wed Mar 16 14:20:30 2011 -0400 summary: Dummy merge files: Misc/NEWS -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 19:32:01 2011 From: python-checkins at python.org (nick.coghlan) Date: Wed, 16 Mar 2011 19:32:01 +0100 Subject: [Python-checkins] cpython (3.2): Backport improved test coverage for string.py Message-ID: http://hg.python.org/cpython/rev/cdd667e02fe3 changeset: 68610:cdd667e02fe3 branch: 3.2 parent: 68608:65a75f386a71 user: Nick Coghlan date: Wed Mar 16 14:30:45 2011 -0400 summary: Backport improved test coverage for string.py files: Lib/test/test_pep292.py Lib/test/test_string.py Misc/ACKS Misc/NEWS diff --git a/Lib/test/test_pep292.py b/Lib/test/test_pep292.py --- a/Lib/test/test_pep292.py +++ b/Lib/test/test_pep292.py @@ -42,6 +42,19 @@ s = Template('$who likes $$') eq(s.substitute(dict(who='tim', what='ham')), 'tim likes $') + def test_invalid(self): + class MyPattern(Template): + pattern = r""" + (?: + (?P) | + (?P%(delim)s) | + @(?P%(id)s) | + @{(?P%(id)s)} + ) + """ + s = MyPattern('$') + self.assertRaises(ValueError, s.substitute, dict()) + def test_percents(self): eq = self.assertEqual s = Template('%(foo)s $foo ${foo}') diff --git a/Lib/test/test_string.py b/Lib/test/test_string.py --- a/Lib/test/test_string.py +++ b/Lib/test/test_string.py @@ -112,6 +112,30 @@ self.assertRaises(ValueError, fmt.format, "{0}", 10, 20, i=100) self.assertRaises(ValueError, fmt.format, "{i}", 10, 20, i=100) + def test_vformat_assert(self): + cls = string.Formatter() + kwargs = { + "i": 100 + } + self.assertRaises(ValueError, cls._vformat, + cls.format, "{0}", kwargs, set(), -2) + + def test_convert_field(self): + cls = string.Formatter() + self.assertEqual(cls.format("{0!s}", 'foo'), 'foo') + self.assertRaises(ValueError, cls.format, "{0!h}", 'foo') + + def test_get_field(self): + cls = string.Formatter() + class MyClass: + name = 'lumberjack' + x = MyClass() + self.assertEqual(cls.format("{0.name}", x), 'lumberjack') + + lookup = ["eggs", "and", "spam"] + self.assertEqual(cls.format("{0[2]}", lookup), 'spam') + + def test_main(): support.run_unittest(ModuleTest) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -32,6 +32,7 @@ Ross Andrus Jon Anglin ?ric Araujo +Alicia Arlen Jason Asbahr David Ascher Chris AtLee diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -122,6 +122,9 @@ Tests ----- +- Issue #11505: improves test coverage of string.py. Patch by Alicia + Arlen. + - Issue #11548: Improve test coverage of the shutil module. Patch by Evan Dandrea. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 19:32:02 2011 From: python-checkins at python.org (nick.coghlan) Date: Wed, 16 Mar 2011 19:32:02 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Record backport of string.py patch and add credit to NEWS Message-ID: http://hg.python.org/cpython/rev/6b627e121573 changeset: 68611:6b627e121573 parent: 68609:c84753e4ce97 parent: 68610:cdd667e02fe3 user: Nick Coghlan date: Wed Mar 16 14:37:06 2011 -0400 summary: Record backport of string.py patch and add credit to NEWS files: Lib/test/test_pep292.py Lib/test/test_string.py Misc/ACKS Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -237,7 +237,8 @@ - Issue #11554: Reactivated test_email_codecs. -- Issue #11505: improves test coverage of string.py +- Issue #11505: improves test coverage of string.py. Patch by Alicia + Arlen - Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a false positive if the last directory in the path is inaccessible. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 20:42:34 2011 From: python-checkins at python.org (jesus.cea) Date: Wed, 16 Mar 2011 20:42:34 +0100 Subject: [Python-checkins] cpython (3.1): Close Issue 11570: Lib/test/test_distutils.py tries to mix 32 and 64 bits Message-ID: http://hg.python.org/cpython/rev/d108a7dff2a0 changeset: 68612:d108a7dff2a0 branch: 3.1 parent: 68593:c394f2d42ff8 user: Jesus Cea date: Wed Mar 16 20:37:54 2011 +0100 summary: Close Issue 11570: Lib/test/test_distutils.py tries to mix 32 and 64 bits object files, doesn't obey LDFLAGS files: configure configure.in diff --git a/configure b/configure --- a/configure +++ b/configure @@ -769,7 +769,8 @@ LDFLAGS LIBS CPPFLAGS -CPP' +CPP +CPPFLAGS' # Initialize some variables set by options. @@ -7551,8 +7552,8 @@ IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";; SunOS/5*) if test "$GCC" = "yes" - then LDSHARED='$(CC) -shared' - else LDSHARED='$(CC) -G'; + then LDSHARED='$(CC) -shared $(LDFLAGS)' + else LDSHARED='$(CC) -G $(LDFLAGS)'; fi ;; hp*|HP*) if test "$GCC" = "yes" diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -1758,8 +1758,8 @@ IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";; SunOS/5*) if test "$GCC" = "yes" - then LDSHARED='$(CC) -shared' - else LDSHARED='$(CC) -G'; + then LDSHARED='$(CC) -shared $(LDFLAGS)' + else LDSHARED='$(CC) -G $(LDFLAGS)'; fi ;; hp*|HP*) if test "$GCC" = "yes" -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 20:42:35 2011 From: python-checkins at python.org (jesus.cea) Date: Wed, 16 Mar 2011 20:42:35 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Dummy merge Message-ID: http://hg.python.org/cpython/rev/a33417a41061 changeset: 68613:a33417a41061 branch: 3.2 parent: 68610:cdd667e02fe3 parent: 68612:d108a7dff2a0 user: Jesus Cea date: Wed Mar 16 20:41:26 2011 +0100 summary: Dummy merge files: configure configure.in -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 20:42:36 2011 From: python-checkins at python.org (jesus.cea) Date: Wed, 16 Mar 2011 20:42:36 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Dummy merge Message-ID: http://hg.python.org/cpython/rev/8d13741a3b83 changeset: 68614:8d13741a3b83 parent: 68611:6b627e121573 parent: 68613:a33417a41061 user: Jesus Cea date: Wed Mar 16 20:42:27 2011 +0100 summary: Dummy merge files: configure configure.in -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 21:15:20 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 16 Mar 2011 21:15:20 +0100 Subject: [Python-checkins] cpython (3.1): #9298: restore proper folding of base64 encoded bodies. Message-ID: http://hg.python.org/cpython/rev/062d09d7bf94 changeset: 68615:062d09d7bf94 branch: 3.1 parent: 68612:d108a7dff2a0 user: R David Murray date: Wed Mar 16 15:52:22 2011 -0400 summary: #9298: restore proper folding of base64 encoded bodies. Patch by Yves Dorfsman. files: Lib/email/encoders.py Lib/email/test/test_email.py Misc/ACKS Misc/NEWS diff --git a/Lib/email/encoders.py b/Lib/email/encoders.py --- a/Lib/email/encoders.py +++ b/Lib/email/encoders.py @@ -12,7 +12,7 @@ ] -from base64 import b64encode as _bencode +from base64 import encodebytes as _bencode from quopri import encodestring as _encodestring diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -553,9 +553,18 @@ msg['Dummy'] = 'dummy\nX-Injected-Header: test' self.assertRaises(errors.HeaderParseError, msg.as_string) - # Test the email.encoders module class TestEncoders(unittest.TestCase): + + def test_EncodersEncode_base64(self): + with openfile('PyBanner048.gif', 'rb') as fp: + bindata = fp.read() + mimed = email.mime.image.MIMEImage(bindata) + base64ed = mimed.get_payload() + # the transfer-encoded body lines should all be <=76 characters + lines = base64ed.split('\n') + self.assertLessEqual(max([ len(x) for x in lines ]), 76) + def test_encode_empty_payload(self): eq = self.assertEqual msg = Message() @@ -1107,10 +1116,11 @@ def test_body(self): eq = self.assertEqual - bytes = b'\xfa\xfb\xfc\xfd\xfe\xff' - msg = MIMEApplication(bytes) - eq(msg.get_payload(), '+vv8/f7/') - eq(msg.get_payload(decode=True), bytes) + bytesdata = b'\xfa\xfb\xfc\xfd\xfe\xff' + msg = MIMEApplication(bytesdata) + # whitespace in the cte encoded block is RFC-irrelevant. + eq(msg.get_payload().strip(), '+vv8/f7/') + eq(msg.get_payload(decode=True), bytesdata) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -202,6 +202,7 @@ Jaromir Dolecek Ismail Donmez Dima Dorfman +Yves Dorfsman Cesar Douady Dean Draayer Fred L. Drake, Jr. diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,10 @@ Library ------- +- Issue #9298: base64 bodies weren't being folded to line lengths less than 78, + which was a regression relative to Python2. Unlike Python2, the last line + of the folded body now ends with a carriage return. + - Issue #11569: use absolute path to the sysctl command in multiprocessing to ensure that it will be found regardless of the shell PATH. This ensures that multiprocessing.cpu_count works on default installs of MacOSX. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 21:15:26 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 16 Mar 2011 21:15:26 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge #9298 fix. Message-ID: http://hg.python.org/cpython/rev/c34320d9095e changeset: 68616:c34320d9095e branch: 3.2 parent: 68613:a33417a41061 parent: 68615:062d09d7bf94 user: R David Murray date: Wed Mar 16 16:13:07 2011 -0400 summary: Merge #9298 fix. files: Lib/email/encoders.py Lib/email/test/test_email.py Misc/ACKS Misc/NEWS diff --git a/Lib/email/encoders.py b/Lib/email/encoders.py --- a/Lib/email/encoders.py +++ b/Lib/email/encoders.py @@ -12,7 +12,7 @@ ] -from base64 import b64encode as _bencode +from base64 import encodebytes as _bencode from quopri import encodestring as _encodestring diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -573,9 +573,18 @@ msg['Dummy'] = 'dummy\nX-Injected-Header: test' self.assertRaises(errors.HeaderParseError, msg.as_string) - # Test the email.encoders module class TestEncoders(unittest.TestCase): + + def test_EncodersEncode_base64(self): + with openfile('PyBanner048.gif', 'rb') as fp: + bindata = fp.read() + mimed = email.mime.image.MIMEImage(bindata) + base64ed = mimed.get_payload() + # the transfer-encoded body lines should all be <=76 characters + lines = base64ed.split('\n') + self.assertLessEqual(max([ len(x) for x in lines ]), 76) + def test_encode_empty_payload(self): eq = self.assertEqual msg = Message() @@ -1141,10 +1150,11 @@ def test_body(self): eq = self.assertEqual - bytes = b'\xfa\xfb\xfc\xfd\xfe\xff' - msg = MIMEApplication(bytes) - eq(msg.get_payload(), '+vv8/f7/') - eq(msg.get_payload(decode=True), bytes) + bytesdata = b'\xfa\xfb\xfc\xfd\xfe\xff' + msg = MIMEApplication(bytesdata) + # whitespace in the cte encoded block is RFC-irrelevant. + eq(msg.get_payload().strip(), '+vv8/f7/') + eq(msg.get_payload(decode=True), bytesdata) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -225,6 +225,7 @@ Ismail Donmez Marcos Donolo Dima Dorfman +Yves Dorfsman Cesar Douady Dean Draayer Fred L. Drake, Jr. diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,10 @@ Library ------- +- Issue #9298: base64 bodies weren't being folded to line lengths less than 78, + which was a regression relative to Python2. Unlike Python2, the last line + of the folded body now ends with a carriage return. + - Issue #11560: shutil.unpack_archive now correctly handles the format parameter. Patch by Evan Dandrea. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 21:15:33 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 16 Mar 2011 21:15:33 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #9298 fix. Message-ID: http://hg.python.org/cpython/rev/de2cd04e5101 changeset: 68617:de2cd04e5101 parent: 68614:8d13741a3b83 parent: 68616:c34320d9095e user: R David Murray date: Wed Mar 16 16:14:43 2011 -0400 summary: Merge #9298 fix. files: Lib/email/test/test_email.py Misc/ACKS Misc/NEWS diff --git a/Lib/email/encoders.py b/Lib/email/encoders.py --- a/Lib/email/encoders.py +++ b/Lib/email/encoders.py @@ -12,7 +12,7 @@ ] -from base64 import b64encode as _bencode +from base64 import encodebytes as _bencode from quopri import encodestring as _encodestring diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -573,9 +573,18 @@ msg['Dummy'] = 'dummy\nX-Injected-Header: test' self.assertRaises(errors.HeaderParseError, msg.as_string) - # Test the email.encoders module class TestEncoders(unittest.TestCase): + + def test_EncodersEncode_base64(self): + with openfile('PyBanner048.gif', 'rb') as fp: + bindata = fp.read() + mimed = email.mime.image.MIMEImage(bindata) + base64ed = mimed.get_payload() + # the transfer-encoded body lines should all be <=76 characters + lines = base64ed.split('\n') + self.assertLessEqual(max([ len(x) for x in lines ]), 76) + def test_encode_empty_payload(self): eq = self.assertEqual msg = Message() @@ -1141,10 +1150,11 @@ def test_body(self): eq = self.assertEqual - bytes = b'\xfa\xfb\xfc\xfd\xfe\xff' - msg = MIMEApplication(bytes) - eq(msg.get_payload(), '+vv8/f7/') - eq(msg.get_payload(decode=True), bytes) + bytesdata = b'\xfa\xfb\xfc\xfd\xfe\xff' + msg = MIMEApplication(bytesdata) + # whitespace in the cte encoded block is RFC-irrelevant. + eq(msg.get_payload().strip(), '+vv8/f7/') + eq(msg.get_payload(decode=True), bytesdata) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -227,6 +227,7 @@ Ismail Donmez Marcos Donolo Dima Dorfman +Yves Dorfsman Cesar Douady Dean Draayer Fred L. Drake, Jr. diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,10 @@ Library ------- +- Issue #9298: base64 bodies weren't being folded to line lengths less than 78, + which was a regression relative to Python2. Unlike Python2, the last line + of the folded body now ends with a carriage return. + - Issue #11560: shutil.unpack_archive now correctly handles the format parameter. Patch by Evan Dandrea. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 22:10:02 2011 From: python-checkins at python.org (reid.kleckner) Date: Wed, 16 Mar 2011 22:10:02 +0100 Subject: [Python-checkins] cpython: Include the timeout value in TimeoutExpired. Message-ID: http://hg.python.org/cpython/rev/a161081e8f7c changeset: 68618:a161081e8f7c parent: 68611:6b627e121573 user: Reid Kleckner date: Wed Mar 16 16:57:54 2011 -0400 summary: Include the timeout value in TimeoutExpired. This was the original intention, but it wasn't threaded all the way through due to 'endtime'. Also added a trivial assertion to get coverage of __str__. files: Lib/subprocess.py Lib/test/test_subprocess.py diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -371,8 +371,9 @@ """This exception is raised when the timeout expires while waiting for a child process. """ - def __init__(self, cmd, output=None): + def __init__(self, cmd, timeout, output=None): self.cmd = cmd + self.timeout = timeout self.output = output def __str__(self): @@ -533,7 +534,7 @@ except TimeoutExpired: process.kill() output, unused_err = process.communicate() - raise TimeoutExpired(process.args, output=output) + raise TimeoutExpired(process.args, timeout, output=output) retcode = process.poll() if retcode: raise CalledProcessError(retcode, process.args, output=output) @@ -844,7 +845,7 @@ return (stdout, stderr) try: - stdout, stderr = self._communicate(input, endtime) + stdout, stderr = self._communicate(input, endtime, timeout) finally: self._communication_started = True @@ -865,12 +866,12 @@ return endtime - time.time() - def _check_timeout(self, endtime): + def _check_timeout(self, endtime, orig_timeout): """Convenience for checking if a timeout has expired.""" if endtime is None: return if time.time() > endtime: - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, orig_timeout) if mswindows: @@ -1063,9 +1064,11 @@ return self.returncode - def wait(self, timeout=None): + def wait(self, timeout=None, endtime=None): """Wait for child process to terminate. Returns returncode attribute.""" + if endtime is not None: + timeout = self._remaining_time(endtime) if timeout is None: timeout = _subprocess.INFINITE else: @@ -1073,7 +1076,7 @@ if self.returncode is None: result = _subprocess.WaitForSingleObject(self._handle, timeout) if result == _subprocess.WAIT_TIMEOUT: - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, timeout) self.returncode = _subprocess.GetExitCodeProcess(self._handle) return self.returncode @@ -1083,7 +1086,7 @@ fh.close() - def _communicate(self, input, endtime): + def _communicate(self, input, endtime, orig_timeout): # Start reader threads feeding into a list hanging off of this # object, unless they've already been started. if self.stdout and not hasattr(self, "_stdout_buff"): @@ -1489,13 +1492,18 @@ def wait(self, timeout=None, endtime=None): """Wait for child process to terminate. Returns returncode attribute.""" - # If timeout was passed but not endtime, compute endtime in terms of - # timeout. - if endtime is None and timeout is not None: - endtime = time.time() + timeout if self.returncode is not None: return self.returncode - elif endtime is not None: + + # endtime is preferred to timeout. timeout is only used for + # printing. + if endtime is not None or timeout is not None: + if endtime is None: + endtime = time.time() + timeout + elif timeout is None: + timeout = self._remaining_time(endtime) + + if endtime is not None: # Enter a busy loop if we have a timeout. This busy loop was # cribbed from Lib/threading.py in Thread.wait() at r71065. delay = 0.0005 # 500 us -> initial delay of 1 ms @@ -1507,7 +1515,7 @@ break remaining = self._remaining_time(endtime) if remaining <= 0: - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, timeout) delay = min(delay * 2, remaining, .05) time.sleep(delay) elif self.returncode is None: @@ -1516,7 +1524,7 @@ return self.returncode - def _communicate(self, input, endtime): + def _communicate(self, input, endtime, orig_timeout): if self.stdin and not self._communication_started: # Flush stdio buffer. This might block, if the user has # been writing to .stdin in an uncontrolled fashion. @@ -1525,9 +1533,11 @@ self.stdin.close() if _has_poll: - stdout, stderr = self._communicate_with_poll(input, endtime) + stdout, stderr = self._communicate_with_poll(input, endtime, + orig_timeout) else: - stdout, stderr = self._communicate_with_select(input, endtime) + stdout, stderr = self._communicate_with_select(input, endtime, + orig_timeout) self.wait(timeout=self._remaining_time(endtime)) @@ -1550,7 +1560,7 @@ return (stdout, stderr) - def _communicate_with_poll(self, input, endtime): + def _communicate_with_poll(self, input, endtime, orig_timeout): stdout = None # Return stderr = None # Return @@ -1601,7 +1611,7 @@ if e.args[0] == errno.EINTR: continue raise - self._check_timeout(endtime) + self._check_timeout(endtime, orig_timeout) # XXX Rewrite these to use non-blocking I/O on the # file objects; they are no longer using C stdio! @@ -1625,7 +1635,7 @@ return (stdout, stderr) - def _communicate_with_select(self, input, endtime): + def _communicate_with_select(self, input, endtime, orig_timeout): if not self._communication_started: self._read_set = [] self._write_set = [] @@ -1667,9 +1677,9 @@ # According to the docs, returning three empty lists indicates # that the timeout expired. if not (rlist or wlist or xlist): - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, orig_timeout) # We also check what time it is ourselves for good measure. - self._check_timeout(endtime) + self._check_timeout(endtime, orig_timeout) # XXX Rewrite these to use non-blocking I/O on the # file objects; they are no longer using C stdio! diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -651,7 +651,9 @@ def test_wait_timeout(self): p = subprocess.Popen([sys.executable, "-c", "import time; time.sleep(0.1)"]) - self.assertRaises(subprocess.TimeoutExpired, p.wait, timeout=0.01) + with self.assertRaises(subprocess.TimeoutExpired) as c: + p.wait(timeout=0.01) + self.assertIn("0.01", str(c.exception)) # For coverage of __str__. self.assertEqual(p.wait(timeout=2), 0) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 22:10:03 2011 From: python-checkins at python.org (reid.kleckner) Date: Wed, 16 Mar 2011 22:10:03 +0100 Subject: [Python-checkins] cpython: Bump up the subprocess timeouts even more. :( Message-ID: http://hg.python.org/cpython/rev/2e4879d44604 changeset: 68619:2e4879d44604 user: Reid Kleckner date: Wed Mar 16 17:08:21 2011 -0400 summary: Bump up the subprocess timeouts even more. :( files: Lib/test/test_subprocess.py diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -130,7 +130,9 @@ "import sys; sys.stdout.write('BDFL')\n" "sys.stdout.flush()\n" "while True: pass"], - timeout=1.5) + # Some heavily loaded buildbots (sparc Debian 3.x) require + # this much time to start and print. + timeout=3) self.fail("Expected TimeoutExpired.") self.assertEqual(c.exception.output, b'BDFL') @@ -647,15 +649,15 @@ # Subsequent invocations should just return the returncode self.assertEqual(p.wait(), 0) - def test_wait_timeout(self): p = subprocess.Popen([sys.executable, "-c", "import time; time.sleep(0.1)"]) with self.assertRaises(subprocess.TimeoutExpired) as c: p.wait(timeout=0.01) self.assertIn("0.01", str(c.exception)) # For coverage of __str__. - self.assertEqual(p.wait(timeout=2), 0) - + # Some heavily loaded buildbots (sparc Debian 3.x) require this much + # time to start. + self.assertEqual(p.wait(timeout=3), 0) def test_invalid_bufsize(self): # an invalid type of the bufsize argument should raise -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 22:10:11 2011 From: python-checkins at python.org (reid.kleckner) Date: Wed, 16 Mar 2011 22:10:11 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merged with hg.python.org. Message-ID: http://hg.python.org/cpython/rev/84b7a68445aa changeset: 68620:84b7a68445aa parent: 68619:2e4879d44604 parent: 68617:de2cd04e5101 user: Reid Kleckner date: Wed Mar 16 17:09:41 2011 -0400 summary: Merged with hg.python.org. files: diff --git a/Lib/email/encoders.py b/Lib/email/encoders.py --- a/Lib/email/encoders.py +++ b/Lib/email/encoders.py @@ -12,7 +12,7 @@ ] -from base64 import b64encode as _bencode +from base64 import encodebytes as _bencode from quopri import encodestring as _encodestring diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -573,9 +573,18 @@ msg['Dummy'] = 'dummy\nX-Injected-Header: test' self.assertRaises(errors.HeaderParseError, msg.as_string) - # Test the email.encoders module class TestEncoders(unittest.TestCase): + + def test_EncodersEncode_base64(self): + with openfile('PyBanner048.gif', 'rb') as fp: + bindata = fp.read() + mimed = email.mime.image.MIMEImage(bindata) + base64ed = mimed.get_payload() + # the transfer-encoded body lines should all be <=76 characters + lines = base64ed.split('\n') + self.assertLessEqual(max([ len(x) for x in lines ]), 76) + def test_encode_empty_payload(self): eq = self.assertEqual msg = Message() @@ -1141,10 +1150,11 @@ def test_body(self): eq = self.assertEqual - bytes = b'\xfa\xfb\xfc\xfd\xfe\xff' - msg = MIMEApplication(bytes) - eq(msg.get_payload(), '+vv8/f7/') - eq(msg.get_payload(decode=True), bytes) + bytesdata = b'\xfa\xfb\xfc\xfd\xfe\xff' + msg = MIMEApplication(bytesdata) + # whitespace in the cte encoded block is RFC-irrelevant. + eq(msg.get_payload().strip(), '+vv8/f7/') + eq(msg.get_payload(decode=True), bytesdata) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -227,6 +227,7 @@ Ismail Donmez Marcos Donolo Dima Dorfman +Yves Dorfsman Cesar Douady Dean Draayer Fred L. Drake, Jr. diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,10 @@ Library ------- +- Issue #9298: base64 bodies weren't being folded to line lengths less than 78, + which was a regression relative to Python2. Unlike Python2, the last line + of the folded body now ends with a carriage return. + - Issue #11560: shutil.unpack_archive now correctly handles the format parameter. Patch by Evan Dandrea. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 22:18:23 2011 From: python-checkins at python.org (michael.foord) Date: Wed, 16 Mar 2011 22:18:23 +0100 Subject: [Python-checkins] cpython (3.2): Closes issue 11503. Improves test coverage of posixpath. Message-ID: http://hg.python.org/cpython/rev/f11da6cecffd changeset: 68621:f11da6cecffd branch: 3.2 parent: 68616:c34320d9095e user: Michael Foord date: Wed Mar 16 17:19:16 2011 -0400 summary: Closes issue 11503. Improves test coverage of posixpath. files: Lib/test/test_posixpath.py Misc/NEWS diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py --- a/Lib/test/test_posixpath.py +++ b/Lib/test/test_posixpath.py @@ -6,6 +6,11 @@ import sys from posixpath import realpath, abspath, dirname, basename +try: + import posix +except ImportError: + posix = None + # An absolute path to a temporary filename for testing. We can't rely on TESTFN # being an absolute path, so we need this. @@ -150,6 +155,7 @@ def test_islink(self): self.assertIs(posixpath.islink(support.TESTFN + "1"), False) + self.assertIs(posixpath.lexists(support.TESTFN + "2"), False) f = open(support.TESTFN + "1", "wb") try: f.write(b"foo") @@ -225,6 +231,44 @@ def test_ismount(self): self.assertIs(posixpath.ismount("/"), True) + self.assertIs(posixpath.ismount(b"/"), True) + + def test_ismount_non_existent(self): + # Non-existent mountpoint. + self.assertIs(posixpath.ismount(ABSTFN), False) + try: + os.mkdir(ABSTFN) + self.assertIs(posixpath.ismount(ABSTFN), False) + finally: + safe_rmdir(ABSTFN) + + @unittest.skipUnless(support.can_symlink(), + "Test requires symlink support") + def test_ismount_symlinks(self): + # Symlinks are never mountpoints. + try: + os.symlink("/", ABSTFN) + self.assertIs(posixpath.ismount(ABSTFN), False) + finally: + os.unlink(ABSTFN) + + @unittest.skipIf(posix is None, "Test requires posix module") + def test_ismount_different_device(self): + # Simulate the path being on a different device from its parent by + # mocking out st_dev. + save_lstat = os.lstat + def fake_lstat(path): + st_ino = 0 + st_dev = 0 + if path == ABSTFN: + st_dev = 1 + st_ino = 1 + return posix.stat_result((0, st_ino, st_dev, 0, 0, 0, 0, 0, 0, 0)) + try: + os.lstat = fake_lstat + self.assertIs(posixpath.ismount(ABSTFN), True) + finally: + os.lstat = save_lstat def test_expanduser(self): self.assertEqual(posixpath.expanduser("foo"), "foo") @@ -254,6 +298,10 @@ with support.EnvironmentVarGuard() as env: env['HOME'] = '/' self.assertEqual(posixpath.expanduser("~"), "/") + # expanduser should fall back to using the password database + del env['HOME'] + home = pwd.getpwuid(os.getuid()).pw_dir + self.assertEqual(posixpath.expanduser("~"), home) def test_normpath(self): self.assertEqual(posixpath.normpath(""), ".") @@ -289,6 +337,16 @@ @unittest.skipUnless(hasattr(os, "symlink"), "Missing symlink implementation") @skip_if_ABSTFN_contains_backslash + def test_realpath_relative(self): + try: + os.symlink(posixpath.relpath(ABSTFN+"1"), ABSTFN) + self.assertEqual(realpath(ABSTFN), ABSTFN+"1") + finally: + support.unlink(ABSTFN) + + @unittest.skipUnless(hasattr(os, "symlink"), + "Missing symlink implementation") + @skip_if_ABSTFN_contains_backslash def test_realpath_symlink_loops(self): # Bug #930024, return the path unchanged if we get into an infinite # symlink loop. @@ -443,6 +501,11 @@ finally: os.getcwdb = real_getcwdb + def test_sameopenfile(self): + fname = support.TESTFN + "1" + with open(fname, "wb") as a, open(fname, "wb") as b: + self.assertTrue(posixpath.sameopenfile(a.fileno(), b.fileno())) + class PosixCommonTest(test_genericpath.CommonTest): pathmodule = posixpath diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -126,6 +126,8 @@ Tests ----- +- Issue #11503: improve test coverage of posixpath.py. Patch by Evan Dandrea. + - Issue #11505: improves test coverage of string.py. Patch by Alicia Arlen. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 22:28:01 2011 From: python-checkins at python.org (michael.foord) Date: Wed, 16 Mar 2011 22:28:01 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge 3.2 Message-ID: http://hg.python.org/cpython/rev/fab66eb4773d changeset: 68622:fab66eb4773d parent: 68620:84b7a68445aa parent: 68621:f11da6cecffd user: Michael Foord date: Wed Mar 16 17:28:51 2011 -0400 summary: merge 3.2 files: Misc/NEWS diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py --- a/Lib/test/test_posixpath.py +++ b/Lib/test/test_posixpath.py @@ -6,6 +6,11 @@ import sys from posixpath import realpath, abspath, dirname, basename +try: + import posix +except ImportError: + posix = None + # An absolute path to a temporary filename for testing. We can't rely on TESTFN # being an absolute path, so we need this. @@ -150,6 +155,7 @@ def test_islink(self): self.assertIs(posixpath.islink(support.TESTFN + "1"), False) + self.assertIs(posixpath.lexists(support.TESTFN + "2"), False) f = open(support.TESTFN + "1", "wb") try: f.write(b"foo") @@ -225,6 +231,44 @@ def test_ismount(self): self.assertIs(posixpath.ismount("/"), True) + self.assertIs(posixpath.ismount(b"/"), True) + + def test_ismount_non_existent(self): + # Non-existent mountpoint. + self.assertIs(posixpath.ismount(ABSTFN), False) + try: + os.mkdir(ABSTFN) + self.assertIs(posixpath.ismount(ABSTFN), False) + finally: + safe_rmdir(ABSTFN) + + @unittest.skipUnless(support.can_symlink(), + "Test requires symlink support") + def test_ismount_symlinks(self): + # Symlinks are never mountpoints. + try: + os.symlink("/", ABSTFN) + self.assertIs(posixpath.ismount(ABSTFN), False) + finally: + os.unlink(ABSTFN) + + @unittest.skipIf(posix is None, "Test requires posix module") + def test_ismount_different_device(self): + # Simulate the path being on a different device from its parent by + # mocking out st_dev. + save_lstat = os.lstat + def fake_lstat(path): + st_ino = 0 + st_dev = 0 + if path == ABSTFN: + st_dev = 1 + st_ino = 1 + return posix.stat_result((0, st_ino, st_dev, 0, 0, 0, 0, 0, 0, 0)) + try: + os.lstat = fake_lstat + self.assertIs(posixpath.ismount(ABSTFN), True) + finally: + os.lstat = save_lstat def test_expanduser(self): self.assertEqual(posixpath.expanduser("foo"), "foo") @@ -254,6 +298,10 @@ with support.EnvironmentVarGuard() as env: env['HOME'] = '/' self.assertEqual(posixpath.expanduser("~"), "/") + # expanduser should fall back to using the password database + del env['HOME'] + home = pwd.getpwuid(os.getuid()).pw_dir + self.assertEqual(posixpath.expanduser("~"), home) def test_normpath(self): self.assertEqual(posixpath.normpath(""), ".") @@ -289,6 +337,16 @@ @unittest.skipUnless(hasattr(os, "symlink"), "Missing symlink implementation") @skip_if_ABSTFN_contains_backslash + def test_realpath_relative(self): + try: + os.symlink(posixpath.relpath(ABSTFN+"1"), ABSTFN) + self.assertEqual(realpath(ABSTFN), ABSTFN+"1") + finally: + support.unlink(ABSTFN) + + @unittest.skipUnless(hasattr(os, "symlink"), + "Missing symlink implementation") + @skip_if_ABSTFN_contains_backslash def test_realpath_symlink_loops(self): # Bug #930024, return the path unchanged if we get into an infinite # symlink loop. @@ -443,6 +501,11 @@ finally: os.getcwdb = real_getcwdb + def test_sameopenfile(self): + fname = support.TESTFN + "1" + with open(fname, "wb") as a, open(fname, "wb") as b: + self.assertTrue(posixpath.sameopenfile(a.fileno(), b.fileno())) + class PosixCommonTest(test_genericpath.CommonTest): pathmodule = posixpath diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -236,6 +236,11 @@ Tests ----- +- Issue #11503: improve test coverage of posixpath.py. Patch by Evan Dandrea. + +- Issue #11505: improves test coverage of string.py. Patch by Alicia + Arlen. + - Issue #11548: Improve test coverage of the shutil module. Patch by Evan Dandrea. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 22:33:33 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 16 Mar 2011 22:33:33 +0100 Subject: [Python-checkins] cpython (3.2): #11578: add unit tests for timeit module. Message-ID: http://hg.python.org/cpython/rev/628a3679dc14 changeset: 68623:628a3679dc14 branch: 3.2 parent: 68621:f11da6cecffd user: R David Murray date: Wed Mar 16 17:32:27 2011 -0400 summary: #11578: add unit tests for timeit module. Patch by Michael Henry. files: Lib/test/test_sundry.py Lib/test/test_timeit.py Lib/timeit.py Misc/NEWS diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py --- a/Lib/test/test_sundry.py +++ b/Lib/test/test_sundry.py @@ -54,7 +54,6 @@ import py_compile import sndhdr import tabnanny - import timeit try: import tty # not available on Windows except ImportError: diff --git a/Lib/test/test_timeit.py b/Lib/test/test_timeit.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_timeit.py @@ -0,0 +1,305 @@ +import timeit +import unittest +import sys +import io +import time +from textwrap import dedent + +from test.support import run_unittest +from test.support import captured_stdout +from test.support import captured_stderr + +# timeit's default number of iterations. +DEFAULT_NUMBER = 1000000 + +# timeit's default number of repetitions. +DEFAULT_REPEAT = 3 + +# XXX: some tests are commented out that would improve the coverage but take a +# long time to run because they test the default number of loops, which is +# large. The tests could be enabled if there was a way to override the default +# number of loops during testing, but this would require changing the signature +# of some functions that use the default as a default argument. + +class FakeTimer: + BASE_TIME = 42.0 + def __init__(self, seconds_per_increment=1.0): + self.count = 0 + self.setup_calls = 0 + self.seconds_per_increment=seconds_per_increment + timeit._fake_timer = self + + def __call__(self): + return self.BASE_TIME + self.count * self.seconds_per_increment + + def inc(self): + self.count += 1 + + def setup(self): + self.setup_calls += 1 + + def wrap_timer(self, timer): + """Records 'timer' and returns self as callable timer.""" + self.saved_timer = timer + return self + +class TestTimeit(unittest.TestCase): + + def tearDown(self): + try: + del timeit._fake_timer + except AttributeError: + pass + + def test_reindent_empty(self): + self.assertEqual(timeit.reindent("", 0), "") + self.assertEqual(timeit.reindent("", 4), "") + + def test_reindent_single(self): + self.assertEqual(timeit.reindent("pass", 0), "pass") + self.assertEqual(timeit.reindent("pass", 4), "pass") + + def test_reindent_multi_empty(self): + self.assertEqual(timeit.reindent("\n\n", 0), "\n\n") + self.assertEqual(timeit.reindent("\n\n", 4), "\n \n ") + + def test_reindent_multi(self): + self.assertEqual(timeit.reindent( + "print()\npass\nbreak", 0), + "print()\npass\nbreak") + self.assertEqual(timeit.reindent( + "print()\npass\nbreak", 4), + "print()\n pass\n break") + + def test_timer_invalid_stmt(self): + self.assertRaises(ValueError, timeit.Timer, stmt=None) + + def test_timer_invalid_setup(self): + self.assertRaises(ValueError, timeit.Timer, setup=None) + + fake_setup = "import timeit; timeit._fake_timer.setup()" + fake_stmt = "import timeit; timeit._fake_timer.inc()" + + def fake_callable_setup(self): + self.fake_timer.setup() + + def fake_callable_stmt(self): + self.fake_timer.inc() + + def timeit(self, stmt, setup, number=None): + self.fake_timer = FakeTimer() + t = timeit.Timer(stmt=stmt, setup=setup, timer=self.fake_timer) + kwargs = {} + if number is None: + number = DEFAULT_NUMBER + else: + kwargs['number'] = number + delta_time = t.timeit(**kwargs) + self.assertEqual(self.fake_timer.setup_calls, 1) + self.assertEqual(self.fake_timer.count, number) + self.assertEqual(delta_time, number) + + # Takes too long to run in debug build. + #def test_timeit_default_iters(self): + # self.timeit(self.fake_stmt, self.fake_setup) + + def test_timeit_zero_iters(self): + self.timeit(self.fake_stmt, self.fake_setup, number=0) + + def test_timeit_few_iters(self): + self.timeit(self.fake_stmt, self.fake_setup, number=3) + + def test_timeit_callable_stmt(self): + self.timeit(self.fake_callable_stmt, self.fake_setup, number=3) + + def test_timeit_callable_stmt_and_setup(self): + self.timeit(self.fake_callable_stmt, + self.fake_callable_setup, number=3) + + # Takes too long to run in debug build. + #def test_timeit_function(self): + # delta_time = timeit.timeit(self.fake_stmt, self.fake_setup, + # timer=FakeTimer()) + # self.assertEqual(delta_time, DEFAULT_NUMBER) + + def test_timeit_function_zero_iters(self): + delta_time = timeit.timeit(self.fake_stmt, self.fake_setup, number=0, + timer=FakeTimer()) + self.assertEqual(delta_time, 0) + + def repeat(self, stmt, setup, repeat=None, number=None): + self.fake_timer = FakeTimer() + t = timeit.Timer(stmt=stmt, setup=setup, timer=self.fake_timer) + kwargs = {} + if repeat is None: + repeat = DEFAULT_REPEAT + else: + kwargs['repeat'] = repeat + if number is None: + number = DEFAULT_NUMBER + else: + kwargs['number'] = number + delta_times = t.repeat(**kwargs) + self.assertEqual(self.fake_timer.setup_calls, repeat) + self.assertEqual(self.fake_timer.count, repeat * number) + self.assertEqual(delta_times, repeat * [float(number)]) + + # Takes too long to run in debug build. + #def test_repeat_default(self): + # self.repeat(self.fake_stmt, self.fake_setup) + + def test_repeat_zero_reps(self): + self.repeat(self.fake_stmt, self.fake_setup, repeat=0) + + def test_repeat_zero_iters(self): + self.repeat(self.fake_stmt, self.fake_setup, number=0) + + def test_repeat_few_reps_and_iters(self): + self.repeat(self.fake_stmt, self.fake_setup, repeat=3, number=5) + + def test_repeat_callable_stmt(self): + self.repeat(self.fake_callable_stmt, self.fake_setup, + repeat=3, number=5) + + def test_repeat_callable_stmt_and_setup(self): + self.repeat(self.fake_callable_stmt, self.fake_callable_setup, + repeat=3, number=5) + + # Takes too long to run in debug build. + #def test_repeat_function(self): + # delta_times = timeit.repeat(self.fake_stmt, self.fake_setup, + # timer=FakeTimer()) + # self.assertEqual(delta_times, DEFAULT_REPEAT * [float(DEFAULT_NUMBER)]) + + def test_repeat_function_zero_reps(self): + delta_times = timeit.repeat(self.fake_stmt, self.fake_setup, repeat=0, + timer=FakeTimer()) + self.assertEqual(delta_times, []) + + def test_repeat_function_zero_iters(self): + delta_times = timeit.repeat(self.fake_stmt, self.fake_setup, number=0, + timer=FakeTimer()) + self.assertEqual(delta_times, DEFAULT_REPEAT * [0.0]) + + def assert_exc_string(self, exc_string, expected_exc_name): + exc_lines = exc_string.splitlines() + self.assertGreater(len(exc_lines), 2) + self.assertTrue(exc_lines[0].startswith('Traceback')) + self.assertTrue(exc_lines[-1].startswith(expected_exc_name)) + + def test_print_exc(self): + s = io.StringIO() + t = timeit.Timer("1/0") + try: + t.timeit() + except: + t.print_exc(s) + self.assert_exc_string(s.getvalue(), 'ZeroDivisionError') + + MAIN_DEFAULT_OUTPUT = "10 loops, best of 3: 1 sec per loop\n" + + def run_main(self, seconds_per_increment=1.0, switches=None, timer=None): + if timer is None: + timer = FakeTimer(seconds_per_increment=seconds_per_increment) + if switches is None: + args = [] + else: + args = switches[:] + args.append(self.fake_stmt) + # timeit.main() modifies sys.path, so save and restore it. + orig_sys_path = sys.path[:] + with captured_stdout() as s: + timeit.main(args=args, _wrap_timer=timer.wrap_timer) + sys.path[:] = orig_sys_path[:] + return s.getvalue() + + def test_main_bad_switch(self): + s = self.run_main(switches=['--bad-switch']) + self.assertEqual(s, dedent("""\ + option --bad-switch not recognized + use -h/--help for command line help + """)) + + def test_main_seconds(self): + s = self.run_main(seconds_per_increment=5.5) + self.assertEqual(s, "10 loops, best of 3: 5.5 sec per loop\n") + + def test_main_milliseconds(self): + s = self.run_main(seconds_per_increment=0.0055) + self.assertEqual(s, "100 loops, best of 3: 5.5 msec per loop\n") + + def test_main_microseconds(self): + s = self.run_main(seconds_per_increment=0.0000025, switches=['-n100']) + self.assertEqual(s, "100 loops, best of 3: 2.5 usec per loop\n") + + def test_main_fixed_iters(self): + s = self.run_main(seconds_per_increment=2.0, switches=['-n35']) + self.assertEqual(s, "35 loops, best of 3: 2 sec per loop\n") + + def test_main_setup(self): + s = self.run_main(seconds_per_increment=2.0, + switches=['-n35', '-s', 'print("CustomSetup")']) + self.assertEqual(s, "CustomSetup\n" * 3 + + "35 loops, best of 3: 2 sec per loop\n") + + def test_main_fixed_reps(self): + s = self.run_main(seconds_per_increment=60.0, switches=['-r9']) + self.assertEqual(s, "10 loops, best of 9: 60 sec per loop\n") + + def test_main_negative_reps(self): + s = self.run_main(seconds_per_increment=60.0, switches=['-r-5']) + self.assertEqual(s, "10 loops, best of 1: 60 sec per loop\n") + + def test_main_help(self): + s = self.run_main(switches=['-h']) + # Note: It's not clear that the trailing space was intended as part of + # the help text, but since it's there, check for it. + self.assertEqual(s, timeit.__doc__ + ' ') + + def test_main_using_time(self): + fake_timer = FakeTimer() + s = self.run_main(switches=['-t'], timer=fake_timer) + self.assertEqual(s, self.MAIN_DEFAULT_OUTPUT) + self.assertIs(fake_timer.saved_timer, time.time) + + def test_main_using_clock(self): + fake_timer = FakeTimer() + s = self.run_main(switches=['-c'], timer=fake_timer) + self.assertEqual(s, self.MAIN_DEFAULT_OUTPUT) + self.assertIs(fake_timer.saved_timer, time.clock) + + def test_main_verbose(self): + s = self.run_main(switches=['-v']) + self.assertEqual(s, dedent("""\ + 10 loops -> 10 secs + raw times: 10 10 10 + 10 loops, best of 3: 1 sec per loop + """)) + + def test_main_very_verbose(self): + s = self.run_main(seconds_per_increment=0.000050, switches=['-vv']) + self.assertEqual(s, dedent("""\ + 10 loops -> 0.0005 secs + 100 loops -> 0.005 secs + 1000 loops -> 0.05 secs + 10000 loops -> 0.5 secs + raw times: 0.5 0.5 0.5 + 10000 loops, best of 3: 50 usec per loop + """)) + + def test_main_exception(self): + with captured_stderr() as error_stringio: + s = self.run_main(switches=['1/0']) + self.assert_exc_string(error_stringio.getvalue(), 'ZeroDivisionError') + + def test_main_exception_fixed_reps(self): + with captured_stderr() as error_stringio: + s = self.run_main(switches=['-n1', '1/0']) + self.assert_exc_string(error_stringio.getvalue(), 'ZeroDivisionError') + + +def test_main(): + run_unittest(TestTimeit) + +if __name__ == '__main__': + test_main() diff --git a/Lib/timeit.py b/Lib/timeit.py --- a/Lib/timeit.py +++ b/Lib/timeit.py @@ -232,10 +232,10 @@ """Convenience function to create Timer object and call repeat method.""" return Timer(stmt, setup, timer).repeat(repeat, number) -def main(args=None): +def main(args=None, *, _wrap_timer=None): """Main program, used when run as a script. - The optional argument specifies the command line to be parsed, + The optional 'args' argument specifies the command line to be parsed, defaulting to sys.argv[1:]. The return value is an exit code to be passed to sys.exit(); it @@ -244,6 +244,10 @@ When an exception happens during timing, a traceback is printed to stderr and the return value is 1. Exceptions at other times (including the template compilation) are not caught. + + '_wrap_timer' is an internal interface used for unit testing. If it + is not None, it must be a callable that accepts a timer function + and returns another timer function (used for unit testing). """ if args is None: args = sys.argv[1:] @@ -289,6 +293,8 @@ # directory) import os sys.path.insert(0, os.curdir) + if _wrap_timer is not None: + timer = _wrap_timer(timer) t = Timer(stmt, setup, timer) if number == 0: # determine number so that 0.2 <= total time < 2.0 diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -126,6 +126,8 @@ Tests ----- +- Issue #11578: added test for the timeit module. Patch Michael Henry. + - Issue #11503: improve test coverage of posixpath.py. Patch by Evan Dandrea. - Issue #11505: improves test coverage of string.py. Patch by Alicia -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 22:33:37 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 16 Mar 2011 22:33:37 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #11578 test from 3.2. Message-ID: http://hg.python.org/cpython/rev/2f443a200b8c changeset: 68624:2f443a200b8c parent: 68622:fab66eb4773d parent: 68623:628a3679dc14 user: R David Murray date: Wed Mar 16 17:33:24 2011 -0400 summary: Merge #11578 test from 3.2. files: Misc/NEWS diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py --- a/Lib/test/test_sundry.py +++ b/Lib/test/test_sundry.py @@ -54,7 +54,6 @@ import py_compile import sndhdr import tabnanny - import timeit try: import tty # not available on Windows except ImportError: diff --git a/Lib/test/test_timeit.py b/Lib/test/test_timeit.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_timeit.py @@ -0,0 +1,305 @@ +import timeit +import unittest +import sys +import io +import time +from textwrap import dedent + +from test.support import run_unittest +from test.support import captured_stdout +from test.support import captured_stderr + +# timeit's default number of iterations. +DEFAULT_NUMBER = 1000000 + +# timeit's default number of repetitions. +DEFAULT_REPEAT = 3 + +# XXX: some tests are commented out that would improve the coverage but take a +# long time to run because they test the default number of loops, which is +# large. The tests could be enabled if there was a way to override the default +# number of loops during testing, but this would require changing the signature +# of some functions that use the default as a default argument. + +class FakeTimer: + BASE_TIME = 42.0 + def __init__(self, seconds_per_increment=1.0): + self.count = 0 + self.setup_calls = 0 + self.seconds_per_increment=seconds_per_increment + timeit._fake_timer = self + + def __call__(self): + return self.BASE_TIME + self.count * self.seconds_per_increment + + def inc(self): + self.count += 1 + + def setup(self): + self.setup_calls += 1 + + def wrap_timer(self, timer): + """Records 'timer' and returns self as callable timer.""" + self.saved_timer = timer + return self + +class TestTimeit(unittest.TestCase): + + def tearDown(self): + try: + del timeit._fake_timer + except AttributeError: + pass + + def test_reindent_empty(self): + self.assertEqual(timeit.reindent("", 0), "") + self.assertEqual(timeit.reindent("", 4), "") + + def test_reindent_single(self): + self.assertEqual(timeit.reindent("pass", 0), "pass") + self.assertEqual(timeit.reindent("pass", 4), "pass") + + def test_reindent_multi_empty(self): + self.assertEqual(timeit.reindent("\n\n", 0), "\n\n") + self.assertEqual(timeit.reindent("\n\n", 4), "\n \n ") + + def test_reindent_multi(self): + self.assertEqual(timeit.reindent( + "print()\npass\nbreak", 0), + "print()\npass\nbreak") + self.assertEqual(timeit.reindent( + "print()\npass\nbreak", 4), + "print()\n pass\n break") + + def test_timer_invalid_stmt(self): + self.assertRaises(ValueError, timeit.Timer, stmt=None) + + def test_timer_invalid_setup(self): + self.assertRaises(ValueError, timeit.Timer, setup=None) + + fake_setup = "import timeit; timeit._fake_timer.setup()" + fake_stmt = "import timeit; timeit._fake_timer.inc()" + + def fake_callable_setup(self): + self.fake_timer.setup() + + def fake_callable_stmt(self): + self.fake_timer.inc() + + def timeit(self, stmt, setup, number=None): + self.fake_timer = FakeTimer() + t = timeit.Timer(stmt=stmt, setup=setup, timer=self.fake_timer) + kwargs = {} + if number is None: + number = DEFAULT_NUMBER + else: + kwargs['number'] = number + delta_time = t.timeit(**kwargs) + self.assertEqual(self.fake_timer.setup_calls, 1) + self.assertEqual(self.fake_timer.count, number) + self.assertEqual(delta_time, number) + + # Takes too long to run in debug build. + #def test_timeit_default_iters(self): + # self.timeit(self.fake_stmt, self.fake_setup) + + def test_timeit_zero_iters(self): + self.timeit(self.fake_stmt, self.fake_setup, number=0) + + def test_timeit_few_iters(self): + self.timeit(self.fake_stmt, self.fake_setup, number=3) + + def test_timeit_callable_stmt(self): + self.timeit(self.fake_callable_stmt, self.fake_setup, number=3) + + def test_timeit_callable_stmt_and_setup(self): + self.timeit(self.fake_callable_stmt, + self.fake_callable_setup, number=3) + + # Takes too long to run in debug build. + #def test_timeit_function(self): + # delta_time = timeit.timeit(self.fake_stmt, self.fake_setup, + # timer=FakeTimer()) + # self.assertEqual(delta_time, DEFAULT_NUMBER) + + def test_timeit_function_zero_iters(self): + delta_time = timeit.timeit(self.fake_stmt, self.fake_setup, number=0, + timer=FakeTimer()) + self.assertEqual(delta_time, 0) + + def repeat(self, stmt, setup, repeat=None, number=None): + self.fake_timer = FakeTimer() + t = timeit.Timer(stmt=stmt, setup=setup, timer=self.fake_timer) + kwargs = {} + if repeat is None: + repeat = DEFAULT_REPEAT + else: + kwargs['repeat'] = repeat + if number is None: + number = DEFAULT_NUMBER + else: + kwargs['number'] = number + delta_times = t.repeat(**kwargs) + self.assertEqual(self.fake_timer.setup_calls, repeat) + self.assertEqual(self.fake_timer.count, repeat * number) + self.assertEqual(delta_times, repeat * [float(number)]) + + # Takes too long to run in debug build. + #def test_repeat_default(self): + # self.repeat(self.fake_stmt, self.fake_setup) + + def test_repeat_zero_reps(self): + self.repeat(self.fake_stmt, self.fake_setup, repeat=0) + + def test_repeat_zero_iters(self): + self.repeat(self.fake_stmt, self.fake_setup, number=0) + + def test_repeat_few_reps_and_iters(self): + self.repeat(self.fake_stmt, self.fake_setup, repeat=3, number=5) + + def test_repeat_callable_stmt(self): + self.repeat(self.fake_callable_stmt, self.fake_setup, + repeat=3, number=5) + + def test_repeat_callable_stmt_and_setup(self): + self.repeat(self.fake_callable_stmt, self.fake_callable_setup, + repeat=3, number=5) + + # Takes too long to run in debug build. + #def test_repeat_function(self): + # delta_times = timeit.repeat(self.fake_stmt, self.fake_setup, + # timer=FakeTimer()) + # self.assertEqual(delta_times, DEFAULT_REPEAT * [float(DEFAULT_NUMBER)]) + + def test_repeat_function_zero_reps(self): + delta_times = timeit.repeat(self.fake_stmt, self.fake_setup, repeat=0, + timer=FakeTimer()) + self.assertEqual(delta_times, []) + + def test_repeat_function_zero_iters(self): + delta_times = timeit.repeat(self.fake_stmt, self.fake_setup, number=0, + timer=FakeTimer()) + self.assertEqual(delta_times, DEFAULT_REPEAT * [0.0]) + + def assert_exc_string(self, exc_string, expected_exc_name): + exc_lines = exc_string.splitlines() + self.assertGreater(len(exc_lines), 2) + self.assertTrue(exc_lines[0].startswith('Traceback')) + self.assertTrue(exc_lines[-1].startswith(expected_exc_name)) + + def test_print_exc(self): + s = io.StringIO() + t = timeit.Timer("1/0") + try: + t.timeit() + except: + t.print_exc(s) + self.assert_exc_string(s.getvalue(), 'ZeroDivisionError') + + MAIN_DEFAULT_OUTPUT = "10 loops, best of 3: 1 sec per loop\n" + + def run_main(self, seconds_per_increment=1.0, switches=None, timer=None): + if timer is None: + timer = FakeTimer(seconds_per_increment=seconds_per_increment) + if switches is None: + args = [] + else: + args = switches[:] + args.append(self.fake_stmt) + # timeit.main() modifies sys.path, so save and restore it. + orig_sys_path = sys.path[:] + with captured_stdout() as s: + timeit.main(args=args, _wrap_timer=timer.wrap_timer) + sys.path[:] = orig_sys_path[:] + return s.getvalue() + + def test_main_bad_switch(self): + s = self.run_main(switches=['--bad-switch']) + self.assertEqual(s, dedent("""\ + option --bad-switch not recognized + use -h/--help for command line help + """)) + + def test_main_seconds(self): + s = self.run_main(seconds_per_increment=5.5) + self.assertEqual(s, "10 loops, best of 3: 5.5 sec per loop\n") + + def test_main_milliseconds(self): + s = self.run_main(seconds_per_increment=0.0055) + self.assertEqual(s, "100 loops, best of 3: 5.5 msec per loop\n") + + def test_main_microseconds(self): + s = self.run_main(seconds_per_increment=0.0000025, switches=['-n100']) + self.assertEqual(s, "100 loops, best of 3: 2.5 usec per loop\n") + + def test_main_fixed_iters(self): + s = self.run_main(seconds_per_increment=2.0, switches=['-n35']) + self.assertEqual(s, "35 loops, best of 3: 2 sec per loop\n") + + def test_main_setup(self): + s = self.run_main(seconds_per_increment=2.0, + switches=['-n35', '-s', 'print("CustomSetup")']) + self.assertEqual(s, "CustomSetup\n" * 3 + + "35 loops, best of 3: 2 sec per loop\n") + + def test_main_fixed_reps(self): + s = self.run_main(seconds_per_increment=60.0, switches=['-r9']) + self.assertEqual(s, "10 loops, best of 9: 60 sec per loop\n") + + def test_main_negative_reps(self): + s = self.run_main(seconds_per_increment=60.0, switches=['-r-5']) + self.assertEqual(s, "10 loops, best of 1: 60 sec per loop\n") + + def test_main_help(self): + s = self.run_main(switches=['-h']) + # Note: It's not clear that the trailing space was intended as part of + # the help text, but since it's there, check for it. + self.assertEqual(s, timeit.__doc__ + ' ') + + def test_main_using_time(self): + fake_timer = FakeTimer() + s = self.run_main(switches=['-t'], timer=fake_timer) + self.assertEqual(s, self.MAIN_DEFAULT_OUTPUT) + self.assertIs(fake_timer.saved_timer, time.time) + + def test_main_using_clock(self): + fake_timer = FakeTimer() + s = self.run_main(switches=['-c'], timer=fake_timer) + self.assertEqual(s, self.MAIN_DEFAULT_OUTPUT) + self.assertIs(fake_timer.saved_timer, time.clock) + + def test_main_verbose(self): + s = self.run_main(switches=['-v']) + self.assertEqual(s, dedent("""\ + 10 loops -> 10 secs + raw times: 10 10 10 + 10 loops, best of 3: 1 sec per loop + """)) + + def test_main_very_verbose(self): + s = self.run_main(seconds_per_increment=0.000050, switches=['-vv']) + self.assertEqual(s, dedent("""\ + 10 loops -> 0.0005 secs + 100 loops -> 0.005 secs + 1000 loops -> 0.05 secs + 10000 loops -> 0.5 secs + raw times: 0.5 0.5 0.5 + 10000 loops, best of 3: 50 usec per loop + """)) + + def test_main_exception(self): + with captured_stderr() as error_stringio: + s = self.run_main(switches=['1/0']) + self.assert_exc_string(error_stringio.getvalue(), 'ZeroDivisionError') + + def test_main_exception_fixed_reps(self): + with captured_stderr() as error_stringio: + s = self.run_main(switches=['-n1', '1/0']) + self.assert_exc_string(error_stringio.getvalue(), 'ZeroDivisionError') + + +def test_main(): + run_unittest(TestTimeit) + +if __name__ == '__main__': + test_main() diff --git a/Lib/timeit.py b/Lib/timeit.py --- a/Lib/timeit.py +++ b/Lib/timeit.py @@ -232,10 +232,10 @@ """Convenience function to create Timer object and call repeat method.""" return Timer(stmt, setup, timer).repeat(repeat, number) -def main(args=None): +def main(args=None, *, _wrap_timer=None): """Main program, used when run as a script. - The optional argument specifies the command line to be parsed, + The optional 'args' argument specifies the command line to be parsed, defaulting to sys.argv[1:]. The return value is an exit code to be passed to sys.exit(); it @@ -244,6 +244,10 @@ When an exception happens during timing, a traceback is printed to stderr and the return value is 1. Exceptions at other times (including the template compilation) are not caught. + + '_wrap_timer' is an internal interface used for unit testing. If it + is not None, it must be a callable that accepts a timer function + and returns another timer function (used for unit testing). """ if args is None: args = sys.argv[1:] @@ -289,6 +293,8 @@ # directory) import os sys.path.insert(0, os.curdir) + if _wrap_timer is not None: + timer = _wrap_timer(timer) t = Timer(stmt, setup, timer) if number == 0: # determine number so that 0.2 <= total time < 2.0 diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -236,6 +236,8 @@ Tests ----- +- Issue #11578: added test for the timeit module. Patch Michael Henry. + - Issue #11503: improve test coverage of posixpath.py. Patch by Evan Dandrea. - Issue #11505: improves test coverage of string.py. Patch by Alicia -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 23:00:18 2011 From: python-checkins at python.org (barry.warsaw) Date: Wed, 16 Mar 2011 23:00:18 +0100 (CET) Subject: [Python-checkins] r88782 - peps/trunk/pep-0012.txt Message-ID: <20110316220018.B68A4EEA55@mail.python.org> Author: barry.warsaw Date: Wed Mar 16 23:00:18 2011 New Revision: 88782 Log: There is no PEP: 9 header, so change this to reflect reality. Modified: peps/trunk/pep-0012.txt Modified: peps/trunk/pep-0012.txt ============================================================================== --- peps/trunk/pep-0012.txt (original) +++ peps/trunk/pep-0012.txt Wed Mar 16 23:00:18 2011 @@ -63,7 +63,7 @@ - Make a copy of this file (``.txt`` file, **not** HTML!) and perform the following edits. -- Replace the "PEP: 9" header with "PEP: XXX" since you don't yet have +- Replace the "PEP: 12" header with "PEP: XXX" since you don't yet have a PEP number assignment. - Change the Title header to the title of your PEP. From python-checkins at python.org Wed Mar 16 23:28:22 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 16 Mar 2011 23:28:22 +0100 Subject: [Python-checkins] cpython (3.1): #11401: handle headers with no value. Message-ID: http://hg.python.org/cpython/rev/d9c3cfd36b58 changeset: 68625:d9c3cfd36b58 branch: 3.1 parent: 68615:062d09d7bf94 user: R David Murray date: Wed Mar 16 18:26:23 2011 -0400 summary: #11401: handle headers with no value. files: Lib/email/header.py Lib/email/test/test_email.py Misc/NEWS diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -304,7 +304,7 @@ self._continuation_ws, splitchars) for string, charset in self._chunks: lines = string.splitlines() - formatter.feed(lines[0], charset) + formatter.feed(lines[0] if lines else '', charset) for line in lines[1:]: formatter.newline() if charset.header_encoding is not None: diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -3296,6 +3296,13 @@ h = Header('?', charset='shift_jis') self.assertEqual(h.encode(), '=?iso-2022-jp?b?GyRCSjgbKEI=?=') + def test_flatten_header_with_no_value(self): + # Issue 11401 (regression from email 4.x) Note that the space after + # the header doesn't reflect the input, but this is also the way + # email 4.x behaved. At some point it would be nice to fix that. + msg = email.message_from_string("EmptyHeader:") + self.assertEqual(str(msg), "EmptyHeader: \n\n") + # Test RFC 2231 header parameters (en/de)coding diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,9 @@ Library ------- +- Issue #11401: fix handling of headers with no value; this fixes a regression + relative to Python2 and the result is now the same as it was in Python2. + - Issue #9298: base64 bodies weren't being folded to line lengths less than 78, which was a regression relative to Python2. Unlike Python2, the last line of the folded body now ends with a carriage return. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 23:28:24 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 16 Mar 2011 23:28:24 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge #11401 fix from 3.1. Message-ID: http://hg.python.org/cpython/rev/2de45ced8291 changeset: 68626:2de45ced8291 branch: 3.2 parent: 68623:628a3679dc14 parent: 68625:d9c3cfd36b58 user: R David Murray date: Wed Mar 16 18:27:34 2011 -0400 summary: Merge #11401 fix from 3.1. files: Lib/email/header.py Lib/email/test/test_email.py Misc/NEWS diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -314,7 +314,7 @@ self._continuation_ws, splitchars) for string, charset in self._chunks: lines = string.splitlines() - formatter.feed(lines[0], charset) + formatter.feed(lines[0] if lines else '', charset) for line in lines[1:]: formatter.newline() if charset.header_encoding is not None: diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -3698,6 +3698,13 @@ h = Header('?', charset='shift_jis') self.assertEqual(h.encode(), '=?iso-2022-jp?b?GyRCSjgbKEI=?=') + def test_flatten_header_with_no_value(self): + # Issue 11401 (regression from email 4.x) Note that the space after + # the header doesn't reflect the input, but this is also the way + # email 4.x behaved. At some point it would be nice to fix that. + msg = email.message_from_string("EmptyHeader:") + self.assertEqual(str(msg), "EmptyHeader: \n\n") + # Test RFC 2231 header parameters (en/de)coding diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,9 @@ Library ------- +- Issue #11401: fix handling of headers with no value; this fixes a regression + relative to Python2 and the result is now the same as it was in Python2. + - Issue #9298: base64 bodies weren't being folded to line lengths less than 78, which was a regression relative to Python2. Unlike Python2, the last line of the folded body now ends with a carriage return. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 16 23:28:25 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 16 Mar 2011 23:28:25 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #11401 fix from 3.2. Message-ID: http://hg.python.org/cpython/rev/e318d84efe6e changeset: 68627:e318d84efe6e parent: 68624:2f443a200b8c parent: 68626:2de45ced8291 user: R David Murray date: Wed Mar 16 18:28:07 2011 -0400 summary: Merge #11401 fix from 3.2. files: Lib/email/test/test_email.py Misc/NEWS diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -314,7 +314,7 @@ self._continuation_ws, splitchars) for string, charset in self._chunks: lines = string.splitlines() - formatter.feed(lines[0], charset) + formatter.feed(lines[0] if lines else '', charset) for line in lines[1:]: formatter.newline() if charset.header_encoding is not None: diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -3705,6 +3705,13 @@ h = Header('?', charset='shift_jis') self.assertEqual(h.encode(), '=?iso-2022-jp?b?GyRCSjgbKEI=?=') + def test_flatten_header_with_no_value(self): + # Issue 11401 (regression from email 4.x) Note that the space after + # the header doesn't reflect the input, but this is also the way + # email 4.x behaved. At some point it would be nice to fix that. + msg = email.message_from_string("EmptyHeader:") + self.assertEqual(str(msg), "EmptyHeader: \n\n") + # Test RFC 2231 header parameters (en/de)coding diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,9 @@ Library ------- +- Issue #11401: fix handling of headers with no value; this fixes a regression + relative to Python2 and the result is now the same as it was in Python2. + - Issue #9298: base64 bodies weren't being folded to line lengths less than 78, which was a regression relative to Python2. Unlike Python2, the last line of the folded body now ends with a carriage return. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 01:01:30 2011 From: python-checkins at python.org (nick.coghlan) Date: Thu, 17 Mar 2011 01:01:30 +0100 Subject: [Python-checkins] cpython: Exercise crashers to ensure they are still covering known error cases Message-ID: http://hg.python.org/cpython/rev/e3fb176add41 changeset: 68628:e3fb176add41 user: Nick Coghlan date: Wed Mar 16 19:52:14 2011 -0400 summary: Exercise crashers to ensure they are still covering known error cases files: Lib/test/crashers/README Lib/test/test_crashers.py diff --git a/Lib/test/crashers/README b/Lib/test/crashers/README --- a/Lib/test/crashers/README +++ b/Lib/test/crashers/README @@ -14,3 +14,7 @@ Once the crash is fixed, the test case should be moved into an appropriate test (even if it was originally from the test suite). This ensures the regression doesn't happen again. And if it does, it should be easier to track down. + +Also see Lib/test_crashers.py which exercises the crashers in this directory. +In particular, make sure to add any new infinite loop crashers to the black +list so it doesn't try to run them. diff --git a/Lib/test/test_crashers.py b/Lib/test/test_crashers.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_crashers.py @@ -0,0 +1,35 @@ +# Tests that the crashers in the Lib/test/crashers directory actually +# do crash the interpreter as expected +# +# If a crasher is fixed, it should be moved elsewhere in the test suite to +# ensure it continues to work correctly. + +import unittest +import glob +import os.path +import test.support +from test.script_helper import assert_python_failure + +CRASHER_DIR = os.path.join(os.path.dirname(__file__), "crashers") +CRASHER_FILES = os.path.join(CRASHER_DIR, "*.py") + +infinite_loops = ["infinite_loop_re.py", "nasty_eq_vs_dict.py"] + +class CrasherTest(unittest.TestCase): + + @test.support.cpython_only + def test_crashers_crash(self): + for fname in glob.glob(CRASHER_FILES): + if os.path.basename(fname) in infinite_loops: + continue + # Some "crashers" only trigger an exception rather than a + # segfault. Consider that an acceptable outcome. + assert_python_failure(fname) + + +def test_main(): + test.support.run_unittest(CrasherTest) + test.support.reap_children() + +if __name__ == "__main__": + test_main() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 01:06:38 2011 From: python-checkins at python.org (nick.coghlan) Date: Thu, 17 Mar 2011 01:06:38 +0100 Subject: [Python-checkins] cpython: Add missing NEWS item for previous commit Message-ID: http://hg.python.org/cpython/rev/c9bc3be512eb changeset: 68629:c9bc3be512eb user: Nick Coghlan date: Wed Mar 16 20:23:58 2011 -0400 summary: Add missing NEWS item for previous commit files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -239,6 +239,9 @@ Tests ----- +- New test_crashers added to exercise the scripts in the Lib/test/crashers + directory and confirm they fail as expected + - Issue #11578: added test for the timeit module. Patch Michael Henry. - Issue #11503: improve test coverage of posixpath.py. Patch by Evan Dandrea. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 01:34:05 2011 From: python-checkins at python.org (michael.foord) Date: Thu, 17 Mar 2011 01:34:05 +0100 Subject: [Python-checkins] cpython (2.7): Issue #10242: backport of more fixes to unittest.TestCase.assertItemsEqual Message-ID: http://hg.python.org/cpython/rev/d8eaeee1c063 changeset: 68630:d8eaeee1c063 branch: 2.7 parent: 68596:b8f280d0cdbf user: Michael Foord date: Wed Mar 16 20:34:53 2011 -0400 summary: Issue #10242: backport of more fixes to unittest.TestCase.assertItemsEqual files: Lib/unittest/case.py Lib/unittest/test/test_assertions.py Lib/unittest/test/test_case.py Lib/unittest/util.py diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -10,9 +10,11 @@ from . import result from .util import ( - strclass, safe_repr, sorted_list_difference, unorderable_list_difference + strclass, safe_repr, unorderable_list_difference, + _count_diff_all_purpose, _count_diff_hashable ) + __unittest = True @@ -863,6 +865,7 @@ - [0, 1, 1] and [1, 0, 1] compare equal. - [0, 0, 1] and [0, 1] compare unequal. """ + first_seq, second_seq = list(actual_seq), list(expected_seq) with warnings.catch_warnings(): if sys.py3kwarning: # Silence Py3k warning raised during the sorting @@ -871,29 +874,23 @@ "comparing unequal types"]: warnings.filterwarnings("ignore", _msg, DeprecationWarning) try: - actual = collections.Counter(iter(actual_seq)) - expected = collections.Counter(iter(expected_seq)) + first = collections.Counter(first_seq) + second = collections.Counter(second_seq) except TypeError: - # Unsortable items (example: set(), complex(), ...) - actual = list(actual_seq) - expected = list(expected_seq) - missing, unexpected = unorderable_list_difference(expected, actual) + # Handle case with unhashable elements + differences = _count_diff_all_purpose(first_seq, second_seq) else: - if actual == expected: + if first == second: return - missing = list(expected - actual) - unexpected = list(actual - expected) + differences = _count_diff_hashable(first_seq, second_seq) - errors = [] - if missing: - errors.append('Expected, but missing:\n %s' % - safe_repr(missing)) - if unexpected: - errors.append('Unexpected, but present:\n %s' % - safe_repr(unexpected)) - if errors: - standardMsg = '\n'.join(errors) - self.fail(self._formatMessage(msg, standardMsg)) + if differences: + standardMsg = 'Element counts were not equal:\n' + lines = ['First has %d, Second has %d: %r' % diff for diff in differences] + diffMsg = '\n'.join(lines) + standardMsg = self._truncateMessage(standardMsg, diffMsg) + msg = self._formatMessage(msg, standardMsg) + self.fail(msg) def assertMultiLineEqual(self, first, second, msg=None): """Assert that two multi-line strings are equal.""" diff --git a/Lib/unittest/test/test_assertions.py b/Lib/unittest/test/test_assertions.py --- a/Lib/unittest/test/test_assertions.py +++ b/Lib/unittest/test/test_assertions.py @@ -228,12 +228,6 @@ "^Missing: 'key'$", "^Missing: 'key' : oops$"]) - def testAssertItemsEqual(self): - self.assertMessages('assertItemsEqual', ([], [None]), - [r"\[None\]$", "^oops$", - r"\[None\]$", - r"\[None\] : oops$"]) - def testAssertMultiLineEqual(self): self.assertMessages('assertMultiLineEqual', ("", "foo"), [r"\+ foo$", "^oops$", diff --git a/Lib/unittest/test/test_case.py b/Lib/unittest/test/test_case.py --- a/Lib/unittest/test/test_case.py +++ b/Lib/unittest/test/test_case.py @@ -686,20 +686,19 @@ # Test that sequences of unhashable objects can be tested for sameness: self.assertItemsEqual([[1, 2], [3, 4], 0], [False, [3, 4], [1, 2]]) - with test_support.check_warnings(quiet=True) as w: - # hashable types, but not orderable - self.assertRaises(self.failureException, self.assertItemsEqual, - [], [divmod, 'x', 1, 5j, 2j, frozenset()]) - # comparing dicts raises a py3k warning - self.assertItemsEqual([{'a': 1}, {'b': 2}], [{'b': 2}, {'a': 1}]) - # comparing heterogenous non-hashable sequences raises a py3k warning - self.assertItemsEqual([1, 'x', divmod, []], [divmod, [], 'x', 1]) - self.assertRaises(self.failureException, self.assertItemsEqual, - [], [divmod, [], 'x', 1, 5j, 2j, set()]) - # fail the test if warnings are not silenced - if w.warnings: - self.fail('assertItemsEqual raised a warning: ' + - str(w.warnings[0])) + # Test that iterator of unhashable objects can be tested for sameness: + self.assertItemsEqual(iter([1, 2, [], 3, 4]), + iter([1, 2, [], 3, 4])) + + # hashable types, but not orderable + self.assertRaises(self.failureException, self.assertItemsEqual, + [], [divmod, 'x', 1, 5j, 2j, frozenset()]) + # comparing dicts + self.assertItemsEqual([{'a': 1}, {'b': 2}], [{'b': 2}, {'a': 1}]) + # comparing heterogenous non-hashable sequences + self.assertItemsEqual([1, 'x', divmod, []], [divmod, [], 'x', 1]) + self.assertRaises(self.failureException, self.assertItemsEqual, + [], [divmod, [], 'x', 1, 5j, 2j, set()]) self.assertRaises(self.failureException, self.assertItemsEqual, [[1]], [[2]]) @@ -717,6 +716,19 @@ b = a[::-1] self.assertItemsEqual(a, b) + # test utility functions supporting assertItemsEqual() + + diffs = set(unittest.util._count_diff_all_purpose('aaabccd', 'abbbcce')) + expected = {(3,1,'a'), (1,3,'b'), (1,0,'d'), (0,1,'e')} + self.assertEqual(diffs, expected) + + diffs = unittest.util._count_diff_all_purpose([[]], []) + self.assertEqual(diffs, [(1, 0, [])]) + + diffs = set(unittest.util._count_diff_hashable('aaabccd', 'abbbcce')) + expected = {(3,1,'a'), (1,3,'b'), (1,0,'d'), (0,1,'e')} + self.assertEqual(diffs, expected) + def testAssertSetEqual(self): set1 = set() set2 = set() diff --git a/Lib/unittest/util.py b/Lib/unittest/util.py --- a/Lib/unittest/util.py +++ b/Lib/unittest/util.py @@ -1,4 +1,6 @@ """Various utility functions.""" +from collections import namedtuple, OrderedDict + __unittest = True @@ -92,3 +94,63 @@ # anything left in actual is unexpected return missing, actual + +_Mismatch = namedtuple('Mismatch', 'actual expected value') + +def _count_diff_all_purpose(actual, expected): + 'Returns list of (cnt_act, cnt_exp, elem) triples where the counts differ' + # elements need not be hashable + s, t = list(actual), list(expected) + m, n = len(s), len(t) + NULL = object() + result = [] + for i, elem in enumerate(s): + if elem is NULL: + continue + cnt_s = cnt_t = 0 + for j in range(i, m): + if s[j] == elem: + cnt_s += 1 + s[j] = NULL + for j, other_elem in enumerate(t): + if other_elem == elem: + cnt_t += 1 + t[j] = NULL + if cnt_s != cnt_t: + diff = _Mismatch(cnt_s, cnt_t, elem) + result.append(diff) + + for i, elem in enumerate(t): + if elem is NULL: + continue + cnt_t = 0 + for j in range(i, n): + if t[j] == elem: + cnt_t += 1 + t[j] = NULL + diff = _Mismatch(0, cnt_t, elem) + result.append(diff) + return result + +def _ordered_count(iterable): + 'Return dict of element counts, in the order they were first seen' + c = OrderedDict() + for elem in iterable: + c[elem] = c.get(elem, 0) + 1 + return c + +def _count_diff_hashable(actual, expected): + 'Returns list of (cnt_act, cnt_exp, elem) triples where the counts differ' + # elements must be hashable + s, t = _ordered_count(actual), _ordered_count(expected) + result = [] + for elem, cnt_s in s.items(): + cnt_t = t.get(elem, 0) + if cnt_s != cnt_t: + diff = _Mismatch(cnt_s, cnt_t, elem) + result.append(diff) + for elem, cnt_t in t.items(): + if elem not in s: + diff = _Mismatch(0, cnt_t, elem) + result.append(diff) + return result -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 02:13:16 2011 From: python-checkins at python.org (r.david.murray) Date: Thu, 17 Mar 2011 02:13:16 +0100 Subject: [Python-checkins] cpython (3.2): #11243: tests and fixes for handling of 'dirty data' in additional methods Message-ID: http://hg.python.org/cpython/rev/74a8c46fb272 changeset: 68631:74a8c46fb272 branch: 3.2 parent: 68626:2de45ced8291 user: R David Murray date: Wed Mar 16 21:11:23 2011 -0400 summary: #11243: tests and fixes for handling of 'dirty data' in additional methods files: Lib/email/message.py Lib/email/test/test_email.py Misc/NEWS diff --git a/Lib/email/message.py b/Lib/email/message.py --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -48,9 +48,9 @@ def _splitparam(param): # Split header parameters. BAW: this may be too simple. It isn't # strictly RFC 2045 (section 5.1) compliant, but it catches most headers - # found in the wild. We may eventually need a full fledged parser - # eventually. - a, sep, b = param.partition(';') + # found in the wild. We may eventually need a full fledged parser. + # RDM: we might have a Header here; for now just stringify it. + a, sep, b = str(param).partition(';') if not sep: return a.strip(), None return a.strip(), b.strip() @@ -90,6 +90,8 @@ return param def _parseparam(s): + # RDM This might be a Header, so for now stringify it. + s = ';' + str(s) plist = [] while s[:1] == ';': s = s[1:] @@ -240,7 +242,8 @@ if i is not None and not isinstance(self._payload, list): raise TypeError('Expected list, got %s' % type(self._payload)) payload = self._payload - cte = self.get('content-transfer-encoding', '').lower() + # cte might be a Header, so for now stringify it. + cte = str(self.get('content-transfer-encoding', '')).lower() # payload may be bytes here. if isinstance(payload, str): if _has_surrogates(payload): @@ -561,7 +564,7 @@ if value is missing: return failobj params = [] - for p in _parseparam(';' + value): + for p in _parseparam(value): try: name, val = p.split('=', 1) name = name.strip() diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -2995,6 +2995,58 @@ ['foo at bar.com', 'g\uFFFD\uFFFDst']) + def test_get_content_type_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/pl\xA7in; charset=utf-8 + """).encode('latin-1')) + self.assertEqual(msg.get_content_type(), "text/pl\uFFFDin") + self.assertEqual(msg.get_content_maintype(), "text") + self.assertEqual(msg.get_content_subtype(), "pl\uFFFDin") + + def test_get_params_with_8bit(self): + msg = email.message_from_bytes( + 'X-Header: foo=\xa7ne; b\xa7r=two; baz=three\n'.encode('latin-1')) + self.assertEqual(msg.get_params(header='x-header'), + [('foo', '\uFFFDne'), ('b\uFFFDr', 'two'), ('baz', 'three')]) + self.assertEqual(msg.get_param('Foo', header='x-header'), '\uFFFdne') + # XXX: someday you might be able to get 'b\xa7r', for now you can't. + self.assertEqual(msg.get_param('b\xa7r', header='x-header'), None) + + def test_get_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + self.assertEqual(msg.get_param('title'), + ('us-ascii', 'en', 'This is not f\uFFFDn')) + + def test_set_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + msg.set_param('title', 'test') + self.assertEqual(msg.get_param('title'), 'test') + + def test_del_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + msg.del_param('title') + self.assertEqual(msg.get_param('title'), None) + self.assertEqual(msg.get_content_maintype(), 'text') + + def test_get_payload_with_8bit_cte_header(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Transfer-Encoding: b\xa7se64 + Content-Type: text/plain; charset=latin-1 + + payload + """).encode('latin-1')) + self.assertEqual(msg.get_payload(), 'payload\n') + self.assertEqual(msg.get_payload(decode=True), b'payload\n') + non_latin_bin_msg = textwrap.dedent("""\ From: foo at bar.com To: b?z diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,9 @@ Library ------- +- Issue #11243: fix the parameter querying methods of Message to work if + the headers contain un-encoded non-ASCII data. + - Issue #11401: fix handling of headers with no value; this fixes a regression relative to Python2 and the result is now the same as it was in Python2. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 02:13:17 2011 From: python-checkins at python.org (r.david.murray) Date: Thu, 17 Mar 2011 02:13:17 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #11243 fix from 3.2. Message-ID: http://hg.python.org/cpython/rev/82ecfcd31250 changeset: 68632:82ecfcd31250 parent: 68629:c9bc3be512eb parent: 68631:74a8c46fb272 user: R David Murray date: Wed Mar 16 21:12:33 2011 -0400 summary: Merge #11243 fix from 3.2. files: Lib/email/test/test_email.py Misc/NEWS diff --git a/Lib/email/message.py b/Lib/email/message.py --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -48,9 +48,9 @@ def _splitparam(param): # Split header parameters. BAW: this may be too simple. It isn't # strictly RFC 2045 (section 5.1) compliant, but it catches most headers - # found in the wild. We may eventually need a full fledged parser - # eventually. - a, sep, b = param.partition(';') + # found in the wild. We may eventually need a full fledged parser. + # RDM: we might have a Header here; for now just stringify it. + a, sep, b = str(param).partition(';') if not sep: return a.strip(), None return a.strip(), b.strip() @@ -90,6 +90,8 @@ return param def _parseparam(s): + # RDM This might be a Header, so for now stringify it. + s = ';' + str(s) plist = [] while s[:1] == ';': s = s[1:] @@ -240,7 +242,8 @@ if i is not None and not isinstance(self._payload, list): raise TypeError('Expected list, got %s' % type(self._payload)) payload = self._payload - cte = self.get('content-transfer-encoding', '').lower() + # cte might be a Header, so for now stringify it. + cte = str(self.get('content-transfer-encoding', '')).lower() # payload may be bytes here. if isinstance(payload, str): if _has_surrogates(payload): @@ -561,7 +564,7 @@ if value is missing: return failobj params = [] - for p in _parseparam(';' + value): + for p in _parseparam(value): try: name, val = p.split('=', 1) name = name.strip() diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -3002,6 +3002,58 @@ ['foo at bar.com', 'g\uFFFD\uFFFDst']) + def test_get_content_type_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/pl\xA7in; charset=utf-8 + """).encode('latin-1')) + self.assertEqual(msg.get_content_type(), "text/pl\uFFFDin") + self.assertEqual(msg.get_content_maintype(), "text") + self.assertEqual(msg.get_content_subtype(), "pl\uFFFDin") + + def test_get_params_with_8bit(self): + msg = email.message_from_bytes( + 'X-Header: foo=\xa7ne; b\xa7r=two; baz=three\n'.encode('latin-1')) + self.assertEqual(msg.get_params(header='x-header'), + [('foo', '\uFFFDne'), ('b\uFFFDr', 'two'), ('baz', 'three')]) + self.assertEqual(msg.get_param('Foo', header='x-header'), '\uFFFdne') + # XXX: someday you might be able to get 'b\xa7r', for now you can't. + self.assertEqual(msg.get_param('b\xa7r', header='x-header'), None) + + def test_get_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + self.assertEqual(msg.get_param('title'), + ('us-ascii', 'en', 'This is not f\uFFFDn')) + + def test_set_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + msg.set_param('title', 'test') + self.assertEqual(msg.get_param('title'), 'test') + + def test_del_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + msg.del_param('title') + self.assertEqual(msg.get_param('title'), None) + self.assertEqual(msg.get_content_maintype(), 'text') + + def test_get_payload_with_8bit_cte_header(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Transfer-Encoding: b\xa7se64 + Content-Type: text/plain; charset=latin-1 + + payload + """).encode('latin-1')) + self.assertEqual(msg.get_payload(), 'payload\n') + self.assertEqual(msg.get_payload(decode=True), b'payload\n') + non_latin_bin_msg = textwrap.dedent("""\ From: foo at bar.com To: b?z diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,9 @@ Library ------- +- Issue #11243: fix the parameter querying methods of Message to work if + the headers contain un-encoded non-ASCII data. + - Issue #11401: fix handling of headers with no value; this fixes a regression relative to Python2 and the result is now the same as it was in Python2. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 02:50:58 2011 From: python-checkins at python.org (martin.v.loewis) Date: Thu, 17 Mar 2011 02:50:58 +0100 (CET) Subject: [Python-checkins] r88783 - tracker/instances/python-dev/extensions/create_patch.py Message-ID: <20110317015058.A67A4EE98F@mail.python.org> Author: martin.v.loewis Date: Thu Mar 17 02:50:58 2011 New Revision: 88783 Log: Update after pulling. Modified: tracker/instances/python-dev/extensions/create_patch.py Modified: tracker/instances/python-dev/extensions/create_patch.py ============================================================================== --- tracker/instances/python-dev/extensions/create_patch.py (original) +++ tracker/instances/python-dev/extensions/create_patch.py Thu Mar 17 02:50:58 2011 @@ -15,6 +15,7 @@ repo0.ui.quiet=True repo0.ui.pushbuffer() commands.pull(repo0.ui, repo0, quiet=True) + commands.update(repo0.ui, repo0) repo0.ui.popbuffer() # discard all pull output repo0.ui.pushbuffer() if commands.incoming(repo0.ui, repo0, source=source, branch=['default'], bundle=bundle, force=False) != 0: From python-checkins at python.org Thu Mar 17 02:54:29 2011 From: python-checkins at python.org (nick.coghlan) Date: Thu, 17 Mar 2011 02:54:29 +0100 Subject: [Python-checkins] cpython (3.2): Close #11577: Improve binhex test coverage and fix ResourceWarning Message-ID: http://hg.python.org/cpython/rev/5c2d15c6007e changeset: 68633:5c2d15c6007e branch: 3.2 parent: 68626:2de45ced8291 user: Nick Coghlan date: Wed Mar 16 21:26:40 2011 -0400 summary: Close #11577: Improve binhex test coverage and fix ResourceWarning files: Lib/binhex.py Lib/test/test_binhex.py Misc/ACKS Misc/NEWS diff --git a/Lib/binhex.py b/Lib/binhex.py --- a/Lib/binhex.py +++ b/Lib/binhex.py @@ -52,14 +52,13 @@ def getfileinfo(name): finfo = FInfo() - fp = io.open(name, 'rb') - # Quick check for textfile - data = fp.read(512) - if 0 not in data: - finfo.Type = 'TEXT' - fp.seek(0, 2) - dsize = fp.tell() - fp.close() + with io.open(name, 'rb') as fp: + # Quick check for textfile + data = fp.read(512) + if 0 not in data: + finfo.Type = 'TEXT' + fp.seek(0, 2) + dsize = fp.tell() dir, file = os.path.split(name) file = file.replace(':', '-', 1) return file, finfo, dsize, 0 @@ -140,19 +139,26 @@ class BinHex: def __init__(self, name_finfo_dlen_rlen, ofp): name, finfo, dlen, rlen = name_finfo_dlen_rlen + close_on_error = False if isinstance(ofp, str): ofname = ofp ofp = io.open(ofname, 'wb') - ofp.write(b'(This file must be converted with BinHex 4.0)\r\r:') - hqxer = _Hqxcoderengine(ofp) - self.ofp = _Rlecoderengine(hqxer) - self.crc = 0 - if finfo is None: - finfo = FInfo() - self.dlen = dlen - self.rlen = rlen - self._writeinfo(name, finfo) - self.state = _DID_HEADER + close_on_error = True + try: + ofp.write(b'(This file must be converted with BinHex 4.0)\r\r:') + hqxer = _Hqxcoderengine(ofp) + self.ofp = _Rlecoderengine(hqxer) + self.crc = 0 + if finfo is None: + finfo = FInfo() + self.dlen = dlen + self.rlen = rlen + self._writeinfo(name, finfo) + self.state = _DID_HEADER + except: + if close_on_error: + ofp.close() + raise def _writeinfo(self, name, finfo): nl = len(name) diff --git a/Lib/test/test_binhex.py b/Lib/test/test_binhex.py --- a/Lib/test/test_binhex.py +++ b/Lib/test/test_binhex.py @@ -15,10 +15,12 @@ def setUp(self): self.fname1 = support.TESTFN + "1" self.fname2 = support.TESTFN + "2" + self.fname3 = support.TESTFN + "very_long_filename__very_long_filename__very_long_filename__very_long_filename__" def tearDown(self): support.unlink(self.fname1) support.unlink(self.fname2) + support.unlink(self.fname3) DATA = b'Jack is my hero' @@ -37,6 +39,15 @@ self.assertEqual(self.DATA, finish) + def test_binhex_error_on_long_filename(self): + """ + The testcase fails if no exception is raised when a filename parameter provided to binhex.binhex() + is too long, or if the exception raised in binhex.binhex() is not an instance of binhex.Error. + """ + f3 = open(self.fname3, 'wb') + f3.close() + + self.assertRaises(binhex.Error, binhex.binhex, self.fname3, self.fname2) def test_main(): support.run_unittest(BinHexTestCase) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -447,6 +447,7 @@ Peter van Kampen Rafe Kaplan Jacob Kaplan-Moss +Arkady Koplyarov Lou Kates Hiroaki Kawai Sebastien Keim diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,8 @@ Library ------- +- Issue #11577: fix ResourceWarning triggered by improved binhex test coverage + - Issue #11401: fix handling of headers with no value; this fixes a regression relative to Python2 and the result is now the same as it was in Python2. @@ -129,6 +131,8 @@ Tests ----- +- Issue #11577: improve test coverage of binhex.py. Patch by Arkady Koplyarov. + - Issue #11578: added test for the timeit module. Patch Michael Henry. - Issue #11503: improve test coverage of posixpath.py. Patch by Evan Dandrea. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 02:54:30 2011 From: python-checkins at python.org (nick.coghlan) Date: Thu, 17 Mar 2011 02:54:30 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge from 3.2 Message-ID: http://hg.python.org/cpython/rev/37e2ff4e3d44 changeset: 68634:37e2ff4e3d44 parent: 68629:c9bc3be512eb parent: 68631:74a8c46fb272 user: Nick Coghlan date: Wed Mar 16 21:48:30 2011 -0400 summary: Merge from 3.2 files: Lib/email/test/test_email.py Misc/NEWS diff --git a/Lib/email/message.py b/Lib/email/message.py --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -48,9 +48,9 @@ def _splitparam(param): # Split header parameters. BAW: this may be too simple. It isn't # strictly RFC 2045 (section 5.1) compliant, but it catches most headers - # found in the wild. We may eventually need a full fledged parser - # eventually. - a, sep, b = param.partition(';') + # found in the wild. We may eventually need a full fledged parser. + # RDM: we might have a Header here; for now just stringify it. + a, sep, b = str(param).partition(';') if not sep: return a.strip(), None return a.strip(), b.strip() @@ -90,6 +90,8 @@ return param def _parseparam(s): + # RDM This might be a Header, so for now stringify it. + s = ';' + str(s) plist = [] while s[:1] == ';': s = s[1:] @@ -240,7 +242,8 @@ if i is not None and not isinstance(self._payload, list): raise TypeError('Expected list, got %s' % type(self._payload)) payload = self._payload - cte = self.get('content-transfer-encoding', '').lower() + # cte might be a Header, so for now stringify it. + cte = str(self.get('content-transfer-encoding', '')).lower() # payload may be bytes here. if isinstance(payload, str): if _has_surrogates(payload): @@ -561,7 +564,7 @@ if value is missing: return failobj params = [] - for p in _parseparam(';' + value): + for p in _parseparam(value): try: name, val = p.split('=', 1) name = name.strip() diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -3002,6 +3002,58 @@ ['foo at bar.com', 'g\uFFFD\uFFFDst']) + def test_get_content_type_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/pl\xA7in; charset=utf-8 + """).encode('latin-1')) + self.assertEqual(msg.get_content_type(), "text/pl\uFFFDin") + self.assertEqual(msg.get_content_maintype(), "text") + self.assertEqual(msg.get_content_subtype(), "pl\uFFFDin") + + def test_get_params_with_8bit(self): + msg = email.message_from_bytes( + 'X-Header: foo=\xa7ne; b\xa7r=two; baz=three\n'.encode('latin-1')) + self.assertEqual(msg.get_params(header='x-header'), + [('foo', '\uFFFDne'), ('b\uFFFDr', 'two'), ('baz', 'three')]) + self.assertEqual(msg.get_param('Foo', header='x-header'), '\uFFFdne') + # XXX: someday you might be able to get 'b\xa7r', for now you can't. + self.assertEqual(msg.get_param('b\xa7r', header='x-header'), None) + + def test_get_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + self.assertEqual(msg.get_param('title'), + ('us-ascii', 'en', 'This is not f\uFFFDn')) + + def test_set_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + msg.set_param('title', 'test') + self.assertEqual(msg.get_param('title'), 'test') + + def test_del_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + msg.del_param('title') + self.assertEqual(msg.get_param('title'), None) + self.assertEqual(msg.get_content_maintype(), 'text') + + def test_get_payload_with_8bit_cte_header(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Transfer-Encoding: b\xa7se64 + Content-Type: text/plain; charset=latin-1 + + payload + """).encode('latin-1')) + self.assertEqual(msg.get_payload(), 'payload\n') + self.assertEqual(msg.get_payload(decode=True), b'payload\n') + non_latin_bin_msg = textwrap.dedent("""\ From: foo at bar.com To: b?z diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,9 @@ Library ------- +- Issue #11243: fix the parameter querying methods of Message to work if + the headers contain un-encoded non-ASCII data. + - Issue #11401: fix handling of headers with no value; this fixes a regression relative to Python2 and the result is now the same as it was in Python2. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 02:54:32 2011 From: python-checkins at python.org (nick.coghlan) Date: Thu, 17 Mar 2011 02:54:32 +0100 Subject: [Python-checkins] cpython (merge default -> default): Dummy merge Message-ID: http://hg.python.org/cpython/rev/917f74ff5782 changeset: 68635:917f74ff5782 parent: 68634:37e2ff4e3d44 parent: 68632:82ecfcd31250 user: Nick Coghlan date: Wed Mar 16 22:06:35 2011 -0400 summary: Dummy merge files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 02:54:34 2011 From: python-checkins at python.org (nick.coghlan) Date: Thu, 17 Mar 2011 02:54:34 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> 3.2): Merge from remote Message-ID: http://hg.python.org/cpython/rev/21fe6d393242 changeset: 68636:21fe6d393242 branch: 3.2 parent: 68633:5c2d15c6007e parent: 68631:74a8c46fb272 user: Nick Coghlan date: Wed Mar 16 22:09:10 2011 -0400 summary: Merge from remote files: Misc/NEWS diff --git a/Lib/email/message.py b/Lib/email/message.py --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -48,9 +48,9 @@ def _splitparam(param): # Split header parameters. BAW: this may be too simple. It isn't # strictly RFC 2045 (section 5.1) compliant, but it catches most headers - # found in the wild. We may eventually need a full fledged parser - # eventually. - a, sep, b = param.partition(';') + # found in the wild. We may eventually need a full fledged parser. + # RDM: we might have a Header here; for now just stringify it. + a, sep, b = str(param).partition(';') if not sep: return a.strip(), None return a.strip(), b.strip() @@ -90,6 +90,8 @@ return param def _parseparam(s): + # RDM This might be a Header, so for now stringify it. + s = ';' + str(s) plist = [] while s[:1] == ';': s = s[1:] @@ -240,7 +242,8 @@ if i is not None and not isinstance(self._payload, list): raise TypeError('Expected list, got %s' % type(self._payload)) payload = self._payload - cte = self.get('content-transfer-encoding', '').lower() + # cte might be a Header, so for now stringify it. + cte = str(self.get('content-transfer-encoding', '')).lower() # payload may be bytes here. if isinstance(payload, str): if _has_surrogates(payload): @@ -561,7 +564,7 @@ if value is missing: return failobj params = [] - for p in _parseparam(';' + value): + for p in _parseparam(value): try: name, val = p.split('=', 1) name = name.strip() diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -2995,6 +2995,58 @@ ['foo at bar.com', 'g\uFFFD\uFFFDst']) + def test_get_content_type_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/pl\xA7in; charset=utf-8 + """).encode('latin-1')) + self.assertEqual(msg.get_content_type(), "text/pl\uFFFDin") + self.assertEqual(msg.get_content_maintype(), "text") + self.assertEqual(msg.get_content_subtype(), "pl\uFFFDin") + + def test_get_params_with_8bit(self): + msg = email.message_from_bytes( + 'X-Header: foo=\xa7ne; b\xa7r=two; baz=three\n'.encode('latin-1')) + self.assertEqual(msg.get_params(header='x-header'), + [('foo', '\uFFFDne'), ('b\uFFFDr', 'two'), ('baz', 'three')]) + self.assertEqual(msg.get_param('Foo', header='x-header'), '\uFFFdne') + # XXX: someday you might be able to get 'b\xa7r', for now you can't. + self.assertEqual(msg.get_param('b\xa7r', header='x-header'), None) + + def test_get_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + self.assertEqual(msg.get_param('title'), + ('us-ascii', 'en', 'This is not f\uFFFDn')) + + def test_set_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + msg.set_param('title', 'test') + self.assertEqual(msg.get_param('title'), 'test') + + def test_del_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + msg.del_param('title') + self.assertEqual(msg.get_param('title'), None) + self.assertEqual(msg.get_content_maintype(), 'text') + + def test_get_payload_with_8bit_cte_header(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Transfer-Encoding: b\xa7se64 + Content-Type: text/plain; charset=latin-1 + + payload + """).encode('latin-1')) + self.assertEqual(msg.get_payload(), 'payload\n') + self.assertEqual(msg.get_payload(decode=True), b'payload\n') + non_latin_bin_msg = textwrap.dedent("""\ From: foo at bar.com To: b?z diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -42,6 +42,9 @@ - Issue #11577: fix ResourceWarning triggered by improved binhex test coverage +- Issue #11243: fix the parameter querying methods of Message to work if + the headers contain un-encoded non-ASCII data. + - Issue #11401: fix handling of headers with no value; this fixes a regression relative to Python2 and the result is now the same as it was in Python2. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 02:54:37 2011 From: python-checkins at python.org (nick.coghlan) Date: Thu, 17 Mar 2011 02:54:37 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Tidy up merge with remote Message-ID: http://hg.python.org/cpython/rev/2b3fb2398f45 changeset: 68637:2b3fb2398f45 parent: 68635:917f74ff5782 parent: 68636:21fe6d393242 user: Nick Coghlan date: Wed Mar 16 22:11:09 2011 -0400 summary: Tidy up merge with remote files: Misc/ACKS Misc/NEWS diff --git a/Lib/binhex.py b/Lib/binhex.py --- a/Lib/binhex.py +++ b/Lib/binhex.py @@ -52,14 +52,13 @@ def getfileinfo(name): finfo = FInfo() - fp = io.open(name, 'rb') - # Quick check for textfile - data = fp.read(512) - if 0 not in data: - finfo.Type = 'TEXT' - fp.seek(0, 2) - dsize = fp.tell() - fp.close() + with io.open(name, 'rb') as fp: + # Quick check for textfile + data = fp.read(512) + if 0 not in data: + finfo.Type = 'TEXT' + fp.seek(0, 2) + dsize = fp.tell() dir, file = os.path.split(name) file = file.replace(':', '-', 1) return file, finfo, dsize, 0 @@ -140,19 +139,26 @@ class BinHex: def __init__(self, name_finfo_dlen_rlen, ofp): name, finfo, dlen, rlen = name_finfo_dlen_rlen + close_on_error = False if isinstance(ofp, str): ofname = ofp ofp = io.open(ofname, 'wb') - ofp.write(b'(This file must be converted with BinHex 4.0)\r\r:') - hqxer = _Hqxcoderengine(ofp) - self.ofp = _Rlecoderengine(hqxer) - self.crc = 0 - if finfo is None: - finfo = FInfo() - self.dlen = dlen - self.rlen = rlen - self._writeinfo(name, finfo) - self.state = _DID_HEADER + close_on_error = True + try: + ofp.write(b'(This file must be converted with BinHex 4.0)\r\r:') + hqxer = _Hqxcoderengine(ofp) + self.ofp = _Rlecoderengine(hqxer) + self.crc = 0 + if finfo is None: + finfo = FInfo() + self.dlen = dlen + self.rlen = rlen + self._writeinfo(name, finfo) + self.state = _DID_HEADER + except: + if close_on_error: + ofp.close() + raise def _writeinfo(self, name, finfo): nl = len(name) diff --git a/Lib/test/test_binhex.py b/Lib/test/test_binhex.py --- a/Lib/test/test_binhex.py +++ b/Lib/test/test_binhex.py @@ -15,10 +15,12 @@ def setUp(self): self.fname1 = support.TESTFN + "1" self.fname2 = support.TESTFN + "2" + self.fname3 = support.TESTFN + "very_long_filename__very_long_filename__very_long_filename__very_long_filename__" def tearDown(self): support.unlink(self.fname1) support.unlink(self.fname2) + support.unlink(self.fname3) DATA = b'Jack is my hero' @@ -37,6 +39,15 @@ self.assertEqual(self.DATA, finish) + def test_binhex_error_on_long_filename(self): + """ + The testcase fails if no exception is raised when a filename parameter provided to binhex.binhex() + is too long, or if the exception raised in binhex.binhex() is not an instance of binhex.Error. + """ + f3 = open(self.fname3, 'wb') + f3.close() + + self.assertRaises(binhex.Error, binhex.binhex, self.fname3, self.fname2) def test_main(): support.run_unittest(BinHexTestCase) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -451,6 +451,7 @@ Peter van Kampen Rafe Kaplan Jacob Kaplan-Moss +Arkady Koplyarov Lou Kates Hiroaki Kawai Sebastien Keim diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,8 @@ Library ------- +- Issue #11577: fix ResourceWarning triggered by improved binhex test coverage + - Issue #11243: fix the parameter querying methods of Message to work if the headers contain un-encoded non-ASCII data. @@ -242,6 +244,8 @@ Tests ----- +- Issue #11577: improve test coverage of binhex.py. Patch by Arkady Koplyarov. + - New test_crashers added to exercise the scripts in the Lib/test/crashers directory and confirm they fail as expected -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 03:27:14 2011 From: python-checkins at python.org (michael.foord) Date: Thu, 17 Mar 2011 03:27:14 +0100 Subject: [Python-checkins] cpython (2.7): Changes for Wing Project file caused by mercurial transition. Plus ignoring Message-ID: http://hg.python.org/cpython/rev/421c941c529f changeset: 68638:421c941c529f branch: 2.7 parent: 68630:d8eaeee1c063 user: Michael Foord date: Wed Mar 16 22:28:08 2011 -0400 summary: Changes for Wing Project file caused by mercurial transition. Plus ignoring python.exe-gdb.py. files: .hgignore Misc/python-wing4.wpr diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -36,6 +36,7 @@ ^python-gdb.py syntax: glob +python.exe-gdb.py libpython*.a *.swp *.o @@ -48,6 +49,7 @@ *~ Lib/lib2to3/*.pickle Lib/test/data/* +Misc/*.wpu PC/python_nt*.h PC/pythonnt_rc*.h PC/*.obj diff --git a/Misc/python-wing4.wpr b/Misc/python-wing4.wpr --- a/Misc/python-wing4.wpr +++ b/Misc/python-wing4.wpr @@ -5,7 +5,8 @@ ################################################################## [project attributes] proj.directory-list = [{'dirloc': loc('..'), - 'excludes': [u'Lib/__pycache__', + 'excludes': [u'.hg', + u'Lib/__pycache__', u'Doc/build', u'build'], 'filter': '*', -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Thu Mar 17 05:10:22 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Thu, 17 Mar 2011 05:10:22 +0100 Subject: [Python-checkins] Daily reference leaks (2b3fb2398f45): sum=-323 Message-ID: results for 2b3fb2398f45 on branch "default" -------------------------------------------- test_pydoc leaked [0, 0, -323] references, sum=-323 Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogdT6TiE', '-x'] From python-checkins at python.org Thu Mar 17 05:15:09 2011 From: python-checkins at python.org (kurt.kaiser) Date: Thu, 17 Mar 2011 05:15:09 +0100 Subject: [Python-checkins] cpython (2.7): toggle non-functional when NumLock set. Message-ID: http://hg.python.org/cpython/rev/664a129c01f7 changeset: 68639:664a129c01f7 branch: 2.7 user: Kurt B. Kaiser date: Thu Mar 17 00:05:38 2011 -0400 summary: toggle non-functional when NumLock set. Issue3851 files: Lib/idlelib/EditorWindow.py Lib/idlelib/NEWS.txt diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -307,9 +307,9 @@ return "break" def home_callback(self, event): - if (event.state & 12) != 0 and event.keysym == "Home": - # state&1==shift, state&4==control, state&8==alt - return # ; fall back to class binding + if (event.state & 4) != 0 and event.keysym == "Home": + # state&4==Control. If , use the Tk binding. + return if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,3 +1,10 @@ +What's New in IDLE 2.7.2? +======================= + +*Release date: XX-XX-XXXX* + +- toggle non-functional when NumLock set on Windows. Issue3851. + What's New in IDLE 2.7? ======================= -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 07:49:52 2011 From: python-checkins at python.org (senthil.kumaran) Date: Thu, 17 Mar 2011 07:49:52 +0100 Subject: [Python-checkins] cpython (2.5): Fix issue11442 - Add a charset parameter to the Content-type to avoid XSS Message-ID: http://hg.python.org/cpython/rev/e9724d7abbc2 changeset: 68640:e9724d7abbc2 branch: 2.5 parent: 68263:7790ad8332ba user: Senthil Kumaran date: Thu Mar 17 12:34:18 2011 +0800 summary: Fix issue11442 - Add a charset parameter to the Content-type to avoid XSS attacks. Patch by Tom N. (Backported from py3k codeline). files: Lib/SimpleHTTPServer.py diff --git a/Lib/SimpleHTTPServer.py b/Lib/SimpleHTTPServer.py --- a/Lib/SimpleHTTPServer.py +++ b/Lib/SimpleHTTPServer.py @@ -16,6 +16,7 @@ import urllib import urlparse import cgi +import sys import shutil import mimetypes try: @@ -132,7 +133,8 @@ length = f.tell() f.seek(0) self.send_response(200) - self.send_header("Content-type", "text/html") + encoding = sys.getfilesystemencoding() + self.send_header("Content-type", "text/html; charset=%s" % encoding) self.send_header("Content-Length", str(length)) self.end_headers() return f -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 07:49:54 2011 From: python-checkins at python.org (senthil.kumaran) Date: Thu, 17 Mar 2011 07:49:54 +0100 Subject: [Python-checkins] cpython (merge 2.5 -> 2.6): merge from 2.5 branch. Message-ID: http://hg.python.org/cpython/rev/8cdb95cf096e changeset: 68641:8cdb95cf096e branch: 2.6 parent: 68377:d6626c9fc28d parent: 68640:e9724d7abbc2 user: Senthil Kumaran date: Thu Mar 17 14:23:24 2011 +0800 summary: merge from 2.5 branch. files: Lib/SimpleHTTPServer.py diff --git a/Lib/SimpleHTTPServer.py b/Lib/SimpleHTTPServer.py --- a/Lib/SimpleHTTPServer.py +++ b/Lib/SimpleHTTPServer.py @@ -15,6 +15,7 @@ import BaseHTTPServer import urllib import cgi +import sys import shutil import mimetypes try: @@ -131,7 +132,8 @@ length = f.tell() f.seek(0) self.send_response(200) - self.send_header("Content-type", "text/html") + encoding = sys.getfilesystemencoding() + self.send_header("Content-type", "text/html; charset=%s" % encoding) self.send_header("Content-Length", str(length)) self.end_headers() return f -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 07:49:55 2011 From: python-checkins at python.org (senthil.kumaran) Date: Thu, 17 Mar 2011 07:49:55 +0100 Subject: [Python-checkins] cpython (merge 2.6 -> 2.7): merge from 2.6 branch Message-ID: http://hg.python.org/cpython/rev/6cd7de9deb1a changeset: 68642:6cd7de9deb1a branch: 2.7 parent: 68638:421c941c529f parent: 68641:8cdb95cf096e user: Senthil Kumaran date: Thu Mar 17 14:24:35 2011 +0800 summary: merge from 2.6 branch files: diff --git a/Lib/SimpleHTTPServer.py b/Lib/SimpleHTTPServer.py --- a/Lib/SimpleHTTPServer.py +++ b/Lib/SimpleHTTPServer.py @@ -15,6 +15,7 @@ import BaseHTTPServer import urllib import cgi +import sys import shutil import mimetypes try: @@ -131,7 +132,8 @@ length = f.tell() f.seek(0) self.send_response(200) - self.send_header("Content-type", "text/html") + encoding = sys.getfilesystemencoding() + self.send_header("Content-type", "text/html; charset=%s" % encoding) self.send_header("Content-Length", str(length)) self.end_headers() return f -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 07:50:02 2011 From: python-checkins at python.org (senthil.kumaran) Date: Thu, 17 Mar 2011 07:50:02 +0100 Subject: [Python-checkins] cpython (merge 2.7 -> 2.7): branch merge. Message-ID: http://hg.python.org/cpython/rev/1148131b1099 changeset: 68643:1148131b1099 branch: 2.7 parent: 68642:6cd7de9deb1a parent: 68639:664a129c01f7 user: Senthil Kumaran date: Thu Mar 17 14:43:21 2011 +0800 summary: branch merge. files: diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -307,9 +307,9 @@ return "break" def home_callback(self, event): - if (event.state & 12) != 0 and event.keysym == "Home": - # state&1==shift, state&4==control, state&8==alt - return # ; fall back to class binding + if (event.state & 4) != 0 and event.keysym == "Home": + # state&4==Control. If , use the Tk binding. + return if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,3 +1,10 @@ +What's New in IDLE 2.7.2? +======================= + +*Release date: XX-XX-XXXX* + +- toggle non-functional when NumLock set on Windows. Issue3851. + What's New in IDLE 2.7? ======================= -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 09:48:38 2011 From: python-checkins at python.org (senthil.kumaran) Date: Thu, 17 Mar 2011 09:48:38 +0100 Subject: [Python-checkins] cpython (3.2): Fix issue11567: http.server DEFAULT_ERROR_MESSAGE format. Patch by Gennadiy Message-ID: http://hg.python.org/cpython/rev/db4967095f10 changeset: 68644:db4967095f10 branch: 3.2 parent: 68636:21fe6d393242 user: Senthil Kumaran date: Thu Mar 17 16:43:22 2011 +0800 summary: Fix issue11567: http.server DEFAULT_ERROR_MESSAGE format. Patch by Gennadiy Zlobin. files: Lib/http/server.py diff --git a/Lib/http/server.py b/Lib/http/server.py --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -103,15 +103,20 @@ # Default error message template DEFAULT_ERROR_MESSAGE = """\ - -Error response - - -

    Error response

    -

    Error code %(code)d. -

    Message: %(message)s. -

    Error code explanation: %(code)s = %(explain)s. - + + + + + Error response + + +

    Error response

    +

    Error code: %(code)d

    +

    Message: %(message)s.

    +

    Error code explanation: %(code)s - %(explain)s.

    + + """ DEFAULT_ERROR_CONTENT_TYPE = "text/html;charset=utf-8" -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 09:48:39 2011 From: python-checkins at python.org (senthil.kumaran) Date: Thu, 17 Mar 2011 09:48:39 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge from 3.2 Message-ID: http://hg.python.org/cpython/rev/71300ca11b85 changeset: 68645:71300ca11b85 parent: 68637:2b3fb2398f45 parent: 68644:db4967095f10 user: Senthil Kumaran date: Thu Mar 17 16:48:26 2011 +0800 summary: Merge from 3.2 files: Lib/http/server.py diff --git a/Lib/http/server.py b/Lib/http/server.py --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -103,15 +103,20 @@ # Default error message template DEFAULT_ERROR_MESSAGE = """\ - -Error response - - -

    Error response

    -

    Error code %(code)d. -

    Message: %(message)s. -

    Error code explanation: %(code)s = %(explain)s. - + + + + + Error response + + +

    Error response

    +

    Error code: %(code)d

    +

    Message: %(message)s.

    +

    Error code explanation: %(code)s - %(explain)s.

    + + """ DEFAULT_ERROR_CONTENT_TYPE = "text/html;charset=utf-8" -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 10:06:48 2011 From: python-checkins at python.org (senthil.kumaran) Date: Thu, 17 Mar 2011 10:06:48 +0100 Subject: [Python-checkins] cpython (3.1): Error message in http.server code. Missed to update in 3.1 branch initially. Message-ID: http://hg.python.org/cpython/rev/2f222360a774 changeset: 68646:2f222360a774 branch: 3.1 parent: 68625:d9c3cfd36b58 user: Senthil Kumaran date: Thu Mar 17 17:01:45 2011 +0800 summary: Error message in http.server code. Missed to update in 3.1 branch initially. files: Lib/http/server.py diff --git a/Lib/http/server.py b/Lib/http/server.py --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -103,15 +103,20 @@ # Default error message template DEFAULT_ERROR_MESSAGE = """\ - -Error response - - -

    Error response

    -

    Error code %(code)d. -

    Message: %(message)s. -

    Error code explanation: %(code)s = %(explain)s. - + + + + + Error response + + +

    Error response

    +

    Error code: %(code)d

    +

    Message: %(message)s.

    +

    Error code explanation: %(code)s - %(explain)s.

    + + """ DEFAULT_ERROR_CONTENT_TYPE = "text/html;charset=utf-8" -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 10:06:49 2011 From: python-checkins at python.org (senthil.kumaran) Date: Thu, 17 Mar 2011 10:06:49 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Recording the merge. Message-ID: http://hg.python.org/cpython/rev/40f5355b6bf8 changeset: 68647:40f5355b6bf8 branch: 3.2 parent: 68644:db4967095f10 parent: 68646:2f222360a774 user: Senthil Kumaran date: Thu Mar 17 17:05:04 2011 +0800 summary: Recording the merge. files: Lib/http/server.py -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 10:06:50 2011 From: python-checkins at python.org (senthil.kumaran) Date: Thu, 17 Mar 2011 10:06:50 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Recording the merge which got missed in 3.1 Message-ID: http://hg.python.org/cpython/rev/48970d754841 changeset: 68648:48970d754841 parent: 68645:71300ca11b85 parent: 68647:40f5355b6bf8 user: Senthil Kumaran date: Thu Mar 17 17:06:27 2011 +0800 summary: Recording the merge which got missed in 3.1 files: Lib/http/server.py -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 15:35:29 2011 From: python-checkins at python.org (nick.coghlan) Date: Thu, 17 Mar 2011 15:35:29 +0100 Subject: [Python-checkins] cpython: Give more info in verbose mode when checking crashers, and stress the stack Message-ID: http://hg.python.org/cpython/rev/1cb486f4e18d changeset: 68649:1cb486f4e18d user: Nick Coghlan date: Thu Mar 17 11:04:34 2011 -0400 summary: Give more info in verbose mode when checking crashers, and stress the stack even more in the compiler crasher files: Lib/test/crashers/compiler_recursion.py Lib/test/test_crashers.py diff --git a/Lib/test/crashers/compiler_recursion.py b/Lib/test/crashers/compiler_recursion.py --- a/Lib/test/crashers/compiler_recursion.py +++ b/Lib/test/crashers/compiler_recursion.py @@ -9,5 +9,5 @@ # e.g. '1*'*10**5+'1' will die in compiler_visit_expr # The exact limit to destroy the stack will vary by platform -# but 100k should do the trick most places -compile('()'*10**5, '?', 'exec') +# but 1M should do the trick most places +compile('()'*10**6, '?', 'exec') diff --git a/Lib/test/test_crashers.py b/Lib/test/test_crashers.py --- a/Lib/test/test_crashers.py +++ b/Lib/test/test_crashers.py @@ -24,6 +24,8 @@ continue # Some "crashers" only trigger an exception rather than a # segfault. Consider that an acceptable outcome. + if test.support.verbose: + print("Checking crasher:", fname) assert_python_failure(fname) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 17:48:03 2011 From: python-checkins at python.org (michael.foord) Date: Thu, 17 Mar 2011 17:48:03 +0100 Subject: [Python-checkins] cpython (2.7): Issue #10979. unittest stdout buffering now works for class and module fixtures. Message-ID: http://hg.python.org/cpython/rev/d6abdd78d2af changeset: 68650:d6abdd78d2af branch: 2.7 parent: 68643:1148131b1099 user: Michael Foord date: Thu Mar 17 12:48:56 2011 -0400 summary: Issue #10979. unittest stdout buffering now works for class and module fixtures. files: Lib/unittest/result.py Lib/unittest/suite.py Lib/unittest/test/test_result.py diff --git a/Lib/unittest/result.py b/Lib/unittest/result.py --- a/Lib/unittest/result.py +++ b/Lib/unittest/result.py @@ -60,6 +60,9 @@ "Called when the given test is about to be run" self.testsRun += 1 self._mirrorOutput = False + self._setupStdout() + + def _setupStdout(self): if self.buffer: if self._stderr_buffer is None: self._stderr_buffer = StringIO() @@ -75,6 +78,10 @@ def stopTest(self, test): """Called when the given test has been run""" + self._restoreStdout() + self._mirrorOutput = False + + def _restoreStdout(self): if self.buffer: if self._mirrorOutput: output = sys.stdout.getvalue() @@ -94,7 +101,6 @@ self._stdout_buffer.truncate() self._stderr_buffer.seek(0) self._stderr_buffer.truncate() - self._mirrorOutput = False def stopTestRun(self): """Called once after all tests are executed. diff --git a/Lib/unittest/suite.py b/Lib/unittest/suite.py --- a/Lib/unittest/suite.py +++ b/Lib/unittest/suite.py @@ -8,6 +8,11 @@ __unittest = True +def _call_if_exists(parent, attr): + func = getattr(parent, attr, lambda: None) + func() + + class BaseTestSuite(object): """A simple test suite that doesn't provide class or module shared fixtures. """ @@ -136,6 +141,7 @@ setUpClass = getattr(currentClass, 'setUpClass', None) if setUpClass is not None: + _call_if_exists(result, '_setupStdout') try: setUpClass() except Exception as e: @@ -145,7 +151,8 @@ className = util.strclass(currentClass) errorName = 'setUpClass (%s)' % className self._addClassOrModuleLevelException(result, e, errorName) - + finally: + _call_if_exists(result, '_restoreStdout') def _get_previous_module(self, result): previousModule = None @@ -170,6 +177,7 @@ return setUpModule = getattr(module, 'setUpModule', None) if setUpModule is not None: + _call_if_exists(result, '_setupStdout') try: setUpModule() except Exception, e: @@ -178,6 +186,8 @@ result._moduleSetUpFailed = True errorName = 'setUpModule (%s)' % currentModule self._addClassOrModuleLevelException(result, e, errorName) + finally: + _call_if_exists(result, '_restoreStdout') def _addClassOrModuleLevelException(self, result, exception, errorName): error = _ErrorHolder(errorName) @@ -201,6 +211,7 @@ tearDownModule = getattr(module, 'tearDownModule', None) if tearDownModule is not None: + _call_if_exists(result, '_setupStdout') try: tearDownModule() except Exception as e: @@ -208,6 +219,8 @@ raise errorName = 'tearDownModule (%s)' % previousModule self._addClassOrModuleLevelException(result, e, errorName) + finally: + _call_if_exists(result, '_restoreStdout') def _tearDownPreviousClass(self, test, result): previousClass = getattr(result, '_previousTestClass', None) @@ -223,6 +236,7 @@ tearDownClass = getattr(previousClass, 'tearDownClass', None) if tearDownClass is not None: + _call_if_exists(result, '_setupStdout') try: tearDownClass() except Exception, e: @@ -231,6 +245,8 @@ className = util.strclass(previousClass) errorName = 'tearDownClass (%s)' % className self._addClassOrModuleLevelException(result, e, errorName) + finally: + _call_if_exists(result, '_restoreStdout') class _ErrorHolder(object): diff --git a/Lib/unittest/test/test_result.py b/Lib/unittest/test/test_result.py --- a/Lib/unittest/test/test_result.py +++ b/Lib/unittest/test/test_result.py @@ -496,5 +496,72 @@ self.assertEqual(result._original_stderr.getvalue(), expectedErrMessage) self.assertMultiLineEqual(message, expectedFullMessage) + def testBufferSetupClass(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + @classmethod + def setUpClass(cls): + 1/0 + def test_foo(self): + pass + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + def testBufferTearDownClass(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + @classmethod + def tearDownClass(cls): + 1/0 + def test_foo(self): + pass + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + def testBufferSetUpModule(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + def test_foo(self): + pass + class Module(object): + @staticmethod + def setUpModule(): + 1/0 + + Foo.__module__ = 'Module' + sys.modules['Module'] = Module + self.addCleanup(sys.modules.pop, 'Module') + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + def testBufferTearDownModule(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + def test_foo(self): + pass + class Module(object): + @staticmethod + def tearDownModule(): + 1/0 + + Foo.__module__ = 'Module' + sys.modules['Module'] = Module + self.addCleanup(sys.modules.pop, 'Module') + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + if __name__ == '__main__': unittest.main() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 17:58:49 2011 From: python-checkins at python.org (michael.foord) Date: Thu, 17 Mar 2011 17:58:49 +0100 Subject: [Python-checkins] cpython (2.7): News update for previous commit Message-ID: http://hg.python.org/cpython/rev/e78e35954fbf changeset: 68651:e78e35954fbf branch: 2.7 user: Michael Foord date: Thu Mar 17 12:59:38 2011 -0400 summary: News update for previous commit files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -43,12 +43,15 @@ Library ------- +- Issue #10979: unittest stdout buffering now works with class and module + setup and teardown. + - Issue #11569: use absolute path to the sysctl command in multiprocessing to ensure that it will be found regardless of the shell PATH. This ensures that multiprocessing.cpu_count works on default installs of MacOSX. -- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified - IP addresses in the proxy exception list. +- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified + IP addresses in the proxy exception list. - Issue #11131: Fix sign of zero in plus and minus operations when the context rounding mode is ROUND_FLOOR. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 18:43:25 2011 From: python-checkins at python.org (michael.foord) Date: Thu, 17 Mar 2011 18:43:25 +0100 Subject: [Python-checkins] cpython (3.2): Issue #10979. unittest stdout buffering now works with class and module setup Message-ID: http://hg.python.org/cpython/rev/0f7036ea0930 changeset: 68652:0f7036ea0930 branch: 3.2 parent: 68647:40f5355b6bf8 user: Michael Foord date: Thu Mar 17 13:44:18 2011 -0400 summary: Issue #10979. unittest stdout buffering now works with class and module setup and teardown. files: Lib/unittest/result.py Lib/unittest/suite.py Lib/unittest/test/test_result.py Misc/NEWS diff --git a/Lib/unittest/result.py b/Lib/unittest/result.py --- a/Lib/unittest/result.py +++ b/Lib/unittest/result.py @@ -59,6 +59,9 @@ "Called when the given test is about to be run" self.testsRun += 1 self._mirrorOutput = False + self._setupStdout() + + def _setupStdout(self): if self.buffer: if self._stderr_buffer is None: self._stderr_buffer = io.StringIO() @@ -74,6 +77,10 @@ def stopTest(self, test): """Called when the given test has been run""" + self._restoreStdout() + self._mirrorOutput = False + + def _restoreStdout(self): if self.buffer: if self._mirrorOutput: output = sys.stdout.getvalue() @@ -93,7 +100,6 @@ self._stdout_buffer.truncate() self._stderr_buffer.seek(0) self._stderr_buffer.truncate() - self._mirrorOutput = False def stopTestRun(self): """Called once after all tests are executed. diff --git a/Lib/unittest/suite.py b/Lib/unittest/suite.py --- a/Lib/unittest/suite.py +++ b/Lib/unittest/suite.py @@ -8,6 +8,11 @@ __unittest = True +def _call_if_exists(parent, attr): + func = getattr(parent, attr, lambda: None) + func() + + class BaseTestSuite(object): """A simple test suite that doesn't provide class or module shared fixtures. """ @@ -133,6 +138,7 @@ setUpClass = getattr(currentClass, 'setUpClass', None) if setUpClass is not None: + _call_if_exists(result, '_setupStdout') try: setUpClass() except Exception as e: @@ -142,6 +148,8 @@ className = util.strclass(currentClass) errorName = 'setUpClass (%s)' % className self._addClassOrModuleLevelException(result, e, errorName) + finally: + _call_if_exists(result, '_restoreStdout') def _get_previous_module(self, result): previousModule = None @@ -167,6 +175,7 @@ return setUpModule = getattr(module, 'setUpModule', None) if setUpModule is not None: + _call_if_exists(result, '_setupStdout') try: setUpModule() except Exception as e: @@ -175,6 +184,8 @@ result._moduleSetUpFailed = True errorName = 'setUpModule (%s)' % currentModule self._addClassOrModuleLevelException(result, e, errorName) + finally: + _call_if_exists(result, '_restoreStdout') def _addClassOrModuleLevelException(self, result, exception, errorName): error = _ErrorHolder(errorName) @@ -198,6 +209,7 @@ tearDownModule = getattr(module, 'tearDownModule', None) if tearDownModule is not None: + _call_if_exists(result, '_setupStdout') try: tearDownModule() except Exception as e: @@ -205,6 +217,8 @@ raise errorName = 'tearDownModule (%s)' % previousModule self._addClassOrModuleLevelException(result, e, errorName) + finally: + _call_if_exists(result, '_restoreStdout') def _tearDownPreviousClass(self, test, result): previousClass = getattr(result, '_previousTestClass', None) @@ -220,6 +234,7 @@ tearDownClass = getattr(previousClass, 'tearDownClass', None) if tearDownClass is not None: + _call_if_exists(result, '_setupStdout') try: tearDownClass() except Exception as e: @@ -228,7 +243,8 @@ className = util.strclass(previousClass) errorName = 'tearDownClass (%s)' % className self._addClassOrModuleLevelException(result, e, errorName) - + finally: + _call_if_exists(result, '_restoreStdout') class _ErrorHolder(object): diff --git a/Lib/unittest/test/test_result.py b/Lib/unittest/test/test_result.py --- a/Lib/unittest/test/test_result.py +++ b/Lib/unittest/test/test_result.py @@ -497,5 +497,72 @@ self.assertEqual(result._original_stderr.getvalue(), expectedErrMessage) self.assertMultiLineEqual(message, expectedFullMessage) + def testBufferSetupClass(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + @classmethod + def setUpClass(cls): + 1/0 + def test_foo(self): + pass + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + def testBufferTearDownClass(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + @classmethod + def tearDownClass(cls): + 1/0 + def test_foo(self): + pass + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + def testBufferSetUpModule(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + def test_foo(self): + pass + class Module(object): + @staticmethod + def setUpModule(): + 1/0 + + Foo.__module__ = 'Module' + sys.modules['Module'] = Module + self.addCleanup(sys.modules.pop, 'Module') + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + def testBufferTearDownModule(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + def test_foo(self): + pass + class Module(object): + @staticmethod + def tearDownModule(): + 1/0 + + Foo.__module__ = 'Module' + sys.modules['Module'] = Module + self.addCleanup(sys.modules.pop, 'Module') + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + if __name__ == '__main__': unittest.main() diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #10979: unittest stdout buffering now works with class and module + setup and teardown. + - Issue #11510: Fixed optimizer bug which turned "a,b={1,1}" into "a,b=(1,1)". - Issue #11432: A bug was introduced in subprocess.Popen on posix systems with -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 18:46:21 2011 From: python-checkins at python.org (michael.foord) Date: Thu, 17 Mar 2011 18:46:21 +0100 Subject: [Python-checkins] cpython (3.2): Move NEWS entry to correct place Message-ID: http://hg.python.org/cpython/rev/d6ae1f3ad66b changeset: 68653:d6ae1f3ad66b branch: 3.2 user: Michael Foord date: Thu Mar 17 13:47:12 2011 -0400 summary: Move NEWS entry to correct place files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,9 +10,6 @@ Core and Builtins ----------------- -- Issue #10979: unittest stdout buffering now works with class and module - setup and teardown. - - Issue #11510: Fixed optimizer bug which turned "a,b={1,1}" into "a,b=(1,1)". - Issue #11432: A bug was introduced in subprocess.Popen on posix systems with @@ -43,6 +40,10 @@ Library ------- + +- Issue #10979: unittest stdout buffering now works with class and module + setup and teardown. + - Issue #11577: fix ResourceWarning triggered by improved binhex test coverage - Issue #11243: fix the parameter querying methods of Message to work if -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 18:57:33 2011 From: python-checkins at python.org (michael.foord) Date: Thu, 17 Mar 2011 18:57:33 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Closes issue 10979. unittest buffering now works with class and module setup Message-ID: http://hg.python.org/cpython/rev/9c09ba72136e changeset: 68654:9c09ba72136e parent: 68649:1cb486f4e18d parent: 68653:d6ae1f3ad66b user: Michael Foord date: Thu Mar 17 13:58:22 2011 -0400 summary: Closes issue 10979. unittest buffering now works with class and module setup and teardown files: Misc/NEWS diff --git a/Lib/unittest/result.py b/Lib/unittest/result.py --- a/Lib/unittest/result.py +++ b/Lib/unittest/result.py @@ -59,6 +59,9 @@ "Called when the given test is about to be run" self.testsRun += 1 self._mirrorOutput = False + self._setupStdout() + + def _setupStdout(self): if self.buffer: if self._stderr_buffer is None: self._stderr_buffer = io.StringIO() @@ -74,6 +77,10 @@ def stopTest(self, test): """Called when the given test has been run""" + self._restoreStdout() + self._mirrorOutput = False + + def _restoreStdout(self): if self.buffer: if self._mirrorOutput: output = sys.stdout.getvalue() @@ -93,7 +100,6 @@ self._stdout_buffer.truncate() self._stderr_buffer.seek(0) self._stderr_buffer.truncate() - self._mirrorOutput = False def stopTestRun(self): """Called once after all tests are executed. diff --git a/Lib/unittest/suite.py b/Lib/unittest/suite.py --- a/Lib/unittest/suite.py +++ b/Lib/unittest/suite.py @@ -8,6 +8,11 @@ __unittest = True +def _call_if_exists(parent, attr): + func = getattr(parent, attr, lambda: None) + func() + + class BaseTestSuite(object): """A simple test suite that doesn't provide class or module shared fixtures. """ @@ -133,6 +138,7 @@ setUpClass = getattr(currentClass, 'setUpClass', None) if setUpClass is not None: + _call_if_exists(result, '_setupStdout') try: setUpClass() except Exception as e: @@ -142,6 +148,8 @@ className = util.strclass(currentClass) errorName = 'setUpClass (%s)' % className self._addClassOrModuleLevelException(result, e, errorName) + finally: + _call_if_exists(result, '_restoreStdout') def _get_previous_module(self, result): previousModule = None @@ -167,6 +175,7 @@ return setUpModule = getattr(module, 'setUpModule', None) if setUpModule is not None: + _call_if_exists(result, '_setupStdout') try: setUpModule() except Exception as e: @@ -175,6 +184,8 @@ result._moduleSetUpFailed = True errorName = 'setUpModule (%s)' % currentModule self._addClassOrModuleLevelException(result, e, errorName) + finally: + _call_if_exists(result, '_restoreStdout') def _addClassOrModuleLevelException(self, result, exception, errorName): error = _ErrorHolder(errorName) @@ -198,6 +209,7 @@ tearDownModule = getattr(module, 'tearDownModule', None) if tearDownModule is not None: + _call_if_exists(result, '_setupStdout') try: tearDownModule() except Exception as e: @@ -205,6 +217,8 @@ raise errorName = 'tearDownModule (%s)' % previousModule self._addClassOrModuleLevelException(result, e, errorName) + finally: + _call_if_exists(result, '_restoreStdout') def _tearDownPreviousClass(self, test, result): previousClass = getattr(result, '_previousTestClass', None) @@ -220,6 +234,7 @@ tearDownClass = getattr(previousClass, 'tearDownClass', None) if tearDownClass is not None: + _call_if_exists(result, '_setupStdout') try: tearDownClass() except Exception as e: @@ -228,7 +243,8 @@ className = util.strclass(previousClass) errorName = 'tearDownClass (%s)' % className self._addClassOrModuleLevelException(result, e, errorName) - + finally: + _call_if_exists(result, '_restoreStdout') class _ErrorHolder(object): diff --git a/Lib/unittest/test/test_result.py b/Lib/unittest/test/test_result.py --- a/Lib/unittest/test/test_result.py +++ b/Lib/unittest/test/test_result.py @@ -497,5 +497,72 @@ self.assertEqual(result._original_stderr.getvalue(), expectedErrMessage) self.assertMultiLineEqual(message, expectedFullMessage) + def testBufferSetupClass(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + @classmethod + def setUpClass(cls): + 1/0 + def test_foo(self): + pass + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + def testBufferTearDownClass(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + @classmethod + def tearDownClass(cls): + 1/0 + def test_foo(self): + pass + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + def testBufferSetUpModule(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + def test_foo(self): + pass + class Module(object): + @staticmethod + def setUpModule(): + 1/0 + + Foo.__module__ = 'Module' + sys.modules['Module'] = Module + self.addCleanup(sys.modules.pop, 'Module') + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + def testBufferTearDownModule(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + def test_foo(self): + pass + class Module(object): + @staticmethod + def tearDownModule(): + 1/0 + + Foo.__module__ = 'Module' + sys.modules['Module'] = Module + self.addCleanup(sys.modules.pop, 'Module') + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + if __name__ == '__main__': unittest.main() diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,10 @@ Library ------- + +- Issue #10979: unittest stdout buffering now works with class and module + setup and teardown. + - Issue #11577: fix ResourceWarning triggered by improved binhex test coverage - Issue #11243: fix the parameter querying methods of Message to work if -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 19:16:48 2011 From: python-checkins at python.org (brett.cannon) Date: Thu, 17 Mar 2011 19:16:48 +0100 Subject: [Python-checkins] cpython: Remove an overly specific exception message test. Message-ID: http://hg.python.org/cpython/rev/b3db00621e2a changeset: 68655:b3db00621e2a parent: 68574:0a3b00d2c31c user: Brett Cannon date: Wed Mar 16 20:11:52 2011 -0400 summary: Remove an overly specific exception message test. files: Lib/test/test_import.py diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -283,8 +283,6 @@ self.skipTest('path is not encodable to {}'.format(encoding)) with self.assertRaises(ImportError) as c: __import__(path) - self.assertEqual("Import by filename is not supported.", - c.exception.args[0]) def test_import_in_del_does_not_crash(self): # Issue 4236 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 19:16:51 2011 From: python-checkins at python.org (brett.cannon) Date: Thu, 17 Mar 2011 19:16:51 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge Message-ID: http://hg.python.org/cpython/rev/bbab0db3a2c1 changeset: 68656:bbab0db3a2c1 parent: 68655:b3db00621e2a parent: 68654:9c09ba72136e user: Brett Cannon date: Thu Mar 17 11:16:38 2011 -0700 summary: merge files: diff --git a/Doc/includes/sqlite3/shared_cache.py b/Doc/includes/sqlite3/shared_cache.py --- a/Doc/includes/sqlite3/shared_cache.py +++ b/Doc/includes/sqlite3/shared_cache.py @@ -1,6 +1,6 @@ import sqlite3 # The shared cache is only available in SQLite versions 3.3.3 or later -# See the SQLite documentaton for details. +# See the SQLite documentation for details. sqlite3.enable_shared_cache(True) diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -706,7 +706,7 @@ :options: +NORMALIZE_WHITESPACE >>> # Basic example - >>> Point = namedtuple('Point', 'x y') + >>> Point = namedtuple('Point', ['x', 'y']) >>> p = Point(x=10, y=11) >>> # Example using the verbose option to print the class definition @@ -851,15 +851,15 @@ a fixed-width print format: >>> class Point(namedtuple('Point', 'x y')): - ... __slots__ = () - ... @property - ... def hypot(self): - ... return (self.x ** 2 + self.y ** 2) ** 0.5 - ... def __str__(self): - ... return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot) + __slots__ = () + @property + def hypot(self): + return (self.x ** 2 + self.y ** 2) ** 0.5 + def __str__(self): + return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot) >>> for p in Point(3, 4), Point(14, 5/7): - ... print(p) + print(p) Point: x= 3.000 y= 4.000 hypot= 5.000 Point: x=14.000 y= 0.714 hypot=14.018 @@ -886,7 +886,7 @@ >>> Status.open, Status.pending, Status.closed (0, 1, 2) >>> class Status: - ... open, pending, closed = range(3) + open, pending, closed = range(3) .. seealso:: diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -589,14 +589,11 @@ that raise AttributeError). It can also return descriptors objects instead of instance members. + If the instance `__dict__` is shadowed by another member (for example a + property) then this function will be unable to find instance members. + .. versionadded:: 3.2 -The only known case that can cause `getattr_static` to trigger code execution, -and cause it to return incorrect results (or even break), is where a class uses -:data:`~object.__slots__` and provides a `__dict__` member using a property or -descriptor. If you find other cases please report them so they can be fixed -or documented. - `getattr_static` does not resolve descriptors, for example slot descriptors or getset descriptors on objects implemented in C. The descriptor object is returned instead of the underlying attribute. diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -125,12 +125,14 @@ *stdin*, *stdout* and *stderr* specify the executed programs' standard input, standard output and standard error file handles, respectively. Valid values - are :data:`PIPE`, an existing file descriptor (a positive integer), an - existing :term:`file object`, and ``None``. :data:`PIPE` indicates that a - new pipe to the child should be created. With ``None``, no redirection will - occur; the child's file handles will be inherited from the parent. Additionally, - *stderr* can be :data:`STDOUT`, which indicates that the stderr data from the - applications should be captured into the same file handle as for stdout. + are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive + integer), an existing :term:`file object`, and ``None``. :data:`PIPE` + indicates that a new pipe to the child should be created. :data:`DEVNULL` + indicates that the special file :data:`os.devnull` will be used. With ``None``, + no redirection will occur; the child's file handles will be inherited from + the parent. Additionally, *stderr* can be :data:`STDOUT`, which indicates + that the stderr data from the applications should be captured into the same + file handle as for stdout. If *preexec_fn* is set to a callable object, this object will be called in the child process just before the child is executed. @@ -229,6 +231,15 @@ Added context manager support. +.. data:: DEVNULL + + Special value that can be used as the *stdin*, *stdout* or *stderr* argument + to :class:`Popen` and indicates that the special file :data:`os.devnull` + will be used. + + .. versionadded:: 3.3 + + .. data:: PIPE Special value that can be used as the *stdin*, *stdout* or *stderr* argument @@ -387,7 +398,7 @@ :func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if the timeout expires before the process exits. -Exceptions defined in this module all inherit from :ext:`SubprocessError`. +Exceptions defined in this module all inherit from :exc:`SubprocessError`. .. versionadded:: 3.3 The :exc:`SubprocessError` base class was added. diff --git a/Include/abstract.h b/Include/abstract.h --- a/Include/abstract.h +++ b/Include/abstract.h @@ -468,7 +468,7 @@ arbitrary data. 0 is returned on success. buffer and buffer_len are only - set in case no error occurrs. Otherwise, -1 is returned and + set in case no error occurs. Otherwise, -1 is returned and an exception set. */ @@ -482,7 +482,7 @@ writable memory location in buffer of size buffer_len. 0 is returned on success. buffer and buffer_len are only - set in case no error occurrs. Otherwise, -1 is returned and + set in case no error occurs. Otherwise, -1 is returned and an exception set. */ diff --git a/Include/pymacconfig.h b/Include/pymacconfig.h --- a/Include/pymacconfig.h +++ b/Include/pymacconfig.h @@ -61,7 +61,7 @@ # endif # if defined(__LP64__) - /* MacOSX 10.4 (the first release to suppport 64-bit code + /* MacOSX 10.4 (the first release to support 64-bit code * at all) only supports 64-bit in the UNIX layer. * Therefore surpress the toolbox-glue in 64-bit mode. */ diff --git a/Lib/binhex.py b/Lib/binhex.py --- a/Lib/binhex.py +++ b/Lib/binhex.py @@ -52,14 +52,13 @@ def getfileinfo(name): finfo = FInfo() - fp = io.open(name, 'rb') - # Quick check for textfile - data = fp.read(512) - if 0 not in data: - finfo.Type = 'TEXT' - fp.seek(0, 2) - dsize = fp.tell() - fp.close() + with io.open(name, 'rb') as fp: + # Quick check for textfile + data = fp.read(512) + if 0 not in data: + finfo.Type = 'TEXT' + fp.seek(0, 2) + dsize = fp.tell() dir, file = os.path.split(name) file = file.replace(':', '-', 1) return file, finfo, dsize, 0 @@ -140,19 +139,26 @@ class BinHex: def __init__(self, name_finfo_dlen_rlen, ofp): name, finfo, dlen, rlen = name_finfo_dlen_rlen + close_on_error = False if isinstance(ofp, str): ofname = ofp ofp = io.open(ofname, 'wb') - ofp.write(b'(This file must be converted with BinHex 4.0)\r\r:') - hqxer = _Hqxcoderengine(ofp) - self.ofp = _Rlecoderengine(hqxer) - self.crc = 0 - if finfo is None: - finfo = FInfo() - self.dlen = dlen - self.rlen = rlen - self._writeinfo(name, finfo) - self.state = _DID_HEADER + close_on_error = True + try: + ofp.write(b'(This file must be converted with BinHex 4.0)\r\r:') + hqxer = _Hqxcoderengine(ofp) + self.ofp = _Rlecoderengine(hqxer) + self.crc = 0 + if finfo is None: + finfo = FInfo() + self.dlen = dlen + self.rlen = rlen + self._writeinfo(name, finfo) + self.state = _DID_HEADER + except: + if close_on_error: + ofp.close() + raise def _writeinfo(self, name, finfo): nl = len(name) diff --git a/Lib/csv.py b/Lib/csv.py --- a/Lib/csv.py +++ b/Lib/csv.py @@ -284,7 +284,7 @@ an all or nothing approach, so we allow for small variations in this number. 1) build a table of the frequency of each character on every line. - 2) build a table of freqencies of this frequency (meta-frequency?), + 2) build a table of frequencies of this frequency (meta-frequency?), e.g. 'x occurred 5 times in 10 rows, 6 times in 1000 rows, 7 times in 2 rows' 3) use the mode of the meta-frequency to determine the /expected/ diff --git a/Lib/ctypes/test/test_arrays.py b/Lib/ctypes/test/test_arrays.py --- a/Lib/ctypes/test/test_arrays.py +++ b/Lib/ctypes/test/test_arrays.py @@ -37,7 +37,7 @@ values = [ia[i] for i in range(len(init))] self.assertEqual(values, [0] * len(init)) - # Too many in itializers should be caught + # Too many initializers should be caught self.assertRaises(IndexError, int_array, *range(alen*2)) CharArray = ARRAY(c_char, 3) diff --git a/Lib/ctypes/test/test_init.py b/Lib/ctypes/test/test_init.py --- a/Lib/ctypes/test/test_init.py +++ b/Lib/ctypes/test/test_init.py @@ -27,7 +27,7 @@ self.assertEqual((y.x.a, y.x.b), (0, 0)) self.assertEqual(y.x.new_was_called, False) - # But explicitely creating an X structure calls __new__ and __init__, of course. + # But explicitly creating an X structure calls __new__ and __init__, of course. x = X() self.assertEqual((x.a, x.b), (9, 12)) self.assertEqual(x.new_was_called, True) diff --git a/Lib/ctypes/test/test_numbers.py b/Lib/ctypes/test/test_numbers.py --- a/Lib/ctypes/test/test_numbers.py +++ b/Lib/ctypes/test/test_numbers.py @@ -157,7 +157,7 @@ def test_int_from_address(self): from array import array for t in signed_types + unsigned_types: - # the array module doesn't suppport all format codes + # the array module doesn't support all format codes # (no 'q' or 'Q') try: array(t._type_) diff --git a/Lib/ctypes/test/test_win32.py b/Lib/ctypes/test/test_win32.py --- a/Lib/ctypes/test/test_win32.py +++ b/Lib/ctypes/test/test_win32.py @@ -17,7 +17,7 @@ # ValueError: Procedure probably called with not enough arguments (4 bytes missing) self.assertRaises(ValueError, IsWindow) - # This one should succeeed... + # This one should succeed... self.assertEqual(0, IsWindow(0)) # ValueError: Procedure probably called with too many arguments (8 bytes in excess) diff --git a/Lib/difflib.py b/Lib/difflib.py --- a/Lib/difflib.py +++ b/Lib/difflib.py @@ -1719,7 +1719,7 @@ line = line.replace(' ','\0') # expand tabs into spaces line = line.expandtabs(self._tabsize) - # relace spaces from expanded tabs back into tab characters + # replace spaces from expanded tabs back into tab characters # (we'll replace them with markup after we do differencing) line = line.replace(' ','\t') return line.replace('\0',' ').rstrip('\n') diff --git a/Lib/distutils/cmd.py b/Lib/distutils/cmd.py --- a/Lib/distutils/cmd.py +++ b/Lib/distutils/cmd.py @@ -359,7 +359,7 @@ not self.force, dry_run=self.dry_run) def move_file (self, src, dst, level=1): - """Move a file respectin dry-run flag.""" + """Move a file respecting dry-run flag.""" return file_util.move_file(src, dst, dry_run=self.dry_run) def spawn(self, cmd, search_path=1, level=1): diff --git a/Lib/distutils/cygwinccompiler.py b/Lib/distutils/cygwinccompiler.py --- a/Lib/distutils/cygwinccompiler.py +++ b/Lib/distutils/cygwinccompiler.py @@ -155,7 +155,7 @@ self.dll_libraries = get_msvcr() def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): - """Compiles the source by spawing GCC and windres if needed.""" + """Compiles the source by spawning GCC and windres if needed.""" if ext == '.rc' or ext == '.res': # gcc needs '.res' and '.rc' compiled to object files !!! try: diff --git a/Lib/distutils/tests/test_clean.py b/Lib/distutils/tests/test_clean.py --- a/Lib/distutils/tests/test_clean.py +++ b/Lib/distutils/tests/test_clean.py @@ -39,7 +39,7 @@ self.assertTrue(not os.path.exists(path), '%s was not removed' % path) - # let's run the command again (should spit warnings but suceed) + # let's run the command again (should spit warnings but succeed) cmd.all = 1 cmd.ensure_finalized() cmd.run() diff --git a/Lib/distutils/tests/test_install.py b/Lib/distutils/tests/test_install.py --- a/Lib/distutils/tests/test_install.py +++ b/Lib/distutils/tests/test_install.py @@ -62,7 +62,7 @@ if sys.version < '2.6': return - # preparing the environement for the test + # preparing the environment for the test self.old_user_base = site.USER_BASE self.old_user_site = site.USER_SITE self.tmpdir = self.mkdtemp() diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -311,7 +311,7 @@ # adding a file self.write_file((self.tmp_dir, 'somecode', 'doc2.txt'), '#') - # make sure build_py is reinitinialized, like a fresh run + # make sure build_py is reinitialized, like a fresh run build_py = dist.get_command_obj('build_py') build_py.finalized = False build_py.ensure_finalized() diff --git a/Lib/doctest.py b/Lib/doctest.py --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -1211,7 +1211,7 @@ # Process each example. for examplenum, example in enumerate(test.examples): - # If REPORT_ONLY_FIRST_FAILURE is set, then supress + # If REPORT_ONLY_FIRST_FAILURE is set, then suppress # reporting after the first failure. quiet = (self.optionflags & REPORT_ONLY_FIRST_FAILURE and failures > 0) @@ -2135,7 +2135,7 @@ caller can catch the errors and initiate post-mortem debugging. The DocTestCase provides a debug method that raises - UnexpectedException errors if there is an unexepcted + UnexpectedException errors if there is an unexpected exception: >>> test = DocTestParser().get_doctest('>>> raise KeyError\n42', diff --git a/Lib/email/encoders.py b/Lib/email/encoders.py --- a/Lib/email/encoders.py +++ b/Lib/email/encoders.py @@ -12,7 +12,7 @@ ] -from base64 import b64encode as _bencode +from base64 import encodebytes as _bencode from quopri import encodestring as _encodestring diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -47,7 +47,7 @@ # For use with .match() fcre = re.compile(r'[\041-\176]+:$') -# Find a header embeded in a putative header value. Used to check for +# Find a header embedded in a putative header value. Used to check for # header injection attack. _embeded_header = re.compile(r'\n[^ \t]+:') @@ -314,7 +314,7 @@ self._continuation_ws, splitchars) for string, charset in self._chunks: lines = string.splitlines() - formatter.feed(lines[0], charset) + formatter.feed(lines[0] if lines else '', charset) for line in lines[1:]: formatter.newline() if charset.header_encoding is not None: diff --git a/Lib/email/message.py b/Lib/email/message.py --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -48,9 +48,9 @@ def _splitparam(param): # Split header parameters. BAW: this may be too simple. It isn't # strictly RFC 2045 (section 5.1) compliant, but it catches most headers - # found in the wild. We may eventually need a full fledged parser - # eventually. - a, sep, b = param.partition(';') + # found in the wild. We may eventually need a full fledged parser. + # RDM: we might have a Header here; for now just stringify it. + a, sep, b = str(param).partition(';') if not sep: return a.strip(), None return a.strip(), b.strip() @@ -90,6 +90,8 @@ return param def _parseparam(s): + # RDM This might be a Header, so for now stringify it. + s = ';' + str(s) plist = [] while s[:1] == ';': s = s[1:] @@ -240,7 +242,8 @@ if i is not None and not isinstance(self._payload, list): raise TypeError('Expected list, got %s' % type(self._payload)) payload = self._payload - cte = self.get('content-transfer-encoding', '').lower() + # cte might be a Header, so for now stringify it. + cte = str(self.get('content-transfer-encoding', '')).lower() # payload may be bytes here. if isinstance(payload, str): if _has_surrogates(payload): @@ -561,7 +564,7 @@ if value is missing: return failobj params = [] - for p in _parseparam(';' + value): + for p in _parseparam(value): try: name, val = p.split('=', 1) name = name.strip() diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -573,9 +573,18 @@ msg['Dummy'] = 'dummy\nX-Injected-Header: test' self.assertRaises(errors.HeaderParseError, msg.as_string) - # Test the email.encoders module class TestEncoders(unittest.TestCase): + + def test_EncodersEncode_base64(self): + with openfile('PyBanner048.gif', 'rb') as fp: + bindata = fp.read() + mimed = email.mime.image.MIMEImage(bindata) + base64ed = mimed.get_payload() + # the transfer-encoded body lines should all be <=76 characters + lines = base64ed.split('\n') + self.assertLessEqual(max([ len(x) for x in lines ]), 76) + def test_encode_empty_payload(self): eq = self.assertEqual msg = Message() @@ -1141,10 +1150,11 @@ def test_body(self): eq = self.assertEqual - bytes = b'\xfa\xfb\xfc\xfd\xfe\xff' - msg = MIMEApplication(bytes) - eq(msg.get_payload(), '+vv8/f7/') - eq(msg.get_payload(decode=True), bytes) + bytesdata = b'\xfa\xfb\xfc\xfd\xfe\xff' + msg = MIMEApplication(bytesdata) + # whitespace in the cte encoded block is RFC-irrelevant. + eq(msg.get_payload().strip(), '+vv8/f7/') + eq(msg.get_payload(decode=True), bytesdata) @@ -2992,6 +3002,58 @@ ['foo at bar.com', 'g\uFFFD\uFFFDst']) + def test_get_content_type_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/pl\xA7in; charset=utf-8 + """).encode('latin-1')) + self.assertEqual(msg.get_content_type(), "text/pl\uFFFDin") + self.assertEqual(msg.get_content_maintype(), "text") + self.assertEqual(msg.get_content_subtype(), "pl\uFFFDin") + + def test_get_params_with_8bit(self): + msg = email.message_from_bytes( + 'X-Header: foo=\xa7ne; b\xa7r=two; baz=three\n'.encode('latin-1')) + self.assertEqual(msg.get_params(header='x-header'), + [('foo', '\uFFFDne'), ('b\uFFFDr', 'two'), ('baz', 'three')]) + self.assertEqual(msg.get_param('Foo', header='x-header'), '\uFFFdne') + # XXX: someday you might be able to get 'b\xa7r', for now you can't. + self.assertEqual(msg.get_param('b\xa7r', header='x-header'), None) + + def test_get_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + self.assertEqual(msg.get_param('title'), + ('us-ascii', 'en', 'This is not f\uFFFDn')) + + def test_set_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + msg.set_param('title', 'test') + self.assertEqual(msg.get_param('title'), 'test') + + def test_del_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + msg.del_param('title') + self.assertEqual(msg.get_param('title'), None) + self.assertEqual(msg.get_content_maintype(), 'text') + + def test_get_payload_with_8bit_cte_header(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Transfer-Encoding: b\xa7se64 + Content-Type: text/plain; charset=latin-1 + + payload + """).encode('latin-1')) + self.assertEqual(msg.get_payload(), 'payload\n') + self.assertEqual(msg.get_payload(decode=True), b'payload\n') + non_latin_bin_msg = textwrap.dedent("""\ From: foo at bar.com To: b?z @@ -3695,6 +3757,13 @@ h = Header('?', charset='shift_jis') self.assertEqual(h.encode(), '=?iso-2022-jp?b?GyRCSjgbKEI=?=') + def test_flatten_header_with_no_value(self): + # Issue 11401 (regression from email 4.x) Note that the space after + # the header doesn't reflect the input, but this is also the way + # email 4.x behaved. At some point it would be nice to fix that. + msg = email.message_from_string("EmptyHeader:") + self.assertEqual(str(msg), "EmptyHeader: \n\n") + # Test RFC 2231 header parameters (en/de)coding diff --git a/Lib/http/server.py b/Lib/http/server.py --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -103,15 +103,20 @@ # Default error message template DEFAULT_ERROR_MESSAGE = """\ - -Error response - - -

    Error response

    -

    Error code %(code)d. -

    Message: %(message)s. -

    Error code explanation: %(code)s = %(explain)s. - + + + + + Error response + + +

    Error response

    +

    Error code: %(code)d

    +

    Message: %(message)s.

    +

    Error code explanation: %(code)s - %(explain)s.

    + + """ DEFAULT_ERROR_CONTENT_TYPE = "text/html;charset=utf-8" diff --git a/Lib/idlelib/FormatParagraph.py b/Lib/idlelib/FormatParagraph.py --- a/Lib/idlelib/FormatParagraph.py +++ b/Lib/idlelib/FormatParagraph.py @@ -54,7 +54,7 @@ # If the block ends in a \n, we dont want the comment # prefix inserted after it. (Im not sure it makes sense to # reformat a comment block that isnt made of complete - # lines, but whatever!) Can't think of a clean soltution, + # lines, but whatever!) Can't think of a clean solution, # so we hack away block_suffix = "" if not newdata[-1]: diff --git a/Lib/idlelib/extend.txt b/Lib/idlelib/extend.txt --- a/Lib/idlelib/extend.txt +++ b/Lib/idlelib/extend.txt @@ -18,7 +18,7 @@ An IDLE extension class is instantiated with a single argument, `editwin', an EditorWindow instance. The extension cannot assume much -about this argument, but it is guarateed to have the following instance +about this argument, but it is guaranteed to have the following instance variables: text a Text instance (a widget) diff --git a/Lib/idlelib/macosxSupport.py b/Lib/idlelib/macosxSupport.py --- a/Lib/idlelib/macosxSupport.py +++ b/Lib/idlelib/macosxSupport.py @@ -53,8 +53,8 @@ def addOpenEventSupport(root, flist): """ - This ensures that the application will respont to open AppleEvents, which - makes is feaseable to use IDLE as the default application for python files. + This ensures that the application will respond to open AppleEvents, which + makes is feasible to use IDLE as the default application for python files. """ def doOpenFile(*args): for fn in args: diff --git a/Lib/inspect.py b/Lib/inspect.py --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -1069,15 +1069,16 @@ instance_dict = object.__getattribute__(obj, "__dict__") except AttributeError: pass - return instance_dict.get(attr, _sentinel) + return dict.get(instance_dict, attr, _sentinel) def _check_class(klass, attr): for entry in _static_getmro(klass): - try: - return entry.__dict__[attr] - except KeyError: - pass + if not _shadowed_dict(type(entry)): + try: + return entry.__dict__[attr] + except KeyError: + pass return _sentinel def _is_type(obj): @@ -1087,6 +1088,19 @@ return False return True +def _shadowed_dict(klass): + dict_attr = type.__dict__["__dict__"] + for entry in _static_getmro(klass): + try: + class_dict = dict_attr.__get__(entry)["__dict__"] + except KeyError: + pass + else: + if not (type(class_dict) is types.GetSetDescriptorType and + class_dict.__name__ == "__dict__" and + class_dict.__objclass__ is entry): + return True + return False def getattr_static(obj, attr, default=_sentinel): """Retrieve attributes without triggering dynamic lookup via the @@ -1101,8 +1115,9 @@ """ instance_result = _sentinel if not _is_type(obj): - instance_result = _check_instance(obj, attr) klass = type(obj) + if not _shadowed_dict(klass): + instance_result = _check_instance(obj, attr) else: klass = obj diff --git a/Lib/lib2to3/fixes/fix_metaclass.py b/Lib/lib2to3/fixes/fix_metaclass.py --- a/Lib/lib2to3/fixes/fix_metaclass.py +++ b/Lib/lib2to3/fixes/fix_metaclass.py @@ -48,7 +48,7 @@ """ for node in cls_node.children: if node.type == syms.suite: - # already in the prefered format, do nothing + # already in the preferred format, do nothing return # !%@#! oneliners have no suite node, we have to fake one up diff --git a/Lib/lib2to3/pgen2/conv.py b/Lib/lib2to3/pgen2/conv.py --- a/Lib/lib2to3/pgen2/conv.py +++ b/Lib/lib2to3/pgen2/conv.py @@ -51,7 +51,7 @@ self.finish_off() def parse_graminit_h(self, filename): - """Parse the .h file writen by pgen. (Internal) + """Parse the .h file written by pgen. (Internal) This file is a sequence of #define statements defining the nonterminals of the grammar as numbers. We build two tables @@ -82,7 +82,7 @@ return True def parse_graminit_c(self, filename): - """Parse the .c file writen by pgen. (Internal) + """Parse the .c file written by pgen. (Internal) The file looks as follows. The first two lines are always this: diff --git a/Lib/lib2to3/pytree.py b/Lib/lib2to3/pytree.py --- a/Lib/lib2to3/pytree.py +++ b/Lib/lib2to3/pytree.py @@ -658,8 +658,8 @@ content: optional sequence of subsequences of patterns; if absent, matches one node; if present, each subsequence is an alternative [*] - min: optinal minumum number of times to match, default 0 - max: optional maximum number of times tro match, default HUGE + min: optional minimum number of times to match, default 0 + max: optional maximum number of times to match, default HUGE name: optional name assigned to this match [*] Thus, if content is [[a, b, c], [d, e], [f, g, h]] this is diff --git a/Lib/lib2to3/tests/data/py2_test_grammar.py b/Lib/lib2to3/tests/data/py2_test_grammar.py --- a/Lib/lib2to3/tests/data/py2_test_grammar.py +++ b/Lib/lib2to3/tests/data/py2_test_grammar.py @@ -316,7 +316,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/lib2to3/tests/data/py3_test_grammar.py b/Lib/lib2to3/tests/data/py3_test_grammar.py --- a/Lib/lib2to3/tests/data/py3_test_grammar.py +++ b/Lib/lib2to3/tests/data/py3_test_grammar.py @@ -356,7 +356,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/multiprocessing/__init__.py b/Lib/multiprocessing/__init__.py --- a/Lib/multiprocessing/__init__.py +++ b/Lib/multiprocessing/__init__.py @@ -115,8 +115,11 @@ except (ValueError, KeyError): num = 0 elif 'bsd' in sys.platform or sys.platform == 'darwin': + comm = '/sbin/sysctl -n hw.ncpu' + if sys.platform == 'darwin': + comm = '/usr' + comm try: - with os.popen('sysctl -n hw.ncpu') as p: + with os.popen(comm) as p: num = int(p.read()) except ValueError: num = 0 diff --git a/Lib/ntpath.py b/Lib/ntpath.py --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -405,7 +405,7 @@ # - $varname is accepted. # - %varname% is accepted. # - varnames can be made out of letters, digits and the characters '_-' -# (though is not verifed in the ${varname} and %varname% cases) +# (though is not verified in the ${varname} and %varname% cases) # XXX With COMMAND.COM you can use any characters in a variable name, # XXX except '^|<>='. diff --git a/Lib/pickletools.py b/Lib/pickletools.py --- a/Lib/pickletools.py +++ b/Lib/pickletools.py @@ -1406,7 +1406,7 @@ proto=0, doc="""Read an object from the memo and push it on the stack. - The index of the memo object to push is given by the newline-teriminated + The index of the memo object to push is given by the newline-terminated decimal string following. BINGET and LONG_BINGET are space-optimized versions. """), diff --git a/Lib/platform.py b/Lib/platform.py --- a/Lib/platform.py +++ b/Lib/platform.py @@ -417,7 +417,7 @@ info = pipe.read() if pipe.close(): raise os.error('command failed') - # XXX How can I supress shell errors from being written + # XXX How can I suppress shell errors from being written # to stderr ? except os.error as why: #print 'Command %s failed: %s' % (cmd,why) diff --git a/Lib/shutil.py b/Lib/shutil.py --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -737,8 +737,8 @@ except KeyError: raise ValueError("Unknown unpack format '{0}'".format(format)) - func = format_info[0] - func(filename, extract_dir, **dict(format_info[1])) + func = format_info[1] + func(filename, extract_dir, **dict(format_info[2])) else: # we need to look at the registered unpackers supported extensions format = _find_unpack_format(filename) diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -371,8 +371,9 @@ """This exception is raised when the timeout expires while waiting for a child process. """ - def __init__(self, cmd, output=None): + def __init__(self, cmd, timeout, output=None): self.cmd = cmd + self.timeout = timeout self.output = output def __str__(self): @@ -431,7 +432,7 @@ return fds __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput", - "getoutput", "check_output", "CalledProcessError"] + "getoutput", "check_output", "CalledProcessError", "DEVNULL"] if mswindows: from _subprocess import CREATE_NEW_CONSOLE, CREATE_NEW_PROCESS_GROUP @@ -456,6 +457,7 @@ PIPE = -1 STDOUT = -2 +DEVNULL = -3 def _eintr_retry_call(func, *args): @@ -532,7 +534,7 @@ except TimeoutExpired: process.kill() output, unused_err = process.communicate() - raise TimeoutExpired(process.args, output=output) + raise TimeoutExpired(process.args, timeout, output=output) retcode = process.poll() if retcode: raise CalledProcessError(retcode, process.args, output=output) @@ -800,6 +802,10 @@ # Child is still running, keep us alive until we can wait on it. _active.append(self) + def _get_devnull(self): + if not hasattr(self, '_devnull'): + self._devnull = os.open(os.devnull, os.O_RDWR) + return self._devnull def communicate(self, input=None, timeout=None): """Interact with process: Send data to stdin. Read data from @@ -839,7 +845,7 @@ return (stdout, stderr) try: - stdout, stderr = self._communicate(input, endtime) + stdout, stderr = self._communicate(input, endtime, timeout) finally: self._communication_started = True @@ -860,12 +866,12 @@ return endtime - time.time() - def _check_timeout(self, endtime): + def _check_timeout(self, endtime, orig_timeout): """Convenience for checking if a timeout has expired.""" if endtime is None: return if time.time() > endtime: - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, orig_timeout) if mswindows: @@ -889,6 +895,8 @@ p2cread, _ = _subprocess.CreatePipe(None, 0) elif stdin == PIPE: p2cread, p2cwrite = _subprocess.CreatePipe(None, 0) + elif stdin == DEVNULL: + p2cread = msvcrt.get_osfhandle(self._get_devnull()) elif isinstance(stdin, int): p2cread = msvcrt.get_osfhandle(stdin) else: @@ -902,6 +910,8 @@ _, c2pwrite = _subprocess.CreatePipe(None, 0) elif stdout == PIPE: c2pread, c2pwrite = _subprocess.CreatePipe(None, 0) + elif stdout == DEVNULL: + c2pwrite = msvcrt.get_osfhandle(self._get_devnull()) elif isinstance(stdout, int): c2pwrite = msvcrt.get_osfhandle(stdout) else: @@ -917,6 +927,8 @@ errread, errwrite = _subprocess.CreatePipe(None, 0) elif stderr == STDOUT: errwrite = c2pwrite + elif stderr == DEVNULL: + errwrite = msvcrt.get_osfhandle(self._get_devnull()) elif isinstance(stderr, int): errwrite = msvcrt.get_osfhandle(stderr) else: @@ -1010,7 +1022,7 @@ except pywintypes.error as e: # Translate pywintypes.error to WindowsError, which is # a subclass of OSError. FIXME: We should really - # translate errno using _sys_errlist (or simliar), but + # translate errno using _sys_errlist (or similar), but # how can this be done from Python? raise WindowsError(*e.args) finally: @@ -1026,6 +1038,8 @@ c2pwrite.Close() if errwrite != -1: errwrite.Close() + if hasattr(self, '_devnull'): + os.close(self._devnull) # Retain the process handle, but close the thread handle self._child_created = True @@ -1050,9 +1064,11 @@ return self.returncode - def wait(self, timeout=None): + def wait(self, timeout=None, endtime=None): """Wait for child process to terminate. Returns returncode attribute.""" + if endtime is not None: + timeout = self._remaining_time(endtime) if timeout is None: timeout = _subprocess.INFINITE else: @@ -1060,7 +1076,7 @@ if self.returncode is None: result = _subprocess.WaitForSingleObject(self._handle, timeout) if result == _subprocess.WAIT_TIMEOUT: - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, timeout) self.returncode = _subprocess.GetExitCodeProcess(self._handle) return self.returncode @@ -1070,7 +1086,7 @@ fh.close() - def _communicate(self, input, endtime): + def _communicate(self, input, endtime, orig_timeout): # Start reader threads feeding into a list hanging off of this # object, unless they've already been started. if self.stdout and not hasattr(self, "_stdout_buff"): @@ -1159,6 +1175,8 @@ pass elif stdin == PIPE: p2cread, p2cwrite = _create_pipe() + elif stdin == DEVNULL: + p2cread = self._get_devnull() elif isinstance(stdin, int): p2cread = stdin else: @@ -1169,6 +1187,8 @@ pass elif stdout == PIPE: c2pread, c2pwrite = _create_pipe() + elif stdout == DEVNULL: + c2pwrite = self._get_devnull() elif isinstance(stdout, int): c2pwrite = stdout else: @@ -1181,6 +1201,8 @@ errread, errwrite = _create_pipe() elif stderr == STDOUT: errwrite = c2pwrite + elif stderr == DEVNULL: + errwrite = self._get_devnull() elif isinstance(stderr, int): errwrite = stderr else: @@ -1374,6 +1396,8 @@ os.close(c2pwrite) if errwrite != -1 and errread != -1: os.close(errwrite) + if hasattr(self, '_devnull'): + os.close(self._devnull) # Wait for exec to fail or succeed; possibly raising an # exception (limited in size) @@ -1468,13 +1492,18 @@ def wait(self, timeout=None, endtime=None): """Wait for child process to terminate. Returns returncode attribute.""" - # If timeout was passed but not endtime, compute endtime in terms of - # timeout. - if endtime is None and timeout is not None: - endtime = time.time() + timeout if self.returncode is not None: return self.returncode - elif endtime is not None: + + # endtime is preferred to timeout. timeout is only used for + # printing. + if endtime is not None or timeout is not None: + if endtime is None: + endtime = time.time() + timeout + elif timeout is None: + timeout = self._remaining_time(endtime) + + if endtime is not None: # Enter a busy loop if we have a timeout. This busy loop was # cribbed from Lib/threading.py in Thread.wait() at r71065. delay = 0.0005 # 500 us -> initial delay of 1 ms @@ -1486,7 +1515,7 @@ break remaining = self._remaining_time(endtime) if remaining <= 0: - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, timeout) delay = min(delay * 2, remaining, .05) time.sleep(delay) elif self.returncode is None: @@ -1495,7 +1524,7 @@ return self.returncode - def _communicate(self, input, endtime): + def _communicate(self, input, endtime, orig_timeout): if self.stdin and not self._communication_started: # Flush stdio buffer. This might block, if the user has # been writing to .stdin in an uncontrolled fashion. @@ -1504,9 +1533,11 @@ self.stdin.close() if _has_poll: - stdout, stderr = self._communicate_with_poll(input, endtime) + stdout, stderr = self._communicate_with_poll(input, endtime, + orig_timeout) else: - stdout, stderr = self._communicate_with_select(input, endtime) + stdout, stderr = self._communicate_with_select(input, endtime, + orig_timeout) self.wait(timeout=self._remaining_time(endtime)) @@ -1529,7 +1560,7 @@ return (stdout, stderr) - def _communicate_with_poll(self, input, endtime): + def _communicate_with_poll(self, input, endtime, orig_timeout): stdout = None # Return stderr = None # Return @@ -1580,7 +1611,7 @@ if e.args[0] == errno.EINTR: continue raise - self._check_timeout(endtime) + self._check_timeout(endtime, orig_timeout) # XXX Rewrite these to use non-blocking I/O on the # file objects; they are no longer using C stdio! @@ -1604,7 +1635,7 @@ return (stdout, stderr) - def _communicate_with_select(self, input, endtime): + def _communicate_with_select(self, input, endtime, orig_timeout): if not self._communication_started: self._read_set = [] self._write_set = [] @@ -1646,9 +1677,9 @@ # According to the docs, returning three empty lists indicates # that the timeout expired. if not (rlist or wlist or xlist): - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, orig_timeout) # We also check what time it is ourselves for good measure. - self._check_timeout(endtime) + self._check_timeout(endtime, orig_timeout) # XXX Rewrite these to use non-blocking I/O on the # file objects; they are no longer using C stdio! diff --git a/Lib/test/crashers/README b/Lib/test/crashers/README --- a/Lib/test/crashers/README +++ b/Lib/test/crashers/README @@ -14,3 +14,7 @@ Once the crash is fixed, the test case should be moved into an appropriate test (even if it was originally from the test suite). This ensures the regression doesn't happen again. And if it does, it should be easier to track down. + +Also see Lib/test_crashers.py which exercises the crashers in this directory. +In particular, make sure to add any new infinite loop crashers to the black +list so it doesn't try to run them. diff --git a/Lib/test/crashers/compiler_recursion.py b/Lib/test/crashers/compiler_recursion.py --- a/Lib/test/crashers/compiler_recursion.py +++ b/Lib/test/crashers/compiler_recursion.py @@ -9,5 +9,5 @@ # e.g. '1*'*10**5+'1' will die in compiler_visit_expr # The exact limit to destroy the stack will vary by platform -# but 100k should do the trick most places -compile('()'*10**5, '?', 'exec') +# but 1M should do the trick most places +compile('()'*10**6, '?', 'exec') diff --git a/Lib/test/datetimetester.py b/Lib/test/datetimetester.py --- a/Lib/test/datetimetester.py +++ b/Lib/test/datetimetester.py @@ -3414,7 +3414,7 @@ self.assertEqual(dt, there_and_back) # Because we have a redundant spelling when DST begins, there is - # (unforunately) an hour when DST ends that can't be spelled at all in + # (unfortunately) an hour when DST ends that can't be spelled at all in # local time. When DST ends, the clock jumps from 1:59 back to 1:00 # again. The hour 1:MM DST has no spelling then: 1:MM is taken to be # standard time. 1:MM DST == 0:MM EST, but 0:MM is taken to be diff --git a/Lib/test/pyclbr_input.py b/Lib/test/pyclbr_input.py --- a/Lib/test/pyclbr_input.py +++ b/Lib/test/pyclbr_input.py @@ -19,7 +19,7 @@ # XXX: This causes test_pyclbr.py to fail, but only because the # introspection-based is_method() code in the test can't - # distinguish between this and a geniune method function like m(). + # distinguish between this and a genuine method function like m(). # The pyclbr.py module gets this right as it parses the text. # #f = f diff --git a/Lib/test/test_binhex.py b/Lib/test/test_binhex.py --- a/Lib/test/test_binhex.py +++ b/Lib/test/test_binhex.py @@ -15,10 +15,12 @@ def setUp(self): self.fname1 = support.TESTFN + "1" self.fname2 = support.TESTFN + "2" + self.fname3 = support.TESTFN + "very_long_filename__very_long_filename__very_long_filename__very_long_filename__" def tearDown(self): support.unlink(self.fname1) support.unlink(self.fname2) + support.unlink(self.fname3) DATA = b'Jack is my hero' @@ -37,6 +39,15 @@ self.assertEqual(self.DATA, finish) + def test_binhex_error_on_long_filename(self): + """ + The testcase fails if no exception is raised when a filename parameter provided to binhex.binhex() + is too long, or if the exception raised in binhex.binhex() is not an instance of binhex.Error. + """ + f3 = open(self.fname3, 'wb') + f3.close() + + self.assertRaises(binhex.Error, binhex.binhex, self.fname3, self.fname2) def test_main(): support.run_unittest(BinHexTestCase) diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py --- a/Lib/test/test_capi.py +++ b/Lib/test/test_capi.py @@ -127,7 +127,7 @@ context.event.set() def test_pendingcalls_non_threaded(self): - #again, just using the main thread, likely they will all be dispathced at + #again, just using the main thread, likely they will all be dispatched at #once. It is ok to ask for too many, because we loop until we find a slot. #the loop can be interrupted to dispatch. #there are only 32 dispatch slots, so we go for twice that! diff --git a/Lib/test/test_crashers.py b/Lib/test/test_crashers.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_crashers.py @@ -0,0 +1,37 @@ +# Tests that the crashers in the Lib/test/crashers directory actually +# do crash the interpreter as expected +# +# If a crasher is fixed, it should be moved elsewhere in the test suite to +# ensure it continues to work correctly. + +import unittest +import glob +import os.path +import test.support +from test.script_helper import assert_python_failure + +CRASHER_DIR = os.path.join(os.path.dirname(__file__), "crashers") +CRASHER_FILES = os.path.join(CRASHER_DIR, "*.py") + +infinite_loops = ["infinite_loop_re.py", "nasty_eq_vs_dict.py"] + +class CrasherTest(unittest.TestCase): + + @test.support.cpython_only + def test_crashers_crash(self): + for fname in glob.glob(CRASHER_FILES): + if os.path.basename(fname) in infinite_loops: + continue + # Some "crashers" only trigger an exception rather than a + # segfault. Consider that an acceptable outcome. + if test.support.verbose: + print("Checking crasher:", fname) + assert_python_failure(fname) + + +def test_main(): + test.support.run_unittest(CrasherTest) + test.support.reap_children() + +if __name__ == "__main__": + test_main() diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -228,7 +228,7 @@ try: t = self.eval_line(line) except DecimalException as exception: - #Exception raised where there shoudn't have been one. + #Exception raised where there shouldn't have been one. self.fail('Exception "'+exception.__class__.__name__ + '" raised on line '+line) return diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -3967,7 +3967,7 @@ except TypeError: pass else: - self.fail("Carlo Verre __setattr__ suceeded!") + self.fail("Carlo Verre __setattr__ succeeded!") try: object.__delattr__(str, "lower") except TypeError: diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -1297,7 +1297,7 @@ ? + ++ ^ TestResults(failed=1, attempted=1) -The REPORT_ONLY_FIRST_FAILURE supresses result output after the first +The REPORT_ONLY_FIRST_FAILURE suppresses result output after the first failing example: >>> def f(x): @@ -1327,7 +1327,7 @@ 2 TestResults(failed=3, attempted=5) -However, output from `report_start` is not supressed: +However, output from `report_start` is not suppressed: >>> doctest.DocTestRunner(verbose=True, optionflags=flags).run(test) ... # doctest: +ELLIPSIS @@ -2278,7 +2278,7 @@ >>> doctest.master = None # Reset master. (Note: we'll be clearing doctest.master after each call to -`doctest.testfile`, to supress warnings about multiple tests with the +`doctest.testfile`, to suppress warnings about multiple tests with the same name.) Globals may be specified with the `globs` and `extraglobs` parameters: @@ -2314,7 +2314,7 @@ TestResults(failed=0, attempted=2) >>> doctest.master = None # Reset master. -Verbosity can be increased with the optional `verbose` paremter: +Verbosity can be increased with the optional `verbose` parameter: >>> doctest.testfile('test_doctest.txt', globs=globs, verbose=True) Trying: @@ -2351,7 +2351,7 @@ TestResults(failed=1, attempted=2) >>> doctest.master = None # Reset master. -The summary report may be supressed with the optional `report` +The summary report may be suppressed with the optional `report` parameter: >>> doctest.testfile('test_doctest.txt', report=False) diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py --- a/Lib/test/test_extcall.py +++ b/Lib/test/test_extcall.py @@ -228,7 +228,7 @@ >>> Foo.method(1, *[2, 3]) 5 -A PyCFunction that takes only positional parameters shoud allow an +A PyCFunction that takes only positional parameters should allow an empty keyword dictionary to pass without a complaint, but raise a TypeError if te dictionary is not empty diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -67,7 +67,7 @@ def test_float_with_comma(self): # set locale to something that doesn't use '.' for the decimal point # float must not accept the locale specific decimal point but - # it still has to accept the normal python syntac + # it still has to accept the normal python syntax import locale if not locale.localeconv()['decimal_point'] == ',': return @@ -189,7 +189,7 @@ def assertEqualAndEqualSign(self, a, b): # fail unless a == b and a and b have the same sign bit; # the only difference from assertEqual is that this test - # distingishes -0.0 and 0.0. + # distinguishes -0.0 and 0.0. self.assertEqual((a, copysign(1.0, a)), (b, copysign(1.0, b))) @support.requires_IEEE_754 diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -127,6 +127,9 @@ " inferior's thread library, thread debugging will" " not be available.\n", '') + err = err.replace("warning: Cannot initialize thread debugging" + " library: Debugger service failed\n", + '') # Ensure no unexpected error messages: self.assertEqual(err, '') diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -350,7 +350,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -462,7 +462,7 @@ return False class BaseHTTPRequestHandlerTestCase(unittest.TestCase): - """Test the functionaility of the BaseHTTPServer. + """Test the functionality of the BaseHTTPServer. Test the support for the Expect 100-continue header. """ diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -906,6 +906,53 @@ self.assertEqual(inspect.getattr_static(Something(), 'foo'), 3) self.assertEqual(inspect.getattr_static(Something, 'foo'), 3) + def test_dict_as_property(self): + test = self + test.called = False + + class Foo(dict): + a = 3 + @property + def __dict__(self): + test.called = True + return {} + + foo = Foo() + foo.a = 4 + self.assertEqual(inspect.getattr_static(foo, 'a'), 3) + self.assertFalse(test.called) + + def test_custom_object_dict(self): + test = self + test.called = False + + class Custom(dict): + def get(self, key, default=None): + test.called = True + super().get(key, default) + + class Foo(object): + a = 3 + foo = Foo() + foo.__dict__ = Custom() + self.assertEqual(inspect.getattr_static(foo, 'a'), 3) + self.assertFalse(test.called) + + def test_metaclass_dict_as_property(self): + class Meta(type): + @property + def __dict__(self): + self.executed = True + + class Thing(metaclass=Meta): + executed = False + + def __init__(self): + self.spam = 42 + + instance = Thing() + self.assertEqual(inspect.getattr_static(instance, "spam"), 42) + self.assertFalse(Thing.executed) class TestGetGeneratorState(unittest.TestCase): diff --git a/Lib/test/test_iterlen.py b/Lib/test/test_iterlen.py --- a/Lib/test/test_iterlen.py +++ b/Lib/test/test_iterlen.py @@ -20,11 +20,11 @@ Some containers become temporarily immutable during iteration. This includes dicts, sets, and collections.deque. Their implementation is equally simple -though they need to permantently set their length to zero whenever there is +though they need to permanently set their length to zero whenever there is an attempt to iterate after a length mutation. The situation slightly more involved whenever an object allows length mutation -during iteration. Lists and sequence iterators are dynanamically updatable. +during iteration. Lists and sequence iterators are dynamically updatable. So, if a list is extended during iteration, the iterator will continue through the new items. If it shrinks to a point before the most recent iteration, then no further items are available and the length is reported at zero. diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -1526,7 +1526,7 @@ ... return chain(iterable, repeat(None)) >>> def ncycles(iterable, n): -... "Returns the seqeuence elements n times" +... "Returns the sequence elements n times" ... return chain(*repeat(iterable, n)) >>> def dotproduct(vec1, vec2): diff --git a/Lib/test/test_marshal.py b/Lib/test/test_marshal.py --- a/Lib/test/test_marshal.py +++ b/Lib/test/test_marshal.py @@ -194,7 +194,7 @@ # >>> type(loads(dumps(Int()))) # for typ in (int, float, complex, tuple, list, dict, set, frozenset): - # Note: str sublclasses are not tested because they get handled + # Note: str subclasses are not tested because they get handled # by marshal's routines for objects supporting the buffer API. subtyp = type('subtyp', (typ,), {}) self.assertRaises(ValueError, marshal.dumps, subtyp()) diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -820,7 +820,7 @@ # the following tests have been commented out since they don't # really belong here: the implementation of ** for floats is - # independent of the implemention of math.pow + # independent of the implementation of math.pow #self.assertEqual(1**NAN, 1) #self.assertEqual(1**INF, 1) #self.assertEqual(1**NINF, 1) diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -594,7 +594,7 @@ m2.close() m1.close() - # Test differnt tag + # Test different tag m1 = mmap.mmap(-1, len(data1), tagname="foo") m1[:] = data1 m2 = mmap.mmap(-1, len(data2), tagname="boo") diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -795,7 +795,7 @@ event = self.Event() wait = TimingWrapper(event.wait) - # Removed temporaily, due to API shear, this does not + # Removed temporarily, due to API shear, this does not # work with threading._Event objects. is_set == isSet self.assertEqual(event.is_set(), False) @@ -1765,7 +1765,7 @@ util.Finalize(None, conn.send, args=('STOP',), exitpriority=-100) - # call mutliprocessing's cleanup function then exit process without + # call multiprocessing's cleanup function then exit process without # garbage collecting locals util._exit_function() conn.close() diff --git a/Lib/test/test_pkg.py b/Lib/test/test_pkg.py --- a/Lib/test/test_pkg.py +++ b/Lib/test/test_pkg.py @@ -56,7 +56,7 @@ if self.root: # Only clean if the test was actually run cleanout(self.root) - # delete all modules concerning the tested hiearchy + # delete all modules concerning the tested hierarchy if self.pkgname: modules = [name for name in sys.modules if self.pkgname in name.split('.')] diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py --- a/Lib/test/test_posixpath.py +++ b/Lib/test/test_posixpath.py @@ -6,6 +6,11 @@ import sys from posixpath import realpath, abspath, dirname, basename +try: + import posix +except ImportError: + posix = None + # An absolute path to a temporary filename for testing. We can't rely on TESTFN # being an absolute path, so we need this. @@ -150,6 +155,7 @@ def test_islink(self): self.assertIs(posixpath.islink(support.TESTFN + "1"), False) + self.assertIs(posixpath.lexists(support.TESTFN + "2"), False) f = open(support.TESTFN + "1", "wb") try: f.write(b"foo") @@ -225,6 +231,44 @@ def test_ismount(self): self.assertIs(posixpath.ismount("/"), True) + self.assertIs(posixpath.ismount(b"/"), True) + + def test_ismount_non_existent(self): + # Non-existent mountpoint. + self.assertIs(posixpath.ismount(ABSTFN), False) + try: + os.mkdir(ABSTFN) + self.assertIs(posixpath.ismount(ABSTFN), False) + finally: + safe_rmdir(ABSTFN) + + @unittest.skipUnless(support.can_symlink(), + "Test requires symlink support") + def test_ismount_symlinks(self): + # Symlinks are never mountpoints. + try: + os.symlink("/", ABSTFN) + self.assertIs(posixpath.ismount(ABSTFN), False) + finally: + os.unlink(ABSTFN) + + @unittest.skipIf(posix is None, "Test requires posix module") + def test_ismount_different_device(self): + # Simulate the path being on a different device from its parent by + # mocking out st_dev. + save_lstat = os.lstat + def fake_lstat(path): + st_ino = 0 + st_dev = 0 + if path == ABSTFN: + st_dev = 1 + st_ino = 1 + return posix.stat_result((0, st_ino, st_dev, 0, 0, 0, 0, 0, 0, 0)) + try: + os.lstat = fake_lstat + self.assertIs(posixpath.ismount(ABSTFN), True) + finally: + os.lstat = save_lstat def test_expanduser(self): self.assertEqual(posixpath.expanduser("foo"), "foo") @@ -254,6 +298,10 @@ with support.EnvironmentVarGuard() as env: env['HOME'] = '/' self.assertEqual(posixpath.expanduser("~"), "/") + # expanduser should fall back to using the password database + del env['HOME'] + home = pwd.getpwuid(os.getuid()).pw_dir + self.assertEqual(posixpath.expanduser("~"), home) def test_normpath(self): self.assertEqual(posixpath.normpath(""), ".") @@ -289,6 +337,16 @@ @unittest.skipUnless(hasattr(os, "symlink"), "Missing symlink implementation") @skip_if_ABSTFN_contains_backslash + def test_realpath_relative(self): + try: + os.symlink(posixpath.relpath(ABSTFN+"1"), ABSTFN) + self.assertEqual(realpath(ABSTFN), ABSTFN+"1") + finally: + support.unlink(ABSTFN) + + @unittest.skipUnless(hasattr(os, "symlink"), + "Missing symlink implementation") + @skip_if_ABSTFN_contains_backslash def test_realpath_symlink_loops(self): # Bug #930024, return the path unchanged if we get into an infinite # symlink loop. @@ -443,6 +501,11 @@ finally: os.getcwdb = real_getcwdb + def test_sameopenfile(self): + fname = support.TESTFN + "1" + with open(fname, "wb") as a, open(fname, "wb") as b: + self.assertTrue(posixpath.sameopenfile(a.fileno(), b.fileno())) + class PosixCommonTest(test_genericpath.CommonTest): pathmodule = posixpath diff --git a/Lib/test/test_print.py b/Lib/test/test_print.py --- a/Lib/test/test_print.py +++ b/Lib/test/test_print.py @@ -20,7 +20,7 @@ # A dispatch table all 8 combinations of providing # sep, end, and file # I use this machinery so that I'm not just passing default -# values to print, I'm eiher passing or not passing in the +# values to print, I'm either passing or not passing in the # arguments dispatch = { (False, False, False): diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -7,6 +7,7 @@ import stat import os import os.path +import functools from test import support from test.support import TESTFN from os.path import splitdrive @@ -48,6 +49,21 @@ except ImportError: ZIP_SUPPORT = find_executable('zip') +def _fake_rename(*args, **kwargs): + # Pretend the destination path is on a different filesystem. + raise OSError() + +def mock_rename(func): + @functools.wraps(func) + def wrap(*args, **kwargs): + try: + builtin_rename = os.rename + os.rename = _fake_rename + return func(*args, **kwargs) + finally: + os.rename = builtin_rename + return wrap + class TestShutil(unittest.TestCase): def setUp(self): @@ -393,6 +409,41 @@ shutil.copytree(src_dir, dst_dir, symlinks=True) self.assertIn('test.txt', os.listdir(dst_dir)) + def _copy_file(self, method): + fname = 'test.txt' + tmpdir = self.mkdtemp() + self.write_file([tmpdir, fname]) + file1 = os.path.join(tmpdir, fname) + tmpdir2 = self.mkdtemp() + method(file1, tmpdir2) + file2 = os.path.join(tmpdir2, fname) + return (file1, file2) + + @unittest.skipUnless(hasattr(os, 'chmod'), 'requires os.chmod') + def test_copy(self): + # Ensure that the copied file exists and has the same mode bits. + file1, file2 = self._copy_file(shutil.copy) + self.assertTrue(os.path.exists(file2)) + self.assertEqual(os.stat(file1).st_mode, os.stat(file2).st_mode) + + @unittest.skipUnless(hasattr(os, 'chmod'), 'requires os.chmod') + @unittest.skipUnless(hasattr(os, 'chmod'), 'requires os.utime') + def test_copy2(self): + # Ensure that the copied file exists and has the same mode and + # modification time bits. + file1, file2 = self._copy_file(shutil.copy2) + self.assertTrue(os.path.exists(file2)) + file1_stat = os.stat(file1) + file2_stat = os.stat(file2) + self.assertEqual(file1_stat.st_mode, file2_stat.st_mode) + for attr in 'st_atime', 'st_mtime': + # The modification times may be truncated in the new file. + self.assertLessEqual(getattr(file1_stat, attr), + getattr(file2_stat, attr) + 1) + if hasattr(os, 'chflags') and hasattr(file1_stat, 'st_flags'): + self.assertEqual(getattr(file1_stat, 'st_flags'), + getattr(file2_stat, 'st_flags')) + @unittest.skipUnless(zlib, "requires zlib") def test_make_tarball(self): # creating something to tar @@ -403,6 +454,8 @@ self.write_file([tmpdir, 'sub', 'file3'], 'xxx') tmpdir2 = self.mkdtemp() + # force shutil to create the directory + os.rmdir(tmpdir2) unittest.skipUnless(splitdrive(tmpdir)[0] == splitdrive(tmpdir2)[0], "source and target should be on same drive") @@ -518,6 +571,8 @@ self.write_file([tmpdir, 'file2'], 'xxx') tmpdir2 = self.mkdtemp() + # force shutil to create the directory + os.rmdir(tmpdir2) base_name = os.path.join(tmpdir2, 'archive') _make_zipfile(base_name, tmpdir) @@ -645,6 +700,14 @@ diff = self._compare_dirs(tmpdir, tmpdir2) self.assertEqual(diff, []) + # and again, this time with the format specified + tmpdir3 = self.mkdtemp() + unpack_archive(filename, tmpdir3, format=format) + diff = self._compare_dirs(tmpdir, tmpdir3) + self.assertEqual(diff, []) + self.assertRaises(shutil.ReadError, unpack_archive, TESTFN) + self.assertRaises(ValueError, unpack_archive, TESTFN, format='xxx') + def test_unpack_registery(self): formats = get_unpack_formats() @@ -680,20 +743,11 @@ self.dst_dir = tempfile.mkdtemp() self.src_file = os.path.join(self.src_dir, filename) self.dst_file = os.path.join(self.dst_dir, filename) - # Try to create a dir in the current directory, hoping that it is - # not located on the same filesystem as the system tmp dir. - try: - self.dir_other_fs = tempfile.mkdtemp( - dir=os.path.dirname(__file__)) - self.file_other_fs = os.path.join(self.dir_other_fs, - filename) - except OSError: - self.dir_other_fs = None with open(self.src_file, "wb") as f: f.write(b"spam") def tearDown(self): - for d in (self.src_dir, self.dst_dir, self.dir_other_fs): + for d in (self.src_dir, self.dst_dir): try: if d: shutil.rmtree(d) @@ -722,21 +776,15 @@ # Move a file inside an existing dir on the same filesystem. self._check_move_file(self.src_file, self.dst_dir, self.dst_file) + @mock_rename def test_move_file_other_fs(self): # Move a file to an existing dir on another filesystem. - if not self.dir_other_fs: - # skip - return - self._check_move_file(self.src_file, self.file_other_fs, - self.file_other_fs) + self.test_move_file() + @mock_rename def test_move_file_to_dir_other_fs(self): # Move a file to another location on another filesystem. - if not self.dir_other_fs: - # skip - return - self._check_move_file(self.src_file, self.dir_other_fs, - self.file_other_fs) + self.test_move_file_to_dir() def test_move_dir(self): # Move a dir to another location on the same filesystem. @@ -749,32 +797,20 @@ except: pass + @mock_rename def test_move_dir_other_fs(self): # Move a dir to another location on another filesystem. - if not self.dir_other_fs: - # skip - return - dst_dir = tempfile.mktemp(dir=self.dir_other_fs) - try: - self._check_move_dir(self.src_dir, dst_dir, dst_dir) - finally: - try: - shutil.rmtree(dst_dir) - except: - pass + self.test_move_dir() def test_move_dir_to_dir(self): # Move a dir inside an existing dir on the same filesystem. self._check_move_dir(self.src_dir, self.dst_dir, os.path.join(self.dst_dir, os.path.basename(self.src_dir))) + @mock_rename def test_move_dir_to_dir_other_fs(self): # Move a dir inside an existing dir on another filesystem. - if not self.dir_other_fs: - # skip - return - self._check_move_dir(self.src_dir, self.dir_other_fs, - os.path.join(self.dir_other_fs, os.path.basename(self.src_dir))) + self.test_move_dir_to_dir() def test_existing_file_inside_dest_dir(self): # A file with the same name inside the destination dir already exists. diff --git a/Lib/test/test_strlit.py b/Lib/test/test_strlit.py --- a/Lib/test/test_strlit.py +++ b/Lib/test/test_strlit.py @@ -22,7 +22,7 @@ exec()/eval(), which uses a different code path. This file is really about correct treatment of encodings and -backslashes. It doens't concern itself with issues like single +backslashes. It doesn't concern itself with issues like single vs. double quotes or singly- vs. triply-quoted strings: that's dealt with elsewhere (I assume). """ diff --git a/Lib/test/test_strptime.py b/Lib/test/test_strptime.py --- a/Lib/test/test_strptime.py +++ b/Lib/test/test_strptime.py @@ -536,7 +536,7 @@ self.assertIsNot(first_time_re, second_time_re) # Possible test locale is not supported while initial locale is. # If this is the case just suppress the exception and fall-through - # to the reseting to the original locale. + # to the resetting to the original locale. except locale.Error: pass # Make sure we don't trample on the locale setting once we leave the diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py --- a/Lib/test/test_struct.py +++ b/Lib/test/test_struct.py @@ -463,7 +463,7 @@ test_string) def test_unpack_with_buffer(self): - # SF bug 1563759: struct.unpack doens't support buffer protocol objects + # SF bug 1563759: struct.unpack doesn't support buffer protocol objects data1 = array.array('B', b'\x12\x34\x56\x78') data2 = memoryview(b'\x12\x34\x56\x78') # XXX b'......XXXX......', 6, 4 for data in [data1, data2]: diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -130,7 +130,9 @@ "import sys; sys.stdout.write('BDFL')\n" "sys.stdout.flush()\n" "while True: pass"], - timeout=1.5) + # Some heavily loaded buildbots (sparc Debian 3.x) require + # this much time to start and print. + timeout=3) self.fail("Expected TimeoutExpired.") self.assertEqual(c.exception.output, b'BDFL') @@ -323,6 +325,31 @@ rc = subprocess.call([sys.executable, "-c", cmd], stdout=1) self.assertEqual(rc, 2) + def test_stdout_devnull(self): + p = subprocess.Popen([sys.executable, "-c", + 'for i in range(10240):' + 'print("x" * 1024)'], + stdout=subprocess.DEVNULL) + p.wait() + self.assertEqual(p.stdout, None) + + def test_stderr_devnull(self): + p = subprocess.Popen([sys.executable, "-c", + 'import sys\n' + 'for i in range(10240):' + 'sys.stderr.write("x" * 1024)'], + stderr=subprocess.DEVNULL) + p.wait() + self.assertEqual(p.stderr, None) + + def test_stdin_devnull(self): + p = subprocess.Popen([sys.executable, "-c", + 'import sys;' + 'sys.stdin.read(1)'], + stdin=subprocess.DEVNULL) + p.wait() + self.assertEqual(p.stdin, None) + def test_cwd(self): tmpdir = tempfile.gettempdir() # We cannot use os.path.realpath to canonicalize the path, @@ -622,13 +649,15 @@ # Subsequent invocations should just return the returncode self.assertEqual(p.wait(), 0) - def test_wait_timeout(self): p = subprocess.Popen([sys.executable, "-c", "import time; time.sleep(0.1)"]) - self.assertRaises(subprocess.TimeoutExpired, p.wait, timeout=0.01) - self.assertEqual(p.wait(timeout=2), 0) - + with self.assertRaises(subprocess.TimeoutExpired) as c: + p.wait(timeout=0.01) + self.assertIn("0.01", str(c.exception)) # For coverage of __str__. + # Some heavily loaded buildbots (sparc Debian 3.x) require this much + # time to start. + self.assertEqual(p.wait(timeout=3), 0) def test_invalid_bufsize(self): # an invalid type of the bufsize argument should raise diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py --- a/Lib/test/test_sundry.py +++ b/Lib/test/test_sundry.py @@ -54,7 +54,6 @@ import py_compile import sndhdr import tabnanny - import timeit try: import tty # not available on Windows except ImportError: diff --git a/Lib/test/test_syntax.py b/Lib/test/test_syntax.py --- a/Lib/test/test_syntax.py +++ b/Lib/test/test_syntax.py @@ -237,7 +237,7 @@ Test continue in finally in weird combinations. -continue in for loop under finally shouuld be ok. +continue in for loop under finally should be ok. >>> def test(): ... try: diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -492,7 +492,7 @@ # provide too much opportunity for insane things to happen. # We don't want them in the interned dict and if they aren't # actually interned, we don't want to create the appearance - # that they are by allowing intern() to succeeed. + # that they are by allowing intern() to succeed. class S(str): def __hash__(self): return 123 diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -578,7 +578,7 @@ # This acquires the lock and then waits until the child has forked # before returning, which will release the lock soon after. If # someone else tries to fix this test case by acquiring this lock - # before forking instead of reseting it, the test case will + # before forking instead of resetting it, the test case will # deadlock when it shouldn't. condition = w._block orig_acquire = condition.acquire diff --git a/Lib/test/test_timeit.py b/Lib/test/test_timeit.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_timeit.py @@ -0,0 +1,305 @@ +import timeit +import unittest +import sys +import io +import time +from textwrap import dedent + +from test.support import run_unittest +from test.support import captured_stdout +from test.support import captured_stderr + +# timeit's default number of iterations. +DEFAULT_NUMBER = 1000000 + +# timeit's default number of repetitions. +DEFAULT_REPEAT = 3 + +# XXX: some tests are commented out that would improve the coverage but take a +# long time to run because they test the default number of loops, which is +# large. The tests could be enabled if there was a way to override the default +# number of loops during testing, but this would require changing the signature +# of some functions that use the default as a default argument. + +class FakeTimer: + BASE_TIME = 42.0 + def __init__(self, seconds_per_increment=1.0): + self.count = 0 + self.setup_calls = 0 + self.seconds_per_increment=seconds_per_increment + timeit._fake_timer = self + + def __call__(self): + return self.BASE_TIME + self.count * self.seconds_per_increment + + def inc(self): + self.count += 1 + + def setup(self): + self.setup_calls += 1 + + def wrap_timer(self, timer): + """Records 'timer' and returns self as callable timer.""" + self.saved_timer = timer + return self + +class TestTimeit(unittest.TestCase): + + def tearDown(self): + try: + del timeit._fake_timer + except AttributeError: + pass + + def test_reindent_empty(self): + self.assertEqual(timeit.reindent("", 0), "") + self.assertEqual(timeit.reindent("", 4), "") + + def test_reindent_single(self): + self.assertEqual(timeit.reindent("pass", 0), "pass") + self.assertEqual(timeit.reindent("pass", 4), "pass") + + def test_reindent_multi_empty(self): + self.assertEqual(timeit.reindent("\n\n", 0), "\n\n") + self.assertEqual(timeit.reindent("\n\n", 4), "\n \n ") + + def test_reindent_multi(self): + self.assertEqual(timeit.reindent( + "print()\npass\nbreak", 0), + "print()\npass\nbreak") + self.assertEqual(timeit.reindent( + "print()\npass\nbreak", 4), + "print()\n pass\n break") + + def test_timer_invalid_stmt(self): + self.assertRaises(ValueError, timeit.Timer, stmt=None) + + def test_timer_invalid_setup(self): + self.assertRaises(ValueError, timeit.Timer, setup=None) + + fake_setup = "import timeit; timeit._fake_timer.setup()" + fake_stmt = "import timeit; timeit._fake_timer.inc()" + + def fake_callable_setup(self): + self.fake_timer.setup() + + def fake_callable_stmt(self): + self.fake_timer.inc() + + def timeit(self, stmt, setup, number=None): + self.fake_timer = FakeTimer() + t = timeit.Timer(stmt=stmt, setup=setup, timer=self.fake_timer) + kwargs = {} + if number is None: + number = DEFAULT_NUMBER + else: + kwargs['number'] = number + delta_time = t.timeit(**kwargs) + self.assertEqual(self.fake_timer.setup_calls, 1) + self.assertEqual(self.fake_timer.count, number) + self.assertEqual(delta_time, number) + + # Takes too long to run in debug build. + #def test_timeit_default_iters(self): + # self.timeit(self.fake_stmt, self.fake_setup) + + def test_timeit_zero_iters(self): + self.timeit(self.fake_stmt, self.fake_setup, number=0) + + def test_timeit_few_iters(self): + self.timeit(self.fake_stmt, self.fake_setup, number=3) + + def test_timeit_callable_stmt(self): + self.timeit(self.fake_callable_stmt, self.fake_setup, number=3) + + def test_timeit_callable_stmt_and_setup(self): + self.timeit(self.fake_callable_stmt, + self.fake_callable_setup, number=3) + + # Takes too long to run in debug build. + #def test_timeit_function(self): + # delta_time = timeit.timeit(self.fake_stmt, self.fake_setup, + # timer=FakeTimer()) + # self.assertEqual(delta_time, DEFAULT_NUMBER) + + def test_timeit_function_zero_iters(self): + delta_time = timeit.timeit(self.fake_stmt, self.fake_setup, number=0, + timer=FakeTimer()) + self.assertEqual(delta_time, 0) + + def repeat(self, stmt, setup, repeat=None, number=None): + self.fake_timer = FakeTimer() + t = timeit.Timer(stmt=stmt, setup=setup, timer=self.fake_timer) + kwargs = {} + if repeat is None: + repeat = DEFAULT_REPEAT + else: + kwargs['repeat'] = repeat + if number is None: + number = DEFAULT_NUMBER + else: + kwargs['number'] = number + delta_times = t.repeat(**kwargs) + self.assertEqual(self.fake_timer.setup_calls, repeat) + self.assertEqual(self.fake_timer.count, repeat * number) + self.assertEqual(delta_times, repeat * [float(number)]) + + # Takes too long to run in debug build. + #def test_repeat_default(self): + # self.repeat(self.fake_stmt, self.fake_setup) + + def test_repeat_zero_reps(self): + self.repeat(self.fake_stmt, self.fake_setup, repeat=0) + + def test_repeat_zero_iters(self): + self.repeat(self.fake_stmt, self.fake_setup, number=0) + + def test_repeat_few_reps_and_iters(self): + self.repeat(self.fake_stmt, self.fake_setup, repeat=3, number=5) + + def test_repeat_callable_stmt(self): + self.repeat(self.fake_callable_stmt, self.fake_setup, + repeat=3, number=5) + + def test_repeat_callable_stmt_and_setup(self): + self.repeat(self.fake_callable_stmt, self.fake_callable_setup, + repeat=3, number=5) + + # Takes too long to run in debug build. + #def test_repeat_function(self): + # delta_times = timeit.repeat(self.fake_stmt, self.fake_setup, + # timer=FakeTimer()) + # self.assertEqual(delta_times, DEFAULT_REPEAT * [float(DEFAULT_NUMBER)]) + + def test_repeat_function_zero_reps(self): + delta_times = timeit.repeat(self.fake_stmt, self.fake_setup, repeat=0, + timer=FakeTimer()) + self.assertEqual(delta_times, []) + + def test_repeat_function_zero_iters(self): + delta_times = timeit.repeat(self.fake_stmt, self.fake_setup, number=0, + timer=FakeTimer()) + self.assertEqual(delta_times, DEFAULT_REPEAT * [0.0]) + + def assert_exc_string(self, exc_string, expected_exc_name): + exc_lines = exc_string.splitlines() + self.assertGreater(len(exc_lines), 2) + self.assertTrue(exc_lines[0].startswith('Traceback')) + self.assertTrue(exc_lines[-1].startswith(expected_exc_name)) + + def test_print_exc(self): + s = io.StringIO() + t = timeit.Timer("1/0") + try: + t.timeit() + except: + t.print_exc(s) + self.assert_exc_string(s.getvalue(), 'ZeroDivisionError') + + MAIN_DEFAULT_OUTPUT = "10 loops, best of 3: 1 sec per loop\n" + + def run_main(self, seconds_per_increment=1.0, switches=None, timer=None): + if timer is None: + timer = FakeTimer(seconds_per_increment=seconds_per_increment) + if switches is None: + args = [] + else: + args = switches[:] + args.append(self.fake_stmt) + # timeit.main() modifies sys.path, so save and restore it. + orig_sys_path = sys.path[:] + with captured_stdout() as s: + timeit.main(args=args, _wrap_timer=timer.wrap_timer) + sys.path[:] = orig_sys_path[:] + return s.getvalue() + + def test_main_bad_switch(self): + s = self.run_main(switches=['--bad-switch']) + self.assertEqual(s, dedent("""\ + option --bad-switch not recognized + use -h/--help for command line help + """)) + + def test_main_seconds(self): + s = self.run_main(seconds_per_increment=5.5) + self.assertEqual(s, "10 loops, best of 3: 5.5 sec per loop\n") + + def test_main_milliseconds(self): + s = self.run_main(seconds_per_increment=0.0055) + self.assertEqual(s, "100 loops, best of 3: 5.5 msec per loop\n") + + def test_main_microseconds(self): + s = self.run_main(seconds_per_increment=0.0000025, switches=['-n100']) + self.assertEqual(s, "100 loops, best of 3: 2.5 usec per loop\n") + + def test_main_fixed_iters(self): + s = self.run_main(seconds_per_increment=2.0, switches=['-n35']) + self.assertEqual(s, "35 loops, best of 3: 2 sec per loop\n") + + def test_main_setup(self): + s = self.run_main(seconds_per_increment=2.0, + switches=['-n35', '-s', 'print("CustomSetup")']) + self.assertEqual(s, "CustomSetup\n" * 3 + + "35 loops, best of 3: 2 sec per loop\n") + + def test_main_fixed_reps(self): + s = self.run_main(seconds_per_increment=60.0, switches=['-r9']) + self.assertEqual(s, "10 loops, best of 9: 60 sec per loop\n") + + def test_main_negative_reps(self): + s = self.run_main(seconds_per_increment=60.0, switches=['-r-5']) + self.assertEqual(s, "10 loops, best of 1: 60 sec per loop\n") + + def test_main_help(self): + s = self.run_main(switches=['-h']) + # Note: It's not clear that the trailing space was intended as part of + # the help text, but since it's there, check for it. + self.assertEqual(s, timeit.__doc__ + ' ') + + def test_main_using_time(self): + fake_timer = FakeTimer() + s = self.run_main(switches=['-t'], timer=fake_timer) + self.assertEqual(s, self.MAIN_DEFAULT_OUTPUT) + self.assertIs(fake_timer.saved_timer, time.time) + + def test_main_using_clock(self): + fake_timer = FakeTimer() + s = self.run_main(switches=['-c'], timer=fake_timer) + self.assertEqual(s, self.MAIN_DEFAULT_OUTPUT) + self.assertIs(fake_timer.saved_timer, time.clock) + + def test_main_verbose(self): + s = self.run_main(switches=['-v']) + self.assertEqual(s, dedent("""\ + 10 loops -> 10 secs + raw times: 10 10 10 + 10 loops, best of 3: 1 sec per loop + """)) + + def test_main_very_verbose(self): + s = self.run_main(seconds_per_increment=0.000050, switches=['-vv']) + self.assertEqual(s, dedent("""\ + 10 loops -> 0.0005 secs + 100 loops -> 0.005 secs + 1000 loops -> 0.05 secs + 10000 loops -> 0.5 secs + raw times: 0.5 0.5 0.5 + 10000 loops, best of 3: 50 usec per loop + """)) + + def test_main_exception(self): + with captured_stderr() as error_stringio: + s = self.run_main(switches=['1/0']) + self.assert_exc_string(error_stringio.getvalue(), 'ZeroDivisionError') + + def test_main_exception_fixed_reps(self): + with captured_stderr() as error_stringio: + s = self.run_main(switches=['-n1', '1/0']) + self.assert_exc_string(error_stringio.getvalue(), 'ZeroDivisionError') + + +def test_main(): + run_unittest(TestTimeit) + +if __name__ == '__main__': + test_main() diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py --- a/Lib/test/test_trace.py +++ b/Lib/test/test_trace.py @@ -209,7 +209,7 @@ (self.my_py_filename, firstlineno + 4): 1, } - # When used through 'run', some other spurios counts are produced, like + # When used through 'run', some other spurious counts are produced, like # the settrace of threading, which we ignore, just making sure that the # counts fo traced_func_loop were right. # diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -1021,7 +1021,7 @@ # Just commented them out. # Can't really tell why keep failing in windows and sparc. -# Everywhere else they work ok, but on those machines, someteimes +# Everywhere else they work ok, but on those machines, sometimes # fail in one of the tests, sometimes in other. I have a linux, and # the tests go ok. # If anybody has one of the problematic enviroments, please help! diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py --- a/Lib/test/test_warnings.py +++ b/Lib/test/test_warnings.py @@ -332,7 +332,7 @@ sys.argv = argv def test_warn_explicit_type_errors(self): - # warn_explicit() shoud error out gracefully if it is given objects + # warn_explicit() should error out gracefully if it is given objects # of the wrong types. # lineno is expected to be an integer. self.assertRaises(TypeError, self.module.warn_explicit, diff --git a/Lib/timeit.py b/Lib/timeit.py --- a/Lib/timeit.py +++ b/Lib/timeit.py @@ -232,10 +232,10 @@ """Convenience function to create Timer object and call repeat method.""" return Timer(stmt, setup, timer).repeat(repeat, number) -def main(args=None): +def main(args=None, *, _wrap_timer=None): """Main program, used when run as a script. - The optional argument specifies the command line to be parsed, + The optional 'args' argument specifies the command line to be parsed, defaulting to sys.argv[1:]. The return value is an exit code to be passed to sys.exit(); it @@ -244,6 +244,10 @@ When an exception happens during timing, a traceback is printed to stderr and the return value is 1. Exceptions at other times (including the template compilation) are not caught. + + '_wrap_timer' is an internal interface used for unit testing. If it + is not None, it must be a callable that accepts a timer function + and returns another timer function (used for unit testing). """ if args is None: args = sys.argv[1:] @@ -289,6 +293,8 @@ # directory) import os sys.path.insert(0, os.curdir) + if _wrap_timer is not None: + timer = _wrap_timer(timer) t = Timer(stmt, setup, timer) if number == 0: # determine number so that 0.2 <= total time < 2.0 diff --git a/Lib/tkinter/test/test_ttk/test_functions.py b/Lib/tkinter/test/test_ttk/test_functions.py --- a/Lib/tkinter/test/test_ttk/test_functions.py +++ b/Lib/tkinter/test/test_ttk/test_functions.py @@ -135,7 +135,7 @@ # minimum acceptable for image type self.assertEqual(ttk._format_elemcreate('image', False, 'test'), ("test ", ())) - # specifiyng a state spec + # specifying a state spec self.assertEqual(ttk._format_elemcreate('image', False, 'test', ('', 'a')), ("test {} a", ())) # state spec with multiple states diff --git a/Lib/tkinter/tix.py b/Lib/tkinter/tix.py --- a/Lib/tkinter/tix.py +++ b/Lib/tkinter/tix.py @@ -171,7 +171,7 @@ return self.tk.call('tix', 'getimage', name) def tix_option_get(self, name): - """Gets the options manitained by the Tix + """Gets the options maintained by the Tix scheme mechanism. Available options include: active_bg active_fg bg @@ -576,7 +576,7 @@ class ComboBox(TixWidget): """ComboBox - an Entry field with a dropdown menu. The user can select a - choice by either typing in the entry subwdget or selecting from the + choice by either typing in the entry subwidget or selecting from the listbox subwidget. Subwidget Class @@ -869,7 +869,7 @@ """HList - Hierarchy display widget can be used to display any data that have a hierarchical structure, for example, file system directory trees. The list entries are indented and connected by branch lines - according to their places in the hierachy. + according to their places in the hierarchy. Subwidgets - None""" @@ -1519,7 +1519,7 @@ self.tk.call(self._w, 'selection', 'set', first, last) class Tree(TixWidget): - """Tree - The tixTree widget can be used to display hierachical + """Tree - The tixTree widget can be used to display hierarchical data in a tree form. The user can adjust the view of the tree by opening or closing parts of the tree.""" diff --git a/Lib/tkinter/ttk.py b/Lib/tkinter/ttk.py --- a/Lib/tkinter/ttk.py +++ b/Lib/tkinter/ttk.py @@ -707,7 +707,7 @@ textvariable, values, width """ # The "values" option may need special formatting, so leave to - # _format_optdict the responsability to format it + # _format_optdict the responsibility to format it if "values" in kw: kw["values"] = _format_optdict({'v': kw["values"]})[1] diff --git a/Lib/turtle.py b/Lib/turtle.py --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -1488,7 +1488,7 @@ Optional arguments: canvwidth -- positive integer, new width of canvas in pixels canvheight -- positive integer, new height of canvas in pixels - bg -- colorstring or color-tupel, new backgroundcolor + bg -- colorstring or color-tuple, new backgroundcolor If no arguments are given, return current (canvaswidth, canvasheight) Do not alter the drawing window. To observe hidden parts of @@ -3242,9 +3242,9 @@ fill="", width=ps) # Turtle now at position old, self._position = old - ## if undo is done during crating a polygon, the last vertex - ## will be deleted. if the polygon is entirel deleted, - ## creatigPoly will be set to False. + ## if undo is done during creating a polygon, the last vertex + ## will be deleted. if the polygon is entirely deleted, + ## creatingPoly will be set to False. ## Polygons created before the last one will not be affected by undo() if self._creatingPoly: if len(self._poly) > 0: @@ -3796,7 +3796,7 @@ class Turtle(RawTurtle): - """RawTurtle auto-crating (scrolled) canvas. + """RawTurtle auto-creating (scrolled) canvas. When a Turtle object is created or a function derived from some Turtle method is called a TurtleScreen object is automatically created. @@ -3836,7 +3836,7 @@ filename -- a string, used as filename default value is turtle_docstringdict - Has to be called explicitely, (not used by the turtle-graphics classes) + Has to be called explicitly, (not used by the turtle-graphics classes) The docstring dictionary will be written to the Python script .py It is intended to serve as a template for translation of the docstrings into different languages. diff --git a/Lib/turtledemo/bytedesign.py b/Lib/turtledemo/bytedesign.py --- a/Lib/turtledemo/bytedesign.py +++ b/Lib/turtledemo/bytedesign.py @@ -4,7 +4,7 @@ tdemo_bytedesign.py An example adapted from the example-suite -of PythonCard's turtle graphcis. +of PythonCard's turtle graphics. It's based on an article in BYTE magazine Problem Solving with Logo: Using Turtle diff --git a/Lib/unittest/result.py b/Lib/unittest/result.py --- a/Lib/unittest/result.py +++ b/Lib/unittest/result.py @@ -59,6 +59,9 @@ "Called when the given test is about to be run" self.testsRun += 1 self._mirrorOutput = False + self._setupStdout() + + def _setupStdout(self): if self.buffer: if self._stderr_buffer is None: self._stderr_buffer = io.StringIO() @@ -74,6 +77,10 @@ def stopTest(self, test): """Called when the given test has been run""" + self._restoreStdout() + self._mirrorOutput = False + + def _restoreStdout(self): if self.buffer: if self._mirrorOutput: output = sys.stdout.getvalue() @@ -93,7 +100,6 @@ self._stdout_buffer.truncate() self._stderr_buffer.seek(0) self._stderr_buffer.truncate() - self._mirrorOutput = False def stopTestRun(self): """Called once after all tests are executed. diff --git a/Lib/unittest/suite.py b/Lib/unittest/suite.py --- a/Lib/unittest/suite.py +++ b/Lib/unittest/suite.py @@ -8,6 +8,11 @@ __unittest = True +def _call_if_exists(parent, attr): + func = getattr(parent, attr, lambda: None) + func() + + class BaseTestSuite(object): """A simple test suite that doesn't provide class or module shared fixtures. """ @@ -133,6 +138,7 @@ setUpClass = getattr(currentClass, 'setUpClass', None) if setUpClass is not None: + _call_if_exists(result, '_setupStdout') try: setUpClass() except Exception as e: @@ -142,6 +148,8 @@ className = util.strclass(currentClass) errorName = 'setUpClass (%s)' % className self._addClassOrModuleLevelException(result, e, errorName) + finally: + _call_if_exists(result, '_restoreStdout') def _get_previous_module(self, result): previousModule = None @@ -167,6 +175,7 @@ return setUpModule = getattr(module, 'setUpModule', None) if setUpModule is not None: + _call_if_exists(result, '_setupStdout') try: setUpModule() except Exception as e: @@ -175,6 +184,8 @@ result._moduleSetUpFailed = True errorName = 'setUpModule (%s)' % currentModule self._addClassOrModuleLevelException(result, e, errorName) + finally: + _call_if_exists(result, '_restoreStdout') def _addClassOrModuleLevelException(self, result, exception, errorName): error = _ErrorHolder(errorName) @@ -198,6 +209,7 @@ tearDownModule = getattr(module, 'tearDownModule', None) if tearDownModule is not None: + _call_if_exists(result, '_setupStdout') try: tearDownModule() except Exception as e: @@ -205,6 +217,8 @@ raise errorName = 'tearDownModule (%s)' % previousModule self._addClassOrModuleLevelException(result, e, errorName) + finally: + _call_if_exists(result, '_restoreStdout') def _tearDownPreviousClass(self, test, result): previousClass = getattr(result, '_previousTestClass', None) @@ -220,6 +234,7 @@ tearDownClass = getattr(previousClass, 'tearDownClass', None) if tearDownClass is not None: + _call_if_exists(result, '_setupStdout') try: tearDownClass() except Exception as e: @@ -228,7 +243,8 @@ className = util.strclass(previousClass) errorName = 'tearDownClass (%s)' % className self._addClassOrModuleLevelException(result, e, errorName) - + finally: + _call_if_exists(result, '_restoreStdout') class _ErrorHolder(object): diff --git a/Lib/unittest/test/test_result.py b/Lib/unittest/test/test_result.py --- a/Lib/unittest/test/test_result.py +++ b/Lib/unittest/test/test_result.py @@ -497,5 +497,72 @@ self.assertEqual(result._original_stderr.getvalue(), expectedErrMessage) self.assertMultiLineEqual(message, expectedFullMessage) + def testBufferSetupClass(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + @classmethod + def setUpClass(cls): + 1/0 + def test_foo(self): + pass + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + def testBufferTearDownClass(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + @classmethod + def tearDownClass(cls): + 1/0 + def test_foo(self): + pass + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + def testBufferSetUpModule(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + def test_foo(self): + pass + class Module(object): + @staticmethod + def setUpModule(): + 1/0 + + Foo.__module__ = 'Module' + sys.modules['Module'] = Module + self.addCleanup(sys.modules.pop, 'Module') + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + def testBufferTearDownModule(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + def test_foo(self): + pass + class Module(object): + @staticmethod + def tearDownModule(): + 1/0 + + Foo.__module__ = 'Module' + sys.modules['Module'] = Module + self.addCleanup(sys.modules.pop, 'Module') + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + if __name__ == '__main__': unittest.main() diff --git a/Lib/xml/dom/minicompat.py b/Lib/xml/dom/minicompat.py --- a/Lib/xml/dom/minicompat.py +++ b/Lib/xml/dom/minicompat.py @@ -6,7 +6,7 @@ # # NodeList -- lightest possible NodeList implementation # -# EmptyNodeList -- lightest possible NodeList that is guarateed to +# EmptyNodeList -- lightest possible NodeList that is guaranteed to # remain empty (immutable) # # StringTypes -- tuple of defined string types diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -1905,7 +1905,7 @@ e._call_user_data_handler(operation, n, entity) else: # Note the cloning of Document and DocumentType nodes is - # implemenetation specific. minidom handles those cases + # implementation specific. minidom handles those cases # directly in the cloneNode() methods. raise xml.dom.NotSupportedErr("Cannot clone node %s" % repr(node)) diff --git a/Lib/xmlrpc/server.py b/Lib/xmlrpc/server.py --- a/Lib/xmlrpc/server.py +++ b/Lib/xmlrpc/server.py @@ -240,7 +240,7 @@ marshalled data. For backwards compatibility, a dispatch function can be provided as an argument (see comment in SimpleXMLRPCRequestHandler.do_POST) but overriding the - existing method through subclassing is the prefered means + existing method through subclassing is the preferred means of changing method dispatch behavior. """ diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -362,7 +362,7 @@ def runCommand(commandline): """ - Run a command and raise RuntimeError if it fails. Output is surpressed + Run a command and raise RuntimeError if it fails. Output is suppressed unless the command fails. """ fd = os.popen(commandline, 'r') diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -227,6 +227,7 @@ Ismail Donmez Marcos Donolo Dima Dorfman +Yves Dorfsman Cesar Douady Dean Draayer Fred L. Drake, Jr. @@ -450,6 +451,7 @@ Peter van Kampen Rafe Kaplan Jacob Kaplan-Moss +Arkady Koplyarov Lou Kates Hiroaki Kawai Sebastien Keim diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,34 @@ Library ------- + +- Issue #10979: unittest stdout buffering now works with class and module + setup and teardown. + +- Issue #11577: fix ResourceWarning triggered by improved binhex test coverage + +- Issue #11243: fix the parameter querying methods of Message to work if + the headers contain un-encoded non-ASCII data. + +- Issue #11401: fix handling of headers with no value; this fixes a regression + relative to Python2 and the result is now the same as it was in Python2. + +- Issue #9298: base64 bodies weren't being folded to line lengths less than 78, + which was a regression relative to Python2. Unlike Python2, the last line + of the folded body now ends with a carriage return. + +- Issue #11560: shutil.unpack_archive now correctly handles the format + parameter. Patch by Evan Dandrea. + +- Issue #5870: Add `subprocess.DEVNULL` constant. + +- Issue #11133: fix two cases where inspect.getattr_static can trigger code + execution. Patch by Andreas St?hrk. + +- Issue #11569: use absolute path to the sysctl command in multiprocessing to + ensure that it will be found regardless of the shell PATH. This ensures + that multiprocessing.cpu_count works on default installs of MacOSX. + - Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is not installed. Instead, the zipfile.ZIP_STORED compression is used to create the ZipFile. Patch by Natalia B. Bidart. @@ -220,9 +248,25 @@ Tests ----- +- Issue #11577: improve test coverage of binhex.py. Patch by Arkady Koplyarov. + +- New test_crashers added to exercise the scripts in the Lib/test/crashers + directory and confirm they fail as expected + +- Issue #11578: added test for the timeit module. Patch Michael Henry. + +- Issue #11503: improve test coverage of posixpath.py. Patch by Evan Dandrea. + +- Issue #11505: improves test coverage of string.py. Patch by Alicia + Arlen. + +- Issue #11548: Improve test coverage of the shutil module. Patch by + Evan Dandrea. + - Issue #11554: Reactivated test_email_codecs. -- Issue #11505: improves test coverage of string.py +- Issue #11505: improves test coverage of string.py. Patch by Alicia + Arlen - Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a false positive if the last directory in the path is inaccessible. diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -3317,7 +3317,7 @@ /* XXX XXX This would allow to pass additional options. For COM method *implementations*, we would probably want different behaviour than in 'normal' callback functions: return a HRESULT if - an exception occurrs in the callback, and print the traceback not + an exception occurs in the callback, and print the traceback not only on the console, but also to OutputDebugString() or something like that. */ diff --git a/Modules/_ctypes/callbacks.c b/Modules/_ctypes/callbacks.c --- a/Modules/_ctypes/callbacks.c +++ b/Modules/_ctypes/callbacks.c @@ -202,7 +202,7 @@ /* XXX XXX XX We have the problem that c_byte or c_short have dict->size of 1 resp. 4, but these parameters are pushed as sizeof(int) bytes. - BTW, the same problem occurrs when they are pushed as parameters + BTW, the same problem occurs when they are pushed as parameters */ } else if (dict) { /* Hm, shouldn't we use PyCData_AtAddress() or something like that instead? */ diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -29,7 +29,7 @@ 4. _ctypes_callproc is then called with the 'callargs' tuple. _ctypes_callproc first allocates two arrays. The first is an array of 'struct argument' items, the - second array has 'void *' entried. + second array has 'void *' entries. 5. If 'converters' are present (converters is a sequence of argtypes' from_param methods), for each item in 'callargs' converter is called and the diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c --- a/Modules/_functoolsmodule.c +++ b/Modules/_functoolsmodule.c @@ -242,7 +242,7 @@ __reduce__ by itself doesn't support getting kwargs in the unpickle operation so we define a __setstate__ that replaces all the information about the partial. If we only replaced part of it someone would use - it as a hook to do stange things. + it as a hook to do strange things. */ static PyObject * diff --git a/Modules/_io/iobase.c b/Modules/_io/iobase.c --- a/Modules/_io/iobase.c +++ b/Modules/_io/iobase.c @@ -50,7 +50,7 @@ "stream.\n" "\n" "IOBase also supports the :keyword:`with` statement. In this example,\n" - "fp is closed after the suite of the with statment is complete:\n" + "fp is closed after the suite of the with statement is complete:\n" "\n" "with open('spam.txt', 'r') as fp:\n" " fp.write('Spam and eggs!')\n"); diff --git a/Modules/_io/stringio.c b/Modules/_io/stringio.c --- a/Modules/_io/stringio.c +++ b/Modules/_io/stringio.c @@ -157,7 +157,7 @@ 0 lo string_size hi | |<---used--->|<----------available----------->| | | <--to pad-->|<---to write---> | - 0 buf positon + 0 buf position */ memset(self->buf + self->string_size, '\0', diff --git a/Modules/_pickle.c b/Modules/_pickle.c --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -6259,7 +6259,7 @@ goto error; if (!PyDict_CheckExact(name_mapping_3to2)) { PyErr_Format(PyExc_RuntimeError, - "_compat_pickle.REVERSE_NAME_MAPPING shouldbe a dict, " + "_compat_pickle.REVERSE_NAME_MAPPING should be a dict, " "not %.200s", Py_TYPE(name_mapping_3to2)->tp_name); goto error; } diff --git a/Modules/_sqlite/connection.h b/Modules/_sqlite/connection.h --- a/Modules/_sqlite/connection.h +++ b/Modules/_sqlite/connection.h @@ -55,7 +55,7 @@ /* None for autocommit, otherwise a PyString with the isolation level */ PyObject* isolation_level; - /* NULL for autocommit, otherwise a string with the BEGIN statment; will be + /* NULL for autocommit, otherwise a string with the BEGIN statement; will be * freed in connection destructor */ char* begin_statement; diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c --- a/Modules/cmathmodule.c +++ b/Modules/cmathmodule.c @@ -23,7 +23,7 @@ /* CM_LARGE_DOUBLE is used to avoid spurious overflow in the sqrt, log, inverse trig and inverse hyperbolic trig functions. Its log is used in the - evaluation of exp, cos, cosh, sin, sinh, tan, and tanh to avoid unecessary + evaluation of exp, cos, cosh, sin, sinh, tan, and tanh to avoid unnecessary overflow. */ diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2242,7 +2242,7 @@ * This is the guts of the recv() and recv_into() methods, which reads into a * char buffer. If you have any inc/dec ref to do to the objects that contain * the buffer, do it in the caller. This function returns the number of bytes - * succesfully read. If there was an error, it returns -1. Note that it is + * successfully read. If there was an error, it returns -1. Note that it is * also possible that we return a number of bytes smaller than the request * bytes. */ @@ -2446,7 +2446,7 @@ * This is the guts of the recvfrom() and recvfrom_into() methods, which reads * into a char buffer. If you have any inc/def ref to do to the objects that * contain the buffer, do it in the caller. This function returns the number - * of bytes succesfully read. If there was an error, it returns -1. Note + * of bytes successfully read. If there was an error, it returns -1. Note * that it is also possible that we return a number of bytes smaller than the * request bytes. * @@ -2541,9 +2541,9 @@ if (outlen != recvlen) { /* We did not read as many bytes as we anticipated, resize the - string if possible and be succesful. */ + string if possible and be successful. */ if (_PyBytes_Resize(&buf, outlen) < 0) - /* Oopsy, not so succesful after all. */ + /* Oopsy, not so successful after all. */ goto finally; } @@ -4372,7 +4372,7 @@ return 0; /* Failure */ #else - /* No need to initialise sockets with GCC/EMX */ + /* No need to initialize sockets with GCC/EMX */ return 1; /* Success */ #endif } @@ -4406,7 +4406,7 @@ "socket.py" which implements some additional functionality. The import of "_socket" may fail with an ImportError exception if os-specific initialization fails. On Windows, this does WINSOCK - initialization. When WINSOCK is initialized succesfully, a call to + initialization. When WINSOCK is initialized successfully, a call to WSACleanup() is scheduled to be made at exit time. */ diff --git a/Modules/timemodule.c b/Modules/timemodule.c --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -697,7 +697,7 @@ buf.tm_wday = -1; /* sentinel; original value ignored */ tt = mktime(&buf); /* Return value of -1 does not necessarily mean an error, but tm_wday - * cannot remain set to -1 if mktime succedded. */ + * cannot remain set to -1 if mktime succeeded. */ if (tt == (time_t)(-1) && buf.tm_wday == -1) { PyErr_SetString(PyExc_OverflowError, "mktime argument out of range"); diff --git a/Modules/zipimport.c b/Modules/zipimport.c --- a/Modules/zipimport.c +++ b/Modules/zipimport.c @@ -1120,7 +1120,7 @@ } /* Given a path to a .pyc or .pyo file in the archive, return the - modifictaion time of the matching .py file, or 0 if no source + modification time of the matching .py file, or 0 if no source is available. */ static time_t get_mtime_of_source(ZipImporter *self, char *path) diff --git a/Objects/dictobject.c b/Objects/dictobject.c --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -2080,7 +2080,7 @@ assert(d->ma_table == NULL && d->ma_fill == 0 && d->ma_used == 0); INIT_NONZERO_DICT_SLOTS(d); d->ma_lookup = lookdict_unicode; - /* The object has been implicitely tracked by tp_alloc */ + /* The object has been implicitly tracked by tp_alloc */ if (type == &PyDict_Type) _PyObject_GC_UNTRACK(d); #ifdef SHOW_CONVERSION_COUNTS diff --git a/Objects/listobject.c b/Objects/listobject.c --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -11,7 +11,7 @@ /* Ensure ob_item has room for at least newsize elements, and set * ob_size to newsize. If newsize > ob_size on entry, the content * of the new slots at exit is undefined heap trash; it's the caller's - * responsiblity to overwrite them with sane values. + * responsibility to overwrite them with sane values. * The number of allocated elements may grow, shrink, or stay the same. * Failure is impossible if newsize <= self.allocated on entry, although * that partly relies on an assumption that the system realloc() never diff --git a/Objects/longobject.c b/Objects/longobject.c --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -709,7 +709,7 @@ is_signed = *pendbyte >= 0x80; /* Compute numsignificantbytes. This consists of finding the most - significant byte. Leading 0 bytes are insignficant if the number + significant byte. Leading 0 bytes are insignificant if the number is positive, and leading 0xff bytes if negative. */ { size_t i; diff --git a/Objects/typeobject.c b/Objects/typeobject.c --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -1008,7 +1008,7 @@ self has a refcount of 0, and if gc ever gets its hands on it (which can happen if any weakref callback gets invoked), it looks like trash to gc too, and gc also tries to delete self - then. But we're already deleting self. Double dealloction is + then. But we're already deleting self. Double deallocation is a subtle disaster. Q. Why the bizarre (net-zero) manipulation of @@ -5955,7 +5955,7 @@ slots compete for the same descriptor (for example both sq_item and mp_subscript generate a __getitem__ descriptor). - In the latter case, the first slotdef entry encoutered wins. Since + In the latter case, the first slotdef entry encountered wins. Since slotdef entries are sorted by the offset of the slot in the PyHeapTypeObject, this gives us some control over disambiguating between competing slots: the members of PyHeapTypeObject are listed diff --git a/PC/bdist_wininst/extract.c b/PC/bdist_wininst/extract.c --- a/PC/bdist_wininst/extract.c +++ b/PC/bdist_wininst/extract.c @@ -54,7 +54,7 @@ return TRUE; } -/* XXX Should better explicitely specify +/* XXX Should better explicitly specify * uncomp_size and file_times instead of pfhdr! */ char *map_new_file(DWORD flags, char *filename, @@ -164,7 +164,7 @@ zstream.avail_out = uncomp_size; /* Apparently an undocumented feature of zlib: Set windowsize - to negative values to supress the gzip header and be compatible with + to negative values to suppress the gzip header and be compatible with zip! */ result = TRUE; if (Z_OK != (x = inflateInit2(&zstream, -15))) { diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c --- a/PC/bdist_wininst/install.c +++ b/PC/bdist_wininst/install.c @@ -148,7 +148,7 @@ the permissions of the current user. */ HKEY hkey_root = (HKEY)-1; -BOOL success; /* Installation successfull? */ +BOOL success; /* Installation successful? */ char *failure_reason = NULL; HANDLE hBitmap; @@ -797,7 +797,7 @@ tempname = tempnam(NULL, NULL); // We use a static CRT while the Python version we load uses - // the CRT from one of various possibile DLLs. As a result we + // the CRT from one of various possible DLLs. As a result we // need to redirect the standard handles using the API rather // than the CRT. redirected = CreateFile( diff --git a/PC/os2emx/dlfcn.c b/PC/os2emx/dlfcn.c --- a/PC/os2emx/dlfcn.c +++ b/PC/os2emx/dlfcn.c @@ -188,7 +188,7 @@ return NULL; } -/* free dynamicaly-linked library */ +/* free dynamically-linked library */ int dlclose(void *handle) { int rc; diff --git a/PC/os2emx/dlfcn.h b/PC/os2emx/dlfcn.h --- a/PC/os2emx/dlfcn.h +++ b/PC/os2emx/dlfcn.h @@ -42,7 +42,7 @@ /* return a pointer to the `symbol' in DLL */ void *dlsym(void *handle, char *symbol); -/* free dynamicaly-linked library */ +/* free dynamically-linked library */ int dlclose(void *handle); /* return a string describing last occurred dl error */ diff --git a/Python/ceval.c b/Python/ceval.c --- a/Python/ceval.c +++ b/Python/ceval.c @@ -26,7 +26,7 @@ typedef unsigned long long uint64; -/* PowerPC suppport. +/* PowerPC support. "__ppc__" appears to be the preprocessor definition to detect on OS X, whereas "__powerpc__" appears to be the correct one for Linux with GCC */ @@ -1266,7 +1266,7 @@ if (_Py_atomic_load_relaxed(&eval_breaker)) { if (*next_instr == SETUP_FINALLY) { /* Make the last opcode before - a try: finally: block uninterruptable. */ + a try: finally: block uninterruptible. */ goto fast_next_opcode; } tstate->tick_counter++; diff --git a/Python/pystate.c b/Python/pystate.c --- a/Python/pystate.c +++ b/Python/pystate.c @@ -512,7 +512,7 @@ /* for i in all interpreters: * for t in all of i's thread states: * if t's frame isn't NULL, map t's id to its frame - * Because these lists can mutute even when the GIL is held, we + * Because these lists can mutate even when the GIL is held, we * need to grab head_mutex for the duration. */ HEAD_LOCK(); diff --git a/Python/thread.c b/Python/thread.c --- a/Python/thread.c +++ b/Python/thread.c @@ -40,7 +40,7 @@ #endif /* Check if we're running on HP-UX and _SC_THREADS is defined. If so, then - enough of the Posix threads package is implimented to support python + enough of the Posix threads package is implemented to support python threads. This is valid for HP-UX 11.23 running on an ia64 system. If needed, add diff --git a/Tools/freeze/checkextensions_win32.py b/Tools/freeze/checkextensions_win32.py --- a/Tools/freeze/checkextensions_win32.py +++ b/Tools/freeze/checkextensions_win32.py @@ -7,7 +7,7 @@ we get it just right, a specific freeze application may have specific compiler options anyway (eg, to enable or disable specific functionality) -So my basic stragtegy is: +So my basic strategy is: * Have some Windows INI files which "describe" one or more extension modules. (Freeze comes with a default one for all known modules - but you can specify diff --git a/Tools/scripts/fixcid.py b/Tools/scripts/fixcid.py --- a/Tools/scripts/fixcid.py +++ b/Tools/scripts/fixcid.py @@ -188,7 +188,7 @@ except os.error as msg: err(filename + ': rename failed (' + str(msg) + ')\n') return 1 - # Return succes + # Return success return 0 # Tokenizing ANSI C (partly) diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py --- a/Tools/unicode/makeunicodedata.py +++ b/Tools/unicode/makeunicodedata.py @@ -1002,7 +1002,7 @@ poly = size + poly break else: - raise AssertionError("ran out of polynominals") + raise AssertionError("ran out of polynomials") print(size, "slots in hash table") diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -1017,8 +1017,8 @@ if sys.platform == 'darwin': # In every directory on the search path search for a dynamic # library and then a static library, instead of first looking - # for dynamic libraries on the entiry path. - # This way a staticly linked custom sqlite gets picked up + # for dynamic libraries on the entire path. + # This way a statically linked custom sqlite gets picked up # before the dynamic library in /usr/lib. sqlite_extra_link_args = ('-Wl,-search_paths_first',) else: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 19:21:13 2011 From: python-checkins at python.org (ross.lagerwall) Date: Thu, 17 Mar 2011 19:21:13 +0100 Subject: [Python-checkins] cpython: Issue #10812: Add some extra posix functions to the os module. Message-ID: http://hg.python.org/cpython/rev/525320df8afb changeset: 68657:525320df8afb user: Ross Lagerwall date: Thu Mar 17 20:20:30 2011 +0200 summary: Issue #10812: Add some extra posix functions to the os module. files: Doc/library/os.rst Lib/test/test_posix.py Misc/NEWS Modules/posixmodule.c configure configure.in pyconfig.h.in diff --git a/Doc/library/os.rst b/Doc/library/os.rst --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -743,6 +743,17 @@ .. versionadded:: 3.3 +.. function:: fexecve(fd, args, env) + + Execute the program specified by a file descriptor *fd* with arguments given + by *args* and environment given by *env*, replacing the current process. + *args* and *env* are given as in :func:`execve`. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: fpathconf(fd, name) Return system configuration information relevant to an open file. *name* @@ -819,6 +830,45 @@ .. versionadded:: 3.3 +.. function:: futimens(fd, (atime_sec, atime_nsec), (mtime_sec, mtime_nsec)) + futimens(fd, None, None) + + Updates the timestamps of a file specified by the file descriptor *fd*, with + nanosecond precision. + The second form sets *atime* and *mtime* to the current time. + If *atime_nsec* or *mtime_nsec* is specified as :data:`UTIME_NOW`, the corresponding + timestamp is updated to the current time. + If *atime_nsec* or *mtime_nsec* is specified as :data:`UTIME_OMIT`, the corresponding + timestamp is not updated. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. data:: UTIME_NOW + UTIME_OMIT + + Flags used with :func:`futimens` to specify that the timestamp must be + updated either to the current time or not updated at all. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: futimes(fd, (atime, mtime)) + futimes(fd, None) + + Set the access and modified time of the file specified by the file + descriptor *fd* to the given values. If the second form is used, set the + access and modified times to the current time. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: isatty(fd) Return ``True`` if the file descriptor *fd* is open and connected to a @@ -841,6 +891,30 @@ .. versionadded:: 3.3 +.. function:: lockf(fd, cmd, len) + + Apply, test or remove a POSIX lock on an open file descriptor. + *fd* is an open file descriptor. + *cmd* specifies the command to use - one of :data:`F_LOCK`, :data:`F_TLOCK`, + :data:`F_ULOCK` or :data:`F_TEST`. + *len* specifies the section of the file to lock. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. data:: F_LOCK + F_TLOCK + F_ULOCK + F_TEST + + Flags that specify what action :func:`lockf` will take. + + Availability: Unix. + + .. versionadded:: 3.3 + .. function:: lseek(fd, pos, how) Set the current position of file descriptor *fd* to position *pos*, modified @@ -945,6 +1019,66 @@ Availability: Unix, Windows. +.. function:: posix_fallocate(fd, offset, len) + + Ensures that enough disk space is allocated for the file specified by *fd* + starting from *offset* and continuing for *len* bytes. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: posix_fadvise(fd, offset, len, advice) + + Announces an intention to access data in a specific pattern thus allowing + the kernel to make optimizations. + The advice applies to the region of the file specified by *fd* starting at + *offset* and continuing for *len* bytes. + *advice* is one of :data:`POSIX_FADV_NORMAL`, :data:`POSIX_FADV_SEQUENTIAL`, + :data:`POSIX_FADV_RANDOM`, :data:`POSIX_FADV_NOREUSE`, + :data:`POSIX_FADV_WILLNEED` or :data:`POSIX_FADV_DONTNEED`. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. data:: POSIX_FADV_NORMAL + POSIX_FADV_SEQUENTIAL + POSIX_FADV_RANDOM + POSIX_FADV_NOREUSE + POSIX_FADV_WILLNEED + POSIX_FADV_DONTNEED + + Flags that can be used in *advice* in :func:`posix_fadvise` that specify + the access pattern that is likely to be used. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: pread(fd, buffersize, offset) + + Read from a file descriptor, *fd*, at a position of *offset*. It will read up + to *buffersize* number of bytes. The file offset remains unchanged. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: pwrite(fd, string, offset) + + Write *string* to a file descriptor, *fd*, from *offset*, leaving the file + offset unchanged. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: read(fd, n) Read at most *n* bytes from file descriptor *fd*. Return a bytestring containing the @@ -1038,6 +1172,17 @@ .. versionadded:: 3.3 +.. function:: readv(fd, buffers) + + Read from a file descriptor into a number of writable buffers. *buffers* is + an arbitrary sequence of writable buffers. Returns the total number of bytes + read. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: tcgetpgrp(fd) Return the process group associated with the terminal given by *fd* (an open @@ -1111,6 +1256,17 @@ :meth:`~file.write` method. +.. function:: writev(fd, buffers) + + Write the the contents of *buffers* to file descriptor *fd*, where *buffers* + is an arbitrary sequence of buffers. + Returns the total number of bytes written. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. _open-constants: ``open()`` flag constants @@ -1384,6 +1540,17 @@ Added support for Windows 6.0 (Vista) symbolic links. +.. function:: lutimes(path, (atime, mtime)) + lutimes(path, None) + + Like :func:`utime`, but if *path* is a symbolic link, it is not + dereferenced. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: mkfifo(path[, mode]) Create a FIFO (a named pipe) named *path* with numeric mode *mode*. The @@ -1727,6 +1894,25 @@ Added support for Windows 6.0 (Vista) symbolic links. +.. function:: sync() + + Force write of everything to disk. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: truncate(path, length) + + Truncate the file corresponding to *path*, so that it is at most + *length* bytes in size. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: unlink(path) Remove (delete) the file *path*. This is the same function as @@ -2306,6 +2492,58 @@ Availability: Unix. +.. function:: waitid(idtype, id, options) + + Wait for the completion of one or more child processes. + *idtype* can be :data:`P_PID`, :data:`P_PGID` or :data:`P_ALL`. + *id* specifies the pid to wait on. + *options* is constructed from the ORing of one or more of :data:`WEXITED`, + :data:`WSTOPPED` or :data:`WCONTINUED` and additionally may be ORed with + :data:`WNOHANG` or :data:`WNOWAIT`. The return value is an object + representing the data contained in the :c:type:`siginfo_t` structure, namely: + :attr:`si_pid`, :attr:`si_uid`, :attr:`si_signo`, :attr:`si_status`, + :attr:`si_code` or ``None`` if :data:`WNOHANG` is specified and there are no + children in a waitable state. + + Availability: Unix. + + .. versionadded:: 3.3 + +.. data:: P_PID + P_PGID + P_ALL + + These are the possible values for *idtype* in :func:`waitid`. They affect + how *id* is interpreted. + + Availability: Unix. + + .. versionadded:: 3.3 + +.. data:: WEXITED + WSTOPPED + WNOWAIT + + Flags that can be used in *options* in :func:`waitid` that specify what + child signal to wait for. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. data:: CLD_EXITED + CLD_DUMPED + CLD_TRAPPED + CLD_CONTINUED + + These are the possible values for :attr:`si_code` in the result returned by + :func:`waitid`. + + Availability: Unix. + + .. versionadded:: 3.3 + .. function:: waitpid(pid, options) diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -37,7 +37,7 @@ NO_ARG_FUNCTIONS = [ "ctermid", "getcwd", "getcwdb", "uname", "times", "getloadavg", "getegid", "geteuid", "getgid", "getgroups", - "getpid", "getpgrp", "getppid", "getuid", + "getpid", "getpgrp", "getppid", "getuid", "sync", ] for name in NO_ARG_FUNCTIONS: @@ -132,6 +132,156 @@ finally: fp.close() + @unittest.skipUnless(hasattr(posix, 'truncate'), "test needs posix.truncate()") + def test_truncate(self): + with open(support.TESTFN, 'w') as fp: + fp.write('test') + fp.flush() + posix.truncate(support.TESTFN, 0) + + @unittest.skipUnless(hasattr(posix, 'fexecve'), "test needs posix.fexecve()") + @unittest.skipUnless(hasattr(os, 'fork'), "test needs os.fork()") + @unittest.skipUnless(hasattr(os, 'wait'), "test needs os.wait()") + def test_fexecve(self): + fp = os.open(sys.executable, os.O_RDONLY) + try: + pid = os.fork() + if pid == 0: + os.chdir(os.path.split(sys.executable)[0]) + posix.fexecve(fp, [sys.executable, '-c', 'pass'], os.environ) + else: + self.assertEqual(os.wait(), (pid, 0)) + finally: + os.close(fp) + + @unittest.skipUnless(hasattr(posix, 'waitid'), "test needs posix.waitid()") + @unittest.skipUnless(hasattr(os, 'fork'), "test needs os.fork()") + def test_waitid(self): + pid = os.fork() + if pid == 0: + os.chdir(os.path.split(sys.executable)[0]) + posix.execve(sys.executable, [sys.executable, '-c', 'pass'], os.environ) + else: + res = posix.waitid(posix.P_PID, pid, posix.WEXITED) + self.assertEqual(pid, res.si_pid) + + @unittest.skipUnless(hasattr(posix, 'lockf'), "test needs posix.lockf()") + def test_lockf(self): + fd = os.open(support.TESTFN, os.O_WRONLY | os.O_CREAT) + try: + os.write(fd, b'test') + os.lseek(fd, 0, os.SEEK_SET) + posix.lockf(fd, posix.F_LOCK, 4) + # section is locked + posix.lockf(fd, posix.F_ULOCK, 4) + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'pread'), "test needs posix.pread()") + def test_pread(self): + fd = os.open(support.TESTFN, os.O_RDWR | os.O_CREAT) + try: + os.write(fd, b'test') + os.lseek(fd, 0, os.SEEK_SET) + self.assertEqual(b'es', posix.pread(fd, 2, 1)) + # the first pread() shoudn't disturb the file offset + self.assertEqual(b'te', posix.read(fd, 2)) + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'pwrite'), "test needs posix.pwrite()") + def test_pwrite(self): + fd = os.open(support.TESTFN, os.O_RDWR | os.O_CREAT) + try: + os.write(fd, b'test') + os.lseek(fd, 0, os.SEEK_SET) + posix.pwrite(fd, b'xx', 1) + self.assertEqual(b'txxt', posix.read(fd, 4)) + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'posix_fallocate'), + "test needs posix.posix_fallocate()") + def test_posix_fallocate(self): + fd = os.open(support.TESTFN, os.O_WRONLY | os.O_CREAT) + try: + posix.posix_fallocate(fd, 0, 10) + except OSError as inst: + # issue10812, ZFS doesn't appear to support posix_fallocate, + # so skip Solaris-based since they are likely to have ZFS. + if inst.errno != errno.EINVAL or not sys.platform.startswith("sunos"): + raise + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'posix_fadvise'), + "test needs posix.posix_fadvise()") + def test_posix_fadvise(self): + fd = os.open(support.TESTFN, os.O_RDONLY) + try: + posix.posix_fadvise(fd, 0, 0, posix.POSIX_FADV_WILLNEED) + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'futimes'), "test needs posix.futimes()") + def test_futimes(self): + now = time.time() + fd = os.open(support.TESTFN, os.O_RDONLY) + try: + posix.futimes(fd, None) + self.assertRaises(TypeError, posix.futimes, fd, (None, None)) + self.assertRaises(TypeError, posix.futimes, fd, (now, None)) + self.assertRaises(TypeError, posix.futimes, fd, (None, now)) + posix.futimes(fd, (int(now), int(now))) + posix.futimes(fd, (now, now)) + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'lutimes'), "test needs posix.lutimes()") + def test_lutimes(self): + now = time.time() + posix.lutimes(support.TESTFN, None) + self.assertRaises(TypeError, posix.lutimes, support.TESTFN, (None, None)) + self.assertRaises(TypeError, posix.lutimes, support.TESTFN, (now, None)) + self.assertRaises(TypeError, posix.lutimes, support.TESTFN, (None, now)) + posix.lutimes(support.TESTFN, (int(now), int(now))) + posix.lutimes(support.TESTFN, (now, now)) + + @unittest.skipUnless(hasattr(posix, 'futimens'), "test needs posix.futimens()") + def test_futimens(self): + now = time.time() + fd = os.open(support.TESTFN, os.O_RDONLY) + try: + self.assertRaises(TypeError, posix.futimens, fd, (None, None), (None, None)) + self.assertRaises(TypeError, posix.futimens, fd, (now, 0), None) + self.assertRaises(TypeError, posix.futimens, fd, None, (now, 0)) + posix.futimens(fd, (int(now), int((now - int(now)) * 1e9)), + (int(now), int((now - int(now)) * 1e9))) + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'writev'), "test needs posix.writev()") + def test_writev(self): + fd = os.open(support.TESTFN, os.O_RDWR | os.O_CREAT) + try: + os.writev(fd, (b'test1', b'tt2', b't3')) + os.lseek(fd, 0, os.SEEK_SET) + self.assertEqual(b'test1tt2t3', posix.read(fd, 10)) + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'readv'), "test needs posix.readv()") + def test_readv(self): + fd = os.open(support.TESTFN, os.O_RDWR | os.O_CREAT) + try: + os.write(fd, b'test1tt2t3') + os.lseek(fd, 0, os.SEEK_SET) + buf = [bytearray(i) for i in [5, 3, 2]] + self.assertEqual(posix.readv(fd, buf), 10) + self.assertEqual([b'test1', b'tt2', b't3'], [bytes(i) for i in buf]) + finally: + os.close(fd) + def test_dup(self): if hasattr(posix, 'dup'): fp = open(support.TESTFN) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,7 @@ Library ------- +- Issue #10812: Add some extra posix functions to the os module. - Issue #10979: unittest stdout buffering now works with class and module setup and teardown. diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -1503,6 +1503,33 @@ 10 }; +#if defined(HAVE_WAITID) && !defined(__APPLE__) +PyDoc_STRVAR(waitid_result__doc__, +"waitid_result: Result from waitid.\n\n\ +This object may be accessed either as a tuple of\n\ + (si_pid, si_uid, si_signo, si_status, si_code),\n\ +or via the attributes si_pid, si_uid, and so on.\n\ +\n\ +See os.waitid for more information."); + +static PyStructSequence_Field waitid_result_fields[] = { + {"si_pid", }, + {"si_uid", }, + {"si_signo", }, + {"si_status", }, + {"si_code", }, + {0} +}; + +static PyStructSequence_Desc waitid_result_desc = { + "waitid_result", /* name */ + waitid_result__doc__, /* doc */ + waitid_result_fields, + 5 +}; +static PyTypeObject WaitidResultType; +#endif + static int initialized; static PyTypeObject StatResultType; static PyTypeObject StatVFSResultType; @@ -2102,6 +2129,21 @@ } #endif /* HAVE_FSYNC */ +#ifdef HAVE_SYNC +PyDoc_STRVAR(posix_sync__doc__, +"sync()\n\n\ +Force write of everything to disk."); + +static PyObject * +posix_sync(PyObject *self, PyObject *noargs) +{ + Py_BEGIN_ALLOW_THREADS + sync(); + Py_END_ALLOW_THREADS + Py_RETURN_NONE; +} +#endif + #ifdef HAVE_FDATASYNC #ifdef __hpux @@ -3488,6 +3530,167 @@ #endif /* MS_WINDOWS */ } +#ifdef HAVE_FUTIMES +PyDoc_STRVAR(posix_futimes__doc__, +"futimes(fd, (atime, mtime))\n\ +futimes(fd, None)\n\n\ +Set the access and modified time of the file specified by the file\n\ +descriptor fd to the given values. If the second form is used, set the\n\ +access and modified times to the current time."); + +static PyObject * +posix_futimes(PyObject *self, PyObject *args) +{ + int res, fd; + PyObject* arg; + struct timeval buf[2]; + long ausec, musec; + + if (!PyArg_ParseTuple(args, "iO:futimes", &fd, &arg)) + return NULL; + + if (arg == Py_None) { + /* optional time values not given */ + Py_BEGIN_ALLOW_THREADS + res = futimes(fd, NULL); + Py_END_ALLOW_THREADS + } + else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) { + PyErr_SetString(PyExc_TypeError, + "futimes() arg 2 must be a tuple (atime, mtime)"); + return NULL; + } + else { + if (extract_time(PyTuple_GET_ITEM(arg, 0), + &(buf[0].tv_sec), &ausec) == -1) { + return NULL; + } + if (extract_time(PyTuple_GET_ITEM(arg, 1), + &(buf[1].tv_sec), &musec) == -1) { + return NULL; + } + buf[0].tv_usec = ausec; + buf[1].tv_usec = musec; + Py_BEGIN_ALLOW_THREADS + res = futimes(fd, buf); + Py_END_ALLOW_THREADS + } + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif + +#ifdef HAVE_LUTIMES +PyDoc_STRVAR(posix_lutimes__doc__, +"lutimes(path, (atime, mtime))\n\ +lutimes(path, None)\n\n\ +Like utime(), but if path is a symbolic link, it is not dereferenced."); + +static PyObject * +posix_lutimes(PyObject *self, PyObject *args) +{ + PyObject *opath, *arg; + const char *path; + int res; + struct timeval buf[2]; + long ausec, musec; + + if (!PyArg_ParseTuple(args, "O&O:lutimes", + PyUnicode_FSConverter, &opath, &arg)) + return NULL; + path = PyBytes_AsString(opath); + if (arg == Py_None) { + /* optional time values not given */ + Py_BEGIN_ALLOW_THREADS + res = lutimes(path, NULL); + Py_END_ALLOW_THREADS + } + else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) { + PyErr_SetString(PyExc_TypeError, + "lutimes() arg 2 must be a tuple (atime, mtime)"); + Py_DECREF(opath); + return NULL; + } + else { + if (extract_time(PyTuple_GET_ITEM(arg, 0), + &(buf[0].tv_sec), &ausec) == -1) { + Py_DECREF(opath); + return NULL; + } + if (extract_time(PyTuple_GET_ITEM(arg, 1), + &(buf[1].tv_sec), &musec) == -1) { + Py_DECREF(opath); + return NULL; + } + buf[0].tv_usec = ausec; + buf[1].tv_usec = musec; + Py_BEGIN_ALLOW_THREADS + res = lutimes(path, buf); + Py_END_ALLOW_THREADS + } + Py_DECREF(opath); + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif + +#ifdef HAVE_FUTIMENS +PyDoc_STRVAR(posix_futimens__doc__, +"futimens(fd, (atime_sec, atime_nsec), (mtime_sec, mtime_nsec))\n\ +futimens(fd, None, None)\n\n\ +Updates the timestamps of a file specified by the file descriptor fd, with\n\ +nanosecond precision.\n\ +The second form sets atime and mtime to the current time.\n\ +If *_nsec is specified as UTIME_NOW, the timestamp is updated to the\n\ +current time.\n\ +If *_nsec is specified as UTIME_OMIT, the timestamp is not updated."); + +static PyObject * +posix_futimens(PyObject *self, PyObject *args) +{ + int res, fd; + PyObject *atime, *mtime; + struct timespec buf[2]; + + if (!PyArg_ParseTuple(args, "iOO:futimens", + &fd, &atime, &mtime)) + return NULL; + if (atime == Py_None && mtime == Py_None) { + /* optional time values not given */ + Py_BEGIN_ALLOW_THREADS + res = futimens(fd, NULL); + Py_END_ALLOW_THREADS + } + else if (!PyTuple_Check(atime) || PyTuple_Size(atime) != 2) { + PyErr_SetString(PyExc_TypeError, + "futimens() arg 2 must be a tuple (atime_sec, atime_nsec)"); + return NULL; + } + else if (!PyTuple_Check(mtime) || PyTuple_Size(mtime) != 2) { + PyErr_SetString(PyExc_TypeError, + "futimens() arg 3 must be a tuple (mtime_sec, mtime_nsec)"); + return NULL; + } + else { + if (!PyArg_ParseTuple(atime, "ll:futimens", + &(buf[0].tv_sec), &(buf[0].tv_nsec))) { + return NULL; + } + if (!PyArg_ParseTuple(mtime, "ll:futimens", + &(buf[1].tv_sec), &(buf[1].tv_nsec))) { + return NULL; + } + Py_BEGIN_ALLOW_THREADS + res = futimens(fd, buf); + Py_END_ALLOW_THREADS + } + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif /* Process operations */ @@ -3532,79 +3735,7 @@ } #endif - -#ifdef HAVE_EXECV -PyDoc_STRVAR(posix_execv__doc__, -"execv(path, args)\n\n\ -Execute an executable path with arguments, replacing current process.\n\ -\n\ - path: path of executable file\n\ - args: tuple or list of strings"); - -static PyObject * -posix_execv(PyObject *self, PyObject *args) -{ - PyObject *opath; - char *path; - PyObject *argv; - char **argvlist; - Py_ssize_t i, argc; - PyObject *(*getitem)(PyObject *, Py_ssize_t); - - /* execv has two arguments: (path, argv), where - argv is a list or tuple of strings. */ - - if (!PyArg_ParseTuple(args, "O&O:execv", - PyUnicode_FSConverter, - &opath, &argv)) - return NULL; - path = PyBytes_AsString(opath); - if (PyList_Check(argv)) { - argc = PyList_Size(argv); - getitem = PyList_GetItem; - } - else if (PyTuple_Check(argv)) { - argc = PyTuple_Size(argv); - getitem = PyTuple_GetItem; - } - else { - PyErr_SetString(PyExc_TypeError, "execv() arg 2 must be a tuple or list"); - Py_DECREF(opath); - return NULL; - } - if (argc < 1) { - PyErr_SetString(PyExc_ValueError, "execv() arg 2 must not be empty"); - Py_DECREF(opath); - return NULL; - } - - argvlist = PyMem_NEW(char *, argc+1); - if (argvlist == NULL) { - Py_DECREF(opath); - return PyErr_NoMemory(); - } - for (i = 0; i < argc; i++) { - if (!fsconvert_strdup((*getitem)(argv, i), - &argvlist[i])) { - free_string_array(argvlist, i); - PyErr_SetString(PyExc_TypeError, - "execv() arg 2 must contain only strings"); - Py_DECREF(opath); - return NULL; - - } - } - argvlist[argc] = NULL; - - execv(path, argvlist); - - /* If we get here it's definitely an error */ - - free_string_array(argvlist, argc); - Py_DECREF(opath); - return posix_error(); -} - +#if defined(HAVE_EXECV) || defined (HAVE_FEXECVE) static char** parse_envlist(PyObject* env, Py_ssize_t *envc_ptr) { @@ -3686,6 +3817,84 @@ return NULL; } +static char** +parse_arglist(PyObject* argv, Py_ssize_t *argc) +{ + int i; + char **argvlist = PyMem_NEW(char *, *argc+1); + if (argvlist == NULL) { + PyErr_NoMemory(); + return NULL; + } + for (i = 0; i < *argc; i++) { + if (!fsconvert_strdup(PySequence_ITEM(argv, i), + &argvlist[i])) + { + *argc = i; + goto fail; + } + } + argvlist[*argc] = NULL; + return argvlist; +fail: + free_string_array(argvlist, *argc); + return NULL; +} +#endif + +#ifdef HAVE_EXECV +PyDoc_STRVAR(posix_execv__doc__, +"execv(path, args)\n\n\ +Execute an executable path with arguments, replacing current process.\n\ +\n\ + path: path of executable file\n\ + args: tuple or list of strings"); + +static PyObject * +posix_execv(PyObject *self, PyObject *args) +{ + PyObject *opath; + char *path; + PyObject *argv; + char **argvlist; + Py_ssize_t argc; + + /* execv has two arguments: (path, argv), where + argv is a list or tuple of strings. */ + + if (!PyArg_ParseTuple(args, "O&O:execv", + PyUnicode_FSConverter, + &opath, &argv)) + return NULL; + path = PyBytes_AsString(opath); + if (!PyList_Check(argv) && !PyTuple_Check(argv)) { + PyErr_SetString(PyExc_TypeError, + "execv() arg 2 must be a tuple or list"); + Py_DECREF(opath); + return NULL; + } + argc = PySequence_Size(argv); + if (argc < 1) { + PyErr_SetString(PyExc_ValueError, "execv() arg 2 must not be empty"); + Py_DECREF(opath); + return NULL; + } + + argvlist = parse_arglist(argv, &argc); + if (argvlist == NULL) { + Py_DECREF(opath); + return NULL; + } + + execv(path, argvlist); + + /* If we get here it's definitely an error */ + + free_string_array(argvlist, argc); + Py_DECREF(opath); + return posix_error(); +} + PyDoc_STRVAR(posix_execve__doc__, "execve(path, args, env)\n\n\ Execute a path with arguments and environment, replacing current process.\n\ @@ -3702,9 +3911,7 @@ PyObject *argv, *env; char **argvlist; char **envlist; - Py_ssize_t i, argc, envc; - PyObject *(*getitem)(PyObject *, Py_ssize_t); - Py_ssize_t lastarg = 0; + Py_ssize_t argc, envc; /* execve has three arguments: (path, argv, env), where argv is a list or tuple of strings and env is a dictionary @@ -3715,40 +3922,22 @@ &opath, &argv, &env)) return NULL; path = PyBytes_AsString(opath); - if (PyList_Check(argv)) { - argc = PyList_Size(argv); - getitem = PyList_GetItem; - } - else if (PyTuple_Check(argv)) { - argc = PyTuple_Size(argv); - getitem = PyTuple_GetItem; - } - else { + if (!PyList_Check(argv) && !PyTuple_Check(argv)) { PyErr_SetString(PyExc_TypeError, "execve() arg 2 must be a tuple or list"); goto fail_0; } + argc = PySequence_Size(argv); if (!PyMapping_Check(env)) { PyErr_SetString(PyExc_TypeError, "execve() arg 3 must be a mapping object"); goto fail_0; } - argvlist = PyMem_NEW(char *, argc+1); + argvlist = parse_arglist(argv, &argc); if (argvlist == NULL) { - PyErr_NoMemory(); goto fail_0; } - for (i = 0; i < argc; i++) { - if (!fsconvert_strdup((*getitem)(argv, i), - &argvlist[i])) - { - lastarg = i; - goto fail_1; - } - } - lastarg = argc; - argvlist[argc] = NULL; envlist = parse_envlist(env, &envc); if (envlist == NULL) @@ -3764,13 +3953,69 @@ PyMem_DEL(envlist[envc]); PyMem_DEL(envlist); fail_1: - free_string_array(argvlist, lastarg); + free_string_array(argvlist, argc); fail_0: Py_DECREF(opath); return NULL; } #endif /* HAVE_EXECV */ +#ifdef HAVE_FEXECVE +PyDoc_STRVAR(posix_fexecve__doc__, +"fexecve(fd, args, env)\n\n\ +Execute the program specified by a file descriptor with arguments and\n\ +environment, replacing the current process.\n\ +\n\ + fd: file descriptor of executable\n\ + args: tuple or list of arguments\n\ + env: dictionary of strings mapping to strings"); + +static PyObject * +posix_fexecve(PyObject *self, PyObject *args) +{ + int fd; + PyObject *argv, *env; + char **argvlist; + char **envlist; + Py_ssize_t argc, envc; + + if (!PyArg_ParseTuple(args, "iOO:fexecve", + &fd, &argv, &env)) + return NULL; + if (!PyList_Check(argv) && !PyTuple_Check(argv)) { + PyErr_SetString(PyExc_TypeError, + "fexecve() arg 2 must be a tuple or list"); + return NULL; + } + argc = PySequence_Size(argv); + if (!PyMapping_Check(env)) { + PyErr_SetString(PyExc_TypeError, + "fexecve() arg 3 must be a mapping object"); + return NULL; + } + + argvlist = parse_arglist(argv, &argc); + if (argvlist == NULL) + return NULL; + + envlist = parse_envlist(env, &envc); + if (envlist == NULL) + goto fail; + + fexecve(fd, argvlist, envlist); + + /* If we get here it's definitely an error */ + + (void) posix_error(); + + while (--envc >= 0) + PyMem_DEL(envlist[envc]); + PyMem_DEL(envlist); + fail: + free_string_array(argvlist, argc); + return NULL; +} +#endif /* HAVE_FEXECVE */ #ifdef HAVE_SPAWNV PyDoc_STRVAR(posix_spawnv__doc__, @@ -4337,6 +4582,7 @@ } #endif + #ifdef HAVE_GETEGID PyDoc_STRVAR(posix_getegid__doc__, "getegid() -> egid\n\n\ @@ -5127,6 +5373,55 @@ } #endif /* HAVE_WAIT4 */ +#if defined(HAVE_WAITID) && !defined(__APPLE__) +PyDoc_STRVAR(posix_waitid__doc__, +"waitid(idtype, id, options) -> waitid_result\n\n\ +Wait for the completion of one or more child processes.\n\n\ +idtype can be P_PID, P_PGID or P_ALL.\n\ +id specifies the pid to wait on.\n\ +options is constructed from the ORing of one or more of WEXITED, WSTOPPED\n\ +or WCONTINUED and additionally may be ORed with WNOHANG or WNOWAIT.\n\ +Returns either waitid_result or None if WNOHANG is specified and there are\n\ +no children in a waitable state."); + +static PyObject * +posix_waitid(PyObject *self, PyObject *args) +{ + PyObject *result; + idtype_t idtype; + id_t id; + int options, res; + siginfo_t si; + si.si_pid = 0; + if (!PyArg_ParseTuple(args, "i" _Py_PARSE_PID "i:waitid", &idtype, &id, &options)) + return NULL; + Py_BEGIN_ALLOW_THREADS + res = waitid(idtype, id, &si, options); + Py_END_ALLOW_THREADS + if (res == -1) + return posix_error(); + + if (si.si_pid == 0) + Py_RETURN_NONE; + + result = PyStructSequence_New(&WaitidResultType); + if (!result) + return NULL; + + PyStructSequence_SET_ITEM(result, 0, PyLong_FromPid(si.si_pid)); + PyStructSequence_SET_ITEM(result, 1, PyLong_FromPid(si.si_uid)); + PyStructSequence_SET_ITEM(result, 2, PyLong_FromLong((long)(si.si_signo))); + PyStructSequence_SET_ITEM(result, 3, PyLong_FromLong((long)(si.si_status))); + PyStructSequence_SET_ITEM(result, 4, PyLong_FromLong((long)(si.si_code))); + if (PyErr_Occurred()) { + Py_DECREF(result); + return NULL; + } + + return result; +} +#endif + #ifdef HAVE_WAITPID PyDoc_STRVAR(posix_waitpid__doc__, "waitpid(pid, options) -> (pid, status)\n\n\ @@ -5742,6 +6037,35 @@ return Py_None; } +#ifdef HAVE_LOCKF +PyDoc_STRVAR(posix_lockf__doc__, +"lockf(fd, cmd, len)\n\n\ +Apply, test or remove a POSIX lock on an open file descriptor.\n\n\ +fd is an open file descriptor.\n\ +cmd specifies the command to use - one of F_LOCK, F_TLOCK, F_ULOCK or\n\ +F_TEST.\n\ +len specifies the section of the file to lock."); + +static PyObject * +posix_lockf(PyObject *self, PyObject *args) +{ + int fd, cmd, res; + off_t len; + if (!PyArg_ParseTuple(args, "iiO&:lockf", + &fd, &cmd, _parse_off_t, &len)) + return NULL; + + Py_BEGIN_ALLOW_THREADS + res = lockf(fd, cmd, len); + Py_END_ALLOW_THREADS + + if (res < 0) + return posix_error(); + + Py_RETURN_NONE; +} +#endif + PyDoc_STRVAR(posix_lseek__doc__, "lseek(fd, pos, how) -> newpos\n\n\ @@ -5756,8 +6080,7 @@ #else off_t pos, res; #endif - PyObject *posobj; - if (!PyArg_ParseTuple(args, "iOi:lseek", &fd, &posobj, &how)) + if (!PyArg_ParseTuple(args, "iO&i:lseek", &fd, _parse_off_t, &pos, &how)) return NULL; #ifdef SEEK_SET /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */ @@ -5768,11 +6091,6 @@ } #endif /* SEEK_END */ -#if !defined(HAVE_LARGEFILE_SUPPORT) - pos = PyLong_AsLong(posobj); -#else - pos = PyLong_AsLongLong(posobj); -#endif if (PyErr_Occurred()) return NULL; @@ -5831,42 +6149,8 @@ return buffer; } - -PyDoc_STRVAR(posix_write__doc__, -"write(fd, string) -> byteswritten\n\n\ -Write a string to a file descriptor."); - -static PyObject * -posix_write(PyObject *self, PyObject *args) -{ - Py_buffer pbuf; - int fd; - Py_ssize_t size, len; - - if (!PyArg_ParseTuple(args, "iy*:write", &fd, &pbuf)) - return NULL; - if (!_PyVerify_fd(fd)) { - PyBuffer_Release(&pbuf); - return posix_error(); - } - len = pbuf.len; - Py_BEGIN_ALLOW_THREADS -#if defined(MS_WIN64) || defined(MS_WINDOWS) - if (len > INT_MAX) - len = INT_MAX; - size = write(fd, pbuf.buf, (int)len); -#else - size = write(fd, pbuf.buf, len); -#endif - Py_END_ALLOW_THREADS - PyBuffer_Release(&pbuf); - if (size < 0) - return posix_error(); - return PyLong_FromSsize_t(size); -} - -#ifdef HAVE_SENDFILE -#if defined(__FreeBSD__) || defined(__DragonFly__) || defined(__APPLE__) +#if (defined(HAVE_SENDFILE) && (defined(__FreeBSD__) || defined(__DragonFly__) \ + || defined(__APPLE__))) || defined(HAVE_READV) || defined(HAVE_WRITEV) static Py_ssize_t iov_setup(struct iovec **iov, Py_buffer **buf, PyObject *seq, int cnt, int type) { @@ -5917,6 +6201,117 @@ } #endif +#ifdef HAVE_READV +PyDoc_STRVAR(posix_readv__doc__, +"readv(fd, buffers) -> bytesread\n\n\ +Read from a file descriptor into a number of writable buffers. buffers\n\ +is an arbitrary sequence of writable buffers.\n\ +Returns the total number of bytes read."); + +static PyObject * +posix_readv(PyObject *self, PyObject *args) +{ + int fd, cnt; + Py_ssize_t n; + PyObject *seq; + struct iovec *iov; + Py_buffer *buf; + + if (!PyArg_ParseTuple(args, "iO:readv", &fd, &seq)) + return NULL; + if (!PySequence_Check(seq)) { + PyErr_SetString(PyExc_TypeError, + "readv() arg 2 must be a sequence"); + return NULL; + } + cnt = PySequence_Size(seq); + + if (!iov_setup(&iov, &buf, seq, cnt, PyBUF_WRITABLE)) + return NULL; + + Py_BEGIN_ALLOW_THREADS + n = readv(fd, iov, cnt); + Py_END_ALLOW_THREADS + + iov_cleanup(iov, buf, cnt); + return PyLong_FromSsize_t(n); +} +#endif + +#ifdef HAVE_PREAD +PyDoc_STRVAR(posix_pread__doc__, +"pread(fd, buffersize, offset) -> string\n\n\ +Read from a file descriptor, fd, at a position of offset. It will read up\n\ +to buffersize number of bytes. The file offset remains unchanged."); + +static PyObject * +posix_pread(PyObject *self, PyObject *args) +{ + int fd, size; + off_t offset; + Py_ssize_t n; + PyObject *buffer; + if (!PyArg_ParseTuple(args, "iiO&:pread", &fd, &size, _parse_off_t, &offset)) + return NULL; + + if (size < 0) { + errno = EINVAL; + return posix_error(); + } + buffer = PyBytes_FromStringAndSize((char *)NULL, size); + if (buffer == NULL) + return NULL; + if (!_PyVerify_fd(fd)) { + Py_DECREF(buffer); + return posix_error(); + } + Py_BEGIN_ALLOW_THREADS + n = pread(fd, PyBytes_AS_STRING(buffer), size, offset); + Py_END_ALLOW_THREADS + if (n < 0) { + Py_DECREF(buffer); + return posix_error(); + } + if (n != size) + _PyBytes_Resize(&buffer, n); + return buffer; +} +#endif + +PyDoc_STRVAR(posix_write__doc__, +"write(fd, string) -> byteswritten\n\n\ +Write a string to a file descriptor."); + +static PyObject * +posix_write(PyObject *self, PyObject *args) +{ + Py_buffer pbuf; + int fd; + Py_ssize_t size, len; + + if (!PyArg_ParseTuple(args, "iy*:write", &fd, &pbuf)) + return NULL; + if (!_PyVerify_fd(fd)) { + PyBuffer_Release(&pbuf); + return posix_error(); + } + len = pbuf.len; + Py_BEGIN_ALLOW_THREADS +#if defined(MS_WIN64) || defined(MS_WINDOWS) + if (len > INT_MAX) + len = INT_MAX; + size = write(fd, pbuf.buf, (int)len); +#else + size = write(fd, pbuf.buf, len); +#endif + Py_END_ALLOW_THREADS + PyBuffer_Release(&pbuf); + if (size < 0) + return posix_error(); + return PyLong_FromSsize_t(size); +} + +#ifdef HAVE_SENDFILE PyDoc_STRVAR(posix_sendfile__doc__, "sendfile(out, in, offset, nbytes) -> byteswritten\n\ sendfile(out, in, offset, nbytes, headers=None, trailers=None, flags=0)\n\ @@ -6150,6 +6545,73 @@ } #endif /* HAVE_PIPE */ +#ifdef HAVE_WRITEV +PyDoc_STRVAR(posix_writev__doc__, +"writev(fd, buffers) -> byteswritten\n\n\ +Write the contents of buffers to a file descriptor, where buffers is an\n\ +arbitrary sequence of buffers.\n\ +Returns the total bytes written."); + +static PyObject * +posix_writev(PyObject *self, PyObject *args) +{ + int fd, cnt; + Py_ssize_t res; + PyObject *seq; + struct iovec *iov; + Py_buffer *buf; + if (!PyArg_ParseTuple(args, "iO:writev", &fd, &seq)) + return NULL; + if (!PySequence_Check(seq)) { + PyErr_SetString(PyExc_TypeError, + "writev() arg 2 must be a sequence"); + return NULL; + } + cnt = PySequence_Size(seq); + + if (!iov_setup(&iov, &buf, seq, cnt, PyBUF_SIMPLE)) { + return NULL; + } + + Py_BEGIN_ALLOW_THREADS + res = writev(fd, iov, cnt); + Py_END_ALLOW_THREADS + + iov_cleanup(iov, buf, cnt); + return PyLong_FromSsize_t(res); +} +#endif + +#ifdef HAVE_PWRITE +PyDoc_STRVAR(posix_pwrite__doc__, +"pwrite(fd, string, offset) -> byteswritten\n\n\ +Write string to a file descriptor, fd, from offset, leaving the file\n\ +offset unchanged."); + +static PyObject * +posix_pwrite(PyObject *self, PyObject *args) +{ + Py_buffer pbuf; + int fd; + off_t offset; + Py_ssize_t size; + + if (!PyArg_ParseTuple(args, "iy*O&:pwrite", &fd, &pbuf, _parse_off_t, &offset)) + return NULL; + + if (!_PyVerify_fd(fd)) { + PyBuffer_Release(&pbuf); + return posix_error(); + } + Py_BEGIN_ALLOW_THREADS + size = pwrite(fd, pbuf.buf, (size_t)pbuf.len, offset); + Py_END_ALLOW_THREADS + PyBuffer_Release(&pbuf); + if (size < 0) + return posix_error(); + return PyLong_FromSsize_t(size); +} +#endif #ifdef HAVE_MKFIFO PyDoc_STRVAR(posix_mkfifo__doc__, @@ -6266,18 +6728,8 @@ int fd; off_t length; int res; - PyObject *lenobj; - - if (!PyArg_ParseTuple(args, "iO:ftruncate", &fd, &lenobj)) - return NULL; - -#if !defined(HAVE_LARGEFILE_SUPPORT) - length = PyLong_AsLong(lenobj); -#else - length = PyLong_Check(lenobj) ? - PyLong_AsLongLong(lenobj) : PyLong_AsLong(lenobj); -#endif - if (PyErr_Occurred()) + + if (!PyArg_ParseTuple(args, "iO&:ftruncate", &fd, _parse_off_t, &length)) return NULL; Py_BEGIN_ALLOW_THREADS @@ -6290,6 +6742,93 @@ } #endif +#ifdef HAVE_TRUNCATE +PyDoc_STRVAR(posix_truncate__doc__, +"truncate(path, length)\n\n\ +Truncate the file given by path to length bytes."); + +static PyObject * +posix_truncate(PyObject *self, PyObject *args) +{ + PyObject *opath; + const char *path; + off_t length; + int res; + + if (!PyArg_ParseTuple(args, "O&O&:truncate", + PyUnicode_FSConverter, &opath, _parse_off_t, &length)) + return NULL; + path = PyBytes_AsString(opath); + + Py_BEGIN_ALLOW_THREADS + res = truncate(path, length); + Py_END_ALLOW_THREADS + Py_DECREF(opath); + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif + +#ifdef HAVE_POSIX_FALLOCATE +PyDoc_STRVAR(posix_posix_fallocate__doc__, +"posix_fallocate(fd, offset, len)\n\n\ +Ensures that enough disk space is allocated for the file specified by fd\n\ +starting from offset and continuing for len bytes."); + +static PyObject * +posix_posix_fallocate(PyObject *self, PyObject *args) +{ + off_t len, offset; + int res, fd; + + if (!PyArg_ParseTuple(args, "iO&O&:posix_fallocate", + &fd, _parse_off_t, &offset, _parse_off_t, &len)) + return NULL; + + Py_BEGIN_ALLOW_THREADS + res = posix_fallocate(fd, offset, len); + Py_END_ALLOW_THREADS + if (res != 0) { + errno = res; + return posix_error(); + } + Py_RETURN_NONE; +} +#endif + +#ifdef HAVE_POSIX_FADVISE +PyDoc_STRVAR(posix_posix_fadvise__doc__, +"posix_fadvise(fd, offset, len, advice)\n\n\ +Announces an intention to access data in a specific pattern thus allowing\n\ +the kernel to make optimizations.\n\ +The advice applies to the region of the file specified by fd starting at\n\ +offset and continuing for len bytes.\n\ +advice is one of POSIX_FADV_NORMAL, POSIX_FADV_SEQUENTIAL,\n\ +POSIX_FADV_RANDOM, POSIX_FADV_NOREUSE, POSIX_FADV_WILLNEED or\n\ +POSIX_FADV_DONTNEED."); + +static PyObject * +posix_posix_fadvise(PyObject *self, PyObject *args) +{ + off_t len, offset; + int res, fd, advice; + + if (!PyArg_ParseTuple(args, "iO&O&i:posix_fadvise", + &fd, _parse_off_t, &offset, _parse_off_t, &len, &advice)) + return NULL; + + Py_BEGIN_ALLOW_THREADS + res = posix_fadvise(fd, offset, len, advice); + Py_END_ALLOW_THREADS + if (res != 0) { + errno = res; + return posix_error(); + } + Py_RETURN_NONE; +} +#endif + #ifdef HAVE_PUTENV PyDoc_STRVAR(posix_putenv__doc__, "putenv(key, value)\n\n\ @@ -8725,6 +9264,15 @@ {"unlink", posix_unlink, METH_VARARGS, posix_unlink__doc__}, {"remove", posix_unlink, METH_VARARGS, posix_remove__doc__}, {"utime", posix_utime, METH_VARARGS, posix_utime__doc__}, +#ifdef HAVE_FUTIMES + {"futimes", posix_futimes, METH_VARARGS, posix_futimes__doc__}, +#endif +#ifdef HAVE_LUTIMES + {"lutimes", posix_lutimes, METH_VARARGS, posix_lutimes__doc__}, +#endif +#ifdef HAVE_FUTIMENS + {"futimens", posix_futimens, METH_VARARGS, posix_futimens__doc__}, +#endif #ifdef HAVE_TIMES {"times", posix_times, METH_NOARGS, posix_times__doc__}, #endif /* HAVE_TIMES */ @@ -8733,6 +9281,9 @@ {"execv", posix_execv, METH_VARARGS, posix_execv__doc__}, {"execve", posix_execve, METH_VARARGS, posix_execve__doc__}, #endif /* HAVE_EXECV */ +#ifdef HAVE_FEXECVE + {"fexecve", posix_fexecve, METH_VARARGS, posix_fexecve__doc__}, +#endif #ifdef HAVE_SPAWNV {"spawnv", posix_spawnv, METH_VARARGS, posix_spawnv__doc__}, {"spawnve", posix_spawnve, METH_VARARGS, posix_spawnve__doc__}, @@ -8831,6 +9382,9 @@ #ifdef HAVE_WAIT4 {"wait4", posix_wait4, METH_VARARGS, posix_wait4__doc__}, #endif /* HAVE_WAIT4 */ +#if defined(HAVE_WAITID) && !defined(__APPLE__) + {"waitid", posix_waitid, METH_VARARGS, posix_waitid__doc__}, +#endif #if defined(HAVE_WAITPID) || defined(HAVE_CWAIT) {"waitpid", posix_waitpid, METH_VARARGS, posix_waitpid__doc__}, #endif /* HAVE_WAITPID */ @@ -8855,9 +9409,24 @@ {"device_encoding", device_encoding, METH_VARARGS, device_encoding__doc__}, {"dup", posix_dup, METH_VARARGS, posix_dup__doc__}, {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__}, +#ifdef HAVE_LOCKF + {"lockf", posix_lockf, METH_VARARGS, posix_lockf__doc__}, +#endif {"lseek", posix_lseek, METH_VARARGS, posix_lseek__doc__}, {"read", posix_read, METH_VARARGS, posix_read__doc__}, +#ifdef HAVE_READV + {"readv", posix_readv, METH_VARARGS, posix_readv__doc__}, +#endif +#ifdef HAVE_PREAD + {"pread", posix_pread, METH_VARARGS, posix_pread__doc__}, +#endif {"write", posix_write, METH_VARARGS, posix_write__doc__}, +#ifdef HAVE_WRITEV + {"writev", posix_writev, METH_VARARGS, posix_writev__doc__}, +#endif +#ifdef HAVE_PWRITE + {"pwrite", posix_pwrite, METH_VARARGS, posix_pwrite__doc__}, +#endif #ifdef HAVE_SENDFILE {"sendfile", (PyCFunction)posix_sendfile, METH_VARARGS | METH_KEYWORDS, posix_sendfile__doc__}, @@ -8881,6 +9450,15 @@ #ifdef HAVE_FTRUNCATE {"ftruncate", posix_ftruncate, METH_VARARGS, posix_ftruncate__doc__}, #endif +#ifdef HAVE_TRUNCATE + {"truncate", posix_truncate, METH_VARARGS, posix_truncate__doc__}, +#endif +#ifdef HAVE_POSIX_FALLOCATE + {"posix_fallocate", posix_posix_fallocate, METH_VARARGS, posix_posix_fallocate__doc__}, +#endif +#ifdef HAVE_POSIX_FADVISE + {"posix_fadvise", posix_posix_fadvise, METH_VARARGS, posix_posix_fadvise__doc__}, +#endif #ifdef HAVE_PUTENV {"putenv", posix_putenv, METH_VARARGS, posix_putenv__doc__}, #endif @@ -8894,6 +9472,9 @@ #ifdef HAVE_FSYNC {"fsync", posix_fsync, METH_O, posix_fsync__doc__}, #endif +#ifdef HAVE_SYNC + {"sync", posix_sync, METH_NOARGS, posix_sync__doc__}, +#endif #ifdef HAVE_FDATASYNC {"fdatasync", posix_fdatasync, METH_O, posix_fdatasync__doc__}, #endif @@ -9342,6 +9923,76 @@ if (ins(d, "SF_SYNC", (long)SF_SYNC)) return -1; #endif + /* constants for posix_fadvise */ +#ifdef POSIX_FADV_NORMAL + if (ins(d, "POSIX_FADV_NORMAL", (long)POSIX_FADV_NORMAL)) return -1; +#endif +#ifdef POSIX_FADV_SEQUENTIAL + if (ins(d, "POSIX_FADV_SEQUENTIAL", (long)POSIX_FADV_SEQUENTIAL)) return -1; +#endif +#ifdef POSIX_FADV_RANDOM + if (ins(d, "POSIX_FADV_RANDOM", (long)POSIX_FADV_RANDOM)) return -1; +#endif +#ifdef POSIX_FADV_NOREUSE + if (ins(d, "POSIX_FADV_NOREUSE", (long)POSIX_FADV_NOREUSE)) return -1; +#endif +#ifdef POSIX_FADV_WILLNEED + if (ins(d, "POSIX_FADV_WILLNEED", (long)POSIX_FADV_WILLNEED)) return -1; +#endif +#ifdef POSIX_FADV_DONTNEED + if (ins(d, "POSIX_FADV_DONTNEED", (long)POSIX_FADV_DONTNEED)) return -1; +#endif + + /* constants for waitid */ +#if defined(HAVE_SYS_WAIT_H) && defined(HAVE_WAITID) + if (ins(d, "P_PID", (long)P_PID)) return -1; + if (ins(d, "P_PGID", (long)P_PGID)) return -1; + if (ins(d, "P_ALL", (long)P_ALL)) return -1; +#endif +#ifdef WEXITED + if (ins(d, "WEXITED", (long)WEXITED)) return -1; +#endif +#ifdef WNOWAIT + if (ins(d, "WNOWAIT", (long)WNOWAIT)) return -1; +#endif +#ifdef WSTOPPED + if (ins(d, "WSTOPPED", (long)WSTOPPED)) return -1; +#endif +#ifdef CLD_EXITED + if (ins(d, "CLD_EXITED", (long)CLD_EXITED)) return -1; +#endif +#ifdef CLD_DUMPED + if (ins(d, "CLD_DUMPED", (long)CLD_DUMPED)) return -1; +#endif +#ifdef CLD_TRAPPED + if (ins(d, "CLD_TRAPPED", (long)CLD_TRAPPED)) return -1; +#endif +#ifdef CLD_CONTINUED + if (ins(d, "CLD_CONTINUED", (long)CLD_CONTINUED)) return -1; +#endif + + /* constants for lockf */ +#ifdef F_LOCK + if (ins(d, "F_LOCK", (long)F_LOCK)) return -1; +#endif +#ifdef F_TLOCK + if (ins(d, "F_TLOCK", (long)F_TLOCK)) return -1; +#endif +#ifdef F_ULOCK + if (ins(d, "F_ULOCK", (long)F_ULOCK)) return -1; +#endif +#ifdef F_TEST + if (ins(d, "F_TEST", (long)F_TEST)) return -1; +#endif + + /* constants for futimens */ +#ifdef UTIME_NOW + if (ins(d, "UTIME_NOW", (long)UTIME_NOW)) return -1; +#endif +#ifdef UTIME_OMIT + if (ins(d, "UTIME_OMIT", (long)UTIME_OMIT)) return -1; +#endif + #ifdef HAVE_SPAWNV #if defined(PYOS_OS2) && defined(PYCC_GCC) if (ins(d, "P_WAIT", (long)P_WAIT)) return -1; @@ -9441,6 +10092,11 @@ #endif if (!initialized) { +#if defined(HAVE_WAITID) && !defined(__APPLE__) + waitid_result_desc.name = MODNAME ".waitid_result"; + PyStructSequence_InitType(&WaitidResultType, &waitid_result_desc); +#endif + stat_result_desc.name = MODNAME ".stat_result"; stat_result_desc.fields[7].name = PyStructSequence_UnnamedField; stat_result_desc.fields[8].name = PyStructSequence_UnnamedField; @@ -9461,6 +10117,10 @@ # endif #endif } +#if defined(HAVE_WAITID) && !defined(__APPLE__) + Py_INCREF((PyObject*) &WaitidResultType); + PyModule_AddObject(m, "waitid_result", (PyObject*) &WaitidResultType); +#endif Py_INCREF((PyObject*) &StatResultType); PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType); Py_INCREF((PyObject*) &StatVFSResultType); diff --git a/configure b/configure --- a/configure +++ b/configure @@ -776,8 +776,7 @@ LDFLAGS LIBS CPPFLAGS -CPP -CPPFLAGS' +CPP' # Initialize some variables set by options. @@ -9251,19 +9250,21 @@ # checks for library functions for ac_func in alarm accept4 setitimer getitimer bind_textdomain_codeset chown \ clock confstr ctermid execv faccessat fchmod fchmodat fchown fchownat \ - fdopendir fork fpathconf fstatat ftime ftruncate futimesat \ + fexecve fdopendir fork fpathconf fstatat ftime ftruncate futimesat \ + futimens futimes \ gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \ getpriority getresuid getresgid getpwent getspnam getspent getsid getwd \ - initgroups kill killpg lchmod lchown linkat lstat mbrtowc mkdirat mkfifo \ + initgroups kill killpg lchmod lchown lockf linkat lstat lutimes mbrtowc mkdirat mkfifo \ mkfifoat mknod mknodat mktime mremap nice openat pathconf pause plock poll \ - pthread_init putenv readlink readlinkat realpath renameat \ + posix_fallocate posix_fadvise pread \ + pthread_init putenv pwrite readlink readlinkat readv realpath renameat \ select sem_open sem_timedwait sem_getvalue sem_unlink sendfile setegid seteuid \ setgid sethostname \ setlocale setregid setreuid setresuid setresgid setsid setpgid setpgrp setpriority setuid setvbuf \ - sigaction siginterrupt sigrelse snprintf strftime strlcpy symlinkat \ + sigaction siginterrupt sigrelse snprintf strftime strlcpy symlinkat sync \ sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \ - truncate uname unlinkat unsetenv utimensat utimes waitpid wait3 wait4 \ - wcscoll wcsftime wcsxfrm _getpty + truncate uname unlinkat unsetenv utimensat utimes waitid waitpid wait3 wait4 \ + wcscoll wcsftime wcsxfrm writev _getpty do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -2496,19 +2496,21 @@ # checks for library functions AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \ clock confstr ctermid execv faccessat fchmod fchmodat fchown fchownat \ - fdopendir fork fpathconf fstatat ftime ftruncate futimesat \ + fexecve fdopendir fork fpathconf fstatat ftime ftruncate futimesat \ + futimens futimes \ gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \ getpriority getresuid getresgid getpwent getspnam getspent getsid getwd \ - initgroups kill killpg lchmod lchown linkat lstat mbrtowc mkdirat mkfifo \ + initgroups kill killpg lchmod lchown lockf linkat lstat lutimes mbrtowc mkdirat mkfifo \ mkfifoat mknod mknodat mktime mremap nice openat pathconf pause plock poll \ - pthread_init putenv readlink readlinkat realpath renameat \ + posix_fallocate posix_fadvise pread \ + pthread_init putenv pwrite readlink readlinkat readv realpath renameat \ select sem_open sem_timedwait sem_getvalue sem_unlink sendfile setegid seteuid \ setgid sethostname \ setlocale setregid setreuid setresuid setresgid setsid setpgid setpgrp setpriority setuid setvbuf \ - sigaction siginterrupt sigrelse snprintf strftime strlcpy symlinkat \ + sigaction siginterrupt sigrelse snprintf strftime strlcpy symlinkat sync \ sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \ - truncate uname unlinkat unsetenv utimensat utimes waitpid wait3 wait4 \ - wcscoll wcsftime wcsxfrm _getpty) + truncate uname unlinkat unsetenv utimensat utimes waitid waitpid wait3 wait4 \ + wcscoll wcsftime wcsxfrm writev _getpty) # For some functions, having a definition is not sufficient, since # we want to take their address. diff --git a/pyconfig.h.in b/pyconfig.h.in --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -232,6 +232,9 @@ /* Define to 1 if you have the `fdopendir' function. */ #undef HAVE_FDOPENDIR +/* Define to 1 if you have the `fexecve' function. */ +#undef HAVE_FEXECVE + /* Define to 1 if you have the `finite' function. */ #undef HAVE_FINITE @@ -274,6 +277,12 @@ /* Define to 1 if you have the `ftruncate' function. */ #undef HAVE_FTRUNCATE +/* Define to 1 if you have the `futimens' function. */ +#undef HAVE_FUTIMENS + +/* Define to 1 if you have the `futimes' function. */ +#undef HAVE_FUTIMES + /* Define to 1 if you have the `futimesat' function. */ #undef HAVE_FUTIMESAT @@ -461,6 +470,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_LINUX_TIPC_H +/* Define to 1 if you have the `lockf' function. */ +#undef HAVE_LOCKF + /* Define to 1 if you have the `log1p' function. */ #undef HAVE_LOG1P @@ -473,6 +485,9 @@ /* Define to 1 if you have the `lstat' function. */ #undef HAVE_LSTAT +/* Define to 1 if you have the `lutimes' function. */ +#undef HAVE_LUTIMES + /* Define this if you have the makedev macro. */ #undef HAVE_MAKEDEV @@ -545,6 +560,15 @@ /* Define to 1 if you have the header file. */ #undef HAVE_POLL_H +/* Define to 1 if you have the `posix_fadvise' function. */ +#undef HAVE_POSIX_FADVISE + +/* Define to 1 if you have the `posix_fallocate' function. */ +#undef HAVE_POSIX_FALLOCATE + +/* Define to 1 if you have the `pread' function. */ +#undef HAVE_PREAD + /* Define to 1 if you have the header file. */ #undef HAVE_PROCESS_H @@ -569,12 +593,18 @@ /* Define to 1 if you have the `putenv' function. */ #undef HAVE_PUTENV +/* Define to 1 if you have the `pwrite' function. */ +#undef HAVE_PWRITE + /* Define to 1 if you have the `readlink' function. */ #undef HAVE_READLINK /* Define to 1 if you have the `readlinkat' function. */ #undef HAVE_READLINKAT +/* Define to 1 if you have the `readv' function. */ +#undef HAVE_READV + /* Define to 1 if you have the `realpath' function. */ #undef HAVE_REALPATH @@ -775,6 +805,9 @@ /* Define to 1 if you have the `symlinkat' function. */ #undef HAVE_SYMLINKAT +/* Define to 1 if you have the `sync' function. */ +#undef HAVE_SYNC + /* Define to 1 if you have the `sysconf' function. */ #undef HAVE_SYSCONF @@ -952,6 +985,9 @@ /* Define to 1 if you have the `wait4' function. */ #undef HAVE_WAIT4 +/* Define to 1 if you have the `waitid' function. */ +#undef HAVE_WAITID + /* Define to 1 if you have the `waitpid' function. */ #undef HAVE_WAITPID @@ -971,6 +1007,9 @@ */ #undef HAVE_WORKING_TZSET +/* Define to 1 if you have the `writev' function. */ +#undef HAVE_WRITEV + /* Define if the zlib library has inflateCopy */ #undef HAVE_ZLIB_COPY -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 20:56:21 2011 From: python-checkins at python.org (ross.lagerwall) Date: Thu, 17 Mar 2011 20:56:21 +0100 Subject: [Python-checkins] cpython: Issue #10812: Revert os.lseek change. Message-ID: http://hg.python.org/cpython/rev/8945e087a5a6 changeset: 68658:8945e087a5a6 user: Ross Lagerwall date: Thu Mar 17 21:54:07 2011 +0200 summary: Issue #10812: Revert os.lseek change. files: Modules/posixmodule.c diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -6080,7 +6080,8 @@ #else off_t pos, res; #endif - if (!PyArg_ParseTuple(args, "iO&i:lseek", &fd, _parse_off_t, &pos, &how)) + PyObject *posobj; + if (!PyArg_ParseTuple(args, "iOi:lseek", &fd, &posobj, &how)) return NULL; #ifdef SEEK_SET /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */ @@ -6091,6 +6092,11 @@ } #endif /* SEEK_END */ +#if !defined(HAVE_LARGEFILE_SUPPORT) + pos = PyLong_AsLong(posobj); +#else + pos = PyLong_AsLongLong(posobj); +#endif if (PyErr_Occurred()) return NULL; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 22:46:56 2011 From: python-checkins at python.org (antoine.pitrou) Date: Thu, 17 Mar 2011 22:46:56 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #5421: merge fix Message-ID: http://hg.python.org/cpython/rev/90cdc371a3b8 changeset: 68661:90cdc371a3b8 parent: 68658:8945e087a5a6 parent: 68660:2af7a6d765fd user: Antoine Pitrou date: Thu Mar 17 22:46:17 2011 +0100 summary: Issue #5421: merge fix files: Misc/ACKS Misc/NEWS Modules/socketmodule.c diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,9 @@ Library ------- +- Issue #5421: Fix misleading error message when one of socket.sendto()'s + arguments has the wrong type. Patch by Nikita Vetoshkin. + - Issue #10812: Add some extra posix functions to the os module. - Issue #10979: unittest stdout buffering now works with class and module diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2747,17 +2747,28 @@ Py_buffer pbuf; PyObject *addro; char *buf; - Py_ssize_t len; + Py_ssize_t len, arglen; sock_addr_t addrbuf; int addrlen, n = -1, flags, timeout; flags = 0; - if (!PyArg_ParseTuple(args, "y*O:sendto", &pbuf, &addro)) { - PyErr_Clear(); - if (!PyArg_ParseTuple(args, "y*iO:sendto", - &pbuf, &flags, &addro)) - return NULL; + arglen = PyTuple_Size(args); + switch (arglen) { + case 2: + PyArg_ParseTuple(args, "y*O:sendto", &pbuf, &addro); + break; + case 3: + PyArg_ParseTuple(args, "y*iO:sendto", + &pbuf, &flags, &addro); + break; + default: + PyErr_Format(PyExc_TypeError, + "sendto() takes 2 or 3 arguments (%d given)", + arglen); } + if (PyErr_Occurred()) + return NULL; + buf = pbuf.buf; len = pbuf.len; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 22:46:51 2011 From: python-checkins at python.org (antoine.pitrou) Date: Thu, 17 Mar 2011 22:46:51 +0100 Subject: [Python-checkins] cpython (3.1): Issue #5421: Fix misleading error message when one of socket.sendto()'s Message-ID: http://hg.python.org/cpython/rev/c61b72b0650d changeset: 68659:c61b72b0650d branch: 3.1 parent: 68646:2f222360a774 user: Antoine Pitrou date: Thu Mar 17 22:38:37 2011 +0100 summary: Issue #5421: Fix misleading error message when one of socket.sendto()'s arguments has the wrong type. Patch by Nikita Vetoshkin. files: Misc/ACKS Misc/NEWS Modules/socketmodule.c diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -823,6 +823,7 @@ Frank Vercruesse Mike Verdone Jaap Vermeulen +Nikita Vetoshkin Al Vezza Jacques A. Vidrine John Viega diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,9 @@ Library ------- +- Issue #5421: Fix misleading error message when one of socket.sendto()'s + arguments has the wrong type. Patch by Nikita Vetoshkin. + - Issue #11401: fix handling of headers with no value; this fixes a regression relative to Python2 and the result is now the same as it was in Python2. diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2647,17 +2647,28 @@ Py_buffer pbuf; PyObject *addro; char *buf; - Py_ssize_t len; + Py_ssize_t len, arglen; sock_addr_t addrbuf; int addrlen, n = -1, flags, timeout; flags = 0; - if (!PyArg_ParseTuple(args, "y*O:sendto", &pbuf, &addro)) { - PyErr_Clear(); - if (!PyArg_ParseTuple(args, "y*iO:sendto", - &pbuf, &flags, &addro)) - return NULL; + arglen = PyTuple_Size(args); + switch (arglen) { + case 2: + PyArg_ParseTuple(args, "y*O:sendto", &pbuf, &addro); + break; + case 3: + PyArg_ParseTuple(args, "y*iO:sendto", + &pbuf, &flags, &addro); + break; + default: + PyErr_Format(PyExc_TypeError, + "sendto() takes 2 or 3 arguments (%d given)", + arglen); } + if (PyErr_Occurred()) + return NULL; + buf = pbuf.buf; len = pbuf.len; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 22:46:55 2011 From: python-checkins at python.org (antoine.pitrou) Date: Thu, 17 Mar 2011 22:46:55 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Issue #5421: merge fix Message-ID: http://hg.python.org/cpython/rev/2af7a6d765fd changeset: 68660:2af7a6d765fd branch: 3.2 parent: 68653:d6ae1f3ad66b parent: 68659:c61b72b0650d user: Antoine Pitrou date: Thu Mar 17 22:40:18 2011 +0100 summary: Issue #5421: merge fix files: Misc/ACKS Misc/NEWS Modules/socketmodule.c diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,8 @@ Library ------- +- Issue #5421: Fix misleading error message when one of socket.sendto()'s + arguments has the wrong type. Patch by Nikita Vetoshkin. - Issue #10979: unittest stdout buffering now works with class and module setup and teardown. diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2747,17 +2747,28 @@ Py_buffer pbuf; PyObject *addro; char *buf; - Py_ssize_t len; + Py_ssize_t len, arglen; sock_addr_t addrbuf; int addrlen, n = -1, flags, timeout; flags = 0; - if (!PyArg_ParseTuple(args, "y*O:sendto", &pbuf, &addro)) { - PyErr_Clear(); - if (!PyArg_ParseTuple(args, "y*iO:sendto", - &pbuf, &flags, &addro)) - return NULL; + arglen = PyTuple_Size(args); + switch (arglen) { + case 2: + PyArg_ParseTuple(args, "y*O:sendto", &pbuf, &addro); + break; + case 3: + PyArg_ParseTuple(args, "y*iO:sendto", + &pbuf, &flags, &addro); + break; + default: + PyErr_Format(PyExc_TypeError, + "sendto() takes 2 or 3 arguments (%d given)", + arglen); } + if (PyErr_Occurred()) + return NULL; + buf = pbuf.buf; len = pbuf.len; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 23:37:22 2011 From: python-checkins at python.org (antoine.pitrou) Date: Thu, 17 Mar 2011 23:37:22 +0100 Subject: [Python-checkins] cpython (3.2): Issue #10914: fix bogus memory management in Modules/getpath.c, leading to a Message-ID: http://hg.python.org/cpython/rev/a791dd7d51f3 changeset: 68662:a791dd7d51f3 branch: 3.2 parent: 68660:2af7a6d765fd user: Antoine Pitrou date: Thu Mar 17 23:34:33 2011 +0100 summary: Issue #10914: fix bogus memory management in Modules/getpath.c, leading to a possible crash when calling Py_SetPath() files: Modules/getpath.c diff --git a/Modules/getpath.c b/Modules/getpath.c --- a/Modules/getpath.c +++ b/Modules/getpath.c @@ -134,6 +134,7 @@ static wchar_t exec_prefix[MAXPATHLEN+1]; static wchar_t progpath[MAXPATHLEN+1]; static wchar_t *module_search_path = NULL; +static int module_search_path_malloced = 0; static wchar_t *lib_python = L"lib/python" VERSION; static void @@ -634,7 +635,6 @@ bufsz += wcslen(zip_path) + 1; bufsz += wcslen(exec_prefix) + 1; - /* This is the only malloc call in this file */ buf = (wchar_t *)PyMem_Malloc(bufsz*sizeof(wchar_t)); if (buf == NULL) { @@ -687,6 +687,7 @@ /* And publish the results */ module_search_path = buf; + module_search_path_malloced = 1; } /* Reduce prefix and exec_prefix to their essence, @@ -726,15 +727,18 @@ Py_SetPath(const wchar_t *path) { if (module_search_path != NULL) { - free(module_search_path); + if (module_search_path_malloced) + PyMem_Free(module_search_path); module_search_path = NULL; + module_search_path_malloced = 0; } if (path != NULL) { extern wchar_t *Py_GetProgramName(void); wchar_t *prog = Py_GetProgramName(); wcsncpy(progpath, prog, MAXPATHLEN); exec_prefix[0] = prefix[0] = L'\0'; - module_search_path = malloc((wcslen(path) + 1) * sizeof(wchar_t)); + module_search_path = PyMem_Malloc((wcslen(path) + 1) * sizeof(wchar_t)); + module_search_path_malloced = 1; if (module_search_path != NULL) wcscpy(module_search_path, path); } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 23:37:22 2011 From: python-checkins at python.org (antoine.pitrou) Date: Thu, 17 Mar 2011 23:37:22 +0100 Subject: [Python-checkins] cpython (3.2): Add news entry for a791dd7d51f3 Message-ID: http://hg.python.org/cpython/rev/0b2aab561a15 changeset: 68663:0b2aab561a15 branch: 3.2 user: Antoine Pitrou date: Thu Mar 17 23:36:13 2011 +0100 summary: Add news entry for a791dd7d51f3 files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #10914: fix bogus memory management in Modules/getpath.c, leading to + a possible crash when calling Py_SetPath(). + - Issue #11510: Fixed optimizer bug which turned "a,b={1,1}" into "a,b=(1,1)". - Issue #11432: A bug was introduced in subprocess.Popen on posix systems with -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 23:37:23 2011 From: python-checkins at python.org (antoine.pitrou) Date: Thu, 17 Mar 2011 23:37:23 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge Message-ID: http://hg.python.org/cpython/rev/b4104ffd5127 changeset: 68664:b4104ffd5127 parent: 68661:90cdc371a3b8 parent: 68663:0b2aab561a15 user: Antoine Pitrou date: Thu Mar 17 23:37:06 2011 +0100 summary: Merge files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #10914: fix bogus memory management in Modules/getpath.c, leading to + a possible crash when calling Py_SetPath(). + - _ast.__version__ is now a Mercurial integer and hex revision. - Issue #11432: A bug was introduced in subprocess.Popen on posix systems with diff --git a/Modules/getpath.c b/Modules/getpath.c --- a/Modules/getpath.c +++ b/Modules/getpath.c @@ -134,6 +134,7 @@ static wchar_t exec_prefix[MAXPATHLEN+1]; static wchar_t progpath[MAXPATHLEN+1]; static wchar_t *module_search_path = NULL; +static int module_search_path_malloced = 0; static wchar_t *lib_python = L"lib/python" VERSION; static void @@ -634,7 +635,6 @@ bufsz += wcslen(zip_path) + 1; bufsz += wcslen(exec_prefix) + 1; - /* This is the only malloc call in this file */ buf = (wchar_t *)PyMem_Malloc(bufsz*sizeof(wchar_t)); if (buf == NULL) { @@ -687,6 +687,7 @@ /* And publish the results */ module_search_path = buf; + module_search_path_malloced = 1; } /* Reduce prefix and exec_prefix to their essence, @@ -726,15 +727,18 @@ Py_SetPath(const wchar_t *path) { if (module_search_path != NULL) { - free(module_search_path); + if (module_search_path_malloced) + PyMem_Free(module_search_path); module_search_path = NULL; + module_search_path_malloced = 0; } if (path != NULL) { extern wchar_t *Py_GetProgramName(void); wchar_t *prog = Py_GetProgramName(); wcsncpy(progpath, prog, MAXPATHLEN); exec_prefix[0] = prefix[0] = L'\0'; - module_search_path = malloc((wcslen(path) + 1) * sizeof(wchar_t)); + module_search_path = PyMem_Malloc((wcslen(path) + 1) * sizeof(wchar_t)); + module_search_path_malloced = 1; if (module_search_path != NULL) wcscpy(module_search_path, path); } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 23:41:29 2011 From: python-checkins at python.org (antoine.pitrou) Date: Thu, 17 Mar 2011 23:41:29 +0100 Subject: [Python-checkins] cpython (3.2): Oops, wrong issue number in NEWS Message-ID: http://hg.python.org/cpython/rev/f832ca852329 changeset: 68665:f832ca852329 branch: 3.2 parent: 68663:0b2aab561a15 user: Antoine Pitrou date: Thu Mar 17 23:40:53 2011 +0100 summary: Oops, wrong issue number in NEWS files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,7 +10,7 @@ Core and Builtins ----------------- -- Issue #10914: fix bogus memory management in Modules/getpath.c, leading to +- Issue #11320: fix bogus memory management in Modules/getpath.c, leading to a possible crash when calling Py_SetPath(). - Issue #11510: Fixed optimizer bug which turned "a,b={1,1}" into "a,b=(1,1)". -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 17 23:41:30 2011 From: python-checkins at python.org (antoine.pitrou) Date: Thu, 17 Mar 2011 23:41:30 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge NEWS fix Message-ID: http://hg.python.org/cpython/rev/979ae5972604 changeset: 68666:979ae5972604 parent: 68664:b4104ffd5127 parent: 68665:f832ca852329 user: Antoine Pitrou date: Thu Mar 17 23:41:25 2011 +0100 summary: Merge NEWS fix files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,7 +10,7 @@ Core and Builtins ----------------- -- Issue #10914: fix bogus memory management in Modules/getpath.c, leading to +- Issue #11320: fix bogus memory management in Modules/getpath.c, leading to a possible crash when calling Py_SetPath(). - _ast.__version__ is now a Mercurial integer and hex revision. -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Fri Mar 18 05:12:02 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Fri, 18 Mar 2011 05:12:02 +0100 Subject: [Python-checkins] Daily reference leaks (979ae5972604): sum=30 Message-ID: results for 979ae5972604 on branch "default" -------------------------------------------- test_os leaked [4, 4, 4] references, sum=12 test_posix leaked [6, 6, 6] references, sum=18 Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogxKh6ru', '-x'] From python-checkins at python.org Fri Mar 18 06:02:12 2011 From: python-checkins at python.org (ross.lagerwall) Date: Fri, 18 Mar 2011 06:02:12 +0100 Subject: [Python-checkins] cpython: Issue #11592: Fix compilation warnings in os module. Message-ID: http://hg.python.org/cpython/rev/071fb38c91e6 changeset: 68667:071fb38c91e6 user: Ross Lagerwall date: Fri Mar 18 06:56:53 2011 +0200 summary: Issue #11592: Fix compilation warnings in os module. files: Modules/posixmodule.c diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -59,6 +59,10 @@ #include "osdefs.h" #endif +#ifdef HAVE_SYS_UIO_H +#include +#endif + #ifdef HAVE_SYS_TYPES_H #include #endif /* HAVE_SYS_TYPES_H */ @@ -103,10 +107,6 @@ #ifdef HAVE_SYS_SOCKET_H #include #endif - -#ifdef HAVE_SYS_UIO_H -#include -#endif #endif /* Various compilers have only certain posix functions */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 18 10:22:24 2011 From: python-checkins at python.org (raymond.hettinger) Date: Fri, 18 Mar 2011 10:22:24 +0100 Subject: [Python-checkins] cpython: Speed-up search for hidden names by using a set instead of a tuple. Message-ID: http://hg.python.org/cpython/rev/1902fe7e5542 changeset: 68668:1902fe7e5542 user: Raymond Hettinger date: Fri Mar 18 02:22:15 2011 -0700 summary: Speed-up search for hidden names by using a set instead of a tuple. files: Lib/pydoc.py diff --git a/Lib/pydoc.py b/Lib/pydoc.py --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -168,11 +168,11 @@ def visiblename(name, all=None): """Decide whether to show documentation on a variable.""" # Certain special names are redundant. - _hidden_names = ('__builtins__', '__doc__', '__file__', '__path__', + if name in {'__builtins__', '__doc__', '__file__', '__path__', '__module__', '__name__', '__slots__', '__package__', '__cached__', '__author__', '__credits__', '__date__', - '__version__') - if name in _hidden_names: return 0 + '__version__'}: + return 0 # Private names are hidden, but special names are displayed. if name.startswith('__') and name.endswith('__'): return 1 if all is not None: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 18 16:19:45 2011 From: python-checkins at python.org (alexander.belopolsky) Date: Fri, 18 Mar 2011 16:19:45 +0100 Subject: [Python-checkins] devguide: Indicated my interest in ctypes. Message-ID: http://hg.python.org/devguide/rev/fda236e429b2 changeset: 396:fda236e429b2 user: Alexander Belopolsky date: Fri Mar 18 11:19:16 2011 -0400 summary: Indicated my interest in ctypes. files: experts.rst diff --git a/experts.rst b/experts.rst --- a/experts.rst +++ b/experts.rst @@ -85,7 +85,7 @@ cProfile crypt jafo* csv skip.montanaro -ctypes theller +ctypes theller,belopolsky curses datetime belopolsky dbm -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Fri Mar 18 19:03:25 2011 From: python-checkins at python.org (brian.curtin) Date: Fri, 18 Mar 2011 19:03:25 +0100 Subject: [Python-checkins] cpython: Fix #11596. When bz2 isn't available, skip test_bz2_ext_fake. Message-ID: http://hg.python.org/cpython/rev/bb645cc39e60 changeset: 68669:bb645cc39e60 user: briancurtin date: Fri Mar 18 13:03:17 2011 -0500 summary: Fix #11596. When bz2 isn't available, skip test_bz2_ext_fake. files: Lib/test/test_fileinput.py diff --git a/Lib/test/test_fileinput.py b/Lib/test/test_fileinput.py --- a/Lib/test/test_fileinput.py +++ b/Lib/test/test_fileinput.py @@ -8,11 +8,15 @@ import fileinput import collections import gzip -import bz2 import types import codecs import unittest +try: + import bz2 +except ImportError: + bz2 = None + from io import StringIO from fileinput import FileInput, hook_encoded @@ -765,6 +769,7 @@ self.assertEqual(self.fake_open.invocation_count, 1) self.assertEqual(self.fake_open.last_invocation, (("test.gz", 3), {})) + @unittest.skipUnless(bz2, "Requires bz2") def test_bz2_ext_fake(self): original_open = bz2.BZ2File bz2.BZ2File = self.fake_open -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 18 19:29:23 2011 From: python-checkins at python.org (jesus.cea) Date: Fri, 18 Mar 2011 19:29:23 +0100 Subject: [Python-checkins] devguide: I am interested in Solaris support, and related OS's Message-ID: http://hg.python.org/devguide/rev/23d869318c26 changeset: 397:23d869318c26 user: Jesus Cea date: Fri Mar 18 19:29:20 2011 +0100 summary: I am interested in Solaris support, and related OS's files: experts.rst diff --git a/experts.rst b/experts.rst --- a/experts.rst +++ b/experts.rst @@ -276,7 +276,7 @@ Mac OS X ronaldoussoren, ned.deily NetBSD1 OS2/EMX aimacintyre -Solaris +Solaris/OpenIndiana jcea Windows tim.golden, brian.curtin ================== =========== -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Fri Mar 18 19:34:15 2011 From: python-checkins at python.org (jesus.cea) Date: Fri, 18 Mar 2011 19:34:15 +0100 Subject: [Python-checkins] devguide: I am interested in Solaris support, and related OS's Message-ID: http://hg.python.org/devguide/rev/4e88bc339fb2 changeset: 398:4e88bc339fb2 parent: 396:fda236e429b2 user: Jesus Cea date: Fri Mar 18 19:31:02 2011 +0100 summary: I am interested in Solaris support, and related OS's files: experts.rst diff --git a/experts.rst b/experts.rst --- a/experts.rst +++ b/experts.rst @@ -265,20 +265,20 @@ Platforms --------- -================== =========== -Platform Maintainers -================== =========== +================== =========== +Platform Maintainers +================== =========== AIX -Cygwin jlt63, stutzbach +Cygwin jlt63, stutzbach FreeBSD HP-UX Linux -Mac OS X ronaldoussoren, ned.deily +Mac OS X ronaldoussoren, ned.deily NetBSD1 -OS2/EMX aimacintyre -Solaris -Windows tim.golden, brian.curtin -================== =========== +OS2/EMX aimacintyre +Solaris/OpenIndiana jcea +Windows tim.golden, brian.curtin +================== =========== Miscellaneous -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Fri Mar 18 19:34:19 2011 From: python-checkins at python.org (jesus.cea) Date: Fri, 18 Mar 2011 19:34:19 +0100 Subject: [Python-checkins] devguide (merge default -> default): Merge. This repository allow multiple heads :) Message-ID: http://hg.python.org/devguide/rev/388bd285db57 changeset: 399:388bd285db57 parent: 398:4e88bc339fb2 parent: 397:23d869318c26 user: Jesus Cea date: Fri Mar 18 19:34:05 2011 +0100 summary: Merge. This repository allow multiple heads :) files: experts.rst -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Fri Mar 18 19:48:02 2011 From: python-checkins at python.org (jesus.cea) Date: Fri, 18 Mar 2011 19:48:02 +0100 Subject: [Python-checkins] devguide: Funny, the push hook detect the problem, but allow the push to proceeed :) Message-ID: http://hg.python.org/devguide/rev/413a4b76c41d changeset: 400:413a4b76c41d user: Jesus Cea date: Fri Mar 18 19:47:58 2011 +0100 summary: Funny, the push hook detect the problem, but allow the push to proceeed :) files: experts.rst diff --git a/experts.rst b/experts.rst --- a/experts.rst +++ b/experts.rst @@ -265,9 +265,9 @@ Platforms --------- -================== =========== +=================== =========== Platform Maintainers -================== =========== +=================== =========== AIX Cygwin jlt63, stutzbach FreeBSD @@ -278,7 +278,7 @@ OS2/EMX aimacintyre Solaris/OpenIndiana jcea Windows tim.golden, brian.curtin -================== =========== +=================== =========== Miscellaneous -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Fri Mar 18 23:09:35 2011 From: python-checkins at python.org (raymond.hettinger) Date: Fri, 18 Mar 2011 23:09:35 +0100 Subject: [Python-checkins] cpython: Minor optimization -- factor a constant expression out of the inner-loop. Message-ID: http://hg.python.org/cpython/rev/cfcff2683c71 changeset: 68670:cfcff2683c71 user: Raymond Hettinger date: Fri Mar 18 15:09:10 2011 -0700 summary: Minor optimization -- factor a constant expression out of the inner-loop. files: Lib/functools.py diff --git a/Lib/functools.py b/Lib/functools.py --- a/Lib/functools.py +++ b/Lib/functools.py @@ -140,7 +140,7 @@ tuple=tuple, sorted=sorted, len=len, KeyError=KeyError): hits = misses = 0 - kwd_mark = object() # separates positional and keyword args + kwd_mark = (object(),) # separates positional and keyword args lock = Lock() # needed because ordereddicts aren't threadsafe if maxsize is None: @@ -151,7 +151,7 @@ nonlocal hits, misses key = args if kwds: - key += (kwd_mark,) + tuple(sorted(kwds.items())) + key += kwd_mark + tuple(sorted(kwds.items())) try: result = cache[key] hits += 1 @@ -170,7 +170,7 @@ nonlocal hits, misses key = args if kwds: - key += (kwd_mark,) + tuple(sorted(kwds.items())) + key += kwd_mark + tuple(sorted(kwds.items())) try: with lock: result = cache[key] -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 00:25:06 2011 From: python-checkins at python.org (amaury.forgeotdarc) Date: Sat, 19 Mar 2011 00:25:06 +0100 Subject: [Python-checkins] devguide: I can also help with ctypes Message-ID: http://hg.python.org/devguide/rev/3188fbd8e6e4 changeset: 401:3188fbd8e6e4 user: Amaury Forgeot d'Arc date: Sat Mar 19 00:25:38 2011 +0100 summary: I can also help with ctypes files: experts.rst diff --git a/experts.rst b/experts.rst --- a/experts.rst +++ b/experts.rst @@ -85,7 +85,7 @@ cProfile crypt jafo* csv skip.montanaro -ctypes theller,belopolsky +ctypes theller, belopolsky, amaury.forgeotdarc curses datetime belopolsky dbm -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Sat Mar 19 02:22:42 2011 From: python-checkins at python.org (raymond.hettinger) Date: Sat, 19 Mar 2011 02:22:42 +0100 Subject: [Python-checkins] cpython (3.2): Issue 7391: Remove questionable and outdated HOWTO document with permission Message-ID: http://hg.python.org/cpython/rev/80ff78425419 changeset: 68671:80ff78425419 branch: 3.2 parent: 68665:f832ca852329 user: Raymond Hettinger date: Fri Mar 18 18:22:28 2011 -0700 summary: Issue 7391: Remove questionable and outdated HOWTO document with permission from its author. files: Doc/howto/doanddont.rst Doc/howto/index.rst diff --git a/Doc/howto/doanddont.rst b/Doc/howto/doanddont.rst deleted file mode 100644 --- a/Doc/howto/doanddont.rst +++ /dev/null @@ -1,290 +0,0 @@ -************************************ - Idioms and Anti-Idioms in Python -************************************ - -:Author: Moshe Zadka - -This document is placed in the public domain. - - -.. topic:: Abstract - - This document can be considered a companion to the tutorial. It shows how to use - Python, and even more importantly, how *not* to use Python. - - -Language Constructs You Should Not Use -====================================== - -While Python has relatively few gotchas compared to other languages, it still -has some constructs which are only useful in corner cases, or are plain -dangerous. - - -from module import \* ---------------------- - - -Inside Function Definitions -^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -``from module import *`` is *invalid* inside function definitions. While many -versions of Python do not check for the invalidity, it does not make it more -valid, no more than having a smart lawyer makes a man innocent. Do not use it -like that ever. Even in versions where it was accepted, it made the function -execution slower, because the compiler could not be certain which names are -local and which are global. In Python 2.1 this construct causes warnings, and -sometimes even errors. - - -At Module Level -^^^^^^^^^^^^^^^ - -While it is valid to use ``from module import *`` at module level it is usually -a bad idea. For one, this loses an important property Python otherwise has --- -you can know where each toplevel name is defined by a simple "search" function -in your favourite editor. You also open yourself to trouble in the future, if -some module grows additional functions or classes. - -One of the most awful question asked on the newsgroup is why this code:: - - f = open("www") - f.read() - -does not work. Of course, it works just fine (assuming you have a file called -"www".) But it does not work if somewhere in the module, the statement ``from -os import *`` is present. The :mod:`os` module has a function called -:func:`open` which returns an integer. While it is very useful, shadowing a -builtin is one of its least useful properties. - -Remember, you can never know for sure what names a module exports, so either -take what you need --- ``from module import name1, name2``, or keep them in the -module and access on a per-need basis --- ``import module; print(module.name)``. - - -When It Is Just Fine -^^^^^^^^^^^^^^^^^^^^ - -There are situations in which ``from module import *`` is just fine: - -* The interactive prompt. For example, ``from math import *`` makes Python an - amazing scientific calculator. - -* When extending a module in C with a module in Python. - -* When the module advertises itself as ``from import *`` safe. - - -from module import name1, name2 -------------------------------- - -This is a "don't" which is much weaker than the previous "don't"s but is still -something you should not do if you don't have good reasons to do that. The -reason it is usually bad idea is because you suddenly have an object which lives -in two separate namespaces. When the binding in one namespace changes, the -binding in the other will not, so there will be a discrepancy between them. This -happens when, for example, one module is reloaded, or changes the definition of -a function at runtime. - -Bad example:: - - # foo.py - a = 1 - - # bar.py - from foo import a - if something(): - a = 2 # danger: foo.a != a - -Good example:: - - # foo.py - a = 1 - - # bar.py - import foo - if something(): - foo.a = 2 - - -except: -------- - -Python has the ``except:`` clause, which catches all exceptions. Since *every* -error in Python raises an exception, using ``except:`` can make many -programming errors look like runtime problems, which hinders the debugging -process. - -The following code shows a great example of why this is bad:: - - try: - foo = opne("file") # misspelled "open" - except: - sys.exit("could not open file!") - -The second line triggers a :exc:`NameError`, which is caught by the except -clause. The program will exit, and the error message the program prints will -make you think the problem is the readability of ``"file"`` when in fact -the real error has nothing to do with ``"file"``. - -A better way to write the above is :: - - try: - foo = opne("file") - except IOError: - sys.exit("could not open file") - -When this is run, Python will produce a traceback showing the :exc:`NameError`, -and it will be immediately apparent what needs to be fixed. - -.. index:: bare except, except; bare - -Because ``except:`` catches *all* exceptions, including :exc:`SystemExit`, -:exc:`KeyboardInterrupt`, and :exc:`GeneratorExit` (which is not an error and -should not normally be caught by user code), using a bare ``except:`` is almost -never a good idea. In situations where you need to catch all "normal" errors, -such as in a framework that runs callbacks, you can catch the base class for -all normal exceptions, :exc:`Exception`. - - -Exceptions -========== - -Exceptions are a useful feature of Python. You should learn to raise them -whenever something unexpected occurs, and catch them only where you can do -something about them. - -The following is a very popular anti-idiom :: - - def get_status(file): - if not os.path.exists(file): - print("file not found") - sys.exit(1) - return open(file).readline() - -Consider the case where the file gets deleted between the time the call to -:func:`os.path.exists` is made and the time :func:`open` is called. In that -case the last line will raise an :exc:`IOError`. The same thing would happen -if *file* exists but has no read permission. Since testing this on a normal -machine on existent and non-existent files makes it seem bugless, the test -results will seem fine, and the code will get shipped. Later an unhandled -:exc:`IOError` (or perhaps some other :exc:`EnvironmentError`) escapes to the -user, who gets to watch the ugly traceback. - -Here is a somewhat better way to do it. :: - - def get_status(file): - try: - return open(file).readline() - except EnvironmentError as err: - print("Unable to open file: {}".format(err)) - sys.exit(1) - -In this version, *either* the file gets opened and the line is read (so it -works even on flaky NFS or SMB connections), or an error message is printed -that provides all the available information on why the open failed, and the -application is aborted. - -However, even this version of :func:`get_status` makes too many assumptions --- -that it will only be used in a short running script, and not, say, in a long -running server. Sure, the caller could do something like :: - - try: - status = get_status(log) - except SystemExit: - status = None - -But there is a better way. You should try to use as few ``except`` clauses in -your code as you can --- the ones you do use will usually be inside calls which -should always succeed, or a catch-all in a main function. - -So, an even better version of :func:`get_status()` is probably :: - - def get_status(file): - return open(file).readline() - -The caller can deal with the exception if it wants (for example, if it tries -several files in a loop), or just let the exception filter upwards to *its* -caller. - -But the last version still has a serious problem --- due to implementation -details in CPython, the file would not be closed when an exception is raised -until the exception handler finishes; and, worse, in other implementations -(e.g., Jython) it might not be closed at all regardless of whether or not -an exception is raised. - -The best version of this function uses the ``open()`` call as a context -manager, which will ensure that the file gets closed as soon as the -function returns:: - - def get_status(file): - with open(file) as fp: - return fp.readline() - - -Using the Batteries -=================== - -Every so often, people seem to be writing stuff in the Python library again, -usually poorly. While the occasional module has a poor interface, it is usually -much better to use the rich standard library and data types that come with -Python than inventing your own. - -A useful module very few people know about is :mod:`os.path`. It always has the -correct path arithmetic for your operating system, and will usually be much -better than whatever you come up with yourself. - -Compare:: - - # ugh! - return dir+"/"+file - # better - return os.path.join(dir, file) - -More useful functions in :mod:`os.path`: :func:`basename`, :func:`dirname` and -:func:`splitext`. - -There are also many useful built-in functions people seem not to be aware of -for some reason: :func:`min` and :func:`max` can find the minimum/maximum of -any sequence with comparable semantics, for example, yet many people write -their own :func:`max`/:func:`min`. Another highly useful function is -:func:`functools.reduce` which can be used to repeatly apply a binary -operation to a sequence, reducing it to a single value. For example, compute -a factorial with a series of multiply operations:: - - >>> n = 4 - >>> import operator, functools - >>> functools.reduce(operator.mul, range(1, n+1)) - 24 - -When it comes to parsing numbers, note that :func:`float`, :func:`int` and -:func:`long` all accept string arguments and will reject ill-formed strings -by raising an :exc:`ValueError`. - - -Using Backslash to Continue Statements -====================================== - -Since Python treats a newline as a statement terminator, and since statements -are often more than is comfortable to put in one line, many people do:: - - if foo.bar()['first'][0] == baz.quux(1, 2)[5:9] and \ - calculate_number(10, 20) != forbulate(500, 360): - pass - -You should realize that this is dangerous: a stray space after the ``\`` would -make this line wrong, and stray spaces are notoriously hard to see in editors. -In this case, at least it would be a syntax error, but if the code was:: - - value = foo.bar()['first'][0]*baz.quux(1, 2)[5:9] \ - + calculate_number(10, 20)*forbulate(500, 360) - -then it would just be subtly wrong. - -It is usually much better to use the implicit continuation inside parenthesis: - -This version is bulletproof:: - - value = (foo.bar()['first'][0]*baz.quux(1, 2)[5:9] - + calculate_number(10, 20)*forbulate(500, 360)) - diff --git a/Doc/howto/index.rst b/Doc/howto/index.rst --- a/Doc/howto/index.rst +++ b/Doc/howto/index.rst @@ -18,7 +18,6 @@ cporting.rst curses.rst descriptor.rst - doanddont.rst functional.rst logging.rst logging-cookbook.rst -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 04:47:05 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 19 Mar 2011 04:47:05 +0100 Subject: [Python-checkins] cpython (2.7): Fix the total_ordering decorator to handle cross-type comparisons Message-ID: http://hg.python.org/cpython/rev/94c158199277 changeset: 68672:94c158199277 branch: 2.7 parent: 68651:e78e35954fbf user: ?ric Araujo date: Sat Mar 19 04:29:36 2011 +0100 summary: Fix the total_ordering decorator to handle cross-type comparisons that could lead to infinite recursion (closes #10042). files: Lib/functools.py Lib/test/test_functools.py Misc/ACKS Misc/NEWS diff --git a/Lib/functools.py b/Lib/functools.py --- a/Lib/functools.py +++ b/Lib/functools.py @@ -53,17 +53,17 @@ def total_ordering(cls): """Class decorator that fills in missing ordering methods""" convert = { - '__lt__': [('__gt__', lambda self, other: other < self), - ('__le__', lambda self, other: not other < self), + '__lt__': [('__gt__', lambda self, other: not (self < other or self == other)), + ('__le__', lambda self, other: self < other or self == other), ('__ge__', lambda self, other: not self < other)], - '__le__': [('__ge__', lambda self, other: other <= self), - ('__lt__', lambda self, other: not other <= self), + '__le__': [('__ge__', lambda self, other: not self <= other or self == other), + ('__lt__', lambda self, other: self <= other and not self == other), ('__gt__', lambda self, other: not self <= other)], - '__gt__': [('__lt__', lambda self, other: other > self), - ('__ge__', lambda self, other: not other > self), + '__gt__': [('__lt__', lambda self, other: not (self > other or self == other)), + ('__ge__', lambda self, other: self > other or self == other), ('__le__', lambda self, other: not self > other)], - '__ge__': [('__le__', lambda self, other: other >= self), - ('__gt__', lambda self, other: not other >= self), + '__ge__': [('__le__', lambda self, other: (not self >= other) or self == other), + ('__gt__', lambda self, other: self >= other and not self == other), ('__lt__', lambda self, other: not self >= other)] } roots = set(dir(cls)) & set(convert) diff --git a/Lib/test/test_functools.py b/Lib/test/test_functools.py --- a/Lib/test/test_functools.py +++ b/Lib/test/test_functools.py @@ -361,6 +361,8 @@ self.value = value def __lt__(self, other): return self.value < other.value + def __eq__(self, other): + return self.value == other.value self.assertTrue(A(1) < A(2)) self.assertTrue(A(2) > A(1)) self.assertTrue(A(1) <= A(2)) @@ -375,6 +377,8 @@ self.value = value def __le__(self, other): return self.value <= other.value + def __eq__(self, other): + return self.value == other.value self.assertTrue(A(1) < A(2)) self.assertTrue(A(2) > A(1)) self.assertTrue(A(1) <= A(2)) @@ -389,6 +393,8 @@ self.value = value def __gt__(self, other): return self.value > other.value + def __eq__(self, other): + return self.value == other.value self.assertTrue(A(1) < A(2)) self.assertTrue(A(2) > A(1)) self.assertTrue(A(1) <= A(2)) @@ -403,6 +409,8 @@ self.value = value def __ge__(self, other): return self.value >= other.value + def __eq__(self, other): + return self.value == other.value self.assertTrue(A(1) < A(2)) self.assertTrue(A(2) > A(1)) self.assertTrue(A(1) <= A(2)) @@ -428,6 +436,22 @@ class A: pass + def test_bug_10042(self): + @functools.total_ordering + class TestTO: + def __init__(self, value): + self.value = value + def __eq__(self, other): + if isinstance(other, TestTO): + return self.value == other.value + return False + def __lt__(self, other): + if isinstance(other, TestTO): + return self.value < other.value + raise TypeError + with self.assertRaises(TypeError): + TestTO(8) <= () + def test_main(verbose=None): test_classes = ( TestPartial, diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -669,6 +669,7 @@ Steven Reiz Roeland Rengelink Tim Rice +Francesco Ricciardi Jan Pieter Riegel Armin Rigo Nicholas Riley diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -43,6 +43,9 @@ Library ------- +- Issue #10042: Fixed the total_ordering decorator to handle cross-type + comparisons that could lead to infinite recursion. + - Issue #10979: unittest stdout buffering now works with class and module setup and teardown. -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Sat Mar 19 05:15:56 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Sat, 19 Mar 2011 05:15:56 +0100 Subject: [Python-checkins] Daily reference leaks (cfcff2683c71): sum=30 Message-ID: results for cfcff2683c71 on branch "default" -------------------------------------------- test_os leaked [4, 4, 4] references, sum=12 test_posix leaked [6, 6, 6] references, sum=18 test_pydoc leaked [0, -323, 323] references, sum=0 Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogcM4aBb', '-x'] From python-checkins at python.org Sat Mar 19 06:23:25 2011 From: python-checkins at python.org (nick.coghlan) Date: Sat, 19 Mar 2011 06:23:25 +0100 Subject: [Python-checkins] cpython: Last attempt to get compiler recursion crasher to fail reliably across Message-ID: http://hg.python.org/cpython/rev/9c6dcb5d8f01 changeset: 68673:9c6dcb5d8f01 parent: 68670:cfcff2683c71 user: Nick Coghlan date: Sat Mar 19 15:22:59 2011 +1000 summary: Last attempt to get compiler recursion crasher to fail reliably across platforms before giving up and skipping it as unreliably platform dependent files: Lib/test/crashers/compiler_recursion.py diff --git a/Lib/test/crashers/compiler_recursion.py b/Lib/test/crashers/compiler_recursion.py --- a/Lib/test/crashers/compiler_recursion.py +++ b/Lib/test/crashers/compiler_recursion.py @@ -9,5 +9,5 @@ # e.g. '1*'*10**5+'1' will die in compiler_visit_expr # The exact limit to destroy the stack will vary by platform -# but 1M should do the trick most places -compile('()'*10**6, '?', 'exec') +# but 10M should do the trick even with huge stack allocations +compile('()'*10**7, '?', 'exec') -- Repository URL: http://hg.python.org/cpython From ncoghlan at gmail.com Sat Mar 19 06:35:18 2011 From: ncoghlan at gmail.com (Nick Coghlan) Date: Sat, 19 Mar 2011 15:35:18 +1000 Subject: [Python-checkins] Daily reference leaks (979ae5972604): sum=30 In-Reply-To: References: Message-ID: The timing of these new refleaks being triggered by test_os and by test_posix is suspicious, making me think that #10812 is the likely culprit. Cheers, Nick. -- Nick Coghlan?? |?? ncoghlan at gmail.com?? |?? Brisbane, Australia From python-checkins at python.org Sat Mar 19 08:19:58 2011 From: python-checkins at python.org (ross.lagerwall) Date: Sat, 19 Mar 2011 08:19:58 +0100 Subject: [Python-checkins] cpython: Fix refleak introduced by #10812. Message-ID: http://hg.python.org/cpython/rev/96e09d039433 changeset: 68674:96e09d039433 user: Ross Lagerwall date: Sat Mar 19 09:11:14 2011 +0200 summary: Fix refleak introduced by #10812. files: Modules/posixmodule.c diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3827,16 +3827,19 @@ return NULL; } for (i = 0; i < *argc; i++) { - if (!fsconvert_strdup(PySequence_ITEM(argv, i), - &argvlist[i])) - { - *argc = i; + PyObject* item = PySequence_ITEM(argv, i); + if (item == NULL) + goto fail; + if (!fsconvert_strdup(item, &argvlist[i])) { + Py_DECREF(item); goto fail; } + Py_DECREF(item); } argvlist[*argc] = NULL; return argvlist; fail: + *argc = i; free_string_array(argvlist, *argc); return NULL; } @@ -6177,22 +6180,28 @@ } for (i = 0; i < cnt; i++) { - if (PyObject_GetBuffer(PySequence_GetItem(seq, i), - &(*buf)[i], type) == -1) { - PyMem_Del(*iov); - for (j = 0; j < i; j++) { - PyBuffer_Release(&(*buf)[j]); - } - PyMem_Del(*buf); - total = 0; - return total; + PyObject *item = PySequence_GetItem(seq, i); + if (item == NULL) + goto fail; + if (PyObject_GetBuffer(item, &(*buf)[i], type) == -1) { + Py_DECREF(item); + goto fail; } + Py_DECREF(item); (*iov)[i].iov_base = (*buf)[i].buf; blen = (*buf)[i].len; (*iov)[i].iov_len = blen; total += blen; } return total; + +fail: + PyMem_Del(*iov); + for (j = 0; j < i; j++) { + PyBuffer_Release(&(*buf)[j]); + } + PyMem_Del(*buf); + return 0; } static void -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 10:47:38 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sat, 19 Mar 2011 10:47:38 +0100 Subject: [Python-checkins] cpython (3.2): Closes issue11563 - test_urllibnet ResourceWarning. Patch by Jeff McNeil. Message-ID: http://hg.python.org/cpython/rev/edc3d3b07435 changeset: 68675:edc3d3b07435 branch: 3.2 parent: 68665:f832ca852329 user: Senthil Kumaran date: Sat Mar 19 17:25:27 2011 +0800 summary: Closes issue11563 - test_urllibnet ResourceWarning. Patch by Jeff McNeil. files: Lib/test/test_urllib.py Lib/urllib/request.py diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -91,7 +91,7 @@ "did not return the expected text") def test_close(self): - # Test close() by calling it hear and then having it be called again + # Test close() by calling it here and then having it be called again # by the tearDown() method for the test self.returned_obj.close() @@ -174,6 +174,11 @@ finally: self.unfakehttp() + def test_willclose(self): + self.fakehttp(b"HTTP/1.1 200 OK\r\n\r\nHello!") + resp = urlopen("http://www.python.org") + self.assertTrue(resp.fp.will_close) + def test_read_0_9(self): # "0.9" response accepted (but not "simple responses" without # a status line) diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -1657,6 +1657,12 @@ headers["Authorization"] = "Basic %s" % auth if realhost: headers["Host"] = realhost + + # Add Connection:close as we don't support persistent connections yet. + # This helps in closing the socket and avoiding ResourceWarning + + headers["Connection"] = "close" + for header, value in self.addheaders: headers[header] = value -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 10:47:42 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sat, 19 Mar 2011 10:47:42 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge from 3.2 Message-ID: http://hg.python.org/cpython/rev/f5433ff205ed changeset: 68676:f5433ff205ed parent: 68674:96e09d039433 parent: 68671:80ff78425419 user: Senthil Kumaran date: Sat Mar 19 17:29:32 2011 +0800 summary: merge from 3.2 files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 10:47:43 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sat, 19 Mar 2011 10:47:43 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> 3.2): Merging it again. Message-ID: http://hg.python.org/cpython/rev/d84896ba7576 changeset: 68677:d84896ba7576 branch: 3.2 parent: 68671:80ff78425419 parent: 68675:edc3d3b07435 user: Senthil Kumaran date: Sat Mar 19 17:45:40 2011 +0800 summary: Merging it again. files: diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -91,7 +91,7 @@ "did not return the expected text") def test_close(self): - # Test close() by calling it hear and then having it be called again + # Test close() by calling it here and then having it be called again # by the tearDown() method for the test self.returned_obj.close() @@ -174,6 +174,11 @@ finally: self.unfakehttp() + def test_willclose(self): + self.fakehttp(b"HTTP/1.1 200 OK\r\n\r\nHello!") + resp = urlopen("http://www.python.org") + self.assertTrue(resp.fp.will_close) + def test_read_0_9(self): # "0.9" response accepted (but not "simple responses" without # a status line) diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -1657,6 +1657,12 @@ headers["Authorization"] = "Basic %s" % auth if realhost: headers["Host"] = realhost + + # Add Connection:close as we don't support persistent connections yet. + # This helps in closing the socket and avoiding ResourceWarning + + headers["Connection"] = "close" + for header, value in self.addheaders: headers[header] = value -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 10:47:44 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sat, 19 Mar 2011 10:47:44 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Closes issue11563 test_urllibnet is triggering a ResourceWarning. Patch by Jeff Message-ID: http://hg.python.org/cpython/rev/dfceb98767c0 changeset: 68678:dfceb98767c0 parent: 68676:f5433ff205ed parent: 68677:d84896ba7576 user: Senthil Kumaran date: Sat Mar 19 17:47:26 2011 +0800 summary: Closes issue11563 test_urllibnet is triggering a ResourceWarning. Patch by Jeff McNeil. files: Lib/test/test_urllib.py Lib/urllib/request.py diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -91,7 +91,7 @@ "did not return the expected text") def test_close(self): - # Test close() by calling it hear and then having it be called again + # Test close() by calling it here and then having it be called again # by the tearDown() method for the test self.returned_obj.close() @@ -174,6 +174,11 @@ finally: self.unfakehttp() + def test_willclose(self): + self.fakehttp(b"HTTP/1.1 200 OK\r\n\r\nHello!") + resp = urlopen("http://www.python.org") + self.assertTrue(resp.fp.will_close) + def test_read_0_9(self): # "0.9" response accepted (but not "simple responses" without # a status line) diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -1657,6 +1657,12 @@ headers["Authorization"] = "Basic %s" % auth if realhost: headers["Host"] = realhost + + # Add Connection:close as we don't support persistent connections yet. + # This helps in closing the socket and avoiding ResourceWarning + + headers["Connection"] = "close" + for header, value in self.addheaders: headers[header] = value -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 17:10:01 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 19 Mar 2011 17:10:01 +0100 Subject: [Python-checkins] cpython (3.1): Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates Message-ID: http://hg.python.org/cpython/rev/1dc52ecb8949 changeset: 68679:1dc52ecb8949 branch: 3.1 parent: 68659:c61b72b0650d user: Antoine Pitrou date: Sat Mar 19 17:00:37 2011 +0100 summary: Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates unbuffered pipes, such that select() works properly on them. files: Doc/library/platform.rst Lib/os.py Lib/platform.py Lib/subprocess.py Lib/test/test_subprocess.py Misc/NEWS diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst --- a/Doc/library/platform.rst +++ b/Doc/library/platform.rst @@ -205,7 +205,7 @@ Win95/98 specific ^^^^^^^^^^^^^^^^^ -.. function:: popen(cmd, mode='r', bufsize=None) +.. function:: popen(cmd, mode='r', bufsize=-1) Portable :func:`popen` interface. Find a working popen implementation preferring :func:`win32pipe.popen`. On Windows NT, :func:`win32pipe.popen` diff --git a/Lib/os.py b/Lib/os.py --- a/Lib/os.py +++ b/Lib/os.py @@ -629,11 +629,13 @@ return bs # Supply os.popen() -def popen(cmd, mode="r", buffering=None): +def popen(cmd, mode="r", buffering=-1): if not isinstance(cmd, str): raise TypeError("invalid cmd type (%s, expected string)" % type(cmd)) if mode not in ("r", "w"): raise ValueError("invalid mode %r" % mode) + if buffering == 0 or buffering == None: + raise ValueError("popen() does not support unbuffered streams") import subprocess, io if mode == "r": proc = subprocess.Popen(cmd, diff --git a/Lib/platform.py b/Lib/platform.py --- a/Lib/platform.py +++ b/Lib/platform.py @@ -398,7 +398,7 @@ # Alias __del__ = close -def popen(cmd, mode='r', bufsize=None): +def popen(cmd, mode='r', bufsize=-1): """ Portable popen() interface. """ diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -653,8 +653,6 @@ if errread is not None: errread = msvcrt.open_osfhandle(errread.Detach(), 0) - if bufsize == 0: - bufsize = 1 # Nearly unbuffered (XXX for now) if p2cwrite is not None: self.stdin = io.open(p2cwrite, 'wb', bufsize) if self.universal_newlines: diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -864,6 +864,21 @@ def prepare(): raise ValueError("surrogate:\uDCff") + def test_select_unbuffered(self): + # Issue #11459: bufsize=0 should really set the pipes as + # unbuffered (and therefore let select() work properly). + select = support.import_module("select") + p = subprocess.Popen([sys.executable, "-c", + 'import sys;' + 'sys.stdout.write("apple")'], + stdout=subprocess.PIPE, + bufsize=0) + f = p.stdout + try: + self.assertEqual(f.read(4), b"appl") + self.assertIn(f, select.select([f], [], [], 0.0)[0]) + finally: + p.wait() # # Windows tests diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,9 @@ Library ------- +- Issue #11459: A ``bufsize`` value of 0 in subprocess.Popen() really creates + unbuffered pipes, such that select() works properly on them. + - Issue #5421: Fix misleading error message when one of socket.sendto()'s arguments has the wrong type. Patch by Nikita Vetoshkin. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 17:10:05 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 19 Mar 2011 17:10:05 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates Message-ID: http://hg.python.org/cpython/rev/7451da272111 changeset: 68680:7451da272111 branch: 3.2 parent: 68677:d84896ba7576 parent: 68679:1dc52ecb8949 user: Antoine Pitrou date: Sat Mar 19 17:04:13 2011 +0100 summary: Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates unbuffered pipes, such that select() works properly on them. files: Doc/library/platform.rst Lib/os.py Lib/platform.py Lib/subprocess.py Lib/test/test_subprocess.py Misc/NEWS diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst --- a/Doc/library/platform.rst +++ b/Doc/library/platform.rst @@ -208,7 +208,7 @@ Win95/98 specific ^^^^^^^^^^^^^^^^^ -.. function:: popen(cmd, mode='r', bufsize=None) +.. function:: popen(cmd, mode='r', bufsize=-1) Portable :func:`popen` interface. Find a working popen implementation preferring :func:`win32pipe.popen`. On Windows NT, :func:`win32pipe.popen` diff --git a/Lib/os.py b/Lib/os.py --- a/Lib/os.py +++ b/Lib/os.py @@ -779,11 +779,13 @@ return bs # Supply os.popen() -def popen(cmd, mode="r", buffering=None): +def popen(cmd, mode="r", buffering=-1): if not isinstance(cmd, str): raise TypeError("invalid cmd type (%s, expected string)" % type(cmd)) if mode not in ("r", "w"): raise ValueError("invalid mode %r" % mode) + if buffering == 0 or buffering == None: + raise ValueError("popen() does not support unbuffered streams") import subprocess, io if mode == "r": proc = subprocess.Popen(cmd, diff --git a/Lib/platform.py b/Lib/platform.py --- a/Lib/platform.py +++ b/Lib/platform.py @@ -411,7 +411,7 @@ # Alias __del__ = close -def popen(cmd, mode='r', bufsize=None): +def popen(cmd, mode='r', bufsize=-1): """ Portable popen() interface. """ diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -711,8 +711,6 @@ if errread != -1: errread = msvcrt.open_osfhandle(errread.Detach(), 0) - if bufsize == 0: - bufsize = 1 # Nearly unbuffered (XXX for now) if p2cwrite != -1: self.stdin = io.open(p2cwrite, 'wb', bufsize) if self.universal_newlines: diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -1216,6 +1216,22 @@ " non-zero with this error:\n%s" % stderr.decode('utf8')) + def test_select_unbuffered(self): + # Issue #11459: bufsize=0 should really set the pipes as + # unbuffered (and therefore let select() work properly). + select = support.import_module("select") + p = subprocess.Popen([sys.executable, "-c", + 'import sys;' + 'sys.stdout.write("apple")'], + stdout=subprocess.PIPE, + bufsize=0) + f = p.stdout + try: + self.assertEqual(f.read(4), b"appl") + self.assertIn(f, select.select([f], [], [], 0.0)[0]) + finally: + p.wait() + @unittest.skipUnless(mswindows, "Windows specific tests") class Win32ProcessTestCase(BaseTestCase): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -43,6 +43,9 @@ Library ------- +- Issue #11459: A ``bufsize`` value of 0 in subprocess.Popen() really creates + unbuffered pipes, such that select() works properly on them. + - Issue #5421: Fix misleading error message when one of socket.sendto()'s arguments has the wrong type. Patch by Nikita Vetoshkin. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 17:10:05 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 19 Mar 2011 17:10:05 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates Message-ID: http://hg.python.org/cpython/rev/cb148da52c47 changeset: 68681:cb148da52c47 parent: 68678:dfceb98767c0 parent: 68680:7451da272111 user: Antoine Pitrou date: Sat Mar 19 17:06:22 2011 +0100 summary: Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates unbuffered pipes, such that select() works properly on them. files: Doc/library/platform.rst Lib/os.py Lib/platform.py Lib/subprocess.py Lib/test/test_subprocess.py Misc/NEWS diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst --- a/Doc/library/platform.rst +++ b/Doc/library/platform.rst @@ -208,7 +208,7 @@ Win95/98 specific ^^^^^^^^^^^^^^^^^ -.. function:: popen(cmd, mode='r', bufsize=None) +.. function:: popen(cmd, mode='r', bufsize=-1) Portable :func:`popen` interface. Find a working popen implementation preferring :func:`win32pipe.popen`. On Windows NT, :func:`win32pipe.popen` diff --git a/Lib/os.py b/Lib/os.py --- a/Lib/os.py +++ b/Lib/os.py @@ -779,11 +779,13 @@ return bs # Supply os.popen() -def popen(cmd, mode="r", buffering=None): +def popen(cmd, mode="r", buffering=-1): if not isinstance(cmd, str): raise TypeError("invalid cmd type (%s, expected string)" % type(cmd)) if mode not in ("r", "w"): raise ValueError("invalid mode %r" % mode) + if buffering == 0 or buffering == None: + raise ValueError("popen() does not support unbuffered streams") import subprocess, io if mode == "r": proc = subprocess.Popen(cmd, diff --git a/Lib/platform.py b/Lib/platform.py --- a/Lib/platform.py +++ b/Lib/platform.py @@ -357,7 +357,7 @@ supported_dists=supported_dists, full_distribution_name=0) -def popen(cmd, mode='r', bufsize=None): +def popen(cmd, mode='r', bufsize=-1): """ Portable popen() interface. """ diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -743,8 +743,6 @@ if errread != -1: errread = msvcrt.open_osfhandle(errread.Detach(), 0) - if bufsize == 0: - bufsize = 1 # Nearly unbuffered (XXX for now) if p2cwrite != -1: self.stdin = io.open(p2cwrite, 'wb', bufsize) if self.universal_newlines: diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -1315,6 +1315,22 @@ " non-zero with this error:\n%s" % stderr.decode('utf-8')) + def test_select_unbuffered(self): + # Issue #11459: bufsize=0 should really set the pipes as + # unbuffered (and therefore let select() work properly). + select = support.import_module("select") + p = subprocess.Popen([sys.executable, "-c", + 'import sys;' + 'sys.stdout.write("apple")'], + stdout=subprocess.PIPE, + bufsize=0) + f = p.stdout + try: + self.assertEqual(f.read(4), b"appl") + self.assertIn(f, select.select([f], [], [], 0.0)[0]) + finally: + p.wait() + @unittest.skipUnless(mswindows, "Windows specific tests") class Win32ProcessTestCase(BaseTestCase): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -75,6 +75,9 @@ Library ------- +- Issue #11459: A ``bufsize`` value of 0 in subprocess.Popen() really creates + unbuffered pipes, such that select() works properly on them. + - Issue #5421: Fix misleading error message when one of socket.sendto()'s arguments has the wrong type. Patch by Nikita Vetoshkin. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 19:08:02 2011 From: python-checkins at python.org (skip.montanaro) Date: Sat, 19 Mar 2011 19:08:02 +0100 Subject: [Python-checkins] cpython: Mention RFC 4180. Based on input by Tony Wallace in issue 11456. Message-ID: http://hg.python.org/cpython/rev/c63d7374b89a changeset: 68682:c63d7374b89a parent: 68584:b153c341e6ef user: Skip Montanaro date: Sat Mar 19 09:09:30 2011 -0500 summary: Mention RFC 4180. Based on input by Tony Wallace in issue 11456. files: Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -11,15 +11,15 @@ pair: data; tabular The so-called CSV (Comma Separated Values) format is the most common import and -export format for spreadsheets and databases. There is no "CSV standard", so -the format is operationally defined by the many applications which read and -write it. The lack of a standard means that subtle differences often exist in -the data produced and consumed by different applications. These differences can -make it annoying to process CSV files from multiple sources. Still, while the -delimiters and quoting characters vary, the overall format is similar enough -that it is possible to write a single module which can efficiently manipulate -such data, hiding the details of reading and writing the data from the -programmer. +export format for spreadsheets and databases. CSV format was used for many +years prior to attempts to describe the format in a standardized way in +:rfc:`4180`. The lack of a well-defined standard means that subtle differences +often exist in the data produced and consumed by different applications. These +differences can make it annoying to process CSV files from multiple sources. +Still, while the delimiters and quoting characters vary, the overall format is +similar enough that it is possible to write a single module which can +efficiently manipulate such data, hiding the details of reading and writing the +data from the programmer. The :mod:`csv` module implements classes to read and write tabular data in CSV format. It allows programmers to say, "write this data in the format preferred @@ -418,50 +418,101 @@ The simplest example of reading a CSV file:: +<<<<<<< local + import csv + with f = open("some.csv", newline=''): + reader = csv.reader(f) + for row in reader: + print(row) +======= import csv with open('some.csv', newline='') as f: reader = csv.reader(f) for row in reader: print(row) +>>>>>>> other Reading a file with an alternate format:: +<<<<<<< local + import csv + with f = open("passwd"): + reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE) + for row in reader: + print(row) +======= import csv with open('passwd') as f: reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE) for row in reader: print(row) +>>>>>>> other The corresponding simplest possible writing example is:: +<<<<<<< local + import csv + with f = open("some.csv", "w"): + writer = csv.writer(f) + writer.writerows(someiterable) +======= import csv with open('some.csv', 'w') as f: writer = csv.writer(f) writer.writerows(someiterable) +>>>>>>> other Since :func:`open` is used to open a CSV file for reading, the file will by default be decoded into unicode using the system default encoding (see :func:`locale.getpreferredencoding`). To decode a file using a different encoding, use the ``encoding`` argument of open:: +<<<<<<< local + import csv + f = open("some.csv", newline='', encoding='utf-8'): + reader = csv.reader(f) + for row in reader: + print(row) +======= import csv with open('some.csv', newline='', encoding='utf-8') as f: reader = csv.reader(f) for row in reader: print(row) +>>>>>>> other The same applies to writing in something other than the system default encoding: specify the encoding argument when opening the output file. Registering a new dialect:: +<<<<<<< local + import csv + csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE) + with f = open("passwd"): + reader = csv.reader(f, 'unixpwd') + for row in reader: + pass +======= import csv csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE) with open('passwd') as f: reader = csv.reader(f, 'unixpwd') +>>>>>>> other A slightly more advanced use of the reader --- catching and reporting errors:: +<<<<<<< local + import csv, sys + filename = "some.csv" + with f = open(filename, newline=''): + reader = csv.reader(f) + try: + for row in reader: + print(row) + except csv.Error as e: + sys.exit('file {}, line {}: {}'.format(filename, reader.line_num, e)) +======= import csv, sys filename = 'some.csv' with open(filename, newline='') as f: @@ -471,13 +522,14 @@ print(row) except csv.Error as e: sys.exit('file {}, line {}: {}'.format(filename, reader.line_num, e)) +>>>>>>> other And while the module doesn't directly support parsing strings, it can easily be done:: - import csv - for row in csv.reader(['one,two,three']): - print(row) + import csv + for row in csv.reader(['one,two,three']): + print(row) .. rubric:: Footnotes -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 19:08:05 2011 From: python-checkins at python.org (skip.montanaro) Date: Sat, 19 Mar 2011 19:08:05 +0100 Subject: [Python-checkins] cpython (merge default -> default): commit merge Message-ID: http://hg.python.org/cpython/rev/64eeb4cd4b56 changeset: 68683:64eeb4cd4b56 parent: 68682:c63d7374b89a parent: 68678:dfceb98767c0 user: Skip Montanaro date: Sat Mar 19 09:15:28 2011 -0500 summary: commit merge files: diff --git a/Doc/includes/sqlite3/shared_cache.py b/Doc/includes/sqlite3/shared_cache.py --- a/Doc/includes/sqlite3/shared_cache.py +++ b/Doc/includes/sqlite3/shared_cache.py @@ -1,6 +1,6 @@ import sqlite3 # The shared cache is only available in SQLite versions 3.3.3 or later -# See the SQLite documentaton for details. +# See the SQLite documentation for details. sqlite3.enable_shared_cache(True) diff --git a/Doc/library/os.rst b/Doc/library/os.rst --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -743,6 +743,17 @@ .. versionadded:: 3.3 +.. function:: fexecve(fd, args, env) + + Execute the program specified by a file descriptor *fd* with arguments given + by *args* and environment given by *env*, replacing the current process. + *args* and *env* are given as in :func:`execve`. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: fpathconf(fd, name) Return system configuration information relevant to an open file. *name* @@ -819,6 +830,45 @@ .. versionadded:: 3.3 +.. function:: futimens(fd, (atime_sec, atime_nsec), (mtime_sec, mtime_nsec)) + futimens(fd, None, None) + + Updates the timestamps of a file specified by the file descriptor *fd*, with + nanosecond precision. + The second form sets *atime* and *mtime* to the current time. + If *atime_nsec* or *mtime_nsec* is specified as :data:`UTIME_NOW`, the corresponding + timestamp is updated to the current time. + If *atime_nsec* or *mtime_nsec* is specified as :data:`UTIME_OMIT`, the corresponding + timestamp is not updated. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. data:: UTIME_NOW + UTIME_OMIT + + Flags used with :func:`futimens` to specify that the timestamp must be + updated either to the current time or not updated at all. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: futimes(fd, (atime, mtime)) + futimes(fd, None) + + Set the access and modified time of the file specified by the file + descriptor *fd* to the given values. If the second form is used, set the + access and modified times to the current time. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: isatty(fd) Return ``True`` if the file descriptor *fd* is open and connected to a @@ -841,6 +891,30 @@ .. versionadded:: 3.3 +.. function:: lockf(fd, cmd, len) + + Apply, test or remove a POSIX lock on an open file descriptor. + *fd* is an open file descriptor. + *cmd* specifies the command to use - one of :data:`F_LOCK`, :data:`F_TLOCK`, + :data:`F_ULOCK` or :data:`F_TEST`. + *len* specifies the section of the file to lock. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. data:: F_LOCK + F_TLOCK + F_ULOCK + F_TEST + + Flags that specify what action :func:`lockf` will take. + + Availability: Unix. + + .. versionadded:: 3.3 + .. function:: lseek(fd, pos, how) Set the current position of file descriptor *fd* to position *pos*, modified @@ -945,6 +1019,66 @@ Availability: Unix, Windows. +.. function:: posix_fallocate(fd, offset, len) + + Ensures that enough disk space is allocated for the file specified by *fd* + starting from *offset* and continuing for *len* bytes. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: posix_fadvise(fd, offset, len, advice) + + Announces an intention to access data in a specific pattern thus allowing + the kernel to make optimizations. + The advice applies to the region of the file specified by *fd* starting at + *offset* and continuing for *len* bytes. + *advice* is one of :data:`POSIX_FADV_NORMAL`, :data:`POSIX_FADV_SEQUENTIAL`, + :data:`POSIX_FADV_RANDOM`, :data:`POSIX_FADV_NOREUSE`, + :data:`POSIX_FADV_WILLNEED` or :data:`POSIX_FADV_DONTNEED`. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. data:: POSIX_FADV_NORMAL + POSIX_FADV_SEQUENTIAL + POSIX_FADV_RANDOM + POSIX_FADV_NOREUSE + POSIX_FADV_WILLNEED + POSIX_FADV_DONTNEED + + Flags that can be used in *advice* in :func:`posix_fadvise` that specify + the access pattern that is likely to be used. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: pread(fd, buffersize, offset) + + Read from a file descriptor, *fd*, at a position of *offset*. It will read up + to *buffersize* number of bytes. The file offset remains unchanged. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: pwrite(fd, string, offset) + + Write *string* to a file descriptor, *fd*, from *offset*, leaving the file + offset unchanged. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: read(fd, n) Read at most *n* bytes from file descriptor *fd*. Return a bytestring containing the @@ -1038,6 +1172,17 @@ .. versionadded:: 3.3 +.. function:: readv(fd, buffers) + + Read from a file descriptor into a number of writable buffers. *buffers* is + an arbitrary sequence of writable buffers. Returns the total number of bytes + read. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: tcgetpgrp(fd) Return the process group associated with the terminal given by *fd* (an open @@ -1111,6 +1256,17 @@ :meth:`~file.write` method. +.. function:: writev(fd, buffers) + + Write the the contents of *buffers* to file descriptor *fd*, where *buffers* + is an arbitrary sequence of buffers. + Returns the total number of bytes written. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. _open-constants: ``open()`` flag constants @@ -1384,6 +1540,17 @@ Added support for Windows 6.0 (Vista) symbolic links. +.. function:: lutimes(path, (atime, mtime)) + lutimes(path, None) + + Like :func:`utime`, but if *path* is a symbolic link, it is not + dereferenced. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: mkfifo(path[, mode]) Create a FIFO (a named pipe) named *path* with numeric mode *mode*. The @@ -1727,6 +1894,25 @@ Added support for Windows 6.0 (Vista) symbolic links. +.. function:: sync() + + Force write of everything to disk. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. function:: truncate(path, length) + + Truncate the file corresponding to *path*, so that it is at most + *length* bytes in size. + + Availability: Unix. + + .. versionadded:: 3.3 + + .. function:: unlink(path) Remove (delete) the file *path*. This is the same function as @@ -2306,6 +2492,58 @@ Availability: Unix. +.. function:: waitid(idtype, id, options) + + Wait for the completion of one or more child processes. + *idtype* can be :data:`P_PID`, :data:`P_PGID` or :data:`P_ALL`. + *id* specifies the pid to wait on. + *options* is constructed from the ORing of one or more of :data:`WEXITED`, + :data:`WSTOPPED` or :data:`WCONTINUED` and additionally may be ORed with + :data:`WNOHANG` or :data:`WNOWAIT`. The return value is an object + representing the data contained in the :c:type:`siginfo_t` structure, namely: + :attr:`si_pid`, :attr:`si_uid`, :attr:`si_signo`, :attr:`si_status`, + :attr:`si_code` or ``None`` if :data:`WNOHANG` is specified and there are no + children in a waitable state. + + Availability: Unix. + + .. versionadded:: 3.3 + +.. data:: P_PID + P_PGID + P_ALL + + These are the possible values for *idtype* in :func:`waitid`. They affect + how *id* is interpreted. + + Availability: Unix. + + .. versionadded:: 3.3 + +.. data:: WEXITED + WSTOPPED + WNOWAIT + + Flags that can be used in *options* in :func:`waitid` that specify what + child signal to wait for. + + Availability: Unix. + + .. versionadded:: 3.3 + + +.. data:: CLD_EXITED + CLD_DUMPED + CLD_TRAPPED + CLD_CONTINUED + + These are the possible values for :attr:`si_code` in the result returned by + :func:`waitid`. + + Availability: Unix. + + .. versionadded:: 3.3 + .. function:: waitpid(pid, options) diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -125,12 +125,14 @@ *stdin*, *stdout* and *stderr* specify the executed programs' standard input, standard output and standard error file handles, respectively. Valid values - are :data:`PIPE`, an existing file descriptor (a positive integer), an - existing :term:`file object`, and ``None``. :data:`PIPE` indicates that a - new pipe to the child should be created. With ``None``, no redirection will - occur; the child's file handles will be inherited from the parent. Additionally, - *stderr* can be :data:`STDOUT`, which indicates that the stderr data from the - applications should be captured into the same file handle as for stdout. + are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive + integer), an existing :term:`file object`, and ``None``. :data:`PIPE` + indicates that a new pipe to the child should be created. :data:`DEVNULL` + indicates that the special file :data:`os.devnull` will be used. With ``None``, + no redirection will occur; the child's file handles will be inherited from + the parent. Additionally, *stderr* can be :data:`STDOUT`, which indicates + that the stderr data from the applications should be captured into the same + file handle as for stdout. If *preexec_fn* is set to a callable object, this object will be called in the child process just before the child is executed. @@ -229,6 +231,15 @@ Added context manager support. +.. data:: DEVNULL + + Special value that can be used as the *stdin*, *stdout* or *stderr* argument + to :class:`Popen` and indicates that the special file :data:`os.devnull` + will be used. + + .. versionadded:: 3.3 + + .. data:: PIPE Special value that can be used as the *stdin*, *stdout* or *stderr* argument @@ -387,7 +398,7 @@ :func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if the timeout expires before the process exits. -Exceptions defined in this module all inherit from :ext:`SubprocessError`. +Exceptions defined in this module all inherit from :exc:`SubprocessError`. .. versionadded:: 3.3 The :exc:`SubprocessError` base class was added. diff --git a/Include/abstract.h b/Include/abstract.h --- a/Include/abstract.h +++ b/Include/abstract.h @@ -468,7 +468,7 @@ arbitrary data. 0 is returned on success. buffer and buffer_len are only - set in case no error occurrs. Otherwise, -1 is returned and + set in case no error occurs. Otherwise, -1 is returned and an exception set. */ @@ -482,7 +482,7 @@ writable memory location in buffer of size buffer_len. 0 is returned on success. buffer and buffer_len are only - set in case no error occurrs. Otherwise, -1 is returned and + set in case no error occurs. Otherwise, -1 is returned and an exception set. */ diff --git a/Include/pymacconfig.h b/Include/pymacconfig.h --- a/Include/pymacconfig.h +++ b/Include/pymacconfig.h @@ -61,7 +61,7 @@ # endif # if defined(__LP64__) - /* MacOSX 10.4 (the first release to suppport 64-bit code + /* MacOSX 10.4 (the first release to support 64-bit code * at all) only supports 64-bit in the UNIX layer. * Therefore surpress the toolbox-glue in 64-bit mode. */ diff --git a/Lib/binhex.py b/Lib/binhex.py --- a/Lib/binhex.py +++ b/Lib/binhex.py @@ -52,14 +52,13 @@ def getfileinfo(name): finfo = FInfo() - fp = io.open(name, 'rb') - # Quick check for textfile - data = fp.read(512) - if 0 not in data: - finfo.Type = 'TEXT' - fp.seek(0, 2) - dsize = fp.tell() - fp.close() + with io.open(name, 'rb') as fp: + # Quick check for textfile + data = fp.read(512) + if 0 not in data: + finfo.Type = 'TEXT' + fp.seek(0, 2) + dsize = fp.tell() dir, file = os.path.split(name) file = file.replace(':', '-', 1) return file, finfo, dsize, 0 @@ -140,19 +139,26 @@ class BinHex: def __init__(self, name_finfo_dlen_rlen, ofp): name, finfo, dlen, rlen = name_finfo_dlen_rlen + close_on_error = False if isinstance(ofp, str): ofname = ofp ofp = io.open(ofname, 'wb') - ofp.write(b'(This file must be converted with BinHex 4.0)\r\r:') - hqxer = _Hqxcoderengine(ofp) - self.ofp = _Rlecoderengine(hqxer) - self.crc = 0 - if finfo is None: - finfo = FInfo() - self.dlen = dlen - self.rlen = rlen - self._writeinfo(name, finfo) - self.state = _DID_HEADER + close_on_error = True + try: + ofp.write(b'(This file must be converted with BinHex 4.0)\r\r:') + hqxer = _Hqxcoderengine(ofp) + self.ofp = _Rlecoderengine(hqxer) + self.crc = 0 + if finfo is None: + finfo = FInfo() + self.dlen = dlen + self.rlen = rlen + self._writeinfo(name, finfo) + self.state = _DID_HEADER + except: + if close_on_error: + ofp.close() + raise def _writeinfo(self, name, finfo): nl = len(name) diff --git a/Lib/csv.py b/Lib/csv.py --- a/Lib/csv.py +++ b/Lib/csv.py @@ -284,7 +284,7 @@ an all or nothing approach, so we allow for small variations in this number. 1) build a table of the frequency of each character on every line. - 2) build a table of freqencies of this frequency (meta-frequency?), + 2) build a table of frequencies of this frequency (meta-frequency?), e.g. 'x occurred 5 times in 10 rows, 6 times in 1000 rows, 7 times in 2 rows' 3) use the mode of the meta-frequency to determine the /expected/ diff --git a/Lib/ctypes/test/test_arrays.py b/Lib/ctypes/test/test_arrays.py --- a/Lib/ctypes/test/test_arrays.py +++ b/Lib/ctypes/test/test_arrays.py @@ -37,7 +37,7 @@ values = [ia[i] for i in range(len(init))] self.assertEqual(values, [0] * len(init)) - # Too many in itializers should be caught + # Too many initializers should be caught self.assertRaises(IndexError, int_array, *range(alen*2)) CharArray = ARRAY(c_char, 3) diff --git a/Lib/ctypes/test/test_init.py b/Lib/ctypes/test/test_init.py --- a/Lib/ctypes/test/test_init.py +++ b/Lib/ctypes/test/test_init.py @@ -27,7 +27,7 @@ self.assertEqual((y.x.a, y.x.b), (0, 0)) self.assertEqual(y.x.new_was_called, False) - # But explicitely creating an X structure calls __new__ and __init__, of course. + # But explicitly creating an X structure calls __new__ and __init__, of course. x = X() self.assertEqual((x.a, x.b), (9, 12)) self.assertEqual(x.new_was_called, True) diff --git a/Lib/ctypes/test/test_numbers.py b/Lib/ctypes/test/test_numbers.py --- a/Lib/ctypes/test/test_numbers.py +++ b/Lib/ctypes/test/test_numbers.py @@ -157,7 +157,7 @@ def test_int_from_address(self): from array import array for t in signed_types + unsigned_types: - # the array module doesn't suppport all format codes + # the array module doesn't support all format codes # (no 'q' or 'Q') try: array(t._type_) diff --git a/Lib/ctypes/test/test_win32.py b/Lib/ctypes/test/test_win32.py --- a/Lib/ctypes/test/test_win32.py +++ b/Lib/ctypes/test/test_win32.py @@ -17,7 +17,7 @@ # ValueError: Procedure probably called with not enough arguments (4 bytes missing) self.assertRaises(ValueError, IsWindow) - # This one should succeeed... + # This one should succeed... self.assertEqual(0, IsWindow(0)) # ValueError: Procedure probably called with too many arguments (8 bytes in excess) diff --git a/Lib/difflib.py b/Lib/difflib.py --- a/Lib/difflib.py +++ b/Lib/difflib.py @@ -1719,7 +1719,7 @@ line = line.replace(' ','\0') # expand tabs into spaces line = line.expandtabs(self._tabsize) - # relace spaces from expanded tabs back into tab characters + # replace spaces from expanded tabs back into tab characters # (we'll replace them with markup after we do differencing) line = line.replace(' ','\t') return line.replace('\0',' ').rstrip('\n') diff --git a/Lib/distutils/cmd.py b/Lib/distutils/cmd.py --- a/Lib/distutils/cmd.py +++ b/Lib/distutils/cmd.py @@ -359,7 +359,7 @@ not self.force, dry_run=self.dry_run) def move_file (self, src, dst, level=1): - """Move a file respectin dry-run flag.""" + """Move a file respecting dry-run flag.""" return file_util.move_file(src, dst, dry_run=self.dry_run) def spawn(self, cmd, search_path=1, level=1): diff --git a/Lib/distutils/cygwinccompiler.py b/Lib/distutils/cygwinccompiler.py --- a/Lib/distutils/cygwinccompiler.py +++ b/Lib/distutils/cygwinccompiler.py @@ -155,7 +155,7 @@ self.dll_libraries = get_msvcr() def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): - """Compiles the source by spawing GCC and windres if needed.""" + """Compiles the source by spawning GCC and windres if needed.""" if ext == '.rc' or ext == '.res': # gcc needs '.res' and '.rc' compiled to object files !!! try: diff --git a/Lib/distutils/tests/test_clean.py b/Lib/distutils/tests/test_clean.py --- a/Lib/distutils/tests/test_clean.py +++ b/Lib/distutils/tests/test_clean.py @@ -39,7 +39,7 @@ self.assertTrue(not os.path.exists(path), '%s was not removed' % path) - # let's run the command again (should spit warnings but suceed) + # let's run the command again (should spit warnings but succeed) cmd.all = 1 cmd.ensure_finalized() cmd.run() diff --git a/Lib/distutils/tests/test_install.py b/Lib/distutils/tests/test_install.py --- a/Lib/distutils/tests/test_install.py +++ b/Lib/distutils/tests/test_install.py @@ -62,7 +62,7 @@ if sys.version < '2.6': return - # preparing the environement for the test + # preparing the environment for the test self.old_user_base = site.USER_BASE self.old_user_site = site.USER_SITE self.tmpdir = self.mkdtemp() diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -311,7 +311,7 @@ # adding a file self.write_file((self.tmp_dir, 'somecode', 'doc2.txt'), '#') - # make sure build_py is reinitinialized, like a fresh run + # make sure build_py is reinitialized, like a fresh run build_py = dist.get_command_obj('build_py') build_py.finalized = False build_py.ensure_finalized() diff --git a/Lib/doctest.py b/Lib/doctest.py --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -1211,7 +1211,7 @@ # Process each example. for examplenum, example in enumerate(test.examples): - # If REPORT_ONLY_FIRST_FAILURE is set, then supress + # If REPORT_ONLY_FIRST_FAILURE is set, then suppress # reporting after the first failure. quiet = (self.optionflags & REPORT_ONLY_FIRST_FAILURE and failures > 0) @@ -2135,7 +2135,7 @@ caller can catch the errors and initiate post-mortem debugging. The DocTestCase provides a debug method that raises - UnexpectedException errors if there is an unexepcted + UnexpectedException errors if there is an unexpected exception: >>> test = DocTestParser().get_doctest('>>> raise KeyError\n42', diff --git a/Lib/email/encoders.py b/Lib/email/encoders.py --- a/Lib/email/encoders.py +++ b/Lib/email/encoders.py @@ -12,7 +12,7 @@ ] -from base64 import b64encode as _bencode +from base64 import encodebytes as _bencode from quopri import encodestring as _encodestring diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -47,7 +47,7 @@ # For use with .match() fcre = re.compile(r'[\041-\176]+:$') -# Find a header embeded in a putative header value. Used to check for +# Find a header embedded in a putative header value. Used to check for # header injection attack. _embeded_header = re.compile(r'\n[^ \t]+:') @@ -314,7 +314,7 @@ self._continuation_ws, splitchars) for string, charset in self._chunks: lines = string.splitlines() - formatter.feed(lines[0], charset) + formatter.feed(lines[0] if lines else '', charset) for line in lines[1:]: formatter.newline() if charset.header_encoding is not None: diff --git a/Lib/email/message.py b/Lib/email/message.py --- a/Lib/email/message.py +++ b/Lib/email/message.py @@ -48,9 +48,9 @@ def _splitparam(param): # Split header parameters. BAW: this may be too simple. It isn't # strictly RFC 2045 (section 5.1) compliant, but it catches most headers - # found in the wild. We may eventually need a full fledged parser - # eventually. - a, sep, b = param.partition(';') + # found in the wild. We may eventually need a full fledged parser. + # RDM: we might have a Header here; for now just stringify it. + a, sep, b = str(param).partition(';') if not sep: return a.strip(), None return a.strip(), b.strip() @@ -90,6 +90,8 @@ return param def _parseparam(s): + # RDM This might be a Header, so for now stringify it. + s = ';' + str(s) plist = [] while s[:1] == ';': s = s[1:] @@ -240,7 +242,8 @@ if i is not None and not isinstance(self._payload, list): raise TypeError('Expected list, got %s' % type(self._payload)) payload = self._payload - cte = self.get('content-transfer-encoding', '').lower() + # cte might be a Header, so for now stringify it. + cte = str(self.get('content-transfer-encoding', '')).lower() # payload may be bytes here. if isinstance(payload, str): if _has_surrogates(payload): @@ -561,7 +564,7 @@ if value is missing: return failobj params = [] - for p in _parseparam(';' + value): + for p in _parseparam(value): try: name, val = p.split('=', 1) name = name.strip() diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -573,9 +573,18 @@ msg['Dummy'] = 'dummy\nX-Injected-Header: test' self.assertRaises(errors.HeaderParseError, msg.as_string) - # Test the email.encoders module class TestEncoders(unittest.TestCase): + + def test_EncodersEncode_base64(self): + with openfile('PyBanner048.gif', 'rb') as fp: + bindata = fp.read() + mimed = email.mime.image.MIMEImage(bindata) + base64ed = mimed.get_payload() + # the transfer-encoded body lines should all be <=76 characters + lines = base64ed.split('\n') + self.assertLessEqual(max([ len(x) for x in lines ]), 76) + def test_encode_empty_payload(self): eq = self.assertEqual msg = Message() @@ -1141,10 +1150,11 @@ def test_body(self): eq = self.assertEqual - bytes = b'\xfa\xfb\xfc\xfd\xfe\xff' - msg = MIMEApplication(bytes) - eq(msg.get_payload(), '+vv8/f7/') - eq(msg.get_payload(decode=True), bytes) + bytesdata = b'\xfa\xfb\xfc\xfd\xfe\xff' + msg = MIMEApplication(bytesdata) + # whitespace in the cte encoded block is RFC-irrelevant. + eq(msg.get_payload().strip(), '+vv8/f7/') + eq(msg.get_payload(decode=True), bytesdata) @@ -2992,6 +3002,58 @@ ['foo at bar.com', 'g\uFFFD\uFFFDst']) + def test_get_content_type_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/pl\xA7in; charset=utf-8 + """).encode('latin-1')) + self.assertEqual(msg.get_content_type(), "text/pl\uFFFDin") + self.assertEqual(msg.get_content_maintype(), "text") + self.assertEqual(msg.get_content_subtype(), "pl\uFFFDin") + + def test_get_params_with_8bit(self): + msg = email.message_from_bytes( + 'X-Header: foo=\xa7ne; b\xa7r=two; baz=three\n'.encode('latin-1')) + self.assertEqual(msg.get_params(header='x-header'), + [('foo', '\uFFFDne'), ('b\uFFFDr', 'two'), ('baz', 'three')]) + self.assertEqual(msg.get_param('Foo', header='x-header'), '\uFFFdne') + # XXX: someday you might be able to get 'b\xa7r', for now you can't. + self.assertEqual(msg.get_param('b\xa7r', header='x-header'), None) + + def test_get_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + self.assertEqual(msg.get_param('title'), + ('us-ascii', 'en', 'This is not f\uFFFDn')) + + def test_set_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + msg.set_param('title', 'test') + self.assertEqual(msg.get_param('title'), 'test') + + def test_del_rfc2231_params_with_8bit(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20not%20f\xa7n""" + ).encode('latin-1')) + msg.del_param('title') + self.assertEqual(msg.get_param('title'), None) + self.assertEqual(msg.get_content_maintype(), 'text') + + def test_get_payload_with_8bit_cte_header(self): + msg = email.message_from_bytes(textwrap.dedent("""\ + Content-Transfer-Encoding: b\xa7se64 + Content-Type: text/plain; charset=latin-1 + + payload + """).encode('latin-1')) + self.assertEqual(msg.get_payload(), 'payload\n') + self.assertEqual(msg.get_payload(decode=True), b'payload\n') + non_latin_bin_msg = textwrap.dedent("""\ From: foo at bar.com To: b?z @@ -3695,6 +3757,13 @@ h = Header('?', charset='shift_jis') self.assertEqual(h.encode(), '=?iso-2022-jp?b?GyRCSjgbKEI=?=') + def test_flatten_header_with_no_value(self): + # Issue 11401 (regression from email 4.x) Note that the space after + # the header doesn't reflect the input, but this is also the way + # email 4.x behaved. At some point it would be nice to fix that. + msg = email.message_from_string("EmptyHeader:") + self.assertEqual(str(msg), "EmptyHeader: \n\n") + # Test RFC 2231 header parameters (en/de)coding diff --git a/Lib/functools.py b/Lib/functools.py --- a/Lib/functools.py +++ b/Lib/functools.py @@ -140,7 +140,7 @@ tuple=tuple, sorted=sorted, len=len, KeyError=KeyError): hits = misses = 0 - kwd_mark = object() # separates positional and keyword args + kwd_mark = (object(),) # separates positional and keyword args lock = Lock() # needed because ordereddicts aren't threadsafe if maxsize is None: @@ -151,7 +151,7 @@ nonlocal hits, misses key = args if kwds: - key += (kwd_mark,) + tuple(sorted(kwds.items())) + key += kwd_mark + tuple(sorted(kwds.items())) try: result = cache[key] hits += 1 @@ -170,7 +170,7 @@ nonlocal hits, misses key = args if kwds: - key += (kwd_mark,) + tuple(sorted(kwds.items())) + key += kwd_mark + tuple(sorted(kwds.items())) try: with lock: result = cache[key] diff --git a/Lib/http/server.py b/Lib/http/server.py --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -103,15 +103,20 @@ # Default error message template DEFAULT_ERROR_MESSAGE = """\ - -Error response - - -

    Error response

    -

    Error code %(code)d. -

    Message: %(message)s. -

    Error code explanation: %(code)s = %(explain)s. - + + + + + Error response + + +

    Error response

    +

    Error code: %(code)d

    +

    Message: %(message)s.

    +

    Error code explanation: %(code)s - %(explain)s.

    + + """ DEFAULT_ERROR_CONTENT_TYPE = "text/html;charset=utf-8" diff --git a/Lib/idlelib/FormatParagraph.py b/Lib/idlelib/FormatParagraph.py --- a/Lib/idlelib/FormatParagraph.py +++ b/Lib/idlelib/FormatParagraph.py @@ -54,7 +54,7 @@ # If the block ends in a \n, we dont want the comment # prefix inserted after it. (Im not sure it makes sense to # reformat a comment block that isnt made of complete - # lines, but whatever!) Can't think of a clean soltution, + # lines, but whatever!) Can't think of a clean solution, # so we hack away block_suffix = "" if not newdata[-1]: diff --git a/Lib/idlelib/extend.txt b/Lib/idlelib/extend.txt --- a/Lib/idlelib/extend.txt +++ b/Lib/idlelib/extend.txt @@ -18,7 +18,7 @@ An IDLE extension class is instantiated with a single argument, `editwin', an EditorWindow instance. The extension cannot assume much -about this argument, but it is guarateed to have the following instance +about this argument, but it is guaranteed to have the following instance variables: text a Text instance (a widget) diff --git a/Lib/idlelib/macosxSupport.py b/Lib/idlelib/macosxSupport.py --- a/Lib/idlelib/macosxSupport.py +++ b/Lib/idlelib/macosxSupport.py @@ -53,8 +53,8 @@ def addOpenEventSupport(root, flist): """ - This ensures that the application will respont to open AppleEvents, which - makes is feaseable to use IDLE as the default application for python files. + This ensures that the application will respond to open AppleEvents, which + makes is feasible to use IDLE as the default application for python files. """ def doOpenFile(*args): for fn in args: diff --git a/Lib/lib2to3/fixes/fix_metaclass.py b/Lib/lib2to3/fixes/fix_metaclass.py --- a/Lib/lib2to3/fixes/fix_metaclass.py +++ b/Lib/lib2to3/fixes/fix_metaclass.py @@ -48,7 +48,7 @@ """ for node in cls_node.children: if node.type == syms.suite: - # already in the prefered format, do nothing + # already in the preferred format, do nothing return # !%@#! oneliners have no suite node, we have to fake one up diff --git a/Lib/lib2to3/pgen2/conv.py b/Lib/lib2to3/pgen2/conv.py --- a/Lib/lib2to3/pgen2/conv.py +++ b/Lib/lib2to3/pgen2/conv.py @@ -51,7 +51,7 @@ self.finish_off() def parse_graminit_h(self, filename): - """Parse the .h file writen by pgen. (Internal) + """Parse the .h file written by pgen. (Internal) This file is a sequence of #define statements defining the nonterminals of the grammar as numbers. We build two tables @@ -82,7 +82,7 @@ return True def parse_graminit_c(self, filename): - """Parse the .c file writen by pgen. (Internal) + """Parse the .c file written by pgen. (Internal) The file looks as follows. The first two lines are always this: diff --git a/Lib/lib2to3/pytree.py b/Lib/lib2to3/pytree.py --- a/Lib/lib2to3/pytree.py +++ b/Lib/lib2to3/pytree.py @@ -658,8 +658,8 @@ content: optional sequence of subsequences of patterns; if absent, matches one node; if present, each subsequence is an alternative [*] - min: optinal minumum number of times to match, default 0 - max: optional maximum number of times tro match, default HUGE + min: optional minimum number of times to match, default 0 + max: optional maximum number of times to match, default HUGE name: optional name assigned to this match [*] Thus, if content is [[a, b, c], [d, e], [f, g, h]] this is diff --git a/Lib/lib2to3/tests/data/py2_test_grammar.py b/Lib/lib2to3/tests/data/py2_test_grammar.py --- a/Lib/lib2to3/tests/data/py2_test_grammar.py +++ b/Lib/lib2to3/tests/data/py2_test_grammar.py @@ -316,7 +316,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/lib2to3/tests/data/py3_test_grammar.py b/Lib/lib2to3/tests/data/py3_test_grammar.py --- a/Lib/lib2to3/tests/data/py3_test_grammar.py +++ b/Lib/lib2to3/tests/data/py3_test_grammar.py @@ -356,7 +356,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/multiprocessing/__init__.py b/Lib/multiprocessing/__init__.py --- a/Lib/multiprocessing/__init__.py +++ b/Lib/multiprocessing/__init__.py @@ -115,8 +115,11 @@ except (ValueError, KeyError): num = 0 elif 'bsd' in sys.platform or sys.platform == 'darwin': + comm = '/sbin/sysctl -n hw.ncpu' + if sys.platform == 'darwin': + comm = '/usr' + comm try: - with os.popen('sysctl -n hw.ncpu') as p: + with os.popen(comm) as p: num = int(p.read()) except ValueError: num = 0 diff --git a/Lib/ntpath.py b/Lib/ntpath.py --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -405,7 +405,7 @@ # - $varname is accepted. # - %varname% is accepted. # - varnames can be made out of letters, digits and the characters '_-' -# (though is not verifed in the ${varname} and %varname% cases) +# (though is not verified in the ${varname} and %varname% cases) # XXX With COMMAND.COM you can use any characters in a variable name, # XXX except '^|<>='. diff --git a/Lib/pickletools.py b/Lib/pickletools.py --- a/Lib/pickletools.py +++ b/Lib/pickletools.py @@ -1406,7 +1406,7 @@ proto=0, doc="""Read an object from the memo and push it on the stack. - The index of the memo object to push is given by the newline-teriminated + The index of the memo object to push is given by the newline-terminated decimal string following. BINGET and LONG_BINGET are space-optimized versions. """), diff --git a/Lib/platform.py b/Lib/platform.py --- a/Lib/platform.py +++ b/Lib/platform.py @@ -417,7 +417,7 @@ info = pipe.read() if pipe.close(): raise os.error('command failed') - # XXX How can I supress shell errors from being written + # XXX How can I suppress shell errors from being written # to stderr ? except os.error as why: #print 'Command %s failed: %s' % (cmd,why) diff --git a/Lib/pydoc.py b/Lib/pydoc.py --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -168,11 +168,11 @@ def visiblename(name, all=None): """Decide whether to show documentation on a variable.""" # Certain special names are redundant. - _hidden_names = ('__builtins__', '__doc__', '__file__', '__path__', + if name in {'__builtins__', '__doc__', '__file__', '__path__', '__module__', '__name__', '__slots__', '__package__', '__cached__', '__author__', '__credits__', '__date__', - '__version__') - if name in _hidden_names: return 0 + '__version__'}: + return 0 # Private names are hidden, but special names are displayed. if name.startswith('__') and name.endswith('__'): return 1 if all is not None: diff --git a/Lib/shutil.py b/Lib/shutil.py --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -737,8 +737,8 @@ except KeyError: raise ValueError("Unknown unpack format '{0}'".format(format)) - func = format_info[0] - func(filename, extract_dir, **dict(format_info[1])) + func = format_info[1] + func(filename, extract_dir, **dict(format_info[2])) else: # we need to look at the registered unpackers supported extensions format = _find_unpack_format(filename) diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -371,8 +371,9 @@ """This exception is raised when the timeout expires while waiting for a child process. """ - def __init__(self, cmd, output=None): + def __init__(self, cmd, timeout, output=None): self.cmd = cmd + self.timeout = timeout self.output = output def __str__(self): @@ -431,7 +432,7 @@ return fds __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput", - "getoutput", "check_output", "CalledProcessError"] + "getoutput", "check_output", "CalledProcessError", "DEVNULL"] if mswindows: from _subprocess import CREATE_NEW_CONSOLE, CREATE_NEW_PROCESS_GROUP @@ -456,6 +457,7 @@ PIPE = -1 STDOUT = -2 +DEVNULL = -3 def _eintr_retry_call(func, *args): @@ -532,7 +534,7 @@ except TimeoutExpired: process.kill() output, unused_err = process.communicate() - raise TimeoutExpired(process.args, output=output) + raise TimeoutExpired(process.args, timeout, output=output) retcode = process.poll() if retcode: raise CalledProcessError(retcode, process.args, output=output) @@ -800,6 +802,10 @@ # Child is still running, keep us alive until we can wait on it. _active.append(self) + def _get_devnull(self): + if not hasattr(self, '_devnull'): + self._devnull = os.open(os.devnull, os.O_RDWR) + return self._devnull def communicate(self, input=None, timeout=None): """Interact with process: Send data to stdin. Read data from @@ -839,7 +845,7 @@ return (stdout, stderr) try: - stdout, stderr = self._communicate(input, endtime) + stdout, stderr = self._communicate(input, endtime, timeout) finally: self._communication_started = True @@ -860,12 +866,12 @@ return endtime - time.time() - def _check_timeout(self, endtime): + def _check_timeout(self, endtime, orig_timeout): """Convenience for checking if a timeout has expired.""" if endtime is None: return if time.time() > endtime: - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, orig_timeout) if mswindows: @@ -889,6 +895,8 @@ p2cread, _ = _subprocess.CreatePipe(None, 0) elif stdin == PIPE: p2cread, p2cwrite = _subprocess.CreatePipe(None, 0) + elif stdin == DEVNULL: + p2cread = msvcrt.get_osfhandle(self._get_devnull()) elif isinstance(stdin, int): p2cread = msvcrt.get_osfhandle(stdin) else: @@ -902,6 +910,8 @@ _, c2pwrite = _subprocess.CreatePipe(None, 0) elif stdout == PIPE: c2pread, c2pwrite = _subprocess.CreatePipe(None, 0) + elif stdout == DEVNULL: + c2pwrite = msvcrt.get_osfhandle(self._get_devnull()) elif isinstance(stdout, int): c2pwrite = msvcrt.get_osfhandle(stdout) else: @@ -917,6 +927,8 @@ errread, errwrite = _subprocess.CreatePipe(None, 0) elif stderr == STDOUT: errwrite = c2pwrite + elif stderr == DEVNULL: + errwrite = msvcrt.get_osfhandle(self._get_devnull()) elif isinstance(stderr, int): errwrite = msvcrt.get_osfhandle(stderr) else: @@ -1010,7 +1022,7 @@ except pywintypes.error as e: # Translate pywintypes.error to WindowsError, which is # a subclass of OSError. FIXME: We should really - # translate errno using _sys_errlist (or simliar), but + # translate errno using _sys_errlist (or similar), but # how can this be done from Python? raise WindowsError(*e.args) finally: @@ -1026,6 +1038,8 @@ c2pwrite.Close() if errwrite != -1: errwrite.Close() + if hasattr(self, '_devnull'): + os.close(self._devnull) # Retain the process handle, but close the thread handle self._child_created = True @@ -1050,9 +1064,11 @@ return self.returncode - def wait(self, timeout=None): + def wait(self, timeout=None, endtime=None): """Wait for child process to terminate. Returns returncode attribute.""" + if endtime is not None: + timeout = self._remaining_time(endtime) if timeout is None: timeout = _subprocess.INFINITE else: @@ -1060,7 +1076,7 @@ if self.returncode is None: result = _subprocess.WaitForSingleObject(self._handle, timeout) if result == _subprocess.WAIT_TIMEOUT: - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, timeout) self.returncode = _subprocess.GetExitCodeProcess(self._handle) return self.returncode @@ -1070,7 +1086,7 @@ fh.close() - def _communicate(self, input, endtime): + def _communicate(self, input, endtime, orig_timeout): # Start reader threads feeding into a list hanging off of this # object, unless they've already been started. if self.stdout and not hasattr(self, "_stdout_buff"): @@ -1159,6 +1175,8 @@ pass elif stdin == PIPE: p2cread, p2cwrite = _create_pipe() + elif stdin == DEVNULL: + p2cread = self._get_devnull() elif isinstance(stdin, int): p2cread = stdin else: @@ -1169,6 +1187,8 @@ pass elif stdout == PIPE: c2pread, c2pwrite = _create_pipe() + elif stdout == DEVNULL: + c2pwrite = self._get_devnull() elif isinstance(stdout, int): c2pwrite = stdout else: @@ -1181,6 +1201,8 @@ errread, errwrite = _create_pipe() elif stderr == STDOUT: errwrite = c2pwrite + elif stderr == DEVNULL: + errwrite = self._get_devnull() elif isinstance(stderr, int): errwrite = stderr else: @@ -1374,6 +1396,8 @@ os.close(c2pwrite) if errwrite != -1 and errread != -1: os.close(errwrite) + if hasattr(self, '_devnull'): + os.close(self._devnull) # Wait for exec to fail or succeed; possibly raising an # exception (limited in size) @@ -1468,13 +1492,18 @@ def wait(self, timeout=None, endtime=None): """Wait for child process to terminate. Returns returncode attribute.""" - # If timeout was passed but not endtime, compute endtime in terms of - # timeout. - if endtime is None and timeout is not None: - endtime = time.time() + timeout if self.returncode is not None: return self.returncode - elif endtime is not None: + + # endtime is preferred to timeout. timeout is only used for + # printing. + if endtime is not None or timeout is not None: + if endtime is None: + endtime = time.time() + timeout + elif timeout is None: + timeout = self._remaining_time(endtime) + + if endtime is not None: # Enter a busy loop if we have a timeout. This busy loop was # cribbed from Lib/threading.py in Thread.wait() at r71065. delay = 0.0005 # 500 us -> initial delay of 1 ms @@ -1486,7 +1515,7 @@ break remaining = self._remaining_time(endtime) if remaining <= 0: - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, timeout) delay = min(delay * 2, remaining, .05) time.sleep(delay) elif self.returncode is None: @@ -1495,7 +1524,7 @@ return self.returncode - def _communicate(self, input, endtime): + def _communicate(self, input, endtime, orig_timeout): if self.stdin and not self._communication_started: # Flush stdio buffer. This might block, if the user has # been writing to .stdin in an uncontrolled fashion. @@ -1504,9 +1533,11 @@ self.stdin.close() if _has_poll: - stdout, stderr = self._communicate_with_poll(input, endtime) + stdout, stderr = self._communicate_with_poll(input, endtime, + orig_timeout) else: - stdout, stderr = self._communicate_with_select(input, endtime) + stdout, stderr = self._communicate_with_select(input, endtime, + orig_timeout) self.wait(timeout=self._remaining_time(endtime)) @@ -1529,7 +1560,7 @@ return (stdout, stderr) - def _communicate_with_poll(self, input, endtime): + def _communicate_with_poll(self, input, endtime, orig_timeout): stdout = None # Return stderr = None # Return @@ -1580,7 +1611,7 @@ if e.args[0] == errno.EINTR: continue raise - self._check_timeout(endtime) + self._check_timeout(endtime, orig_timeout) # XXX Rewrite these to use non-blocking I/O on the # file objects; they are no longer using C stdio! @@ -1604,7 +1635,7 @@ return (stdout, stderr) - def _communicate_with_select(self, input, endtime): + def _communicate_with_select(self, input, endtime, orig_timeout): if not self._communication_started: self._read_set = [] self._write_set = [] @@ -1646,9 +1677,9 @@ # According to the docs, returning three empty lists indicates # that the timeout expired. if not (rlist or wlist or xlist): - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, orig_timeout) # We also check what time it is ourselves for good measure. - self._check_timeout(endtime) + self._check_timeout(endtime, orig_timeout) # XXX Rewrite these to use non-blocking I/O on the # file objects; they are no longer using C stdio! diff --git a/Lib/test/crashers/README b/Lib/test/crashers/README --- a/Lib/test/crashers/README +++ b/Lib/test/crashers/README @@ -14,3 +14,7 @@ Once the crash is fixed, the test case should be moved into an appropriate test (even if it was originally from the test suite). This ensures the regression doesn't happen again. And if it does, it should be easier to track down. + +Also see Lib/test_crashers.py which exercises the crashers in this directory. +In particular, make sure to add any new infinite loop crashers to the black +list so it doesn't try to run them. diff --git a/Lib/test/crashers/compiler_recursion.py b/Lib/test/crashers/compiler_recursion.py --- a/Lib/test/crashers/compiler_recursion.py +++ b/Lib/test/crashers/compiler_recursion.py @@ -9,5 +9,5 @@ # e.g. '1*'*10**5+'1' will die in compiler_visit_expr # The exact limit to destroy the stack will vary by platform -# but 100k should do the trick most places -compile('()'*10**5, '?', 'exec') +# but 10M should do the trick even with huge stack allocations +compile('()'*10**7, '?', 'exec') diff --git a/Lib/test/datetimetester.py b/Lib/test/datetimetester.py --- a/Lib/test/datetimetester.py +++ b/Lib/test/datetimetester.py @@ -3414,7 +3414,7 @@ self.assertEqual(dt, there_and_back) # Because we have a redundant spelling when DST begins, there is - # (unforunately) an hour when DST ends that can't be spelled at all in + # (unfortunately) an hour when DST ends that can't be spelled at all in # local time. When DST ends, the clock jumps from 1:59 back to 1:00 # again. The hour 1:MM DST has no spelling then: 1:MM is taken to be # standard time. 1:MM DST == 0:MM EST, but 0:MM is taken to be diff --git a/Lib/test/pyclbr_input.py b/Lib/test/pyclbr_input.py --- a/Lib/test/pyclbr_input.py +++ b/Lib/test/pyclbr_input.py @@ -19,7 +19,7 @@ # XXX: This causes test_pyclbr.py to fail, but only because the # introspection-based is_method() code in the test can't - # distinguish between this and a geniune method function like m(). + # distinguish between this and a genuine method function like m(). # The pyclbr.py module gets this right as it parses the text. # #f = f diff --git a/Lib/test/test_binhex.py b/Lib/test/test_binhex.py --- a/Lib/test/test_binhex.py +++ b/Lib/test/test_binhex.py @@ -15,10 +15,12 @@ def setUp(self): self.fname1 = support.TESTFN + "1" self.fname2 = support.TESTFN + "2" + self.fname3 = support.TESTFN + "very_long_filename__very_long_filename__very_long_filename__very_long_filename__" def tearDown(self): support.unlink(self.fname1) support.unlink(self.fname2) + support.unlink(self.fname3) DATA = b'Jack is my hero' @@ -37,6 +39,15 @@ self.assertEqual(self.DATA, finish) + def test_binhex_error_on_long_filename(self): + """ + The testcase fails if no exception is raised when a filename parameter provided to binhex.binhex() + is too long, or if the exception raised in binhex.binhex() is not an instance of binhex.Error. + """ + f3 = open(self.fname3, 'wb') + f3.close() + + self.assertRaises(binhex.Error, binhex.binhex, self.fname3, self.fname2) def test_main(): support.run_unittest(BinHexTestCase) diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py --- a/Lib/test/test_capi.py +++ b/Lib/test/test_capi.py @@ -127,7 +127,7 @@ context.event.set() def test_pendingcalls_non_threaded(self): - #again, just using the main thread, likely they will all be dispathced at + #again, just using the main thread, likely they will all be dispatched at #once. It is ok to ask for too many, because we loop until we find a slot. #the loop can be interrupted to dispatch. #there are only 32 dispatch slots, so we go for twice that! diff --git a/Lib/test/test_crashers.py b/Lib/test/test_crashers.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_crashers.py @@ -0,0 +1,37 @@ +# Tests that the crashers in the Lib/test/crashers directory actually +# do crash the interpreter as expected +# +# If a crasher is fixed, it should be moved elsewhere in the test suite to +# ensure it continues to work correctly. + +import unittest +import glob +import os.path +import test.support +from test.script_helper import assert_python_failure + +CRASHER_DIR = os.path.join(os.path.dirname(__file__), "crashers") +CRASHER_FILES = os.path.join(CRASHER_DIR, "*.py") + +infinite_loops = ["infinite_loop_re.py", "nasty_eq_vs_dict.py"] + +class CrasherTest(unittest.TestCase): + + @test.support.cpython_only + def test_crashers_crash(self): + for fname in glob.glob(CRASHER_FILES): + if os.path.basename(fname) in infinite_loops: + continue + # Some "crashers" only trigger an exception rather than a + # segfault. Consider that an acceptable outcome. + if test.support.verbose: + print("Checking crasher:", fname) + assert_python_failure(fname) + + +def test_main(): + test.support.run_unittest(CrasherTest) + test.support.reap_children() + +if __name__ == "__main__": + test_main() diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -228,7 +228,7 @@ try: t = self.eval_line(line) except DecimalException as exception: - #Exception raised where there shoudn't have been one. + #Exception raised where there shouldn't have been one. self.fail('Exception "'+exception.__class__.__name__ + '" raised on line '+line) return diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -3967,7 +3967,7 @@ except TypeError: pass else: - self.fail("Carlo Verre __setattr__ suceeded!") + self.fail("Carlo Verre __setattr__ succeeded!") try: object.__delattr__(str, "lower") except TypeError: diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -1297,7 +1297,7 @@ ? + ++ ^ TestResults(failed=1, attempted=1) -The REPORT_ONLY_FIRST_FAILURE supresses result output after the first +The REPORT_ONLY_FIRST_FAILURE suppresses result output after the first failing example: >>> def f(x): @@ -1327,7 +1327,7 @@ 2 TestResults(failed=3, attempted=5) -However, output from `report_start` is not supressed: +However, output from `report_start` is not suppressed: >>> doctest.DocTestRunner(verbose=True, optionflags=flags).run(test) ... # doctest: +ELLIPSIS @@ -2278,7 +2278,7 @@ >>> doctest.master = None # Reset master. (Note: we'll be clearing doctest.master after each call to -`doctest.testfile`, to supress warnings about multiple tests with the +`doctest.testfile`, to suppress warnings about multiple tests with the same name.) Globals may be specified with the `globs` and `extraglobs` parameters: @@ -2314,7 +2314,7 @@ TestResults(failed=0, attempted=2) >>> doctest.master = None # Reset master. -Verbosity can be increased with the optional `verbose` paremter: +Verbosity can be increased with the optional `verbose` parameter: >>> doctest.testfile('test_doctest.txt', globs=globs, verbose=True) Trying: @@ -2351,7 +2351,7 @@ TestResults(failed=1, attempted=2) >>> doctest.master = None # Reset master. -The summary report may be supressed with the optional `report` +The summary report may be suppressed with the optional `report` parameter: >>> doctest.testfile('test_doctest.txt', report=False) diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py --- a/Lib/test/test_extcall.py +++ b/Lib/test/test_extcall.py @@ -228,7 +228,7 @@ >>> Foo.method(1, *[2, 3]) 5 -A PyCFunction that takes only positional parameters shoud allow an +A PyCFunction that takes only positional parameters should allow an empty keyword dictionary to pass without a complaint, but raise a TypeError if te dictionary is not empty diff --git a/Lib/test/test_fileinput.py b/Lib/test/test_fileinput.py --- a/Lib/test/test_fileinput.py +++ b/Lib/test/test_fileinput.py @@ -8,11 +8,15 @@ import fileinput import collections import gzip -import bz2 import types import codecs import unittest +try: + import bz2 +except ImportError: + bz2 = None + from io import StringIO from fileinput import FileInput, hook_encoded @@ -765,6 +769,7 @@ self.assertEqual(self.fake_open.invocation_count, 1) self.assertEqual(self.fake_open.last_invocation, (("test.gz", 3), {})) + @unittest.skipUnless(bz2, "Requires bz2") def test_bz2_ext_fake(self): original_open = bz2.BZ2File bz2.BZ2File = self.fake_open diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -67,7 +67,7 @@ def test_float_with_comma(self): # set locale to something that doesn't use '.' for the decimal point # float must not accept the locale specific decimal point but - # it still has to accept the normal python syntac + # it still has to accept the normal python syntax import locale if not locale.localeconv()['decimal_point'] == ',': return @@ -189,7 +189,7 @@ def assertEqualAndEqualSign(self, a, b): # fail unless a == b and a and b have the same sign bit; # the only difference from assertEqual is that this test - # distingishes -0.0 and 0.0. + # distinguishes -0.0 and 0.0. self.assertEqual((a, copysign(1.0, a)), (b, copysign(1.0, b))) @support.requires_IEEE_754 diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -350,7 +350,7 @@ ### simple_stmt: small_stmt (';' small_stmt)* [';'] x = 1; pass; del x def foo(): - # verify statments that end with semi-colons + # verify statements that end with semi-colons x = 1; pass; del x; foo() diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -462,7 +462,7 @@ return False class BaseHTTPRequestHandlerTestCase(unittest.TestCase): - """Test the functionaility of the BaseHTTPServer. + """Test the functionality of the BaseHTTPServer. Test the support for the Expect 100-continue header. """ diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -283,8 +283,6 @@ self.skipTest('path is not encodable to {}'.format(encoding)) with self.assertRaises(ImportError) as c: __import__(path) - self.assertEqual("Import by filename is not supported.", - c.exception.args[0]) def test_import_in_del_does_not_crash(self): # Issue 4236 diff --git a/Lib/test/test_iterlen.py b/Lib/test/test_iterlen.py --- a/Lib/test/test_iterlen.py +++ b/Lib/test/test_iterlen.py @@ -20,11 +20,11 @@ Some containers become temporarily immutable during iteration. This includes dicts, sets, and collections.deque. Their implementation is equally simple -though they need to permantently set their length to zero whenever there is +though they need to permanently set their length to zero whenever there is an attempt to iterate after a length mutation. The situation slightly more involved whenever an object allows length mutation -during iteration. Lists and sequence iterators are dynanamically updatable. +during iteration. Lists and sequence iterators are dynamically updatable. So, if a list is extended during iteration, the iterator will continue through the new items. If it shrinks to a point before the most recent iteration, then no further items are available and the length is reported at zero. diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -1526,7 +1526,7 @@ ... return chain(iterable, repeat(None)) >>> def ncycles(iterable, n): -... "Returns the seqeuence elements n times" +... "Returns the sequence elements n times" ... return chain(*repeat(iterable, n)) >>> def dotproduct(vec1, vec2): diff --git a/Lib/test/test_marshal.py b/Lib/test/test_marshal.py --- a/Lib/test/test_marshal.py +++ b/Lib/test/test_marshal.py @@ -194,7 +194,7 @@ # >>> type(loads(dumps(Int()))) # for typ in (int, float, complex, tuple, list, dict, set, frozenset): - # Note: str sublclasses are not tested because they get handled + # Note: str subclasses are not tested because they get handled # by marshal's routines for objects supporting the buffer API. subtyp = type('subtyp', (typ,), {}) self.assertRaises(ValueError, marshal.dumps, subtyp()) diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -820,7 +820,7 @@ # the following tests have been commented out since they don't # really belong here: the implementation of ** for floats is - # independent of the implemention of math.pow + # independent of the implementation of math.pow #self.assertEqual(1**NAN, 1) #self.assertEqual(1**INF, 1) #self.assertEqual(1**NINF, 1) diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -594,7 +594,7 @@ m2.close() m1.close() - # Test differnt tag + # Test different tag m1 = mmap.mmap(-1, len(data1), tagname="foo") m1[:] = data1 m2 = mmap.mmap(-1, len(data2), tagname="boo") diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -795,7 +795,7 @@ event = self.Event() wait = TimingWrapper(event.wait) - # Removed temporaily, due to API shear, this does not + # Removed temporarily, due to API shear, this does not # work with threading._Event objects. is_set == isSet self.assertEqual(event.is_set(), False) @@ -1765,7 +1765,7 @@ util.Finalize(None, conn.send, args=('STOP',), exitpriority=-100) - # call mutliprocessing's cleanup function then exit process without + # call multiprocessing's cleanup function then exit process without # garbage collecting locals util._exit_function() conn.close() diff --git a/Lib/test/test_pkg.py b/Lib/test/test_pkg.py --- a/Lib/test/test_pkg.py +++ b/Lib/test/test_pkg.py @@ -56,7 +56,7 @@ if self.root: # Only clean if the test was actually run cleanout(self.root) - # delete all modules concerning the tested hiearchy + # delete all modules concerning the tested hierarchy if self.pkgname: modules = [name for name in sys.modules if self.pkgname in name.split('.')] diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -37,7 +37,7 @@ NO_ARG_FUNCTIONS = [ "ctermid", "getcwd", "getcwdb", "uname", "times", "getloadavg", "getegid", "geteuid", "getgid", "getgroups", - "getpid", "getpgrp", "getppid", "getuid", + "getpid", "getpgrp", "getppid", "getuid", "sync", ] for name in NO_ARG_FUNCTIONS: @@ -132,6 +132,156 @@ finally: fp.close() + @unittest.skipUnless(hasattr(posix, 'truncate'), "test needs posix.truncate()") + def test_truncate(self): + with open(support.TESTFN, 'w') as fp: + fp.write('test') + fp.flush() + posix.truncate(support.TESTFN, 0) + + @unittest.skipUnless(hasattr(posix, 'fexecve'), "test needs posix.fexecve()") + @unittest.skipUnless(hasattr(os, 'fork'), "test needs os.fork()") + @unittest.skipUnless(hasattr(os, 'wait'), "test needs os.wait()") + def test_fexecve(self): + fp = os.open(sys.executable, os.O_RDONLY) + try: + pid = os.fork() + if pid == 0: + os.chdir(os.path.split(sys.executable)[0]) + posix.fexecve(fp, [sys.executable, '-c', 'pass'], os.environ) + else: + self.assertEqual(os.wait(), (pid, 0)) + finally: + os.close(fp) + + @unittest.skipUnless(hasattr(posix, 'waitid'), "test needs posix.waitid()") + @unittest.skipUnless(hasattr(os, 'fork'), "test needs os.fork()") + def test_waitid(self): + pid = os.fork() + if pid == 0: + os.chdir(os.path.split(sys.executable)[0]) + posix.execve(sys.executable, [sys.executable, '-c', 'pass'], os.environ) + else: + res = posix.waitid(posix.P_PID, pid, posix.WEXITED) + self.assertEqual(pid, res.si_pid) + + @unittest.skipUnless(hasattr(posix, 'lockf'), "test needs posix.lockf()") + def test_lockf(self): + fd = os.open(support.TESTFN, os.O_WRONLY | os.O_CREAT) + try: + os.write(fd, b'test') + os.lseek(fd, 0, os.SEEK_SET) + posix.lockf(fd, posix.F_LOCK, 4) + # section is locked + posix.lockf(fd, posix.F_ULOCK, 4) + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'pread'), "test needs posix.pread()") + def test_pread(self): + fd = os.open(support.TESTFN, os.O_RDWR | os.O_CREAT) + try: + os.write(fd, b'test') + os.lseek(fd, 0, os.SEEK_SET) + self.assertEqual(b'es', posix.pread(fd, 2, 1)) + # the first pread() shoudn't disturb the file offset + self.assertEqual(b'te', posix.read(fd, 2)) + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'pwrite'), "test needs posix.pwrite()") + def test_pwrite(self): + fd = os.open(support.TESTFN, os.O_RDWR | os.O_CREAT) + try: + os.write(fd, b'test') + os.lseek(fd, 0, os.SEEK_SET) + posix.pwrite(fd, b'xx', 1) + self.assertEqual(b'txxt', posix.read(fd, 4)) + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'posix_fallocate'), + "test needs posix.posix_fallocate()") + def test_posix_fallocate(self): + fd = os.open(support.TESTFN, os.O_WRONLY | os.O_CREAT) + try: + posix.posix_fallocate(fd, 0, 10) + except OSError as inst: + # issue10812, ZFS doesn't appear to support posix_fallocate, + # so skip Solaris-based since they are likely to have ZFS. + if inst.errno != errno.EINVAL or not sys.platform.startswith("sunos"): + raise + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'posix_fadvise'), + "test needs posix.posix_fadvise()") + def test_posix_fadvise(self): + fd = os.open(support.TESTFN, os.O_RDONLY) + try: + posix.posix_fadvise(fd, 0, 0, posix.POSIX_FADV_WILLNEED) + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'futimes'), "test needs posix.futimes()") + def test_futimes(self): + now = time.time() + fd = os.open(support.TESTFN, os.O_RDONLY) + try: + posix.futimes(fd, None) + self.assertRaises(TypeError, posix.futimes, fd, (None, None)) + self.assertRaises(TypeError, posix.futimes, fd, (now, None)) + self.assertRaises(TypeError, posix.futimes, fd, (None, now)) + posix.futimes(fd, (int(now), int(now))) + posix.futimes(fd, (now, now)) + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'lutimes'), "test needs posix.lutimes()") + def test_lutimes(self): + now = time.time() + posix.lutimes(support.TESTFN, None) + self.assertRaises(TypeError, posix.lutimes, support.TESTFN, (None, None)) + self.assertRaises(TypeError, posix.lutimes, support.TESTFN, (now, None)) + self.assertRaises(TypeError, posix.lutimes, support.TESTFN, (None, now)) + posix.lutimes(support.TESTFN, (int(now), int(now))) + posix.lutimes(support.TESTFN, (now, now)) + + @unittest.skipUnless(hasattr(posix, 'futimens'), "test needs posix.futimens()") + def test_futimens(self): + now = time.time() + fd = os.open(support.TESTFN, os.O_RDONLY) + try: + self.assertRaises(TypeError, posix.futimens, fd, (None, None), (None, None)) + self.assertRaises(TypeError, posix.futimens, fd, (now, 0), None) + self.assertRaises(TypeError, posix.futimens, fd, None, (now, 0)) + posix.futimens(fd, (int(now), int((now - int(now)) * 1e9)), + (int(now), int((now - int(now)) * 1e9))) + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'writev'), "test needs posix.writev()") + def test_writev(self): + fd = os.open(support.TESTFN, os.O_RDWR | os.O_CREAT) + try: + os.writev(fd, (b'test1', b'tt2', b't3')) + os.lseek(fd, 0, os.SEEK_SET) + self.assertEqual(b'test1tt2t3', posix.read(fd, 10)) + finally: + os.close(fd) + + @unittest.skipUnless(hasattr(posix, 'readv'), "test needs posix.readv()") + def test_readv(self): + fd = os.open(support.TESTFN, os.O_RDWR | os.O_CREAT) + try: + os.write(fd, b'test1tt2t3') + os.lseek(fd, 0, os.SEEK_SET) + buf = [bytearray(i) for i in [5, 3, 2]] + self.assertEqual(posix.readv(fd, buf), 10) + self.assertEqual([b'test1', b'tt2', b't3'], [bytes(i) for i in buf]) + finally: + os.close(fd) + def test_dup(self): if hasattr(posix, 'dup'): fp = open(support.TESTFN) diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py --- a/Lib/test/test_posixpath.py +++ b/Lib/test/test_posixpath.py @@ -6,6 +6,11 @@ import sys from posixpath import realpath, abspath, dirname, basename +try: + import posix +except ImportError: + posix = None + # An absolute path to a temporary filename for testing. We can't rely on TESTFN # being an absolute path, so we need this. @@ -150,6 +155,7 @@ def test_islink(self): self.assertIs(posixpath.islink(support.TESTFN + "1"), False) + self.assertIs(posixpath.lexists(support.TESTFN + "2"), False) f = open(support.TESTFN + "1", "wb") try: f.write(b"foo") @@ -225,6 +231,44 @@ def test_ismount(self): self.assertIs(posixpath.ismount("/"), True) + self.assertIs(posixpath.ismount(b"/"), True) + + def test_ismount_non_existent(self): + # Non-existent mountpoint. + self.assertIs(posixpath.ismount(ABSTFN), False) + try: + os.mkdir(ABSTFN) + self.assertIs(posixpath.ismount(ABSTFN), False) + finally: + safe_rmdir(ABSTFN) + + @unittest.skipUnless(support.can_symlink(), + "Test requires symlink support") + def test_ismount_symlinks(self): + # Symlinks are never mountpoints. + try: + os.symlink("/", ABSTFN) + self.assertIs(posixpath.ismount(ABSTFN), False) + finally: + os.unlink(ABSTFN) + + @unittest.skipIf(posix is None, "Test requires posix module") + def test_ismount_different_device(self): + # Simulate the path being on a different device from its parent by + # mocking out st_dev. + save_lstat = os.lstat + def fake_lstat(path): + st_ino = 0 + st_dev = 0 + if path == ABSTFN: + st_dev = 1 + st_ino = 1 + return posix.stat_result((0, st_ino, st_dev, 0, 0, 0, 0, 0, 0, 0)) + try: + os.lstat = fake_lstat + self.assertIs(posixpath.ismount(ABSTFN), True) + finally: + os.lstat = save_lstat def test_expanduser(self): self.assertEqual(posixpath.expanduser("foo"), "foo") @@ -254,6 +298,10 @@ with support.EnvironmentVarGuard() as env: env['HOME'] = '/' self.assertEqual(posixpath.expanduser("~"), "/") + # expanduser should fall back to using the password database + del env['HOME'] + home = pwd.getpwuid(os.getuid()).pw_dir + self.assertEqual(posixpath.expanduser("~"), home) def test_normpath(self): self.assertEqual(posixpath.normpath(""), ".") @@ -289,6 +337,16 @@ @unittest.skipUnless(hasattr(os, "symlink"), "Missing symlink implementation") @skip_if_ABSTFN_contains_backslash + def test_realpath_relative(self): + try: + os.symlink(posixpath.relpath(ABSTFN+"1"), ABSTFN) + self.assertEqual(realpath(ABSTFN), ABSTFN+"1") + finally: + support.unlink(ABSTFN) + + @unittest.skipUnless(hasattr(os, "symlink"), + "Missing symlink implementation") + @skip_if_ABSTFN_contains_backslash def test_realpath_symlink_loops(self): # Bug #930024, return the path unchanged if we get into an infinite # symlink loop. @@ -443,6 +501,11 @@ finally: os.getcwdb = real_getcwdb + def test_sameopenfile(self): + fname = support.TESTFN + "1" + with open(fname, "wb") as a, open(fname, "wb") as b: + self.assertTrue(posixpath.sameopenfile(a.fileno(), b.fileno())) + class PosixCommonTest(test_genericpath.CommonTest): pathmodule = posixpath diff --git a/Lib/test/test_print.py b/Lib/test/test_print.py --- a/Lib/test/test_print.py +++ b/Lib/test/test_print.py @@ -20,7 +20,7 @@ # A dispatch table all 8 combinations of providing # sep, end, and file # I use this machinery so that I'm not just passing default -# values to print, I'm eiher passing or not passing in the +# values to print, I'm either passing or not passing in the # arguments dispatch = { (False, False, False): diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -7,6 +7,7 @@ import stat import os import os.path +import functools from test import support from test.support import TESTFN from os.path import splitdrive @@ -48,6 +49,21 @@ except ImportError: ZIP_SUPPORT = find_executable('zip') +def _fake_rename(*args, **kwargs): + # Pretend the destination path is on a different filesystem. + raise OSError() + +def mock_rename(func): + @functools.wraps(func) + def wrap(*args, **kwargs): + try: + builtin_rename = os.rename + os.rename = _fake_rename + return func(*args, **kwargs) + finally: + os.rename = builtin_rename + return wrap + class TestShutil(unittest.TestCase): def setUp(self): @@ -393,6 +409,41 @@ shutil.copytree(src_dir, dst_dir, symlinks=True) self.assertIn('test.txt', os.listdir(dst_dir)) + def _copy_file(self, method): + fname = 'test.txt' + tmpdir = self.mkdtemp() + self.write_file([tmpdir, fname]) + file1 = os.path.join(tmpdir, fname) + tmpdir2 = self.mkdtemp() + method(file1, tmpdir2) + file2 = os.path.join(tmpdir2, fname) + return (file1, file2) + + @unittest.skipUnless(hasattr(os, 'chmod'), 'requires os.chmod') + def test_copy(self): + # Ensure that the copied file exists and has the same mode bits. + file1, file2 = self._copy_file(shutil.copy) + self.assertTrue(os.path.exists(file2)) + self.assertEqual(os.stat(file1).st_mode, os.stat(file2).st_mode) + + @unittest.skipUnless(hasattr(os, 'chmod'), 'requires os.chmod') + @unittest.skipUnless(hasattr(os, 'chmod'), 'requires os.utime') + def test_copy2(self): + # Ensure that the copied file exists and has the same mode and + # modification time bits. + file1, file2 = self._copy_file(shutil.copy2) + self.assertTrue(os.path.exists(file2)) + file1_stat = os.stat(file1) + file2_stat = os.stat(file2) + self.assertEqual(file1_stat.st_mode, file2_stat.st_mode) + for attr in 'st_atime', 'st_mtime': + # The modification times may be truncated in the new file. + self.assertLessEqual(getattr(file1_stat, attr), + getattr(file2_stat, attr) + 1) + if hasattr(os, 'chflags') and hasattr(file1_stat, 'st_flags'): + self.assertEqual(getattr(file1_stat, 'st_flags'), + getattr(file2_stat, 'st_flags')) + @unittest.skipUnless(zlib, "requires zlib") def test_make_tarball(self): # creating something to tar @@ -403,6 +454,8 @@ self.write_file([tmpdir, 'sub', 'file3'], 'xxx') tmpdir2 = self.mkdtemp() + # force shutil to create the directory + os.rmdir(tmpdir2) unittest.skipUnless(splitdrive(tmpdir)[0] == splitdrive(tmpdir2)[0], "source and target should be on same drive") @@ -518,6 +571,8 @@ self.write_file([tmpdir, 'file2'], 'xxx') tmpdir2 = self.mkdtemp() + # force shutil to create the directory + os.rmdir(tmpdir2) base_name = os.path.join(tmpdir2, 'archive') _make_zipfile(base_name, tmpdir) @@ -645,6 +700,14 @@ diff = self._compare_dirs(tmpdir, tmpdir2) self.assertEqual(diff, []) + # and again, this time with the format specified + tmpdir3 = self.mkdtemp() + unpack_archive(filename, tmpdir3, format=format) + diff = self._compare_dirs(tmpdir, tmpdir3) + self.assertEqual(diff, []) + self.assertRaises(shutil.ReadError, unpack_archive, TESTFN) + self.assertRaises(ValueError, unpack_archive, TESTFN, format='xxx') + def test_unpack_registery(self): formats = get_unpack_formats() @@ -680,20 +743,11 @@ self.dst_dir = tempfile.mkdtemp() self.src_file = os.path.join(self.src_dir, filename) self.dst_file = os.path.join(self.dst_dir, filename) - # Try to create a dir in the current directory, hoping that it is - # not located on the same filesystem as the system tmp dir. - try: - self.dir_other_fs = tempfile.mkdtemp( - dir=os.path.dirname(__file__)) - self.file_other_fs = os.path.join(self.dir_other_fs, - filename) - except OSError: - self.dir_other_fs = None with open(self.src_file, "wb") as f: f.write(b"spam") def tearDown(self): - for d in (self.src_dir, self.dst_dir, self.dir_other_fs): + for d in (self.src_dir, self.dst_dir): try: if d: shutil.rmtree(d) @@ -722,21 +776,15 @@ # Move a file inside an existing dir on the same filesystem. self._check_move_file(self.src_file, self.dst_dir, self.dst_file) + @mock_rename def test_move_file_other_fs(self): # Move a file to an existing dir on another filesystem. - if not self.dir_other_fs: - # skip - return - self._check_move_file(self.src_file, self.file_other_fs, - self.file_other_fs) + self.test_move_file() + @mock_rename def test_move_file_to_dir_other_fs(self): # Move a file to another location on another filesystem. - if not self.dir_other_fs: - # skip - return - self._check_move_file(self.src_file, self.dir_other_fs, - self.file_other_fs) + self.test_move_file_to_dir() def test_move_dir(self): # Move a dir to another location on the same filesystem. @@ -749,32 +797,20 @@ except: pass + @mock_rename def test_move_dir_other_fs(self): # Move a dir to another location on another filesystem. - if not self.dir_other_fs: - # skip - return - dst_dir = tempfile.mktemp(dir=self.dir_other_fs) - try: - self._check_move_dir(self.src_dir, dst_dir, dst_dir) - finally: - try: - shutil.rmtree(dst_dir) - except: - pass + self.test_move_dir() def test_move_dir_to_dir(self): # Move a dir inside an existing dir on the same filesystem. self._check_move_dir(self.src_dir, self.dst_dir, os.path.join(self.dst_dir, os.path.basename(self.src_dir))) + @mock_rename def test_move_dir_to_dir_other_fs(self): # Move a dir inside an existing dir on another filesystem. - if not self.dir_other_fs: - # skip - return - self._check_move_dir(self.src_dir, self.dir_other_fs, - os.path.join(self.dir_other_fs, os.path.basename(self.src_dir))) + self.test_move_dir_to_dir() def test_existing_file_inside_dest_dir(self): # A file with the same name inside the destination dir already exists. diff --git a/Lib/test/test_strlit.py b/Lib/test/test_strlit.py --- a/Lib/test/test_strlit.py +++ b/Lib/test/test_strlit.py @@ -22,7 +22,7 @@ exec()/eval(), which uses a different code path. This file is really about correct treatment of encodings and -backslashes. It doens't concern itself with issues like single +backslashes. It doesn't concern itself with issues like single vs. double quotes or singly- vs. triply-quoted strings: that's dealt with elsewhere (I assume). """ diff --git a/Lib/test/test_strptime.py b/Lib/test/test_strptime.py --- a/Lib/test/test_strptime.py +++ b/Lib/test/test_strptime.py @@ -536,7 +536,7 @@ self.assertIsNot(first_time_re, second_time_re) # Possible test locale is not supported while initial locale is. # If this is the case just suppress the exception and fall-through - # to the reseting to the original locale. + # to the resetting to the original locale. except locale.Error: pass # Make sure we don't trample on the locale setting once we leave the diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py --- a/Lib/test/test_struct.py +++ b/Lib/test/test_struct.py @@ -463,7 +463,7 @@ test_string) def test_unpack_with_buffer(self): - # SF bug 1563759: struct.unpack doens't support buffer protocol objects + # SF bug 1563759: struct.unpack doesn't support buffer protocol objects data1 = array.array('B', b'\x12\x34\x56\x78') data2 = memoryview(b'\x12\x34\x56\x78') # XXX b'......XXXX......', 6, 4 for data in [data1, data2]: diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -130,7 +130,9 @@ "import sys; sys.stdout.write('BDFL')\n" "sys.stdout.flush()\n" "while True: pass"], - timeout=1.5) + # Some heavily loaded buildbots (sparc Debian 3.x) require + # this much time to start and print. + timeout=3) self.fail("Expected TimeoutExpired.") self.assertEqual(c.exception.output, b'BDFL') @@ -323,6 +325,31 @@ rc = subprocess.call([sys.executable, "-c", cmd], stdout=1) self.assertEqual(rc, 2) + def test_stdout_devnull(self): + p = subprocess.Popen([sys.executable, "-c", + 'for i in range(10240):' + 'print("x" * 1024)'], + stdout=subprocess.DEVNULL) + p.wait() + self.assertEqual(p.stdout, None) + + def test_stderr_devnull(self): + p = subprocess.Popen([sys.executable, "-c", + 'import sys\n' + 'for i in range(10240):' + 'sys.stderr.write("x" * 1024)'], + stderr=subprocess.DEVNULL) + p.wait() + self.assertEqual(p.stderr, None) + + def test_stdin_devnull(self): + p = subprocess.Popen([sys.executable, "-c", + 'import sys;' + 'sys.stdin.read(1)'], + stdin=subprocess.DEVNULL) + p.wait() + self.assertEqual(p.stdin, None) + def test_cwd(self): tmpdir = tempfile.gettempdir() # We cannot use os.path.realpath to canonicalize the path, @@ -622,13 +649,15 @@ # Subsequent invocations should just return the returncode self.assertEqual(p.wait(), 0) - def test_wait_timeout(self): p = subprocess.Popen([sys.executable, "-c", "import time; time.sleep(0.1)"]) - self.assertRaises(subprocess.TimeoutExpired, p.wait, timeout=0.01) - self.assertEqual(p.wait(timeout=2), 0) - + with self.assertRaises(subprocess.TimeoutExpired) as c: + p.wait(timeout=0.01) + self.assertIn("0.01", str(c.exception)) # For coverage of __str__. + # Some heavily loaded buildbots (sparc Debian 3.x) require this much + # time to start. + self.assertEqual(p.wait(timeout=3), 0) def test_invalid_bufsize(self): # an invalid type of the bufsize argument should raise diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py --- a/Lib/test/test_sundry.py +++ b/Lib/test/test_sundry.py @@ -54,7 +54,6 @@ import py_compile import sndhdr import tabnanny - import timeit try: import tty # not available on Windows except ImportError: diff --git a/Lib/test/test_syntax.py b/Lib/test/test_syntax.py --- a/Lib/test/test_syntax.py +++ b/Lib/test/test_syntax.py @@ -237,7 +237,7 @@ Test continue in finally in weird combinations. -continue in for loop under finally shouuld be ok. +continue in for loop under finally should be ok. >>> def test(): ... try: diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -492,7 +492,7 @@ # provide too much opportunity for insane things to happen. # We don't want them in the interned dict and if they aren't # actually interned, we don't want to create the appearance - # that they are by allowing intern() to succeeed. + # that they are by allowing intern() to succeed. class S(str): def __hash__(self): return 123 diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -578,7 +578,7 @@ # This acquires the lock and then waits until the child has forked # before returning, which will release the lock soon after. If # someone else tries to fix this test case by acquiring this lock - # before forking instead of reseting it, the test case will + # before forking instead of resetting it, the test case will # deadlock when it shouldn't. condition = w._block orig_acquire = condition.acquire diff --git a/Lib/test/test_timeit.py b/Lib/test/test_timeit.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_timeit.py @@ -0,0 +1,305 @@ +import timeit +import unittest +import sys +import io +import time +from textwrap import dedent + +from test.support import run_unittest +from test.support import captured_stdout +from test.support import captured_stderr + +# timeit's default number of iterations. +DEFAULT_NUMBER = 1000000 + +# timeit's default number of repetitions. +DEFAULT_REPEAT = 3 + +# XXX: some tests are commented out that would improve the coverage but take a +# long time to run because they test the default number of loops, which is +# large. The tests could be enabled if there was a way to override the default +# number of loops during testing, but this would require changing the signature +# of some functions that use the default as a default argument. + +class FakeTimer: + BASE_TIME = 42.0 + def __init__(self, seconds_per_increment=1.0): + self.count = 0 + self.setup_calls = 0 + self.seconds_per_increment=seconds_per_increment + timeit._fake_timer = self + + def __call__(self): + return self.BASE_TIME + self.count * self.seconds_per_increment + + def inc(self): + self.count += 1 + + def setup(self): + self.setup_calls += 1 + + def wrap_timer(self, timer): + """Records 'timer' and returns self as callable timer.""" + self.saved_timer = timer + return self + +class TestTimeit(unittest.TestCase): + + def tearDown(self): + try: + del timeit._fake_timer + except AttributeError: + pass + + def test_reindent_empty(self): + self.assertEqual(timeit.reindent("", 0), "") + self.assertEqual(timeit.reindent("", 4), "") + + def test_reindent_single(self): + self.assertEqual(timeit.reindent("pass", 0), "pass") + self.assertEqual(timeit.reindent("pass", 4), "pass") + + def test_reindent_multi_empty(self): + self.assertEqual(timeit.reindent("\n\n", 0), "\n\n") + self.assertEqual(timeit.reindent("\n\n", 4), "\n \n ") + + def test_reindent_multi(self): + self.assertEqual(timeit.reindent( + "print()\npass\nbreak", 0), + "print()\npass\nbreak") + self.assertEqual(timeit.reindent( + "print()\npass\nbreak", 4), + "print()\n pass\n break") + + def test_timer_invalid_stmt(self): + self.assertRaises(ValueError, timeit.Timer, stmt=None) + + def test_timer_invalid_setup(self): + self.assertRaises(ValueError, timeit.Timer, setup=None) + + fake_setup = "import timeit; timeit._fake_timer.setup()" + fake_stmt = "import timeit; timeit._fake_timer.inc()" + + def fake_callable_setup(self): + self.fake_timer.setup() + + def fake_callable_stmt(self): + self.fake_timer.inc() + + def timeit(self, stmt, setup, number=None): + self.fake_timer = FakeTimer() + t = timeit.Timer(stmt=stmt, setup=setup, timer=self.fake_timer) + kwargs = {} + if number is None: + number = DEFAULT_NUMBER + else: + kwargs['number'] = number + delta_time = t.timeit(**kwargs) + self.assertEqual(self.fake_timer.setup_calls, 1) + self.assertEqual(self.fake_timer.count, number) + self.assertEqual(delta_time, number) + + # Takes too long to run in debug build. + #def test_timeit_default_iters(self): + # self.timeit(self.fake_stmt, self.fake_setup) + + def test_timeit_zero_iters(self): + self.timeit(self.fake_stmt, self.fake_setup, number=0) + + def test_timeit_few_iters(self): + self.timeit(self.fake_stmt, self.fake_setup, number=3) + + def test_timeit_callable_stmt(self): + self.timeit(self.fake_callable_stmt, self.fake_setup, number=3) + + def test_timeit_callable_stmt_and_setup(self): + self.timeit(self.fake_callable_stmt, + self.fake_callable_setup, number=3) + + # Takes too long to run in debug build. + #def test_timeit_function(self): + # delta_time = timeit.timeit(self.fake_stmt, self.fake_setup, + # timer=FakeTimer()) + # self.assertEqual(delta_time, DEFAULT_NUMBER) + + def test_timeit_function_zero_iters(self): + delta_time = timeit.timeit(self.fake_stmt, self.fake_setup, number=0, + timer=FakeTimer()) + self.assertEqual(delta_time, 0) + + def repeat(self, stmt, setup, repeat=None, number=None): + self.fake_timer = FakeTimer() + t = timeit.Timer(stmt=stmt, setup=setup, timer=self.fake_timer) + kwargs = {} + if repeat is None: + repeat = DEFAULT_REPEAT + else: + kwargs['repeat'] = repeat + if number is None: + number = DEFAULT_NUMBER + else: + kwargs['number'] = number + delta_times = t.repeat(**kwargs) + self.assertEqual(self.fake_timer.setup_calls, repeat) + self.assertEqual(self.fake_timer.count, repeat * number) + self.assertEqual(delta_times, repeat * [float(number)]) + + # Takes too long to run in debug build. + #def test_repeat_default(self): + # self.repeat(self.fake_stmt, self.fake_setup) + + def test_repeat_zero_reps(self): + self.repeat(self.fake_stmt, self.fake_setup, repeat=0) + + def test_repeat_zero_iters(self): + self.repeat(self.fake_stmt, self.fake_setup, number=0) + + def test_repeat_few_reps_and_iters(self): + self.repeat(self.fake_stmt, self.fake_setup, repeat=3, number=5) + + def test_repeat_callable_stmt(self): + self.repeat(self.fake_callable_stmt, self.fake_setup, + repeat=3, number=5) + + def test_repeat_callable_stmt_and_setup(self): + self.repeat(self.fake_callable_stmt, self.fake_callable_setup, + repeat=3, number=5) + + # Takes too long to run in debug build. + #def test_repeat_function(self): + # delta_times = timeit.repeat(self.fake_stmt, self.fake_setup, + # timer=FakeTimer()) + # self.assertEqual(delta_times, DEFAULT_REPEAT * [float(DEFAULT_NUMBER)]) + + def test_repeat_function_zero_reps(self): + delta_times = timeit.repeat(self.fake_stmt, self.fake_setup, repeat=0, + timer=FakeTimer()) + self.assertEqual(delta_times, []) + + def test_repeat_function_zero_iters(self): + delta_times = timeit.repeat(self.fake_stmt, self.fake_setup, number=0, + timer=FakeTimer()) + self.assertEqual(delta_times, DEFAULT_REPEAT * [0.0]) + + def assert_exc_string(self, exc_string, expected_exc_name): + exc_lines = exc_string.splitlines() + self.assertGreater(len(exc_lines), 2) + self.assertTrue(exc_lines[0].startswith('Traceback')) + self.assertTrue(exc_lines[-1].startswith(expected_exc_name)) + + def test_print_exc(self): + s = io.StringIO() + t = timeit.Timer("1/0") + try: + t.timeit() + except: + t.print_exc(s) + self.assert_exc_string(s.getvalue(), 'ZeroDivisionError') + + MAIN_DEFAULT_OUTPUT = "10 loops, best of 3: 1 sec per loop\n" + + def run_main(self, seconds_per_increment=1.0, switches=None, timer=None): + if timer is None: + timer = FakeTimer(seconds_per_increment=seconds_per_increment) + if switches is None: + args = [] + else: + args = switches[:] + args.append(self.fake_stmt) + # timeit.main() modifies sys.path, so save and restore it. + orig_sys_path = sys.path[:] + with captured_stdout() as s: + timeit.main(args=args, _wrap_timer=timer.wrap_timer) + sys.path[:] = orig_sys_path[:] + return s.getvalue() + + def test_main_bad_switch(self): + s = self.run_main(switches=['--bad-switch']) + self.assertEqual(s, dedent("""\ + option --bad-switch not recognized + use -h/--help for command line help + """)) + + def test_main_seconds(self): + s = self.run_main(seconds_per_increment=5.5) + self.assertEqual(s, "10 loops, best of 3: 5.5 sec per loop\n") + + def test_main_milliseconds(self): + s = self.run_main(seconds_per_increment=0.0055) + self.assertEqual(s, "100 loops, best of 3: 5.5 msec per loop\n") + + def test_main_microseconds(self): + s = self.run_main(seconds_per_increment=0.0000025, switches=['-n100']) + self.assertEqual(s, "100 loops, best of 3: 2.5 usec per loop\n") + + def test_main_fixed_iters(self): + s = self.run_main(seconds_per_increment=2.0, switches=['-n35']) + self.assertEqual(s, "35 loops, best of 3: 2 sec per loop\n") + + def test_main_setup(self): + s = self.run_main(seconds_per_increment=2.0, + switches=['-n35', '-s', 'print("CustomSetup")']) + self.assertEqual(s, "CustomSetup\n" * 3 + + "35 loops, best of 3: 2 sec per loop\n") + + def test_main_fixed_reps(self): + s = self.run_main(seconds_per_increment=60.0, switches=['-r9']) + self.assertEqual(s, "10 loops, best of 9: 60 sec per loop\n") + + def test_main_negative_reps(self): + s = self.run_main(seconds_per_increment=60.0, switches=['-r-5']) + self.assertEqual(s, "10 loops, best of 1: 60 sec per loop\n") + + def test_main_help(self): + s = self.run_main(switches=['-h']) + # Note: It's not clear that the trailing space was intended as part of + # the help text, but since it's there, check for it. + self.assertEqual(s, timeit.__doc__ + ' ') + + def test_main_using_time(self): + fake_timer = FakeTimer() + s = self.run_main(switches=['-t'], timer=fake_timer) + self.assertEqual(s, self.MAIN_DEFAULT_OUTPUT) + self.assertIs(fake_timer.saved_timer, time.time) + + def test_main_using_clock(self): + fake_timer = FakeTimer() + s = self.run_main(switches=['-c'], timer=fake_timer) + self.assertEqual(s, self.MAIN_DEFAULT_OUTPUT) + self.assertIs(fake_timer.saved_timer, time.clock) + + def test_main_verbose(self): + s = self.run_main(switches=['-v']) + self.assertEqual(s, dedent("""\ + 10 loops -> 10 secs + raw times: 10 10 10 + 10 loops, best of 3: 1 sec per loop + """)) + + def test_main_very_verbose(self): + s = self.run_main(seconds_per_increment=0.000050, switches=['-vv']) + self.assertEqual(s, dedent("""\ + 10 loops -> 0.0005 secs + 100 loops -> 0.005 secs + 1000 loops -> 0.05 secs + 10000 loops -> 0.5 secs + raw times: 0.5 0.5 0.5 + 10000 loops, best of 3: 50 usec per loop + """)) + + def test_main_exception(self): + with captured_stderr() as error_stringio: + s = self.run_main(switches=['1/0']) + self.assert_exc_string(error_stringio.getvalue(), 'ZeroDivisionError') + + def test_main_exception_fixed_reps(self): + with captured_stderr() as error_stringio: + s = self.run_main(switches=['-n1', '1/0']) + self.assert_exc_string(error_stringio.getvalue(), 'ZeroDivisionError') + + +def test_main(): + run_unittest(TestTimeit) + +if __name__ == '__main__': + test_main() diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py --- a/Lib/test/test_trace.py +++ b/Lib/test/test_trace.py @@ -209,7 +209,7 @@ (self.my_py_filename, firstlineno + 4): 1, } - # When used through 'run', some other spurios counts are produced, like + # When used through 'run', some other spurious counts are produced, like # the settrace of threading, which we ignore, just making sure that the # counts fo traced_func_loop were right. # diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -91,7 +91,7 @@ "did not return the expected text") def test_close(self): - # Test close() by calling it hear and then having it be called again + # Test close() by calling it here and then having it be called again # by the tearDown() method for the test self.returned_obj.close() @@ -174,6 +174,11 @@ finally: self.unfakehttp() + def test_willclose(self): + self.fakehttp(b"HTTP/1.1 200 OK\r\n\r\nHello!") + resp = urlopen("http://www.python.org") + self.assertTrue(resp.fp.will_close) + def test_read_0_9(self): # "0.9" response accepted (but not "simple responses" without # a status line) @@ -1021,7 +1026,7 @@ # Just commented them out. # Can't really tell why keep failing in windows and sparc. -# Everywhere else they work ok, but on those machines, someteimes +# Everywhere else they work ok, but on those machines, sometimes # fail in one of the tests, sometimes in other. I have a linux, and # the tests go ok. # If anybody has one of the problematic enviroments, please help! diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py --- a/Lib/test/test_warnings.py +++ b/Lib/test/test_warnings.py @@ -332,7 +332,7 @@ sys.argv = argv def test_warn_explicit_type_errors(self): - # warn_explicit() shoud error out gracefully if it is given objects + # warn_explicit() should error out gracefully if it is given objects # of the wrong types. # lineno is expected to be an integer. self.assertRaises(TypeError, self.module.warn_explicit, diff --git a/Lib/timeit.py b/Lib/timeit.py --- a/Lib/timeit.py +++ b/Lib/timeit.py @@ -232,10 +232,10 @@ """Convenience function to create Timer object and call repeat method.""" return Timer(stmt, setup, timer).repeat(repeat, number) -def main(args=None): +def main(args=None, *, _wrap_timer=None): """Main program, used when run as a script. - The optional argument specifies the command line to be parsed, + The optional 'args' argument specifies the command line to be parsed, defaulting to sys.argv[1:]. The return value is an exit code to be passed to sys.exit(); it @@ -244,6 +244,10 @@ When an exception happens during timing, a traceback is printed to stderr and the return value is 1. Exceptions at other times (including the template compilation) are not caught. + + '_wrap_timer' is an internal interface used for unit testing. If it + is not None, it must be a callable that accepts a timer function + and returns another timer function (used for unit testing). """ if args is None: args = sys.argv[1:] @@ -289,6 +293,8 @@ # directory) import os sys.path.insert(0, os.curdir) + if _wrap_timer is not None: + timer = _wrap_timer(timer) t = Timer(stmt, setup, timer) if number == 0: # determine number so that 0.2 <= total time < 2.0 diff --git a/Lib/tkinter/test/test_ttk/test_functions.py b/Lib/tkinter/test/test_ttk/test_functions.py --- a/Lib/tkinter/test/test_ttk/test_functions.py +++ b/Lib/tkinter/test/test_ttk/test_functions.py @@ -135,7 +135,7 @@ # minimum acceptable for image type self.assertEqual(ttk._format_elemcreate('image', False, 'test'), ("test ", ())) - # specifiyng a state spec + # specifying a state spec self.assertEqual(ttk._format_elemcreate('image', False, 'test', ('', 'a')), ("test {} a", ())) # state spec with multiple states diff --git a/Lib/tkinter/tix.py b/Lib/tkinter/tix.py --- a/Lib/tkinter/tix.py +++ b/Lib/tkinter/tix.py @@ -171,7 +171,7 @@ return self.tk.call('tix', 'getimage', name) def tix_option_get(self, name): - """Gets the options manitained by the Tix + """Gets the options maintained by the Tix scheme mechanism. Available options include: active_bg active_fg bg @@ -576,7 +576,7 @@ class ComboBox(TixWidget): """ComboBox - an Entry field with a dropdown menu. The user can select a - choice by either typing in the entry subwdget or selecting from the + choice by either typing in the entry subwidget or selecting from the listbox subwidget. Subwidget Class @@ -869,7 +869,7 @@ """HList - Hierarchy display widget can be used to display any data that have a hierarchical structure, for example, file system directory trees. The list entries are indented and connected by branch lines - according to their places in the hierachy. + according to their places in the hierarchy. Subwidgets - None""" @@ -1519,7 +1519,7 @@ self.tk.call(self._w, 'selection', 'set', first, last) class Tree(TixWidget): - """Tree - The tixTree widget can be used to display hierachical + """Tree - The tixTree widget can be used to display hierarchical data in a tree form. The user can adjust the view of the tree by opening or closing parts of the tree.""" diff --git a/Lib/tkinter/ttk.py b/Lib/tkinter/ttk.py --- a/Lib/tkinter/ttk.py +++ b/Lib/tkinter/ttk.py @@ -707,7 +707,7 @@ textvariable, values, width """ # The "values" option may need special formatting, so leave to - # _format_optdict the responsability to format it + # _format_optdict the responsibility to format it if "values" in kw: kw["values"] = _format_optdict({'v': kw["values"]})[1] diff --git a/Lib/turtle.py b/Lib/turtle.py --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -1488,7 +1488,7 @@ Optional arguments: canvwidth -- positive integer, new width of canvas in pixels canvheight -- positive integer, new height of canvas in pixels - bg -- colorstring or color-tupel, new backgroundcolor + bg -- colorstring or color-tuple, new backgroundcolor If no arguments are given, return current (canvaswidth, canvasheight) Do not alter the drawing window. To observe hidden parts of @@ -3242,9 +3242,9 @@ fill="", width=ps) # Turtle now at position old, self._position = old - ## if undo is done during crating a polygon, the last vertex - ## will be deleted. if the polygon is entirel deleted, - ## creatigPoly will be set to False. + ## if undo is done during creating a polygon, the last vertex + ## will be deleted. if the polygon is entirely deleted, + ## creatingPoly will be set to False. ## Polygons created before the last one will not be affected by undo() if self._creatingPoly: if len(self._poly) > 0: @@ -3796,7 +3796,7 @@ class Turtle(RawTurtle): - """RawTurtle auto-crating (scrolled) canvas. + """RawTurtle auto-creating (scrolled) canvas. When a Turtle object is created or a function derived from some Turtle method is called a TurtleScreen object is automatically created. @@ -3836,7 +3836,7 @@ filename -- a string, used as filename default value is turtle_docstringdict - Has to be called explicitely, (not used by the turtle-graphics classes) + Has to be called explicitly, (not used by the turtle-graphics classes) The docstring dictionary will be written to the Python script .py It is intended to serve as a template for translation of the docstrings into different languages. diff --git a/Lib/turtledemo/bytedesign.py b/Lib/turtledemo/bytedesign.py --- a/Lib/turtledemo/bytedesign.py +++ b/Lib/turtledemo/bytedesign.py @@ -4,7 +4,7 @@ tdemo_bytedesign.py An example adapted from the example-suite -of PythonCard's turtle graphcis. +of PythonCard's turtle graphics. It's based on an article in BYTE magazine Problem Solving with Logo: Using Turtle diff --git a/Lib/unittest/result.py b/Lib/unittest/result.py --- a/Lib/unittest/result.py +++ b/Lib/unittest/result.py @@ -59,6 +59,9 @@ "Called when the given test is about to be run" self.testsRun += 1 self._mirrorOutput = False + self._setupStdout() + + def _setupStdout(self): if self.buffer: if self._stderr_buffer is None: self._stderr_buffer = io.StringIO() @@ -74,6 +77,10 @@ def stopTest(self, test): """Called when the given test has been run""" + self._restoreStdout() + self._mirrorOutput = False + + def _restoreStdout(self): if self.buffer: if self._mirrorOutput: output = sys.stdout.getvalue() @@ -93,7 +100,6 @@ self._stdout_buffer.truncate() self._stderr_buffer.seek(0) self._stderr_buffer.truncate() - self._mirrorOutput = False def stopTestRun(self): """Called once after all tests are executed. diff --git a/Lib/unittest/suite.py b/Lib/unittest/suite.py --- a/Lib/unittest/suite.py +++ b/Lib/unittest/suite.py @@ -8,6 +8,11 @@ __unittest = True +def _call_if_exists(parent, attr): + func = getattr(parent, attr, lambda: None) + func() + + class BaseTestSuite(object): """A simple test suite that doesn't provide class or module shared fixtures. """ @@ -133,6 +138,7 @@ setUpClass = getattr(currentClass, 'setUpClass', None) if setUpClass is not None: + _call_if_exists(result, '_setupStdout') try: setUpClass() except Exception as e: @@ -142,6 +148,8 @@ className = util.strclass(currentClass) errorName = 'setUpClass (%s)' % className self._addClassOrModuleLevelException(result, e, errorName) + finally: + _call_if_exists(result, '_restoreStdout') def _get_previous_module(self, result): previousModule = None @@ -167,6 +175,7 @@ return setUpModule = getattr(module, 'setUpModule', None) if setUpModule is not None: + _call_if_exists(result, '_setupStdout') try: setUpModule() except Exception as e: @@ -175,6 +184,8 @@ result._moduleSetUpFailed = True errorName = 'setUpModule (%s)' % currentModule self._addClassOrModuleLevelException(result, e, errorName) + finally: + _call_if_exists(result, '_restoreStdout') def _addClassOrModuleLevelException(self, result, exception, errorName): error = _ErrorHolder(errorName) @@ -198,6 +209,7 @@ tearDownModule = getattr(module, 'tearDownModule', None) if tearDownModule is not None: + _call_if_exists(result, '_setupStdout') try: tearDownModule() except Exception as e: @@ -205,6 +217,8 @@ raise errorName = 'tearDownModule (%s)' % previousModule self._addClassOrModuleLevelException(result, e, errorName) + finally: + _call_if_exists(result, '_restoreStdout') def _tearDownPreviousClass(self, test, result): previousClass = getattr(result, '_previousTestClass', None) @@ -220,6 +234,7 @@ tearDownClass = getattr(previousClass, 'tearDownClass', None) if tearDownClass is not None: + _call_if_exists(result, '_setupStdout') try: tearDownClass() except Exception as e: @@ -228,7 +243,8 @@ className = util.strclass(previousClass) errorName = 'tearDownClass (%s)' % className self._addClassOrModuleLevelException(result, e, errorName) - + finally: + _call_if_exists(result, '_restoreStdout') class _ErrorHolder(object): diff --git a/Lib/unittest/test/test_result.py b/Lib/unittest/test/test_result.py --- a/Lib/unittest/test/test_result.py +++ b/Lib/unittest/test/test_result.py @@ -497,5 +497,72 @@ self.assertEqual(result._original_stderr.getvalue(), expectedErrMessage) self.assertMultiLineEqual(message, expectedFullMessage) + def testBufferSetupClass(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + @classmethod + def setUpClass(cls): + 1/0 + def test_foo(self): + pass + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + def testBufferTearDownClass(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + @classmethod + def tearDownClass(cls): + 1/0 + def test_foo(self): + pass + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + def testBufferSetUpModule(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + def test_foo(self): + pass + class Module(object): + @staticmethod + def setUpModule(): + 1/0 + + Foo.__module__ = 'Module' + sys.modules['Module'] = Module + self.addCleanup(sys.modules.pop, 'Module') + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + def testBufferTearDownModule(self): + result = unittest.TestResult() + result.buffer = True + + class Foo(unittest.TestCase): + def test_foo(self): + pass + class Module(object): + @staticmethod + def tearDownModule(): + 1/0 + + Foo.__module__ = 'Module' + sys.modules['Module'] = Module + self.addCleanup(sys.modules.pop, 'Module') + suite = unittest.TestSuite([Foo('test_foo')]) + suite(result) + self.assertEqual(len(result.errors), 1) + + if __name__ == '__main__': unittest.main() diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -1657,6 +1657,12 @@ headers["Authorization"] = "Basic %s" % auth if realhost: headers["Host"] = realhost + + # Add Connection:close as we don't support persistent connections yet. + # This helps in closing the socket and avoiding ResourceWarning + + headers["Connection"] = "close" + for header, value in self.addheaders: headers[header] = value diff --git a/Lib/xml/dom/minicompat.py b/Lib/xml/dom/minicompat.py --- a/Lib/xml/dom/minicompat.py +++ b/Lib/xml/dom/minicompat.py @@ -6,7 +6,7 @@ # # NodeList -- lightest possible NodeList implementation # -# EmptyNodeList -- lightest possible NodeList that is guarateed to +# EmptyNodeList -- lightest possible NodeList that is guaranteed to # remain empty (immutable) # # StringTypes -- tuple of defined string types diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -1905,7 +1905,7 @@ e._call_user_data_handler(operation, n, entity) else: # Note the cloning of Document and DocumentType nodes is - # implemenetation specific. minidom handles those cases + # implementation specific. minidom handles those cases # directly in the cloneNode() methods. raise xml.dom.NotSupportedErr("Cannot clone node %s" % repr(node)) diff --git a/Lib/xmlrpc/server.py b/Lib/xmlrpc/server.py --- a/Lib/xmlrpc/server.py +++ b/Lib/xmlrpc/server.py @@ -240,7 +240,7 @@ marshalled data. For backwards compatibility, a dispatch function can be provided as an argument (see comment in SimpleXMLRPCRequestHandler.do_POST) but overriding the - existing method through subclassing is the prefered means + existing method through subclassing is the preferred means of changing method dispatch behavior. """ diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -362,7 +362,7 @@ def runCommand(commandline): """ - Run a command and raise RuntimeError if it fails. Output is surpressed + Run a command and raise RuntimeError if it fails. Output is suppressed unless the command fails. """ fd = os.popen(commandline, 'r') diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -227,6 +227,7 @@ Ismail Donmez Marcos Donolo Dima Dorfman +Yves Dorfsman Cesar Douady Dean Draayer Fred L. Drake, Jr. @@ -450,6 +451,7 @@ Peter van Kampen Rafe Kaplan Jacob Kaplan-Moss +Arkady Koplyarov Lou Kates Hiroaki Kawai Sebastien Keim diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #11320: fix bogus memory management in Modules/getpath.c, leading to + a possible crash when calling Py_SetPath(). + - _ast.__version__ is now a Mercurial integer and hex revision. - Issue #11432: A bug was introduced in subprocess.Popen on posix systems with @@ -72,8 +75,37 @@ Library ------- +- Issue #5421: Fix misleading error message when one of socket.sendto()'s + arguments has the wrong type. Patch by Nikita Vetoshkin. + +- Issue #10812: Add some extra posix functions to the os module. + +- Issue #10979: unittest stdout buffering now works with class and module + setup and teardown. + +- Issue #11577: fix ResourceWarning triggered by improved binhex test coverage + +- Issue #11243: fix the parameter querying methods of Message to work if + the headers contain un-encoded non-ASCII data. + +- Issue #11401: fix handling of headers with no value; this fixes a regression + relative to Python2 and the result is now the same as it was in Python2. + +- Issue #9298: base64 bodies weren't being folded to line lengths less than 78, + which was a regression relative to Python2. Unlike Python2, the last line + of the folded body now ends with a carriage return. + +- Issue #11560: shutil.unpack_archive now correctly handles the format + parameter. Patch by Evan Dandrea. + +- Issue #5870: Add `subprocess.DEVNULL` constant. + - Issue #11133: fix two cases where inspect.getattr_static can trigger code - execution. Patch by Daniel Urban. + execution. Patch by Andreas St?hrk. + +- Issue #11569: use absolute path to the sysctl command in multiprocessing to + ensure that it will be found regardless of the shell PATH. This ensures + that multiprocessing.cpu_count works on default installs of MacOSX. - Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is not installed. Instead, the zipfile.ZIP_STORED compression is used to create @@ -223,9 +255,25 @@ Tests ----- +- Issue #11577: improve test coverage of binhex.py. Patch by Arkady Koplyarov. + +- New test_crashers added to exercise the scripts in the Lib/test/crashers + directory and confirm they fail as expected + +- Issue #11578: added test for the timeit module. Patch Michael Henry. + +- Issue #11503: improve test coverage of posixpath.py. Patch by Evan Dandrea. + +- Issue #11505: improves test coverage of string.py. Patch by Alicia + Arlen. + +- Issue #11548: Improve test coverage of the shutil module. Patch by + Evan Dandrea. + - Issue #11554: Reactivated test_email_codecs. -- Issue #11505: improves test coverage of string.py +- Issue #11505: improves test coverage of string.py. Patch by Alicia + Arlen - Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a false positive if the last directory in the path is inaccessible. diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -3317,7 +3317,7 @@ /* XXX XXX This would allow to pass additional options. For COM method *implementations*, we would probably want different behaviour than in 'normal' callback functions: return a HRESULT if - an exception occurrs in the callback, and print the traceback not + an exception occurs in the callback, and print the traceback not only on the console, but also to OutputDebugString() or something like that. */ diff --git a/Modules/_ctypes/callbacks.c b/Modules/_ctypes/callbacks.c --- a/Modules/_ctypes/callbacks.c +++ b/Modules/_ctypes/callbacks.c @@ -202,7 +202,7 @@ /* XXX XXX XX We have the problem that c_byte or c_short have dict->size of 1 resp. 4, but these parameters are pushed as sizeof(int) bytes. - BTW, the same problem occurrs when they are pushed as parameters + BTW, the same problem occurs when they are pushed as parameters */ } else if (dict) { /* Hm, shouldn't we use PyCData_AtAddress() or something like that instead? */ diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -29,7 +29,7 @@ 4. _ctypes_callproc is then called with the 'callargs' tuple. _ctypes_callproc first allocates two arrays. The first is an array of 'struct argument' items, the - second array has 'void *' entried. + second array has 'void *' entries. 5. If 'converters' are present (converters is a sequence of argtypes' from_param methods), for each item in 'callargs' converter is called and the diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c --- a/Modules/_functoolsmodule.c +++ b/Modules/_functoolsmodule.c @@ -242,7 +242,7 @@ __reduce__ by itself doesn't support getting kwargs in the unpickle operation so we define a __setstate__ that replaces all the information about the partial. If we only replaced part of it someone would use - it as a hook to do stange things. + it as a hook to do strange things. */ static PyObject * diff --git a/Modules/_io/iobase.c b/Modules/_io/iobase.c --- a/Modules/_io/iobase.c +++ b/Modules/_io/iobase.c @@ -50,7 +50,7 @@ "stream.\n" "\n" "IOBase also supports the :keyword:`with` statement. In this example,\n" - "fp is closed after the suite of the with statment is complete:\n" + "fp is closed after the suite of the with statement is complete:\n" "\n" "with open('spam.txt', 'r') as fp:\n" " fp.write('Spam and eggs!')\n"); diff --git a/Modules/_io/stringio.c b/Modules/_io/stringio.c --- a/Modules/_io/stringio.c +++ b/Modules/_io/stringio.c @@ -157,7 +157,7 @@ 0 lo string_size hi | |<---used--->|<----------available----------->| | | <--to pad-->|<---to write---> | - 0 buf positon + 0 buf position */ memset(self->buf + self->string_size, '\0', diff --git a/Modules/_pickle.c b/Modules/_pickle.c --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -6259,7 +6259,7 @@ goto error; if (!PyDict_CheckExact(name_mapping_3to2)) { PyErr_Format(PyExc_RuntimeError, - "_compat_pickle.REVERSE_NAME_MAPPING shouldbe a dict, " + "_compat_pickle.REVERSE_NAME_MAPPING should be a dict, " "not %.200s", Py_TYPE(name_mapping_3to2)->tp_name); goto error; } diff --git a/Modules/_sqlite/connection.h b/Modules/_sqlite/connection.h --- a/Modules/_sqlite/connection.h +++ b/Modules/_sqlite/connection.h @@ -55,7 +55,7 @@ /* None for autocommit, otherwise a PyString with the isolation level */ PyObject* isolation_level; - /* NULL for autocommit, otherwise a string with the BEGIN statment; will be + /* NULL for autocommit, otherwise a string with the BEGIN statement; will be * freed in connection destructor */ char* begin_statement; diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c --- a/Modules/cmathmodule.c +++ b/Modules/cmathmodule.c @@ -23,7 +23,7 @@ /* CM_LARGE_DOUBLE is used to avoid spurious overflow in the sqrt, log, inverse trig and inverse hyperbolic trig functions. Its log is used in the - evaluation of exp, cos, cosh, sin, sinh, tan, and tanh to avoid unecessary + evaluation of exp, cos, cosh, sin, sinh, tan, and tanh to avoid unnecessary overflow. */ diff --git a/Modules/getpath.c b/Modules/getpath.c --- a/Modules/getpath.c +++ b/Modules/getpath.c @@ -134,6 +134,7 @@ static wchar_t exec_prefix[MAXPATHLEN+1]; static wchar_t progpath[MAXPATHLEN+1]; static wchar_t *module_search_path = NULL; +static int module_search_path_malloced = 0; static wchar_t *lib_python = L"lib/python" VERSION; static void @@ -634,7 +635,6 @@ bufsz += wcslen(zip_path) + 1; bufsz += wcslen(exec_prefix) + 1; - /* This is the only malloc call in this file */ buf = (wchar_t *)PyMem_Malloc(bufsz*sizeof(wchar_t)); if (buf == NULL) { @@ -687,6 +687,7 @@ /* And publish the results */ module_search_path = buf; + module_search_path_malloced = 1; } /* Reduce prefix and exec_prefix to their essence, @@ -726,15 +727,18 @@ Py_SetPath(const wchar_t *path) { if (module_search_path != NULL) { - free(module_search_path); + if (module_search_path_malloced) + PyMem_Free(module_search_path); module_search_path = NULL; + module_search_path_malloced = 0; } if (path != NULL) { extern wchar_t *Py_GetProgramName(void); wchar_t *prog = Py_GetProgramName(); wcsncpy(progpath, prog, MAXPATHLEN); exec_prefix[0] = prefix[0] = L'\0'; - module_search_path = malloc((wcslen(path) + 1) * sizeof(wchar_t)); + module_search_path = PyMem_Malloc((wcslen(path) + 1) * sizeof(wchar_t)); + module_search_path_malloced = 1; if (module_search_path != NULL) wcscpy(module_search_path, path); } diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -59,6 +59,10 @@ #include "osdefs.h" #endif +#ifdef HAVE_SYS_UIO_H +#include +#endif + #ifdef HAVE_SYS_TYPES_H #include #endif /* HAVE_SYS_TYPES_H */ @@ -103,10 +107,6 @@ #ifdef HAVE_SYS_SOCKET_H #include #endif - -#ifdef HAVE_SYS_UIO_H -#include -#endif #endif /* Various compilers have only certain posix functions */ @@ -1503,6 +1503,33 @@ 10 }; +#if defined(HAVE_WAITID) && !defined(__APPLE__) +PyDoc_STRVAR(waitid_result__doc__, +"waitid_result: Result from waitid.\n\n\ +This object may be accessed either as a tuple of\n\ + (si_pid, si_uid, si_signo, si_status, si_code),\n\ +or via the attributes si_pid, si_uid, and so on.\n\ +\n\ +See os.waitid for more information."); + +static PyStructSequence_Field waitid_result_fields[] = { + {"si_pid", }, + {"si_uid", }, + {"si_signo", }, + {"si_status", }, + {"si_code", }, + {0} +}; + +static PyStructSequence_Desc waitid_result_desc = { + "waitid_result", /* name */ + waitid_result__doc__, /* doc */ + waitid_result_fields, + 5 +}; +static PyTypeObject WaitidResultType; +#endif + static int initialized; static PyTypeObject StatResultType; static PyTypeObject StatVFSResultType; @@ -2102,6 +2129,21 @@ } #endif /* HAVE_FSYNC */ +#ifdef HAVE_SYNC +PyDoc_STRVAR(posix_sync__doc__, +"sync()\n\n\ +Force write of everything to disk."); + +static PyObject * +posix_sync(PyObject *self, PyObject *noargs) +{ + Py_BEGIN_ALLOW_THREADS + sync(); + Py_END_ALLOW_THREADS + Py_RETURN_NONE; +} +#endif + #ifdef HAVE_FDATASYNC #ifdef __hpux @@ -3488,6 +3530,167 @@ #endif /* MS_WINDOWS */ } +#ifdef HAVE_FUTIMES +PyDoc_STRVAR(posix_futimes__doc__, +"futimes(fd, (atime, mtime))\n\ +futimes(fd, None)\n\n\ +Set the access and modified time of the file specified by the file\n\ +descriptor fd to the given values. If the second form is used, set the\n\ +access and modified times to the current time."); + +static PyObject * +posix_futimes(PyObject *self, PyObject *args) +{ + int res, fd; + PyObject* arg; + struct timeval buf[2]; + long ausec, musec; + + if (!PyArg_ParseTuple(args, "iO:futimes", &fd, &arg)) + return NULL; + + if (arg == Py_None) { + /* optional time values not given */ + Py_BEGIN_ALLOW_THREADS + res = futimes(fd, NULL); + Py_END_ALLOW_THREADS + } + else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) { + PyErr_SetString(PyExc_TypeError, + "futimes() arg 2 must be a tuple (atime, mtime)"); + return NULL; + } + else { + if (extract_time(PyTuple_GET_ITEM(arg, 0), + &(buf[0].tv_sec), &ausec) == -1) { + return NULL; + } + if (extract_time(PyTuple_GET_ITEM(arg, 1), + &(buf[1].tv_sec), &musec) == -1) { + return NULL; + } + buf[0].tv_usec = ausec; + buf[1].tv_usec = musec; + Py_BEGIN_ALLOW_THREADS + res = futimes(fd, buf); + Py_END_ALLOW_THREADS + } + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif + +#ifdef HAVE_LUTIMES +PyDoc_STRVAR(posix_lutimes__doc__, +"lutimes(path, (atime, mtime))\n\ +lutimes(path, None)\n\n\ +Like utime(), but if path is a symbolic link, it is not dereferenced."); + +static PyObject * +posix_lutimes(PyObject *self, PyObject *args) +{ + PyObject *opath, *arg; + const char *path; + int res; + struct timeval buf[2]; + long ausec, musec; + + if (!PyArg_ParseTuple(args, "O&O:lutimes", + PyUnicode_FSConverter, &opath, &arg)) + return NULL; + path = PyBytes_AsString(opath); + if (arg == Py_None) { + /* optional time values not given */ + Py_BEGIN_ALLOW_THREADS + res = lutimes(path, NULL); + Py_END_ALLOW_THREADS + } + else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) { + PyErr_SetString(PyExc_TypeError, + "lutimes() arg 2 must be a tuple (atime, mtime)"); + Py_DECREF(opath); + return NULL; + } + else { + if (extract_time(PyTuple_GET_ITEM(arg, 0), + &(buf[0].tv_sec), &ausec) == -1) { + Py_DECREF(opath); + return NULL; + } + if (extract_time(PyTuple_GET_ITEM(arg, 1), + &(buf[1].tv_sec), &musec) == -1) { + Py_DECREF(opath); + return NULL; + } + buf[0].tv_usec = ausec; + buf[1].tv_usec = musec; + Py_BEGIN_ALLOW_THREADS + res = lutimes(path, buf); + Py_END_ALLOW_THREADS + } + Py_DECREF(opath); + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif + +#ifdef HAVE_FUTIMENS +PyDoc_STRVAR(posix_futimens__doc__, +"futimens(fd, (atime_sec, atime_nsec), (mtime_sec, mtime_nsec))\n\ +futimens(fd, None, None)\n\n\ +Updates the timestamps of a file specified by the file descriptor fd, with\n\ +nanosecond precision.\n\ +The second form sets atime and mtime to the current time.\n\ +If *_nsec is specified as UTIME_NOW, the timestamp is updated to the\n\ +current time.\n\ +If *_nsec is specified as UTIME_OMIT, the timestamp is not updated."); + +static PyObject * +posix_futimens(PyObject *self, PyObject *args) +{ + int res, fd; + PyObject *atime, *mtime; + struct timespec buf[2]; + + if (!PyArg_ParseTuple(args, "iOO:futimens", + &fd, &atime, &mtime)) + return NULL; + if (atime == Py_None && mtime == Py_None) { + /* optional time values not given */ + Py_BEGIN_ALLOW_THREADS + res = futimens(fd, NULL); + Py_END_ALLOW_THREADS + } + else if (!PyTuple_Check(atime) || PyTuple_Size(atime) != 2) { + PyErr_SetString(PyExc_TypeError, + "futimens() arg 2 must be a tuple (atime_sec, atime_nsec)"); + return NULL; + } + else if (!PyTuple_Check(mtime) || PyTuple_Size(mtime) != 2) { + PyErr_SetString(PyExc_TypeError, + "futimens() arg 3 must be a tuple (mtime_sec, mtime_nsec)"); + return NULL; + } + else { + if (!PyArg_ParseTuple(atime, "ll:futimens", + &(buf[0].tv_sec), &(buf[0].tv_nsec))) { + return NULL; + } + if (!PyArg_ParseTuple(mtime, "ll:futimens", + &(buf[1].tv_sec), &(buf[1].tv_nsec))) { + return NULL; + } + Py_BEGIN_ALLOW_THREADS + res = futimens(fd, buf); + Py_END_ALLOW_THREADS + } + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif /* Process operations */ @@ -3532,79 +3735,7 @@ } #endif - -#ifdef HAVE_EXECV -PyDoc_STRVAR(posix_execv__doc__, -"execv(path, args)\n\n\ -Execute an executable path with arguments, replacing current process.\n\ -\n\ - path: path of executable file\n\ - args: tuple or list of strings"); - -static PyObject * -posix_execv(PyObject *self, PyObject *args) -{ - PyObject *opath; - char *path; - PyObject *argv; - char **argvlist; - Py_ssize_t i, argc; - PyObject *(*getitem)(PyObject *, Py_ssize_t); - - /* execv has two arguments: (path, argv), where - argv is a list or tuple of strings. */ - - if (!PyArg_ParseTuple(args, "O&O:execv", - PyUnicode_FSConverter, - &opath, &argv)) - return NULL; - path = PyBytes_AsString(opath); - if (PyList_Check(argv)) { - argc = PyList_Size(argv); - getitem = PyList_GetItem; - } - else if (PyTuple_Check(argv)) { - argc = PyTuple_Size(argv); - getitem = PyTuple_GetItem; - } - else { - PyErr_SetString(PyExc_TypeError, "execv() arg 2 must be a tuple or list"); - Py_DECREF(opath); - return NULL; - } - if (argc < 1) { - PyErr_SetString(PyExc_ValueError, "execv() arg 2 must not be empty"); - Py_DECREF(opath); - return NULL; - } - - argvlist = PyMem_NEW(char *, argc+1); - if (argvlist == NULL) { - Py_DECREF(opath); - return PyErr_NoMemory(); - } - for (i = 0; i < argc; i++) { - if (!fsconvert_strdup((*getitem)(argv, i), - &argvlist[i])) { - free_string_array(argvlist, i); - PyErr_SetString(PyExc_TypeError, - "execv() arg 2 must contain only strings"); - Py_DECREF(opath); - return NULL; - - } - } - argvlist[argc] = NULL; - - execv(path, argvlist); - - /* If we get here it's definitely an error */ - - free_string_array(argvlist, argc); - Py_DECREF(opath); - return posix_error(); -} - +#if defined(HAVE_EXECV) || defined (HAVE_FEXECVE) static char** parse_envlist(PyObject* env, Py_ssize_t *envc_ptr) { @@ -3686,6 +3817,87 @@ return NULL; } +static char** +parse_arglist(PyObject* argv, Py_ssize_t *argc) +{ + int i; + char **argvlist = PyMem_NEW(char *, *argc+1); + if (argvlist == NULL) { + PyErr_NoMemory(); + return NULL; + } + for (i = 0; i < *argc; i++) { + PyObject* item = PySequence_ITEM(argv, i); + if (item == NULL) + goto fail; + if (!fsconvert_strdup(item, &argvlist[i])) { + Py_DECREF(item); + goto fail; + } + Py_DECREF(item); + } + argvlist[*argc] = NULL; + return argvlist; +fail: + *argc = i; + free_string_array(argvlist, *argc); + return NULL; +} +#endif + +#ifdef HAVE_EXECV +PyDoc_STRVAR(posix_execv__doc__, +"execv(path, args)\n\n\ +Execute an executable path with arguments, replacing current process.\n\ +\n\ + path: path of executable file\n\ + args: tuple or list of strings"); + +static PyObject * +posix_execv(PyObject *self, PyObject *args) +{ + PyObject *opath; + char *path; + PyObject *argv; + char **argvlist; + Py_ssize_t argc; + + /* execv has two arguments: (path, argv), where + argv is a list or tuple of strings. */ + + if (!PyArg_ParseTuple(args, "O&O:execv", + PyUnicode_FSConverter, + &opath, &argv)) + return NULL; + path = PyBytes_AsString(opath); + if (!PyList_Check(argv) && !PyTuple_Check(argv)) { + PyErr_SetString(PyExc_TypeError, + "execv() arg 2 must be a tuple or list"); + Py_DECREF(opath); + return NULL; + } + argc = PySequence_Size(argv); + if (argc < 1) { + PyErr_SetString(PyExc_ValueError, "execv() arg 2 must not be empty"); + Py_DECREF(opath); + return NULL; + } + + argvlist = parse_arglist(argv, &argc); + if (argvlist == NULL) { + Py_DECREF(opath); + return NULL; + } + + execv(path, argvlist); + + /* If we get here it's definitely an error */ + + free_string_array(argvlist, argc); + Py_DECREF(opath); + return posix_error(); +} + PyDoc_STRVAR(posix_execve__doc__, "execve(path, args, env)\n\n\ Execute a path with arguments and environment, replacing current process.\n\ @@ -3702,9 +3914,7 @@ PyObject *argv, *env; char **argvlist; char **envlist; - Py_ssize_t i, argc, envc; - PyObject *(*getitem)(PyObject *, Py_ssize_t); - Py_ssize_t lastarg = 0; + Py_ssize_t argc, envc; /* execve has three arguments: (path, argv, env), where argv is a list or tuple of strings and env is a dictionary @@ -3715,40 +3925,22 @@ &opath, &argv, &env)) return NULL; path = PyBytes_AsString(opath); - if (PyList_Check(argv)) { - argc = PyList_Size(argv); - getitem = PyList_GetItem; - } - else if (PyTuple_Check(argv)) { - argc = PyTuple_Size(argv); - getitem = PyTuple_GetItem; - } - else { + if (!PyList_Check(argv) && !PyTuple_Check(argv)) { PyErr_SetString(PyExc_TypeError, "execve() arg 2 must be a tuple or list"); goto fail_0; } + argc = PySequence_Size(argv); if (!PyMapping_Check(env)) { PyErr_SetString(PyExc_TypeError, "execve() arg 3 must be a mapping object"); goto fail_0; } - argvlist = PyMem_NEW(char *, argc+1); + argvlist = parse_arglist(argv, &argc); if (argvlist == NULL) { - PyErr_NoMemory(); goto fail_0; } - for (i = 0; i < argc; i++) { - if (!fsconvert_strdup((*getitem)(argv, i), - &argvlist[i])) - { - lastarg = i; - goto fail_1; - } - } - lastarg = argc; - argvlist[argc] = NULL; envlist = parse_envlist(env, &envc); if (envlist == NULL) @@ -3764,13 +3956,69 @@ PyMem_DEL(envlist[envc]); PyMem_DEL(envlist); fail_1: - free_string_array(argvlist, lastarg); + free_string_array(argvlist, argc); fail_0: Py_DECREF(opath); return NULL; } #endif /* HAVE_EXECV */ +#ifdef HAVE_FEXECVE +PyDoc_STRVAR(posix_fexecve__doc__, +"fexecve(fd, args, env)\n\n\ +Execute the program specified by a file descriptor with arguments and\n\ +environment, replacing the current process.\n\ +\n\ + fd: file descriptor of executable\n\ + args: tuple or list of arguments\n\ + env: dictionary of strings mapping to strings"); + +static PyObject * +posix_fexecve(PyObject *self, PyObject *args) +{ + int fd; + PyObject *argv, *env; + char **argvlist; + char **envlist; + Py_ssize_t argc, envc; + + if (!PyArg_ParseTuple(args, "iOO:fexecve", + &fd, &argv, &env)) + return NULL; + if (!PyList_Check(argv) && !PyTuple_Check(argv)) { + PyErr_SetString(PyExc_TypeError, + "fexecve() arg 2 must be a tuple or list"); + return NULL; + } + argc = PySequence_Size(argv); + if (!PyMapping_Check(env)) { + PyErr_SetString(PyExc_TypeError, + "fexecve() arg 3 must be a mapping object"); + return NULL; + } + + argvlist = parse_arglist(argv, &argc); + if (argvlist == NULL) + return NULL; + + envlist = parse_envlist(env, &envc); + if (envlist == NULL) + goto fail; + + fexecve(fd, argvlist, envlist); + + /* If we get here it's definitely an error */ + + (void) posix_error(); + + while (--envc >= 0) + PyMem_DEL(envlist[envc]); + PyMem_DEL(envlist); + fail: + free_string_array(argvlist, argc); + return NULL; +} +#endif /* HAVE_FEXECVE */ #ifdef HAVE_SPAWNV PyDoc_STRVAR(posix_spawnv__doc__, @@ -4337,6 +4585,7 @@ } #endif + #ifdef HAVE_GETEGID PyDoc_STRVAR(posix_getegid__doc__, "getegid() -> egid\n\n\ @@ -5127,6 +5376,55 @@ } #endif /* HAVE_WAIT4 */ +#if defined(HAVE_WAITID) && !defined(__APPLE__) +PyDoc_STRVAR(posix_waitid__doc__, +"waitid(idtype, id, options) -> waitid_result\n\n\ +Wait for the completion of one or more child processes.\n\n\ +idtype can be P_PID, P_PGID or P_ALL.\n\ +id specifies the pid to wait on.\n\ +options is constructed from the ORing of one or more of WEXITED, WSTOPPED\n\ +or WCONTINUED and additionally may be ORed with WNOHANG or WNOWAIT.\n\ +Returns either waitid_result or None if WNOHANG is specified and there are\n\ +no children in a waitable state."); + +static PyObject * +posix_waitid(PyObject *self, PyObject *args) +{ + PyObject *result; + idtype_t idtype; + id_t id; + int options, res; + siginfo_t si; + si.si_pid = 0; + if (!PyArg_ParseTuple(args, "i" _Py_PARSE_PID "i:waitid", &idtype, &id, &options)) + return NULL; + Py_BEGIN_ALLOW_THREADS + res = waitid(idtype, id, &si, options); + Py_END_ALLOW_THREADS + if (res == -1) + return posix_error(); + + if (si.si_pid == 0) + Py_RETURN_NONE; + + result = PyStructSequence_New(&WaitidResultType); + if (!result) + return NULL; + + PyStructSequence_SET_ITEM(result, 0, PyLong_FromPid(si.si_pid)); + PyStructSequence_SET_ITEM(result, 1, PyLong_FromPid(si.si_uid)); + PyStructSequence_SET_ITEM(result, 2, PyLong_FromLong((long)(si.si_signo))); + PyStructSequence_SET_ITEM(result, 3, PyLong_FromLong((long)(si.si_status))); + PyStructSequence_SET_ITEM(result, 4, PyLong_FromLong((long)(si.si_code))); + if (PyErr_Occurred()) { + Py_DECREF(result); + return NULL; + } + + return result; +} +#endif + #ifdef HAVE_WAITPID PyDoc_STRVAR(posix_waitpid__doc__, "waitpid(pid, options) -> (pid, status)\n\n\ @@ -5742,6 +6040,35 @@ return Py_None; } +#ifdef HAVE_LOCKF +PyDoc_STRVAR(posix_lockf__doc__, +"lockf(fd, cmd, len)\n\n\ +Apply, test or remove a POSIX lock on an open file descriptor.\n\n\ +fd is an open file descriptor.\n\ +cmd specifies the command to use - one of F_LOCK, F_TLOCK, F_ULOCK or\n\ +F_TEST.\n\ +len specifies the section of the file to lock."); + +static PyObject * +posix_lockf(PyObject *self, PyObject *args) +{ + int fd, cmd, res; + off_t len; + if (!PyArg_ParseTuple(args, "iiO&:lockf", + &fd, &cmd, _parse_off_t, &len)) + return NULL; + + Py_BEGIN_ALLOW_THREADS + res = lockf(fd, cmd, len); + Py_END_ALLOW_THREADS + + if (res < 0) + return posix_error(); + + Py_RETURN_NONE; +} +#endif + PyDoc_STRVAR(posix_lseek__doc__, "lseek(fd, pos, how) -> newpos\n\n\ @@ -5831,6 +6158,140 @@ return buffer; } +#if (defined(HAVE_SENDFILE) && (defined(__FreeBSD__) || defined(__DragonFly__) \ + || defined(__APPLE__))) || defined(HAVE_READV) || defined(HAVE_WRITEV) +static Py_ssize_t +iov_setup(struct iovec **iov, Py_buffer **buf, PyObject *seq, int cnt, int type) +{ + int i, j; + Py_ssize_t blen, total = 0; + + *iov = PyMem_New(struct iovec, cnt); + if (*iov == NULL) { + PyErr_NoMemory(); + return total; + } + + *buf = PyMem_New(Py_buffer, cnt); + if (*buf == NULL) { + PyMem_Del(*iov); + PyErr_NoMemory(); + return total; + } + + for (i = 0; i < cnt; i++) { + PyObject *item = PySequence_GetItem(seq, i); + if (item == NULL) + goto fail; + if (PyObject_GetBuffer(item, &(*buf)[i], type) == -1) { + Py_DECREF(item); + goto fail; + } + Py_DECREF(item); + (*iov)[i].iov_base = (*buf)[i].buf; + blen = (*buf)[i].len; + (*iov)[i].iov_len = blen; + total += blen; + } + return total; + +fail: + PyMem_Del(*iov); + for (j = 0; j < i; j++) { + PyBuffer_Release(&(*buf)[j]); + } + PyMem_Del(*buf); + return 0; +} + +static void +iov_cleanup(struct iovec *iov, Py_buffer *buf, int cnt) +{ + int i; + PyMem_Del(iov); + for (i = 0; i < cnt; i++) { + PyBuffer_Release(&buf[i]); + } + PyMem_Del(buf); +} +#endif + +#ifdef HAVE_READV +PyDoc_STRVAR(posix_readv__doc__, +"readv(fd, buffers) -> bytesread\n\n\ +Read from a file descriptor into a number of writable buffers. buffers\n\ +is an arbitrary sequence of writable buffers.\n\ +Returns the total number of bytes read."); + +static PyObject * +posix_readv(PyObject *self, PyObject *args) +{ + int fd, cnt; + Py_ssize_t n; + PyObject *seq; + struct iovec *iov; + Py_buffer *buf; + + if (!PyArg_ParseTuple(args, "iO:readv", &fd, &seq)) + return NULL; + if (!PySequence_Check(seq)) { + PyErr_SetString(PyExc_TypeError, + "readv() arg 2 must be a sequence"); + return NULL; + } + cnt = PySequence_Size(seq); + + if (!iov_setup(&iov, &buf, seq, cnt, PyBUF_WRITABLE)) + return NULL; + + Py_BEGIN_ALLOW_THREADS + n = readv(fd, iov, cnt); + Py_END_ALLOW_THREADS + + iov_cleanup(iov, buf, cnt); + return PyLong_FromSsize_t(n); +} +#endif + +#ifdef HAVE_PREAD +PyDoc_STRVAR(posix_pread__doc__, +"pread(fd, buffersize, offset) -> string\n\n\ +Read from a file descriptor, fd, at a position of offset. It will read up\n\ +to buffersize number of bytes. The file offset remains unchanged."); + +static PyObject * +posix_pread(PyObject *self, PyObject *args) +{ + int fd, size; + off_t offset; + Py_ssize_t n; + PyObject *buffer; + if (!PyArg_ParseTuple(args, "iiO&:pread", &fd, &size, _parse_off_t, &offset)) + return NULL; + + if (size < 0) { + errno = EINVAL; + return posix_error(); + } + buffer = PyBytes_FromStringAndSize((char *)NULL, size); + if (buffer == NULL) + return NULL; + if (!_PyVerify_fd(fd)) { + Py_DECREF(buffer); + return posix_error(); + } + Py_BEGIN_ALLOW_THREADS + n = pread(fd, PyBytes_AS_STRING(buffer), size, offset); + Py_END_ALLOW_THREADS + if (n < 0) { + Py_DECREF(buffer); + return posix_error(); + } + if (n != size) + _PyBytes_Resize(&buffer, n); + return buffer; +} +#endif PyDoc_STRVAR(posix_write__doc__, "write(fd, string) -> byteswritten\n\n\ @@ -5866,57 +6327,6 @@ } #ifdef HAVE_SENDFILE -#if defined(__FreeBSD__) || defined(__DragonFly__) || defined(__APPLE__) -static Py_ssize_t -iov_setup(struct iovec **iov, Py_buffer **buf, PyObject *seq, int cnt, int type) -{ - int i, j; - Py_ssize_t blen, total = 0; - - *iov = PyMem_New(struct iovec, cnt); - if (*iov == NULL) { - PyErr_NoMemory(); - return total; - } - - *buf = PyMem_New(Py_buffer, cnt); - if (*buf == NULL) { - PyMem_Del(*iov); - PyErr_NoMemory(); - return total; - } - - for (i = 0; i < cnt; i++) { - if (PyObject_GetBuffer(PySequence_GetItem(seq, i), - &(*buf)[i], type) == -1) { - PyMem_Del(*iov); - for (j = 0; j < i; j++) { - PyBuffer_Release(&(*buf)[j]); - } - PyMem_Del(*buf); - total = 0; - return total; - } - (*iov)[i].iov_base = (*buf)[i].buf; - blen = (*buf)[i].len; - (*iov)[i].iov_len = blen; - total += blen; - } - return total; -} - -static void -iov_cleanup(struct iovec *iov, Py_buffer *buf, int cnt) -{ - int i; - PyMem_Del(iov); - for (i = 0; i < cnt; i++) { - PyBuffer_Release(&buf[i]); - } - PyMem_Del(buf); -} -#endif - PyDoc_STRVAR(posix_sendfile__doc__, "sendfile(out, in, offset, nbytes) -> byteswritten\n\ sendfile(out, in, offset, nbytes, headers=None, trailers=None, flags=0)\n\ @@ -6150,6 +6560,73 @@ } #endif /* HAVE_PIPE */ +#ifdef HAVE_WRITEV +PyDoc_STRVAR(posix_writev__doc__, +"writev(fd, buffers) -> byteswritten\n\n\ +Write the contents of buffers to a file descriptor, where buffers is an\n\ +arbitrary sequence of buffers.\n\ +Returns the total bytes written."); + +static PyObject * +posix_writev(PyObject *self, PyObject *args) +{ + int fd, cnt; + Py_ssize_t res; + PyObject *seq; + struct iovec *iov; + Py_buffer *buf; + if (!PyArg_ParseTuple(args, "iO:writev", &fd, &seq)) + return NULL; + if (!PySequence_Check(seq)) { + PyErr_SetString(PyExc_TypeError, + "writev() arg 2 must be a sequence"); + return NULL; + } + cnt = PySequence_Size(seq); + + if (!iov_setup(&iov, &buf, seq, cnt, PyBUF_SIMPLE)) { + return NULL; + } + + Py_BEGIN_ALLOW_THREADS + res = writev(fd, iov, cnt); + Py_END_ALLOW_THREADS + + iov_cleanup(iov, buf, cnt); + return PyLong_FromSsize_t(res); +} +#endif + +#ifdef HAVE_PWRITE +PyDoc_STRVAR(posix_pwrite__doc__, +"pwrite(fd, string, offset) -> byteswritten\n\n\ +Write string to a file descriptor, fd, from offset, leaving the file\n\ +offset unchanged."); + +static PyObject * +posix_pwrite(PyObject *self, PyObject *args) +{ + Py_buffer pbuf; + int fd; + off_t offset; + Py_ssize_t size; + + if (!PyArg_ParseTuple(args, "iy*O&:pwrite", &fd, &pbuf, _parse_off_t, &offset)) + return NULL; + + if (!_PyVerify_fd(fd)) { + PyBuffer_Release(&pbuf); + return posix_error(); + } + Py_BEGIN_ALLOW_THREADS + size = pwrite(fd, pbuf.buf, (size_t)pbuf.len, offset); + Py_END_ALLOW_THREADS + PyBuffer_Release(&pbuf); + if (size < 0) + return posix_error(); + return PyLong_FromSsize_t(size); +} +#endif #ifdef HAVE_MKFIFO PyDoc_STRVAR(posix_mkfifo__doc__, @@ -6266,18 +6743,8 @@ int fd; off_t length; int res; - PyObject *lenobj; - - if (!PyArg_ParseTuple(args, "iO:ftruncate", &fd, &lenobj)) - return NULL; - -#if !defined(HAVE_LARGEFILE_SUPPORT) - length = PyLong_AsLong(lenobj); -#else - length = PyLong_Check(lenobj) ? - PyLong_AsLongLong(lenobj) : PyLong_AsLong(lenobj); -#endif - if (PyErr_Occurred()) + + if (!PyArg_ParseTuple(args, "iO&:ftruncate", &fd, _parse_off_t, &length)) return NULL; Py_BEGIN_ALLOW_THREADS @@ -6290,6 +6757,93 @@ } #endif +#ifdef HAVE_TRUNCATE +PyDoc_STRVAR(posix_truncate__doc__, +"truncate(path, length)\n\n\ +Truncate the file given by path to length bytes."); + +static PyObject * +posix_truncate(PyObject *self, PyObject *args) +{ + PyObject *opath; + const char *path; + off_t length; + int res; + + if (!PyArg_ParseTuple(args, "O&O&:truncate", + PyUnicode_FSConverter, &opath, _parse_off_t, &length)) + return NULL; + path = PyBytes_AsString(opath); + + Py_BEGIN_ALLOW_THREADS + res = truncate(path, length); + Py_END_ALLOW_THREADS + Py_DECREF(opath); + if (res < 0) + return posix_error(); + Py_RETURN_NONE; +} +#endif + +#ifdef HAVE_POSIX_FALLOCATE +PyDoc_STRVAR(posix_posix_fallocate__doc__, +"posix_fallocate(fd, offset, len)\n\n\ +Ensures that enough disk space is allocated for the file specified by fd\n\ +starting from offset and continuing for len bytes."); + +static PyObject * +posix_posix_fallocate(PyObject *self, PyObject *args) +{ + off_t len, offset; + int res, fd; + + if (!PyArg_ParseTuple(args, "iO&O&:posix_fallocate", + &fd, _parse_off_t, &offset, _parse_off_t, &len)) + return NULL; + + Py_BEGIN_ALLOW_THREADS + res = posix_fallocate(fd, offset, len); + Py_END_ALLOW_THREADS + if (res != 0) { + errno = res; + return posix_error(); + } + Py_RETURN_NONE; +} +#endif + +#ifdef HAVE_POSIX_FADVISE +PyDoc_STRVAR(posix_posix_fadvise__doc__, +"posix_fadvise(fd, offset, len, advice)\n\n\ +Announces an intention to access data in a specific pattern thus allowing\n\ +the kernel to make optimizations.\n\ +The advice applies to the region of the file specified by fd starting at\n\ +offset and continuing for len bytes.\n\ +advice is one of POSIX_FADV_NORMAL, POSIX_FADV_SEQUENTIAL,\n\ +POSIX_FADV_RANDOM, POSIX_FADV_NOREUSE, POSIX_FADV_WILLNEED or\n\ +POSIX_FADV_DONTNEED."); + +static PyObject * +posix_posix_fadvise(PyObject *self, PyObject *args) +{ + off_t len, offset; + int res, fd, advice; + + if (!PyArg_ParseTuple(args, "iO&O&i:posix_fadvise", + &fd, _parse_off_t, &offset, _parse_off_t, &len, &advice)) + return NULL; + + Py_BEGIN_ALLOW_THREADS + res = posix_fadvise(fd, offset, len, advice); + Py_END_ALLOW_THREADS + if (res != 0) { + errno = res; + return posix_error(); + } + Py_RETURN_NONE; +} +#endif + #ifdef HAVE_PUTENV PyDoc_STRVAR(posix_putenv__doc__, "putenv(key, value)\n\n\ @@ -8725,6 +9279,15 @@ {"unlink", posix_unlink, METH_VARARGS, posix_unlink__doc__}, {"remove", posix_unlink, METH_VARARGS, posix_remove__doc__}, {"utime", posix_utime, METH_VARARGS, posix_utime__doc__}, +#ifdef HAVE_FUTIMES + {"futimes", posix_futimes, METH_VARARGS, posix_futimes__doc__}, +#endif +#ifdef HAVE_LUTIMES + {"lutimes", posix_lutimes, METH_VARARGS, posix_lutimes__doc__}, +#endif +#ifdef HAVE_FUTIMENS + {"futimens", posix_futimens, METH_VARARGS, posix_futimens__doc__}, +#endif #ifdef HAVE_TIMES {"times", posix_times, METH_NOARGS, posix_times__doc__}, #endif /* HAVE_TIMES */ @@ -8733,6 +9296,9 @@ {"execv", posix_execv, METH_VARARGS, posix_execv__doc__}, {"execve", posix_execve, METH_VARARGS, posix_execve__doc__}, #endif /* HAVE_EXECV */ +#ifdef HAVE_FEXECVE + {"fexecve", posix_fexecve, METH_VARARGS, posix_fexecve__doc__}, +#endif #ifdef HAVE_SPAWNV {"spawnv", posix_spawnv, METH_VARARGS, posix_spawnv__doc__}, {"spawnve", posix_spawnve, METH_VARARGS, posix_spawnve__doc__}, @@ -8831,6 +9397,9 @@ #ifdef HAVE_WAIT4 {"wait4", posix_wait4, METH_VARARGS, posix_wait4__doc__}, #endif /* HAVE_WAIT4 */ +#if defined(HAVE_WAITID) && !defined(__APPLE__) + {"waitid", posix_waitid, METH_VARARGS, posix_waitid__doc__}, +#endif #if defined(HAVE_WAITPID) || defined(HAVE_CWAIT) {"waitpid", posix_waitpid, METH_VARARGS, posix_waitpid__doc__}, #endif /* HAVE_WAITPID */ @@ -8855,9 +9424,24 @@ {"device_encoding", device_encoding, METH_VARARGS, device_encoding__doc__}, {"dup", posix_dup, METH_VARARGS, posix_dup__doc__}, {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__}, +#ifdef HAVE_LOCKF + {"lockf", posix_lockf, METH_VARARGS, posix_lockf__doc__}, +#endif {"lseek", posix_lseek, METH_VARARGS, posix_lseek__doc__}, {"read", posix_read, METH_VARARGS, posix_read__doc__}, +#ifdef HAVE_READV + {"readv", posix_readv, METH_VARARGS, posix_readv__doc__}, +#endif +#ifdef HAVE_PREAD + {"pread", posix_pread, METH_VARARGS, posix_pread__doc__}, +#endif {"write", posix_write, METH_VARARGS, posix_write__doc__}, +#ifdef HAVE_WRITEV + {"writev", posix_writev, METH_VARARGS, posix_writev__doc__}, +#endif +#ifdef HAVE_PWRITE + {"pwrite", posix_pwrite, METH_VARARGS, posix_pwrite__doc__}, +#endif #ifdef HAVE_SENDFILE {"sendfile", (PyCFunction)posix_sendfile, METH_VARARGS | METH_KEYWORDS, posix_sendfile__doc__}, @@ -8881,6 +9465,15 @@ #ifdef HAVE_FTRUNCATE {"ftruncate", posix_ftruncate, METH_VARARGS, posix_ftruncate__doc__}, #endif +#ifdef HAVE_TRUNCATE + {"truncate", posix_truncate, METH_VARARGS, posix_truncate__doc__}, +#endif +#ifdef HAVE_POSIX_FALLOCATE + {"posix_fallocate", posix_posix_fallocate, METH_VARARGS, posix_posix_fallocate__doc__}, +#endif +#ifdef HAVE_POSIX_FADVISE + {"posix_fadvise", posix_posix_fadvise, METH_VARARGS, posix_posix_fadvise__doc__}, +#endif #ifdef HAVE_PUTENV {"putenv", posix_putenv, METH_VARARGS, posix_putenv__doc__}, #endif @@ -8894,6 +9487,9 @@ #ifdef HAVE_FSYNC {"fsync", posix_fsync, METH_O, posix_fsync__doc__}, #endif +#ifdef HAVE_SYNC + {"sync", posix_sync, METH_NOARGS, posix_sync__doc__}, +#endif #ifdef HAVE_FDATASYNC {"fdatasync", posix_fdatasync, METH_O, posix_fdatasync__doc__}, #endif @@ -9342,6 +9938,76 @@ if (ins(d, "SF_SYNC", (long)SF_SYNC)) return -1; #endif + /* constants for posix_fadvise */ +#ifdef POSIX_FADV_NORMAL + if (ins(d, "POSIX_FADV_NORMAL", (long)POSIX_FADV_NORMAL)) return -1; +#endif +#ifdef POSIX_FADV_SEQUENTIAL + if (ins(d, "POSIX_FADV_SEQUENTIAL", (long)POSIX_FADV_SEQUENTIAL)) return -1; +#endif +#ifdef POSIX_FADV_RANDOM + if (ins(d, "POSIX_FADV_RANDOM", (long)POSIX_FADV_RANDOM)) return -1; +#endif +#ifdef POSIX_FADV_NOREUSE + if (ins(d, "POSIX_FADV_NOREUSE", (long)POSIX_FADV_NOREUSE)) return -1; +#endif +#ifdef POSIX_FADV_WILLNEED + if (ins(d, "POSIX_FADV_WILLNEED", (long)POSIX_FADV_WILLNEED)) return -1; +#endif +#ifdef POSIX_FADV_DONTNEED + if (ins(d, "POSIX_FADV_DONTNEED", (long)POSIX_FADV_DONTNEED)) return -1; +#endif + + /* constants for waitid */ +#if defined(HAVE_SYS_WAIT_H) && defined(HAVE_WAITID) + if (ins(d, "P_PID", (long)P_PID)) return -1; + if (ins(d, "P_PGID", (long)P_PGID)) return -1; + if (ins(d, "P_ALL", (long)P_ALL)) return -1; +#endif +#ifdef WEXITED + if (ins(d, "WEXITED", (long)WEXITED)) return -1; +#endif +#ifdef WNOWAIT + if (ins(d, "WNOWAIT", (long)WNOWAIT)) return -1; +#endif +#ifdef WSTOPPED + if (ins(d, "WSTOPPED", (long)WSTOPPED)) return -1; +#endif +#ifdef CLD_EXITED + if (ins(d, "CLD_EXITED", (long)CLD_EXITED)) return -1; +#endif +#ifdef CLD_DUMPED + if (ins(d, "CLD_DUMPED", (long)CLD_DUMPED)) return -1; +#endif +#ifdef CLD_TRAPPED + if (ins(d, "CLD_TRAPPED", (long)CLD_TRAPPED)) return -1; +#endif +#ifdef CLD_CONTINUED + if (ins(d, "CLD_CONTINUED", (long)CLD_CONTINUED)) return -1; +#endif + + /* constants for lockf */ +#ifdef F_LOCK + if (ins(d, "F_LOCK", (long)F_LOCK)) return -1; +#endif +#ifdef F_TLOCK + if (ins(d, "F_TLOCK", (long)F_TLOCK)) return -1; +#endif +#ifdef F_ULOCK + if (ins(d, "F_ULOCK", (long)F_ULOCK)) return -1; +#endif +#ifdef F_TEST + if (ins(d, "F_TEST", (long)F_TEST)) return -1; +#endif + + /* constants for futimens */ +#ifdef UTIME_NOW + if (ins(d, "UTIME_NOW", (long)UTIME_NOW)) return -1; +#endif +#ifdef UTIME_OMIT + if (ins(d, "UTIME_OMIT", (long)UTIME_OMIT)) return -1; +#endif + #ifdef HAVE_SPAWNV #if defined(PYOS_OS2) && defined(PYCC_GCC) if (ins(d, "P_WAIT", (long)P_WAIT)) return -1; @@ -9441,6 +10107,11 @@ #endif if (!initialized) { +#if defined(HAVE_WAITID) && !defined(__APPLE__) + waitid_result_desc.name = MODNAME ".waitid_result"; + PyStructSequence_InitType(&WaitidResultType, &waitid_result_desc); +#endif + stat_result_desc.name = MODNAME ".stat_result"; stat_result_desc.fields[7].name = PyStructSequence_UnnamedField; stat_result_desc.fields[8].name = PyStructSequence_UnnamedField; @@ -9461,6 +10132,10 @@ # endif #endif } +#if defined(HAVE_WAITID) && !defined(__APPLE__) + Py_INCREF((PyObject*) &WaitidResultType); + PyModule_AddObject(m, "waitid_result", (PyObject*) &WaitidResultType); +#endif Py_INCREF((PyObject*) &StatResultType); PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType); Py_INCREF((PyObject*) &StatVFSResultType); diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2242,7 +2242,7 @@ * This is the guts of the recv() and recv_into() methods, which reads into a * char buffer. If you have any inc/dec ref to do to the objects that contain * the buffer, do it in the caller. This function returns the number of bytes - * succesfully read. If there was an error, it returns -1. Note that it is + * successfully read. If there was an error, it returns -1. Note that it is * also possible that we return a number of bytes smaller than the request * bytes. */ @@ -2446,7 +2446,7 @@ * This is the guts of the recvfrom() and recvfrom_into() methods, which reads * into a char buffer. If you have any inc/def ref to do to the objects that * contain the buffer, do it in the caller. This function returns the number - * of bytes succesfully read. If there was an error, it returns -1. Note + * of bytes successfully read. If there was an error, it returns -1. Note * that it is also possible that we return a number of bytes smaller than the * request bytes. * @@ -2541,9 +2541,9 @@ if (outlen != recvlen) { /* We did not read as many bytes as we anticipated, resize the - string if possible and be succesful. */ + string if possible and be successful. */ if (_PyBytes_Resize(&buf, outlen) < 0) - /* Oopsy, not so succesful after all. */ + /* Oopsy, not so successful after all. */ goto finally; } @@ -2747,17 +2747,28 @@ Py_buffer pbuf; PyObject *addro; char *buf; - Py_ssize_t len; + Py_ssize_t len, arglen; sock_addr_t addrbuf; int addrlen, n = -1, flags, timeout; flags = 0; - if (!PyArg_ParseTuple(args, "y*O:sendto", &pbuf, &addro)) { - PyErr_Clear(); - if (!PyArg_ParseTuple(args, "y*iO:sendto", - &pbuf, &flags, &addro)) - return NULL; + arglen = PyTuple_Size(args); + switch (arglen) { + case 2: + PyArg_ParseTuple(args, "y*O:sendto", &pbuf, &addro); + break; + case 3: + PyArg_ParseTuple(args, "y*iO:sendto", + &pbuf, &flags, &addro); + break; + default: + PyErr_Format(PyExc_TypeError, + "sendto() takes 2 or 3 arguments (%d given)", + arglen); } + if (PyErr_Occurred()) + return NULL; + buf = pbuf.buf; len = pbuf.len; @@ -4372,7 +4383,7 @@ return 0; /* Failure */ #else - /* No need to initialise sockets with GCC/EMX */ + /* No need to initialize sockets with GCC/EMX */ return 1; /* Success */ #endif } @@ -4406,7 +4417,7 @@ "socket.py" which implements some additional functionality. The import of "_socket" may fail with an ImportError exception if os-specific initialization fails. On Windows, this does WINSOCK - initialization. When WINSOCK is initialized succesfully, a call to + initialization. When WINSOCK is initialized successfully, a call to WSACleanup() is scheduled to be made at exit time. */ diff --git a/Modules/timemodule.c b/Modules/timemodule.c --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -697,7 +697,7 @@ buf.tm_wday = -1; /* sentinel; original value ignored */ tt = mktime(&buf); /* Return value of -1 does not necessarily mean an error, but tm_wday - * cannot remain set to -1 if mktime succedded. */ + * cannot remain set to -1 if mktime succeeded. */ if (tt == (time_t)(-1) && buf.tm_wday == -1) { PyErr_SetString(PyExc_OverflowError, "mktime argument out of range"); diff --git a/Modules/zipimport.c b/Modules/zipimport.c --- a/Modules/zipimport.c +++ b/Modules/zipimport.c @@ -1120,7 +1120,7 @@ } /* Given a path to a .pyc or .pyo file in the archive, return the - modifictaion time of the matching .py file, or 0 if no source + modification time of the matching .py file, or 0 if no source is available. */ static time_t get_mtime_of_source(ZipImporter *self, char *path) diff --git a/Objects/dictobject.c b/Objects/dictobject.c --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -2080,7 +2080,7 @@ assert(d->ma_table == NULL && d->ma_fill == 0 && d->ma_used == 0); INIT_NONZERO_DICT_SLOTS(d); d->ma_lookup = lookdict_unicode; - /* The object has been implicitely tracked by tp_alloc */ + /* The object has been implicitly tracked by tp_alloc */ if (type == &PyDict_Type) _PyObject_GC_UNTRACK(d); #ifdef SHOW_CONVERSION_COUNTS diff --git a/Objects/listobject.c b/Objects/listobject.c --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -11,7 +11,7 @@ /* Ensure ob_item has room for at least newsize elements, and set * ob_size to newsize. If newsize > ob_size on entry, the content * of the new slots at exit is undefined heap trash; it's the caller's - * responsiblity to overwrite them with sane values. + * responsibility to overwrite them with sane values. * The number of allocated elements may grow, shrink, or stay the same. * Failure is impossible if newsize <= self.allocated on entry, although * that partly relies on an assumption that the system realloc() never diff --git a/Objects/longobject.c b/Objects/longobject.c --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -709,7 +709,7 @@ is_signed = *pendbyte >= 0x80; /* Compute numsignificantbytes. This consists of finding the most - significant byte. Leading 0 bytes are insignficant if the number + significant byte. Leading 0 bytes are insignificant if the number is positive, and leading 0xff bytes if negative. */ { size_t i; diff --git a/Objects/typeobject.c b/Objects/typeobject.c --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -1008,7 +1008,7 @@ self has a refcount of 0, and if gc ever gets its hands on it (which can happen if any weakref callback gets invoked), it looks like trash to gc too, and gc also tries to delete self - then. But we're already deleting self. Double dealloction is + then. But we're already deleting self. Double deallocation is a subtle disaster. Q. Why the bizarre (net-zero) manipulation of @@ -5955,7 +5955,7 @@ slots compete for the same descriptor (for example both sq_item and mp_subscript generate a __getitem__ descriptor). - In the latter case, the first slotdef entry encoutered wins. Since + In the latter case, the first slotdef entry encountered wins. Since slotdef entries are sorted by the offset of the slot in the PyHeapTypeObject, this gives us some control over disambiguating between competing slots: the members of PyHeapTypeObject are listed diff --git a/PC/bdist_wininst/extract.c b/PC/bdist_wininst/extract.c --- a/PC/bdist_wininst/extract.c +++ b/PC/bdist_wininst/extract.c @@ -54,7 +54,7 @@ return TRUE; } -/* XXX Should better explicitely specify +/* XXX Should better explicitly specify * uncomp_size and file_times instead of pfhdr! */ char *map_new_file(DWORD flags, char *filename, @@ -164,7 +164,7 @@ zstream.avail_out = uncomp_size; /* Apparently an undocumented feature of zlib: Set windowsize - to negative values to supress the gzip header and be compatible with + to negative values to suppress the gzip header and be compatible with zip! */ result = TRUE; if (Z_OK != (x = inflateInit2(&zstream, -15))) { diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c --- a/PC/bdist_wininst/install.c +++ b/PC/bdist_wininst/install.c @@ -148,7 +148,7 @@ the permissions of the current user. */ HKEY hkey_root = (HKEY)-1; -BOOL success; /* Installation successfull? */ +BOOL success; /* Installation successful? */ char *failure_reason = NULL; HANDLE hBitmap; @@ -797,7 +797,7 @@ tempname = tempnam(NULL, NULL); // We use a static CRT while the Python version we load uses - // the CRT from one of various possibile DLLs. As a result we + // the CRT from one of various possible DLLs. As a result we // need to redirect the standard handles using the API rather // than the CRT. redirected = CreateFile( diff --git a/PC/os2emx/dlfcn.c b/PC/os2emx/dlfcn.c --- a/PC/os2emx/dlfcn.c +++ b/PC/os2emx/dlfcn.c @@ -188,7 +188,7 @@ return NULL; } -/* free dynamicaly-linked library */ +/* free dynamically-linked library */ int dlclose(void *handle) { int rc; diff --git a/PC/os2emx/dlfcn.h b/PC/os2emx/dlfcn.h --- a/PC/os2emx/dlfcn.h +++ b/PC/os2emx/dlfcn.h @@ -42,7 +42,7 @@ /* return a pointer to the `symbol' in DLL */ void *dlsym(void *handle, char *symbol); -/* free dynamicaly-linked library */ +/* free dynamically-linked library */ int dlclose(void *handle); /* return a string describing last occurred dl error */ diff --git a/Python/ceval.c b/Python/ceval.c --- a/Python/ceval.c +++ b/Python/ceval.c @@ -26,7 +26,7 @@ typedef unsigned long long uint64; -/* PowerPC suppport. +/* PowerPC support. "__ppc__" appears to be the preprocessor definition to detect on OS X, whereas "__powerpc__" appears to be the correct one for Linux with GCC */ @@ -1266,7 +1266,7 @@ if (_Py_atomic_load_relaxed(&eval_breaker)) { if (*next_instr == SETUP_FINALLY) { /* Make the last opcode before - a try: finally: block uninterruptable. */ + a try: finally: block uninterruptible. */ goto fast_next_opcode; } tstate->tick_counter++; diff --git a/Python/pystate.c b/Python/pystate.c --- a/Python/pystate.c +++ b/Python/pystate.c @@ -512,7 +512,7 @@ /* for i in all interpreters: * for t in all of i's thread states: * if t's frame isn't NULL, map t's id to its frame - * Because these lists can mutute even when the GIL is held, we + * Because these lists can mutate even when the GIL is held, we * need to grab head_mutex for the duration. */ HEAD_LOCK(); diff --git a/Python/thread.c b/Python/thread.c --- a/Python/thread.c +++ b/Python/thread.c @@ -40,7 +40,7 @@ #endif /* Check if we're running on HP-UX and _SC_THREADS is defined. If so, then - enough of the Posix threads package is implimented to support python + enough of the Posix threads package is implemented to support python threads. This is valid for HP-UX 11.23 running on an ia64 system. If needed, add diff --git a/Tools/freeze/checkextensions_win32.py b/Tools/freeze/checkextensions_win32.py --- a/Tools/freeze/checkextensions_win32.py +++ b/Tools/freeze/checkextensions_win32.py @@ -7,7 +7,7 @@ we get it just right, a specific freeze application may have specific compiler options anyway (eg, to enable or disable specific functionality) -So my basic stragtegy is: +So my basic strategy is: * Have some Windows INI files which "describe" one or more extension modules. (Freeze comes with a default one for all known modules - but you can specify diff --git a/Tools/scripts/fixcid.py b/Tools/scripts/fixcid.py --- a/Tools/scripts/fixcid.py +++ b/Tools/scripts/fixcid.py @@ -188,7 +188,7 @@ except os.error as msg: err(filename + ': rename failed (' + str(msg) + ')\n') return 1 - # Return succes + # Return success return 0 # Tokenizing ANSI C (partly) diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py --- a/Tools/unicode/makeunicodedata.py +++ b/Tools/unicode/makeunicodedata.py @@ -1002,7 +1002,7 @@ poly = size + poly break else: - raise AssertionError("ran out of polynominals") + raise AssertionError("ran out of polynomials") print(size, "slots in hash table") diff --git a/configure b/configure --- a/configure +++ b/configure @@ -776,8 +776,7 @@ LDFLAGS LIBS CPPFLAGS -CPP -CPPFLAGS' +CPP' # Initialize some variables set by options. @@ -9251,19 +9250,21 @@ # checks for library functions for ac_func in alarm accept4 setitimer getitimer bind_textdomain_codeset chown \ clock confstr ctermid execv faccessat fchmod fchmodat fchown fchownat \ - fdopendir fork fpathconf fstatat ftime ftruncate futimesat \ + fexecve fdopendir fork fpathconf fstatat ftime ftruncate futimesat \ + futimens futimes \ gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \ getpriority getresuid getresgid getpwent getspnam getspent getsid getwd \ - initgroups kill killpg lchmod lchown linkat lstat mbrtowc mkdirat mkfifo \ + initgroups kill killpg lchmod lchown lockf linkat lstat lutimes mbrtowc mkdirat mkfifo \ mkfifoat mknod mknodat mktime mremap nice openat pathconf pause plock poll \ - pthread_init putenv readlink readlinkat realpath renameat \ + posix_fallocate posix_fadvise pread \ + pthread_init putenv pwrite readlink readlinkat readv realpath renameat \ select sem_open sem_timedwait sem_getvalue sem_unlink sendfile setegid seteuid \ setgid sethostname \ setlocale setregid setreuid setresuid setresgid setsid setpgid setpgrp setpriority setuid setvbuf \ - sigaction siginterrupt sigrelse snprintf strftime strlcpy symlinkat \ + sigaction siginterrupt sigrelse snprintf strftime strlcpy symlinkat sync \ sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \ - truncate uname unlinkat unsetenv utimensat utimes waitpid wait3 wait4 \ - wcscoll wcsftime wcsxfrm _getpty + truncate uname unlinkat unsetenv utimensat utimes waitid waitpid wait3 wait4 \ + wcscoll wcsftime wcsxfrm writev _getpty do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -2496,19 +2496,21 @@ # checks for library functions AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \ clock confstr ctermid execv faccessat fchmod fchmodat fchown fchownat \ - fdopendir fork fpathconf fstatat ftime ftruncate futimesat \ + fexecve fdopendir fork fpathconf fstatat ftime ftruncate futimesat \ + futimens futimes \ gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \ getpriority getresuid getresgid getpwent getspnam getspent getsid getwd \ - initgroups kill killpg lchmod lchown linkat lstat mbrtowc mkdirat mkfifo \ + initgroups kill killpg lchmod lchown lockf linkat lstat lutimes mbrtowc mkdirat mkfifo \ mkfifoat mknod mknodat mktime mremap nice openat pathconf pause plock poll \ - pthread_init putenv readlink readlinkat realpath renameat \ + posix_fallocate posix_fadvise pread \ + pthread_init putenv pwrite readlink readlinkat readv realpath renameat \ select sem_open sem_timedwait sem_getvalue sem_unlink sendfile setegid seteuid \ setgid sethostname \ setlocale setregid setreuid setresuid setresgid setsid setpgid setpgrp setpriority setuid setvbuf \ - sigaction siginterrupt sigrelse snprintf strftime strlcpy symlinkat \ + sigaction siginterrupt sigrelse snprintf strftime strlcpy symlinkat sync \ sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \ - truncate uname unlinkat unsetenv utimensat utimes waitpid wait3 wait4 \ - wcscoll wcsftime wcsxfrm _getpty) + truncate uname unlinkat unsetenv utimensat utimes waitid waitpid wait3 wait4 \ + wcscoll wcsftime wcsxfrm writev _getpty) # For some functions, having a definition is not sufficient, since # we want to take their address. diff --git a/pyconfig.h.in b/pyconfig.h.in --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -232,6 +232,9 @@ /* Define to 1 if you have the `fdopendir' function. */ #undef HAVE_FDOPENDIR +/* Define to 1 if you have the `fexecve' function. */ +#undef HAVE_FEXECVE + /* Define to 1 if you have the `finite' function. */ #undef HAVE_FINITE @@ -274,6 +277,12 @@ /* Define to 1 if you have the `ftruncate' function. */ #undef HAVE_FTRUNCATE +/* Define to 1 if you have the `futimens' function. */ +#undef HAVE_FUTIMENS + +/* Define to 1 if you have the `futimes' function. */ +#undef HAVE_FUTIMES + /* Define to 1 if you have the `futimesat' function. */ #undef HAVE_FUTIMESAT @@ -461,6 +470,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_LINUX_TIPC_H +/* Define to 1 if you have the `lockf' function. */ +#undef HAVE_LOCKF + /* Define to 1 if you have the `log1p' function. */ #undef HAVE_LOG1P @@ -473,6 +485,9 @@ /* Define to 1 if you have the `lstat' function. */ #undef HAVE_LSTAT +/* Define to 1 if you have the `lutimes' function. */ +#undef HAVE_LUTIMES + /* Define this if you have the makedev macro. */ #undef HAVE_MAKEDEV @@ -545,6 +560,15 @@ /* Define to 1 if you have the header file. */ #undef HAVE_POLL_H +/* Define to 1 if you have the `posix_fadvise' function. */ +#undef HAVE_POSIX_FADVISE + +/* Define to 1 if you have the `posix_fallocate' function. */ +#undef HAVE_POSIX_FALLOCATE + +/* Define to 1 if you have the `pread' function. */ +#undef HAVE_PREAD + /* Define to 1 if you have the header file. */ #undef HAVE_PROCESS_H @@ -569,12 +593,18 @@ /* Define to 1 if you have the `putenv' function. */ #undef HAVE_PUTENV +/* Define to 1 if you have the `pwrite' function. */ +#undef HAVE_PWRITE + /* Define to 1 if you have the `readlink' function. */ #undef HAVE_READLINK /* Define to 1 if you have the `readlinkat' function. */ #undef HAVE_READLINKAT +/* Define to 1 if you have the `readv' function. */ +#undef HAVE_READV + /* Define to 1 if you have the `realpath' function. */ #undef HAVE_REALPATH @@ -775,6 +805,9 @@ /* Define to 1 if you have the `symlinkat' function. */ #undef HAVE_SYMLINKAT +/* Define to 1 if you have the `sync' function. */ +#undef HAVE_SYNC + /* Define to 1 if you have the `sysconf' function. */ #undef HAVE_SYSCONF @@ -952,6 +985,9 @@ /* Define to 1 if you have the `wait4' function. */ #undef HAVE_WAIT4 +/* Define to 1 if you have the `waitid' function. */ +#undef HAVE_WAITID + /* Define to 1 if you have the `waitpid' function. */ #undef HAVE_WAITPID @@ -971,6 +1007,9 @@ */ #undef HAVE_WORKING_TZSET +/* Define to 1 if you have the `writev' function. */ +#undef HAVE_WRITEV + /* Define if the zlib library has inflateCopy */ #undef HAVE_ZLIB_COPY diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -1017,8 +1017,8 @@ if sys.platform == 'darwin': # In every directory on the search path search for a dynamic # library and then a static library, instead of first looking - # for dynamic libraries on the entiry path. - # This way a staticly linked custom sqlite gets picked up + # for dynamic libraries on the entire path. + # This way a statically linked custom sqlite gets picked up # before the dynamic library in /usr/lib. sqlite_extra_link_args = ('-Wl,-search_paths_first',) else: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 19:08:10 2011 From: python-checkins at python.org (skip.montanaro) Date: Sat, 19 Mar 2011 19:08:10 +0100 Subject: [Python-checkins] cpython (merge default -> default): merge from upstream Message-ID: http://hg.python.org/cpython/rev/16a386443055 changeset: 68684:16a386443055 parent: 68683:64eeb4cd4b56 parent: 68681:cb148da52c47 user: Skip Montanaro date: Sat Mar 19 13:03:33 2011 -0500 summary: merge from upstream files: diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst --- a/Doc/library/platform.rst +++ b/Doc/library/platform.rst @@ -208,7 +208,7 @@ Win95/98 specific ^^^^^^^^^^^^^^^^^ -.. function:: popen(cmd, mode='r', bufsize=None) +.. function:: popen(cmd, mode='r', bufsize=-1) Portable :func:`popen` interface. Find a working popen implementation preferring :func:`win32pipe.popen`. On Windows NT, :func:`win32pipe.popen` diff --git a/Lib/os.py b/Lib/os.py --- a/Lib/os.py +++ b/Lib/os.py @@ -779,11 +779,13 @@ return bs # Supply os.popen() -def popen(cmd, mode="r", buffering=None): +def popen(cmd, mode="r", buffering=-1): if not isinstance(cmd, str): raise TypeError("invalid cmd type (%s, expected string)" % type(cmd)) if mode not in ("r", "w"): raise ValueError("invalid mode %r" % mode) + if buffering == 0 or buffering == None: + raise ValueError("popen() does not support unbuffered streams") import subprocess, io if mode == "r": proc = subprocess.Popen(cmd, diff --git a/Lib/platform.py b/Lib/platform.py --- a/Lib/platform.py +++ b/Lib/platform.py @@ -357,7 +357,7 @@ supported_dists=supported_dists, full_distribution_name=0) -def popen(cmd, mode='r', bufsize=None): +def popen(cmd, mode='r', bufsize=-1): """ Portable popen() interface. """ diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -743,8 +743,6 @@ if errread != -1: errread = msvcrt.open_osfhandle(errread.Detach(), 0) - if bufsize == 0: - bufsize = 1 # Nearly unbuffered (XXX for now) if p2cwrite != -1: self.stdin = io.open(p2cwrite, 'wb', bufsize) if self.universal_newlines: diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -1315,6 +1315,22 @@ " non-zero with this error:\n%s" % stderr.decode('utf-8')) + def test_select_unbuffered(self): + # Issue #11459: bufsize=0 should really set the pipes as + # unbuffered (and therefore let select() work properly). + select = support.import_module("select") + p = subprocess.Popen([sys.executable, "-c", + 'import sys;' + 'sys.stdout.write("apple")'], + stdout=subprocess.PIPE, + bufsize=0) + f = p.stdout + try: + self.assertEqual(f.read(4), b"appl") + self.assertIn(f, select.select([f], [], [], 0.0)[0]) + finally: + p.wait() + @unittest.skipUnless(mswindows, "Windows specific tests") class Win32ProcessTestCase(BaseTestCase): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -75,6 +75,9 @@ Library ------- +- Issue #11459: A ``bufsize`` value of 0 in subprocess.Popen() really creates + unbuffered pipes, such that select() works properly on them. + - Issue #5421: Fix misleading error message when one of socket.sendto()'s arguments has the wrong type. Patch by Nikita Vetoshkin. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 19:08:12 2011 From: python-checkins at python.org (skip.montanaro) Date: Sat, 19 Mar 2011 19:08:12 +0100 Subject: [Python-checkins] cpython: *sigh* - i don't like this workflow at all Message-ID: http://hg.python.org/cpython/rev/145c3703ce48 changeset: 68685:145c3703ce48 user: Skip Montanaro date: Sat Mar 19 13:05:58 2011 -0500 summary: *sigh* - i don't like this workflow at all files: Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -418,101 +418,50 @@ The simplest example of reading a CSV file:: -<<<<<<< local - import csv - with f = open("some.csv", newline=''): - reader = csv.reader(f) - for row in reader: - print(row) -======= import csv with open('some.csv', newline='') as f: reader = csv.reader(f) for row in reader: print(row) ->>>>>>> other Reading a file with an alternate format:: -<<<<<<< local - import csv - with f = open("passwd"): - reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE) - for row in reader: - print(row) -======= import csv with open('passwd') as f: reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE) for row in reader: print(row) ->>>>>>> other The corresponding simplest possible writing example is:: -<<<<<<< local - import csv - with f = open("some.csv", "w"): - writer = csv.writer(f) - writer.writerows(someiterable) -======= import csv with open('some.csv', 'w') as f: writer = csv.writer(f) writer.writerows(someiterable) ->>>>>>> other Since :func:`open` is used to open a CSV file for reading, the file will by default be decoded into unicode using the system default encoding (see :func:`locale.getpreferredencoding`). To decode a file using a different encoding, use the ``encoding`` argument of open:: -<<<<<<< local - import csv - f = open("some.csv", newline='', encoding='utf-8'): - reader = csv.reader(f) - for row in reader: - print(row) -======= import csv with open('some.csv', newline='', encoding='utf-8') as f: reader = csv.reader(f) for row in reader: print(row) ->>>>>>> other The same applies to writing in something other than the system default encoding: specify the encoding argument when opening the output file. Registering a new dialect:: -<<<<<<< local - import csv - csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE) - with f = open("passwd"): - reader = csv.reader(f, 'unixpwd') - for row in reader: - pass -======= import csv csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE) with open('passwd') as f: reader = csv.reader(f, 'unixpwd') ->>>>>>> other A slightly more advanced use of the reader --- catching and reporting errors:: -<<<<<<< local - import csv, sys - filename = "some.csv" - with f = open(filename, newline=''): - reader = csv.reader(f) - try: - for row in reader: - print(row) - except csv.Error as e: - sys.exit('file {}, line {}: {}'.format(filename, reader.line_num, e)) -======= import csv, sys filename = 'some.csv' with open(filename, newline='') as f: @@ -522,7 +471,6 @@ print(row) except csv.Error as e: sys.exit('file {}, line {}: {}'.format(filename, reader.line_num, e)) ->>>>>>> other And while the module doesn't directly support parsing strings, it can easily be done:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 19:08:13 2011 From: python-checkins at python.org (skip.montanaro) Date: Sat, 19 Mar 2011 19:08:13 +0100 Subject: [Python-checkins] cpython: untab Message-ID: http://hg.python.org/cpython/rev/7dd31e80fed2 changeset: 68686:7dd31e80fed2 user: Skip Montanaro date: Sat Mar 19 13:07:10 2011 -0500 summary: untab files: Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -477,7 +477,7 @@ import csv for row in csv.reader(['one,two,three']): - print(row) + print(row) .. rubric:: Footnotes -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 19:54:05 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 19 Mar 2011 19:54:05 +0100 Subject: [Python-checkins] cpython: Skip crasher tests Message-ID: http://hg.python.org/cpython/rev/481ad9129a0f changeset: 68687:481ad9129a0f user: Antoine Pitrou date: Sat Mar 19 19:54:01 2011 +0100 summary: Skip crasher tests files: Lib/test/test_crashers.py diff --git a/Lib/test/test_crashers.py b/Lib/test/test_crashers.py --- a/Lib/test/test_crashers.py +++ b/Lib/test/test_crashers.py @@ -17,6 +17,7 @@ class CrasherTest(unittest.TestCase): + @unittest.skip("these tests are too fragile") @test.support.cpython_only def test_crashers_crash(self): for fname in glob.glob(CRASHER_FILES): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 22:34:30 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sat, 19 Mar 2011 22:34:30 +0100 Subject: [Python-checkins] cpython (3.2): Call unfakehttp in order to close connection while opening the connection Message-ID: http://hg.python.org/cpython/rev/5c83a375a23e changeset: 68688:5c83a375a23e branch: 3.2 parent: 68677:d84896ba7576 user: Senthil Kumaran date: Sun Mar 20 05:30:16 2011 +0800 summary: Call unfakehttp in order to close connection while opening the connection through a fakehttp object. Address issue11609 - urllib related buildbots failure. files: Lib/test/test_urllib.py diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -176,8 +176,11 @@ def test_willclose(self): self.fakehttp(b"HTTP/1.1 200 OK\r\n\r\nHello!") - resp = urlopen("http://www.python.org") - self.assertTrue(resp.fp.will_close) + try: + resp = urlopen("http://www.python.org") + self.assertTrue(resp.fp.will_close) + finally: + self.unfakehttp() def test_read_0_9(self): # "0.9" response accepted (but not "simple responses" without -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 22:34:31 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sat, 19 Mar 2011 22:34:31 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> 3.2): branch merge 3.2 Message-ID: http://hg.python.org/cpython/rev/6729a64c36d7 changeset: 68689:6729a64c36d7 branch: 3.2 parent: 68688:5c83a375a23e parent: 68680:7451da272111 user: Senthil Kumaran date: Sun Mar 20 05:33:09 2011 +0800 summary: branch merge 3.2 files: diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst --- a/Doc/library/platform.rst +++ b/Doc/library/platform.rst @@ -208,7 +208,7 @@ Win95/98 specific ^^^^^^^^^^^^^^^^^ -.. function:: popen(cmd, mode='r', bufsize=None) +.. function:: popen(cmd, mode='r', bufsize=-1) Portable :func:`popen` interface. Find a working popen implementation preferring :func:`win32pipe.popen`. On Windows NT, :func:`win32pipe.popen` diff --git a/Lib/os.py b/Lib/os.py --- a/Lib/os.py +++ b/Lib/os.py @@ -779,11 +779,13 @@ return bs # Supply os.popen() -def popen(cmd, mode="r", buffering=None): +def popen(cmd, mode="r", buffering=-1): if not isinstance(cmd, str): raise TypeError("invalid cmd type (%s, expected string)" % type(cmd)) if mode not in ("r", "w"): raise ValueError("invalid mode %r" % mode) + if buffering == 0 or buffering == None: + raise ValueError("popen() does not support unbuffered streams") import subprocess, io if mode == "r": proc = subprocess.Popen(cmd, diff --git a/Lib/platform.py b/Lib/platform.py --- a/Lib/platform.py +++ b/Lib/platform.py @@ -411,7 +411,7 @@ # Alias __del__ = close -def popen(cmd, mode='r', bufsize=None): +def popen(cmd, mode='r', bufsize=-1): """ Portable popen() interface. """ diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -711,8 +711,6 @@ if errread != -1: errread = msvcrt.open_osfhandle(errread.Detach(), 0) - if bufsize == 0: - bufsize = 1 # Nearly unbuffered (XXX for now) if p2cwrite != -1: self.stdin = io.open(p2cwrite, 'wb', bufsize) if self.universal_newlines: diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -1216,6 +1216,22 @@ " non-zero with this error:\n%s" % stderr.decode('utf8')) + def test_select_unbuffered(self): + # Issue #11459: bufsize=0 should really set the pipes as + # unbuffered (and therefore let select() work properly). + select = support.import_module("select") + p = subprocess.Popen([sys.executable, "-c", + 'import sys;' + 'sys.stdout.write("apple")'], + stdout=subprocess.PIPE, + bufsize=0) + f = p.stdout + try: + self.assertEqual(f.read(4), b"appl") + self.assertIn(f, select.select([f], [], [], 0.0)[0]) + finally: + p.wait() + @unittest.skipUnless(mswindows, "Windows specific tests") class Win32ProcessTestCase(BaseTestCase): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -43,6 +43,9 @@ Library ------- +- Issue #11459: A ``bufsize`` value of 0 in subprocess.Popen() really creates + unbuffered pipes, such that select() works properly on them. + - Issue #5421: Fix misleading error message when one of socket.sendto()'s arguments has the wrong type. Patch by Nikita Vetoshkin. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 23:10:12 2011 From: python-checkins at python.org (raymond.hettinger) Date: Sat, 19 Mar 2011 23:10:12 +0100 Subject: [Python-checkins] cpython (2.7): Minor doc clean-up. Message-ID: http://hg.python.org/cpython/rev/3a04bdda1ebf changeset: 68690:3a04bdda1ebf branch: 2.7 parent: 68672:94c158199277 user: Raymond Hettinger date: Sat Mar 19 15:09:00 2011 -0700 summary: Minor doc clean-up. * Show list of fields option before showing the single string alternative. * Remove the PS2 prompts so that the examples become cut-and-pastable. files: Doc/library/collections.rst diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -565,9 +565,9 @@ helpful docstring (with typename and field_names) and a helpful :meth:`__repr__` method which lists the tuple contents in a ``name=value`` format. - The *field_names* are a single string with each fieldname separated by whitespace - and/or commas, for example ``'x y'`` or ``'x, y'``. Alternatively, *field_names* - can be a sequence of strings such as ``['x', 'y']``. + The *field_names* are a sequence of strings such as ``['x', 'y']``. + Alternatively, *field_names* can be a single string with each fieldname + separated by whitespace and/or commas, for example ``'x y'`` or ``'x, y'``. Any valid Python identifier may be used for a fieldname except for names starting with an underscore. Valid identifiers consist of letters, digits, @@ -595,7 +595,7 @@ .. doctest:: :options: +NORMALIZE_WHITESPACE - >>> Point = namedtuple('Point', 'x y', verbose=True) + >>> Point = namedtuple('Point', ['x', 'y'], verbose=True) class Point(tuple): 'Point(x, y)' @@ -699,7 +699,7 @@ Point(x=33, y=22) >>> for partnum, record in inventory.items(): - ... inventory[partnum] = record._replace(price=newprices[partnum], timestamp=time.now()) + inventory[partnum] = record._replace(price=newprices[partnum], timestamp=time.now()) .. attribute:: somenamedtuple._fields @@ -734,15 +734,15 @@ a fixed-width print format: >>> class Point(namedtuple('Point', 'x y')): - ... __slots__ = () - ... @property - ... def hypot(self): - ... return (self.x ** 2 + self.y ** 2) ** 0.5 - ... def __str__(self): - ... return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot) + __slots__ = () + @property + def hypot(self): + return (self.x ** 2 + self.y ** 2) ** 0.5 + def __str__(self): + return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot) >>> for p in Point(3, 4), Point(14, 5/7.): - ... print p + print p Point: x= 3.000 y= 4.000 hypot= 5.000 Point: x=14.000 y= 0.714 hypot=14.018 @@ -768,7 +768,7 @@ >>> Status.open, Status.pending, Status.closed (0, 1, 2) >>> class Status: - ... open, pending, closed = range(3) + open, pending, closed = range(3) .. seealso:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 19 23:14:35 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sat, 19 Mar 2011 23:14:35 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): closes issue11609. buildbot related failures in the test_urllibnet. Message-ID: http://hg.python.org/cpython/rev/00459310b136 changeset: 68691:00459310b136 parent: 68687:481ad9129a0f parent: 68689:6729a64c36d7 user: Senthil Kumaran date: Sun Mar 20 06:13:36 2011 +0800 summary: closes issue11609. buildbot related failures in the test_urllibnet. files: Lib/test/test_urllib.py diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -176,8 +176,11 @@ def test_willclose(self): self.fakehttp(b"HTTP/1.1 200 OK\r\n\r\nHello!") - resp = urlopen("http://www.python.org") - self.assertTrue(resp.fp.will_close) + try: + resp = urlopen("http://www.python.org") + self.assertTrue(resp.fp.will_close) + finally: + self.unfakehttp() def test_read_0_9(self): # "0.9" response accepted (but not "simple responses" without -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 00:25:41 2011 From: python-checkins at python.org (guido.van.rossum) Date: Sun, 20 Mar 2011 00:25:41 +0100 Subject: [Python-checkins] cpython (2.5): Test commit. Add 2011 to copyright line. Message-ID: http://hg.python.org/cpython/rev/3074c77b7121 changeset: 68692:3074c77b7121 branch: 2.5 parent: 68640:e9724d7abbc2 user: Guido van Rossum date: Sat Mar 19 16:14:44 2011 -0700 summary: Test commit. Add 2011 to copyright line. files: README diff --git a/README b/README --- a/README +++ b/README @@ -1,9 +1,7 @@ This is Python version 2.5.5 ============================ -Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Python Software -Foundation. -All rights reserved. +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Python Software Foundation. All rights reserved. Copyright (c) 2000 BeOpen.com. All rights reserved. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 00:25:42 2011 From: python-checkins at python.org (guido.van.rossum) Date: Sun, 20 Mar 2011 00:25:42 +0100 Subject: [Python-checkins] cpython (merge 2.5 -> 2.6): Test commit. Add 2011 to copyright line (merge from 2.5). Message-ID: http://hg.python.org/cpython/rev/cf5e4bdb24a1 changeset: 68693:cf5e4bdb24a1 branch: 2.6 parent: 68641:8cdb95cf096e parent: 68692:3074c77b7121 user: Guido van Rossum date: Sat Mar 19 16:17:14 2011 -0700 summary: Test commit. Add 2011 to copyright line (merge from 2.5). files: README diff --git a/README b/README --- a/README +++ b/README @@ -1,9 +1,7 @@ This is Python version 2.6.6 ============================ -Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 -Python Software Foundation. -All rights reserved. +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Python Software Foundation. All rights reserved. Copyright (c) 2000 BeOpen.com. All rights reserved. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 00:25:43 2011 From: python-checkins at python.org (guido.van.rossum) Date: Sun, 20 Mar 2011 00:25:43 +0100 Subject: [Python-checkins] cpython (merge 2.6 -> 2.7): Test commit. Add 2011 to copyright line (merge from 2.6). Message-ID: http://hg.python.org/cpython/rev/89007356798b changeset: 68694:89007356798b branch: 2.7 parent: 68690:3a04bdda1ebf parent: 68693:cf5e4bdb24a1 user: Guido van Rossum date: Sat Mar 19 16:18:02 2011 -0700 summary: Test commit. Add 2011 to copyright line (merge from 2.6). files: README diff --git a/README b/README --- a/README +++ b/README @@ -1,9 +1,7 @@ This is Python version 2.7.1 ============================ -Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 -Python Software Foundation. -All rights reserved. +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Python Software Foundation. All rights reserved. Copyright (c) 2000 BeOpen.com. All rights reserved. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 00:25:50 2011 From: python-checkins at python.org (guido.van.rossum) Date: Sun, 20 Mar 2011 00:25:50 +0100 Subject: [Python-checkins] cpython (2.5): Whoops. The copyright should be two lines. Message-ID: http://hg.python.org/cpython/rev/cc959f114739 changeset: 68695:cc959f114739 branch: 2.5 parent: 68692:3074c77b7121 user: Guido van Rossum date: Sat Mar 19 16:20:06 2011 -0700 summary: Whoops. The copyright should be two lines. files: README diff --git a/README b/README --- a/README +++ b/README @@ -1,7 +1,8 @@ This is Python version 2.5.5 ============================ -Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Python Software Foundation. All rights reserved. +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 +Python Software Foundation. All rights reserved. Copyright (c) 2000 BeOpen.com. All rights reserved. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 00:25:51 2011 From: python-checkins at python.org (guido.van.rossum) Date: Sun, 20 Mar 2011 00:25:51 +0100 Subject: [Python-checkins] cpython (merge 2.5 -> 2.6): Whoops. The copyright should be two lines (merge from 2.5). Message-ID: http://hg.python.org/cpython/rev/69650b81f4b9 changeset: 68696:69650b81f4b9 branch: 2.6 parent: 68693:cf5e4bdb24a1 parent: 68695:cc959f114739 user: Guido van Rossum date: Sat Mar 19 16:20:39 2011 -0700 summary: Whoops. The copyright should be two lines (merge from 2.5). files: README diff --git a/README b/README --- a/README +++ b/README @@ -1,7 +1,8 @@ This is Python version 2.6.6 ============================ -Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Python Software Foundation. All rights reserved. +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 +Python Software Foundation. All rights reserved. Copyright (c) 2000 BeOpen.com. All rights reserved. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 00:25:52 2011 From: python-checkins at python.org (guido.van.rossum) Date: Sun, 20 Mar 2011 00:25:52 +0100 Subject: [Python-checkins] cpython (merge 2.6 -> 2.7): Merge from 2.6. Message-ID: http://hg.python.org/cpython/rev/5ae4f3bbaebe changeset: 68697:5ae4f3bbaebe branch: 2.7 parent: 68694:89007356798b parent: 68696:69650b81f4b9 user: Guido van Rossum date: Sat Mar 19 16:23:18 2011 -0700 summary: Merge from 2.6. files: README diff --git a/README b/README --- a/README +++ b/README @@ -1,7 +1,8 @@ This is Python version 2.7.1 ============================ -Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Python Software Foundation. All rights reserved. +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 +Python Software Foundation. All rights reserved. Copyright (c) 2000 BeOpen.com. All rights reserved. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 00:42:07 2011 From: python-checkins at python.org (local-hg) Date: Sun, 20 Mar 2011 00:42:07 +0100 Subject: [Python-checkins] hooks: Do not try to launch builds for branches 2.5 and 2.6 Message-ID: http://hg.python.org/hooks/rev/64b88122c8d9 changeset: 65:64b88122c8d9 user: Antoine Pitrou date: Sun Mar 20 00:42:07 2011 +0100 summary: Do not try to launch builds for branches 2.5 and 2.6 files: hgbuildbot.py diff --git a/hgbuildbot.py b/hgbuildbot.py --- a/hgbuildbot.py +++ b/hgbuildbot.py @@ -84,6 +84,9 @@ manifest, user, (time, timezone), files, desc, extra = repo.changelog.read(node) parents = [p for p in repo.changelog.parents(node) if p != nullid] branch = extra['branch'] + if branch in ['2.5', '2.6']: + # No buildbot category for these branches + continue if len(parents) > 1: # Explicitly compare current with its first parent (otherwise # some files might be "forgotten" if they are copied as-is from the -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Sun Mar 20 02:27:37 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sun, 20 Mar 2011 02:27:37 +0100 Subject: [Python-checkins] cpython (3.2): Add NEWS for Issue #11563. Message-ID: http://hg.python.org/cpython/rev/53c8f2bd0316 changeset: 68698:53c8f2bd0316 branch: 3.2 parent: 68689:6729a64c36d7 user: Senthil Kumaran date: Sun Mar 20 09:26:57 2011 +0800 summary: Add NEWS for Issue #11563. files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -43,6 +43,10 @@ Library ------- +- Issue #11563: Connection:close header is sent by requests using URLOpener + class which helps in closing of sockets after connection is over. Patch + contributions by Jeff McNeil and Nadeem Vawda. + - Issue #11459: A ``bufsize`` value of 0 in subprocess.Popen() really creates unbuffered pipes, such that select() works properly on them. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 02:27:39 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sun, 20 Mar 2011 02:27:39 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge NEWS entry edit. Message-ID: http://hg.python.org/cpython/rev/1a3eca36cecd changeset: 68699:1a3eca36cecd parent: 68691:00459310b136 parent: 68698:53c8f2bd0316 user: Senthil Kumaran date: Sun Mar 20 09:27:25 2011 +0800 summary: Merge NEWS entry edit. files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -75,6 +75,10 @@ Library ------- +- Issue #11563: Connection:close header is sent by requests using URLOpener + class which helps in closing of sockets after connection is over. Patch + contributions by Jeff McNeil and Nadeem Vawda. + - Issue #11459: A ``bufsize`` value of 0 in subprocess.Popen() really creates unbuffered pipes, such that select() works properly on them. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 03:33:11 2011 From: python-checkins at python.org (brian.quinlan) Date: Sun, 20 Mar 2011 03:33:11 +0100 Subject: [Python-checkins] cpython: Use WeakSets rather than manual pruning to prevent unbounded growth of dead Message-ID: http://hg.python.org/cpython/rev/a3b061697b18 changeset: 68700:a3b061697b18 parent: 68691:00459310b136 user: Brian Quinlan date: Sun Mar 20 13:11:11 2011 +1100 summary: Use WeakSets rather than manual pruning to prevent unbounded growth of dead thread references. files: Lib/concurrent/futures/process.py Lib/concurrent/futures/thread.py diff --git a/Lib/concurrent/futures/process.py b/Lib/concurrent/futures/process.py --- a/Lib/concurrent/futures/process.py +++ b/Lib/concurrent/futures/process.py @@ -66,28 +66,14 @@ # workers to exit when their work queues are empty and then waits until the # threads/processes finish. -_thread_references = set() +_live_threads = weakref.WeakSet() _shutdown = False def _python_exit(): global _shutdown _shutdown = True - for thread_reference in _thread_references: - thread = thread_reference() - if thread is not None: - thread.join() - -def _remove_dead_thread_references(): - """Remove inactive threads from _thread_references. - - Should be called periodically to prevent memory leaks in scenarios such as: - >>> while True: - >>> ... t = ThreadPoolExecutor(max_workers=5) - >>> ... t.map(int, ['1', '2', '3', '4', '5']) - """ - for thread_reference in set(_thread_references): - if thread_reference() is None: - _thread_references.discard(thread_reference) + for thread in _live_threads: + thread.join() # Controls how many more calls than processes will be queued in the call queue. # A smaller number will mean that processes spend more time idle waiting for @@ -279,7 +265,6 @@ worker processes will be created as the machine has processors. """ _check_system_limits() - _remove_dead_thread_references() if max_workers is None: self._max_workers = multiprocessing.cpu_count() @@ -316,7 +301,7 @@ self._shutdown_process_event)) self._queue_management_thread.daemon = True self._queue_management_thread.start() - _thread_references.add(weakref.ref(self._queue_management_thread)) + _live_threads.add(self._queue_management_thread) def _adjust_process_count(self): for _ in range(len(self._processes), self._max_workers): diff --git a/Lib/concurrent/futures/thread.py b/Lib/concurrent/futures/thread.py --- a/Lib/concurrent/futures/thread.py +++ b/Lib/concurrent/futures/thread.py @@ -25,29 +25,14 @@ # workers to exit when their work queues are empty and then waits until the # threads finish. -_thread_references = set() +_live_threads = weakref.WeakSet() _shutdown = False def _python_exit(): global _shutdown _shutdown = True - for thread_reference in _thread_references: - thread = thread_reference() - if thread is not None: - thread.join() - -def _remove_dead_thread_references(): - """Remove inactive threads from _thread_references. - - Should be called periodically to prevent memory leaks in scenarios such as: - >>> while True: - ... t = ThreadPoolExecutor(max_workers=5) - ... t.map(int, ['1', '2', '3', '4', '5']) - """ - for thread_reference in set(_thread_references): - if thread_reference() is None: - _thread_references.discard(thread_reference) - + for thread in _live_threads: + thread.join() atexit.register(_python_exit) class _WorkItem(object): @@ -95,8 +80,6 @@ max_workers: The maximum number of threads that can be used to execute the given calls. """ - _remove_dead_thread_references() - self._max_workers = max_workers self._work_queue = queue.Queue() self._threads = set() @@ -125,7 +108,7 @@ t.daemon = True t.start() self._threads.add(t) - _thread_references.add(weakref.ref(t)) + _live_threads.add(t) def shutdown(self, wait=True): with self._shutdown_lock: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 03:33:11 2011 From: python-checkins at python.org (brian.quinlan) Date: Sun, 20 Mar 2011 03:33:11 +0100 Subject: [Python-checkins] cpython (merge default -> default): Branch merge Message-ID: http://hg.python.org/cpython/rev/1171d48fc9af changeset: 68701:1171d48fc9af parent: 68700:a3b061697b18 parent: 68699:1a3eca36cecd user: Brian Quinlan date: Sun Mar 20 13:29:57 2011 +1100 summary: Branch merge files: diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -75,6 +75,10 @@ Library ------- +- Issue #11563: Connection:close header is sent by requests using URLOpener + class which helps in closing of sockets after connection is over. Patch + contributions by Jeff McNeil and Nadeem Vawda. + - Issue #11459: A ``bufsize`` value of 0 in subprocess.Popen() really creates unbuffered pipes, such that select() works properly on them. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 03:36:47 2011 From: python-checkins at python.org (r.david.murray) Date: Sun, 20 Mar 2011 03:36:47 +0100 Subject: [Python-checkins] cpython: #7198: add newlines='' to csv.writer docs. Message-ID: http://hg.python.org/cpython/rev/ab27f16f707a changeset: 68702:ab27f16f707a user: R David Murray date: Sat Mar 19 22:30:14 2011 -0400 summary: #7198: add newlines='' to csv.writer docs. files: Doc/library/csv.rst Tools/demo/README diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -52,7 +52,7 @@ *csvfile* can be any object which supports the :term:`iterator` protocol and returns a string each time its :meth:`!__next__` method is called --- :term:`file objects ` and list objects are both suitable. If *csvfile* is a file object, - it should be opened with ``newline=''``. [#]_ An optional + it should be opened with ``newline=''``. [1]_ An optional *dialect* parameter can be given which is used to define a set of parameters specific to a particular CSV dialect. It may be an instance of a subclass of the :class:`Dialect` class or one of the strings returned by the @@ -79,7 +79,8 @@ Return a writer object responsible for converting the user's data into delimited strings on the given file-like object. *csvfile* can be any object with a - :func:`write` method. An optional *dialect* + :func:`write` method. If csvfile is a file object, it should be opened with + newline='' [1]_. An optional *dialect* parameter can be given which is used to define a set of parameters specific to a particular CSV dialect. It may be an instance of a subclass of the :class:`Dialect` class or one of the strings returned by the @@ -96,7 +97,7 @@ A short usage example:: >>> import csv - >>> spamWriter = csv.writer(open('eggs.csv', 'w'), delimiter=' ', + >>> spamWriter = csv.writer(open('eggs.csv', 'w', newline=''), delimiter=' ', ... quotechar='|', quoting=csv.QUOTE_MINIMAL) >>> spamWriter.writerow(['Spam'] * 5 + ['Baked Beans']) >>> spamWriter.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam']) @@ -427,7 +428,7 @@ Reading a file with an alternate format:: import csv - with open('passwd') as f: + with open('passwd', newline='') as f: reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE) for row in reader: print(row) @@ -435,7 +436,7 @@ The corresponding simplest possible writing example is:: import csv - with open('some.csv', 'w') as f: + with open('some.csv', 'w', newline='') as f: writer = csv.writer(f) writer.writerows(someiterable) @@ -457,7 +458,7 @@ import csv csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE) - with open('passwd') as f: + with open('passwd', newline='') as f: reader = csv.reader(f, 'unixpwd') A slightly more advanced use of the reader --- catching and reporting errors:: @@ -482,7 +483,7 @@ .. rubric:: Footnotes -.. [#] If ``newline=''`` is not specified, newlines embedded inside quoted fields - will not be interpreted correctly. It should always be safe to specify - ``newline=''``, since the csv module does its own universal newline handling - on input. +.. [1] If ``newline=''`` is not specified, newlines embedded inside quoted fields + will not be interpreted correctly, and on platforms that use ``\r\n`` linendings + on write an extra `\\r` will be added. It should always be safe to specify + ``newline=''``, since the csv module does its own (universal) newline handling. diff --git a/Tools/demo/README b/Tools/demo/README deleted file mode 100644 --- a/Tools/demo/README +++ /dev/null @@ -1,16 +0,0 @@ -This directory contains a collection of demonstration scripts for -various aspects of Python programming. - -beer.py Well-known programming example: Bottles of beer. -eiffel.py Python advanced magic: A metaclass for Eiffel post/preconditions. -hanoi.py Well-known programming example: Towers of Hanoi. -life.py Curses programming: Simple game-of-life. -markov.py Algorithms: Markov chain simulation. -mcast.py Network programming: Send and receive UDP multicast packets. -queens.py Well-known programming example: N-Queens problem. -redemo.py Regular Expressions: GUI script to test regexes. -rpython.py Network programming: Small client for remote code execution. -rpythond.py Network programming: Small server for remote code execution. -sortvisu.py GUI programming: Visualization of different sort algorithms. -ss1.py GUI/Application programming: A simple spreadsheet application. -vector.py Python basics: A vector class with demonstrating special methods. \ No newline at end of file -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 03:36:48 2011 From: python-checkins at python.org (r.david.murray) Date: Sun, 20 Mar 2011 03:36:48 +0100 Subject: [Python-checkins] cpython: Merge #7198 doc fix. Message-ID: http://hg.python.org/cpython/rev/959f666470cc changeset: 68703:959f666470cc user: R David Murray date: Sat Mar 19 22:31:10 2011 -0400 summary: Merge #7198 doc fix. files: Tools/demo/README diff --git a/Tools/demo/README b/Tools/demo/README new file mode 100644 --- /dev/null +++ b/Tools/demo/README @@ -0,0 +1,16 @@ +This directory contains a collection of demonstration scripts for +various aspects of Python programming. + +beer.py Well-known programming example: Bottles of beer. +eiffel.py Python advanced magic: A metaclass for Eiffel post/preconditions. +hanoi.py Well-known programming example: Towers of Hanoi. +life.py Curses programming: Simple game-of-life. +markov.py Algorithms: Markov chain simulation. +mcast.py Network programming: Send and receive UDP multicast packets. +queens.py Well-known programming example: N-Queens problem. +redemo.py Regular Expressions: GUI script to test regexes. +rpython.py Network programming: Small client for remote code execution. +rpythond.py Network programming: Small server for remote code execution. +sortvisu.py GUI programming: Visualization of different sort algorithms. +ss1.py GUI/Application programming: A simple spreadsheet application. +vector.py Python basics: A vector class with demonstrating special methods. \ No newline at end of file -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 03:36:50 2011 From: python-checkins at python.org (r.david.murray) Date: Sun, 20 Mar 2011 03:36:50 +0100 Subject: [Python-checkins] cpython: Merge #7198 doc fix. Message-ID: http://hg.python.org/cpython/rev/9d1b1a95bc8f changeset: 68704:9d1b1a95bc8f user: R David Murray date: Sat Mar 19 22:32:39 2011 -0400 summary: Merge #7198 doc fix. files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 03:45:56 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sun, 20 Mar 2011 03:45:56 +0100 Subject: [Python-checkins] cpython (3.1): Issue #11567 - Let's have the DOCTYPE as HTML instead of XHTML. Message-ID: http://hg.python.org/cpython/rev/135a0d7bc4db changeset: 68705:135a0d7bc4db branch: 3.1 parent: 68679:1dc52ecb8949 user: Senthil Kumaran date: Sun Mar 20 10:44:30 2011 +0800 summary: Issue #11567 - Let's have the DOCTYPE as HTML instead of XHTML. files: Lib/http/server.py diff --git a/Lib/http/server.py b/Lib/http/server.py --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -103,11 +103,10 @@ # Default error message template DEFAULT_ERROR_MESSAGE = """\ - - + - + Error response -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 03:45:57 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sun, 20 Mar 2011 03:45:57 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge from 3.1 Message-ID: http://hg.python.org/cpython/rev/ff3b462fbfc4 changeset: 68706:ff3b462fbfc4 branch: 3.2 parent: 68698:53c8f2bd0316 parent: 68705:135a0d7bc4db user: Senthil Kumaran date: Sun Mar 20 10:45:10 2011 +0800 summary: Merge from 3.1 files: Lib/http/server.py diff --git a/Lib/http/server.py b/Lib/http/server.py --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -103,11 +103,10 @@ # Default error message template DEFAULT_ERROR_MESSAGE = """\ - - + - + Error response -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 03:45:58 2011 From: python-checkins at python.org (senthil.kumaran) Date: Sun, 20 Mar 2011 03:45:58 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge from 3.2 Message-ID: http://hg.python.org/cpython/rev/1e2b35af7a87 changeset: 68707:1e2b35af7a87 parent: 68704:9d1b1a95bc8f parent: 68706:ff3b462fbfc4 user: Senthil Kumaran date: Sun Mar 20 10:45:41 2011 +0800 summary: merge from 3.2 files: Lib/http/server.py diff --git a/Lib/http/server.py b/Lib/http/server.py --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -103,11 +103,10 @@ # Default error message template DEFAULT_ERROR_MESSAGE = """\ - - + - + Error response -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:15 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:15 +0100 Subject: [Python-checkins] cpython: import.c: replace tab by spaces Message-ID: http://hg.python.org/cpython/rev/a9d6c7e15456 changeset: 68708:a9d6c7e15456 user: Victor Stinner date: Mon Mar 07 16:57:48 2011 +0100 summary: import.c: replace tab by spaces files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -329,7 +329,7 @@ /* Forked as a side effect of import */ long me = PyThread_get_thread_ident(); PyThread_acquire_lock(import_lock, 0); - /* XXX: can the previous line fail? */ + /* XXX: can the previous line fail? */ import_lock_thread = me; import_lock_level--; } else { -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:15 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:15 +0100 Subject: [Python-checkins] cpython: Issue #3080: zipimport has a full unicode suppport Message-ID: http://hg.python.org/cpython/rev/6c80ac44ae9c changeset: 68709:6c80ac44ae9c user: Victor Stinner date: Mon Mar 14 20:46:50 2011 -0400 summary: Issue #3080: zipimport has a full unicode suppport - Use Unicode for module paths and names, self->archive and self->prefix - Format module names and paths use %R instead of '%U' to escape surrogate characters (PEP 383) - Use PyImport_ExecCodeModuleObject() instead of PyImport_ExecCodeModuleEx() - Use PyImport_AddModuleObject() instead of PyImport_AddModule() files: Modules/zipimport.c diff --git a/Modules/zipimport.c b/Modules/zipimport.c --- a/Modules/zipimport.c +++ b/Modules/zipimport.c @@ -49,7 +49,7 @@ /* forward decls */ static PyObject *read_directory(PyObject *archive); static PyObject *get_data(PyObject *archive, PyObject *toc_entry); -static PyObject *get_module_code(ZipImporter *self, char *fullname, +static PyObject *get_module_code(ZipImporter *self, PyObject *fullname, int *p_ispackage, PyObject **p_modpath); @@ -202,49 +202,50 @@ } /* return fullname.split(".")[-1] */ -static char * -get_subname(char *fullname) +static PyObject * +get_subname(PyObject *fullname) { - char *subname = strrchr(fullname, '.'); - if (subname == NULL) - subname = fullname; - else + Py_ssize_t len; + Py_UNICODE *subname; + subname = Py_UNICODE_strrchr(PyUnicode_AS_UNICODE(fullname), '.'); + if (subname == NULL) { + Py_INCREF(fullname); + return fullname; + } else { subname++; - return subname; + len = PyUnicode_GET_SIZE(fullname); + len -= subname - PyUnicode_AS_UNICODE(fullname); + return PyUnicode_FromUnicode(subname, len); + } } /* Given a (sub)modulename, write the potential file path in the archive (without extension) to the path buffer. Return the - length of the resulting string. */ -static int -make_filename(PyObject *prefix_obj, char *name, char *path, size_t pathsize) + length of the resulting string. + + return self.prefix + name.replace('.', os.sep) */ +static PyObject* +make_filename(PyObject *prefix, PyObject *name) { - size_t len; - char *p; - PyObject *prefix; + PyObject *pathobj; + Py_UNICODE *p; - prefix = PyUnicode_EncodeFSDefault(prefix_obj); - if (prefix == NULL) - return -1; - len = PyBytes_GET_SIZE(prefix); + pathobj = PyUnicode_FromUnicode(NULL, + PyUnicode_GET_SIZE(prefix) + + PyUnicode_GET_SIZE(name)); + if (pathobj == NULL) + return NULL; - /* self.prefix + name [+ SEP + "__init__"] + ".py[co]" */ - if (len + strlen(name) + 13 >= pathsize - 1) { - PyErr_SetString(ZipImportError, "path too long"); - Py_DECREF(prefix); - return -1; - } + p = PyUnicode_AS_UNICODE(pathobj); - strcpy(path, PyBytes_AS_STRING(prefix)); - Py_DECREF(prefix); - strcpy(path + len, name); - for (p = path + len; *p; p++) { + Py_UNICODE_strcpy(p, PyUnicode_AS_UNICODE(prefix)); + p += PyUnicode_GET_SIZE(prefix); + Py_UNICODE_strcpy(p, PyUnicode_AS_UNICODE(name)); + for (; *p; p++) { if (*p == '.') *p = SEP; } - len += strlen(name); - assert(len < INT_MAX); - return (int)len; + return pathobj; } enum zi_module_info { @@ -256,27 +257,38 @@ /* Return some information about a module. */ static enum zi_module_info -get_module_info(ZipImporter *self, char *fullname) +get_module_info(ZipImporter *self, PyObject *fullname) { - char *subname, path[MAXPATHLEN + 1]; - int len; + PyObject *subname; + PyObject *path, *fullpath, *item; struct st_zip_searchorder *zso; subname = get_subname(fullname); + if (subname == NULL) + return MI_ERROR; - len = make_filename(self->prefix, subname, path, sizeof(path)); - if (len < 0) + path = make_filename(self->prefix, subname); + Py_DECREF(subname); + if (path == NULL) return MI_ERROR; for (zso = zip_searchorder; *zso->suffix; zso++) { - strcpy(path + len, zso->suffix); - if (PyDict_GetItemString(self->files, path) != NULL) { + fullpath = PyUnicode_FromFormat("%U%s", path, zso->suffix); + if (fullpath == NULL) { + Py_DECREF(path); + return MI_ERROR; + } + item = PyDict_GetItem(self->files, fullpath); + Py_DECREF(fullpath); + if (item != NULL) { + Py_DECREF(path); if (zso->type & IS_PACKAGE) return MI_PACKAGE; else return MI_MODULE; } } + Py_DECREF(path); return MI_NOT_FOUND; } @@ -287,10 +299,10 @@ { ZipImporter *self = (ZipImporter *)obj; PyObject *path = NULL; - char *fullname; + PyObject *fullname; enum zi_module_info mi; - if (!PyArg_ParseTuple(args, "s|O:zipimporter.find_module", + if (!PyArg_ParseTuple(args, "U|O:zipimporter.find_module", &fullname, &path)) return NULL; @@ -311,11 +323,11 @@ { ZipImporter *self = (ZipImporter *)obj; PyObject *code = NULL, *mod, *dict; - char *fullname; - PyObject *modpath = NULL, *modpath_bytes; + PyObject *fullname; + PyObject *modpath = NULL; int ispackage; - if (!PyArg_ParseTuple(args, "s:zipimporter.load_module", + if (!PyArg_ParseTuple(args, "U:zipimporter.load_module", &fullname)) return NULL; @@ -323,7 +335,7 @@ if (code == NULL) goto error; - mod = PyImport_AddModule(fullname); + mod = PyImport_AddModuleObject(fullname); if (mod == NULL) goto error; dict = PyModule_GetDict(mod); @@ -336,17 +348,17 @@ /* add __path__ to the module *before* the code gets executed */ PyObject *pkgpath, *fullpath; - char *subname = get_subname(fullname); + PyObject *subname = get_subname(fullname); int err; - fullpath = PyUnicode_FromFormat("%U%c%U%s", + fullpath = PyUnicode_FromFormat("%U%c%U%U", self->archive, SEP, self->prefix, subname); + Py_DECREF(subname); if (fullpath == NULL) goto error; - pkgpath = Py_BuildValue("[O]", fullpath); - Py_DECREF(fullpath); + pkgpath = Py_BuildValue("[N]", fullpath); if (pkgpath == NULL) goto error; err = PyDict_SetItemString(dict, "__path__", pkgpath); @@ -354,18 +366,13 @@ if (err != 0) goto error; } - modpath_bytes = PyUnicode_EncodeFSDefault(modpath); - if (modpath_bytes == NULL) - goto error; - mod = PyImport_ExecCodeModuleEx(fullname, code, - PyBytes_AS_STRING(modpath_bytes)); - Py_DECREF(modpath_bytes); + mod = PyImport_ExecCodeModuleObject(fullname, code, modpath, NULL); Py_CLEAR(code); if (mod == NULL) goto error; if (Py_VerboseFlag) - PySys_FormatStderr("import %s # loaded from Zip %U\n", + PySys_FormatStderr("import %U # loaded from Zip %U\n", fullname, modpath); Py_DECREF(modpath); return mod; @@ -380,12 +387,10 @@ zipimporter_get_filename(PyObject *obj, PyObject *args) { ZipImporter *self = (ZipImporter *)obj; - PyObject *code; - char *fullname; - PyObject *modpath; + PyObject *fullname, *code, *modpath; int ispackage; - if (!PyArg_ParseTuple(args, "s:zipimporter.get_filename", + if (!PyArg_ParseTuple(args, "U:zipimporter.get_filename", &fullname)) return NULL; @@ -404,10 +409,10 @@ zipimporter_is_package(PyObject *obj, PyObject *args) { ZipImporter *self = (ZipImporter *)obj; - char *fullname; + PyObject *fullname; enum zi_module_info mi; - if (!PyArg_ParseTuple(args, "s:zipimporter.is_package", + if (!PyArg_ParseTuple(args, "U:zipimporter.is_package", &fullname)) return NULL; @@ -415,7 +420,7 @@ if (mi == MI_ERROR) return NULL; if (mi == MI_NOT_FOUND) { - PyErr_Format(ZipImportError, "can't find module '%s'", fullname); + PyErr_Format(ZipImportError, "can't find module %R", fullname); return NULL; } return PyBool_FromLong(mi == MI_PACKAGE); @@ -477,9 +482,9 @@ zipimporter_get_code(PyObject *obj, PyObject *args) { ZipImporter *self = (ZipImporter *)obj; - char *fullname; + PyObject *fullname; - if (!PyArg_ParseTuple(args, "s:zipimporter.get_code", &fullname)) + if (!PyArg_ParseTuple(args, "U:zipimporter.get_code", &fullname)) return NULL; return get_module_code(self, fullname, NULL, NULL); @@ -490,34 +495,39 @@ { ZipImporter *self = (ZipImporter *)obj; PyObject *toc_entry; - char *fullname, *subname, path[MAXPATHLEN+1]; - int len; + PyObject *fullname, *subname, *path, *fullpath; enum zi_module_info mi; - if (!PyArg_ParseTuple(args, "s:zipimporter.get_source", &fullname)) + if (!PyArg_ParseTuple(args, "U:zipimporter.get_source", &fullname)) return NULL; mi = get_module_info(self, fullname); if (mi == MI_ERROR) return NULL; if (mi == MI_NOT_FOUND) { - PyErr_Format(ZipImportError, "can't find module '%s'", fullname); + PyErr_Format(ZipImportError, "can't find module %R", fullname); return NULL; } + subname = get_subname(fullname); - - len = make_filename(self->prefix, subname, path, sizeof(path)); - if (len < 0) + if (subname == NULL) return NULL; - if (mi == MI_PACKAGE) { - path[len] = SEP; - strcpy(path + len + 1, "__init__.py"); - } + path = make_filename(self->prefix, subname); + Py_DECREF(subname); + if (path == NULL) + return NULL; + + if (mi == MI_PACKAGE) + fullpath = PyUnicode_FromFormat("%U%c__init__.py", path, SEP); else - strcpy(path + len, ".py"); + fullpath = PyUnicode_FromFormat("%U.py", path); + Py_DECREF(path); + if (fullpath == NULL) + return NULL; - toc_entry = PyDict_GetItemString(self->files, path); + toc_entry = PyDict_GetItem(self->files, fullpath); + Py_DECREF(fullpath); if (toc_entry != NULL) { PyObject *res, *bytes; bytes = get_data(self->archive, toc_entry); @@ -708,9 +718,8 @@ data_size and file_offset are 0. */ static PyObject * -read_directory(PyObject *archive_obj) +read_directory(PyObject *archive) { - /* FIXME: work on Py_UNICODE* instead of char* */ PyObject *files = NULL; FILE *fp; unsigned short flags; @@ -727,29 +736,29 @@ const char *charset; int bootstrap; - if (PyUnicode_GET_SIZE(archive_obj) > MAXPATHLEN) { + if (PyUnicode_GET_SIZE(archive) > MAXPATHLEN) { PyErr_SetString(PyExc_OverflowError, "Zip path name is too long"); return NULL; } - Py_UNICODE_strcpy(path, PyUnicode_AS_UNICODE(archive_obj)); + Py_UNICODE_strcpy(path, PyUnicode_AS_UNICODE(archive)); - fp = _Py_fopen(archive_obj, "rb"); + fp = _Py_fopen(archive, "rb"); if (fp == NULL) { - PyErr_Format(ZipImportError, "can't open Zip file: '%U'", archive_obj); + PyErr_Format(ZipImportError, "can't open Zip file: %R", archive); return NULL; } fseek(fp, -22, SEEK_END); header_position = ftell(fp); if (fread(endof_central_dir, 1, 22, fp) != 22) { fclose(fp); - PyErr_Format(ZipImportError, "can't read Zip file: '%U'", archive_obj); + PyErr_Format(ZipImportError, "can't read Zip file: %R", archive); return NULL; } if (get_long((unsigned char *)endof_central_dir) != 0x06054B50) { /* Bad: End of Central Dir signature */ fclose(fp); - PyErr_Format(ZipImportError, "not a Zip file: '%U'", archive_obj); + PyErr_Format(ZipImportError, "not a Zip file: %R", archive); return NULL; } @@ -826,7 +835,9 @@ PY_MAJOR_VERSION, PY_MINOR_VERSION); goto error; } - Py_UNICODE_strncpy(path + length + 1, PyUnicode_AS_UNICODE(nameobj), MAXPATHLEN - length - 1); + Py_UNICODE_strncpy(path + length + 1, + PyUnicode_AS_UNICODE(nameobj), + MAXPATHLEN - length - 1); pathobj = PyUnicode_FromUnicode(path, Py_UNICODE_strlen(path)); if (pathobj == NULL) @@ -844,8 +855,8 @@ } fclose(fp); if (Py_VerboseFlag) - PySys_FormatStderr("# zipimport: found %ld names in %U\n", - count, archive_obj); + PySys_FormatStderr("# zipimport: found %ld names in %R\n", + count, archive); return files; error: fclose(fp); @@ -999,7 +1010,7 @@ to .py if available and we don't want to mask other errors). Returns a new reference. */ static PyObject * -unmarshal_code(char *pathname, PyObject *data, time_t mtime) +unmarshal_code(PyObject *pathname, PyObject *data, time_t mtime) { PyObject *code; char *buf = PyBytes_AsString(data); @@ -1013,8 +1024,8 @@ if (get_long((unsigned char *)buf) != PyImport_GetMagicNumber()) { if (Py_VerboseFlag) - PySys_WriteStderr("# %s has bad magic\n", - pathname); + PySys_FormatStderr("# %R has bad magic\n", + pathname); Py_INCREF(Py_None); return Py_None; /* signal caller to try alternative */ } @@ -1022,8 +1033,8 @@ if (mtime != 0 && !eq_mtime(get_long((unsigned char *)buf + 4), mtime)) { if (Py_VerboseFlag) - PySys_WriteStderr("# %s has bad mtime\n", - pathname); + PySys_FormatStderr("# %R has bad mtime\n", + pathname); Py_INCREF(Py_None); return Py_None; /* signal caller to try alternative */ } @@ -1034,7 +1045,7 @@ if (!PyCode_Check(code)) { Py_DECREF(code); PyErr_Format(PyExc_TypeError, - "compiled module %s is not a code object", + "compiled module %R is not a code object", pathname); return NULL; } @@ -1048,11 +1059,12 @@ static PyObject * normalize_line_endings(PyObject *source) { - char *buf, *q, *p = PyBytes_AsString(source); + char *buf, *q, *p; PyObject *fixed_source; int len = 0; - if (!p) { + p = PyBytes_AsString(source); + if (p == NULL) { return PyBytes_FromStringAndSize("\n\0", 2); } @@ -1085,16 +1097,24 @@ /* Given a string buffer containing Python source code, compile it return and return a code object as a new reference. */ static PyObject * -compile_source(char *pathname, PyObject *source) +compile_source(PyObject *pathname, PyObject *source) { - PyObject *code, *fixed_source; + PyObject *code, *fixed_source, *pathbytes; + + pathbytes = PyUnicode_EncodeFSDefault(pathname); + if (pathbytes == NULL) + return NULL; fixed_source = normalize_line_endings(source); - if (fixed_source == NULL) + if (fixed_source == NULL) { + Py_DECREF(pathbytes); return NULL; + } - code = Py_CompileString(PyBytes_AsString(fixed_source), pathname, + code = Py_CompileString(PyBytes_AsString(fixed_source), + PyBytes_AsString(pathbytes), Py_file_input); + Py_DECREF(pathbytes); Py_DECREF(fixed_source); return code; } @@ -1123,14 +1143,19 @@ modification time of the matching .py file, or 0 if no source is available. */ static time_t -get_mtime_of_source(ZipImporter *self, char *path) +get_mtime_of_source(ZipImporter *self, PyObject *path) { - PyObject *toc_entry; - time_t mtime = 0; - Py_ssize_t lastchar = strlen(path) - 1; - char savechar = path[lastchar]; - path[lastchar] = '\0'; /* strip 'c' or 'o' from *.py[co] */ - toc_entry = PyDict_GetItemString(self->files, path); + PyObject *toc_entry, *stripped; + time_t mtime; + + /* strip 'c' or 'o' from *.py[co] */ + stripped = PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(path), + PyUnicode_GET_SIZE(path) - 1); + if (stripped == NULL) + return (time_t)-1; + + toc_entry = PyDict_GetItem(self->files, stripped); + Py_DECREF(stripped); if (toc_entry != NULL && PyTuple_Check(toc_entry) && PyTuple_Size(toc_entry) == 8) { /* fetch the time stamp of the .py file for comparison @@ -1139,8 +1164,8 @@ time = PyLong_AsLong(PyTuple_GetItem(toc_entry, 5)); date = PyLong_AsLong(PyTuple_GetItem(toc_entry, 6)); mtime = parse_dostime(time, date); - } - path[lastchar] = savechar; + } else + mtime = 0; return mtime; } @@ -1150,24 +1175,17 @@ get_code_from_data(ZipImporter *self, int ispackage, int isbytecode, time_t mtime, PyObject *toc_entry) { - PyObject *data, *code; - PyObject *modpath; + PyObject *data, *modpath, *code; data = get_data(self->archive, toc_entry); if (data == NULL) return NULL; - modpath = PyUnicode_EncodeFSDefault(PyTuple_GetItem(toc_entry, 0)); - if (modpath == NULL) { - Py_DECREF(data); - return NULL; - } - + modpath = PyTuple_GetItem(toc_entry, 0); if (isbytecode) - code = unmarshal_code(PyBytes_AS_STRING(modpath), data, mtime); + code = unmarshal_code(modpath, data, mtime); else - code = compile_source(PyBytes_AS_STRING(modpath), data); - Py_DECREF(modpath); + code = compile_source(modpath, data); Py_DECREF(data); return code; } @@ -1175,35 +1193,45 @@ /* Get the code object associated with the module specified by 'fullname'. */ static PyObject * -get_module_code(ZipImporter *self, char *fullname, +get_module_code(ZipImporter *self, PyObject *fullname, int *p_ispackage, PyObject **p_modpath) { - PyObject *toc_entry; - char *subname, path[MAXPATHLEN + 1]; - int len; + PyObject *code, *toc_entry, *subname; + PyObject *path, *fullpath; struct st_zip_searchorder *zso; subname = get_subname(fullname); + if (subname == NULL) + return NULL; - len = make_filename(self->prefix, subname, path, sizeof(path)); - if (len < 0) + path = make_filename(self->prefix, subname); + Py_DECREF(subname); + if (path == NULL) return NULL; for (zso = zip_searchorder; *zso->suffix; zso++) { - PyObject *code = NULL; + code = NULL; - strcpy(path + len, zso->suffix); + fullpath = PyUnicode_FromFormat("%U%s", path, zso->suffix); + if (fullpath == NULL) + goto exit; + if (Py_VerboseFlag > 1) - PySys_FormatStderr("# trying %U%c%s\n", - self->archive, (int)SEP, path); - toc_entry = PyDict_GetItemString(self->files, path); + PySys_FormatStderr("# trying %U%c%U\n", + self->archive, (int)SEP, fullpath); + toc_entry = PyDict_GetItem(self->files, fullpath); if (toc_entry != NULL) { time_t mtime = 0; int ispackage = zso->type & IS_PACKAGE; int isbytecode = zso->type & IS_BYTECODE; - if (isbytecode) - mtime = get_mtime_of_source(self, path); + if (isbytecode) { + mtime = get_mtime_of_source(self, fullpath); + if (mtime == (time_t)-1 && PyErr_Occurred()) { + goto exit; + } + } + Py_CLEAR(fullpath); if (p_ispackage != NULL) *p_ispackage = ispackage; code = get_code_from_data(self, ispackage, @@ -1219,11 +1247,16 @@ *p_modpath = PyTuple_GetItem(toc_entry, 0); Py_INCREF(*p_modpath); } - return code; + goto exit; } + else + Py_CLEAR(fullpath); } - PyErr_Format(ZipImportError, "can't find module '%s'", fullname); - return NULL; + PyErr_Format(ZipImportError, "can't find module %R", fullname); +exit: + Py_DECREF(path); + Py_XDECREF(fullpath); + return code; } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:18 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:18 +0100 Subject: [Python-checkins] cpython: Issue #3080: PyImport_Cleanup() uses Unicode Message-ID: http://hg.python.org/cpython/rev/b50a0d44545a changeset: 68710:b50a0d44545a user: Victor Stinner date: Mon Mar 07 17:08:21 2011 +0100 summary: Issue #3080: PyImport_Cleanup() uses Unicode Replace strcmp() by PyUnicode_CompareWithASCIIString() files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -418,7 +418,6 @@ PyImport_Cleanup(void) { Py_ssize_t pos, ndone; - char *name; PyObject *key, *value, *dict; PyInterpreterState *interp = PyThreadState_GET()->interp; PyObject *modules = interp->modules; @@ -491,14 +490,13 @@ if (value->ob_refcnt != 1) continue; if (PyUnicode_Check(key) && PyModule_Check(value)) { - name = _PyUnicode_AsString(key); - if (strcmp(name, "builtins") == 0) + if (PyUnicode_CompareWithASCIIString(key, "builtins") == 0) continue; - if (strcmp(name, "sys") == 0) + if (PyUnicode_CompareWithASCIIString(key, "sys") == 0) continue; if (Py_VerboseFlag) - PySys_WriteStderr( - "# cleanup[1] %s\n", name); + PySys_FormatStderr( + "# cleanup[1] %U\n", key); _PyModule_Clear(value); PyDict_SetItem(modules, key, Py_None); ndone++; @@ -510,13 +508,12 @@ pos = 0; while (PyDict_Next(modules, &pos, &key, &value)) { if (PyUnicode_Check(key) && PyModule_Check(value)) { - name = _PyUnicode_AsString(key); - if (strcmp(name, "builtins") == 0) + if (PyUnicode_CompareWithASCIIString(key, "builtins") == 0) continue; - if (strcmp(name, "sys") == 0) + if (PyUnicode_CompareWithASCIIString(key, "sys") == 0) continue; if (Py_VerboseFlag) - PySys_WriteStderr("# cleanup[2] %s\n", name); + PySys_FormatStderr("# cleanup[2] %U\n", key); _PyModule_Clear(value); PyDict_SetItem(modules, key, Py_None); } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:19 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:19 +0100 Subject: [Python-checkins] cpython: Issue #3080: Add PyImport_ImportFrozenModuleObject() Message-ID: http://hg.python.org/cpython/rev/e7c1019b27b9 changeset: 68711:e7c1019b27b9 user: Victor Stinner date: Sun Mar 20 01:50:21 2011 +0100 summary: Issue #3080: Add PyImport_ImportFrozenModuleObject() find_frozen(), get_frozen_object(), is_frozen_package() and other functions related to frozen modules use Unicode strings instead of byte strings. files: Doc/c-api/import.rst Include/import.h Python/import.c diff --git a/Doc/c-api/import.rst b/Doc/c-api/import.rst --- a/Doc/c-api/import.rst +++ b/Doc/c-api/import.rst @@ -217,7 +217,7 @@ For internal use only. -.. c:function:: int PyImport_ImportFrozenModule(char *name) +.. c:function:: int PyImport_ImportFrozenModuleObject(PyObject *name) Load a frozen module named *name*. Return ``1`` for success, ``0`` if the module is not found, and ``-1`` with an exception set if the initialization @@ -225,6 +225,14 @@ :c:func:`PyImport_ImportModule`. (Note the misnomer --- this function would reload the module if it was already imported.) + .. versionadded:: 3.3 + + +.. c:function:: int PyImport_ImportFrozenModule(char *name) + + Similar to :c:func:`PyImport_ImportFrozenModuleObject`, but the name is an + UTF-8 encoded string instead of a Unicode object. + .. c:type:: struct _frozen diff --git a/Include/import.h b/Include/import.h --- a/Include/import.h +++ b/Include/import.h @@ -58,6 +58,9 @@ PyAPI_FUNC(PyObject *) PyImport_Import(PyObject *name); PyAPI_FUNC(PyObject *) PyImport_ReloadModule(PyObject *m); PyAPI_FUNC(void) PyImport_Cleanup(void); +PyAPI_FUNC(int) PyImport_ImportFrozenModuleObject( + PyObject *name + ); PyAPI_FUNC(int) PyImport_ImportFrozenModule( char *name /* UTF-8 encoded string */ ); diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1429,7 +1429,7 @@ static PyObject *load_module(char *, FILE *, char *, int, PyObject *); static struct filedescr *find_module(char *, char *, PyObject *, char *, size_t, FILE **, PyObject **); -static struct _frozen * find_frozen(char *); +static struct _frozen * find_frozen(PyObject *); /* Load a package and return its module object WITH INCREMENTED REFERENCE COUNT */ @@ -1617,6 +1617,8 @@ size_t saved_namelen; char *saved_buf = NULL; #endif + PyObject *fullname_obj; + if (p_loader != NULL) *p_loader = NULL; @@ -1662,9 +1664,16 @@ Py_DECREF(meta_path); } - if (find_frozen(fullname) != NULL) { - strcpy(buf, fullname); - return &fd_frozen; + if (fullname != NULL) { + fullname_obj = PyUnicode_FromString(fullname); + if (fullname == NULL) + return NULL; + if (find_frozen(fullname_obj) != NULL) { + Py_DECREF(fullname_obj); + strcpy(buf, fullname); + return &fd_frozen; + } + Py_DECREF(fullname_obj); } if (path == NULL) { @@ -2226,37 +2235,37 @@ /* Frozen modules */ static struct _frozen * -find_frozen(char *name) +find_frozen(PyObject *name) { struct _frozen *p; - if (!name) + if (name == NULL) return NULL; for (p = PyImport_FrozenModules; ; p++) { if (p->name == NULL) return NULL; - if (strcmp(p->name, name) == 0) + if (PyUnicode_CompareWithASCIIString(name, p->name) == 0) break; } return p; } static PyObject * -get_frozen_object(char *name) +get_frozen_object(PyObject *name) { struct _frozen *p = find_frozen(name); int size; if (p == NULL) { PyErr_Format(PyExc_ImportError, - "No such frozen object named %.200s", + "No such frozen object named %R", name); return NULL; } if (p->code == NULL) { PyErr_Format(PyExc_ImportError, - "Excluded frozen object named %.200s", + "Excluded frozen object named %R", name); return NULL; } @@ -2267,14 +2276,14 @@ } static PyObject * -is_frozen_package(char *name) +is_frozen_package(PyObject *name) { struct _frozen *p = find_frozen(name); int size; if (p == NULL) { PyErr_Format(PyExc_ImportError, - "No such frozen object named %.200s", + "No such frozen object named %R", name); return NULL; } @@ -2294,19 +2303,20 @@ This function is also used from frozenmain.c */ int -PyImport_ImportFrozenModule(char *name) +PyImport_ImportFrozenModuleObject(PyObject *name) { - struct _frozen *p = find_frozen(name); - PyObject *co; - PyObject *m; + struct _frozen *p; + PyObject *co, *m, *path; int ispackage; int size; + p = find_frozen(name); + if (p == NULL) return 0; if (p->code == NULL) { PyErr_Format(PyExc_ImportError, - "Excluded frozen object named %.200s", + "Excluded frozen object named %R", name); return -1; } @@ -2315,40 +2325,41 @@ if (ispackage) size = -size; if (Py_VerboseFlag) - PySys_WriteStderr("import %s # frozen%s\n", + PySys_FormatStderr("import %U # frozen%s\n", name, ispackage ? " package" : ""); co = PyMarshal_ReadObjectFromString((char *)p->code, size); if (co == NULL) return -1; if (!PyCode_Check(co)) { PyErr_Format(PyExc_TypeError, - "frozen object %.200s is not a code object", + "frozen object %R is not a code object", name); goto err_return; } if (ispackage) { /* Set __path__ to the package name */ - PyObject *d, *s, *l; + PyObject *d, *l; int err; - m = PyImport_AddModule(name); + m = PyImport_AddModuleObject(name); if (m == NULL) goto err_return; d = PyModule_GetDict(m); - s = PyUnicode_InternFromString(name); - if (s == NULL) - goto err_return; l = PyList_New(1); if (l == NULL) { - Py_DECREF(s); goto err_return; } - PyList_SET_ITEM(l, 0, s); + Py_INCREF(name); + PyList_SET_ITEM(l, 0, name); err = PyDict_SetItemString(d, "__path__", l); Py_DECREF(l); if (err != 0) goto err_return; } - m = PyImport_ExecCodeModuleEx(name, co, ""); + path = PyUnicode_FromString(""); + if (path == NULL) + goto err_return; + m = PyImport_ExecCodeModuleObject(name, co, path, NULL); + Py_DECREF(path); if (m == NULL) goto err_return; Py_DECREF(co); @@ -2359,6 +2370,19 @@ return -1; } +int +PyImport_ImportFrozenModule(char *name) +{ + PyObject *nameobj; + int ret; + nameobj = PyUnicode_InternFromString(name); + if (nameobj == NULL) + return -1; + ret = PyImport_ImportFrozenModuleObject(nameobj); + Py_DECREF(nameobj); + return ret; +} + /* Import a module, either built-in, frozen, or external, and return its module object WITH INCREMENTED REFERENCE COUNT */ @@ -3282,19 +3306,19 @@ static PyObject * imp_init_frozen(PyObject *self, PyObject *args) { - char *name; + PyObject *name; int ret; PyObject *m; - if (!PyArg_ParseTuple(args, "s:init_frozen", &name)) + if (!PyArg_ParseTuple(args, "U:init_frozen", &name)) return NULL; - ret = PyImport_ImportFrozenModule(name); + ret = PyImport_ImportFrozenModuleObject(name); if (ret < 0) return NULL; if (ret == 0) { Py_INCREF(Py_None); return Py_None; } - m = PyImport_AddModule(name); + m = PyImport_AddModuleObject(name); Py_XINCREF(m); return m; } @@ -3302,9 +3326,9 @@ static PyObject * imp_get_frozen_object(PyObject *self, PyObject *args) { - char *name; - - if (!PyArg_ParseTuple(args, "s:get_frozen_object", &name)) + PyObject *name; + + if (!PyArg_ParseTuple(args, "U:get_frozen_object", &name)) return NULL; return get_frozen_object(name); } @@ -3312,9 +3336,9 @@ static PyObject * imp_is_frozen_package(PyObject *self, PyObject *args) { - char *name; - - if (!PyArg_ParseTuple(args, "s:is_frozen_package", &name)) + PyObject *name; + + if (!PyArg_ParseTuple(args, "U:is_frozen_package", &name)) return NULL; return is_frozen_package(name); } @@ -3331,9 +3355,9 @@ static PyObject * imp_is_frozen(PyObject *self, PyObject *args) { - char *name; + PyObject *name; struct _frozen *p; - if (!PyArg_ParseTuple(args, "s:is_frozen", &name)) + if (!PyArg_ParseTuple(args, "U:is_frozen", &name)) return NULL; p = find_frozen(name); return PyBool_FromLong((long) (p == NULL ? 0 : p->size)); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:26 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:26 +0100 Subject: [Python-checkins] cpython: Issue #3080: Import builtins using Unicode strings Message-ID: http://hg.python.org/cpython/rev/2425717c6430 changeset: 68712:2425717c6430 user: Victor Stinner date: Mon Mar 07 18:20:56 2011 +0100 summary: Issue #3080: Import builtins using Unicode strings - is_builtin(), init_builtin(), load_builtin() and other builtin related functions use Unicode strings, instead of byte strings - Rename _PyImport_FixupExtensionUnicode() to _PyImport_FixupExtensionObject() - Rename _PyImport_FindExtensionUnicode() to _PyImport_FindExtensionObject() files: Include/import.h Python/import.c Python/importdl.c diff --git a/Include/import.h b/Include/import.h --- a/Include/import.h +++ b/Include/import.h @@ -79,12 +79,12 @@ PyAPI_FUNC(PyObject *)_PyImport_FindBuiltin( const char *name /* UTF-8 encoded string */ ); -PyAPI_FUNC(PyObject *)_PyImport_FindExtensionUnicode(const char *, PyObject *); +PyAPI_FUNC(PyObject *)_PyImport_FindExtensionObject(PyObject *, PyObject *); PyAPI_FUNC(int)_PyImport_FixupBuiltin( PyObject *mod, char *name /* UTF-8 encoded string */ ); -PyAPI_FUNC(int)_PyImport_FixupExtensionUnicode(PyObject*, char *, PyObject *); +PyAPI_FUNC(int)_PyImport_FixupExtensionObject(PyObject*, PyObject *, PyObject *); struct _inittab { char *name; diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -117,7 +117,7 @@ static long pyc_magic = MAGIC; static const char *pyc_tag = TAG; -/* See _PyImport_FixupExtensionUnicode() below */ +/* See _PyImport_FixupExtensionObject() below */ static PyObject *extensions = NULL; /* This table is defined in config.c: */ @@ -563,10 +563,10 @@ once, we keep a static dictionary 'extensions' keyed by module name (for built-in modules) or by filename (for dynamically loaded modules), containing these modules. A copy of the module's - dictionary is stored by calling _PyImport_FixupExtensionUnicode() + dictionary is stored by calling _PyImport_FixupExtensionObject() immediately after the module initialization function succeeds. A copy can be retrieved from there by calling - _PyImport_FindExtensionUnicode(). + _PyImport_FindExtensionObject(). Modules which do support multiple initialization set their m_size field to a non-negative number (indicating the size of the @@ -575,7 +575,8 @@ */ int -_PyImport_FixupExtensionUnicode(PyObject *mod, char *name, PyObject *filename) +_PyImport_FixupExtensionObject(PyObject *mod, PyObject *name, + PyObject *filename) { PyObject *modules, *dict; struct PyModuleDef *def; @@ -594,10 +595,10 @@ return -1; } modules = PyImport_GetModuleDict(); - if (PyDict_SetItemString(modules, name, mod) < 0) + if (PyDict_SetItem(modules, name, mod) < 0) return -1; if (_PyState_AddModule(mod, def) < 0) { - PyDict_DelItemString(modules, name); + PyDict_DelItem(modules, name); return -1; } if (def->m_size == -1) { @@ -623,17 +624,17 @@ _PyImport_FixupBuiltin(PyObject *mod, char *name) { int res; - PyObject *filename; - filename = PyUnicode_FromString(name); - if (filename == NULL) + PyObject *nameobj; + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) return -1; - res = _PyImport_FixupExtensionUnicode(mod, name, filename); - Py_DECREF(filename); + res = _PyImport_FixupExtensionObject(mod, nameobj, nameobj); + Py_DECREF(nameobj); return res; } PyObject * -_PyImport_FindExtensionUnicode(const char *name, PyObject *filename) +_PyImport_FindExtensionObject(PyObject *name, PyObject *filename) { PyObject *mod, *mdict; PyModuleDef* def; @@ -646,7 +647,7 @@ /* Module does not support repeated initialization */ if (def->m_base.m_copy == NULL) return NULL; - mod = PyImport_AddModule(name); + mod = PyImport_AddModuleObject(name); if (mod == NULL) return NULL; mdict = PyModule_GetDict(mod); @@ -661,16 +662,16 @@ mod = def->m_base.m_init(); if (mod == NULL) return NULL; - PyDict_SetItemString(PyImport_GetModuleDict(), name, mod); + PyDict_SetItem(PyImport_GetModuleDict(), name, mod); Py_DECREF(mod); } if (_PyState_AddModule(mod, def) < 0) { - PyDict_DelItemString(PyImport_GetModuleDict(), name); + PyDict_DelItem(PyImport_GetModuleDict(), name); Py_DECREF(mod); return NULL; } if (Py_VerboseFlag) - PySys_FormatStderr("import %s # previously loaded (%U)\n", + PySys_FormatStderr("import %U # previously loaded (%R)\n", name, filename); return mod; @@ -679,12 +680,12 @@ PyObject * _PyImport_FindBuiltin(const char *name) { - PyObject *res, *filename; - filename = PyUnicode_FromString(name); - if (filename == NULL) + PyObject *res, *nameobj; + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) return NULL; - res = _PyImport_FindExtensionUnicode(name, filename); - Py_DECREF(filename); + res = _PyImport_FindExtensionObject(nameobj, nameobj); + Py_DECREF(nameobj); return res; } @@ -1491,11 +1492,12 @@ /* Helper to test for built-in module */ static int -is_builtin(char *name) +is_builtin(PyObject *name) { - int i; + int i, cmp; for (i = 0; PyImport_Inittab[i].name != NULL; i++) { - if (strcmp(name, PyImport_Inittab[i].name) == 0) { + cmp = PyUnicode_CompareWithASCIIString(name, PyImport_Inittab[i].name); + if (cmp == 0) { if (PyImport_Inittab[i].initfunc == NULL) return -1; else @@ -1617,7 +1619,7 @@ size_t saved_namelen; char *saved_buf = NULL; #endif - PyObject *fullname_obj; + PyObject *fullname_obj, *nameobj; if (p_loader != NULL) *p_loader = NULL; @@ -1677,10 +1679,15 @@ } if (path == NULL) { - if (is_builtin(name)) { + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + if (is_builtin(nameobj)) { + Py_DECREF(nameobj); strcpy(buf, name); return &fd_builtin; } + Py_DECREF(nameobj); #ifdef MS_COREDLL fp = _PyWin_FindRegisteredModule(name, &fdp, buf, buflen); if (fp != NULL) { @@ -2086,40 +2093,35 @@ #endif /* HAVE_STAT */ -static int init_builtin(char *); /* Forward */ +static int init_builtin(PyObject *); /* Forward */ static PyObject* -load_builtin(char *name, char *pathname, int type) +load_builtin(PyObject *name, int type) { PyObject *m, *modules; int err; - if (pathname != NULL && pathname[0] != '\0') - name = pathname; - if (type == C_BUILTIN) err = init_builtin(name); else - err = PyImport_ImportFrozenModule(name); + err = PyImport_ImportFrozenModuleObject(name); if (err < 0) return NULL; if (err == 0) { PyErr_Format(PyExc_ImportError, - "Purported %s module %.200s not found", - type == C_BUILTIN ? - "builtin" : "frozen", + "Purported %s module %R not found", + type == C_BUILTIN ? "builtin" : "frozen", name); return NULL; } modules = PyImport_GetModuleDict(); - m = PyDict_GetItemString(modules, name); + m = PyDict_GetItem(modules, name); if (m == NULL) { PyErr_Format( PyExc_ImportError, - "%s module %.200s not properly initialized", - type == C_BUILTIN ? - "builtin" : "frozen", + "%s module %R not properly initialized", + type == C_BUILTIN ? "builtin" : "frozen", name); return NULL; } @@ -2168,9 +2170,15 @@ break; case C_BUILTIN: - case PY_FROZEN: - m = load_builtin(name, pathname, type); + case PY_FROZEN: { + PyObject *nameobj = PyUnicode_FromString(name); + if (nameobj != NULL) { + m = load_builtin(nameobj, type); + Py_DECREF(nameobj); + } else + m = NULL; break; + } case IMP_HOOK: { if (loader == NULL) { @@ -2199,28 +2207,28 @@ an exception set if the initialization failed. */ static int -init_builtin(char *name) +init_builtin(PyObject *name) { struct _inittab *p; - if (_PyImport_FindBuiltin(name) != NULL) + if (_PyImport_FindExtensionObject(name, name) != NULL) return 1; for (p = PyImport_Inittab; p->name != NULL; p++) { PyObject *mod; - if (strcmp(name, p->name) == 0) { + if (PyUnicode_CompareWithASCIIString(name, p->name) == 0) { if (p->initfunc == NULL) { PyErr_Format(PyExc_ImportError, - "Cannot re-init internal module %.200s", + "Cannot re-init internal module %R", name); return -1; } if (Py_VerboseFlag) - PySys_WriteStderr("import %s # builtin\n", name); + PySys_FormatStderr("import %U # builtin\n", name); mod = (*p->initfunc)(); if (mod == 0) return -1; - if (_PyImport_FixupBuiltin(mod, name) < 0) + if (_PyImport_FixupExtensionObject(mod, name, name) < 0) return -1; /* FixupExtension has put the module into sys.modules, so we can release our own reference. */ @@ -3286,10 +3294,10 @@ static PyObject * imp_init_builtin(PyObject *self, PyObject *args) { - char *name; + PyObject *name; int ret; PyObject *m; - if (!PyArg_ParseTuple(args, "s:init_builtin", &name)) + if (!PyArg_ParseTuple(args, "U:init_builtin", &name)) return NULL; ret = init_builtin(name); if (ret < 0) @@ -3298,7 +3306,7 @@ Py_INCREF(Py_None); return Py_None; } - m = PyImport_AddModule(name); + m = PyImport_AddModuleObject(name); Py_XINCREF(m); return m; } @@ -3346,8 +3354,8 @@ static PyObject * imp_is_builtin(PyObject *self, PyObject *args) { - char *name; - if (!PyArg_ParseTuple(args, "s:is_builtin", &name)) + PyObject *name; + if (!PyArg_ParseTuple(args, "U:is_builtin", &name)) return NULL; return PyLong_FromLong(is_builtin(name)); } diff --git a/Python/importdl.c b/Python/importdl.c --- a/Python/importdl.c +++ b/Python/importdl.c @@ -26,17 +26,23 @@ dl_funcptr p0; PyObject* (*p)(void); struct PyModuleDef *def; - PyObject *result; + PyObject *nameobj, *result; path = PyUnicode_DecodeFSDefault(pathname); if (path == NULL) return NULL; - if ((m = _PyImport_FindExtensionUnicode(name, path)) != NULL) { + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + m = _PyImport_FindExtensionObject(nameobj, path); + if (m != NULL) { + Py_DECREF(nameobj); Py_INCREF(m); result = m; goto finally; } + Py_DECREF(nameobj); lastdot = strrchr(name, '.'); if (lastdot == NULL) { packagecontext = NULL; @@ -82,12 +88,18 @@ else Py_INCREF(path); - if (_PyImport_FixupExtensionUnicode(m, name, path) < 0) + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + if (_PyImport_FixupExtensionObject(m, nameobj, path) < 0) { + Py_DECREF(nameobj); goto error; + } if (Py_VerboseFlag) - PySys_WriteStderr( - "import %s # dynamically loaded from %s\n", - name, pathname); + PySys_FormatStderr( + "import %U # dynamically loaded from %s\n", + nameobj, pathname); + Py_DECREF(nameobj); result = m; goto finally; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:32 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:32 +0100 Subject: [Python-checkins] cpython: Issue #3080: Use PyUnicode_InternFromString() for builtins Message-ID: http://hg.python.org/cpython/rev/ced52fcd95f6 changeset: 68713:ced52fcd95f6 user: Victor Stinner date: Mon Mar 07 18:28:15 2011 +0100 summary: Issue #3080: Use PyUnicode_InternFromString() for builtins _PyImport_FixupBuiltin() and _PyImport_FindBuiltin() use PyUnicode_InternFromString() instead of PyUnicode_FromString(). files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -625,7 +625,7 @@ { int res; PyObject *nameobj; - nameobj = PyUnicode_FromString(name); + nameobj = PyUnicode_InternFromString(name); if (nameobj == NULL) return -1; res = _PyImport_FixupExtensionObject(mod, nameobj, nameobj); @@ -681,7 +681,7 @@ _PyImport_FindBuiltin(const char *name) { PyObject *res, *nameobj; - nameobj = PyUnicode_FromString(name); + nameobj = PyUnicode_InternFromString(name); if (nameobj == NULL) return NULL; res = _PyImport_FindExtensionObject(nameobj, nameobj); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:33 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:33 +0100 Subject: [Python-checkins] cpython: Issue #3080: Document the name attribute of the _inittab structure Message-ID: http://hg.python.org/cpython/rev/e63a583ec689 changeset: 68714:e63a583ec689 user: Victor Stinner date: Mon Mar 07 18:34:59 2011 +0100 summary: Issue #3080: Document the name attribute of the _inittab structure The name is an ASCII encoded string. files: Doc/c-api/import.rst Include/import.h diff --git a/Doc/c-api/import.rst b/Doc/c-api/import.rst --- a/Doc/c-api/import.rst +++ b/Doc/c-api/import.rst @@ -272,13 +272,13 @@ Structure describing a single entry in the list of built-in modules. Each of these structures gives the name and initialization function for a module built - into the interpreter. Programs which embed Python may use an array of these - structures in conjunction with :c:func:`PyImport_ExtendInittab` to provide - additional built-in modules. The structure is defined in - :file:`Include/import.h` as:: + into the interpreter. The name is an ASCII encoded string. Programs which + embed Python may use an array of these structures in conjunction with + :c:func:`PyImport_ExtendInittab` to provide additional built-in modules. + The structure is defined in :file:`Include/import.h` as:: struct _inittab { - char *name; + char *name; /* ASCII encoded string */ PyObject* (*initfunc)(void); }; diff --git a/Include/import.h b/Include/import.h --- a/Include/import.h +++ b/Include/import.h @@ -87,7 +87,7 @@ PyAPI_FUNC(int)_PyImport_FixupExtensionObject(PyObject*, PyObject *, PyObject *); struct _inittab { - char *name; + char *name; /* ASCII encoded string */ PyObject* (*initfunc)(void); }; PyAPI_DATA(struct _inittab *) PyImport_Inittab; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:34 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:34 +0100 Subject: [Python-checkins] cpython: Issue #3080: _PyWin_FindRegisteredModule() returns the path as Unicode Message-ID: http://hg.python.org/cpython/rev/bab42673674a changeset: 68715:bab42673674a user: Victor Stinner date: Tue Mar 08 23:49:04 2011 +0100 summary: Issue #3080: _PyWin_FindRegisteredModule() returns the path as Unicode * Document the function * Use RegQueryValueW() instead of RegQueryValueA() * Use _Py_fopen() instead of fopen() * Allocate registry key on the heap, not on the stack, and handle memory allocation failure * Handle Python exception in find_module() files: PC/import_nt.c Python/import.c diff --git a/PC/import_nt.c b/PC/import_nt.c --- a/PC/import_nt.c +++ b/PC/import_nt.c @@ -15,72 +15,93 @@ /* a string loaded from the DLL at startup */ extern const char *PyWin_DLLVersionString; -FILE *_PyWin_FindRegisteredModule(const char *moduleName, - struct filedescr **ppFileDesc, - char *pathBuf, - Py_ssize_t pathLen) +/* Find a module on Windows. + + Read the registry Software\Python\PythonCore\\Modules\ (or + Software\Python\PythonCore\\Modules\\Debug in debug mode) + from HKEY_CURRENT_USER, or HKEY_LOCAL_MACHINE. Find the file descriptor using + the file extension. Open the file. + + On success, write the file descriptor into *ppFileDesc, the module path + (Unicode object) into *pPath, and return the opened file object. If the + module cannot be found (e.g. no registry key or the file doesn't exist), + return NULL. On error, raise a Python exception and return NULL. + */ +FILE * +_PyWin_FindRegisteredModule(PyObject *moduleName, + struct filedescr **ppFileDesc, + PyObject **pPath) { - char *moduleKey; - const char keyPrefix[] = "Software\\Python\\PythonCore\\"; - const char keySuffix[] = "\\Modules\\"; -#ifdef _DEBUG - /* In debugging builds, we _must_ have the debug version - * registered. - */ - const char debugString[] = "\\Debug"; -#else - const char debugString[] = ""; -#endif - struct filedescr *fdp = NULL; - FILE *fp; - HKEY keyBase = HKEY_CURRENT_USER; + wchar_t pathBuf[MAXPATHLEN+1]; + int pathLen = MAXPATHLEN+1; + PyObject *path, *moduleKey, *suffix; + struct filedescr *fdp; + HKEY keyBase; int modNameSize; long regStat; + Py_ssize_t extLen; + FILE *fp; - /* Calculate the size for the sprintf buffer. - * Get the size of the chars only, plus 1 NULL. - */ - size_t bufSize = sizeof(keyPrefix)-1 + - strlen(PyWin_DLLVersionString) + - sizeof(keySuffix) + - strlen(moduleName) + - sizeof(debugString) - 1; - /* alloca == no free required, but memory only local to fn, - * also no heap fragmentation! - */ - moduleKey = alloca(bufSize); - PyOS_snprintf(moduleKey, bufSize, - "Software\\Python\\PythonCore\\%s\\Modules\\%s%s", - PyWin_DLLVersionString, moduleName, debugString); + moduleKey = PyUnicode_FromFormat( +#ifdef _DEBUG + /* In debugging builds, we _must_ have the debug version registered */ + "Software\\Python\\PythonCore\\%s\\Modules\\%U\\Debug", +#else + "Software\\Python\\PythonCore\\%s\\Modules\\%U", +#endif + PyWin_DLLVersionString, moduleName); + if (moduleKey == NULL) + return NULL; - assert(pathLen < INT_MAX); - modNameSize = (int)pathLen; - regStat = RegQueryValue(keyBase, moduleKey, pathBuf, &modNameSize); + keyBase = HKEY_CURRENT_USER; + modNameSize = pathLen; + regStat = RegQueryValueW(keyBase, PyUnicode_AS_UNICODE(moduleKey), + pathBuf, &modNameSize); if (regStat != ERROR_SUCCESS) { /* No user setting - lookup in machine settings */ keyBase = HKEY_LOCAL_MACHINE; /* be anal - failure may have reset size param */ - modNameSize = (int)pathLen; - regStat = RegQueryValue(keyBase, moduleKey, - pathBuf, &modNameSize); - - if (regStat != ERROR_SUCCESS) + modNameSize = pathLen; + regStat = RegQueryValueW(keyBase, PyUnicode_AS_UNICODE(moduleKey), + pathBuf, &modNameSize); + if (regStat != ERROR_SUCCESS) { + Py_DECREF(moduleKey); return NULL; + } + } + Py_DECREF(moduleKey); + if (modNameSize < 3) { + /* path shorter than "a.o" or negative length (cast to + size_t is wrong) */ + return NULL; } /* use the file extension to locate the type entry. */ for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) { - size_t extLen = strlen(fdp->suffix); - assert(modNameSize >= 0); /* else cast to size_t is wrong */ - if ((size_t)modNameSize > extLen && - strnicmp(pathBuf + ((size_t)modNameSize-extLen-1), - fdp->suffix, - extLen) == 0) + suffix = PyUnicode_FromString(fdp->suffix); + if (suffix == NULL) + return NULL; + extLen = PyUnicode_GET_SIZE(suffix); + if ((Py_ssize_t)modNameSize > extLen && + _wcsnicmp(pathBuf + ((Py_ssize_t)modNameSize-extLen-1), + PyUnicode_AS_UNICODE(suffix), + extLen) == 0) + { + Py_DECREF(suffix); break; + } + Py_DECREF(suffix); } if (fdp->suffix == NULL) return NULL; - fp = fopen(pathBuf, fdp->mode); - if (fp != NULL) - *ppFileDesc = fdp; + path = PyUnicode_FromUnicode(pathBuf, wcslen(pathBuf)); + if (path == NULL) + return NULL; + fp = _Py_fopen(path, fdp->mode); + if (fp == NULL) { + Py_DECREF(path); + return NULL; + } + *pPath = path; + *ppFileDesc = fdp; return fp; } diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1591,8 +1591,8 @@ pathname and an open file. Return NULL if the module is not found. */ #ifdef MS_COREDLL -extern FILE *_PyWin_FindRegisteredModule(const char *, struct filedescr **, - char *, Py_ssize_t); +extern FILE *_PyWin_FindRegisteredModule(PyObject *, struct filedescr **, + PyObject **p_path); #endif static int case_ok(char *, Py_ssize_t, Py_ssize_t, char *); @@ -1679,6 +1679,9 @@ } if (path == NULL) { +#ifdef MS_COREDLL + PyObject *filename, *filename_bytes; +#endif nameobj = PyUnicode_FromString(name); if (nameobj == NULL) return NULL; @@ -1687,14 +1690,24 @@ strcpy(buf, name); return &fd_builtin; } - Py_DECREF(nameobj); #ifdef MS_COREDLL - fp = _PyWin_FindRegisteredModule(name, &fdp, buf, buflen); + fp = _PyWin_FindRegisteredModule(nameobj, &fdp, &filename); if (fp != NULL) { + Py_DECREF(nameobj); + filename_bytes = PyUnicode_EncodeFSDefault(filename); + Py_DECREF(filename); + if (filename_bytes == NULL) + return NULL; + strncpy(buf, PyBytes_AS_STRING(filename_bytes), buflen); + buf[buflen-1] = '\0'; + Py_DECREF(filename_bytes); *p_fp = fp; return fdp; } + else if (PyErr_Occurred()) + return NULL; #endif + Py_DECREF(nameobj); path = PySys_GetObject("path"); } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:36 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:36 +0100 Subject: [Python-checkins] cpython: Issue #3080: _PyImport_LoadDynamicModule() uses Unicode for name and path Message-ID: http://hg.python.org/cpython/rev/ef2b6305d395 changeset: 68716:ef2b6305d395 user: Victor Stinner date: Mon Mar 14 15:54:07 2011 -0400 summary: Issue #3080: _PyImport_LoadDynamicModule() uses Unicode for name and path Document also that dynamic module names are ASCII only files: Python/import.c Python/importdl.c Python/importdl.h diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -2173,9 +2173,21 @@ break; #ifdef HAVE_DYNAMIC_LOADING - case C_EXTENSION: - m = _PyImport_LoadDynamicModule(name, pathname, fp); + case C_EXTENSION: { + PyObject *nameobj, *pathobj; + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + pathobj = PyUnicode_DecodeFSDefault(pathname); + if (pathobj == NULL) { + Py_DECREF(nameobj); + return NULL; + } + m = _PyImport_LoadDynamicModule(nameobj, pathobj, fp); + Py_DECREF(nameobj); + Py_DECREF(pathobj); break; + } #endif case PKG_DIRECTORY: @@ -2185,11 +2197,10 @@ case C_BUILTIN: case PY_FROZEN: { PyObject *nameobj = PyUnicode_FromString(name); - if (nameobj != NULL) { - m = load_builtin(nameobj, type); - Py_DECREF(nameobj); - } else - m = NULL; + if (nameobj == NULL) + return NULL; + m = load_builtin(nameobj, type); + Py_DECREF(nameobj); break; } @@ -3443,28 +3454,23 @@ static PyObject * imp_load_dynamic(PyObject *self, PyObject *args) { - char *name; - PyObject *pathbytes; - char *pathname; - PyObject *fob = NULL; - PyObject *m; - FILE *fp = NULL; - if (!PyArg_ParseTuple(args, "sO&|O:load_dynamic", - &name, PyUnicode_FSConverter, &pathbytes, &fob)) + PyObject *name, *pathname, *fob = NULL, *mod; + FILE *fp; + + if (!PyArg_ParseTuple(args, "UO&|O:load_dynamic", + &name, PyUnicode_FSDecoder, &pathname, &fob)) return NULL; - pathname = PyBytes_AS_STRING(pathbytes); - if (fob) { - fp = get_file(pathname, fob, "r"); - if (fp == NULL) { - Py_DECREF(pathbytes); + if (fob != NULL) { + fp = get_file(NULL, fob, "r"); + if (fp == NULL) return NULL; - } } - m = _PyImport_LoadDynamicModule(name, pathname, fp); - Py_DECREF(pathbytes); + else + fp = NULL; + mod = _PyImport_LoadDynamicModule(name, pathname, fp); if (fp) fclose(fp); - return m; + return mod; } #endif /* HAVE_DYNAMIC_LOADING */ diff --git a/Python/importdl.c b/Python/importdl.c --- a/Python/importdl.c +++ b/Python/importdl.c @@ -15,67 +15,68 @@ extern dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname, const char *pathname, FILE *fp); - +/* name should be ASCII only because the C language doesn't accept non-ASCII + identifiers, and dynamic modules are written in C. */ PyObject * -_PyImport_LoadDynamicModule(char *name, char *pathname, FILE *fp) +_PyImport_LoadDynamicModule(PyObject *name, PyObject *path, FILE *fp) { PyObject *m; - PyObject *path; - char *lastdot, *shortname, *packagecontext, *oldcontext; + PyObject *pathbytes; + char *namestr, *lastdot, *shortname, *packagecontext, *oldcontext; dl_funcptr p0; PyObject* (*p)(void); struct PyModuleDef *def; - PyObject *nameobj, *result; - path = PyUnicode_DecodeFSDefault(pathname); - if (path == NULL) + namestr = _PyUnicode_AsString(name); + if (namestr == NULL) return NULL; - nameobj = PyUnicode_FromString(name); - if (nameobj == NULL) - return NULL; - m = _PyImport_FindExtensionObject(nameobj, path); + m = _PyImport_FindExtensionObject(name, path); if (m != NULL) { - Py_DECREF(nameobj); Py_INCREF(m); - result = m; - goto finally; + return m; } - Py_DECREF(nameobj); - lastdot = strrchr(name, '.'); + + lastdot = strrchr(namestr, '.'); if (lastdot == NULL) { packagecontext = NULL; - shortname = name; + shortname = namestr; } else { - packagecontext = name; + packagecontext = namestr; shortname = lastdot+1; } - p0 = _PyImport_GetDynLoadFunc(shortname, pathname, fp); + pathbytes = PyUnicode_EncodeFSDefault(path); + if (pathbytes == NULL) + return NULL; + p0 = _PyImport_GetDynLoadFunc(shortname, + PyBytes_AS_STRING(pathbytes), fp); + Py_DECREF(pathbytes); p = (PyObject*(*)(void))p0; if (PyErr_Occurred()) - goto error; + return NULL; if (p == NULL) { PyErr_Format(PyExc_ImportError, - "dynamic module does not define init function (PyInit_%.200s)", + "dynamic module does not define init function" + " (PyInit_%s)", shortname); - goto error; + return NULL; } oldcontext = _Py_PackageContext; _Py_PackageContext = packagecontext; m = (*p)(); _Py_PackageContext = oldcontext; if (m == NULL) - goto error; + return NULL; if (PyErr_Occurred()) { Py_DECREF(m); PyErr_Format(PyExc_SystemError, "initialization of %s raised unreported exception", shortname); - goto error; + return NULL; } /* Remember pointer to module init function. */ @@ -88,26 +89,13 @@ else Py_INCREF(path); - nameobj = PyUnicode_FromString(name); - if (nameobj == NULL) + if (_PyImport_FixupExtensionObject(m, name, path) < 0) return NULL; - if (_PyImport_FixupExtensionObject(m, nameobj, path) < 0) { - Py_DECREF(nameobj); - goto error; - } if (Py_VerboseFlag) PySys_FormatStderr( - "import %U # dynamically loaded from %s\n", - nameobj, pathname); - Py_DECREF(nameobj); - result = m; - goto finally; - -error: - result = NULL; -finally: - Py_DECREF(path); - return result; + "import %U # dynamically loaded from %R\n", + name, path); + return m; } #endif /* HAVE_DYNAMIC_LOADING */ diff --git a/Python/importdl.h b/Python/importdl.h --- a/Python/importdl.h +++ b/Python/importdl.h @@ -28,7 +28,7 @@ extern struct filedescr * _PyImport_Filetab; extern const struct filedescr _PyImport_DynLoadFiletab[]; -extern PyObject *_PyImport_LoadDynamicModule(char *name, char *pathname, +extern PyObject *_PyImport_LoadDynamicModule(PyObject *name, PyObject *pathname, FILE *); /* Max length of module suffix searched for -- accommodates "module.slb" */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:37 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:37 +0100 Subject: [Python-checkins] cpython: Issue #3080: find_module() initialize buf and *p_fp Message-ID: http://hg.python.org/cpython/rev/d52f471fbbeb changeset: 68717:d52f471fbbeb user: Victor Stinner date: Sat Mar 12 08:45:02 2011 -0500 summary: Issue #3080: find_module() initialize buf and *p_fp Document also the find_module() function files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1443,7 +1443,7 @@ PyObject *path = NULL; int err; char buf[MAXPATHLEN+1]; - FILE *fp = NULL; + FILE *fp; struct filedescr *fdp; m = PyImport_AddModule(name); @@ -1464,7 +1464,6 @@ err = PyDict_SetItemString(d, "__path__", path); if (err != 0) goto error; - buf[0] = '\0'; fdp = find_module(name, "__init__", path, buf, sizeof(buf), &fp, NULL); if (fdp == NULL) { if (PyErr_ExceptionMatches(PyExc_ImportError)) { @@ -1599,6 +1598,31 @@ static int find_init_module(char *); /* Forward */ static struct filedescr importhookdescr = {"", "", IMP_HOOK}; +/* Find a module: + + - try find_module() of each sys.meta_path hook + - try find_frozen() + - try is_builtin() + - try _PyWin_FindRegisteredModule() (Windows only) + - otherwise, call find_module_path_list() with search_path_list (if not + NULL) or sys.path + + Return: + + - &fd_builtin (C_BUILTIN) if it is a builtin + - &fd_frozen (PY_FROZEN) if it is frozen + - &fd_package (PKG_DIRECTORY) and write the filename into *buf + if it is a package + - &importhookdescr (IMP_HOOK) and write the loader into *p_loader if a + importer loader was found + - a file descriptor (PY_SOURCE, PY_COMPILED, C_EXTENSION, PY_RESOURCE or + PY_CODERESOURCE: see _PyImport_Filetab), write the filename into + *buf and the pointer to the open file into *p_fp + - NULL on error + + By default, write an empty string into *buf, and *p_fp and *p_loader (if + set) are set to NULL. Eg. *buf is an empty string for a builtin package. */ + static struct filedescr * find_module(char *fullname, char *subname, PyObject *path, char *buf, size_t buflen, FILE **p_fp, PyObject **p_loader) @@ -1621,6 +1645,8 @@ #endif PyObject *fullname_obj, *nameobj; + *buf = '\0'; + *p_fp = NULL; if (p_loader != NULL) *p_loader = NULL; @@ -2962,10 +2988,10 @@ Py_INCREF(m); } else { - PyObject *path, *loader = NULL; + PyObject *path, *loader; char buf[MAXPATHLEN+1]; struct filedescr *fdp; - FILE *fp = NULL; + FILE *fp; if (mod == Py_None) path = NULL; @@ -2978,7 +3004,6 @@ } } - buf[0] = '\0'; fdp = find_module(fullname, subname, path, buf, MAXPATHLEN+1, &fp, &loader); Py_XDECREF(path); @@ -3012,11 +3037,11 @@ PyInterpreterState *interp = PyThreadState_Get()->interp; PyObject *modules_reloading = interp->modules_reloading; PyObject *modules = PyImport_GetModuleDict(); - PyObject *path = NULL, *loader = NULL, *existing_m = NULL; + PyObject *path = NULL, *loader, *existing_m = NULL; char *name, *subname; char buf[MAXPATHLEN+1]; struct filedescr *fdp; - FILE *fp = NULL; + FILE *fp; PyObject *newm; if (modules_reloading == NULL) { @@ -3074,7 +3099,6 @@ if (path == NULL) PyErr_Clear(); } - buf[0] = '\0'; fdp = find_module(name, subname, path, buf, MAXPATHLEN+1, &fp, &loader); Py_XDECREF(path); @@ -3252,7 +3276,7 @@ PyObject *pathobj; struct filedescr *fdp; char pathname[MAXPATHLEN+1]; - FILE *fp = NULL; + FILE *fp; int fd = -1; char *found_encoding = NULL; char *encoding = NULL; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:39 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:39 +0100 Subject: [Python-checkins] cpython: Issue #3080: Remove useless name buffer from find_module() Message-ID: http://hg.python.org/cpython/rev/bdf5820f5a39 changeset: 68718:bdf5820f5a39 user: Victor Stinner date: Sat Mar 12 09:26:54 2011 -0500 summary: Issue #3080: Remove useless name buffer from find_module() Rename subname argument to name, and mark it as constant. files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1428,7 +1428,7 @@ /* Forward */ static PyObject *load_module(char *, FILE *, char *, int, PyObject *); -static struct filedescr *find_module(char *, char *, PyObject *, +static struct filedescr *find_module(char *, const char *, PyObject *, char *, size_t, FILE **, PyObject **); static struct _frozen * find_frozen(PyObject *); @@ -1594,7 +1594,7 @@ PyObject **p_path); #endif -static int case_ok(char *, Py_ssize_t, Py_ssize_t, char *); +static int case_ok(char *, Py_ssize_t, Py_ssize_t, const char *); static int find_init_module(char *); /* Forward */ static struct filedescr importhookdescr = {"", "", IMP_HOOK}; @@ -1624,7 +1624,7 @@ set) are set to NULL. Eg. *buf is an empty string for a builtin package. */ static struct filedescr * -find_module(char *fullname, char *subname, PyObject *path, char *buf, +find_module(char *fullname, const char *name, PyObject *path, char *buf, size_t buflen, FILE **p_fp, PyObject **p_loader) { Py_ssize_t i, npath; @@ -1637,7 +1637,6 @@ static struct filedescr fd_frozen = {"", "", PY_FROZEN}; static struct filedescr fd_builtin = {"", "", C_BUILTIN}; static struct filedescr fd_package = {"", "", PKG_DIRECTORY}; - char name[MAXPATHLEN+1]; #if defined(PYOS_OS2) size_t saved_len; size_t saved_namelen; @@ -1650,12 +1649,11 @@ if (p_loader != NULL) *p_loader = NULL; - if (strlen(subname) > MAXPATHLEN) { + if (strlen(name) > MAXPATHLEN) { PyErr_SetString(PyExc_OverflowError, "module name is too long"); return NULL; } - strcpy(name, subname); /* sys.meta_path import hook */ if (p_loader != NULL) { @@ -1867,7 +1865,7 @@ * dynamically loaded module we're going to try, * truncate the name before trying */ - if (strlen(subname) > 8) { + if (strlen(name) > 8) { /* is this an attempt to load a C extension? */ const struct filedescr *scan; scan = _PyImport_DynLoadFiletab; @@ -1880,7 +1878,7 @@ if (scan->suffix != NULL) { /* yes, so truncate the name */ namelen = 8; - len -= strlen(subname) - namelen; + len -= strlen(name) - namelen; buf[len] = '\0'; } } @@ -1972,7 +1970,7 @@ #endif static int -case_ok(char *buf, Py_ssize_t len, Py_ssize_t namelen, char *name) +case_ok(char *buf, Py_ssize_t len, Py_ssize_t namelen, const char *name) { /* Pick a platform-specific implementation; the sequence of #if's here should * match the sequence just above. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:42 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:42 +0100 Subject: [Python-checkins] cpython: Issue #3080: Create find_module_path_list() subfunction Message-ID: http://hg.python.org/cpython/rev/a4d797b9ff63 changeset: 68719:a4d797b9ff63 user: Victor Stinner date: Sun Mar 20 01:34:43 2011 +0100 summary: Issue #3080: Create find_module_path_list() subfunction files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1598,168 +1598,30 @@ static int find_init_module(char *); /* Forward */ static struct filedescr importhookdescr = {"", "", IMP_HOOK}; -/* Find a module: - - - try find_module() of each sys.meta_path hook - - try find_frozen() - - try is_builtin() - - try _PyWin_FindRegisteredModule() (Windows only) - - otherwise, call find_module_path_list() with search_path_list (if not - NULL) or sys.path - - Return: - - - &fd_builtin (C_BUILTIN) if it is a builtin - - &fd_frozen (PY_FROZEN) if it is frozen - - &fd_package (PKG_DIRECTORY) and write the filename into *buf - if it is a package - - &importhookdescr (IMP_HOOK) and write the loader into *p_loader if a - importer loader was found - - a file descriptor (PY_SOURCE, PY_COMPILED, C_EXTENSION, PY_RESOURCE or - PY_CODERESOURCE: see _PyImport_Filetab), write the filename into - *buf and the pointer to the open file into *p_fp - - NULL on error - - By default, write an empty string into *buf, and *p_fp and *p_loader (if - set) are set to NULL. Eg. *buf is an empty string for a builtin package. */ - -static struct filedescr * -find_module(char *fullname, const char *name, PyObject *path, char *buf, - size_t buflen, FILE **p_fp, PyObject **p_loader) +static struct filedescr* +find_module_path_list(char *fullname, const char *name, + PyObject *search_path_list, PyObject *path_hooks, + PyObject *path_importer_cache, + char *buf, size_t buflen, + FILE **p_fp, PyObject **p_loader) { Py_ssize_t i, npath; size_t len, namelen; struct filedescr *fdp = NULL; char *filemode; FILE *fp = NULL; - PyObject *path_hooks, *path_importer_cache; struct stat statbuf; - static struct filedescr fd_frozen = {"", "", PY_FROZEN}; - static struct filedescr fd_builtin = {"", "", C_BUILTIN}; static struct filedescr fd_package = {"", "", PKG_DIRECTORY}; #if defined(PYOS_OS2) size_t saved_len; size_t saved_namelen; char *saved_buf = NULL; #endif - PyObject *fullname_obj, *nameobj; - - *buf = '\0'; - *p_fp = NULL; - if (p_loader != NULL) - *p_loader = NULL; - - if (strlen(name) > MAXPATHLEN) { - PyErr_SetString(PyExc_OverflowError, - "module name is too long"); - return NULL; - } - - /* sys.meta_path import hook */ - if (p_loader != NULL) { - PyObject *meta_path; - - meta_path = PySys_GetObject("meta_path"); - if (meta_path == NULL || !PyList_Check(meta_path)) { - PyErr_SetString(PyExc_ImportError, - "sys.meta_path must be a list of " - "import hooks"); - return NULL; - } - Py_INCREF(meta_path); /* zap guard */ - npath = PyList_Size(meta_path); - for (i = 0; i < npath; i++) { - PyObject *loader; - PyObject *hook = PyList_GetItem(meta_path, i); - loader = PyObject_CallMethod(hook, "find_module", - "sO", fullname, - path != NULL ? - path : Py_None); - if (loader == NULL) { - Py_DECREF(meta_path); - return NULL; /* true error */ - } - if (loader != Py_None) { - /* a loader was found */ - *p_loader = loader; - Py_DECREF(meta_path); - return &importhookdescr; - } - Py_DECREF(loader); - } - Py_DECREF(meta_path); - } - - if (fullname != NULL) { - fullname_obj = PyUnicode_FromString(fullname); - if (fullname == NULL) - return NULL; - if (find_frozen(fullname_obj) != NULL) { - Py_DECREF(fullname_obj); - strcpy(buf, fullname); - return &fd_frozen; - } - Py_DECREF(fullname_obj); - } - - if (path == NULL) { -#ifdef MS_COREDLL - PyObject *filename, *filename_bytes; -#endif - nameobj = PyUnicode_FromString(name); - if (nameobj == NULL) - return NULL; - if (is_builtin(nameobj)) { - Py_DECREF(nameobj); - strcpy(buf, name); - return &fd_builtin; - } -#ifdef MS_COREDLL - fp = _PyWin_FindRegisteredModule(nameobj, &fdp, &filename); - if (fp != NULL) { - Py_DECREF(nameobj); - filename_bytes = PyUnicode_EncodeFSDefault(filename); - Py_DECREF(filename); - if (filename_bytes == NULL) - return NULL; - strncpy(buf, PyBytes_AS_STRING(filename_bytes), buflen); - buf[buflen-1] = '\0'; - Py_DECREF(filename_bytes); - *p_fp = fp; - return fdp; - } - else if (PyErr_Occurred()) - return NULL; -#endif - Py_DECREF(nameobj); - path = PySys_GetObject("path"); - } - - if (path == NULL || !PyList_Check(path)) { - PyErr_SetString(PyExc_ImportError, - "sys.path must be a list of directory names"); - return NULL; - } - - path_hooks = PySys_GetObject("path_hooks"); - if (path_hooks == NULL || !PyList_Check(path_hooks)) { - PyErr_SetString(PyExc_ImportError, - "sys.path_hooks must be a list of " - "import hooks"); - return NULL; - } - path_importer_cache = PySys_GetObject("path_importer_cache"); - if (path_importer_cache == NULL || - !PyDict_Check(path_importer_cache)) { - PyErr_SetString(PyExc_ImportError, - "sys.path_importer_cache must be a dict"); - return NULL; - } - - npath = PyList_Size(path); + + npath = PyList_Size(search_path_list); namelen = strlen(name); for (i = 0; i < npath; i++) { - PyObject *v = PyList_GetItem(path, i); + PyObject *v = PyList_GetItem(search_path_list, i); PyObject *origv = v; const char *base; Py_ssize_t size; @@ -1925,6 +1787,162 @@ return fdp; } +/* Find a module: + + - try find_module() of each sys.meta_path hook + - try find_frozen() + - try is_builtin() + - try _PyWin_FindRegisteredModule() (Windows only) + - otherwise, call find_module_path_list() with search_path_list (if not + NULL) or sys.path + + Return: + + - &fd_builtin (C_BUILTIN) if it is a builtin + - &fd_frozen (PY_FROZEN) if it is frozen + - &fd_package (PKG_DIRECTORY) and write the filename into *buf + if it is a package + - &importhookdescr (IMP_HOOK) and write the loader into *p_loader if a + importer loader was found + - a file descriptor (PY_SOURCE, PY_COMPILED, C_EXTENSION, PY_RESOURCE or + PY_CODERESOURCE: see _PyImport_Filetab), write the filename into + *buf and the pointer to the open file into *p_fp + - NULL on error + + By default, write an empty string into *buf, and *p_fp and *p_loader (if + set) are set to NULL. Eg. *buf is an empty string for a builtin package. */ + +static struct filedescr * +find_module(char *fullname, const char *name, PyObject *search_path_list, + char *buf, size_t buflen, FILE **p_fp, PyObject **p_loader) +{ + Py_ssize_t i, npath; + static struct filedescr fd_frozen = {"", "", PY_FROZEN}; + static struct filedescr fd_builtin = {"", "", C_BUILTIN}; + PyObject *path_hooks, *path_importer_cache; + PyObject *fullname_obj, *nameobj; + + *buf = '\0'; + *p_fp = NULL; + if (p_loader != NULL) + *p_loader = NULL; + + if (strlen(name) > MAXPATHLEN) { + PyErr_SetString(PyExc_OverflowError, + "module name is too long"); + return NULL; + } + + /* sys.meta_path import hook */ + if (p_loader != NULL) { + PyObject *meta_path; + + meta_path = PySys_GetObject("meta_path"); + if (meta_path == NULL || !PyList_Check(meta_path)) { + PyErr_SetString(PyExc_ImportError, + "sys.meta_path must be a list of " + "import hooks"); + return NULL; + } + Py_INCREF(meta_path); /* zap guard */ + npath = PyList_Size(meta_path); + for (i = 0; i < npath; i++) { + PyObject *loader; + PyObject *hook = PyList_GetItem(meta_path, i); + loader = PyObject_CallMethod(hook, "find_module", + "sO", fullname, + search_path_list != NULL ? + search_path_list : Py_None); + if (loader == NULL) { + Py_DECREF(meta_path); + return NULL; /* true error */ + } + if (loader != Py_None) { + /* a loader was found */ + *p_loader = loader; + Py_DECREF(meta_path); + return &importhookdescr; + } + Py_DECREF(loader); + } + Py_DECREF(meta_path); + } + + if (fullname != NULL) { + fullname_obj = PyUnicode_FromString(fullname); + if (fullname == NULL) + return NULL; + if (find_frozen(fullname_obj) != NULL) { + Py_DECREF(fullname_obj); + strcpy(buf, fullname); + return &fd_frozen; + } + Py_DECREF(fullname_obj); + } + + if (search_path_list == NULL) { +#ifdef MS_COREDLL + FILE *fp; + struct filedescr *fdp; + PyObject *filename, *filename_bytes; +#endif + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + if (is_builtin(nameobj)) { + Py_DECREF(nameobj); + strcpy(buf, name); + return &fd_builtin; + } +#ifdef MS_COREDLL + fp = _PyWin_FindRegisteredModule(nameobj, &fdp, &filename); + if (fp != NULL) { + Py_DECREF(nameobj); + filename_bytes = PyUnicode_EncodeFSDefault(filename); + Py_DECREF(filename); + if (filename_bytes == NULL) + return NULL; + strncpy(buf, PyBytes_AS_STRING(filename_bytes), buflen); + buf[buflen-1] = '\0'; + Py_DECREF(filename_bytes); + *p_fp = fp; + return fdp; + } + else if (PyErr_Occurred()) + return NULL; +#endif + Py_DECREF(nameobj); + search_path_list = PySys_GetObject("path"); + } + + if (search_path_list == NULL || !PyList_Check(search_path_list)) { + PyErr_SetString(PyExc_ImportError, + "sys.path must be a list of directory names"); + return NULL; + } + + path_hooks = PySys_GetObject("path_hooks"); + if (path_hooks == NULL || !PyList_Check(path_hooks)) { + PyErr_SetString(PyExc_ImportError, + "sys.path_hooks must be a list of " + "import hooks"); + return NULL; + } + path_importer_cache = PySys_GetObject("path_importer_cache"); + if (path_importer_cache == NULL || + !PyDict_Check(path_importer_cache)) { + PyErr_SetString(PyExc_ImportError, + "sys.path_importer_cache must be a dict"); + return NULL; + } + + return find_module_path_list(fullname, name, + search_path_list, path_hooks, + path_importer_cache, + buf, buflen, + p_fp, p_loader); +} + /* case_ok(char* buf, Py_ssize_t len, Py_ssize_t namelen, char* name) * The arguments here are tricky, best shown by example: * /a/b/c/d/e/f/g/h/i/j/k/some_long_module_name.py\0 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:43 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:43 +0100 Subject: [Python-checkins] cpython: Issue #3080: Create find_module_path() subfunction Message-ID: http://hg.python.org/cpython/rev/09aaac73d9cf changeset: 68720:09aaac73d9cf user: Victor Stinner date: Sat Mar 12 16:02:28 2011 -0500 summary: Issue #3080: Create find_module_path() subfunction files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1598,6 +1598,129 @@ static int find_init_module(char *); /* Forward */ static struct filedescr importhookdescr = {"", "", IMP_HOOK}; +/* Get the path of a module: get its importer and call importer.find_module() + hook, or check if the module if a package (if path/__init__.py exists). + + -1: error: a Python error occurred + 0: ignore: an error occurred because of invalid data, but the error is not + important enough to be reported. + 1: get path: module not found, but *buf contains its path + 2: found: *p_fd is the file descriptor (IMP_HOOK or PKG_DIRECTORY) + and *buf is the path */ + +static int +find_module_path(char *fullname, const char *name, PyObject *path, + PyObject *path_hooks, PyObject *path_importer_cache, + char *buf, size_t buflen, + PyObject **p_loader, struct filedescr **p_fd) +{ + PyObject *path_bytes; + const char *base; + Py_ssize_t len; + size_t namelen; + struct stat statbuf; + static struct filedescr fd_package = {"", "", PKG_DIRECTORY}; + + if (PyUnicode_Check(path)) { + path_bytes = PyUnicode_EncodeFSDefault(path); + if (path_bytes == NULL) + return -1; + } + else if (PyBytes_Check(path)) { + Py_INCREF(path); + path_bytes = path; + } + else + return 0; + + namelen = strlen(name); + base = PyBytes_AS_STRING(path_bytes); + len = PyBytes_GET_SIZE(path_bytes); + if (len + 2 + namelen + MAXSUFFIXSIZE >= buflen) { + Py_DECREF(path_bytes); + return 0; /* Too long */ + } + strcpy(buf, base); + Py_DECREF(path_bytes); + + if (strlen(buf) != len) { + return 0; /* path_bytes contains '\0' */ + } + + /* sys.path_hooks import hook */ + if (p_loader != NULL) { + PyObject *importer; + + importer = get_path_importer(path_importer_cache, + path_hooks, path); + if (importer == NULL) { + return -1; + } + /* Note: importer is a borrowed reference */ + if (importer != Py_None) { + PyObject *loader; + loader = PyObject_CallMethod(importer, + "find_module", + "s", fullname); + if (loader == NULL) + return -1; /* error */ + if (loader != Py_None) { + /* a loader was found */ + *p_loader = loader; + *p_fd = &importhookdescr; + return 2; + } + Py_DECREF(loader); + return 0; + } + } + /* no hook was found, use builtin import */ + + if (len > 0 && buf[len-1] != SEP +#ifdef ALTSEP + && buf[len-1] != ALTSEP +#endif + ) + buf[len++] = SEP; + strcpy(buf+len, name); + len += namelen; + + /* Check for package import (buf holds a directory name, + and there's an __init__ module in that directory */ +#ifdef HAVE_STAT + if (stat(buf, &statbuf) == 0 && /* it exists */ + S_ISDIR(statbuf.st_mode) && /* it's a directory */ + case_ok(buf, len, namelen, name)) { /* case matches */ + if (find_init_module(buf)) { /* and has __init__.py */ + *p_fd = &fd_package; + return 2; + } + else { + int err; + PyObject *unicode = PyUnicode_DecodeFSDefault(buf); + if (unicode == NULL) + return -1; + err = PyErr_WarnFormat(PyExc_ImportWarning, 1, + "Not importing directory '%U': missing __init__.py", + unicode); + Py_DECREF(unicode); + if (err) + return -1; + } + } +#endif + return 1; +} + +/* Find a module in search_path_list. For each path, try + find_module_filename() or try each _PyImport_Filetab suffix. + + If the module is found, return a file descriptor, write the path in + *p_filename, write the pointer to the file object into *p_fp, and (if + p_loader is not NULL) the loader into *p_loader. + + Otherwise, raise an exception and return NULL. */ + static struct filedescr* find_module_path_list(char *fullname, const char *name, PyObject *search_path_list, PyObject *path_hooks, @@ -1610,8 +1733,6 @@ struct filedescr *fdp = NULL; char *filemode; FILE *fp = NULL; - struct stat statbuf; - static struct filedescr fd_package = {"", "", PKG_DIRECTORY}; #if defined(PYOS_OS2) size_t saved_len; size_t saved_namelen; @@ -1621,96 +1742,25 @@ npath = PyList_Size(search_path_list); namelen = strlen(name); for (i = 0; i < npath; i++) { - PyObject *v = PyList_GetItem(search_path_list, i); - PyObject *origv = v; - const char *base; - Py_ssize_t size; - if (!v) + PyObject *path; + int ok; + + path = PyList_GetItem(search_path_list, i); + if (path == NULL) return NULL; - if (PyUnicode_Check(v)) { - v = PyUnicode_EncodeFSDefault(v); - if (v == NULL) - return NULL; - } - else if (!PyBytes_Check(v)) + + ok = find_module_path(fullname, name, path, + path_hooks, path_importer_cache, + buf, buflen, + p_loader, &fdp); + if (ok < 0) + return NULL; + if (ok == 0) continue; - else - Py_INCREF(v); - - base = PyBytes_AS_STRING(v); - size = PyBytes_GET_SIZE(v); - len = size; - if (len + 2 + namelen + MAXSUFFIXSIZE >= buflen) { - Py_DECREF(v); - continue; /* Too long */ - } - strcpy(buf, base); - Py_DECREF(v); - - if (strlen(buf) != len) { - continue; /* v contains '\0' */ - } - - /* sys.path_hooks import hook */ - if (p_loader != NULL) { - PyObject *importer; - - importer = get_path_importer(path_importer_cache, - path_hooks, origv); - if (importer == NULL) { - return NULL; - } - /* Note: importer is a borrowed reference */ - if (importer != Py_None) { - PyObject *loader; - loader = PyObject_CallMethod(importer, - "find_module", - "s", fullname); - if (loader == NULL) - return NULL; /* error */ - if (loader != Py_None) { - /* a loader was found */ - *p_loader = loader; - return &importhookdescr; - } - Py_DECREF(loader); - continue; - } - } - /* no hook was found, use builtin import */ - - if (len > 0 && buf[len-1] != SEP -#ifdef ALTSEP - && buf[len-1] != ALTSEP -#endif - ) - buf[len++] = SEP; - strcpy(buf+len, name); - len += namelen; - - /* Check for package import (buf holds a directory name, - and there's an __init__ module in that directory */ -#ifdef HAVE_STAT - if (stat(buf, &statbuf) == 0 && /* it exists */ - S_ISDIR(statbuf.st_mode) && /* it's a directory */ - case_ok(buf, len, namelen, name)) { /* case matches */ - if (find_init_module(buf)) { /* and has __init__.py */ - return &fd_package; - } - else { - int err; - PyObject *unicode = PyUnicode_DecodeFSDefault(buf); - if (unicode == NULL) - return NULL; - err = PyErr_WarnFormat(PyExc_ImportWarning, 1, - "Not importing directory '%U': missing __init__.py", - unicode); - Py_DECREF(unicode); - if (err) - return NULL; - } - } -#endif + if (ok == 2) + return fdp; + + len = strlen(buf); #if defined(PYOS_OS2) /* take a snapshot of the module spec for restoration * after the 8 character DLL hackery -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:44 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:44 +0100 Subject: [Python-checkins] cpython: Issue #3080: get_sourcefile(), make_source_pathname(), load_package() Message-ID: http://hg.python.org/cpython/rev/f6507eb8e689 changeset: 68721:f6507eb8e689 user: Victor Stinner date: Mon Mar 14 13:33:46 2011 -0400 summary: Issue #3080: get_sourcefile(), make_source_pathname(), load_package() Use Unicode for module name and path in get_sourcefile(), make_source_pathname() and load_package() functions. files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -113,6 +113,8 @@ #define MAGIC (3180 | ((long)'\r'<<16) | ((long)'\n'<<24)) #define TAG "cpython-32" #define CACHEDIR "__pycache__" +static const Py_UNICODE CACHEDIR_UNICODE[] = { + '_', '_', 'p', 'y', 'c', 'a', 'c', 'h', 'e', '_', '_', '\0'}; /* Current magic word and string tag as globals. */ static long pyc_magic = MAGIC; static const char *pyc_tag = TAG; @@ -741,8 +743,8 @@ "sys.modules failed"); } -static PyObject * get_sourcefile(char *file); -static char *make_source_pathname(char *pathname, char *buf); +static PyObject * get_sourcefile(PyObject *filename); +static PyObject *make_source_pathname(PyObject *pathname); static char *make_compiled_pathname(char *pathname, char *buf, size_t buflen, int debug); @@ -807,7 +809,6 @@ { PyObject *modules = PyImport_GetModuleDict(); PyObject *m, *d, *v; - PyObject *pathbytes; m = PyImport_AddModuleObject(name); if (m == NULL) @@ -822,12 +823,7 @@ } /* Remember the filename as the __file__ attribute */ if (pathname != NULL) { - pathbytes = PyUnicode_EncodeFSDefault(pathname); - if (pathbytes != NULL) { - v = get_sourcefile(PyBytes_AS_STRING(pathbytes)); - Py_DECREF(pathbytes); - } else - v = NULL; + v = get_sourcefile(pathname); if (v == NULL) PyErr_Clear(); } @@ -892,6 +888,27 @@ } +/* Like strrchr(string, '/') but searches for the rightmost of either SEP + or ALTSEP, if the latter is defined. +*/ +static Py_UNICODE* +rightmost_sep_unicode(Py_UNICODE *s) +{ + Py_UNICODE *found, c; + for (found = NULL; (c = *s); s++) { + if (c == SEP +#ifdef ALTSEP + || c == ALTSEP +#endif + ) + { + found = s; + } + } + return found; +} + + /* Given a pathname for a Python source file, fill a buffer with the pathname for the corresponding compiled file. Return the pathname for the compiled file, or NULL if there's no space in the buffer. @@ -1005,42 +1022,50 @@ source file, if the path matches the PEP 3147 format. This does not check for any file existence, however, if the pyc file name does not match PEP 3147 style, NULL is returned. buf must be at least as big as pathname; - the resulting path will always be shorter. */ - -static char * -make_source_pathname(char *pathname, char *buf) + the resulting path will always be shorter. + + (...)/__pycache__/foo..pyc -> (...)/foo.py */ + +static PyObject* +make_source_pathname(PyObject *pathobj) { - /* __pycache__/foo..pyc -> foo.py */ + Py_UNICODE buf[MAXPATHLEN]; + Py_UNICODE *pathname; + Py_UNICODE *left, *right, *dot0, *dot1, sep; size_t i, j; - char *left, *right, *dot0, *dot1, sep; + + if (PyUnicode_GET_SIZE(pathobj) > MAXPATHLEN) + return NULL; + pathname = PyUnicode_AS_UNICODE(pathobj); /* Look back two slashes from the end. In between these two slashes must be the string __pycache__ or this is not a PEP 3147 style path. It's possible for there to be only one slash. */ - if ((right = rightmost_sep(pathname)) == NULL) + right = rightmost_sep_unicode(pathname); + if (right == NULL) return NULL; sep = *right; *right = '\0'; - left = rightmost_sep(pathname); + left = rightmost_sep_unicode(pathname); *right = sep; if (left == NULL) left = pathname; else left++; - if (right-left != strlen(CACHEDIR) || - strncmp(left, CACHEDIR, right-left) != 0) + if (right-left != Py_UNICODE_strlen(CACHEDIR_UNICODE) || + Py_UNICODE_strncmp(left, CACHEDIR_UNICODE, right-left) != 0) return NULL; /* Now verify that the path component to the right of the last slash has two dots in it. */ - if ((dot0 = strchr(right + 1, '.')) == NULL) + if ((dot0 = Py_UNICODE_strchr(right + 1, '.')) == NULL) return NULL; - if ((dot1 = strchr(dot0 + 1, '.')) == NULL) + if ((dot1 = Py_UNICODE_strchr(dot0 + 1, '.')) == NULL) return NULL; /* Too many dots? */ - if (strchr(dot1 + 1, '.') != NULL) + if (Py_UNICODE_strchr(dot1 + 1, '.') != NULL) return NULL; /* This is a PEP 3147 path. Start by copying everything from the @@ -1048,10 +1073,11 @@ copy the file's basename, removing the magic tag and adding a .py suffix. */ - strncpy(buf, pathname, (i=left-pathname)); - strncpy(buf+i, right+1, (j=dot0-right)); - strcpy(buf+i+j, "py"); - return buf; + Py_UNICODE_strncpy(buf, pathname, (i=left-pathname)); + Py_UNICODE_strncpy(buf+i, right+1, (j=dot0-right)); + buf[i+j] = 'p'; + buf[i+j+1] = 'y'; + return PyUnicode_FromUnicode(buf, i+j+2); } /* Given a pathname for a Python source file, its time of last @@ -1390,40 +1416,47 @@ * Returns the path to the py file if available, else the given path */ static PyObject * -get_sourcefile(char *file) +get_sourcefile(PyObject *filename) { - char py[MAXPATHLEN + 1]; Py_ssize_t len; - PyObject *u; + Py_UNICODE *fileuni; + PyObject *py; struct stat statbuf; - if (!file || !*file) { + len = PyUnicode_GET_SIZE(filename); + if (len == 0) Py_RETURN_NONE; - } - - len = strlen(file); - /* match '*.py?' */ - if (len > MAXPATHLEN || PyOS_strnicmp(&file[len-4], ".py", 3) != 0) { - return PyUnicode_DecodeFSDefault(file); - } + + /* don't match *.pyc or *.pyo? */ + fileuni = PyUnicode_AS_UNICODE(filename); + if (len < 5 + || fileuni[len-4] != '.' + || (fileuni[len-3] != 'p' && fileuni[len-3] != 'P') + || (fileuni[len-2] != 'y' && fileuni[len-2] != 'Y')) + goto unchanged; /* Start by trying to turn PEP 3147 path into source path. If that * fails, just chop off the trailing character, i.e. legacy pyc path * to py. */ - if (make_source_pathname(file, py) == NULL) { - strncpy(py, file, len-1); - py[len-1] = '\0'; + py = make_source_pathname(filename); + if (py == NULL) { + PyErr_Clear(); + py = PyUnicode_FromUnicode(fileuni, len - 1); } - - if (stat(py, &statbuf) == 0 && - S_ISREG(statbuf.st_mode)) { - u = PyUnicode_DecodeFSDefault(py); - } - else { - u = PyUnicode_DecodeFSDefault(file); - } - return u; + if (py == NULL) + goto error; + + if (_Py_stat(py, &statbuf) == 0 && S_ISREG(statbuf.st_mode)) + return py; + Py_DECREF(py); + goto unchanged; + +error: + PyErr_Clear(); +unchanged: + Py_INCREF(filename); + return filename; } /* Forward */ @@ -1436,54 +1469,56 @@ REFERENCE COUNT */ static PyObject * -load_package(char *name, char *pathname) +load_package(PyObject *name, PyObject *pathname) { PyObject *m, *d; - PyObject *file = NULL; - PyObject *path = NULL; + PyObject *file = NULL, *path_list = NULL; int err; char buf[MAXPATHLEN+1]; - FILE *fp; + FILE *fp = NULL; struct filedescr *fdp; - - m = PyImport_AddModule(name); + char *namestr; + + m = PyImport_AddModuleObject(name); if (m == NULL) return NULL; if (Py_VerboseFlag) - PySys_WriteStderr("import %s # directory %s\n", + PySys_FormatStderr("import %U # directory %U\n", name, pathname); - d = PyModule_GetDict(m); file = get_sourcefile(pathname); if (file == NULL) + return NULL; + path_list = Py_BuildValue("[O]", file); + if (path_list == NULL) { + Py_DECREF(file); + return NULL; + } + d = PyModule_GetDict(m); + err = PyDict_SetItemString(d, "__file__", file); + Py_DECREF(file); + if (err == 0) + err = PyDict_SetItemString(d, "__path__", path_list); + if (err != 0) { + Py_DECREF(path_list); + return NULL; + } + namestr = _PyUnicode_AsString(name); + if (namestr == NULL) goto error; - path = Py_BuildValue("[O]", file); - if (path == NULL) - goto error; - err = PyDict_SetItemString(d, "__file__", file); - if (err == 0) - err = PyDict_SetItemString(d, "__path__", path); - if (err != 0) - goto error; - fdp = find_module(name, "__init__", path, buf, sizeof(buf), &fp, NULL); + fdp = find_module(namestr, "__init__", path_list, buf, sizeof(buf), &fp, NULL); + Py_DECREF(path_list); if (fdp == NULL) { if (PyErr_ExceptionMatches(PyExc_ImportError)) { PyErr_Clear(); Py_INCREF(m); + return m; } else - m = NULL; - goto cleanup; + return NULL; } - m = load_module(name, fp, buf, fdp->type, NULL); + m = load_module(namestr, fp, buf, fdp->type, NULL); if (fp != NULL) fclose(fp); - goto cleanup; - - error: - m = NULL; - cleanup: - Py_XDECREF(path); - Py_XDECREF(file); return m; } @@ -2282,9 +2317,21 @@ } #endif - case PKG_DIRECTORY: - m = load_package(name, pathname); + case PKG_DIRECTORY: { + PyObject *nameobj, *pathobj; + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + pathobj = PyUnicode_DecodeFSDefault(pathname); + if (pathobj == NULL) { + Py_DECREF(nameobj); + return NULL; + } + m = load_package(nameobj, pathobj); + Py_DECREF(nameobj); + Py_DECREF(pathobj); break; + } case C_BUILTIN: case PY_FROZEN: { @@ -3637,13 +3684,12 @@ static PyObject * imp_load_package(PyObject *self, PyObject *args) { - char *name; - PyObject *pathname; + PyObject *name, *pathname; PyObject * ret; - if (!PyArg_ParseTuple(args, "sO&:load_package", - &name, PyUnicode_FSConverter, &pathname)) + if (!PyArg_ParseTuple(args, "UO&:load_package", + &name, PyUnicode_FSDecoder, &pathname)) return NULL; - ret = load_package(name, PyBytes_AS_STRING(pathname)); + ret = load_package(name, pathname); Py_DECREF(pathname); return ret; } @@ -3716,25 +3762,22 @@ imp_source_from_cache(PyObject *self, PyObject *args, PyObject *kws) { static char *kwlist[] = {"path", NULL}; - - PyObject *pathname_obj; - char *pathname; - char buf[MAXPATHLEN+1]; + PyObject *pathname, *source; if (!PyArg_ParseTupleAndKeywords( args, kws, "O&", kwlist, - PyUnicode_FSConverter, &pathname_obj)) + PyUnicode_FSDecoder, &pathname)) return NULL; - pathname = PyBytes_AS_STRING(pathname_obj); - if (make_source_pathname(pathname, buf) == NULL) { - PyErr_Format(PyExc_ValueError, "Not a PEP 3147 pyc path: %s", + source = make_source_pathname(pathname); + if (source == NULL) { + PyErr_Format(PyExc_ValueError, "Not a PEP 3147 pyc path: %R", pathname); - Py_DECREF(pathname_obj); + Py_DECREF(pathname); return NULL; } - Py_DECREF(pathname_obj); - return PyUnicode_FromString(buf); + Py_DECREF(pathname); + return source; } PyDoc_STRVAR(doc_source_from_cache, -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:45 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:45 +0100 Subject: [Python-checkins] cpython: Issue #3080: Use Unicode to import source and compiled modules Message-ID: http://hg.python.org/cpython/rev/d24decc8c97e changeset: 68722:d24decc8c97e user: Victor Stinner date: Sun Mar 20 00:41:24 2011 +0100 summary: Issue #3080: Use Unicode to import source and compiled modules * Use Unicode for module name and path in the following functions: * get_file() * load_source_module(), parse_source_module() * make_compiled_pathname(), check_compiled_module(), read_compiled_module(), load_compiled_module(), write_compiled_module(), update_compiled_module() * On Windows, use CreateDirectoryW() instead of mkdir() * update_compiled_module() cannot fail anymore files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -107,8 +107,8 @@ /* MAGIC must change whenever the bytecode emitted by the compiler may no longer be understood by older implementations of the eval loop (usually due to the addition of new opcodes) - TAG must change for each major Python release. The magic number will take - care of any bytecode changes that occur during development. + TAG and PYC_TAG_UNICODE must change for each major Python release. The magic + number will take care of any bytecode changes that occur during development. */ #define MAGIC (3180 | ((long)'\r'<<16) | ((long)'\n'<<24)) #define TAG "cpython-32" @@ -118,6 +118,8 @@ /* Current magic word and string tag as globals. */ static long pyc_magic = MAGIC; static const char *pyc_tag = TAG; +static const Py_UNICODE PYC_TAG_UNICODE[] = { + 'c', 'p', 'y', 't', 'h', 'o', 'n', '-', '3', '2', '\0'}; /* See _PyImport_FixupExtensionObject() below */ static PyObject *extensions = NULL; @@ -745,8 +747,7 @@ static PyObject * get_sourcefile(PyObject *filename); static PyObject *make_source_pathname(PyObject *pathname); -static char *make_compiled_pathname(char *pathname, char *buf, size_t buflen, - int debug); +static PyObject* make_compiled_pathname(Py_UNICODE *pathname, int debug); /* Execute a code object in a module and return the module object * WITH INCREMENTED REFERENCE COUNT. If an error occurs, name is @@ -870,29 +871,8 @@ /* Like strrchr(string, '/') but searches for the rightmost of either SEP or ALTSEP, if the latter is defined. */ -static char * -rightmost_sep(char *s) -{ - char *found, c; - for (found = NULL; (c = *s); s++) { - if (c == SEP -#ifdef ALTSEP - || c == ALTSEP -#endif - ) - { - found = s; - } - } - return found; -} - - -/* Like strrchr(string, '/') but searches for the rightmost of either SEP - or ALTSEP, if the latter is defined. -*/ static Py_UNICODE* -rightmost_sep_unicode(Py_UNICODE *s) +rightmost_sep(Py_UNICODE *s) { Py_UNICODE *found, c; for (found = NULL; (c = *s); s++) { @@ -912,15 +892,18 @@ /* Given a pathname for a Python source file, fill a buffer with the pathname for the corresponding compiled file. Return the pathname for the compiled file, or NULL if there's no space in the buffer. - Doesn't set an exception. */ - -static char * -make_compiled_pathname(char *pathname, char *buf, size_t buflen, int debug) + Doesn't set an exception. + + foo.py -> __pycache__/foo..pyc */ + +static PyObject* +make_compiled_pathname(Py_UNICODE *pathname, int debug) { - /* foo.py -> __pycache__/foo..pyc */ - size_t len = strlen(pathname); + Py_UNICODE buf[MAXPATHLEN]; + size_t buflen = (size_t)MAXPATHLEN; + size_t len = Py_UNICODE_strlen(pathname); size_t i, save; - char *pos; + Py_UNICODE *pos; int sep = SEP; /* Sanity check that the buffer has roughly enough space to hold what @@ -932,35 +915,37 @@ sanity check before writing the extension to ensure we do not overflow the buffer. */ - if (len + strlen(CACHEDIR) + strlen(pyc_tag) + 5 > buflen) + if (len + Py_UNICODE_strlen(CACHEDIR_UNICODE) + Py_UNICODE_strlen(PYC_TAG_UNICODE) + 5 > buflen) return NULL; /* Find the last path separator and copy everything from the start of the source string up to and including the separator. */ - if ((pos = rightmost_sep(pathname)) == NULL) { + pos = rightmost_sep(pathname); + if (pos == NULL) { i = 0; } else { sep = *pos; i = pos - pathname + 1; - strncpy(buf, pathname, i); + Py_UNICODE_strncpy(buf, pathname, i); } save = i; buf[i++] = '\0'; /* Add __pycache__/ */ - strcat(buf, CACHEDIR); - i += strlen(CACHEDIR) - 1; + Py_UNICODE_strcat(buf, CACHEDIR_UNICODE); + i += Py_UNICODE_strlen(CACHEDIR_UNICODE) - 1; buf[i++] = sep; buf[i++] = '\0'; /* Add the base filename, but remove the .py or .pyw extension, since the tag name must go before the extension. */ - strcat(buf, pathname + save); - if ((pos = strrchr(buf, '.')) != NULL) + Py_UNICODE_strcat(buf, pathname + save); + pos = Py_UNICODE_strrchr(buf, '.'); + if (pos != NULL) *++pos = '\0'; - strcat(buf, pyc_tag); + Py_UNICODE_strcat(buf, PYC_TAG_UNICODE); /* The length test above assumes that we're only adding one character to the end of what would normally be the extension. What if there is no extension, or the string ends in '.' or '.p', and otherwise @@ -1010,11 +995,15 @@ #if 0 printf("strlen(buf): %d; buflen: %d\n", (int)strlen(buf), (int)buflen); #endif - if (strlen(buf) + 5 > buflen) + len = Py_UNICODE_strlen(buf); + if (len + 5 > buflen) return NULL; - strcat(buf, debug ? ".pyc" : ".pyo"); - assert(strlen(buf) < buflen); - return buf; + buf[len] = '.'; len++; + buf[len] = 'p'; len++; + buf[len] = 'y'; len++; + buf[len] = debug ? 'c' : 'o'; len++; + assert(len <= buflen); + return PyUnicode_FromUnicode(buf, len); } @@ -1042,12 +1031,12 @@ must be the string __pycache__ or this is not a PEP 3147 style path. It's possible for there to be only one slash. */ - right = rightmost_sep_unicode(pathname); + right = rightmost_sep(pathname); if (right == NULL) return NULL; sep = *right; *right = '\0'; - left = rightmost_sep_unicode(pathname); + left = rightmost_sep(pathname); *right = sep; if (left == NULL) left = pathname; @@ -1088,31 +1077,31 @@ Doesn't set an exception. */ static FILE * -check_compiled_module(char *pathname, time_t mtime, char *cpathname) +check_compiled_module(PyObject *pathname, time_t mtime, PyObject *cpathname) { FILE *fp; long magic; long pyc_mtime; - fp = fopen(cpathname, "rb"); + fp = _Py_fopen(cpathname, "rb"); if (fp == NULL) return NULL; magic = PyMarshal_ReadLongFromFile(fp); if (magic != pyc_magic) { if (Py_VerboseFlag) - PySys_WriteStderr("# %s has bad magic\n", cpathname); + PySys_FormatStderr("# %R has bad magic\n", cpathname); fclose(fp); return NULL; } pyc_mtime = PyMarshal_ReadLongFromFile(fp); if (pyc_mtime != mtime) { if (Py_VerboseFlag) - PySys_WriteStderr("# %s has bad mtime\n", cpathname); + PySys_FormatStderr("# %R has bad mtime\n", cpathname); fclose(fp); return NULL; } if (Py_VerboseFlag) - PySys_WriteStderr("# %s matches %s\n", cpathname, pathname); + PySys_FormatStderr("# %R matches %R\n", cpathname, pathname); return fp; } @@ -1120,7 +1109,7 @@ /* Read a code object from a file and check it for validity */ static PyCodeObject * -read_compiled_module(char *cpathname, FILE *fp) +read_compiled_module(PyObject *cpathname, FILE *fp) { PyObject *co; @@ -1129,7 +1118,7 @@ return NULL; if (!PyCode_Check(co)) { PyErr_Format(PyExc_ImportError, - "Non-code object in %.200s", cpathname); + "Non-code object in %R", cpathname); Py_DECREF(co); return NULL; } @@ -1141,7 +1130,7 @@ module object WITH INCREMENTED REFERENCE COUNT */ static PyObject * -load_compiled_module(char *name, char *cpathname, FILE *fp) +load_compiled_module(PyObject *name, PyObject *cpathname, FILE *fp) { long magic; PyCodeObject *co; @@ -1150,7 +1139,7 @@ magic = PyMarshal_ReadLongFromFile(fp); if (magic != pyc_magic) { PyErr_Format(PyExc_ImportError, - "Bad magic number in %.200s", cpathname); + "Bad magic number in %R", cpathname); return NULL; } (void) PyMarshal_ReadLongFromFile(fp); @@ -1158,10 +1147,10 @@ if (co == NULL) return NULL; if (Py_VerboseFlag) - PySys_WriteStderr("import %s # precompiled from %s\n", - name, cpathname); - m = PyImport_ExecCodeModuleWithPathnames( - name, (PyObject *)co, cpathname, cpathname); + PySys_FormatStderr("import %U # precompiled from %R\n", + name, cpathname); + m = PyImport_ExecCodeModuleObject(name, (PyObject *)co, + cpathname, cpathname); Py_DECREF(co); return m; @@ -1170,27 +1159,37 @@ /* Parse a source file and return the corresponding code object */ static PyCodeObject * -parse_source_module(const char *pathname, FILE *fp) +parse_source_module(PyObject *pathname, FILE *fp) { - PyCodeObject *co = NULL; + PyCodeObject *co; + PyObject *pathbytes; mod_ty mod; PyCompilerFlags flags; - PyArena *arena = PyArena_New(); - if (arena == NULL) + PyArena *arena; + + pathbytes = PyUnicode_EncodeFSDefault(pathname); + if (pathbytes == NULL) return NULL; + arena = PyArena_New(); + if (arena == NULL) { + Py_DECREF(pathbytes); + return NULL; + } + flags.cf_flags = 0; - mod = PyParser_ASTFromFile(fp, pathname, NULL, + mod = PyParser_ASTFromFile(fp, PyBytes_AS_STRING(pathbytes), NULL, Py_file_input, 0, 0, &flags, NULL, arena); - if (mod) { - co = PyAST_Compile(mod, pathname, NULL, arena); - } + if (mod != NULL) + co = PyAST_Compile(mod, PyBytes_AS_STRING(pathbytes), NULL, arena); + else + co = NULL; + Py_DECREF(pathbytes); PyArena_Free(arena); return co; } - /* Helper to open a bytecode file for writing in exclusive mode */ static FILE * @@ -1231,10 +1230,10 @@ remove the file. */ static void -write_compiled_module(PyCodeObject *co, char *cpathname, struct stat *srcstat) +write_compiled_module(PyCodeObject *co, PyObject *cpathname, + struct stat *srcstat) { FILE *fp; - char *dirpath; time_t mtime = srcstat->st_mtime; #ifdef MS_WINDOWS /* since Windows uses different permissions */ mode_t mode = srcstat->st_mode & ~S_IEXEC; @@ -1243,39 +1242,64 @@ mode_t dirmode = (srcstat->st_mode | S_IXUSR | S_IXGRP | S_IXOTH | S_IWUSR | S_IWGRP | S_IWOTH); + PyObject *dirbytes; #endif - int saved; + PyObject *cpathbytes, *dirname; + Py_UNICODE *dirsep; + int res, ok; /* Ensure that the __pycache__ directory exists. */ - dirpath = rightmost_sep(cpathname); - if (dirpath == NULL) { + dirsep = rightmost_sep(PyUnicode_AS_UNICODE(cpathname)); + if (dirsep == NULL) { if (Py_VerboseFlag) - PySys_WriteStderr( - "# no %s path found %s\n", - CACHEDIR, cpathname); + PySys_FormatStderr("# no %s path found %R\n", CACHEDIR, cpathname); return; } - saved = *dirpath; - *dirpath = '\0'; - -#ifdef MS_WINDOWS - if (_mkdir(cpathname) < 0 && errno != EEXIST) { -#else - if (mkdir(cpathname, dirmode) < 0 && errno != EEXIST) { -#endif - *dirpath = saved; - if (Py_VerboseFlag) - PySys_WriteStderr( - "# cannot create cache dir %s\n", cpathname); + dirname = PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(cpathname), + dirsep - PyUnicode_AS_UNICODE(cpathname)); + if (dirname == NULL) { + PyErr_Clear(); return; } - *dirpath = saved; - - fp = open_exclusive(cpathname, mode); + +#ifdef MS_WINDOWS + res = CreateDirectoryW(PyUnicode_AS_UNICODE(dirname), NULL); + ok = (res != 0); + if (!ok && GetLastError() == ERROR_ALREADY_EXISTS) + ok = 1; +#else + dirbytes = PyUnicode_EncodeFSDefault(dirname); + if (dirbytes == NULL) { + PyErr_Clear(); + return; + } + res = mkdir(PyBytes_AS_STRING(dirbytes), dirmode); + Py_DECREF(dirbytes); + if (0 <= res) + ok = 1; + else + ok = (errno == EEXIST); +#endif + if (!ok) { + if (Py_VerboseFlag) + PySys_FormatStderr("# cannot create cache dir %R\n", dirname); + Py_DECREF(dirname); + return; + } + Py_DECREF(dirname); + + cpathbytes = PyUnicode_EncodeFSDefault(cpathname); + if (cpathbytes == NULL) { + PyErr_Clear(); + return; + } + + fp = open_exclusive(PyBytes_AS_STRING(cpathbytes), mode); if (fp == NULL) { if (Py_VerboseFlag) - PySys_WriteStderr( - "# can't create %s\n", cpathname); + PySys_FormatStderr( + "# can't create %R\n", cpathname); + Py_DECREF(cpathbytes); return; } PyMarshal_WriteLongToFile(pyc_magic, fp, Py_MARSHAL_VERSION); @@ -1284,12 +1308,18 @@ PyMarshal_WriteObjectToFile((PyObject *)co, fp, Py_MARSHAL_VERSION); if (fflush(fp) != 0 || ferror(fp)) { if (Py_VerboseFlag) - PySys_WriteStderr("# can't write %s\n", cpathname); + PySys_FormatStderr("# can't write %R\n", cpathname); /* Don't keep partial file */ fclose(fp); - (void) unlink(cpathname); +#ifdef MS_WINDOWS + (void)DeleteFileW(PyUnicode_AS_UNICODE(cpathname)); +#else + (void) unlink(PyBytes_AS_STRING(cpathbytes)); +#endif + Py_DECREF(cpathbytes); return; } + Py_DECREF(cpathbytes); /* Now write the true mtime */ fseek(fp, 4L, 0); assert(mtime < LONG_MAX); @@ -1297,7 +1327,7 @@ fflush(fp); fclose(fp); if (Py_VerboseFlag) - PySys_WriteStderr("# wrote %s\n", cpathname); + PySys_FormatStderr("# wrote %R\n", cpathname); } static void @@ -1324,26 +1354,18 @@ } } -static int -update_compiled_module(PyCodeObject *co, char *pathname) +static void +update_compiled_module(PyCodeObject *co, PyObject *newname) { - PyObject *oldname, *newname; - - newname = PyUnicode_DecodeFSDefault(pathname); - if (newname == NULL) - return -1; - - if (!PyUnicode_Compare(co->co_filename, newname)) { - Py_DECREF(newname); - return 0; - } + PyObject *oldname; + + if (PyUnicode_Compare(co->co_filename, newname) == 0) + return; oldname = co->co_filename; Py_INCREF(oldname); update_code_filenames(co, oldname, newname); Py_DECREF(oldname); - Py_DECREF(newname); - return 1; } /* Load a source module from a given file and return its module @@ -1351,20 +1373,19 @@ byte-compiled file, use that instead. */ static PyObject * -load_source_module(char *name, char *pathname, FILE *fp) +load_source_module(PyObject *name, PyObject *pathname, FILE *fp) { struct stat st; FILE *fpc; - char buf[MAXPATHLEN+1]; - char *cpathname; + PyObject *cpathname = NULL, *cpathbytes = NULL; PyCodeObject *co; - PyObject *m; + PyObject *m = NULL; if (fstat(fileno(fp), &st) != 0) { PyErr_Format(PyExc_RuntimeError, - "unable to get file status from '%s'", + "unable to get file status from %R", pathname); - return NULL; + goto error; } #if SIZEOF_TIME_T > 4 /* Python's .pyc timestamp handling presumes that the timestamp fits @@ -1374,41 +1395,50 @@ if (st.st_mtime >> 32) { PyErr_SetString(PyExc_OverflowError, "modification time overflows a 4 byte field"); - return NULL; + goto error; } #endif cpathname = make_compiled_pathname( - pathname, buf, (size_t)MAXPATHLEN + 1, !Py_OptimizeFlag); - if (cpathname != NULL && - (fpc = check_compiled_module(pathname, st.st_mtime, cpathname))) { + PyUnicode_AS_UNICODE(pathname), + !Py_OptimizeFlag); + + if (cpathname != NULL) + fpc = check_compiled_module(pathname, st.st_mtime, cpathname); + else + fpc = NULL; + + if (fpc) { co = read_compiled_module(cpathname, fpc); fclose(fpc); if (co == NULL) - return NULL; - if (update_compiled_module(co, pathname) < 0) - return NULL; + goto error; + update_compiled_module(co, pathname); if (Py_VerboseFlag) - PySys_WriteStderr("import %s # precompiled from %s\n", - name, cpathname); - pathname = cpathname; + PySys_FormatStderr("import %U # precompiled from %R\n", + name, cpathname); + m = PyImport_ExecCodeModuleObject(name, (PyObject *)co, + cpathname, cpathname); } else { co = parse_source_module(pathname, fp); if (co == NULL) - return NULL; + goto error; if (Py_VerboseFlag) - PySys_WriteStderr("import %s # from %s\n", + PySys_FormatStderr("import %U # from %R\n", name, pathname); - if (cpathname) { + if (cpathname != NULL) { PyObject *ro = PySys_GetObject("dont_write_bytecode"); if (ro == NULL || !PyObject_IsTrue(ro)) write_compiled_module(co, cpathname, &st); } + m = PyImport_ExecCodeModuleObject(name, (PyObject *)co, + pathname, cpathname); } - m = PyImport_ExecCodeModuleWithPathnames( - name, (PyObject *)co, pathname, cpathname); Py_DECREF(co); +error: + Py_XDECREF(cpathbytes); + Py_XDECREF(cpathname); return m; } @@ -2291,13 +2321,37 @@ switch (type) { - case PY_SOURCE: - m = load_source_module(name, pathname, fp); + case PY_SOURCE: { + PyObject *nameobj, *pathobj; + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + pathobj = PyUnicode_DecodeFSDefault(pathname); + if (pathobj == NULL) { + Py_DECREF(nameobj); + return NULL; + } + m = load_source_module(nameobj, pathobj, fp); + Py_DECREF(nameobj); + Py_DECREF(pathobj); break; - - case PY_COMPILED: - m = load_compiled_module(name, pathname, fp); + } + + case PY_COMPILED: { + PyObject *nameobj, *pathobj; + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + pathobj = PyUnicode_DecodeFSDefault(pathname); + if (pathobj == NULL) { + Py_DECREF(nameobj); + return NULL; + } + m = load_compiled_module(nameobj, pathobj, fp); + Py_DECREF(nameobj); + Py_DECREF(pathobj); break; + } #ifdef HAVE_DYNAMIC_LOADING case C_EXTENSION: { @@ -3533,13 +3587,13 @@ } static FILE * -get_file(char *pathname, PyObject *fob, char *mode) +get_file(PyObject *pathname, PyObject *fob, char *mode) { FILE *fp; if (mode[0] == 'U') mode = "r" PY_STDIOTEXTMODE; if (fob == NULL) { - fp = fopen(pathname, mode); + fp = _Py_fopen(pathname, mode); } else { int fd = PyObject_AsFileDescriptor(fob); @@ -3565,22 +3619,21 @@ static PyObject * imp_load_compiled(PyObject *self, PyObject *args) { - char *name; - PyObject *pathname; + PyObject *name, *pathname; PyObject *fob = NULL; PyObject *m; FILE *fp; - if (!PyArg_ParseTuple(args, "sO&|O:load_compiled", + if (!PyArg_ParseTuple(args, "UO&|O:load_compiled", &name, - PyUnicode_FSConverter, &pathname, + PyUnicode_FSDecoder, &pathname, &fob)) return NULL; - fp = get_file(PyBytes_AS_STRING(pathname), fob, "rb"); + fp = get_file(pathname, fob, "rb"); if (fp == NULL) { Py_DECREF(pathname); return NULL; } - m = load_compiled_module(name, PyBytes_AS_STRING(pathname), fp); + m = load_compiled_module(name, pathname, fp); fclose(fp); Py_DECREF(pathname); return m; @@ -3615,22 +3668,21 @@ static PyObject * imp_load_source(PyObject *self, PyObject *args) { - char *name; - PyObject *pathname; + PyObject *name, *pathname; PyObject *fob = NULL; PyObject *m; FILE *fp; - if (!PyArg_ParseTuple(args, "sO&|O:load_source", + if (!PyArg_ParseTuple(args, "UO&|O:load_source", &name, - PyUnicode_FSConverter, &pathname, + PyUnicode_FSDecoder, &pathname, &fob)) return NULL; - fp = get_file(PyBytes_AS_STRING(pathname), fob, "r"); + fp = get_file(pathname, fob, "r"); if (fp == NULL) { Py_DECREF(pathname); return NULL; } - m = load_source_module(name, PyBytes_AS_STRING(pathname), fp); + m = load_source_module(name, pathname, fp); Py_DECREF(pathname); fclose(fp); return m; @@ -3719,33 +3771,31 @@ { static char *kwlist[] = {"path", "debug_override", NULL}; - char buf[MAXPATHLEN+1]; - PyObject *pathbytes; - char *cpathname; + PyObject *pathname, *cpathname; PyObject *debug_override = NULL; int debug = !Py_OptimizeFlag; if (!PyArg_ParseTupleAndKeywords( args, kws, "O&|O", kwlist, - PyUnicode_FSConverter, &pathbytes, &debug_override)) + PyUnicode_FSDecoder, &pathname, &debug_override)) return NULL; if (debug_override != NULL && (debug = PyObject_IsTrue(debug_override)) < 0) { - Py_DECREF(pathbytes); + Py_DECREF(pathname); return NULL; } cpathname = make_compiled_pathname( - PyBytes_AS_STRING(pathbytes), - buf, MAXPATHLEN+1, debug); - Py_DECREF(pathbytes); + PyUnicode_AS_UNICODE(pathname), + debug); + Py_DECREF(pathname); if (cpathname == NULL) { PyErr_Format(PyExc_SystemError, "path buffer too short"); return NULL; } - return PyUnicode_DecodeFSDefault(buf); + return cpathname; } PyDoc_STRVAR(doc_cache_from_source, -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:47 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:47 +0100 Subject: [Python-checkins] cpython: Issue #3080: load_module() expects name and path as Unicode Message-ID: http://hg.python.org/cpython/rev/64c21f364519 changeset: 68723:64c21f364519 user: Victor Stinner date: Sun Mar 13 21:46:30 2011 -0400 summary: Issue #3080: load_module() expects name and path as Unicode files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1490,7 +1490,7 @@ } /* Forward */ -static PyObject *load_module(char *, FILE *, char *, int, PyObject *); +static PyObject *load_module(PyObject *, FILE *, PyObject *, int, PyObject *); static struct filedescr *find_module(char *, const char *, PyObject *, char *, size_t, FILE **, PyObject **); static struct _frozen * find_frozen(PyObject *); @@ -1501,7 +1501,7 @@ static PyObject * load_package(PyObject *name, PyObject *pathname) { - PyObject *m, *d; + PyObject *m, *d, *bufobj; PyObject *file = NULL, *path_list = NULL; int err; char buf[MAXPATHLEN+1]; @@ -1546,7 +1546,13 @@ else return NULL; } - m = load_module(namestr, fp, buf, fdp->type, NULL); + bufobj = PyUnicode_DecodeFSDefault(buf); + if (bufobj != NULL) { + m = load_module(name, fp, bufobj, fdp->type, NULL); + Py_DECREF(bufobj); + } + else + m = NULL; if (fp != NULL) fclose(fp); return m; @@ -2303,7 +2309,7 @@ its module object WITH INCREMENTED REFERENCE COUNT */ static PyObject * -load_module(char *name, FILE *fp, char *pathname, int type, PyObject *loader) +load_module(PyObject *name, FILE *fp, PyObject *pathname, int type, PyObject *loader) { PyObject *m; @@ -2313,7 +2319,7 @@ case PY_COMPILED: if (fp == NULL) { PyErr_Format(PyExc_ValueError, - "file object required for import (type code %d)", + "file object required for import (type code %d)", type); return NULL; } @@ -2321,81 +2327,28 @@ switch (type) { - case PY_SOURCE: { - PyObject *nameobj, *pathobj; - nameobj = PyUnicode_FromString(name); - if (nameobj == NULL) - return NULL; - pathobj = PyUnicode_DecodeFSDefault(pathname); - if (pathobj == NULL) { - Py_DECREF(nameobj); - return NULL; - } - m = load_source_module(nameobj, pathobj, fp); - Py_DECREF(nameobj); - Py_DECREF(pathobj); + case PY_SOURCE: + m = load_source_module(name, pathname, fp); break; - } - - case PY_COMPILED: { - PyObject *nameobj, *pathobj; - nameobj = PyUnicode_FromString(name); - if (nameobj == NULL) - return NULL; - pathobj = PyUnicode_DecodeFSDefault(pathname); - if (pathobj == NULL) { - Py_DECREF(nameobj); - return NULL; - } - m = load_compiled_module(nameobj, pathobj, fp); - Py_DECREF(nameobj); - Py_DECREF(pathobj); + + case PY_COMPILED: + m = load_compiled_module(name, pathname, fp); break; - } #ifdef HAVE_DYNAMIC_LOADING - case C_EXTENSION: { - PyObject *nameobj, *pathobj; - nameobj = PyUnicode_FromString(name); - if (nameobj == NULL) - return NULL; - pathobj = PyUnicode_DecodeFSDefault(pathname); - if (pathobj == NULL) { - Py_DECREF(nameobj); - return NULL; - } - m = _PyImport_LoadDynamicModule(nameobj, pathobj, fp); - Py_DECREF(nameobj); - Py_DECREF(pathobj); + case C_EXTENSION: + m = _PyImport_LoadDynamicModule(name, pathname, fp); break; - } #endif - case PKG_DIRECTORY: { - PyObject *nameobj, *pathobj; - nameobj = PyUnicode_FromString(name); - if (nameobj == NULL) - return NULL; - pathobj = PyUnicode_DecodeFSDefault(pathname); - if (pathobj == NULL) { - Py_DECREF(nameobj); - return NULL; - } - m = load_package(nameobj, pathobj); - Py_DECREF(nameobj); - Py_DECREF(pathobj); + case PKG_DIRECTORY: + m = load_package(name, pathname); break; - } case C_BUILTIN: - case PY_FROZEN: { - PyObject *nameobj = PyUnicode_FromString(name); - if (nameobj == NULL) - return NULL; - m = load_builtin(nameobj, type); - Py_DECREF(nameobj); + case PY_FROZEN: + m = load_builtin(name, type); break; - } case IMP_HOOK: { if (loader == NULL) { @@ -2403,13 +2356,13 @@ "import hook without loader"); return NULL; } - m = PyObject_CallMethod(loader, "load_module", "s", name); + m = PyObject_CallMethod(loader, "load_module", "O", name); break; } default: PyErr_Format(PyExc_ImportError, - "Don't know how to import %.200s (type code %d)", + "Don't know how to import %U (type code %d)", name, type); m = NULL; @@ -3144,7 +3097,7 @@ import_submodule(PyObject *mod, char *subname, char *fullname) { PyObject *modules = PyImport_GetModuleDict(); - PyObject *m = NULL; + PyObject *m = NULL, *fullnameobj, *bufobj; /* Require: if mod == None: subname == fullname @@ -3181,7 +3134,19 @@ Py_INCREF(Py_None); return Py_None; } - m = load_module(fullname, fp, buf, fdp->type, loader); + fullnameobj = PyUnicode_FromString(fullname); + if (fullnameobj != NULL) { + bufobj = PyUnicode_DecodeFSDefault(buf); + if (bufobj != NULL) { + m = load_module(fullnameobj, fp, bufobj, fdp->type, loader); + Py_DECREF(bufobj); + } + else + m = NULL; + Py_DECREF(fullnameobj); + } + else + m = NULL; Py_XDECREF(loader); if (fp) fclose(fp); @@ -3209,7 +3174,7 @@ char buf[MAXPATHLEN+1]; struct filedescr *fdp; FILE *fp; - PyObject *newm; + PyObject *newm, *nameobj, *bufobj; if (modules_reloading == NULL) { Py_FatalError("PyImport_ReloadModule: " @@ -3275,7 +3240,19 @@ return NULL; } - newm = load_module(name, fp, buf, fdp->type, loader); + nameobj = PyUnicode_FromString(name); + if (nameobj != NULL) { + bufobj = PyUnicode_DecodeFSDefault(buf); + if (bufobj != NULL) { + newm = load_module(nameobj, fp, bufobj, fdp->type, loader); + Py_DECREF(bufobj); + } + else + newm = NULL; + Py_DECREF(nameobj); + } + else + newm = NULL; Py_XDECREF(loader); if (fp) @@ -3691,18 +3668,15 @@ static PyObject * imp_load_module(PyObject *self, PyObject *args) { - char *name; - PyObject *fob; - PyObject *pathname; - PyObject * ret; + PyObject *name, *fob, *pathname, *ret; char *suffix; /* Unused */ char *mode; int type; FILE *fp; - if (!PyArg_ParseTuple(args, "sOO&(ssi):load_module", + if (!PyArg_ParseTuple(args, "UOO&(ssi):load_module", &name, &fob, - PyUnicode_FSConverter, &pathname, + PyUnicode_FSDecoder, &pathname, &suffix, &mode, &type)) return NULL; if (*mode) { @@ -3726,7 +3700,7 @@ return NULL; } } - ret = load_module(name, fp, PyBytes_AS_STRING(pathname), type, NULL); + ret = load_module(name, fp, pathname, type, NULL); Py_DECREF(pathname); if (fp) fclose(fp); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:47 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:47 +0100 Subject: [Python-checkins] cpython: Issue #3080: PyImport_ImportModuleNoBlock() uses Unicode Message-ID: http://hg.python.org/cpython/rev/e55e7f197649 changeset: 68724:e55e7f197649 user: Victor Stinner date: Sun Mar 13 21:57:27 2011 -0400 summary: Issue #3080: PyImport_ImportModuleNoBlock() uses Unicode files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -2591,8 +2591,7 @@ PyObject * PyImport_ImportModuleNoBlock(const char *name) { - PyObject *result; - PyObject *modules; + PyObject *nameobj, *modules, *result; long me; /* Try to get the module from sys.modules[name] */ @@ -2600,14 +2599,16 @@ if (modules == NULL) return NULL; - result = PyDict_GetItemString(modules, name); + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + result = PyDict_GetItem(modules, nameobj); if (result != NULL) { + Py_DECREF(nameobj); Py_INCREF(result); return result; } - else { - PyErr_Clear(); - } + PyErr_Clear(); #ifdef WITH_THREAD /* check the import lock * me might be -1 but I ignore the error here, the lock function @@ -2615,18 +2616,20 @@ me = PyThread_get_thread_ident(); if (import_lock_thread == -1 || import_lock_thread == me) { /* no thread or me is holding the lock */ - return PyImport_ImportModule(name); + result = PyImport_Import(nameobj); } else { PyErr_Format(PyExc_ImportError, - "Failed to import %.200s because the import lock" + "Failed to import %U because the import lock" "is held by another thread.", - name); - return NULL; + nameobj); + result = NULL; } #else - return PyImport_ImportModule(name); + result = PyImport_Import(nameobj); #endif + Py_DECREF(nameobj); + return result; } /* Forward declarations for helper routines */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:49 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:49 +0100 Subject: [Python-checkins] cpython: Issue #3080: Use Unicode for the "The Magnum Opus of dotted-name import" Message-ID: http://hg.python.org/cpython/rev/7c67aa3ab531 changeset: 68725:7c67aa3ab531 user: Victor Stinner date: Tue Mar 15 09:33:57 2011 +0100 summary: Issue #3080: Use Unicode for the "The Magnum Opus of dotted-name import" Use Unicode for module name and paths in the following functions: * PyImport_ImportModuleLevel() * add_submodule() * ensure_from_list() * get_parent() * import_module_level() * import_submodule() * load_next() * mark_miss() files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -2633,28 +2633,37 @@ } /* Forward declarations for helper routines */ -static PyObject *get_parent(PyObject *globals, char *buf, - Py_ssize_t *p_buflen, int level); +static PyObject *get_parent(PyObject *globals, + PyObject **p_name, + int level); static PyObject *load_next(PyObject *mod, PyObject *altmod, - char **p_name, char *buf, Py_ssize_t *p_buflen); -static int mark_miss(char *name); + PyObject *inputname, PyObject **p_outputname, + Py_UNICODE *buf, Py_ssize_t *p_buflen, + Py_ssize_t bufsize); +static int mark_miss(PyObject *name); static int ensure_fromlist(PyObject *mod, PyObject *fromlist, - char *buf, Py_ssize_t buflen, int recursive); -static PyObject * import_submodule(PyObject *mod, char *name, char *fullname); + PyObject *buf, int recursive); +static PyObject * import_submodule(PyObject *mod, PyObject *name, + PyObject *fullname); /* The Magnum Opus of dotted-name import :-) */ static PyObject * -import_module_level(char *name, PyObject *globals, PyObject *locals, +import_module_level(PyObject *name, PyObject *globals, PyObject *locals, PyObject *fromlist, int level) { - char buf[MAXPATHLEN+1]; - Py_ssize_t buflen = 0; - PyObject *parent, *head, *next, *tail; - - if (strchr(name, '/') != NULL -#ifdef MS_WINDOWS - || strchr(name, '\\') != NULL + Py_UNICODE buf[MAXPATHLEN+1]; + Py_ssize_t buflen; + Py_ssize_t bufsize = MAXPATHLEN+1; + PyObject *parent, *head, *next, *tail, *inputname, *outputname; + PyObject *parent_name, *ensure_name; + const Py_UNICODE *nameunicode; + + nameunicode = PyUnicode_AS_UNICODE(name); + + if (Py_UNICODE_strchr(nameunicode, SEP) != NULL +#ifdef ALTSEP + || Py_UNICODE_strchr(nameunicode, ALTSEP) != NULL #endif ) { PyErr_SetString(PyExc_ImportError, @@ -2662,25 +2671,45 @@ return NULL; } - parent = get_parent(globals, buf, &buflen, level); + parent = get_parent(globals, &parent_name, level); if (parent == NULL) return NULL; - head = load_next(parent, level < 0 ? Py_None : parent, &name, buf, - &buflen); + buflen = PyUnicode_GET_SIZE(parent_name); + if (buflen+1 > bufsize) { + Py_DECREF(parent_name); + PyErr_SetString(PyExc_ValueError, + "Module name too long"); + return NULL; + } + Py_UNICODE_strcpy(buf, PyUnicode_AS_UNICODE(parent_name)); + Py_DECREF(parent_name); + + head = load_next(parent, level < 0 ? Py_None : parent, name, &outputname, + buf, &buflen, bufsize); if (head == NULL) return NULL; tail = head; Py_INCREF(tail); - while (name) { - next = load_next(tail, tail, &name, buf, &buflen); - Py_DECREF(tail); - if (next == NULL) { - Py_DECREF(head); - return NULL; + + if (outputname != NULL) { + while (1) { + inputname = outputname; + next = load_next(tail, tail, inputname, &outputname, + buf, &buflen, bufsize); + Py_DECREF(tail); + Py_DECREF(inputname); + if (next == NULL) { + Py_DECREF(head); + return NULL; + } + tail = next; + + if (outputname == NULL) { + break; + } } - tail = next; } if (tail == Py_None) { /* If tail is Py_None, both get_parent and load_next found @@ -2688,8 +2717,7 @@ doctored faulty bytecode */ Py_DECREF(tail); Py_DECREF(head); - PyErr_SetString(PyExc_ValueError, - "Empty module name"); + PyErr_SetString(PyExc_ValueError, "Empty module name"); return NULL; } @@ -2704,21 +2732,33 @@ } Py_DECREF(head); - if (!ensure_fromlist(tail, fromlist, buf, buflen, 0)) { + + ensure_name = PyUnicode_FromUnicode(buf, Py_UNICODE_strlen(buf)); + if (ensure_name == NULL) { Py_DECREF(tail); return NULL; } + if (!ensure_fromlist(tail, fromlist, ensure_name, 0)) { + Py_DECREF(tail); + Py_DECREF(ensure_name); + return NULL; + } + Py_DECREF(ensure_name); return tail; } PyObject * PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *locals, - PyObject *fromlist, int level) + PyObject *fromlist, int level) { - PyObject *result; + PyObject *nameobj, *result; + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; _PyImport_AcquireLock(); - result = import_module_level(name, globals, locals, fromlist, level); + result = import_module_level(nameobj, globals, locals, fromlist, level); + Py_DECREF(nameobj); if (_PyImport_ReleaseLock() < 0) { Py_XDECREF(result); PyErr_SetString(PyExc_RuntimeError, @@ -2733,15 +2773,20 @@ sys.modules entry for foo.bar. If globals is from a package's __init__.py, the package's entry in sys.modules is returned, as a borrowed reference. - The *name* of the returned package is returned in buf, with the length of - the name in *p_buflen. + The name of the returned package is returned in *p_name. If globals doesn't come from a package or a module in a package, or a corresponding entry is not found in sys.modules, Py_None is returned. */ static PyObject * -get_parent(PyObject *globals, char *buf, Py_ssize_t *p_buflen, int level) +get_parent(PyObject *globals, + PyObject **p_name, + int level) { + Py_UNICODE name[MAXPATHLEN+1]; + const Py_ssize_t bufsize = MAXPATHLEN+1; + PyObject *nameobj; + static PyObject *namestr = NULL; static PyObject *pathstr = NULL; static PyObject *pkgstr = NULL; @@ -2749,7 +2794,7 @@ int orig_level = level; if (globals == NULL || !PyDict_Check(globals) || !level) - return Py_None; + goto return_none; if (namestr == NULL) { namestr = PyUnicode_InternFromString("__name__"); @@ -2767,55 +2812,46 @@ return NULL; } - *buf = '\0'; - *p_buflen = 0; pkgname = PyDict_GetItem(globals, pkgstr); if ((pkgname != NULL) && (pkgname != Py_None)) { /* __package__ is set, so use it */ - char *pkgname_str; - Py_ssize_t len; - if (!PyUnicode_Check(pkgname)) { PyErr_SetString(PyExc_ValueError, "__package__ set to non-string"); return NULL; } - pkgname_str = _PyUnicode_AsStringAndSize(pkgname, &len); - if (len == 0) { + if (PyUnicode_GET_SIZE(pkgname) == 0) { if (level > 0) { PyErr_SetString(PyExc_ValueError, "Attempted relative import in non-package"); return NULL; } - return Py_None; + goto return_none; } - if (len > MAXPATHLEN) { + if (PyUnicode_GET_SIZE(pkgname)+1 > bufsize) { PyErr_SetString(PyExc_ValueError, "Package name too long"); return NULL; } - strcpy(buf, pkgname_str); + Py_UNICODE_strcpy(name, PyUnicode_AS_UNICODE(pkgname)); } else { /* __package__ not set, so figure it out and set it */ modname = PyDict_GetItem(globals, namestr); if (modname == NULL || !PyUnicode_Check(modname)) - return Py_None; + goto return_none; modpath = PyDict_GetItem(globals, pathstr); if (modpath != NULL) { /* __path__ is set, so modname is already the package name */ - char *modname_str; - Py_ssize_t len; int error; - modname_str = _PyUnicode_AsStringAndSize(modname, &len); - if (len > MAXPATHLEN) { + if (PyUnicode_GET_SIZE(modname)+1 > bufsize) { PyErr_SetString(PyExc_ValueError, "Module name too long"); return NULL; } - strcpy(buf, modname_str); + Py_UNICODE_strcpy(name, PyUnicode_AS_UNICODE(modname)); error = PyDict_SetItem(globals, pkgstr, modname); if (error) { PyErr_SetString(PyExc_ValueError, @@ -2824,9 +2860,9 @@ } } else { /* Normal module, so work out the package name if any */ - char *start = _PyUnicode_AsString(modname); - char *lastdot = strrchr(start, '.'); - size_t len; + Py_UNICODE *start = PyUnicode_AS_UNICODE(modname); + Py_UNICODE *lastdot = Py_UNICODE_strrchr(start, '.'); + Py_ssize_t len; int error; if (lastdot == NULL && level > 0) { PyErr_SetString(PyExc_ValueError, @@ -2840,17 +2876,17 @@ "Could not set __package__"); return NULL; } - return Py_None; + goto return_none; } len = lastdot - start; - if (len >= MAXPATHLEN) { + if (len+1 > bufsize) { PyErr_SetString(PyExc_ValueError, "Module name too long"); return NULL; } - strncpy(buf, start, len); - buf[len] = '\0'; - pkgname = PyUnicode_FromString(buf); + Py_UNICODE_strncpy(name, start, len); + name[len] = '\0'; + pkgname = PyUnicode_FromUnicode(name, len); if (pkgname == NULL) { return NULL; } @@ -2864,7 +2900,7 @@ } } while (--level > 0) { - char *dot = strrchr(buf, '.'); + Py_UNICODE *dot = Py_UNICODE_strrchr(name, '.'); if (dot == NULL) { PyErr_SetString(PyExc_ValueError, "Attempted relative import beyond " @@ -2873,137 +2909,181 @@ } *dot = '\0'; } - *p_buflen = strlen(buf); + + nameobj = PyUnicode_FromUnicode(name, Py_UNICODE_strlen(name)); + if (nameobj == NULL) + return NULL; modules = PyImport_GetModuleDict(); - parent = PyDict_GetItemString(modules, buf); + parent = PyDict_GetItem(modules, nameobj); if (parent == NULL) { - if (orig_level < 1) { - PyObject *err_msg = PyBytes_FromFormat( - "Parent module '%.200s' not found " - "while handling absolute import", buf); - if (err_msg == NULL) { - return NULL; - } - if (!PyErr_WarnEx(PyExc_RuntimeWarning, - PyBytes_AsString(err_msg), 1)) { - *buf = '\0'; - *p_buflen = 0; - parent = Py_None; - } - Py_DECREF(err_msg); - } else { + int err; + + if (orig_level >= 1) { PyErr_Format(PyExc_SystemError, - "Parent module '%.200s' not loaded, " - "cannot perform relative import", buf); + "Parent module %R not loaded, " + "cannot perform relative import", nameobj); + Py_DECREF(nameobj); + return NULL; } + + err = PyErr_WarnFormat( + PyExc_RuntimeWarning, 1, + "Parent module %R not found while handling absolute import", + nameobj); + Py_DECREF(nameobj); + if (err) + return NULL; + + goto return_none; } + *p_name = nameobj; return parent; /* We expect, but can't guarantee, if parent != None, that: - - parent.__name__ == buf + - parent.__name__ == name - parent.__dict__ is globals If this is violated... Who cares? */ + +return_none: + nameobj = PyUnicode_FromUnicode(NULL, 0); + if (nameobj == NULL) + return NULL; + *p_name = nameobj; + return Py_None; } /* altmod is either None or same as mod */ static PyObject * -load_next(PyObject *mod, PyObject *altmod, char **p_name, char *buf, - Py_ssize_t *p_buflen) +load_next(PyObject *mod, PyObject *altmod, + PyObject *inputname, PyObject **p_outputname, + Py_UNICODE *buf, Py_ssize_t *p_buflen, Py_ssize_t bufsize) { - char *name = *p_name; - char *dot = strchr(name, '.'); - size_t len; - char *p; - PyObject *result; - - if (strlen(name) == 0) { + const Py_UNICODE *dot; + Py_ssize_t len; + Py_UNICODE *p; + PyObject *fullname, *name, *result, *mark_name; + const Py_UNICODE *nameuni; + + *p_outputname = NULL; + + if (PyUnicode_GET_SIZE(inputname) == 0) { /* completely empty module name should only happen in 'from . import' (or '__import__("")')*/ Py_INCREF(mod); - *p_name = NULL; return mod; } - if (dot == NULL) { - *p_name = NULL; - len = strlen(name); + nameuni = PyUnicode_AS_UNICODE(inputname); + if (nameuni == NULL) + return NULL; + + dot = Py_UNICODE_strchr(nameuni, '.'); + if (dot != NULL) { + len = dot - nameuni; + if (len == 0) { + PyErr_SetString(PyExc_ValueError, + "Empty module name"); + return NULL; + } } - else { - *p_name = dot+1; - len = dot-name; - } - if (len == 0) { - PyErr_SetString(PyExc_ValueError, - "Empty module name"); - return NULL; - } - - p = buf + *p_buflen; - if (p != buf) - *p++ = '.'; - if (p+len-buf >= MAXPATHLEN) { + else + len = PyUnicode_GET_SIZE(inputname); + + if (*p_buflen+len+1 >= bufsize) { PyErr_SetString(PyExc_ValueError, "Module name too long"); return NULL; } - strncpy(p, name, len); + + p = buf + *p_buflen; + if (p != buf) { + *p++ = '.'; + *p_buflen += 1; + } + Py_UNICODE_strncpy(p, nameuni, len); p[len] = '\0'; - *p_buflen = p+len-buf; - - result = import_submodule(mod, p, buf); + *p_buflen += len; + + fullname = PyUnicode_FromUnicode(buf, *p_buflen); + if (fullname == NULL) + return NULL; + name = PyUnicode_FromUnicode(p, len); + if (name == NULL) { + Py_DECREF(fullname); + return NULL; + } + result = import_submodule(mod, name, fullname); + Py_DECREF(fullname); if (result == Py_None && altmod != mod) { Py_DECREF(result); /* Here, altmod must be None and mod must not be None */ - result = import_submodule(altmod, p, p); + result = import_submodule(altmod, name, name); + Py_DECREF(name); if (result != NULL && result != Py_None) { - if (mark_miss(buf) != 0) { + mark_name = PyUnicode_FromUnicode(buf, *p_buflen); + if (mark_name == NULL) { Py_DECREF(result); return NULL; } - strncpy(buf, name, len); + if (mark_miss(mark_name) != 0) { + Py_DECREF(result); + Py_DECREF(mark_name); + return NULL; + } + Py_DECREF(mark_name); + Py_UNICODE_strncpy(buf, nameuni, len); buf[len] = '\0'; *p_buflen = len; } } + else + Py_DECREF(name); if (result == NULL) return NULL; if (result == Py_None) { Py_DECREF(result); PyErr_Format(PyExc_ImportError, - "No module named %.200s", name); + "No module named %R", inputname); return NULL; } + if (dot != NULL) { + *p_outputname = PyUnicode_FromUnicode(dot+1, Py_UNICODE_strlen(dot+1)); + if (*p_outputname == NULL) { + Py_DECREF(result); + return NULL; + } + } + return result; } static int -mark_miss(char *name) +mark_miss(PyObject *name) { PyObject *modules = PyImport_GetModuleDict(); - return PyDict_SetItemString(modules, name, Py_None); + return PyDict_SetItem(modules, name, Py_None); } static int -ensure_fromlist(PyObject *mod, PyObject *fromlist, char *buf, Py_ssize_t buflen, +ensure_fromlist(PyObject *mod, PyObject *fromlist, PyObject *name, int recursive) { int i; + PyObject *fullname; + Py_ssize_t fromlist_len; if (!PyObject_HasAttrString(mod, "__path__")) return 1; - for (i = 0; ; i++) { + fromlist_len = PySequence_Size(fromlist); + + for (i = 0; i < fromlist_len; i++) { PyObject *item = PySequence_GetItem(fromlist, i); int hasit; - if (item == NULL) { - if (PyErr_ExceptionMatches(PyExc_IndexError)) { - PyErr_Clear(); - return 1; - } + if (item == NULL) return 0; - } if (!PyUnicode_Check(item)) { PyErr_SetString(PyExc_TypeError, "Item in ``from list'' not a string"); @@ -3020,7 +3100,7 @@ if (all == NULL) PyErr_Clear(); else { - int ret = ensure_fromlist(mod, all, buf, buflen, 1); + int ret = ensure_fromlist(mod, all, name, 1); Py_DECREF(all); if (!ret) return 0; @@ -3029,27 +3109,14 @@ } hasit = PyObject_HasAttr(mod, item); if (!hasit) { - PyObject *item8; - char *subname; PyObject *submod; - char *p; - item8 = PyUnicode_EncodeFSDefault(item); - if (!item8) { - PyErr_SetString(PyExc_ValueError, "Cannot encode path item"); - return 0; + fullname = PyUnicode_FromFormat("%U.%U", name, item); + if (fullname != NULL) { + submod = import_submodule(mod, item, fullname); + Py_DECREF(fullname); } - subname = PyBytes_AS_STRING(item8); - if (buflen + strlen(subname) >= MAXPATHLEN) { - PyErr_SetString(PyExc_ValueError, - "Module name too long"); - Py_DECREF(item); - return 0; - } - p = buf + buflen; - *p++ = '.'; - strcpy(p, subname); - submod = import_submodule(mod, subname, buf); - Py_DECREF(item8); + else + submod = NULL; Py_XDECREF(submod); if (submod == NULL) { Py_DECREF(item); @@ -3059,12 +3126,12 @@ Py_DECREF(item); } - /* NOTREACHED */ + return 1; } static int -add_submodule(PyObject *mod, PyObject *submod, char *fullname, char *subname, - PyObject *modules) +add_submodule(PyObject *mod, PyObject *submod, PyObject *fullname, + PyObject *subname, PyObject *modules) { if (mod == Py_None) return 1; @@ -3075,7 +3142,7 @@ load failed with a SyntaxError -- then there's no trace in sys.modules. In that case, of course, do nothing extra.) */ if (submod == NULL) { - submod = PyDict_GetItemString(modules, fullname); + submod = PyDict_GetItem(modules, fullname); if (submod == NULL) return 1; } @@ -3086,28 +3153,28 @@ PyObject *dict = PyModule_GetDict(mod); if (!dict) return 0; - if (PyDict_SetItemString(dict, subname, submod) < 0) + if (PyDict_SetItem(dict, subname, submod) < 0) return 0; } else { - if (PyObject_SetAttrString(mod, subname, submod) < 0) + if (PyObject_SetAttr(mod, subname, submod) < 0) return 0; } return 1; } static PyObject * -import_submodule(PyObject *mod, char *subname, char *fullname) +import_submodule(PyObject *mod, PyObject *subname, PyObject *fullname) { PyObject *modules = PyImport_GetModuleDict(); - PyObject *m = NULL, *fullnameobj, *bufobj; + PyObject *m = NULL, *bufobj; /* Require: if mod == None: subname == fullname else: mod.__name__ + "." + subname == fullname */ - if ((m = PyDict_GetItemString(modules, fullname)) != NULL) { + if ((m = PyDict_GetItem(modules, fullname)) != NULL) { Py_INCREF(m); } else { @@ -3127,7 +3194,9 @@ } } - fdp = find_module(fullname, subname, path, buf, MAXPATHLEN+1, + fdp = find_module(_PyUnicode_AsString(fullname), + _PyUnicode_AsString(subname), + path, buf, MAXPATHLEN+1, &fp, &loader); Py_XDECREF(path); if (fdp == NULL) { @@ -3137,23 +3206,17 @@ Py_INCREF(Py_None); return Py_None; } - fullnameobj = PyUnicode_FromString(fullname); - if (fullnameobj != NULL) { - bufobj = PyUnicode_DecodeFSDefault(buf); - if (bufobj != NULL) { - m = load_module(fullnameobj, fp, bufobj, fdp->type, loader); - Py_DECREF(bufobj); - } - else - m = NULL; - Py_DECREF(fullnameobj); + bufobj = PyUnicode_DecodeFSDefault(buf); + if (bufobj != NULL) { + m = load_module(fullname, fp, bufobj, fdp->type, loader); + Py_DECREF(bufobj); } else m = NULL; Py_XDECREF(loader); if (fp) fclose(fp); - if (!add_submodule(mod, m, fullname, subname, modules)) { + if (m != NULL && !add_submodule(mod, m, fullname, subname, modules)) { Py_XDECREF(m); m = NULL; } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:50 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:50 +0100 Subject: [Python-checkins] cpython: Issue #3080: Use %R to format module name in error messages Message-ID: http://hg.python.org/cpython/rev/23fe237afa81 changeset: 68726:23fe237afa81 user: Victor Stinner date: Sun Mar 13 22:38:06 2011 -0400 summary: Issue #3080: Use %R to format module name in error messages %R format instead of %U files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -2620,7 +2620,7 @@ } else { PyErr_Format(PyExc_ImportError, - "Failed to import %U because the import lock" + "Failed to import %R because the import lock" "is held by another thread.", nameobj); result = NULL; @@ -3285,7 +3285,7 @@ parent = PyDict_GetItem(modules, parentname); if (parent == NULL) { PyErr_Format(PyExc_ImportError, - "reload(): parent %U not in sys.modules", + "reload(): parent %R not in sys.modules", parentname); Py_DECREF(parentname); imp_modules_reloading_clear(); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:53 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:53 +0100 Subject: [Python-checkins] cpython: Issue #3080: Reindent and simplify import_submodule() Message-ID: http://hg.python.org/cpython/rev/2ee0ab9d2e8a changeset: 68727:2ee0ab9d2e8a user: Victor Stinner date: Sun Mar 13 22:38:38 2011 -0400 summary: Issue #3080: Reindent and simplify import_submodule() files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -2779,9 +2779,7 @@ corresponding entry is not found in sys.modules, Py_None is returned. */ static PyObject * -get_parent(PyObject *globals, - PyObject **p_name, - int level) +get_parent(PyObject *globals, PyObject **p_name, int level) { Py_UNICODE name[MAXPATHLEN+1]; const Py_ssize_t bufsize = MAXPATHLEN+1; @@ -3167,7 +3165,10 @@ import_submodule(PyObject *mod, PyObject *subname, PyObject *fullname) { PyObject *modules = PyImport_GetModuleDict(); - PyObject *m = NULL, *bufobj; + PyObject *m = NULL, *bufobj, *path, *loader; + char buf[MAXPATHLEN+1]; + struct filedescr *fdp; + FILE *fp; /* Require: if mod == None: subname == fullname @@ -3176,52 +3177,48 @@ if ((m = PyDict_GetItem(modules, fullname)) != NULL) { Py_INCREF(m); + return m; } + + if (mod == Py_None) + path = NULL; else { - PyObject *path, *loader; - char buf[MAXPATHLEN+1]; - struct filedescr *fdp; - FILE *fp; - - if (mod == Py_None) - path = NULL; - else { - path = PyObject_GetAttrString(mod, "__path__"); - if (path == NULL) { - PyErr_Clear(); - Py_INCREF(Py_None); - return Py_None; - } - } - - fdp = find_module(_PyUnicode_AsString(fullname), - _PyUnicode_AsString(subname), - path, buf, MAXPATHLEN+1, - &fp, &loader); - Py_XDECREF(path); - if (fdp == NULL) { - if (!PyErr_ExceptionMatches(PyExc_ImportError)) - return NULL; + path = PyObject_GetAttrString(mod, "__path__"); + if (path == NULL) { PyErr_Clear(); Py_INCREF(Py_None); return Py_None; } - bufobj = PyUnicode_DecodeFSDefault(buf); - if (bufobj != NULL) { - m = load_module(fullname, fp, bufobj, fdp->type, loader); - Py_DECREF(bufobj); - } - else - m = NULL; - Py_XDECREF(loader); - if (fp) - fclose(fp); - if (m != NULL && !add_submodule(mod, m, fullname, subname, modules)) { - Py_XDECREF(m); - m = NULL; - } } + fdp = find_module(_PyUnicode_AsString(fullname), + _PyUnicode_AsString(subname), + path, buf, MAXPATHLEN+1, + &fp, &loader); + Py_XDECREF(path); + if (fdp == NULL) { + if (!PyErr_ExceptionMatches(PyExc_ImportError)) + return NULL; + PyErr_Clear(); + Py_INCREF(Py_None); + return Py_None; + } + bufobj = PyUnicode_DecodeFSDefault(buf); + if (bufobj != NULL) { + m = load_module(fullname, fp, bufobj, fdp->type, loader); + Py_DECREF(bufobj); + } + else + m = NULL; + Py_XDECREF(loader); + if (fp) + fclose(fp); + if (m == NULL) + return NULL; + if (!add_submodule(mod, m, fullname, subname, modules)) { + Py_XDECREF(m); + return NULL; + } return m; } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:53 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:53 +0100 Subject: [Python-checkins] cpython: Issue #3080: Drop OS/2 support for the import machinery Message-ID: http://hg.python.org/cpython/rev/340f76a6a792 changeset: 68728:340f76a6a792 user: Victor Stinner date: Sun Mar 13 23:11:02 2011 -0400 summary: Issue #3080: Drop OS/2 support for the import machinery Sorry Andrew I MacIntyre! files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1804,11 +1804,6 @@ struct filedescr *fdp = NULL; char *filemode; FILE *fp = NULL; -#if defined(PYOS_OS2) - size_t saved_len; - size_t saved_namelen; - char *saved_buf = NULL; -#endif npath = PyList_Size(search_path_list); namelen = strlen(name); @@ -1832,40 +1827,7 @@ return fdp; len = strlen(buf); -#if defined(PYOS_OS2) - /* take a snapshot of the module spec for restoration - * after the 8 character DLL hackery - */ - saved_buf = strdup(buf); - saved_len = len; - saved_namelen = namelen; -#endif /* PYOS_OS2 */ for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) { -#if defined(PYOS_OS2) && defined(HAVE_DYNAMIC_LOADING) - /* OS/2 limits DLLs to 8 character names (w/o - extension) - * so if the name is longer than that and its a - * dynamically loaded module we're going to try, - * truncate the name before trying - */ - if (strlen(name) > 8) { - /* is this an attempt to load a C extension? */ - const struct filedescr *scan; - scan = _PyImport_DynLoadFiletab; - while (scan->suffix != NULL) { - if (!strcmp(scan->suffix, fdp->suffix)) - break; - else - scan++; - } - if (scan->suffix != NULL) { - /* yes, so truncate the name */ - namelen = 8; - len -= strlen(name) - namelen; - buf[len] = '\0'; - } - } -#endif /* PYOS_OS2 */ strcpy(buf+len, fdp->suffix); if (Py_VerboseFlag > 1) PySys_WriteStderr("# trying %s\n", buf); @@ -1881,21 +1843,7 @@ fp = NULL; } } -#if defined(PYOS_OS2) - /* restore the saved snapshot */ - strcpy(buf, saved_buf); - len = saved_len; - namelen = saved_namelen; -#endif } -#if defined(PYOS_OS2) - /* don't need/want the module name snapshot anymore */ - if (saved_buf) - { - free(saved_buf); - saved_buf = NULL; - } -#endif if (fp != NULL) break; } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:55 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:55 +0100 Subject: [Python-checkins] cpython: Issue #3080: find_module() expects module fullname and subname as Unicode Message-ID: http://hg.python.org/cpython/rev/156818529636 changeset: 68729:156818529636 user: Victor Stinner date: Mon Mar 14 09:21:33 2011 -0400 summary: Issue #3080: find_module() expects module fullname and subname as Unicode And PyImport_ReloadModule() uses Unicode for the module name. files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1491,7 +1491,7 @@ /* Forward */ static PyObject *load_module(PyObject *, FILE *, PyObject *, int, PyObject *); -static struct filedescr *find_module(char *, const char *, PyObject *, +static struct filedescr *find_module(PyObject *, PyObject *, PyObject *, char *, size_t, FILE **, PyObject **); static struct _frozen * find_frozen(PyObject *); @@ -1507,7 +1507,13 @@ char buf[MAXPATHLEN+1]; FILE *fp = NULL; struct filedescr *fdp; - char *namestr; + static PyObject *initstr = NULL; + + if (initstr == NULL) { + initstr = PyUnicode_InternFromString("__init__"); + if (initstr == NULL) + return NULL; + } m = PyImport_AddModuleObject(name); if (m == NULL) @@ -1532,10 +1538,7 @@ Py_DECREF(path_list); return NULL; } - namestr = _PyUnicode_AsString(name); - if (namestr == NULL) - goto error; - fdp = find_module(namestr, "__init__", path_list, buf, sizeof(buf), &fp, NULL); + fdp = find_module(name, initstr, path_list, buf, sizeof(buf), &fp, NULL); Py_DECREF(path_list); if (fdp == NULL) { if (PyErr_ExceptionMatches(PyExc_ImportError)) { @@ -1680,7 +1683,7 @@ and *buf is the path */ static int -find_module_path(char *fullname, const char *name, PyObject *path, +find_module_path(PyObject *fullname, PyObject *name, PyObject *path, PyObject *path_hooks, PyObject *path_importer_cache, char *buf, size_t buflen, PyObject **p_loader, struct filedescr **p_fd) @@ -1691,6 +1694,7 @@ size_t namelen; struct stat statbuf; static struct filedescr fd_package = {"", "", PKG_DIRECTORY}; + char *namestr; if (PyUnicode_Check(path)) { path_bytes = PyUnicode_EncodeFSDefault(path); @@ -1704,7 +1708,8 @@ else return 0; - namelen = strlen(name); + namestr = _PyUnicode_AsString(name); + namelen = strlen(namestr); base = PyBytes_AS_STRING(path_bytes); len = PyBytes_GET_SIZE(path_bytes); if (len + 2 + namelen + MAXSUFFIXSIZE >= buflen) { @@ -1731,8 +1736,7 @@ if (importer != Py_None) { PyObject *loader; loader = PyObject_CallMethod(importer, - "find_module", - "s", fullname); + "find_module", "O", fullname); if (loader == NULL) return -1; /* error */ if (loader != Py_None) { @@ -1753,7 +1757,7 @@ #endif ) buf[len++] = SEP; - strcpy(buf+len, name); + strcpy(buf+len, namestr); len += namelen; /* Check for package import (buf holds a directory name, @@ -1761,7 +1765,7 @@ #ifdef HAVE_STAT if (stat(buf, &statbuf) == 0 && /* it exists */ S_ISDIR(statbuf.st_mode) && /* it's a directory */ - case_ok(buf, len, namelen, name)) { /* case matches */ + case_ok(buf, len, namelen, namestr)) { /* case matches */ if (find_init_module(buf)) { /* and has __init__.py */ *p_fd = &fd_package; return 2; @@ -1784,7 +1788,7 @@ } /* Find a module in search_path_list. For each path, try - find_module_filename() or try each _PyImport_Filetab suffix. + find_module_path() or try each _PyImport_Filetab suffix. If the module is found, return a file descriptor, write the path in *p_filename, write the pointer to the file object into *p_fp, and (if @@ -1793,7 +1797,7 @@ Otherwise, raise an exception and return NULL. */ static struct filedescr* -find_module_path_list(char *fullname, const char *name, +find_module_path_list(PyObject *fullname, PyObject *name, PyObject *search_path_list, PyObject *path_hooks, PyObject *path_importer_cache, char *buf, size_t buflen, @@ -1804,9 +1808,11 @@ struct filedescr *fdp = NULL; char *filemode; FILE *fp = NULL; + char *namestr; npath = PyList_Size(search_path_list); - namelen = strlen(name); + namestr = _PyUnicode_AsString(name); + namelen = strlen(namestr); for (i = 0; i < npath; i++) { PyObject *path; int ok; @@ -1836,7 +1842,7 @@ filemode = "r" PY_STDIOTEXTMODE; fp = fopen(buf, filemode); if (fp != NULL) { - if (case_ok(buf, len, namelen, name)) + if (case_ok(buf, len, namelen, namestr)) break; else { /* continue search */ fclose(fp); @@ -1849,7 +1855,7 @@ } if (fp == NULL) { PyErr_Format(PyExc_ImportError, - "No module named %.200s", name); + "No module named %U", name); return NULL; } *p_fp = fp; @@ -1882,21 +1888,20 @@ set) are set to NULL. Eg. *buf is an empty string for a builtin package. */ static struct filedescr * -find_module(char *fullname, const char *name, PyObject *search_path_list, +find_module(PyObject *fullname, PyObject *name, PyObject *search_path_list, char *buf, size_t buflen, FILE **p_fp, PyObject **p_loader) { Py_ssize_t i, npath; static struct filedescr fd_frozen = {"", "", PY_FROZEN}; static struct filedescr fd_builtin = {"", "", C_BUILTIN}; PyObject *path_hooks, *path_importer_cache; - PyObject *fullname_obj, *nameobj; *buf = '\0'; *p_fp = NULL; if (p_loader != NULL) *p_loader = NULL; - if (strlen(name) > MAXPATHLEN) { + if (PyUnicode_GET_SIZE(name) > MAXPATHLEN) { PyErr_SetString(PyExc_OverflowError, "module name is too long"); return NULL; @@ -1919,7 +1924,7 @@ PyObject *loader; PyObject *hook = PyList_GetItem(meta_path, i); loader = PyObject_CallMethod(hook, "find_module", - "sO", fullname, + "OO", fullname, search_path_list != NULL ? search_path_list : Py_None); if (loader == NULL) { @@ -1937,16 +1942,9 @@ Py_DECREF(meta_path); } - if (fullname != NULL) { - fullname_obj = PyUnicode_FromString(fullname); - if (fullname == NULL) - return NULL; - if (find_frozen(fullname_obj) != NULL) { - Py_DECREF(fullname_obj); - strcpy(buf, fullname); - return &fd_frozen; - } - Py_DECREF(fullname_obj); + if (find_frozen(fullname) != NULL) { + strcpy(buf, _PyUnicode_AsString(fullname)); + return &fd_frozen; } if (search_path_list == NULL) { @@ -1955,18 +1953,13 @@ struct filedescr *fdp; PyObject *filename, *filename_bytes; #endif - nameobj = PyUnicode_FromString(name); - if (nameobj == NULL) - return NULL; - if (is_builtin(nameobj)) { - Py_DECREF(nameobj); - strcpy(buf, name); + if (is_builtin(name)) { + strcpy(buf, _PyUnicode_AsString(name)); return &fd_builtin; } #ifdef MS_COREDLL - fp = _PyWin_FindRegisteredModule(nameobj, &fdp, &filename); + fp = _PyWin_FindRegisteredModule(name, &fdp, &filename); if (fp != NULL) { - Py_DECREF(nameobj); filename_bytes = PyUnicode_EncodeFSDefault(filename); Py_DECREF(filename); if (filename_bytes == NULL) @@ -1980,7 +1973,6 @@ else if (PyErr_Occurred()) return NULL; #endif - Py_DECREF(nameobj); search_path_list = PySys_GetObject("path"); } @@ -3139,8 +3131,8 @@ } } - fdp = find_module(_PyUnicode_AsString(fullname), - _PyUnicode_AsString(subname), + fdp = find_module(fullname, + subname, path, buf, MAXPATHLEN+1, &fp, &loader); Py_XDECREF(path); @@ -3180,12 +3172,13 @@ PyInterpreterState *interp = PyThreadState_Get()->interp; PyObject *modules_reloading = interp->modules_reloading; PyObject *modules = PyImport_GetModuleDict(); - PyObject *path = NULL, *loader, *existing_m = NULL; - char *name, *subname; char buf[MAXPATHLEN+1]; + PyObject *path = NULL, *loader = NULL, *existing_m = NULL; + PyObject *nameobj, *bufobj, *subnameobj; + Py_UNICODE *name, *subname; struct filedescr *fdp; - FILE *fp; - PyObject *newm, *nameobj, *bufobj; + FILE *fp = NULL; + PyObject *newm = NULL; if (modules_reloading == NULL) { Py_FatalError("PyImport_ReloadModule: " @@ -3198,69 +3191,75 @@ "reload() argument must be module"); return NULL; } - name = (char*)PyModule_GetName(m); - if (name == NULL) + nameobj = PyModule_GetNameObject(m); + if (nameobj == NULL) return NULL; - if (m != PyDict_GetItemString(modules, name)) { + if (m != PyDict_GetItem(modules, nameobj)) { PyErr_Format(PyExc_ImportError, - "reload(): module %.200s not in sys.modules", - name); + "reload(): module %U not in sys.modules", + nameobj); + Py_DECREF(nameobj); return NULL; } - existing_m = PyDict_GetItemString(modules_reloading, name); + existing_m = PyDict_GetItem(modules_reloading, nameobj); if (existing_m != NULL) { /* Due to a recursive reload, this module is already being reloaded. */ + Py_DECREF(nameobj); Py_INCREF(existing_m); return existing_m; } - if (PyDict_SetItemString(modules_reloading, name, m) < 0) + if (PyDict_SetItem(modules_reloading, nameobj, m) < 0) { + Py_DECREF(nameobj); return NULL; - - subname = strrchr(name, '.'); - if (subname == NULL) - subname = name; + } + + name = PyUnicode_AS_UNICODE(nameobj); + subname = Py_UNICODE_strrchr(name, '.'); + if (subname == NULL) { + Py_INCREF(nameobj); + subnameobj = nameobj; + } else { PyObject *parentname, *parent; - parentname = PyUnicode_FromStringAndSize(name, (subname-name)); + Py_ssize_t len; + len = subname - name; + parentname = PyUnicode_FromUnicode(name, len); if (parentname == NULL) { - imp_modules_reloading_clear(); - return NULL; + goto error; } parent = PyDict_GetItem(modules, parentname); if (parent == NULL) { PyErr_Format(PyExc_ImportError, - "reload(): parent %R not in sys.modules", + "reload(): parent %U not in sys.modules", parentname); Py_DECREF(parentname); - imp_modules_reloading_clear(); - return NULL; + goto error; } Py_DECREF(parentname); - subname++; path = PyObject_GetAttrString(parent, "__path__"); if (path == NULL) PyErr_Clear(); + subname++; + len = PyUnicode_GET_SIZE(nameobj) - (len + 1); + subnameobj = PyUnicode_FromUnicode(subname, len); } - fdp = find_module(name, subname, path, buf, MAXPATHLEN+1, &fp, &loader); + if (subnameobj == NULL) + goto error; + fdp = find_module(nameobj, subnameobj, + path, buf, MAXPATHLEN+1, &fp, &loader); + Py_DECREF(subnameobj); Py_XDECREF(path); if (fdp == NULL) { Py_XDECREF(loader); - imp_modules_reloading_clear(); - return NULL; + goto error; } - nameobj = PyUnicode_FromString(name); - if (nameobj != NULL) { - bufobj = PyUnicode_DecodeFSDefault(buf); - if (bufobj != NULL) { - newm = load_module(nameobj, fp, bufobj, fdp->type, loader); - Py_DECREF(bufobj); - } - else - newm = NULL; - Py_DECREF(nameobj); + bufobj = PyUnicode_DecodeFSDefault(buf); + if (bufobj != NULL) { + newm = load_module(nameobj, fp, bufobj, fdp->type, loader); + Py_DECREF(bufobj); } else newm = NULL; @@ -3274,9 +3273,12 @@ * going to return NULL in this case regardless of whether * replacing name succeeds, so the return value is ignored. */ - PyDict_SetItemString(modules, name, m); + PyDict_SetItem(modules, nameobj, m); } + +error: imp_modules_reloading_clear(); + Py_DECREF(nameobj); return newm; } @@ -3424,7 +3426,7 @@ } static PyObject * -call_find_module(char *name, PyObject *path) +call_find_module(PyObject *name, PyObject *path) { extern int fclose(FILE *); PyObject *fob, *ret; @@ -3483,15 +3485,11 @@ static PyObject * imp_find_module(PyObject *self, PyObject *args) { - PyObject *name; - PyObject *ret, *path = NULL; - if (!PyArg_ParseTuple(args, "O&|O:find_module", - PyUnicode_FSConverter, &name, - &path)) + PyObject *name, *path_list = NULL; + if (!PyArg_ParseTuple(args, "U|O:find_module", + &name, &path_list)) return NULL; - ret = call_find_module(PyBytes_AS_STRING(name), path); - Py_DECREF(name); - return ret; + return call_find_module(name, path_list); } static PyObject * -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:55 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:55 +0100 Subject: [Python-checkins] cpython: Issue #3080: Rename some path variables to path_list Message-ID: http://hg.python.org/cpython/rev/fe1d421ca3fa changeset: 68730:fe1d421ca3fa user: Victor Stinner date: Mon Mar 14 13:22:54 2011 -0400 summary: Issue #3080: Rename some path variables to path_list files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1538,7 +1538,8 @@ Py_DECREF(path_list); return NULL; } - fdp = find_module(name, initstr, path_list, buf, sizeof(buf), &fp, NULL); + fdp = find_module(name, initstr, path_list, + buf, sizeof(buf), &fp, NULL); Py_DECREF(path_list); if (fdp == NULL) { if (PyErr_ExceptionMatches(PyExc_ImportError)) { @@ -3105,7 +3106,7 @@ import_submodule(PyObject *mod, PyObject *subname, PyObject *fullname) { PyObject *modules = PyImport_GetModuleDict(); - PyObject *m = NULL, *bufobj, *path, *loader; + PyObject *m = NULL, *bufobj, *path_list, *loader; char buf[MAXPATHLEN+1]; struct filedescr *fdp; FILE *fp; @@ -3121,21 +3122,19 @@ } if (mod == Py_None) - path = NULL; + path_list = NULL; else { - path = PyObject_GetAttrString(mod, "__path__"); - if (path == NULL) { + path_list = PyObject_GetAttrString(mod, "__path__"); + if (path_list == NULL) { PyErr_Clear(); Py_INCREF(Py_None); return Py_None; } } - fdp = find_module(fullname, - subname, - path, buf, MAXPATHLEN+1, - &fp, &loader); - Py_XDECREF(path); + fdp = find_module(fullname, subname, path_list, + buf, MAXPATHLEN+1, &fp, &loader); + Py_XDECREF(path_list); if (fdp == NULL) { if (!PyErr_ExceptionMatches(PyExc_ImportError)) return NULL; @@ -3173,7 +3172,7 @@ PyObject *modules_reloading = interp->modules_reloading; PyObject *modules = PyImport_GetModuleDict(); char buf[MAXPATHLEN+1]; - PyObject *path = NULL, *loader = NULL, *existing_m = NULL; + PyObject *path_list = NULL, *loader = NULL, *existing_m = NULL; PyObject *nameobj, *bufobj, *subnameobj; Py_UNICODE *name, *subname; struct filedescr *fdp; @@ -3237,8 +3236,8 @@ goto error; } Py_DECREF(parentname); - path = PyObject_GetAttrString(parent, "__path__"); - if (path == NULL) + path_list = PyObject_GetAttrString(parent, "__path__"); + if (path_list == NULL) PyErr_Clear(); subname++; len = PyUnicode_GET_SIZE(nameobj) - (len + 1); @@ -3246,10 +3245,10 @@ } if (subnameobj == NULL) goto error; - fdp = find_module(nameobj, subnameobj, - path, buf, MAXPATHLEN+1, &fp, &loader); + fdp = find_module(nameobj, subnameobj, path_list, + buf, MAXPATHLEN+1, &fp, &loader); Py_DECREF(subnameobj); - Py_XDECREF(path); + Py_XDECREF(path_list); if (fdp == NULL) { Py_XDECREF(loader); @@ -3426,7 +3425,7 @@ } static PyObject * -call_find_module(PyObject *name, PyObject *path) +call_find_module(PyObject *name, PyObject *path_list) { extern int fclose(FILE *); PyObject *fob, *ret; @@ -3439,9 +3438,10 @@ char *encoding = NULL; pathname[0] = '\0'; - if (path == Py_None) - path = NULL; - fdp = find_module(NULL, name, path, pathname, MAXPATHLEN+1, &fp, NULL); + if (path_list == Py_None) + path_list = NULL; + fdp = find_module(NULL, name, path_list, + pathname, MAXPATHLEN+1, &fp, NULL); if (fdp == NULL) return NULL; if (fp != NULL) { -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:57 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:57 +0100 Subject: [Python-checkins] cpython: Issue #3080: find_module() sets an empty path for builtin and frozen modules Message-ID: http://hg.python.org/cpython/rev/c1a5a7dca1ec changeset: 68731:c1a5a7dca1ec user: Victor Stinner date: Mon Mar 14 13:40:04 2011 -0400 summary: Issue #3080: find_module() sets an empty path for builtin and frozen modules files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1943,10 +1943,8 @@ Py_DECREF(meta_path); } - if (find_frozen(fullname) != NULL) { - strcpy(buf, _PyUnicode_AsString(fullname)); + if (find_frozen(fullname) != NULL) return &fd_frozen; - } if (search_path_list == NULL) { #ifdef MS_COREDLL @@ -1954,10 +1952,8 @@ struct filedescr *fdp; PyObject *filename, *filename_bytes; #endif - if (is_builtin(name)) { - strcpy(buf, _PyUnicode_AsString(name)); + if (is_builtin(name)) return &fd_builtin; - } #ifdef MS_COREDLL fp = _PyWin_FindRegisteredModule(name, &fdp, &filename); if (fp != NULL) { -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:58 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:58 +0100 Subject: [Python-checkins] cpython: Issue #3080: Refactor find_module_path(), use return instead of break Message-ID: http://hg.python.org/cpython/rev/c4ccf02456d6 changeset: 68732:c4ccf02456d6 user: Victor Stinner date: Mon Mar 14 14:04:10 2011 -0400 summary: Issue #3080: Refactor find_module_path(), use return instead of break Prepare also the API change of case_ok() files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -144,6 +144,8 @@ {0, 0} }; +static PyObject *initstr = NULL; + /* Initialize things */ @@ -155,6 +157,10 @@ int countD = 0; int countS = 0; + initstr = PyUnicode_InternFromString("__init__"); + if (initstr == NULL) + Py_FatalError("Can't initialize import variables"); + /* prepare _PyImport_Filetab: copy entries from _PyImport_DynLoadFiletab and _PyImport_StandardFiletab. */ @@ -1507,13 +1513,6 @@ char buf[MAXPATHLEN+1]; FILE *fp = NULL; struct filedescr *fdp; - static PyObject *initstr = NULL; - - if (initstr == NULL) { - initstr = PyUnicode_InternFromString("__init__"); - if (initstr == NULL) - return NULL; - } m = PyImport_AddModuleObject(name); if (m == NULL) @@ -1765,23 +1764,25 @@ and there's an __init__ module in that directory */ #ifdef HAVE_STAT if (stat(buf, &statbuf) == 0 && /* it exists */ - S_ISDIR(statbuf.st_mode) && /* it's a directory */ - case_ok(buf, len, namelen, namestr)) { /* case matches */ - if (find_init_module(buf)) { /* and has __init__.py */ - *p_fd = &fd_package; - return 2; - } - else { - int err; - PyObject *unicode = PyUnicode_DecodeFSDefault(buf); - if (unicode == NULL) - return -1; - err = PyErr_WarnFormat(PyExc_ImportWarning, 1, - "Not importing directory '%U': missing __init__.py", - unicode); - Py_DECREF(unicode); - if (err) - return -1; + S_ISDIR(statbuf.st_mode)) /* it's a directory */ + { + if (case_ok(buf, len, namelen, namestr)) { /* case matches */ + if (find_init_module(buf)) { /* and has __init__.py */ + *p_fd = &fd_package; + return 2; + } + else { + int err; + PyObject *unicode = PyUnicode_DecodeFSDefault(buf); + if (unicode == NULL) + return -1; + err = PyErr_WarnFormat(PyExc_ImportWarning, 1, + "Not importing directory '%U': missing __init__.py", + unicode); + Py_DECREF(unicode); + if (err) + return -1; + } } } #endif @@ -1842,25 +1843,21 @@ if (filemode[0] == 'U') filemode = "r" PY_STDIOTEXTMODE; fp = fopen(buf, filemode); - if (fp != NULL) { - if (case_ok(buf, len, namelen, namestr)) - break; - else { /* continue search */ - fclose(fp); - fp = NULL; - } + if (fp == NULL) + continue; + + if (case_ok(buf, len, namelen, namestr)) { + *p_fp = fp; + return fdp; } + + fclose(fp); + fp = NULL; } - if (fp != NULL) - break; } - if (fp == NULL) { - PyErr_Format(PyExc_ImportError, - "No module named %U", name); - return NULL; - } - *p_fp = fp; - return fdp; + PyErr_Format(PyExc_ImportError, + "No module named %U", name); + return NULL; } /* Find a module: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:13:59 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:13:59 +0100 Subject: [Python-checkins] cpython: Issue #3080: find_init_module() expects Unicode Message-ID: http://hg.python.org/cpython/rev/298a70b27497 changeset: 68733:298a70b27497 user: Victor Stinner date: Sun Mar 20 03:07:28 2011 +0100 summary: Issue #3080: find_init_module() expects Unicode files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1668,8 +1668,9 @@ PyObject **p_path); #endif +/* Forward */ static int case_ok(char *, Py_ssize_t, Py_ssize_t, const char *); -static int find_init_module(char *); /* Forward */ +static int find_init_module(PyObject *); static struct filedescr importhookdescr = {"", "", IMP_HOOK}; /* Get the path of a module: get its importer and call importer.find_module() @@ -1766,24 +1767,27 @@ if (stat(buf, &statbuf) == 0 && /* it exists */ S_ISDIR(statbuf.st_mode)) /* it's a directory */ { + PyObject *bufobj = PyUnicode_DecodeFSDefault(buf); + if (bufobj == NULL) + return -1; if (case_ok(buf, len, namelen, namestr)) { /* case matches */ - if (find_init_module(buf)) { /* and has __init__.py */ + if (find_init_module(bufobj)) { /* and has __init__.py */ + Py_DECREF(bufobj); *p_fd = &fd_package; return 2; } else { int err; - PyObject *unicode = PyUnicode_DecodeFSDefault(buf); - if (unicode == NULL) + err = PyErr_WarnFormat(PyExc_ImportWarning, 1, + "Not importing directory %R: missing __init__.py", + bufobj); + if (err) { + Py_DECREF(bufobj); return -1; - err = PyErr_WarnFormat(PyExc_ImportWarning, 1, - "Not importing directory '%U': missing __init__.py", - unicode); - Py_DECREF(unicode); - if (err) - return -1; + } } } + Py_DECREF(bufobj); } #endif return 1; @@ -2154,49 +2158,47 @@ #ifdef HAVE_STAT -/* Helper to look for __init__.py or __init__.py[co] in potential package */ +/* Helper to look for __init__.py or __init__.py[co] in potential package. + Return 1 if __init__ was found, 0 if not, or -1 on error. */ static int -find_init_module(char *buf) +find_init_module(PyObject *directory) { - const size_t save_len = strlen(buf); - size_t i = save_len; - char *pname; /* pointer to start of __init__ */ + size_t len; struct stat statbuf; - -/* For calling case_ok(buf, len, namelen, name): - * /a/b/c/d/e/f/g/h/i/j/k/some_long_module_name.py\0 - * ^ ^ ^ ^ - * |--------------------- buf ---------------------| - * |------------------- len ------------------| - * |------ name -------| - * |----- namelen -----| - */ - if (save_len + 13 >= MAXPATHLEN) - return 0; - buf[i++] = SEP; - pname = buf + i; - strcpy(pname, "__init__.py"); - if (stat(buf, &statbuf) == 0) { - if (case_ok(buf, - save_len + 9, /* len("/__init__") */ - 8, /* len("__init__") */ - pname)) { - buf[save_len] = '\0'; + PyObject *filename; + int match; + char *filestr; + size_t filelen; + + len = PyUnicode_GET_SIZE(directory); + filename = PyUnicode_FromFormat("%U%c__init__.py", directory, SEP); + if (filename == NULL) + return -1; + if (_Py_stat(filename, &statbuf) == 0) { + /* 9=len("/__init__") */ + filestr = _PyUnicode_AsString(filename); + filelen = strlen(filestr); + if (case_ok(filestr, filelen-9, 8, "__init__")) { + Py_DECREF(filename); return 1; } } - i += strlen(pname); - strcpy(buf+i, Py_OptimizeFlag ? "o" : "c"); - if (stat(buf, &statbuf) == 0) { - if (case_ok(buf, - save_len + 9, /* len("/__init__") */ - 8, /* len("__init__") */ - pname)) { - buf[save_len] = '\0'; + Py_DECREF(filename); + + filename = PyUnicode_FromFormat("%U%c__init__.py%c", + directory, SEP, Py_OptimizeFlag ? 'o' : 'c'); + if (filename == NULL) + return -1; + if (_Py_stat(filename, &statbuf) == 0) { + /* 9=len("/__init__") */ + filestr = _PyUnicode_AsString(filename); + filelen = strlen(filestr); + if (case_ok(filestr, filelen-9, 8, "__init__")) { + Py_DECREF(filename); return 1; } } - buf[save_len] = '\0'; + Py_DECREF(filename); return 0; } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:14:00 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:14:00 +0100 Subject: [Python-checkins] cpython: Issue #3080: case_ok() expects Unicode strings Message-ID: http://hg.python.org/cpython/rev/066b399a8477 changeset: 68734:066b399a8477 user: Victor Stinner date: Mon Mar 14 14:34:13 2011 -0400 summary: Issue #3080: case_ok() expects Unicode strings files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1669,7 +1669,7 @@ #endif /* Forward */ -static int case_ok(char *, Py_ssize_t, Py_ssize_t, const char *); +static int case_ok(PyObject *, Py_ssize_t, PyObject *); static int find_init_module(PyObject *); static struct filedescr importhookdescr = {"", "", IMP_HOOK}; @@ -1767,12 +1767,20 @@ if (stat(buf, &statbuf) == 0 && /* it exists */ S_ISDIR(statbuf.st_mode)) /* it's a directory */ { - PyObject *bufobj = PyUnicode_DecodeFSDefault(buf); - if (bufobj == NULL) + int match; + PyObject *filename; + + filename = PyUnicode_DecodeFSDefault(buf); + if (filename == NULL) return -1; - if (case_ok(buf, len, namelen, namestr)) { /* case matches */ - if (find_init_module(bufobj)) { /* and has __init__.py */ - Py_DECREF(bufobj); + match = case_ok(filename, 0, name); + if (match < 0) { + Py_DECREF(filename); + return -1; + } + if (match) { /* case matches */ + if (find_init_module(filename)) { /* and has __init__.py */ + Py_DECREF(filename); *p_fd = &fd_package; return 2; } @@ -1780,14 +1788,14 @@ int err; err = PyErr_WarnFormat(PyExc_ImportWarning, 1, "Not importing directory %R: missing __init__.py", - bufobj); + filename); if (err) { - Py_DECREF(bufobj); + Py_DECREF(filename); return -1; } } } - Py_DECREF(bufobj); + Py_DECREF(filename); } #endif return 1; @@ -1815,6 +1823,8 @@ char *filemode; FILE *fp = NULL; char *namestr; + PyObject *filename; + int match; npath = PyList_Size(search_path_list); namestr = _PyUnicode_AsString(name); @@ -1840,20 +1850,34 @@ len = strlen(buf); for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) { - strcpy(buf+len, fdp->suffix); - if (Py_VerboseFlag > 1) - PySys_WriteStderr("# trying %s\n", buf); filemode = fdp->mode; if (filemode[0] == 'U') filemode = "r" PY_STDIOTEXTMODE; - fp = fopen(buf, filemode); - if (fp == NULL) + + strcpy(buf+len, fdp->suffix); + filename = PyUnicode_DecodeFSDefault(buf); + if (filename == NULL) + return NULL; + + if (Py_VerboseFlag > 1) + PySys_FormatStderr("# trying %R\n", filename); + + fp = _Py_fopen(filename, filemode); + if (fp == NULL) { + Py_DECREF(filename); continue; - - if (case_ok(buf, len, namelen, namestr)) { + } + match = case_ok(filename, -(Py_ssize_t)strlen(fdp->suffix), name); + if (match < 0) { + Py_DECREF(filename); + return NULL; + } + if (match) { + Py_DECREF(filename); *p_fp = fp; return fdp; } + Py_DECREF(filename); fclose(fp); fp = NULL; @@ -2002,7 +2026,7 @@ p_fp, p_loader); } -/* case_ok(char* buf, Py_ssize_t len, Py_ssize_t namelen, char* name) +/* case_bytes(char* buf, Py_ssize_t len, Py_ssize_t namelen, char* name) * The arguments here are tricky, best shown by example: * /a/b/c/d/e/f/g/h/i/j/k/some_long_module_name.py\0 * ^ ^ ^ ^ @@ -2016,18 +2040,18 @@ * We've already done a successful stat() or fopen() on buf, so know that * there's some match, possibly case-insensitive. * - * case_ok() is to return 1 if there's a case-sensitive match for - * name, else 0. case_ok() is also to return 1 if envar PYTHONCASEOK + * case_bytes() is to return 1 if there's a case-sensitive match for + * name, else 0. case_bytes() is also to return 1 if envar PYTHONCASEOK * exists. * - * case_ok() is used to implement case-sensitive import semantics even + * case_bytes() is used to implement case-sensitive import semantics even * on platforms with case-insensitive filesystems. It's trivial to implement * for case-sensitive filesystems. It's pretty much a cross-platform * nightmare for systems with case-insensitive filesystems. */ /* First we may need a pile of platform-specific header files; the sequence - * of #if's here should match the sequence in the body of case_ok(). + * of #if's here should match the sequence in the body of case_bytes(). */ #if defined(MS_WINDOWS) #include @@ -2046,33 +2070,24 @@ #include #endif +#if defined(DJGPP) \ + || ((defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) \ + && defined(HAVE_DIRENT_H)) \ + || defined(PYOS_OS2) +# define USE_CASE_OK_BYTES +#endif + + +#ifdef USE_CASE_OK_BYTES static int -case_ok(char *buf, Py_ssize_t len, Py_ssize_t namelen, const char *name) +case_bytes(char *buf, Py_ssize_t len, Py_ssize_t namelen, const char *name) { /* Pick a platform-specific implementation; the sequence of #if's here should * match the sequence just above. */ -/* MS_WINDOWS */ -#if defined(MS_WINDOWS) - WIN32_FIND_DATA data; - HANDLE h; - - if (Py_GETENV("PYTHONCASEOK") != NULL) - return 1; - - h = FindFirstFile(buf, &data); - if (h == INVALID_HANDLE_VALUE) { - PyErr_Format(PyExc_NameError, - "Can't find file for module %.100s\n(filename %.300s)", - name, buf); - return 0; - } - FindClose(h); - return strncmp(data.cFileName, name, namelen) == 0; - /* DJGPP */ -#elif defined(DJGPP) +#if defined(DJGPP) struct ffblk ffblk; int done; @@ -2151,6 +2166,70 @@ /* assuming it's a case-sensitive filesystem, so there's nothing to do! */ #else +# error "USE_CASE_OK_BYTES is not correctly defined" +#endif +} +#endif + +/* + * Check if a filename case matchs the name case. We've already done a + * successful stat() or fopen() on buf, so know that there's some match, + * possibly case-insensitive. + * + * case_ok() is to return 1 if there's a case-sensitive match for name, 0 if it + * the filename doesn't match, or -1 on error. case_ok() is also to return 1 + * if envar PYTHONCASEOK exists. + * + * case_ok() is used to implement case-sensitive import semantics even + * on platforms with case-insensitive filesystems. It's trivial to implement + * for case-sensitive filesystems. It's pretty much a cross-platform + * nightmare for systems with case-insensitive filesystems. + */ + +static int +case_ok(PyObject *filename, Py_ssize_t prefix_delta, PyObject *name) +{ +#ifdef MS_WINDOWS + WIN32_FIND_DATAW data; + HANDLE h; + int cmp; + + if (Py_GETENV("PYTHONCASEOK") != NULL) + return 1; + + h = FindFirstFileW(PyUnicode_AS_UNICODE(filename), &data); + if (h == INVALID_HANDLE_VALUE) { + PyErr_Format(PyExc_NameError, + "Can't find file for module %R\n(filename %R)", + name, filename); + return 0; + } + FindClose(h); + cmp = wcsncmp(data.cFileName, + PyUnicode_AS_UNICODE(name), + PyUnicode_GET_SIZE(name)); + return cmp == 0; +#elif defined(USE_CASE_OK_BYTES) + int match; + PyObject *filebytes, *namebytes; + filebytes = PyUnicode_EncodeFSDefault(filename); + if (filebytes == NULL) + return -1; + namebytes = PyUnicode_EncodeFSDefault(name); + if (namebytes == NULL) { + Py_DECREF(filebytes); + return -1; + } + match = case_bytes( + PyBytes_AS_STRING(filebytes), + PyBytes_GET_SIZE(filebytes) + prefix_delta, + PyBytes_AS_STRING(namebytes), + PyBytes_GET_SIZE(namebytes)); + Py_DECREF(filebytes); + Py_DECREF(namebytes); + return match; +#else + /* assuming it's a case-sensitive filesystem, so there's nothing to do! */ return 1; #endif @@ -2167,8 +2246,6 @@ struct stat statbuf; PyObject *filename; int match; - char *filestr; - size_t filelen; len = PyUnicode_GET_SIZE(directory); filename = PyUnicode_FromFormat("%U%c__init__.py", directory, SEP); @@ -2176,9 +2253,12 @@ return -1; if (_Py_stat(filename, &statbuf) == 0) { /* 9=len("/__init__") */ - filestr = _PyUnicode_AsString(filename); - filelen = strlen(filestr); - if (case_ok(filestr, filelen-9, 8, "__init__")) { + match = case_ok(filename, 9, initstr); + if (match < 0) { + Py_DECREF(filename); + return -1; + } + if (match) { Py_DECREF(filename); return 1; } @@ -2191,9 +2271,12 @@ return -1; if (_Py_stat(filename, &statbuf) == 0) { /* 9=len("/__init__") */ - filestr = _PyUnicode_AsString(filename); - filelen = strlen(filestr); - if (case_ok(filestr, filelen-9, 8, "__init__")) { + match = case_ok(filename, 9, initstr); + if (match < 0) { + Py_DECREF(filename); + return -1; + } + if (match) { Py_DECREF(filename); return 1; } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:14:02 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:14:02 +0100 Subject: [Python-checkins] cpython: Issue #3080: find_module() returns the path as Unicode Message-ID: http://hg.python.org/cpython/rev/9aec6f0e4076 changeset: 68735:9aec6f0e4076 user: Victor Stinner date: Mon Mar 14 15:19:39 2011 -0400 summary: Issue #3080: find_module() returns the path as Unicode files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1498,7 +1498,7 @@ /* Forward */ static PyObject *load_module(PyObject *, FILE *, PyObject *, int, PyObject *); static struct filedescr *find_module(PyObject *, PyObject *, PyObject *, - char *, size_t, FILE **, PyObject **); + PyObject **, FILE **, PyObject **); static struct _frozen * find_frozen(PyObject *); /* Load a package and return its module object WITH INCREMENTED @@ -1510,7 +1510,6 @@ PyObject *m, *d, *bufobj; PyObject *file = NULL, *path_list = NULL; int err; - char buf[MAXPATHLEN+1]; FILE *fp = NULL; struct filedescr *fdp; @@ -1538,7 +1537,7 @@ return NULL; } fdp = find_module(name, initstr, path_list, - buf, sizeof(buf), &fp, NULL); + &bufobj, &fp, NULL); Py_DECREF(path_list); if (fdp == NULL) { if (PyErr_ExceptionMatches(PyExc_ImportError)) { @@ -1549,13 +1548,8 @@ else return NULL; } - bufobj = PyUnicode_DecodeFSDefault(buf); - if (bufobj != NULL) { - m = load_module(name, fp, bufobj, fdp->type, NULL); - Py_DECREF(bufobj); - } - else - m = NULL; + m = load_module(name, fp, bufobj, fdp->type, NULL); + Py_XDECREF(bufobj); if (fp != NULL) fclose(fp); return m; @@ -1686,43 +1680,40 @@ static int find_module_path(PyObject *fullname, PyObject *name, PyObject *path, PyObject *path_hooks, PyObject *path_importer_cache, - char *buf, size_t buflen, - PyObject **p_loader, struct filedescr **p_fd) + PyObject **p_path, PyObject **p_loader, struct filedescr **p_fd) { - PyObject *path_bytes; - const char *base; + Py_UNICODE buf[MAXPATHLEN+1]; + Py_ssize_t buflen = MAXPATHLEN+1; + PyObject *path_unicode, *filename; + const Py_UNICODE *base; Py_ssize_t len; - size_t namelen; struct stat statbuf; static struct filedescr fd_package = {"", "", PKG_DIRECTORY}; - char *namestr; if (PyUnicode_Check(path)) { - path_bytes = PyUnicode_EncodeFSDefault(path); - if (path_bytes == NULL) - return -1; + Py_INCREF(path); + path_unicode = path; } else if (PyBytes_Check(path)) { - Py_INCREF(path); - path_bytes = path; + path_unicode = PyUnicode_DecodeFSDefaultAndSize( + PyBytes_AS_STRING(path), PyBytes_GET_SIZE(path)); + if (path_unicode == NULL) + return -1; } else return 0; - namestr = _PyUnicode_AsString(name); - namelen = strlen(namestr); - base = PyBytes_AS_STRING(path_bytes); - len = PyBytes_GET_SIZE(path_bytes); - if (len + 2 + namelen + MAXSUFFIXSIZE >= buflen) { - Py_DECREF(path_bytes); + base = PyUnicode_AS_UNICODE(path_unicode); + len = PyUnicode_GET_SIZE(path_unicode); + if (len + 2 + PyUnicode_GET_SIZE(name) + MAXSUFFIXSIZE >= buflen) { + Py_DECREF(path_unicode); return 0; /* Too long */ } - strcpy(buf, base); - Py_DECREF(path_bytes); - - if (strlen(buf) != len) { - return 0; /* path_bytes contains '\0' */ - } + Py_UNICODE_strcpy(buf, PyUnicode_AS_UNICODE(path_unicode)); + Py_DECREF(path_unicode); + + if (Py_UNICODE_strlen(buf) != len) + return 0; /* path contains '\0' */ /* sys.path_hooks import hook */ if (p_loader != NULL) { @@ -1758,21 +1749,21 @@ #endif ) buf[len++] = SEP; - strcpy(buf+len, namestr); - len += namelen; + Py_UNICODE_strcpy(buf+len, PyUnicode_AS_UNICODE(name)); + len += PyUnicode_GET_SIZE(name); + + filename = PyUnicode_FromUnicode(buf, len); + if (filename == NULL) + return -1; /* Check for package import (buf holds a directory name, and there's an __init__ module in that directory */ #ifdef HAVE_STAT - if (stat(buf, &statbuf) == 0 && /* it exists */ + if (_Py_stat(filename, &statbuf) == 0 && /* it exists */ S_ISDIR(statbuf.st_mode)) /* it's a directory */ { int match; - PyObject *filename; - - filename = PyUnicode_DecodeFSDefault(buf); - if (filename == NULL) - return -1; + match = case_ok(filename, 0, name); if (match < 0) { Py_DECREF(filename); @@ -1780,7 +1771,7 @@ } if (match) { /* case matches */ if (find_init_module(filename)) { /* and has __init__.py */ - Py_DECREF(filename); + *p_path = filename; *p_fd = &fd_package; return 2; } @@ -1795,9 +1786,9 @@ } } } - Py_DECREF(filename); } #endif + *p_path = filename; return 1; } @@ -1814,21 +1805,16 @@ find_module_path_list(PyObject *fullname, PyObject *name, PyObject *search_path_list, PyObject *path_hooks, PyObject *path_importer_cache, - char *buf, size_t buflen, - FILE **p_fp, PyObject **p_loader) + PyObject **p_path, FILE **p_fp, PyObject **p_loader) { Py_ssize_t i, npath; - size_t len, namelen; struct filedescr *fdp = NULL; char *filemode; FILE *fp = NULL; - char *namestr; - PyObject *filename; + PyObject *prefix, *filename; int match; npath = PyList_Size(search_path_list); - namestr = _PyUnicode_AsString(name); - namelen = strlen(namestr); for (i = 0; i < npath; i++) { PyObject *path; int ok; @@ -1837,27 +1823,29 @@ if (path == NULL) return NULL; + prefix = NULL; ok = find_module_path(fullname, name, path, path_hooks, path_importer_cache, - buf, buflen, - p_loader, &fdp); + &prefix, p_loader, &fdp); if (ok < 0) return NULL; if (ok == 0) continue; - if (ok == 2) + if (ok == 2) { + *p_path = prefix; return fdp; - - len = strlen(buf); + } + for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) { filemode = fdp->mode; if (filemode[0] == 'U') filemode = "r" PY_STDIOTEXTMODE; - strcpy(buf+len, fdp->suffix); - filename = PyUnicode_DecodeFSDefault(buf); - if (filename == NULL) + filename = PyUnicode_FromFormat("%U%s", prefix, fdp->suffix); + if (filename == NULL) { + Py_DECREF(prefix); return NULL; + } if (Py_VerboseFlag > 1) PySys_FormatStderr("# trying %R\n", filename); @@ -1869,11 +1857,13 @@ } match = case_ok(filename, -(Py_ssize_t)strlen(fdp->suffix), name); if (match < 0) { + Py_DECREF(prefix); Py_DECREF(filename); return NULL; } if (match) { - Py_DECREF(filename); + Py_DECREF(prefix); + *p_path = filename; *p_fp = fp; return fdp; } @@ -1882,6 +1872,7 @@ fclose(fp); fp = NULL; } + Py_DECREF(prefix); } PyErr_Format(PyExc_ImportError, "No module named %U", name); @@ -1897,32 +1888,35 @@ - otherwise, call find_module_path_list() with search_path_list (if not NULL) or sys.path + fullname can be NULL, but only if p_loader is NULL. + Return: - &fd_builtin (C_BUILTIN) if it is a builtin - &fd_frozen (PY_FROZEN) if it is frozen - - &fd_package (PKG_DIRECTORY) and write the filename into *buf + - &fd_package (PKG_DIRECTORY) and write the filename into *p_path if it is a package - &importhookdescr (IMP_HOOK) and write the loader into *p_loader if a importer loader was found - a file descriptor (PY_SOURCE, PY_COMPILED, C_EXTENSION, PY_RESOURCE or PY_CODERESOURCE: see _PyImport_Filetab), write the filename into - *buf and the pointer to the open file into *p_fp + *p_path and the pointer to the open file into *p_fp - NULL on error - By default, write an empty string into *buf, and *p_fp and *p_loader (if - set) are set to NULL. Eg. *buf is an empty string for a builtin package. */ + By default, *p_path, *p_fp and *p_loader (if set) are set to NULL. + Eg. *p_path is set to NULL for a builtin package. +*/ static struct filedescr * find_module(PyObject *fullname, PyObject *name, PyObject *search_path_list, - char *buf, size_t buflen, FILE **p_fp, PyObject **p_loader) + PyObject **p_path, FILE **p_fp, PyObject **p_loader) { Py_ssize_t i, npath; static struct filedescr fd_frozen = {"", "", PY_FROZEN}; static struct filedescr fd_builtin = {"", "", C_BUILTIN}; PyObject *path_hooks, *path_importer_cache; - *buf = '\0'; + *p_path = NULL; *p_fp = NULL; if (p_loader != NULL) *p_loader = NULL; @@ -1975,20 +1969,12 @@ #ifdef MS_COREDLL FILE *fp; struct filedescr *fdp; - PyObject *filename, *filename_bytes; #endif if (is_builtin(name)) return &fd_builtin; #ifdef MS_COREDLL - fp = _PyWin_FindRegisteredModule(name, &fdp, &filename); + fp = _PyWin_FindRegisteredModule(name, &fdp, p_path); if (fp != NULL) { - filename_bytes = PyUnicode_EncodeFSDefault(filename); - Py_DECREF(filename); - if (filename_bytes == NULL) - return NULL; - strncpy(buf, PyBytes_AS_STRING(filename_bytes), buflen); - buf[buflen-1] = '\0'; - Py_DECREF(filename_bytes); *p_fp = fp; return fdp; } @@ -2022,8 +2008,7 @@ return find_module_path_list(fullname, name, search_path_list, path_hooks, path_importer_cache, - buf, buflen, - p_fp, p_loader); + p_path, p_fp, p_loader); } /* case_bytes(char* buf, Py_ssize_t len, Py_ssize_t namelen, char* name) @@ -3185,7 +3170,6 @@ { PyObject *modules = PyImport_GetModuleDict(); PyObject *m = NULL, *bufobj, *path_list, *loader; - char buf[MAXPATHLEN+1]; struct filedescr *fdp; FILE *fp; @@ -3211,7 +3195,7 @@ } fdp = find_module(fullname, subname, path_list, - buf, MAXPATHLEN+1, &fp, &loader); + &bufobj, &fp, &loader); Py_XDECREF(path_list); if (fdp == NULL) { if (!PyErr_ExceptionMatches(PyExc_ImportError)) @@ -3220,13 +3204,8 @@ Py_INCREF(Py_None); return Py_None; } - bufobj = PyUnicode_DecodeFSDefault(buf); - if (bufobj != NULL) { - m = load_module(fullname, fp, bufobj, fdp->type, loader); - Py_DECREF(bufobj); - } - else - m = NULL; + m = load_module(fullname, fp, bufobj, fdp->type, loader); + Py_XDECREF(bufobj); Py_XDECREF(loader); if (fp) fclose(fp); @@ -3249,7 +3228,6 @@ PyInterpreterState *interp = PyThreadState_Get()->interp; PyObject *modules_reloading = interp->modules_reloading; PyObject *modules = PyImport_GetModuleDict(); - char buf[MAXPATHLEN+1]; PyObject *path_list = NULL, *loader = NULL, *existing_m = NULL; PyObject *nameobj, *bufobj, *subnameobj; Py_UNICODE *name, *subname; @@ -3324,7 +3302,7 @@ if (subnameobj == NULL) goto error; fdp = find_module(nameobj, subnameobj, path_list, - buf, MAXPATHLEN+1, &fp, &loader); + &bufobj, &fp, &loader); Py_DECREF(subnameobj); Py_XDECREF(path_list); @@ -3333,13 +3311,8 @@ goto error; } - bufobj = PyUnicode_DecodeFSDefault(buf); - if (bufobj != NULL) { - newm = load_module(nameobj, fp, bufobj, fdp->type, loader); - Py_DECREF(bufobj); - } - else - newm = NULL; + newm = load_module(nameobj, fp, bufobj, fdp->type, loader); + Py_XDECREF(bufobj); Py_XDECREF(loader); if (fp) @@ -3509,17 +3482,15 @@ PyObject *fob, *ret; PyObject *pathobj; struct filedescr *fdp; - char pathname[MAXPATHLEN+1]; FILE *fp; int fd = -1; char *found_encoding = NULL; char *encoding = NULL; - pathname[0] = '\0'; if (path_list == Py_None) path_list = NULL; fdp = find_module(NULL, name, path_list, - pathname, MAXPATHLEN+1, &fp, NULL); + &pathobj, &fp, NULL); if (fdp == NULL) return NULL; if (fp != NULL) { @@ -3535,14 +3506,17 @@ memory. */ found_encoding = PyTokenizer_FindEncoding(fd); lseek(fd, 0, 0); /* Reset position */ - if (found_encoding == NULL && PyErr_Occurred()) + if (found_encoding == NULL && PyErr_Occurred()) { + Py_XDECREF(pathobj); return NULL; + } encoding = (found_encoding != NULL) ? found_encoding : (char*)PyUnicode_GetDefaultEncoding(); } - fob = PyFile_FromFd(fd, pathname, fdp->mode, -1, + fob = PyFile_FromFd(fd, NULL, fdp->mode, -1, (char*)encoding, NULL, NULL, 1); if (fob == NULL) { + Py_XDECREF(pathobj); close(fd); PyMem_FREE(found_encoding); return NULL; @@ -3552,7 +3526,10 @@ fob = Py_None; Py_INCREF(fob); } - pathobj = PyUnicode_DecodeFSDefault(pathname); + if (pathobj == NULL) { + Py_INCREF(Py_None); + pathobj = Py_None; + } ret = Py_BuildValue("NN(ssi)", fob, pathobj, fdp->suffix, fdp->mode, fdp->type); PyMem_FREE(found_encoding); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:14:02 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:14:02 +0100 Subject: [Python-checkins] cpython: Issue #3080: imp.new_module() uses Unicode Message-ID: http://hg.python.org/cpython/rev/c17bc2026145 changeset: 68736:c17bc2026145 user: Victor Stinner date: Mon Mar 14 14:53:28 2011 -0400 summary: Issue #3080: imp.new_module() uses Unicode files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -3787,10 +3787,10 @@ static PyObject * imp_new_module(PyObject *self, PyObject *args) { - char *name; - if (!PyArg_ParseTuple(args, "s:new_module", &name)) + PyObject *name; + if (!PyArg_ParseTuple(args, "U:new_module", &name)) return NULL; - return PyModule_New(name); + return PyModule_NewObject(name); } static PyObject * -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:14:04 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:14:04 +0100 Subject: [Python-checkins] cpython: Fix imp.cache_from_source() if the directory name contains a dot Message-ID: http://hg.python.org/cpython/rev/238cbd559e9c changeset: 68737:238cbd559e9c user: Victor Stinner date: Mon Mar 14 15:05:12 2011 -0400 summary: Fix imp.cache_from_source() if the directory name contains a dot If the directory name contains a dot but not the filename, don't strip at the dot. files: Lib/test/test_imp.py Python/import.c diff --git a/Lib/test/test_imp.py b/Lib/test/test_imp.py --- a/Lib/test/test_imp.py +++ b/Lib/test/test_imp.py @@ -210,6 +210,10 @@ self.assertEqual( imp.cache_from_source('/foo/bar/baz/qux.py', True), '/foo/bar/baz/__pycache__/qux.{}.pyc'.format(self.tag)) + # Directory with a dot, filename without dot + self.assertEqual( + imp.cache_from_source('/foo.bar/file', True), + '/foo.bar/__pycache__/file{}.pyc'.format(self.tag)) def test_cache_from_source_optimized(self): # Given the path to a .py file, return the path to its PEP 3147 diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -943,12 +943,12 @@ Py_UNICODE_strcat(buf, CACHEDIR_UNICODE); i += Py_UNICODE_strlen(CACHEDIR_UNICODE) - 1; buf[i++] = sep; - buf[i++] = '\0'; + buf[i] = '\0'; /* Add the base filename, but remove the .py or .pyw extension, since the tag name must go before the extension. */ Py_UNICODE_strcat(buf, pathname + save); - pos = Py_UNICODE_strrchr(buf, '.'); + pos = Py_UNICODE_strrchr(buf + i, '.'); if (pos != NULL) *++pos = '\0'; Py_UNICODE_strcat(buf, PYC_TAG_UNICODE); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:14:05 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:14:05 +0100 Subject: [Python-checkins] cpython: Issue #3080: Use repr() to format the module name on error Message-ID: http://hg.python.org/cpython/rev/c4361bab6914 changeset: 68738:c4361bab6914 user: Victor Stinner date: Mon Mar 14 15:15:47 2011 -0400 summary: Issue #3080: Use repr() to format the module name on error files: Lib/test/test_pydoc.py Lib/unittest/test/test_loader.py Python/import.c diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -190,7 +190,7 @@ missing_pattern = "no Python documentation found for '%s'" # output pattern for module with bad imports -badimport_pattern = "problem in %s - ImportError: No module named %s" +badimport_pattern = "problem in %s - ImportError: No module named %r" def run_pydoc(module_name, *args): """ diff --git a/Lib/unittest/test/test_loader.py b/Lib/unittest/test/test_loader.py --- a/Lib/unittest/test/test_loader.py +++ b/Lib/unittest/test/test_loader.py @@ -239,7 +239,7 @@ try: loader.loadTestsFromName('sdasfasfasdf') except ImportError as e: - self.assertEqual(str(e), "No module named sdasfasfasdf") + self.assertEqual(str(e), "No module named 'sdasfasfasdf'") else: self.fail("TestLoader.loadTestsFromName failed to raise ImportError") @@ -619,7 +619,7 @@ try: loader.loadTestsFromNames(['sdasfasfasdf']) except ImportError as e: - self.assertEqual(str(e), "No module named sdasfasfasdf") + self.assertEqual(str(e), "No module named 'sdasfasfasdf'") else: self.fail("TestLoader.loadTestsFromNames failed to raise ImportError") diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1431,7 +1431,7 @@ goto error; if (Py_VerboseFlag) PySys_FormatStderr("import %U # from %R\n", - name, pathname); + name, pathname); if (cpathname != NULL) { PyObject *ro = PySys_GetObject("dont_write_bytecode"); if (ro == NULL || !PyObject_IsTrue(ro)) @@ -1517,8 +1517,8 @@ if (m == NULL) return NULL; if (Py_VerboseFlag) - PySys_FormatStderr("import %U # directory %U\n", - name, pathname); + PySys_FormatStderr("import %U # directory %R\n", + name, pathname); file = get_sourcefile(pathname); if (file == NULL) return NULL; @@ -1875,7 +1875,7 @@ Py_DECREF(prefix); } PyErr_Format(PyExc_ImportError, - "No module named %U", name); + "No module named %R", name); return NULL; } @@ -2366,7 +2366,7 @@ default: PyErr_Format(PyExc_ImportError, - "Don't know how to import %U (type code %d)", + "Don't know how to import %R (type code %d)", name, type); m = NULL; @@ -3251,7 +3251,7 @@ return NULL; if (m != PyDict_GetItem(modules, nameobj)) { PyErr_Format(PyExc_ImportError, - "reload(): module %U not in sys.modules", + "reload(): module %R not in sys.modules", nameobj); Py_DECREF(nameobj); return NULL; @@ -3286,7 +3286,7 @@ parent = PyDict_GetItem(modules, parentname); if (parent == NULL) { PyErr_Format(PyExc_ImportError, - "reload(): parent %U not in sys.modules", + "reload(): parent %R not in sys.modules", parentname); Py_DECREF(parentname); goto error; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:14:07 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:14:07 +0100 Subject: [Python-checkins] cpython: Issue #3080: Add PyImport_ImportModuleLevelObject() function Message-ID: http://hg.python.org/cpython/rev/80f4bd647695 changeset: 68739:80f4bd647695 user: Victor Stinner date: Mon Mar 14 15:54:52 2011 -0400 summary: Issue #3080: Add PyImport_ImportModuleLevelObject() function Use it for the builtin __import__ function. files: Doc/c-api/import.rst Include/import.h Python/bltinmodule.c Python/import.c diff --git a/Doc/c-api/import.rst b/Doc/c-api/import.rst --- a/Doc/c-api/import.rst +++ b/Doc/c-api/import.rst @@ -57,7 +57,7 @@ :c:func:`PyImport_ImportModule`. -.. c:function:: PyObject* PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *locals, PyObject *fromlist, int level) +.. c:function:: PyObject* PyImport_ImportModuleLevelObject(PyObject *name, PyObject *globals, PyObject *locals, PyObject *fromlist, int level) Import a module. This is best described by referring to the built-in Python function :func:`__import__`, as the standard :func:`__import__` function calls @@ -68,6 +68,13 @@ the return value when a submodule of a package was requested is normally the top-level package, unless a non-empty *fromlist* was given. + .. versionadded:: 3.3 + + +.. c:function:: PyObject* PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *locals, PyObject *fromlist, int level) + + Similar to :c:func:`PyImport_ImportModuleLevelObject`, but the name is an + UTF-8 encoded string instead of a Unicode object. .. c:function:: PyObject* PyImport_Import(PyObject *name) diff --git a/Include/import.h b/Include/import.h --- a/Include/import.h +++ b/Include/import.h @@ -50,6 +50,13 @@ PyObject *fromlist, int level ); +PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevelObject( + PyObject *name, + PyObject *globals, + PyObject *locals, + PyObject *fromlist, + int level + ); #define PyImport_ImportModuleEx(n, g, l, f) \ PyImport_ImportModuleLevel(n, g, l, f, -1) diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -155,17 +155,14 @@ { static char *kwlist[] = {"name", "globals", "locals", "fromlist", "level", 0}; - char *name; - PyObject *globals = NULL; - PyObject *locals = NULL; - PyObject *fromlist = NULL; + PyObject *name, *globals = NULL, *locals = NULL, *fromlist = NULL; int level = -1; - if (!PyArg_ParseTupleAndKeywords(args, kwds, "s|OOOi:__import__", + if (!PyArg_ParseTupleAndKeywords(args, kwds, "U|OOOi:__import__", kwlist, &name, &globals, &locals, &fromlist, &level)) return NULL; - return PyImport_ImportModuleLevel(name, globals, locals, - fromlist, level); + return PyImport_ImportModuleLevelObject(name, globals, locals, + fromlist, level); } PyDoc_STRVAR(import_doc, diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -2753,25 +2753,37 @@ } PyObject * -PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *locals, - PyObject *fromlist, int level) +PyImport_ImportModuleLevelObject(PyObject *name, PyObject *globals, + PyObject *locals, PyObject *fromlist, + int level) { - PyObject *nameobj, *result; - nameobj = PyUnicode_FromString(name); - if (nameobj == NULL) - return NULL; + PyObject *mod; _PyImport_AcquireLock(); - result = import_module_level(nameobj, globals, locals, fromlist, level); - Py_DECREF(nameobj); + mod = import_module_level(name, globals, locals, fromlist, level); if (_PyImport_ReleaseLock() < 0) { - Py_XDECREF(result); + Py_XDECREF(mod); PyErr_SetString(PyExc_RuntimeError, "not holding the import lock"); return NULL; } - return result; + return mod; } +PyObject * +PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *locals, + PyObject *fromlist, int level) +{ + PyObject *nameobj, *mod; + nameobj = PyUnicode_FromString(name); + if (nameobj == NULL) + return NULL; + mod = PyImport_ImportModuleLevelObject(nameobj, globals, locals, + fromlist, level); + Py_DECREF(nameobj); + return mod; +} + + /* Return the package that an import is being performed in. If globals comes from the module foo.bar.bat (not itself a package), this returns the sys.modules entry for foo.bar. If globals is from a package's __init__.py, -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:14:10 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:14:10 +0100 Subject: [Python-checkins] cpython: Issue #3080: skip test_bdist_rpm if sys.executable is not encodable to UTF-8 Message-ID: http://hg.python.org/cpython/rev/cc7c0f6f60bf changeset: 68740:cc7c0f6f60bf user: Victor Stinner date: Mon Mar 14 20:03:36 2011 -0400 summary: Issue #3080: skip test_bdist_rpm if sys.executable is not encodable to UTF-8 files: Lib/distutils/tests/test_bdist_rpm.py diff --git a/Lib/distutils/tests/test_bdist_rpm.py b/Lib/distutils/tests/test_bdist_rpm.py --- a/Lib/distutils/tests/test_bdist_rpm.py +++ b/Lib/distutils/tests/test_bdist_rpm.py @@ -28,6 +28,11 @@ unittest.TestCase): def setUp(self): + try: + sys.executable.encode("UTF-8") + except UnicodeEncodeError: + raise unittest.SkipTest("sys.executable is not encodable to UTF-8") + super(BuildRpmTestCase, self).setUp() self.old_location = os.getcwd() self.old_sys_argv = sys.argv, sys.argv[:] -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 04:29:00 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 04:29:00 +0100 Subject: [Python-checkins] cpython: Issue #3080: Fix case_ok() using case_bytes() Message-ID: http://hg.python.org/cpython/rev/f8d6f6797909 changeset: 68741:f8d6f6797909 user: Victor Stinner date: Sun Mar 20 04:28:55 2011 +0100 summary: Issue #3080: Fix case_ok() using case_bytes() Invert name and namelen arguments. files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -2208,8 +2208,8 @@ match = case_bytes( PyBytes_AS_STRING(filebytes), PyBytes_GET_SIZE(filebytes) + prefix_delta, - PyBytes_AS_STRING(namebytes), - PyBytes_GET_SIZE(namebytes)); + PyBytes_GET_SIZE(namebytes), + PyBytes_AS_STRING(namebytes)); Py_DECREF(filebytes); Py_DECREF(namebytes); return match; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 05:00:27 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 05:00:27 +0100 Subject: [Python-checkins] cpython: Issue #3080: Fix call to case_ok() in find_init_module() Message-ID: http://hg.python.org/cpython/rev/dc38c4d65cd9 changeset: 68742:dc38c4d65cd9 user: Victor Stinner date: Sun Mar 20 04:58:29 2011 +0100 summary: Issue #3080: Fix call to case_ok() in find_init_module() files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -2237,8 +2237,8 @@ if (filename == NULL) return -1; if (_Py_stat(filename, &statbuf) == 0) { - /* 9=len("/__init__") */ - match = case_ok(filename, 9, initstr); + /* 3=len(".py") */ + match = case_ok(filename, -3, initstr); if (match < 0) { Py_DECREF(filename); return -1; @@ -2255,8 +2255,8 @@ if (filename == NULL) return -1; if (_Py_stat(filename, &statbuf) == 0) { - /* 9=len("/__init__") */ - match = case_ok(filename, 9, initstr); + /* 4=len(".pyc") */ + match = case_ok(filename, -4, initstr); if (match < 0) { Py_DECREF(filename); return -1; -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Sun Mar 20 05:10:29 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Sun, 20 Mar 2011 05:10:29 +0100 Subject: [Python-checkins] Daily reference leaks (1a3eca36cecd): sum=0 Message-ID: results for 1a3eca36cecd on branch "default" -------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogtpyFzm', '-x'] From python-checkins at python.org Sun Mar 20 14:34:57 2011 From: python-checkins at python.org (ezio.melotti) Date: Sun, 20 Mar 2011 14:34:57 +0100 Subject: [Python-checkins] cpython (3.2): Add a check for sys.warnoptions in regrtest. Message-ID: http://hg.python.org/cpython/rev/9500a5c517ba changeset: 68743:9500a5c517ba branch: 3.2 parent: 68706:ff3b462fbfc4 user: Ezio Melotti date: Sun Mar 20 15:09:26 2011 +0200 summary: Add a check for sys.warnoptions in regrtest. files: Lib/test/regrtest.py diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -827,7 +827,8 @@ resources = ('sys.argv', 'cwd', 'sys.stdin', 'sys.stdout', 'sys.stderr', 'os.environ', 'sys.path', 'sys.path_hooks', '__import__', 'warnings.filters', 'asyncore.socket_map', - 'logging._handlers', 'logging._handlerList') + 'logging._handlers', 'logging._handlerList', + 'sys.warnoptions') def get_sys_argv(self): return id(sys.argv), sys.argv, sys.argv[:] @@ -909,6 +910,12 @@ # Can't easily revert the logging state pass + def get_sys_warnoptions(self): + return id(sys.warnoptions), sys.warnoptions, sys.warnoptions[:] + def restore_sys_warnoptions(self, saved_options): + sys.warnoptions = saved_options[1] + sys.warnoptions[:] = saved_options[2] + def resource_info(self): for name in self.resources: method_suffix = name.replace('.', '_') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 14:34:58 2011 From: python-checkins at python.org (ezio.melotti) Date: Sun, 20 Mar 2011 14:34:58 +0100 Subject: [Python-checkins] cpython (3.2): Save a copy of sys.warnoptions in test_program. Message-ID: http://hg.python.org/cpython/rev/5d4800b10acd changeset: 68744:5d4800b10acd branch: 3.2 user: Ezio Melotti date: Sun Mar 20 15:31:26 2011 +0200 summary: Save a copy of sys.warnoptions in test_program. files: Lib/unittest/test/test_program.py diff --git a/Lib/unittest/test/test_program.py b/Lib/unittest/test/test_program.py --- a/Lib/unittest/test/test_program.py +++ b/Lib/unittest/test/test_program.py @@ -189,7 +189,7 @@ class FakeTP(unittest.TestProgram): def parseArgs(self, *args, **kw): pass def runTests(self, *args, **kw): pass - warnoptions = sys.warnoptions + warnoptions = sys.warnoptions[:] try: sys.warnoptions[:] = [] # no warn options, no arg -> default -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 14:35:00 2011 From: python-checkins at python.org (ezio.melotti) Date: Sun, 20 Mar 2011 14:35:00 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge with 3.2. Message-ID: http://hg.python.org/cpython/rev/815e97df82a0 changeset: 68745:815e97df82a0 parent: 68742:dc38c4d65cd9 parent: 68744:5d4800b10acd user: Ezio Melotti date: Sun Mar 20 15:34:28 2011 +0200 summary: Merge with 3.2. files: Lib/test/regrtest.py diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -827,7 +827,8 @@ resources = ('sys.argv', 'cwd', 'sys.stdin', 'sys.stdout', 'sys.stderr', 'os.environ', 'sys.path', 'sys.path_hooks', '__import__', 'warnings.filters', 'asyncore.socket_map', - 'logging._handlers', 'logging._handlerList', 'sys.gettrace') + 'logging._handlers', 'logging._handlerList', 'sys.gettrace', + 'sys.warnoptions') def get_sys_argv(self): return id(sys.argv), sys.argv, sys.argv[:] @@ -914,6 +915,12 @@ # Can't easily revert the logging state pass + def get_sys_warnoptions(self): + return id(sys.warnoptions), sys.warnoptions, sys.warnoptions[:] + def restore_sys_warnoptions(self, saved_options): + sys.warnoptions = saved_options[1] + sys.warnoptions[:] = saved_options[2] + def resource_info(self): for name in self.resources: method_suffix = name.replace('.', '_') diff --git a/Lib/unittest/test/test_program.py b/Lib/unittest/test/test_program.py --- a/Lib/unittest/test/test_program.py +++ b/Lib/unittest/test/test_program.py @@ -189,7 +189,7 @@ class FakeTP(unittest.TestProgram): def parseArgs(self, *args, **kw): pass def runTests(self, *args, **kw): pass - warnoptions = sys.warnoptions + warnoptions = sys.warnoptions[:] try: sys.warnoptions[:] = [] # no warn options, no arg -> default -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 15:30:18 2011 From: python-checkins at python.org (r.david.murray) Date: Sun, 20 Mar 2011 15:30:18 +0100 Subject: [Python-checkins] cpython (3.1): #7198: really add newline='' to csv.writer docs. Message-ID: http://hg.python.org/cpython/rev/9201455f950b changeset: 68746:9201455f950b branch: 3.1 parent: 68705:135a0d7bc4db user: R David Murray date: Sun Mar 20 10:23:22 2011 -0400 summary: #7198: really add newline='' to csv.writer docs. Changeset ab27f16f707a was messed up by a rebase (as were 959f666470cc and 9d1b1a95bc8f) and the patch only got applied to default. files: Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -52,7 +52,7 @@ *csvfile* can be any object which supports the :term:`iterator` protocol and returns a string each time its :meth:`!__next__` method is called --- :term:`file objects ` and list objects are both suitable. If *csvfile* is a file object, - it should be opened with ``newline=''``. [#]_ An optional + it should be opened with ``newline=''``. [1]_ An optional *dialect* parameter can be given which is used to define a set of parameters specific to a particular CSV dialect. It may be an instance of a subclass of the :class:`Dialect` class or one of the strings returned by the @@ -79,7 +79,8 @@ Return a writer object responsible for converting the user's data into delimited strings on the given file-like object. *csvfile* can be any object with a - :func:`write` method. An optional *dialect* + :func:`write` method. If csvfile is a file object, it should be opened with + newline='' [1]_. An optional *dialect* parameter can be given which is used to define a set of parameters specific to a particular CSV dialect. It may be an instance of a subclass of the :class:`Dialect` class or one of the strings returned by the @@ -96,7 +97,7 @@ A short usage example:: >>> import csv - >>> spamWriter = csv.writer(open('eggs.csv', 'w'), delimiter=' ', + >>> spamWriter = csv.writer(open('eggs.csv', 'w', newline=''), delimiter=' ', ... quotechar='|', quoting=csv.QUOTE_MINIMAL) >>> spamWriter.writerow(['Spam'] * 5 + ['Baked Beans']) >>> spamWriter.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam']) @@ -408,7 +409,7 @@ Reading a file with an alternate format:: import csv - with open('passwd') as f: + with open('passwd', newline='') as f: reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE) for row in reader: print(row) @@ -416,7 +417,7 @@ The corresponding simplest possible writing example is:: import csv - with open('some.csv', 'w') as f: + with open('some.csv', 'w', newline='') as f: writer = csv.writer(f) writer.writerows(someiterable) @@ -438,7 +439,7 @@ import csv csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE) - with open('passwd') as f: + with open('passwd', newline='') as f: reader = csv.reader(f, 'unixpwd') A slightly more advanced use of the reader --- catching and reporting errors:: @@ -463,7 +464,7 @@ .. rubric:: Footnotes -.. [#] If ``newline=''`` is not specified, newlines embedded inside quoted fields - will not be interpreted correctly. It should always be safe to specify - ``newline=''``, since the csv module does its own universal newline handling - on input. +.. [1] If ``newline=''`` is not specified, newlines embedded inside quoted fields + will not be interpreted correctly, and on platforms that use ``\r\n`` linendings + on write an extra `\\r` will be added. It should always be safe to specify + ``newline=''``, since the csv module does its own (universal) newline handling. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 15:30:25 2011 From: python-checkins at python.org (r.david.murray) Date: Sun, 20 Mar 2011 15:30:25 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Really merge #7198 Message-ID: http://hg.python.org/cpython/rev/fa0563f3b7f7 changeset: 68747:fa0563f3b7f7 branch: 3.2 parent: 68744:5d4800b10acd parent: 68746:9201455f950b user: R David Murray date: Sun Mar 20 10:25:29 2011 -0400 summary: Really merge #7198 Changeset ab27f16f707a was messed up by a rebase (as were 959f666470cc and 9d1b1a95bc8f) and the patch only got applied to default. files: Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -52,7 +52,7 @@ *csvfile* can be any object which supports the :term:`iterator` protocol and returns a string each time its :meth:`!__next__` method is called --- :term:`file objects ` and list objects are both suitable. If *csvfile* is a file object, - it should be opened with ``newline=''``. [#]_ An optional + it should be opened with ``newline=''``. [1]_ An optional *dialect* parameter can be given which is used to define a set of parameters specific to a particular CSV dialect. It may be an instance of a subclass of the :class:`Dialect` class or one of the strings returned by the @@ -79,7 +79,8 @@ Return a writer object responsible for converting the user's data into delimited strings on the given file-like object. *csvfile* can be any object with a - :func:`write` method. An optional *dialect* + :func:`write` method. If csvfile is a file object, it should be opened with + newline='' [1]_. An optional *dialect* parameter can be given which is used to define a set of parameters specific to a particular CSV dialect. It may be an instance of a subclass of the :class:`Dialect` class or one of the strings returned by the @@ -96,7 +97,7 @@ A short usage example:: >>> import csv - >>> spamWriter = csv.writer(open('eggs.csv', 'w'), delimiter=' ', + >>> spamWriter = csv.writer(open('eggs.csv', 'w', newline=''), delimiter=' ', ... quotechar='|', quoting=csv.QUOTE_MINIMAL) >>> spamWriter.writerow(['Spam'] * 5 + ['Baked Beans']) >>> spamWriter.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam']) @@ -427,7 +428,7 @@ Reading a file with an alternate format:: import csv - with open('passwd') as f: + with open('passwd', newline='') as f: reader = csv.reader(f, delimiter=':', quoting=csv.QUOTE_NONE) for row in reader: print(row) @@ -435,7 +436,7 @@ The corresponding simplest possible writing example is:: import csv - with open('some.csv', 'w') as f: + with open('some.csv', 'w', newline='') as f: writer = csv.writer(f) writer.writerows(someiterable) @@ -457,7 +458,7 @@ import csv csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE) - with open('passwd') as f: + with open('passwd', newline='') as f: reader = csv.reader(f, 'unixpwd') A slightly more advanced use of the reader --- catching and reporting errors:: @@ -482,7 +483,7 @@ .. rubric:: Footnotes -.. [#] If ``newline=''`` is not specified, newlines embedded inside quoted fields - will not be interpreted correctly. It should always be safe to specify - ``newline=''``, since the csv module does its own universal newline handling - on input. +.. [1] If ``newline=''`` is not specified, newlines embedded inside quoted fields + will not be interpreted correctly, and on platforms that use ``\r\n`` linendings + on write an extra `\\r` will be added. It should always be safe to specify + ``newline=''``, since the csv module does its own (universal) newline handling. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 15:30:26 2011 From: python-checkins at python.org (r.david.murray) Date: Sun, 20 Mar 2011 15:30:26 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Dummy merge #7198 Message-ID: http://hg.python.org/cpython/rev/ed0d1e07ce79 changeset: 68748:ed0d1e07ce79 parent: 68745:815e97df82a0 parent: 68747:fa0563f3b7f7 user: R David Murray date: Sun Mar 20 10:27:48 2011 -0400 summary: Dummy merge #7198 Changeset ab27f16f707a was messed up by a rebase (as were 959f666470cc and 9d1b1a95bc8f) and the patch only got applied to default. files: Doc/library/csv.rst -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 15:51:22 2011 From: python-checkins at python.org (skip.montanaro) Date: Sun, 20 Mar 2011 15:51:22 +0100 Subject: [Python-checkins] cpython: mention newline= in write doc Message-ID: http://hg.python.org/cpython/rev/592fd5b15639 changeset: 68749:592fd5b15639 user: Skip Montanaro date: Sun Mar 20 09:50:43 2011 -0500 summary: mention newline= in write doc files: Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -79,8 +79,8 @@ Return a writer object responsible for converting the user's data into delimited strings on the given file-like object. *csvfile* can be any object with a - :func:`write` method. If csvfile is a file object, it should be opened with - newline='' [1]_. An optional *dialect* + :func:`write` method. If *csvfile* is a file object, + it should be opened with ``newline=''``. [#]_ An optional *dialect* parameter can be given which is used to define a set of parameters specific to a particular CSV dialect. It may be an instance of a subclass of the :class:`Dialect` class or one of the strings returned by the -- Repository URL: http://hg.python.org/cpython From skip at pobox.com Sun Mar 20 16:07:36 2011 From: skip at pobox.com (skip at pobox.com) Date: Sun, 20 Mar 2011 10:07:36 -0500 Subject: [Python-checkins] Would someone please help me merge these changes to other branches? Message-ID: <19846.6200.375421.791677@montanaro.dyndns.org> I pushed two changes to cpython yesterday and today. I don't know how to merge them to the 2.7 and 3.2 branches, and don't want to even try for fear of screwing something up. If what I read in python-dev yesterday is correct, I did things incorrectly by starting with cpython instead of 2.7 or 3.2. Here are the changesets: http://hg.python.org/cpython/rev/c63d7374b89a http://hg.python.org/cpython/rev/592fd5b15639 There are other changesets, but they are all merge or conflict resolution stuff and don't appear to be related to what I planned on being a simple toe-in-the-water exercise in using Mercurial. I don't know why they turned up in the push. Thanks, Skip From skip at pobox.com Sun Mar 20 16:10:02 2011 From: skip at pobox.com (skip at pobox.com) Date: Sun, 20 Mar 2011 10:10:02 -0500 Subject: [Python-checkins] Would someone please help me merge these changes to other branches? Message-ID: <19846.6346.55906.872873@montanaro.dyndns.org> > I pushed two changes to cpython yesterday and today. I don't know how to > merge them to the 2.7 and 3.2 branches, and don't want to even try for > fear of screwing something up. If what I read in python-dev yesterday is > correct, I did things incorrectly by starting with cpython instead of 2.7 > or 3.2. Actually, the newline= change only needs to go to 3.2. The RFC 4180 change can also go to 2.7. S From python-checkins at python.org Sun Mar 20 16:28:15 2011 From: python-checkins at python.org (reid.kleckner) Date: Sun, 20 Mar 2011 16:28:15 +0100 Subject: [Python-checkins] cpython: Fix the Windows timeout code. Message-ID: http://hg.python.org/cpython/rev/6017c431ff0d changeset: 68750:6017c431ff0d user: Reid Kleckner date: Sun Mar 20 08:28:07 2011 -0700 summary: Fix the Windows timeout code. files: Lib/subprocess.py diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -1113,11 +1113,11 @@ if self.stdout is not None: self.stdout_thread.join(self._remaining_time(endtime)) if self.stdout_thread.isAlive(): - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, orig_timeout) if self.stderr is not None: self.stderr_thread.join(self._remaining_time(endtime)) if self.stderr_thread.isAlive(): - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, orig_timeout) # Collect the output from and close both pipes, now that we know # both have been read successfully. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 16:40:05 2011 From: python-checkins at python.org (r.david.murray) Date: Sun, 20 Mar 2011 16:40:05 +0100 Subject: [Python-checkins] cpython: Fix footnote reference. Message-ID: http://hg.python.org/cpython/rev/07c89f2a0636 changeset: 68751:07c89f2a0636 parent: 68749:592fd5b15639 user: R David Murray date: Sun Mar 20 11:08:10 2011 -0400 summary: Fix footnote reference. files: Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -80,7 +80,7 @@ Return a writer object responsible for converting the user's data into delimited strings on the given file-like object. *csvfile* can be any object with a :func:`write` method. If *csvfile* is a file object, - it should be opened with ``newline=''``. [#]_ An optional *dialect* + it should be opened with ``newline=''``. [1]_ An optional *dialect* parameter can be given which is used to define a set of parameters specific to a particular CSV dialect. It may be an instance of a subclass of the :class:`Dialect` class or one of the strings returned by the -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 16:40:06 2011 From: python-checkins at python.org (r.david.murray) Date: Sun, 20 Mar 2011 16:40:06 +0100 Subject: [Python-checkins] cpython (3.1): Markup fixes for #7198 patch. Message-ID: http://hg.python.org/cpython/rev/88876a264ebe changeset: 68752:88876a264ebe branch: 3.1 parent: 68746:9201455f950b user: R David Murray date: Sun Mar 20 11:18:21 2011 -0400 summary: Markup fixes for #7198 patch. files: Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -79,8 +79,8 @@ Return a writer object responsible for converting the user's data into delimited strings on the given file-like object. *csvfile* can be any object with a - :func:`write` method. If csvfile is a file object, it should be opened with - newline='' [1]_. An optional *dialect* + :func:`write` method. If *csvfile* is a file object, it should be opened with + ``newline=''`` [1]_. An optional *dialect* parameter can be given which is used to define a set of parameters specific to a particular CSV dialect. It may be an instance of a subclass of the :class:`Dialect` class or one of the strings returned by the @@ -466,5 +466,5 @@ .. [1] If ``newline=''`` is not specified, newlines embedded inside quoted fields will not be interpreted correctly, and on platforms that use ``\r\n`` linendings - on write an extra `\\r` will be added. It should always be safe to specify + on write an extra ``\r`` will be added. It should always be safe to specify ``newline=''``, since the csv module does its own (universal) newline handling. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 16:40:10 2011 From: python-checkins at python.org (r.david.murray) Date: Sun, 20 Mar 2011 16:40:10 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge markup fixes for #7198 patch. Message-ID: http://hg.python.org/cpython/rev/d0d1235cb66e changeset: 68753:d0d1235cb66e branch: 3.2 parent: 68747:fa0563f3b7f7 parent: 68752:88876a264ebe user: R David Murray date: Sun Mar 20 11:19:20 2011 -0400 summary: Merge markup fixes for #7198 patch. files: Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -79,8 +79,8 @@ Return a writer object responsible for converting the user's data into delimited strings on the given file-like object. *csvfile* can be any object with a - :func:`write` method. If csvfile is a file object, it should be opened with - newline='' [1]_. An optional *dialect* + :func:`write` method. If *csvfile* is a file object, it should be opened with + ``newline=''`` [1]_. An optional *dialect* parameter can be given which is used to define a set of parameters specific to a particular CSV dialect. It may be an instance of a subclass of the :class:`Dialect` class or one of the strings returned by the @@ -485,5 +485,5 @@ .. [1] If ``newline=''`` is not specified, newlines embedded inside quoted fields will not be interpreted correctly, and on platforms that use ``\r\n`` linendings - on write an extra `\\r` will be added. It should always be safe to specify + on write an extra ``\r`` will be added. It should always be safe to specify ``newline=''``, since the csv module does its own (universal) newline handling. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 16:40:11 2011 From: python-checkins at python.org (r.david.murray) Date: Sun, 20 Mar 2011 16:40:11 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Markup fixes for #7198 patch. Message-ID: http://hg.python.org/cpython/rev/2a8580f4897c changeset: 68754:2a8580f4897c parent: 68751:07c89f2a0636 parent: 68753:d0d1235cb66e user: R David Murray date: Sun Mar 20 11:33:17 2011 -0400 summary: Markup fixes for #7198 patch. Also corrected the indentation of one of the examples. files: Doc/library/csv.rst diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -79,8 +79,8 @@ Return a writer object responsible for converting the user's data into delimited strings on the given file-like object. *csvfile* can be any object with a - :func:`write` method. If *csvfile* is a file object, - it should be opened with ``newline=''``. [1]_ An optional *dialect* + :func:`write` method. If *csvfile* is a file object, it should be opened with + ``newline=''`` [1]_. An optional *dialect* parameter can be given which is used to define a set of parameters specific to a particular CSV dialect. It may be an instance of a subclass of the :class:`Dialect` class or one of the strings returned by the @@ -476,14 +476,14 @@ And while the module doesn't directly support parsing strings, it can easily be done:: - import csv - for row in csv.reader(['one,two,three']): - print(row) + import csv + for row in csv.reader(['one,two,three']): + print(row) .. rubric:: Footnotes .. [1] If ``newline=''`` is not specified, newlines embedded inside quoted fields will not be interpreted correctly, and on platforms that use ``\r\n`` linendings - on write an extra `\\r` will be added. It should always be safe to specify + on write an extra ``\r`` will be added. It should always be safe to specify ``newline=''``, since the csv module does its own (universal) newline handling. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 16:40:11 2011 From: python-checkins at python.org (r.david.murray) Date: Sun, 20 Mar 2011 16:40:11 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merge heads. Message-ID: http://hg.python.org/cpython/rev/3ee046d44287 changeset: 68755:3ee046d44287 parent: 68754:2a8580f4897c parent: 68750:6017c431ff0d user: R David Murray date: Sun Mar 20 11:37:13 2011 -0400 summary: Merge heads. files: diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -1113,11 +1113,11 @@ if self.stdout is not None: self.stdout_thread.join(self._remaining_time(endtime)) if self.stdout_thread.isAlive(): - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, orig_timeout) if self.stderr is not None: self.stderr_thread.join(self._remaining_time(endtime)) if self.stderr_thread.isAlive(): - raise TimeoutExpired(self.args) + raise TimeoutExpired(self.args, orig_timeout) # Collect the output from and close both pipes, now that we know # both have been read successfully. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 17:28:46 2011 From: python-checkins at python.org (ross.lagerwall) Date: Sun, 20 Mar 2011 17:28:46 +0100 Subject: [Python-checkins] cpython: Issue #11615: Fix sporadic buildbot failures related to #10812. Message-ID: http://hg.python.org/cpython/rev/aedad9e14135 changeset: 68756:aedad9e14135 user: Ross Lagerwall date: Sun Mar 20 18:27:05 2011 +0200 summary: Issue #11615: Fix sporadic buildbot failures related to #10812. files: Lib/test/test_posix.py diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -141,7 +141,7 @@ @unittest.skipUnless(hasattr(posix, 'fexecve'), "test needs posix.fexecve()") @unittest.skipUnless(hasattr(os, 'fork'), "test needs os.fork()") - @unittest.skipUnless(hasattr(os, 'wait'), "test needs os.wait()") + @unittest.skipUnless(hasattr(os, 'waitpid'), "test needs os.waitpid()") def test_fexecve(self): fp = os.open(sys.executable, os.O_RDONLY) try: @@ -150,7 +150,7 @@ os.chdir(os.path.split(sys.executable)[0]) posix.fexecve(fp, [sys.executable, '-c', 'pass'], os.environ) else: - self.assertEqual(os.wait(), (pid, 0)) + self.assertEqual(os.waitpid(pid, 0), (pid, 0)) finally: os.close(fp) -- Repository URL: http://hg.python.org/cpython From rdmurray at bitdance.com Sun Mar 20 17:33:32 2011 From: rdmurray at bitdance.com (R. David Murray) Date: Sun, 20 Mar 2011 12:33:32 -0400 Subject: [Python-checkins] Would someone please help me merge these changes to other branches? In-Reply-To: <19846.6346.55906.872873@montanaro.dyndns.org> References: <19846.6346.55906.872873@montanaro.dyndns.org> Message-ID: <20110320163332.E68D9F4A1B@kimball.webabinitio.net> On Sun, 20 Mar 2011 10:10:02 -0500, skip at pobox.com wrote: > > I pushed two changes to cpython yesterday and today. I don't know how to > > merge them to the 2.7 and 3.2 branches, and don't want to even try for > > fear of screwing something up. If what I read in python-dev yesterday is > > correct, I did things incorrectly by starting with cpython instead of 2.7 > > or 3.2. > > Actually, the newline= change only needs to go to 3.2. The RFC 4180 change > can also go to 2.7. I'd already started on this fix, so I incorporated your changes (except for the RFC 4180 one) and made them on 3.1, 3.2, and harmonized default. So this should all be good now, except for the RFC change. I guess I'll see about doing that one later. -- R. David Murray http://www.bitdance.com From python-checkins at python.org Sun Mar 20 17:34:01 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 20 Mar 2011 17:34:01 +0100 Subject: [Python-checkins] cpython: Call reap_children() at the end of test_posix Message-ID: http://hg.python.org/cpython/rev/c70d252135da changeset: 68757:c70d252135da user: Antoine Pitrou date: Sun Mar 20 17:33:57 2011 +0100 summary: Call reap_children() at the end of test_posix files: Lib/test/test_posix.py diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -780,7 +780,10 @@ def test_main(): - support.run_unittest(PosixTester, PosixGroupsTester) + try: + support.run_unittest(PosixTester, PosixGroupsTester) + finally: + support.reap_children() if __name__ == '__main__': test_main() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 17:43:00 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 20 Mar 2011 17:43:00 +0100 Subject: [Python-checkins] cpython (3.1): Call reap_children() where appropriate Message-ID: http://hg.python.org/cpython/rev/154b1e20e62b changeset: 68758:154b1e20e62b branch: 3.1 parent: 68752:88876a264ebe user: Antoine Pitrou date: Sun Mar 20 17:35:32 2011 +0100 summary: Call reap_children() where appropriate files: Lib/test/test_pty.py Lib/test/test_signal.py diff --git a/Lib/test/test_pty.py b/Lib/test/test_pty.py --- a/Lib/test/test_pty.py +++ b/Lib/test/test_pty.py @@ -1,4 +1,4 @@ -from test.support import verbose, run_unittest, import_module +from test.support import verbose, run_unittest, import_module, reap_children #Skip these tests if either fcntl or termios is not available fcntl = import_module('fcntl') @@ -195,7 +195,10 @@ # pty.fork() passed. def test_main(verbose=None): - run_unittest(PtyTest) + try: + run_unittest(PtyTest) + finally: + reap_children() if __name__ == "__main__": test_main() diff --git a/Lib/test/test_signal.py b/Lib/test/test_signal.py --- a/Lib/test/test_signal.py +++ b/Lib/test/test_signal.py @@ -484,9 +484,12 @@ self.assertEqual(self.hndl_called, True) def test_main(): - support.run_unittest(BasicSignalTests, InterProcessSignalTests, - WakeupSignalTests, SiginterruptTest, - ItimerTest, WindowsSignalTests) + try: + support.run_unittest(BasicSignalTests, InterProcessSignalTests, + WakeupSignalTests, SiginterruptTest, + ItimerTest, WindowsSignalTests) + finally: + support.reap_children() if __name__ == "__main__": -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 17:43:01 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 20 Mar 2011 17:43:01 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge Message-ID: http://hg.python.org/cpython/rev/adbdb3e74461 changeset: 68759:adbdb3e74461 branch: 3.2 parent: 68753:d0d1235cb66e parent: 68758:154b1e20e62b user: Antoine Pitrou date: Sun Mar 20 17:36:26 2011 +0100 summary: Merge files: Lib/test/test_signal.py diff --git a/Lib/test/test_pty.py b/Lib/test/test_pty.py --- a/Lib/test/test_pty.py +++ b/Lib/test/test_pty.py @@ -1,4 +1,4 @@ -from test.support import verbose, run_unittest, import_module +from test.support import verbose, run_unittest, import_module, reap_children #Skip these tests if either fcntl or termios is not available fcntl = import_module('fcntl') @@ -195,7 +195,10 @@ # pty.fork() passed. def test_main(verbose=None): - run_unittest(PtyTest) + try: + run_unittest(PtyTest) + finally: + reap_children() if __name__ == "__main__": test_main() diff --git a/Lib/test/test_signal.py b/Lib/test/test_signal.py --- a/Lib/test/test_signal.py +++ b/Lib/test/test_signal.py @@ -484,9 +484,12 @@ self.assertEqual(self.hndl_called, True) def test_main(): - support.run_unittest(BasicSignalTests, InterProcessSignalTests, - WakeupSignalTests, SiginterruptTest, - ItimerTest, WindowsSignalTests) + try: + support.run_unittest(BasicSignalTests, InterProcessSignalTests, + WakeupSignalTests, SiginterruptTest, + ItimerTest, WindowsSignalTests) + finally: + support.reap_children() if __name__ == "__main__": -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 17:43:02 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 20 Mar 2011 17:43:02 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge Message-ID: http://hg.python.org/cpython/rev/d825316b73d0 changeset: 68760:d825316b73d0 parent: 68757:c70d252135da parent: 68759:adbdb3e74461 user: Antoine Pitrou date: Sun Mar 20 17:42:55 2011 +0100 summary: Merge files: diff --git a/Lib/test/test_pty.py b/Lib/test/test_pty.py --- a/Lib/test/test_pty.py +++ b/Lib/test/test_pty.py @@ -1,4 +1,4 @@ -from test.support import verbose, run_unittest, import_module +from test.support import verbose, run_unittest, import_module, reap_children #Skip these tests if either fcntl or termios is not available fcntl = import_module('fcntl') @@ -195,7 +195,10 @@ # pty.fork() passed. def test_main(verbose=None): - run_unittest(PtyTest) + try: + run_unittest(PtyTest) + finally: + reap_children() if __name__ == "__main__": test_main() diff --git a/Lib/test/test_signal.py b/Lib/test/test_signal.py --- a/Lib/test/test_signal.py +++ b/Lib/test/test_signal.py @@ -484,9 +484,12 @@ self.assertEqual(self.hndl_called, True) def test_main(): - support.run_unittest(BasicSignalTests, InterProcessSignalTests, - WakeupSignalTests, SiginterruptTest, - ItimerTest, WindowsSignalTests) + try: + support.run_unittest(BasicSignalTests, InterProcessSignalTests, + WakeupSignalTests, SiginterruptTest, + ItimerTest, WindowsSignalTests) + finally: + support.reap_children() if __name__ == "__main__": -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 18:22:59 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 20 Mar 2011 18:22:59 +0100 Subject: [Python-checkins] cpython (2.7): the name of the option is a bit too low-level Message-ID: http://hg.python.org/cpython/rev/5c1a91809821 changeset: 68761:5c1a91809821 branch: 2.7 parent: 68697:5ae4f3bbaebe user: Benjamin Peterson date: Sun Mar 20 12:24:20 2011 -0500 summary: the name of the option is a bit too low-level files: Doc/library/stdtypes.rst diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2535,14 +2535,14 @@ .. attribute:: file.newlines - If Python was built with the :option:`--with-universal-newlines` option to - :program:`configure` (the default) this read-only attribute exists, and for - files opened in universal newline read mode it keeps track of the types of - newlines encountered while reading the file. The values it can take are - ``'\r'``, ``'\n'``, ``'\r\n'``, ``None`` (unknown, no newlines read yet) or a - tuple containing all the newline types seen, to indicate that multiple newline - conventions were encountered. For files not opened in universal newline read - mode the value of this attribute will be ``None``. + If Python was built with universal newlines enabled (the default) this + read-only attribute exists, and for files opened in universal newline read + mode it keeps track of the types of newlines encountered while reading the + file. The values it can take are ``'\r'``, ``'\n'``, ``'\r\n'``, ``None`` + (unknown, no newlines read yet) or a tuple containing all the newline types + seen, to indicate that multiple newline conventions were encountered. For + files not opened in universal newline read mode the value of this attribute + will be ``None``. .. attribute:: file.softspace -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 18:33:33 2011 From: python-checkins at python.org (eric.araujo) Date: Sun, 20 Mar 2011 18:33:33 +0100 Subject: [Python-checkins] cpython (3.1): Fix typo in class name Message-ID: http://hg.python.org/cpython/rev/6f2ff3d3c420 changeset: 68762:6f2ff3d3c420 branch: 3.1 parent: 68758:154b1e20e62b user: ?ric Araujo date: Sun Mar 20 18:30:37 2011 +0100 summary: Fix typo in class name files: Doc/library/urllib.request.rst diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -1245,7 +1245,7 @@ you try to fetch a file whose read permissions make it inaccessible; the FTP code will try to read it, fail with a 550 error, and then perform a directory listing for the unreadable file. If fine-grained control is needed, consider - using the :mod:`ftplib` module, subclassing :class:`FancyURLOpener`, or changing + using the :mod:`ftplib` module, subclassing :class:`FancyURLopener`, or changing *_urlopener* to meet your needs. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 18:33:34 2011 From: python-checkins at python.org (eric.araujo) Date: Sun, 20 Mar 2011 18:33:34 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge from 3.1 Message-ID: http://hg.python.org/cpython/rev/ceeba01bdd82 changeset: 68763:ceeba01bdd82 branch: 3.2 parent: 68759:adbdb3e74461 parent: 68762:6f2ff3d3c420 user: ?ric Araujo date: Sun Mar 20 18:31:42 2011 +0100 summary: Merge from 3.1 files: Doc/library/urllib.request.rst diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -1282,7 +1282,7 @@ you try to fetch a file whose read permissions make it inaccessible; the FTP code will try to read it, fail with a 550 error, and then perform a directory listing for the unreadable file. If fine-grained control is needed, consider - using the :mod:`ftplib` module, subclassing :class:`FancyURLOpener`, or changing + using the :mod:`ftplib` module, subclassing :class:`FancyURLopener`, or changing *_urlopener* to meet your needs. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 18:33:34 2011 From: python-checkins at python.org (eric.araujo) Date: Sun, 20 Mar 2011 18:33:34 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge from 3.1 Message-ID: http://hg.python.org/cpython/rev/13a74990db8c changeset: 68764:13a74990db8c parent: 68760:d825316b73d0 parent: 68763:ceeba01bdd82 user: ?ric Araujo date: Sun Mar 20 18:32:51 2011 +0100 summary: Merge from 3.1 files: diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -1282,7 +1282,7 @@ you try to fetch a file whose read permissions make it inaccessible; the FTP code will try to read it, fail with a 550 error, and then perform a directory listing for the unreadable file. If fine-grained control is needed, consider - using the :mod:`ftplib` module, subclassing :class:`FancyURLOpener`, or changing + using the :mod:`ftplib` module, subclassing :class:`FancyURLopener`, or changing *_urlopener* to meet your needs. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 18:35:15 2011 From: python-checkins at python.org (eric.araujo) Date: Sun, 20 Mar 2011 18:35:15 +0100 Subject: [Python-checkins] cpython (2.7): Fix typo in class name Message-ID: http://hg.python.org/cpython/rev/69ecc87571ac changeset: 68765:69ecc87571ac branch: 2.7 parent: 68761:5c1a91809821 user: ?ric Araujo date: Sun Mar 20 18:34:24 2011 +0100 summary: Fix typo in class name files: Doc/library/urllib.rst diff --git a/Doc/library/urllib.rst b/Doc/library/urllib.rst --- a/Doc/library/urllib.rst +++ b/Doc/library/urllib.rst @@ -451,7 +451,7 @@ you try to fetch a file whose read permissions make it inaccessible; the FTP code will try to read it, fail with a 550 error, and then perform a directory listing for the unreadable file. If fine-grained control is needed, consider - using the :mod:`ftplib` module, subclassing :class:`FancyURLOpener`, or changing + using the :mod:`ftplib` module, subclassing :class:`FancyURLopener`, or changing *_urlopener* to meet your needs. * This module does not support the use of proxies which require authentication. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 19:13:58 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 20 Mar 2011 19:13:58 +0100 Subject: [Python-checkins] cpython: tabs are verboten. Message-ID: http://hg.python.org/cpython/rev/c7274a17960f changeset: 68766:c7274a17960f parent: 68764:13a74990db8c user: Georg Brandl date: Sun Mar 20 18:14:07 2011 +0000 summary: tabs are verboten. files: Doc/documenting/style.rst diff --git a/Doc/documenting/style.rst b/Doc/documenting/style.rst --- a/Doc/documenting/style.rst +++ b/Doc/documenting/style.rst @@ -14,9 +14,10 @@ Use of whitespace ----------------- -All reST files use an indentation of 3 spaces. The maximum line length is 80 -characters for normal text, but tables, deeply indented code samples and long -links may extend beyond that. +All reST files use an indentation of 3 spaces; no tabs are allowed. The +maximum line length is 80 characters for normal text, but tables, deeply +indented code samples and long links may extend beyond that. Code example +bodies should use normal Python 4-space indentation. Make generous use of blank lines where applicable; they help grouping things together. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 20:06:47 2011 From: python-checkins at python.org (eric.araujo) Date: Sun, 20 Mar 2011 20:06:47 +0100 Subject: [Python-checkins] cpython: Use proper gettext plural forms in optparse (closes #4391). Message-ID: http://hg.python.org/cpython/rev/4a5782a2b074 changeset: 68767:4a5782a2b074 user: ?ric Araujo date: Sun Mar 20 19:59:25 2011 +0100 summary: Use proper gettext plural forms in optparse (closes #4391). Original patch by Dwayne Bailey. files: Lib/optparse.py Lib/test/test_optparse.py Misc/NEWS diff --git a/Lib/optparse.py b/Lib/optparse.py --- a/Lib/optparse.py +++ b/Lib/optparse.py @@ -86,10 +86,16 @@ # Id: errors.py 509 2006-04-20 00:58:24Z gward try: - from gettext import gettext + from gettext import gettext, ngettext except ImportError: def gettext(message): return message + + def ngettext(singular, plural, n): + if n == 1: + return singular + return plural + _ = gettext @@ -1478,11 +1484,10 @@ if option.takes_value(): nargs = option.nargs if len(rargs) < nargs: - if nargs == 1: - self.error(_("%s option requires an argument") % opt) - else: - self.error(_("%s option requires %d arguments") - % (opt, nargs)) + self.error(ngettext( + "%(option)s option requires %(number)d argument", + "%(option)s option requires %(number)d arguments", + nargs) % {"option": opt, "number": nargs}) elif nargs == 1: value = rargs.pop(0) else: @@ -1517,11 +1522,10 @@ nargs = option.nargs if len(rargs) < nargs: - if nargs == 1: - self.error(_("%s option requires an argument") % opt) - else: - self.error(_("%s option requires %d arguments") - % (opt, nargs)) + self.error(ngettext( + "%(option)s option requires %(number)d argument", + "%(option)s option requires %(number)d arguments", + nargs) % {"option": opt, "number": nargs}) elif nargs == 1: value = rargs.pop(0) else: diff --git a/Lib/test/test_optparse.py b/Lib/test/test_optparse.py --- a/Lib/test/test_optparse.py +++ b/Lib/test/test_optparse.py @@ -631,7 +631,7 @@ option_list=options) def test_required_value(self): - self.assertParseFail(["-a"], "-a option requires an argument") + self.assertParseFail(["-a"], "-a option requires 1 argument") def test_invalid_integer(self): self.assertParseFail(["-b", "5x"], diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -75,6 +75,8 @@ Library ------- +- Issue #4391: Use proper gettext plural forms in optparse. + - Issue #11563: Connection:close header is sent by requests using URLOpener class which helps in closing of sockets after connection is over. Patch contributions by Jeff McNeil and Nadeem Vawda. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 22:38:24 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 22:38:24 +0100 Subject: [Python-checkins] cpython: Issue #3080: imp.load_module() accepts None for the module path Message-ID: http://hg.python.org/cpython/rev/7f4a4e393058 changeset: 68768:7f4a4e393058 user: Victor Stinner date: Sun Mar 20 22:37:17 2011 +0100 summary: Issue #3080: imp.load_module() accepts None for the module path imp.find_module() returns None as module path for builtin and frozen builtins. files: Lib/test/test_importhooks.py Python/import.c diff --git a/Lib/test/test_importhooks.py b/Lib/test/test_importhooks.py --- a/Lib/test/test_importhooks.py +++ b/Lib/test/test_importhooks.py @@ -229,7 +229,9 @@ i = ImpWrapper() sys.meta_path.append(i) sys.path_hooks.append(ImpWrapper) - mnames = ("colorsys", "urllib.parse", "distutils.core") + mnames = ( + "colorsys", "urllib.parse", "distutils.core", "sys", + ) for mname in mnames: parent = mname.split(".")[0] for n in list(sys.modules): @@ -237,7 +239,8 @@ del sys.modules[n] for mname in mnames: m = __import__(mname, globals(), locals(), ["__dummy__"]) - m.__loader__ # to make sure we actually handled the import + # to make sure we actually handled the import + self.assertTrue(hasattr(m, "__loader__")) def test_main(): diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -3744,17 +3744,22 @@ static PyObject * imp_load_module(PyObject *self, PyObject *args) { - PyObject *name, *fob, *pathname, *ret; + PyObject *name, *fob, *pathname, *pathname_obj, *ret; char *suffix; /* Unused */ char *mode; int type; FILE *fp; - if (!PyArg_ParseTuple(args, "UOO&(ssi):load_module", - &name, &fob, - PyUnicode_FSDecoder, &pathname, - &suffix, &mode, &type)) + if (!PyArg_ParseTuple(args, "UOO(ssi):load_module", + &name, &fob, &pathname_obj, &suffix, &mode, &type)) return NULL; + if (pathname_obj != Py_None) { + if (!PyUnicode_FSDecoder(pathname_obj, &pathname)) + return NULL; + } + else + pathname = NULL; + if (*mode) { /* Mode must start with 'r' or 'U' and must not contain '+'. Implicit in this test is the assumption that the mode @@ -3763,7 +3768,7 @@ if (!(*mode == 'r' || *mode == 'U') || strchr(mode, '+')) { PyErr_Format(PyExc_ValueError, "invalid file open mode %.200s", mode); - Py_DECREF(pathname); + Py_XDECREF(pathname); return NULL; } } @@ -3772,12 +3777,12 @@ else { fp = get_file(NULL, fob, mode); if (fp == NULL) { - Py_DECREF(pathname); + Py_XDECREF(pathname); return NULL; } } ret = load_module(name, fp, pathname, type, NULL); - Py_DECREF(pathname); + Py_XDECREF(pathname); if (fp) fclose(fp); return ret; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 22:51:37 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 20 Mar 2011 22:51:37 +0100 (CET) Subject: [Python-checkins] r88784 - peps/trunk/pep-0343.txt Message-ID: <20110320215137.8964CEE999@mail.python.org> Author: georg.brandl Date: Sun Mar 20 22:51:37 2011 New Revision: 88784 Log: #11248: look up special methods on type. Modified: peps/trunk/pep-0343.txt Modified: peps/trunk/pep-0343.txt ============================================================================== --- peps/trunk/pep-0343.txt (original) +++ peps/trunk/pep-0343.txt Sun Mar 20 22:51:37 2011 @@ -238,8 +238,8 @@ The translation of the above statement is: mgr = (EXPR) - exit = mgr.__exit__ # Not calling it yet - value = mgr.__enter__() + exit = type(mgr).__exit__ # Not calling it yet + value = type(mgr).__enter__(mgr) exc = True try: try: @@ -248,13 +248,13 @@ except: # The exceptional case is handled here exc = False - if not exit(*sys.exc_info()): + if not exit(mgr, *sys.exc_info()): raise # The exception is swallowed if exit() returns true finally: # The normal and non-local-goto cases are handled here if exc: - exit(None, None, None) + exit(mgr, None, None, None) Here, the lowercase variables (mgr, exit, value, exc) are internal variables and not accessible to the user; they will most likely be From python-checkins at python.org Sun Mar 20 23:09:22 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 23:09:22 +0100 Subject: [Python-checkins] cpython: Fix #11586: typo in initfsencoding() Message-ID: http://hg.python.org/cpython/rev/929aafef5b05 changeset: 68769:929aafef5b05 user: Victor Stinner date: Sun Mar 20 23:09:03 2011 +0100 summary: Fix #11586: typo in initfsencoding() Patch written by Ray Allen. files: Python/pythonrun.c diff --git a/Python/pythonrun.c b/Python/pythonrun.c --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -147,7 +147,7 @@ goto error; name_utf8 = _PyUnicode_AsString(name); - if (name == NULL) + if (name_utf8 == NULL) goto error; name_str = strdup(name_utf8); Py_DECREF(name); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 23:23:36 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 23:23:36 +0100 Subject: [Python-checkins] cpython (3.2): Fix #11586: typo in initfsencoding() Message-ID: http://hg.python.org/cpython/rev/0b6f6514461e changeset: 68770:0b6f6514461e branch: 3.2 parent: 68763:ceeba01bdd82 user: Victor Stinner date: Sun Mar 20 23:23:22 2011 +0100 summary: Fix #11586: typo in initfsencoding() Patch written by Ray Allen. files: Python/pythonrun.c diff --git a/Python/pythonrun.c b/Python/pythonrun.c --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -147,7 +147,7 @@ goto error; name_utf8 = _PyUnicode_AsString(name); - if (name == NULL) + if (name_utf8 == NULL) goto error; name_str = strdup(name_utf8); Py_DECREF(name); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 23:25:31 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 23:25:31 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge Message-ID: http://hg.python.org/cpython/rev/89b6d35196f1 changeset: 68771:89b6d35196f1 parent: 68769:929aafef5b05 parent: 68770:0b6f6514461e user: Victor Stinner date: Sun Mar 20 23:25:25 2011 +0100 summary: merge files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 23:38:13 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 23:38:13 +0100 Subject: [Python-checkins] cpython (3.2): Issue #11395: io.FileIO().write() clamps the data length to 32, 767 bytes on Message-ID: http://hg.python.org/cpython/rev/8939a21bdb94 changeset: 68772:8939a21bdb94 branch: 3.2 parent: 68770:0b6f6514461e user: Victor Stinner date: Sun Mar 20 23:36:35 2011 +0100 summary: Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on Windows if the file is a TTY to workaround a Windows bug. The Windows console returns an error (12: not enough space error) on writing into stdout if stdout mode is binary and the length is greater than 66,000 bytes (or less, depending on heap usage). files: Lib/test/test_os.py Misc/NEWS Modules/_io/fileio.c diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -90,6 +90,25 @@ self.assertEqual(fobj.read().splitlines(), [b"bacon", b"eggs", b"spam"]) + def write_windows_console(self, *args): + retcode = subprocess.call(args, + # use a new console to not flood the test output + creationflags=subprocess.CREATE_NEW_CONSOLE, + # use a shell to hide the console window (SW_HIDE) + shell=True) + self.assertEqual(retcode, 0) + + @unittest.skipUnless(sys.platform == 'win32', + 'test specific to the Windows console') + def test_write_windows_console(self): + # Issue #11395: the Windows console returns an error (12: not enough + # space error) on writing into stdout if stdout mode is binary and the + # length is greater than 66,000 bytes (or less, depending on heap + # usage). + code = "print('x' * 100000)" + self.write_windows_console(sys.executable, "-c", code) + self.write_windows_console(sys.executable, "-u", "-c", code) + class TemporaryFileTests(unittest.TestCase): def setUp(self): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,12 @@ Core and Builtins ----------------- +- Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on + Windows if the file is a TTY to workaround a Windows bug. The Windows console + returns an error (12: not enough space error) on writing into stdout if + stdout mode is binary and the length is greater than 66,000 bytes (or less, + depending on heap usage). + - Issue #11320: fix bogus memory management in Modules/getpath.c, leading to a possible crash when calling Py_SetPath(). diff --git a/Modules/_io/fileio.c b/Modules/_io/fileio.c --- a/Modules/_io/fileio.c +++ b/Modules/_io/fileio.c @@ -712,7 +712,14 @@ errno = 0; len = pbuf.len; #if defined(MS_WIN64) || defined(MS_WINDOWS) - if (len > INT_MAX) + if (len > 32767 && isatty(self->fd)) { + /* Issue #11395: the Windows console returns an error (12: not + enough space error) on writing into stdout if stdout mode is + binary and the length is greater than 66,000 bytes (or less, + depending on heap usage). */ + len = 32767; + } + else if (len > INT_MAX) len = INT_MAX; n = write(self->fd, pbuf.buf, (int)len); #else -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 23:38:14 2011 From: python-checkins at python.org (victor.stinner) Date: Sun, 20 Mar 2011 23:38:14 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): (merge) Issue #11395: io.FileIO().write() clamps the data length to 32, 767 Message-ID: http://hg.python.org/cpython/rev/4b3472169493 changeset: 68773:4b3472169493 parent: 68771:89b6d35196f1 parent: 68772:8939a21bdb94 user: Victor Stinner date: Sun Mar 20 23:37:55 2011 +0100 summary: (merge) Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on Windows if the file is a TTY to workaround a Windows bug. The Windows console returns an error (12: not enough space error) on writing into stdout if stdout mode is binary and the length is greater than 66,000 bytes (or less, depending on heap usage). files: Lib/test/test_os.py Misc/NEWS diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -97,6 +97,25 @@ self.assertEqual(fobj.read().splitlines(), [b"bacon", b"eggs", b"spam"]) + def write_windows_console(self, *args): + retcode = subprocess.call(args, + # use a new console to not flood the test output + creationflags=subprocess.CREATE_NEW_CONSOLE, + # use a shell to hide the console window (SW_HIDE) + shell=True) + self.assertEqual(retcode, 0) + + @unittest.skipUnless(sys.platform == 'win32', + 'test specific to the Windows console') + def test_write_windows_console(self): + # Issue #11395: the Windows console returns an error (12: not enough + # space error) on writing into stdout if stdout mode is binary and the + # length is greater than 66,000 bytes (or less, depending on heap + # usage). + code = "print('x' * 100000)" + self.write_windows_console(sys.executable, "-c", code) + self.write_windows_console(sys.executable, "-u", "-c", code) + class TemporaryFileTests(unittest.TestCase): def setUp(self): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,12 @@ Core and Builtins ----------------- +- Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on + Windows if the file is a TTY to workaround a Windows bug. The Windows console + returns an error (12: not enough space error) on writing into stdout if + stdout mode is binary and the length is greater than 66,000 bytes (or less, + depending on heap usage). + - Issue #11320: fix bogus memory management in Modules/getpath.c, leading to a possible crash when calling Py_SetPath(). diff --git a/Modules/_io/fileio.c b/Modules/_io/fileio.c --- a/Modules/_io/fileio.c +++ b/Modules/_io/fileio.c @@ -712,7 +712,14 @@ errno = 0; len = pbuf.len; #if defined(MS_WIN64) || defined(MS_WINDOWS) - if (len > INT_MAX) + if (len > 32767 && isatty(self->fd)) { + /* Issue #11395: the Windows console returns an error (12: not + enough space error) on writing into stdout if stdout mode is + binary and the length is greater than 66,000 bytes (or less, + depending on heap usage). */ + len = 32767; + } + else if (len > INT_MAX) len = INT_MAX; n = write(self->fd, pbuf.buf, (int)len); #else -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 20 23:58:45 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sun, 20 Mar 2011 23:58:45 +0100 Subject: [Python-checkins] cpython: Issue #11127: Raise a TypeError when trying to pickle a socket object. Message-ID: http://hg.python.org/cpython/rev/5e13e5e6df30 changeset: 68774:5e13e5e6df30 user: Antoine Pitrou date: Sun Mar 20 23:56:36 2011 +0100 summary: Issue #11127: Raise a TypeError when trying to pickle a socket object. files: Lib/socket.py Lib/test/test_socket.py Misc/NEWS diff --git a/Lib/socket.py b/Lib/socket.py --- a/Lib/socket.py +++ b/Lib/socket.py @@ -112,6 +112,9 @@ s[7:]) return s + def __getstate__(self): + raise TypeError("Cannot serialize socket object") + def dup(self): """dup() -> socket object diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -18,6 +18,7 @@ from weakref import proxy import signal import math +import pickle try: import fcntl except ImportError: @@ -764,6 +765,12 @@ fp.close() self.assertEqual(repr(fp), "<_io.BufferedReader name=-1>") + def test_pickle(self): + sock = socket.socket() + with sock: + for protocol in range(pickle.HIGHEST_PROTOCOL + 1): + self.assertRaises(TypeError, pickle.dumps, sock, protocol) + @unittest.skipUnless(thread, 'Threading required for this test.') class BasicTCPTest(SocketConnectedTest): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -83,6 +83,8 @@ - Issue #4391: Use proper gettext plural forms in optparse. +- Issue #11127: Raise a TypeError when trying to pickle a socket object. + - Issue #11563: Connection:close header is sent by requests using URLOpener class which helps in closing of sockets after connection is over. Patch contributions by Jeff McNeil and Nadeem Vawda. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 00:18:57 2011 From: python-checkins at python.org (eric.araujo) Date: Mon, 21 Mar 2011 00:18:57 +0100 Subject: [Python-checkins] cpython (2.7): Fix some issue references in NEWS Message-ID: http://hg.python.org/cpython/rev/670e30ee121f changeset: 68775:670e30ee121f branch: 2.7 parent: 68765:69ecc87571ac user: ?ric Araujo date: Mon Mar 21 00:15:26 2011 +0100 summary: Fix some issue references in NEWS files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -155,14 +155,14 @@ - Subclasses of collections.OrderedDict now work correctly with __missing__. -- Issue 10753 - Characters ';','=' and ',' in the PATH_INFO environment +- Issue #10753 - Characters ';', '=' and ',' in the PATH_INFO environment variable won't be quoted when the URI is constructed by the wsgiref.util 's request_uri method. According to RFC 3986, these characters can be a part of params in PATH component of URI and need not be quoted. -- Issue 10738: Fix webbrowser.Opera.raise_opts - -- Issue 9824: SimpleCookie now encodes , and ; in values to cater to how +- Issue #10738: Fix webbrowser.Opera.raise_opts + +- Issue #9824: SimpleCookie now encodes , and ; in values to cater to how browsers actually parse cookies. - Issue #1379416: eliminated a source of accidental unicode promotion in @@ -422,7 +422,7 @@ Library ------- -- Issue 9926: Wrapped TestSuite subclass does not get __call__ executed +- Issue #9926: Wrapped TestSuite subclass does not get __call__ executed - Issue #4471: Properly shutdown socket in IMAP.shutdown(). Patch by Lorenzo M. Catucci. @@ -481,7 +481,7 @@ - Issue #5117: Fixed root directory related issue on posixpath.relpath() and ntpath.relpath(). -- Issue 9409: Fix the regex to match all kind of filenames, for interactive +- Issue #9409: Fix the regex to match all kind of filenames, for interactive debugging in doctests. - Issue #6612: Fix site and sysconfig to catch os.getcwd() error, eg. if the -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 00:29:22 2011 From: python-checkins at python.org (antoine.pitrou) Date: Mon, 21 Mar 2011 00:29:22 +0100 Subject: [Python-checkins] cpython (3.2): Try to strengthen test_httpservers (issue #11617) Message-ID: http://hg.python.org/cpython/rev/fa20590d4694 changeset: 68776:fa20590d4694 branch: 3.2 parent: 68759:adbdb3e74461 user: Antoine Pitrou date: Mon Mar 21 00:26:51 2011 +0100 summary: Try to strengthen test_httpservers (issue #11617) files: Lib/test/test_httpservers.py diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -38,8 +38,8 @@ self.test_object = test_object def run(self): - self.server = HTTPServer(('', 0), self.request_handler) - self.test_object.PORT = self.server.socket.getsockname()[1] + self.server = HTTPServer(('localhost', 0), self.request_handler) + self.test_object.HOST, self.test_object.PORT = self.server.socket.getsockname() self.test_object.server_started.set() self.test_object = None try: @@ -66,7 +66,7 @@ support.threading_cleanup(*self._threads) def request(self, uri, method='GET', body=None, headers={}): - self.connection = http.client.HTTPConnection('localhost', self.PORT) + self.connection = http.client.HTTPConnection(self.HOST, self.PORT) self.connection.request(method, uri, body, headers) return self.connection.getresponse() @@ -107,7 +107,7 @@ def setUp(self): BaseTestCase.setUp(self) - self.con = http.client.HTTPConnection('localhost', self.PORT) + self.con = http.client.HTTPConnection(self.HOST, self.PORT) self.con.connect() def test_command(self): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 00:29:24 2011 From: python-checkins at python.org (antoine.pitrou) Date: Mon, 21 Mar 2011 00:29:24 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Try to strengthen test_httpservers (issue #11617) Message-ID: http://hg.python.org/cpython/rev/34db881edb4d changeset: 68777:34db881edb4d parent: 68774:5e13e5e6df30 parent: 68776:fa20590d4694 user: Antoine Pitrou date: Mon Mar 21 00:27:45 2011 +0100 summary: Try to strengthen test_httpservers (issue #11617) files: diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -38,8 +38,8 @@ self.test_object = test_object def run(self): - self.server = HTTPServer(('', 0), self.request_handler) - self.test_object.PORT = self.server.socket.getsockname()[1] + self.server = HTTPServer(('localhost', 0), self.request_handler) + self.test_object.HOST, self.test_object.PORT = self.server.socket.getsockname() self.test_object.server_started.set() self.test_object = None try: @@ -66,7 +66,7 @@ support.threading_cleanup(*self._threads) def request(self, uri, method='GET', body=None, headers={}): - self.connection = http.client.HTTPConnection('localhost', self.PORT) + self.connection = http.client.HTTPConnection(self.HOST, self.PORT) self.connection.request(method, uri, body, headers) return self.connection.getresponse() @@ -107,7 +107,7 @@ def setUp(self): BaseTestCase.setUp(self) - self.con = http.client.HTTPConnection('localhost', self.PORT) + self.con = http.client.HTTPConnection(self.HOST, self.PORT) self.con.connect() def test_command(self): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 00:29:25 2011 From: python-checkins at python.org (antoine.pitrou) Date: Mon, 21 Mar 2011 00:29:25 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> 3.2): Merge Message-ID: http://hg.python.org/cpython/rev/c60271bb1fb1 changeset: 68778:c60271bb1fb1 branch: 3.2 parent: 68776:fa20590d4694 parent: 68772:8939a21bdb94 user: Antoine Pitrou date: Mon Mar 21 00:28:52 2011 +0100 summary: Merge files: diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -1282,7 +1282,7 @@ you try to fetch a file whose read permissions make it inaccessible; the FTP code will try to read it, fail with a 550 error, and then perform a directory listing for the unreadable file. If fine-grained control is needed, consider - using the :mod:`ftplib` module, subclassing :class:`FancyURLOpener`, or changing + using the :mod:`ftplib` module, subclassing :class:`FancyURLopener`, or changing *_urlopener* to meet your needs. diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -90,6 +90,25 @@ self.assertEqual(fobj.read().splitlines(), [b"bacon", b"eggs", b"spam"]) + def write_windows_console(self, *args): + retcode = subprocess.call(args, + # use a new console to not flood the test output + creationflags=subprocess.CREATE_NEW_CONSOLE, + # use a shell to hide the console window (SW_HIDE) + shell=True) + self.assertEqual(retcode, 0) + + @unittest.skipUnless(sys.platform == 'win32', + 'test specific to the Windows console') + def test_write_windows_console(self): + # Issue #11395: the Windows console returns an error (12: not enough + # space error) on writing into stdout if stdout mode is binary and the + # length is greater than 66,000 bytes (or less, depending on heap + # usage). + code = "print('x' * 100000)" + self.write_windows_console(sys.executable, "-c", code) + self.write_windows_console(sys.executable, "-u", "-c", code) + class TemporaryFileTests(unittest.TestCase): def setUp(self): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,12 @@ Core and Builtins ----------------- +- Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on + Windows if the file is a TTY to workaround a Windows bug. The Windows console + returns an error (12: not enough space error) on writing into stdout if + stdout mode is binary and the length is greater than 66,000 bytes (or less, + depending on heap usage). + - Issue #11320: fix bogus memory management in Modules/getpath.c, leading to a possible crash when calling Py_SetPath(). diff --git a/Modules/_io/fileio.c b/Modules/_io/fileio.c --- a/Modules/_io/fileio.c +++ b/Modules/_io/fileio.c @@ -712,7 +712,14 @@ errno = 0; len = pbuf.len; #if defined(MS_WIN64) || defined(MS_WINDOWS) - if (len > INT_MAX) + if (len > 32767 && isatty(self->fd)) { + /* Issue #11395: the Windows console returns an error (12: not + enough space error) on writing into stdout if stdout mode is + binary and the length is greater than 66,000 bytes (or less, + depending on heap usage). */ + len = 32767; + } + else if (len > INT_MAX) len = INT_MAX; n = write(self->fd, pbuf.buf, (int)len); #else diff --git a/Python/pythonrun.c b/Python/pythonrun.c --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -147,7 +147,7 @@ goto error; name_utf8 = _PyUnicode_AsString(name); - if (name == NULL) + if (name_utf8 == NULL) goto error; name_str = strdup(name_utf8); Py_DECREF(name); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 00:29:26 2011 From: python-checkins at python.org (antoine.pitrou) Date: Mon, 21 Mar 2011 00:29:26 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge Message-ID: http://hg.python.org/cpython/rev/c397323f5fdd changeset: 68779:c397323f5fdd parent: 68777:34db881edb4d parent: 68778:c60271bb1fb1 user: Antoine Pitrou date: Mon Mar 21 00:29:02 2011 +0100 summary: Merge files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 01:59:06 2011 From: python-checkins at python.org (victor.stinner) Date: Mon, 21 Mar 2011 01:59:06 +0100 Subject: [Python-checkins] cpython: Closes #11210: Remove PyErr_SetFromWindowsErrWithFilenameObject() of pyerrors.h Message-ID: http://hg.python.org/cpython/rev/c0829c4e19cf changeset: 68780:c0829c4e19cf user: Victor Stinner date: Mon Mar 21 01:58:55 2011 +0100 summary: Closes #11210: Remove PyErr_SetFromWindowsErrWithFilenameObject() of pyerrors.h PyErr_SetFromWindowsErrWithFilenameObject() was never implemented. files: Include/pyerrors.h diff --git a/Include/pyerrors.h b/Include/pyerrors.h --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -208,8 +208,6 @@ ); #ifdef MS_WINDOWS -PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErrWithFilenameObject( - int, const char *); PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErrWithFilename( int ierr, const char *filename /* decoded from the filesystem encoding */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 02:12:16 2011 From: python-checkins at python.org (victor.stinner) Date: Mon, 21 Mar 2011 02:12:16 +0100 Subject: [Python-checkins] cpython (3.2): Issue #10864 has been fixed: remove the workaround Message-ID: http://hg.python.org/cpython/rev/d56eb817b181 changeset: 68781:d56eb817b181 branch: 3.2 parent: 68778:c60271bb1fb1 user: Victor Stinner date: Mon Mar 21 02:11:01 2011 +0100 summary: Issue #10864 has been fixed: remove the workaround files: Lib/test/test_time.py diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -295,12 +295,8 @@ except ValueError: # strftime() is limited to [1; 9999] with Visual Studio return - # Issue #10864: OpenIndiana is limited to 4 digits, - # but Python doesn't raise a ValueError - #self.assertEqual(text, '12345') - #self.assertEqual(self.yearstr(123456789), '123456789') - self.assertIn(text, ('2345', '12345')) - self.assertIn(self.yearstr(123456789), ('123456789', '6789')) + self.assertEqual(text, '12345') + self.assertEqual(self.yearstr(123456789), '123456789') class _Test2dYear(_BaseYearTest): accept2dyear = 1 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 02:12:19 2011 From: python-checkins at python.org (victor.stinner) Date: Mon, 21 Mar 2011 02:12:19 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge Message-ID: http://hg.python.org/cpython/rev/cbd86ac6cc81 changeset: 68782:cbd86ac6cc81 parent: 68780:c0829c4e19cf parent: 68781:d56eb817b181 user: Victor Stinner date: Mon Mar 21 02:12:09 2011 +0100 summary: merge files: diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -295,12 +295,8 @@ except ValueError: # strftime() is limited to [1; 9999] with Visual Studio return - # Issue #10864: OpenIndiana is limited to 4 digits, - # but Python doesn't raise a ValueError - #self.assertEqual(text, '12345') - #self.assertEqual(self.yearstr(123456789), '123456789') - self.assertIn(text, ('2345', '12345')) - self.assertIn(self.yearstr(123456789), ('123456789', '6789')) + self.assertEqual(text, '12345') + self.assertEqual(self.yearstr(123456789), '123456789') class _Test2dYear(_BaseYearTest): accept2dyear = 1 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 02:15:25 2011 From: python-checkins at python.org (victor.stinner) Date: Mon, 21 Mar 2011 02:15:25 +0100 Subject: [Python-checkins] cpython (3.2): time.strftime(): replace PyErr_Format() by PyErr_SetString() Message-ID: http://hg.python.org/cpython/rev/be74f446b4b8 changeset: 68783:be74f446b4b8 branch: 3.2 parent: 68781:d56eb817b181 user: Victor Stinner date: Mon Mar 21 02:14:53 2011 +0100 summary: time.strftime(): replace PyErr_Format() by PyErr_SetString() The argument was not used in the format string. files: Modules/timemodule.c diff --git a/Modules/timemodule.c b/Modules/timemodule.c --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -476,9 +476,8 @@ #if defined(_MSC_VER) || defined(sun) if (buf.tm_year + 1900 < 1 || 9999 < buf.tm_year + 1900) { - PyErr_Format(PyExc_ValueError, - "strftime() requires year in [1; 9999]", - buf.tm_year + 1900); + PyErr_SetString(PyExc_ValueError, + "strftime() requires year in [1; 9999]"); return NULL; } #endif -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 02:15:26 2011 From: python-checkins at python.org (victor.stinner) Date: Mon, 21 Mar 2011 02:15:26 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge 3.2 Message-ID: http://hg.python.org/cpython/rev/a6f3fa489f8d changeset: 68784:a6f3fa489f8d parent: 68782:cbd86ac6cc81 parent: 68783:be74f446b4b8 user: Victor Stinner date: Mon Mar 21 02:15:18 2011 +0100 summary: merge 3.2 files: diff --git a/Modules/timemodule.c b/Modules/timemodule.c --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -476,9 +476,8 @@ #if defined(_MSC_VER) || defined(sun) if (buf.tm_year + 1900 < 1 || 9999 < buf.tm_year + 1900) { - PyErr_Format(PyExc_ValueError, - "strftime() requires year in [1; 9999]", - buf.tm_year + 1900); + PyErr_SetString(PyExc_ValueError, + "strftime() requires year in [1; 9999]"); return NULL; } #endif -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 02:53:20 2011 From: python-checkins at python.org (victor.stinner) Date: Mon, 21 Mar 2011 02:53:20 +0100 Subject: [Python-checkins] cpython (3.1): Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar Message-ID: http://hg.python.org/cpython/rev/b15f60f9e256 changeset: 68785:b15f60f9e256 branch: 3.1 parent: 68762:6f2ff3d3c420 user: Victor Stinner date: Mon Mar 21 02:38:51 2011 +0100 summary: Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. files: Lib/http/cookiejar.py Misc/NEWS diff --git a/Lib/http/cookiejar.py b/Lib/http/cookiejar.py --- a/Lib/http/cookiejar.py +++ b/Lib/http/cookiejar.py @@ -29,6 +29,7 @@ 'FileCookieJar', 'LWPCookieJar', 'LoadError', 'MozillaCookieJar'] import copy +import datetime import re import time import urllib.parse, urllib.request @@ -97,10 +98,12 @@ 1994-11-24 08:49:37Z """ - if t is None: t = time.time() - year, mon, mday, hour, min, sec = time.gmtime(t)[:6] + if t is None: + dt = datetime.datetime.utcnow() + else: + dt = datetime.datetime.utcfromtimestamp(t) return "%04d-%02d-%02d %02d:%02d:%02dZ" % ( - year, mon, mday, hour, min, sec) + dt.year, dt.month, dt.day, dt.hour, dt.minute, dt.second) def time2netscape(t=None): """Return a string representing time in seconds since epoch, t. @@ -113,10 +116,13 @@ Wed, DD-Mon-YYYY HH:MM:SS GMT """ - if t is None: t = time.time() - year, mon, mday, hour, min, sec, wday = time.gmtime(t)[:7] + if t is None: + dt = datetime.datetime.utcnow() + else: + dt = datetime.datetime.utcfromtimestamp(t) return "%s %02d-%s-%04d %02d:%02d:%02d GMT" % ( - DAYS[wday], mday, MONTHS[mon-1], year, hour, min, sec) + DAYS[dt.weekday()], dt.day, MONTHS[dt.month-1], + dt.year, dt.hour, dt.minute, dt.second) UTC_ZONES = {"GMT": None, "UTC": None, "UT": None, "Z": None} diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -40,6 +40,9 @@ Library ------- +- Issue #5537: Fix time2isoz() and time2netscape() functions of + httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. + - Issue #11459: A ``bufsize`` value of 0 in subprocess.Popen() really creates unbuffered pipes, such that select() works properly on them. @@ -64,7 +67,7 @@ - Issue #11491: dbm.error is no longer raised when dbm.open is called with the "n" as the flag argument and the file exists. The behavior matches the documentation and general logic. - + - Issue #11131: Fix sign of zero in decimal.Decimal plus and minus operations when the rounding mode is ROUND_FLOOR. @@ -218,8 +221,8 @@ OSError exception when The OS had been told to ignore SIGCLD in our process or otherwise not wait for exiting child processes. -- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified - IP addresses in the proxy exception list. +- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified + IP addresses in the proxy exception list. Extensions ---------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 02:53:21 2011 From: python-checkins at python.org (victor.stinner) Date: Mon, 21 Mar 2011 02:53:21 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): merge 3.1 Message-ID: http://hg.python.org/cpython/rev/7113319e4dcc changeset: 68786:7113319e4dcc branch: 3.2 parent: 68783:be74f446b4b8 parent: 68785:b15f60f9e256 user: Victor Stinner date: Mon Mar 21 02:51:38 2011 +0100 summary: merge 3.1 files: Lib/http/cookiejar.py Misc/NEWS diff --git a/Lib/http/cookiejar.py b/Lib/http/cookiejar.py --- a/Lib/http/cookiejar.py +++ b/Lib/http/cookiejar.py @@ -29,6 +29,7 @@ 'FileCookieJar', 'LWPCookieJar', 'LoadError', 'MozillaCookieJar'] import copy +import datetime import re import time import urllib.parse, urllib.request @@ -97,10 +98,12 @@ 1994-11-24 08:49:37Z """ - if t is None: t = time.time() - year, mon, mday, hour, min, sec = time.gmtime(t)[:6] + if t is None: + dt = datetime.datetime.utcnow() + else: + dt = datetime.datetime.utcfromtimestamp(t) return "%04d-%02d-%02d %02d:%02d:%02dZ" % ( - year, mon, mday, hour, min, sec) + dt.year, dt.month, dt.day, dt.hour, dt.minute, dt.second) def time2netscape(t=None): """Return a string representing time in seconds since epoch, t. @@ -113,10 +116,13 @@ Wed, DD-Mon-YYYY HH:MM:SS GMT """ - if t is None: t = time.time() - year, mon, mday, hour, min, sec, wday = time.gmtime(t)[:7] + if t is None: + dt = datetime.datetime.utcnow() + else: + dt = datetime.datetime.utcfromtimestamp(t) return "%s %02d-%s-%04d %02d:%02d:%02d GMT" % ( - DAYS[wday], mday, MONTHS[mon-1], year, hour, min, sec) + DAYS[dt.weekday()], dt.day, MONTHS[dt.month-1], + dt.year, dt.hour, dt.minute, dt.second) UTC_ZONES = {"GMT": None, "UTC": None, "UT": None, "Z": None} diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -49,6 +49,9 @@ Library ------- +- Issue #5537: Fix time2isoz() and time2netscape() functions of + httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. + - Issue #11563: Connection:close header is sent by requests using URLOpener class which helps in closing of sockets after connection is over. Patch contributions by Jeff McNeil and Nadeem Vawda. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 02:53:23 2011 From: python-checkins at python.org (victor.stinner) Date: Mon, 21 Mar 2011 02:53:23 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge 3.2 Message-ID: http://hg.python.org/cpython/rev/2c346063471b changeset: 68787:2c346063471b parent: 68784:a6f3fa489f8d parent: 68786:7113319e4dcc user: Victor Stinner date: Mon Mar 21 02:53:04 2011 +0100 summary: merge 3.2 files: Misc/NEWS diff --git a/Lib/http/cookiejar.py b/Lib/http/cookiejar.py --- a/Lib/http/cookiejar.py +++ b/Lib/http/cookiejar.py @@ -29,6 +29,7 @@ 'FileCookieJar', 'LWPCookieJar', 'LoadError', 'MozillaCookieJar'] import copy +import datetime import re import time import urllib.parse, urllib.request @@ -97,10 +98,12 @@ 1994-11-24 08:49:37Z """ - if t is None: t = time.time() - year, mon, mday, hour, min, sec = time.gmtime(t)[:6] + if t is None: + dt = datetime.datetime.utcnow() + else: + dt = datetime.datetime.utcfromtimestamp(t) return "%04d-%02d-%02d %02d:%02d:%02dZ" % ( - year, mon, mday, hour, min, sec) + dt.year, dt.month, dt.day, dt.hour, dt.minute, dt.second) def time2netscape(t=None): """Return a string representing time in seconds since epoch, t. @@ -113,10 +116,13 @@ Wed, DD-Mon-YYYY HH:MM:SS GMT """ - if t is None: t = time.time() - year, mon, mday, hour, min, sec, wday = time.gmtime(t)[:7] + if t is None: + dt = datetime.datetime.utcnow() + else: + dt = datetime.datetime.utcfromtimestamp(t) return "%s %02d-%s-%04d %02d:%02d:%02d GMT" % ( - DAYS[wday], mday, MONTHS[mon-1], year, hour, min, sec) + DAYS[dt.weekday()], dt.day, MONTHS[dt.month-1], + dt.year, dt.hour, dt.minute, dt.second) UTC_ZONES = {"GMT": None, "UTC": None, "UT": None, "Z": None} diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -81,6 +81,9 @@ Library ------- +- Issue #5537: Fix time2isoz() and time2netscape() functions of + httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. + - Issue #4391: Use proper gettext plural forms in optparse. - Issue #11127: Raise a TypeError when trying to pickle a socket object. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 03:22:58 2011 From: python-checkins at python.org (eric.araujo) Date: Mon, 21 Mar 2011 03:22:58 +0100 Subject: [Python-checkins] cpython: Fix a typo (see #3080) Message-ID: http://hg.python.org/cpython/rev/ee4e780a6b7a changeset: 68788:ee4e780a6b7a parent: 68768:7f4a4e393058 user: ?ric Araujo date: Sun Mar 20 18:08:19 2011 +0100 summary: Fix a typo (see #3080) files: Doc/c-api/import.rst diff --git a/Doc/c-api/import.rst b/Doc/c-api/import.rst --- a/Doc/c-api/import.rst +++ b/Doc/c-api/import.rst @@ -112,7 +112,7 @@ .. c:function:: PyObject* PyImport_AddModule(const char *name) - Similar to :c:func:`PyImport_AddModuleObject`, but the name is an UTF-8 + Similar to :c:func:`PyImport_AddModuleObject`, but the name is a UTF-8 encoded string instead of a Unicode object. @@ -237,7 +237,7 @@ .. c:function:: int PyImport_ImportFrozenModule(char *name) - Similar to :c:func:`PyImport_ImportFrozenModuleObject`, but the name is an + Similar to :c:func:`PyImport_ImportFrozenModuleObject`, but the name is a UTF-8 encoded string instead of a Unicode object. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 03:22:58 2011 From: python-checkins at python.org (eric.araujo) Date: Mon, 21 Mar 2011 03:22:58 +0100 Subject: [Python-checkins] cpython: Mark getopt error messages as localizable (fixes #11371). Message-ID: http://hg.python.org/cpython/rev/d3e46930ffe9 changeset: 68789:d3e46930ffe9 user: ?ric Araujo date: Mon Mar 21 00:09:07 2011 +0100 summary: Mark getopt error messages as localizable (fixes #11371). Patch by Filip Gruszczy?ski. files: Lib/getopt.py Misc/NEWS diff --git a/Lib/getopt.py b/Lib/getopt.py --- a/Lib/getopt.py +++ b/Lib/getopt.py @@ -19,7 +19,7 @@ # Gerrit Holl moved the string-based exceptions # to class-based exceptions. # -# Peter ? strand added gnu_getopt(). +# Peter ?strand added gnu_getopt(). # # TODO for gnu_getopt(): # @@ -34,6 +34,7 @@ __all__ = ["GetoptError","error","getopt","gnu_getopt"] import os +from gettext import gettext as _ class GetoptError(Exception): opt = '' @@ -153,10 +154,10 @@ if has_arg: if optarg is None: if not args: - raise GetoptError('option --%s requires argument' % opt, opt) + raise GetoptError(_('option --%s requires argument') % opt, opt) optarg, args = args[0], args[1:] elif optarg is not None: - raise GetoptError('option --%s must not have an argument' % opt, opt) + raise GetoptError(_('option --%s must not have an argument') % opt, opt) opts.append(('--' + opt, optarg or '')) return opts, args @@ -166,7 +167,7 @@ def long_has_args(opt, longopts): possibilities = [o for o in longopts if o.startswith(opt)] if not possibilities: - raise GetoptError('option --%s not recognized' % opt, opt) + raise GetoptError(_('option --%s not recognized') % opt, opt) # Is there an exact match? if opt in possibilities: return False, opt @@ -176,7 +177,7 @@ if len(possibilities) > 1: # XXX since possibilities contains all valid continuations, might be # nice to work them into the error msg - raise GetoptError('option --%s not a unique prefix' % opt, opt) + raise GetoptError(_('option --%s not a unique prefix') % opt, opt) assert len(possibilities) == 1 unique_match = possibilities[0] has_arg = unique_match.endswith('=') @@ -190,7 +191,7 @@ if short_has_arg(opt, shortopts): if optstring == '': if not args: - raise GetoptError('option -%s requires argument' % opt, + raise GetoptError(_('option -%s requires argument') % opt, opt) optstring, args = args[0], args[1:] optarg, optstring = optstring, '' @@ -203,7 +204,7 @@ for i in range(len(shortopts)): if opt == shortopts[i] != ':': return shortopts.startswith(':', i+1) - raise GetoptError('option -%s not recognized' % opt, opt) + raise GetoptError(_('option -%s not recognized') % opt, opt) if __name__ == '__main__': import sys diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -75,6 +75,9 @@ Library ------- +- Issue #11371: Mark getopt error messages as localizable. Patch by Filip + Gruszczy?ski. + - Issue #4391: Use proper gettext plural forms in optparse. - Issue #11563: Connection:close header is sent by requests using URLOpener -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 03:23:00 2011 From: python-checkins at python.org (eric.araujo) Date: Mon, 21 Mar 2011 03:23:00 +0100 Subject: [Python-checkins] cpython (3.1): Fix some issue references in NEWS Message-ID: http://hg.python.org/cpython/rev/51ab840346fe changeset: 68790:51ab840346fe branch: 3.1 parent: 68785:b15f60f9e256 user: ?ric Araujo date: Mon Mar 21 00:01:23 2011 +0100 summary: Fix some issue references in NEWS files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -164,14 +164,14 @@ file descriptors (0, 1, 2) are closed in the parent process. Initial patch by Ross Lagerwall. -- Issue 10753 - Characters ';','=' and ',' in the PATH_INFO environment - variable won't be quoted when the URI is constructed by the wsgiref.util 's +- Issue #10753 - Characters ';', '=' and ',' in the PATH_INFO environment + variable won't be quoted when the URI is constructed by the wsgiref.util's request_uri method. According to RFC 3986, these characters can be a part of params in PATH component of URI and need not be quoted. -- Issue 10738: Fix webbrowser.Opera.raise_opts - -- Issue 9824: SimpleCookie now encodes , and ; in values to cater to how +- Issue #10738: Fix webbrowser.Opera.raise_opts + +- Issue #9824: SimpleCookie now encodes , and ; in values to cater to how browsers actually parse cookies. - Issue #5258/#10642: if site.py encounters a .pth file that generates an error, @@ -524,7 +524,7 @@ - The keyword only restriction for the places argument in unittest.TestCase.assert[Not]AlmostEqual methods has been removed. -- Issue 6706: asyncore accept() method no longer raises EWOULDBLOCK/ECONNABORTED +- Issue #6706: asyncore accept() method no longer raises EWOULDBLOCK/ECONNABORTED on incomplete connection attempt but returns None instead. - Issue #10266: uu.decode didn't close in_file explicitly when it was given @@ -540,7 +540,7 @@ xml.sax.saxutils.XMLGenerator as being bound to http://www.w3.org/XML/1998/namespace. Patch by Troy J. Farrell. -- #7761: telnetlib.interact failures on Windows fixed. +- Issue #7761: telnetlib.interact failures on Windows fixed. - Issue #5117: Case normalization was needed on ntpath.relpath(). And fixed root directory issue on posixpath.relpath(). (Ported working fixes -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 03:23:07 2011 From: python-checkins at python.org (eric.araujo) Date: Mon, 21 Mar 2011 03:23:07 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Fix some issue references in NEWS Message-ID: http://hg.python.org/cpython/rev/f061a60203ec changeset: 68791:f061a60203ec branch: 3.2 parent: 68786:7113319e4dcc parent: 68790:51ab840346fe user: ?ric Araujo date: Mon Mar 21 03:15:22 2011 +0100 summary: Fix some issue references in NEWS files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -515,8 +515,8 @@ time. `sys.stderr` now looked up at instantiation time. Fix contributed by Mark Roddy. -- Issue #10753: Characters ';','=' and ',' in the PATH_INFO environment variable - won't be quoted when the URI is constructed by the wsgiref.util 's request_uri +- Issue #10753: Characters ';', '=' and ',' in the PATH_INFO environment variable + won't be quoted when the URI is constructed by the wsgiref.util's request_uri method. According to RFC 3986, these characters can be a part of params in PATH component of URI and need not be quoted. @@ -986,9 +986,9 @@ comment prefixes, name of the DEFAULT section, empty lines in multiline values, and indentation. -- Issue 10326: unittest.TestCase instances can be pickled. - -- Issue 9926: Wrapped TestSuite subclass does not get __call__ executed. +- Issue #10326: unittest.TestCase instances can be pickled. + +- Issue #9926: Wrapped TestSuite subclass does not get __call__ executed. - Issue #9920: Skip tests for cmath.atan and cmath.atanh applied to complex zeros on systems where the log1p function fails to respect the sign of zero. @@ -1639,7 +1639,7 @@ - Issue #9853: Fix the signature of SSLSocket.recvfrom() and SSLSocket.sendto() to match the corresponding socket methods. -- Issue 9840: Added a decorator to reprlib for wrapping __repr__ methods to make +- Issue #9840: Added a decorator to reprlib for wrapping __repr__ methods to make them handle recursive calls within the same thread. - logging: Enhanced HTTPHandler with secure and credentials initializers. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 03:23:08 2011 From: python-checkins at python.org (eric.araujo) Date: Mon, 21 Mar 2011 03:23:08 +0100 Subject: [Python-checkins] cpython (merge default -> default): Branch merge Message-ID: http://hg.python.org/cpython/rev/441e48519a1a changeset: 68792:441e48519a1a parent: 68787:2c346063471b parent: 68789:d3e46930ffe9 user: ?ric Araujo date: Mon Mar 21 03:17:12 2011 +0100 summary: Branch merge files: Misc/NEWS diff --git a/Doc/c-api/import.rst b/Doc/c-api/import.rst --- a/Doc/c-api/import.rst +++ b/Doc/c-api/import.rst @@ -112,7 +112,7 @@ .. c:function:: PyObject* PyImport_AddModule(const char *name) - Similar to :c:func:`PyImport_AddModuleObject`, but the name is an UTF-8 + Similar to :c:func:`PyImport_AddModuleObject`, but the name is a UTF-8 encoded string instead of a Unicode object. @@ -237,7 +237,7 @@ .. c:function:: int PyImport_ImportFrozenModule(char *name) - Similar to :c:func:`PyImport_ImportFrozenModuleObject`, but the name is an + Similar to :c:func:`PyImport_ImportFrozenModuleObject`, but the name is a UTF-8 encoded string instead of a Unicode object. diff --git a/Lib/getopt.py b/Lib/getopt.py --- a/Lib/getopt.py +++ b/Lib/getopt.py @@ -19,7 +19,7 @@ # Gerrit Holl moved the string-based exceptions # to class-based exceptions. # -# Peter ? strand added gnu_getopt(). +# Peter ?strand added gnu_getopt(). # # TODO for gnu_getopt(): # @@ -34,6 +34,7 @@ __all__ = ["GetoptError","error","getopt","gnu_getopt"] import os +from gettext import gettext as _ class GetoptError(Exception): opt = '' @@ -153,10 +154,10 @@ if has_arg: if optarg is None: if not args: - raise GetoptError('option --%s requires argument' % opt, opt) + raise GetoptError(_('option --%s requires argument') % opt, opt) optarg, args = args[0], args[1:] elif optarg is not None: - raise GetoptError('option --%s must not have an argument' % opt, opt) + raise GetoptError(_('option --%s must not have an argument') % opt, opt) opts.append(('--' + opt, optarg or '')) return opts, args @@ -166,7 +167,7 @@ def long_has_args(opt, longopts): possibilities = [o for o in longopts if o.startswith(opt)] if not possibilities: - raise GetoptError('option --%s not recognized' % opt, opt) + raise GetoptError(_('option --%s not recognized') % opt, opt) # Is there an exact match? if opt in possibilities: return False, opt @@ -176,7 +177,7 @@ if len(possibilities) > 1: # XXX since possibilities contains all valid continuations, might be # nice to work them into the error msg - raise GetoptError('option --%s not a unique prefix' % opt, opt) + raise GetoptError(_('option --%s not a unique prefix') % opt, opt) assert len(possibilities) == 1 unique_match = possibilities[0] has_arg = unique_match.endswith('=') @@ -190,7 +191,7 @@ if short_has_arg(opt, shortopts): if optstring == '': if not args: - raise GetoptError('option -%s requires argument' % opt, + raise GetoptError(_('option -%s requires argument') % opt, opt) optstring, args = args[0], args[1:] optarg, optstring = optstring, '' @@ -203,7 +204,7 @@ for i in range(len(shortopts)): if opt == shortopts[i] != ':': return shortopts.startswith(':', i+1) - raise GetoptError('option -%s not recognized' % opt, opt) + raise GetoptError(_('option -%s not recognized') % opt, opt) if __name__ == '__main__': import sys diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -81,6 +81,9 @@ Library ------- +- Issue #11371: Mark getopt error messages as localizable. Patch by Filip + Gruszczy?ski. + - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 03:23:09 2011 From: python-checkins at python.org (eric.araujo) Date: Mon, 21 Mar 2011 03:23:09 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Fix some issue references in NEWS Message-ID: http://hg.python.org/cpython/rev/53948fe5b4d7 changeset: 68793:53948fe5b4d7 parent: 68792:441e48519a1a parent: 68791:f061a60203ec user: ?ric Araujo date: Mon Mar 21 03:18:58 2011 +0100 summary: Fix some issue references in NEWS files: Misc/NEWS diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -191,7 +191,7 @@ The _thread.error exception is now an alias of RuntimeError. Patch by Filip Gruszczy?ski. Patch for _dummy_thread by Aymeric Augustin. -- Issue 8594: ftplib now provides a source_address parameter to specify which +- Issue #8594: ftplib now provides a source_address parameter to specify which (address, port) to bind to before connecting. - Issue #11326: Add the missing connect_ex() implementation for SSL sockets, @@ -207,9 +207,9 @@ - Issue #7322: Trying to read from a socket's file-like object after a timeout occurred now raises an error instead of silently losing data. -- Issue 11291: poplib.POP no longer suppresses errors on quit(). - -- Issue 11177: asyncore's create_socket() arguments can now be omitted. +- Issue #11291: poplib.POP no longer suppresses errors on quit(). + +- Issue #11177: asyncore's create_socket() arguments can now be omitted. - Issue #6064: Add a ``daemon`` keyword argument to the threading.Thread and multiprocessing.Process constructors in order to override the @@ -225,7 +225,7 @@ to 1000x faster in some cases). It is still one to two order of magnitudes slower than binary tell(). -- Issue 10882: Add os.sendfile function. +- Issue #10882: Add os.sendfile function. - Issue #10868: Allow usage of the register method of an ABC as a class decorator. @@ -651,8 +651,8 @@ time. `sys.stderr` now looked up at instantiation time. Fix contributed by Mark Roddy. -- Issue #10753: Characters ';','=' and ',' in the PATH_INFO environment variable - won't be quoted when the URI is constructed by the wsgiref.util 's request_uri +- Issue #10753: Characters ';', '=' and ',' in the PATH_INFO environment variable + won't be quoted when the URI is constructed by the wsgiref.util's request_uri method. According to RFC 3986, these characters can be a part of params in PATH component of URI and need not be quoted. @@ -1122,9 +1122,9 @@ comment prefixes, name of the DEFAULT section, empty lines in multiline values, and indentation. -- Issue 10326: unittest.TestCase instances can be pickled. - -- Issue 9926: Wrapped TestSuite subclass does not get __call__ executed. +- Issue #10326: unittest.TestCase instances can be pickled. + +- Issue #9926: Wrapped TestSuite subclass does not get __call__ executed. - Issue #9920: Skip tests for cmath.atan and cmath.atanh applied to complex zeros on systems where the log1p function fails to respect the sign of zero. @@ -1775,7 +1775,7 @@ - Issue #9853: Fix the signature of SSLSocket.recvfrom() and SSLSocket.sendto() to match the corresponding socket methods. -- Issue 9840: Added a decorator to reprlib for wrapping __repr__ methods to make +- Issue #9840: Added a decorator to reprlib for wrapping __repr__ methods to make them handle recursive calls within the same thread. - logging: Enhanced HTTPHandler with secure and credentials initializers. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 03:26:20 2011 From: python-checkins at python.org (victor.stinner) Date: Mon, 21 Mar 2011 03:26:20 +0100 Subject: [Python-checkins] cpython (3.1): Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file Message-ID: http://hg.python.org/cpython/rev/d9633064458c changeset: 68794:d9633064458c branch: 3.1 parent: 68790:51ab840346fe user: Victor Stinner date: Mon Mar 21 03:22:50 2011 +0100 summary: Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int (length bigger than 2^31-1 bytes). files: Lib/test/test_xml_etree_c.py Misc/NEWS Python/getargs.c diff --git a/Lib/test/test_xml_etree_c.py b/Lib/test/test_xml_etree_c.py --- a/Lib/test/test_xml_etree_c.py +++ b/Lib/test/test_xml_etree_c.py @@ -4,6 +4,8 @@ import sys from test import support +from test.support import precisionbigmemtest, _2G +import unittest ET = support.import_module('xml.etree.cElementTree') @@ -212,9 +214,25 @@ '' """ +class MiscTests(unittest.TestCase): + # Issue #8651. + @support.precisionbigmemtest(size=support._2G + 100, memuse=1) + def test_length_overflow(self, size): + if size < support._2G + 100: + self.skipTest("not enough free memory, need at least 2 GB") + data = b'x' * size + parser = ET.XMLParser() + try: + self.assertRaises(OverflowError, parser.feed, data) + finally: + data = None + + def test_main(): from test import test_xml_etree_c support.run_doctest(test_xml_etree_c, verbosity=True) + support.run_unittest(MiscTests) + if __name__ == '__main__': test_main() diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,10 @@ Core and Builtins ----------------- +- Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file + doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int + (length bigger than 2^31-1 bytes). + - Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when there are many tags (e.g. when using mq). Patch by Nadeem Vawda. diff --git a/Python/getargs.c b/Python/getargs.c --- a/Python/getargs.c +++ b/Python/getargs.c @@ -613,7 +613,17 @@ #define FETCH_SIZE int *q=NULL;Py_ssize_t *q2=NULL;\ if (flags & FLAG_SIZE_T) q2=va_arg(*p_va, Py_ssize_t*); \ else q=va_arg(*p_va, int*); -#define STORE_SIZE(s) if (flags & FLAG_SIZE_T) *q2=s; else *q=s; +#define STORE_SIZE(s) \ + if (flags & FLAG_SIZE_T) \ + *q2=s; \ + else { \ + if (INT_MAX < s) { \ + PyErr_SetString(PyExc_OverflowError, \ + "size does not fit in an int"); \ + return converterr("", arg, msgbuf, bufsize); \ + } \ + *q=s; \ + } #define BUFFER_LEN ((flags & FLAG_SIZE_T) ? *q2:*q) const char *format = *p_format; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 03:29:06 2011 From: python-checkins at python.org (victor.stinner) Date: Mon, 21 Mar 2011 03:29:06 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): merge 3.1 (already commited before) Message-ID: http://hg.python.org/cpython/rev/18f7fe1d2108 changeset: 68795:18f7fe1d2108 branch: 3.2 parent: 68791:f061a60203ec parent: 68794:d9633064458c user: Victor Stinner date: Mon Mar 21 03:28:10 2011 +0100 summary: merge 3.1 (already commited before) files: Lib/test/test_xml_etree_c.py Misc/NEWS Python/getargs.c -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 03:29:08 2011 From: python-checkins at python.org (victor.stinner) Date: Mon, 21 Mar 2011 03:29:08 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge 3.2 (already commited before) Message-ID: http://hg.python.org/cpython/rev/891dc12f5e2f changeset: 68796:891dc12f5e2f parent: 68793:53948fe5b4d7 parent: 68795:18f7fe1d2108 user: Victor Stinner date: Mon Mar 21 03:28:59 2011 +0100 summary: merge 3.2 (already commited before) files: Misc/NEWS Python/getargs.c -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 05:57:01 2011 From: python-checkins at python.org (ned.deily) Date: Mon, 21 Mar 2011 05:57:01 +0100 Subject: [Python-checkins] hooks: Update checkwhitespace comments to show use of absolute path in hgrc. Message-ID: http://hg.python.org/hooks/rev/9a63a9927d38 changeset: 66:9a63a9927d38 user: Ned Deily date: Sun Mar 20 21:56:43 2011 -0700 summary: Update checkwhitespace comments to show use of absolute path in hgrc. files: checkwhitespace.py diff --git a/checkwhitespace.py b/checkwhitespace.py --- a/checkwhitespace.py +++ b/checkwhitespace.py @@ -4,10 +4,10 @@ To use the changeset hook in a local repository, include something like the following in your hgrc file, and make sure that this file (check_whitespace.py) -and reindent.py are in your PYTHONPATH. +and reindent.py are in the same directory. [hooks] -pretxncommit.whitespace = python:checkwhitespace.check_whitespace_single +pretxncommit.whitespace = python:/home/hg/repos/hooks/checkwhitespace.py:check_whitespace_single """ # Mercurial hooks are not run with the hook's directory in sys.path -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Mon Mar 21 08:56:06 2011 From: python-checkins at python.org (georg.brandl) Date: Mon, 21 Mar 2011 08:56:06 +0100 Subject: [Python-checkins] cpython (3.1): Fix duplicate word. Message-ID: http://hg.python.org/cpython/rev/ed8eefa6d57c changeset: 68797:ed8eefa6d57c branch: 3.1 parent: 68794:d9633064458c user: Georg Brandl date: Mon Mar 21 08:55:16 2011 +0100 summary: Fix duplicate word. files: Doc/library/html.parser.rst diff --git a/Doc/library/html.parser.rst b/Doc/library/html.parser.rst --- a/Doc/library/html.parser.rst +++ b/Doc/library/html.parser.rst @@ -144,7 +144,7 @@ Method called when an unrecognized SGML declaration is read by the parser. The *data* parameter will be the entire contents of the declaration inside - the ```` markup. It is sometimes useful to be be overridden by a + the ```` markup. It is sometimes useful to be overridden by a derived class; the base class implementation raises an :exc:`HTMLParseError`. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 08:56:07 2011 From: python-checkins at python.org (georg.brandl) Date: Mon, 21 Mar 2011 08:56:07 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge to 3.2. Message-ID: http://hg.python.org/cpython/rev/c1b3ab766de4 changeset: 68798:c1b3ab766de4 branch: 3.2 parent: 68795:18f7fe1d2108 parent: 68797:ed8eefa6d57c user: Georg Brandl date: Mon Mar 21 08:55:31 2011 +0100 summary: Merge to 3.2. files: Doc/library/html.parser.rst diff --git a/Doc/library/html.parser.rst b/Doc/library/html.parser.rst --- a/Doc/library/html.parser.rst +++ b/Doc/library/html.parser.rst @@ -154,7 +154,7 @@ Method called when an unrecognized SGML declaration is read by the parser. The *data* parameter will be the entire contents of the declaration inside - the ```` markup. It is sometimes useful to be be overridden by a + the ```` markup. It is sometimes useful to be overridden by a derived class; the base class implementation raises an :exc:`HTMLParseError`. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 08:56:08 2011 From: python-checkins at python.org (georg.brandl) Date: Mon, 21 Mar 2011 08:56:08 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge to default. Message-ID: http://hg.python.org/cpython/rev/ded063d33a11 changeset: 68799:ded063d33a11 parent: 68796:891dc12f5e2f parent: 68798:c1b3ab766de4 user: Georg Brandl date: Mon Mar 21 08:55:42 2011 +0100 summary: Merge to default. files: diff --git a/Doc/library/html.parser.rst b/Doc/library/html.parser.rst --- a/Doc/library/html.parser.rst +++ b/Doc/library/html.parser.rst @@ -154,7 +154,7 @@ Method called when an unrecognized SGML declaration is read by the parser. The *data* parameter will be the entire contents of the declaration inside - the ```` markup. It is sometimes useful to be be overridden by a + the ```` markup. It is sometimes useful to be overridden by a derived class; the base class implementation raises an :exc:`HTMLParseError`. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 08:56:14 2011 From: python-checkins at python.org (georg.brandl) Date: Mon, 21 Mar 2011 08:56:14 +0100 Subject: [Python-checkins] cpython (2.7): Fix duplicate word. Message-ID: http://hg.python.org/cpython/rev/6b2edc385ffe changeset: 68800:6b2edc385ffe branch: 2.7 parent: 68775:670e30ee121f user: Georg Brandl date: Mon Mar 21 08:55:16 2011 +0100 summary: Fix duplicate word. files: Doc/library/htmlparser.rst diff --git a/Doc/library/htmlparser.rst b/Doc/library/htmlparser.rst --- a/Doc/library/htmlparser.rst +++ b/Doc/library/htmlparser.rst @@ -158,7 +158,7 @@ Method called when an unrecognized SGML declaration is read by the parser. The *data* parameter will be the entire contents of the declaration inside - the ```` markup. It is sometimes useful to be be overridden by a + the ```` markup. It is sometimes useful to be overridden by a derived class; the base class implementation throws an :exc:`HTMLParseError`. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 10:32:19 2011 From: python-checkins at python.org (martin.v.loewis) Date: Mon, 21 Mar 2011 10:32:19 +0100 Subject: [Python-checkins] cpython (2.5): Set subversion version identification to empty strings if this is not a Message-ID: http://hg.python.org/cpython/rev/f9763c363cc3 changeset: 68801:f9763c363cc3 branch: 2.5 parent: 68695:cc959f114739 user: Martin v. L?wis date: Mon Mar 21 10:30:07 2011 +0100 summary: Set subversion version identification to empty strings if this is not a subversion checkout (but a mercurial one). Closes #11579. Closes #11421. Patch by Senthil Kumaran. files: Python/sysmodule.c diff --git a/Python/sysmodule.c b/Python/sysmodule.c --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -978,8 +978,13 @@ return; python = strstr(headurl, "/python/"); - if (!python) - Py_FatalError("subversion keywords missing"); + if (!python) { + *patchlevel_revision = '\0'; + strcpy(branch, ""); + strcpy(shortbranch, "unknown"); + svn_revision = ""; + return; + } br_start = python + 8; br_end = strchr(br_start, '/'); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 10:32:19 2011 From: python-checkins at python.org (martin.v.loewis) Date: Mon, 21 Mar 2011 10:32:19 +0100 Subject: [Python-checkins] cpython (merge 2.5 -> 2.6): null merge Message-ID: http://hg.python.org/cpython/rev/b99c94261225 changeset: 68802:b99c94261225 branch: 2.6 parent: 68696:69650b81f4b9 parent: 68801:f9763c363cc3 user: Martin v. L?wis date: Mon Mar 21 10:31:44 2011 +0100 summary: null merge files: Python/sysmodule.c -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 10:32:20 2011 From: python-checkins at python.org (martin.v.loewis) Date: Mon, 21 Mar 2011 10:32:20 +0100 Subject: [Python-checkins] cpython (merge 2.6 -> 2.7): null merge Message-ID: http://hg.python.org/cpython/rev/f316e6d6271a changeset: 68803:f316e6d6271a branch: 2.7 parent: 68800:6b2edc385ffe parent: 68802:b99c94261225 user: Martin v. L?wis date: Mon Mar 21 10:32:02 2011 +0100 summary: null merge files: Python/sysmodule.c -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 13:26:59 2011 From: python-checkins at python.org (victor.stinner) Date: Mon, 21 Mar 2011 13:26:59 +0100 Subject: [Python-checkins] cpython: _elementtree.c: remove trailing spaces Message-ID: http://hg.python.org/cpython/rev/d0fe7489c4cc changeset: 68804:d0fe7489c4cc parent: 68799:ded063d33a11 user: Victor Stinner date: Mon Mar 21 13:23:42 2011 +0100 summary: _elementtree.c: remove trailing spaces files: Modules/_elementtree.c diff --git a/Modules/_elementtree.c b/Modules/_elementtree.c --- a/Modules/_elementtree.c +++ b/Modules/_elementtree.c @@ -226,7 +226,7 @@ PyObject* *children; PyObject* _children[STATIC_CHILDREN]; - + } ElementObjectExtra; typedef struct { @@ -354,14 +354,14 @@ /* use Python 2.4's list growth strategy */ size = (size >> 3) + (size < 9 ? 3 : 6) + size; /* Coverity CID #182 size_error: Allocating 1 bytes to pointer "children" - * which needs at least 4 bytes. - * Although it's a false alarm always assume at least one child to + * which needs at least 4 bytes. + * Although it's a false alarm always assume at least one child to * be safe. */ size = size ? size : 1; if (self->extra->children != self->extra->_children) { /* Coverity CID #182 size_error: Allocating 1 bytes to pointer - * "children", which needs at least 4 bytes. Although it's a + * "children", which needs at least 4 bytes. Although it's a * false alarm always assume at least one child to be safe. */ children = PyObject_Realloc(self->extra->children, @@ -606,7 +606,7 @@ Py_INCREF(JOIN_OBJ(element->tail)); if (self->extra) { - + if (element_resize(element, self->extra->length) < 0) { Py_DECREF(element); return NULL; @@ -618,7 +618,7 @@ } element->extra->length = self->extra->length; - + } return (PyObject*) element; @@ -661,7 +661,7 @@ if (!element) return NULL; - + text = deepcopy(JOIN_OBJ(self->text), memo); if (!text) goto error; @@ -675,7 +675,7 @@ element->tail = JOIN_SET(tail, JOIN_GET(self->tail)); if (self->extra) { - + if (element_resize(element, self->extra->length) < 0) goto error; @@ -689,7 +689,7 @@ } element->extra->length = self->extra->length; - + } /* add object to memo dictionary (so deepcopy won't visit it again) */ @@ -800,7 +800,7 @@ if (!self->extra) Py_RETURN_NONE; - + for (i = 0; i < self->extra->length; i++) { PyObject* item = self->extra->children[i]; if (Element_CheckExact(item) && @@ -953,7 +953,7 @@ element_iter(ElementObject* self, PyObject* args) { PyObject* result; - + PyObject* tag = Py_None; if (!PyArg_ParseTuple(args, "|O:iter", &tag)) return NULL; @@ -985,7 +985,7 @@ element_itertext(ElementObject* self, PyObject* args) { PyObject* result; - + if (!PyArg_ParseTuple(args, ":itertext")) return NULL; @@ -1483,7 +1483,7 @@ if (PyUnicode_Check(nameobj)) name = _PyUnicode_AsString(nameobj); - + if (name == NULL) return NULL; @@ -2113,7 +2113,7 @@ Py_INCREF(key); tag = key; } - + /* decode universal name */ p = PyBytes_AS_STRING(tag); value = PyUnicode_DecodeUTF8(p, size, "strict"); @@ -2407,7 +2407,7 @@ for (i = 0; i < 256; i++) s[i] = i; - + u = PyUnicode_Decode((char*) s, 256, name, "replace"); if (!u) return XML_STATUS_ERROR; @@ -2466,7 +2466,7 @@ PyObject_Del(self); return NULL; } - + self->names = PyDict_New(); if (!self->names) { PyObject_Del(self->entity); @@ -2645,7 +2645,7 @@ reader = PyObject_GetAttrString(fileobj, "read"); if (!reader) return NULL; - + /* read from open file object */ for (;;) { @@ -2796,7 +2796,7 @@ {NULL, NULL} }; -static PyObject* +static PyObject* xmlparser_getattro(XMLParserObject* self, PyObject* nameobj) { if (PyUnicode_Check(nameobj)) { @@ -2957,7 +2957,7 @@ " break\n" " parser.feed(data)\n" " self._root = parser.close()\n" - " else:\n" + " else:\n" " parser = cElementTree.XMLParser()\n" " self._root = parser._parse(source)\n" " return self._root\n" -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 13:26:59 2011 From: python-checkins at python.org (victor.stinner) Date: Mon, 21 Mar 2011 13:26:59 +0100 Subject: [Python-checkins] cpython: Issue #10833: Use PyUnicode_FromFormat() and PyErr_Format() instead of Message-ID: http://hg.python.org/cpython/rev/74d3dc78f0db changeset: 68805:74d3dc78f0db user: Victor Stinner date: Mon Mar 21 13:26:24 2011 +0100 summary: Issue #10833: Use PyUnicode_FromFormat() and PyErr_Format() instead of PyOS_snprintf(). files: Modules/_elementtree.c Modules/_testcapimodule.c Modules/gcmodule.c Modules/pyexpat.c Modules/timemodule.c Objects/weakrefobject.c diff --git a/Modules/_elementtree.c b/Modules/_elementtree.c --- a/Modules/_elementtree.c +++ b/Modules/_elementtree.c @@ -2138,13 +2138,15 @@ static void expat_set_error(const char* message, int line, int column) { - PyObject *error; - PyObject *position; - char buffer[256]; - - sprintf(buffer, "%.100s: line %d, column %d", message, line, column); - - error = PyObject_CallFunction(elementtree_parseerror_obj, "s", buffer); + PyObject *errmsg, *error, *position; + + errmsg = PyUnicode_FromFormat("%s: line %d, column %d", + message, line, column); + if (errmsg == NULL) + return; + + error = PyObject_CallFunction(elementtree_parseerror_obj, "O", errmsg); + Py_DECREF(errmsg); if (!error) return; diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -43,11 +43,9 @@ sizeof_error(const char* fatname, const char* typname, int expected, int got) { - char buf[1024]; - PyOS_snprintf(buf, sizeof(buf), - "%.200s #define == %d but sizeof(%.200s) == %d", + PyErr_Format(TestError, + "%s #define == %d but sizeof(%s) == %d", fatname, expected, typname, got); - PyErr_SetString(TestError, buf); return (PyObject*)NULL; } diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -680,8 +680,8 @@ static void debug_cycle(char *msg, PyObject *op) { - PySys_WriteStderr("gc: %.100s <%.100s %p>\n", - msg, Py_TYPE(op)->tp_name, op); + PySys_FormatStderr("gc: %s <%s %p>\n", + msg, Py_TYPE(op)->tp_name, op); } /* Handle uncollectable garbage (cycles with finalizers, and stuff reachable diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c --- a/Modules/pyexpat.c +++ b/Modules/pyexpat.c @@ -100,16 +100,17 @@ set_error(xmlparseobject *self, enum XML_Error code) { PyObject *err; - char buffer[256]; + PyObject *buffer; XML_Parser parser = self->itself; int lineno = XML_GetErrorLineNumber(parser); int column = XML_GetErrorColumnNumber(parser); - /* There is no risk of overflowing this buffer, since - even for 64-bit integers, there is sufficient space. */ - sprintf(buffer, "%.200s: line %i, column %i", - XML_ErrorString(code), lineno, column); - err = PyObject_CallFunction(ErrorObject, "s", buffer); + buffer = PyUnicode_FromFormat("%s: line %i, column %i", + XML_ErrorString(code), lineno, column); + if (buffer == NULL) + return NULL; + err = PyObject_CallFunction(ErrorObject, "O", buffer); + Py_DECREF(buffer); if ( err != NULL && set_error_attr(err, "code", code) && set_error_attr(err, "offset", column) diff --git a/Modules/timemodule.c b/Modules/timemodule.c --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -601,31 +601,20 @@ { /* Inspired by Open Group reference implementation available at * http://pubs.opengroup.org/onlinepubs/009695399/functions/asctime.html */ - static char wday_name[7][3] = { + static char wday_name[7][4] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; - static char mon_name[12][3] = { + static char mon_name[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; - char buf[20]; /* 'Sun Sep 16 01:03:52\0' */ - int n; - - n = PyOS_snprintf(buf, sizeof(buf), "%.3s %.3s%3d %.2d:%.2d:%.2d", - wday_name[timeptr->tm_wday], - mon_name[timeptr->tm_mon], - timeptr->tm_mday, timeptr->tm_hour, - timeptr->tm_min, timeptr->tm_sec); - /* XXX: since the fields used by snprintf above are validated in checktm, - * the following condition should never trigger. We keep the check because - * historically fixed size buffer used in asctime was the source of - * crashes. */ - if (n + 1 != sizeof(buf)) { - PyErr_SetString(PyExc_ValueError, "unconvertible time"); - return NULL; - } - - return PyUnicode_FromFormat("%s %d", buf, 1900 + timeptr->tm_year); + return PyUnicode_FromFormat( + "%s %s%3d %.2d:%.2d:%.2d %d", + wday_name[timeptr->tm_wday], + mon_name[timeptr->tm_mon], + timeptr->tm_mday, timeptr->tm_hour, + timeptr->tm_min, timeptr->tm_sec, + 1900 + timeptr->tm_year); } static PyObject * diff --git a/Objects/weakrefobject.c b/Objects/weakrefobject.c --- a/Objects/weakrefobject.c +++ b/Objects/weakrefobject.c @@ -157,34 +157,31 @@ weakref_repr(PyWeakReference *self) { char buffer[256]; - if (PyWeakref_GET_OBJECT(self) == Py_None) { - PyOS_snprintf(buffer, sizeof(buffer), "", self); + PyObject *name, *repr; + + if (PyWeakref_GET_OBJECT(self) == Py_None) + return PyUnicode_FromFormat("", self); + + name = PyObject_GetAttrString(PyWeakref_GET_OBJECT(self), "__name__"); + if (name == NULL || !PyUnicode_Check(name)) { + if (name == NULL) + PyErr_Clear(); + repr = PyUnicode_FromFormat( + "", + self, + Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name, + PyWeakref_GET_OBJECT(self)); } else { - char *name = NULL; - PyObject *nameobj = PyObject_GetAttrString(PyWeakref_GET_OBJECT(self), - "__name__"); - if (nameobj == NULL) - PyErr_Clear(); - else if (PyUnicode_Check(nameobj)) - name = _PyUnicode_AsString(nameobj); - if (name) - PyOS_snprintf(buffer, sizeof(buffer), - "", - self, - Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name, - PyWeakref_GET_OBJECT(self), - name); - else - PyOS_snprintf(buffer, sizeof(buffer), - "", - self, - Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name, - PyWeakref_GET_OBJECT(self)); - - Py_XDECREF(nameobj); + repr = PyUnicode_FromFormat( + "", + self, + Py_TYPE(PyWeakref_GET_OBJECT(self))->tp_name, + PyWeakref_GET_OBJECT(self), + name); } - return PyUnicode_FromString(buffer); + Py_XDECREF(name); + return repr; } /* Weak references only support equality, not ordering. Two weak references @@ -459,12 +456,11 @@ static PyObject * proxy_repr(PyWeakReference *proxy) { - char buf[160]; - PyOS_snprintf(buf, sizeof(buf), - "", proxy, - Py_TYPE(PyWeakref_GET_OBJECT(proxy))->tp_name, - PyWeakref_GET_OBJECT(proxy)); - return PyUnicode_FromString(buf); + return PyUnicode_FromFormat( + "", + proxy, + Py_TYPE(PyWeakref_GET_OBJECT(proxy))->tp_name, + PyWeakref_GET_OBJECT(proxy)); } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 16:04:36 2011 From: python-checkins at python.org (antoine.pitrou) Date: Mon, 21 Mar 2011 16:04:36 +0100 Subject: [Python-checkins] cpython: Issue #11621: fix bootstrap issue with getopt/gettext (following d3e46930ffe9) Message-ID: http://hg.python.org/cpython/rev/160823d258b5 changeset: 68806:160823d258b5 user: Antoine Pitrou date: Mon Mar 21 16:04:06 2011 +0100 summary: Issue #11621: fix bootstrap issue with getopt/gettext (following d3e46930ffe9) files: Lib/getopt.py diff --git a/Lib/getopt.py b/Lib/getopt.py --- a/Lib/getopt.py +++ b/Lib/getopt.py @@ -34,7 +34,11 @@ __all__ = ["GetoptError","error","getopt","gnu_getopt"] import os -from gettext import gettext as _ +try: + from gettext import gettext as _ +except ImportError: + # Bootstrapping Python: gettext's dependencies not built yet + def _(s): return s class GetoptError(Exception): opt = '' -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 18:07:09 2011 From: python-checkins at python.org (reid.kleckner) Date: Mon, 21 Mar 2011 18:07:09 +0100 Subject: [Python-checkins] cpython: Fix timeout error message on windows to not be in milliseconds. Message-ID: http://hg.python.org/cpython/rev/ab2363f89058 changeset: 68807:ab2363f89058 user: Reid Kleckner date: Mon Mar 21 10:06:10 2011 -0700 summary: Fix timeout error message on windows to not be in milliseconds. files: Lib/subprocess.py diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -1068,11 +1068,12 @@ if endtime is not None: timeout = self._remaining_time(endtime) if timeout is None: - timeout = _subprocess.INFINITE + timeout_millis = _subprocess.INFINITE else: - timeout = int(timeout * 1000) + timeout_millis = int(timeout * 1000) if self.returncode is None: - result = _subprocess.WaitForSingleObject(self._handle, timeout) + result = _subprocess.WaitForSingleObject(self._handle, + timeout_millis) if result == _subprocess.WAIT_TIMEOUT: raise TimeoutExpired(self.args, timeout) self.returncode = _subprocess.GetExitCodeProcess(self._handle) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 18:15:57 2011 From: python-checkins at python.org (victor.stinner) Date: Mon, 21 Mar 2011 18:15:57 +0100 Subject: [Python-checkins] cpython: Issue #10833: Remove the buffer allocated on the stack, it isn't used anymore Message-ID: http://hg.python.org/cpython/rev/513bab5cfb18 changeset: 68808:513bab5cfb18 user: Victor Stinner date: Mon Mar 21 18:10:02 2011 +0100 summary: Issue #10833: Remove the buffer allocated on the stack, it isn't used anymore files: Objects/weakrefobject.c diff --git a/Objects/weakrefobject.c b/Objects/weakrefobject.c --- a/Objects/weakrefobject.c +++ b/Objects/weakrefobject.c @@ -156,7 +156,6 @@ static PyObject * weakref_repr(PyWeakReference *self) { - char buffer[256]; PyObject *name, *repr; if (PyWeakref_GET_OBJECT(self) == Py_None) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 18:16:07 2011 From: python-checkins at python.org (victor.stinner) Date: Mon, 21 Mar 2011 18:16:07 +0100 Subject: [Python-checkins] cpython: Issue #10833: Use PyErr_Format() and PyUnicode_FromFormat() instead of Message-ID: http://hg.python.org/cpython/rev/4c2135930882 changeset: 68809:4c2135930882 user: Victor Stinner date: Mon Mar 21 18:15:42 2011 +0100 summary: Issue #10833: Use PyErr_Format() and PyUnicode_FromFormat() instead of PyOS_snprintf() to avoid temporary buffer allocated on the stack and a conversion from bytes to Unicode. files: Modules/_datetimemodule.c Modules/_testcapimodule.c Modules/_tkinter.c Modules/readline.c Objects/complexobject.c Python/getargs.c diff --git a/Modules/_datetimemodule.c b/Modules/_datetimemodule.c --- a/Modules/_datetimemodule.c +++ b/Modules/_datetimemodule.c @@ -766,7 +766,7 @@ PyObject *name; } PyDateTime_TimeZone; -/* The interned UTC timezone instance */ +/* The interned UTC timezone instance */ static PyObject *PyDateTime_TimeZone_UTC; /* Create new timezone instance checking offset range. This @@ -3287,7 +3287,6 @@ static PyObject * timezone_str(PyDateTime_TimeZone *self) { - char buf[10]; int hours, minutes, seconds; PyObject *offset; char sign; @@ -3313,11 +3312,9 @@ Py_DECREF(offset); minutes = divmod(seconds, 60, &seconds); hours = divmod(minutes, 60, &minutes); + /* XXX ignore sub-minute data, curently not allowed. */ assert(seconds == 0); - /* XXX ignore sub-minute data, curently not allowed. */ - PyOS_snprintf(buf, sizeof(buf), "UTC%c%02d:%02d", sign, hours, minutes); - - return PyUnicode_FromString(buf); + return PyUnicode_FromFormat("UTC%c%02d:%02d", sign, hours, minutes); } static PyObject * diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -22,14 +22,7 @@ static PyObject * raiseTestError(const char* test_name, const char* msg) { - char buf[2048]; - - if (strlen(test_name) + strlen(msg) > sizeof(buf) - 50) - PyErr_SetString(TestError, "internal error msg too large"); - else { - PyOS_snprintf(buf, sizeof(buf), "%s: %s", test_name, msg); - PyErr_SetString(TestError, buf); - } + PyErr_Format(TestError, "%s: %s", test_name, msg); return NULL; } diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -2400,11 +2400,9 @@ Tktt_Repr(PyObject *self) { TkttObject *v = (TkttObject *)self; - char buf[100]; - - PyOS_snprintf(buf, sizeof(buf), "", v, - v->func == NULL ? ", handler deleted" : ""); - return PyUnicode_FromString(buf); + return PyUnicode_FromFormat("", + v, + v->func == NULL ? ", handler deleted" : ""); } static PyTypeObject Tktt_Type = diff --git a/Modules/readline.c b/Modules/readline.c --- a/Modules/readline.c +++ b/Modules/readline.c @@ -233,10 +233,9 @@ Py_XDECREF(tmp); } else { - PyOS_snprintf(buf, sizeof(buf), - "set_%.50s(func): argument not callable", - funcname); - PyErr_SetString(PyExc_TypeError, buf); + PyErr_Format(PyExc_TypeError, + "set_%.50s(func): argument not callable", + funcname); return NULL; } Py_RETURN_NONE; @@ -890,7 +889,7 @@ #endif #ifdef __APPLE__ - /* the libedit readline emulation resets key bindings etc + /* the libedit readline emulation resets key bindings etc * when calling rl_initialize. So call it upfront */ if (using_libedit_emulation) @@ -930,11 +929,11 @@ */ #ifdef __APPLE__ if (using_libedit_emulation) - rl_read_init_file(NULL); + rl_read_init_file(NULL); else #endif /* __APPLE__ */ rl_initialize(); - + RESTORE_LOCALE(saved_locale) } diff --git a/Objects/complexobject.c b/Objects/complexobject.c --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -330,12 +330,10 @@ int precision = 0; char format_code = 'r'; PyObject *result = NULL; - Py_ssize_t len; /* If these are non-NULL, they'll need to be freed. */ char *pre = NULL; char *im = NULL; - char *buf = NULL; /* These do not need to be freed. re is either an alias for pre or a pointer to a constant. lead and tail @@ -374,20 +372,10 @@ lead = "("; tail = ")"; } - /* Alloc the final buffer. Add one for the "j" in the format string, - and one for the trailing zero byte. */ - len = strlen(lead) + strlen(re) + strlen(im) + strlen(tail) + 2; - buf = PyMem_Malloc(len); - if (!buf) { - PyErr_NoMemory(); - goto done; - } - PyOS_snprintf(buf, len, "%s%s%sj%s", lead, re, im, tail); - result = PyUnicode_FromString(buf); + result = PyUnicode_FromFormat("%s%s%sj%s", lead, re, im, tail); done: PyMem_Free(im); PyMem_Free(pre); - PyMem_Free(buf); return result; } diff --git a/Python/getargs.c b/Python/getargs.c --- a/Python/getargs.c +++ b/Python/getargs.c @@ -310,20 +310,18 @@ if (max == 0) { if (args == NULL) return 1; - PyOS_snprintf(msgbuf, sizeof(msgbuf), - "%.200s%s takes no arguments", - fname==NULL ? "function" : fname, - fname==NULL ? "" : "()"); - PyErr_SetString(PyExc_TypeError, msgbuf); + PyErr_Format(PyExc_TypeError, + "%.200s%s takes no arguments", + fname==NULL ? "function" : fname, + fname==NULL ? "" : "()"); return 0; } else if (min == 1 && max == 1) { if (args == NULL) { - PyOS_snprintf(msgbuf, sizeof(msgbuf), - "%.200s%s takes at least one argument", - fname==NULL ? "function" : fname, - fname==NULL ? "" : "()"); - PyErr_SetString(PyExc_TypeError, msgbuf); + PyErr_Format(PyExc_TypeError, + "%.200s%s takes at least one argument", + fname==NULL ? "function" : fname, + fname==NULL ? "" : "()"); return 0; } msg = convertitem(args, &format, p_va, flags, levels, @@ -349,20 +347,18 @@ len = PyTuple_GET_SIZE(args); if (len < min || max < len) { - if (message == NULL) { - PyOS_snprintf(msgbuf, sizeof(msgbuf), - "%.150s%s takes %s %d argument%s " - "(%ld given)", - fname==NULL ? "function" : fname, - fname==NULL ? "" : "()", - min==max ? "exactly" - : len < min ? "at least" : "at most", - len < min ? min : max, - (len < min ? min : max) == 1 ? "" : "s", - Py_SAFE_DOWNCAST(len, Py_ssize_t, long)); - message = msgbuf; - } - PyErr_SetString(PyExc_TypeError, message); + if (message == NULL) + PyErr_Format(PyExc_TypeError, + "%.150s%s takes %s %d argument%s (%ld given)", + fname==NULL ? "function" : fname, + fname==NULL ? "" : "()", + min==max ? "exactly" + : len < min ? "at least" : "at most", + len < min ? min : max, + (len < min ? min : max) == 1 ? "" : "s", + Py_SAFE_DOWNCAST(len, Py_ssize_t, long)); + else + PyErr_SetString(PyExc_TypeError, message); return 0; } @@ -1458,8 +1454,8 @@ nargs = PyTuple_GET_SIZE(args); nkeywords = (keywords == NULL) ? 0 : PyDict_Size(keywords); if (nargs + nkeywords > len) { - PyErr_Format(PyExc_TypeError, "%s%s takes at most %d " - "argument%s (%d given)", + PyErr_Format(PyExc_TypeError, + "%s%s takes at most %d argument%s (%d given)", (fname == NULL) ? "function" : fname, (fname == NULL) ? "" : "()", len, -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 18:44:01 2011 From: python-checkins at python.org (antoine.pitrou) Date: Mon, 21 Mar 2011 18:44:01 +0100 Subject: [Python-checkins] cpython (3.2): Relax timing check (seen a buildbot failure on this) Message-ID: http://hg.python.org/cpython/rev/693415328363 changeset: 68810:693415328363 branch: 3.2 parent: 68798:c1b3ab766de4 user: Antoine Pitrou date: Mon Mar 21 18:43:01 2011 +0100 summary: Relax timing check (seen a buildbot failure on this) files: Lib/test/test_multiprocessing.py diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -1088,7 +1088,7 @@ self.pool.terminate() join = TimingWrapper(self.pool.join) join() - self.assertTrue(join.elapsed < 0.2) + self.assertTrue(join.elapsed < 0.5) def raising(): raise KeyError("key") -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 18:44:01 2011 From: python-checkins at python.org (antoine.pitrou) Date: Mon, 21 Mar 2011 18:44:01 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Relax timing check (seen a buildbot failure on this) Message-ID: http://hg.python.org/cpython/rev/d372fb6e0075 changeset: 68811:d372fb6e0075 parent: 68809:4c2135930882 parent: 68810:693415328363 user: Antoine Pitrou date: Mon Mar 21 18:43:40 2011 +0100 summary: Relax timing check (seen a buildbot failure on this) files: Lib/test/test_multiprocessing.py diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -1100,7 +1100,7 @@ self.pool.terminate() join = TimingWrapper(self.pool.join) join() - self.assertTrue(join.elapsed < 0.2) + self.assertTrue(join.elapsed < 0.5) def raising(): raise KeyError("key") -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 19:05:31 2011 From: python-checkins at python.org (antoine.pitrou) Date: Mon, 21 Mar 2011 19:05:31 +0100 Subject: [Python-checkins] cpython (3.2): Try to make test_import a bit more robust Message-ID: http://hg.python.org/cpython/rev/c527ce78ba0c changeset: 68812:c527ce78ba0c branch: 3.2 parent: 68810:693415328363 user: Antoine Pitrou date: Mon Mar 21 19:05:02 2011 +0100 summary: Try to make test_import a bit more robust files: Lib/test/test_import.py diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -30,6 +30,9 @@ class ImportTests(unittest.TestCase): + def setUp(self): + remove_files(TESTFN) + def tearDown(self): unload(TESTFN) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 19:05:32 2011 From: python-checkins at python.org (antoine.pitrou) Date: Mon, 21 Mar 2011 19:05:32 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Try to make test_import a bit more robust Message-ID: http://hg.python.org/cpython/rev/b1582927dc54 changeset: 68813:b1582927dc54 parent: 68811:d372fb6e0075 parent: 68812:c527ce78ba0c user: Antoine Pitrou date: Mon Mar 21 19:05:18 2011 +0100 summary: Try to make test_import a bit more robust files: Lib/test/test_import.py diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -30,6 +30,9 @@ class ImportTests(unittest.TestCase): + def setUp(self): + remove_files(TESTFN) + def tearDown(self): unload(TESTFN) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 19:56:12 2011 From: python-checkins at python.org (antoine.pitrou) Date: Mon, 21 Mar 2011 19:56:12 +0100 Subject: [Python-checkins] cpython (3.2): Always print out the traceback when a test "crashed" Message-ID: http://hg.python.org/cpython/rev/f51128a6dc24 changeset: 68814:f51128a6dc24 branch: 3.2 parent: 68812:c527ce78ba0c user: Antoine Pitrou date: Mon Mar 21 19:55:16 2011 +0100 summary: Always print out the traceback when a test "crashed" files: Lib/test/regrtest.py diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -995,12 +995,9 @@ sys.stderr.flush() return FAILED, test_time except: - type, value = sys.exc_info()[:2] - print("test", test, "crashed --", str(type) + ":", value, file=sys.stderr) + msg = traceback.format_exc() + print("test", test, "crashed --", msg, file=sys.stderr) sys.stderr.flush() - if verbose or debug: - traceback.print_exc(file=sys.stderr) - sys.stderr.flush() return FAILED, test_time else: if refleak: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 19:56:13 2011 From: python-checkins at python.org (antoine.pitrou) Date: Mon, 21 Mar 2011 19:56:13 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Always print out the traceback when a test "crashed" Message-ID: http://hg.python.org/cpython/rev/29ccd52f420a changeset: 68815:29ccd52f420a parent: 68813:b1582927dc54 parent: 68814:f51128a6dc24 user: Antoine Pitrou date: Mon Mar 21 19:55:58 2011 +0100 summary: Always print out the traceback when a test "crashed" files: Lib/test/regrtest.py diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -1000,12 +1000,9 @@ sys.stderr.flush() return FAILED, test_time except: - type, value = sys.exc_info()[:2] - print("test", test, "crashed --", str(type) + ":", value, file=sys.stderr) + msg = traceback.format_exc() + print("test", test, "crashed --", msg, file=sys.stderr) sys.stderr.flush() - if verbose or debug: - traceback.print_exc(file=sys.stderr) - sys.stderr.flush() return FAILED, test_time else: if refleak: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 20:15:19 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 21 Mar 2011 20:15:19 +0100 Subject: [Python-checkins] cpython: Make regrtest recognize test packages as well as test modules. Message-ID: http://hg.python.org/cpython/rev/374f662a8aef changeset: 68816:374f662a8aef user: R David Murray date: Mon Mar 21 15:14:34 2011 -0400 summary: Make regrtest recognize test packages as well as test modules. files: Lib/test/regrtest.py diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -732,9 +732,9 @@ tests = [] others = set(stdtests) | nottests for name in names: - modname, ext = os.path.splitext(name) - if modname[:5] == "test_" and ext == ".py" and modname not in others: - tests.append(modname) + mod, ext = os.path.splitext(name) + if mod[:5] == "test_" and ext in (".py", "") and mod not in others: + tests.append(mod) return stdtests + sorted(tests) def replace_stdout(): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 20:47:43 2011 From: python-checkins at python.org (brett.cannon) Date: Mon, 21 Mar 2011 20:47:43 +0100 Subject: [Python-checkins] devguide: Log Carl Friedrich Bolz's push privileges. Message-ID: http://hg.python.org/devguide/rev/c9082e2e7d7f changeset: 402:c9082e2e7d7f user: Brett Cannon date: Mon Mar 21 12:47:38 2011 -0700 summary: Log Carl Friedrich Bolz's push privileges. files: developers.rst diff --git a/developers.rst b/developers.rst --- a/developers.rst +++ b/developers.rst @@ -24,6 +24,9 @@ Permissions History ------------------- +- Carl Friedrich Bolz was given push privileges on Mar 21 2011 by BAC, for + stdlib compatibility work for PyPy. + - Alexis M?taireau, Elson Rodriguez, Kelsey Hightower, Michael Mulich and Walker Hale were given push privileges on Mar 16 2011 by GFB, for contributions to the packaging module. -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Mon Mar 21 21:01:34 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 21 Mar 2011 21:01:34 +0100 Subject: [Python-checkins] cpython: Prepare for move of email tests. Message-ID: http://hg.python.org/cpython/rev/7d5d859c959e changeset: 68817:7d5d859c959e user: R David Murray date: Mon Mar 21 16:01:23 2011 -0400 summary: Prepare for move of email tests. files: .hgeol diff --git a/.hgeol b/.hgeol --- a/.hgeol +++ b/.hgeol @@ -27,6 +27,7 @@ **.zip = BIN Lib/email/test/data/msg_26.txt = BIN +Lib/test/test_email/data/msg_26.txt = BIN Lib/test/sndhdrdata/sndhdr.* = BIN Lib/test/decimaltestdata/*.decTest = BIN -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 21:33:21 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 21 Mar 2011 21:33:21 +0100 Subject: [Python-checkins] cpython: Move email tests to Lib/test package and modernize test runner machinery Message-ID: http://hg.python.org/cpython/rev/3126d8433fd4 changeset: 68818:3126d8433fd4 user: R David Murray date: Mon Mar 21 15:46:55 2011 -0400 summary: Move email tests to Lib/test package and modernize test runner machinery files: Lib/email/test/data/msg_01.txt Lib/email/test/data/msg_02.txt Lib/email/test/data/msg_03.txt Lib/email/test/data/msg_04.txt Lib/email/test/data/msg_05.txt Lib/email/test/data/msg_06.txt Lib/email/test/data/msg_07.txt Lib/email/test/data/msg_08.txt Lib/email/test/data/msg_09.txt Lib/email/test/data/msg_10.txt Lib/email/test/data/msg_11.txt Lib/email/test/data/msg_12.txt Lib/email/test/data/msg_12a.txt Lib/email/test/data/msg_13.txt Lib/email/test/data/msg_14.txt Lib/email/test/data/msg_15.txt Lib/email/test/data/msg_16.txt Lib/email/test/data/msg_17.txt Lib/email/test/data/msg_18.txt Lib/email/test/data/msg_19.txt Lib/email/test/data/msg_20.txt Lib/email/test/data/msg_21.txt Lib/email/test/data/msg_22.txt Lib/email/test/data/msg_23.txt Lib/email/test/data/msg_24.txt Lib/email/test/data/msg_25.txt Lib/email/test/data/msg_26.txt Lib/email/test/data/msg_27.txt Lib/email/test/data/msg_28.txt Lib/email/test/data/msg_29.txt Lib/email/test/data/msg_30.txt Lib/email/test/data/msg_31.txt Lib/email/test/data/msg_32.txt Lib/email/test/data/msg_33.txt Lib/email/test/data/msg_34.txt Lib/email/test/data/msg_35.txt Lib/email/test/data/msg_36.txt Lib/email/test/data/msg_37.txt Lib/email/test/data/msg_38.txt Lib/email/test/data/msg_39.txt Lib/email/test/data/msg_40.txt Lib/email/test/data/msg_41.txt Lib/email/test/data/msg_42.txt Lib/email/test/data/msg_43.txt Lib/email/test/data/msg_44.txt Lib/email/test/data/msg_45.txt Lib/email/test/data/msg_46.txt Lib/email/test/test_email.py Lib/email/test/test_email_codecs.py Lib/email/test/test_email_torture.py Lib/test/test_email.py Lib/test/test_email/__init__.py Lib/test/test_email/__main__.py Lib/test/test_email/data/msg_01.txt Lib/test/test_email/data/msg_02.txt Lib/test/test_email/data/msg_03.txt Lib/test/test_email/data/msg_04.txt Lib/test/test_email/data/msg_05.txt Lib/test/test_email/data/msg_06.txt Lib/test/test_email/data/msg_07.txt Lib/test/test_email/data/msg_08.txt Lib/test/test_email/data/msg_09.txt Lib/test/test_email/data/msg_10.txt Lib/test/test_email/data/msg_11.txt Lib/test/test_email/data/msg_12.txt Lib/test/test_email/data/msg_12a.txt Lib/test/test_email/data/msg_13.txt Lib/test/test_email/data/msg_14.txt Lib/test/test_email/data/msg_15.txt Lib/test/test_email/data/msg_16.txt Lib/test/test_email/data/msg_17.txt Lib/test/test_email/data/msg_18.txt Lib/test/test_email/data/msg_19.txt Lib/test/test_email/data/msg_20.txt Lib/test/test_email/data/msg_21.txt Lib/test/test_email/data/msg_22.txt Lib/test/test_email/data/msg_23.txt Lib/test/test_email/data/msg_24.txt Lib/test/test_email/data/msg_25.txt Lib/test/test_email/data/msg_26.txt Lib/test/test_email/data/msg_27.txt Lib/test/test_email/data/msg_28.txt Lib/test/test_email/data/msg_29.txt Lib/test/test_email/data/msg_30.txt Lib/test/test_email/data/msg_31.txt Lib/test/test_email/data/msg_32.txt Lib/test/test_email/data/msg_33.txt Lib/test/test_email/data/msg_34.txt Lib/test/test_email/data/msg_35.txt Lib/test/test_email/data/msg_36.txt Lib/test/test_email/data/msg_37.txt Lib/test/test_email/data/msg_38.txt Lib/test/test_email/data/msg_39.txt Lib/test/test_email/data/msg_40.txt Lib/test/test_email/data/msg_41.txt Lib/test/test_email/data/msg_42.txt Lib/test/test_email/data/msg_43.txt Lib/test/test_email/data/msg_44.txt Lib/test/test_email/data/msg_45.txt Lib/test/test_email/data/msg_46.txt Lib/test/test_email/test_asian_codecs.py Lib/test/test_email/test_email.py Lib/test/test_email/torture_test.py Misc/NEWS diff --git a/Lib/email/test/data/msg_01.txt b/Lib/email/test/data/msg_01.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_01.txt +++ /dev/null @@ -1,19 +0,0 @@ -Return-Path: -Delivered-To: bbb at zzz.org -Received: by mail.zzz.org (Postfix, from userid 889) - id 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT) -MIME-Version: 1.0 -Content-Type: text/plain; charset=us-ascii -Content-Transfer-Encoding: 7bit -Message-ID: <15090.61304.110929.45684 at aaa.zzz.org> -From: bbb at ddd.com (John X. Doe) -To: bbb at zzz.org -Subject: This is a test message -Date: Fri, 4 May 2001 14:05:44 -0400 - - -Hi, - -Do you like this message? - --Me diff --git a/Lib/email/test/data/msg_02.txt b/Lib/email/test/data/msg_02.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_02.txt +++ /dev/null @@ -1,135 +0,0 @@ -MIME-version: 1.0 -From: ppp-request at zzz.org -Sender: ppp-admin at zzz.org -To: ppp at zzz.org -Subject: Ppp digest, Vol 1 #2 - 5 msgs -Date: Fri, 20 Apr 2001 20:18:00 -0400 (EDT) -X-Mailer: Mailman v2.0.4 -X-Mailman-Version: 2.0.4 -Content-Type: multipart/mixed; boundary="192.168.1.2.889.32614.987812255.500.21814" - ---192.168.1.2.889.32614.987812255.500.21814 -Content-type: text/plain; charset=us-ascii -Content-description: Masthead (Ppp digest, Vol 1 #2) - -Send Ppp mailing list submissions to - ppp at zzz.org - -To subscribe or unsubscribe via the World Wide Web, visit - http://www.zzz.org/mailman/listinfo/ppp -or, via email, send a message with subject or body 'help' to - ppp-request at zzz.org - -You can reach the person managing the list at - ppp-admin at zzz.org - -When replying, please edit your Subject line so it is more specific -than "Re: Contents of Ppp digest..." - - ---192.168.1.2.889.32614.987812255.500.21814 -Content-type: text/plain; charset=us-ascii -Content-description: Today's Topics (5 msgs) - -Today's Topics: - - 1. testing #1 (Barry A. Warsaw) - 2. testing #2 (Barry A. Warsaw) - 3. testing #3 (Barry A. Warsaw) - 4. testing #4 (Barry A. Warsaw) - 5. testing #5 (Barry A. Warsaw) - ---192.168.1.2.889.32614.987812255.500.21814 -Content-Type: multipart/digest; boundary="__--__--" - ---__--__-- - -Message: 1 -Content-Type: text/plain; charset=us-ascii -Content-Transfer-Encoding: 7bit -Date: Fri, 20 Apr 2001 20:16:13 -0400 -To: ppp at zzz.org -From: barry at digicool.com (Barry A. Warsaw) -Subject: [Ppp] testing #1 -Precedence: bulk - - -hello - - ---__--__-- - -Message: 2 -Date: Fri, 20 Apr 2001 20:16:21 -0400 -Content-Type: text/plain; charset=us-ascii -Content-Transfer-Encoding: 7bit -To: ppp at zzz.org -From: barry at digicool.com (Barry A. Warsaw) -Precedence: bulk - - -hello - - ---__--__-- - -Message: 3 -Date: Fri, 20 Apr 2001 20:16:25 -0400 -Content-Type: text/plain; charset=us-ascii -Content-Transfer-Encoding: 7bit -To: ppp at zzz.org -From: barry at digicool.com (Barry A. Warsaw) -Subject: [Ppp] testing #3 -Precedence: bulk - - -hello - - ---__--__-- - -Message: 4 -Date: Fri, 20 Apr 2001 20:16:28 -0400 -Content-Type: text/plain; charset=us-ascii -Content-Transfer-Encoding: 7bit -To: ppp at zzz.org -From: barry at digicool.com (Barry A. Warsaw) -Subject: [Ppp] testing #4 -Precedence: bulk - - -hello - - ---__--__-- - -Message: 5 -Date: Fri, 20 Apr 2001 20:16:32 -0400 -Content-Type: text/plain; charset=us-ascii -Content-Transfer-Encoding: 7bit -To: ppp at zzz.org -From: barry at digicool.com (Barry A. Warsaw) -Subject: [Ppp] testing #5 -Precedence: bulk - - -hello - - - - ---__--__---- ---192.168.1.2.889.32614.987812255.500.21814 -Content-type: text/plain; charset=us-ascii -Content-description: Digest Footer - -_______________________________________________ -Ppp mailing list -Ppp at zzz.org -http://www.zzz.org/mailman/listinfo/ppp - - ---192.168.1.2.889.32614.987812255.500.21814-- - -End of Ppp Digest - diff --git a/Lib/email/test/data/msg_03.txt b/Lib/email/test/data/msg_03.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_03.txt +++ /dev/null @@ -1,16 +0,0 @@ -Return-Path: -Delivered-To: bbb at zzz.org -Received: by mail.zzz.org (Postfix, from userid 889) - id 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT) -Message-ID: <15090.61304.110929.45684 at aaa.zzz.org> -From: bbb at ddd.com (John X. Doe) -To: bbb at zzz.org -Subject: This is a test message -Date: Fri, 4 May 2001 14:05:44 -0400 - - -Hi, - -Do you like this message? - --Me diff --git a/Lib/email/test/data/msg_04.txt b/Lib/email/test/data/msg_04.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_04.txt +++ /dev/null @@ -1,37 +0,0 @@ -Return-Path: -Delivered-To: barry at python.org -Received: by mail.python.org (Postfix, from userid 889) - id C2BF0D37C6; Tue, 11 Sep 2001 00:05:05 -0400 (EDT) -MIME-Version: 1.0 -Content-Type: multipart/mixed; boundary="h90VIIIKmx" -Content-Transfer-Encoding: 7bit -Message-ID: <15261.36209.358846.118674 at anthem.python.org> -From: barry at python.org (Barry A. Warsaw) -To: barry at python.org -Subject: a simple multipart -Date: Tue, 11 Sep 2001 00:05:05 -0400 -X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid -X-Attribution: BAW -X-Oblique-Strategy: Make a door into a window - - ---h90VIIIKmx -Content-Type: text/plain -Content-Disposition: inline; - filename="msg.txt" -Content-Transfer-Encoding: 7bit - -a simple kind of mirror -to reflect upon our own - ---h90VIIIKmx -Content-Type: text/plain -Content-Disposition: inline; - filename="msg.txt" -Content-Transfer-Encoding: 7bit - -a simple kind of mirror -to reflect upon our own - ---h90VIIIKmx-- - diff --git a/Lib/email/test/data/msg_05.txt b/Lib/email/test/data/msg_05.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_05.txt +++ /dev/null @@ -1,28 +0,0 @@ -From: foo -Subject: bar -To: baz -MIME-Version: 1.0 -Content-Type: multipart/report; report-type=delivery-status; - boundary="D1690A7AC1.996856090/mail.example.com" -Message-Id: <20010803162810.0CA8AA7ACC at mail.example.com> - -This is a MIME-encapsulated message. - ---D1690A7AC1.996856090/mail.example.com -Content-Type: text/plain - -Yadda yadda yadda - ---D1690A7AC1.996856090/mail.example.com - -Yadda yadda yadda - ---D1690A7AC1.996856090/mail.example.com -Content-Type: message/rfc822 - -From: nobody at python.org - -Yadda yadda yadda - ---D1690A7AC1.996856090/mail.example.com-- - diff --git a/Lib/email/test/data/msg_06.txt b/Lib/email/test/data/msg_06.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_06.txt +++ /dev/null @@ -1,33 +0,0 @@ -Return-Path: -Delivered-To: barry at python.org -MIME-Version: 1.0 -Content-Type: message/rfc822 -Content-Description: forwarded message -Content-Transfer-Encoding: 7bit -Message-ID: <15265.9482.641338.555352 at python.org> -From: barry at zope.com (Barry A. Warsaw) -Sender: barry at python.org -To: barry at python.org -Subject: forwarded message from Barry A. Warsaw -Date: Thu, 13 Sep 2001 17:28:42 -0400 -X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid -X-Attribution: BAW -X-Oblique-Strategy: Be dirty -X-Url: http://barry.wooz.org - -MIME-Version: 1.0 -Content-Type: text/plain; charset=us-ascii -Return-Path: -Delivered-To: barry at python.org -Message-ID: <15265.9468.713530.98441 at python.org> -From: barry at zope.com (Barry A. Warsaw) -Sender: barry at python.org -To: barry at python.org -Subject: testing -Date: Thu, 13 Sep 2001 17:28:28 -0400 -X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid -X-Attribution: BAW -X-Oblique-Strategy: Spectrum analysis -X-Url: http://barry.wooz.org - - diff --git a/Lib/email/test/data/msg_07.txt b/Lib/email/test/data/msg_07.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_07.txt +++ /dev/null @@ -1,83 +0,0 @@ -MIME-Version: 1.0 -From: Barry -To: Dingus Lovers -Subject: Here is your dingus fish -Date: Fri, 20 Apr 2001 19:35:02 -0400 -Content-Type: multipart/mixed; boundary="BOUNDARY" - ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" - -Hi there, - -This is the dingus fish. - ---BOUNDARY -Content-Type: image/gif; name="dingusfish.gif" -Content-Transfer-Encoding: base64 -content-disposition: attachment; filename="dingusfish.gif" - -R0lGODdhAAEAAfAAAP///wAAACwAAAAAAAEAAQAC/oSPqcvtD6OctNqLs968+w+G4kiW5omm6sq2 -7gvH8kzX9o3n+s73/g8MCofEovGITGICTKbyCV0FDNOo9SqpQqpOrJfXzTQj2vD3TGtqL+NtGQ2f -qTXmxzuOd7WXdcc9DyjU53ewFni4s0fGhdiYaEhGBelICTNoV1j5NUnFcrmUqemjNifJVWpaOqaI -oFq3SspZsSraE7sHq3jr1MZqWvi662vxV4tD+pvKW6aLDOCLyur8PDwbanyDeq0N3DctbQYeLDvR -RY6t95m6UB0d3mwIrV7e2VGNvjjffukeJp4w7F65KecGFsTHQGAygOrgrWs1jt28Rc88KESYcGLA -/obvTkH6p+CinWJiJmIMqXGQwH/y4qk0SYjgQTczT3ajKZGfuI0uJ4kkVI/DT5s3/ejkxI0aT4Y+ -YTYgWbImUaXk9nlLmnSh1qJiJFl0OpUqRK4oOy7NyRQtHWofhoYVxkwWXKUSn0YsS+fUV6lhqfYb -6ayd3Z5qQdG1B7bvQzaJjwUV2lixMUZ7JVsOlfjWVr/3NB/uFvnySBN6Dcb6rGwaRM3wsormw5cC -M9NxWy/bWdufudCvy8bOAjXjVVwta/uO21sE5RHBCzNFXtgq9ORtH4eYjVP4Yryo026nvkFmCeyA -B29efV6ravCMK5JwWd5897Qrx7ll38o6iHDZ/rXPR//feevhF4l7wjUGX3xq1eeRfM4RSJGBIV1D -z1gKPkfWag3mVBVvva1RlX5bAJTPR/2YqNtw/FkIYYEi/pIZiAdpcxpoHtmnYYoZtvhUftzdx5ZX -JSKDW405zkGcZzzGZ6KEv4FI224oDmijlEf+xp6MJK5ojY/ASeVUR+wsKRuJ+XFZ5o7ZeEime8t1 -ouUsU6YjF5ZtUihhkGfCdFQLWQFJ3UXxmElfhQnR+eCdcDbkFZp6vTRmj56ApCihn5QGpaToNZmR -n3NVSpZcQpZ2KEONusaiCsKAug0wkQbJSFO+PTSjneGxOuFjPlUk3ovWvdIerjUg9ZGIOtGq/qeX -eCYrrCX+1UPsgTKGGRSbzd5q156d/gpfbJxe66eD5iQKrXj7RGgruGxs62qebBHUKS32CKluCiqZ -qh+pmehmEb71noAUoe5e9Zm17S7773V10pjrtG4CmuurCV/n6zLK5turWNhqOvFXbjhZrMD0YhKe -wR0zOyuvsh6MWrGoIuzvyWu5y1WIFAqmJselypxXh6dKLNOKEB98L88bS2rkNqqlKzCNJp9c0G0j -Gzh0iRrCbHSXmPR643QS+4rWhgFmnSbSuXCjS0xAOWkU2UdLqyuUNfHSFdUouy3bm5i5GnDM3tG8 -doJ4r5tqu3pPbRSVfvs8uJzeNXhp3n4j/tZ42SwH7eaWUUOjc3qFV9453UHTXZfcLH+OeNs5g36x -lBnHvTm7EbMbLeuaLncao8vWCXimfo1o+843Ak6y4ChNeGntvAYvfLK4ezmoyNIbNCLTCXO9ZV3A -E8/s88RczPzDwI4Ob7XZyl7+9Miban29h+tJZPrE21wgvBphDfrrfPdCTPKJD/y98L1rZwHcV6Jq -Zab0metpuNIX/qAFPoz171WUaUb4HAhBSzHuHfjzHb3kha/2Cctis/ORArVHNYfFyYRH2pYIRzic -isVOfPWD1b6mRTqpCRBozzof6UZVvFXRxWIr3GGrEviGYgyPMfahheiSaLs/9QeFu7oZ/ndSY8DD -ya9x+uPed+7mxN2IzIISBOMLFYWVqC3Pew1T2nFuuCiwZS5/v6II10i4t1OJcUH2U9zxKodHsGGv -Oa+zkvNUYUOa/TCCRutF9MzDwdlUMJADTCGSbDQ5OV4PTamDoPEi6Ecc/RF5RWwkcdSXvSOaDWSn -I9LlvubFTQpuc6JKXLcKeb+xdbKRBnwREemXyjg6ME65aJiOuBgrktzykfPLJBKR9ClMavJ62/Ff -BlNIyod9yX9wcSXexnXFpvkrbXk64xsx5Db7wXKP5fSgsvwIMM/9631VLBfkmtbHRXpqmtei52hG -pUwSlo+BASQoeILDOBgREECxBBh5/iYmNsQ9dIv5+OI++QkqdsJPc3uykz5fkM+OraeekcQF7X4n -B5S67za5U967PmooGQhUXfF7afXyCD7ONdRe17QogYjVx38uLwtrS6nhTnm15LQUnu9E2uK6CNI/ -1HOABj0ESwOjut4FEpFQpdNAm4K2LHnDWHNcmKB2ioKBogysVZtMO2nSxUdZ8Yk2kJc7URioLVI0 -YgmtIwZj4LoeKemgnOnbUdGnzZ4Oa6scqiolBGqS6RgWNLu0RMhcaE6rhhU4hiuqFXPAG8fGwTPW -FKeLMtdVmXLSs5YJGF/YeVm7rREMlY3UYE+yCxbaMXX8y15m5zVHq6GOKDMynzII/jdUHdyVqIy0 -ifX2+r/EgtZcvRzSb72gU9ui87M2VecjKildW/aFqaYhKoryUjfB/g4qtyVuc60xFDGmCxwjW+qu -zjuwl2GkOWn66+3QiiEctvd04OVvcCVzjgT7lrkvjVGKKHmmlDUKowSeikb5kK/mJReuWOxONx+s -ULsl+Lqb0CVn0SrVyJ6wt4t6yTeSCafhPhAf0OXn6L60UMxiLolFAtmN35S2Ob1lZpQ1r/n0Qb5D -oQ1zJiRVDgF8N3Q8TYfbi3DyWCy3lT1nxyBs6FT3S2GOzWRlxwKvlRP0RPJA9SjxEy0UoEnkA+M4 -cnzLMJrBGWLFEaaUb5lvpqbq/loOaU5+DFuHPxo82/OZuM8FXG3oVNZhtWpMpb/0Xu5m/LfLhHZQ -7yuVI0MqZ7NE43imC8jH3IwGZlbPm0xkJYs7+2U48hXTsFSMqgGDvai0kLxyynKNT/waj+q1c1tz -GjOpPBgdCSq3UKZxCSsqFIY+O6JbAWGWcV1pwqLyj5sGqCF1xb1F3varUWqrJv6cN3PrUXzijtfZ -FshpBL3Xwr4GIPvU2N8EjrJgS1zl21rbXQMXeXc5jjFyrhpCzijSv/RQtyPSzHCFMhlME95fHglt -pRsX+dfSQjUeHAlpWzJ5iOo79Ldnaxai6bXTcGO3fp07ri7HLEmXXPlYi8bv/qVxvNcdra6m7Rlb -6JBTb5fd66VhFRjGArh2n7R1rDW4P5NOT9K0I183T2scYkeZ3q/VFyLb09U9ajzXBS8Kgkhc4mBS -kYY9cy3Vy9lUnuNJH8HGIclUilwnBtjUOH0gteGOZ4c/XNrhXLSYDyxfnD8z1pDy7rYRvDolhnbe -UMzxCZUs40s6s7UIvBnLgc0+vKuOkIXeOrDymlp+Zxra4MZLBbVrqD/jTJ597pDmnw5c4+DbyB88 -9Cg9DodYcSuMZT/114pptqc/EuTjRPvH/z5slzI3tluOEBBLqOXLOX+0I5929tO97wkvl/atCz+y -xJrdwteW2FNW/NSmBP+f/maYtVs/bYyBC7Ox3jsYZHL05CIrBa/nS+b3bHfiYm4Ueil1YZZSgAUI -fFZ1dxUmeA2oQRQ3RuGXNGLFV9/XbGFGPV6kfzk1TBBCd+izc7q1H+OHMJwmaBX2IQNYVAKHYepV -SSGCe6CnbYHHETKGNe43EDvFgZr0gB/nVHPHZ80VV1ojOiI3XDvYIkl4ayo4bxQIgrFXWTvBI0nH -VElWMuw2aLUWCRHHf8ymVCHjFlJnOSojfevCYyyyZDH0IcvHhrsnQ5O1OsWzONuVVKIxSxiFZ/tR -fKDAf6xFTnw4O9Qig2VCfW2hJQrmMOuHW0W3dLQmCMO2ccdUd/xyfflH/olTiHZVdGwb8nIwRzSE -J15jFlOJuBZBZ4CiyHyd2IFylFlB+HgHhYabhWOGwYO1ZH/Og1dtQlFMk352CGRSIFTapnWQEUtN -l4zv8S0aaCFDyGCBqDUxZYpxGHX01y/JuH1xhn7TOCnNCI4eKDs5WGX4R425F4vF1o3BJ4vO0otq -I3rimI7jJY1jISqnBxknCIvruF83mF5wN4X7qGLIhR8A2Vg0yFERSIXn9Vv3GHy3Vj/WIkKddlYi -yIMv2I/VMjTLpW7pt05SWIZR0RPyxpB4SIUM9lBPGBl0GC7oSEEwRYLe4pJpZY2P0zbI1n+Oc44w -qY3PUnmF0ixjVpDD/mJ9wpOBGTVgXlaCaZiPcIWK5NiKBIiPdGaQ0TWGvAiG7nMchdZb7Vgf8zNi -MuMyzRdy/lePe9iC4TRx7WhhOQI/QiSVNAmAa2lT/piFbuh7ofJoYSZzrSZ1bvmWw3eN2nKUPVky -uPN5/VRfohRd0VYZoqhKIlU6TXYhJxmPUIloAwc1bPmHEpaZYZORHNlXUJM07hATwHR8MJYqkwWR -WaIezFhxSFlc8/Fq82hEnpeRozg3ULhhr9lAGtVEkCg5ZNRuuVleBPaZadhG0ZgkyPmDOTOKzViM -YgOcpukKqQcbjAWS0IleQ2ROjdh6A+md1qWdBRSX7iSYgFRTtRmBpJioieXJiHfJiMGIR9fJOn8I -MSfXYhspn4ooSa2mSAj4n+8Bmg03fBJZoPOJgsVZRxu1oOMRPXYYjdqjihFaEoZpXBREanuJoRI6 -cibFinq4ngUKh/wQd/H5ofYCZ0HJXR62opZFaAT0iFIZo4DIiUojkjeqKiuoZirKo5Y1a7AWckGa -BkuYoD5lpDK6eUs6CkDqpETwl1EqpfhJpVeKpVl6EgUAADs= - ---BOUNDARY-- diff --git a/Lib/email/test/data/msg_08.txt b/Lib/email/test/data/msg_08.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_08.txt +++ /dev/null @@ -1,24 +0,0 @@ -MIME-Version: 1.0 -From: Barry Warsaw -To: Dingus Lovers -Subject: Lyrics -Date: Fri, 20 Apr 2001 19:35:02 -0400 -Content-Type: multipart/mixed; boundary="BOUNDARY" - ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" - - ---BOUNDARY -Content-Type: text/html; charset="iso-8859-1" - - ---BOUNDARY -Content-Type: text/plain; charset="iso-8859-2" - - ---BOUNDARY -Content-Type: text/plain; charset="koi8-r" - - ---BOUNDARY-- diff --git a/Lib/email/test/data/msg_09.txt b/Lib/email/test/data/msg_09.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_09.txt +++ /dev/null @@ -1,24 +0,0 @@ -MIME-Version: 1.0 -From: Barry Warsaw -To: Dingus Lovers -Subject: Lyrics -Date: Fri, 20 Apr 2001 19:35:02 -0400 -Content-Type: multipart/mixed; boundary="BOUNDARY" - ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" - - ---BOUNDARY -Content-Type: text/html; charset="iso-8859-1" - - ---BOUNDARY -Content-Type: text/plain - - ---BOUNDARY -Content-Type: text/plain; charset="koi8-r" - - ---BOUNDARY-- diff --git a/Lib/email/test/data/msg_10.txt b/Lib/email/test/data/msg_10.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_10.txt +++ /dev/null @@ -1,39 +0,0 @@ -MIME-Version: 1.0 -From: Barry Warsaw -To: Dingus Lovers -Subject: Lyrics -Date: Fri, 20 Apr 2001 19:35:02 -0400 -Content-Type: multipart/mixed; boundary="BOUNDARY" - ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" -Content-Transfer-Encoding: 7bit - -This is a 7bit encoded message. - ---BOUNDARY -Content-Type: text/html; charset="iso-8859-1" -Content-Transfer-Encoding: Quoted-Printable - -=A1This is a Quoted Printable encoded message! - ---BOUNDARY -Content-Type: text/plain; charset="iso-8859-1" -Content-Transfer-Encoding: Base64 - -VGhpcyBpcyBhIEJhc2U2NCBlbmNvZGVkIG1lc3NhZ2Uu - - ---BOUNDARY -Content-Type: text/plain; charset="iso-8859-1" -Content-Transfer-Encoding: Base64 - -VGhpcyBpcyBhIEJhc2U2NCBlbmNvZGVkIG1lc3NhZ2UuCg== - - ---BOUNDARY -Content-Type: text/plain; charset="iso-8859-1" - -This has no Content-Transfer-Encoding: header. - ---BOUNDARY-- diff --git a/Lib/email/test/data/msg_11.txt b/Lib/email/test/data/msg_11.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_11.txt +++ /dev/null @@ -1,7 +0,0 @@ -Content-Type: message/rfc822 -MIME-Version: 1.0 -Subject: The enclosing message - -Subject: An enclosed message - -Here is the body of the message. diff --git a/Lib/email/test/data/msg_12.txt b/Lib/email/test/data/msg_12.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_12.txt +++ /dev/null @@ -1,36 +0,0 @@ -MIME-Version: 1.0 -From: Barry Warsaw -To: Dingus Lovers -Subject: Lyrics -Date: Fri, 20 Apr 2001 19:35:02 -0400 -Content-Type: multipart/mixed; boundary="BOUNDARY" - ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" - - ---BOUNDARY -Content-Type: text/html; charset="iso-8859-1" - - ---BOUNDARY -Content-Type: multipart/mixed; boundary="ANOTHER" - ---ANOTHER -Content-Type: text/plain; charset="iso-8859-2" - - ---ANOTHER -Content-Type: text/plain; charset="iso-8859-3" - ---ANOTHER-- - ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" - - ---BOUNDARY -Content-Type: text/plain; charset="koi8-r" - - ---BOUNDARY-- diff --git a/Lib/email/test/data/msg_12a.txt b/Lib/email/test/data/msg_12a.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_12a.txt +++ /dev/null @@ -1,38 +0,0 @@ -MIME-Version: 1.0 -From: Barry Warsaw -To: Dingus Lovers -Subject: Lyrics -Date: Fri, 20 Apr 2001 19:35:02 -0400 -Content-Type: multipart/mixed; boundary="BOUNDARY" - ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" - - ---BOUNDARY -Content-Type: text/html; charset="iso-8859-1" - - ---BOUNDARY -Content-Type: multipart/mixed; boundary="ANOTHER" - ---ANOTHER -Content-Type: text/plain; charset="iso-8859-2" - - ---ANOTHER -Content-Type: text/plain; charset="iso-8859-3" - - ---ANOTHER-- - - ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" - - ---BOUNDARY -Content-Type: text/plain; charset="koi8-r" - - ---BOUNDARY-- diff --git a/Lib/email/test/data/msg_13.txt b/Lib/email/test/data/msg_13.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_13.txt +++ /dev/null @@ -1,94 +0,0 @@ -MIME-Version: 1.0 -From: Barry -To: Dingus Lovers -Subject: Here is your dingus fish -Date: Fri, 20 Apr 2001 19:35:02 -0400 -Content-Type: multipart/mixed; boundary="OUTER" - ---OUTER -Content-Type: text/plain; charset="us-ascii" - -A text/plain part - ---OUTER -Content-Type: multipart/mixed; boundary=BOUNDARY - - ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" - -Hi there, - -This is the dingus fish. - ---BOUNDARY -Content-Type: image/gif; name="dingusfish.gif" -Content-Transfer-Encoding: base64 -content-disposition: attachment; filename="dingusfish.gif" - -R0lGODdhAAEAAfAAAP///wAAACwAAAAAAAEAAQAC/oSPqcvtD6OctNqLs968+w+G4kiW5omm6sq2 -7gvH8kzX9o3n+s73/g8MCofEovGITGICTKbyCV0FDNOo9SqpQqpOrJfXzTQj2vD3TGtqL+NtGQ2f -qTXmxzuOd7WXdcc9DyjU53ewFni4s0fGhdiYaEhGBelICTNoV1j5NUnFcrmUqemjNifJVWpaOqaI -oFq3SspZsSraE7sHq3jr1MZqWvi662vxV4tD+pvKW6aLDOCLyur8PDwbanyDeq0N3DctbQYeLDvR -RY6t95m6UB0d3mwIrV7e2VGNvjjffukeJp4w7F65KecGFsTHQGAygOrgrWs1jt28Rc88KESYcGLA -/obvTkH6p+CinWJiJmIMqXGQwH/y4qk0SYjgQTczT3ajKZGfuI0uJ4kkVI/DT5s3/ejkxI0aT4Y+ -YTYgWbImUaXk9nlLmnSh1qJiJFl0OpUqRK4oOy7NyRQtHWofhoYVxkwWXKUSn0YsS+fUV6lhqfYb -6ayd3Z5qQdG1B7bvQzaJjwUV2lixMUZ7JVsOlfjWVr/3NB/uFvnySBN6Dcb6rGwaRM3wsormw5cC -M9NxWy/bWdufudCvy8bOAjXjVVwta/uO21sE5RHBCzNFXtgq9ORtH4eYjVP4Yryo026nvkFmCeyA -B29efV6ravCMK5JwWd5897Qrx7ll38o6iHDZ/rXPR//feevhF4l7wjUGX3xq1eeRfM4RSJGBIV1D -z1gKPkfWag3mVBVvva1RlX5bAJTPR/2YqNtw/FkIYYEi/pIZiAdpcxpoHtmnYYoZtvhUftzdx5ZX -JSKDW405zkGcZzzGZ6KEv4FI224oDmijlEf+xp6MJK5ojY/ASeVUR+wsKRuJ+XFZ5o7ZeEime8t1 -ouUsU6YjF5ZtUihhkGfCdFQLWQFJ3UXxmElfhQnR+eCdcDbkFZp6vTRmj56ApCihn5QGpaToNZmR -n3NVSpZcQpZ2KEONusaiCsKAug0wkQbJSFO+PTSjneGxOuFjPlUk3ovWvdIerjUg9ZGIOtGq/qeX -eCYrrCX+1UPsgTKGGRSbzd5q156d/gpfbJxe66eD5iQKrXj7RGgruGxs62qebBHUKS32CKluCiqZ -qh+pmehmEb71noAUoe5e9Zm17S7773V10pjrtG4CmuurCV/n6zLK5turWNhqOvFXbjhZrMD0YhKe -wR0zOyuvsh6MWrGoIuzvyWu5y1WIFAqmJselypxXh6dKLNOKEB98L88bS2rkNqqlKzCNJp9c0G0j -Gzh0iRrCbHSXmPR643QS+4rWhgFmnSbSuXCjS0xAOWkU2UdLqyuUNfHSFdUouy3bm5i5GnDM3tG8 -doJ4r5tqu3pPbRSVfvs8uJzeNXhp3n4j/tZ42SwH7eaWUUOjc3qFV9453UHTXZfcLH+OeNs5g36x -lBnHvTm7EbMbLeuaLncao8vWCXimfo1o+843Ak6y4ChNeGntvAYvfLK4ezmoyNIbNCLTCXO9ZV3A -E8/s88RczPzDwI4Ob7XZyl7+9Miban29h+tJZPrE21wgvBphDfrrfPdCTPKJD/y98L1rZwHcV6Jq -Zab0metpuNIX/qAFPoz171WUaUb4HAhBSzHuHfjzHb3kha/2Cctis/ORArVHNYfFyYRH2pYIRzic -isVOfPWD1b6mRTqpCRBozzof6UZVvFXRxWIr3GGrEviGYgyPMfahheiSaLs/9QeFu7oZ/ndSY8DD -ya9x+uPed+7mxN2IzIISBOMLFYWVqC3Pew1T2nFuuCiwZS5/v6II10i4t1OJcUH2U9zxKodHsGGv -Oa+zkvNUYUOa/TCCRutF9MzDwdlUMJADTCGSbDQ5OV4PTamDoPEi6Ecc/RF5RWwkcdSXvSOaDWSn -I9LlvubFTQpuc6JKXLcKeb+xdbKRBnwREemXyjg6ME65aJiOuBgrktzykfPLJBKR9ClMavJ62/Ff -BlNIyod9yX9wcSXexnXFpvkrbXk64xsx5Db7wXKP5fSgsvwIMM/9631VLBfkmtbHRXpqmtei52hG -pUwSlo+BASQoeILDOBgREECxBBh5/iYmNsQ9dIv5+OI++QkqdsJPc3uykz5fkM+OraeekcQF7X4n -B5S67za5U967PmooGQhUXfF7afXyCD7ONdRe17QogYjVx38uLwtrS6nhTnm15LQUnu9E2uK6CNI/ -1HOABj0ESwOjut4FEpFQpdNAm4K2LHnDWHNcmKB2ioKBogysVZtMO2nSxUdZ8Yk2kJc7URioLVI0 -YgmtIwZj4LoeKemgnOnbUdGnzZ4Oa6scqiolBGqS6RgWNLu0RMhcaE6rhhU4hiuqFXPAG8fGwTPW -FKeLMtdVmXLSs5YJGF/YeVm7rREMlY3UYE+yCxbaMXX8y15m5zVHq6GOKDMynzII/jdUHdyVqIy0 -ifX2+r/EgtZcvRzSb72gU9ui87M2VecjKildW/aFqaYhKoryUjfB/g4qtyVuc60xFDGmCxwjW+qu -zjuwl2GkOWn66+3QiiEctvd04OVvcCVzjgT7lrkvjVGKKHmmlDUKowSeikb5kK/mJReuWOxONx+s -ULsl+Lqb0CVn0SrVyJ6wt4t6yTeSCafhPhAf0OXn6L60UMxiLolFAtmN35S2Ob1lZpQ1r/n0Qb5D -oQ1zJiRVDgF8N3Q8TYfbi3DyWCy3lT1nxyBs6FT3S2GOzWRlxwKvlRP0RPJA9SjxEy0UoEnkA+M4 -cnzLMJrBGWLFEaaUb5lvpqbq/loOaU5+DFuHPxo82/OZuM8FXG3oVNZhtWpMpb/0Xu5m/LfLhHZQ -7yuVI0MqZ7NE43imC8jH3IwGZlbPm0xkJYs7+2U48hXTsFSMqgGDvai0kLxyynKNT/waj+q1c1tz -GjOpPBgdCSq3UKZxCSsqFIY+O6JbAWGWcV1pwqLyj5sGqCF1xb1F3varUWqrJv6cN3PrUXzijtfZ -FshpBL3Xwr4GIPvU2N8EjrJgS1zl21rbXQMXeXc5jjFyrhpCzijSv/RQtyPSzHCFMhlME95fHglt -pRsX+dfSQjUeHAlpWzJ5iOo79Ldnaxai6bXTcGO3fp07ri7HLEmXXPlYi8bv/qVxvNcdra6m7Rlb -6JBTb5fd66VhFRjGArh2n7R1rDW4P5NOT9K0I183T2scYkeZ3q/VFyLb09U9ajzXBS8Kgkhc4mBS -kYY9cy3Vy9lUnuNJH8HGIclUilwnBtjUOH0gteGOZ4c/XNrhXLSYDyxfnD8z1pDy7rYRvDolhnbe -UMzxCZUs40s6s7UIvBnLgc0+vKuOkIXeOrDymlp+Zxra4MZLBbVrqD/jTJ597pDmnw5c4+DbyB88 -9Cg9DodYcSuMZT/114pptqc/EuTjRPvH/z5slzI3tluOEBBLqOXLOX+0I5929tO97wkvl/atCz+y -xJrdwteW2FNW/NSmBP+f/maYtVs/bYyBC7Ox3jsYZHL05CIrBa/nS+b3bHfiYm4Ueil1YZZSgAUI -fFZ1dxUmeA2oQRQ3RuGXNGLFV9/XbGFGPV6kfzk1TBBCd+izc7q1H+OHMJwmaBX2IQNYVAKHYepV -SSGCe6CnbYHHETKGNe43EDvFgZr0gB/nVHPHZ80VV1ojOiI3XDvYIkl4ayo4bxQIgrFXWTvBI0nH -VElWMuw2aLUWCRHHf8ymVCHjFlJnOSojfevCYyyyZDH0IcvHhrsnQ5O1OsWzONuVVKIxSxiFZ/tR -fKDAf6xFTnw4O9Qig2VCfW2hJQrmMOuHW0W3dLQmCMO2ccdUd/xyfflH/olTiHZVdGwb8nIwRzSE -J15jFlOJuBZBZ4CiyHyd2IFylFlB+HgHhYabhWOGwYO1ZH/Og1dtQlFMk352CGRSIFTapnWQEUtN -l4zv8S0aaCFDyGCBqDUxZYpxGHX01y/JuH1xhn7TOCnNCI4eKDs5WGX4R425F4vF1o3BJ4vO0otq -I3rimI7jJY1jISqnBxknCIvruF83mF5wN4X7qGLIhR8A2Vg0yFERSIXn9Vv3GHy3Vj/WIkKddlYi -yIMv2I/VMjTLpW7pt05SWIZR0RPyxpB4SIUM9lBPGBl0GC7oSEEwRYLe4pJpZY2P0zbI1n+Oc44w -qY3PUnmF0ixjVpDD/mJ9wpOBGTVgXlaCaZiPcIWK5NiKBIiPdGaQ0TWGvAiG7nMchdZb7Vgf8zNi -MuMyzRdy/lePe9iC4TRx7WhhOQI/QiSVNAmAa2lT/piFbuh7ofJoYSZzrSZ1bvmWw3eN2nKUPVky -uPN5/VRfohRd0VYZoqhKIlU6TXYhJxmPUIloAwc1bPmHEpaZYZORHNlXUJM07hATwHR8MJYqkwWR -WaIezFhxSFlc8/Fq82hEnpeRozg3ULhhr9lAGtVEkCg5ZNRuuVleBPaZadhG0ZgkyPmDOTOKzViM -YgOcpukKqQcbjAWS0IleQ2ROjdh6A+md1qWdBRSX7iSYgFRTtRmBpJioieXJiHfJiMGIR9fJOn8I -MSfXYhspn4ooSa2mSAj4n+8Bmg03fBJZoPOJgsVZRxu1oOMRPXYYjdqjihFaEoZpXBREanuJoRI6 -cibFinq4ngUKh/wQd/H5ofYCZ0HJXR62opZFaAT0iFIZo4DIiUojkjeqKiuoZirKo5Y1a7AWckGa -BkuYoD5lpDK6eUs6CkDqpETwl1EqpfhJpVeKpVl6EgUAADs= - ---BOUNDARY-- - ---OUTER-- diff --git a/Lib/email/test/data/msg_14.txt b/Lib/email/test/data/msg_14.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_14.txt +++ /dev/null @@ -1,23 +0,0 @@ -Return-Path: -Delivered-To: bbb at zzz.org -Received: by mail.zzz.org (Postfix, from userid 889) - id 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT) -MIME-Version: 1.0 -Content-Type: text; charset=us-ascii -Content-Transfer-Encoding: 7bit -Message-ID: <15090.61304.110929.45684 at aaa.zzz.org> -From: bbb at ddd.com (John X. Doe) -To: bbb at zzz.org -Subject: This is a test message -Date: Fri, 4 May 2001 14:05:44 -0400 - - -Hi, - -I'm sorry but I'm using a drainbread ISP, which although big and -wealthy can't seem to generate standard compliant email. :( - -This message has a Content-Type: header with no subtype. I hope you -can still read it. - --Me diff --git a/Lib/email/test/data/msg_15.txt b/Lib/email/test/data/msg_15.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_15.txt +++ /dev/null @@ -1,52 +0,0 @@ -Return-Path: -Received: from fepD.post.tele.dk (195.41.46.149) by mail.groupcare.dk (LSMTP for Windows NT v1.1b) with SMTP id <0.0014F8A2 at mail.groupcare.dk>; Mon, 30 Apr 2001 12:17:50 +0200 -User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2106 -Subject: XX -From: xx at xx.dk -To: XX -Message-ID: -Mime-version: 1.0 -Content-type: multipart/mixed; - boundary="MS_Mac_OE_3071477847_720252_MIME_Part" - -> Denne meddelelse er i MIME-format. Da dit postl - ---MS_Mac_OE_3071477847_720252_MIME_Part -Content-type: multipart/alternative; - boundary="MS_Mac_OE_3071477847_720252_MIME_Part" - - ---MS_Mac_OE_3071477847_720252_MIME_Part -Content-type: text/plain; charset="ISO-8859-1" -Content-transfer-encoding: quoted-printable - -Some removed test. - ---MS_Mac_OE_3071477847_720252_MIME_Part -Content-type: text/html; charset="ISO-8859-1" -Content-transfer-encoding: quoted-printable - - - -Some removed HTML - - -Some removed text. - - - - ---MS_Mac_OE_3071477847_720252_MIME_Part-- - - ---MS_Mac_OE_3071477847_720252_MIME_Part -Content-type: image/gif; name="xx.gif"; - x-mac-creator="6F676C65"; - x-mac-type="47494666" -Content-disposition: attachment -Content-transfer-encoding: base64 - -Some removed base64 encoded chars. - ---MS_Mac_OE_3071477847_720252_MIME_Part-- - diff --git a/Lib/email/test/data/msg_16.txt b/Lib/email/test/data/msg_16.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_16.txt +++ /dev/null @@ -1,123 +0,0 @@ -Return-Path: <> -Delivered-To: scr-admin at socal-raves.org -Received: from cougar.noc.ucla.edu (cougar.noc.ucla.edu [169.232.10.18]) - by babylon.socal-raves.org (Postfix) with ESMTP id CCC2C51B84 - for ; Sun, 23 Sep 2001 20:13:54 -0700 (PDT) -Received: from sims-ms-daemon by cougar.noc.ucla.edu - (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) - id <0GK500B01D0B8Y at cougar.noc.ucla.edu> for scr-admin at socal-raves.org; Sun, - 23 Sep 2001 20:14:35 -0700 (PDT) -Received: from cougar.noc.ucla.edu - (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) - id <0GK500B01D0B8X at cougar.noc.ucla.edu>; Sun, 23 Sep 2001 20:14:35 -0700 (PDT) -Date: Sun, 23 Sep 2001 20:14:35 -0700 (PDT) -From: Internet Mail Delivery -Subject: Delivery Notification: Delivery has failed -To: scr-admin at socal-raves.org -Message-id: <0GK500B04D0B8X at cougar.noc.ucla.edu> -MIME-version: 1.0 -Sender: scr-owner at socal-raves.org -Errors-To: scr-owner at socal-raves.org -X-BeenThere: scr at socal-raves.org -X-Mailman-Version: 2.1a3 -Precedence: bulk -List-Help: -List-Post: -List-Subscribe: , - -List-Id: SoCal-Raves -List-Unsubscribe: , - -List-Archive: -Content-Type: multipart/report; boundary="Boundary_(ID_PGS2F2a+z+/jL7hupKgRhA)" - - ---Boundary_(ID_PGS2F2a+z+/jL7hupKgRhA) -Content-type: text/plain; charset=ISO-8859-1 - -This report relates to a message you sent with the following header fields: - - Message-id: <002001c144a6$8752e060$56104586 at oxy.edu> - Date: Sun, 23 Sep 2001 20:10:55 -0700 - From: "Ian T. Henry" - To: SoCal Raves - Subject: [scr] yeah for Ians!! - -Your message cannot be delivered to the following recipients: - - Recipient address: jangel1 at cougar.noc.ucla.edu - Reason: recipient reached disk quota - - ---Boundary_(ID_PGS2F2a+z+/jL7hupKgRhA) -Content-type: message/DELIVERY-STATUS - -Original-envelope-id: 0GK500B4HD0888 at cougar.noc.ucla.edu -Reporting-MTA: dns; cougar.noc.ucla.edu - -Action: failed -Status: 5.0.0 (recipient reached disk quota) -Original-recipient: rfc822;jangel1 at cougar.noc.ucla.edu -Final-recipient: rfc822;jangel1 at cougar.noc.ucla.edu - ---Boundary_(ID_PGS2F2a+z+/jL7hupKgRhA) -Content-type: MESSAGE/RFC822 - -Return-path: scr-admin at socal-raves.org -Received: from sims-ms-daemon by cougar.noc.ucla.edu - (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) - id <0GK500B01D0B8X at cougar.noc.ucla.edu>; Sun, 23 Sep 2001 20:14:35 -0700 (PDT) -Received: from panther.noc.ucla.edu by cougar.noc.ucla.edu - (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) - with ESMTP id <0GK500B4GD0888 at cougar.noc.ucla.edu> for jangel1 at sims-ms-daemon; - Sun, 23 Sep 2001 20:14:33 -0700 (PDT) -Received: from babylon.socal-raves.org - (ip-209-85-222-117.dreamhost.com [209.85.222.117]) - by panther.noc.ucla.edu (8.9.1a/8.9.1) with ESMTP id UAA09793 for - ; Sun, 23 Sep 2001 20:14:32 -0700 (PDT) -Received: from babylon (localhost [127.0.0.1]) by babylon.socal-raves.org - (Postfix) with ESMTP id D3B2951B70; Sun, 23 Sep 2001 20:13:47 -0700 (PDT) -Received: by babylon.socal-raves.org (Postfix, from userid 60001) - id A611F51B82; Sun, 23 Sep 2001 20:13:46 -0700 (PDT) -Received: from tiger.cc.oxy.edu (tiger.cc.oxy.edu [134.69.3.112]) - by babylon.socal-raves.org (Postfix) with ESMTP id ADA7351B70 for - ; Sun, 23 Sep 2001 20:13:44 -0700 (PDT) -Received: from ent (n16h86.dhcp.oxy.edu [134.69.16.86]) - by tiger.cc.oxy.edu (8.8.8/8.8.8) with SMTP id UAA08100 for - ; Sun, 23 Sep 2001 20:14:24 -0700 (PDT) -Date: Sun, 23 Sep 2001 20:10:55 -0700 -From: "Ian T. Henry" -Subject: [scr] yeah for Ians!! -Sender: scr-admin at socal-raves.org -To: SoCal Raves -Errors-to: scr-admin at socal-raves.org -Message-id: <002001c144a6$8752e060$56104586 at oxy.edu> -MIME-version: 1.0 -X-Mailer: Microsoft Outlook Express 5.50.4522.1200 -Content-type: text/plain; charset=us-ascii -Precedence: bulk -Delivered-to: scr-post at babylon.socal-raves.org -Delivered-to: scr at socal-raves.org -X-Converted-To-Plain-Text: from multipart/alternative by demime 0.98e -X-Converted-To-Plain-Text: Alternative section used was text/plain -X-BeenThere: scr at socal-raves.org -X-Mailman-Version: 2.1a3 -List-Help: -List-Post: -List-Subscribe: , - -List-Id: SoCal-Raves -List-Unsubscribe: , - -List-Archive: - -I always love to find more Ian's that are over 3 years old!! - -Ian -_______________________________________________ -For event info, list questions, or to unsubscribe, see http://www.socal-raves.org/ - - - ---Boundary_(ID_PGS2F2a+z+/jL7hupKgRhA)-- - diff --git a/Lib/email/test/data/msg_17.txt b/Lib/email/test/data/msg_17.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_17.txt +++ /dev/null @@ -1,12 +0,0 @@ -MIME-Version: 1.0 -From: Barry -To: Dingus Lovers -Subject: Here is your dingus fish -Date: Fri, 20 Apr 2001 19:35:02 -0400 -Content-Type: multipart/mixed; boundary="BOUNDARY" - -Hi there, - -This is the dingus fish. - -[Non-text (image/gif) part of message omitted, filename dingusfish.gif] diff --git a/Lib/email/test/data/msg_18.txt b/Lib/email/test/data/msg_18.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_18.txt +++ /dev/null @@ -1,6 +0,0 @@ -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit -X-Foobar-Spoink-Defrobnit: wasnipoop; giraffes="very-long-necked-animals"; - spooge="yummy"; hippos="gargantuan"; marshmallows="gooey" - diff --git a/Lib/email/test/data/msg_19.txt b/Lib/email/test/data/msg_19.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_19.txt +++ /dev/null @@ -1,43 +0,0 @@ -Send Ppp mailing list submissions to - ppp at zzz.org - -To subscribe or unsubscribe via the World Wide Web, visit - http://www.zzz.org/mailman/listinfo/ppp -or, via email, send a message with subject or body 'help' to - ppp-request at zzz.org - -You can reach the person managing the list at - ppp-admin at zzz.org - -When replying, please edit your Subject line so it is more specific -than "Re: Contents of Ppp digest..." - -Today's Topics: - - 1. testing #1 (Barry A. Warsaw) - 2. testing #2 (Barry A. Warsaw) - 3. testing #3 (Barry A. Warsaw) - 4. testing #4 (Barry A. Warsaw) - 5. testing #5 (Barry A. Warsaw) - -hello - - -hello - - -hello - - -hello - - -hello - - - -_______________________________________________ -Ppp mailing list -Ppp at zzz.org -http://www.zzz.org/mailman/listinfo/ppp - diff --git a/Lib/email/test/data/msg_20.txt b/Lib/email/test/data/msg_20.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_20.txt +++ /dev/null @@ -1,22 +0,0 @@ -Return-Path: -Delivered-To: bbb at zzz.org -Received: by mail.zzz.org (Postfix, from userid 889) - id 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT) -MIME-Version: 1.0 -Content-Type: text/plain; charset=us-ascii -Content-Transfer-Encoding: 7bit -Message-ID: <15090.61304.110929.45684 at aaa.zzz.org> -From: bbb at ddd.com (John X. Doe) -To: bbb at zzz.org -Cc: ccc at zzz.org -CC: ddd at zzz.org -cc: eee at zzz.org -Subject: This is a test message -Date: Fri, 4 May 2001 14:05:44 -0400 - - -Hi, - -Do you like this message? - --Me diff --git a/Lib/email/test/data/msg_21.txt b/Lib/email/test/data/msg_21.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_21.txt +++ /dev/null @@ -1,20 +0,0 @@ -From: aperson at dom.ain -To: bperson at dom.ain -Subject: Test -Content-Type: multipart/mixed; boundary="BOUNDARY" - -MIME message ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit - -One ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit - -Two ---BOUNDARY-- -End of MIME message diff --git a/Lib/email/test/data/msg_22.txt b/Lib/email/test/data/msg_22.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_22.txt +++ /dev/null @@ -1,46 +0,0 @@ -Mime-Version: 1.0 -Message-Id: -Date: Tue, 16 Oct 2001 13:59:25 +0300 -To: a at example.com -From: b at example.com -Content-Type: multipart/mixed; boundary="============_-1208892523==_============" - ---============_-1208892523==_============ -Content-Type: text/plain; charset="us-ascii" ; format="flowed" - -Text text text. ---============_-1208892523==_============ -Content-Id: -Content-Type: image/jpeg; name="wibble.JPG" - ; x-mac-type="4A504547" - ; x-mac-creator="474B4F4E" -Content-Disposition: attachment; filename="wibble.JPG" -Content-Transfer-Encoding: base64 - -/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB -AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAALCAXABIEBAREA -g6bCjjw/pIZSjO6FWFpldjySOmCNrO7DBZibUXhTwtCixw+GtAijVdqxxaPp0aKvmGXa -qrbBQvms0mAMeYS/3iTV1dG0hHaRNK01XblnWxtVdjkHLMIgTyqnk9VB7CrP2KzIINpa -4O7I+zxYO9WV8jZg71Zlb+8rMDkEirAVQFAUAKAFAAAUAYAUDgADgY6DjpRtXj5RxjHA -4wQRj0wQCMdCAewpaKKK/9k= ---============_-1208892523==_============ -Content-Id: -Content-Type: image/jpeg; name="wibble2.JPG" - ; x-mac-type="4A504547" - ; x-mac-creator="474B4F4E" -Content-Disposition: attachment; filename="wibble2.JPG" -Content-Transfer-Encoding: base64 - -/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB -AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAALCAXABJ0BAREA -/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA -W6NFJJBEkU10kKGTcWMDwxuU+0JHvk8qAtOpNwqSR0n8c3BlDyXHlqsUltHEiTvdXLxR -7vMiGDNJAJWkAMk8ZkCFp5G2oo5W++INrbQtNfTQxJAuXlupz9oS4d5Y1W+E2XlWZJJE -Y7LWYQxTLE1zuMbfBPxw8X2fibVdIbSbI6nLZxX635t9TjtYreWR7WGKJTLJFFKSlozO -0ShxIXM43uC3/9k= ---============_-1208892523==_============ -Content-Type: text/plain; charset="us-ascii" ; format="flowed" - -Text text text. ---============_-1208892523==_============-- - diff --git a/Lib/email/test/data/msg_23.txt b/Lib/email/test/data/msg_23.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_23.txt +++ /dev/null @@ -1,8 +0,0 @@ -From: aperson at dom.ain -Content-Type: multipart/mixed; boundary="BOUNDARY" - ---BOUNDARY -Content-Type: text/plain - -A message part ---BOUNDARY-- diff --git a/Lib/email/test/data/msg_24.txt b/Lib/email/test/data/msg_24.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_24.txt +++ /dev/null @@ -1,10 +0,0 @@ -Content-Type: multipart/mixed; boundary="BOUNDARY" -MIME-Version: 1.0 -Subject: A subject -To: aperson at dom.ain -From: bperson at dom.ain - ---BOUNDARY - - ---BOUNDARY-- diff --git a/Lib/email/test/data/msg_25.txt b/Lib/email/test/data/msg_25.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_25.txt +++ /dev/null @@ -1,117 +0,0 @@ -From MAILER-DAEMON Fri Apr 06 16:46:09 2001 -Received: from [204.245.199.98] (helo=zinfandel.lacita.com) - by www.linux.org.uk with esmtp (Exim 3.13 #1) - id 14lYR6-0008Iv-00 - for linuxuser-admin at www.linux.org.uk; Fri, 06 Apr 2001 16:46:09 +0100 -Received: from localhost (localhost) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with internal id JAB03225; Fri, 6 Apr 2001 09:23:06 -0800 (GMT-0800) -Date: Fri, 6 Apr 2001 09:23:06 -0800 (GMT-0800) -From: Mail Delivery Subsystem -Subject: Returned mail: Too many hops 19 (17 max): from via [199.164.235.226], to -Message-Id: <200104061723.JAB03225 at zinfandel.lacita.com> -To: -To: postmaster at zinfandel.lacita.com -MIME-Version: 1.0 -Content-Type: multipart/report; report-type=delivery-status; - bo -Auto-Submitted: auto-generated (failure) - -This is a MIME-encapsulated message - ---JAB03225.986577786/zinfandel.lacita.com - -The original message was received at Fri, 6 Apr 2001 09:23:03 -0800 (GMT-0800) -from [199.164.235.226] - - ----- The following addresses have delivery notifications ----- - (unrecoverable error) - - ----- Transcript of session follows ----- -554 Too many hops 19 (17 max): from via [199.164.235.226], to - ---JAB03225.986577786/zinfandel.lacita.com -Content-Type: message/delivery-status - -Reporting-MTA: dns; zinfandel.lacita.com -Received-From-MTA: dns; [199.164.235.226] -Arrival-Date: Fri, 6 Apr 2001 09:23:03 -0800 (GMT-0800) - -Final-Recipient: rfc822; scoffman at wellpartner.com -Action: failed -Status: 5.4.6 -Last-Attempt-Date: Fri, 6 Apr 2001 09:23:06 -0800 (GMT-0800) - ---JAB03225.986577786/zinfandel.lacita.com -Content-Type: text/rfc822-headers - -Return-Path: linuxuser-admin at www.linux.org.uk -Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03225 for ; Fri, 6 Apr 2001 09:23:03 -0800 (GMT-0800) -Received: from zinfandel.lacita.com ([204.245.199.98]) - by - fo -Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03221 for ; Fri, 6 Apr 2001 09:22:18 -0800 (GMT-0800) -Received: from zinfandel.lacita.com ([204.245.199.98]) - by - fo -Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03217 for ; Fri, 6 Apr 2001 09:21:37 -0800 (GMT-0800) -Received: from zinfandel.lacita.com ([204.245.199.98]) - by - fo -Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03213 for ; Fri, 6 Apr 2001 09:20:56 -0800 (GMT-0800) -Received: from zinfandel.lacita.com ([204.245.199.98]) - by - fo -Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03209 for ; Fri, 6 Apr 2001 09:20:15 -0800 (GMT-0800) -Received: from zinfandel.lacita.com ([204.245.199.98]) - by - fo -Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03205 for ; Fri, 6 Apr 2001 09:19:33 -0800 (GMT-0800) -Received: from zinfandel.lacita.com ([204.245.199.98]) - by - fo -Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03201 for ; Fri, 6 Apr 2001 09:18:52 -0800 (GMT-0800) -Received: from zinfandel.lacita.com ([204.245.199.98]) - by - fo -Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03197 for ; Fri, 6 Apr 2001 09:17:54 -0800 (GMT-0800) -Received: from www.linux.org.uk (parcelfarce.linux.theplanet.co.uk [195.92.249.252]) - by - fo -Received: from localhost.localdomain - ([ - by - id -Received: from [212.1.130.11] (helo=s1.uklinux.net ident=root) - by - id - fo -Received: from server (ppp-2-22.cvx4.telinco.net [212.1.149.22]) - by - fo -From: Daniel James -Organization: LinuxUser -To: linuxuser at www.linux.org.uk -X-Mailer: KMail [version 1.1.99] -Content-Type: text/plain; - c -MIME-Version: 1.0 -Message-Id: <01040616033903.00962 at server> -Content-Transfer-Encoding: 8bit -Subject: [LinuxUser] bulletin no. 45 -Sender: linuxuser-admin at www.linux.org.uk -Errors-To: linuxuser-admin at www.linux.org.uk -X-BeenThere: linuxuser at www.linux.org.uk -X-Mailman-Version: 2.0.3 -Precedence: bulk -List-Help: -List-Post: -List-Subscribe: , - -List-Unsubscribe: , - -Date: Fri, 6 Apr 2001 16:03:39 +0100 - ---JAB03225.986577786/zinfandel.lacita.com-- - - diff --git a/Lib/email/test/data/msg_26.txt b/Lib/email/test/data/msg_26.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_26.txt +++ /dev/null @@ -1,46 +0,0 @@ -Received: from xcar [192.168.0.2] by jeeves.wooster.local - (SMTPD32-7.07 EVAL) id AFF92F0214; Sun, 12 May 2002 08:55:37 +0100 -Date: Sun, 12 May 2002 08:56:15 +0100 -From: Father Time -To: timbo at jeeves.wooster.local -Subject: IMAP file test -Message-ID: <6df65d354b.father.time at rpc.wooster.local> -X-Organization: Home -User-Agent: Messenger-Pro/2.50a (MsgServe/1.50) (RISC-OS/4.02) POPstar/2.03 -MIME-Version: 1.0 -Content-Type: multipart/mixed; boundary="1618492860--2051301190--113853680" -Status: R -X-UIDL: 319998302 - -This message is in MIME format which your mailer apparently does not support. -You either require a newer version of your software which supports MIME, or -a separate MIME decoding utility. Alternatively, ask the sender of this -message to resend it in a different format. - ---1618492860--2051301190--113853680 -Content-Type: text/plain; charset=us-ascii - -Simple email with attachment. - - ---1618492860--2051301190--113853680 -Content-Type: application/riscos; name="clock.bmp,69c"; type=BMP; - load=&fff69c4b; exec=&355dd4d1; access=&03 -Content-Disposition: attachment; filename="clock.bmp" -Content-Transfer-Encoding: base64 - -Qk12AgAAAAAAAHYAAAAoAAAAIAAAACAAAAABAAQAAAAAAAAAAADXDQAA1w0AAAAAAAAA -AAAAAAAAAAAAiAAAiAAAAIiIAIgAAACIAIgAiIgAALu7uwCIiIgAERHdACLuIgAz//8A -zAAAAN0R3QDu7iIA////AAAAAAAAAAAAAAAAAAAAAAAAAAi3AAAAAAAAADeAAAAAAAAA -C3ADMzMzMANwAAAAAAAAAAAHMAAAAANwAAAAAAAAAACAMAd3zPfwAwgAAAAAAAAIAwd/ -f8x/f3AwgAAAAAAAgDB0x/f3//zPAwgAAAAAAAcHfM9////8z/AwAAAAAAiwd/f3//// -////A4AAAAAAcEx/f///////zAMAAAAAiwfM9////3///8zwOAAAAAcHf3////B///// -8DAAAAALB/f3///wd3d3//AwAAAABwTPf//wCQAAD/zAMAAAAAsEx/f///B////8wDAA -AAAHB39////wf/////AwAAAACwf39///8H/////wMAAAAIcHfM9///B////M8DgAAAAA -sHTH///wf///xAMAAAAACHB3f3//8H////cDgAAAAAALB3zH//D//M9wMAAAAAAAgLB0 -z39///xHAwgAAAAAAAgLB3d3RHd3cDCAAAAAAAAAgLAHd0R3cAMIAAAAAAAAgAgLcAAA -AAMwgAgAAAAACDAAAAu7t7cwAAgDgAAAAABzcIAAAAAAAAgDMwAAAAAAN7uwgAAAAAgH -MzMAAAAACH97tzAAAAALu3c3gAAAAAAL+7tzDABAu7f7cAAAAAAACA+3MA7EQAv/sIAA -AAAAAAAIAAAAAAAAAIAAAAAA - ---1618492860--2051301190--113853680-- diff --git a/Lib/email/test/data/msg_27.txt b/Lib/email/test/data/msg_27.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_27.txt +++ /dev/null @@ -1,15 +0,0 @@ -Return-Path: -Received: by mail.dom.ain (Postfix, from userid 889) - id B9D0AD35DB; Tue, 4 Jun 2002 21:46:59 -0400 (EDT) -Message-ID: <15613.28051.707126.569693 at dom.ain> -Date: Tue, 4 Jun 2002 21:46:59 -0400 -MIME-Version: 1.0 -Content-Type: text/plain; charset=us-ascii -Content-Transfer-Encoding: 7bit -Subject: bug demonstration - 12345678911234567892123456789312345678941234567895123456789612345678971234567898112345678911234567892123456789112345678911234567892123456789 - more text -From: aperson at dom.ain (Anne P. Erson) -To: bperson at dom.ain (Barney P. Erson) - -test diff --git a/Lib/email/test/data/msg_28.txt b/Lib/email/test/data/msg_28.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_28.txt +++ /dev/null @@ -1,25 +0,0 @@ -From: aperson at dom.ain -MIME-Version: 1.0 -Content-Type: multipart/digest; boundary=BOUNDARY - ---BOUNDARY -Content-Type: message/rfc822 - -Content-Type: text/plain; charset=us-ascii -To: aa at bb.org -From: cc at dd.org -Subject: ee - -message 1 - ---BOUNDARY -Content-Type: message/rfc822 - -Content-Type: text/plain; charset=us-ascii -To: aa at bb.org -From: cc at dd.org -Subject: ee - -message 2 - ---BOUNDARY-- diff --git a/Lib/email/test/data/msg_29.txt b/Lib/email/test/data/msg_29.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_29.txt +++ /dev/null @@ -1,22 +0,0 @@ -Return-Path: -Delivered-To: bbb at zzz.org -Received: by mail.zzz.org (Postfix, from userid 889) - id 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT) -MIME-Version: 1.0 -Content-Type: text/plain; charset=us-ascii; - title*0*="us-ascii'en'This%20is%20even%20more%20"; - title*1*="%2A%2A%2Afun%2A%2A%2A%20"; - title*2="isn't it!" -Content-Transfer-Encoding: 7bit -Message-ID: <15090.61304.110929.45684 at aaa.zzz.org> -From: bbb at ddd.com (John X. Doe) -To: bbb at zzz.org -Subject: This is a test message -Date: Fri, 4 May 2001 14:05:44 -0400 - - -Hi, - -Do you like this message? - --Me diff --git a/Lib/email/test/data/msg_30.txt b/Lib/email/test/data/msg_30.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_30.txt +++ /dev/null @@ -1,23 +0,0 @@ -From: aperson at dom.ain -MIME-Version: 1.0 -Content-Type: multipart/digest; boundary=BOUNDARY - ---BOUNDARY - -Content-Type: text/plain; charset=us-ascii -To: aa at bb.org -From: cc at dd.org -Subject: ee - -message 1 - ---BOUNDARY - -Content-Type: text/plain; charset=us-ascii -To: aa at bb.org -From: cc at dd.org -Subject: ee - -message 2 - ---BOUNDARY-- diff --git a/Lib/email/test/data/msg_31.txt b/Lib/email/test/data/msg_31.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_31.txt +++ /dev/null @@ -1,15 +0,0 @@ -From: aperson at dom.ain -MIME-Version: 1.0 -Content-Type: multipart/mixed; boundary=BOUNDARY_ - ---BOUNDARY -Content-Type: text/plain - -message 1 - ---BOUNDARY -Content-Type: text/plain - -message 2 - ---BOUNDARY-- diff --git a/Lib/email/test/data/msg_32.txt b/Lib/email/test/data/msg_32.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_32.txt +++ /dev/null @@ -1,14 +0,0 @@ -Delivered-To: freebsd-isp at freebsd.org -Date: Tue, 26 Sep 2000 12:23:03 -0500 -From: Anne Person -To: Barney Dude -Subject: Re: Limiting Perl CPU Utilization... -Mime-Version: 1.0 -Content-Type: text/plain; charset*=ansi-x3.4-1968''us-ascii -Content-Disposition: inline -User-Agent: Mutt/1.3.8i -Sender: owner-freebsd-isp at FreeBSD.ORG -Precedence: bulk -X-Loop: FreeBSD.org - -Some message. diff --git a/Lib/email/test/data/msg_33.txt b/Lib/email/test/data/msg_33.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_33.txt +++ /dev/null @@ -1,29 +0,0 @@ -Delivered-To: freebsd-isp at freebsd.org -Date: Wed, 27 Sep 2000 11:11:09 -0500 -From: Anne Person -To: Barney Dude -Subject: Re: Limiting Perl CPU Utilization... -Mime-Version: 1.0 -Content-Type: multipart/signed; micalg*=ansi-x3.4-1968''pgp-md5; - protocol*=ansi-x3.4-1968''application%2Fpgp-signature; - boundary*="ansi-x3.4-1968''EeQfGwPcQSOJBaQU" -Content-Disposition: inline -Sender: owner-freebsd-isp at FreeBSD.ORG -Precedence: bulk -X-Loop: FreeBSD.org - - ---EeQfGwPcQSOJBaQU -Content-Type: text/plain; charset*=ansi-x3.4-1968''us-ascii -Content-Disposition: inline -Content-Transfer-Encoding: quoted-printable - -part 1 - ---EeQfGwPcQSOJBaQU -Content-Type: text/plain -Content-Disposition: inline - -part 2 - ---EeQfGwPcQSOJBaQU-- diff --git a/Lib/email/test/data/msg_34.txt b/Lib/email/test/data/msg_34.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_34.txt +++ /dev/null @@ -1,19 +0,0 @@ -From: aperson at dom.ain -To: bperson at dom.ain -Content-Type: multipart/digest; boundary=XYZ - ---XYZ -Content-Type: text/plain - - -This is a text plain part that is counter to recommended practice in -RFC 2046, $5.1.5, but is not illegal - ---XYZ - -From: cperson at dom.ain -To: dperson at dom.ain - -A submessage - ---XYZ-- diff --git a/Lib/email/test/data/msg_35.txt b/Lib/email/test/data/msg_35.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_35.txt +++ /dev/null @@ -1,4 +0,0 @@ -From: aperson at dom.ain -To: bperson at dom.ain -Subject: here's something interesting -counter to RFC 2822, there's no separating newline here diff --git a/Lib/email/test/data/msg_36.txt b/Lib/email/test/data/msg_36.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_36.txt +++ /dev/null @@ -1,40 +0,0 @@ -Mime-Version: 1.0 -Content-Type: Multipart/Mixed; Boundary="NextPart" -To: IETF-Announce:; -From: Internet-Drafts at ietf.org -Subject: I-D ACTION:draft-ietf-mboned-mix-00.txt -Date: Tue, 22 Dec 1998 16:55:06 -0500 - ---NextPart - -Blah blah blah - ---NextPart -Content-Type: Multipart/Alternative; Boundary="OtherAccess" - ---OtherAccess -Content-Type: Message/External-body; - access-type="mail-server"; - server="mailserv at ietf.org" - -Content-Type: text/plain -Content-ID: <19981222151406.I-D at ietf.org> - -ENCODING mime -FILE /internet-drafts/draft-ietf-mboned-mix-00.txt - ---OtherAccess -Content-Type: Message/External-body; - name="draft-ietf-mboned-mix-00.txt"; - site="ftp.ietf.org"; - access-type="anon-ftp"; - directory="internet-drafts" - -Content-Type: text/plain -Content-ID: <19981222151406.I-D at ietf.org> - - ---OtherAccess-- - ---NextPart-- - diff --git a/Lib/email/test/data/msg_37.txt b/Lib/email/test/data/msg_37.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_37.txt +++ /dev/null @@ -1,22 +0,0 @@ -Content-Type: multipart/mixed; boundary=ABCDE - ---ABCDE -Content-Type: text/x-one - -Blah - ---ABCDE ---ABCDE -Content-Type: text/x-two - -Blah - ---ABCDE ---ABCDE ---ABCDE ---ABCDE -Content-Type: text/x-two - -Blah - ---ABCDE-- diff --git a/Lib/email/test/data/msg_38.txt b/Lib/email/test/data/msg_38.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_38.txt +++ /dev/null @@ -1,101 +0,0 @@ -MIME-Version: 1.0 -Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0" - -------- =_aaaaaaaaaa0 -Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa1" -Content-ID: <20592.1022586929.1 at example.com> - -------- =_aaaaaaaaaa1 -Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa2" -Content-ID: <20592.1022586929.2 at example.com> - -------- =_aaaaaaaaaa2 -Content-Type: text/plain -Content-ID: <20592.1022586929.3 at example.com> -Content-Description: very tricky -Content-Transfer-Encoding: 7bit - - -Unlike the test test_nested-multiples-with-internal-boundary, this -piece of text not only contains the outer boundary tags -------- =_aaaaaaaaaa1 -and -------- =_aaaaaaaaaa0 -but puts them at the start of a line! And, to be even nastier, it -even includes a couple of end tags, such as this one: - -------- =_aaaaaaaaaa1-- - -and this one, which is from a multipart we haven't even seen yet! - -------- =_aaaaaaaaaa4-- - -This will, I'm sure, cause much breakage of MIME parsers. But, as -far as I can tell, it's perfectly legal. I have not yet ever seen -a case of this in the wild, but I've seen *similar* things. - - -------- =_aaaaaaaaaa2 -Content-Type: application/octet-stream -Content-ID: <20592.1022586929.4 at example.com> -Content-Description: patch2 -Content-Transfer-Encoding: base64 - -XXX - -------- =_aaaaaaaaaa2-- - -------- =_aaaaaaaaaa1 -Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa3" -Content-ID: <20592.1022586929.6 at example.com> - -------- =_aaaaaaaaaa3 -Content-Type: application/octet-stream -Content-ID: <20592.1022586929.7 at example.com> -Content-Description: patch3 -Content-Transfer-Encoding: base64 - -XXX - -------- =_aaaaaaaaaa3 -Content-Type: application/octet-stream -Content-ID: <20592.1022586929.8 at example.com> -Content-Description: patch4 -Content-Transfer-Encoding: base64 - -XXX - -------- =_aaaaaaaaaa3-- - -------- =_aaaaaaaaaa1 -Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa4" -Content-ID: <20592.1022586929.10 at example.com> - -------- =_aaaaaaaaaa4 -Content-Type: application/octet-stream -Content-ID: <20592.1022586929.11 at example.com> -Content-Description: patch5 -Content-Transfer-Encoding: base64 - -XXX - -------- =_aaaaaaaaaa4 -Content-Type: application/octet-stream -Content-ID: <20592.1022586929.12 at example.com> -Content-Description: patch6 -Content-Transfer-Encoding: base64 - -XXX - -------- =_aaaaaaaaaa4-- - -------- =_aaaaaaaaaa1-- - -------- =_aaaaaaaaaa0 -Content-Type: text/plain; charset="us-ascii" -Content-ID: <20592.1022586929.15 at example.com> - --- -It's never too late to have a happy childhood. - -------- =_aaaaaaaaaa0-- diff --git a/Lib/email/test/data/msg_39.txt b/Lib/email/test/data/msg_39.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_39.txt +++ /dev/null @@ -1,83 +0,0 @@ -MIME-Version: 1.0 -Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0" - -------- =_aaaaaaaaaa0 -Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa1" -Content-ID: <20592.1022586929.1 at example.com> - -------- =_aaaaaaaaaa1 -Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa1" -Content-ID: <20592.1022586929.2 at example.com> - -------- =_aaaaaaaaaa1 -Content-Type: application/octet-stream -Content-ID: <20592.1022586929.3 at example.com> -Content-Description: patch1 -Content-Transfer-Encoding: base64 - -XXX - -------- =_aaaaaaaaaa1 -Content-Type: application/octet-stream -Content-ID: <20592.1022586929.4 at example.com> -Content-Description: patch2 -Content-Transfer-Encoding: base64 - -XXX - -------- =_aaaaaaaaaa1-- - -------- =_aaaaaaaaaa1 -Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa1" -Content-ID: <20592.1022586929.6 at example.com> - -------- =_aaaaaaaaaa1 -Content-Type: application/octet-stream -Content-ID: <20592.1022586929.7 at example.com> -Content-Description: patch3 -Content-Transfer-Encoding: base64 - -XXX - -------- =_aaaaaaaaaa1 -Content-Type: application/octet-stream -Content-ID: <20592.1022586929.8 at example.com> -Content-Description: patch4 -Content-Transfer-Encoding: base64 - -XXX - -------- =_aaaaaaaaaa1-- - -------- =_aaaaaaaaaa1 -Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa1" -Content-ID: <20592.1022586929.10 at example.com> - -------- =_aaaaaaaaaa1 -Content-Type: application/octet-stream -Content-ID: <20592.1022586929.11 at example.com> -Content-Description: patch5 -Content-Transfer-Encoding: base64 - -XXX - -------- =_aaaaaaaaaa1 -Content-Type: application/octet-stream -Content-ID: <20592.1022586929.12 at example.com> -Content-Description: patch6 -Content-Transfer-Encoding: base64 - -XXX - -------- =_aaaaaaaaaa1-- - -------- =_aaaaaaaaaa1-- - -------- =_aaaaaaaaaa0 -Content-Type: text/plain; charset="us-ascii" -Content-ID: <20592.1022586929.15 at example.com> - --- -It's never too late to have a happy childhood. - -------- =_aaaaaaaaaa0-- diff --git a/Lib/email/test/data/msg_40.txt b/Lib/email/test/data/msg_40.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_40.txt +++ /dev/null @@ -1,10 +0,0 @@ -MIME-Version: 1.0 -Content-Type: text/html; boundary="--961284236552522269" - -----961284236552522269 -Content-Type: text/html; -Content-Transfer-Encoding: 7Bit - - - -----961284236552522269-- diff --git a/Lib/email/test/data/msg_41.txt b/Lib/email/test/data/msg_41.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_41.txt +++ /dev/null @@ -1,8 +0,0 @@ -From: "Allison Dunlap" -To: yyy at example.com -Subject: 64423 -Date: Sun, 11 Jul 2004 16:09:27 -0300 -MIME-Version: 1.0 -Content-Type: multipart/alternative; - -Blah blah blah diff --git a/Lib/email/test/data/msg_42.txt b/Lib/email/test/data/msg_42.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_42.txt +++ /dev/null @@ -1,20 +0,0 @@ -Content-Type: multipart/mixed; boundary="AAA" -From: Mail Delivery Subsystem -To: yyy at example.com - -This is a MIME-encapsulated message - ---AAA - -Stuff - ---AAA -Content-Type: message/rfc822 - -From: webmaster at python.org -To: zzz at example.com -Content-Type: multipart/mixed; boundary="BBB" - ---BBB-- - ---AAA-- diff --git a/Lib/email/test/data/msg_43.txt b/Lib/email/test/data/msg_43.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_43.txt +++ /dev/null @@ -1,217 +0,0 @@ -From SRS0=aO/p=ON=bag.python.org=None at bounce2.pobox.com Fri Nov 26 21:40:36 2004 -X-VM-v5-Data: ([nil nil nil nil nil nil nil nil nil] - [nil nil nil nil nil nil nil "MAILER DAEMON <>" "MAILER DAEMON <>" nil nil "Banned file: auto__mail.python.bat in mail from you" "^From:" nil nil nil nil "Banned file: auto__mail.python.bat in mail from you" nil nil nil nil nil nil nil] - nil) -MIME-Version: 1.0 -Message-Id: -Content-Type: multipart/report; report-type=delivery-status; - charset=utf-8; - boundary="----------=_1101526904-1956-5" -X-Virus-Scanned: by XS4ALL Virus Scanner -X-UIDL: 4\G!!! -To: -Subject: Banned file: auto__mail.python.bat in mail from you -Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -This is a multi-part message in MIME format... - -------------=_1101526904-1956-5 -Content-Type: text/plain; charset="utf-8" -Content-Disposition: inline -Content-Transfer-Encoding: 7bit - -BANNED FILENAME ALERT - -Your message to: xxxxxxx at dot.ca.gov, xxxxxxxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxx at dot.ca.gov, xxxxxx at dot.ca.gov, xxxxxxxxxxxxxxxx at dot.ca.gov, xxxxxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxxxxxxxx at dot.ca.gov, xxxxxxxxxxxx at dot.ca.gov, xxxxxxx at dot.ca.gov, xxxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxx at dot.ca.gov, xxx at dot.ca.gov, xxxxxxx at dot.ca.gov, xxxxxxx at dot.ca.gov, xxxxxxxxxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxxx at dot.ca.gov, xxx at dot.ca.gov, xxxxxxxx at dot.ca.gov, xxxxxxxxxxxxx at dot.ca.gov, xxxxxxxxxxxxx at dot.ca.gov, xxxxxxxxxxx at dot.ca.gov, xxxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxxxxxxxx at dot.ca.gov, xxxxxxx at dot.ca.gov, xxxxxxxxxxxxxxx at dot.ca.gov, xxxxxxxxxxxxx at dot.ca.gov, xxxx at dot.ca.gov, xxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxxxxxxxxxxxxxx at dot.ca.gov -was blocked by our Spam Firewall. The email you sent with the following subject has NOT BEEN DELIVERED: - -Subject: Delivery_failure_notice - -An attachment in that mail was of a file type that the Spam Firewall is set to block. - - - -------------=_1101526904-1956-5 -Content-Type: message/delivery-status -Content-Disposition: inline -Content-Transfer-Encoding: 7bit -Content-Description: Delivery error report - -Reporting-MTA: dns; sacspam01.dot.ca.gov -Received-From-MTA: smtp; sacspam01.dot.ca.gov ([127.0.0.1]) -Arrival-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxxxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxxxxxxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxxxxxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -Final-Recipient: rfc822; xxxxxxx at dot.ca.gov -Action: failed -Status: 5.7.1 -Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat -Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) - -------------=_1101526904-1956-5 -Content-Type: text/rfc822-headers -Content-Disposition: inline -Content-Transfer-Encoding: 7bit -Content-Description: Undelivered-message headers - -Received: from kgsav.org (ppp-70-242-162-63.dsl.spfdmo.swbell.net [70.242.162.63]) - by sacspam01.dot.ca.gov (Spam Firewall) with SMTP - id A232AD03DE3A; Fri, 26 Nov 2004 19:41:35 -0800 (PST) -From: webmaster at python.org -To: xxxxx at dot.ca.gov -Date: Sat, 27 Nov 2004 03:35:30 UTC -Subject: Delivery_failure_notice -Importance: Normal -X-Priority: 3 (Normal) -X-MSMail-Priority: Normal -Message-ID: -MIME-Version: 1.0 -Content-Type: multipart/mixed; boundary="====67bd2b7a5.f99f7" -Content-Transfer-Encoding: 7bit - -------------=_1101526904-1956-5-- - diff --git a/Lib/email/test/data/msg_44.txt b/Lib/email/test/data/msg_44.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_44.txt +++ /dev/null @@ -1,33 +0,0 @@ -Return-Path: -Delivered-To: barry at python.org -Received: by mail.python.org (Postfix, from userid 889) - id C2BF0D37C6; Tue, 11 Sep 2001 00:05:05 -0400 (EDT) -MIME-Version: 1.0 -Content-Type: multipart/mixed; boundary="h90VIIIKmx" -Content-Transfer-Encoding: 7bit -Message-ID: <15261.36209.358846.118674 at anthem.python.org> -From: barry at python.org (Barry A. Warsaw) -To: barry at python.org -Subject: a simple multipart -Date: Tue, 11 Sep 2001 00:05:05 -0400 -X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid -X-Attribution: BAW -X-Oblique-Strategy: Make a door into a window - - ---h90VIIIKmx -Content-Type: text/plain; name="msg.txt" -Content-Transfer-Encoding: 7bit - -a simple kind of mirror -to reflect upon our own - ---h90VIIIKmx -Content-Type: text/plain; name="msg.txt" -Content-Transfer-Encoding: 7bit - -a simple kind of mirror -to reflect upon our own - ---h90VIIIKmx-- - diff --git a/Lib/email/test/data/msg_45.txt b/Lib/email/test/data/msg_45.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_45.txt +++ /dev/null @@ -1,33 +0,0 @@ -From: -To: -Subject: test -X-Long-Line: Some really long line contains a lot of text and thus has to be rewrapped because it is some - really long - line -MIME-Version: 1.0 -Content-Type: multipart/signed; boundary="borderline"; - protocol="application/pgp-signature"; micalg=pgp-sha1 - -This is an OpenPGP/MIME signed message (RFC 2440 and 3156) ---borderline -Content-Type: text/plain -X-Long-Line: Another really long line contains a lot of text and thus has to be rewrapped because it is another - really long - line - -This is the signed contents. - ---borderline -Content-Type: application/pgp-signature; name="signature.asc" -Content-Description: OpenPGP digital signature -Content-Disposition: attachment; filename="signature.asc" - ------BEGIN PGP SIGNATURE----- -Version: GnuPG v2.0.6 (GNU/Linux) - -iD8DBQFG03voRhp6o4m9dFsRApSZAKCCAN3IkJlVRg6NvAiMHlvvIuMGPQCeLZtj -FGwfnRHFBFO/S4/DKysm0lI= -=t7+s ------END PGP SIGNATURE----- - ---borderline-- diff --git a/Lib/email/test/data/msg_46.txt b/Lib/email/test/data/msg_46.txt deleted file mode 100644 --- a/Lib/email/test/data/msg_46.txt +++ /dev/null @@ -1,23 +0,0 @@ -Return-Path: -Delivery-Date: Mon, 08 Feb 2010 14:05:16 +0100 -Received: from example.org (example.org [64.5.53.58]) - by example.net (node=mxbap2) with ESMTP (Nemesis) - id UNIQUE for someone at example.com; Mon, 08 Feb 2010 14:05:16 +0100 -Date: Mon, 01 Feb 2010 12:21:16 +0100 -From: "Sender" -To: -Subject: GroupwiseForwardingTest -Mime-Version: 1.0 -Content-Type: message/rfc822 - -Return-path: -Message-ID: <4B66B890.4070408 at teconcept.de> -Date: Mon, 01 Feb 2010 12:18:40 +0100 -From: "Dr. Sender" -MIME-Version: 1.0 -To: "Recipient" -Subject: GroupwiseForwardingTest -Content-Type: text/plain; charset=ISO-8859-15 -Content-Transfer-Encoding: 7bit - -Testing email forwarding with Groupwise 1.2.2010 diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py deleted file mode 100644 --- a/Lib/email/test/test_email.py +++ /dev/null @@ -1,4164 +0,0 @@ -# Copyright (C) 2001-2010 Python Software Foundation -# Contact: email-sig at python.org -# email package unit tests - -import os -import re -import sys -import time -import base64 -import difflib -import unittest -import warnings -import textwrap - -from io import StringIO, BytesIO -from itertools import chain - -import email - -from email.charset import Charset -from email.header import Header, decode_header, make_header -from email.parser import Parser, HeaderParser -from email.generator import Generator, DecodedGenerator -from email.message import Message -from email.mime.application import MIMEApplication -from email.mime.audio import MIMEAudio -from email.mime.text import MIMEText -from email.mime.image import MIMEImage -from email.mime.base import MIMEBase -from email.mime.message import MIMEMessage -from email.mime.multipart import MIMEMultipart -from email import utils -from email import errors -from email import encoders -from email import iterators -from email import base64mime -from email import quoprimime - -from test.support import findfile, run_unittest, unlink -from email.test import __file__ as landmark - - -NL = '\n' -EMPTYSTRING = '' -SPACE = ' ' - - - -def openfile(filename, *args, **kws): - path = os.path.join(os.path.dirname(landmark), 'data', filename) - return open(path, *args, **kws) - - - -# Base test class -class TestEmailBase(unittest.TestCase): - def ndiffAssertEqual(self, first, second): - """Like assertEqual except use ndiff for readable output.""" - if first != second: - sfirst = str(first) - ssecond = str(second) - rfirst = [repr(line) for line in sfirst.splitlines()] - rsecond = [repr(line) for line in ssecond.splitlines()] - diff = difflib.ndiff(rfirst, rsecond) - raise self.failureException(NL + NL.join(diff)) - - def _msgobj(self, filename): - with openfile(findfile(filename)) as fp: - return email.message_from_file(fp) - - - -# Test various aspects of the Message class's API -class TestMessageAPI(TestEmailBase): - def test_get_all(self): - eq = self.assertEqual - msg = self._msgobj('msg_20.txt') - eq(msg.get_all('cc'), ['ccc at zzz.org', 'ddd at zzz.org', 'eee at zzz.org']) - eq(msg.get_all('xx', 'n/a'), 'n/a') - - def test_getset_charset(self): - eq = self.assertEqual - msg = Message() - eq(msg.get_charset(), None) - charset = Charset('iso-8859-1') - msg.set_charset(charset) - eq(msg['mime-version'], '1.0') - eq(msg.get_content_type(), 'text/plain') - eq(msg['content-type'], 'text/plain; charset="iso-8859-1"') - eq(msg.get_param('charset'), 'iso-8859-1') - eq(msg['content-transfer-encoding'], 'quoted-printable') - eq(msg.get_charset().input_charset, 'iso-8859-1') - # Remove the charset - msg.set_charset(None) - eq(msg.get_charset(), None) - eq(msg['content-type'], 'text/plain') - # Try adding a charset when there's already MIME headers present - msg = Message() - msg['MIME-Version'] = '2.0' - msg['Content-Type'] = 'text/x-weird' - msg['Content-Transfer-Encoding'] = 'quinted-puntable' - msg.set_charset(charset) - eq(msg['mime-version'], '2.0') - eq(msg['content-type'], 'text/x-weird; charset="iso-8859-1"') - eq(msg['content-transfer-encoding'], 'quinted-puntable') - - def test_set_charset_from_string(self): - eq = self.assertEqual - msg = Message() - msg.set_charset('us-ascii') - eq(msg.get_charset().input_charset, 'us-ascii') - eq(msg['content-type'], 'text/plain; charset="us-ascii"') - - def test_set_payload_with_charset(self): - msg = Message() - charset = Charset('iso-8859-1') - msg.set_payload('This is a string payload', charset) - self.assertEqual(msg.get_charset().input_charset, 'iso-8859-1') - - def test_get_charsets(self): - eq = self.assertEqual - - msg = self._msgobj('msg_08.txt') - charsets = msg.get_charsets() - eq(charsets, [None, 'us-ascii', 'iso-8859-1', 'iso-8859-2', 'koi8-r']) - - msg = self._msgobj('msg_09.txt') - charsets = msg.get_charsets('dingbat') - eq(charsets, ['dingbat', 'us-ascii', 'iso-8859-1', 'dingbat', - 'koi8-r']) - - msg = self._msgobj('msg_12.txt') - charsets = msg.get_charsets() - eq(charsets, [None, 'us-ascii', 'iso-8859-1', None, 'iso-8859-2', - 'iso-8859-3', 'us-ascii', 'koi8-r']) - - def test_get_filename(self): - eq = self.assertEqual - - msg = self._msgobj('msg_04.txt') - filenames = [p.get_filename() for p in msg.get_payload()] - eq(filenames, ['msg.txt', 'msg.txt']) - - msg = self._msgobj('msg_07.txt') - subpart = msg.get_payload(1) - eq(subpart.get_filename(), 'dingusfish.gif') - - def test_get_filename_with_name_parameter(self): - eq = self.assertEqual - - msg = self._msgobj('msg_44.txt') - filenames = [p.get_filename() for p in msg.get_payload()] - eq(filenames, ['msg.txt', 'msg.txt']) - - def test_get_boundary(self): - eq = self.assertEqual - msg = self._msgobj('msg_07.txt') - # No quotes! - eq(msg.get_boundary(), 'BOUNDARY') - - def test_set_boundary(self): - eq = self.assertEqual - # This one has no existing boundary parameter, but the Content-Type: - # header appears fifth. - msg = self._msgobj('msg_01.txt') - msg.set_boundary('BOUNDARY') - header, value = msg.items()[4] - eq(header.lower(), 'content-type') - eq(value, 'text/plain; charset="us-ascii"; boundary="BOUNDARY"') - # This one has a Content-Type: header, with a boundary, stuck in the - # middle of its headers. Make sure the order is preserved; it should - # be fifth. - msg = self._msgobj('msg_04.txt') - msg.set_boundary('BOUNDARY') - header, value = msg.items()[4] - eq(header.lower(), 'content-type') - eq(value, 'multipart/mixed; boundary="BOUNDARY"') - # And this one has no Content-Type: header at all. - msg = self._msgobj('msg_03.txt') - self.assertRaises(errors.HeaderParseError, - msg.set_boundary, 'BOUNDARY') - - def test_make_boundary(self): - msg = MIMEMultipart('form-data') - # Note that when the boundary gets created is an implementation - # detail and might change. - self.assertEqual(msg.items()[0][1], 'multipart/form-data') - # Trigger creation of boundary - msg.as_string() - self.assertEqual(msg.items()[0][1][:33], - 'multipart/form-data; boundary="==') - # XXX: there ought to be tests of the uniqueness of the boundary, too. - - def test_message_rfc822_only(self): - # Issue 7970: message/rfc822 not in multipart parsed by - # HeaderParser caused an exception when flattened. - with openfile(findfile('msg_46.txt')) as fp: - msgdata = fp.read() - parser = HeaderParser() - msg = parser.parsestr(msgdata) - out = StringIO() - gen = Generator(out, True, 0) - gen.flatten(msg, False) - self.assertEqual(out.getvalue(), msgdata) - - def test_get_decoded_payload(self): - eq = self.assertEqual - msg = self._msgobj('msg_10.txt') - # The outer message is a multipart - eq(msg.get_payload(decode=True), None) - # Subpart 1 is 7bit encoded - eq(msg.get_payload(0).get_payload(decode=True), - b'This is a 7bit encoded message.\n') - # Subpart 2 is quopri - eq(msg.get_payload(1).get_payload(decode=True), - b'\xa1This is a Quoted Printable encoded message!\n') - # Subpart 3 is base64 - eq(msg.get_payload(2).get_payload(decode=True), - b'This is a Base64 encoded message.') - # Subpart 4 is base64 with a trailing newline, which - # used to be stripped (issue 7143). - eq(msg.get_payload(3).get_payload(decode=True), - b'This is a Base64 encoded message.\n') - # Subpart 5 has no Content-Transfer-Encoding: header. - eq(msg.get_payload(4).get_payload(decode=True), - b'This has no Content-Transfer-Encoding: header.\n') - - def test_get_decoded_uu_payload(self): - eq = self.assertEqual - msg = Message() - msg.set_payload('begin 666 -\n+:&5L;&\\@=V]R;&0 \n \nend\n') - for cte in ('x-uuencode', 'uuencode', 'uue', 'x-uue'): - msg['content-transfer-encoding'] = cte - eq(msg.get_payload(decode=True), b'hello world') - # Now try some bogus data - msg.set_payload('foo') - eq(msg.get_payload(decode=True), b'foo') - - def test_decoded_generator(self): - eq = self.assertEqual - msg = self._msgobj('msg_07.txt') - with openfile('msg_17.txt') as fp: - text = fp.read() - s = StringIO() - g = DecodedGenerator(s) - g.flatten(msg) - eq(s.getvalue(), text) - - def test__contains__(self): - msg = Message() - msg['From'] = 'Me' - msg['to'] = 'You' - # Check for case insensitivity - self.assertTrue('from' in msg) - self.assertTrue('From' in msg) - self.assertTrue('FROM' in msg) - self.assertTrue('to' in msg) - self.assertTrue('To' in msg) - self.assertTrue('TO' in msg) - - def test_as_string(self): - eq = self.ndiffAssertEqual - msg = self._msgobj('msg_01.txt') - with openfile('msg_01.txt') as fp: - text = fp.read() - eq(text, str(msg)) - fullrepr = msg.as_string(unixfrom=True) - lines = fullrepr.split('\n') - self.assertTrue(lines[0].startswith('From ')) - eq(text, NL.join(lines[1:])) - - def test_bad_param(self): - msg = email.message_from_string("Content-Type: blarg; baz; boo\n") - self.assertEqual(msg.get_param('baz'), '') - - def test_missing_filename(self): - msg = email.message_from_string("From: foo\n") - self.assertEqual(msg.get_filename(), None) - - def test_bogus_filename(self): - msg = email.message_from_string( - "Content-Disposition: blarg; filename\n") - self.assertEqual(msg.get_filename(), '') - - def test_missing_boundary(self): - msg = email.message_from_string("From: foo\n") - self.assertEqual(msg.get_boundary(), None) - - def test_get_params(self): - eq = self.assertEqual - msg = email.message_from_string( - 'X-Header: foo=one; bar=two; baz=three\n') - eq(msg.get_params(header='x-header'), - [('foo', 'one'), ('bar', 'two'), ('baz', 'three')]) - msg = email.message_from_string( - 'X-Header: foo; bar=one; baz=two\n') - eq(msg.get_params(header='x-header'), - [('foo', ''), ('bar', 'one'), ('baz', 'two')]) - eq(msg.get_params(), None) - msg = email.message_from_string( - 'X-Header: foo; bar="one"; baz=two\n') - eq(msg.get_params(header='x-header'), - [('foo', ''), ('bar', 'one'), ('baz', 'two')]) - - def test_get_param_liberal(self): - msg = Message() - msg['Content-Type'] = 'Content-Type: Multipart/mixed; boundary = "CPIMSSMTPC06p5f3tG"' - self.assertEqual(msg.get_param('boundary'), 'CPIMSSMTPC06p5f3tG') - - def test_get_param(self): - eq = self.assertEqual - msg = email.message_from_string( - "X-Header: foo=one; bar=two; baz=three\n") - eq(msg.get_param('bar', header='x-header'), 'two') - eq(msg.get_param('quuz', header='x-header'), None) - eq(msg.get_param('quuz'), None) - msg = email.message_from_string( - 'X-Header: foo; bar="one"; baz=two\n') - eq(msg.get_param('foo', header='x-header'), '') - eq(msg.get_param('bar', header='x-header'), 'one') - eq(msg.get_param('baz', header='x-header'), 'two') - # XXX: We are not RFC-2045 compliant! We cannot parse: - # msg["Content-Type"] = 'text/plain; weird="hey; dolly? [you] @ <\\"home\\">?"' - # msg.get_param("weird") - # yet. - - def test_get_param_funky_continuation_lines(self): - msg = self._msgobj('msg_22.txt') - self.assertEqual(msg.get_payload(1).get_param('name'), 'wibble.JPG') - - def test_get_param_with_semis_in_quotes(self): - msg = email.message_from_string( - 'Content-Type: image/pjpeg; name="Jim&&Jill"\n') - self.assertEqual(msg.get_param('name'), 'Jim&&Jill') - self.assertEqual(msg.get_param('name', unquote=False), - '"Jim&&Jill"') - - def test_get_param_with_quotes(self): - msg = email.message_from_string( - 'Content-Type: foo; bar*0="baz\\"foobar"; bar*1="\\"baz"') - self.assertEqual(msg.get_param('bar'), 'baz"foobar"baz') - msg = email.message_from_string( - "Content-Type: foo; bar*0=\"baz\\\"foobar\"; bar*1=\"\\\"baz\"") - self.assertEqual(msg.get_param('bar'), 'baz"foobar"baz') - - def test_field_containment(self): - unless = self.assertTrue - msg = email.message_from_string('Header: exists') - unless('header' in msg) - unless('Header' in msg) - unless('HEADER' in msg) - self.assertFalse('headerx' in msg) - - def test_set_param(self): - eq = self.assertEqual - msg = Message() - msg.set_param('charset', 'iso-2022-jp') - eq(msg.get_param('charset'), 'iso-2022-jp') - msg.set_param('importance', 'high value') - eq(msg.get_param('importance'), 'high value') - eq(msg.get_param('importance', unquote=False), '"high value"') - eq(msg.get_params(), [('text/plain', ''), - ('charset', 'iso-2022-jp'), - ('importance', 'high value')]) - eq(msg.get_params(unquote=False), [('text/plain', ''), - ('charset', '"iso-2022-jp"'), - ('importance', '"high value"')]) - msg.set_param('charset', 'iso-9999-xx', header='X-Jimmy') - eq(msg.get_param('charset', header='X-Jimmy'), 'iso-9999-xx') - - def test_del_param(self): - eq = self.assertEqual - msg = self._msgobj('msg_05.txt') - eq(msg.get_params(), - [('multipart/report', ''), ('report-type', 'delivery-status'), - ('boundary', 'D1690A7AC1.996856090/mail.example.com')]) - old_val = msg.get_param("report-type") - msg.del_param("report-type") - eq(msg.get_params(), - [('multipart/report', ''), - ('boundary', 'D1690A7AC1.996856090/mail.example.com')]) - msg.set_param("report-type", old_val) - eq(msg.get_params(), - [('multipart/report', ''), - ('boundary', 'D1690A7AC1.996856090/mail.example.com'), - ('report-type', old_val)]) - - def test_del_param_on_other_header(self): - msg = Message() - msg.add_header('Content-Disposition', 'attachment', filename='bud.gif') - msg.del_param('filename', 'content-disposition') - self.assertEqual(msg['content-disposition'], 'attachment') - - def test_set_type(self): - eq = self.assertEqual - msg = Message() - self.assertRaises(ValueError, msg.set_type, 'text') - msg.set_type('text/plain') - eq(msg['content-type'], 'text/plain') - msg.set_param('charset', 'us-ascii') - eq(msg['content-type'], 'text/plain; charset="us-ascii"') - msg.set_type('text/html') - eq(msg['content-type'], 'text/html; charset="us-ascii"') - - def test_set_type_on_other_header(self): - msg = Message() - msg['X-Content-Type'] = 'text/plain' - msg.set_type('application/octet-stream', 'X-Content-Type') - self.assertEqual(msg['x-content-type'], 'application/octet-stream') - - def test_get_content_type_missing(self): - msg = Message() - self.assertEqual(msg.get_content_type(), 'text/plain') - - def test_get_content_type_missing_with_default_type(self): - msg = Message() - msg.set_default_type('message/rfc822') - self.assertEqual(msg.get_content_type(), 'message/rfc822') - - def test_get_content_type_from_message_implicit(self): - msg = self._msgobj('msg_30.txt') - self.assertEqual(msg.get_payload(0).get_content_type(), - 'message/rfc822') - - def test_get_content_type_from_message_explicit(self): - msg = self._msgobj('msg_28.txt') - self.assertEqual(msg.get_payload(0).get_content_type(), - 'message/rfc822') - - def test_get_content_type_from_message_text_plain_implicit(self): - msg = self._msgobj('msg_03.txt') - self.assertEqual(msg.get_content_type(), 'text/plain') - - def test_get_content_type_from_message_text_plain_explicit(self): - msg = self._msgobj('msg_01.txt') - self.assertEqual(msg.get_content_type(), 'text/plain') - - def test_get_content_maintype_missing(self): - msg = Message() - self.assertEqual(msg.get_content_maintype(), 'text') - - def test_get_content_maintype_missing_with_default_type(self): - msg = Message() - msg.set_default_type('message/rfc822') - self.assertEqual(msg.get_content_maintype(), 'message') - - def test_get_content_maintype_from_message_implicit(self): - msg = self._msgobj('msg_30.txt') - self.assertEqual(msg.get_payload(0).get_content_maintype(), 'message') - - def test_get_content_maintype_from_message_explicit(self): - msg = self._msgobj('msg_28.txt') - self.assertEqual(msg.get_payload(0).get_content_maintype(), 'message') - - def test_get_content_maintype_from_message_text_plain_implicit(self): - msg = self._msgobj('msg_03.txt') - self.assertEqual(msg.get_content_maintype(), 'text') - - def test_get_content_maintype_from_message_text_plain_explicit(self): - msg = self._msgobj('msg_01.txt') - self.assertEqual(msg.get_content_maintype(), 'text') - - def test_get_content_subtype_missing(self): - msg = Message() - self.assertEqual(msg.get_content_subtype(), 'plain') - - def test_get_content_subtype_missing_with_default_type(self): - msg = Message() - msg.set_default_type('message/rfc822') - self.assertEqual(msg.get_content_subtype(), 'rfc822') - - def test_get_content_subtype_from_message_implicit(self): - msg = self._msgobj('msg_30.txt') - self.assertEqual(msg.get_payload(0).get_content_subtype(), 'rfc822') - - def test_get_content_subtype_from_message_explicit(self): - msg = self._msgobj('msg_28.txt') - self.assertEqual(msg.get_payload(0).get_content_subtype(), 'rfc822') - - def test_get_content_subtype_from_message_text_plain_implicit(self): - msg = self._msgobj('msg_03.txt') - self.assertEqual(msg.get_content_subtype(), 'plain') - - def test_get_content_subtype_from_message_text_plain_explicit(self): - msg = self._msgobj('msg_01.txt') - self.assertEqual(msg.get_content_subtype(), 'plain') - - def test_get_content_maintype_error(self): - msg = Message() - msg['Content-Type'] = 'no-slash-in-this-string' - self.assertEqual(msg.get_content_maintype(), 'text') - - def test_get_content_subtype_error(self): - msg = Message() - msg['Content-Type'] = 'no-slash-in-this-string' - self.assertEqual(msg.get_content_subtype(), 'plain') - - def test_replace_header(self): - eq = self.assertEqual - msg = Message() - msg.add_header('First', 'One') - msg.add_header('Second', 'Two') - msg.add_header('Third', 'Three') - eq(msg.keys(), ['First', 'Second', 'Third']) - eq(msg.values(), ['One', 'Two', 'Three']) - msg.replace_header('Second', 'Twenty') - eq(msg.keys(), ['First', 'Second', 'Third']) - eq(msg.values(), ['One', 'Twenty', 'Three']) - msg.add_header('First', 'Eleven') - msg.replace_header('First', 'One Hundred') - eq(msg.keys(), ['First', 'Second', 'Third', 'First']) - eq(msg.values(), ['One Hundred', 'Twenty', 'Three', 'Eleven']) - self.assertRaises(KeyError, msg.replace_header, 'Fourth', 'Missing') - - def test_broken_base64_payload(self): - x = 'AwDp0P7//y6LwKEAcPa/6Q=9' - msg = Message() - msg['content-type'] = 'audio/x-midi' - msg['content-transfer-encoding'] = 'base64' - msg.set_payload(x) - self.assertEqual(msg.get_payload(decode=True), - bytes(x, 'raw-unicode-escape')) - - # Issue 1078919 - def test_ascii_add_header(self): - msg = Message() - msg.add_header('Content-Disposition', 'attachment', - filename='bud.gif') - self.assertEqual('attachment; filename="bud.gif"', - msg['Content-Disposition']) - - def test_noascii_add_header(self): - msg = Message() - msg.add_header('Content-Disposition', 'attachment', - filename="Fu?baller.ppt") - self.assertEqual( - 'attachment; filename*=utf-8\'\'Fu%C3%9Fballer.ppt', - msg['Content-Disposition']) - - def test_nonascii_add_header_via_triple(self): - msg = Message() - msg.add_header('Content-Disposition', 'attachment', - filename=('iso-8859-1', '', 'Fu?baller.ppt')) - self.assertEqual( - 'attachment; filename*=iso-8859-1\'\'Fu%DFballer.ppt', - msg['Content-Disposition']) - - def test_ascii_add_header_with_tspecial(self): - msg = Message() - msg.add_header('Content-Disposition', 'attachment', - filename="windows [filename].ppt") - self.assertEqual( - 'attachment; filename="windows [filename].ppt"', - msg['Content-Disposition']) - - def test_nonascii_add_header_with_tspecial(self): - msg = Message() - msg.add_header('Content-Disposition', 'attachment', - filename="Fu?baller [filename].ppt") - self.assertEqual( - "attachment; filename*=utf-8''Fu%C3%9Fballer%20%5Bfilename%5D.ppt", - msg['Content-Disposition']) - - # Issue 5871: reject an attempt to embed a header inside a header value - # (header injection attack). - def test_embeded_header_via_Header_rejected(self): - msg = Message() - msg['Dummy'] = Header('dummy\nX-Injected-Header: test') - self.assertRaises(errors.HeaderParseError, msg.as_string) - - def test_embeded_header_via_string_rejected(self): - msg = Message() - msg['Dummy'] = 'dummy\nX-Injected-Header: test' - self.assertRaises(errors.HeaderParseError, msg.as_string) - -# Test the email.encoders module -class TestEncoders(unittest.TestCase): - - def test_EncodersEncode_base64(self): - with openfile('PyBanner048.gif', 'rb') as fp: - bindata = fp.read() - mimed = email.mime.image.MIMEImage(bindata) - base64ed = mimed.get_payload() - # the transfer-encoded body lines should all be <=76 characters - lines = base64ed.split('\n') - self.assertLessEqual(max([ len(x) for x in lines ]), 76) - - def test_encode_empty_payload(self): - eq = self.assertEqual - msg = Message() - msg.set_charset('us-ascii') - eq(msg['content-transfer-encoding'], '7bit') - - def test_default_cte(self): - eq = self.assertEqual - # 7bit data and the default us-ascii _charset - msg = MIMEText('hello world') - eq(msg['content-transfer-encoding'], '7bit') - # Similar, but with 8bit data - msg = MIMEText('hello \xf8 world') - eq(msg['content-transfer-encoding'], '8bit') - # And now with a different charset - msg = MIMEText('hello \xf8 world', _charset='iso-8859-1') - eq(msg['content-transfer-encoding'], 'quoted-printable') - - def test_encode7or8bit(self): - # Make sure a charset whose input character set is 8bit but - # whose output character set is 7bit gets a transfer-encoding - # of 7bit. - eq = self.assertEqual - msg = MIMEText('?', _charset='euc-jp') - eq(msg['content-transfer-encoding'], '7bit') - - -# Test long header wrapping -class TestLongHeaders(TestEmailBase): - def test_split_long_continuation(self): - eq = self.ndiffAssertEqual - msg = email.message_from_string("""\ -Subject: bug demonstration -\t12345678911234567892123456789312345678941234567895123456789612345678971234567898112345678911234567892123456789112345678911234567892123456789 -\tmore text - -test -""") - sfp = StringIO() - g = Generator(sfp) - g.flatten(msg) - eq(sfp.getvalue(), """\ -Subject: bug demonstration -\t12345678911234567892123456789312345678941234567895123456789612345678971234567898112345678911234567892123456789112345678911234567892123456789 -\tmore text - -test -""") - - def test_another_long_almost_unsplittable_header(self): - eq = self.ndiffAssertEqual - hstr = """\ -bug demonstration -\t12345678911234567892123456789312345678941234567895123456789612345678971234567898112345678911234567892123456789112345678911234567892123456789 -\tmore text""" - h = Header(hstr, continuation_ws='\t') - eq(h.encode(), """\ -bug demonstration -\t12345678911234567892123456789312345678941234567895123456789612345678971234567898112345678911234567892123456789112345678911234567892123456789 -\tmore text""") - h = Header(hstr.replace('\t', ' ')) - eq(h.encode(), """\ -bug demonstration - 12345678911234567892123456789312345678941234567895123456789612345678971234567898112345678911234567892123456789112345678911234567892123456789 - more text""") - - def test_long_nonstring(self): - eq = self.ndiffAssertEqual - g = Charset("iso-8859-1") - cz = Charset("iso-8859-2") - utf8 = Charset("utf-8") - g_head = (b'Die Mieter treten hier ein werden mit einem Foerderband ' - b'komfortabel den Korridor entlang, an s\xfcdl\xfcndischen ' - b'Wandgem\xe4lden vorbei, gegen die rotierenden Klingen ' - b'bef\xf6rdert. ') - cz_head = (b'Finan\xe8ni metropole se hroutily pod tlakem jejich ' - b'd\xf9vtipu.. ') - utf8_head = ('\u6b63\u78ba\u306b\u8a00\u3046\u3068\u7ffb\u8a33\u306f' - '\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u4e00' - '\u90e8\u306f\u30c9\u30a4\u30c4\u8a9e\u3067\u3059\u304c' - '\u3001\u3042\u3068\u306f\u3067\u305f\u3089\u3081\u3067' - '\u3059\u3002\u5b9f\u969b\u306b\u306f\u300cWenn ist das ' - 'Nunstuck git und Slotermeyer? Ja! Beiherhund das Oder ' - 'die Flipperwaldt gersput.\u300d\u3068\u8a00\u3063\u3066' - '\u3044\u307e\u3059\u3002') - h = Header(g_head, g, header_name='Subject') - h.append(cz_head, cz) - h.append(utf8_head, utf8) - msg = Message() - msg['Subject'] = h - sfp = StringIO() - g = Generator(sfp) - g.flatten(msg) - eq(sfp.getvalue(), """\ -Subject: =?iso-8859-1?q?Die_Mieter_treten_hier_ein_werden_mit_einem_Foerderb?= - =?iso-8859-1?q?and_komfortabel_den_Korridor_entlang=2C_an_s=FCdl=FCndischen?= - =?iso-8859-1?q?_Wandgem=E4lden_vorbei=2C_gegen_die_rotierenden_Klingen_bef?= - =?iso-8859-1?q?=F6rdert=2E_?= =?iso-8859-2?q?Finan=E8ni_metropole_se_hrouti?= - =?iso-8859-2?q?ly_pod_tlakem_jejich_d=F9vtipu=2E=2E_?= =?utf-8?b?5q2j56K6?= - =?utf-8?b?44Gr6KiA44GG44Go57+76Kiz44Gv44GV44KM44Gm44GE44G+44Gb44KT44CC5LiA?= - =?utf-8?b?6YOo44Gv44OJ44Kk44OE6Kqe44Gn44GZ44GM44CB44GC44Go44Gv44Gn44Gf44KJ?= - =?utf-8?b?44KB44Gn44GZ44CC5a6f6Zqb44Gr44Gv44CMV2VubiBpc3QgZGFzIE51bnN0dWNr?= - =?utf-8?b?IGdpdCB1bmQgU2xvdGVybWV5ZXI/IEphISBCZWloZXJodW5kIGRhcyBPZGVyIGRp?= - =?utf-8?b?ZSBGbGlwcGVyd2FsZHQgZ2Vyc3B1dC7jgI3jgajoqIDjgaPjgabjgYTjgb7jgZk=?= - =?utf-8?b?44CC?= - -""") - eq(h.encode(maxlinelen=76), """\ -=?iso-8859-1?q?Die_Mieter_treten_hier_ein_werden_mit_einem_Foerde?= - =?iso-8859-1?q?rband_komfortabel_den_Korridor_entlang=2C_an_s=FCdl=FCndis?= - =?iso-8859-1?q?chen_Wandgem=E4lden_vorbei=2C_gegen_die_rotierenden_Klinge?= - =?iso-8859-1?q?n_bef=F6rdert=2E_?= =?iso-8859-2?q?Finan=E8ni_metropole_se?= - =?iso-8859-2?q?_hroutily_pod_tlakem_jejich_d=F9vtipu=2E=2E_?= - =?utf-8?b?5q2j56K644Gr6KiA44GG44Go57+76Kiz44Gv44GV44KM44Gm44GE44G+44Gb?= - =?utf-8?b?44KT44CC5LiA6YOo44Gv44OJ44Kk44OE6Kqe44Gn44GZ44GM44CB44GC44Go?= - =?utf-8?b?44Gv44Gn44Gf44KJ44KB44Gn44GZ44CC5a6f6Zqb44Gr44Gv44CMV2VubiBp?= - =?utf-8?b?c3QgZGFzIE51bnN0dWNrIGdpdCB1bmQgU2xvdGVybWV5ZXI/IEphISBCZWlo?= - =?utf-8?b?ZXJodW5kIGRhcyBPZGVyIGRpZSBGbGlwcGVyd2FsZHQgZ2Vyc3B1dC7jgI0=?= - =?utf-8?b?44Go6KiA44Gj44Gm44GE44G+44GZ44CC?=""") - - def test_long_header_encode(self): - eq = self.ndiffAssertEqual - h = Header('wasnipoop; giraffes="very-long-necked-animals"; ' - 'spooge="yummy"; hippos="gargantuan"; marshmallows="gooey"', - header_name='X-Foobar-Spoink-Defrobnit') - eq(h.encode(), '''\ -wasnipoop; giraffes="very-long-necked-animals"; - spooge="yummy"; hippos="gargantuan"; marshmallows="gooey"''') - - def test_long_header_encode_with_tab_continuation_is_just_a_hint(self): - eq = self.ndiffAssertEqual - h = Header('wasnipoop; giraffes="very-long-necked-animals"; ' - 'spooge="yummy"; hippos="gargantuan"; marshmallows="gooey"', - header_name='X-Foobar-Spoink-Defrobnit', - continuation_ws='\t') - eq(h.encode(), '''\ -wasnipoop; giraffes="very-long-necked-animals"; - spooge="yummy"; hippos="gargantuan"; marshmallows="gooey"''') - - def test_long_header_encode_with_tab_continuation(self): - eq = self.ndiffAssertEqual - h = Header('wasnipoop; giraffes="very-long-necked-animals";\t' - 'spooge="yummy"; hippos="gargantuan"; marshmallows="gooey"', - header_name='X-Foobar-Spoink-Defrobnit', - continuation_ws='\t') - eq(h.encode(), '''\ -wasnipoop; giraffes="very-long-necked-animals"; -\tspooge="yummy"; hippos="gargantuan"; marshmallows="gooey"''') - - def test_header_encode_with_different_output_charset(self): - h = Header('?', 'euc-jp') - self.assertEqual(h.encode(), "=?iso-2022-jp?b?GyRCSjgbKEI=?=") - - def test_long_header_encode_with_different_output_charset(self): - h = Header(b'test-ja \xa4\xd8\xc5\xea\xb9\xc6\xa4\xb5\xa4\xec\xa4' - b'\xbf\xa5\xe1\xa1\xbc\xa5\xeb\xa4\xcf\xbb\xca\xb2\xf1\xbc\xd4' - b'\xa4\xce\xbe\xb5\xc7\xa7\xa4\xf2\xc2\xd4\xa4\xc3\xa4\xc6\xa4' - b'\xa4\xa4\xde\xa4\xb9'.decode('euc-jp'), 'euc-jp') - res = """\ -=?iso-2022-jp?b?dGVzdC1qYSAbJEIkWEVqOUYkNSRsJD8lYSE8JWskTztKMnE8VCROPjUbKEI=?= - =?iso-2022-jp?b?GyRCRyckckJUJEMkRiQkJF4kORsoQg==?=""" - self.assertEqual(h.encode(), res) - - def test_header_splitter(self): - eq = self.ndiffAssertEqual - msg = MIMEText('') - # It'd be great if we could use add_header() here, but that doesn't - # guarantee an order of the parameters. - msg['X-Foobar-Spoink-Defrobnit'] = ( - 'wasnipoop; giraffes="very-long-necked-animals"; ' - 'spooge="yummy"; hippos="gargantuan"; marshmallows="gooey"') - sfp = StringIO() - g = Generator(sfp) - g.flatten(msg) - eq(sfp.getvalue(), '''\ -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit -X-Foobar-Spoink-Defrobnit: wasnipoop; giraffes="very-long-necked-animals"; - spooge="yummy"; hippos="gargantuan"; marshmallows="gooey" - -''') - - def test_no_semis_header_splitter(self): - eq = self.ndiffAssertEqual - msg = Message() - msg['From'] = 'test at dom.ain' - msg['References'] = SPACE.join('<%d at dom.ain>' % i for i in range(10)) - msg.set_payload('Test') - sfp = StringIO() - g = Generator(sfp) - g.flatten(msg) - eq(sfp.getvalue(), """\ -From: test at dom.ain -References: <0 at dom.ain> <1 at dom.ain> <2 at dom.ain> <3 at dom.ain> <4 at dom.ain> - <5 at dom.ain> <6 at dom.ain> <7 at dom.ain> <8 at dom.ain> <9 at dom.ain> - -Test""") - - def test_no_split_long_header(self): - eq = self.ndiffAssertEqual - hstr = 'References: ' + 'x' * 80 - h = Header(hstr) - # These come on two lines because Headers are really field value - # classes and don't really know about their field names. - eq(h.encode(), """\ -References: - xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx""") - h = Header('x' * 80) - eq(h.encode(), 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx') - - def test_splitting_multiple_long_lines(self): - eq = self.ndiffAssertEqual - hstr = """\ -from babylon.socal-raves.org (localhost [127.0.0.1]); by babylon.socal-raves.org (Postfix) with ESMTP id B570E51B81; for ; Sat, 2 Feb 2002 17:00:06 -0800 (PST) -\tfrom babylon.socal-raves.org (localhost [127.0.0.1]); by babylon.socal-raves.org (Postfix) with ESMTP id B570E51B81; for ; Sat, 2 Feb 2002 17:00:06 -0800 (PST) -\tfrom babylon.socal-raves.org (localhost [127.0.0.1]); by babylon.socal-raves.org (Postfix) with ESMTP id B570E51B81; for ; Sat, 2 Feb 2002 17:00:06 -0800 (PST) -""" - h = Header(hstr, continuation_ws='\t') - eq(h.encode(), """\ -from babylon.socal-raves.org (localhost [127.0.0.1]); - by babylon.socal-raves.org (Postfix) with ESMTP id B570E51B81; - for ; - Sat, 2 Feb 2002 17:00:06 -0800 (PST) -\tfrom babylon.socal-raves.org (localhost [127.0.0.1]); - by babylon.socal-raves.org (Postfix) with ESMTP id B570E51B81; - for ; - Sat, 2 Feb 2002 17:00:06 -0800 (PST) -\tfrom babylon.socal-raves.org (localhost [127.0.0.1]); - by babylon.socal-raves.org (Postfix) with ESMTP id B570E51B81; - for ; - Sat, 2 Feb 2002 17:00:06 -0800 (PST)""") - - def test_splitting_first_line_only_is_long(self): - eq = self.ndiffAssertEqual - hstr = """\ -from modemcable093.139-201-24.que.mc.videotron.ca ([24.201.139.93] helo=cthulhu.gerg.ca) -\tby kronos.mems-exchange.org with esmtp (Exim 4.05) -\tid 17k4h5-00034i-00 -\tfor test at mems-exchange.org; Wed, 28 Aug 2002 11:25:20 -0400""" - h = Header(hstr, maxlinelen=78, header_name='Received', - continuation_ws='\t') - eq(h.encode(), """\ -from modemcable093.139-201-24.que.mc.videotron.ca ([24.201.139.93] - helo=cthulhu.gerg.ca) -\tby kronos.mems-exchange.org with esmtp (Exim 4.05) -\tid 17k4h5-00034i-00 -\tfor test at mems-exchange.org; Wed, 28 Aug 2002 11:25:20 -0400""") - - def test_long_8bit_header(self): - eq = self.ndiffAssertEqual - msg = Message() - h = Header('Britische Regierung gibt', 'iso-8859-1', - header_name='Subject') - h.append('gr\xfcnes Licht f\xfcr Offshore-Windkraftprojekte') - eq(h.encode(maxlinelen=76), """\ -=?iso-8859-1?q?Britische_Regierung_gibt_gr=FCnes_Licht_f=FCr_Offs?= - =?iso-8859-1?q?hore-Windkraftprojekte?=""") - msg['Subject'] = h - eq(msg.as_string(maxheaderlen=76), """\ -Subject: =?iso-8859-1?q?Britische_Regierung_gibt_gr=FCnes_Licht_f=FCr_Offs?= - =?iso-8859-1?q?hore-Windkraftprojekte?= - -""") - eq(msg.as_string(maxheaderlen=0), """\ -Subject: =?iso-8859-1?q?Britische_Regierung_gibt_gr=FCnes_Licht_f=FCr_Offshore-Windkraftprojekte?= - -""") - - def test_long_8bit_header_no_charset(self): - eq = self.ndiffAssertEqual - msg = Message() - header_string = ('Britische Regierung gibt gr\xfcnes Licht ' - 'f\xfcr Offshore-Windkraftprojekte ' - '') - msg['Reply-To'] = header_string - self.assertRaises(UnicodeEncodeError, msg.as_string) - msg = Message() - msg['Reply-To'] = Header(header_string, 'utf-8', - header_name='Reply-To') - eq(msg.as_string(maxheaderlen=78), """\ -Reply-To: =?utf-8?q?Britische_Regierung_gibt_gr=C3=BCnes_Licht_f=C3=BCr_Offs?= - =?utf-8?q?hore-Windkraftprojekte_=3Ca-very-long-address=40example=2Ecom=3E?= - -""") - - def test_long_to_header(self): - eq = self.ndiffAssertEqual - to = ('"Someone Test #A" ,' - ',' - '"Someone Test #B" , ' - '"Someone Test #C" , ' - '"Someone Test #D" ') - msg = Message() - msg['To'] = to - eq(msg.as_string(maxheaderlen=78), '''\ -To: "Someone Test #A" ,, - "Someone Test #B" , - "Someone Test #C" , - "Someone Test #D" - -''') - - def test_long_line_after_append(self): - eq = self.ndiffAssertEqual - s = 'This is an example of string which has almost the limit of header length.' - h = Header(s) - h.append('Add another line.') - eq(h.encode(maxlinelen=76), """\ -This is an example of string which has almost the limit of header length. - Add another line.""") - - def test_shorter_line_with_append(self): - eq = self.ndiffAssertEqual - s = 'This is a shorter line.' - h = Header(s) - h.append('Add another sentence. (Surprise?)') - eq(h.encode(), - 'This is a shorter line. Add another sentence. (Surprise?)') - - def test_long_field_name(self): - eq = self.ndiffAssertEqual - fn = 'X-Very-Very-Very-Long-Header-Name' - gs = ('Die Mieter treten hier ein werden mit einem Foerderband ' - 'komfortabel den Korridor entlang, an s\xfcdl\xfcndischen ' - 'Wandgem\xe4lden vorbei, gegen die rotierenden Klingen ' - 'bef\xf6rdert. ') - h = Header(gs, 'iso-8859-1', header_name=fn) - # BAW: this seems broken because the first line is too long - eq(h.encode(maxlinelen=76), """\ -=?iso-8859-1?q?Die_Mieter_treten_hier_e?= - =?iso-8859-1?q?in_werden_mit_einem_Foerderband_komfortabel_den_Korridor_e?= - =?iso-8859-1?q?ntlang=2C_an_s=FCdl=FCndischen_Wandgem=E4lden_vorbei=2C_ge?= - =?iso-8859-1?q?gen_die_rotierenden_Klingen_bef=F6rdert=2E_?=""") - - def test_long_received_header(self): - h = ('from FOO.TLD (vizworld.acl.foo.tld [123.452.678.9]) ' - 'by hrothgar.la.mastaler.com (tmda-ofmipd) with ESMTP; ' - 'Wed, 05 Mar 2003 18:10:18 -0700') - msg = Message() - msg['Received-1'] = Header(h, continuation_ws='\t') - msg['Received-2'] = h - # This should be splitting on spaces not semicolons. - self.ndiffAssertEqual(msg.as_string(maxheaderlen=78), """\ -Received-1: from FOO.TLD (vizworld.acl.foo.tld [123.452.678.9]) by hrothgar.la.mastaler.com (tmda-ofmipd) with ESMTP; - Wed, 05 Mar 2003 18:10:18 -0700 -Received-2: from FOO.TLD (vizworld.acl.foo.tld [123.452.678.9]) by hrothgar.la.mastaler.com (tmda-ofmipd) with ESMTP; - Wed, 05 Mar 2003 18:10:18 -0700 - -""") - - def test_string_headerinst_eq(self): - h = ('<15975.17901.207240.414604 at sgigritzmann1.mathematik.' - 'tu-muenchen.de> (David Bremner\'s message of ' - '"Thu, 6 Mar 2003 13:58:21 +0100")') - msg = Message() - msg['Received-1'] = Header(h, header_name='Received-1', - continuation_ws='\t') - msg['Received-2'] = h - # XXX This should be splitting on spaces not commas. - self.ndiffAssertEqual(msg.as_string(maxheaderlen=78), """\ -Received-1: <15975.17901.207240.414604 at sgigritzmann1.mathematik.tu-muenchen.de> (David Bremner's message of \"Thu, - 6 Mar 2003 13:58:21 +0100\") -Received-2: <15975.17901.207240.414604 at sgigritzmann1.mathematik.tu-muenchen.de> (David Bremner's message of \"Thu, - 6 Mar 2003 13:58:21 +0100\") - -""") - - def test_long_unbreakable_lines_with_continuation(self): - eq = self.ndiffAssertEqual - msg = Message() - t = """\ -iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEUAAAAkHiJeRUIcGBi9 - locQDQ4zJykFBAXJfWDjAAACYUlEQVR4nF2TQY/jIAyFc6lydlG5x8Nyp1Y69wj1PN2I5gzp""" - msg['Face-1'] = t - msg['Face-2'] = Header(t, header_name='Face-2') - # XXX This splitting is all wrong. It the first value line should be - # snug against the field name. - eq(msg.as_string(maxheaderlen=78), """\ -Face-1:\x20 - iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEUAAAAkHiJeRUIcGBi9 - locQDQ4zJykFBAXJfWDjAAACYUlEQVR4nF2TQY/jIAyFc6lydlG5x8Nyp1Y69wj1PN2I5gzp -Face-2:\x20 - iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEUAAAAkHiJeRUIcGBi9 - locQDQ4zJykFBAXJfWDjAAACYUlEQVR4nF2TQY/jIAyFc6lydlG5x8Nyp1Y69wj1PN2I5gzp - -""") - - def test_another_long_multiline_header(self): - eq = self.ndiffAssertEqual - m = ('Received: from siimage.com ' - '([172.25.1.3]) by zima.siliconimage.com with ' - 'Microsoft SMTPSVC(5.0.2195.4905); ' - 'Wed, 16 Oct 2002 07:41:11 -0700') - msg = email.message_from_string(m) - eq(msg.as_string(maxheaderlen=78), '''\ -Received: from siimage.com ([172.25.1.3]) by zima.siliconimage.com with Microsoft SMTPSVC(5.0.2195.4905); - Wed, 16 Oct 2002 07:41:11 -0700 - -''') - - def test_long_lines_with_different_header(self): - eq = self.ndiffAssertEqual - h = ('List-Unsubscribe: ' - ',' - ' ') - msg = Message() - msg['List'] = h - msg['List'] = Header(h, header_name='List') - eq(msg.as_string(maxheaderlen=78), """\ -List: List-Unsubscribe: , - -List: List-Unsubscribe: , - - -""") - - def test_long_rfc2047_header_with_embedded_fws(self): - h = Header(textwrap.dedent("""\ - We're going to pretend this header is in a non-ascii character set - \tto see if line wrapping with encoded words and embedded - folding white space works"""), - charset='utf-8', - header_name='Test') - self.assertEqual(h.encode()+'\n', textwrap.dedent("""\ - =?utf-8?q?We=27re_going_to_pretend_this_header_is_in_a_non-ascii_chara?= - =?utf-8?q?cter_set?= - =?utf-8?q?_to_see_if_line_wrapping_with_encoded_words_and_embedded?= - =?utf-8?q?_folding_white_space_works?=""")+'\n') - - - -# Test mangling of "From " lines in the body of a message -class TestFromMangling(unittest.TestCase): - def setUp(self): - self.msg = Message() - self.msg['From'] = 'aaa at bbb.org' - self.msg.set_payload("""\ -From the desk of A.A.A.: -Blah blah blah -""") - - def test_mangled_from(self): - s = StringIO() - g = Generator(s, mangle_from_=True) - g.flatten(self.msg) - self.assertEqual(s.getvalue(), """\ -From: aaa at bbb.org - ->From the desk of A.A.A.: -Blah blah blah -""") - - def test_dont_mangle_from(self): - s = StringIO() - g = Generator(s, mangle_from_=False) - g.flatten(self.msg) - self.assertEqual(s.getvalue(), """\ -From: aaa at bbb.org - -From the desk of A.A.A.: -Blah blah blah -""") - - - -# Test the basic MIMEAudio class -class TestMIMEAudio(unittest.TestCase): - def setUp(self): - # Make sure we pick up the audiotest.au that lives in email/test/data. - # In Python, there's an audiotest.au living in Lib/test but that isn't - # included in some binary distros that don't include the test - # package. The trailing empty string on the .join() is significant - # since findfile() will do a dirname(). - datadir = os.path.join(os.path.dirname(landmark), 'data', '') - with open(findfile('audiotest.au', datadir), 'rb') as fp: - self._audiodata = fp.read() - self._au = MIMEAudio(self._audiodata) - - def test_guess_minor_type(self): - self.assertEqual(self._au.get_content_type(), 'audio/basic') - - def test_encoding(self): - payload = self._au.get_payload() - self.assertEqual(base64.decodebytes(bytes(payload, 'ascii')), - self._audiodata) - - def test_checkSetMinor(self): - au = MIMEAudio(self._audiodata, 'fish') - self.assertEqual(au.get_content_type(), 'audio/fish') - - def test_add_header(self): - eq = self.assertEqual - unless = self.assertTrue - self._au.add_header('Content-Disposition', 'attachment', - filename='audiotest.au') - eq(self._au['content-disposition'], - 'attachment; filename="audiotest.au"') - eq(self._au.get_params(header='content-disposition'), - [('attachment', ''), ('filename', 'audiotest.au')]) - eq(self._au.get_param('filename', header='content-disposition'), - 'audiotest.au') - missing = [] - eq(self._au.get_param('attachment', header='content-disposition'), '') - unless(self._au.get_param('foo', failobj=missing, - header='content-disposition') is missing) - # Try some missing stuff - unless(self._au.get_param('foobar', missing) is missing) - unless(self._au.get_param('attachment', missing, - header='foobar') is missing) - - - -# Test the basic MIMEImage class -class TestMIMEImage(unittest.TestCase): - def setUp(self): - with openfile('PyBanner048.gif', 'rb') as fp: - self._imgdata = fp.read() - self._im = MIMEImage(self._imgdata) - - def test_guess_minor_type(self): - self.assertEqual(self._im.get_content_type(), 'image/gif') - - def test_encoding(self): - payload = self._im.get_payload() - self.assertEqual(base64.decodebytes(bytes(payload, 'ascii')), - self._imgdata) - - def test_checkSetMinor(self): - im = MIMEImage(self._imgdata, 'fish') - self.assertEqual(im.get_content_type(), 'image/fish') - - def test_add_header(self): - eq = self.assertEqual - unless = self.assertTrue - self._im.add_header('Content-Disposition', 'attachment', - filename='dingusfish.gif') - eq(self._im['content-disposition'], - 'attachment; filename="dingusfish.gif"') - eq(self._im.get_params(header='content-disposition'), - [('attachment', ''), ('filename', 'dingusfish.gif')]) - eq(self._im.get_param('filename', header='content-disposition'), - 'dingusfish.gif') - missing = [] - eq(self._im.get_param('attachment', header='content-disposition'), '') - unless(self._im.get_param('foo', failobj=missing, - header='content-disposition') is missing) - # Try some missing stuff - unless(self._im.get_param('foobar', missing) is missing) - unless(self._im.get_param('attachment', missing, - header='foobar') is missing) - - - -# Test the basic MIMEApplication class -class TestMIMEApplication(unittest.TestCase): - def test_headers(self): - eq = self.assertEqual - msg = MIMEApplication(b'\xfa\xfb\xfc\xfd\xfe\xff') - eq(msg.get_content_type(), 'application/octet-stream') - eq(msg['content-transfer-encoding'], 'base64') - - def test_body(self): - eq = self.assertEqual - bytesdata = b'\xfa\xfb\xfc\xfd\xfe\xff' - msg = MIMEApplication(bytesdata) - # whitespace in the cte encoded block is RFC-irrelevant. - eq(msg.get_payload().strip(), '+vv8/f7/') - eq(msg.get_payload(decode=True), bytesdata) - - - -# Test the basic MIMEText class -class TestMIMEText(unittest.TestCase): - def setUp(self): - self._msg = MIMEText('hello there') - - def test_types(self): - eq = self.assertEqual - unless = self.assertTrue - eq(self._msg.get_content_type(), 'text/plain') - eq(self._msg.get_param('charset'), 'us-ascii') - missing = [] - unless(self._msg.get_param('foobar', missing) is missing) - unless(self._msg.get_param('charset', missing, header='foobar') - is missing) - - def test_payload(self): - self.assertEqual(self._msg.get_payload(), 'hello there') - self.assertTrue(not self._msg.is_multipart()) - - def test_charset(self): - eq = self.assertEqual - msg = MIMEText('hello there', _charset='us-ascii') - eq(msg.get_charset().input_charset, 'us-ascii') - eq(msg['content-type'], 'text/plain; charset="us-ascii"') - - def test_7bit_input(self): - eq = self.assertEqual - msg = MIMEText('hello there', _charset='us-ascii') - eq(msg.get_charset().input_charset, 'us-ascii') - eq(msg['content-type'], 'text/plain; charset="us-ascii"') - - def test_7bit_input_no_charset(self): - eq = self.assertEqual - msg = MIMEText('hello there') - eq(msg.get_charset(), 'us-ascii') - eq(msg['content-type'], 'text/plain; charset="us-ascii"') - self.assertTrue('hello there' in msg.as_string()) - - def test_utf8_input(self): - teststr = '\u043a\u0438\u0440\u0438\u043b\u0438\u0446\u0430' - eq = self.assertEqual - msg = MIMEText(teststr, _charset='utf-8') - eq(msg.get_charset().output_charset, 'utf-8') - eq(msg['content-type'], 'text/plain; charset="utf-8"') - eq(msg.get_payload(decode=True), teststr.encode('utf-8')) - - @unittest.skip("can't fix because of backward compat in email5, " - "will fix in email6") - def test_utf8_input_no_charset(self): - teststr = '\u043a\u0438\u0440\u0438\u043b\u0438\u0446\u0430' - self.assertRaises(UnicodeEncodeError, MIMEText, teststr) - - - -# Test complicated multipart/* messages -class TestMultipart(TestEmailBase): - def setUp(self): - with openfile('PyBanner048.gif', 'rb') as fp: - data = fp.read() - container = MIMEBase('multipart', 'mixed', boundary='BOUNDARY') - image = MIMEImage(data, name='dingusfish.gif') - image.add_header('content-disposition', 'attachment', - filename='dingusfish.gif') - intro = MIMEText('''\ -Hi there, - -This is the dingus fish. -''') - container.attach(intro) - container.attach(image) - container['From'] = 'Barry ' - container['To'] = 'Dingus Lovers ' - container['Subject'] = 'Here is your dingus fish' - - now = 987809702.54848599 - timetuple = time.localtime(now) - if timetuple[-1] == 0: - tzsecs = time.timezone - else: - tzsecs = time.altzone - if tzsecs > 0: - sign = '-' - else: - sign = '+' - tzoffset = ' %s%04d' % (sign, tzsecs / 36) - container['Date'] = time.strftime( - '%a, %d %b %Y %H:%M:%S', - time.localtime(now)) + tzoffset - self._msg = container - self._im = image - self._txt = intro - - def test_hierarchy(self): - # convenience - eq = self.assertEqual - unless = self.assertTrue - raises = self.assertRaises - # tests - m = self._msg - unless(m.is_multipart()) - eq(m.get_content_type(), 'multipart/mixed') - eq(len(m.get_payload()), 2) - raises(IndexError, m.get_payload, 2) - m0 = m.get_payload(0) - m1 = m.get_payload(1) - unless(m0 is self._txt) - unless(m1 is self._im) - eq(m.get_payload(), [m0, m1]) - unless(not m0.is_multipart()) - unless(not m1.is_multipart()) - - def test_empty_multipart_idempotent(self): - text = """\ -Content-Type: multipart/mixed; boundary="BOUNDARY" -MIME-Version: 1.0 -Subject: A subject -To: aperson at dom.ain -From: bperson at dom.ain - - ---BOUNDARY - - ---BOUNDARY-- -""" - msg = Parser().parsestr(text) - self.ndiffAssertEqual(text, msg.as_string()) - - def test_no_parts_in_a_multipart_with_none_epilogue(self): - outer = MIMEBase('multipart', 'mixed') - outer['Subject'] = 'A subject' - outer['To'] = 'aperson at dom.ain' - outer['From'] = 'bperson at dom.ain' - outer.set_boundary('BOUNDARY') - self.ndiffAssertEqual(outer.as_string(), '''\ -Content-Type: multipart/mixed; boundary="BOUNDARY" -MIME-Version: 1.0 -Subject: A subject -To: aperson at dom.ain -From: bperson at dom.ain - ---BOUNDARY - ---BOUNDARY--''') - - def test_no_parts_in_a_multipart_with_empty_epilogue(self): - outer = MIMEBase('multipart', 'mixed') - outer['Subject'] = 'A subject' - outer['To'] = 'aperson at dom.ain' - outer['From'] = 'bperson at dom.ain' - outer.preamble = '' - outer.epilogue = '' - outer.set_boundary('BOUNDARY') - self.ndiffAssertEqual(outer.as_string(), '''\ -Content-Type: multipart/mixed; boundary="BOUNDARY" -MIME-Version: 1.0 -Subject: A subject -To: aperson at dom.ain -From: bperson at dom.ain - - ---BOUNDARY - ---BOUNDARY-- -''') - - def test_one_part_in_a_multipart(self): - eq = self.ndiffAssertEqual - outer = MIMEBase('multipart', 'mixed') - outer['Subject'] = 'A subject' - outer['To'] = 'aperson at dom.ain' - outer['From'] = 'bperson at dom.ain' - outer.set_boundary('BOUNDARY') - msg = MIMEText('hello world') - outer.attach(msg) - eq(outer.as_string(), '''\ -Content-Type: multipart/mixed; boundary="BOUNDARY" -MIME-Version: 1.0 -Subject: A subject -To: aperson at dom.ain -From: bperson at dom.ain - ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit - -hello world ---BOUNDARY--''') - - def test_seq_parts_in_a_multipart_with_empty_preamble(self): - eq = self.ndiffAssertEqual - outer = MIMEBase('multipart', 'mixed') - outer['Subject'] = 'A subject' - outer['To'] = 'aperson at dom.ain' - outer['From'] = 'bperson at dom.ain' - outer.preamble = '' - msg = MIMEText('hello world') - outer.attach(msg) - outer.set_boundary('BOUNDARY') - eq(outer.as_string(), '''\ -Content-Type: multipart/mixed; boundary="BOUNDARY" -MIME-Version: 1.0 -Subject: A subject -To: aperson at dom.ain -From: bperson at dom.ain - - ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit - -hello world ---BOUNDARY--''') - - - def test_seq_parts_in_a_multipart_with_none_preamble(self): - eq = self.ndiffAssertEqual - outer = MIMEBase('multipart', 'mixed') - outer['Subject'] = 'A subject' - outer['To'] = 'aperson at dom.ain' - outer['From'] = 'bperson at dom.ain' - outer.preamble = None - msg = MIMEText('hello world') - outer.attach(msg) - outer.set_boundary('BOUNDARY') - eq(outer.as_string(), '''\ -Content-Type: multipart/mixed; boundary="BOUNDARY" -MIME-Version: 1.0 -Subject: A subject -To: aperson at dom.ain -From: bperson at dom.ain - ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit - -hello world ---BOUNDARY--''') - - - def test_seq_parts_in_a_multipart_with_none_epilogue(self): - eq = self.ndiffAssertEqual - outer = MIMEBase('multipart', 'mixed') - outer['Subject'] = 'A subject' - outer['To'] = 'aperson at dom.ain' - outer['From'] = 'bperson at dom.ain' - outer.epilogue = None - msg = MIMEText('hello world') - outer.attach(msg) - outer.set_boundary('BOUNDARY') - eq(outer.as_string(), '''\ -Content-Type: multipart/mixed; boundary="BOUNDARY" -MIME-Version: 1.0 -Subject: A subject -To: aperson at dom.ain -From: bperson at dom.ain - ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit - -hello world ---BOUNDARY--''') - - - def test_seq_parts_in_a_multipart_with_empty_epilogue(self): - eq = self.ndiffAssertEqual - outer = MIMEBase('multipart', 'mixed') - outer['Subject'] = 'A subject' - outer['To'] = 'aperson at dom.ain' - outer['From'] = 'bperson at dom.ain' - outer.epilogue = '' - msg = MIMEText('hello world') - outer.attach(msg) - outer.set_boundary('BOUNDARY') - eq(outer.as_string(), '''\ -Content-Type: multipart/mixed; boundary="BOUNDARY" -MIME-Version: 1.0 -Subject: A subject -To: aperson at dom.ain -From: bperson at dom.ain - ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit - -hello world ---BOUNDARY-- -''') - - - def test_seq_parts_in_a_multipart_with_nl_epilogue(self): - eq = self.ndiffAssertEqual - outer = MIMEBase('multipart', 'mixed') - outer['Subject'] = 'A subject' - outer['To'] = 'aperson at dom.ain' - outer['From'] = 'bperson at dom.ain' - outer.epilogue = '\n' - msg = MIMEText('hello world') - outer.attach(msg) - outer.set_boundary('BOUNDARY') - eq(outer.as_string(), '''\ -Content-Type: multipart/mixed; boundary="BOUNDARY" -MIME-Version: 1.0 -Subject: A subject -To: aperson at dom.ain -From: bperson at dom.ain - ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit - -hello world ---BOUNDARY-- - -''') - - def test_message_external_body(self): - eq = self.assertEqual - msg = self._msgobj('msg_36.txt') - eq(len(msg.get_payload()), 2) - msg1 = msg.get_payload(1) - eq(msg1.get_content_type(), 'multipart/alternative') - eq(len(msg1.get_payload()), 2) - for subpart in msg1.get_payload(): - eq(subpart.get_content_type(), 'message/external-body') - eq(len(subpart.get_payload()), 1) - subsubpart = subpart.get_payload(0) - eq(subsubpart.get_content_type(), 'text/plain') - - def test_double_boundary(self): - # msg_37.txt is a multipart that contains two dash-boundary's in a - # row. Our interpretation of RFC 2046 calls for ignoring the second - # and subsequent boundaries. - msg = self._msgobj('msg_37.txt') - self.assertEqual(len(msg.get_payload()), 3) - - def test_nested_inner_contains_outer_boundary(self): - eq = self.ndiffAssertEqual - # msg_38.txt has an inner part that contains outer boundaries. My - # interpretation of RFC 2046 (based on sections 5.1 and 5.1.2) say - # these are illegal and should be interpreted as unterminated inner - # parts. - msg = self._msgobj('msg_38.txt') - sfp = StringIO() - iterators._structure(msg, sfp) - eq(sfp.getvalue(), """\ -multipart/mixed - multipart/mixed - multipart/alternative - text/plain - text/plain - text/plain - text/plain -""") - - def test_nested_with_same_boundary(self): - eq = self.ndiffAssertEqual - # msg 39.txt is similarly evil in that it's got inner parts that use - # the same boundary as outer parts. Again, I believe the way this is - # parsed is closest to the spirit of RFC 2046 - msg = self._msgobj('msg_39.txt') - sfp = StringIO() - iterators._structure(msg, sfp) - eq(sfp.getvalue(), """\ -multipart/mixed - multipart/mixed - multipart/alternative - application/octet-stream - application/octet-stream - text/plain -""") - - def test_boundary_in_non_multipart(self): - msg = self._msgobj('msg_40.txt') - self.assertEqual(msg.as_string(), '''\ -MIME-Version: 1.0 -Content-Type: text/html; boundary="--961284236552522269" - -----961284236552522269 -Content-Type: text/html; -Content-Transfer-Encoding: 7Bit - - - -----961284236552522269-- -''') - - def test_boundary_with_leading_space(self): - eq = self.assertEqual - msg = email.message_from_string('''\ -MIME-Version: 1.0 -Content-Type: multipart/mixed; boundary=" XXXX" - --- XXXX -Content-Type: text/plain - - --- XXXX -Content-Type: text/plain - --- XXXX-- -''') - self.assertTrue(msg.is_multipart()) - eq(msg.get_boundary(), ' XXXX') - eq(len(msg.get_payload()), 2) - - def test_boundary_without_trailing_newline(self): - m = Parser().parsestr("""\ -Content-Type: multipart/mixed; boundary="===============0012394164==" -MIME-Version: 1.0 - ---===============0012394164== -Content-Type: image/file1.jpg -MIME-Version: 1.0 -Content-Transfer-Encoding: base64 - -YXNkZg== ---===============0012394164==--""") - self.assertEqual(m.get_payload(0).get_payload(), 'YXNkZg==') - - - -# Test some badly formatted messages -class TestNonConformant(TestEmailBase): - def test_parse_missing_minor_type(self): - eq = self.assertEqual - msg = self._msgobj('msg_14.txt') - eq(msg.get_content_type(), 'text/plain') - eq(msg.get_content_maintype(), 'text') - eq(msg.get_content_subtype(), 'plain') - - def test_same_boundary_inner_outer(self): - unless = self.assertTrue - msg = self._msgobj('msg_15.txt') - # XXX We can probably eventually do better - inner = msg.get_payload(0) - unless(hasattr(inner, 'defects')) - self.assertEqual(len(inner.defects), 1) - unless(isinstance(inner.defects[0], - errors.StartBoundaryNotFoundDefect)) - - def test_multipart_no_boundary(self): - unless = self.assertTrue - msg = self._msgobj('msg_25.txt') - unless(isinstance(msg.get_payload(), str)) - self.assertEqual(len(msg.defects), 2) - unless(isinstance(msg.defects[0], errors.NoBoundaryInMultipartDefect)) - unless(isinstance(msg.defects[1], - errors.MultipartInvariantViolationDefect)) - - def test_invalid_content_type(self): - eq = self.assertEqual - neq = self.ndiffAssertEqual - msg = Message() - # RFC 2045, $5.2 says invalid yields text/plain - msg['Content-Type'] = 'text' - eq(msg.get_content_maintype(), 'text') - eq(msg.get_content_subtype(), 'plain') - eq(msg.get_content_type(), 'text/plain') - # Clear the old value and try something /really/ invalid - del msg['content-type'] - msg['Content-Type'] = 'foo' - eq(msg.get_content_maintype(), 'text') - eq(msg.get_content_subtype(), 'plain') - eq(msg.get_content_type(), 'text/plain') - # Still, make sure that the message is idempotently generated - s = StringIO() - g = Generator(s) - g.flatten(msg) - neq(s.getvalue(), 'Content-Type: foo\n\n') - - def test_no_start_boundary(self): - eq = self.ndiffAssertEqual - msg = self._msgobj('msg_31.txt') - eq(msg.get_payload(), """\ ---BOUNDARY -Content-Type: text/plain - -message 1 - ---BOUNDARY -Content-Type: text/plain - -message 2 - ---BOUNDARY-- -""") - - def test_no_separating_blank_line(self): - eq = self.ndiffAssertEqual - msg = self._msgobj('msg_35.txt') - eq(msg.as_string(), """\ -From: aperson at dom.ain -To: bperson at dom.ain -Subject: here's something interesting - -counter to RFC 2822, there's no separating newline here -""") - - def test_lying_multipart(self): - unless = self.assertTrue - msg = self._msgobj('msg_41.txt') - unless(hasattr(msg, 'defects')) - self.assertEqual(len(msg.defects), 2) - unless(isinstance(msg.defects[0], errors.NoBoundaryInMultipartDefect)) - unless(isinstance(msg.defects[1], - errors.MultipartInvariantViolationDefect)) - - def test_missing_start_boundary(self): - outer = self._msgobj('msg_42.txt') - # The message structure is: - # - # multipart/mixed - # text/plain - # message/rfc822 - # multipart/mixed [*] - # - # [*] This message is missing its start boundary - bad = outer.get_payload(1).get_payload(0) - self.assertEqual(len(bad.defects), 1) - self.assertTrue(isinstance(bad.defects[0], - errors.StartBoundaryNotFoundDefect)) - - def test_first_line_is_continuation_header(self): - eq = self.assertEqual - m = ' Line 1\nLine 2\nLine 3' - msg = email.message_from_string(m) - eq(msg.keys(), []) - eq(msg.get_payload(), 'Line 2\nLine 3') - eq(len(msg.defects), 1) - self.assertTrue(isinstance(msg.defects[0], - errors.FirstHeaderLineIsContinuationDefect)) - eq(msg.defects[0].line, ' Line 1\n') - - - -# Test RFC 2047 header encoding and decoding -class TestRFC2047(TestEmailBase): - def test_rfc2047_multiline(self): - eq = self.assertEqual - s = """Re: =?mac-iceland?q?r=8Aksm=9Arg=8Cs?= baz - foo bar =?mac-iceland?q?r=8Aksm=9Arg=8Cs?=""" - dh = decode_header(s) - eq(dh, [ - (b'Re:', None), - (b'r\x8aksm\x9arg\x8cs', 'mac-iceland'), - (b'baz foo bar', None), - (b'r\x8aksm\x9arg\x8cs', 'mac-iceland')]) - header = make_header(dh) - eq(str(header), - 'Re: r\xe4ksm\xf6rg\xe5s baz foo bar r\xe4ksm\xf6rg\xe5s') - self.ndiffAssertEqual(header.encode(maxlinelen=76), """\ -Re: =?mac-iceland?q?r=8Aksm=9Arg=8Cs?= baz foo bar =?mac-iceland?q?r=8Aksm?= - =?mac-iceland?q?=9Arg=8Cs?=""") - - def test_whitespace_eater_unicode(self): - eq = self.assertEqual - s = '=?ISO-8859-1?Q?Andr=E9?= Pirard ' - dh = decode_header(s) - eq(dh, [(b'Andr\xe9', 'iso-8859-1'), - (b'Pirard ', None)]) - header = str(make_header(dh)) - eq(header, 'Andr\xe9 Pirard ') - - def test_whitespace_eater_unicode_2(self): - eq = self.assertEqual - s = 'The =?iso-8859-1?b?cXVpY2sgYnJvd24gZm94?= jumped over the =?iso-8859-1?b?bGF6eSBkb2c=?=' - dh = decode_header(s) - eq(dh, [(b'The', None), (b'quick brown fox', 'iso-8859-1'), - (b'jumped over the', None), (b'lazy dog', 'iso-8859-1')]) - hu = str(make_header(dh)) - eq(hu, 'The quick brown fox jumped over the lazy dog') - - def test_rfc2047_missing_whitespace(self): - s = 'Sm=?ISO-8859-1?B?9g==?=rg=?ISO-8859-1?B?5Q==?=sbord' - dh = decode_header(s) - self.assertEqual(dh, [(s, None)]) - - def test_rfc2047_with_whitespace(self): - s = 'Sm =?ISO-8859-1?B?9g==?= rg =?ISO-8859-1?B?5Q==?= sbord' - dh = decode_header(s) - self.assertEqual(dh, [(b'Sm', None), (b'\xf6', 'iso-8859-1'), - (b'rg', None), (b'\xe5', 'iso-8859-1'), - (b'sbord', None)]) - - def test_rfc2047_B_bad_padding(self): - s = '=?iso-8859-1?B?%s?=' - data = [ # only test complete bytes - ('dm==', b'v'), ('dm=', b'v'), ('dm', b'v'), - ('dmk=', b'vi'), ('dmk', b'vi') - ] - for q, a in data: - dh = decode_header(s % q) - self.assertEqual(dh, [(a, 'iso-8859-1')]) - - def test_rfc2047_Q_invalid_digits(self): - # issue 10004. - s = '=?iso-8659-1?Q?andr=e9=zz?=' - self.assertEqual(decode_header(s), - [(b'andr\xe9=zz', 'iso-8659-1')]) - - -# Test the MIMEMessage class -class TestMIMEMessage(TestEmailBase): - def setUp(self): - with openfile('msg_11.txt') as fp: - self._text = fp.read() - - def test_type_error(self): - self.assertRaises(TypeError, MIMEMessage, 'a plain string') - - def test_valid_argument(self): - eq = self.assertEqual - unless = self.assertTrue - subject = 'A sub-message' - m = Message() - m['Subject'] = subject - r = MIMEMessage(m) - eq(r.get_content_type(), 'message/rfc822') - payload = r.get_payload() - unless(isinstance(payload, list)) - eq(len(payload), 1) - subpart = payload[0] - unless(subpart is m) - eq(subpart['subject'], subject) - - def test_bad_multipart(self): - eq = self.assertEqual - msg1 = Message() - msg1['Subject'] = 'subpart 1' - msg2 = Message() - msg2['Subject'] = 'subpart 2' - r = MIMEMessage(msg1) - self.assertRaises(errors.MultipartConversionError, r.attach, msg2) - - def test_generate(self): - # First craft the message to be encapsulated - m = Message() - m['Subject'] = 'An enclosed message' - m.set_payload('Here is the body of the message.\n') - r = MIMEMessage(m) - r['Subject'] = 'The enclosing message' - s = StringIO() - g = Generator(s) - g.flatten(r) - self.assertEqual(s.getvalue(), """\ -Content-Type: message/rfc822 -MIME-Version: 1.0 -Subject: The enclosing message - -Subject: An enclosed message - -Here is the body of the message. -""") - - def test_parse_message_rfc822(self): - eq = self.assertEqual - unless = self.assertTrue - msg = self._msgobj('msg_11.txt') - eq(msg.get_content_type(), 'message/rfc822') - payload = msg.get_payload() - unless(isinstance(payload, list)) - eq(len(payload), 1) - submsg = payload[0] - self.assertTrue(isinstance(submsg, Message)) - eq(submsg['subject'], 'An enclosed message') - eq(submsg.get_payload(), 'Here is the body of the message.\n') - - def test_dsn(self): - eq = self.assertEqual - unless = self.assertTrue - # msg 16 is a Delivery Status Notification, see RFC 1894 - msg = self._msgobj('msg_16.txt') - eq(msg.get_content_type(), 'multipart/report') - unless(msg.is_multipart()) - eq(len(msg.get_payload()), 3) - # Subpart 1 is a text/plain, human readable section - subpart = msg.get_payload(0) - eq(subpart.get_content_type(), 'text/plain') - eq(subpart.get_payload(), """\ -This report relates to a message you sent with the following header fields: - - Message-id: <002001c144a6$8752e060$56104586 at oxy.edu> - Date: Sun, 23 Sep 2001 20:10:55 -0700 - From: "Ian T. Henry" - To: SoCal Raves - Subject: [scr] yeah for Ians!! - -Your message cannot be delivered to the following recipients: - - Recipient address: jangel1 at cougar.noc.ucla.edu - Reason: recipient reached disk quota - -""") - # Subpart 2 contains the machine parsable DSN information. It - # consists of two blocks of headers, represented by two nested Message - # objects. - subpart = msg.get_payload(1) - eq(subpart.get_content_type(), 'message/delivery-status') - eq(len(subpart.get_payload()), 2) - # message/delivery-status should treat each block as a bunch of - # headers, i.e. a bunch of Message objects. - dsn1 = subpart.get_payload(0) - unless(isinstance(dsn1, Message)) - eq(dsn1['original-envelope-id'], '0GK500B4HD0888 at cougar.noc.ucla.edu') - eq(dsn1.get_param('dns', header='reporting-mta'), '') - # Try a missing one - eq(dsn1.get_param('nsd', header='reporting-mta'), None) - dsn2 = subpart.get_payload(1) - unless(isinstance(dsn2, Message)) - eq(dsn2['action'], 'failed') - eq(dsn2.get_params(header='original-recipient'), - [('rfc822', ''), ('jangel1 at cougar.noc.ucla.edu', '')]) - eq(dsn2.get_param('rfc822', header='final-recipient'), '') - # Subpart 3 is the original message - subpart = msg.get_payload(2) - eq(subpart.get_content_type(), 'message/rfc822') - payload = subpart.get_payload() - unless(isinstance(payload, list)) - eq(len(payload), 1) - subsubpart = payload[0] - unless(isinstance(subsubpart, Message)) - eq(subsubpart.get_content_type(), 'text/plain') - eq(subsubpart['message-id'], - '<002001c144a6$8752e060$56104586 at oxy.edu>') - - def test_epilogue(self): - eq = self.ndiffAssertEqual - with openfile('msg_21.txt') as fp: - text = fp.read() - msg = Message() - msg['From'] = 'aperson at dom.ain' - msg['To'] = 'bperson at dom.ain' - msg['Subject'] = 'Test' - msg.preamble = 'MIME message' - msg.epilogue = 'End of MIME message\n' - msg1 = MIMEText('One') - msg2 = MIMEText('Two') - msg.add_header('Content-Type', 'multipart/mixed', boundary='BOUNDARY') - msg.attach(msg1) - msg.attach(msg2) - sfp = StringIO() - g = Generator(sfp) - g.flatten(msg) - eq(sfp.getvalue(), text) - - def test_no_nl_preamble(self): - eq = self.ndiffAssertEqual - msg = Message() - msg['From'] = 'aperson at dom.ain' - msg['To'] = 'bperson at dom.ain' - msg['Subject'] = 'Test' - msg.preamble = 'MIME message' - msg.epilogue = '' - msg1 = MIMEText('One') - msg2 = MIMEText('Two') - msg.add_header('Content-Type', 'multipart/mixed', boundary='BOUNDARY') - msg.attach(msg1) - msg.attach(msg2) - eq(msg.as_string(), """\ -From: aperson at dom.ain -To: bperson at dom.ain -Subject: Test -Content-Type: multipart/mixed; boundary="BOUNDARY" - -MIME message ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit - -One ---BOUNDARY -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit - -Two ---BOUNDARY-- -""") - - def test_default_type(self): - eq = self.assertEqual - with openfile('msg_30.txt') as fp: - msg = email.message_from_file(fp) - container1 = msg.get_payload(0) - eq(container1.get_default_type(), 'message/rfc822') - eq(container1.get_content_type(), 'message/rfc822') - container2 = msg.get_payload(1) - eq(container2.get_default_type(), 'message/rfc822') - eq(container2.get_content_type(), 'message/rfc822') - container1a = container1.get_payload(0) - eq(container1a.get_default_type(), 'text/plain') - eq(container1a.get_content_type(), 'text/plain') - container2a = container2.get_payload(0) - eq(container2a.get_default_type(), 'text/plain') - eq(container2a.get_content_type(), 'text/plain') - - def test_default_type_with_explicit_container_type(self): - eq = self.assertEqual - with openfile('msg_28.txt') as fp: - msg = email.message_from_file(fp) - container1 = msg.get_payload(0) - eq(container1.get_default_type(), 'message/rfc822') - eq(container1.get_content_type(), 'message/rfc822') - container2 = msg.get_payload(1) - eq(container2.get_default_type(), 'message/rfc822') - eq(container2.get_content_type(), 'message/rfc822') - container1a = container1.get_payload(0) - eq(container1a.get_default_type(), 'text/plain') - eq(container1a.get_content_type(), 'text/plain') - container2a = container2.get_payload(0) - eq(container2a.get_default_type(), 'text/plain') - eq(container2a.get_content_type(), 'text/plain') - - def test_default_type_non_parsed(self): - eq = self.assertEqual - neq = self.ndiffAssertEqual - # Set up container - container = MIMEMultipart('digest', 'BOUNDARY') - container.epilogue = '' - # Set up subparts - subpart1a = MIMEText('message 1\n') - subpart2a = MIMEText('message 2\n') - subpart1 = MIMEMessage(subpart1a) - subpart2 = MIMEMessage(subpart2a) - container.attach(subpart1) - container.attach(subpart2) - eq(subpart1.get_content_type(), 'message/rfc822') - eq(subpart1.get_default_type(), 'message/rfc822') - eq(subpart2.get_content_type(), 'message/rfc822') - eq(subpart2.get_default_type(), 'message/rfc822') - neq(container.as_string(0), '''\ -Content-Type: multipart/digest; boundary="BOUNDARY" -MIME-Version: 1.0 - ---BOUNDARY -Content-Type: message/rfc822 -MIME-Version: 1.0 - -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit - -message 1 - ---BOUNDARY -Content-Type: message/rfc822 -MIME-Version: 1.0 - -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit - -message 2 - ---BOUNDARY-- -''') - del subpart1['content-type'] - del subpart1['mime-version'] - del subpart2['content-type'] - del subpart2['mime-version'] - eq(subpart1.get_content_type(), 'message/rfc822') - eq(subpart1.get_default_type(), 'message/rfc822') - eq(subpart2.get_content_type(), 'message/rfc822') - eq(subpart2.get_default_type(), 'message/rfc822') - neq(container.as_string(0), '''\ -Content-Type: multipart/digest; boundary="BOUNDARY" -MIME-Version: 1.0 - ---BOUNDARY - -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit - -message 1 - ---BOUNDARY - -Content-Type: text/plain; charset="us-ascii" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit - -message 2 - ---BOUNDARY-- -''') - - def test_mime_attachments_in_constructor(self): - eq = self.assertEqual - text1 = MIMEText('') - text2 = MIMEText('') - msg = MIMEMultipart(_subparts=(text1, text2)) - eq(len(msg.get_payload()), 2) - eq(msg.get_payload(0), text1) - eq(msg.get_payload(1), text2) - - def test_default_multipart_constructor(self): - msg = MIMEMultipart() - self.assertTrue(msg.is_multipart()) - - -# A general test of parser->model->generator idempotency. IOW, read a message -# in, parse it into a message object tree, then without touching the tree, -# regenerate the plain text. The original text and the transformed text -# should be identical. Note: that we ignore the Unix-From since that may -# contain a changed date. -class TestIdempotent(TestEmailBase): - - linesep = '\n' - - def _msgobj(self, filename): - with openfile(filename) as fp: - data = fp.read() - msg = email.message_from_string(data) - return msg, data - - def _idempotent(self, msg, text, unixfrom=False): - eq = self.ndiffAssertEqual - s = StringIO() - g = Generator(s, maxheaderlen=0) - g.flatten(msg, unixfrom=unixfrom) - eq(text, s.getvalue()) - - def test_parse_text_message(self): - eq = self.assertEqual - msg, text = self._msgobj('msg_01.txt') - eq(msg.get_content_type(), 'text/plain') - eq(msg.get_content_maintype(), 'text') - eq(msg.get_content_subtype(), 'plain') - eq(msg.get_params()[1], ('charset', 'us-ascii')) - eq(msg.get_param('charset'), 'us-ascii') - eq(msg.preamble, None) - eq(msg.epilogue, None) - self._idempotent(msg, text) - - def test_parse_untyped_message(self): - eq = self.assertEqual - msg, text = self._msgobj('msg_03.txt') - eq(msg.get_content_type(), 'text/plain') - eq(msg.get_params(), None) - eq(msg.get_param('charset'), None) - self._idempotent(msg, text) - - def test_simple_multipart(self): - msg, text = self._msgobj('msg_04.txt') - self._idempotent(msg, text) - - def test_MIME_digest(self): - msg, text = self._msgobj('msg_02.txt') - self._idempotent(msg, text) - - def test_long_header(self): - msg, text = self._msgobj('msg_27.txt') - self._idempotent(msg, text) - - def test_MIME_digest_with_part_headers(self): - msg, text = self._msgobj('msg_28.txt') - self._idempotent(msg, text) - - def test_mixed_with_image(self): - msg, text = self._msgobj('msg_06.txt') - self._idempotent(msg, text) - - def test_multipart_report(self): - msg, text = self._msgobj('msg_05.txt') - self._idempotent(msg, text) - - def test_dsn(self): - msg, text = self._msgobj('msg_16.txt') - self._idempotent(msg, text) - - def test_preamble_epilogue(self): - msg, text = self._msgobj('msg_21.txt') - self._idempotent(msg, text) - - def test_multipart_one_part(self): - msg, text = self._msgobj('msg_23.txt') - self._idempotent(msg, text) - - def test_multipart_no_parts(self): - msg, text = self._msgobj('msg_24.txt') - self._idempotent(msg, text) - - def test_no_start_boundary(self): - msg, text = self._msgobj('msg_31.txt') - self._idempotent(msg, text) - - def test_rfc2231_charset(self): - msg, text = self._msgobj('msg_32.txt') - self._idempotent(msg, text) - - def test_more_rfc2231_parameters(self): - msg, text = self._msgobj('msg_33.txt') - self._idempotent(msg, text) - - def test_text_plain_in_a_multipart_digest(self): - msg, text = self._msgobj('msg_34.txt') - self._idempotent(msg, text) - - def test_nested_multipart_mixeds(self): - msg, text = self._msgobj('msg_12a.txt') - self._idempotent(msg, text) - - def test_message_external_body_idempotent(self): - msg, text = self._msgobj('msg_36.txt') - self._idempotent(msg, text) - - def test_message_delivery_status(self): - msg, text = self._msgobj('msg_43.txt') - self._idempotent(msg, text, unixfrom=True) - - def test_message_signed_idempotent(self): - msg, text = self._msgobj('msg_45.txt') - self._idempotent(msg, text) - - def test_content_type(self): - eq = self.assertEqual - unless = self.assertTrue - # Get a message object and reset the seek pointer for other tests - msg, text = self._msgobj('msg_05.txt') - eq(msg.get_content_type(), 'multipart/report') - # Test the Content-Type: parameters - params = {} - for pk, pv in msg.get_params(): - params[pk] = pv - eq(params['report-type'], 'delivery-status') - eq(params['boundary'], 'D1690A7AC1.996856090/mail.example.com') - eq(msg.preamble, 'This is a MIME-encapsulated message.' + self.linesep) - eq(msg.epilogue, self.linesep) - eq(len(msg.get_payload()), 3) - # Make sure the subparts are what we expect - msg1 = msg.get_payload(0) - eq(msg1.get_content_type(), 'text/plain') - eq(msg1.get_payload(), 'Yadda yadda yadda' + self.linesep) - msg2 = msg.get_payload(1) - eq(msg2.get_content_type(), 'text/plain') - eq(msg2.get_payload(), 'Yadda yadda yadda' + self.linesep) - msg3 = msg.get_payload(2) - eq(msg3.get_content_type(), 'message/rfc822') - self.assertTrue(isinstance(msg3, Message)) - payload = msg3.get_payload() - unless(isinstance(payload, list)) - eq(len(payload), 1) - msg4 = payload[0] - unless(isinstance(msg4, Message)) - eq(msg4.get_payload(), 'Yadda yadda yadda' + self.linesep) - - def test_parser(self): - eq = self.assertEqual - unless = self.assertTrue - msg, text = self._msgobj('msg_06.txt') - # Check some of the outer headers - eq(msg.get_content_type(), 'message/rfc822') - # Make sure the payload is a list of exactly one sub-Message, and that - # that submessage has a type of text/plain - payload = msg.get_payload() - unless(isinstance(payload, list)) - eq(len(payload), 1) - msg1 = payload[0] - self.assertTrue(isinstance(msg1, Message)) - eq(msg1.get_content_type(), 'text/plain') - self.assertTrue(isinstance(msg1.get_payload(), str)) - eq(msg1.get_payload(), self.linesep) - - - -# Test various other bits of the package's functionality -class TestMiscellaneous(TestEmailBase): - def test_message_from_string(self): - with openfile('msg_01.txt') as fp: - text = fp.read() - msg = email.message_from_string(text) - s = StringIO() - # Don't wrap/continue long headers since we're trying to test - # idempotency. - g = Generator(s, maxheaderlen=0) - g.flatten(msg) - self.assertEqual(text, s.getvalue()) - - def test_message_from_file(self): - with openfile('msg_01.txt') as fp: - text = fp.read() - fp.seek(0) - msg = email.message_from_file(fp) - s = StringIO() - # Don't wrap/continue long headers since we're trying to test - # idempotency. - g = Generator(s, maxheaderlen=0) - g.flatten(msg) - self.assertEqual(text, s.getvalue()) - - def test_message_from_string_with_class(self): - unless = self.assertTrue - with openfile('msg_01.txt') as fp: - text = fp.read() - - # Create a subclass - class MyMessage(Message): - pass - - msg = email.message_from_string(text, MyMessage) - unless(isinstance(msg, MyMessage)) - # Try something more complicated - with openfile('msg_02.txt') as fp: - text = fp.read() - msg = email.message_from_string(text, MyMessage) - for subpart in msg.walk(): - unless(isinstance(subpart, MyMessage)) - - def test_message_from_file_with_class(self): - unless = self.assertTrue - # Create a subclass - class MyMessage(Message): - pass - - with openfile('msg_01.txt') as fp: - msg = email.message_from_file(fp, MyMessage) - unless(isinstance(msg, MyMessage)) - # Try something more complicated - with openfile('msg_02.txt') as fp: - msg = email.message_from_file(fp, MyMessage) - for subpart in msg.walk(): - unless(isinstance(subpart, MyMessage)) - - def test__all__(self): - module = __import__('email') - # Can't use sorted() here due to Python 2.3 compatibility - all = module.__all__[:] - all.sort() - self.assertEqual(all, [ - 'base64mime', 'charset', 'encoders', 'errors', 'generator', - 'header', 'iterators', 'message', 'message_from_binary_file', - 'message_from_bytes', 'message_from_file', - 'message_from_string', 'mime', 'parser', - 'quoprimime', 'utils', - ]) - - def test_formatdate(self): - now = time.time() - self.assertEqual(utils.parsedate(utils.formatdate(now))[:6], - time.gmtime(now)[:6]) - - def test_formatdate_localtime(self): - now = time.time() - self.assertEqual( - utils.parsedate(utils.formatdate(now, localtime=True))[:6], - time.localtime(now)[:6]) - - def test_formatdate_usegmt(self): - now = time.time() - self.assertEqual( - utils.formatdate(now, localtime=False), - time.strftime('%a, %d %b %Y %H:%M:%S -0000', time.gmtime(now))) - self.assertEqual( - utils.formatdate(now, localtime=False, usegmt=True), - time.strftime('%a, %d %b %Y %H:%M:%S GMT', time.gmtime(now))) - - def test_parsedate_none(self): - self.assertEqual(utils.parsedate(''), None) - - def test_parsedate_compact(self): - # The FWS after the comma is optional - self.assertEqual(utils.parsedate('Wed,3 Apr 2002 14:58:26 +0800'), - utils.parsedate('Wed, 3 Apr 2002 14:58:26 +0800')) - - def test_parsedate_no_dayofweek(self): - eq = self.assertEqual - eq(utils.parsedate_tz('25 Feb 2003 13:47:26 -0800'), - (2003, 2, 25, 13, 47, 26, 0, 1, -1, -28800)) - - def test_parsedate_compact_no_dayofweek(self): - eq = self.assertEqual - eq(utils.parsedate_tz('5 Feb 2003 13:47:26 -0800'), - (2003, 2, 5, 13, 47, 26, 0, 1, -1, -28800)) - - def test_parsedate_no_space_before_positive_offset(self): - self.assertEqual(utils.parsedate_tz('Wed, 3 Apr 2002 14:58:26+0800'), - (2002, 4, 3, 14, 58, 26, 0, 1, -1, 28800)) - - def test_parsedate_no_space_before_negative_offset(self): - # Issue 1155362: we already handled '+' for this case. - self.assertEqual(utils.parsedate_tz('Wed, 3 Apr 2002 14:58:26-0800'), - (2002, 4, 3, 14, 58, 26, 0, 1, -1, -28800)) - - - def test_parsedate_accepts_time_with_dots(self): - eq = self.assertEqual - eq(utils.parsedate_tz('5 Feb 2003 13.47.26 -0800'), - (2003, 2, 5, 13, 47, 26, 0, 1, -1, -28800)) - eq(utils.parsedate_tz('5 Feb 2003 13.47 -0800'), - (2003, 2, 5, 13, 47, 0, 0, 1, -1, -28800)) - - def test_parsedate_acceptable_to_time_functions(self): - eq = self.assertEqual - timetup = utils.parsedate('5 Feb 2003 13:47:26 -0800') - t = int(time.mktime(timetup)) - eq(time.localtime(t)[:6], timetup[:6]) - eq(int(time.strftime('%Y', timetup)), 2003) - timetup = utils.parsedate_tz('5 Feb 2003 13:47:26 -0800') - t = int(time.mktime(timetup[:9])) - eq(time.localtime(t)[:6], timetup[:6]) - eq(int(time.strftime('%Y', timetup[:9])), 2003) - - def test_parsedate_y2k(self): - """Test for parsing a date with a two-digit year. - - Parsing a date with a two-digit year should return the correct - four-digit year. RFC822 allows two-digit years, but RFC2822 (which - obsoletes RFC822) requires four-digit years. - - """ - self.assertEqual(utils.parsedate_tz('25 Feb 03 13:47:26 -0800'), - utils.parsedate_tz('25 Feb 2003 13:47:26 -0800')) - self.assertEqual(utils.parsedate_tz('25 Feb 71 13:47:26 -0800'), - utils.parsedate_tz('25 Feb 1971 13:47:26 -0800')) - - def test_parseaddr_empty(self): - self.assertEqual(utils.parseaddr('<>'), ('', '')) - self.assertEqual(utils.formataddr(utils.parseaddr('<>')), '') - - def test_noquote_dump(self): - self.assertEqual( - utils.formataddr(('A Silly Person', 'person at dom.ain')), - 'A Silly Person ') - - def test_escape_dump(self): - self.assertEqual( - utils.formataddr(('A (Very) Silly Person', 'person at dom.ain')), - r'"A \(Very\) Silly Person" ') - a = r'A \(Special\) Person' - b = 'person at dom.ain' - self.assertEqual(utils.parseaddr(utils.formataddr((a, b))), (a, b)) - - def test_escape_backslashes(self): - self.assertEqual( - utils.formataddr(('Arthur \Backslash\ Foobar', 'person at dom.ain')), - r'"Arthur \\Backslash\\ Foobar" ') - a = r'Arthur \Backslash\ Foobar' - b = 'person at dom.ain' - self.assertEqual(utils.parseaddr(utils.formataddr((a, b))), (a, b)) - - def test_name_with_dot(self): - x = 'John X. Doe ' - y = '"John X. Doe" ' - a, b = ('John X. Doe', 'jxd at example.com') - self.assertEqual(utils.parseaddr(x), (a, b)) - self.assertEqual(utils.parseaddr(y), (a, b)) - # formataddr() quotes the name if there's a dot in it - self.assertEqual(utils.formataddr((a, b)), y) - - def test_parseaddr_preserves_quoted_pairs_in_addresses(self): - # issue 10005. Note that in the third test the second pair of - # backslashes is not actually a quoted pair because it is not inside a - # comment or quoted string: the address being parsed has a quoted - # string containing a quoted backslash, followed by 'example' and two - # backslashes, followed by another quoted string containing a space and - # the word 'example'. parseaddr copies those two backslashes - # literally. Per rfc5322 this is not technically correct since a \ may - # not appear in an address outside of a quoted string. It is probably - # a sensible Postel interpretation, though. - eq = self.assertEqual - eq(utils.parseaddr('""example" example"@example.com'), - ('', '""example" example"@example.com')) - eq(utils.parseaddr('"\\"example\\" example"@example.com'), - ('', '"\\"example\\" example"@example.com')) - eq(utils.parseaddr('"\\\\"example\\\\" example"@example.com'), - ('', '"\\\\"example\\\\" example"@example.com')) - - def test_parseaddr_preserves_spaces_in_local_part(self): - # issue 9286. A normal RFC5322 local part should not contain any - # folding white space, but legacy local parts can (they are a sequence - # of atoms, not dotatoms). On the other hand we strip whitespace from - # before the @ and around dots, on the assumption that the whitespace - # around the punctuation is a mistake in what would otherwise be - # an RFC5322 local part. Leading whitespace is, usual, stripped as well. - self.assertEqual(('', "merwok wok at xample.com"), - utils.parseaddr("merwok wok at xample.com")) - self.assertEqual(('', "merwok wok at xample.com"), - utils.parseaddr("merwok wok at xample.com")) - self.assertEqual(('', "merwok wok at xample.com"), - utils.parseaddr(" merwok wok @xample.com")) - self.assertEqual(('', 'merwok"wok" wok at xample.com'), - utils.parseaddr('merwok"wok" wok at xample.com')) - self.assertEqual(('', 'merwok.wok.wok at xample.com'), - utils.parseaddr('merwok. wok . wok at xample.com')) - - def test_multiline_from_comment(self): - x = """\ -Foo -\tBar """ - self.assertEqual(utils.parseaddr(x), ('Foo Bar', 'foo at example.com')) - - def test_quote_dump(self): - self.assertEqual( - utils.formataddr(('A Silly; Person', 'person at dom.ain')), - r'"A Silly; Person" ') - - def test_charset_richcomparisons(self): - eq = self.assertEqual - ne = self.assertNotEqual - cset1 = Charset() - cset2 = Charset() - eq(cset1, 'us-ascii') - eq(cset1, 'US-ASCII') - eq(cset1, 'Us-AsCiI') - eq('us-ascii', cset1) - eq('US-ASCII', cset1) - eq('Us-AsCiI', cset1) - ne(cset1, 'usascii') - ne(cset1, 'USASCII') - ne(cset1, 'UsAsCiI') - ne('usascii', cset1) - ne('USASCII', cset1) - ne('UsAsCiI', cset1) - eq(cset1, cset2) - eq(cset2, cset1) - - def test_getaddresses(self): - eq = self.assertEqual - eq(utils.getaddresses(['aperson at dom.ain (Al Person)', - 'Bud Person ']), - [('Al Person', 'aperson at dom.ain'), - ('Bud Person', 'bperson at dom.ain')]) - - def test_getaddresses_nasty(self): - eq = self.assertEqual - eq(utils.getaddresses(['foo: ;']), [('', '')]) - eq(utils.getaddresses( - ['[]*-- =~$']), - [('', ''), ('', ''), ('', '*--')]) - eq(utils.getaddresses( - ['foo: ;', '"Jason R. Mastaler" ']), - [('', ''), ('Jason R. Mastaler', 'jason at dom.ain')]) - - def test_getaddresses_embedded_comment(self): - """Test proper handling of a nested comment""" - eq = self.assertEqual - addrs = utils.getaddresses(['User ((nested comment)) ']) - eq(addrs[0][1], 'foo at bar.com') - - def test_utils_quote_unquote(self): - eq = self.assertEqual - msg = Message() - msg.add_header('content-disposition', 'attachment', - filename='foo\\wacky"name') - eq(msg.get_filename(), 'foo\\wacky"name') - - def test_get_body_encoding_with_bogus_charset(self): - charset = Charset('not a charset') - self.assertEqual(charset.get_body_encoding(), 'base64') - - def test_get_body_encoding_with_uppercase_charset(self): - eq = self.assertEqual - msg = Message() - msg['Content-Type'] = 'text/plain; charset=UTF-8' - eq(msg['content-type'], 'text/plain; charset=UTF-8') - charsets = msg.get_charsets() - eq(len(charsets), 1) - eq(charsets[0], 'utf-8') - charset = Charset(charsets[0]) - eq(charset.get_body_encoding(), 'base64') - msg.set_payload(b'hello world', charset=charset) - eq(msg.get_payload(), 'aGVsbG8gd29ybGQ=\n') - eq(msg.get_payload(decode=True), b'hello world') - eq(msg['content-transfer-encoding'], 'base64') - # Try another one - msg = Message() - msg['Content-Type'] = 'text/plain; charset="US-ASCII"' - charsets = msg.get_charsets() - eq(len(charsets), 1) - eq(charsets[0], 'us-ascii') - charset = Charset(charsets[0]) - eq(charset.get_body_encoding(), encoders.encode_7or8bit) - msg.set_payload('hello world', charset=charset) - eq(msg.get_payload(), 'hello world') - eq(msg['content-transfer-encoding'], '7bit') - - def test_charsets_case_insensitive(self): - lc = Charset('us-ascii') - uc = Charset('US-ASCII') - self.assertEqual(lc.get_body_encoding(), uc.get_body_encoding()) - - def test_partial_falls_inside_message_delivery_status(self): - eq = self.ndiffAssertEqual - # The Parser interface provides chunks of data to FeedParser in 8192 - # byte gulps. SF bug #1076485 found one of those chunks inside - # message/delivery-status header block, which triggered an - # unreadline() of NeedMoreData. - msg = self._msgobj('msg_43.txt') - sfp = StringIO() - iterators._structure(msg, sfp) - eq(sfp.getvalue(), """\ -multipart/report - text/plain - message/delivery-status - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/plain - text/rfc822-headers -""") - - def test_make_msgid_domain(self): - self.assertEqual( - email.utils.make_msgid(domain='testdomain-string')[-19:], - '@testdomain-string>') - - -# Test the iterator/generators -class TestIterators(TestEmailBase): - def test_body_line_iterator(self): - eq = self.assertEqual - neq = self.ndiffAssertEqual - # First a simple non-multipart message - msg = self._msgobj('msg_01.txt') - it = iterators.body_line_iterator(msg) - lines = list(it) - eq(len(lines), 6) - neq(EMPTYSTRING.join(lines), msg.get_payload()) - # Now a more complicated multipart - msg = self._msgobj('msg_02.txt') - it = iterators.body_line_iterator(msg) - lines = list(it) - eq(len(lines), 43) - with openfile('msg_19.txt') as fp: - neq(EMPTYSTRING.join(lines), fp.read()) - - def test_typed_subpart_iterator(self): - eq = self.assertEqual - msg = self._msgobj('msg_04.txt') - it = iterators.typed_subpart_iterator(msg, 'text') - lines = [] - subparts = 0 - for subpart in it: - subparts += 1 - lines.append(subpart.get_payload()) - eq(subparts, 2) - eq(EMPTYSTRING.join(lines), """\ -a simple kind of mirror -to reflect upon our own -a simple kind of mirror -to reflect upon our own -""") - - def test_typed_subpart_iterator_default_type(self): - eq = self.assertEqual - msg = self._msgobj('msg_03.txt') - it = iterators.typed_subpart_iterator(msg, 'text', 'plain') - lines = [] - subparts = 0 - for subpart in it: - subparts += 1 - lines.append(subpart.get_payload()) - eq(subparts, 1) - eq(EMPTYSTRING.join(lines), """\ - -Hi, - -Do you like this message? - --Me -""") - - def test_pushCR_LF(self): - '''FeedParser BufferedSubFile.push() assumed it received complete - line endings. A CR ending one push() followed by a LF starting - the next push() added an empty line. - ''' - imt = [ - ("a\r \n", 2), - ("b", 0), - ("c\n", 1), - ("", 0), - ("d\r\n", 1), - ("e\r", 0), - ("\nf", 1), - ("\r\n", 1), - ] - from email.feedparser import BufferedSubFile, NeedMoreData - bsf = BufferedSubFile() - om = [] - nt = 0 - for il, n in imt: - bsf.push(il) - nt += n - n1 = 0 - while True: - ol = bsf.readline() - if ol == NeedMoreData: - break - om.append(ol) - n1 += 1 - self.assertTrue(n == n1) - self.assertTrue(len(om) == nt) - self.assertTrue(''.join([il for il, n in imt]) == ''.join(om)) - - - -class TestParsers(TestEmailBase): - def test_header_parser(self): - eq = self.assertEqual - # Parse only the headers of a complex multipart MIME document - with openfile('msg_02.txt') as fp: - msg = HeaderParser().parse(fp) - eq(msg['from'], 'ppp-request at zzz.org') - eq(msg['to'], 'ppp at zzz.org') - eq(msg.get_content_type(), 'multipart/mixed') - self.assertFalse(msg.is_multipart()) - self.assertTrue(isinstance(msg.get_payload(), str)) - - def test_whitespace_continuation(self): - eq = self.assertEqual - # This message contains a line after the Subject: header that has only - # whitespace, but it is not empty! - msg = email.message_from_string("""\ -From: aperson at dom.ain -To: bperson at dom.ain -Subject: the next line has a space on it -\x20 -Date: Mon, 8 Apr 2002 15:09:19 -0400 -Message-ID: spam - -Here's the message body -""") - eq(msg['subject'], 'the next line has a space on it\n ') - eq(msg['message-id'], 'spam') - eq(msg.get_payload(), "Here's the message body\n") - - def test_whitespace_continuation_last_header(self): - eq = self.assertEqual - # Like the previous test, but the subject line is the last - # header. - msg = email.message_from_string("""\ -From: aperson at dom.ain -To: bperson at dom.ain -Date: Mon, 8 Apr 2002 15:09:19 -0400 -Message-ID: spam -Subject: the next line has a space on it -\x20 - -Here's the message body -""") - eq(msg['subject'], 'the next line has a space on it\n ') - eq(msg['message-id'], 'spam') - eq(msg.get_payload(), "Here's the message body\n") - - def test_crlf_separation(self): - eq = self.assertEqual - with openfile('msg_26.txt', newline='\n') as fp: - msg = Parser().parse(fp) - eq(len(msg.get_payload()), 2) - part1 = msg.get_payload(0) - eq(part1.get_content_type(), 'text/plain') - eq(part1.get_payload(), 'Simple email with attachment.\r\n\r\n') - part2 = msg.get_payload(1) - eq(part2.get_content_type(), 'application/riscos') - - def test_crlf_flatten(self): - # Using newline='\n' preserves the crlfs in this input file. - with openfile('msg_26.txt', newline='\n') as fp: - text = fp.read() - msg = email.message_from_string(text) - s = StringIO() - g = Generator(s) - g.flatten(msg, linesep='\r\n') - self.assertEqual(s.getvalue(), text) - - maxDiff = None - - def test_multipart_digest_with_extra_mime_headers(self): - eq = self.assertEqual - neq = self.ndiffAssertEqual - with openfile('msg_28.txt') as fp: - msg = email.message_from_file(fp) - # Structure is: - # multipart/digest - # message/rfc822 - # text/plain - # message/rfc822 - # text/plain - eq(msg.is_multipart(), 1) - eq(len(msg.get_payload()), 2) - part1 = msg.get_payload(0) - eq(part1.get_content_type(), 'message/rfc822') - eq(part1.is_multipart(), 1) - eq(len(part1.get_payload()), 1) - part1a = part1.get_payload(0) - eq(part1a.is_multipart(), 0) - eq(part1a.get_content_type(), 'text/plain') - neq(part1a.get_payload(), 'message 1\n') - # next message/rfc822 - part2 = msg.get_payload(1) - eq(part2.get_content_type(), 'message/rfc822') - eq(part2.is_multipart(), 1) - eq(len(part2.get_payload()), 1) - part2a = part2.get_payload(0) - eq(part2a.is_multipart(), 0) - eq(part2a.get_content_type(), 'text/plain') - neq(part2a.get_payload(), 'message 2\n') - - def test_three_lines(self): - # A bug report by Andrew McNamara - lines = ['From: Andrew Person From', 'From']) - eq(msg.get_payload(), 'body') - - def test_rfc2822_space_not_allowed_in_header(self): - eq = self.assertEqual - m = '>From foo at example.com 11:25:53\nFrom: bar\n!"#QUX;~: zoo\n\nbody' - msg = email.message_from_string(m) - eq(len(msg.keys()), 0) - - def test_rfc2822_one_character_header(self): - eq = self.assertEqual - m = 'A: first header\nB: second header\nCC: third header\n\nbody' - msg = email.message_from_string(m) - headers = msg.keys() - headers.sort() - eq(headers, ['A', 'B', 'CC']) - eq(msg.get_payload(), 'body') - - def test_CRLFLF_at_end_of_part(self): - # issue 5610: feedparser should not eat two chars from body part ending - # with "\r\n\n". - m = ( - "From: foo at bar.com\n" - "To: baz\n" - "Mime-Version: 1.0\n" - "Content-Type: multipart/mixed; boundary=BOUNDARY\n" - "\n" - "--BOUNDARY\n" - "Content-Type: text/plain\n" - "\n" - "body ending with CRLF newline\r\n" - "\n" - "--BOUNDARY--\n" - ) - msg = email.message_from_string(m) - self.assertTrue(msg.get_payload(0).get_payload().endswith('\r\n')) - - -class Test8BitBytesHandling(unittest.TestCase): - # In Python3 all input is string, but that doesn't work if the actual input - # uses an 8bit transfer encoding. To hack around that, in email 5.1 we - # decode byte streams using the surrogateescape error handler, and - # reconvert to binary at appropriate places if we detect surrogates. This - # doesn't allow us to transform headers with 8bit bytes (they get munged), - # but it does allow us to parse and preserve them, and to decode body - # parts that use an 8bit CTE. - - bodytest_msg = textwrap.dedent("""\ - From: foo at bar.com - To: baz - Mime-Version: 1.0 - Content-Type: text/plain; charset={charset} - Content-Transfer-Encoding: {cte} - - {bodyline} - """) - - def test_known_8bit_CTE(self): - m = self.bodytest_msg.format(charset='utf-8', - cte='8bit', - bodyline='p?stal').encode('utf-8') - msg = email.message_from_bytes(m) - self.assertEqual(msg.get_payload(), "p?stal\n") - self.assertEqual(msg.get_payload(decode=True), - "p?stal\n".encode('utf-8')) - - def test_unknown_8bit_CTE(self): - m = self.bodytest_msg.format(charset='notavalidcharset', - cte='8bit', - bodyline='p?stal').encode('utf-8') - msg = email.message_from_bytes(m) - self.assertEqual(msg.get_payload(), "p\uFFFD\uFFFDstal\n") - self.assertEqual(msg.get_payload(decode=True), - "p?stal\n".encode('utf-8')) - - def test_8bit_in_quopri_body(self): - # This is non-RFC compliant data...without 'decode' the library code - # decodes the body using the charset from the headers, and because the - # source byte really is utf-8 this works. This is likely to fail - # against real dirty data (ie: produce mojibake), but the data is - # invalid anyway so it is as good a guess as any. But this means that - # this test just confirms the current behavior; that behavior is not - # necessarily the best possible behavior. With 'decode' it is - # returning the raw bytes, so that test should be of correct behavior, - # or at least produce the same result that email4 did. - m = self.bodytest_msg.format(charset='utf-8', - cte='quoted-printable', - bodyline='p=C3=B6st?l').encode('utf-8') - msg = email.message_from_bytes(m) - self.assertEqual(msg.get_payload(), 'p=C3=B6st?l\n') - self.assertEqual(msg.get_payload(decode=True), - 'p?st?l\n'.encode('utf-8')) - - def test_invalid_8bit_in_non_8bit_cte_uses_replace(self): - # This is similar to the previous test, but proves that if the 8bit - # byte is undecodeable in the specified charset, it gets replaced - # by the unicode 'unknown' character. Again, this may or may not - # be the ideal behavior. Note that if decode=False none of the - # decoders will get involved, so this is the only test we need - # for this behavior. - m = self.bodytest_msg.format(charset='ascii', - cte='quoted-printable', - bodyline='p=C3=B6st?l').encode('utf-8') - msg = email.message_from_bytes(m) - self.assertEqual(msg.get_payload(), 'p=C3=B6st\uFFFD\uFFFDl\n') - self.assertEqual(msg.get_payload(decode=True), - 'p?st?l\n'.encode('utf-8')) - - def test_8bit_in_base64_body(self): - # Sticking an 8bit byte in a base64 block makes it undecodable by - # normal means, so the block is returned undecoded, but as bytes. - m = self.bodytest_msg.format(charset='utf-8', - cte='base64', - bodyline='cMO2c3RhbA?=').encode('utf-8') - msg = email.message_from_bytes(m) - self.assertEqual(msg.get_payload(decode=True), - 'cMO2c3RhbA?=\n'.encode('utf-8')) - - def test_8bit_in_uuencode_body(self): - # Sticking an 8bit byte in a uuencode block makes it undecodable by - # normal means, so the block is returned undecoded, but as bytes. - m = self.bodytest_msg.format(charset='utf-8', - cte='uuencode', - bodyline='<,.V7bit conversion. - self.assertEqual(out.getvalue(), - self.latin_bin_msg.decode('latin-1')+'\n') - - def test_bytes_feedparser(self): - bfp = email.feedparser.BytesFeedParser() - for i in range(0, len(self.latin_bin_msg), 10): - bfp.feed(self.latin_bin_msg[i:i+10]) - m = bfp.close() - self.assertEqual(str(m), self.latin_bin_msg_as7bit) - - def test_crlf_flatten(self): - with openfile('msg_26.txt', 'rb') as fp: - text = fp.read() - msg = email.message_from_bytes(text) - s = BytesIO() - g = email.generator.BytesGenerator(s) - g.flatten(msg, linesep='\r\n') - self.assertEqual(s.getvalue(), text) - maxDiff = None - - -class BaseTestBytesGeneratorIdempotent: - - maxDiff = None - - def _msgobj(self, filename): - with openfile(filename, 'rb') as fp: - data = fp.read() - data = self.normalize_linesep_regex.sub(self.blinesep, data) - msg = email.message_from_bytes(data) - return msg, data - - def _idempotent(self, msg, data, unixfrom=False): - b = BytesIO() - g = email.generator.BytesGenerator(b, maxheaderlen=0) - g.flatten(msg, unixfrom=unixfrom, linesep=self.linesep) - self.assertByteStringsEqual(data, b.getvalue()) - - def assertByteStringsEqual(self, str1, str2): - # Not using self.blinesep here is intentional. This way the output - # is more useful when the failure results in mixed line endings. - self.assertListEqual(str1.split(b'\n'), str2.split(b'\n')) - - -class TestBytesGeneratorIdempotentNL(BaseTestBytesGeneratorIdempotent, - TestIdempotent): - linesep = '\n' - blinesep = b'\n' - normalize_linesep_regex = re.compile(br'\r\n') - - -class TestBytesGeneratorIdempotentCRLF(BaseTestBytesGeneratorIdempotent, - TestIdempotent): - linesep = '\r\n' - blinesep = b'\r\n' - normalize_linesep_regex = re.compile(br'(? -Delivered-To: bbb at zzz.org -Received: by mail.zzz.org (Postfix, from userid 889) -\tid 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT) -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit -Message-ID: <15090.61304.110929.45684 at aaa.zzz.org> -From: bbb at ddd.com (John X. Doe) -To: bbb at zzz.org -Subject: This is a test message -Date: Fri, 4 May 2001 14:05:44 -0400 -Content-Type: text/plain; charset=us-ascii; - title*=us-ascii'en'This%20is%20even%20more%20%2A%2A%2Afun%2A%2A%2A%20isn%27t%20it%21 - - -Hi, - -Do you like this message? - --Me -""") - - def test_del_param(self): - eq = self.ndiffAssertEqual - msg = self._msgobj('msg_01.txt') - msg.set_param('foo', 'bar', charset='us-ascii', language='en') - msg.set_param('title', 'This is even more ***fun*** isn\'t it!', - charset='us-ascii', language='en') - msg.del_param('foo', header='Content-Type') - eq(msg.as_string(maxheaderlen=78), """\ -Return-Path: -Delivered-To: bbb at zzz.org -Received: by mail.zzz.org (Postfix, from userid 889) -\tid 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT) -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit -Message-ID: <15090.61304.110929.45684 at aaa.zzz.org> -From: bbb at ddd.com (John X. Doe) -To: bbb at zzz.org -Subject: This is a test message -Date: Fri, 4 May 2001 14:05:44 -0400 -Content-Type: text/plain; charset="us-ascii"; - title*=us-ascii'en'This%20is%20even%20more%20%2A%2A%2Afun%2A%2A%2A%20isn%27t%20it%21 - - -Hi, - -Do you like this message? - --Me -""") - - def test_rfc2231_get_content_charset(self): - eq = self.assertEqual - msg = self._msgobj('msg_32.txt') - eq(msg.get_content_charset(), 'us-ascii') - - def test_rfc2231_parse_rfc_quoting(self): - m = textwrap.dedent('''\ - Content-Disposition: inline; - \tfilename*0*=''This%20is%20even%20more%20; - \tfilename*1*=%2A%2A%2Afun%2A%2A%2A%20; - \tfilename*2="is it not.pdf" - - ''') - msg = email.message_from_string(m) - self.assertEqual(msg.get_filename(), - 'This is even more ***fun*** is it not.pdf') - self.assertEqual(m, msg.as_string()) - - def test_rfc2231_parse_extra_quoting(self): - m = textwrap.dedent('''\ - Content-Disposition: inline; - \tfilename*0*="''This%20is%20even%20more%20"; - \tfilename*1*="%2A%2A%2Afun%2A%2A%2A%20"; - \tfilename*2="is it not.pdf" - - ''') - msg = email.message_from_string(m) - self.assertEqual(msg.get_filename(), - 'This is even more ***fun*** is it not.pdf') - self.assertEqual(m, msg.as_string()) - - def test_rfc2231_no_language_or_charset(self): - m = '''\ -Content-Transfer-Encoding: 8bit -Content-Disposition: inline; filename="file____C__DOCUMENTS_20AND_20SETTINGS_FABIEN_LOCAL_20SETTINGS_TEMP_nsmail.htm" -Content-Type: text/html; NAME*0=file____C__DOCUMENTS_20AND_20SETTINGS_FABIEN_LOCAL_20SETTINGS_TEM; NAME*1=P_nsmail.htm - -''' - msg = email.message_from_string(m) - param = msg.get_param('NAME') - self.assertFalse(isinstance(param, tuple)) - self.assertEqual( - param, - 'file____C__DOCUMENTS_20AND_20SETTINGS_FABIEN_LOCAL_20SETTINGS_TEMP_nsmail.htm') - - def test_rfc2231_no_language_or_charset_in_filename(self): - m = '''\ -Content-Disposition: inline; -\tfilename*0*="''This%20is%20even%20more%20"; -\tfilename*1*="%2A%2A%2Afun%2A%2A%2A%20"; -\tfilename*2="is it not.pdf" - -''' - msg = email.message_from_string(m) - self.assertEqual(msg.get_filename(), - 'This is even more ***fun*** is it not.pdf') - - def test_rfc2231_no_language_or_charset_in_filename_encoded(self): - m = '''\ -Content-Disposition: inline; -\tfilename*0*="''This%20is%20even%20more%20"; -\tfilename*1*="%2A%2A%2Afun%2A%2A%2A%20"; -\tfilename*2="is it not.pdf" - -''' - msg = email.message_from_string(m) - self.assertEqual(msg.get_filename(), - 'This is even more ***fun*** is it not.pdf') - - def test_rfc2231_partly_encoded(self): - m = '''\ -Content-Disposition: inline; -\tfilename*0="''This%20is%20even%20more%20"; -\tfilename*1*="%2A%2A%2Afun%2A%2A%2A%20"; -\tfilename*2="is it not.pdf" - -''' - msg = email.message_from_string(m) - self.assertEqual( - msg.get_filename(), - 'This%20is%20even%20more%20***fun*** is it not.pdf') - - def test_rfc2231_partly_nonencoded(self): - m = '''\ -Content-Disposition: inline; -\tfilename*0="This%20is%20even%20more%20"; -\tfilename*1="%2A%2A%2Afun%2A%2A%2A%20"; -\tfilename*2="is it not.pdf" - -''' - msg = email.message_from_string(m) - self.assertEqual( - msg.get_filename(), - 'This%20is%20even%20more%20%2A%2A%2Afun%2A%2A%2A%20is it not.pdf') - - def test_rfc2231_no_language_or_charset_in_boundary(self): - m = '''\ -Content-Type: multipart/alternative; -\tboundary*0*="''This%20is%20even%20more%20"; -\tboundary*1*="%2A%2A%2Afun%2A%2A%2A%20"; -\tboundary*2="is it not.pdf" - -''' - msg = email.message_from_string(m) - self.assertEqual(msg.get_boundary(), - 'This is even more ***fun*** is it not.pdf') - - def test_rfc2231_no_language_or_charset_in_charset(self): - # This is a nonsensical charset value, but tests the code anyway - m = '''\ -Content-Type: text/plain; -\tcharset*0*="This%20is%20even%20more%20"; -\tcharset*1*="%2A%2A%2Afun%2A%2A%2A%20"; -\tcharset*2="is it not.pdf" - -''' - msg = email.message_from_string(m) - self.assertEqual(msg.get_content_charset(), - 'this is even more ***fun*** is it not.pdf') - - def test_rfc2231_bad_encoding_in_filename(self): - m = '''\ -Content-Disposition: inline; -\tfilename*0*="bogus'xx'This%20is%20even%20more%20"; -\tfilename*1*="%2A%2A%2Afun%2A%2A%2A%20"; -\tfilename*2="is it not.pdf" - -''' - msg = email.message_from_string(m) - self.assertEqual(msg.get_filename(), - 'This is even more ***fun*** is it not.pdf') - - def test_rfc2231_bad_encoding_in_charset(self): - m = """\ -Content-Type: text/plain; charset*=bogus''utf-8%E2%80%9D - -""" - msg = email.message_from_string(m) - # This should return None because non-ascii characters in the charset - # are not allowed. - self.assertEqual(msg.get_content_charset(), None) - - def test_rfc2231_bad_character_in_charset(self): - m = """\ -Content-Type: text/plain; charset*=ascii''utf-8%E2%80%9D - -""" - msg = email.message_from_string(m) - # This should return None because non-ascii characters in the charset - # are not allowed. - self.assertEqual(msg.get_content_charset(), None) - - def test_rfc2231_bad_character_in_filename(self): - m = '''\ -Content-Disposition: inline; -\tfilename*0*="ascii'xx'This%20is%20even%20more%20"; -\tfilename*1*="%2A%2A%2Afun%2A%2A%2A%20"; -\tfilename*2*="is it not.pdf%E2" - -''' - msg = email.message_from_string(m) - self.assertEqual(msg.get_filename(), - 'This is even more ***fun*** is it not.pdf\ufffd') - - def test_rfc2231_unknown_encoding(self): - m = """\ -Content-Transfer-Encoding: 8bit -Content-Disposition: inline; filename*=X-UNKNOWN''myfile.txt - -""" - msg = email.message_from_string(m) - self.assertEqual(msg.get_filename(), 'myfile.txt') - - def test_rfc2231_single_tick_in_filename_extended(self): - eq = self.assertEqual - m = """\ -Content-Type: application/x-foo; -\tname*0*=\"Frank's\"; name*1*=\" Document\" - -""" - msg = email.message_from_string(m) - charset, language, s = msg.get_param('name') - eq(charset, None) - eq(language, None) - eq(s, "Frank's Document") - - def test_rfc2231_single_tick_in_filename(self): - m = """\ -Content-Type: application/x-foo; name*0=\"Frank's\"; name*1=\" Document\" - -""" - msg = email.message_from_string(m) - param = msg.get_param('name') - self.assertFalse(isinstance(param, tuple)) - self.assertEqual(param, "Frank's Document") - - def test_rfc2231_tick_attack_extended(self): - eq = self.assertEqual - m = """\ -Content-Type: application/x-foo; -\tname*0*=\"us-ascii'en-us'Frank's\"; name*1*=\" Document\" - -""" - msg = email.message_from_string(m) - charset, language, s = msg.get_param('name') - eq(charset, 'us-ascii') - eq(language, 'en-us') - eq(s, "Frank's Document") - - def test_rfc2231_tick_attack(self): - m = """\ -Content-Type: application/x-foo; -\tname*0=\"us-ascii'en-us'Frank's\"; name*1=\" Document\" - -""" - msg = email.message_from_string(m) - param = msg.get_param('name') - self.assertFalse(isinstance(param, tuple)) - self.assertEqual(param, "us-ascii'en-us'Frank's Document") - - def test_rfc2231_no_extended_values(self): - eq = self.assertEqual - m = """\ -Content-Type: application/x-foo; name=\"Frank's Document\" - -""" - msg = email.message_from_string(m) - eq(msg.get_param('name'), "Frank's Document") - - def test_rfc2231_encoded_then_unencoded_segments(self): - eq = self.assertEqual - m = """\ -Content-Type: application/x-foo; -\tname*0*=\"us-ascii'en-us'My\"; -\tname*1=\" Document\"; -\tname*2*=\" For You\" - -""" - msg = email.message_from_string(m) - charset, language, s = msg.get_param('name') - eq(charset, 'us-ascii') - eq(language, 'en-us') - eq(s, 'My Document For You') - - def test_rfc2231_unencoded_then_encoded_segments(self): - eq = self.assertEqual - m = """\ -Content-Type: application/x-foo; -\tname*0=\"us-ascii'en-us'My\"; -\tname*1*=\" Document\"; -\tname*2*=\" For You\" - -""" - msg = email.message_from_string(m) - charset, language, s = msg.get_param('name') - eq(charset, 'us-ascii') - eq(language, 'en-us') - eq(s, 'My Document For You') - - - -# Tests to ensure that signed parts of an email are completely preserved, as -# required by RFC1847 section 2.1. Note that these are incomplete, because the -# email package does not currently always preserve the body. See issue 1670765. -class TestSigned(TestEmailBase): - - def _msg_and_obj(self, filename): - with openfile(findfile(filename)) as fp: - original = fp.read() - msg = email.message_from_string(original) - return original, msg - - def _signed_parts_eq(self, original, result): - # Extract the first mime part of each message - import re - repart = re.compile(r'^--([^\n]+)\n(.*?)\n--\1$', re.S | re.M) - inpart = repart.search(original).group(2) - outpart = repart.search(result).group(2) - self.assertEqual(outpart, inpart) - - def test_long_headers_as_string(self): - original, msg = self._msg_and_obj('msg_45.txt') - result = msg.as_string() - self._signed_parts_eq(original, result) - - def test_long_headers_as_string_maxheaderlen(self): - original, msg = self._msg_and_obj('msg_45.txt') - result = msg.as_string(maxheaderlen=60) - self._signed_parts_eq(original, result) - - def test_long_headers_flatten(self): - original, msg = self._msg_and_obj('msg_45.txt') - fp = StringIO() - Generator(fp).flatten(msg) - result = fp.getvalue() - self._signed_parts_eq(original, result) - - - -def _testclasses(): - mod = sys.modules[__name__] - return [getattr(mod, name) for name in dir(mod) if name.startswith('Test')] - - -def suite(): - suite = unittest.TestSuite() - for testclass in _testclasses(): - suite.addTest(unittest.makeSuite(testclass)) - return suite - - -def test_main(): - for testclass in _testclasses(): - run_unittest(testclass) - - - -if __name__ == '__main__': - unittest.main(defaultTest='suite') diff --git a/Lib/email/test/test_email_codecs.py b/Lib/email/test/test_email_codecs.py deleted file mode 100644 --- a/Lib/email/test/test_email_codecs.py +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright (C) 2002-2006 Python Software Foundation -# Contact: email-sig at python.org -# email package unit tests for (optional) Asian codecs - -import unittest -from test.support import run_unittest - -from email.test.test_email import TestEmailBase -from email.charset import Charset -from email.header import Header, decode_header -from email.message import Message - -# We're compatible with Python 2.3, but it doesn't have the built-in Asian -# codecs, so we have to skip all these tests. -try: - str(b'foo', 'euc-jp') -except LookupError: - raise unittest.SkipTest - - - -class TestEmailAsianCodecs(TestEmailBase): - def test_japanese_codecs(self): - eq = self.ndiffAssertEqual - jcode = "euc-jp" - gcode = "iso-8859-1" - j = Charset(jcode) - g = Charset(gcode) - h = Header("Hello World!") - jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' - b'\xa5\xeb\xa5\xc9\xa1\xaa', jcode) - ghello = str(b'Gr\xfc\xdf Gott!', gcode) - h.append(jhello, j) - h.append(ghello, g) - # BAW: This used to -- and maybe should -- fold the two iso-8859-1 - # chunks into a single encoded word. However it doesn't violate the - # standard to have them as two encoded chunks and maybe it's - # reasonable for each .append() call to result in a separate - # encoded word. - eq(h.encode(), """\ -Hello World! =?iso-2022-jp?b?GyRCJU8lbSE8JW8hPCVrJUkhKhsoQg==?= - =?iso-8859-1?q?Gr=FC=DF_Gott!?=""") - eq(decode_header(h.encode()), - [(b'Hello World!', None), - (b'\x1b$B%O%m!<%o!<%k%I!*\x1b(B', 'iso-2022-jp'), - (b'Gr\xfc\xdf Gott!', gcode)]) - subject_bytes = (b'test-ja \xa4\xd8\xc5\xea\xb9\xc6\xa4\xb5' - b'\xa4\xec\xa4\xbf\xa5\xe1\xa1\xbc\xa5\xeb\xa4\xcf\xbb\xca\xb2' - b'\xf1\xbc\xd4\xa4\xce\xbe\xb5\xc7\xa7\xa4\xf2\xc2\xd4\xa4\xc3' - b'\xa4\xc6\xa4\xa4\xa4\xde\xa4\xb9') - subject = str(subject_bytes, jcode) - h = Header(subject, j, header_name="Subject") - # test a very long header - enc = h.encode() - # TK: splitting point may differ by codec design and/or Header encoding - eq(enc , """\ -=?iso-2022-jp?b?dGVzdC1qYSAbJEIkWEVqOUYkNSRsJD8lYSE8JWskTztKGyhC?= - =?iso-2022-jp?b?GyRCMnE8VCROPjVHJyRyQlQkQyRGJCQkXiQ5GyhC?=""") - # TK: full decode comparison - eq(str(h).encode(jcode), subject_bytes) - - def test_payload_encoding_utf8(self): - jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' - b'\xa5\xeb\xa5\xc9\xa1\xaa', 'euc-jp') - msg = Message() - msg.set_payload(jhello, 'utf-8') - ustr = msg.get_payload(decode=True).decode(msg.get_content_charset()) - self.assertEqual(jhello, ustr) - - def test_payload_encoding(self): - jcode = 'euc-jp' - jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' - b'\xa5\xeb\xa5\xc9\xa1\xaa', jcode) - msg = Message() - msg.set_payload(jhello, jcode) - ustr = msg.get_payload(decode=True).decode(msg.get_content_charset()) - self.assertEqual(jhello, ustr) - - - -def suite(): - suite = unittest.TestSuite() - suite.addTest(unittest.makeSuite(TestEmailAsianCodecs)) - return suite - - -def test_main(): - run_unittest(TestEmailAsianCodecs) - - - -if __name__ == '__main__': - unittest.main(defaultTest='suite') diff --git a/Lib/email/test/test_email_torture.py b/Lib/email/test/test_email_torture.py deleted file mode 100644 --- a/Lib/email/test/test_email_torture.py +++ /dev/null @@ -1,136 +0,0 @@ -# Copyright (C) 2002-2004 Python Software Foundation -# -# A torture test of the email package. This should not be run as part of the -# standard Python test suite since it requires several meg of email messages -# collected in the wild. These source messages are not checked into the -# Python distro, but are available as part of the standalone email package at -# http://sf.net/projects/mimelib - -import sys -import os -import unittest -from io import StringIO -from types import ListType - -from email.test.test_email import TestEmailBase -from test.support import TestSkipped, run_unittest - -import email -from email import __file__ as testfile -from email.iterators import _structure - -def openfile(filename): - from os.path import join, dirname, abspath - path = abspath(join(dirname(testfile), os.pardir, 'moredata', filename)) - return open(path, 'r') - -# Prevent this test from running in the Python distro -try: - openfile('crispin-torture.txt') -except IOError: - raise TestSkipped - - - -class TortureBase(TestEmailBase): - def _msgobj(self, filename): - fp = openfile(filename) - try: - msg = email.message_from_file(fp) - finally: - fp.close() - return msg - - - -class TestCrispinTorture(TortureBase): - # Mark Crispin's torture test from the SquirrelMail project - def test_mondo_message(self): - eq = self.assertEqual - neq = self.ndiffAssertEqual - msg = self._msgobj('crispin-torture.txt') - payload = msg.get_payload() - eq(type(payload), ListType) - eq(len(payload), 12) - eq(msg.preamble, None) - eq(msg.epilogue, '\n') - # Probably the best way to verify the message is parsed correctly is to - # dump its structure and compare it against the known structure. - fp = StringIO() - _structure(msg, fp=fp) - neq(fp.getvalue(), """\ -multipart/mixed - text/plain - message/rfc822 - multipart/alternative - text/plain - multipart/mixed - text/richtext - application/andrew-inset - message/rfc822 - audio/basic - audio/basic - image/pbm - message/rfc822 - multipart/mixed - multipart/mixed - text/plain - audio/x-sun - multipart/mixed - image/gif - image/gif - application/x-be2 - application/atomicmail - audio/x-sun - message/rfc822 - multipart/mixed - text/plain - image/pgm - text/plain - message/rfc822 - multipart/mixed - text/plain - image/pbm - message/rfc822 - application/postscript - image/gif - message/rfc822 - multipart/mixed - audio/basic - audio/basic - message/rfc822 - multipart/mixed - application/postscript - text/plain - message/rfc822 - multipart/mixed - text/plain - multipart/parallel - image/gif - audio/basic - application/atomicmail - message/rfc822 - audio/x-sun -""") - - -def _testclasses(): - mod = sys.modules[__name__] - return [getattr(mod, name) for name in dir(mod) if name.startswith('Test')] - - -def suite(): - suite = unittest.TestSuite() - for testclass in _testclasses(): - suite.addTest(unittest.makeSuite(testclass)) - return suite - - -def test_main(): - for testclass in _testclasses(): - run_unittest(testclass) - - - -if __name__ == '__main__': - unittest.main(defaultTest='suite') diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py deleted file mode 100644 --- a/Lib/test/test_email.py +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright (C) 2001-2007 Python Software Foundation -# email package unit tests - -# The specific tests now live in Lib/email/test -from email.test.test_email import suite -from email.test.test_email_codecs import suite as codecs_suite -from test import support - -def test_main(): - support.run_unittest(suite()) - support.run_unittest(codecs_suite()) - -if __name__ == '__main__': - test_main() diff --git a/Lib/test/test_email/__init__.py b/Lib/test/test_email/__init__.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/__init__.py @@ -0,0 +1,13 @@ +import os +import sys +import unittest +import test.support + +# used by regrtest and __main__. +def test_main(): + here = os.path.dirname(__file__) + # Unittest mucks with the path, so we have to save and restore + # it to keep regrtest happy. + savepath = sys.path[:] + test.support._run_suite(unittest.defaultTestLoader.discover(here)) + sys.path[:] = savepath diff --git a/Lib/test/test_email/__main__.py b/Lib/test/test_email/__main__.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/__main__.py @@ -0,0 +1,3 @@ +from test.test_email import test_main + +test_main() diff --git a/Lib/test/test_email/data/msg_01.txt b/Lib/test/test_email/data/msg_01.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_01.txt @@ -0,0 +1,19 @@ +Return-Path: +Delivered-To: bbb at zzz.org +Received: by mail.zzz.org (Postfix, from userid 889) + id 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT) +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +Content-Transfer-Encoding: 7bit +Message-ID: <15090.61304.110929.45684 at aaa.zzz.org> +From: bbb at ddd.com (John X. Doe) +To: bbb at zzz.org +Subject: This is a test message +Date: Fri, 4 May 2001 14:05:44 -0400 + + +Hi, + +Do you like this message? + +-Me diff --git a/Lib/test/test_email/data/msg_02.txt b/Lib/test/test_email/data/msg_02.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_02.txt @@ -0,0 +1,135 @@ +MIME-version: 1.0 +From: ppp-request at zzz.org +Sender: ppp-admin at zzz.org +To: ppp at zzz.org +Subject: Ppp digest, Vol 1 #2 - 5 msgs +Date: Fri, 20 Apr 2001 20:18:00 -0400 (EDT) +X-Mailer: Mailman v2.0.4 +X-Mailman-Version: 2.0.4 +Content-Type: multipart/mixed; boundary="192.168.1.2.889.32614.987812255.500.21814" + +--192.168.1.2.889.32614.987812255.500.21814 +Content-type: text/plain; charset=us-ascii +Content-description: Masthead (Ppp digest, Vol 1 #2) + +Send Ppp mailing list submissions to + ppp at zzz.org + +To subscribe or unsubscribe via the World Wide Web, visit + http://www.zzz.org/mailman/listinfo/ppp +or, via email, send a message with subject or body 'help' to + ppp-request at zzz.org + +You can reach the person managing the list at + ppp-admin at zzz.org + +When replying, please edit your Subject line so it is more specific +than "Re: Contents of Ppp digest..." + + +--192.168.1.2.889.32614.987812255.500.21814 +Content-type: text/plain; charset=us-ascii +Content-description: Today's Topics (5 msgs) + +Today's Topics: + + 1. testing #1 (Barry A. Warsaw) + 2. testing #2 (Barry A. Warsaw) + 3. testing #3 (Barry A. Warsaw) + 4. testing #4 (Barry A. Warsaw) + 5. testing #5 (Barry A. Warsaw) + +--192.168.1.2.889.32614.987812255.500.21814 +Content-Type: multipart/digest; boundary="__--__--" + +--__--__-- + +Message: 1 +Content-Type: text/plain; charset=us-ascii +Content-Transfer-Encoding: 7bit +Date: Fri, 20 Apr 2001 20:16:13 -0400 +To: ppp at zzz.org +From: barry at digicool.com (Barry A. Warsaw) +Subject: [Ppp] testing #1 +Precedence: bulk + + +hello + + +--__--__-- + +Message: 2 +Date: Fri, 20 Apr 2001 20:16:21 -0400 +Content-Type: text/plain; charset=us-ascii +Content-Transfer-Encoding: 7bit +To: ppp at zzz.org +From: barry at digicool.com (Barry A. Warsaw) +Precedence: bulk + + +hello + + +--__--__-- + +Message: 3 +Date: Fri, 20 Apr 2001 20:16:25 -0400 +Content-Type: text/plain; charset=us-ascii +Content-Transfer-Encoding: 7bit +To: ppp at zzz.org +From: barry at digicool.com (Barry A. Warsaw) +Subject: [Ppp] testing #3 +Precedence: bulk + + +hello + + +--__--__-- + +Message: 4 +Date: Fri, 20 Apr 2001 20:16:28 -0400 +Content-Type: text/plain; charset=us-ascii +Content-Transfer-Encoding: 7bit +To: ppp at zzz.org +From: barry at digicool.com (Barry A. Warsaw) +Subject: [Ppp] testing #4 +Precedence: bulk + + +hello + + +--__--__-- + +Message: 5 +Date: Fri, 20 Apr 2001 20:16:32 -0400 +Content-Type: text/plain; charset=us-ascii +Content-Transfer-Encoding: 7bit +To: ppp at zzz.org +From: barry at digicool.com (Barry A. Warsaw) +Subject: [Ppp] testing #5 +Precedence: bulk + + +hello + + + + +--__--__---- +--192.168.1.2.889.32614.987812255.500.21814 +Content-type: text/plain; charset=us-ascii +Content-description: Digest Footer + +_______________________________________________ +Ppp mailing list +Ppp at zzz.org +http://www.zzz.org/mailman/listinfo/ppp + + +--192.168.1.2.889.32614.987812255.500.21814-- + +End of Ppp Digest + diff --git a/Lib/test/test_email/data/msg_03.txt b/Lib/test/test_email/data/msg_03.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_03.txt @@ -0,0 +1,16 @@ +Return-Path: +Delivered-To: bbb at zzz.org +Received: by mail.zzz.org (Postfix, from userid 889) + id 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT) +Message-ID: <15090.61304.110929.45684 at aaa.zzz.org> +From: bbb at ddd.com (John X. Doe) +To: bbb at zzz.org +Subject: This is a test message +Date: Fri, 4 May 2001 14:05:44 -0400 + + +Hi, + +Do you like this message? + +-Me diff --git a/Lib/test/test_email/data/msg_04.txt b/Lib/test/test_email/data/msg_04.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_04.txt @@ -0,0 +1,37 @@ +Return-Path: +Delivered-To: barry at python.org +Received: by mail.python.org (Postfix, from userid 889) + id C2BF0D37C6; Tue, 11 Sep 2001 00:05:05 -0400 (EDT) +MIME-Version: 1.0 +Content-Type: multipart/mixed; boundary="h90VIIIKmx" +Content-Transfer-Encoding: 7bit +Message-ID: <15261.36209.358846.118674 at anthem.python.org> +From: barry at python.org (Barry A. Warsaw) +To: barry at python.org +Subject: a simple multipart +Date: Tue, 11 Sep 2001 00:05:05 -0400 +X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid +X-Attribution: BAW +X-Oblique-Strategy: Make a door into a window + + +--h90VIIIKmx +Content-Type: text/plain +Content-Disposition: inline; + filename="msg.txt" +Content-Transfer-Encoding: 7bit + +a simple kind of mirror +to reflect upon our own + +--h90VIIIKmx +Content-Type: text/plain +Content-Disposition: inline; + filename="msg.txt" +Content-Transfer-Encoding: 7bit + +a simple kind of mirror +to reflect upon our own + +--h90VIIIKmx-- + diff --git a/Lib/test/test_email/data/msg_05.txt b/Lib/test/test_email/data/msg_05.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_05.txt @@ -0,0 +1,28 @@ +From: foo +Subject: bar +To: baz +MIME-Version: 1.0 +Content-Type: multipart/report; report-type=delivery-status; + boundary="D1690A7AC1.996856090/mail.example.com" +Message-Id: <20010803162810.0CA8AA7ACC at mail.example.com> + +This is a MIME-encapsulated message. + +--D1690A7AC1.996856090/mail.example.com +Content-Type: text/plain + +Yadda yadda yadda + +--D1690A7AC1.996856090/mail.example.com + +Yadda yadda yadda + +--D1690A7AC1.996856090/mail.example.com +Content-Type: message/rfc822 + +From: nobody at python.org + +Yadda yadda yadda + +--D1690A7AC1.996856090/mail.example.com-- + diff --git a/Lib/test/test_email/data/msg_06.txt b/Lib/test/test_email/data/msg_06.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_06.txt @@ -0,0 +1,33 @@ +Return-Path: +Delivered-To: barry at python.org +MIME-Version: 1.0 +Content-Type: message/rfc822 +Content-Description: forwarded message +Content-Transfer-Encoding: 7bit +Message-ID: <15265.9482.641338.555352 at python.org> +From: barry at zope.com (Barry A. Warsaw) +Sender: barry at python.org +To: barry at python.org +Subject: forwarded message from Barry A. Warsaw +Date: Thu, 13 Sep 2001 17:28:42 -0400 +X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid +X-Attribution: BAW +X-Oblique-Strategy: Be dirty +X-Url: http://barry.wooz.org + +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +Return-Path: +Delivered-To: barry at python.org +Message-ID: <15265.9468.713530.98441 at python.org> +From: barry at zope.com (Barry A. Warsaw) +Sender: barry at python.org +To: barry at python.org +Subject: testing +Date: Thu, 13 Sep 2001 17:28:28 -0400 +X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid +X-Attribution: BAW +X-Oblique-Strategy: Spectrum analysis +X-Url: http://barry.wooz.org + + diff --git a/Lib/test/test_email/data/msg_07.txt b/Lib/test/test_email/data/msg_07.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_07.txt @@ -0,0 +1,83 @@ +MIME-Version: 1.0 +From: Barry +To: Dingus Lovers +Subject: Here is your dingus fish +Date: Fri, 20 Apr 2001 19:35:02 -0400 +Content-Type: multipart/mixed; boundary="BOUNDARY" + +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" + +Hi there, + +This is the dingus fish. + +--BOUNDARY +Content-Type: image/gif; name="dingusfish.gif" +Content-Transfer-Encoding: base64 +content-disposition: attachment; filename="dingusfish.gif" + +R0lGODdhAAEAAfAAAP///wAAACwAAAAAAAEAAQAC/oSPqcvtD6OctNqLs968+w+G4kiW5omm6sq2 +7gvH8kzX9o3n+s73/g8MCofEovGITGICTKbyCV0FDNOo9SqpQqpOrJfXzTQj2vD3TGtqL+NtGQ2f +qTXmxzuOd7WXdcc9DyjU53ewFni4s0fGhdiYaEhGBelICTNoV1j5NUnFcrmUqemjNifJVWpaOqaI +oFq3SspZsSraE7sHq3jr1MZqWvi662vxV4tD+pvKW6aLDOCLyur8PDwbanyDeq0N3DctbQYeLDvR +RY6t95m6UB0d3mwIrV7e2VGNvjjffukeJp4w7F65KecGFsTHQGAygOrgrWs1jt28Rc88KESYcGLA +/obvTkH6p+CinWJiJmIMqXGQwH/y4qk0SYjgQTczT3ajKZGfuI0uJ4kkVI/DT5s3/ejkxI0aT4Y+ +YTYgWbImUaXk9nlLmnSh1qJiJFl0OpUqRK4oOy7NyRQtHWofhoYVxkwWXKUSn0YsS+fUV6lhqfYb +6ayd3Z5qQdG1B7bvQzaJjwUV2lixMUZ7JVsOlfjWVr/3NB/uFvnySBN6Dcb6rGwaRM3wsormw5cC +M9NxWy/bWdufudCvy8bOAjXjVVwta/uO21sE5RHBCzNFXtgq9ORtH4eYjVP4Yryo026nvkFmCeyA +B29efV6ravCMK5JwWd5897Qrx7ll38o6iHDZ/rXPR//feevhF4l7wjUGX3xq1eeRfM4RSJGBIV1D +z1gKPkfWag3mVBVvva1RlX5bAJTPR/2YqNtw/FkIYYEi/pIZiAdpcxpoHtmnYYoZtvhUftzdx5ZX +JSKDW405zkGcZzzGZ6KEv4FI224oDmijlEf+xp6MJK5ojY/ASeVUR+wsKRuJ+XFZ5o7ZeEime8t1 +ouUsU6YjF5ZtUihhkGfCdFQLWQFJ3UXxmElfhQnR+eCdcDbkFZp6vTRmj56ApCihn5QGpaToNZmR +n3NVSpZcQpZ2KEONusaiCsKAug0wkQbJSFO+PTSjneGxOuFjPlUk3ovWvdIerjUg9ZGIOtGq/qeX +eCYrrCX+1UPsgTKGGRSbzd5q156d/gpfbJxe66eD5iQKrXj7RGgruGxs62qebBHUKS32CKluCiqZ +qh+pmehmEb71noAUoe5e9Zm17S7773V10pjrtG4CmuurCV/n6zLK5turWNhqOvFXbjhZrMD0YhKe +wR0zOyuvsh6MWrGoIuzvyWu5y1WIFAqmJselypxXh6dKLNOKEB98L88bS2rkNqqlKzCNJp9c0G0j +Gzh0iRrCbHSXmPR643QS+4rWhgFmnSbSuXCjS0xAOWkU2UdLqyuUNfHSFdUouy3bm5i5GnDM3tG8 +doJ4r5tqu3pPbRSVfvs8uJzeNXhp3n4j/tZ42SwH7eaWUUOjc3qFV9453UHTXZfcLH+OeNs5g36x +lBnHvTm7EbMbLeuaLncao8vWCXimfo1o+843Ak6y4ChNeGntvAYvfLK4ezmoyNIbNCLTCXO9ZV3A +E8/s88RczPzDwI4Ob7XZyl7+9Miban29h+tJZPrE21wgvBphDfrrfPdCTPKJD/y98L1rZwHcV6Jq +Zab0metpuNIX/qAFPoz171WUaUb4HAhBSzHuHfjzHb3kha/2Cctis/ORArVHNYfFyYRH2pYIRzic +isVOfPWD1b6mRTqpCRBozzof6UZVvFXRxWIr3GGrEviGYgyPMfahheiSaLs/9QeFu7oZ/ndSY8DD +ya9x+uPed+7mxN2IzIISBOMLFYWVqC3Pew1T2nFuuCiwZS5/v6II10i4t1OJcUH2U9zxKodHsGGv +Oa+zkvNUYUOa/TCCRutF9MzDwdlUMJADTCGSbDQ5OV4PTamDoPEi6Ecc/RF5RWwkcdSXvSOaDWSn +I9LlvubFTQpuc6JKXLcKeb+xdbKRBnwREemXyjg6ME65aJiOuBgrktzykfPLJBKR9ClMavJ62/Ff +BlNIyod9yX9wcSXexnXFpvkrbXk64xsx5Db7wXKP5fSgsvwIMM/9631VLBfkmtbHRXpqmtei52hG +pUwSlo+BASQoeILDOBgREECxBBh5/iYmNsQ9dIv5+OI++QkqdsJPc3uykz5fkM+OraeekcQF7X4n +B5S67za5U967PmooGQhUXfF7afXyCD7ONdRe17QogYjVx38uLwtrS6nhTnm15LQUnu9E2uK6CNI/ +1HOABj0ESwOjut4FEpFQpdNAm4K2LHnDWHNcmKB2ioKBogysVZtMO2nSxUdZ8Yk2kJc7URioLVI0 +YgmtIwZj4LoeKemgnOnbUdGnzZ4Oa6scqiolBGqS6RgWNLu0RMhcaE6rhhU4hiuqFXPAG8fGwTPW +FKeLMtdVmXLSs5YJGF/YeVm7rREMlY3UYE+yCxbaMXX8y15m5zVHq6GOKDMynzII/jdUHdyVqIy0 +ifX2+r/EgtZcvRzSb72gU9ui87M2VecjKildW/aFqaYhKoryUjfB/g4qtyVuc60xFDGmCxwjW+qu +zjuwl2GkOWn66+3QiiEctvd04OVvcCVzjgT7lrkvjVGKKHmmlDUKowSeikb5kK/mJReuWOxONx+s +ULsl+Lqb0CVn0SrVyJ6wt4t6yTeSCafhPhAf0OXn6L60UMxiLolFAtmN35S2Ob1lZpQ1r/n0Qb5D +oQ1zJiRVDgF8N3Q8TYfbi3DyWCy3lT1nxyBs6FT3S2GOzWRlxwKvlRP0RPJA9SjxEy0UoEnkA+M4 +cnzLMJrBGWLFEaaUb5lvpqbq/loOaU5+DFuHPxo82/OZuM8FXG3oVNZhtWpMpb/0Xu5m/LfLhHZQ +7yuVI0MqZ7NE43imC8jH3IwGZlbPm0xkJYs7+2U48hXTsFSMqgGDvai0kLxyynKNT/waj+q1c1tz +GjOpPBgdCSq3UKZxCSsqFIY+O6JbAWGWcV1pwqLyj5sGqCF1xb1F3varUWqrJv6cN3PrUXzijtfZ +FshpBL3Xwr4GIPvU2N8EjrJgS1zl21rbXQMXeXc5jjFyrhpCzijSv/RQtyPSzHCFMhlME95fHglt +pRsX+dfSQjUeHAlpWzJ5iOo79Ldnaxai6bXTcGO3fp07ri7HLEmXXPlYi8bv/qVxvNcdra6m7Rlb +6JBTb5fd66VhFRjGArh2n7R1rDW4P5NOT9K0I183T2scYkeZ3q/VFyLb09U9ajzXBS8Kgkhc4mBS +kYY9cy3Vy9lUnuNJH8HGIclUilwnBtjUOH0gteGOZ4c/XNrhXLSYDyxfnD8z1pDy7rYRvDolhnbe +UMzxCZUs40s6s7UIvBnLgc0+vKuOkIXeOrDymlp+Zxra4MZLBbVrqD/jTJ597pDmnw5c4+DbyB88 +9Cg9DodYcSuMZT/114pptqc/EuTjRPvH/z5slzI3tluOEBBLqOXLOX+0I5929tO97wkvl/atCz+y +xJrdwteW2FNW/NSmBP+f/maYtVs/bYyBC7Ox3jsYZHL05CIrBa/nS+b3bHfiYm4Ueil1YZZSgAUI +fFZ1dxUmeA2oQRQ3RuGXNGLFV9/XbGFGPV6kfzk1TBBCd+izc7q1H+OHMJwmaBX2IQNYVAKHYepV +SSGCe6CnbYHHETKGNe43EDvFgZr0gB/nVHPHZ80VV1ojOiI3XDvYIkl4ayo4bxQIgrFXWTvBI0nH +VElWMuw2aLUWCRHHf8ymVCHjFlJnOSojfevCYyyyZDH0IcvHhrsnQ5O1OsWzONuVVKIxSxiFZ/tR +fKDAf6xFTnw4O9Qig2VCfW2hJQrmMOuHW0W3dLQmCMO2ccdUd/xyfflH/olTiHZVdGwb8nIwRzSE +J15jFlOJuBZBZ4CiyHyd2IFylFlB+HgHhYabhWOGwYO1ZH/Og1dtQlFMk352CGRSIFTapnWQEUtN +l4zv8S0aaCFDyGCBqDUxZYpxGHX01y/JuH1xhn7TOCnNCI4eKDs5WGX4R425F4vF1o3BJ4vO0otq +I3rimI7jJY1jISqnBxknCIvruF83mF5wN4X7qGLIhR8A2Vg0yFERSIXn9Vv3GHy3Vj/WIkKddlYi +yIMv2I/VMjTLpW7pt05SWIZR0RPyxpB4SIUM9lBPGBl0GC7oSEEwRYLe4pJpZY2P0zbI1n+Oc44w +qY3PUnmF0ixjVpDD/mJ9wpOBGTVgXlaCaZiPcIWK5NiKBIiPdGaQ0TWGvAiG7nMchdZb7Vgf8zNi +MuMyzRdy/lePe9iC4TRx7WhhOQI/QiSVNAmAa2lT/piFbuh7ofJoYSZzrSZ1bvmWw3eN2nKUPVky +uPN5/VRfohRd0VYZoqhKIlU6TXYhJxmPUIloAwc1bPmHEpaZYZORHNlXUJM07hATwHR8MJYqkwWR +WaIezFhxSFlc8/Fq82hEnpeRozg3ULhhr9lAGtVEkCg5ZNRuuVleBPaZadhG0ZgkyPmDOTOKzViM +YgOcpukKqQcbjAWS0IleQ2ROjdh6A+md1qWdBRSX7iSYgFRTtRmBpJioieXJiHfJiMGIR9fJOn8I +MSfXYhspn4ooSa2mSAj4n+8Bmg03fBJZoPOJgsVZRxu1oOMRPXYYjdqjihFaEoZpXBREanuJoRI6 +cibFinq4ngUKh/wQd/H5ofYCZ0HJXR62opZFaAT0iFIZo4DIiUojkjeqKiuoZirKo5Y1a7AWckGa +BkuYoD5lpDK6eUs6CkDqpETwl1EqpfhJpVeKpVl6EgUAADs= + +--BOUNDARY-- diff --git a/Lib/test/test_email/data/msg_08.txt b/Lib/test/test_email/data/msg_08.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_08.txt @@ -0,0 +1,24 @@ +MIME-Version: 1.0 +From: Barry Warsaw +To: Dingus Lovers +Subject: Lyrics +Date: Fri, 20 Apr 2001 19:35:02 -0400 +Content-Type: multipart/mixed; boundary="BOUNDARY" + +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" + + +--BOUNDARY +Content-Type: text/html; charset="iso-8859-1" + + +--BOUNDARY +Content-Type: text/plain; charset="iso-8859-2" + + +--BOUNDARY +Content-Type: text/plain; charset="koi8-r" + + +--BOUNDARY-- diff --git a/Lib/test/test_email/data/msg_09.txt b/Lib/test/test_email/data/msg_09.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_09.txt @@ -0,0 +1,24 @@ +MIME-Version: 1.0 +From: Barry Warsaw +To: Dingus Lovers +Subject: Lyrics +Date: Fri, 20 Apr 2001 19:35:02 -0400 +Content-Type: multipart/mixed; boundary="BOUNDARY" + +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" + + +--BOUNDARY +Content-Type: text/html; charset="iso-8859-1" + + +--BOUNDARY +Content-Type: text/plain + + +--BOUNDARY +Content-Type: text/plain; charset="koi8-r" + + +--BOUNDARY-- diff --git a/Lib/test/test_email/data/msg_10.txt b/Lib/test/test_email/data/msg_10.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_10.txt @@ -0,0 +1,39 @@ +MIME-Version: 1.0 +From: Barry Warsaw +To: Dingus Lovers +Subject: Lyrics +Date: Fri, 20 Apr 2001 19:35:02 -0400 +Content-Type: multipart/mixed; boundary="BOUNDARY" + +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" +Content-Transfer-Encoding: 7bit + +This is a 7bit encoded message. + +--BOUNDARY +Content-Type: text/html; charset="iso-8859-1" +Content-Transfer-Encoding: Quoted-Printable + +=A1This is a Quoted Printable encoded message! + +--BOUNDARY +Content-Type: text/plain; charset="iso-8859-1" +Content-Transfer-Encoding: Base64 + +VGhpcyBpcyBhIEJhc2U2NCBlbmNvZGVkIG1lc3NhZ2Uu + + +--BOUNDARY +Content-Type: text/plain; charset="iso-8859-1" +Content-Transfer-Encoding: Base64 + +VGhpcyBpcyBhIEJhc2U2NCBlbmNvZGVkIG1lc3NhZ2UuCg== + + +--BOUNDARY +Content-Type: text/plain; charset="iso-8859-1" + +This has no Content-Transfer-Encoding: header. + +--BOUNDARY-- diff --git a/Lib/test/test_email/data/msg_11.txt b/Lib/test/test_email/data/msg_11.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_11.txt @@ -0,0 +1,7 @@ +Content-Type: message/rfc822 +MIME-Version: 1.0 +Subject: The enclosing message + +Subject: An enclosed message + +Here is the body of the message. diff --git a/Lib/test/test_email/data/msg_12.txt b/Lib/test/test_email/data/msg_12.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_12.txt @@ -0,0 +1,36 @@ +MIME-Version: 1.0 +From: Barry Warsaw +To: Dingus Lovers +Subject: Lyrics +Date: Fri, 20 Apr 2001 19:35:02 -0400 +Content-Type: multipart/mixed; boundary="BOUNDARY" + +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" + + +--BOUNDARY +Content-Type: text/html; charset="iso-8859-1" + + +--BOUNDARY +Content-Type: multipart/mixed; boundary="ANOTHER" + +--ANOTHER +Content-Type: text/plain; charset="iso-8859-2" + + +--ANOTHER +Content-Type: text/plain; charset="iso-8859-3" + +--ANOTHER-- + +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" + + +--BOUNDARY +Content-Type: text/plain; charset="koi8-r" + + +--BOUNDARY-- diff --git a/Lib/test/test_email/data/msg_12a.txt b/Lib/test/test_email/data/msg_12a.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_12a.txt @@ -0,0 +1,38 @@ +MIME-Version: 1.0 +From: Barry Warsaw +To: Dingus Lovers +Subject: Lyrics +Date: Fri, 20 Apr 2001 19:35:02 -0400 +Content-Type: multipart/mixed; boundary="BOUNDARY" + +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" + + +--BOUNDARY +Content-Type: text/html; charset="iso-8859-1" + + +--BOUNDARY +Content-Type: multipart/mixed; boundary="ANOTHER" + +--ANOTHER +Content-Type: text/plain; charset="iso-8859-2" + + +--ANOTHER +Content-Type: text/plain; charset="iso-8859-3" + + +--ANOTHER-- + + +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" + + +--BOUNDARY +Content-Type: text/plain; charset="koi8-r" + + +--BOUNDARY-- diff --git a/Lib/test/test_email/data/msg_13.txt b/Lib/test/test_email/data/msg_13.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_13.txt @@ -0,0 +1,94 @@ +MIME-Version: 1.0 +From: Barry +To: Dingus Lovers +Subject: Here is your dingus fish +Date: Fri, 20 Apr 2001 19:35:02 -0400 +Content-Type: multipart/mixed; boundary="OUTER" + +--OUTER +Content-Type: text/plain; charset="us-ascii" + +A text/plain part + +--OUTER +Content-Type: multipart/mixed; boundary=BOUNDARY + + +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" + +Hi there, + +This is the dingus fish. + +--BOUNDARY +Content-Type: image/gif; name="dingusfish.gif" +Content-Transfer-Encoding: base64 +content-disposition: attachment; filename="dingusfish.gif" + +R0lGODdhAAEAAfAAAP///wAAACwAAAAAAAEAAQAC/oSPqcvtD6OctNqLs968+w+G4kiW5omm6sq2 +7gvH8kzX9o3n+s73/g8MCofEovGITGICTKbyCV0FDNOo9SqpQqpOrJfXzTQj2vD3TGtqL+NtGQ2f +qTXmxzuOd7WXdcc9DyjU53ewFni4s0fGhdiYaEhGBelICTNoV1j5NUnFcrmUqemjNifJVWpaOqaI +oFq3SspZsSraE7sHq3jr1MZqWvi662vxV4tD+pvKW6aLDOCLyur8PDwbanyDeq0N3DctbQYeLDvR +RY6t95m6UB0d3mwIrV7e2VGNvjjffukeJp4w7F65KecGFsTHQGAygOrgrWs1jt28Rc88KESYcGLA +/obvTkH6p+CinWJiJmIMqXGQwH/y4qk0SYjgQTczT3ajKZGfuI0uJ4kkVI/DT5s3/ejkxI0aT4Y+ +YTYgWbImUaXk9nlLmnSh1qJiJFl0OpUqRK4oOy7NyRQtHWofhoYVxkwWXKUSn0YsS+fUV6lhqfYb +6ayd3Z5qQdG1B7bvQzaJjwUV2lixMUZ7JVsOlfjWVr/3NB/uFvnySBN6Dcb6rGwaRM3wsormw5cC +M9NxWy/bWdufudCvy8bOAjXjVVwta/uO21sE5RHBCzNFXtgq9ORtH4eYjVP4Yryo026nvkFmCeyA +B29efV6ravCMK5JwWd5897Qrx7ll38o6iHDZ/rXPR//feevhF4l7wjUGX3xq1eeRfM4RSJGBIV1D +z1gKPkfWag3mVBVvva1RlX5bAJTPR/2YqNtw/FkIYYEi/pIZiAdpcxpoHtmnYYoZtvhUftzdx5ZX +JSKDW405zkGcZzzGZ6KEv4FI224oDmijlEf+xp6MJK5ojY/ASeVUR+wsKRuJ+XFZ5o7ZeEime8t1 +ouUsU6YjF5ZtUihhkGfCdFQLWQFJ3UXxmElfhQnR+eCdcDbkFZp6vTRmj56ApCihn5QGpaToNZmR +n3NVSpZcQpZ2KEONusaiCsKAug0wkQbJSFO+PTSjneGxOuFjPlUk3ovWvdIerjUg9ZGIOtGq/qeX +eCYrrCX+1UPsgTKGGRSbzd5q156d/gpfbJxe66eD5iQKrXj7RGgruGxs62qebBHUKS32CKluCiqZ +qh+pmehmEb71noAUoe5e9Zm17S7773V10pjrtG4CmuurCV/n6zLK5turWNhqOvFXbjhZrMD0YhKe +wR0zOyuvsh6MWrGoIuzvyWu5y1WIFAqmJselypxXh6dKLNOKEB98L88bS2rkNqqlKzCNJp9c0G0j +Gzh0iRrCbHSXmPR643QS+4rWhgFmnSbSuXCjS0xAOWkU2UdLqyuUNfHSFdUouy3bm5i5GnDM3tG8 +doJ4r5tqu3pPbRSVfvs8uJzeNXhp3n4j/tZ42SwH7eaWUUOjc3qFV9453UHTXZfcLH+OeNs5g36x +lBnHvTm7EbMbLeuaLncao8vWCXimfo1o+843Ak6y4ChNeGntvAYvfLK4ezmoyNIbNCLTCXO9ZV3A +E8/s88RczPzDwI4Ob7XZyl7+9Miban29h+tJZPrE21wgvBphDfrrfPdCTPKJD/y98L1rZwHcV6Jq +Zab0metpuNIX/qAFPoz171WUaUb4HAhBSzHuHfjzHb3kha/2Cctis/ORArVHNYfFyYRH2pYIRzic +isVOfPWD1b6mRTqpCRBozzof6UZVvFXRxWIr3GGrEviGYgyPMfahheiSaLs/9QeFu7oZ/ndSY8DD +ya9x+uPed+7mxN2IzIISBOMLFYWVqC3Pew1T2nFuuCiwZS5/v6II10i4t1OJcUH2U9zxKodHsGGv +Oa+zkvNUYUOa/TCCRutF9MzDwdlUMJADTCGSbDQ5OV4PTamDoPEi6Ecc/RF5RWwkcdSXvSOaDWSn +I9LlvubFTQpuc6JKXLcKeb+xdbKRBnwREemXyjg6ME65aJiOuBgrktzykfPLJBKR9ClMavJ62/Ff +BlNIyod9yX9wcSXexnXFpvkrbXk64xsx5Db7wXKP5fSgsvwIMM/9631VLBfkmtbHRXpqmtei52hG +pUwSlo+BASQoeILDOBgREECxBBh5/iYmNsQ9dIv5+OI++QkqdsJPc3uykz5fkM+OraeekcQF7X4n +B5S67za5U967PmooGQhUXfF7afXyCD7ONdRe17QogYjVx38uLwtrS6nhTnm15LQUnu9E2uK6CNI/ +1HOABj0ESwOjut4FEpFQpdNAm4K2LHnDWHNcmKB2ioKBogysVZtMO2nSxUdZ8Yk2kJc7URioLVI0 +YgmtIwZj4LoeKemgnOnbUdGnzZ4Oa6scqiolBGqS6RgWNLu0RMhcaE6rhhU4hiuqFXPAG8fGwTPW +FKeLMtdVmXLSs5YJGF/YeVm7rREMlY3UYE+yCxbaMXX8y15m5zVHq6GOKDMynzII/jdUHdyVqIy0 +ifX2+r/EgtZcvRzSb72gU9ui87M2VecjKildW/aFqaYhKoryUjfB/g4qtyVuc60xFDGmCxwjW+qu +zjuwl2GkOWn66+3QiiEctvd04OVvcCVzjgT7lrkvjVGKKHmmlDUKowSeikb5kK/mJReuWOxONx+s +ULsl+Lqb0CVn0SrVyJ6wt4t6yTeSCafhPhAf0OXn6L60UMxiLolFAtmN35S2Ob1lZpQ1r/n0Qb5D +oQ1zJiRVDgF8N3Q8TYfbi3DyWCy3lT1nxyBs6FT3S2GOzWRlxwKvlRP0RPJA9SjxEy0UoEnkA+M4 +cnzLMJrBGWLFEaaUb5lvpqbq/loOaU5+DFuHPxo82/OZuM8FXG3oVNZhtWpMpb/0Xu5m/LfLhHZQ +7yuVI0MqZ7NE43imC8jH3IwGZlbPm0xkJYs7+2U48hXTsFSMqgGDvai0kLxyynKNT/waj+q1c1tz +GjOpPBgdCSq3UKZxCSsqFIY+O6JbAWGWcV1pwqLyj5sGqCF1xb1F3varUWqrJv6cN3PrUXzijtfZ +FshpBL3Xwr4GIPvU2N8EjrJgS1zl21rbXQMXeXc5jjFyrhpCzijSv/RQtyPSzHCFMhlME95fHglt +pRsX+dfSQjUeHAlpWzJ5iOo79Ldnaxai6bXTcGO3fp07ri7HLEmXXPlYi8bv/qVxvNcdra6m7Rlb +6JBTb5fd66VhFRjGArh2n7R1rDW4P5NOT9K0I183T2scYkeZ3q/VFyLb09U9ajzXBS8Kgkhc4mBS +kYY9cy3Vy9lUnuNJH8HGIclUilwnBtjUOH0gteGOZ4c/XNrhXLSYDyxfnD8z1pDy7rYRvDolhnbe +UMzxCZUs40s6s7UIvBnLgc0+vKuOkIXeOrDymlp+Zxra4MZLBbVrqD/jTJ597pDmnw5c4+DbyB88 +9Cg9DodYcSuMZT/114pptqc/EuTjRPvH/z5slzI3tluOEBBLqOXLOX+0I5929tO97wkvl/atCz+y +xJrdwteW2FNW/NSmBP+f/maYtVs/bYyBC7Ox3jsYZHL05CIrBa/nS+b3bHfiYm4Ueil1YZZSgAUI +fFZ1dxUmeA2oQRQ3RuGXNGLFV9/XbGFGPV6kfzk1TBBCd+izc7q1H+OHMJwmaBX2IQNYVAKHYepV +SSGCe6CnbYHHETKGNe43EDvFgZr0gB/nVHPHZ80VV1ojOiI3XDvYIkl4ayo4bxQIgrFXWTvBI0nH +VElWMuw2aLUWCRHHf8ymVCHjFlJnOSojfevCYyyyZDH0IcvHhrsnQ5O1OsWzONuVVKIxSxiFZ/tR +fKDAf6xFTnw4O9Qig2VCfW2hJQrmMOuHW0W3dLQmCMO2ccdUd/xyfflH/olTiHZVdGwb8nIwRzSE +J15jFlOJuBZBZ4CiyHyd2IFylFlB+HgHhYabhWOGwYO1ZH/Og1dtQlFMk352CGRSIFTapnWQEUtN +l4zv8S0aaCFDyGCBqDUxZYpxGHX01y/JuH1xhn7TOCnNCI4eKDs5WGX4R425F4vF1o3BJ4vO0otq +I3rimI7jJY1jISqnBxknCIvruF83mF5wN4X7qGLIhR8A2Vg0yFERSIXn9Vv3GHy3Vj/WIkKddlYi +yIMv2I/VMjTLpW7pt05SWIZR0RPyxpB4SIUM9lBPGBl0GC7oSEEwRYLe4pJpZY2P0zbI1n+Oc44w +qY3PUnmF0ixjVpDD/mJ9wpOBGTVgXlaCaZiPcIWK5NiKBIiPdGaQ0TWGvAiG7nMchdZb7Vgf8zNi +MuMyzRdy/lePe9iC4TRx7WhhOQI/QiSVNAmAa2lT/piFbuh7ofJoYSZzrSZ1bvmWw3eN2nKUPVky +uPN5/VRfohRd0VYZoqhKIlU6TXYhJxmPUIloAwc1bPmHEpaZYZORHNlXUJM07hATwHR8MJYqkwWR +WaIezFhxSFlc8/Fq82hEnpeRozg3ULhhr9lAGtVEkCg5ZNRuuVleBPaZadhG0ZgkyPmDOTOKzViM +YgOcpukKqQcbjAWS0IleQ2ROjdh6A+md1qWdBRSX7iSYgFRTtRmBpJioieXJiHfJiMGIR9fJOn8I +MSfXYhspn4ooSa2mSAj4n+8Bmg03fBJZoPOJgsVZRxu1oOMRPXYYjdqjihFaEoZpXBREanuJoRI6 +cibFinq4ngUKh/wQd/H5ofYCZ0HJXR62opZFaAT0iFIZo4DIiUojkjeqKiuoZirKo5Y1a7AWckGa +BkuYoD5lpDK6eUs6CkDqpETwl1EqpfhJpVeKpVl6EgUAADs= + +--BOUNDARY-- + +--OUTER-- diff --git a/Lib/test/test_email/data/msg_14.txt b/Lib/test/test_email/data/msg_14.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_14.txt @@ -0,0 +1,23 @@ +Return-Path: +Delivered-To: bbb at zzz.org +Received: by mail.zzz.org (Postfix, from userid 889) + id 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT) +MIME-Version: 1.0 +Content-Type: text; charset=us-ascii +Content-Transfer-Encoding: 7bit +Message-ID: <15090.61304.110929.45684 at aaa.zzz.org> +From: bbb at ddd.com (John X. Doe) +To: bbb at zzz.org +Subject: This is a test message +Date: Fri, 4 May 2001 14:05:44 -0400 + + +Hi, + +I'm sorry but I'm using a drainbread ISP, which although big and +wealthy can't seem to generate standard compliant email. :( + +This message has a Content-Type: header with no subtype. I hope you +can still read it. + +-Me diff --git a/Lib/test/test_email/data/msg_15.txt b/Lib/test/test_email/data/msg_15.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_15.txt @@ -0,0 +1,52 @@ +Return-Path: +Received: from fepD.post.tele.dk (195.41.46.149) by mail.groupcare.dk (LSMTP for Windows NT v1.1b) with SMTP id <0.0014F8A2 at mail.groupcare.dk>; Mon, 30 Apr 2001 12:17:50 +0200 +User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2106 +Subject: XX +From: xx at xx.dk +To: XX +Message-ID: +Mime-version: 1.0 +Content-type: multipart/mixed; + boundary="MS_Mac_OE_3071477847_720252_MIME_Part" + +> Denne meddelelse er i MIME-format. Da dit postl + +--MS_Mac_OE_3071477847_720252_MIME_Part +Content-type: multipart/alternative; + boundary="MS_Mac_OE_3071477847_720252_MIME_Part" + + +--MS_Mac_OE_3071477847_720252_MIME_Part +Content-type: text/plain; charset="ISO-8859-1" +Content-transfer-encoding: quoted-printable + +Some removed test. + +--MS_Mac_OE_3071477847_720252_MIME_Part +Content-type: text/html; charset="ISO-8859-1" +Content-transfer-encoding: quoted-printable + + + +Some removed HTML + + +Some removed text. + + + + +--MS_Mac_OE_3071477847_720252_MIME_Part-- + + +--MS_Mac_OE_3071477847_720252_MIME_Part +Content-type: image/gif; name="xx.gif"; + x-mac-creator="6F676C65"; + x-mac-type="47494666" +Content-disposition: attachment +Content-transfer-encoding: base64 + +Some removed base64 encoded chars. + +--MS_Mac_OE_3071477847_720252_MIME_Part-- + diff --git a/Lib/test/test_email/data/msg_16.txt b/Lib/test/test_email/data/msg_16.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_16.txt @@ -0,0 +1,123 @@ +Return-Path: <> +Delivered-To: scr-admin at socal-raves.org +Received: from cougar.noc.ucla.edu (cougar.noc.ucla.edu [169.232.10.18]) + by babylon.socal-raves.org (Postfix) with ESMTP id CCC2C51B84 + for ; Sun, 23 Sep 2001 20:13:54 -0700 (PDT) +Received: from sims-ms-daemon by cougar.noc.ucla.edu + (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) + id <0GK500B01D0B8Y at cougar.noc.ucla.edu> for scr-admin at socal-raves.org; Sun, + 23 Sep 2001 20:14:35 -0700 (PDT) +Received: from cougar.noc.ucla.edu + (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) + id <0GK500B01D0B8X at cougar.noc.ucla.edu>; Sun, 23 Sep 2001 20:14:35 -0700 (PDT) +Date: Sun, 23 Sep 2001 20:14:35 -0700 (PDT) +From: Internet Mail Delivery +Subject: Delivery Notification: Delivery has failed +To: scr-admin at socal-raves.org +Message-id: <0GK500B04D0B8X at cougar.noc.ucla.edu> +MIME-version: 1.0 +Sender: scr-owner at socal-raves.org +Errors-To: scr-owner at socal-raves.org +X-BeenThere: scr at socal-raves.org +X-Mailman-Version: 2.1a3 +Precedence: bulk +List-Help: +List-Post: +List-Subscribe: , + +List-Id: SoCal-Raves +List-Unsubscribe: , + +List-Archive: +Content-Type: multipart/report; boundary="Boundary_(ID_PGS2F2a+z+/jL7hupKgRhA)" + + +--Boundary_(ID_PGS2F2a+z+/jL7hupKgRhA) +Content-type: text/plain; charset=ISO-8859-1 + +This report relates to a message you sent with the following header fields: + + Message-id: <002001c144a6$8752e060$56104586 at oxy.edu> + Date: Sun, 23 Sep 2001 20:10:55 -0700 + From: "Ian T. Henry" + To: SoCal Raves + Subject: [scr] yeah for Ians!! + +Your message cannot be delivered to the following recipients: + + Recipient address: jangel1 at cougar.noc.ucla.edu + Reason: recipient reached disk quota + + +--Boundary_(ID_PGS2F2a+z+/jL7hupKgRhA) +Content-type: message/DELIVERY-STATUS + +Original-envelope-id: 0GK500B4HD0888 at cougar.noc.ucla.edu +Reporting-MTA: dns; cougar.noc.ucla.edu + +Action: failed +Status: 5.0.0 (recipient reached disk quota) +Original-recipient: rfc822;jangel1 at cougar.noc.ucla.edu +Final-recipient: rfc822;jangel1 at cougar.noc.ucla.edu + +--Boundary_(ID_PGS2F2a+z+/jL7hupKgRhA) +Content-type: MESSAGE/RFC822 + +Return-path: scr-admin at socal-raves.org +Received: from sims-ms-daemon by cougar.noc.ucla.edu + (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) + id <0GK500B01D0B8X at cougar.noc.ucla.edu>; Sun, 23 Sep 2001 20:14:35 -0700 (PDT) +Received: from panther.noc.ucla.edu by cougar.noc.ucla.edu + (Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10) + with ESMTP id <0GK500B4GD0888 at cougar.noc.ucla.edu> for jangel1 at sims-ms-daemon; + Sun, 23 Sep 2001 20:14:33 -0700 (PDT) +Received: from babylon.socal-raves.org + (ip-209-85-222-117.dreamhost.com [209.85.222.117]) + by panther.noc.ucla.edu (8.9.1a/8.9.1) with ESMTP id UAA09793 for + ; Sun, 23 Sep 2001 20:14:32 -0700 (PDT) +Received: from babylon (localhost [127.0.0.1]) by babylon.socal-raves.org + (Postfix) with ESMTP id D3B2951B70; Sun, 23 Sep 2001 20:13:47 -0700 (PDT) +Received: by babylon.socal-raves.org (Postfix, from userid 60001) + id A611F51B82; Sun, 23 Sep 2001 20:13:46 -0700 (PDT) +Received: from tiger.cc.oxy.edu (tiger.cc.oxy.edu [134.69.3.112]) + by babylon.socal-raves.org (Postfix) with ESMTP id ADA7351B70 for + ; Sun, 23 Sep 2001 20:13:44 -0700 (PDT) +Received: from ent (n16h86.dhcp.oxy.edu [134.69.16.86]) + by tiger.cc.oxy.edu (8.8.8/8.8.8) with SMTP id UAA08100 for + ; Sun, 23 Sep 2001 20:14:24 -0700 (PDT) +Date: Sun, 23 Sep 2001 20:10:55 -0700 +From: "Ian T. Henry" +Subject: [scr] yeah for Ians!! +Sender: scr-admin at socal-raves.org +To: SoCal Raves +Errors-to: scr-admin at socal-raves.org +Message-id: <002001c144a6$8752e060$56104586 at oxy.edu> +MIME-version: 1.0 +X-Mailer: Microsoft Outlook Express 5.50.4522.1200 +Content-type: text/plain; charset=us-ascii +Precedence: bulk +Delivered-to: scr-post at babylon.socal-raves.org +Delivered-to: scr at socal-raves.org +X-Converted-To-Plain-Text: from multipart/alternative by demime 0.98e +X-Converted-To-Plain-Text: Alternative section used was text/plain +X-BeenThere: scr at socal-raves.org +X-Mailman-Version: 2.1a3 +List-Help: +List-Post: +List-Subscribe: , + +List-Id: SoCal-Raves +List-Unsubscribe: , + +List-Archive: + +I always love to find more Ian's that are over 3 years old!! + +Ian +_______________________________________________ +For event info, list questions, or to unsubscribe, see http://www.socal-raves.org/ + + + +--Boundary_(ID_PGS2F2a+z+/jL7hupKgRhA)-- + diff --git a/Lib/test/test_email/data/msg_17.txt b/Lib/test/test_email/data/msg_17.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_17.txt @@ -0,0 +1,12 @@ +MIME-Version: 1.0 +From: Barry +To: Dingus Lovers +Subject: Here is your dingus fish +Date: Fri, 20 Apr 2001 19:35:02 -0400 +Content-Type: multipart/mixed; boundary="BOUNDARY" + +Hi there, + +This is the dingus fish. + +[Non-text (image/gif) part of message omitted, filename dingusfish.gif] diff --git a/Lib/test/test_email/data/msg_18.txt b/Lib/test/test_email/data/msg_18.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_18.txt @@ -0,0 +1,6 @@ +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit +X-Foobar-Spoink-Defrobnit: wasnipoop; giraffes="very-long-necked-animals"; + spooge="yummy"; hippos="gargantuan"; marshmallows="gooey" + diff --git a/Lib/test/test_email/data/msg_19.txt b/Lib/test/test_email/data/msg_19.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_19.txt @@ -0,0 +1,43 @@ +Send Ppp mailing list submissions to + ppp at zzz.org + +To subscribe or unsubscribe via the World Wide Web, visit + http://www.zzz.org/mailman/listinfo/ppp +or, via email, send a message with subject or body 'help' to + ppp-request at zzz.org + +You can reach the person managing the list at + ppp-admin at zzz.org + +When replying, please edit your Subject line so it is more specific +than "Re: Contents of Ppp digest..." + +Today's Topics: + + 1. testing #1 (Barry A. Warsaw) + 2. testing #2 (Barry A. Warsaw) + 3. testing #3 (Barry A. Warsaw) + 4. testing #4 (Barry A. Warsaw) + 5. testing #5 (Barry A. Warsaw) + +hello + + +hello + + +hello + + +hello + + +hello + + + +_______________________________________________ +Ppp mailing list +Ppp at zzz.org +http://www.zzz.org/mailman/listinfo/ppp + diff --git a/Lib/test/test_email/data/msg_20.txt b/Lib/test/test_email/data/msg_20.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_20.txt @@ -0,0 +1,22 @@ +Return-Path: +Delivered-To: bbb at zzz.org +Received: by mail.zzz.org (Postfix, from userid 889) + id 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT) +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +Content-Transfer-Encoding: 7bit +Message-ID: <15090.61304.110929.45684 at aaa.zzz.org> +From: bbb at ddd.com (John X. Doe) +To: bbb at zzz.org +Cc: ccc at zzz.org +CC: ddd at zzz.org +cc: eee at zzz.org +Subject: This is a test message +Date: Fri, 4 May 2001 14:05:44 -0400 + + +Hi, + +Do you like this message? + +-Me diff --git a/Lib/test/test_email/data/msg_21.txt b/Lib/test/test_email/data/msg_21.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_21.txt @@ -0,0 +1,20 @@ +From: aperson at dom.ain +To: bperson at dom.ain +Subject: Test +Content-Type: multipart/mixed; boundary="BOUNDARY" + +MIME message +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit + +One +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit + +Two +--BOUNDARY-- +End of MIME message diff --git a/Lib/test/test_email/data/msg_22.txt b/Lib/test/test_email/data/msg_22.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_22.txt @@ -0,0 +1,46 @@ +Mime-Version: 1.0 +Message-Id: +Date: Tue, 16 Oct 2001 13:59:25 +0300 +To: a at example.com +From: b at example.com +Content-Type: multipart/mixed; boundary="============_-1208892523==_============" + +--============_-1208892523==_============ +Content-Type: text/plain; charset="us-ascii" ; format="flowed" + +Text text text. +--============_-1208892523==_============ +Content-Id: +Content-Type: image/jpeg; name="wibble.JPG" + ; x-mac-type="4A504547" + ; x-mac-creator="474B4F4E" +Content-Disposition: attachment; filename="wibble.JPG" +Content-Transfer-Encoding: base64 + +/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB +AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAALCAXABIEBAREA +g6bCjjw/pIZSjO6FWFpldjySOmCNrO7DBZibUXhTwtCixw+GtAijVdqxxaPp0aKvmGXa +qrbBQvms0mAMeYS/3iTV1dG0hHaRNK01XblnWxtVdjkHLMIgTyqnk9VB7CrP2KzIINpa +4O7I+zxYO9WV8jZg71Zlb+8rMDkEirAVQFAUAKAFAAAUAYAUDgADgY6DjpRtXj5RxjHA +4wQRj0wQCMdCAewpaKKK/9k= +--============_-1208892523==_============ +Content-Id: +Content-Type: image/jpeg; name="wibble2.JPG" + ; x-mac-type="4A504547" + ; x-mac-creator="474B4F4E" +Content-Disposition: attachment; filename="wibble2.JPG" +Content-Transfer-Encoding: base64 + +/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB +AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAALCAXABJ0BAREA +/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA +W6NFJJBEkU10kKGTcWMDwxuU+0JHvk8qAtOpNwqSR0n8c3BlDyXHlqsUltHEiTvdXLxR +7vMiGDNJAJWkAMk8ZkCFp5G2oo5W++INrbQtNfTQxJAuXlupz9oS4d5Y1W+E2XlWZJJE +Y7LWYQxTLE1zuMbfBPxw8X2fibVdIbSbI6nLZxX635t9TjtYreWR7WGKJTLJFFKSlozO +0ShxIXM43uC3/9k= +--============_-1208892523==_============ +Content-Type: text/plain; charset="us-ascii" ; format="flowed" + +Text text text. +--============_-1208892523==_============-- + diff --git a/Lib/test/test_email/data/msg_23.txt b/Lib/test/test_email/data/msg_23.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_23.txt @@ -0,0 +1,8 @@ +From: aperson at dom.ain +Content-Type: multipart/mixed; boundary="BOUNDARY" + +--BOUNDARY +Content-Type: text/plain + +A message part +--BOUNDARY-- diff --git a/Lib/test/test_email/data/msg_24.txt b/Lib/test/test_email/data/msg_24.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_24.txt @@ -0,0 +1,10 @@ +Content-Type: multipart/mixed; boundary="BOUNDARY" +MIME-Version: 1.0 +Subject: A subject +To: aperson at dom.ain +From: bperson at dom.ain + +--BOUNDARY + + +--BOUNDARY-- diff --git a/Lib/test/test_email/data/msg_25.txt b/Lib/test/test_email/data/msg_25.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_25.txt @@ -0,0 +1,117 @@ +From MAILER-DAEMON Fri Apr 06 16:46:09 2001 +Received: from [204.245.199.98] (helo=zinfandel.lacita.com) + by www.linux.org.uk with esmtp (Exim 3.13 #1) + id 14lYR6-0008Iv-00 + for linuxuser-admin at www.linux.org.uk; Fri, 06 Apr 2001 16:46:09 +0100 +Received: from localhost (localhost) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with internal id JAB03225; Fri, 6 Apr 2001 09:23:06 -0800 (GMT-0800) +Date: Fri, 6 Apr 2001 09:23:06 -0800 (GMT-0800) +From: Mail Delivery Subsystem +Subject: Returned mail: Too many hops 19 (17 max): from via [199.164.235.226], to +Message-Id: <200104061723.JAB03225 at zinfandel.lacita.com> +To: +To: postmaster at zinfandel.lacita.com +MIME-Version: 1.0 +Content-Type: multipart/report; report-type=delivery-status; + bo +Auto-Submitted: auto-generated (failure) + +This is a MIME-encapsulated message + +--JAB03225.986577786/zinfandel.lacita.com + +The original message was received at Fri, 6 Apr 2001 09:23:03 -0800 (GMT-0800) +from [199.164.235.226] + + ----- The following addresses have delivery notifications ----- + (unrecoverable error) + + ----- Transcript of session follows ----- +554 Too many hops 19 (17 max): from via [199.164.235.226], to + +--JAB03225.986577786/zinfandel.lacita.com +Content-Type: message/delivery-status + +Reporting-MTA: dns; zinfandel.lacita.com +Received-From-MTA: dns; [199.164.235.226] +Arrival-Date: Fri, 6 Apr 2001 09:23:03 -0800 (GMT-0800) + +Final-Recipient: rfc822; scoffman at wellpartner.com +Action: failed +Status: 5.4.6 +Last-Attempt-Date: Fri, 6 Apr 2001 09:23:06 -0800 (GMT-0800) + +--JAB03225.986577786/zinfandel.lacita.com +Content-Type: text/rfc822-headers + +Return-Path: linuxuser-admin at www.linux.org.uk +Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03225 for ; Fri, 6 Apr 2001 09:23:03 -0800 (GMT-0800) +Received: from zinfandel.lacita.com ([204.245.199.98]) + by + fo +Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03221 for ; Fri, 6 Apr 2001 09:22:18 -0800 (GMT-0800) +Received: from zinfandel.lacita.com ([204.245.199.98]) + by + fo +Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03217 for ; Fri, 6 Apr 2001 09:21:37 -0800 (GMT-0800) +Received: from zinfandel.lacita.com ([204.245.199.98]) + by + fo +Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03213 for ; Fri, 6 Apr 2001 09:20:56 -0800 (GMT-0800) +Received: from zinfandel.lacita.com ([204.245.199.98]) + by + fo +Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03209 for ; Fri, 6 Apr 2001 09:20:15 -0800 (GMT-0800) +Received: from zinfandel.lacita.com ([204.245.199.98]) + by + fo +Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03205 for ; Fri, 6 Apr 2001 09:19:33 -0800 (GMT-0800) +Received: from zinfandel.lacita.com ([204.245.199.98]) + by + fo +Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03201 for ; Fri, 6 Apr 2001 09:18:52 -0800 (GMT-0800) +Received: from zinfandel.lacita.com ([204.245.199.98]) + by + fo +Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03197 for ; Fri, 6 Apr 2001 09:17:54 -0800 (GMT-0800) +Received: from www.linux.org.uk (parcelfarce.linux.theplanet.co.uk [195.92.249.252]) + by + fo +Received: from localhost.localdomain + ([ + by + id +Received: from [212.1.130.11] (helo=s1.uklinux.net ident=root) + by + id + fo +Received: from server (ppp-2-22.cvx4.telinco.net [212.1.149.22]) + by + fo +From: Daniel James +Organization: LinuxUser +To: linuxuser at www.linux.org.uk +X-Mailer: KMail [version 1.1.99] +Content-Type: text/plain; + c +MIME-Version: 1.0 +Message-Id: <01040616033903.00962 at server> +Content-Transfer-Encoding: 8bit +Subject: [LinuxUser] bulletin no. 45 +Sender: linuxuser-admin at www.linux.org.uk +Errors-To: linuxuser-admin at www.linux.org.uk +X-BeenThere: linuxuser at www.linux.org.uk +X-Mailman-Version: 2.0.3 +Precedence: bulk +List-Help: +List-Post: +List-Subscribe: , + +List-Unsubscribe: , + +Date: Fri, 6 Apr 2001 16:03:39 +0100 + +--JAB03225.986577786/zinfandel.lacita.com-- + + diff --git a/Lib/test/test_email/data/msg_26.txt b/Lib/test/test_email/data/msg_26.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_26.txt @@ -0,0 +1,46 @@ +Received: from xcar [192.168.0.2] by jeeves.wooster.local + (SMTPD32-7.07 EVAL) id AFF92F0214; Sun, 12 May 2002 08:55:37 +0100 +Date: Sun, 12 May 2002 08:56:15 +0100 +From: Father Time +To: timbo at jeeves.wooster.local +Subject: IMAP file test +Message-ID: <6df65d354b.father.time at rpc.wooster.local> +X-Organization: Home +User-Agent: Messenger-Pro/2.50a (MsgServe/1.50) (RISC-OS/4.02) POPstar/2.03 +MIME-Version: 1.0 +Content-Type: multipart/mixed; boundary="1618492860--2051301190--113853680" +Status: R +X-UIDL: 319998302 + +This message is in MIME format which your mailer apparently does not support. +You either require a newer version of your software which supports MIME, or +a separate MIME decoding utility. Alternatively, ask the sender of this +message to resend it in a different format. + +--1618492860--2051301190--113853680 +Content-Type: text/plain; charset=us-ascii + +Simple email with attachment. + + +--1618492860--2051301190--113853680 +Content-Type: application/riscos; name="clock.bmp,69c"; type=BMP; + load=&fff69c4b; exec=&355dd4d1; access=&03 +Content-Disposition: attachment; filename="clock.bmp" +Content-Transfer-Encoding: base64 + +Qk12AgAAAAAAAHYAAAAoAAAAIAAAACAAAAABAAQAAAAAAAAAAADXDQAA1w0AAAAAAAAA +AAAAAAAAAAAAiAAAiAAAAIiIAIgAAACIAIgAiIgAALu7uwCIiIgAERHdACLuIgAz//8A +zAAAAN0R3QDu7iIA////AAAAAAAAAAAAAAAAAAAAAAAAAAi3AAAAAAAAADeAAAAAAAAA +C3ADMzMzMANwAAAAAAAAAAAHMAAAAANwAAAAAAAAAACAMAd3zPfwAwgAAAAAAAAIAwd/ +f8x/f3AwgAAAAAAAgDB0x/f3//zPAwgAAAAAAAcHfM9////8z/AwAAAAAAiwd/f3//// +////A4AAAAAAcEx/f///////zAMAAAAAiwfM9////3///8zwOAAAAAcHf3////B///// +8DAAAAALB/f3///wd3d3//AwAAAABwTPf//wCQAAD/zAMAAAAAsEx/f///B////8wDAA +AAAHB39////wf/////AwAAAACwf39///8H/////wMAAAAIcHfM9///B////M8DgAAAAA +sHTH///wf///xAMAAAAACHB3f3//8H////cDgAAAAAALB3zH//D//M9wMAAAAAAAgLB0 +z39///xHAwgAAAAAAAgLB3d3RHd3cDCAAAAAAAAAgLAHd0R3cAMIAAAAAAAAgAgLcAAA +AAMwgAgAAAAACDAAAAu7t7cwAAgDgAAAAABzcIAAAAAAAAgDMwAAAAAAN7uwgAAAAAgH +MzMAAAAACH97tzAAAAALu3c3gAAAAAAL+7tzDABAu7f7cAAAAAAACA+3MA7EQAv/sIAA +AAAAAAAIAAAAAAAAAIAAAAAA + +--1618492860--2051301190--113853680-- diff --git a/Lib/test/test_email/data/msg_27.txt b/Lib/test/test_email/data/msg_27.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_27.txt @@ -0,0 +1,15 @@ +Return-Path: +Received: by mail.dom.ain (Postfix, from userid 889) + id B9D0AD35DB; Tue, 4 Jun 2002 21:46:59 -0400 (EDT) +Message-ID: <15613.28051.707126.569693 at dom.ain> +Date: Tue, 4 Jun 2002 21:46:59 -0400 +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +Content-Transfer-Encoding: 7bit +Subject: bug demonstration + 12345678911234567892123456789312345678941234567895123456789612345678971234567898112345678911234567892123456789112345678911234567892123456789 + more text +From: aperson at dom.ain (Anne P. Erson) +To: bperson at dom.ain (Barney P. Erson) + +test diff --git a/Lib/test/test_email/data/msg_28.txt b/Lib/test/test_email/data/msg_28.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_28.txt @@ -0,0 +1,25 @@ +From: aperson at dom.ain +MIME-Version: 1.0 +Content-Type: multipart/digest; boundary=BOUNDARY + +--BOUNDARY +Content-Type: message/rfc822 + +Content-Type: text/plain; charset=us-ascii +To: aa at bb.org +From: cc at dd.org +Subject: ee + +message 1 + +--BOUNDARY +Content-Type: message/rfc822 + +Content-Type: text/plain; charset=us-ascii +To: aa at bb.org +From: cc at dd.org +Subject: ee + +message 2 + +--BOUNDARY-- diff --git a/Lib/test/test_email/data/msg_29.txt b/Lib/test/test_email/data/msg_29.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_29.txt @@ -0,0 +1,22 @@ +Return-Path: +Delivered-To: bbb at zzz.org +Received: by mail.zzz.org (Postfix, from userid 889) + id 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT) +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii; + title*0*="us-ascii'en'This%20is%20even%20more%20"; + title*1*="%2A%2A%2Afun%2A%2A%2A%20"; + title*2="isn't it!" +Content-Transfer-Encoding: 7bit +Message-ID: <15090.61304.110929.45684 at aaa.zzz.org> +From: bbb at ddd.com (John X. Doe) +To: bbb at zzz.org +Subject: This is a test message +Date: Fri, 4 May 2001 14:05:44 -0400 + + +Hi, + +Do you like this message? + +-Me diff --git a/Lib/test/test_email/data/msg_30.txt b/Lib/test/test_email/data/msg_30.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_30.txt @@ -0,0 +1,23 @@ +From: aperson at dom.ain +MIME-Version: 1.0 +Content-Type: multipart/digest; boundary=BOUNDARY + +--BOUNDARY + +Content-Type: text/plain; charset=us-ascii +To: aa at bb.org +From: cc at dd.org +Subject: ee + +message 1 + +--BOUNDARY + +Content-Type: text/plain; charset=us-ascii +To: aa at bb.org +From: cc at dd.org +Subject: ee + +message 2 + +--BOUNDARY-- diff --git a/Lib/test/test_email/data/msg_31.txt b/Lib/test/test_email/data/msg_31.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_31.txt @@ -0,0 +1,15 @@ +From: aperson at dom.ain +MIME-Version: 1.0 +Content-Type: multipart/mixed; boundary=BOUNDARY_ + +--BOUNDARY +Content-Type: text/plain + +message 1 + +--BOUNDARY +Content-Type: text/plain + +message 2 + +--BOUNDARY-- diff --git a/Lib/test/test_email/data/msg_32.txt b/Lib/test/test_email/data/msg_32.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_32.txt @@ -0,0 +1,14 @@ +Delivered-To: freebsd-isp at freebsd.org +Date: Tue, 26 Sep 2000 12:23:03 -0500 +From: Anne Person +To: Barney Dude +Subject: Re: Limiting Perl CPU Utilization... +Mime-Version: 1.0 +Content-Type: text/plain; charset*=ansi-x3.4-1968''us-ascii +Content-Disposition: inline +User-Agent: Mutt/1.3.8i +Sender: owner-freebsd-isp at FreeBSD.ORG +Precedence: bulk +X-Loop: FreeBSD.org + +Some message. diff --git a/Lib/test/test_email/data/msg_33.txt b/Lib/test/test_email/data/msg_33.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_33.txt @@ -0,0 +1,29 @@ +Delivered-To: freebsd-isp at freebsd.org +Date: Wed, 27 Sep 2000 11:11:09 -0500 +From: Anne Person +To: Barney Dude +Subject: Re: Limiting Perl CPU Utilization... +Mime-Version: 1.0 +Content-Type: multipart/signed; micalg*=ansi-x3.4-1968''pgp-md5; + protocol*=ansi-x3.4-1968''application%2Fpgp-signature; + boundary*="ansi-x3.4-1968''EeQfGwPcQSOJBaQU" +Content-Disposition: inline +Sender: owner-freebsd-isp at FreeBSD.ORG +Precedence: bulk +X-Loop: FreeBSD.org + + +--EeQfGwPcQSOJBaQU +Content-Type: text/plain; charset*=ansi-x3.4-1968''us-ascii +Content-Disposition: inline +Content-Transfer-Encoding: quoted-printable + +part 1 + +--EeQfGwPcQSOJBaQU +Content-Type: text/plain +Content-Disposition: inline + +part 2 + +--EeQfGwPcQSOJBaQU-- diff --git a/Lib/test/test_email/data/msg_34.txt b/Lib/test/test_email/data/msg_34.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_34.txt @@ -0,0 +1,19 @@ +From: aperson at dom.ain +To: bperson at dom.ain +Content-Type: multipart/digest; boundary=XYZ + +--XYZ +Content-Type: text/plain + + +This is a text plain part that is counter to recommended practice in +RFC 2046, $5.1.5, but is not illegal + +--XYZ + +From: cperson at dom.ain +To: dperson at dom.ain + +A submessage + +--XYZ-- diff --git a/Lib/test/test_email/data/msg_35.txt b/Lib/test/test_email/data/msg_35.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_35.txt @@ -0,0 +1,4 @@ +From: aperson at dom.ain +To: bperson at dom.ain +Subject: here's something interesting +counter to RFC 2822, there's no separating newline here diff --git a/Lib/test/test_email/data/msg_36.txt b/Lib/test/test_email/data/msg_36.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_36.txt @@ -0,0 +1,40 @@ +Mime-Version: 1.0 +Content-Type: Multipart/Mixed; Boundary="NextPart" +To: IETF-Announce:; +From: Internet-Drafts at ietf.org +Subject: I-D ACTION:draft-ietf-mboned-mix-00.txt +Date: Tue, 22 Dec 1998 16:55:06 -0500 + +--NextPart + +Blah blah blah + +--NextPart +Content-Type: Multipart/Alternative; Boundary="OtherAccess" + +--OtherAccess +Content-Type: Message/External-body; + access-type="mail-server"; + server="mailserv at ietf.org" + +Content-Type: text/plain +Content-ID: <19981222151406.I-D at ietf.org> + +ENCODING mime +FILE /internet-drafts/draft-ietf-mboned-mix-00.txt + +--OtherAccess +Content-Type: Message/External-body; + name="draft-ietf-mboned-mix-00.txt"; + site="ftp.ietf.org"; + access-type="anon-ftp"; + directory="internet-drafts" + +Content-Type: text/plain +Content-ID: <19981222151406.I-D at ietf.org> + + +--OtherAccess-- + +--NextPart-- + diff --git a/Lib/test/test_email/data/msg_37.txt b/Lib/test/test_email/data/msg_37.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_37.txt @@ -0,0 +1,22 @@ +Content-Type: multipart/mixed; boundary=ABCDE + +--ABCDE +Content-Type: text/x-one + +Blah + +--ABCDE +--ABCDE +Content-Type: text/x-two + +Blah + +--ABCDE +--ABCDE +--ABCDE +--ABCDE +Content-Type: text/x-two + +Blah + +--ABCDE-- diff --git a/Lib/test/test_email/data/msg_38.txt b/Lib/test/test_email/data/msg_38.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_38.txt @@ -0,0 +1,101 @@ +MIME-Version: 1.0 +Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0" + +------- =_aaaaaaaaaa0 +Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa1" +Content-ID: <20592.1022586929.1 at example.com> + +------- =_aaaaaaaaaa1 +Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa2" +Content-ID: <20592.1022586929.2 at example.com> + +------- =_aaaaaaaaaa2 +Content-Type: text/plain +Content-ID: <20592.1022586929.3 at example.com> +Content-Description: very tricky +Content-Transfer-Encoding: 7bit + + +Unlike the test test_nested-multiples-with-internal-boundary, this +piece of text not only contains the outer boundary tags +------- =_aaaaaaaaaa1 +and +------- =_aaaaaaaaaa0 +but puts them at the start of a line! And, to be even nastier, it +even includes a couple of end tags, such as this one: + +------- =_aaaaaaaaaa1-- + +and this one, which is from a multipart we haven't even seen yet! + +------- =_aaaaaaaaaa4-- + +This will, I'm sure, cause much breakage of MIME parsers. But, as +far as I can tell, it's perfectly legal. I have not yet ever seen +a case of this in the wild, but I've seen *similar* things. + + +------- =_aaaaaaaaaa2 +Content-Type: application/octet-stream +Content-ID: <20592.1022586929.4 at example.com> +Content-Description: patch2 +Content-Transfer-Encoding: base64 + +XXX + +------- =_aaaaaaaaaa2-- + +------- =_aaaaaaaaaa1 +Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa3" +Content-ID: <20592.1022586929.6 at example.com> + +------- =_aaaaaaaaaa3 +Content-Type: application/octet-stream +Content-ID: <20592.1022586929.7 at example.com> +Content-Description: patch3 +Content-Transfer-Encoding: base64 + +XXX + +------- =_aaaaaaaaaa3 +Content-Type: application/octet-stream +Content-ID: <20592.1022586929.8 at example.com> +Content-Description: patch4 +Content-Transfer-Encoding: base64 + +XXX + +------- =_aaaaaaaaaa3-- + +------- =_aaaaaaaaaa1 +Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa4" +Content-ID: <20592.1022586929.10 at example.com> + +------- =_aaaaaaaaaa4 +Content-Type: application/octet-stream +Content-ID: <20592.1022586929.11 at example.com> +Content-Description: patch5 +Content-Transfer-Encoding: base64 + +XXX + +------- =_aaaaaaaaaa4 +Content-Type: application/octet-stream +Content-ID: <20592.1022586929.12 at example.com> +Content-Description: patch6 +Content-Transfer-Encoding: base64 + +XXX + +------- =_aaaaaaaaaa4-- + +------- =_aaaaaaaaaa1-- + +------- =_aaaaaaaaaa0 +Content-Type: text/plain; charset="us-ascii" +Content-ID: <20592.1022586929.15 at example.com> + +-- +It's never too late to have a happy childhood. + +------- =_aaaaaaaaaa0-- diff --git a/Lib/test/test_email/data/msg_39.txt b/Lib/test/test_email/data/msg_39.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_39.txt @@ -0,0 +1,83 @@ +MIME-Version: 1.0 +Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0" + +------- =_aaaaaaaaaa0 +Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa1" +Content-ID: <20592.1022586929.1 at example.com> + +------- =_aaaaaaaaaa1 +Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa1" +Content-ID: <20592.1022586929.2 at example.com> + +------- =_aaaaaaaaaa1 +Content-Type: application/octet-stream +Content-ID: <20592.1022586929.3 at example.com> +Content-Description: patch1 +Content-Transfer-Encoding: base64 + +XXX + +------- =_aaaaaaaaaa1 +Content-Type: application/octet-stream +Content-ID: <20592.1022586929.4 at example.com> +Content-Description: patch2 +Content-Transfer-Encoding: base64 + +XXX + +------- =_aaaaaaaaaa1-- + +------- =_aaaaaaaaaa1 +Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa1" +Content-ID: <20592.1022586929.6 at example.com> + +------- =_aaaaaaaaaa1 +Content-Type: application/octet-stream +Content-ID: <20592.1022586929.7 at example.com> +Content-Description: patch3 +Content-Transfer-Encoding: base64 + +XXX + +------- =_aaaaaaaaaa1 +Content-Type: application/octet-stream +Content-ID: <20592.1022586929.8 at example.com> +Content-Description: patch4 +Content-Transfer-Encoding: base64 + +XXX + +------- =_aaaaaaaaaa1-- + +------- =_aaaaaaaaaa1 +Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa1" +Content-ID: <20592.1022586929.10 at example.com> + +------- =_aaaaaaaaaa1 +Content-Type: application/octet-stream +Content-ID: <20592.1022586929.11 at example.com> +Content-Description: patch5 +Content-Transfer-Encoding: base64 + +XXX + +------- =_aaaaaaaaaa1 +Content-Type: application/octet-stream +Content-ID: <20592.1022586929.12 at example.com> +Content-Description: patch6 +Content-Transfer-Encoding: base64 + +XXX + +------- =_aaaaaaaaaa1-- + +------- =_aaaaaaaaaa1-- + +------- =_aaaaaaaaaa0 +Content-Type: text/plain; charset="us-ascii" +Content-ID: <20592.1022586929.15 at example.com> + +-- +It's never too late to have a happy childhood. + +------- =_aaaaaaaaaa0-- diff --git a/Lib/test/test_email/data/msg_40.txt b/Lib/test/test_email/data/msg_40.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_40.txt @@ -0,0 +1,10 @@ +MIME-Version: 1.0 +Content-Type: text/html; boundary="--961284236552522269" + +----961284236552522269 +Content-Type: text/html; +Content-Transfer-Encoding: 7Bit + + + +----961284236552522269-- diff --git a/Lib/test/test_email/data/msg_41.txt b/Lib/test/test_email/data/msg_41.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_41.txt @@ -0,0 +1,8 @@ +From: "Allison Dunlap" +To: yyy at example.com +Subject: 64423 +Date: Sun, 11 Jul 2004 16:09:27 -0300 +MIME-Version: 1.0 +Content-Type: multipart/alternative; + +Blah blah blah diff --git a/Lib/test/test_email/data/msg_42.txt b/Lib/test/test_email/data/msg_42.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_42.txt @@ -0,0 +1,20 @@ +Content-Type: multipart/mixed; boundary="AAA" +From: Mail Delivery Subsystem +To: yyy at example.com + +This is a MIME-encapsulated message + +--AAA + +Stuff + +--AAA +Content-Type: message/rfc822 + +From: webmaster at python.org +To: zzz at example.com +Content-Type: multipart/mixed; boundary="BBB" + +--BBB-- + +--AAA-- diff --git a/Lib/test/test_email/data/msg_43.txt b/Lib/test/test_email/data/msg_43.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_43.txt @@ -0,0 +1,217 @@ +From SRS0=aO/p=ON=bag.python.org=None at bounce2.pobox.com Fri Nov 26 21:40:36 2004 +X-VM-v5-Data: ([nil nil nil nil nil nil nil nil nil] + [nil nil nil nil nil nil nil "MAILER DAEMON <>" "MAILER DAEMON <>" nil nil "Banned file: auto__mail.python.bat in mail from you" "^From:" nil nil nil nil "Banned file: auto__mail.python.bat in mail from you" nil nil nil nil nil nil nil] + nil) +MIME-Version: 1.0 +Message-Id: +Content-Type: multipart/report; report-type=delivery-status; + charset=utf-8; + boundary="----------=_1101526904-1956-5" +X-Virus-Scanned: by XS4ALL Virus Scanner +X-UIDL: 4\G!!! +To: +Subject: Banned file: auto__mail.python.bat in mail from you +Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +This is a multi-part message in MIME format... + +------------=_1101526904-1956-5 +Content-Type: text/plain; charset="utf-8" +Content-Disposition: inline +Content-Transfer-Encoding: 7bit + +BANNED FILENAME ALERT + +Your message to: xxxxxxx at dot.ca.gov, xxxxxxxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxx at dot.ca.gov, xxxxxx at dot.ca.gov, xxxxxxxxxxxxxxxx at dot.ca.gov, xxxxxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxxxxxxxx at dot.ca.gov, xxxxxxxxxxxx at dot.ca.gov, xxxxxxx at dot.ca.gov, xxxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxx at dot.ca.gov, xxx at dot.ca.gov, xxxxxxx at dot.ca.gov, xxxxxxx at dot.ca.gov, xxxxxxxxxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxxx at dot.ca.gov, xxx at dot.ca.gov, xxxxxxxx at dot.ca.gov, xxxxxxxxxxxxx at dot.ca.gov, xxxxxxxxxxxxx at dot.ca.gov, xxxxxxxxxxx at dot.ca.gov, xxxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxxxxxxxx at dot.ca.gov, xxxxxxx at dot.ca.gov, xxxxxxxxxxxxxxx at dot.ca.gov, xxxxxxxxxxxxx at dot.ca.gov, xxxx at dot.ca.gov, xxxxxxxx at dot.ca.gov, xxxxxxxxxx at dot.ca.gov, xxxxxxxxxxxxxxxxxx at dot.ca.gov +was blocked by our Spam Firewall. The email you sent with the following subject has NOT BEEN DELIVERED: + +Subject: Delivery_failure_notice + +An attachment in that mail was of a file type that the Spam Firewall is set to block. + + + +------------=_1101526904-1956-5 +Content-Type: message/delivery-status +Content-Disposition: inline +Content-Transfer-Encoding: 7bit +Content-Description: Delivery error report + +Reporting-MTA: dns; sacspam01.dot.ca.gov +Received-From-MTA: smtp; sacspam01.dot.ca.gov ([127.0.0.1]) +Arrival-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxxxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxxxxxxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxxxxxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +Final-Recipient: rfc822; xxxxxxx at dot.ca.gov +Action: failed +Status: 5.7.1 +Diagnostic-Code: smtp; 550 5.7.1 Message content rejected, id=01956-02-2 - BANNED: auto__mail.python.bat +Last-Attempt-Date: Fri, 26 Nov 2004 19:41:44 -0800 (PST) + +------------=_1101526904-1956-5 +Content-Type: text/rfc822-headers +Content-Disposition: inline +Content-Transfer-Encoding: 7bit +Content-Description: Undelivered-message headers + +Received: from kgsav.org (ppp-70-242-162-63.dsl.spfdmo.swbell.net [70.242.162.63]) + by sacspam01.dot.ca.gov (Spam Firewall) with SMTP + id A232AD03DE3A; Fri, 26 Nov 2004 19:41:35 -0800 (PST) +From: webmaster at python.org +To: xxxxx at dot.ca.gov +Date: Sat, 27 Nov 2004 03:35:30 UTC +Subject: Delivery_failure_notice +Importance: Normal +X-Priority: 3 (Normal) +X-MSMail-Priority: Normal +Message-ID: +MIME-Version: 1.0 +Content-Type: multipart/mixed; boundary="====67bd2b7a5.f99f7" +Content-Transfer-Encoding: 7bit + +------------=_1101526904-1956-5-- + diff --git a/Lib/test/test_email/data/msg_44.txt b/Lib/test/test_email/data/msg_44.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_44.txt @@ -0,0 +1,33 @@ +Return-Path: +Delivered-To: barry at python.org +Received: by mail.python.org (Postfix, from userid 889) + id C2BF0D37C6; Tue, 11 Sep 2001 00:05:05 -0400 (EDT) +MIME-Version: 1.0 +Content-Type: multipart/mixed; boundary="h90VIIIKmx" +Content-Transfer-Encoding: 7bit +Message-ID: <15261.36209.358846.118674 at anthem.python.org> +From: barry at python.org (Barry A. Warsaw) +To: barry at python.org +Subject: a simple multipart +Date: Tue, 11 Sep 2001 00:05:05 -0400 +X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid +X-Attribution: BAW +X-Oblique-Strategy: Make a door into a window + + +--h90VIIIKmx +Content-Type: text/plain; name="msg.txt" +Content-Transfer-Encoding: 7bit + +a simple kind of mirror +to reflect upon our own + +--h90VIIIKmx +Content-Type: text/plain; name="msg.txt" +Content-Transfer-Encoding: 7bit + +a simple kind of mirror +to reflect upon our own + +--h90VIIIKmx-- + diff --git a/Lib/test/test_email/data/msg_45.txt b/Lib/test/test_email/data/msg_45.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_45.txt @@ -0,0 +1,33 @@ +From: +To: +Subject: test +X-Long-Line: Some really long line contains a lot of text and thus has to be rewrapped because it is some + really long + line +MIME-Version: 1.0 +Content-Type: multipart/signed; boundary="borderline"; + protocol="application/pgp-signature"; micalg=pgp-sha1 + +This is an OpenPGP/MIME signed message (RFC 2440 and 3156) +--borderline +Content-Type: text/plain +X-Long-Line: Another really long line contains a lot of text and thus has to be rewrapped because it is another + really long + line + +This is the signed contents. + +--borderline +Content-Type: application/pgp-signature; name="signature.asc" +Content-Description: OpenPGP digital signature +Content-Disposition: attachment; filename="signature.asc" + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2.0.6 (GNU/Linux) + +iD8DBQFG03voRhp6o4m9dFsRApSZAKCCAN3IkJlVRg6NvAiMHlvvIuMGPQCeLZtj +FGwfnRHFBFO/S4/DKysm0lI= +=t7+s +-----END PGP SIGNATURE----- + +--borderline-- diff --git a/Lib/test/test_email/data/msg_46.txt b/Lib/test/test_email/data/msg_46.txt new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/data/msg_46.txt @@ -0,0 +1,23 @@ +Return-Path: +Delivery-Date: Mon, 08 Feb 2010 14:05:16 +0100 +Received: from example.org (example.org [64.5.53.58]) + by example.net (node=mxbap2) with ESMTP (Nemesis) + id UNIQUE for someone at example.com; Mon, 08 Feb 2010 14:05:16 +0100 +Date: Mon, 01 Feb 2010 12:21:16 +0100 +From: "Sender" +To: +Subject: GroupwiseForwardingTest +Mime-Version: 1.0 +Content-Type: message/rfc822 + +Return-path: +Message-ID: <4B66B890.4070408 at teconcept.de> +Date: Mon, 01 Feb 2010 12:18:40 +0100 +From: "Dr. Sender" +MIME-Version: 1.0 +To: "Recipient" +Subject: GroupwiseForwardingTest +Content-Type: text/plain; charset=ISO-8859-15 +Content-Transfer-Encoding: 7bit + +Testing email forwarding with Groupwise 1.2.2010 diff --git a/Lib/test/test_email/test_asian_codecs.py b/Lib/test/test_email/test_asian_codecs.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/test_asian_codecs.py @@ -0,0 +1,82 @@ +# Copyright (C) 2002-2006 Python Software Foundation +# Contact: email-sig at python.org +# email package unit tests for (optional) Asian codecs + +import unittest +from test.support import run_unittest + +from test.test_email.test_email import TestEmailBase +from email.charset import Charset +from email.header import Header, decode_header +from email.message import Message + +# We're compatible with Python 2.3, but it doesn't have the built-in Asian +# codecs, so we have to skip all these tests. +try: + str(b'foo', 'euc-jp') +except LookupError: + raise unittest.SkipTest + + + +class TestEmailAsianCodecs(TestEmailBase): + def test_japanese_codecs(self): + eq = self.ndiffAssertEqual + jcode = "euc-jp" + gcode = "iso-8859-1" + j = Charset(jcode) + g = Charset(gcode) + h = Header("Hello World!") + jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' + b'\xa5\xeb\xa5\xc9\xa1\xaa', jcode) + ghello = str(b'Gr\xfc\xdf Gott!', gcode) + h.append(jhello, j) + h.append(ghello, g) + # BAW: This used to -- and maybe should -- fold the two iso-8859-1 + # chunks into a single encoded word. However it doesn't violate the + # standard to have them as two encoded chunks and maybe it's + # reasonable for each .append() call to result in a separate + # encoded word. + eq(h.encode(), """\ +Hello World! =?iso-2022-jp?b?GyRCJU8lbSE8JW8hPCVrJUkhKhsoQg==?= + =?iso-8859-1?q?Gr=FC=DF_Gott!?=""") + eq(decode_header(h.encode()), + [(b'Hello World!', None), + (b'\x1b$B%O%m!<%o!<%k%I!*\x1b(B', 'iso-2022-jp'), + (b'Gr\xfc\xdf Gott!', gcode)]) + subject_bytes = (b'test-ja \xa4\xd8\xc5\xea\xb9\xc6\xa4\xb5' + b'\xa4\xec\xa4\xbf\xa5\xe1\xa1\xbc\xa5\xeb\xa4\xcf\xbb\xca\xb2' + b'\xf1\xbc\xd4\xa4\xce\xbe\xb5\xc7\xa7\xa4\xf2\xc2\xd4\xa4\xc3' + b'\xa4\xc6\xa4\xa4\xa4\xde\xa4\xb9') + subject = str(subject_bytes, jcode) + h = Header(subject, j, header_name="Subject") + # test a very long header + enc = h.encode() + # TK: splitting point may differ by codec design and/or Header encoding + eq(enc , """\ +=?iso-2022-jp?b?dGVzdC1qYSAbJEIkWEVqOUYkNSRsJD8lYSE8JWskTztKGyhC?= + =?iso-2022-jp?b?GyRCMnE8VCROPjVHJyRyQlQkQyRGJCQkXiQ5GyhC?=""") + # TK: full decode comparison + eq(str(h).encode(jcode), subject_bytes) + + def test_payload_encoding_utf8(self): + jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' + b'\xa5\xeb\xa5\xc9\xa1\xaa', 'euc-jp') + msg = Message() + msg.set_payload(jhello, 'utf-8') + ustr = msg.get_payload(decode=True).decode(msg.get_content_charset()) + self.assertEqual(jhello, ustr) + + def test_payload_encoding(self): + jcode = 'euc-jp' + jhello = str(b'\xa5\xcf\xa5\xed\xa1\xbc\xa5\xef\xa1\xbc' + b'\xa5\xeb\xa5\xc9\xa1\xaa', jcode) + msg = Message() + msg.set_payload(jhello, jcode) + ustr = msg.get_payload(decode=True).decode(msg.get_content_charset()) + self.assertEqual(jhello, ustr) + + + +if __name__ == '__main__': + unittest.main() diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/test_email.py @@ -0,0 +1,4146 @@ +# Copyright (C) 2001-2010 Python Software Foundation +# Contact: email-sig at python.org +# email package unit tests + +import os +import re +import sys +import time +import base64 +import difflib +import unittest +import warnings +import textwrap + +from io import StringIO, BytesIO +from itertools import chain + +import email + +from email.charset import Charset +from email.header import Header, decode_header, make_header +from email.parser import Parser, HeaderParser +from email.generator import Generator, DecodedGenerator +from email.message import Message +from email.mime.application import MIMEApplication +from email.mime.audio import MIMEAudio +from email.mime.text import MIMEText +from email.mime.image import MIMEImage +from email.mime.base import MIMEBase +from email.mime.message import MIMEMessage +from email.mime.multipart import MIMEMultipart +from email import utils +from email import errors +from email import encoders +from email import iterators +from email import base64mime +from email import quoprimime + +from test.support import findfile, run_unittest, unlink +from test.test_email import __file__ as landmark + + +NL = '\n' +EMPTYSTRING = '' +SPACE = ' ' + + + +def openfile(filename, *args, **kws): + path = os.path.join(os.path.dirname(landmark), 'data', filename) + return open(path, *args, **kws) + + + +# Base test class +class TestEmailBase(unittest.TestCase): + def ndiffAssertEqual(self, first, second): + """Like assertEqual except use ndiff for readable output.""" + if first != second: + sfirst = str(first) + ssecond = str(second) + rfirst = [repr(line) for line in sfirst.splitlines()] + rsecond = [repr(line) for line in ssecond.splitlines()] + diff = difflib.ndiff(rfirst, rsecond) + raise self.failureException(NL + NL.join(diff)) + + def _msgobj(self, filename): + with openfile(findfile(filename)) as fp: + return email.message_from_file(fp) + + + +# Test various aspects of the Message class's API +class TestMessageAPI(TestEmailBase): + def test_get_all(self): + eq = self.assertEqual + msg = self._msgobj('msg_20.txt') + eq(msg.get_all('cc'), ['ccc at zzz.org', 'ddd at zzz.org', 'eee at zzz.org']) + eq(msg.get_all('xx', 'n/a'), 'n/a') + + def test_getset_charset(self): + eq = self.assertEqual + msg = Message() + eq(msg.get_charset(), None) + charset = Charset('iso-8859-1') + msg.set_charset(charset) + eq(msg['mime-version'], '1.0') + eq(msg.get_content_type(), 'text/plain') + eq(msg['content-type'], 'text/plain; charset="iso-8859-1"') + eq(msg.get_param('charset'), 'iso-8859-1') + eq(msg['content-transfer-encoding'], 'quoted-printable') + eq(msg.get_charset().input_charset, 'iso-8859-1') + # Remove the charset + msg.set_charset(None) + eq(msg.get_charset(), None) + eq(msg['content-type'], 'text/plain') + # Try adding a charset when there's already MIME headers present + msg = Message() + msg['MIME-Version'] = '2.0' + msg['Content-Type'] = 'text/x-weird' + msg['Content-Transfer-Encoding'] = 'quinted-puntable' + msg.set_charset(charset) + eq(msg['mime-version'], '2.0') + eq(msg['content-type'], 'text/x-weird; charset="iso-8859-1"') + eq(msg['content-transfer-encoding'], 'quinted-puntable') + + def test_set_charset_from_string(self): + eq = self.assertEqual + msg = Message() + msg.set_charset('us-ascii') + eq(msg.get_charset().input_charset, 'us-ascii') + eq(msg['content-type'], 'text/plain; charset="us-ascii"') + + def test_set_payload_with_charset(self): + msg = Message() + charset = Charset('iso-8859-1') + msg.set_payload('This is a string payload', charset) + self.assertEqual(msg.get_charset().input_charset, 'iso-8859-1') + + def test_get_charsets(self): + eq = self.assertEqual + + msg = self._msgobj('msg_08.txt') + charsets = msg.get_charsets() + eq(charsets, [None, 'us-ascii', 'iso-8859-1', 'iso-8859-2', 'koi8-r']) + + msg = self._msgobj('msg_09.txt') + charsets = msg.get_charsets('dingbat') + eq(charsets, ['dingbat', 'us-ascii', 'iso-8859-1', 'dingbat', + 'koi8-r']) + + msg = self._msgobj('msg_12.txt') + charsets = msg.get_charsets() + eq(charsets, [None, 'us-ascii', 'iso-8859-1', None, 'iso-8859-2', + 'iso-8859-3', 'us-ascii', 'koi8-r']) + + def test_get_filename(self): + eq = self.assertEqual + + msg = self._msgobj('msg_04.txt') + filenames = [p.get_filename() for p in msg.get_payload()] + eq(filenames, ['msg.txt', 'msg.txt']) + + msg = self._msgobj('msg_07.txt') + subpart = msg.get_payload(1) + eq(subpart.get_filename(), 'dingusfish.gif') + + def test_get_filename_with_name_parameter(self): + eq = self.assertEqual + + msg = self._msgobj('msg_44.txt') + filenames = [p.get_filename() for p in msg.get_payload()] + eq(filenames, ['msg.txt', 'msg.txt']) + + def test_get_boundary(self): + eq = self.assertEqual + msg = self._msgobj('msg_07.txt') + # No quotes! + eq(msg.get_boundary(), 'BOUNDARY') + + def test_set_boundary(self): + eq = self.assertEqual + # This one has no existing boundary parameter, but the Content-Type: + # header appears fifth. + msg = self._msgobj('msg_01.txt') + msg.set_boundary('BOUNDARY') + header, value = msg.items()[4] + eq(header.lower(), 'content-type') + eq(value, 'text/plain; charset="us-ascii"; boundary="BOUNDARY"') + # This one has a Content-Type: header, with a boundary, stuck in the + # middle of its headers. Make sure the order is preserved; it should + # be fifth. + msg = self._msgobj('msg_04.txt') + msg.set_boundary('BOUNDARY') + header, value = msg.items()[4] + eq(header.lower(), 'content-type') + eq(value, 'multipart/mixed; boundary="BOUNDARY"') + # And this one has no Content-Type: header at all. + msg = self._msgobj('msg_03.txt') + self.assertRaises(errors.HeaderParseError, + msg.set_boundary, 'BOUNDARY') + + def test_make_boundary(self): + msg = MIMEMultipart('form-data') + # Note that when the boundary gets created is an implementation + # detail and might change. + self.assertEqual(msg.items()[0][1], 'multipart/form-data') + # Trigger creation of boundary + msg.as_string() + self.assertEqual(msg.items()[0][1][:33], + 'multipart/form-data; boundary="==') + # XXX: there ought to be tests of the uniqueness of the boundary, too. + + def test_message_rfc822_only(self): + # Issue 7970: message/rfc822 not in multipart parsed by + # HeaderParser caused an exception when flattened. + with openfile(findfile('msg_46.txt')) as fp: + msgdata = fp.read() + parser = HeaderParser() + msg = parser.parsestr(msgdata) + out = StringIO() + gen = Generator(out, True, 0) + gen.flatten(msg, False) + self.assertEqual(out.getvalue(), msgdata) + + def test_get_decoded_payload(self): + eq = self.assertEqual + msg = self._msgobj('msg_10.txt') + # The outer message is a multipart + eq(msg.get_payload(decode=True), None) + # Subpart 1 is 7bit encoded + eq(msg.get_payload(0).get_payload(decode=True), + b'This is a 7bit encoded message.\n') + # Subpart 2 is quopri + eq(msg.get_payload(1).get_payload(decode=True), + b'\xa1This is a Quoted Printable encoded message!\n') + # Subpart 3 is base64 + eq(msg.get_payload(2).get_payload(decode=True), + b'This is a Base64 encoded message.') + # Subpart 4 is base64 with a trailing newline, which + # used to be stripped (issue 7143). + eq(msg.get_payload(3).get_payload(decode=True), + b'This is a Base64 encoded message.\n') + # Subpart 5 has no Content-Transfer-Encoding: header. + eq(msg.get_payload(4).get_payload(decode=True), + b'This has no Content-Transfer-Encoding: header.\n') + + def test_get_decoded_uu_payload(self): + eq = self.assertEqual + msg = Message() + msg.set_payload('begin 666 -\n+:&5L;&\\@=V]R;&0 \n \nend\n') + for cte in ('x-uuencode', 'uuencode', 'uue', 'x-uue'): + msg['content-transfer-encoding'] = cte + eq(msg.get_payload(decode=True), b'hello world') + # Now try some bogus data + msg.set_payload('foo') + eq(msg.get_payload(decode=True), b'foo') + + def test_decoded_generator(self): + eq = self.assertEqual + msg = self._msgobj('msg_07.txt') + with openfile('msg_17.txt') as fp: + text = fp.read() + s = StringIO() + g = DecodedGenerator(s) + g.flatten(msg) + eq(s.getvalue(), text) + + def test__contains__(self): + msg = Message() + msg['From'] = 'Me' + msg['to'] = 'You' + # Check for case insensitivity + self.assertTrue('from' in msg) + self.assertTrue('From' in msg) + self.assertTrue('FROM' in msg) + self.assertTrue('to' in msg) + self.assertTrue('To' in msg) + self.assertTrue('TO' in msg) + + def test_as_string(self): + eq = self.ndiffAssertEqual + msg = self._msgobj('msg_01.txt') + with openfile('msg_01.txt') as fp: + text = fp.read() + eq(text, str(msg)) + fullrepr = msg.as_string(unixfrom=True) + lines = fullrepr.split('\n') + self.assertTrue(lines[0].startswith('From ')) + eq(text, NL.join(lines[1:])) + + def test_bad_param(self): + msg = email.message_from_string("Content-Type: blarg; baz; boo\n") + self.assertEqual(msg.get_param('baz'), '') + + def test_missing_filename(self): + msg = email.message_from_string("From: foo\n") + self.assertEqual(msg.get_filename(), None) + + def test_bogus_filename(self): + msg = email.message_from_string( + "Content-Disposition: blarg; filename\n") + self.assertEqual(msg.get_filename(), '') + + def test_missing_boundary(self): + msg = email.message_from_string("From: foo\n") + self.assertEqual(msg.get_boundary(), None) + + def test_get_params(self): + eq = self.assertEqual + msg = email.message_from_string( + 'X-Header: foo=one; bar=two; baz=three\n') + eq(msg.get_params(header='x-header'), + [('foo', 'one'), ('bar', 'two'), ('baz', 'three')]) + msg = email.message_from_string( + 'X-Header: foo; bar=one; baz=two\n') + eq(msg.get_params(header='x-header'), + [('foo', ''), ('bar', 'one'), ('baz', 'two')]) + eq(msg.get_params(), None) + msg = email.message_from_string( + 'X-Header: foo; bar="one"; baz=two\n') + eq(msg.get_params(header='x-header'), + [('foo', ''), ('bar', 'one'), ('baz', 'two')]) + + def test_get_param_liberal(self): + msg = Message() + msg['Content-Type'] = 'Content-Type: Multipart/mixed; boundary = "CPIMSSMTPC06p5f3tG"' + self.assertEqual(msg.get_param('boundary'), 'CPIMSSMTPC06p5f3tG') + + def test_get_param(self): + eq = self.assertEqual + msg = email.message_from_string( + "X-Header: foo=one; bar=two; baz=three\n") + eq(msg.get_param('bar', header='x-header'), 'two') + eq(msg.get_param('quuz', header='x-header'), None) + eq(msg.get_param('quuz'), None) + msg = email.message_from_string( + 'X-Header: foo; bar="one"; baz=two\n') + eq(msg.get_param('foo', header='x-header'), '') + eq(msg.get_param('bar', header='x-header'), 'one') + eq(msg.get_param('baz', header='x-header'), 'two') + # XXX: We are not RFC-2045 compliant! We cannot parse: + # msg["Content-Type"] = 'text/plain; weird="hey; dolly? [you] @ <\\"home\\">?"' + # msg.get_param("weird") + # yet. + + def test_get_param_funky_continuation_lines(self): + msg = self._msgobj('msg_22.txt') + self.assertEqual(msg.get_payload(1).get_param('name'), 'wibble.JPG') + + def test_get_param_with_semis_in_quotes(self): + msg = email.message_from_string( + 'Content-Type: image/pjpeg; name="Jim&&Jill"\n') + self.assertEqual(msg.get_param('name'), 'Jim&&Jill') + self.assertEqual(msg.get_param('name', unquote=False), + '"Jim&&Jill"') + + def test_get_param_with_quotes(self): + msg = email.message_from_string( + 'Content-Type: foo; bar*0="baz\\"foobar"; bar*1="\\"baz"') + self.assertEqual(msg.get_param('bar'), 'baz"foobar"baz') + msg = email.message_from_string( + "Content-Type: foo; bar*0=\"baz\\\"foobar\"; bar*1=\"\\\"baz\"") + self.assertEqual(msg.get_param('bar'), 'baz"foobar"baz') + + def test_field_containment(self): + unless = self.assertTrue + msg = email.message_from_string('Header: exists') + unless('header' in msg) + unless('Header' in msg) + unless('HEADER' in msg) + self.assertFalse('headerx' in msg) + + def test_set_param(self): + eq = self.assertEqual + msg = Message() + msg.set_param('charset', 'iso-2022-jp') + eq(msg.get_param('charset'), 'iso-2022-jp') + msg.set_param('importance', 'high value') + eq(msg.get_param('importance'), 'high value') + eq(msg.get_param('importance', unquote=False), '"high value"') + eq(msg.get_params(), [('text/plain', ''), + ('charset', 'iso-2022-jp'), + ('importance', 'high value')]) + eq(msg.get_params(unquote=False), [('text/plain', ''), + ('charset', '"iso-2022-jp"'), + ('importance', '"high value"')]) + msg.set_param('charset', 'iso-9999-xx', header='X-Jimmy') + eq(msg.get_param('charset', header='X-Jimmy'), 'iso-9999-xx') + + def test_del_param(self): + eq = self.assertEqual + msg = self._msgobj('msg_05.txt') + eq(msg.get_params(), + [('multipart/report', ''), ('report-type', 'delivery-status'), + ('boundary', 'D1690A7AC1.996856090/mail.example.com')]) + old_val = msg.get_param("report-type") + msg.del_param("report-type") + eq(msg.get_params(), + [('multipart/report', ''), + ('boundary', 'D1690A7AC1.996856090/mail.example.com')]) + msg.set_param("report-type", old_val) + eq(msg.get_params(), + [('multipart/report', ''), + ('boundary', 'D1690A7AC1.996856090/mail.example.com'), + ('report-type', old_val)]) + + def test_del_param_on_other_header(self): + msg = Message() + msg.add_header('Content-Disposition', 'attachment', filename='bud.gif') + msg.del_param('filename', 'content-disposition') + self.assertEqual(msg['content-disposition'], 'attachment') + + def test_set_type(self): + eq = self.assertEqual + msg = Message() + self.assertRaises(ValueError, msg.set_type, 'text') + msg.set_type('text/plain') + eq(msg['content-type'], 'text/plain') + msg.set_param('charset', 'us-ascii') + eq(msg['content-type'], 'text/plain; charset="us-ascii"') + msg.set_type('text/html') + eq(msg['content-type'], 'text/html; charset="us-ascii"') + + def test_set_type_on_other_header(self): + msg = Message() + msg['X-Content-Type'] = 'text/plain' + msg.set_type('application/octet-stream', 'X-Content-Type') + self.assertEqual(msg['x-content-type'], 'application/octet-stream') + + def test_get_content_type_missing(self): + msg = Message() + self.assertEqual(msg.get_content_type(), 'text/plain') + + def test_get_content_type_missing_with_default_type(self): + msg = Message() + msg.set_default_type('message/rfc822') + self.assertEqual(msg.get_content_type(), 'message/rfc822') + + def test_get_content_type_from_message_implicit(self): + msg = self._msgobj('msg_30.txt') + self.assertEqual(msg.get_payload(0).get_content_type(), + 'message/rfc822') + + def test_get_content_type_from_message_explicit(self): + msg = self._msgobj('msg_28.txt') + self.assertEqual(msg.get_payload(0).get_content_type(), + 'message/rfc822') + + def test_get_content_type_from_message_text_plain_implicit(self): + msg = self._msgobj('msg_03.txt') + self.assertEqual(msg.get_content_type(), 'text/plain') + + def test_get_content_type_from_message_text_plain_explicit(self): + msg = self._msgobj('msg_01.txt') + self.assertEqual(msg.get_content_type(), 'text/plain') + + def test_get_content_maintype_missing(self): + msg = Message() + self.assertEqual(msg.get_content_maintype(), 'text') + + def test_get_content_maintype_missing_with_default_type(self): + msg = Message() + msg.set_default_type('message/rfc822') + self.assertEqual(msg.get_content_maintype(), 'message') + + def test_get_content_maintype_from_message_implicit(self): + msg = self._msgobj('msg_30.txt') + self.assertEqual(msg.get_payload(0).get_content_maintype(), 'message') + + def test_get_content_maintype_from_message_explicit(self): + msg = self._msgobj('msg_28.txt') + self.assertEqual(msg.get_payload(0).get_content_maintype(), 'message') + + def test_get_content_maintype_from_message_text_plain_implicit(self): + msg = self._msgobj('msg_03.txt') + self.assertEqual(msg.get_content_maintype(), 'text') + + def test_get_content_maintype_from_message_text_plain_explicit(self): + msg = self._msgobj('msg_01.txt') + self.assertEqual(msg.get_content_maintype(), 'text') + + def test_get_content_subtype_missing(self): + msg = Message() + self.assertEqual(msg.get_content_subtype(), 'plain') + + def test_get_content_subtype_missing_with_default_type(self): + msg = Message() + msg.set_default_type('message/rfc822') + self.assertEqual(msg.get_content_subtype(), 'rfc822') + + def test_get_content_subtype_from_message_implicit(self): + msg = self._msgobj('msg_30.txt') + self.assertEqual(msg.get_payload(0).get_content_subtype(), 'rfc822') + + def test_get_content_subtype_from_message_explicit(self): + msg = self._msgobj('msg_28.txt') + self.assertEqual(msg.get_payload(0).get_content_subtype(), 'rfc822') + + def test_get_content_subtype_from_message_text_plain_implicit(self): + msg = self._msgobj('msg_03.txt') + self.assertEqual(msg.get_content_subtype(), 'plain') + + def test_get_content_subtype_from_message_text_plain_explicit(self): + msg = self._msgobj('msg_01.txt') + self.assertEqual(msg.get_content_subtype(), 'plain') + + def test_get_content_maintype_error(self): + msg = Message() + msg['Content-Type'] = 'no-slash-in-this-string' + self.assertEqual(msg.get_content_maintype(), 'text') + + def test_get_content_subtype_error(self): + msg = Message() + msg['Content-Type'] = 'no-slash-in-this-string' + self.assertEqual(msg.get_content_subtype(), 'plain') + + def test_replace_header(self): + eq = self.assertEqual + msg = Message() + msg.add_header('First', 'One') + msg.add_header('Second', 'Two') + msg.add_header('Third', 'Three') + eq(msg.keys(), ['First', 'Second', 'Third']) + eq(msg.values(), ['One', 'Two', 'Three']) + msg.replace_header('Second', 'Twenty') + eq(msg.keys(), ['First', 'Second', 'Third']) + eq(msg.values(), ['One', 'Twenty', 'Three']) + msg.add_header('First', 'Eleven') + msg.replace_header('First', 'One Hundred') + eq(msg.keys(), ['First', 'Second', 'Third', 'First']) + eq(msg.values(), ['One Hundred', 'Twenty', 'Three', 'Eleven']) + self.assertRaises(KeyError, msg.replace_header, 'Fourth', 'Missing') + + def test_broken_base64_payload(self): + x = 'AwDp0P7//y6LwKEAcPa/6Q=9' + msg = Message() + msg['content-type'] = 'audio/x-midi' + msg['content-transfer-encoding'] = 'base64' + msg.set_payload(x) + self.assertEqual(msg.get_payload(decode=True), + bytes(x, 'raw-unicode-escape')) + + # Issue 1078919 + def test_ascii_add_header(self): + msg = Message() + msg.add_header('Content-Disposition', 'attachment', + filename='bud.gif') + self.assertEqual('attachment; filename="bud.gif"', + msg['Content-Disposition']) + + def test_noascii_add_header(self): + msg = Message() + msg.add_header('Content-Disposition', 'attachment', + filename="Fu?baller.ppt") + self.assertEqual( + 'attachment; filename*=utf-8\'\'Fu%C3%9Fballer.ppt', + msg['Content-Disposition']) + + def test_nonascii_add_header_via_triple(self): + msg = Message() + msg.add_header('Content-Disposition', 'attachment', + filename=('iso-8859-1', '', 'Fu?baller.ppt')) + self.assertEqual( + 'attachment; filename*=iso-8859-1\'\'Fu%DFballer.ppt', + msg['Content-Disposition']) + + def test_ascii_add_header_with_tspecial(self): + msg = Message() + msg.add_header('Content-Disposition', 'attachment', + filename="windows [filename].ppt") + self.assertEqual( + 'attachment; filename="windows [filename].ppt"', + msg['Content-Disposition']) + + def test_nonascii_add_header_with_tspecial(self): + msg = Message() + msg.add_header('Content-Disposition', 'attachment', + filename="Fu?baller [filename].ppt") + self.assertEqual( + "attachment; filename*=utf-8''Fu%C3%9Fballer%20%5Bfilename%5D.ppt", + msg['Content-Disposition']) + + # Issue 5871: reject an attempt to embed a header inside a header value + # (header injection attack). + def test_embeded_header_via_Header_rejected(self): + msg = Message() + msg['Dummy'] = Header('dummy\nX-Injected-Header: test') + self.assertRaises(errors.HeaderParseError, msg.as_string) + + def test_embeded_header_via_string_rejected(self): + msg = Message() + msg['Dummy'] = 'dummy\nX-Injected-Header: test' + self.assertRaises(errors.HeaderParseError, msg.as_string) + +# Test the email.encoders module +class TestEncoders(unittest.TestCase): + + def test_EncodersEncode_base64(self): + with openfile('PyBanner048.gif', 'rb') as fp: + bindata = fp.read() + mimed = email.mime.image.MIMEImage(bindata) + base64ed = mimed.get_payload() + # the transfer-encoded body lines should all be <=76 characters + lines = base64ed.split('\n') + self.assertLessEqual(max([ len(x) for x in lines ]), 76) + + def test_encode_empty_payload(self): + eq = self.assertEqual + msg = Message() + msg.set_charset('us-ascii') + eq(msg['content-transfer-encoding'], '7bit') + + def test_default_cte(self): + eq = self.assertEqual + # 7bit data and the default us-ascii _charset + msg = MIMEText('hello world') + eq(msg['content-transfer-encoding'], '7bit') + # Similar, but with 8bit data + msg = MIMEText('hello \xf8 world') + eq(msg['content-transfer-encoding'], '8bit') + # And now with a different charset + msg = MIMEText('hello \xf8 world', _charset='iso-8859-1') + eq(msg['content-transfer-encoding'], 'quoted-printable') + + def test_encode7or8bit(self): + # Make sure a charset whose input character set is 8bit but + # whose output character set is 7bit gets a transfer-encoding + # of 7bit. + eq = self.assertEqual + msg = MIMEText('?', _charset='euc-jp') + eq(msg['content-transfer-encoding'], '7bit') + + +# Test long header wrapping +class TestLongHeaders(TestEmailBase): + def test_split_long_continuation(self): + eq = self.ndiffAssertEqual + msg = email.message_from_string("""\ +Subject: bug demonstration +\t12345678911234567892123456789312345678941234567895123456789612345678971234567898112345678911234567892123456789112345678911234567892123456789 +\tmore text + +test +""") + sfp = StringIO() + g = Generator(sfp) + g.flatten(msg) + eq(sfp.getvalue(), """\ +Subject: bug demonstration +\t12345678911234567892123456789312345678941234567895123456789612345678971234567898112345678911234567892123456789112345678911234567892123456789 +\tmore text + +test +""") + + def test_another_long_almost_unsplittable_header(self): + eq = self.ndiffAssertEqual + hstr = """\ +bug demonstration +\t12345678911234567892123456789312345678941234567895123456789612345678971234567898112345678911234567892123456789112345678911234567892123456789 +\tmore text""" + h = Header(hstr, continuation_ws='\t') + eq(h.encode(), """\ +bug demonstration +\t12345678911234567892123456789312345678941234567895123456789612345678971234567898112345678911234567892123456789112345678911234567892123456789 +\tmore text""") + h = Header(hstr.replace('\t', ' ')) + eq(h.encode(), """\ +bug demonstration + 12345678911234567892123456789312345678941234567895123456789612345678971234567898112345678911234567892123456789112345678911234567892123456789 + more text""") + + def test_long_nonstring(self): + eq = self.ndiffAssertEqual + g = Charset("iso-8859-1") + cz = Charset("iso-8859-2") + utf8 = Charset("utf-8") + g_head = (b'Die Mieter treten hier ein werden mit einem Foerderband ' + b'komfortabel den Korridor entlang, an s\xfcdl\xfcndischen ' + b'Wandgem\xe4lden vorbei, gegen die rotierenden Klingen ' + b'bef\xf6rdert. ') + cz_head = (b'Finan\xe8ni metropole se hroutily pod tlakem jejich ' + b'd\xf9vtipu.. ') + utf8_head = ('\u6b63\u78ba\u306b\u8a00\u3046\u3068\u7ffb\u8a33\u306f' + '\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u4e00' + '\u90e8\u306f\u30c9\u30a4\u30c4\u8a9e\u3067\u3059\u304c' + '\u3001\u3042\u3068\u306f\u3067\u305f\u3089\u3081\u3067' + '\u3059\u3002\u5b9f\u969b\u306b\u306f\u300cWenn ist das ' + 'Nunstuck git und Slotermeyer? Ja! Beiherhund das Oder ' + 'die Flipperwaldt gersput.\u300d\u3068\u8a00\u3063\u3066' + '\u3044\u307e\u3059\u3002') + h = Header(g_head, g, header_name='Subject') + h.append(cz_head, cz) + h.append(utf8_head, utf8) + msg = Message() + msg['Subject'] = h + sfp = StringIO() + g = Generator(sfp) + g.flatten(msg) + eq(sfp.getvalue(), """\ +Subject: =?iso-8859-1?q?Die_Mieter_treten_hier_ein_werden_mit_einem_Foerderb?= + =?iso-8859-1?q?and_komfortabel_den_Korridor_entlang=2C_an_s=FCdl=FCndischen?= + =?iso-8859-1?q?_Wandgem=E4lden_vorbei=2C_gegen_die_rotierenden_Klingen_bef?= + =?iso-8859-1?q?=F6rdert=2E_?= =?iso-8859-2?q?Finan=E8ni_metropole_se_hrouti?= + =?iso-8859-2?q?ly_pod_tlakem_jejich_d=F9vtipu=2E=2E_?= =?utf-8?b?5q2j56K6?= + =?utf-8?b?44Gr6KiA44GG44Go57+76Kiz44Gv44GV44KM44Gm44GE44G+44Gb44KT44CC5LiA?= + =?utf-8?b?6YOo44Gv44OJ44Kk44OE6Kqe44Gn44GZ44GM44CB44GC44Go44Gv44Gn44Gf44KJ?= + =?utf-8?b?44KB44Gn44GZ44CC5a6f6Zqb44Gr44Gv44CMV2VubiBpc3QgZGFzIE51bnN0dWNr?= + =?utf-8?b?IGdpdCB1bmQgU2xvdGVybWV5ZXI/IEphISBCZWloZXJodW5kIGRhcyBPZGVyIGRp?= + =?utf-8?b?ZSBGbGlwcGVyd2FsZHQgZ2Vyc3B1dC7jgI3jgajoqIDjgaPjgabjgYTjgb7jgZk=?= + =?utf-8?b?44CC?= + +""") + eq(h.encode(maxlinelen=76), """\ +=?iso-8859-1?q?Die_Mieter_treten_hier_ein_werden_mit_einem_Foerde?= + =?iso-8859-1?q?rband_komfortabel_den_Korridor_entlang=2C_an_s=FCdl=FCndis?= + =?iso-8859-1?q?chen_Wandgem=E4lden_vorbei=2C_gegen_die_rotierenden_Klinge?= + =?iso-8859-1?q?n_bef=F6rdert=2E_?= =?iso-8859-2?q?Finan=E8ni_metropole_se?= + =?iso-8859-2?q?_hroutily_pod_tlakem_jejich_d=F9vtipu=2E=2E_?= + =?utf-8?b?5q2j56K644Gr6KiA44GG44Go57+76Kiz44Gv44GV44KM44Gm44GE44G+44Gb?= + =?utf-8?b?44KT44CC5LiA6YOo44Gv44OJ44Kk44OE6Kqe44Gn44GZ44GM44CB44GC44Go?= + =?utf-8?b?44Gv44Gn44Gf44KJ44KB44Gn44GZ44CC5a6f6Zqb44Gr44Gv44CMV2VubiBp?= + =?utf-8?b?c3QgZGFzIE51bnN0dWNrIGdpdCB1bmQgU2xvdGVybWV5ZXI/IEphISBCZWlo?= + =?utf-8?b?ZXJodW5kIGRhcyBPZGVyIGRpZSBGbGlwcGVyd2FsZHQgZ2Vyc3B1dC7jgI0=?= + =?utf-8?b?44Go6KiA44Gj44Gm44GE44G+44GZ44CC?=""") + + def test_long_header_encode(self): + eq = self.ndiffAssertEqual + h = Header('wasnipoop; giraffes="very-long-necked-animals"; ' + 'spooge="yummy"; hippos="gargantuan"; marshmallows="gooey"', + header_name='X-Foobar-Spoink-Defrobnit') + eq(h.encode(), '''\ +wasnipoop; giraffes="very-long-necked-animals"; + spooge="yummy"; hippos="gargantuan"; marshmallows="gooey"''') + + def test_long_header_encode_with_tab_continuation_is_just_a_hint(self): + eq = self.ndiffAssertEqual + h = Header('wasnipoop; giraffes="very-long-necked-animals"; ' + 'spooge="yummy"; hippos="gargantuan"; marshmallows="gooey"', + header_name='X-Foobar-Spoink-Defrobnit', + continuation_ws='\t') + eq(h.encode(), '''\ +wasnipoop; giraffes="very-long-necked-animals"; + spooge="yummy"; hippos="gargantuan"; marshmallows="gooey"''') + + def test_long_header_encode_with_tab_continuation(self): + eq = self.ndiffAssertEqual + h = Header('wasnipoop; giraffes="very-long-necked-animals";\t' + 'spooge="yummy"; hippos="gargantuan"; marshmallows="gooey"', + header_name='X-Foobar-Spoink-Defrobnit', + continuation_ws='\t') + eq(h.encode(), '''\ +wasnipoop; giraffes="very-long-necked-animals"; +\tspooge="yummy"; hippos="gargantuan"; marshmallows="gooey"''') + + def test_header_encode_with_different_output_charset(self): + h = Header('?', 'euc-jp') + self.assertEqual(h.encode(), "=?iso-2022-jp?b?GyRCSjgbKEI=?=") + + def test_long_header_encode_with_different_output_charset(self): + h = Header(b'test-ja \xa4\xd8\xc5\xea\xb9\xc6\xa4\xb5\xa4\xec\xa4' + b'\xbf\xa5\xe1\xa1\xbc\xa5\xeb\xa4\xcf\xbb\xca\xb2\xf1\xbc\xd4' + b'\xa4\xce\xbe\xb5\xc7\xa7\xa4\xf2\xc2\xd4\xa4\xc3\xa4\xc6\xa4' + b'\xa4\xa4\xde\xa4\xb9'.decode('euc-jp'), 'euc-jp') + res = """\ +=?iso-2022-jp?b?dGVzdC1qYSAbJEIkWEVqOUYkNSRsJD8lYSE8JWskTztKMnE8VCROPjUbKEI=?= + =?iso-2022-jp?b?GyRCRyckckJUJEMkRiQkJF4kORsoQg==?=""" + self.assertEqual(h.encode(), res) + + def test_header_splitter(self): + eq = self.ndiffAssertEqual + msg = MIMEText('') + # It'd be great if we could use add_header() here, but that doesn't + # guarantee an order of the parameters. + msg['X-Foobar-Spoink-Defrobnit'] = ( + 'wasnipoop; giraffes="very-long-necked-animals"; ' + 'spooge="yummy"; hippos="gargantuan"; marshmallows="gooey"') + sfp = StringIO() + g = Generator(sfp) + g.flatten(msg) + eq(sfp.getvalue(), '''\ +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit +X-Foobar-Spoink-Defrobnit: wasnipoop; giraffes="very-long-necked-animals"; + spooge="yummy"; hippos="gargantuan"; marshmallows="gooey" + +''') + + def test_no_semis_header_splitter(self): + eq = self.ndiffAssertEqual + msg = Message() + msg['From'] = 'test at dom.ain' + msg['References'] = SPACE.join('<%d at dom.ain>' % i for i in range(10)) + msg.set_payload('Test') + sfp = StringIO() + g = Generator(sfp) + g.flatten(msg) + eq(sfp.getvalue(), """\ +From: test at dom.ain +References: <0 at dom.ain> <1 at dom.ain> <2 at dom.ain> <3 at dom.ain> <4 at dom.ain> + <5 at dom.ain> <6 at dom.ain> <7 at dom.ain> <8 at dom.ain> <9 at dom.ain> + +Test""") + + def test_no_split_long_header(self): + eq = self.ndiffAssertEqual + hstr = 'References: ' + 'x' * 80 + h = Header(hstr) + # These come on two lines because Headers are really field value + # classes and don't really know about their field names. + eq(h.encode(), """\ +References: + xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx""") + h = Header('x' * 80) + eq(h.encode(), 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx') + + def test_splitting_multiple_long_lines(self): + eq = self.ndiffAssertEqual + hstr = """\ +from babylon.socal-raves.org (localhost [127.0.0.1]); by babylon.socal-raves.org (Postfix) with ESMTP id B570E51B81; for ; Sat, 2 Feb 2002 17:00:06 -0800 (PST) +\tfrom babylon.socal-raves.org (localhost [127.0.0.1]); by babylon.socal-raves.org (Postfix) with ESMTP id B570E51B81; for ; Sat, 2 Feb 2002 17:00:06 -0800 (PST) +\tfrom babylon.socal-raves.org (localhost [127.0.0.1]); by babylon.socal-raves.org (Postfix) with ESMTP id B570E51B81; for ; Sat, 2 Feb 2002 17:00:06 -0800 (PST) +""" + h = Header(hstr, continuation_ws='\t') + eq(h.encode(), """\ +from babylon.socal-raves.org (localhost [127.0.0.1]); + by babylon.socal-raves.org (Postfix) with ESMTP id B570E51B81; + for ; + Sat, 2 Feb 2002 17:00:06 -0800 (PST) +\tfrom babylon.socal-raves.org (localhost [127.0.0.1]); + by babylon.socal-raves.org (Postfix) with ESMTP id B570E51B81; + for ; + Sat, 2 Feb 2002 17:00:06 -0800 (PST) +\tfrom babylon.socal-raves.org (localhost [127.0.0.1]); + by babylon.socal-raves.org (Postfix) with ESMTP id B570E51B81; + for ; + Sat, 2 Feb 2002 17:00:06 -0800 (PST)""") + + def test_splitting_first_line_only_is_long(self): + eq = self.ndiffAssertEqual + hstr = """\ +from modemcable093.139-201-24.que.mc.videotron.ca ([24.201.139.93] helo=cthulhu.gerg.ca) +\tby kronos.mems-exchange.org with esmtp (Exim 4.05) +\tid 17k4h5-00034i-00 +\tfor test at mems-exchange.org; Wed, 28 Aug 2002 11:25:20 -0400""" + h = Header(hstr, maxlinelen=78, header_name='Received', + continuation_ws='\t') + eq(h.encode(), """\ +from modemcable093.139-201-24.que.mc.videotron.ca ([24.201.139.93] + helo=cthulhu.gerg.ca) +\tby kronos.mems-exchange.org with esmtp (Exim 4.05) +\tid 17k4h5-00034i-00 +\tfor test at mems-exchange.org; Wed, 28 Aug 2002 11:25:20 -0400""") + + def test_long_8bit_header(self): + eq = self.ndiffAssertEqual + msg = Message() + h = Header('Britische Regierung gibt', 'iso-8859-1', + header_name='Subject') + h.append('gr\xfcnes Licht f\xfcr Offshore-Windkraftprojekte') + eq(h.encode(maxlinelen=76), """\ +=?iso-8859-1?q?Britische_Regierung_gibt_gr=FCnes_Licht_f=FCr_Offs?= + =?iso-8859-1?q?hore-Windkraftprojekte?=""") + msg['Subject'] = h + eq(msg.as_string(maxheaderlen=76), """\ +Subject: =?iso-8859-1?q?Britische_Regierung_gibt_gr=FCnes_Licht_f=FCr_Offs?= + =?iso-8859-1?q?hore-Windkraftprojekte?= + +""") + eq(msg.as_string(maxheaderlen=0), """\ +Subject: =?iso-8859-1?q?Britische_Regierung_gibt_gr=FCnes_Licht_f=FCr_Offshore-Windkraftprojekte?= + +""") + + def test_long_8bit_header_no_charset(self): + eq = self.ndiffAssertEqual + msg = Message() + header_string = ('Britische Regierung gibt gr\xfcnes Licht ' + 'f\xfcr Offshore-Windkraftprojekte ' + '') + msg['Reply-To'] = header_string + self.assertRaises(UnicodeEncodeError, msg.as_string) + msg = Message() + msg['Reply-To'] = Header(header_string, 'utf-8', + header_name='Reply-To') + eq(msg.as_string(maxheaderlen=78), """\ +Reply-To: =?utf-8?q?Britische_Regierung_gibt_gr=C3=BCnes_Licht_f=C3=BCr_Offs?= + =?utf-8?q?hore-Windkraftprojekte_=3Ca-very-long-address=40example=2Ecom=3E?= + +""") + + def test_long_to_header(self): + eq = self.ndiffAssertEqual + to = ('"Someone Test #A" ,' + ',' + '"Someone Test #B" , ' + '"Someone Test #C" , ' + '"Someone Test #D" ') + msg = Message() + msg['To'] = to + eq(msg.as_string(maxheaderlen=78), '''\ +To: "Someone Test #A" ,, + "Someone Test #B" , + "Someone Test #C" , + "Someone Test #D" + +''') + + def test_long_line_after_append(self): + eq = self.ndiffAssertEqual + s = 'This is an example of string which has almost the limit of header length.' + h = Header(s) + h.append('Add another line.') + eq(h.encode(maxlinelen=76), """\ +This is an example of string which has almost the limit of header length. + Add another line.""") + + def test_shorter_line_with_append(self): + eq = self.ndiffAssertEqual + s = 'This is a shorter line.' + h = Header(s) + h.append('Add another sentence. (Surprise?)') + eq(h.encode(), + 'This is a shorter line. Add another sentence. (Surprise?)') + + def test_long_field_name(self): + eq = self.ndiffAssertEqual + fn = 'X-Very-Very-Very-Long-Header-Name' + gs = ('Die Mieter treten hier ein werden mit einem Foerderband ' + 'komfortabel den Korridor entlang, an s\xfcdl\xfcndischen ' + 'Wandgem\xe4lden vorbei, gegen die rotierenden Klingen ' + 'bef\xf6rdert. ') + h = Header(gs, 'iso-8859-1', header_name=fn) + # BAW: this seems broken because the first line is too long + eq(h.encode(maxlinelen=76), """\ +=?iso-8859-1?q?Die_Mieter_treten_hier_e?= + =?iso-8859-1?q?in_werden_mit_einem_Foerderband_komfortabel_den_Korridor_e?= + =?iso-8859-1?q?ntlang=2C_an_s=FCdl=FCndischen_Wandgem=E4lden_vorbei=2C_ge?= + =?iso-8859-1?q?gen_die_rotierenden_Klingen_bef=F6rdert=2E_?=""") + + def test_long_received_header(self): + h = ('from FOO.TLD (vizworld.acl.foo.tld [123.452.678.9]) ' + 'by hrothgar.la.mastaler.com (tmda-ofmipd) with ESMTP; ' + 'Wed, 05 Mar 2003 18:10:18 -0700') + msg = Message() + msg['Received-1'] = Header(h, continuation_ws='\t') + msg['Received-2'] = h + # This should be splitting on spaces not semicolons. + self.ndiffAssertEqual(msg.as_string(maxheaderlen=78), """\ +Received-1: from FOO.TLD (vizworld.acl.foo.tld [123.452.678.9]) by hrothgar.la.mastaler.com (tmda-ofmipd) with ESMTP; + Wed, 05 Mar 2003 18:10:18 -0700 +Received-2: from FOO.TLD (vizworld.acl.foo.tld [123.452.678.9]) by hrothgar.la.mastaler.com (tmda-ofmipd) with ESMTP; + Wed, 05 Mar 2003 18:10:18 -0700 + +""") + + def test_string_headerinst_eq(self): + h = ('<15975.17901.207240.414604 at sgigritzmann1.mathematik.' + 'tu-muenchen.de> (David Bremner\'s message of ' + '"Thu, 6 Mar 2003 13:58:21 +0100")') + msg = Message() + msg['Received-1'] = Header(h, header_name='Received-1', + continuation_ws='\t') + msg['Received-2'] = h + # XXX This should be splitting on spaces not commas. + self.ndiffAssertEqual(msg.as_string(maxheaderlen=78), """\ +Received-1: <15975.17901.207240.414604 at sgigritzmann1.mathematik.tu-muenchen.de> (David Bremner's message of \"Thu, + 6 Mar 2003 13:58:21 +0100\") +Received-2: <15975.17901.207240.414604 at sgigritzmann1.mathematik.tu-muenchen.de> (David Bremner's message of \"Thu, + 6 Mar 2003 13:58:21 +0100\") + +""") + + def test_long_unbreakable_lines_with_continuation(self): + eq = self.ndiffAssertEqual + msg = Message() + t = """\ +iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEUAAAAkHiJeRUIcGBi9 + locQDQ4zJykFBAXJfWDjAAACYUlEQVR4nF2TQY/jIAyFc6lydlG5x8Nyp1Y69wj1PN2I5gzp""" + msg['Face-1'] = t + msg['Face-2'] = Header(t, header_name='Face-2') + # XXX This splitting is all wrong. It the first value line should be + # snug against the field name. + eq(msg.as_string(maxheaderlen=78), """\ +Face-1:\x20 + iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEUAAAAkHiJeRUIcGBi9 + locQDQ4zJykFBAXJfWDjAAACYUlEQVR4nF2TQY/jIAyFc6lydlG5x8Nyp1Y69wj1PN2I5gzp +Face-2:\x20 + iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEUAAAAkHiJeRUIcGBi9 + locQDQ4zJykFBAXJfWDjAAACYUlEQVR4nF2TQY/jIAyFc6lydlG5x8Nyp1Y69wj1PN2I5gzp + +""") + + def test_another_long_multiline_header(self): + eq = self.ndiffAssertEqual + m = ('Received: from siimage.com ' + '([172.25.1.3]) by zima.siliconimage.com with ' + 'Microsoft SMTPSVC(5.0.2195.4905); ' + 'Wed, 16 Oct 2002 07:41:11 -0700') + msg = email.message_from_string(m) + eq(msg.as_string(maxheaderlen=78), '''\ +Received: from siimage.com ([172.25.1.3]) by zima.siliconimage.com with Microsoft SMTPSVC(5.0.2195.4905); + Wed, 16 Oct 2002 07:41:11 -0700 + +''') + + def test_long_lines_with_different_header(self): + eq = self.ndiffAssertEqual + h = ('List-Unsubscribe: ' + ',' + ' ') + msg = Message() + msg['List'] = h + msg['List'] = Header(h, header_name='List') + eq(msg.as_string(maxheaderlen=78), """\ +List: List-Unsubscribe: , + +List: List-Unsubscribe: , + + +""") + + def test_long_rfc2047_header_with_embedded_fws(self): + h = Header(textwrap.dedent("""\ + We're going to pretend this header is in a non-ascii character set + \tto see if line wrapping with encoded words and embedded + folding white space works"""), + charset='utf-8', + header_name='Test') + self.assertEqual(h.encode()+'\n', textwrap.dedent("""\ + =?utf-8?q?We=27re_going_to_pretend_this_header_is_in_a_non-ascii_chara?= + =?utf-8?q?cter_set?= + =?utf-8?q?_to_see_if_line_wrapping_with_encoded_words_and_embedded?= + =?utf-8?q?_folding_white_space_works?=""")+'\n') + + + +# Test mangling of "From " lines in the body of a message +class TestFromMangling(unittest.TestCase): + def setUp(self): + self.msg = Message() + self.msg['From'] = 'aaa at bbb.org' + self.msg.set_payload("""\ +From the desk of A.A.A.: +Blah blah blah +""") + + def test_mangled_from(self): + s = StringIO() + g = Generator(s, mangle_from_=True) + g.flatten(self.msg) + self.assertEqual(s.getvalue(), """\ +From: aaa at bbb.org + +>From the desk of A.A.A.: +Blah blah blah +""") + + def test_dont_mangle_from(self): + s = StringIO() + g = Generator(s, mangle_from_=False) + g.flatten(self.msg) + self.assertEqual(s.getvalue(), """\ +From: aaa at bbb.org + +From the desk of A.A.A.: +Blah blah blah +""") + + + +# Test the basic MIMEAudio class +class TestMIMEAudio(unittest.TestCase): + def setUp(self): + # Make sure we pick up the audiotest.au that lives in email/test/data. + # In Python, there's an audiotest.au living in Lib/test but that isn't + # included in some binary distros that don't include the test + # package. The trailing empty string on the .join() is significant + # since findfile() will do a dirname(). + datadir = os.path.join(os.path.dirname(landmark), 'data', '') + with open(findfile('audiotest.au', datadir), 'rb') as fp: + self._audiodata = fp.read() + self._au = MIMEAudio(self._audiodata) + + def test_guess_minor_type(self): + self.assertEqual(self._au.get_content_type(), 'audio/basic') + + def test_encoding(self): + payload = self._au.get_payload() + self.assertEqual(base64.decodebytes(bytes(payload, 'ascii')), + self._audiodata) + + def test_checkSetMinor(self): + au = MIMEAudio(self._audiodata, 'fish') + self.assertEqual(au.get_content_type(), 'audio/fish') + + def test_add_header(self): + eq = self.assertEqual + unless = self.assertTrue + self._au.add_header('Content-Disposition', 'attachment', + filename='audiotest.au') + eq(self._au['content-disposition'], + 'attachment; filename="audiotest.au"') + eq(self._au.get_params(header='content-disposition'), + [('attachment', ''), ('filename', 'audiotest.au')]) + eq(self._au.get_param('filename', header='content-disposition'), + 'audiotest.au') + missing = [] + eq(self._au.get_param('attachment', header='content-disposition'), '') + unless(self._au.get_param('foo', failobj=missing, + header='content-disposition') is missing) + # Try some missing stuff + unless(self._au.get_param('foobar', missing) is missing) + unless(self._au.get_param('attachment', missing, + header='foobar') is missing) + + + +# Test the basic MIMEImage class +class TestMIMEImage(unittest.TestCase): + def setUp(self): + with openfile('PyBanner048.gif', 'rb') as fp: + self._imgdata = fp.read() + self._im = MIMEImage(self._imgdata) + + def test_guess_minor_type(self): + self.assertEqual(self._im.get_content_type(), 'image/gif') + + def test_encoding(self): + payload = self._im.get_payload() + self.assertEqual(base64.decodebytes(bytes(payload, 'ascii')), + self._imgdata) + + def test_checkSetMinor(self): + im = MIMEImage(self._imgdata, 'fish') + self.assertEqual(im.get_content_type(), 'image/fish') + + def test_add_header(self): + eq = self.assertEqual + unless = self.assertTrue + self._im.add_header('Content-Disposition', 'attachment', + filename='dingusfish.gif') + eq(self._im['content-disposition'], + 'attachment; filename="dingusfish.gif"') + eq(self._im.get_params(header='content-disposition'), + [('attachment', ''), ('filename', 'dingusfish.gif')]) + eq(self._im.get_param('filename', header='content-disposition'), + 'dingusfish.gif') + missing = [] + eq(self._im.get_param('attachment', header='content-disposition'), '') + unless(self._im.get_param('foo', failobj=missing, + header='content-disposition') is missing) + # Try some missing stuff + unless(self._im.get_param('foobar', missing) is missing) + unless(self._im.get_param('attachment', missing, + header='foobar') is missing) + + + +# Test the basic MIMEApplication class +class TestMIMEApplication(unittest.TestCase): + def test_headers(self): + eq = self.assertEqual + msg = MIMEApplication(b'\xfa\xfb\xfc\xfd\xfe\xff') + eq(msg.get_content_type(), 'application/octet-stream') + eq(msg['content-transfer-encoding'], 'base64') + + def test_body(self): + eq = self.assertEqual + bytesdata = b'\xfa\xfb\xfc\xfd\xfe\xff' + msg = MIMEApplication(bytesdata) + # whitespace in the cte encoded block is RFC-irrelevant. + eq(msg.get_payload().strip(), '+vv8/f7/') + eq(msg.get_payload(decode=True), bytesdata) + + + +# Test the basic MIMEText class +class TestMIMEText(unittest.TestCase): + def setUp(self): + self._msg = MIMEText('hello there') + + def test_types(self): + eq = self.assertEqual + unless = self.assertTrue + eq(self._msg.get_content_type(), 'text/plain') + eq(self._msg.get_param('charset'), 'us-ascii') + missing = [] + unless(self._msg.get_param('foobar', missing) is missing) + unless(self._msg.get_param('charset', missing, header='foobar') + is missing) + + def test_payload(self): + self.assertEqual(self._msg.get_payload(), 'hello there') + self.assertTrue(not self._msg.is_multipart()) + + def test_charset(self): + eq = self.assertEqual + msg = MIMEText('hello there', _charset='us-ascii') + eq(msg.get_charset().input_charset, 'us-ascii') + eq(msg['content-type'], 'text/plain; charset="us-ascii"') + + def test_7bit_input(self): + eq = self.assertEqual + msg = MIMEText('hello there', _charset='us-ascii') + eq(msg.get_charset().input_charset, 'us-ascii') + eq(msg['content-type'], 'text/plain; charset="us-ascii"') + + def test_7bit_input_no_charset(self): + eq = self.assertEqual + msg = MIMEText('hello there') + eq(msg.get_charset(), 'us-ascii') + eq(msg['content-type'], 'text/plain; charset="us-ascii"') + self.assertTrue('hello there' in msg.as_string()) + + def test_utf8_input(self): + teststr = '\u043a\u0438\u0440\u0438\u043b\u0438\u0446\u0430' + eq = self.assertEqual + msg = MIMEText(teststr, _charset='utf-8') + eq(msg.get_charset().output_charset, 'utf-8') + eq(msg['content-type'], 'text/plain; charset="utf-8"') + eq(msg.get_payload(decode=True), teststr.encode('utf-8')) + + @unittest.skip("can't fix because of backward compat in email5, " + "will fix in email6") + def test_utf8_input_no_charset(self): + teststr = '\u043a\u0438\u0440\u0438\u043b\u0438\u0446\u0430' + self.assertRaises(UnicodeEncodeError, MIMEText, teststr) + + + +# Test complicated multipart/* messages +class TestMultipart(TestEmailBase): + def setUp(self): + with openfile('PyBanner048.gif', 'rb') as fp: + data = fp.read() + container = MIMEBase('multipart', 'mixed', boundary='BOUNDARY') + image = MIMEImage(data, name='dingusfish.gif') + image.add_header('content-disposition', 'attachment', + filename='dingusfish.gif') + intro = MIMEText('''\ +Hi there, + +This is the dingus fish. +''') + container.attach(intro) + container.attach(image) + container['From'] = 'Barry ' + container['To'] = 'Dingus Lovers ' + container['Subject'] = 'Here is your dingus fish' + + now = 987809702.54848599 + timetuple = time.localtime(now) + if timetuple[-1] == 0: + tzsecs = time.timezone + else: + tzsecs = time.altzone + if tzsecs > 0: + sign = '-' + else: + sign = '+' + tzoffset = ' %s%04d' % (sign, tzsecs / 36) + container['Date'] = time.strftime( + '%a, %d %b %Y %H:%M:%S', + time.localtime(now)) + tzoffset + self._msg = container + self._im = image + self._txt = intro + + def test_hierarchy(self): + # convenience + eq = self.assertEqual + unless = self.assertTrue + raises = self.assertRaises + # tests + m = self._msg + unless(m.is_multipart()) + eq(m.get_content_type(), 'multipart/mixed') + eq(len(m.get_payload()), 2) + raises(IndexError, m.get_payload, 2) + m0 = m.get_payload(0) + m1 = m.get_payload(1) + unless(m0 is self._txt) + unless(m1 is self._im) + eq(m.get_payload(), [m0, m1]) + unless(not m0.is_multipart()) + unless(not m1.is_multipart()) + + def test_empty_multipart_idempotent(self): + text = """\ +Content-Type: multipart/mixed; boundary="BOUNDARY" +MIME-Version: 1.0 +Subject: A subject +To: aperson at dom.ain +From: bperson at dom.ain + + +--BOUNDARY + + +--BOUNDARY-- +""" + msg = Parser().parsestr(text) + self.ndiffAssertEqual(text, msg.as_string()) + + def test_no_parts_in_a_multipart_with_none_epilogue(self): + outer = MIMEBase('multipart', 'mixed') + outer['Subject'] = 'A subject' + outer['To'] = 'aperson at dom.ain' + outer['From'] = 'bperson at dom.ain' + outer.set_boundary('BOUNDARY') + self.ndiffAssertEqual(outer.as_string(), '''\ +Content-Type: multipart/mixed; boundary="BOUNDARY" +MIME-Version: 1.0 +Subject: A subject +To: aperson at dom.ain +From: bperson at dom.ain + +--BOUNDARY + +--BOUNDARY--''') + + def test_no_parts_in_a_multipart_with_empty_epilogue(self): + outer = MIMEBase('multipart', 'mixed') + outer['Subject'] = 'A subject' + outer['To'] = 'aperson at dom.ain' + outer['From'] = 'bperson at dom.ain' + outer.preamble = '' + outer.epilogue = '' + outer.set_boundary('BOUNDARY') + self.ndiffAssertEqual(outer.as_string(), '''\ +Content-Type: multipart/mixed; boundary="BOUNDARY" +MIME-Version: 1.0 +Subject: A subject +To: aperson at dom.ain +From: bperson at dom.ain + + +--BOUNDARY + +--BOUNDARY-- +''') + + def test_one_part_in_a_multipart(self): + eq = self.ndiffAssertEqual + outer = MIMEBase('multipart', 'mixed') + outer['Subject'] = 'A subject' + outer['To'] = 'aperson at dom.ain' + outer['From'] = 'bperson at dom.ain' + outer.set_boundary('BOUNDARY') + msg = MIMEText('hello world') + outer.attach(msg) + eq(outer.as_string(), '''\ +Content-Type: multipart/mixed; boundary="BOUNDARY" +MIME-Version: 1.0 +Subject: A subject +To: aperson at dom.ain +From: bperson at dom.ain + +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit + +hello world +--BOUNDARY--''') + + def test_seq_parts_in_a_multipart_with_empty_preamble(self): + eq = self.ndiffAssertEqual + outer = MIMEBase('multipart', 'mixed') + outer['Subject'] = 'A subject' + outer['To'] = 'aperson at dom.ain' + outer['From'] = 'bperson at dom.ain' + outer.preamble = '' + msg = MIMEText('hello world') + outer.attach(msg) + outer.set_boundary('BOUNDARY') + eq(outer.as_string(), '''\ +Content-Type: multipart/mixed; boundary="BOUNDARY" +MIME-Version: 1.0 +Subject: A subject +To: aperson at dom.ain +From: bperson at dom.ain + + +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit + +hello world +--BOUNDARY--''') + + + def test_seq_parts_in_a_multipart_with_none_preamble(self): + eq = self.ndiffAssertEqual + outer = MIMEBase('multipart', 'mixed') + outer['Subject'] = 'A subject' + outer['To'] = 'aperson at dom.ain' + outer['From'] = 'bperson at dom.ain' + outer.preamble = None + msg = MIMEText('hello world') + outer.attach(msg) + outer.set_boundary('BOUNDARY') + eq(outer.as_string(), '''\ +Content-Type: multipart/mixed; boundary="BOUNDARY" +MIME-Version: 1.0 +Subject: A subject +To: aperson at dom.ain +From: bperson at dom.ain + +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit + +hello world +--BOUNDARY--''') + + + def test_seq_parts_in_a_multipart_with_none_epilogue(self): + eq = self.ndiffAssertEqual + outer = MIMEBase('multipart', 'mixed') + outer['Subject'] = 'A subject' + outer['To'] = 'aperson at dom.ain' + outer['From'] = 'bperson at dom.ain' + outer.epilogue = None + msg = MIMEText('hello world') + outer.attach(msg) + outer.set_boundary('BOUNDARY') + eq(outer.as_string(), '''\ +Content-Type: multipart/mixed; boundary="BOUNDARY" +MIME-Version: 1.0 +Subject: A subject +To: aperson at dom.ain +From: bperson at dom.ain + +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit + +hello world +--BOUNDARY--''') + + + def test_seq_parts_in_a_multipart_with_empty_epilogue(self): + eq = self.ndiffAssertEqual + outer = MIMEBase('multipart', 'mixed') + outer['Subject'] = 'A subject' + outer['To'] = 'aperson at dom.ain' + outer['From'] = 'bperson at dom.ain' + outer.epilogue = '' + msg = MIMEText('hello world') + outer.attach(msg) + outer.set_boundary('BOUNDARY') + eq(outer.as_string(), '''\ +Content-Type: multipart/mixed; boundary="BOUNDARY" +MIME-Version: 1.0 +Subject: A subject +To: aperson at dom.ain +From: bperson at dom.ain + +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit + +hello world +--BOUNDARY-- +''') + + + def test_seq_parts_in_a_multipart_with_nl_epilogue(self): + eq = self.ndiffAssertEqual + outer = MIMEBase('multipart', 'mixed') + outer['Subject'] = 'A subject' + outer['To'] = 'aperson at dom.ain' + outer['From'] = 'bperson at dom.ain' + outer.epilogue = '\n' + msg = MIMEText('hello world') + outer.attach(msg) + outer.set_boundary('BOUNDARY') + eq(outer.as_string(), '''\ +Content-Type: multipart/mixed; boundary="BOUNDARY" +MIME-Version: 1.0 +Subject: A subject +To: aperson at dom.ain +From: bperson at dom.ain + +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit + +hello world +--BOUNDARY-- + +''') + + def test_message_external_body(self): + eq = self.assertEqual + msg = self._msgobj('msg_36.txt') + eq(len(msg.get_payload()), 2) + msg1 = msg.get_payload(1) + eq(msg1.get_content_type(), 'multipart/alternative') + eq(len(msg1.get_payload()), 2) + for subpart in msg1.get_payload(): + eq(subpart.get_content_type(), 'message/external-body') + eq(len(subpart.get_payload()), 1) + subsubpart = subpart.get_payload(0) + eq(subsubpart.get_content_type(), 'text/plain') + + def test_double_boundary(self): + # msg_37.txt is a multipart that contains two dash-boundary's in a + # row. Our interpretation of RFC 2046 calls for ignoring the second + # and subsequent boundaries. + msg = self._msgobj('msg_37.txt') + self.assertEqual(len(msg.get_payload()), 3) + + def test_nested_inner_contains_outer_boundary(self): + eq = self.ndiffAssertEqual + # msg_38.txt has an inner part that contains outer boundaries. My + # interpretation of RFC 2046 (based on sections 5.1 and 5.1.2) say + # these are illegal and should be interpreted as unterminated inner + # parts. + msg = self._msgobj('msg_38.txt') + sfp = StringIO() + iterators._structure(msg, sfp) + eq(sfp.getvalue(), """\ +multipart/mixed + multipart/mixed + multipart/alternative + text/plain + text/plain + text/plain + text/plain +""") + + def test_nested_with_same_boundary(self): + eq = self.ndiffAssertEqual + # msg 39.txt is similarly evil in that it's got inner parts that use + # the same boundary as outer parts. Again, I believe the way this is + # parsed is closest to the spirit of RFC 2046 + msg = self._msgobj('msg_39.txt') + sfp = StringIO() + iterators._structure(msg, sfp) + eq(sfp.getvalue(), """\ +multipart/mixed + multipart/mixed + multipart/alternative + application/octet-stream + application/octet-stream + text/plain +""") + + def test_boundary_in_non_multipart(self): + msg = self._msgobj('msg_40.txt') + self.assertEqual(msg.as_string(), '''\ +MIME-Version: 1.0 +Content-Type: text/html; boundary="--961284236552522269" + +----961284236552522269 +Content-Type: text/html; +Content-Transfer-Encoding: 7Bit + + + +----961284236552522269-- +''') + + def test_boundary_with_leading_space(self): + eq = self.assertEqual + msg = email.message_from_string('''\ +MIME-Version: 1.0 +Content-Type: multipart/mixed; boundary=" XXXX" + +-- XXXX +Content-Type: text/plain + + +-- XXXX +Content-Type: text/plain + +-- XXXX-- +''') + self.assertTrue(msg.is_multipart()) + eq(msg.get_boundary(), ' XXXX') + eq(len(msg.get_payload()), 2) + + def test_boundary_without_trailing_newline(self): + m = Parser().parsestr("""\ +Content-Type: multipart/mixed; boundary="===============0012394164==" +MIME-Version: 1.0 + +--===============0012394164== +Content-Type: image/file1.jpg +MIME-Version: 1.0 +Content-Transfer-Encoding: base64 + +YXNkZg== +--===============0012394164==--""") + self.assertEqual(m.get_payload(0).get_payload(), 'YXNkZg==') + + + +# Test some badly formatted messages +class TestNonConformant(TestEmailBase): + def test_parse_missing_minor_type(self): + eq = self.assertEqual + msg = self._msgobj('msg_14.txt') + eq(msg.get_content_type(), 'text/plain') + eq(msg.get_content_maintype(), 'text') + eq(msg.get_content_subtype(), 'plain') + + def test_same_boundary_inner_outer(self): + unless = self.assertTrue + msg = self._msgobj('msg_15.txt') + # XXX We can probably eventually do better + inner = msg.get_payload(0) + unless(hasattr(inner, 'defects')) + self.assertEqual(len(inner.defects), 1) + unless(isinstance(inner.defects[0], + errors.StartBoundaryNotFoundDefect)) + + def test_multipart_no_boundary(self): + unless = self.assertTrue + msg = self._msgobj('msg_25.txt') + unless(isinstance(msg.get_payload(), str)) + self.assertEqual(len(msg.defects), 2) + unless(isinstance(msg.defects[0], errors.NoBoundaryInMultipartDefect)) + unless(isinstance(msg.defects[1], + errors.MultipartInvariantViolationDefect)) + + def test_invalid_content_type(self): + eq = self.assertEqual + neq = self.ndiffAssertEqual + msg = Message() + # RFC 2045, $5.2 says invalid yields text/plain + msg['Content-Type'] = 'text' + eq(msg.get_content_maintype(), 'text') + eq(msg.get_content_subtype(), 'plain') + eq(msg.get_content_type(), 'text/plain') + # Clear the old value and try something /really/ invalid + del msg['content-type'] + msg['Content-Type'] = 'foo' + eq(msg.get_content_maintype(), 'text') + eq(msg.get_content_subtype(), 'plain') + eq(msg.get_content_type(), 'text/plain') + # Still, make sure that the message is idempotently generated + s = StringIO() + g = Generator(s) + g.flatten(msg) + neq(s.getvalue(), 'Content-Type: foo\n\n') + + def test_no_start_boundary(self): + eq = self.ndiffAssertEqual + msg = self._msgobj('msg_31.txt') + eq(msg.get_payload(), """\ +--BOUNDARY +Content-Type: text/plain + +message 1 + +--BOUNDARY +Content-Type: text/plain + +message 2 + +--BOUNDARY-- +""") + + def test_no_separating_blank_line(self): + eq = self.ndiffAssertEqual + msg = self._msgobj('msg_35.txt') + eq(msg.as_string(), """\ +From: aperson at dom.ain +To: bperson at dom.ain +Subject: here's something interesting + +counter to RFC 2822, there's no separating newline here +""") + + def test_lying_multipart(self): + unless = self.assertTrue + msg = self._msgobj('msg_41.txt') + unless(hasattr(msg, 'defects')) + self.assertEqual(len(msg.defects), 2) + unless(isinstance(msg.defects[0], errors.NoBoundaryInMultipartDefect)) + unless(isinstance(msg.defects[1], + errors.MultipartInvariantViolationDefect)) + + def test_missing_start_boundary(self): + outer = self._msgobj('msg_42.txt') + # The message structure is: + # + # multipart/mixed + # text/plain + # message/rfc822 + # multipart/mixed [*] + # + # [*] This message is missing its start boundary + bad = outer.get_payload(1).get_payload(0) + self.assertEqual(len(bad.defects), 1) + self.assertTrue(isinstance(bad.defects[0], + errors.StartBoundaryNotFoundDefect)) + + def test_first_line_is_continuation_header(self): + eq = self.assertEqual + m = ' Line 1\nLine 2\nLine 3' + msg = email.message_from_string(m) + eq(msg.keys(), []) + eq(msg.get_payload(), 'Line 2\nLine 3') + eq(len(msg.defects), 1) + self.assertTrue(isinstance(msg.defects[0], + errors.FirstHeaderLineIsContinuationDefect)) + eq(msg.defects[0].line, ' Line 1\n') + + + +# Test RFC 2047 header encoding and decoding +class TestRFC2047(TestEmailBase): + def test_rfc2047_multiline(self): + eq = self.assertEqual + s = """Re: =?mac-iceland?q?r=8Aksm=9Arg=8Cs?= baz + foo bar =?mac-iceland?q?r=8Aksm=9Arg=8Cs?=""" + dh = decode_header(s) + eq(dh, [ + (b'Re:', None), + (b'r\x8aksm\x9arg\x8cs', 'mac-iceland'), + (b'baz foo bar', None), + (b'r\x8aksm\x9arg\x8cs', 'mac-iceland')]) + header = make_header(dh) + eq(str(header), + 'Re: r\xe4ksm\xf6rg\xe5s baz foo bar r\xe4ksm\xf6rg\xe5s') + self.ndiffAssertEqual(header.encode(maxlinelen=76), """\ +Re: =?mac-iceland?q?r=8Aksm=9Arg=8Cs?= baz foo bar =?mac-iceland?q?r=8Aksm?= + =?mac-iceland?q?=9Arg=8Cs?=""") + + def test_whitespace_eater_unicode(self): + eq = self.assertEqual + s = '=?ISO-8859-1?Q?Andr=E9?= Pirard ' + dh = decode_header(s) + eq(dh, [(b'Andr\xe9', 'iso-8859-1'), + (b'Pirard ', None)]) + header = str(make_header(dh)) + eq(header, 'Andr\xe9 Pirard ') + + def test_whitespace_eater_unicode_2(self): + eq = self.assertEqual + s = 'The =?iso-8859-1?b?cXVpY2sgYnJvd24gZm94?= jumped over the =?iso-8859-1?b?bGF6eSBkb2c=?=' + dh = decode_header(s) + eq(dh, [(b'The', None), (b'quick brown fox', 'iso-8859-1'), + (b'jumped over the', None), (b'lazy dog', 'iso-8859-1')]) + hu = str(make_header(dh)) + eq(hu, 'The quick brown fox jumped over the lazy dog') + + def test_rfc2047_missing_whitespace(self): + s = 'Sm=?ISO-8859-1?B?9g==?=rg=?ISO-8859-1?B?5Q==?=sbord' + dh = decode_header(s) + self.assertEqual(dh, [(s, None)]) + + def test_rfc2047_with_whitespace(self): + s = 'Sm =?ISO-8859-1?B?9g==?= rg =?ISO-8859-1?B?5Q==?= sbord' + dh = decode_header(s) + self.assertEqual(dh, [(b'Sm', None), (b'\xf6', 'iso-8859-1'), + (b'rg', None), (b'\xe5', 'iso-8859-1'), + (b'sbord', None)]) + + def test_rfc2047_B_bad_padding(self): + s = '=?iso-8859-1?B?%s?=' + data = [ # only test complete bytes + ('dm==', b'v'), ('dm=', b'v'), ('dm', b'v'), + ('dmk=', b'vi'), ('dmk', b'vi') + ] + for q, a in data: + dh = decode_header(s % q) + self.assertEqual(dh, [(a, 'iso-8859-1')]) + + def test_rfc2047_Q_invalid_digits(self): + # issue 10004. + s = '=?iso-8659-1?Q?andr=e9=zz?=' + self.assertEqual(decode_header(s), + [(b'andr\xe9=zz', 'iso-8659-1')]) + + +# Test the MIMEMessage class +class TestMIMEMessage(TestEmailBase): + def setUp(self): + with openfile('msg_11.txt') as fp: + self._text = fp.read() + + def test_type_error(self): + self.assertRaises(TypeError, MIMEMessage, 'a plain string') + + def test_valid_argument(self): + eq = self.assertEqual + unless = self.assertTrue + subject = 'A sub-message' + m = Message() + m['Subject'] = subject + r = MIMEMessage(m) + eq(r.get_content_type(), 'message/rfc822') + payload = r.get_payload() + unless(isinstance(payload, list)) + eq(len(payload), 1) + subpart = payload[0] + unless(subpart is m) + eq(subpart['subject'], subject) + + def test_bad_multipart(self): + eq = self.assertEqual + msg1 = Message() + msg1['Subject'] = 'subpart 1' + msg2 = Message() + msg2['Subject'] = 'subpart 2' + r = MIMEMessage(msg1) + self.assertRaises(errors.MultipartConversionError, r.attach, msg2) + + def test_generate(self): + # First craft the message to be encapsulated + m = Message() + m['Subject'] = 'An enclosed message' + m.set_payload('Here is the body of the message.\n') + r = MIMEMessage(m) + r['Subject'] = 'The enclosing message' + s = StringIO() + g = Generator(s) + g.flatten(r) + self.assertEqual(s.getvalue(), """\ +Content-Type: message/rfc822 +MIME-Version: 1.0 +Subject: The enclosing message + +Subject: An enclosed message + +Here is the body of the message. +""") + + def test_parse_message_rfc822(self): + eq = self.assertEqual + unless = self.assertTrue + msg = self._msgobj('msg_11.txt') + eq(msg.get_content_type(), 'message/rfc822') + payload = msg.get_payload() + unless(isinstance(payload, list)) + eq(len(payload), 1) + submsg = payload[0] + self.assertTrue(isinstance(submsg, Message)) + eq(submsg['subject'], 'An enclosed message') + eq(submsg.get_payload(), 'Here is the body of the message.\n') + + def test_dsn(self): + eq = self.assertEqual + unless = self.assertTrue + # msg 16 is a Delivery Status Notification, see RFC 1894 + msg = self._msgobj('msg_16.txt') + eq(msg.get_content_type(), 'multipart/report') + unless(msg.is_multipart()) + eq(len(msg.get_payload()), 3) + # Subpart 1 is a text/plain, human readable section + subpart = msg.get_payload(0) + eq(subpart.get_content_type(), 'text/plain') + eq(subpart.get_payload(), """\ +This report relates to a message you sent with the following header fields: + + Message-id: <002001c144a6$8752e060$56104586 at oxy.edu> + Date: Sun, 23 Sep 2001 20:10:55 -0700 + From: "Ian T. Henry" + To: SoCal Raves + Subject: [scr] yeah for Ians!! + +Your message cannot be delivered to the following recipients: + + Recipient address: jangel1 at cougar.noc.ucla.edu + Reason: recipient reached disk quota + +""") + # Subpart 2 contains the machine parsable DSN information. It + # consists of two blocks of headers, represented by two nested Message + # objects. + subpart = msg.get_payload(1) + eq(subpart.get_content_type(), 'message/delivery-status') + eq(len(subpart.get_payload()), 2) + # message/delivery-status should treat each block as a bunch of + # headers, i.e. a bunch of Message objects. + dsn1 = subpart.get_payload(0) + unless(isinstance(dsn1, Message)) + eq(dsn1['original-envelope-id'], '0GK500B4HD0888 at cougar.noc.ucla.edu') + eq(dsn1.get_param('dns', header='reporting-mta'), '') + # Try a missing one + eq(dsn1.get_param('nsd', header='reporting-mta'), None) + dsn2 = subpart.get_payload(1) + unless(isinstance(dsn2, Message)) + eq(dsn2['action'], 'failed') + eq(dsn2.get_params(header='original-recipient'), + [('rfc822', ''), ('jangel1 at cougar.noc.ucla.edu', '')]) + eq(dsn2.get_param('rfc822', header='final-recipient'), '') + # Subpart 3 is the original message + subpart = msg.get_payload(2) + eq(subpart.get_content_type(), 'message/rfc822') + payload = subpart.get_payload() + unless(isinstance(payload, list)) + eq(len(payload), 1) + subsubpart = payload[0] + unless(isinstance(subsubpart, Message)) + eq(subsubpart.get_content_type(), 'text/plain') + eq(subsubpart['message-id'], + '<002001c144a6$8752e060$56104586 at oxy.edu>') + + def test_epilogue(self): + eq = self.ndiffAssertEqual + with openfile('msg_21.txt') as fp: + text = fp.read() + msg = Message() + msg['From'] = 'aperson at dom.ain' + msg['To'] = 'bperson at dom.ain' + msg['Subject'] = 'Test' + msg.preamble = 'MIME message' + msg.epilogue = 'End of MIME message\n' + msg1 = MIMEText('One') + msg2 = MIMEText('Two') + msg.add_header('Content-Type', 'multipart/mixed', boundary='BOUNDARY') + msg.attach(msg1) + msg.attach(msg2) + sfp = StringIO() + g = Generator(sfp) + g.flatten(msg) + eq(sfp.getvalue(), text) + + def test_no_nl_preamble(self): + eq = self.ndiffAssertEqual + msg = Message() + msg['From'] = 'aperson at dom.ain' + msg['To'] = 'bperson at dom.ain' + msg['Subject'] = 'Test' + msg.preamble = 'MIME message' + msg.epilogue = '' + msg1 = MIMEText('One') + msg2 = MIMEText('Two') + msg.add_header('Content-Type', 'multipart/mixed', boundary='BOUNDARY') + msg.attach(msg1) + msg.attach(msg2) + eq(msg.as_string(), """\ +From: aperson at dom.ain +To: bperson at dom.ain +Subject: Test +Content-Type: multipart/mixed; boundary="BOUNDARY" + +MIME message +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit + +One +--BOUNDARY +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit + +Two +--BOUNDARY-- +""") + + def test_default_type(self): + eq = self.assertEqual + with openfile('msg_30.txt') as fp: + msg = email.message_from_file(fp) + container1 = msg.get_payload(0) + eq(container1.get_default_type(), 'message/rfc822') + eq(container1.get_content_type(), 'message/rfc822') + container2 = msg.get_payload(1) + eq(container2.get_default_type(), 'message/rfc822') + eq(container2.get_content_type(), 'message/rfc822') + container1a = container1.get_payload(0) + eq(container1a.get_default_type(), 'text/plain') + eq(container1a.get_content_type(), 'text/plain') + container2a = container2.get_payload(0) + eq(container2a.get_default_type(), 'text/plain') + eq(container2a.get_content_type(), 'text/plain') + + def test_default_type_with_explicit_container_type(self): + eq = self.assertEqual + with openfile('msg_28.txt') as fp: + msg = email.message_from_file(fp) + container1 = msg.get_payload(0) + eq(container1.get_default_type(), 'message/rfc822') + eq(container1.get_content_type(), 'message/rfc822') + container2 = msg.get_payload(1) + eq(container2.get_default_type(), 'message/rfc822') + eq(container2.get_content_type(), 'message/rfc822') + container1a = container1.get_payload(0) + eq(container1a.get_default_type(), 'text/plain') + eq(container1a.get_content_type(), 'text/plain') + container2a = container2.get_payload(0) + eq(container2a.get_default_type(), 'text/plain') + eq(container2a.get_content_type(), 'text/plain') + + def test_default_type_non_parsed(self): + eq = self.assertEqual + neq = self.ndiffAssertEqual + # Set up container + container = MIMEMultipart('digest', 'BOUNDARY') + container.epilogue = '' + # Set up subparts + subpart1a = MIMEText('message 1\n') + subpart2a = MIMEText('message 2\n') + subpart1 = MIMEMessage(subpart1a) + subpart2 = MIMEMessage(subpart2a) + container.attach(subpart1) + container.attach(subpart2) + eq(subpart1.get_content_type(), 'message/rfc822') + eq(subpart1.get_default_type(), 'message/rfc822') + eq(subpart2.get_content_type(), 'message/rfc822') + eq(subpart2.get_default_type(), 'message/rfc822') + neq(container.as_string(0), '''\ +Content-Type: multipart/digest; boundary="BOUNDARY" +MIME-Version: 1.0 + +--BOUNDARY +Content-Type: message/rfc822 +MIME-Version: 1.0 + +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit + +message 1 + +--BOUNDARY +Content-Type: message/rfc822 +MIME-Version: 1.0 + +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit + +message 2 + +--BOUNDARY-- +''') + del subpart1['content-type'] + del subpart1['mime-version'] + del subpart2['content-type'] + del subpart2['mime-version'] + eq(subpart1.get_content_type(), 'message/rfc822') + eq(subpart1.get_default_type(), 'message/rfc822') + eq(subpart2.get_content_type(), 'message/rfc822') + eq(subpart2.get_default_type(), 'message/rfc822') + neq(container.as_string(0), '''\ +Content-Type: multipart/digest; boundary="BOUNDARY" +MIME-Version: 1.0 + +--BOUNDARY + +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit + +message 1 + +--BOUNDARY + +Content-Type: text/plain; charset="us-ascii" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit + +message 2 + +--BOUNDARY-- +''') + + def test_mime_attachments_in_constructor(self): + eq = self.assertEqual + text1 = MIMEText('') + text2 = MIMEText('') + msg = MIMEMultipart(_subparts=(text1, text2)) + eq(len(msg.get_payload()), 2) + eq(msg.get_payload(0), text1) + eq(msg.get_payload(1), text2) + + def test_default_multipart_constructor(self): + msg = MIMEMultipart() + self.assertTrue(msg.is_multipart()) + + +# A general test of parser->model->generator idempotency. IOW, read a message +# in, parse it into a message object tree, then without touching the tree, +# regenerate the plain text. The original text and the transformed text +# should be identical. Note: that we ignore the Unix-From since that may +# contain a changed date. +class TestIdempotent(TestEmailBase): + + linesep = '\n' + + def _msgobj(self, filename): + with openfile(filename) as fp: + data = fp.read() + msg = email.message_from_string(data) + return msg, data + + def _idempotent(self, msg, text, unixfrom=False): + eq = self.ndiffAssertEqual + s = StringIO() + g = Generator(s, maxheaderlen=0) + g.flatten(msg, unixfrom=unixfrom) + eq(text, s.getvalue()) + + def test_parse_text_message(self): + eq = self.assertEqual + msg, text = self._msgobj('msg_01.txt') + eq(msg.get_content_type(), 'text/plain') + eq(msg.get_content_maintype(), 'text') + eq(msg.get_content_subtype(), 'plain') + eq(msg.get_params()[1], ('charset', 'us-ascii')) + eq(msg.get_param('charset'), 'us-ascii') + eq(msg.preamble, None) + eq(msg.epilogue, None) + self._idempotent(msg, text) + + def test_parse_untyped_message(self): + eq = self.assertEqual + msg, text = self._msgobj('msg_03.txt') + eq(msg.get_content_type(), 'text/plain') + eq(msg.get_params(), None) + eq(msg.get_param('charset'), None) + self._idempotent(msg, text) + + def test_simple_multipart(self): + msg, text = self._msgobj('msg_04.txt') + self._idempotent(msg, text) + + def test_MIME_digest(self): + msg, text = self._msgobj('msg_02.txt') + self._idempotent(msg, text) + + def test_long_header(self): + msg, text = self._msgobj('msg_27.txt') + self._idempotent(msg, text) + + def test_MIME_digest_with_part_headers(self): + msg, text = self._msgobj('msg_28.txt') + self._idempotent(msg, text) + + def test_mixed_with_image(self): + msg, text = self._msgobj('msg_06.txt') + self._idempotent(msg, text) + + def test_multipart_report(self): + msg, text = self._msgobj('msg_05.txt') + self._idempotent(msg, text) + + def test_dsn(self): + msg, text = self._msgobj('msg_16.txt') + self._idempotent(msg, text) + + def test_preamble_epilogue(self): + msg, text = self._msgobj('msg_21.txt') + self._idempotent(msg, text) + + def test_multipart_one_part(self): + msg, text = self._msgobj('msg_23.txt') + self._idempotent(msg, text) + + def test_multipart_no_parts(self): + msg, text = self._msgobj('msg_24.txt') + self._idempotent(msg, text) + + def test_no_start_boundary(self): + msg, text = self._msgobj('msg_31.txt') + self._idempotent(msg, text) + + def test_rfc2231_charset(self): + msg, text = self._msgobj('msg_32.txt') + self._idempotent(msg, text) + + def test_more_rfc2231_parameters(self): + msg, text = self._msgobj('msg_33.txt') + self._idempotent(msg, text) + + def test_text_plain_in_a_multipart_digest(self): + msg, text = self._msgobj('msg_34.txt') + self._idempotent(msg, text) + + def test_nested_multipart_mixeds(self): + msg, text = self._msgobj('msg_12a.txt') + self._idempotent(msg, text) + + def test_message_external_body_idempotent(self): + msg, text = self._msgobj('msg_36.txt') + self._idempotent(msg, text) + + def test_message_delivery_status(self): + msg, text = self._msgobj('msg_43.txt') + self._idempotent(msg, text, unixfrom=True) + + def test_message_signed_idempotent(self): + msg, text = self._msgobj('msg_45.txt') + self._idempotent(msg, text) + + def test_content_type(self): + eq = self.assertEqual + unless = self.assertTrue + # Get a message object and reset the seek pointer for other tests + msg, text = self._msgobj('msg_05.txt') + eq(msg.get_content_type(), 'multipart/report') + # Test the Content-Type: parameters + params = {} + for pk, pv in msg.get_params(): + params[pk] = pv + eq(params['report-type'], 'delivery-status') + eq(params['boundary'], 'D1690A7AC1.996856090/mail.example.com') + eq(msg.preamble, 'This is a MIME-encapsulated message.' + self.linesep) + eq(msg.epilogue, self.linesep) + eq(len(msg.get_payload()), 3) + # Make sure the subparts are what we expect + msg1 = msg.get_payload(0) + eq(msg1.get_content_type(), 'text/plain') + eq(msg1.get_payload(), 'Yadda yadda yadda' + self.linesep) + msg2 = msg.get_payload(1) + eq(msg2.get_content_type(), 'text/plain') + eq(msg2.get_payload(), 'Yadda yadda yadda' + self.linesep) + msg3 = msg.get_payload(2) + eq(msg3.get_content_type(), 'message/rfc822') + self.assertTrue(isinstance(msg3, Message)) + payload = msg3.get_payload() + unless(isinstance(payload, list)) + eq(len(payload), 1) + msg4 = payload[0] + unless(isinstance(msg4, Message)) + eq(msg4.get_payload(), 'Yadda yadda yadda' + self.linesep) + + def test_parser(self): + eq = self.assertEqual + unless = self.assertTrue + msg, text = self._msgobj('msg_06.txt') + # Check some of the outer headers + eq(msg.get_content_type(), 'message/rfc822') + # Make sure the payload is a list of exactly one sub-Message, and that + # that submessage has a type of text/plain + payload = msg.get_payload() + unless(isinstance(payload, list)) + eq(len(payload), 1) + msg1 = payload[0] + self.assertTrue(isinstance(msg1, Message)) + eq(msg1.get_content_type(), 'text/plain') + self.assertTrue(isinstance(msg1.get_payload(), str)) + eq(msg1.get_payload(), self.linesep) + + + +# Test various other bits of the package's functionality +class TestMiscellaneous(TestEmailBase): + def test_message_from_string(self): + with openfile('msg_01.txt') as fp: + text = fp.read() + msg = email.message_from_string(text) + s = StringIO() + # Don't wrap/continue long headers since we're trying to test + # idempotency. + g = Generator(s, maxheaderlen=0) + g.flatten(msg) + self.assertEqual(text, s.getvalue()) + + def test_message_from_file(self): + with openfile('msg_01.txt') as fp: + text = fp.read() + fp.seek(0) + msg = email.message_from_file(fp) + s = StringIO() + # Don't wrap/continue long headers since we're trying to test + # idempotency. + g = Generator(s, maxheaderlen=0) + g.flatten(msg) + self.assertEqual(text, s.getvalue()) + + def test_message_from_string_with_class(self): + unless = self.assertTrue + with openfile('msg_01.txt') as fp: + text = fp.read() + + # Create a subclass + class MyMessage(Message): + pass + + msg = email.message_from_string(text, MyMessage) + unless(isinstance(msg, MyMessage)) + # Try something more complicated + with openfile('msg_02.txt') as fp: + text = fp.read() + msg = email.message_from_string(text, MyMessage) + for subpart in msg.walk(): + unless(isinstance(subpart, MyMessage)) + + def test_message_from_file_with_class(self): + unless = self.assertTrue + # Create a subclass + class MyMessage(Message): + pass + + with openfile('msg_01.txt') as fp: + msg = email.message_from_file(fp, MyMessage) + unless(isinstance(msg, MyMessage)) + # Try something more complicated + with openfile('msg_02.txt') as fp: + msg = email.message_from_file(fp, MyMessage) + for subpart in msg.walk(): + unless(isinstance(subpart, MyMessage)) + + def test__all__(self): + module = __import__('email') + # Can't use sorted() here due to Python 2.3 compatibility + all = module.__all__[:] + all.sort() + self.assertEqual(all, [ + 'base64mime', 'charset', 'encoders', 'errors', 'generator', + 'header', 'iterators', 'message', 'message_from_binary_file', + 'message_from_bytes', 'message_from_file', + 'message_from_string', 'mime', 'parser', + 'quoprimime', 'utils', + ]) + + def test_formatdate(self): + now = time.time() + self.assertEqual(utils.parsedate(utils.formatdate(now))[:6], + time.gmtime(now)[:6]) + + def test_formatdate_localtime(self): + now = time.time() + self.assertEqual( + utils.parsedate(utils.formatdate(now, localtime=True))[:6], + time.localtime(now)[:6]) + + def test_formatdate_usegmt(self): + now = time.time() + self.assertEqual( + utils.formatdate(now, localtime=False), + time.strftime('%a, %d %b %Y %H:%M:%S -0000', time.gmtime(now))) + self.assertEqual( + utils.formatdate(now, localtime=False, usegmt=True), + time.strftime('%a, %d %b %Y %H:%M:%S GMT', time.gmtime(now))) + + def test_parsedate_none(self): + self.assertEqual(utils.parsedate(''), None) + + def test_parsedate_compact(self): + # The FWS after the comma is optional + self.assertEqual(utils.parsedate('Wed,3 Apr 2002 14:58:26 +0800'), + utils.parsedate('Wed, 3 Apr 2002 14:58:26 +0800')) + + def test_parsedate_no_dayofweek(self): + eq = self.assertEqual + eq(utils.parsedate_tz('25 Feb 2003 13:47:26 -0800'), + (2003, 2, 25, 13, 47, 26, 0, 1, -1, -28800)) + + def test_parsedate_compact_no_dayofweek(self): + eq = self.assertEqual + eq(utils.parsedate_tz('5 Feb 2003 13:47:26 -0800'), + (2003, 2, 5, 13, 47, 26, 0, 1, -1, -28800)) + + def test_parsedate_no_space_before_positive_offset(self): + self.assertEqual(utils.parsedate_tz('Wed, 3 Apr 2002 14:58:26+0800'), + (2002, 4, 3, 14, 58, 26, 0, 1, -1, 28800)) + + def test_parsedate_no_space_before_negative_offset(self): + # Issue 1155362: we already handled '+' for this case. + self.assertEqual(utils.parsedate_tz('Wed, 3 Apr 2002 14:58:26-0800'), + (2002, 4, 3, 14, 58, 26, 0, 1, -1, -28800)) + + + def test_parsedate_accepts_time_with_dots(self): + eq = self.assertEqual + eq(utils.parsedate_tz('5 Feb 2003 13.47.26 -0800'), + (2003, 2, 5, 13, 47, 26, 0, 1, -1, -28800)) + eq(utils.parsedate_tz('5 Feb 2003 13.47 -0800'), + (2003, 2, 5, 13, 47, 0, 0, 1, -1, -28800)) + + def test_parsedate_acceptable_to_time_functions(self): + eq = self.assertEqual + timetup = utils.parsedate('5 Feb 2003 13:47:26 -0800') + t = int(time.mktime(timetup)) + eq(time.localtime(t)[:6], timetup[:6]) + eq(int(time.strftime('%Y', timetup)), 2003) + timetup = utils.parsedate_tz('5 Feb 2003 13:47:26 -0800') + t = int(time.mktime(timetup[:9])) + eq(time.localtime(t)[:6], timetup[:6]) + eq(int(time.strftime('%Y', timetup[:9])), 2003) + + def test_parsedate_y2k(self): + """Test for parsing a date with a two-digit year. + + Parsing a date with a two-digit year should return the correct + four-digit year. RFC822 allows two-digit years, but RFC2822 (which + obsoletes RFC822) requires four-digit years. + + """ + self.assertEqual(utils.parsedate_tz('25 Feb 03 13:47:26 -0800'), + utils.parsedate_tz('25 Feb 2003 13:47:26 -0800')) + self.assertEqual(utils.parsedate_tz('25 Feb 71 13:47:26 -0800'), + utils.parsedate_tz('25 Feb 1971 13:47:26 -0800')) + + def test_parseaddr_empty(self): + self.assertEqual(utils.parseaddr('<>'), ('', '')) + self.assertEqual(utils.formataddr(utils.parseaddr('<>')), '') + + def test_noquote_dump(self): + self.assertEqual( + utils.formataddr(('A Silly Person', 'person at dom.ain')), + 'A Silly Person ') + + def test_escape_dump(self): + self.assertEqual( + utils.formataddr(('A (Very) Silly Person', 'person at dom.ain')), + r'"A \(Very\) Silly Person" ') + a = r'A \(Special\) Person' + b = 'person at dom.ain' + self.assertEqual(utils.parseaddr(utils.formataddr((a, b))), (a, b)) + + def test_escape_backslashes(self): + self.assertEqual( + utils.formataddr(('Arthur \Backslash\ Foobar', 'person at dom.ain')), + r'"Arthur \\Backslash\\ Foobar" ') + a = r'Arthur \Backslash\ Foobar' + b = 'person at dom.ain' + self.assertEqual(utils.parseaddr(utils.formataddr((a, b))), (a, b)) + + def test_name_with_dot(self): + x = 'John X. Doe ' + y = '"John X. Doe" ' + a, b = ('John X. Doe', 'jxd at example.com') + self.assertEqual(utils.parseaddr(x), (a, b)) + self.assertEqual(utils.parseaddr(y), (a, b)) + # formataddr() quotes the name if there's a dot in it + self.assertEqual(utils.formataddr((a, b)), y) + + def test_parseaddr_preserves_quoted_pairs_in_addresses(self): + # issue 10005. Note that in the third test the second pair of + # backslashes is not actually a quoted pair because it is not inside a + # comment or quoted string: the address being parsed has a quoted + # string containing a quoted backslash, followed by 'example' and two + # backslashes, followed by another quoted string containing a space and + # the word 'example'. parseaddr copies those two backslashes + # literally. Per rfc5322 this is not technically correct since a \ may + # not appear in an address outside of a quoted string. It is probably + # a sensible Postel interpretation, though. + eq = self.assertEqual + eq(utils.parseaddr('""example" example"@example.com'), + ('', '""example" example"@example.com')) + eq(utils.parseaddr('"\\"example\\" example"@example.com'), + ('', '"\\"example\\" example"@example.com')) + eq(utils.parseaddr('"\\\\"example\\\\" example"@example.com'), + ('', '"\\\\"example\\\\" example"@example.com')) + + def test_parseaddr_preserves_spaces_in_local_part(self): + # issue 9286. A normal RFC5322 local part should not contain any + # folding white space, but legacy local parts can (they are a sequence + # of atoms, not dotatoms). On the other hand we strip whitespace from + # before the @ and around dots, on the assumption that the whitespace + # around the punctuation is a mistake in what would otherwise be + # an RFC5322 local part. Leading whitespace is, usual, stripped as well. + self.assertEqual(('', "merwok wok at xample.com"), + utils.parseaddr("merwok wok at xample.com")) + self.assertEqual(('', "merwok wok at xample.com"), + utils.parseaddr("merwok wok at xample.com")) + self.assertEqual(('', "merwok wok at xample.com"), + utils.parseaddr(" merwok wok @xample.com")) + self.assertEqual(('', 'merwok"wok" wok at xample.com'), + utils.parseaddr('merwok"wok" wok at xample.com')) + self.assertEqual(('', 'merwok.wok.wok at xample.com'), + utils.parseaddr('merwok. wok . wok at xample.com')) + + def test_multiline_from_comment(self): + x = """\ +Foo +\tBar """ + self.assertEqual(utils.parseaddr(x), ('Foo Bar', 'foo at example.com')) + + def test_quote_dump(self): + self.assertEqual( + utils.formataddr(('A Silly; Person', 'person at dom.ain')), + r'"A Silly; Person" ') + + def test_charset_richcomparisons(self): + eq = self.assertEqual + ne = self.assertNotEqual + cset1 = Charset() + cset2 = Charset() + eq(cset1, 'us-ascii') + eq(cset1, 'US-ASCII') + eq(cset1, 'Us-AsCiI') + eq('us-ascii', cset1) + eq('US-ASCII', cset1) + eq('Us-AsCiI', cset1) + ne(cset1, 'usascii') + ne(cset1, 'USASCII') + ne(cset1, 'UsAsCiI') + ne('usascii', cset1) + ne('USASCII', cset1) + ne('UsAsCiI', cset1) + eq(cset1, cset2) + eq(cset2, cset1) + + def test_getaddresses(self): + eq = self.assertEqual + eq(utils.getaddresses(['aperson at dom.ain (Al Person)', + 'Bud Person ']), + [('Al Person', 'aperson at dom.ain'), + ('Bud Person', 'bperson at dom.ain')]) + + def test_getaddresses_nasty(self): + eq = self.assertEqual + eq(utils.getaddresses(['foo: ;']), [('', '')]) + eq(utils.getaddresses( + ['[]*-- =~$']), + [('', ''), ('', ''), ('', '*--')]) + eq(utils.getaddresses( + ['foo: ;', '"Jason R. Mastaler" ']), + [('', ''), ('Jason R. Mastaler', 'jason at dom.ain')]) + + def test_getaddresses_embedded_comment(self): + """Test proper handling of a nested comment""" + eq = self.assertEqual + addrs = utils.getaddresses(['User ((nested comment)) ']) + eq(addrs[0][1], 'foo at bar.com') + + def test_utils_quote_unquote(self): + eq = self.assertEqual + msg = Message() + msg.add_header('content-disposition', 'attachment', + filename='foo\\wacky"name') + eq(msg.get_filename(), 'foo\\wacky"name') + + def test_get_body_encoding_with_bogus_charset(self): + charset = Charset('not a charset') + self.assertEqual(charset.get_body_encoding(), 'base64') + + def test_get_body_encoding_with_uppercase_charset(self): + eq = self.assertEqual + msg = Message() + msg['Content-Type'] = 'text/plain; charset=UTF-8' + eq(msg['content-type'], 'text/plain; charset=UTF-8') + charsets = msg.get_charsets() + eq(len(charsets), 1) + eq(charsets[0], 'utf-8') + charset = Charset(charsets[0]) + eq(charset.get_body_encoding(), 'base64') + msg.set_payload(b'hello world', charset=charset) + eq(msg.get_payload(), 'aGVsbG8gd29ybGQ=\n') + eq(msg.get_payload(decode=True), b'hello world') + eq(msg['content-transfer-encoding'], 'base64') + # Try another one + msg = Message() + msg['Content-Type'] = 'text/plain; charset="US-ASCII"' + charsets = msg.get_charsets() + eq(len(charsets), 1) + eq(charsets[0], 'us-ascii') + charset = Charset(charsets[0]) + eq(charset.get_body_encoding(), encoders.encode_7or8bit) + msg.set_payload('hello world', charset=charset) + eq(msg.get_payload(), 'hello world') + eq(msg['content-transfer-encoding'], '7bit') + + def test_charsets_case_insensitive(self): + lc = Charset('us-ascii') + uc = Charset('US-ASCII') + self.assertEqual(lc.get_body_encoding(), uc.get_body_encoding()) + + def test_partial_falls_inside_message_delivery_status(self): + eq = self.ndiffAssertEqual + # The Parser interface provides chunks of data to FeedParser in 8192 + # byte gulps. SF bug #1076485 found one of those chunks inside + # message/delivery-status header block, which triggered an + # unreadline() of NeedMoreData. + msg = self._msgobj('msg_43.txt') + sfp = StringIO() + iterators._structure(msg, sfp) + eq(sfp.getvalue(), """\ +multipart/report + text/plain + message/delivery-status + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/plain + text/rfc822-headers +""") + + def test_make_msgid_domain(self): + self.assertEqual( + email.utils.make_msgid(domain='testdomain-string')[-19:], + '@testdomain-string>') + + +# Test the iterator/generators +class TestIterators(TestEmailBase): + def test_body_line_iterator(self): + eq = self.assertEqual + neq = self.ndiffAssertEqual + # First a simple non-multipart message + msg = self._msgobj('msg_01.txt') + it = iterators.body_line_iterator(msg) + lines = list(it) + eq(len(lines), 6) + neq(EMPTYSTRING.join(lines), msg.get_payload()) + # Now a more complicated multipart + msg = self._msgobj('msg_02.txt') + it = iterators.body_line_iterator(msg) + lines = list(it) + eq(len(lines), 43) + with openfile('msg_19.txt') as fp: + neq(EMPTYSTRING.join(lines), fp.read()) + + def test_typed_subpart_iterator(self): + eq = self.assertEqual + msg = self._msgobj('msg_04.txt') + it = iterators.typed_subpart_iterator(msg, 'text') + lines = [] + subparts = 0 + for subpart in it: + subparts += 1 + lines.append(subpart.get_payload()) + eq(subparts, 2) + eq(EMPTYSTRING.join(lines), """\ +a simple kind of mirror +to reflect upon our own +a simple kind of mirror +to reflect upon our own +""") + + def test_typed_subpart_iterator_default_type(self): + eq = self.assertEqual + msg = self._msgobj('msg_03.txt') + it = iterators.typed_subpart_iterator(msg, 'text', 'plain') + lines = [] + subparts = 0 + for subpart in it: + subparts += 1 + lines.append(subpart.get_payload()) + eq(subparts, 1) + eq(EMPTYSTRING.join(lines), """\ + +Hi, + +Do you like this message? + +-Me +""") + + def test_pushCR_LF(self): + '''FeedParser BufferedSubFile.push() assumed it received complete + line endings. A CR ending one push() followed by a LF starting + the next push() added an empty line. + ''' + imt = [ + ("a\r \n", 2), + ("b", 0), + ("c\n", 1), + ("", 0), + ("d\r\n", 1), + ("e\r", 0), + ("\nf", 1), + ("\r\n", 1), + ] + from email.feedparser import BufferedSubFile, NeedMoreData + bsf = BufferedSubFile() + om = [] + nt = 0 + for il, n in imt: + bsf.push(il) + nt += n + n1 = 0 + while True: + ol = bsf.readline() + if ol == NeedMoreData: + break + om.append(ol) + n1 += 1 + self.assertTrue(n == n1) + self.assertTrue(len(om) == nt) + self.assertTrue(''.join([il for il, n in imt]) == ''.join(om)) + + + +class TestParsers(TestEmailBase): + def test_header_parser(self): + eq = self.assertEqual + # Parse only the headers of a complex multipart MIME document + with openfile('msg_02.txt') as fp: + msg = HeaderParser().parse(fp) + eq(msg['from'], 'ppp-request at zzz.org') + eq(msg['to'], 'ppp at zzz.org') + eq(msg.get_content_type(), 'multipart/mixed') + self.assertFalse(msg.is_multipart()) + self.assertTrue(isinstance(msg.get_payload(), str)) + + def test_whitespace_continuation(self): + eq = self.assertEqual + # This message contains a line after the Subject: header that has only + # whitespace, but it is not empty! + msg = email.message_from_string("""\ +From: aperson at dom.ain +To: bperson at dom.ain +Subject: the next line has a space on it +\x20 +Date: Mon, 8 Apr 2002 15:09:19 -0400 +Message-ID: spam + +Here's the message body +""") + eq(msg['subject'], 'the next line has a space on it\n ') + eq(msg['message-id'], 'spam') + eq(msg.get_payload(), "Here's the message body\n") + + def test_whitespace_continuation_last_header(self): + eq = self.assertEqual + # Like the previous test, but the subject line is the last + # header. + msg = email.message_from_string("""\ +From: aperson at dom.ain +To: bperson at dom.ain +Date: Mon, 8 Apr 2002 15:09:19 -0400 +Message-ID: spam +Subject: the next line has a space on it +\x20 + +Here's the message body +""") + eq(msg['subject'], 'the next line has a space on it\n ') + eq(msg['message-id'], 'spam') + eq(msg.get_payload(), "Here's the message body\n") + + def test_crlf_separation(self): + eq = self.assertEqual + with openfile('msg_26.txt', newline='\n') as fp: + msg = Parser().parse(fp) + eq(len(msg.get_payload()), 2) + part1 = msg.get_payload(0) + eq(part1.get_content_type(), 'text/plain') + eq(part1.get_payload(), 'Simple email with attachment.\r\n\r\n') + part2 = msg.get_payload(1) + eq(part2.get_content_type(), 'application/riscos') + + def test_crlf_flatten(self): + # Using newline='\n' preserves the crlfs in this input file. + with openfile('msg_26.txt', newline='\n') as fp: + text = fp.read() + msg = email.message_from_string(text) + s = StringIO() + g = Generator(s) + g.flatten(msg, linesep='\r\n') + self.assertEqual(s.getvalue(), text) + + maxDiff = None + + def test_multipart_digest_with_extra_mime_headers(self): + eq = self.assertEqual + neq = self.ndiffAssertEqual + with openfile('msg_28.txt') as fp: + msg = email.message_from_file(fp) + # Structure is: + # multipart/digest + # message/rfc822 + # text/plain + # message/rfc822 + # text/plain + eq(msg.is_multipart(), 1) + eq(len(msg.get_payload()), 2) + part1 = msg.get_payload(0) + eq(part1.get_content_type(), 'message/rfc822') + eq(part1.is_multipart(), 1) + eq(len(part1.get_payload()), 1) + part1a = part1.get_payload(0) + eq(part1a.is_multipart(), 0) + eq(part1a.get_content_type(), 'text/plain') + neq(part1a.get_payload(), 'message 1\n') + # next message/rfc822 + part2 = msg.get_payload(1) + eq(part2.get_content_type(), 'message/rfc822') + eq(part2.is_multipart(), 1) + eq(len(part2.get_payload()), 1) + part2a = part2.get_payload(0) + eq(part2a.is_multipart(), 0) + eq(part2a.get_content_type(), 'text/plain') + neq(part2a.get_payload(), 'message 2\n') + + def test_three_lines(self): + # A bug report by Andrew McNamara + lines = ['From: Andrew Person From', 'From']) + eq(msg.get_payload(), 'body') + + def test_rfc2822_space_not_allowed_in_header(self): + eq = self.assertEqual + m = '>From foo at example.com 11:25:53\nFrom: bar\n!"#QUX;~: zoo\n\nbody' + msg = email.message_from_string(m) + eq(len(msg.keys()), 0) + + def test_rfc2822_one_character_header(self): + eq = self.assertEqual + m = 'A: first header\nB: second header\nCC: third header\n\nbody' + msg = email.message_from_string(m) + headers = msg.keys() + headers.sort() + eq(headers, ['A', 'B', 'CC']) + eq(msg.get_payload(), 'body') + + def test_CRLFLF_at_end_of_part(self): + # issue 5610: feedparser should not eat two chars from body part ending + # with "\r\n\n". + m = ( + "From: foo at bar.com\n" + "To: baz\n" + "Mime-Version: 1.0\n" + "Content-Type: multipart/mixed; boundary=BOUNDARY\n" + "\n" + "--BOUNDARY\n" + "Content-Type: text/plain\n" + "\n" + "body ending with CRLF newline\r\n" + "\n" + "--BOUNDARY--\n" + ) + msg = email.message_from_string(m) + self.assertTrue(msg.get_payload(0).get_payload().endswith('\r\n')) + + +class Test8BitBytesHandling(unittest.TestCase): + # In Python3 all input is string, but that doesn't work if the actual input + # uses an 8bit transfer encoding. To hack around that, in email 5.1 we + # decode byte streams using the surrogateescape error handler, and + # reconvert to binary at appropriate places if we detect surrogates. This + # doesn't allow us to transform headers with 8bit bytes (they get munged), + # but it does allow us to parse and preserve them, and to decode body + # parts that use an 8bit CTE. + + bodytest_msg = textwrap.dedent("""\ + From: foo at bar.com + To: baz + Mime-Version: 1.0 + Content-Type: text/plain; charset={charset} + Content-Transfer-Encoding: {cte} + + {bodyline} + """) + + def test_known_8bit_CTE(self): + m = self.bodytest_msg.format(charset='utf-8', + cte='8bit', + bodyline='p?stal').encode('utf-8') + msg = email.message_from_bytes(m) + self.assertEqual(msg.get_payload(), "p?stal\n") + self.assertEqual(msg.get_payload(decode=True), + "p?stal\n".encode('utf-8')) + + def test_unknown_8bit_CTE(self): + m = self.bodytest_msg.format(charset='notavalidcharset', + cte='8bit', + bodyline='p?stal').encode('utf-8') + msg = email.message_from_bytes(m) + self.assertEqual(msg.get_payload(), "p\uFFFD\uFFFDstal\n") + self.assertEqual(msg.get_payload(decode=True), + "p?stal\n".encode('utf-8')) + + def test_8bit_in_quopri_body(self): + # This is non-RFC compliant data...without 'decode' the library code + # decodes the body using the charset from the headers, and because the + # source byte really is utf-8 this works. This is likely to fail + # against real dirty data (ie: produce mojibake), but the data is + # invalid anyway so it is as good a guess as any. But this means that + # this test just confirms the current behavior; that behavior is not + # necessarily the best possible behavior. With 'decode' it is + # returning the raw bytes, so that test should be of correct behavior, + # or at least produce the same result that email4 did. + m = self.bodytest_msg.format(charset='utf-8', + cte='quoted-printable', + bodyline='p=C3=B6st?l').encode('utf-8') + msg = email.message_from_bytes(m) + self.assertEqual(msg.get_payload(), 'p=C3=B6st?l\n') + self.assertEqual(msg.get_payload(decode=True), + 'p?st?l\n'.encode('utf-8')) + + def test_invalid_8bit_in_non_8bit_cte_uses_replace(self): + # This is similar to the previous test, but proves that if the 8bit + # byte is undecodeable in the specified charset, it gets replaced + # by the unicode 'unknown' character. Again, this may or may not + # be the ideal behavior. Note that if decode=False none of the + # decoders will get involved, so this is the only test we need + # for this behavior. + m = self.bodytest_msg.format(charset='ascii', + cte='quoted-printable', + bodyline='p=C3=B6st?l').encode('utf-8') + msg = email.message_from_bytes(m) + self.assertEqual(msg.get_payload(), 'p=C3=B6st\uFFFD\uFFFDl\n') + self.assertEqual(msg.get_payload(decode=True), + 'p?st?l\n'.encode('utf-8')) + + def test_8bit_in_base64_body(self): + # Sticking an 8bit byte in a base64 block makes it undecodable by + # normal means, so the block is returned undecoded, but as bytes. + m = self.bodytest_msg.format(charset='utf-8', + cte='base64', + bodyline='cMO2c3RhbA?=').encode('utf-8') + msg = email.message_from_bytes(m) + self.assertEqual(msg.get_payload(decode=True), + 'cMO2c3RhbA?=\n'.encode('utf-8')) + + def test_8bit_in_uuencode_body(self): + # Sticking an 8bit byte in a uuencode block makes it undecodable by + # normal means, so the block is returned undecoded, but as bytes. + m = self.bodytest_msg.format(charset='utf-8', + cte='uuencode', + bodyline='<,.V7bit conversion. + self.assertEqual(out.getvalue(), + self.latin_bin_msg.decode('latin-1')+'\n') + + def test_bytes_feedparser(self): + bfp = email.feedparser.BytesFeedParser() + for i in range(0, len(self.latin_bin_msg), 10): + bfp.feed(self.latin_bin_msg[i:i+10]) + m = bfp.close() + self.assertEqual(str(m), self.latin_bin_msg_as7bit) + + def test_crlf_flatten(self): + with openfile('msg_26.txt', 'rb') as fp: + text = fp.read() + msg = email.message_from_bytes(text) + s = BytesIO() + g = email.generator.BytesGenerator(s) + g.flatten(msg, linesep='\r\n') + self.assertEqual(s.getvalue(), text) + maxDiff = None + + +class BaseTestBytesGeneratorIdempotent: + + maxDiff = None + + def _msgobj(self, filename): + with openfile(filename, 'rb') as fp: + data = fp.read() + data = self.normalize_linesep_regex.sub(self.blinesep, data) + msg = email.message_from_bytes(data) + return msg, data + + def _idempotent(self, msg, data, unixfrom=False): + b = BytesIO() + g = email.generator.BytesGenerator(b, maxheaderlen=0) + g.flatten(msg, unixfrom=unixfrom, linesep=self.linesep) + self.assertByteStringsEqual(data, b.getvalue()) + + def assertByteStringsEqual(self, str1, str2): + # Not using self.blinesep here is intentional. This way the output + # is more useful when the failure results in mixed line endings. + self.assertListEqual(str1.split(b'\n'), str2.split(b'\n')) + + +class TestBytesGeneratorIdempotentNL(BaseTestBytesGeneratorIdempotent, + TestIdempotent): + linesep = '\n' + blinesep = b'\n' + normalize_linesep_regex = re.compile(br'\r\n') + + +class TestBytesGeneratorIdempotentCRLF(BaseTestBytesGeneratorIdempotent, + TestIdempotent): + linesep = '\r\n' + blinesep = b'\r\n' + normalize_linesep_regex = re.compile(br'(? +Delivered-To: bbb at zzz.org +Received: by mail.zzz.org (Postfix, from userid 889) +\tid 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT) +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit +Message-ID: <15090.61304.110929.45684 at aaa.zzz.org> +From: bbb at ddd.com (John X. Doe) +To: bbb at zzz.org +Subject: This is a test message +Date: Fri, 4 May 2001 14:05:44 -0400 +Content-Type: text/plain; charset=us-ascii; + title*=us-ascii'en'This%20is%20even%20more%20%2A%2A%2Afun%2A%2A%2A%20isn%27t%20it%21 + + +Hi, + +Do you like this message? + +-Me +""") + + def test_del_param(self): + eq = self.ndiffAssertEqual + msg = self._msgobj('msg_01.txt') + msg.set_param('foo', 'bar', charset='us-ascii', language='en') + msg.set_param('title', 'This is even more ***fun*** isn\'t it!', + charset='us-ascii', language='en') + msg.del_param('foo', header='Content-Type') + eq(msg.as_string(maxheaderlen=78), """\ +Return-Path: +Delivered-To: bbb at zzz.org +Received: by mail.zzz.org (Postfix, from userid 889) +\tid 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT) +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit +Message-ID: <15090.61304.110929.45684 at aaa.zzz.org> +From: bbb at ddd.com (John X. Doe) +To: bbb at zzz.org +Subject: This is a test message +Date: Fri, 4 May 2001 14:05:44 -0400 +Content-Type: text/plain; charset="us-ascii"; + title*=us-ascii'en'This%20is%20even%20more%20%2A%2A%2Afun%2A%2A%2A%20isn%27t%20it%21 + + +Hi, + +Do you like this message? + +-Me +""") + + def test_rfc2231_get_content_charset(self): + eq = self.assertEqual + msg = self._msgobj('msg_32.txt') + eq(msg.get_content_charset(), 'us-ascii') + + def test_rfc2231_parse_rfc_quoting(self): + m = textwrap.dedent('''\ + Content-Disposition: inline; + \tfilename*0*=''This%20is%20even%20more%20; + \tfilename*1*=%2A%2A%2Afun%2A%2A%2A%20; + \tfilename*2="is it not.pdf" + + ''') + msg = email.message_from_string(m) + self.assertEqual(msg.get_filename(), + 'This is even more ***fun*** is it not.pdf') + self.assertEqual(m, msg.as_string()) + + def test_rfc2231_parse_extra_quoting(self): + m = textwrap.dedent('''\ + Content-Disposition: inline; + \tfilename*0*="''This%20is%20even%20more%20"; + \tfilename*1*="%2A%2A%2Afun%2A%2A%2A%20"; + \tfilename*2="is it not.pdf" + + ''') + msg = email.message_from_string(m) + self.assertEqual(msg.get_filename(), + 'This is even more ***fun*** is it not.pdf') + self.assertEqual(m, msg.as_string()) + + def test_rfc2231_no_language_or_charset(self): + m = '''\ +Content-Transfer-Encoding: 8bit +Content-Disposition: inline; filename="file____C__DOCUMENTS_20AND_20SETTINGS_FABIEN_LOCAL_20SETTINGS_TEMP_nsmail.htm" +Content-Type: text/html; NAME*0=file____C__DOCUMENTS_20AND_20SETTINGS_FABIEN_LOCAL_20SETTINGS_TEM; NAME*1=P_nsmail.htm + +''' + msg = email.message_from_string(m) + param = msg.get_param('NAME') + self.assertFalse(isinstance(param, tuple)) + self.assertEqual( + param, + 'file____C__DOCUMENTS_20AND_20SETTINGS_FABIEN_LOCAL_20SETTINGS_TEMP_nsmail.htm') + + def test_rfc2231_no_language_or_charset_in_filename(self): + m = '''\ +Content-Disposition: inline; +\tfilename*0*="''This%20is%20even%20more%20"; +\tfilename*1*="%2A%2A%2Afun%2A%2A%2A%20"; +\tfilename*2="is it not.pdf" + +''' + msg = email.message_from_string(m) + self.assertEqual(msg.get_filename(), + 'This is even more ***fun*** is it not.pdf') + + def test_rfc2231_no_language_or_charset_in_filename_encoded(self): + m = '''\ +Content-Disposition: inline; +\tfilename*0*="''This%20is%20even%20more%20"; +\tfilename*1*="%2A%2A%2Afun%2A%2A%2A%20"; +\tfilename*2="is it not.pdf" + +''' + msg = email.message_from_string(m) + self.assertEqual(msg.get_filename(), + 'This is even more ***fun*** is it not.pdf') + + def test_rfc2231_partly_encoded(self): + m = '''\ +Content-Disposition: inline; +\tfilename*0="''This%20is%20even%20more%20"; +\tfilename*1*="%2A%2A%2Afun%2A%2A%2A%20"; +\tfilename*2="is it not.pdf" + +''' + msg = email.message_from_string(m) + self.assertEqual( + msg.get_filename(), + 'This%20is%20even%20more%20***fun*** is it not.pdf') + + def test_rfc2231_partly_nonencoded(self): + m = '''\ +Content-Disposition: inline; +\tfilename*0="This%20is%20even%20more%20"; +\tfilename*1="%2A%2A%2Afun%2A%2A%2A%20"; +\tfilename*2="is it not.pdf" + +''' + msg = email.message_from_string(m) + self.assertEqual( + msg.get_filename(), + 'This%20is%20even%20more%20%2A%2A%2Afun%2A%2A%2A%20is it not.pdf') + + def test_rfc2231_no_language_or_charset_in_boundary(self): + m = '''\ +Content-Type: multipart/alternative; +\tboundary*0*="''This%20is%20even%20more%20"; +\tboundary*1*="%2A%2A%2Afun%2A%2A%2A%20"; +\tboundary*2="is it not.pdf" + +''' + msg = email.message_from_string(m) + self.assertEqual(msg.get_boundary(), + 'This is even more ***fun*** is it not.pdf') + + def test_rfc2231_no_language_or_charset_in_charset(self): + # This is a nonsensical charset value, but tests the code anyway + m = '''\ +Content-Type: text/plain; +\tcharset*0*="This%20is%20even%20more%20"; +\tcharset*1*="%2A%2A%2Afun%2A%2A%2A%20"; +\tcharset*2="is it not.pdf" + +''' + msg = email.message_from_string(m) + self.assertEqual(msg.get_content_charset(), + 'this is even more ***fun*** is it not.pdf') + + def test_rfc2231_bad_encoding_in_filename(self): + m = '''\ +Content-Disposition: inline; +\tfilename*0*="bogus'xx'This%20is%20even%20more%20"; +\tfilename*1*="%2A%2A%2Afun%2A%2A%2A%20"; +\tfilename*2="is it not.pdf" + +''' + msg = email.message_from_string(m) + self.assertEqual(msg.get_filename(), + 'This is even more ***fun*** is it not.pdf') + + def test_rfc2231_bad_encoding_in_charset(self): + m = """\ +Content-Type: text/plain; charset*=bogus''utf-8%E2%80%9D + +""" + msg = email.message_from_string(m) + # This should return None because non-ascii characters in the charset + # are not allowed. + self.assertEqual(msg.get_content_charset(), None) + + def test_rfc2231_bad_character_in_charset(self): + m = """\ +Content-Type: text/plain; charset*=ascii''utf-8%E2%80%9D + +""" + msg = email.message_from_string(m) + # This should return None because non-ascii characters in the charset + # are not allowed. + self.assertEqual(msg.get_content_charset(), None) + + def test_rfc2231_bad_character_in_filename(self): + m = '''\ +Content-Disposition: inline; +\tfilename*0*="ascii'xx'This%20is%20even%20more%20"; +\tfilename*1*="%2A%2A%2Afun%2A%2A%2A%20"; +\tfilename*2*="is it not.pdf%E2" + +''' + msg = email.message_from_string(m) + self.assertEqual(msg.get_filename(), + 'This is even more ***fun*** is it not.pdf\ufffd') + + def test_rfc2231_unknown_encoding(self): + m = """\ +Content-Transfer-Encoding: 8bit +Content-Disposition: inline; filename*=X-UNKNOWN''myfile.txt + +""" + msg = email.message_from_string(m) + self.assertEqual(msg.get_filename(), 'myfile.txt') + + def test_rfc2231_single_tick_in_filename_extended(self): + eq = self.assertEqual + m = """\ +Content-Type: application/x-foo; +\tname*0*=\"Frank's\"; name*1*=\" Document\" + +""" + msg = email.message_from_string(m) + charset, language, s = msg.get_param('name') + eq(charset, None) + eq(language, None) + eq(s, "Frank's Document") + + def test_rfc2231_single_tick_in_filename(self): + m = """\ +Content-Type: application/x-foo; name*0=\"Frank's\"; name*1=\" Document\" + +""" + msg = email.message_from_string(m) + param = msg.get_param('name') + self.assertFalse(isinstance(param, tuple)) + self.assertEqual(param, "Frank's Document") + + def test_rfc2231_tick_attack_extended(self): + eq = self.assertEqual + m = """\ +Content-Type: application/x-foo; +\tname*0*=\"us-ascii'en-us'Frank's\"; name*1*=\" Document\" + +""" + msg = email.message_from_string(m) + charset, language, s = msg.get_param('name') + eq(charset, 'us-ascii') + eq(language, 'en-us') + eq(s, "Frank's Document") + + def test_rfc2231_tick_attack(self): + m = """\ +Content-Type: application/x-foo; +\tname*0=\"us-ascii'en-us'Frank's\"; name*1=\" Document\" + +""" + msg = email.message_from_string(m) + param = msg.get_param('name') + self.assertFalse(isinstance(param, tuple)) + self.assertEqual(param, "us-ascii'en-us'Frank's Document") + + def test_rfc2231_no_extended_values(self): + eq = self.assertEqual + m = """\ +Content-Type: application/x-foo; name=\"Frank's Document\" + +""" + msg = email.message_from_string(m) + eq(msg.get_param('name'), "Frank's Document") + + def test_rfc2231_encoded_then_unencoded_segments(self): + eq = self.assertEqual + m = """\ +Content-Type: application/x-foo; +\tname*0*=\"us-ascii'en-us'My\"; +\tname*1=\" Document\"; +\tname*2*=\" For You\" + +""" + msg = email.message_from_string(m) + charset, language, s = msg.get_param('name') + eq(charset, 'us-ascii') + eq(language, 'en-us') + eq(s, 'My Document For You') + + def test_rfc2231_unencoded_then_encoded_segments(self): + eq = self.assertEqual + m = """\ +Content-Type: application/x-foo; +\tname*0=\"us-ascii'en-us'My\"; +\tname*1*=\" Document\"; +\tname*2*=\" For You\" + +""" + msg = email.message_from_string(m) + charset, language, s = msg.get_param('name') + eq(charset, 'us-ascii') + eq(language, 'en-us') + eq(s, 'My Document For You') + + + +# Tests to ensure that signed parts of an email are completely preserved, as +# required by RFC1847 section 2.1. Note that these are incomplete, because the +# email package does not currently always preserve the body. See issue 1670765. +class TestSigned(TestEmailBase): + + def _msg_and_obj(self, filename): + with openfile(findfile(filename)) as fp: + original = fp.read() + msg = email.message_from_string(original) + return original, msg + + def _signed_parts_eq(self, original, result): + # Extract the first mime part of each message + import re + repart = re.compile(r'^--([^\n]+)\n(.*?)\n--\1$', re.S | re.M) + inpart = repart.search(original).group(2) + outpart = repart.search(result).group(2) + self.assertEqual(outpart, inpart) + + def test_long_headers_as_string(self): + original, msg = self._msg_and_obj('msg_45.txt') + result = msg.as_string() + self._signed_parts_eq(original, result) + + def test_long_headers_as_string_maxheaderlen(self): + original, msg = self._msg_and_obj('msg_45.txt') + result = msg.as_string(maxheaderlen=60) + self._signed_parts_eq(original, result) + + def test_long_headers_flatten(self): + original, msg = self._msg_and_obj('msg_45.txt') + fp = StringIO() + Generator(fp).flatten(msg) + result = fp.getvalue() + self._signed_parts_eq(original, result) + + + +if __name__ == '__main__': + unittest.main() diff --git a/Lib/test/test_email/torture_test.py b/Lib/test/test_email/torture_test.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/torture_test.py @@ -0,0 +1,136 @@ +# Copyright (C) 2002-2004 Python Software Foundation +# +# A torture test of the email package. This should not be run as part of the +# standard Python test suite since it requires several meg of email messages +# collected in the wild. These source messages are not checked into the +# Python distro, but are available as part of the standalone email package at +# http://sf.net/projects/mimelib + +import sys +import os +import unittest +from io import StringIO +from types import ListType + +from email.test.test_email import TestEmailBase +from test.support import TestSkipped, run_unittest + +import email +from email import __file__ as testfile +from email.iterators import _structure + +def openfile(filename): + from os.path import join, dirname, abspath + path = abspath(join(dirname(testfile), os.pardir, 'moredata', filename)) + return open(path, 'r') + +# Prevent this test from running in the Python distro +try: + openfile('crispin-torture.txt') +except IOError: + raise TestSkipped + + + +class TortureBase(TestEmailBase): + def _msgobj(self, filename): + fp = openfile(filename) + try: + msg = email.message_from_file(fp) + finally: + fp.close() + return msg + + + +class TestCrispinTorture(TortureBase): + # Mark Crispin's torture test from the SquirrelMail project + def test_mondo_message(self): + eq = self.assertEqual + neq = self.ndiffAssertEqual + msg = self._msgobj('crispin-torture.txt') + payload = msg.get_payload() + eq(type(payload), ListType) + eq(len(payload), 12) + eq(msg.preamble, None) + eq(msg.epilogue, '\n') + # Probably the best way to verify the message is parsed correctly is to + # dump its structure and compare it against the known structure. + fp = StringIO() + _structure(msg, fp=fp) + neq(fp.getvalue(), """\ +multipart/mixed + text/plain + message/rfc822 + multipart/alternative + text/plain + multipart/mixed + text/richtext + application/andrew-inset + message/rfc822 + audio/basic + audio/basic + image/pbm + message/rfc822 + multipart/mixed + multipart/mixed + text/plain + audio/x-sun + multipart/mixed + image/gif + image/gif + application/x-be2 + application/atomicmail + audio/x-sun + message/rfc822 + multipart/mixed + text/plain + image/pgm + text/plain + message/rfc822 + multipart/mixed + text/plain + image/pbm + message/rfc822 + application/postscript + image/gif + message/rfc822 + multipart/mixed + audio/basic + audio/basic + message/rfc822 + multipart/mixed + application/postscript + text/plain + message/rfc822 + multipart/mixed + text/plain + multipart/parallel + image/gif + audio/basic + application/atomicmail + message/rfc822 + audio/x-sun +""") + + +def _testclasses(): + mod = sys.modules[__name__] + return [getattr(mod, name) for name in dir(mod) if name.startswith('Test')] + + +def suite(): + suite = unittest.TestSuite() + for testclass in _testclasses(): + suite.addTest(unittest.makeSuite(testclass)) + return suite + + +def test_main(): + for testclass in _testclasses(): + run_unittest(testclass) + + + +if __name__ == '__main__': + unittest.main(defaultTest='suite') diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -278,6 +278,11 @@ Tests ----- +- The email test suite now lives in the Lib/test/test_email package. The test + harness code has also been modernized to allow use of new unittest features. + +- regrtest now discovers test packages as well as test modules. + - Issue #11577: improve test coverage of binhex.py. Patch by Arkady Koplyarov. - New test_crashers added to exercise the scripts in the Lib/test/crashers -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 22:29:13 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 21 Mar 2011 22:29:13 +0100 Subject: [Python-checkins] cpython: Correctly move email package tests to Lib/test. Message-ID: http://hg.python.org/cpython/rev/0d8afab5249f changeset: 68819:0d8afab5249f parent: 68817:7d5d859c959e user: R David Murray date: Mon Mar 21 17:17:06 2011 -0400 summary: Correctly move email package tests to Lib/test. files: Lib/email/test/__init__.py Lib/email/test/data/PyBanner048.gif Lib/email/test/data/audiotest.au Lib/email/test/data/msg_01.txt Lib/email/test/data/msg_02.txt Lib/email/test/data/msg_03.txt Lib/email/test/data/msg_04.txt Lib/email/test/data/msg_05.txt Lib/email/test/data/msg_06.txt Lib/email/test/data/msg_07.txt Lib/email/test/data/msg_08.txt Lib/email/test/data/msg_09.txt Lib/email/test/data/msg_10.txt Lib/email/test/data/msg_11.txt Lib/email/test/data/msg_12.txt Lib/email/test/data/msg_12a.txt Lib/email/test/data/msg_13.txt Lib/email/test/data/msg_14.txt Lib/email/test/data/msg_15.txt Lib/email/test/data/msg_16.txt Lib/email/test/data/msg_17.txt Lib/email/test/data/msg_18.txt Lib/email/test/data/msg_19.txt Lib/email/test/data/msg_20.txt Lib/email/test/data/msg_21.txt Lib/email/test/data/msg_22.txt Lib/email/test/data/msg_23.txt Lib/email/test/data/msg_24.txt Lib/email/test/data/msg_25.txt Lib/email/test/data/msg_26.txt Lib/email/test/data/msg_27.txt Lib/email/test/data/msg_28.txt Lib/email/test/data/msg_29.txt Lib/email/test/data/msg_30.txt Lib/email/test/data/msg_31.txt Lib/email/test/data/msg_32.txt Lib/email/test/data/msg_33.txt Lib/email/test/data/msg_34.txt Lib/email/test/data/msg_35.txt Lib/email/test/data/msg_36.txt Lib/email/test/data/msg_37.txt Lib/email/test/data/msg_38.txt Lib/email/test/data/msg_39.txt Lib/email/test/data/msg_40.txt Lib/email/test/data/msg_41.txt Lib/email/test/data/msg_42.txt Lib/email/test/data/msg_43.txt Lib/email/test/data/msg_44.txt Lib/email/test/data/msg_45.txt Lib/email/test/data/msg_46.txt Lib/email/test/test_email.py Lib/email/test/test_email_codecs.py Lib/email/test/test_email_torture.py Lib/test/test_email.py Lib/test/test_email/__init__.py Lib/test/test_email/data/PyBanner048.gif Lib/test/test_email/data/audiotest.au Lib/test/test_email/data/msg_01.txt Lib/test/test_email/data/msg_02.txt Lib/test/test_email/data/msg_03.txt Lib/test/test_email/data/msg_04.txt Lib/test/test_email/data/msg_05.txt Lib/test/test_email/data/msg_06.txt Lib/test/test_email/data/msg_07.txt Lib/test/test_email/data/msg_08.txt Lib/test/test_email/data/msg_09.txt Lib/test/test_email/data/msg_10.txt Lib/test/test_email/data/msg_11.txt Lib/test/test_email/data/msg_12.txt Lib/test/test_email/data/msg_12a.txt Lib/test/test_email/data/msg_13.txt Lib/test/test_email/data/msg_14.txt Lib/test/test_email/data/msg_15.txt Lib/test/test_email/data/msg_16.txt Lib/test/test_email/data/msg_17.txt Lib/test/test_email/data/msg_18.txt Lib/test/test_email/data/msg_19.txt Lib/test/test_email/data/msg_20.txt Lib/test/test_email/data/msg_21.txt Lib/test/test_email/data/msg_22.txt Lib/test/test_email/data/msg_23.txt Lib/test/test_email/data/msg_24.txt Lib/test/test_email/data/msg_25.txt Lib/test/test_email/data/msg_26.txt Lib/test/test_email/data/msg_27.txt Lib/test/test_email/data/msg_28.txt Lib/test/test_email/data/msg_29.txt Lib/test/test_email/data/msg_30.txt Lib/test/test_email/data/msg_31.txt Lib/test/test_email/data/msg_32.txt Lib/test/test_email/data/msg_33.txt Lib/test/test_email/data/msg_34.txt Lib/test/test_email/data/msg_35.txt Lib/test/test_email/data/msg_36.txt Lib/test/test_email/data/msg_37.txt Lib/test/test_email/data/msg_38.txt Lib/test/test_email/data/msg_39.txt Lib/test/test_email/data/msg_40.txt Lib/test/test_email/data/msg_41.txt Lib/test/test_email/data/msg_42.txt Lib/test/test_email/data/msg_43.txt Lib/test/test_email/data/msg_44.txt Lib/test/test_email/data/msg_45.txt Lib/test/test_email/data/msg_46.txt Lib/test/test_email/test_asian_codecs.py Lib/test/test_email/test_email.py Lib/test/test_email/tourture_test.py Misc/NEWS diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py deleted file mode 100644 --- a/Lib/test/test_email.py +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright (C) 2001-2007 Python Software Foundation -# email package unit tests - -# The specific tests now live in Lib/email/test -from email.test.test_email import suite -from email.test.test_email_codecs import suite as codecs_suite -from test import support - -def test_main(): - support.run_unittest(suite()) - support.run_unittest(codecs_suite()) - -if __name__ == '__main__': - test_main() diff --git a/Lib/email/test/__init__.py b/Lib/test/test_email/__init__.py rename from Lib/email/test/__init__.py rename to Lib/test/test_email/__init__.py --- a/Lib/email/test/__init__.py +++ b/Lib/test/test_email/__init__.py @@ -0,0 +1,13 @@ +import os +import sys +import unittest +import test.support + +# used by regrtest and __main__. +def test_main(): + here = os.path.dirname(__file__) + # Unittest mucks with the path, so we have to save and restore + # it to keep regrtest happy. + savepath = sys.path[:] + test.support._run_suite(unittest.defaultTestLoader.discover(here)) + sys.path[:] = savepath diff --git a/Lib/email/test/data/PyBanner048.gif b/Lib/test/test_email/data/PyBanner048.gif rename from Lib/email/test/data/PyBanner048.gif rename to Lib/test/test_email/data/PyBanner048.gif diff --git a/Lib/email/test/data/audiotest.au b/Lib/test/test_email/data/audiotest.au rename from Lib/email/test/data/audiotest.au rename to Lib/test/test_email/data/audiotest.au diff --git a/Lib/email/test/data/msg_01.txt b/Lib/test/test_email/data/msg_01.txt rename from Lib/email/test/data/msg_01.txt rename to Lib/test/test_email/data/msg_01.txt diff --git a/Lib/email/test/data/msg_02.txt b/Lib/test/test_email/data/msg_02.txt rename from Lib/email/test/data/msg_02.txt rename to Lib/test/test_email/data/msg_02.txt diff --git a/Lib/email/test/data/msg_03.txt b/Lib/test/test_email/data/msg_03.txt rename from Lib/email/test/data/msg_03.txt rename to Lib/test/test_email/data/msg_03.txt diff --git a/Lib/email/test/data/msg_04.txt b/Lib/test/test_email/data/msg_04.txt rename from Lib/email/test/data/msg_04.txt rename to Lib/test/test_email/data/msg_04.txt diff --git a/Lib/email/test/data/msg_05.txt b/Lib/test/test_email/data/msg_05.txt rename from Lib/email/test/data/msg_05.txt rename to Lib/test/test_email/data/msg_05.txt diff --git a/Lib/email/test/data/msg_06.txt b/Lib/test/test_email/data/msg_06.txt rename from Lib/email/test/data/msg_06.txt rename to Lib/test/test_email/data/msg_06.txt diff --git a/Lib/email/test/data/msg_07.txt b/Lib/test/test_email/data/msg_07.txt rename from Lib/email/test/data/msg_07.txt rename to Lib/test/test_email/data/msg_07.txt diff --git a/Lib/email/test/data/msg_08.txt b/Lib/test/test_email/data/msg_08.txt rename from Lib/email/test/data/msg_08.txt rename to Lib/test/test_email/data/msg_08.txt diff --git a/Lib/email/test/data/msg_09.txt b/Lib/test/test_email/data/msg_09.txt rename from Lib/email/test/data/msg_09.txt rename to Lib/test/test_email/data/msg_09.txt diff --git a/Lib/email/test/data/msg_10.txt b/Lib/test/test_email/data/msg_10.txt rename from Lib/email/test/data/msg_10.txt rename to Lib/test/test_email/data/msg_10.txt diff --git a/Lib/email/test/data/msg_11.txt b/Lib/test/test_email/data/msg_11.txt rename from Lib/email/test/data/msg_11.txt rename to Lib/test/test_email/data/msg_11.txt diff --git a/Lib/email/test/data/msg_12.txt b/Lib/test/test_email/data/msg_12.txt rename from Lib/email/test/data/msg_12.txt rename to Lib/test/test_email/data/msg_12.txt diff --git a/Lib/email/test/data/msg_12a.txt b/Lib/test/test_email/data/msg_12a.txt rename from Lib/email/test/data/msg_12a.txt rename to Lib/test/test_email/data/msg_12a.txt diff --git a/Lib/email/test/data/msg_13.txt b/Lib/test/test_email/data/msg_13.txt rename from Lib/email/test/data/msg_13.txt rename to Lib/test/test_email/data/msg_13.txt diff --git a/Lib/email/test/data/msg_14.txt b/Lib/test/test_email/data/msg_14.txt rename from Lib/email/test/data/msg_14.txt rename to Lib/test/test_email/data/msg_14.txt diff --git a/Lib/email/test/data/msg_15.txt b/Lib/test/test_email/data/msg_15.txt rename from Lib/email/test/data/msg_15.txt rename to Lib/test/test_email/data/msg_15.txt diff --git a/Lib/email/test/data/msg_16.txt b/Lib/test/test_email/data/msg_16.txt rename from Lib/email/test/data/msg_16.txt rename to Lib/test/test_email/data/msg_16.txt diff --git a/Lib/email/test/data/msg_17.txt b/Lib/test/test_email/data/msg_17.txt rename from Lib/email/test/data/msg_17.txt rename to Lib/test/test_email/data/msg_17.txt diff --git a/Lib/email/test/data/msg_18.txt b/Lib/test/test_email/data/msg_18.txt rename from Lib/email/test/data/msg_18.txt rename to Lib/test/test_email/data/msg_18.txt diff --git a/Lib/email/test/data/msg_19.txt b/Lib/test/test_email/data/msg_19.txt rename from Lib/email/test/data/msg_19.txt rename to Lib/test/test_email/data/msg_19.txt diff --git a/Lib/email/test/data/msg_20.txt b/Lib/test/test_email/data/msg_20.txt rename from Lib/email/test/data/msg_20.txt rename to Lib/test/test_email/data/msg_20.txt diff --git a/Lib/email/test/data/msg_21.txt b/Lib/test/test_email/data/msg_21.txt rename from Lib/email/test/data/msg_21.txt rename to Lib/test/test_email/data/msg_21.txt diff --git a/Lib/email/test/data/msg_22.txt b/Lib/test/test_email/data/msg_22.txt rename from Lib/email/test/data/msg_22.txt rename to Lib/test/test_email/data/msg_22.txt diff --git a/Lib/email/test/data/msg_23.txt b/Lib/test/test_email/data/msg_23.txt rename from Lib/email/test/data/msg_23.txt rename to Lib/test/test_email/data/msg_23.txt diff --git a/Lib/email/test/data/msg_24.txt b/Lib/test/test_email/data/msg_24.txt rename from Lib/email/test/data/msg_24.txt rename to Lib/test/test_email/data/msg_24.txt diff --git a/Lib/email/test/data/msg_25.txt b/Lib/test/test_email/data/msg_25.txt rename from Lib/email/test/data/msg_25.txt rename to Lib/test/test_email/data/msg_25.txt diff --git a/Lib/email/test/data/msg_26.txt b/Lib/test/test_email/data/msg_26.txt rename from Lib/email/test/data/msg_26.txt rename to Lib/test/test_email/data/msg_26.txt diff --git a/Lib/email/test/data/msg_27.txt b/Lib/test/test_email/data/msg_27.txt rename from Lib/email/test/data/msg_27.txt rename to Lib/test/test_email/data/msg_27.txt diff --git a/Lib/email/test/data/msg_28.txt b/Lib/test/test_email/data/msg_28.txt rename from Lib/email/test/data/msg_28.txt rename to Lib/test/test_email/data/msg_28.txt diff --git a/Lib/email/test/data/msg_29.txt b/Lib/test/test_email/data/msg_29.txt rename from Lib/email/test/data/msg_29.txt rename to Lib/test/test_email/data/msg_29.txt diff --git a/Lib/email/test/data/msg_30.txt b/Lib/test/test_email/data/msg_30.txt rename from Lib/email/test/data/msg_30.txt rename to Lib/test/test_email/data/msg_30.txt diff --git a/Lib/email/test/data/msg_31.txt b/Lib/test/test_email/data/msg_31.txt rename from Lib/email/test/data/msg_31.txt rename to Lib/test/test_email/data/msg_31.txt diff --git a/Lib/email/test/data/msg_32.txt b/Lib/test/test_email/data/msg_32.txt rename from Lib/email/test/data/msg_32.txt rename to Lib/test/test_email/data/msg_32.txt diff --git a/Lib/email/test/data/msg_33.txt b/Lib/test/test_email/data/msg_33.txt rename from Lib/email/test/data/msg_33.txt rename to Lib/test/test_email/data/msg_33.txt diff --git a/Lib/email/test/data/msg_34.txt b/Lib/test/test_email/data/msg_34.txt rename from Lib/email/test/data/msg_34.txt rename to Lib/test/test_email/data/msg_34.txt diff --git a/Lib/email/test/data/msg_35.txt b/Lib/test/test_email/data/msg_35.txt rename from Lib/email/test/data/msg_35.txt rename to Lib/test/test_email/data/msg_35.txt diff --git a/Lib/email/test/data/msg_36.txt b/Lib/test/test_email/data/msg_36.txt rename from Lib/email/test/data/msg_36.txt rename to Lib/test/test_email/data/msg_36.txt diff --git a/Lib/email/test/data/msg_37.txt b/Lib/test/test_email/data/msg_37.txt rename from Lib/email/test/data/msg_37.txt rename to Lib/test/test_email/data/msg_37.txt diff --git a/Lib/email/test/data/msg_38.txt b/Lib/test/test_email/data/msg_38.txt rename from Lib/email/test/data/msg_38.txt rename to Lib/test/test_email/data/msg_38.txt diff --git a/Lib/email/test/data/msg_39.txt b/Lib/test/test_email/data/msg_39.txt rename from Lib/email/test/data/msg_39.txt rename to Lib/test/test_email/data/msg_39.txt diff --git a/Lib/email/test/data/msg_40.txt b/Lib/test/test_email/data/msg_40.txt rename from Lib/email/test/data/msg_40.txt rename to Lib/test/test_email/data/msg_40.txt diff --git a/Lib/email/test/data/msg_41.txt b/Lib/test/test_email/data/msg_41.txt rename from Lib/email/test/data/msg_41.txt rename to Lib/test/test_email/data/msg_41.txt diff --git a/Lib/email/test/data/msg_42.txt b/Lib/test/test_email/data/msg_42.txt rename from Lib/email/test/data/msg_42.txt rename to Lib/test/test_email/data/msg_42.txt diff --git a/Lib/email/test/data/msg_43.txt b/Lib/test/test_email/data/msg_43.txt rename from Lib/email/test/data/msg_43.txt rename to Lib/test/test_email/data/msg_43.txt diff --git a/Lib/email/test/data/msg_44.txt b/Lib/test/test_email/data/msg_44.txt rename from Lib/email/test/data/msg_44.txt rename to Lib/test/test_email/data/msg_44.txt diff --git a/Lib/email/test/data/msg_45.txt b/Lib/test/test_email/data/msg_45.txt rename from Lib/email/test/data/msg_45.txt rename to Lib/test/test_email/data/msg_45.txt diff --git a/Lib/email/test/data/msg_46.txt b/Lib/test/test_email/data/msg_46.txt rename from Lib/email/test/data/msg_46.txt rename to Lib/test/test_email/data/msg_46.txt diff --git a/Lib/email/test/test_email_codecs.py b/Lib/test/test_email/test_asian_codecs.py rename from Lib/email/test/test_email_codecs.py rename to Lib/test/test_email/test_asian_codecs.py --- a/Lib/email/test/test_email_codecs.py +++ b/Lib/test/test_email/test_asian_codecs.py @@ -5,7 +5,7 @@ import unittest from test.support import run_unittest -from email.test.test_email import TestEmailBase +from test.test_email.test_email import TestEmailBase from email.charset import Charset from email.header import Header, decode_header from email.message import Message @@ -78,16 +78,5 @@ -def suite(): - suite = unittest.TestSuite() - suite.addTest(unittest.makeSuite(TestEmailAsianCodecs)) - return suite - - -def test_main(): - run_unittest(TestEmailAsianCodecs) - - - if __name__ == '__main__': - unittest.main(defaultTest='suite') + unittest.main() diff --git a/Lib/email/test/test_email.py b/Lib/test/test_email/test_email.py rename from Lib/email/test/test_email.py rename to Lib/test/test_email/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -37,7 +37,7 @@ from email import quoprimime from test.support import findfile, run_unittest, unlink -from email.test import __file__ as landmark +from test.test_email import __file__ as landmark NL = '\n' @@ -4142,23 +4142,5 @@ -def _testclasses(): - mod = sys.modules[__name__] - return [getattr(mod, name) for name in dir(mod) if name.startswith('Test')] - - -def suite(): - suite = unittest.TestSuite() - for testclass in _testclasses(): - suite.addTest(unittest.makeSuite(testclass)) - return suite - - -def test_main(): - for testclass in _testclasses(): - run_unittest(testclass) - - - if __name__ == '__main__': - unittest.main(defaultTest='suite') + unittest.main() diff --git a/Lib/email/test/test_email_torture.py b/Lib/test/test_email/tourture_test.py rename from Lib/email/test/test_email_torture.py rename to Lib/test/test_email/tourture_test.py diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -278,6 +278,11 @@ Tests ----- +- The email test suite now lives in the Lib/test/test_email package. The test + harness code has also been modernized to allow use of new unittest features. + +- regrtest now discovers test packages as well as test modules. + - Issue #11577: improve test coverage of binhex.py. Patch by Arkady Koplyarov. - New test_crashers added to exercise the scripts in the Lib/test/crashers -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 22:29:14 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 21 Mar 2011 22:29:14 +0100 Subject: [Python-checkins] cpython (merge default -> default): Dummy merge to overlay fixed email.test move on top of borked move. Message-ID: http://hg.python.org/cpython/rev/f1794337cccb changeset: 68820:f1794337cccb parent: 68819:0d8afab5249f parent: 68818:3126d8433fd4 user: R David Murray date: Mon Mar 21 17:27:51 2011 -0400 summary: Dummy merge to overlay fixed email.test move on top of borked move. files: Lib/test/test_email/__init__.py Lib/test/test_email/__main__.py Lib/test/test_email/data/msg_01.txt Lib/test/test_email/data/msg_02.txt Lib/test/test_email/data/msg_03.txt Lib/test/test_email/data/msg_04.txt Lib/test/test_email/data/msg_05.txt Lib/test/test_email/data/msg_06.txt Lib/test/test_email/data/msg_07.txt Lib/test/test_email/data/msg_08.txt Lib/test/test_email/data/msg_09.txt Lib/test/test_email/data/msg_10.txt Lib/test/test_email/data/msg_11.txt Lib/test/test_email/data/msg_12.txt Lib/test/test_email/data/msg_12a.txt Lib/test/test_email/data/msg_13.txt Lib/test/test_email/data/msg_14.txt Lib/test/test_email/data/msg_15.txt Lib/test/test_email/data/msg_16.txt Lib/test/test_email/data/msg_17.txt Lib/test/test_email/data/msg_18.txt Lib/test/test_email/data/msg_19.txt Lib/test/test_email/data/msg_20.txt Lib/test/test_email/data/msg_21.txt Lib/test/test_email/data/msg_22.txt Lib/test/test_email/data/msg_23.txt Lib/test/test_email/data/msg_24.txt Lib/test/test_email/data/msg_25.txt Lib/test/test_email/data/msg_26.txt Lib/test/test_email/data/msg_27.txt Lib/test/test_email/data/msg_28.txt Lib/test/test_email/data/msg_29.txt Lib/test/test_email/data/msg_30.txt Lib/test/test_email/data/msg_31.txt Lib/test/test_email/data/msg_32.txt Lib/test/test_email/data/msg_33.txt Lib/test/test_email/data/msg_34.txt Lib/test/test_email/data/msg_35.txt Lib/test/test_email/data/msg_36.txt Lib/test/test_email/data/msg_37.txt Lib/test/test_email/data/msg_38.txt Lib/test/test_email/data/msg_39.txt Lib/test/test_email/data/msg_40.txt Lib/test/test_email/data/msg_41.txt Lib/test/test_email/data/msg_42.txt Lib/test/test_email/data/msg_43.txt Lib/test/test_email/data/msg_44.txt Lib/test/test_email/data/msg_45.txt Lib/test/test_email/data/msg_46.txt Lib/test/test_email/test_asian_codecs.py Lib/test/test_email/test_email.py Lib/test/test_email/torture_test.py -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 22:34:06 2011 From: python-checkins at python.org (martin.v.loewis) Date: Mon, 21 Mar 2011 22:34:06 +0100 (CET) Subject: [Python-checkins] r88785 - tracker/instances/python-dev/extensions/suppress_history.py Message-ID: <3Ptr5B040rz7Lx6@mail.python.org> Author: martin.v.loewis Date: Mon Mar 21 22:34:05 2011 New Revision: 88785 Log: Allow coordinators to see the user's history. Modified: tracker/instances/python-dev/extensions/suppress_history.py Modified: tracker/instances/python-dev/extensions/suppress_history.py ============================================================================== --- tracker/instances/python-dev/extensions/suppress_history.py (original) +++ tracker/instances/python-dev/extensions/suppress_history.py Mon Mar 21 22:34:05 2011 @@ -5,7 +5,7 @@ nodeid = request.nodeid # restrict display of user history to user itself only if classname == 'user': - return user == nodeid + return user == nodeid or 'Coordinator' in db.user.get(user, 'roles') # currently not used return True From python-checkins at python.org Mon Mar 21 22:36:33 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 21 Mar 2011 22:36:33 +0100 Subject: [Python-checkins] cpython: Fix rename spelling error. Message-ID: http://hg.python.org/cpython/rev/84eee6579dd9 changeset: 68821:84eee6579dd9 user: R David Murray date: Mon Mar 21 17:36:15 2011 -0400 summary: Fix rename spelling error. files: Lib/test/test_email/torture_test.py Lib/test/test_email/tourture_test.py diff --git a/Lib/test/test_email/tourture_test.py b/Lib/test/test_email/torture_test.py rename from Lib/test/test_email/tourture_test.py rename to Lib/test/test_email/torture_test.py -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 21 22:43:56 2011 From: python-checkins at python.org (antoine.pitrou) Date: Mon, 21 Mar 2011 22:43:56 +0100 Subject: [Python-checkins] devguide: Mention that git diffs can also represent changes to binary files Message-ID: http://hg.python.org/devguide/rev/9cb897c3ca24 changeset: 403:9cb897c3ca24 user: Antoine Pitrou date: Mon Mar 21 22:43:20 2011 +0100 summary: Mention that git diffs can also represent changes to binary files files: committing.rst diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -82,7 +82,8 @@ * *extended diffing*: this setting enables an `extended diff format`_ which is more useful than the standard unified diff format as it includes - metadata about file copies and permission bits:: + metadata about file copies, permission bits, and is able to represent + binary files:: [diff] git = on -- Repository URL: http://hg.python.org/devguide From ncoghlan at gmail.com Mon Mar 21 23:27:13 2011 From: ncoghlan at gmail.com (Nick Coghlan) Date: Tue, 22 Mar 2011 08:27:13 +1000 Subject: [Python-checkins] cpython: Prepare for move of email tests. In-Reply-To: References: Message-ID: On Tue, Mar 22, 2011 at 6:01 AM, r.david.murray wrote: > http://hg.python.org/cpython/rev/7d5d859c959e > changeset: ? 68817:7d5d859c959e > user: ? ? ? ?R David Murray > date: ? ? ? ?Mon Mar 21 16:01:23 2011 -0400 > summary: > ?Prepare for move of email tests. > > files: > ?.hgeol > > diff --git a/.hgeol b/.hgeol > --- a/.hgeol > +++ b/.hgeol > @@ -27,6 +27,7 @@ > ?**.zip ?= BIN > > ?Lib/email/test/data/msg_26.txt = BIN > +Lib/test/test_email/data/msg_26.txt = BIN > ?Lib/test/sndhdrdata/sndhdr.* = BIN > ?Lib/test/decimaltestdata/*.decTest = BIN If any else gets errors from the EOL hook attempting to merge the email test changes to a separate repository, make sure to do a "hg push -f -r " for this revision before pushing the rest of the changes. Cheers, Nick. -- Nick Coghlan?? |?? ncoghlan at gmail.com?? |?? Brisbane, Australia From python-checkins at python.org Tue Mar 22 01:10:07 2011 From: python-checkins at python.org (victor.stinner) Date: Tue, 22 Mar 2011 01:10:07 +0100 Subject: [Python-checkins] cpython: Issue #7330, #10833: Replace %100s by %.100s and %200s by %.200s Message-ID: http://hg.python.org/cpython/rev/d3ae3fe3eb97 changeset: 68822:d3ae3fe3eb97 user: Victor Stinner date: Tue Mar 22 01:09:21 2011 +0100 summary: Issue #7330, #10833: Replace %100s by %.100s and %200s by %.200s I suppose that the author would like to truncate the type name, not get a string of 100/200 characters. files: Objects/abstract.c Python/ceval.c diff --git a/Objects/abstract.c b/Objects/abstract.c --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -331,7 +331,7 @@ { if (!PyObject_CheckBuffer(obj)) { PyErr_Format(PyExc_TypeError, - "'%100s' does not support the buffer interface", + "'%.100s' does not support the buffer interface", Py_TYPE(obj)->tp_name); return -1; } diff --git a/Python/ceval.c b/Python/ceval.c --- a/Python/ceval.c +++ b/Python/ceval.c @@ -4130,7 +4130,7 @@ if (PyErr_ExceptionMatches(PyExc_TypeError)) { PyErr_Format(PyExc_TypeError, "%.200s%.200s argument after * " - "must be a sequence, not %200s", + "must be a sequence, not %.200s", PyEval_GetFuncName(func), PyEval_GetFuncDesc(func), stararg->ob_type->tp_name); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 01:22:48 2011 From: python-checkins at python.org (victor.stinner) Date: Tue, 22 Mar 2011 01:22:48 +0100 Subject: [Python-checkins] cpython: Issue #3080: On DJGPP, case_bytes() returns -1 to signal an error if the file Message-ID: http://hg.python.org/cpython/rev/15f9eca5e956 changeset: 68823:15f9eca5e956 user: Victor Stinner date: Tue Mar 22 01:22:27 2011 +0100 summary: Issue #3080: On DJGPP, case_bytes() returns -1 to signal an error if the file cannot be found. files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -2084,7 +2084,7 @@ PyErr_Format(PyExc_NameError, "Can't find file for module %.100s\n(filename %.300s)", name, buf); - return 0; + return -1; } return strncmp(ffblk.ff_name, name, namelen) == 0; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 01:54:34 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 01:54:34 +0100 Subject: [Python-checkins] cpython (3.2): Issue #11628: cmp_to_key should use __slots__. Message-ID: http://hg.python.org/cpython/rev/97799a54728e changeset: 68824:97799a54728e branch: 3.2 parent: 68814:f51128a6dc24 user: Raymond Hettinger date: Mon Mar 21 17:50:28 2011 -0700 summary: Issue #11628: cmp_to_key should use __slots__. files: Lib/functools.py Misc/NEWS diff --git a/Lib/functools.py b/Lib/functools.py --- a/Lib/functools.py +++ b/Lib/functools.py @@ -96,6 +96,7 @@ def cmp_to_key(mycmp): """Convert a cmp= function into a key= function""" class K(object): + __slots__ = ['obj'] def __init__(self, obj, *args): self.obj = obj def __lt__(self, other): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -49,6 +49,8 @@ Library ------- +- Issue #11628: cmp_to_key generated class should use __slots__ + - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 01:54:35 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 01:54:35 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #11628: cmp_to_key should use __slots__. Message-ID: http://hg.python.org/cpython/rev/2e5e5d515c09 changeset: 68825:2e5e5d515c09 parent: 68823:15f9eca5e956 parent: 68824:97799a54728e user: Raymond Hettinger date: Mon Mar 21 17:54:04 2011 -0700 summary: Issue #11628: cmp_to_key should use __slots__. files: Lib/functools.py Misc/NEWS diff --git a/Lib/functools.py b/Lib/functools.py --- a/Lib/functools.py +++ b/Lib/functools.py @@ -96,6 +96,7 @@ def cmp_to_key(mycmp): """Convert a cmp= function into a key= function""" class K(object): + __slots__ = ['obj'] def __init__(self, obj, *args): self.obj = obj def __lt__(self, other): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -84,6 +84,8 @@ - Issue #11371: Mark getopt error messages as localizable. Patch by Filip Gruszczy?ski. +- Issue #11628: cmp_to_key generated class should use __slots__ + - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Tue Mar 22 05:11:41 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Tue, 22 Mar 2011 05:11:41 +0100 Subject: [Python-checkins] Daily reference leaks (2e5e5d515c09): sum=15 Message-ID: results for 2e5e5d515c09 on branch "default" -------------------------------------------- test_importlib leaked [3, 3, 3] references, sum=9 test_site leaked [2, 2, 2] references, sum=6 Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogoXblCT', '-x'] From python-checkins at python.org Tue Mar 22 08:08:17 2011 From: python-checkins at python.org (mark.hammond) Date: Tue, 22 Mar 2011 08:08:17 +0100 (CET) Subject: [Python-checkins] r88786 - peps/trunk/pep-0397.txt Message-ID: <3Pv4qj67WZz7LjX@mail.python.org> Author: mark.hammond Date: Tue Mar 22 08:08:17 2011 New Revision: 88786 Log: first cut at pep 397: Python launcher for Windows Added: peps/trunk/pep-0397.txt Added: peps/trunk/pep-0397.txt ============================================================================== --- (empty file) +++ peps/trunk/pep-0397.txt Tue Mar 22 08:08:17 2011 @@ -0,0 +1,335 @@ +PEP: 397 +Title: Python launcher for Windows +Version: $Revision$ +Last-Modified: $Date$ +Author: Mark Hammond +Status: Draft +Type: Standards Track or Informational ????? +Content-Type: text/x-rst +Created: 15-Mar-2011 + + +Abstract + + This PEP describes a Python launcher for the Windows platform. A + Python launcher is a single executable which uses a number of + heuristics to locate a Python executable and launch it with a + specified command line. + + +Rationale + + Windows provides "file associations" so an executable can be associated + with an extension, allowing for scripts to be executed directly in some + contexts (eg., double-clicking the file in Windows Explorer.) Until now, + a strategy of "last installed Python wins" has been used and while not + ideal, has generally been workable due to the conservative changes in + Python 2.x releases. As Python 3.x scripts are often syntactically + incompatible with Python 2.x scripts, a different strategy must be used + to allow files with a '.py' extension to use a different executable based + on the Python version the script targets. This will be done by borrowing + the existing practices of another operating system - scripts will be able + to nominate the version of Python they need by way of a "shebang" line, as + described below. + + Unix-like operating systems (referred to simply as "Unix" in this + PEP) allow scripts to be executed as if they were executable images + by examining the script for a "shebang" line which specifies the + actual executable to be used to run the script. This is described in + detail in the evecve(2) man page [1] and while user documentation will + be created for this feature, for the purposes of this PEP that man + page describes a valid shebang line. + + Additionally, these operating systems provide symbolic-links to + Python executables in well-known directories. For example, many + systems will have a link /usr/bin/python which references a + particular version of Python installed under the operating-system. + These symbolic links allow Python to be executed without regard for + where Python it actually installed on the machine (eg., without + requiring the path where Python is actually installed to be + referenced in the shebang line or in the PATH.) PEP 394 'The "python" + command on Unix-Like Systems' [2] describes additional conventions + for more fine-grained specification of a particular Python version. + + These 2 facilities combined allow for a portable and somewhat + predictable way of both starting Python interactively and for allowing + Python scripts to execute. This PEP describes an implementation of a + launcher which can offer the same benefits for Python on the Windows + platform and therefore allows the launcher to be the executable + associated with '.py' files to support multiple Python versions + concurrently. + + While this PEP offers the ability to use a shebang line which should + work on both Windows and Unix, this is not the primary motivation for + this PEP - the primary motivation is to allow a specific version to be + specified without inventing new syntax or conventions to describe it. + +An overview of the launcher. + + This PEP outlines the general functionality and key guidelines of a + launcher for Windows. It is accompanied by reference implementation, + written in Python, which defines the detailed implementation. Over + time, changes to the implementation may be desired - if the changes + adhere to the guidelines in this PEP and have been made following + the standard Python development model this PEP need not change. + In other words, this PEP makes no attempt to describe in detail every + feature offered by the launcher but instead to offer guidelines the + launcher should adhere to. + + The actual implementation of the launcher will be written in C and + will not link directly or indirectly with Python, but the Python + based reference implementation should always remain the canonical + description of the functionality. Any changes proposed to the + launcher functionality should first be made and agreed to in the + Python implementation, after which time the C implementation can be + changed to reflect the new reference. Any deviations between the + functionality of the reference implementation versus the C + implementation due should imply the C implementation is in error + (although some exceptions will need to be made due to the nature of the + reference implementation being in Python) + + It is expected that 2 versions of the launcher will be needed - one + which is a console program and one which is a "windows" (ie., GUI) + program. These 2 launchers correspond to the 'python.exe' and + 'pythonw.exe' executables which currently ship with Python. The + console launcher will be named 'py.exe' and the Windows one named + 'pyw.exe'. The "windows" (ie., GUI) version of the launcher will attempt + to locate and launch pythonw.exe even if a virtual shebang line nominates + simply "python" - infact, the trailing 'w' notation will not be supported + in the virtual shebang line at all. + + The launcher will be distributed with all future versions of Python + and if possible, should be installed somewhere likely to already be + on the system PATH (eg., the Windows System32) directory. If installed, + the "console" version of the launcher should be associated with .py files + and the "windows" version associated with .pyw files. + + The launcher will not be tied to a specific version of Python - eg., a + launcher distributed with Python 3.3 should be capable of locating and + executing any Python 2.x and Python 3.x version. Future versions of the + launcher should remain backwards compatible with older versions, so later + versions of Python can install an updated version of the launcher without + impacting how the previously installed version of the launcher is used. + + The launcher will offer some conveniences for Python developers working + interactively - for example, starting the launcher with no command-line + arguments will launch the default Python with no command-line arguments. + Further, command-line arguments will be supported to allow a specific + Python version to be launched interactively - however, these conveniences + will not detract from the primary purpose of launching scripts and will + be easy to avoid if desired. + +Guidelines for a Python launcher. + + The Python launcher described in this PEP will intentionally be + constrained to the use-cases described in the Rationale section + above. It will not attempt to be a general purpose script launcher + or shebang processor. + + The launcher should support for format of shebang lines as described + in [1], including all restrictions listed. + + The launcher should support shebang lines commonly found on Unix. + For example, a shebang line of '!# /usr/bin/python' should work even + though there is unlikely to be an executable in the relative Windows + directory "\usr\bin". This means that many scripts can use a single + shebang line and be likely to work on both Unix and Windows without + modification. + + The launcher will support fully-qualified paths to executables. + While this will make the script inherently non-portable, it is a + feature offered by Unix and would be useful for Windows users in + some cases. + + The launcher should be capable of supporting implementations other + than CPython, such as jython and IronPython. In particular, if there + are common symbolic links used on Unix to specify such an + implementation (such as "/usr/bin/jython"), the launcher need not + support such references on Windows. However, if there is strong desire + from the community to support these other implementations in a Windows + specific way, any such proposals will be judged on their merit. Even + without specialized support for these alternate implementations, the + ability to specify the fully-qualified path to an executable could be + used as a fallback. + + On Unix, the user can control which specific version of Python is used + by adjusting the links in /usr/bin to point to the desired version. As + the launcher on Windows will not use Windows links, environment variables + will be used to override the semantics for determining exactly what + version of Python will be used. For example, while a shebang line of + "/usr/bin/python2" will automatically locate a Python 2.x implementation, + an environment variable can override exactly which Python 2.x + implementation will be chosen. Similarly for "/usr/bin/python" and + "/usr/bin/python3". + + While the guidelines above are general, the launcher should make + concessions for any Windows specific issues which increase the + usefulness of the launcher on Windows. In other words, the + guidelines above will not prevent Windows specific functionality + which makes the launcher significantly more useful for Windows + users. + +Shebang line parsing + + If the first command-line argument does not start with a dash ('-') + character, an attempt will be made to open that argument as a file + and parsed for a shebang line according to the rules in [1]. Once + parsed, the command will be examined to see if it is a "virtual + command". A virtual command starts with either of the strings + '/usr/bin/python', '/usr/bin/env python' or 'python' - while the + latter will not work on Unix, it will be offered as a convenience + for Windows users not familiar with the Unix conventions and with no + desire to have the shebang line work on Unix. + + Commands which are virtual are not treated as containing a file-system + path, but instead are treated as references to an installed Python. + Optionally, the virtual command may include a specific version, such + as '/usr/bin/python2' or '/usr/bin/python3.2'. If only a "major version" + qualifier is found, the launcher will enumerate the installed Python + versions and use the latest minor release found for the major version, + which is likely, although not guaranteed, to be the most recently + installed version in that family. If major and minor version qualifiers + are found, that specific version will be located and used. + + If a virtual command has no version specifier, or if no shebang line + is found, the launcher will attempt to locate a Python 2.x + installation and use the latest found. If none are found, it will + attempt to use the latest Python 3.x implementation found. + + The use of 'virtual' shebang lines will be encouraged as this should + allow for portable shebang lines to be specified which work on + multiple operating systems. + + If the shebang line is not a virtual one as described above, it is + assumed to be a path to an executable - presumably a Python + executable, but this will not be checked. No version qualifiers are + parsed - if a specific version is required, then the path should + reflect that. Relative path specifications will be considered + relative to the directory of the launcher. Thus, a shebang line of + '#! python' will look for a python executable in the same directory + as the launcher. + + Non-virtual shebang lines should be discouraged as they make the + script specific to a specific Windows installation. However, they + are supported for maximum flexibility. + + If the first argument can not be opened as a file or if no valid + shebang line can be found, a default Python interpreter will be + located and the arguments passed to that. However, if a valid + shebang line is found but the process specified by that line can not + be started, the default interpreter will not be started - the error + to create the specified child process will be considered fatal and + the launcher will display an appropriate message and terminate with + a specific exit code. + + On 64bit Windows with both 32bit and 64bit implementations of the + same (major.minor) Python version installed, the 64bit version will + always be preferred. This will be true for both 32bit and 64bit + implementations of the launcher - a 32bit launcher will prefer to + execute a 64bit Python installation of the same version if + available. This is so the behavior of the launcher can be predicted + knowing only what versions are installed on the PC and without + regard to the order in which they were installed. + +Command-line handling + + Only the first command-line argument will be checked for a shebang line + and only if that argument does not start with a '-'. + + If the only command-line argument is "-h" or "--help", the launcher will + print a small banner and command-line usage, then pass the argument to + the default Python. This will have the effect of help for the launcher + being printed followed by help for Python itself. The output from the + launcher will attempt to clearly indicate the extended help information + is coming from the launcher and not Python. + + As a concession to interactively launching Python, the launcher will + support the first command-line argument optionally being a version + specifier in the form "-n[.n][:bits]" (where n is a single integer and + bits is either '32' or '64') to nominate a specific version be used. For + example, while "py.exe" may locate and launch the latest Python 2.x + implementation installed, a command-line such as "py.exe -3" could specify + the latest Python 3.x implementation be launched, while "py.exe -2.6:32" + could specify a 32bit implementation Python 2.6 be located and launched. + If a Python 2.x implementation is desired to be launched with the -3 flag, + the command-line would need to be similar to "py.exe -2 -3" (or the + specific version of Python could obviously be launched manually without + use of this launcher.) Note that this feature can not be used with shebang + processing as the file scanned for a shebang line and this argument must + both be the first argument and therefore are mutually exclusive. + + All other arguments will be passed untouched to the child Python process. + +Process Launching + + Ideally, the launcher process would execute Python directly inside + the same process, primarily so the parent of the launcher process could + terminate the launcher and have the Python interpreter terminate. If the + launcher executes Python as a sub-process and the parent of the launcher + terminates the launcher, the Python process will be unaffected. + + However, there are a number of practical problems associated with this + approach. Windows does not support the execv* family of Unix functions, + so this could only be done by the launcher dynamically loading the Python + DLL, but this would have a number of side-effects. The most serious + side effect of this is that the value of sys.executable would refer to the + launcher instead of the Python implementation. Many Python scripts use the + value of sys.executable to launch child processes, and these scripts may + fail to work as expected if the launcher is used - consider a "parent" + script with a shebang line of '#! /usr/bin/python3' which attempts to + launch a child script with no shebang line at all. Currently that + child script would be launched using the exact same version running + the parent script, but if sys.executable referred to the launcher the + child would be likely executed using a Python 2.x version and would be + likely to fail with a SyntaxError. A solution for this would need to be + found before this could be considered. + + The rules mentioned above regarding 64bit and 32bit programs would also be + rendered impossible with this 'in-process' model - a 32bit launcher would + be unable to load the 64bit version of Python and vice-versa. + + Given the impossibility of supporting the 64bit and 32bit requirements + above, the launcher will execute Python in a child process, remaining + alive while the child process is executing, then terminate with the same + exit code as returned by the child. + + To address the concerns regarding the termination of the launcher not + killing the child, the Win32 Job API will be used to arrange so that the + child process is automatically killed when the parent is terminated + (although children of that child process will continue as is the case + now.) However, that functionality only works on Windows XP and later, so + the launcher running on the Windows 2000 platform will not have this + feature - killing the launcher on that platform will keep the child + process alive. This feature has been implemented in the reference + implementation. + +Alternative implementations and distributions of Python. + + While this PEP is primarily concerned with the python.org distributions of + CPython, it does not preclude future enhancements to support both + different distributions of CPython (eg. ActivePython, Enthought), nor + different implementations of Python (eg. jython, IronPython.) + Enhancements to support these alternatives should be proposed by + (community or corporate) representatives of these alternatives and + addressed via the normal Python development process and after relevant + patches have been submitted for the reference implementation. + +References + + [1] http://linux.die.net/man/2/execve + + [2] http://www.python.org/dev/peps/pep-0394/ + +Copyright + + This document has been placed in the public domain. + + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +sentence-end-double-space: t +fill-column: 70 +coding: utf-8 +End: From python-checkins at python.org Tue Mar 22 10:47:09 2011 From: python-checkins at python.org (victor.stinner) Date: Tue, 22 Mar 2011 10:47:09 +0100 Subject: [Python-checkins] cpython: Issue #11630, issue #3080: Fix refleak introduced by ef2b6305d395 Message-ID: http://hg.python.org/cpython/rev/3114f26d5d54 changeset: 68826:3114f26d5d54 user: Victor Stinner date: Tue Mar 22 10:46:35 2011 +0100 summary: Issue #11630, issue #3080: Fix refleak introduced by ef2b6305d395 files: Python/import.c diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -3705,12 +3705,15 @@ return NULL; if (fob != NULL) { fp = get_file(NULL, fob, "r"); - if (fp == NULL) + if (fp == NULL) { + Py_DECREF(pathname); return NULL; + } } else fp = NULL; mod = _PyImport_LoadDynamicModule(name, pathname, fp); + Py_DECREF(pathname); if (fp) fclose(fp); return mod; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 17:09:29 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 17:09:29 +0100 Subject: [Python-checkins] cpython (2.7): Issue #11625: Fix Typo Message-ID: http://hg.python.org/cpython/rev/a56cd7aeac5e changeset: 68827:a56cd7aeac5e branch: 2.7 parent: 68803:f316e6d6271a user: Raymond Hettinger date: Tue Mar 22 09:06:38 2011 -0700 summary: Issue #11625: Fix Typo files: Doc/library/collections.rst diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -945,7 +945,7 @@ That assumption is factored-out to an internal classmethod called :meth:`_from_iterable` which calls ``cls(iterable)`` to produce a new set. If the :class:`Set` mixin is being used in a class with a different - constructor signature, you will need to override :meth:`from_iterable` + constructor signature, you will need to override :meth:`_from_iterable` with a classmethod that can construct new instances from an iterable argument. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 17:19:13 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 17:19:13 +0100 Subject: [Python-checkins] cpython (3.1): Issue #11625: Fix Typo Message-ID: http://hg.python.org/cpython/rev/3aec82018a18 changeset: 68828:3aec82018a18 branch: 3.1 parent: 68797:ed8eefa6d57c user: Raymond Hettinger date: Tue Mar 22 09:11:39 2011 -0700 summary: Issue #11625: Fix Typo files: Doc/library/collections.rst diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -1,3 +1,4 @@ + :mod:`collections` --- Container datatypes ========================================== @@ -993,7 +994,7 @@ That assumption is factored-out to an internal classmethod called :meth:`_from_iterable` which calls ``cls(iterable)`` to produce a new set. If the :class:`Set` mixin is being used in a class with a different - constructor signature, you will need to override :meth:`from_iterable` + constructor signature, you will need to override :meth:`_from_iterable` with a classmethod that can construct new instances from an iterable argument. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 17:19:13 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 17:19:13 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Issue #11625: Fix Typo Message-ID: http://hg.python.org/cpython/rev/461e5c60fbdf changeset: 68829:461e5c60fbdf branch: 3.2 parent: 68824:97799a54728e parent: 68828:3aec82018a18 user: Raymond Hettinger date: Tue Mar 22 09:12:18 2011 -0700 summary: Issue #11625: Fix Typo files: Doc/library/collections.rst diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -1,3 +1,4 @@ + :mod:`collections` --- Container datatypes ========================================== @@ -1050,7 +1051,7 @@ That assumption is factored-out to an internal classmethod called :meth:`_from_iterable` which calls ``cls(iterable)`` to produce a new set. If the :class:`Set` mixin is being used in a class with a different - constructor signature, you will need to override :meth:`from_iterable` + constructor signature, you will need to override :meth:`_from_iterable` with a classmethod that can construct new instances from an iterable argument. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 17:19:14 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 17:19:14 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #11625: Fix Typo Message-ID: http://hg.python.org/cpython/rev/8b633c55ac7a changeset: 68830:8b633c55ac7a parent: 68826:3114f26d5d54 parent: 68829:461e5c60fbdf user: Raymond Hettinger date: Tue Mar 22 09:19:02 2011 -0700 summary: Issue #11625: Fix Typo files: Doc/library/collections.abc.rst Doc/library/collections.rst diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst --- a/Doc/library/collections.abc.rst +++ b/Doc/library/collections.abc.rst @@ -115,7 +115,7 @@ That assumption is factored-out to an internal classmethod called :meth:`_from_iterable` which calls ``cls(iterable)`` to produce a new set. If the :class:`Set` mixin is being used in a class with a different - constructor signature, you will need to override :meth:`from_iterable` + constructor signature, you will need to override :meth:`_from_iterable` with a classmethod that can construct new instances from an iterable argument. diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -1,3 +1,4 @@ + :mod:`collections` --- Container datatypes ========================================== -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 18:34:47 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 22 Mar 2011 18:34:47 +0100 Subject: [Python-checkins] cpython (3.2): Use shorter timings in test_concurrent_futures to make it a bit faster Message-ID: http://hg.python.org/cpython/rev/f3b8ebf28011 changeset: 68831:f3b8ebf28011 branch: 3.2 parent: 68829:461e5c60fbdf user: Antoine Pitrou date: Tue Mar 22 18:30:30 2011 +0100 summary: Use shorter timings in test_concurrent_futures to make it a bit faster (it's still very slow) files: Lib/test/test_concurrent_futures.py diff --git a/Lib/test/test_concurrent_futures.py b/Lib/test/test_concurrent_futures.py --- a/Lib/test/test_concurrent_futures.py +++ b/Lib/test/test_concurrent_futures.py @@ -155,7 +155,7 @@ class WaitTests(unittest.TestCase): def test_first_completed(self): future1 = self.executor.submit(mul, 21, 2) - future2 = self.executor.submit(time.sleep, 5) + future2 = self.executor.submit(time.sleep, 1.5) done, not_done = futures.wait( [CANCELLED_FUTURE, future1, future2], @@ -165,7 +165,7 @@ self.assertEqual(set([CANCELLED_FUTURE, future2]), not_done) def test_first_completed_some_already_completed(self): - future1 = self.executor.submit(time.sleep, 2) + future1 = self.executor.submit(time.sleep, 1.5) finished, pending = futures.wait( [CANCELLED_AND_NOTIFIED_FUTURE, SUCCESSFUL_FUTURE, future1], @@ -178,8 +178,8 @@ def test_first_exception(self): future1 = self.executor.submit(mul, 2, 21) - future2 = self.executor.submit(sleep_and_raise, 5) - future3 = self.executor.submit(time.sleep, 10) + future2 = self.executor.submit(sleep_and_raise, 1.5) + future3 = self.executor.submit(time.sleep, 3) finished, pending = futures.wait( [future1, future2, future3], @@ -190,7 +190,7 @@ def test_first_exception_some_already_complete(self): future1 = self.executor.submit(divmod, 21, 0) - future2 = self.executor.submit(time.sleep, 5) + future2 = self.executor.submit(time.sleep, 1.5) finished, pending = futures.wait( [SUCCESSFUL_FUTURE, @@ -235,14 +235,14 @@ def test_timeout(self): future1 = self.executor.submit(mul, 6, 7) - future2 = self.executor.submit(time.sleep, 10) + future2 = self.executor.submit(time.sleep, 3) finished, pending = futures.wait( [CANCELLED_AND_NOTIFIED_FUTURE, EXCEPTION_FUTURE, SUCCESSFUL_FUTURE, future1, future2], - timeout=5, + timeout=1.5, return_when=futures.ALL_COMPLETED) self.assertEqual(set([CANCELLED_AND_NOTIFIED_FUTURE, @@ -332,8 +332,8 @@ results = [] try: for i in self.executor.map(time.sleep, - [0, 0, 10], - timeout=5): + [0, 0, 3], + timeout=1.5): results.append(i) except futures.TimeoutError: pass -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 18:34:48 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 22 Mar 2011 18:34:48 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge Message-ID: http://hg.python.org/cpython/rev/aa9e88e4586a changeset: 68832:aa9e88e4586a parent: 68826:3114f26d5d54 parent: 68831:f3b8ebf28011 user: Antoine Pitrou date: Tue Mar 22 18:33:33 2011 +0100 summary: Merge files: Doc/library/collections.abc.rst Doc/library/collections.rst diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst --- a/Doc/library/collections.abc.rst +++ b/Doc/library/collections.abc.rst @@ -115,7 +115,7 @@ That assumption is factored-out to an internal classmethod called :meth:`_from_iterable` which calls ``cls(iterable)`` to produce a new set. If the :class:`Set` mixin is being used in a class with a different - constructor signature, you will need to override :meth:`from_iterable` + constructor signature, you will need to override :meth:`_from_iterable` with a classmethod that can construct new instances from an iterable argument. diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -1,3 +1,4 @@ + :mod:`collections` --- Container datatypes ========================================== diff --git a/Lib/test/test_concurrent_futures.py b/Lib/test/test_concurrent_futures.py --- a/Lib/test/test_concurrent_futures.py +++ b/Lib/test/test_concurrent_futures.py @@ -155,7 +155,7 @@ class WaitTests(unittest.TestCase): def test_first_completed(self): future1 = self.executor.submit(mul, 21, 2) - future2 = self.executor.submit(time.sleep, 5) + future2 = self.executor.submit(time.sleep, 1.5) done, not_done = futures.wait( [CANCELLED_FUTURE, future1, future2], @@ -165,7 +165,7 @@ self.assertEqual(set([CANCELLED_FUTURE, future2]), not_done) def test_first_completed_some_already_completed(self): - future1 = self.executor.submit(time.sleep, 2) + future1 = self.executor.submit(time.sleep, 1.5) finished, pending = futures.wait( [CANCELLED_AND_NOTIFIED_FUTURE, SUCCESSFUL_FUTURE, future1], @@ -178,8 +178,8 @@ def test_first_exception(self): future1 = self.executor.submit(mul, 2, 21) - future2 = self.executor.submit(sleep_and_raise, 5) - future3 = self.executor.submit(time.sleep, 10) + future2 = self.executor.submit(sleep_and_raise, 1.5) + future3 = self.executor.submit(time.sleep, 3) finished, pending = futures.wait( [future1, future2, future3], @@ -190,7 +190,7 @@ def test_first_exception_some_already_complete(self): future1 = self.executor.submit(divmod, 21, 0) - future2 = self.executor.submit(time.sleep, 5) + future2 = self.executor.submit(time.sleep, 1.5) finished, pending = futures.wait( [SUCCESSFUL_FUTURE, @@ -235,14 +235,14 @@ def test_timeout(self): future1 = self.executor.submit(mul, 6, 7) - future2 = self.executor.submit(time.sleep, 10) + future2 = self.executor.submit(time.sleep, 3) finished, pending = futures.wait( [CANCELLED_AND_NOTIFIED_FUTURE, EXCEPTION_FUTURE, SUCCESSFUL_FUTURE, future1, future2], - timeout=5, + timeout=1.5, return_when=futures.ALL_COMPLETED) self.assertEqual(set([CANCELLED_AND_NOTIFIED_FUTURE, @@ -332,8 +332,8 @@ results = [] try: for i in self.executor.map(time.sleep, - [0, 0, 10], - timeout=5): + [0, 0, 3], + timeout=1.5): results.append(i) except futures.TimeoutError: pass -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 18:34:48 2011 From: python-checkins at python.org (antoine.pitrou) Date: Tue, 22 Mar 2011 18:34:48 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merge Message-ID: http://hg.python.org/cpython/rev/3d5e0d123838 changeset: 68833:3d5e0d123838 parent: 68832:aa9e88e4586a parent: 68830:8b633c55ac7a user: Antoine Pitrou date: Tue Mar 22 18:34:21 2011 +0100 summary: Merge files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 19:46:34 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 19:46:34 +0100 Subject: [Python-checkins] cpython: Issue #11333: Add __slots__ to the collections ABCs. Message-ID: http://hg.python.org/cpython/rev/d50a71994f51 changeset: 68834:d50a71994f51 user: Raymond Hettinger date: Tue Mar 22 11:46:25 2011 -0700 summary: Issue #11333: Add __slots__ to the collections ABCs. files: Lib/collections/abc.py Misc/NEWS diff --git a/Lib/collections/abc.py b/Lib/collections/abc.py --- a/Lib/collections/abc.py +++ b/Lib/collections/abc.py @@ -46,6 +46,8 @@ class Hashable(metaclass=ABCMeta): + __slots__ = () + @abstractmethod def __hash__(self): return 0 @@ -63,6 +65,8 @@ class Iterable(metaclass=ABCMeta): + __slots__ = () + @abstractmethod def __iter__(self): while False: @@ -78,6 +82,8 @@ class Iterator(Iterable): + __slots__ = () + @abstractmethod def __next__(self): raise StopIteration @@ -109,6 +115,8 @@ class Sized(metaclass=ABCMeta): + __slots__ = () + @abstractmethod def __len__(self): return 0 @@ -123,6 +131,8 @@ class Container(metaclass=ABCMeta): + __slots__ = () + @abstractmethod def __contains__(self, x): return False @@ -137,6 +147,8 @@ class Callable(metaclass=ABCMeta): + __slots__ = () + @abstractmethod def __call__(self, *args, **kwds): return False @@ -164,6 +176,8 @@ then the other operations will automatically follow suit. """ + __slots__ = () + def __le__(self, other): if not isinstance(other, Set): return NotImplemented @@ -275,6 +289,8 @@ class MutableSet(Set): + __slots__ = () + @abstractmethod def add(self, value): """Add an element.""" @@ -348,6 +364,8 @@ class Mapping(Sized, Iterable, Container): + __slots__ = () + @abstractmethod def __getitem__(self, key): raise KeyError @@ -451,6 +469,8 @@ class MutableMapping(Mapping): + __slots__ = () + @abstractmethod def __setitem__(self, key, value): raise KeyError @@ -530,6 +550,8 @@ __getitem__, and __len__. """ + __slots__ = () + @abstractmethod def __getitem__(self, index): raise IndexError @@ -575,12 +597,16 @@ XXX Should add all their methods. """ + __slots__ = () + ByteString.register(bytes) ByteString.register(bytearray) class MutableSequence(Sequence): + __slots__ = () + @abstractmethod def __setitem__(self, index, value): raise IndexError diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -84,6 +84,8 @@ - Issue #11371: Mark getopt error messages as localizable. Patch by Filip Gruszczy?ski. +- Issue #11333: Add __slots__ to collections ABCs. + - Issue #11628: cmp_to_key generated class should use __slots__ - Issue #5537: Fix time2isoz() and time2netscape() functions of -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 21:21:07 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 21:21:07 +0100 Subject: [Python-checkins] cpython (2.7): Issue #11628: cmp_to_key should use__slots__. Message-ID: http://hg.python.org/cpython/rev/136298326897 changeset: 68835:136298326897 branch: 2.7 parent: 68827:a56cd7aeac5e user: Raymond Hettinger date: Tue Mar 22 13:20:59 2011 -0700 summary: Issue #11628: cmp_to_key should use__slots__. files: Lib/functools.py diff --git a/Lib/functools.py b/Lib/functools.py --- a/Lib/functools.py +++ b/Lib/functools.py @@ -80,6 +80,7 @@ def cmp_to_key(mycmp): """Convert a cmp= function into a key= function""" class K(object): + __slots__ = ['obj'] def __init__(self, obj, *args): self.obj = obj def __lt__(self, other): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 21:47:53 2011 From: python-checkins at python.org (eric.araujo) Date: Tue, 22 Mar 2011 21:47:53 +0100 Subject: [Python-checkins] cpython (2.7): Fix typo spotted by Sandro Tosi Message-ID: http://hg.python.org/cpython/rev/b8e556541db3 changeset: 68836:b8e556541db3 branch: 2.7 user: ?ric Araujo date: Tue Mar 22 21:45:42 2011 +0100 summary: Fix typo spotted by Sandro Tosi files: Doc/tutorial/classes.rst diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -518,7 +518,7 @@ than the super call found in single-inheritance languages. With new-style classes, dynamic ordering is necessary because all cases of -multiple inheritance exhibit one or more diamond relationships (where one at +multiple inheritance exhibit one or more diamond relationships (where at least one of the parent classes can be accessed through multiple paths from the bottommost class). For example, all new-style classes inherit from :class:`object`, so any case of multiple inheritance provides more than one path -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 22:59:38 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 22:59:38 +0100 Subject: [Python-checkins] cpython: Improve readability by replacing '\n' in template with real newlines. Message-ID: http://hg.python.org/cpython/rev/00e71c99bc8e changeset: 68837:00e71c99bc8e parent: 68834:d50a71994f51 user: Raymond Hettinger date: Tue Mar 22 13:34:03 2011 -0700 summary: Improve readability by replacing '\n' in template with real newlines. files: Lib/collections/__init__.py diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -292,34 +292,44 @@ argtxt = repr(field_names).replace("'", "")[1:-1] # tuple repr without parens or quotes reprtxt = ', '.join('%s=%%r' % name for name in field_names) template = '''class %(typename)s(tuple): - '%(typename)s(%(argtxt)s)' \n - __slots__ = () \n - _fields = %(field_names)r \n + '%(typename)s(%(argtxt)s)' + + __slots__ = () + + _fields = %(field_names)r + def __new__(_cls, %(argtxt)s): 'Create new instance of %(typename)s(%(argtxt)s)' - return _tuple.__new__(_cls, (%(argtxt)s)) \n + return _tuple.__new__(_cls, (%(argtxt)s)) + @classmethod def _make(cls, iterable, new=tuple.__new__, len=len): 'Make a new %(typename)s object from a sequence or iterable' result = new(cls, iterable) if len(result) != %(numfields)d: raise TypeError('Expected %(numfields)d arguments, got %%d' %% len(result)) - return result \n + return result + def __repr__(self): 'Return a nicely formatted representation string' - return self.__class__.__name__ + '(%(reprtxt)s)' %% self \n + return self.__class__.__name__ + '(%(reprtxt)s)' %% self + def _asdict(self): 'Return a new OrderedDict which maps field names to their values' - return OrderedDict(zip(self._fields, self)) \n + return OrderedDict(zip(self._fields, self)) + def _replace(_self, **kwds): 'Return a new %(typename)s object replacing specified fields with new values' result = _self._make(map(kwds.pop, %(field_names)r, _self)) if kwds: raise ValueError('Got unexpected field names: %%r' %% kwds.keys()) - return result \n + return result + def __getnewargs__(self): 'Return self as a plain tuple. Used by copy and pickle.' - return tuple(self) \n\n''' % locals() + return tuple(self) + + ''' % locals() for i, name in enumerate(field_names): template += " %s = _property(_itemgetter(%d), doc='Alias for field number %d')\n" % (name, i, i) if verbose: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 22:59:44 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 22:59:44 +0100 Subject: [Python-checkins] cpython: Simplify the named tuple template by using the new string format syntax. Message-ID: http://hg.python.org/cpython/rev/b7e7d84cdc24 changeset: 68838:b7e7d84cdc24 user: Raymond Hettinger date: Tue Mar 22 14:07:23 2011 -0700 summary: Simplify the named tuple template by using the new string format syntax. files: Lib/collections/__init__.py diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -290,46 +290,46 @@ # Create and fill-in the class template numfields = len(field_names) argtxt = repr(field_names).replace("'", "")[1:-1] # tuple repr without parens or quotes - reprtxt = ', '.join('%s=%%r' % name for name in field_names) - template = '''class %(typename)s(tuple): - '%(typename)s(%(argtxt)s)' + reprtxt = ', '.join('{}=%r'.format(name) for name in field_names) + template = '''class {typename}(tuple): + '{typename}({argtxt})' __slots__ = () - _fields = %(field_names)r + _fields = {field_names!r} - def __new__(_cls, %(argtxt)s): - 'Create new instance of %(typename)s(%(argtxt)s)' - return _tuple.__new__(_cls, (%(argtxt)s)) + def __new__(_cls, {argtxt}): + 'Create new instance of {typename}({argtxt})' + return _tuple.__new__(_cls, ({argtxt})) @classmethod def _make(cls, iterable, new=tuple.__new__, len=len): - 'Make a new %(typename)s object from a sequence or iterable' + 'Make a new {typename} object from a sequence or iterable' result = new(cls, iterable) - if len(result) != %(numfields)d: - raise TypeError('Expected %(numfields)d arguments, got %%d' %% len(result)) + if len(result) != {numfields:d}: + raise TypeError('Expected {numfields:d} arguments, got %d' % len(result)) return result def __repr__(self): 'Return a nicely formatted representation string' - return self.__class__.__name__ + '(%(reprtxt)s)' %% self + return self.__class__.__name__ + '({reprtxt})' % self def _asdict(self): 'Return a new OrderedDict which maps field names to their values' return OrderedDict(zip(self._fields, self)) def _replace(_self, **kwds): - 'Return a new %(typename)s object replacing specified fields with new values' - result = _self._make(map(kwds.pop, %(field_names)r, _self)) + 'Return a new {typename} object replacing specified fields with new values' + result = _self._make(map(kwds.pop, {field_names!r}, _self)) if kwds: - raise ValueError('Got unexpected field names: %%r' %% kwds.keys()) + raise ValueError('Got unexpected field names: %r' % kwds.keys()) return result def __getnewargs__(self): 'Return self as a plain tuple. Used by copy and pickle.' return tuple(self) - ''' % locals() +'''.format(**locals()) for i, name in enumerate(field_names): template += " %s = _property(_itemgetter(%d), doc='Alias for field number %d')\n" % (name, i, i) if verbose: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 22:59:47 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 22:59:47 +0100 Subject: [Python-checkins] cpython: Replace **locals() with explicit field names. Message-ID: http://hg.python.org/cpython/rev/296a68fc2cc1 changeset: 68839:296a68fc2cc1 user: Raymond Hettinger date: Tue Mar 22 14:21:38 2011 -0700 summary: Replace **locals() with explicit field names. files: Lib/collections/__init__.py diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -288,9 +288,6 @@ seen_names.add(name) # Create and fill-in the class template - numfields = len(field_names) - argtxt = repr(field_names).replace("'", "")[1:-1] # tuple repr without parens or quotes - reprtxt = ', '.join('{}=%r'.format(name) for name in field_names) template = '''class {typename}(tuple): '{typename}({argtxt})' @@ -329,7 +326,14 @@ 'Return self as a plain tuple. Used by copy and pickle.' return tuple(self) -'''.format(**locals()) +''' + template = template.format( + typename = typename, + field_names = field_names, + argtxt = repr(field_names).replace("'", "")[1:-1], + numfields = len(field_names), + reprtxt = ', '.join('{}=%r'.format(name) for name in field_names), + ) for i, name in enumerate(field_names): template += " %s = _property(_itemgetter(%d), doc='Alias for field number %d')\n" % (name, i, i) if verbose: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 22:59:50 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 22:59:50 +0100 Subject: [Python-checkins] cpython: Clean-up whitespace. Message-ID: http://hg.python.org/cpython/rev/e2d509abb203 changeset: 68840:e2d509abb203 user: Raymond Hettinger date: Tue Mar 22 14:22:52 2011 -0700 summary: Clean-up whitespace. files: Lib/collections/__init__.py diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -292,13 +292,13 @@ '{typename}({argtxt})' __slots__ = () - + _fields = {field_names!r} - + def __new__(_cls, {argtxt}): 'Create new instance of {typename}({argtxt})' return _tuple.__new__(_cls, ({argtxt})) - + @classmethod def _make(cls, iterable, new=tuple.__new__, len=len): 'Make a new {typename} object from a sequence or iterable' @@ -306,22 +306,22 @@ if len(result) != {numfields:d}: raise TypeError('Expected {numfields:d} arguments, got %d' % len(result)) return result - + def __repr__(self): 'Return a nicely formatted representation string' return self.__class__.__name__ + '({reprtxt})' % self - + def _asdict(self): 'Return a new OrderedDict which maps field names to their values' return OrderedDict(zip(self._fields, self)) - + def _replace(_self, **kwds): 'Return a new {typename} object replacing specified fields with new values' result = _self._make(map(kwds.pop, {field_names!r}, _self)) if kwds: raise ValueError('Got unexpected field names: %r' % kwds.keys()) return result - + def __getnewargs__(self): 'Return self as a plain tuple. Used by copy and pickle.' return tuple(self) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 23:29:22 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 23:29:22 +0100 Subject: [Python-checkins] cpython (2.7): Issue 10988: fix description of super's descriptor call. Message-ID: http://hg.python.org/cpython/rev/50cc60852a76 changeset: 68841:50cc60852a76 branch: 2.7 parent: 68836:b8e556541db3 user: Raymond Hettinger date: Tue Mar 22 15:28:45 2011 -0700 summary: Issue 10988: fix description of super's descriptor call. files: Doc/reference/datamodel.rst diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -1608,7 +1608,7 @@ If ``a`` is an instance of :class:`super`, then the binding ``super(B, obj).m()`` searches ``obj.__class__.__mro__`` for the base class ``A`` immediately preceding ``B`` and then invokes the descriptor with the call: - ``A.__dict__['m'].__get__(obj, A)``. + ``A.__dict__['m'].__get__(obj, obj.__class__)``. For instance bindings, the precedence of descriptor invocation depends on the which descriptor methods are defined. A descriptor can define any combination -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 23:34:08 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 23:34:08 +0100 Subject: [Python-checkins] cpython (3.1): Issue 10988: fix description of super's descriptor call. Message-ID: http://hg.python.org/cpython/rev/3e3c46a3dce8 changeset: 68842:3e3c46a3dce8 branch: 3.1 parent: 68828:3aec82018a18 user: Raymond Hettinger date: Tue Mar 22 15:28:45 2011 -0700 summary: Issue 10988: fix description of super's descriptor call. files: Doc/reference/datamodel.rst diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -1419,7 +1419,7 @@ If ``a`` is an instance of :class:`super`, then the binding ``super(B, obj).m()`` searches ``obj.__class__.__mro__`` for the base class ``A`` immediately preceding ``B`` and then invokes the descriptor with the call: - ``A.__dict__['m'].__get__(obj, A)``. + ``A.__dict__['m'].__get__(obj, obj.__class__)``. For instance bindings, the precedence of descriptor invocation depends on the which descriptor methods are defined. A descriptor can define any combination -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 23:34:10 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 23:34:10 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Issue 10988: fix description of super's descriptor call. Message-ID: http://hg.python.org/cpython/rev/40698c68a32c changeset: 68843:40698c68a32c branch: 3.2 parent: 68831:f3b8ebf28011 parent: 68842:3e3c46a3dce8 user: Raymond Hettinger date: Tue Mar 22 15:33:02 2011 -0700 summary: Issue 10988: fix description of super's descriptor call. files: Doc/reference/datamodel.rst diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -1418,7 +1418,7 @@ If ``a`` is an instance of :class:`super`, then the binding ``super(B, obj).m()`` searches ``obj.__class__.__mro__`` for the base class ``A`` immediately preceding ``B`` and then invokes the descriptor with the call: - ``A.__dict__['m'].__get__(obj, A)``. + ``A.__dict__['m'].__get__(obj, obj.__class__)``. For instance bindings, the precedence of descriptor invocation depends on the which descriptor methods are defined. A descriptor can define any combination -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 23:34:11 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 23:34:11 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> default): Issue 10988: fix description of super's descriptor call. Message-ID: http://hg.python.org/cpython/rev/29c8eb206076 changeset: 68844:29c8eb206076 parent: 68840:e2d509abb203 parent: 68842:3e3c46a3dce8 user: Raymond Hettinger date: Tue Mar 22 15:33:40 2011 -0700 summary: Issue 10988: fix description of super's descriptor call. files: Doc/reference/datamodel.rst diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -1418,7 +1418,7 @@ If ``a`` is an instance of :class:`super`, then the binding ``super(B, obj).m()`` searches ``obj.__class__.__mro__`` for the base class ``A`` immediately preceding ``B`` and then invokes the descriptor with the call: - ``A.__dict__['m'].__get__(obj, A)``. + ``A.__dict__['m'].__get__(obj, obj.__class__)``. For instance bindings, the precedence of descriptor invocation depends on the which descriptor methods are defined. A descriptor can define any combination -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 23:52:56 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 23:52:56 +0100 Subject: [Python-checkins] cpython (2.7): Issue 10787: Document the probability density function for random.gammavariate. Message-ID: http://hg.python.org/cpython/rev/42816be02b9b changeset: 68845:42816be02b9b branch: 2.7 parent: 68841:50cc60852a76 user: Raymond Hettinger date: Tue Mar 22 15:52:46 2011 -0700 summary: Issue 10787: Document the probability density function for random.gammavariate. files: Doc/reference/datamodel.rst Lib/random.py diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -1540,10 +1540,10 @@ The following methods only apply when an instance of the class containing the method (a so-called *descriptor* class) appears in the class dictionary of -another new-style class, known as the *owner* class. In the examples below, "the -attribute" refers to the attribute whose name is the key of the property in the -owner class' ``__dict__``. Descriptors can only be implemented as new-style -classes themselves. +another new-style class (known as the *owner* class) or one of its +descendants. In the examples below, "the attribute" refers to the attribute +whose name is the key of the property in the owner class' ``__dict__``. +Descriptors can only be implemented as new-style classes themselves. .. method:: object.__get__(self, instance, owner) diff --git a/Lib/random.py b/Lib/random.py --- a/Lib/random.py +++ b/Lib/random.py @@ -490,6 +490,12 @@ Conditions on the parameters are alpha > 0 and beta > 0. + The probability distribution function is: + + x ** (alpha - 1) * math.exp(-x / beta) + pdf(x) = -------------------------------------- + math.gamma(alpha) * beta ** alpha + """ # alpha > 0, beta > 0, mean is alpha*beta, variance is alpha*beta**2 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 23:57:23 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 23:57:23 +0100 Subject: [Python-checkins] cpython (3.1): Issue 10787: Document the probability density function for random.gammavariate. Message-ID: http://hg.python.org/cpython/rev/e880020e7e6a changeset: 68846:e880020e7e6a branch: 3.1 parent: 68842:3e3c46a3dce8 user: Raymond Hettinger date: Tue Mar 22 15:55:51 2011 -0700 summary: Issue 10787: Document the probability density function for random.gammavariate. files: Lib/random.py diff --git a/Lib/random.py b/Lib/random.py --- a/Lib/random.py +++ b/Lib/random.py @@ -470,6 +470,12 @@ Conditions on the parameters are alpha > 0 and beta > 0. + The probability distribution function is: + + x ** (alpha - 1) * math.exp(-x / beta) + pdf(x) = -------------------------------------- + math.gamma(alpha) * beta ** alpha + """ # alpha > 0, beta > 0, mean is alpha*beta, variance is alpha*beta**2 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 23:57:28 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 23:57:28 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Issue 10787: Document the probability density function for random.gammavariate. Message-ID: http://hg.python.org/cpython/rev/f882b284d260 changeset: 68847:f882b284d260 branch: 3.2 parent: 68843:40698c68a32c parent: 68846:e880020e7e6a user: Raymond Hettinger date: Tue Mar 22 15:56:41 2011 -0700 summary: Issue 10787: Document the probability density function for random.gammavariate. files: Lib/random.py diff --git a/Lib/random.py b/Lib/random.py --- a/Lib/random.py +++ b/Lib/random.py @@ -465,6 +465,12 @@ Conditions on the parameters are alpha > 0 and beta > 0. + The probability distribution function is: + + x ** (alpha - 1) * math.exp(-x / beta) + pdf(x) = -------------------------------------- + math.gamma(alpha) * beta ** alpha + """ # alpha > 0, beta > 0, mean is alpha*beta, variance is alpha*beta**2 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 22 23:57:29 2011 From: python-checkins at python.org (raymond.hettinger) Date: Tue, 22 Mar 2011 23:57:29 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue 10787: Document the probability density function for random.gammavariate. Message-ID: http://hg.python.org/cpython/rev/a892a0dd8190 changeset: 68848:a892a0dd8190 parent: 68844:29c8eb206076 parent: 68847:f882b284d260 user: Raymond Hettinger date: Tue Mar 22 15:57:03 2011 -0700 summary: Issue 10787: Document the probability density function for random.gammavariate. files: Lib/random.py diff --git a/Lib/random.py b/Lib/random.py --- a/Lib/random.py +++ b/Lib/random.py @@ -465,6 +465,12 @@ Conditions on the parameters are alpha > 0 and beta > 0. + The probability distribution function is: + + x ** (alpha - 1) * math.exp(-x / beta) + pdf(x) = -------------------------------------- + math.gamma(alpha) * beta ** alpha + """ # alpha > 0, beta > 0, mean is alpha*beta, variance is alpha*beta**2 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 00:28:19 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 23 Mar 2011 00:28:19 +0100 Subject: [Python-checkins] cpython (3.1): Issue #10771: Clarify that descriptors get used in an *owner* class or one of Message-ID: http://hg.python.org/cpython/rev/b31606ea7ce3 changeset: 68849:b31606ea7ce3 branch: 3.1 parent: 68846:e880020e7e6a user: Raymond Hettinger date: Tue Mar 22 16:27:02 2011 -0700 summary: Issue #10771: Clarify that descriptors get used in an *owner* class or one of its parents. files: Doc/reference/datamodel.rst diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -1353,10 +1353,11 @@ ^^^^^^^^^^^^^^^^^^^^^^^^ The following methods only apply when an instance of the class containing the -method (a so-called *descriptor* class) appears in the class dictionary of -another class, known as the *owner* class. In the examples below, "the -attribute" refers to the attribute whose name is the key of the property in the -owner class' :attr:`__dict__`. +method (a so-called *descriptor* class) appears in an *owner* class (the +descriptor must be in either the owner's class dictionary or in the class +dictionary for one of its parents). In the examples below, "the attribute" +refers to the attribute whose name is the key of the property in the owner +class' :attr:`__dict__`. .. method:: object.__get__(self, instance, owner) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 00:28:19 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 23 Mar 2011 00:28:19 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Issue #10771: Clarify that descriptors get used in an *owner* class or one of Message-ID: http://hg.python.org/cpython/rev/4dfbf8c8f4e5 changeset: 68850:4dfbf8c8f4e5 branch: 3.2 parent: 68847:f882b284d260 parent: 68849:b31606ea7ce3 user: Raymond Hettinger date: Tue Mar 22 16:27:31 2011 -0700 summary: Issue #10771: Clarify that descriptors get used in an *owner* class or one of its parents. files: Doc/reference/datamodel.rst diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -1352,10 +1352,11 @@ ^^^^^^^^^^^^^^^^^^^^^^^^ The following methods only apply when an instance of the class containing the -method (a so-called *descriptor* class) appears in the class dictionary of -another class, known as the *owner* class. In the examples below, "the -attribute" refers to the attribute whose name is the key of the property in the -owner class' :attr:`__dict__`. +method (a so-called *descriptor* class) appears in an *owner* class (the +descriptor must be in either the owner's class dictionary or in the class +dictionary for one of its parents). In the examples below, "the attribute" +refers to the attribute whose name is the key of the property in the owner +class' :attr:`__dict__`. .. method:: object.__get__(self, instance, owner) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 00:28:20 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 23 Mar 2011 00:28:20 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #10771: Clarify that descriptors get used in an *owner* class or one of Message-ID: http://hg.python.org/cpython/rev/5aaa71591dda changeset: 68851:5aaa71591dda parent: 68848:a892a0dd8190 parent: 68850:4dfbf8c8f4e5 user: Raymond Hettinger date: Tue Mar 22 16:27:57 2011 -0700 summary: Issue #10771: Clarify that descriptors get used in an *owner* class or one of its parents. files: diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -1352,10 +1352,11 @@ ^^^^^^^^^^^^^^^^^^^^^^^^ The following methods only apply when an instance of the class containing the -method (a so-called *descriptor* class) appears in the class dictionary of -another class, known as the *owner* class. In the examples below, "the -attribute" refers to the attribute whose name is the key of the property in the -owner class' :attr:`__dict__`. +method (a so-called *descriptor* class) appears in an *owner* class (the +descriptor must be in either the owner's class dictionary or in the class +dictionary for one of its parents). In the examples below, "the attribute" +refers to the attribute whose name is the key of the property in the owner +class' :attr:`__dict__`. .. method:: object.__get__(self, instance, owner) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 01:34:47 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 23 Mar 2011 01:34:47 +0100 Subject: [Python-checkins] cpython (3.1): Issue #10610: Document that int(), float(), and complex() accept numeric Message-ID: http://hg.python.org/cpython/rev/6853b480e388 changeset: 68852:6853b480e388 branch: 3.1 parent: 68849:b31606ea7ce3 user: Raymond Hettinger date: Tue Mar 22 17:33:17 2011 -0700 summary: Issue #10610: Document that int(), float(), and complex() accept numeric literals with the Nd property. files: Doc/library/stdtypes.rst diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -267,46 +267,46 @@ ascending priority (operations in the same box have the same priority; all numeric operations have a higher priority than comparison operations): -+---------------------+---------------------------------+-------+--------------------+ -| Operation | Result | Notes | Full documentation | -+=====================+=================================+=======+====================+ -| ``x + y`` | sum of *x* and *y* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``x - y`` | difference of *x* and *y* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``x * y`` | product of *x* and *y* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``x / y`` | quotient of *x* and *y* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``x // y`` | floored quotient of *x* and | \(1) | | -| | *y* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``x % y`` | remainder of ``x / y`` | \(2) | | -+---------------------+---------------------------------+-------+--------------------+ -| ``-x`` | *x* negated | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``+x`` | *x* unchanged | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``abs(x)`` | absolute value or magnitude of | | :func:`abs` | -| | *x* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``int(x)`` | *x* converted to integer | \(3) | :func:`int` | -+---------------------+---------------------------------+-------+--------------------+ -| ``float(x)`` | *x* converted to floating point | \(4) | :func:`float` | -+---------------------+---------------------------------+-------+--------------------+ -| ``complex(re, im)`` | a complex number with real part | | :func:`complex` | -| | *re*, imaginary part *im*. | | | -| | *im* defaults to zero. | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``c.conjugate()`` | conjugate of the complex number | | | -| | *c* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``divmod(x, y)`` | the pair ``(x // y, x % y)`` | \(2) | :func:`divmod` | -+---------------------+---------------------------------+-------+--------------------+ -| ``pow(x, y)`` | *x* to the power *y* | \(5) | :func:`pow` | -+---------------------+---------------------------------+-------+--------------------+ -| ``x ** y`` | *x* to the power *y* | \(5) | | -+---------------------+---------------------------------+-------+--------------------+ ++---------------------+---------------------------------+---------+--------------------+ +| Operation | Result | Notes | Full documentation | ++=====================+=================================+=========+====================+ +| ``x + y`` | sum of *x* and *y* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``x - y`` | difference of *x* and *y* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``x * y`` | product of *x* and *y* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``x / y`` | quotient of *x* and *y* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``x // y`` | floored quotient of *x* and | \(1) | | +| | *y* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``x % y`` | remainder of ``x / y`` | \(2) | | ++---------------------+---------------------------------+---------+--------------------+ +| ``-x`` | *x* negated | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``+x`` | *x* unchanged | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``abs(x)`` | absolute value or magnitude of | | :func:`abs` | +| | *x* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``int(x)`` | *x* converted to integer | \(3)\(6)| :func:`int` | ++---------------------+---------------------------------+---------+--------------------+ +| ``float(x)`` | *x* converted to floating point | \(4)\(6)| :func:`float` | ++---------------------+---------------------------------+---------+--------------------+ +| ``complex(re, im)`` | a complex number with real part | \(6) | :func:`complex` | +| | *re*, imaginary part *im*. | | | +| | *im* defaults to zero. | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``c.conjugate()`` | conjugate of the complex number | | | +| | *c* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``divmod(x, y)`` | the pair ``(x // y, x % y)`` | \(2) | :func:`divmod` | ++---------------------+---------------------------------+---------+--------------------+ +| ``pow(x, y)`` | *x* to the power *y* | \(5) | :func:`pow` | ++---------------------+---------------------------------+---------+--------------------+ +| ``x ** y`` | *x* to the power *y* | \(5) | | ++---------------------+---------------------------------+---------+--------------------+ .. index:: triple: operations on; numeric; types @@ -345,6 +345,12 @@ Python defines ``pow(0, 0)`` and ``0 ** 0`` to be ``1``, as is common for programming languages. +(6) + The numeric literals accepted include the digits ``0`` to ``9`` or any + Unicode equivalent (code points with the ``Nd`` property). + + See http://www.unicode.org/Public/6.0.0/ucd/extracted/DerivedNumericType.txt + for a complete list of code points with the ``Nd`` property. All :class:`numbers.Real` types (:class:`int` and -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 01:34:51 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 23 Mar 2011 01:34:51 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Issue #10610: Document that int(), float(), and complex() accept numeric Message-ID: http://hg.python.org/cpython/rev/a1e685ceb3bd changeset: 68853:a1e685ceb3bd branch: 3.2 parent: 68850:4dfbf8c8f4e5 parent: 68852:6853b480e388 user: Raymond Hettinger date: Tue Mar 22 17:33:53 2011 -0700 summary: Issue #10610: Document that int(), float(), and complex() accept numeric literals with the Nd property. files: Doc/library/stdtypes.rst diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -268,46 +268,46 @@ ascending priority (operations in the same box have the same priority; all numeric operations have a higher priority than comparison operations): -+---------------------+---------------------------------+-------+--------------------+ -| Operation | Result | Notes | Full documentation | -+=====================+=================================+=======+====================+ -| ``x + y`` | sum of *x* and *y* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``x - y`` | difference of *x* and *y* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``x * y`` | product of *x* and *y* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``x / y`` | quotient of *x* and *y* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``x // y`` | floored quotient of *x* and | \(1) | | -| | *y* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``x % y`` | remainder of ``x / y`` | \(2) | | -+---------------------+---------------------------------+-------+--------------------+ -| ``-x`` | *x* negated | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``+x`` | *x* unchanged | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``abs(x)`` | absolute value or magnitude of | | :func:`abs` | -| | *x* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``int(x)`` | *x* converted to integer | \(3) | :func:`int` | -+---------------------+---------------------------------+-------+--------------------+ -| ``float(x)`` | *x* converted to floating point | \(4) | :func:`float` | -+---------------------+---------------------------------+-------+--------------------+ -| ``complex(re, im)`` | a complex number with real part | | :func:`complex` | -| | *re*, imaginary part *im*. | | | -| | *im* defaults to zero. | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``c.conjugate()`` | conjugate of the complex number | | | -| | *c* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``divmod(x, y)`` | the pair ``(x // y, x % y)`` | \(2) | :func:`divmod` | -+---------------------+---------------------------------+-------+--------------------+ -| ``pow(x, y)`` | *x* to the power *y* | \(5) | :func:`pow` | -+---------------------+---------------------------------+-------+--------------------+ -| ``x ** y`` | *x* to the power *y* | \(5) | | -+---------------------+---------------------------------+-------+--------------------+ ++---------------------+---------------------------------+---------+--------------------+ +| Operation | Result | Notes | Full documentation | ++=====================+=================================+=========+====================+ +| ``x + y`` | sum of *x* and *y* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``x - y`` | difference of *x* and *y* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``x * y`` | product of *x* and *y* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``x / y`` | quotient of *x* and *y* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``x // y`` | floored quotient of *x* and | \(1) | | +| | *y* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``x % y`` | remainder of ``x / y`` | \(2) | | ++---------------------+---------------------------------+---------+--------------------+ +| ``-x`` | *x* negated | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``+x`` | *x* unchanged | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``abs(x)`` | absolute value or magnitude of | | :func:`abs` | +| | *x* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``int(x)`` | *x* converted to integer | \(3)\(6)| :func:`int` | ++---------------------+---------------------------------+---------+--------------------+ +| ``float(x)`` | *x* converted to floating point | \(4)\(6)| :func:`float` | ++---------------------+---------------------------------+---------+--------------------+ +| ``complex(re, im)`` | a complex number with real part | \(6) | :func:`complex` | +| | *re*, imaginary part *im*. | | | +| | *im* defaults to zero. | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``c.conjugate()`` | conjugate of the complex number | | | +| | *c* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``divmod(x, y)`` | the pair ``(x // y, x % y)`` | \(2) | :func:`divmod` | ++---------------------+---------------------------------+---------+--------------------+ +| ``pow(x, y)`` | *x* to the power *y* | \(5) | :func:`pow` | ++---------------------+---------------------------------+---------+--------------------+ +| ``x ** y`` | *x* to the power *y* | \(5) | | ++---------------------+---------------------------------+---------+--------------------+ .. index:: triple: operations on; numeric; types @@ -346,6 +346,12 @@ Python defines ``pow(0, 0)`` and ``0 ** 0`` to be ``1``, as is common for programming languages. +(6) + The numeric literals accepted include the digits ``0`` to ``9`` or any + Unicode equivalent (code points with the ``Nd`` property). + + See http://www.unicode.org/Public/6.0.0/ucd/extracted/DerivedNumericType.txt + for a complete list of code points with the ``Nd`` property. All :class:`numbers.Real` types (:class:`int` and -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 01:34:55 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 23 Mar 2011 01:34:55 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #10610: Document that int(), float(), and complex() accept numeric Message-ID: http://hg.python.org/cpython/rev/997271aebd69 changeset: 68854:997271aebd69 parent: 68851:5aaa71591dda parent: 68853:a1e685ceb3bd user: Raymond Hettinger date: Tue Mar 22 17:34:28 2011 -0700 summary: Issue #10610: Document that int(), float(), and complex() accept numeric literals with the Nd property. files: Doc/library/stdtypes.rst diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -268,46 +268,46 @@ ascending priority (operations in the same box have the same priority; all numeric operations have a higher priority than comparison operations): -+---------------------+---------------------------------+-------+--------------------+ -| Operation | Result | Notes | Full documentation | -+=====================+=================================+=======+====================+ -| ``x + y`` | sum of *x* and *y* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``x - y`` | difference of *x* and *y* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``x * y`` | product of *x* and *y* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``x / y`` | quotient of *x* and *y* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``x // y`` | floored quotient of *x* and | \(1) | | -| | *y* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``x % y`` | remainder of ``x / y`` | \(2) | | -+---------------------+---------------------------------+-------+--------------------+ -| ``-x`` | *x* negated | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``+x`` | *x* unchanged | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``abs(x)`` | absolute value or magnitude of | | :func:`abs` | -| | *x* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``int(x)`` | *x* converted to integer | \(3) | :func:`int` | -+---------------------+---------------------------------+-------+--------------------+ -| ``float(x)`` | *x* converted to floating point | \(4) | :func:`float` | -+---------------------+---------------------------------+-------+--------------------+ -| ``complex(re, im)`` | a complex number with real part | | :func:`complex` | -| | *re*, imaginary part *im*. | | | -| | *im* defaults to zero. | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``c.conjugate()`` | conjugate of the complex number | | | -| | *c* | | | -+---------------------+---------------------------------+-------+--------------------+ -| ``divmod(x, y)`` | the pair ``(x // y, x % y)`` | \(2) | :func:`divmod` | -+---------------------+---------------------------------+-------+--------------------+ -| ``pow(x, y)`` | *x* to the power *y* | \(5) | :func:`pow` | -+---------------------+---------------------------------+-------+--------------------+ -| ``x ** y`` | *x* to the power *y* | \(5) | | -+---------------------+---------------------------------+-------+--------------------+ ++---------------------+---------------------------------+---------+--------------------+ +| Operation | Result | Notes | Full documentation | ++=====================+=================================+=========+====================+ +| ``x + y`` | sum of *x* and *y* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``x - y`` | difference of *x* and *y* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``x * y`` | product of *x* and *y* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``x / y`` | quotient of *x* and *y* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``x // y`` | floored quotient of *x* and | \(1) | | +| | *y* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``x % y`` | remainder of ``x / y`` | \(2) | | ++---------------------+---------------------------------+---------+--------------------+ +| ``-x`` | *x* negated | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``+x`` | *x* unchanged | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``abs(x)`` | absolute value or magnitude of | | :func:`abs` | +| | *x* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``int(x)`` | *x* converted to integer | \(3)\(6)| :func:`int` | ++---------------------+---------------------------------+---------+--------------------+ +| ``float(x)`` | *x* converted to floating point | \(4)\(6)| :func:`float` | ++---------------------+---------------------------------+---------+--------------------+ +| ``complex(re, im)`` | a complex number with real part | \(6) | :func:`complex` | +| | *re*, imaginary part *im*. | | | +| | *im* defaults to zero. | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``c.conjugate()`` | conjugate of the complex number | | | +| | *c* | | | ++---------------------+---------------------------------+---------+--------------------+ +| ``divmod(x, y)`` | the pair ``(x // y, x % y)`` | \(2) | :func:`divmod` | ++---------------------+---------------------------------+---------+--------------------+ +| ``pow(x, y)`` | *x* to the power *y* | \(5) | :func:`pow` | ++---------------------+---------------------------------+---------+--------------------+ +| ``x ** y`` | *x* to the power *y* | \(5) | | ++---------------------+---------------------------------+---------+--------------------+ .. index:: triple: operations on; numeric; types @@ -346,6 +346,12 @@ Python defines ``pow(0, 0)`` and ``0 ** 0`` to be ``1``, as is common for programming languages. +(6) + The numeric literals accepted include the digits ``0`` to ``9`` or any + Unicode equivalent (code points with the ``Nd`` property). + + See http://www.unicode.org/Public/6.0.0/ucd/extracted/DerivedNumericType.txt + for a complete list of code points with the ``Nd`` property. All :class:`numbers.Real` types (:class:`int` and -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 01:52:30 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 23 Mar 2011 01:52:30 +0100 Subject: [Python-checkins] cpython (2.7): Issue #10771: Clarify that descriptors get used in an *owner* class or one of Message-ID: http://hg.python.org/cpython/rev/f28565867d22 changeset: 68855:f28565867d22 branch: 2.7 parent: 68845:42816be02b9b user: Raymond Hettinger date: Tue Mar 22 17:51:57 2011 -0700 summary: Issue #10771: Clarify that descriptors get used in an *owner* class or one of its parents. files: Doc/reference/datamodel.rst diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -1539,11 +1539,11 @@ ^^^^^^^^^^^^^^^^^^^^^^^^ The following methods only apply when an instance of the class containing the -method (a so-called *descriptor* class) appears in the class dictionary of -another new-style class (known as the *owner* class) or one of its -descendants. In the examples below, "the attribute" refers to the attribute -whose name is the key of the property in the owner class' ``__dict__``. -Descriptors can only be implemented as new-style classes themselves. +method (a so-called *descriptor* class) appears in an *owner* class (the +descriptor must be in either the owner's class dictionary or in the class +dictionary for one of its parents). In the examples below, "the attribute" +refers to the attribute whose name is the key of the property in the owner +class' :attr:`__dict__`. .. method:: object.__get__(self, instance, owner) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 02:11:27 2011 From: python-checkins at python.org (eric.araujo) Date: Wed, 23 Mar 2011 02:11:27 +0100 Subject: [Python-checkins] cpython (2.7): Fix obscure set crashers (#4420). Backport of d56b3cafb1e6, reviewed by Message-ID: http://hg.python.org/cpython/rev/24179f82b7de changeset: 68856:24179f82b7de branch: 2.7 user: ?ric Araujo date: Tue Mar 22 23:47:32 2011 +0100 summary: Fix obscure set crashers (#4420). Backport of d56b3cafb1e6, reviewed by Raymond. files: Lib/test/test_set.py Objects/setobject.c diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py --- a/Lib/test/test_set.py +++ b/Lib/test/test_set.py @@ -1588,6 +1588,39 @@ self.assertRaises(TypeError, getattr(set('january'), methname), N(data)) self.assertRaises(ZeroDivisionError, getattr(set('january'), methname), E(data)) +class bad_eq: + def __eq__(self, other): + if be_bad: + set2.clear() + raise ZeroDivisionError + return self is other + def __hash__(self): + return 0 + +class bad_dict_clear: + def __eq__(self, other): + if be_bad: + dict2.clear() + return self is other + def __hash__(self): + return 0 + +class TestWeirdBugs(unittest.TestCase): + def test_8420_set_merge(self): + # This used to segfault + global be_bad, set2, dict2 + be_bad = False + set1 = {bad_eq()} + set2 = {bad_eq() for i in range(75)} + be_bad = True + self.assertRaises(ZeroDivisionError, set1.update, set2) + + be_bad = False + set1 = {bad_dict_clear()} + dict2 = {bad_dict_clear(): None} + be_bad = True + set1.symmetric_difference_update(dict2) + # Application tests (based on David Eppstein's graph recipes ==================================== def powerset(U): @@ -1729,6 +1762,7 @@ TestIdentities, TestVariousIteratorArgs, TestGraphs, + TestWeirdBugs, ) test_support.run_unittest(*test_classes) diff --git a/Objects/setobject.c b/Objects/setobject.c --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -362,12 +362,14 @@ set_add_entry(register PySetObject *so, setentry *entry) { register Py_ssize_t n_used; + PyObject *key = entry->key; + long hash = entry->hash; assert(so->fill <= so->mask); /* at least one empty slot */ n_used = so->used; - Py_INCREF(entry->key); - if (set_insert_key(so, entry->key, entry->hash) == -1) { - Py_DECREF(entry->key); + Py_INCREF(key); + if (set_insert_key(so, key, hash) == -1) { + Py_DECREF(key); return -1; } if (!(so->used > n_used && so->fill*3 >= (so->mask+1)*2)) @@ -647,6 +649,8 @@ set_merge(PySetObject *so, PyObject *otherset) { PySetObject *other; + PyObject *key; + long hash; register Py_ssize_t i; register setentry *entry; @@ -667,11 +671,13 @@ } for (i = 0; i <= other->mask; i++) { entry = &other->table[i]; - if (entry->key != NULL && - entry->key != dummy) { - Py_INCREF(entry->key); - if (set_insert_key(so, entry->key, entry->hash) == -1) { - Py_DECREF(entry->key); + key = entry->key; + hash = entry->hash; + if (key != NULL && + key != dummy) { + Py_INCREF(key); + if (set_insert_key(so, key, hash) == -1) { + Py_DECREF(key); return -1; } } @@ -1640,15 +1646,22 @@ while (_PyDict_Next(other, &pos, &key, &value, &hash)) { setentry an_entry; + Py_INCREF(key); an_entry.hash = hash; an_entry.key = key; + rv = set_discard_entry(so, &an_entry); - if (rv == -1) + if (rv == -1) { + Py_DECREF(key); return NULL; + } if (rv == DISCARD_NOTFOUND) { - if (set_add_entry(so, &an_entry) == -1) + if (set_add_entry(so, &an_entry) == -1) { + Py_DECREF(key); return NULL; + } } + Py_DECREF(key); } Py_RETURN_NONE; } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 03:11:52 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 23 Mar 2011 03:11:52 +0100 Subject: [Python-checkins] cpython (3.2): Use transient_internet() consistently in test_imaplib Message-ID: http://hg.python.org/cpython/rev/cad0b70066ef changeset: 68857:cad0b70066ef branch: 3.2 parent: 68853:a1e685ceb3bd user: Antoine Pitrou date: Wed Mar 23 03:10:14 2011 +0100 summary: Use transient_internet() consistently in test_imaplib files: Lib/test/test_imaplib.py diff --git a/Lib/test/test_imaplib.py b/Lib/test/test_imaplib.py --- a/Lib/test/test_imaplib.py +++ b/Lib/test/test_imaplib.py @@ -219,20 +219,23 @@ def tearDown(self): if self.server is not None: - self.server.logout() + with transient_internet(self.host): + self.server.logout() def test_logincapa(self): - for cap in self.server.capabilities: - self.assertIsInstance(cap, str) - self.assertTrue('LOGINDISABLED' in self.server.capabilities) - self.assertTrue('AUTH=ANONYMOUS' in self.server.capabilities) - rs = self.server.login(self.username, self.password) - self.assertEqual(rs[0], 'OK') + with transient_internet(self.host): + for cap in self.server.capabilities: + self.assertIsInstance(cap, str) + self.assertTrue('LOGINDISABLED' in self.server.capabilities) + self.assertTrue('AUTH=ANONYMOUS' in self.server.capabilities) + rs = self.server.login(self.username, self.password) + self.assertEqual(rs[0], 'OK') def test_logout(self): - rs = self.server.logout() - self.server = None - self.assertEqual(rs[0], 'BYE') + with transient_internet(self.host): + rs = self.server.logout() + self.server = None + self.assertEqual(rs[0], 'BYE') @unittest.skipUnless(ssl, "SSL not available") @@ -240,8 +243,9 @@ def setUp(self): super().setUp() - rs = self.server.starttls() - self.assertEqual(rs[0], 'OK') + with transient_internet(self.host): + rs = self.server.starttls() + self.assertEqual(rs[0], 'OK') def test_logincapa(self): for cap in self.server.capabilities: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 03:11:55 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 23 Mar 2011 03:11:55 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Use transient_internet() consistently in test_imaplib Message-ID: http://hg.python.org/cpython/rev/fefd2a36e61b changeset: 68858:fefd2a36e61b parent: 68854:997271aebd69 parent: 68857:cad0b70066ef user: Antoine Pitrou date: Wed Mar 23 03:11:21 2011 +0100 summary: Use transient_internet() consistently in test_imaplib files: diff --git a/Lib/test/test_imaplib.py b/Lib/test/test_imaplib.py --- a/Lib/test/test_imaplib.py +++ b/Lib/test/test_imaplib.py @@ -219,20 +219,23 @@ def tearDown(self): if self.server is not None: - self.server.logout() + with transient_internet(self.host): + self.server.logout() def test_logincapa(self): - for cap in self.server.capabilities: - self.assertIsInstance(cap, str) - self.assertTrue('LOGINDISABLED' in self.server.capabilities) - self.assertTrue('AUTH=ANONYMOUS' in self.server.capabilities) - rs = self.server.login(self.username, self.password) - self.assertEqual(rs[0], 'OK') + with transient_internet(self.host): + for cap in self.server.capabilities: + self.assertIsInstance(cap, str) + self.assertTrue('LOGINDISABLED' in self.server.capabilities) + self.assertTrue('AUTH=ANONYMOUS' in self.server.capabilities) + rs = self.server.login(self.username, self.password) + self.assertEqual(rs[0], 'OK') def test_logout(self): - rs = self.server.logout() - self.server = None - self.assertEqual(rs[0], 'BYE') + with transient_internet(self.host): + rs = self.server.logout() + self.server = None + self.assertEqual(rs[0], 'BYE') @unittest.skipUnless(ssl, "SSL not available") @@ -240,8 +243,9 @@ def setUp(self): super().setUp() - rs = self.server.starttls() - self.assertEqual(rs[0], 'OK') + with transient_internet(self.host): + rs = self.server.starttls() + self.assertEqual(rs[0], 'OK') def test_logincapa(self): for cap in self.server.capabilities: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 04:53:53 2011 From: python-checkins at python.org (eric.araujo) Date: Wed, 23 Mar 2011 04:53:53 +0100 Subject: [Python-checkins] cpython: Do not touch sys.path when site is imported and python was started with -S. Message-ID: http://hg.python.org/cpython/rev/a364719e400a changeset: 68859:a364719e400a parent: 68854:997271aebd69 user: ?ric Araujo date: Wed Mar 23 02:06:24 2011 +0100 summary: Do not touch sys.path when site is imported and python was started with -S. Original patch by Carl Meyer, review by Brett Cannon, small doc editions by yours truly. Fixes #11591. files: Doc/library/site.rst Doc/using/cmdline.rst Doc/whatsnew/3.3.rst Lib/site.py Misc/NEWS Misc/python.man diff --git a/Doc/library/site.rst b/Doc/library/site.rst --- a/Doc/library/site.rst +++ b/Doc/library/site.rst @@ -13,7 +13,11 @@ .. index:: triple: module; search; path -Importing this module will append site-specific paths to the module search path. +Importing this module will append site-specific paths to the module search +path, unless :option:`-S` was used. In that case, this module can be safely +imported with no automatic modifications to the module search path. To +explicitly trigger the usual site-specific additions, call the +:func:`site.main` function. .. index:: pair: site-python; directory @@ -114,6 +118,13 @@ .. envvar:: PYTHONUSERBASE +.. function:: main() + + Adds all the standard site-specific directories to the module search + path. This function is called automatically when this module is imported, + unless the :program:`python` interpreter was started with the :option:`-S` + flag. + .. function:: addsitedir(sitedir, known_paths=None) Adds a directory to sys.path and processes its pth files. diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -239,7 +239,9 @@ .. cmdoption:: -S Disable the import of the module :mod:`site` and the site-dependent - manipulations of :data:`sys.path` that it entails. + manipulations of :data:`sys.path` that it entails. Also disable these + manipulations if :mod:`site` is explicitly imported later (call + :func:`site.main` if you want them to be triggered). .. cmdoption:: -u diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -128,3 +128,8 @@ * Stub + +.. Issue #11591: When :program:`python` was started with :option:`-S`, + ``import site`` will not add site-specific paths to the module search + paths. In previous versions, it did. See changeset for doc changes in + various files. Contributed by Carl Meyer with editions by ?ric Araujo. diff --git a/Lib/site.py b/Lib/site.py --- a/Lib/site.py +++ b/Lib/site.py @@ -508,6 +508,11 @@ def main(): + """Add standard site-specific directories to the module search path. + + This function is called automatically when this module is imported, + unless the python interpreter was started with the -S flag. + """ global ENABLE_USER_SITE abs_paths() @@ -526,7 +531,10 @@ if ENABLE_USER_SITE: execusercustomize() -main() +# Prevent edition of sys.path when python was started with -S and +# site is imported later. +if not sys.flags.no_site: + main() def _script(): help = """\ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -81,12 +81,15 @@ Library ------- +- Issue #11591: Prevent "import site" from modifying sys.path when python + was started with -S. + - Issue #11371: Mark getopt error messages as localizable. Patch by Filip Gruszczy?ski. - Issue #11333: Add __slots__ to collections ABCs. -- Issue #11628: cmp_to_key generated class should use __slots__ +- Issue #11628: cmp_to_key generated class should use __slots__. - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. diff --git a/Misc/python.man b/Misc/python.man --- a/Misc/python.man +++ b/Misc/python.man @@ -169,7 +169,9 @@ .I site and the site-dependent manipulations of .I sys.path -that it entails. +that it entails. Also disable these manipulations if +.I site +is explicitly imported later. .TP .B \-u Force the binary I/O layers of stdin, stdout and stderr to be unbuffered. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 04:53:53 2011 From: python-checkins at python.org (eric.araujo) Date: Wed, 23 Mar 2011 04:53:53 +0100 Subject: [Python-checkins] cpython (3.1): Fix obscure set crashers (#8420). Backport of d56b3cafb1e6, reviewed by Message-ID: http://hg.python.org/cpython/rev/57657393ceaf changeset: 68860:57657393ceaf branch: 3.1 parent: 68852:6853b480e388 user: ?ric Araujo date: Wed Mar 23 02:08:07 2011 +0100 summary: Fix obscure set crashers (#8420). Backport of d56b3cafb1e6, reviewed by Raymond. files: Lib/test/test_set.py Objects/setobject.c diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py --- a/Lib/test/test_set.py +++ b/Lib/test/test_set.py @@ -1660,6 +1660,39 @@ self.assertRaises(TypeError, getattr(set('january'), methname), N(data)) self.assertRaises(ZeroDivisionError, getattr(set('january'), methname), E(data)) +class bad_eq: + def __eq__(self, other): + if be_bad: + set2.clear() + raise ZeroDivisionError + return self is other + def __hash__(self): + return 0 + +class bad_dict_clear: + def __eq__(self, other): + if be_bad: + dict2.clear() + return self is other + def __hash__(self): + return 0 + +class TestWeirdBugs(unittest.TestCase): + def test_8420_set_merge(self): + # This used to segfault + global be_bad, set2, dict2 + be_bad = False + set1 = {bad_eq()} + set2 = {bad_eq() for i in range(75)} + be_bad = True + self.assertRaises(ZeroDivisionError, set1.update, set2) + + be_bad = False + set1 = {bad_dict_clear()} + dict2 = {bad_dict_clear(): None} + be_bad = True + set1.symmetric_difference_update(dict2) + # Application tests (based on David Eppstein's graph recipes ==================================== def powerset(U): @@ -1804,6 +1837,7 @@ TestIdentities, TestVariousIteratorArgs, TestGraphs, + TestWeirdBugs, ) support.run_unittest(*test_classes) diff --git a/Objects/setobject.c b/Objects/setobject.c --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -364,12 +364,14 @@ set_add_entry(register PySetObject *so, setentry *entry) { register Py_ssize_t n_used; + PyObject *key = entry->key; + long hash = entry->hash; assert(so->fill <= so->mask); /* at least one empty slot */ n_used = so->used; - Py_INCREF(entry->key); - if (set_insert_key(so, entry->key, (long) entry->hash) == -1) { - Py_DECREF(entry->key); + Py_INCREF(key); + if (set_insert_key(so, key, hash) == -1) { + Py_DECREF(key); return -1; } if (!(so->used > n_used && so->fill*3 >= (so->mask+1)*2)) @@ -637,6 +639,8 @@ set_merge(PySetObject *so, PyObject *otherset) { PySetObject *other; + PyObject *key; + long hash; register Py_ssize_t i; register setentry *entry; @@ -657,11 +661,13 @@ } for (i = 0; i <= other->mask; i++) { entry = &other->table[i]; - if (entry->key != NULL && - entry->key != dummy) { - Py_INCREF(entry->key); - if (set_insert_key(so, entry->key, (long) entry->hash) == -1) { - Py_DECREF(entry->key); + key = entry->key; + hash = entry->hash; + if (key != NULL && + key != dummy) { + Py_INCREF(key); + if (set_insert_key(so, key, hash) == -1) { + Py_DECREF(key); return -1; } } @@ -1642,15 +1648,22 @@ while (_PyDict_Next(other, &pos, &key, &value, &hash)) { setentry an_entry; + Py_INCREF(key); an_entry.hash = hash; an_entry.key = key; + rv = set_discard_entry(so, &an_entry); - if (rv == -1) + if (rv == -1) { + Py_DECREF(key); return NULL; + } if (rv == DISCARD_NOTFOUND) { - if (set_add_entry(so, &an_entry) == -1) + if (set_add_entry(so, &an_entry) == -1) { + Py_DECREF(key); return NULL; + } } + Py_DECREF(key); } Py_RETURN_NONE; } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 04:53:57 2011 From: python-checkins at python.org (eric.araujo) Date: Wed, 23 Mar 2011 04:53:57 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge from 3.1. Message-ID: http://hg.python.org/cpython/rev/4fb6dfa8d08c changeset: 68861:4fb6dfa8d08c branch: 3.2 parent: 68853:a1e685ceb3bd parent: 68860:57657393ceaf user: ?ric Araujo date: Wed Mar 23 03:43:22 2011 +0100 summary: Merge from 3.1. The fix was already committed to 3.2, but I merged two small changes recommended by Raymond while I was working on the 2.7 patch to ease future merges. files: Lib/test/test_set.py Objects/setobject.c diff --git a/Objects/setobject.c b/Objects/setobject.c --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -365,11 +365,12 @@ { register Py_ssize_t n_used; PyObject *key = entry->key; + Py_hash_t hash = entry->hash; assert(so->fill <= so->mask); /* at least one empty slot */ n_used = so->used; Py_INCREF(key); - if (set_insert_key(so, key, entry->hash) == -1) { + if (set_insert_key(so, key, hash) == -1) { Py_DECREF(key); return -1; } @@ -639,6 +640,7 @@ { PySetObject *other; PyObject *key; + Py_hash_t hash; register Py_ssize_t i; register setentry *entry; @@ -660,10 +662,11 @@ for (i = 0; i <= other->mask; i++) { entry = &other->table[i]; key = entry->key; + hash = entry->hash; if (key != NULL && key != dummy) { Py_INCREF(key); - if (set_insert_key(so, key, entry->hash) == -1) { + if (set_insert_key(so, key, hash) == -1) { Py_DECREF(key); return -1; } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 04:54:03 2011 From: python-checkins at python.org (eric.araujo) Date: Wed, 23 Mar 2011 04:54:03 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge from 3.2. Message-ID: http://hg.python.org/cpython/rev/85ffaa4e60e9 changeset: 68862:85ffaa4e60e9 parent: 68859:a364719e400a parent: 68861:4fb6dfa8d08c user: ?ric Araujo date: Wed Mar 23 04:40:51 2011 +0100 summary: Merge from 3.2. The fix was already present in 3.3, but I merged two small changes recommended by Raymond while I was working on the 2.7 patch to ease future merges. files: diff --git a/Objects/setobject.c b/Objects/setobject.c --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -365,11 +365,12 @@ { register Py_ssize_t n_used; PyObject *key = entry->key; + Py_hash_t hash = entry->hash; assert(so->fill <= so->mask); /* at least one empty slot */ n_used = so->used; Py_INCREF(key); - if (set_insert_key(so, key, entry->hash) == -1) { + if (set_insert_key(so, key, hash) == -1) { Py_DECREF(key); return -1; } @@ -639,6 +640,7 @@ { PySetObject *other; PyObject *key; + Py_hash_t hash; register Py_ssize_t i; register setentry *entry; @@ -660,10 +662,11 @@ for (i = 0; i <= other->mask; i++) { entry = &other->table[i]; key = entry->key; + hash = entry->hash; if (key != NULL && key != dummy) { Py_INCREF(key); - if (set_insert_key(so, key, entry->hash) == -1) { + if (set_insert_key(so, key, hash) == -1) { Py_DECREF(key); return -1; } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 04:54:06 2011 From: python-checkins at python.org (eric.araujo) Date: Wed, 23 Mar 2011 04:54:06 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> 3.2): Branch merge Message-ID: http://hg.python.org/cpython/rev/b93559ee4390 changeset: 68863:b93559ee4390 branch: 3.2 parent: 68857:cad0b70066ef parent: 68861:4fb6dfa8d08c user: ?ric Araujo date: Wed Mar 23 04:52:08 2011 +0100 summary: Branch merge files: diff --git a/Objects/setobject.c b/Objects/setobject.c --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -365,11 +365,12 @@ { register Py_ssize_t n_used; PyObject *key = entry->key; + Py_hash_t hash = entry->hash; assert(so->fill <= so->mask); /* at least one empty slot */ n_used = so->used; Py_INCREF(key); - if (set_insert_key(so, key, entry->hash) == -1) { + if (set_insert_key(so, key, hash) == -1) { Py_DECREF(key); return -1; } @@ -639,6 +640,7 @@ { PySetObject *other; PyObject *key; + Py_hash_t hash; register Py_ssize_t i; register setentry *entry; @@ -660,10 +662,11 @@ for (i = 0; i <= other->mask; i++) { entry = &other->table[i]; key = entry->key; + hash = entry->hash; if (key != NULL && key != dummy) { Py_INCREF(key); - if (set_insert_key(so, key, entry->hash) == -1) { + if (set_insert_key(so, key, hash) == -1) { Py_DECREF(key); return -1; } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 04:54:07 2011 From: python-checkins at python.org (eric.araujo) Date: Wed, 23 Mar 2011 04:54:07 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge from 3.2 Message-ID: http://hg.python.org/cpython/rev/ab0379ff1db7 changeset: 68864:ab0379ff1db7 parent: 68858:fefd2a36e61b parent: 68863:b93559ee4390 user: ?ric Araujo date: Wed Mar 23 04:52:45 2011 +0100 summary: Merge from 3.2 files: diff --git a/Objects/setobject.c b/Objects/setobject.c --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -365,11 +365,12 @@ { register Py_ssize_t n_used; PyObject *key = entry->key; + Py_hash_t hash = entry->hash; assert(so->fill <= so->mask); /* at least one empty slot */ n_used = so->used; Py_INCREF(key); - if (set_insert_key(so, key, entry->hash) == -1) { + if (set_insert_key(so, key, hash) == -1) { Py_DECREF(key); return -1; } @@ -639,6 +640,7 @@ { PySetObject *other; PyObject *key; + Py_hash_t hash; register Py_ssize_t i; register setentry *entry; @@ -660,10 +662,11 @@ for (i = 0; i <= other->mask; i++) { entry = &other->table[i]; key = entry->key; + hash = entry->hash; if (key != NULL && key != dummy) { Py_INCREF(key); - if (set_insert_key(so, key, entry->hash) == -1) { + if (set_insert_key(so, key, hash) == -1) { Py_DECREF(key); return -1; } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 04:54:14 2011 From: python-checkins at python.org (eric.araujo) Date: Wed, 23 Mar 2011 04:54:14 +0100 Subject: [Python-checkins] cpython (merge default -> default): Branch merge Message-ID: http://hg.python.org/cpython/rev/4a9e82d218fa changeset: 68865:4a9e82d218fa parent: 68864:ab0379ff1db7 parent: 68862:85ffaa4e60e9 user: ?ric Araujo date: Wed Mar 23 04:53:10 2011 +0100 summary: Branch merge files: diff --git a/Doc/library/site.rst b/Doc/library/site.rst --- a/Doc/library/site.rst +++ b/Doc/library/site.rst @@ -13,7 +13,11 @@ .. index:: triple: module; search; path -Importing this module will append site-specific paths to the module search path. +Importing this module will append site-specific paths to the module search +path, unless :option:`-S` was used. In that case, this module can be safely +imported with no automatic modifications to the module search path. To +explicitly trigger the usual site-specific additions, call the +:func:`site.main` function. .. index:: pair: site-python; directory @@ -114,6 +118,13 @@ .. envvar:: PYTHONUSERBASE +.. function:: main() + + Adds all the standard site-specific directories to the module search + path. This function is called automatically when this module is imported, + unless the :program:`python` interpreter was started with the :option:`-S` + flag. + .. function:: addsitedir(sitedir, known_paths=None) Adds a directory to sys.path and processes its pth files. diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -239,7 +239,9 @@ .. cmdoption:: -S Disable the import of the module :mod:`site` and the site-dependent - manipulations of :data:`sys.path` that it entails. + manipulations of :data:`sys.path` that it entails. Also disable these + manipulations if :mod:`site` is explicitly imported later (call + :func:`site.main` if you want them to be triggered). .. cmdoption:: -u diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -128,3 +128,8 @@ * Stub + +.. Issue #11591: When :program:`python` was started with :option:`-S`, + ``import site`` will not add site-specific paths to the module search + paths. In previous versions, it did. See changeset for doc changes in + various files. Contributed by Carl Meyer with editions by ?ric Araujo. diff --git a/Lib/site.py b/Lib/site.py --- a/Lib/site.py +++ b/Lib/site.py @@ -508,6 +508,11 @@ def main(): + """Add standard site-specific directories to the module search path. + + This function is called automatically when this module is imported, + unless the python interpreter was started with the -S flag. + """ global ENABLE_USER_SITE abs_paths() @@ -526,7 +531,10 @@ if ENABLE_USER_SITE: execusercustomize() -main() +# Prevent edition of sys.path when python was started with -S and +# site is imported later. +if not sys.flags.no_site: + main() def _script(): help = """\ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -81,12 +81,15 @@ Library ------- +- Issue #11591: Prevent "import site" from modifying sys.path when python + was started with -S. + - Issue #11371: Mark getopt error messages as localizable. Patch by Filip Gruszczy?ski. - Issue #11333: Add __slots__ to collections ABCs. -- Issue #11628: cmp_to_key generated class should use __slots__ +- Issue #11628: cmp_to_key generated class should use __slots__. - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. diff --git a/Misc/python.man b/Misc/python.man --- a/Misc/python.man +++ b/Misc/python.man @@ -169,7 +169,9 @@ .I site and the site-dependent manipulations of .I sys.path -that it entails. +that it entails. Also disable these manipulations if +.I site +is explicitly imported later. .TP .B \-u Force the binary I/O layers of stdin, stdout and stderr to be unbuffered. -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Wed Mar 23 05:05:46 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Wed, 23 Mar 2011 05:05:46 +0100 Subject: [Python-checkins] Daily reference leaks (fefd2a36e61b): sum=0 Message-ID: results for fefd2a36e61b on branch "default" -------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogWgVA7R', '-x'] From python-checkins at python.org Wed Mar 23 05:23:06 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 23 Mar 2011 05:23:06 +0100 Subject: [Python-checkins] cpython: Factor-out named tuple class definition template strings. Message-ID: http://hg.python.org/cpython/rev/2778904ba2e2 changeset: 68866:2778904ba2e2 user: Raymond Hettinger date: Tue Mar 22 21:14:41 2011 -0700 summary: Factor-out named tuple class definition template strings. files: Lib/collections/__init__.py diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -233,10 +233,58 @@ ### namedtuple ################################################################################ +_class_template = '''\ +class {typename}(tuple): + '{typename}({arg_list})' + + __slots__ = () + + _fields = {field_names!r} + + def __new__(_cls, {arg_list}): + 'Create new instance of {typename}({arg_list})' + return _tuple.__new__(_cls, ({arg_list})) + + @classmethod + def _make(cls, iterable, new=tuple.__new__, len=len): + 'Make a new {typename} object from a sequence or iterable' + result = new(cls, iterable) + if len(result) != {num_fields:d}: + raise TypeError('Expected {num_fields:d} arguments, got %d' % len(result)) + return result + + def __repr__(self): + 'Return a nicely formatted representation string' + return self.__class__.__name__ + '({repr_fmt})' % self + + def _asdict(self): + 'Return a new OrderedDict which maps field names to their values' + return OrderedDict(zip(self._fields, self)) + + def _replace(_self, **kwds): + 'Return a new {typename} object replacing specified fields with new values' + result = _self._make(map(kwds.pop, {field_names!r}, _self)) + if kwds: + raise ValueError('Got unexpected field names: %r' % kwds.keys()) + return result + + def __getnewargs__(self): + 'Return self as a plain tuple. Used by copy and pickle.' + return tuple(self) + +{field_defs} +''' + +_repr_template = '{name}=%r' + +_field_template = '''\ + {name} = _property(_itemgetter({index:d}), doc='Alias for field number {index:d}') +''' + def namedtuple(typename, field_names, verbose=False, rename=False): """Returns a new subclass of tuple with named fields. - >>> Point = namedtuple('Point', 'x y') + >>> Point = namedtuple('Point', ['x', 'y']) >>> Point.__doc__ # docstring for the new class 'Point(x, y)' >>> p = Point(11, y=22) # instantiate with positional args or keywords @@ -287,66 +335,27 @@ raise ValueError('Encountered duplicate field name: %r' % name) seen_names.add(name) - # Create and fill-in the class template - template = '''class {typename}(tuple): - '{typename}({argtxt})' - - __slots__ = () - - _fields = {field_names!r} - - def __new__(_cls, {argtxt}): - 'Create new instance of {typename}({argtxt})' - return _tuple.__new__(_cls, ({argtxt})) - - @classmethod - def _make(cls, iterable, new=tuple.__new__, len=len): - 'Make a new {typename} object from a sequence or iterable' - result = new(cls, iterable) - if len(result) != {numfields:d}: - raise TypeError('Expected {numfields:d} arguments, got %d' % len(result)) - return result - - def __repr__(self): - 'Return a nicely formatted representation string' - return self.__class__.__name__ + '({reprtxt})' % self - - def _asdict(self): - 'Return a new OrderedDict which maps field names to their values' - return OrderedDict(zip(self._fields, self)) - - def _replace(_self, **kwds): - 'Return a new {typename} object replacing specified fields with new values' - result = _self._make(map(kwds.pop, {field_names!r}, _self)) - if kwds: - raise ValueError('Got unexpected field names: %r' % kwds.keys()) - return result - - def __getnewargs__(self): - 'Return self as a plain tuple. Used by copy and pickle.' - return tuple(self) - -''' - template = template.format( + # Fill-in the class template + class_definition = _class_template.format( typename = typename, field_names = field_names, - argtxt = repr(field_names).replace("'", "")[1:-1], - numfields = len(field_names), - reprtxt = ', '.join('{}=%r'.format(name) for name in field_names), + num_fields = len(field_names), + arg_list = repr(field_names).replace("'", "")[1:-1], + repr_fmt = ', '.join(_repr_template.format(name=name) for name in field_names), + field_defs = '\n'.join(_field_template.format(index=index, name=name) + for index, name in enumerate(field_names)) ) - for i, name in enumerate(field_names): - template += " %s = _property(_itemgetter(%d), doc='Alias for field number %d')\n" % (name, i, i) if verbose: - print(template) + print(class_definition) - # Execute the template string in a temporary namespace and + # Execute the class definition string in a temporary namespace and # support tracing utilities by setting a value for frame.f_globals['__name__'] namespace = dict(_itemgetter=_itemgetter, __name__='namedtuple_%s' % typename, OrderedDict=OrderedDict, _property=property, _tuple=tuple) try: - exec(template, namespace) + exec(class_definition, namespace) except SyntaxError as e: - raise SyntaxError(e.msg + ':\n\n' + template) + raise SyntaxError(e.msg + ':\n\n' + class_definition) result = namespace[typename] # For pickling to work, the __module__ variable needs to be set to the frame -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 06:36:32 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 23 Mar 2011 06:36:32 +0100 Subject: [Python-checkins] cpython: Minor named tuple clean-ups. Message-ID: http://hg.python.org/cpython/rev/fff9c264a92f changeset: 68867:fff9c264a92f user: Raymond Hettinger date: Tue Mar 22 22:36:21 2011 -0700 summary: Minor named tuple clean-ups. files: Doc/library/collections.rst Lib/collections/__init__.py diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -711,47 +711,48 @@ >>> p = Point(x=10, y=11) >>> # Example using the verbose option to print the class definition - >>> Point = namedtuple('Point', 'x y', verbose=True) + >>> Point = namedtuple('Point', ['x', 'y'], verbose=True) class Point(tuple): - 'Point(x, y)' + 'Point(x, y)' - __slots__ = () + __slots__ = () - _fields = ('x', 'y') + _fields = ('x', 'y') - def __new__(_cls, x, y): - 'Create a new instance of Point(x, y)' - return _tuple.__new__(_cls, (x, y)) + def __new__(_cls, x, y): + 'Create a new instance of Point(x, y)' + return _tuple.__new__(_cls, (x, y)) - @classmethod - def _make(cls, iterable, new=tuple.__new__, len=len): - 'Make a new Point object from a sequence or iterable' - result = new(cls, iterable) - if len(result) != 2: - raise TypeError('Expected 2 arguments, got %d' % len(result)) - return result + @classmethod + def _make(cls, iterable, new=tuple.__new__, len=len): + 'Make a new Point object from a sequence or iterable' + result = new(cls, iterable) + if len(result) != 2: + raise TypeError('Expected 2 arguments, got %d' % len(result)) + return result - def __repr__(self): - 'Return a nicely formatted representation string' - return self.__class__.__name__ + '(x=%r, y=%r)' % self + def __repr__(self): + 'Return a nicely formatted representation string' + return self.__class__.__name__ + '(x=%r, y=%r)' % self - def _asdict(self): - 'Return a new OrderedDict which maps field names to their values' - return OrderedDict(zip(self._fields, self)) + def _asdict(self): + 'Return a new OrderedDict which maps field names to their values' + return OrderedDict(zip(self._fields, self)) - def _replace(_self, **kwds): - 'Return a new Point object replacing specified fields with new values' - result = _self._make(map(kwds.pop, ('x', 'y'), _self)) - if kwds: - raise ValueError('Got unexpected field names: %r' % list(kwds.keys())) - return result + def _replace(_self, **kwds): + 'Return a new Point object replacing specified fields with new values' + result = _self._make(map(kwds.pop, ('x', 'y'), _self)) + if kwds: + raise ValueError('Got unexpected field names: %r' % list(kwds)) + return result - def __getnewargs__(self): - 'Return self as a plain tuple. Used by copy and pickle.' - return tuple(self) + def __getnewargs__(self): + 'Return self as a plain tuple. Used by copy and pickle.' + return tuple(self) - x = _property(_itemgetter(0), doc='Alias for field number 0') - y = _property(_itemgetter(1), doc='Alias for field number 1') + x = _property(_itemgetter(0), doc='Alias for field number 0') + + y = _property(_itemgetter(1), doc='Alias for field number 1') >>> p = Point(11, y=22) # instantiate with positional or keyword arguments >>> p[0] + p[1] # indexable like the plain tuple (11, 22) @@ -867,7 +868,6 @@ The subclass shown above sets ``__slots__`` to an empty tuple. This helps keep memory requirements low by preventing the creation of instance dictionaries. - Subclassing is not useful for adding new, stored fields. Instead, simply create a new named tuple type from the :attr:`_fields` attribute: @@ -879,6 +879,7 @@ >>> Account = namedtuple('Account', 'owner balance transaction_count') >>> default_account = Account('', 0.0, 0) >>> johns_account = default_account._replace(owner='John') + >>> janes_account = default_account._replace(owner='Jane') Enumerated constants can be implemented with named tuples, but it is simpler and more efficient to use a simple class declaration: diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -265,7 +265,7 @@ 'Return a new {typename} object replacing specified fields with new values' result = _self._make(map(kwds.pop, {field_names!r}, _self)) if kwds: - raise ValueError('Got unexpected field names: %r' % kwds.keys()) + raise ValueError('Got unexpected field names: %r' % list(kwds)) return result def __getnewargs__(self): @@ -309,18 +309,17 @@ # generating informative error messages and preventing template injection attacks. if isinstance(field_names, str): field_names = field_names.replace(',', ' ').split() # names separated by whitespace and/or commas - field_names = tuple(map(str, field_names)) + field_names = list(map(str, field_names)) if rename: - names = list(field_names) seen = set() - for i, name in enumerate(names): - if (not all(c.isalnum() or c=='_' for c in name) or _iskeyword(name) + for index, name in enumerate(field_names): + if (not all(c.isalnum() or c=='_' for c in name) + or _iskeyword(name) or not name or name[0].isdigit() or name.startswith('_') or name in seen): - names[i] = '_%d' % i + field_names[index] = '_%d' % index seen.add(name) - field_names = tuple(names) - for name in (typename,) + field_names: + for name in [typename] + field_names: if not all(c.isalnum() or c=='_' for c in name): raise ValueError('Type names and field names can only contain alphanumeric characters and underscores: %r' % name) if _iskeyword(name): @@ -338,9 +337,9 @@ # Fill-in the class template class_definition = _class_template.format( typename = typename, - field_names = field_names, + field_names = tuple(field_names), num_fields = len(field_names), - arg_list = repr(field_names).replace("'", "")[1:-1], + arg_list = repr(tuple(field_names)).replace("'", "")[1:-1], repr_fmt = ', '.join(_repr_template.format(name=name) for name in field_names), field_defs = '\n'.join(_field_template.format(index=index, name=name) for index, name in enumerate(field_names)) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 06:57:57 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 23 Mar 2011 06:57:57 +0100 Subject: [Python-checkins] cpython: Fix set representation in an example. Message-ID: http://hg.python.org/cpython/rev/267578b2422d changeset: 68868:267578b2422d user: Raymond Hettinger date: Tue Mar 22 22:57:49 2011 -0700 summary: Fix set representation in an example. files: Doc/library/collections.rst diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -661,7 +661,7 @@ ... d[k].add(v) ... >>> list(d.items()) - [('blue', set([2, 4])), ('red', set([1, 3]))] + [('blue', {2, 4}), ('red', {1, 3})] :func:`namedtuple` Factory Function for Tuples with Named Fields -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 10:20:19 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 10:20:19 +0100 (CET) Subject: [Python-checkins] r88787 - peps/trunk/pep-0397.txt Message-ID: <3Pvljb6Bqbz7Ljm@mail.python.org> Author: georg.brandl Date: Wed Mar 23 10:20:19 2011 New Revision: 88787 Log: Fix a PEP header that prevents genpepindex from running. Modified: peps/trunk/pep-0397.txt Modified: peps/trunk/pep-0397.txt ============================================================================== --- peps/trunk/pep-0397.txt (original) +++ peps/trunk/pep-0397.txt Wed Mar 23 10:20:19 2011 @@ -4,7 +4,7 @@ Last-Modified: $Date$ Author: Mark Hammond Status: Draft -Type: Standards Track or Informational ????? +Type: Standards Track Content-Type: text/x-rst Created: 15-Mar-2011 From python-checkins at python.org Wed Mar 23 10:22:38 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 10:22:38 +0100 (CET) Subject: [Python-checkins] r88788 - peps/trunk/pep-0397.txt Message-ID: <3PvlmG3zy1z7Ljm@mail.python.org> Author: georg.brandl Date: Wed Mar 23 10:22:38 2011 New Revision: 88788 Log: Fix PEP content type. Modified: peps/trunk/pep-0397.txt Modified: peps/trunk/pep-0397.txt ============================================================================== --- peps/trunk/pep-0397.txt (original) +++ peps/trunk/pep-0397.txt Wed Mar 23 10:22:38 2011 @@ -5,7 +5,7 @@ Author: Mark Hammond Status: Draft Type: Standards Track -Content-Type: text/x-rst +Content-Type: text/plain Created: 15-Mar-2011 From python-checkins at python.org Wed Mar 23 16:29:20 2011 From: python-checkins at python.org (local-hg) Date: Wed, 23 Mar 2011 16:29:20 +0100 Subject: [Python-checkins] hooks: Use diffstat instead of ctx.files() to report summary of changed files. Message-ID: http://hg.python.org/hooks/rev/b35f1e6f37d5 changeset: 67:b35f1e6f37d5 user: Antoine Pitrou date: Wed Mar 23 16:29:20 2011 +0100 summary: Use diffstat instead of ctx.files() to report summary of changed files. This should fix the inconsistent display of changed files in merge changesets. files: mail.py | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/mail.py b/mail.py --- a/mail.py +++ b/mail.py @@ -9,6 +9,7 @@ from mercurial import cmdutil, patch from mercurial.node import nullid from mercurial.encoding import fromlocal +from mercurial.util import iterlines import smtplib import os import sys @@ -52,15 +53,19 @@ body += [CSET_URL % (path, ctx)] body += [line for line in log.splitlines()[:-2] if line != 'tag: tip'] - body += ['summary:\n ' + fromlocal(ctx.description()), ''] - body += ['files:\n ' + '\n '.join(ctx.files()), ''] + body += ['summary:\n ' + fromlocal(ctx.description())] + # ctx.files() gives us misleading info on merges, we use a diffstat instead + body += ['', 'files:'] diffopts = patch.diffopts(repo.ui, {'git': True, 'showfunc': True}) parents = ctx.parents() node1 = parents and parents[0].node() or nullid node2 = ctx.node() - differ = patch.diff(repo, node1, node2, opts=diffopts) - body.append(''.join(chunk for chunk in differ)) + diffchunks = list(patch.diff(repo, node1, node2, opts=diffopts)) + body.append(''.join(line for line in + patch.diffstat(iterlines(diffchunks), width=60, git=True) + )) + body.append(''.join(chunk for chunk in diffchunks)) body.append('-- ') body.append('Repository URL: %s%s' % (BASE, path)) -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Wed Mar 23 16:36:31 2011 From: python-checkins at python.org (ezio.melotti) Date: Wed, 23 Mar 2011 16:36:31 +0100 (CET) Subject: [Python-checkins] r88789 - tracker/instances/python-dev/detectors/autonosy.py Message-ID: <3Pvw3g5D0rz7Lq8@mail.python.org> Author: ezio.melotti Date: Wed Mar 23 16:36:31 2011 New Revision: 88789 Log: #368: update the nosy list only when necessary. Modified: tracker/instances/python-dev/detectors/autonosy.py Modified: tracker/instances/python-dev/detectors/autonosy.py ============================================================================== --- tracker/instances/python-dev/detectors/autonosy.py (original) +++ tracker/instances/python-dev/detectors/autonosy.py Wed Mar 23 16:36:31 2011 @@ -1,5 +1,8 @@ -# Auditor to automatically add users as nosy to issues when -# the component field gets set +# This auditor automatically adds users and release managers to the nosy +# list when the component fields gets set and the priority is changed to +# 'release blocker' respectively. +# See also the nosyreaction.py script (they should probably be merged to a +# single script). # Python 2.3 ... 2.6 compatibility: from roundup.anypy.sets_ import set @@ -14,19 +17,26 @@ def autonosy(db, cl, nodeid, newvalues): components = newvalues.get('components', []) - nosy = set() + current_nosy = set() if 'nosy' in newvalues: - new_nosy = newvalues.get('nosy', []) - new_nosy = [value for value in new_nosy if db.hasnode('user', value)] - nosy |= set(new_nosy) + # the nosy list changed + # newvalues['nosy'] contains all the user ids (new and old) + nosy = newvalues.get('nosy', []) + nosy = [value for value in nosy if db.hasnode('user', value)] + current_nosy |= set(nosy) else: if nodeid: + # the issue already exists + # get the values that were already in the nosy old_nosy = db.issue.get(nodeid, 'nosy') - nosy |= set(old_nosy) + current_nosy |= set(old_nosy) + + # make a copy of the current_nosy where to add the new user ids + new_nosy = set(current_nosy) for component in components: users = db.component.get(component, 'add_as_nosy') - nosy |= set(users) + new_nosy |= set(users) # get the new values if they changed or the already-set ones if they didn't if 'priority' in newvalues: @@ -49,9 +59,11 @@ for version in versions: name = db.version.get(version, 'name') if name in RELEASE_MANAGERS: - nosy.add(RELEASE_MANAGERS[name]) + new_nosy.add(RELEASE_MANAGERS[name]) - newvalues['nosy'] = list(nosy) + if current_nosy != new_nosy: + # some user ids have been added automatically, so update the nosy + newvalues['nosy'] = list(new_nosy) def init(db): From python-checkins at python.org Wed Mar 23 19:14:12 2011 From: python-checkins at python.org (mark.dickinson) Date: Wed, 23 Mar 2011 19:14:12 +0100 Subject: [Python-checkins] cpython: Issue #11244: Remove outdated peepholer check that was preventing the peepholer Message-ID: http://hg.python.org/cpython/rev/ead9c1b9f547 changeset: 68869:ead9c1b9f547 user: Mark Dickinson date: Wed Mar 23 17:59:37 2011 +0000 summary: Issue #11244: Remove outdated peepholer check that was preventing the peepholer from folding -0 and -0.0. Thanks Eugene Toder for the patch. files: Lib/test/test_peepholer.py | 11 +++++++++++ Misc/ACKS | 1 + Misc/NEWS | 3 +++ Python/peephole.c | 6 ++---- 4 files changed, 17 insertions(+), 4 deletions(-) diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py --- a/Lib/test/test_peepholer.py +++ b/Lib/test/test_peepholer.py @@ -3,6 +3,7 @@ import sys from io import StringIO import unittest +from math import copysign def disassemble(func): f = StringIO() @@ -207,6 +208,9 @@ def test_folding_of_unaryops_on_constants(self): for line, elem in ( ('-0.5', '(-0.5)'), # unary negative + ('-0.0', '(-0.0)'), # -0.0 + ('-(1.0-1.0)','(-0.0)'), # -0.0 after folding + ('-0', '(0)'), # -0 ('~-2', '(1)'), # unary invert ('+1', '(1)'), # unary positive ): @@ -214,6 +218,13 @@ self.assertIn(elem, asm, asm) self.assertNotIn('UNARY_', asm) + # Check that -0.0 works after marshaling + def negzero(): + return -(1.0-1.0) + + self.assertNotIn('UNARY_', disassemble(negzero)) + self.assertTrue(copysign(1.0, negzero()) < 0) + # Verify that unfoldables are skipped for line, elem in ( ('-"abc"', "('abc')"), # unary negative diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -867,6 +867,7 @@ Frank J. Tobin R Lindsay Todd Bennett Todd +Eugene Toder Matias Torchinsky Sandro Tosi Richard Townsend diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #11244: Remove an unnecessary peepholer check that was preventing + negative zeros from being constant-folded properly. + - Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on Windows if the file is a TTY to workaround a Windows bug. The Windows console returns an error (12: not enough space error) on writing into stdout if diff --git a/Python/peephole.c b/Python/peephole.c --- a/Python/peephole.c +++ b/Python/peephole.c @@ -238,7 +238,7 @@ static int fold_unaryops_on_constants(unsigned char *codestr, PyObject *consts, PyObject *v) { - PyObject *newconst=NULL/*, *v*/; + PyObject *newconst; Py_ssize_t len_consts; int opcode; @@ -250,9 +250,7 @@ opcode = codestr[3]; switch (opcode) { case UNARY_NEGATIVE: - /* Preserve the sign of -0.0 */ - if (PyObject_IsTrue(v) == 1) - newconst = PyNumber_Negative(v); + newconst = PyNumber_Negative(v); break; case UNARY_INVERT: newconst = PyNumber_Invert(v); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 19:34:35 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 23 Mar 2011 19:34:35 +0100 Subject: [Python-checkins] cpython (3.1): #11589: add additional tests for the email quoprimime module. Message-ID: http://hg.python.org/cpython/rev/3dbea3fa73fb changeset: 68870:3dbea3fa73fb branch: 3.1 parent: 68860:57657393ceaf user: R David Murray date: Wed Mar 23 14:19:05 2011 -0400 summary: #11589: add additional tests for the email quoprimime module. Patch by Michael Henry. files: Lib/email/test/test_email.py | 194 +++++++++++++++++++++- 1 files changed, 179 insertions(+), 15 deletions(-) diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -2883,21 +2883,185 @@ c = chr(x) self.assertEqual(quoprimime.unquote(quoprimime.quote(c)), c) - def test_header_encode(self): - eq = self.assertEqual - he = quoprimime.header_encode - eq(he(b'hello'), '=?iso-8859-1?q?hello?=') - eq(he(b'hello', charset='iso-8859-2'), '=?iso-8859-2?q?hello?=') - eq(he(b'hello\nworld'), '=?iso-8859-1?q?hello=0Aworld?=') - # Test a non-ASCII character - eq(he(b'hello\xc7there'), '=?iso-8859-1?q?hello=C7there?=') - - def test_decode(self): - eq = self.assertEqual - eq(quoprimime.decode(''), '') - eq(quoprimime.decode('hello'), 'hello') - eq(quoprimime.decode('hello', 'X'), 'hello') - eq(quoprimime.decode('hello\nworld', 'X'), 'helloXworld') + def _test_header_encode(self, header, expected_encoded_header, charset=None): + if charset is None: + encoded_header = quoprimime.header_encode(header) + else: + encoded_header = quoprimime.header_encode(header, charset) + self.assertEqual(encoded_header, expected_encoded_header) + + def test_header_encode_one_word(self): + self._test_header_encode(b'hello', '=?iso-8859-1?q?hello?=') + + def test_header_encode_two_lines(self): + self._test_header_encode(b'hello\nworld', + '=?iso-8859-1?q?hello=0Aworld?=') + + def test_header_encode_non_ascii(self): + self._test_header_encode(b'hello\xc7there', + '=?iso-8859-1?q?hello=C7there?=') + + def test_header_encode_alt_charset(self): + self._test_header_encode(b'hello', '=?iso-8859-2?q?hello?=', + charset='iso-8859-2') + + def _test_header_decode(self, encoded_header, expected_decoded_header): + decoded_header = quoprimime.header_decode(encoded_header) + self.assertEqual(decoded_header, expected_decoded_header) + + def test_header_decode_null(self): + self._test_header_decode('', '') + + def test_header_decode_one_word(self): + self._test_header_decode('hello', 'hello') + + def test_header_decode_two_lines(self): + self._test_header_decode('hello=0Aworld', 'hello\nworld') + + def test_header_decode_non_ascii(self): + self._test_header_decode('hello=C7there', 'hello\xc7there') + + def _test_decode(self, encoded, expected_decoded, eol=None): + if eol is None: + decoded = quoprimime.decode(encoded) + else: + decoded = quoprimime.decode(encoded, eol=eol) + self.assertEqual(decoded, expected_decoded) + + def test_decode_null_word(self): + self._test_decode('', '') + + def test_decode_null_line_null_word(self): + self._test_decode('\r\n', '\n') + + def test_decode_one_word(self): + self._test_decode('hello', 'hello') + + def test_decode_one_word_eol(self): + self._test_decode('hello', 'hello', eol='X') + + def test_decode_one_line(self): + self._test_decode('hello\r\n', 'hello\n') + + def test_decode_one_line_lf(self): + self._test_decode('hello\n', 'hello\n') + + def test_decode_one_line_one_word(self): + self._test_decode('hello\r\nworld', 'hello\nworld') + + def test_decode_one_line_one_word_eol(self): + self._test_decode('hello\r\nworld', 'helloXworld', eol='X') + + def test_decode_two_lines(self): + self._test_decode('hello\r\nworld\r\n', 'hello\nworld\n') + + def test_decode_one_long_line(self): + self._test_decode('Spam' * 250, 'Spam' * 250) + + def test_decode_one_space(self): + self._test_decode(' ', '') + + def test_decode_multiple_spaces(self): + self._test_decode(' ' * 5, '') + + def test_decode_one_line_trailing_spaces(self): + self._test_decode('hello \r\n', 'hello\n') + + def test_decode_two_lines_trailing_spaces(self): + self._test_decode('hello \r\nworld \r\n', 'hello\nworld\n') + + def test_decode_quoted_word(self): + self._test_decode('=22quoted=20words=22', '"quoted words"') + + def test_decode_uppercase_quoting(self): + self._test_decode('ab=CD=EF', 'ab\xcd\xef') + + def test_decode_lowercase_quoting(self): + self._test_decode('ab=cd=ef', 'ab\xcd\xef') + + def test_decode_soft_line_break(self): + self._test_decode('soft line=\r\nbreak', 'soft linebreak') + + def test_decode_false_quoting(self): + self._test_decode('A=1,B=A ==> A+B==2', 'A=1,B=A ==> A+B==2') + + def _test_encode(self, body, expected_encoded_body, maxlinelen=None, eol=None): + kwargs = {} + if maxlinelen is None: + # Use body_encode's default. + maxlinelen = 76 + else: + kwargs['maxlinelen'] = maxlinelen + if eol is None: + # Use body_encode's default. + eol = '\n' + else: + kwargs['eol'] = eol + encoded_body = quoprimime.body_encode(body, **kwargs) + self.assertEqual(encoded_body, expected_encoded_body) + if eol == '\n' or eol == '\r\n': + # We know how to split the result back into lines, so maxlinelen + # can be checked. + for line in encoded_body.splitlines(): + self.assertLessEqual(len(line), maxlinelen) + + def test_encode_null(self): + self._test_encode('', '') + + def test_encode_null_lines(self): + self._test_encode('\n\n', '\n\n') + + def test_encode_one_line(self): + self._test_encode('hello\n', 'hello\n') + + def test_encode_one_line_crlf(self): + self._test_encode('hello\r\n', 'hello\n') + + def test_encode_one_line_eol(self): + self._test_encode('hello\n', 'hello\r\n', eol='\r\n') + + def test_encode_one_space(self): + self._test_encode(' ', '=20') + + def test_encode_one_line_one_space(self): + self._test_encode(' \n', '=20\n') + + def test_encode_one_word_trailing_spaces(self): + self._test_encode('hello ', 'hello =20') + + def test_encode_one_line_trailing_spaces(self): + self._test_encode('hello \n', 'hello =20\n') + + def test_encode_one_word_trailing_tab(self): + self._test_encode('hello \t', 'hello =09') + + def test_encode_one_line_trailing_tab(self): + self._test_encode('hello \t\n', 'hello =09\n') + + def test_encode_trailing_space_before_maxlinelen(self): + self._test_encode('abcd \n1234', 'abcd =\n\n1234', maxlinelen=6) + + def test_encode_trailing_space_beyond_maxlinelen(self): + self._test_encode('abcd \n1234', 'abc=\nd =\n\n1234', maxlinelen=4) + + def test_encode_quoted_equals(self): + self._test_encode('a = b', 'a =3D b') + + def test_encode_one_long_string(self): + self._test_encode('x' * 100, 'x' * 75 + '=\n' + 'x' * 25) + + def test_encode_one_long_line(self): + self._test_encode('x' * 100 + '\n', 'x' * 75 + '=\n' + 'x' * 25 + '\n') + + def test_encode_one_very_long_line(self): + self._test_encode('x' * 200 + '\n', + 2 * ('x' * 75 + '=\n') + 'x' * 50 + '\n') + + def test_encode_one_long_line(self): + self._test_encode('x' * 100 + '\n', 'x' * 75 + '=\n' + 'x' * 25 + '\n') + + def test_encode_shortest_maxlinelen(self): + self._test_encode('=' * 5, '=3D=\n' * 4 + '=3D', maxlinelen=4) def test_encode(self): eq = self.assertEqual -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 19:34:36 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 23 Mar 2011 19:34:36 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge #11589: add additional tests for the email quoprimime module. Message-ID: http://hg.python.org/cpython/rev/04c9c831803b changeset: 68871:04c9c831803b branch: 3.2 parent: 68863:b93559ee4390 parent: 68870:3dbea3fa73fb user: R David Murray date: Wed Mar 23 14:27:18 2011 -0400 summary: Merge #11589: add additional tests for the email quoprimime module. files: Lib/email/test/test_email.py | 194 +++++++++++++++++++++- 1 files changed, 179 insertions(+), 15 deletions(-) diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -3337,21 +3337,185 @@ c = chr(x) self.assertEqual(quoprimime.unquote(quoprimime.quote(c)), c) - def test_header_encode(self): - eq = self.assertEqual - he = quoprimime.header_encode - eq(he(b'hello'), '=?iso-8859-1?q?hello?=') - eq(he(b'hello', charset='iso-8859-2'), '=?iso-8859-2?q?hello?=') - eq(he(b'hello\nworld'), '=?iso-8859-1?q?hello=0Aworld?=') - # Test a non-ASCII character - eq(he(b'hello\xc7there'), '=?iso-8859-1?q?hello=C7there?=') - - def test_decode(self): - eq = self.assertEqual - eq(quoprimime.decode(''), '') - eq(quoprimime.decode('hello'), 'hello') - eq(quoprimime.decode('hello', 'X'), 'hello') - eq(quoprimime.decode('hello\nworld', 'X'), 'helloXworld') + def _test_header_encode(self, header, expected_encoded_header, charset=None): + if charset is None: + encoded_header = quoprimime.header_encode(header) + else: + encoded_header = quoprimime.header_encode(header, charset) + self.assertEqual(encoded_header, expected_encoded_header) + + def test_header_encode_one_word(self): + self._test_header_encode(b'hello', '=?iso-8859-1?q?hello?=') + + def test_header_encode_two_lines(self): + self._test_header_encode(b'hello\nworld', + '=?iso-8859-1?q?hello=0Aworld?=') + + def test_header_encode_non_ascii(self): + self._test_header_encode(b'hello\xc7there', + '=?iso-8859-1?q?hello=C7there?=') + + def test_header_encode_alt_charset(self): + self._test_header_encode(b'hello', '=?iso-8859-2?q?hello?=', + charset='iso-8859-2') + + def _test_header_decode(self, encoded_header, expected_decoded_header): + decoded_header = quoprimime.header_decode(encoded_header) + self.assertEqual(decoded_header, expected_decoded_header) + + def test_header_decode_null(self): + self._test_header_decode('', '') + + def test_header_decode_one_word(self): + self._test_header_decode('hello', 'hello') + + def test_header_decode_two_lines(self): + self._test_header_decode('hello=0Aworld', 'hello\nworld') + + def test_header_decode_non_ascii(self): + self._test_header_decode('hello=C7there', 'hello\xc7there') + + def _test_decode(self, encoded, expected_decoded, eol=None): + if eol is None: + decoded = quoprimime.decode(encoded) + else: + decoded = quoprimime.decode(encoded, eol=eol) + self.assertEqual(decoded, expected_decoded) + + def test_decode_null_word(self): + self._test_decode('', '') + + def test_decode_null_line_null_word(self): + self._test_decode('\r\n', '\n') + + def test_decode_one_word(self): + self._test_decode('hello', 'hello') + + def test_decode_one_word_eol(self): + self._test_decode('hello', 'hello', eol='X') + + def test_decode_one_line(self): + self._test_decode('hello\r\n', 'hello\n') + + def test_decode_one_line_lf(self): + self._test_decode('hello\n', 'hello\n') + + def test_decode_one_line_one_word(self): + self._test_decode('hello\r\nworld', 'hello\nworld') + + def test_decode_one_line_one_word_eol(self): + self._test_decode('hello\r\nworld', 'helloXworld', eol='X') + + def test_decode_two_lines(self): + self._test_decode('hello\r\nworld\r\n', 'hello\nworld\n') + + def test_decode_one_long_line(self): + self._test_decode('Spam' * 250, 'Spam' * 250) + + def test_decode_one_space(self): + self._test_decode(' ', '') + + def test_decode_multiple_spaces(self): + self._test_decode(' ' * 5, '') + + def test_decode_one_line_trailing_spaces(self): + self._test_decode('hello \r\n', 'hello\n') + + def test_decode_two_lines_trailing_spaces(self): + self._test_decode('hello \r\nworld \r\n', 'hello\nworld\n') + + def test_decode_quoted_word(self): + self._test_decode('=22quoted=20words=22', '"quoted words"') + + def test_decode_uppercase_quoting(self): + self._test_decode('ab=CD=EF', 'ab\xcd\xef') + + def test_decode_lowercase_quoting(self): + self._test_decode('ab=cd=ef', 'ab\xcd\xef') + + def test_decode_soft_line_break(self): + self._test_decode('soft line=\r\nbreak', 'soft linebreak') + + def test_decode_false_quoting(self): + self._test_decode('A=1,B=A ==> A+B==2', 'A=1,B=A ==> A+B==2') + + def _test_encode(self, body, expected_encoded_body, maxlinelen=None, eol=None): + kwargs = {} + if maxlinelen is None: + # Use body_encode's default. + maxlinelen = 76 + else: + kwargs['maxlinelen'] = maxlinelen + if eol is None: + # Use body_encode's default. + eol = '\n' + else: + kwargs['eol'] = eol + encoded_body = quoprimime.body_encode(body, **kwargs) + self.assertEqual(encoded_body, expected_encoded_body) + if eol == '\n' or eol == '\r\n': + # We know how to split the result back into lines, so maxlinelen + # can be checked. + for line in encoded_body.splitlines(): + self.assertLessEqual(len(line), maxlinelen) + + def test_encode_null(self): + self._test_encode('', '') + + def test_encode_null_lines(self): + self._test_encode('\n\n', '\n\n') + + def test_encode_one_line(self): + self._test_encode('hello\n', 'hello\n') + + def test_encode_one_line_crlf(self): + self._test_encode('hello\r\n', 'hello\n') + + def test_encode_one_line_eol(self): + self._test_encode('hello\n', 'hello\r\n', eol='\r\n') + + def test_encode_one_space(self): + self._test_encode(' ', '=20') + + def test_encode_one_line_one_space(self): + self._test_encode(' \n', '=20\n') + + def test_encode_one_word_trailing_spaces(self): + self._test_encode('hello ', 'hello =20') + + def test_encode_one_line_trailing_spaces(self): + self._test_encode('hello \n', 'hello =20\n') + + def test_encode_one_word_trailing_tab(self): + self._test_encode('hello \t', 'hello =09') + + def test_encode_one_line_trailing_tab(self): + self._test_encode('hello \t\n', 'hello =09\n') + + def test_encode_trailing_space_before_maxlinelen(self): + self._test_encode('abcd \n1234', 'abcd =\n\n1234', maxlinelen=6) + + def test_encode_trailing_space_beyond_maxlinelen(self): + self._test_encode('abcd \n1234', 'abc=\nd =\n\n1234', maxlinelen=4) + + def test_encode_quoted_equals(self): + self._test_encode('a = b', 'a =3D b') + + def test_encode_one_long_string(self): + self._test_encode('x' * 100, 'x' * 75 + '=\n' + 'x' * 25) + + def test_encode_one_long_line(self): + self._test_encode('x' * 100 + '\n', 'x' * 75 + '=\n' + 'x' * 25 + '\n') + + def test_encode_one_very_long_line(self): + self._test_encode('x' * 200 + '\n', + 2 * ('x' * 75 + '=\n') + 'x' * 50 + '\n') + + def test_encode_one_long_line(self): + self._test_encode('x' * 100 + '\n', 'x' * 75 + '=\n' + 'x' * 25 + '\n') + + def test_encode_shortest_maxlinelen(self): + self._test_encode('=' * 5, '=3D=\n' * 4 + '=3D', maxlinelen=4) def test_encode(self): eq = self.assertEqual -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 19:34:36 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 23 Mar 2011 19:34:36 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #11589: add additional tests for the email quoprimime module. Message-ID: http://hg.python.org/cpython/rev/2f4865834695 changeset: 68872:2f4865834695 parent: 68869:ead9c1b9f547 parent: 68871:04c9c831803b user: R David Murray date: Wed Mar 23 14:29:49 2011 -0400 summary: Merge #11589: add additional tests for the email quoprimime module. files: Lib/test/test_email/test_email.py | 194 ++++++++++++++++- 1 files changed, 179 insertions(+), 15 deletions(-) diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -3344,21 +3344,185 @@ c = chr(x) self.assertEqual(quoprimime.unquote(quoprimime.quote(c)), c) - def test_header_encode(self): - eq = self.assertEqual - he = quoprimime.header_encode - eq(he(b'hello'), '=?iso-8859-1?q?hello?=') - eq(he(b'hello', charset='iso-8859-2'), '=?iso-8859-2?q?hello?=') - eq(he(b'hello\nworld'), '=?iso-8859-1?q?hello=0Aworld?=') - # Test a non-ASCII character - eq(he(b'hello\xc7there'), '=?iso-8859-1?q?hello=C7there?=') - - def test_decode(self): - eq = self.assertEqual - eq(quoprimime.decode(''), '') - eq(quoprimime.decode('hello'), 'hello') - eq(quoprimime.decode('hello', 'X'), 'hello') - eq(quoprimime.decode('hello\nworld', 'X'), 'helloXworld') + def _test_header_encode(self, header, expected_encoded_header, charset=None): + if charset is None: + encoded_header = quoprimime.header_encode(header) + else: + encoded_header = quoprimime.header_encode(header, charset) + self.assertEqual(encoded_header, expected_encoded_header) + + def test_header_encode_one_word(self): + self._test_header_encode(b'hello', '=?iso-8859-1?q?hello?=') + + def test_header_encode_two_lines(self): + self._test_header_encode(b'hello\nworld', + '=?iso-8859-1?q?hello=0Aworld?=') + + def test_header_encode_non_ascii(self): + self._test_header_encode(b'hello\xc7there', + '=?iso-8859-1?q?hello=C7there?=') + + def test_header_encode_alt_charset(self): + self._test_header_encode(b'hello', '=?iso-8859-2?q?hello?=', + charset='iso-8859-2') + + def _test_header_decode(self, encoded_header, expected_decoded_header): + decoded_header = quoprimime.header_decode(encoded_header) + self.assertEqual(decoded_header, expected_decoded_header) + + def test_header_decode_null(self): + self._test_header_decode('', '') + + def test_header_decode_one_word(self): + self._test_header_decode('hello', 'hello') + + def test_header_decode_two_lines(self): + self._test_header_decode('hello=0Aworld', 'hello\nworld') + + def test_header_decode_non_ascii(self): + self._test_header_decode('hello=C7there', 'hello\xc7there') + + def _test_decode(self, encoded, expected_decoded, eol=None): + if eol is None: + decoded = quoprimime.decode(encoded) + else: + decoded = quoprimime.decode(encoded, eol=eol) + self.assertEqual(decoded, expected_decoded) + + def test_decode_null_word(self): + self._test_decode('', '') + + def test_decode_null_line_null_word(self): + self._test_decode('\r\n', '\n') + + def test_decode_one_word(self): + self._test_decode('hello', 'hello') + + def test_decode_one_word_eol(self): + self._test_decode('hello', 'hello', eol='X') + + def test_decode_one_line(self): + self._test_decode('hello\r\n', 'hello\n') + + def test_decode_one_line_lf(self): + self._test_decode('hello\n', 'hello\n') + + def test_decode_one_line_one_word(self): + self._test_decode('hello\r\nworld', 'hello\nworld') + + def test_decode_one_line_one_word_eol(self): + self._test_decode('hello\r\nworld', 'helloXworld', eol='X') + + def test_decode_two_lines(self): + self._test_decode('hello\r\nworld\r\n', 'hello\nworld\n') + + def test_decode_one_long_line(self): + self._test_decode('Spam' * 250, 'Spam' * 250) + + def test_decode_one_space(self): + self._test_decode(' ', '') + + def test_decode_multiple_spaces(self): + self._test_decode(' ' * 5, '') + + def test_decode_one_line_trailing_spaces(self): + self._test_decode('hello \r\n', 'hello\n') + + def test_decode_two_lines_trailing_spaces(self): + self._test_decode('hello \r\nworld \r\n', 'hello\nworld\n') + + def test_decode_quoted_word(self): + self._test_decode('=22quoted=20words=22', '"quoted words"') + + def test_decode_uppercase_quoting(self): + self._test_decode('ab=CD=EF', 'ab\xcd\xef') + + def test_decode_lowercase_quoting(self): + self._test_decode('ab=cd=ef', 'ab\xcd\xef') + + def test_decode_soft_line_break(self): + self._test_decode('soft line=\r\nbreak', 'soft linebreak') + + def test_decode_false_quoting(self): + self._test_decode('A=1,B=A ==> A+B==2', 'A=1,B=A ==> A+B==2') + + def _test_encode(self, body, expected_encoded_body, maxlinelen=None, eol=None): + kwargs = {} + if maxlinelen is None: + # Use body_encode's default. + maxlinelen = 76 + else: + kwargs['maxlinelen'] = maxlinelen + if eol is None: + # Use body_encode's default. + eol = '\n' + else: + kwargs['eol'] = eol + encoded_body = quoprimime.body_encode(body, **kwargs) + self.assertEqual(encoded_body, expected_encoded_body) + if eol == '\n' or eol == '\r\n': + # We know how to split the result back into lines, so maxlinelen + # can be checked. + for line in encoded_body.splitlines(): + self.assertLessEqual(len(line), maxlinelen) + + def test_encode_null(self): + self._test_encode('', '') + + def test_encode_null_lines(self): + self._test_encode('\n\n', '\n\n') + + def test_encode_one_line(self): + self._test_encode('hello\n', 'hello\n') + + def test_encode_one_line_crlf(self): + self._test_encode('hello\r\n', 'hello\n') + + def test_encode_one_line_eol(self): + self._test_encode('hello\n', 'hello\r\n', eol='\r\n') + + def test_encode_one_space(self): + self._test_encode(' ', '=20') + + def test_encode_one_line_one_space(self): + self._test_encode(' \n', '=20\n') + + def test_encode_one_word_trailing_spaces(self): + self._test_encode('hello ', 'hello =20') + + def test_encode_one_line_trailing_spaces(self): + self._test_encode('hello \n', 'hello =20\n') + + def test_encode_one_word_trailing_tab(self): + self._test_encode('hello \t', 'hello =09') + + def test_encode_one_line_trailing_tab(self): + self._test_encode('hello \t\n', 'hello =09\n') + + def test_encode_trailing_space_before_maxlinelen(self): + self._test_encode('abcd \n1234', 'abcd =\n\n1234', maxlinelen=6) + + def test_encode_trailing_space_beyond_maxlinelen(self): + self._test_encode('abcd \n1234', 'abc=\nd =\n\n1234', maxlinelen=4) + + def test_encode_quoted_equals(self): + self._test_encode('a = b', 'a =3D b') + + def test_encode_one_long_string(self): + self._test_encode('x' * 100, 'x' * 75 + '=\n' + 'x' * 25) + + def test_encode_one_long_line(self): + self._test_encode('x' * 100 + '\n', 'x' * 75 + '=\n' + 'x' * 25 + '\n') + + def test_encode_one_very_long_line(self): + self._test_encode('x' * 200 + '\n', + 2 * ('x' * 75 + '=\n') + 'x' * 50 + '\n') + + def test_encode_one_long_line(self): + self._test_encode('x' * 100 + '\n', 'x' * 75 + '=\n' + 'x' * 25 + '\n') + + def test_encode_shortest_maxlinelen(self): + self._test_encode('=' * 5, '=3D=\n' * 4 + '=3D', maxlinelen=4) def test_encode(self): eq = self.assertEqual -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 19:51:34 2011 From: python-checkins at python.org (local-hg) Date: Wed, 23 Mar 2011 19:51:34 +0100 Subject: [Python-checkins] hooks: Indent diffstat with 2 spaces and another line break before the diff. Message-ID: http://hg.python.org/hooks/rev/de405da1192a changeset: 68:de405da1192a user: Antoine Pitrou date: Wed Mar 23 19:51:34 2011 +0100 summary: Indent diffstat with 2 spaces and another line break before the diff. files: mail.py | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/mail.py b/mail.py --- a/mail.py +++ b/mail.py @@ -62,9 +62,10 @@ node1 = parents and parents[0].node() or nullid node2 = ctx.node() diffchunks = list(patch.diff(repo, node1, node2, opts=diffopts)) - body.append(''.join(line for line in - patch.diffstat(iterlines(diffchunks), width=60, git=True) - )) + diffstat = patch.diffstat(iterlines(diffchunks), width=60, git=True) + for line in iterlines([''.join(diffstat)]): + body.append(' ' + line) + body += ['', ''] body.append(''.join(chunk for chunk in diffchunks)) body.append('-- ') -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Wed Mar 23 20:11:27 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 23 Mar 2011 20:11:27 +0100 Subject: [Python-checkins] cpython: Fix transmitting warning options to the children when running tests in Message-ID: http://hg.python.org/cpython/rev/5048f44c6654 changeset: 68873:5048f44c6654 user: Antoine Pitrou date: Wed Mar 23 20:10:18 2011 +0100 summary: Fix transmitting warning options to the children when running tests in parallel (thanks Michael for pointing this). files: Lib/test/support.py | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1389,9 +1389,8 @@ v = getattr(sys.flags, flag) if v > 0: args.append('-' + opt * v) - if sys.warnoptions: - args.append('-W') - args.extend(sys.warnoptions) + for opt in sys.warnoptions: + args.append('-W' + opt) return args #============================================================ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 20:17:56 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 23 Mar 2011 20:17:56 +0100 Subject: [Python-checkins] cpython: Allow "-j0" as an argument to regrtest, to automatically select an Message-ID: http://hg.python.org/cpython/rev/d8dd7ab6039d changeset: 68874:d8dd7ab6039d user: Antoine Pitrou date: Wed Mar 23 20:17:45 2011 +0100 summary: Allow "-j0" as an argument to regrtest, to automatically select an appropriate number of parallel workers. files: Lib/test/regrtest.py | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -374,6 +374,13 @@ forever = True elif o in ('-j', '--multiprocess'): use_mp = int(a) + if use_mp <= 0: + try: + import multiprocessing + # Use all cores + extras for tests that like to sleep + use_mp = 2 + multiprocessing.cpu_count() + except (ImportError, NotImplementedError): + use_mp = 3 elif o == '--header': header = True elif o == '--slaveargs': -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 20:26:11 2011 From: python-checkins at python.org (martin.v.loewis) Date: Wed, 23 Mar 2011 20:26:11 +0100 (CET) Subject: [Python-checkins] r88790 - in tracker/instances/python-dev/html: committer.png issue.item.html Message-ID: <3Pw18g5X0cz7Ljm@mail.python.org> Author: martin.v.loewis Date: Wed Mar 23 20:26:11 2011 New Revision: 88790 Log: Change committer icon to be Python icon. Added: tracker/instances/python-dev/html/committer.png (contents, props changed) Modified: tracker/instances/python-dev/html/issue.item.html Added: tracker/instances/python-dev/html/committer.png ============================================================================== Binary file. No diff available. Modified: tracker/instances/python-dev/html/issue.item.html ============================================================================== --- tracker/instances/python-dev/html/issue.item.html (original) +++ tracker/instances/python-dev/html/issue.item.html Wed Mar 23 20:26:11 2011 @@ -299,7 +299,7 @@ i18n:name="author" /> () * - +
    Date: http://hg.python.org/cpython/rev/45cc298d40eb changeset: 68875:45cc298d40eb branch: 3.1 parent: 68870:3dbea3fa73fb user: R David Murray date: Wed Mar 23 15:25:55 2011 -0400 summary: #11590: fix quoprimime decode handling of empty strings and line endings. files: Lib/email/quoprimime.py | 6 +++--- Lib/email/test/test_email.py | 15 +++++++++++++++ 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/Lib/email/quoprimime.py b/Lib/email/quoprimime.py --- a/Lib/email/quoprimime.py +++ b/Lib/email/quoprimime.py @@ -135,9 +135,9 @@ charset names the character set to use in the RFC 2046 header. It defaults to iso-8859-1. """ - # Return empty headers unchanged + # Return empty headers as an empty string. if not header_bytes: - return str(header_bytes) + return '' # Iterate over every byte, encoding if necessary. encoded = [] for octet in header_bytes: @@ -268,7 +268,7 @@ if i == n: decoded += eol # Special case if original string did not end with eol - if not encoded.endswith(eol) and decoded.endswith(eol): + if encoded[-1] not in '\r\n' and decoded.endswith(eol): decoded = decoded[:-1] return decoded diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -2890,6 +2890,9 @@ encoded_header = quoprimime.header_encode(header, charset) self.assertEqual(encoded_header, expected_encoded_header) + def test_header_encode_null(self): + self._test_header_encode(b'', '') + def test_header_encode_one_word(self): self._test_header_encode(b'hello', '=?iso-8859-1?q?hello?=') @@ -2946,6 +2949,15 @@ def test_decode_one_line_lf(self): self._test_decode('hello\n', 'hello\n') + def test_decode_one_line_cr(self): + self._test_decode('hello\r', 'hello\n') + + def test_decode_one_line_nl(self): + self._test_decode('hello\n', 'helloX', eol='X') + + def test_decode_one_line_crnl(self): + self._test_decode('hello\r\n', 'helloX', eol='X') + def test_decode_one_line_one_word(self): self._test_decode('hello\r\nworld', 'hello\nworld') @@ -2955,6 +2967,9 @@ def test_decode_two_lines(self): self._test_decode('hello\r\nworld\r\n', 'hello\nworld\n') + def test_decode_two_lines_eol(self): + self._test_decode('hello\r\nworld\r\n', 'helloXworldX', eol='X') + def test_decode_one_long_line(self): self._test_decode('Spam' * 250, 'Spam' * 250) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 20:37:44 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 23 Mar 2011 20:37:44 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge #11590: fix quoprimime decode handling of empty strings and line endings. Message-ID: http://hg.python.org/cpython/rev/df613f7b726a changeset: 68876:df613f7b726a branch: 3.2 parent: 68871:04c9c831803b parent: 68875:45cc298d40eb user: R David Murray date: Wed Mar 23 15:27:04 2011 -0400 summary: Merge #11590: fix quoprimime decode handling of empty strings and line endings. files: Lib/email/quoprimime.py | 6 +++--- Lib/email/test/test_email.py | 15 +++++++++++++++ 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/Lib/email/quoprimime.py b/Lib/email/quoprimime.py --- a/Lib/email/quoprimime.py +++ b/Lib/email/quoprimime.py @@ -135,9 +135,9 @@ charset names the character set to use in the RFC 2046 header. It defaults to iso-8859-1. """ - # Return empty headers unchanged + # Return empty headers as an empty string. if not header_bytes: - return str(header_bytes) + return '' # Iterate over every byte, encoding if necessary. encoded = [] for octet in header_bytes: @@ -268,7 +268,7 @@ if i == n: decoded += eol # Special case if original string did not end with eol - if not encoded.endswith(eol) and decoded.endswith(eol): + if encoded[-1] not in '\r\n' and decoded.endswith(eol): decoded = decoded[:-1] return decoded diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -3344,6 +3344,9 @@ encoded_header = quoprimime.header_encode(header, charset) self.assertEqual(encoded_header, expected_encoded_header) + def test_header_encode_null(self): + self._test_header_encode(b'', '') + def test_header_encode_one_word(self): self._test_header_encode(b'hello', '=?iso-8859-1?q?hello?=') @@ -3400,6 +3403,15 @@ def test_decode_one_line_lf(self): self._test_decode('hello\n', 'hello\n') + def test_decode_one_line_cr(self): + self._test_decode('hello\r', 'hello\n') + + def test_decode_one_line_nl(self): + self._test_decode('hello\n', 'helloX', eol='X') + + def test_decode_one_line_crnl(self): + self._test_decode('hello\r\n', 'helloX', eol='X') + def test_decode_one_line_one_word(self): self._test_decode('hello\r\nworld', 'hello\nworld') @@ -3409,6 +3421,9 @@ def test_decode_two_lines(self): self._test_decode('hello\r\nworld\r\n', 'hello\nworld\n') + def test_decode_two_lines_eol(self): + self._test_decode('hello\r\nworld\r\n', 'helloXworldX', eol='X') + def test_decode_one_long_line(self): self._test_decode('Spam' * 250, 'Spam' * 250) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 20:37:45 2011 From: python-checkins at python.org (r.david.murray) Date: Wed, 23 Mar 2011 20:37:45 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #11590: fix quoprimime decode handling of empty strings and line endings. Message-ID: http://hg.python.org/cpython/rev/d9a779be9736 changeset: 68877:d9a779be9736 parent: 68874:d8dd7ab6039d parent: 68876:df613f7b726a user: R David Murray date: Wed Mar 23 15:37:26 2011 -0400 summary: Merge #11590: fix quoprimime decode handling of empty strings and line endings. files: Lib/email/quoprimime.py | 6 +++--- Lib/test/test_email/test_email.py | 15 +++++++++++++++ 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/Lib/email/quoprimime.py b/Lib/email/quoprimime.py --- a/Lib/email/quoprimime.py +++ b/Lib/email/quoprimime.py @@ -135,9 +135,9 @@ charset names the character set to use in the RFC 2046 header. It defaults to iso-8859-1. """ - # Return empty headers unchanged + # Return empty headers as an empty string. if not header_bytes: - return str(header_bytes) + return '' # Iterate over every byte, encoding if necessary. encoded = [] for octet in header_bytes: @@ -268,7 +268,7 @@ if i == n: decoded += eol # Special case if original string did not end with eol - if not encoded.endswith(eol) and decoded.endswith(eol): + if encoded[-1] not in '\r\n' and decoded.endswith(eol): decoded = decoded[:-1] return decoded diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -3351,6 +3351,9 @@ encoded_header = quoprimime.header_encode(header, charset) self.assertEqual(encoded_header, expected_encoded_header) + def test_header_encode_null(self): + self._test_header_encode(b'', '') + def test_header_encode_one_word(self): self._test_header_encode(b'hello', '=?iso-8859-1?q?hello?=') @@ -3407,6 +3410,15 @@ def test_decode_one_line_lf(self): self._test_decode('hello\n', 'hello\n') + def test_decode_one_line_cr(self): + self._test_decode('hello\r', 'hello\n') + + def test_decode_one_line_nl(self): + self._test_decode('hello\n', 'helloX', eol='X') + + def test_decode_one_line_crnl(self): + self._test_decode('hello\r\n', 'helloX', eol='X') + def test_decode_one_line_one_word(self): self._test_decode('hello\r\nworld', 'hello\nworld') @@ -3416,6 +3428,9 @@ def test_decode_two_lines(self): self._test_decode('hello\r\nworld\r\n', 'hello\nworld\n') + def test_decode_two_lines_eol(self): + self._test_decode('hello\r\nworld\r\n', 'helloXworldX', eol='X') + def test_decode_one_long_line(self): self._test_decode('Spam' * 250, 'Spam' * 250) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 20:51:19 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 20:51:19 +0100 (CET) Subject: [Python-checkins] r88791 - peps/trunk/pep-0398.txt Message-ID: <3Pw1jg0Qk7z7LtS@mail.python.org> Author: georg.brandl Date: Wed Mar 23 20:51:18 2011 New Revision: 88791 Log: Add Python 3.3 schedule. Added: peps/trunk/pep-0398.txt (contents, props changed) Added: peps/trunk/pep-0398.txt ============================================================================== --- (empty file) +++ peps/trunk/pep-0398.txt Wed Mar 23 20:51:18 2011 @@ -0,0 +1,92 @@ +PEP: 398 +Title: Python 3.3 Release Schedule +Version: $Revision$ +Last-Modified: $Date$ +Author: Georg Brandl +Status: Active +Type: Informational +Content-Type: text/x-rst +Created: 23-Mar-2011 +Python-Version: 3.3 + + +Abstract +======== + +This document describes the development and release schedule for +Python 3.3. The schedule primarily concerns itself with PEP-sized +items. Small features may be added up to and including the first beta +release. Bugs may be fixed until the final release, which is planned +for August 2012. + + +Release Manager and Crew +======================== + +- 3.3 Release Manager: Georg Brandl +- Windows installers: Martin v. L?wis +- Mac installers: Ronald Oussoren/Ned Deily +- Documentation: Georg Brandl + + +Release Schedule +================ + +The current schedule is: + +- 3.3 alpha 1: March 3, 2012 +- 3.3 alpha 2: March 31, 2012 +- 3.3 alpha 3: April 28, 2012 +- 3.3 alpha 4: May 26, 2012 +- 3.3 beta 1: June 23, 2012 + +(No new features beyond this point.) + +- 3.3 beta 2: July 14, 2012 +- 3.3 candidate 1: July 28, 2012 +- 3.3 candidate 2: August 11, 2012 +- 3.3 final: August 18, 2012 + +.. don't forget to update final date above as well + +Every release day listed here is a Saturday; the actual availability +of the release for download on python.org will depend on the schedules +of the crew. + + +Features for 3.3 +================ + +Candidate PEPs: + +* PEP 380: Syntax for Delegating to a Subgenerator +* PEP 382: Namespace Packages +* PEP 393: Flexible String Representation +* PEP 395: Module Aliasing +* PEP 397: Python launcher for Windows +* PEP 3143: Standard daemon process library +* PEP 3151: Reworking the OS and IO exception hierarchy + +(Note that these are not accepted yet and even if they are, they might +not be finished in time for Python 3.3.) + +Other planned large-scale changes: + +* Addition of the "packaging" module, replacing "distutils" + + +Copyright +========= + +This document has been placed in the public domain. + + + +.. + Local Variables: + mode: indented-text + indent-tabs-mode: nil + sentence-end-double-space: t + fill-column: 70 + coding: utf-8 + End: From python-checkins at python.org Wed Mar 23 21:05:22 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 23 Mar 2011 21:05:22 +0100 Subject: [Python-checkins] cpython: Move namespace setup inside the template. Message-ID: http://hg.python.org/cpython/rev/7208f7502207 changeset: 68878:7208f7502207 parent: 68868:267578b2422d user: Raymond Hettinger date: Wed Mar 23 11:49:56 2011 -0700 summary: Move namespace setup inside the template. files: Lib/collections/__init__.py | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -234,6 +234,12 @@ ################################################################################ _class_template = '''\ +__name__ = 'namedtuple_{typename}' + +from builtins import property as _property, tuple as _tuple +from operator import itemgetter as _itemgetter +from collections import OrderedDict + class {typename}(tuple): '{typename}({arg_list})' @@ -349,8 +355,7 @@ # Execute the class definition string in a temporary namespace and # support tracing utilities by setting a value for frame.f_globals['__name__'] - namespace = dict(_itemgetter=_itemgetter, __name__='namedtuple_%s' % typename, - OrderedDict=OrderedDict, _property=property, _tuple=tuple) + namespace = {} try: exec(class_definition, namespace) except SyntaxError as e: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 21:05:24 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 23 Mar 2011 21:05:24 +0100 Subject: [Python-checkins] cpython: Expose the namedtuple source with a _source attribute. Message-ID: http://hg.python.org/cpython/rev/bffdd7e9265c changeset: 68879:bffdd7e9265c user: Raymond Hettinger date: Wed Mar 23 12:52:23 2011 -0700 summary: Expose the namedtuple source with a _source attribute. files: Doc/library/collections.rst | 61 +++++------------------ Lib/collections/__init__.py | 11 ++- Lib/test/test_collections.py | 1 + 3 files changed, 20 insertions(+), 53 deletions(-) diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -694,7 +694,9 @@ converted to ``['abc', '_1', 'ghi', '_3']``, eliminating the keyword ``def`` and the duplicate fieldname ``abc``. - If *verbose* is true, the class definition is printed just before being built. + If *verbose* is true, the class definition is printed after it is + built. This option is outdated; instead, it is simpler to print the + :attr:`_source` attribute. Named tuple instances do not have per-instance dictionaries, so they are lightweight and require no more memory than regular tuples. @@ -708,52 +710,6 @@ >>> # Basic example >>> Point = namedtuple('Point', ['x', 'y']) - >>> p = Point(x=10, y=11) - - >>> # Example using the verbose option to print the class definition - >>> Point = namedtuple('Point', ['x', 'y'], verbose=True) - class Point(tuple): - 'Point(x, y)' - - __slots__ = () - - _fields = ('x', 'y') - - def __new__(_cls, x, y): - 'Create a new instance of Point(x, y)' - return _tuple.__new__(_cls, (x, y)) - - @classmethod - def _make(cls, iterable, new=tuple.__new__, len=len): - 'Make a new Point object from a sequence or iterable' - result = new(cls, iterable) - if len(result) != 2: - raise TypeError('Expected 2 arguments, got %d' % len(result)) - return result - - def __repr__(self): - 'Return a nicely formatted representation string' - return self.__class__.__name__ + '(x=%r, y=%r)' % self - - def _asdict(self): - 'Return a new OrderedDict which maps field names to their values' - return OrderedDict(zip(self._fields, self)) - - def _replace(_self, **kwds): - 'Return a new Point object replacing specified fields with new values' - result = _self._make(map(kwds.pop, ('x', 'y'), _self)) - if kwds: - raise ValueError('Got unexpected field names: %r' % list(kwds)) - return result - - def __getnewargs__(self): - 'Return self as a plain tuple. Used by copy and pickle.' - return tuple(self) - - x = _property(_itemgetter(0), doc='Alias for field number 0') - - y = _property(_itemgetter(1), doc='Alias for field number 1') - >>> p = Point(11, y=22) # instantiate with positional or keyword arguments >>> p[0] + p[1] # indexable like the plain tuple (11, 22) 33 @@ -782,7 +738,7 @@ print(emp.name, emp.title) In addition to the methods inherited from tuples, named tuples support -three additional methods and one attribute. To prevent conflicts with +three additional methods and two attributes. To prevent conflicts with field names, the method and attribute names start with an underscore. .. classmethod:: somenamedtuple._make(iterable) @@ -820,6 +776,15 @@ >>> for partnum, record in inventory.items(): ... inventory[partnum] = record._replace(price=newprices[partnum], timestamp=time.now()) +.. attribute:: somenamedtuple._source + + A string with the pure Python source code used to create the named + tuple class. The source makes the named tuple self-documenting. + It can be printed, executed using :func:`exec`, or saved to a file + and imported. + + .. versionadded:: 3.3 + .. attribute:: somenamedtuple._fields Tuple of strings listing the field names. Useful for introspection diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -332,13 +332,13 @@ raise ValueError('Type names and field names cannot be a keyword: %r' % name) if name[0].isdigit(): raise ValueError('Type names and field names cannot start with a number: %r' % name) - seen_names = set() + seen = set() for name in field_names: if name.startswith('_') and not rename: raise ValueError('Field names cannot start with an underscore: %r' % name) - if name in seen_names: + if name in seen: raise ValueError('Encountered duplicate field name: %r' % name) - seen_names.add(name) + seen.add(name) # Fill-in the class template class_definition = _class_template.format( @@ -350,8 +350,6 @@ field_defs = '\n'.join(_field_template.format(index=index, name=name) for index, name in enumerate(field_names)) ) - if verbose: - print(class_definition) # Execute the class definition string in a temporary namespace and # support tracing utilities by setting a value for frame.f_globals['__name__'] @@ -361,6 +359,9 @@ except SyntaxError as e: raise SyntaxError(e.msg + ':\n\n' + class_definition) result = namespace[typename] + result._source = class_definition + if verbose: + print(result._source) # For pickling to work, the __module__ variable needs to be set to the frame # where the named tuple is created. Bypass this step in enviroments where diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py --- a/Lib/test/test_collections.py +++ b/Lib/test/test_collections.py @@ -127,6 +127,7 @@ self.assertEqual(Point.__module__, __name__) self.assertEqual(Point.__getitem__, tuple.__getitem__) self.assertEqual(Point._fields, ('x', 'y')) + self.assertIn('class Point(tuple)', Point._source) self.assertRaises(ValueError, namedtuple, 'abc%', 'efg ghi') # type has non-alpha char self.assertRaises(ValueError, namedtuple, 'class', 'efg ghi') # type has keyword -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 21:05:27 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 23 Mar 2011 21:05:27 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merge Message-ID: http://hg.python.org/cpython/rev/09b34be885ac changeset: 68880:09b34be885ac parent: 68879:bffdd7e9265c parent: 68877:d9a779be9736 user: Raymond Hettinger date: Wed Mar 23 12:53:32 2011 -0700 summary: Merge files: Lib/email/quoprimime.py | 6 +- Lib/test/regrtest.py | 7 + Lib/test/support.py | 5 +- Lib/test/test_email/test_email.py | 209 ++++++++++++++++- Lib/test/test_peepholer.py | 11 + Misc/ACKS | 1 + Misc/NEWS | 3 + Python/peephole.c | 6 +- 8 files changed, 223 insertions(+), 25 deletions(-) diff --git a/Lib/email/quoprimime.py b/Lib/email/quoprimime.py --- a/Lib/email/quoprimime.py +++ b/Lib/email/quoprimime.py @@ -135,9 +135,9 @@ charset names the character set to use in the RFC 2046 header. It defaults to iso-8859-1. """ - # Return empty headers unchanged + # Return empty headers as an empty string. if not header_bytes: - return str(header_bytes) + return '' # Iterate over every byte, encoding if necessary. encoded = [] for octet in header_bytes: @@ -268,7 +268,7 @@ if i == n: decoded += eol # Special case if original string did not end with eol - if not encoded.endswith(eol) and decoded.endswith(eol): + if encoded[-1] not in '\r\n' and decoded.endswith(eol): decoded = decoded[:-1] return decoded diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -374,6 +374,13 @@ forever = True elif o in ('-j', '--multiprocess'): use_mp = int(a) + if use_mp <= 0: + try: + import multiprocessing + # Use all cores + extras for tests that like to sleep + use_mp = 2 + multiprocessing.cpu_count() + except (ImportError, NotImplementedError): + use_mp = 3 elif o == '--header': header = True elif o == '--slaveargs': diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1389,9 +1389,8 @@ v = getattr(sys.flags, flag) if v > 0: args.append('-' + opt * v) - if sys.warnoptions: - args.append('-W') - args.extend(sys.warnoptions) + for opt in sys.warnoptions: + args.append('-W' + opt) return args #============================================================ diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -3344,21 +3344,200 @@ c = chr(x) self.assertEqual(quoprimime.unquote(quoprimime.quote(c)), c) - def test_header_encode(self): - eq = self.assertEqual - he = quoprimime.header_encode - eq(he(b'hello'), '=?iso-8859-1?q?hello?=') - eq(he(b'hello', charset='iso-8859-2'), '=?iso-8859-2?q?hello?=') - eq(he(b'hello\nworld'), '=?iso-8859-1?q?hello=0Aworld?=') - # Test a non-ASCII character - eq(he(b'hello\xc7there'), '=?iso-8859-1?q?hello=C7there?=') - - def test_decode(self): - eq = self.assertEqual - eq(quoprimime.decode(''), '') - eq(quoprimime.decode('hello'), 'hello') - eq(quoprimime.decode('hello', 'X'), 'hello') - eq(quoprimime.decode('hello\nworld', 'X'), 'helloXworld') + def _test_header_encode(self, header, expected_encoded_header, charset=None): + if charset is None: + encoded_header = quoprimime.header_encode(header) + else: + encoded_header = quoprimime.header_encode(header, charset) + self.assertEqual(encoded_header, expected_encoded_header) + + def test_header_encode_null(self): + self._test_header_encode(b'', '') + + def test_header_encode_one_word(self): + self._test_header_encode(b'hello', '=?iso-8859-1?q?hello?=') + + def test_header_encode_two_lines(self): + self._test_header_encode(b'hello\nworld', + '=?iso-8859-1?q?hello=0Aworld?=') + + def test_header_encode_non_ascii(self): + self._test_header_encode(b'hello\xc7there', + '=?iso-8859-1?q?hello=C7there?=') + + def test_header_encode_alt_charset(self): + self._test_header_encode(b'hello', '=?iso-8859-2?q?hello?=', + charset='iso-8859-2') + + def _test_header_decode(self, encoded_header, expected_decoded_header): + decoded_header = quoprimime.header_decode(encoded_header) + self.assertEqual(decoded_header, expected_decoded_header) + + def test_header_decode_null(self): + self._test_header_decode('', '') + + def test_header_decode_one_word(self): + self._test_header_decode('hello', 'hello') + + def test_header_decode_two_lines(self): + self._test_header_decode('hello=0Aworld', 'hello\nworld') + + def test_header_decode_non_ascii(self): + self._test_header_decode('hello=C7there', 'hello\xc7there') + + def _test_decode(self, encoded, expected_decoded, eol=None): + if eol is None: + decoded = quoprimime.decode(encoded) + else: + decoded = quoprimime.decode(encoded, eol=eol) + self.assertEqual(decoded, expected_decoded) + + def test_decode_null_word(self): + self._test_decode('', '') + + def test_decode_null_line_null_word(self): + self._test_decode('\r\n', '\n') + + def test_decode_one_word(self): + self._test_decode('hello', 'hello') + + def test_decode_one_word_eol(self): + self._test_decode('hello', 'hello', eol='X') + + def test_decode_one_line(self): + self._test_decode('hello\r\n', 'hello\n') + + def test_decode_one_line_lf(self): + self._test_decode('hello\n', 'hello\n') + + def test_decode_one_line_cr(self): + self._test_decode('hello\r', 'hello\n') + + def test_decode_one_line_nl(self): + self._test_decode('hello\n', 'helloX', eol='X') + + def test_decode_one_line_crnl(self): + self._test_decode('hello\r\n', 'helloX', eol='X') + + def test_decode_one_line_one_word(self): + self._test_decode('hello\r\nworld', 'hello\nworld') + + def test_decode_one_line_one_word_eol(self): + self._test_decode('hello\r\nworld', 'helloXworld', eol='X') + + def test_decode_two_lines(self): + self._test_decode('hello\r\nworld\r\n', 'hello\nworld\n') + + def test_decode_two_lines_eol(self): + self._test_decode('hello\r\nworld\r\n', 'helloXworldX', eol='X') + + def test_decode_one_long_line(self): + self._test_decode('Spam' * 250, 'Spam' * 250) + + def test_decode_one_space(self): + self._test_decode(' ', '') + + def test_decode_multiple_spaces(self): + self._test_decode(' ' * 5, '') + + def test_decode_one_line_trailing_spaces(self): + self._test_decode('hello \r\n', 'hello\n') + + def test_decode_two_lines_trailing_spaces(self): + self._test_decode('hello \r\nworld \r\n', 'hello\nworld\n') + + def test_decode_quoted_word(self): + self._test_decode('=22quoted=20words=22', '"quoted words"') + + def test_decode_uppercase_quoting(self): + self._test_decode('ab=CD=EF', 'ab\xcd\xef') + + def test_decode_lowercase_quoting(self): + self._test_decode('ab=cd=ef', 'ab\xcd\xef') + + def test_decode_soft_line_break(self): + self._test_decode('soft line=\r\nbreak', 'soft linebreak') + + def test_decode_false_quoting(self): + self._test_decode('A=1,B=A ==> A+B==2', 'A=1,B=A ==> A+B==2') + + def _test_encode(self, body, expected_encoded_body, maxlinelen=None, eol=None): + kwargs = {} + if maxlinelen is None: + # Use body_encode's default. + maxlinelen = 76 + else: + kwargs['maxlinelen'] = maxlinelen + if eol is None: + # Use body_encode's default. + eol = '\n' + else: + kwargs['eol'] = eol + encoded_body = quoprimime.body_encode(body, **kwargs) + self.assertEqual(encoded_body, expected_encoded_body) + if eol == '\n' or eol == '\r\n': + # We know how to split the result back into lines, so maxlinelen + # can be checked. + for line in encoded_body.splitlines(): + self.assertLessEqual(len(line), maxlinelen) + + def test_encode_null(self): + self._test_encode('', '') + + def test_encode_null_lines(self): + self._test_encode('\n\n', '\n\n') + + def test_encode_one_line(self): + self._test_encode('hello\n', 'hello\n') + + def test_encode_one_line_crlf(self): + self._test_encode('hello\r\n', 'hello\n') + + def test_encode_one_line_eol(self): + self._test_encode('hello\n', 'hello\r\n', eol='\r\n') + + def test_encode_one_space(self): + self._test_encode(' ', '=20') + + def test_encode_one_line_one_space(self): + self._test_encode(' \n', '=20\n') + + def test_encode_one_word_trailing_spaces(self): + self._test_encode('hello ', 'hello =20') + + def test_encode_one_line_trailing_spaces(self): + self._test_encode('hello \n', 'hello =20\n') + + def test_encode_one_word_trailing_tab(self): + self._test_encode('hello \t', 'hello =09') + + def test_encode_one_line_trailing_tab(self): + self._test_encode('hello \t\n', 'hello =09\n') + + def test_encode_trailing_space_before_maxlinelen(self): + self._test_encode('abcd \n1234', 'abcd =\n\n1234', maxlinelen=6) + + def test_encode_trailing_space_beyond_maxlinelen(self): + self._test_encode('abcd \n1234', 'abc=\nd =\n\n1234', maxlinelen=4) + + def test_encode_quoted_equals(self): + self._test_encode('a = b', 'a =3D b') + + def test_encode_one_long_string(self): + self._test_encode('x' * 100, 'x' * 75 + '=\n' + 'x' * 25) + + def test_encode_one_long_line(self): + self._test_encode('x' * 100 + '\n', 'x' * 75 + '=\n' + 'x' * 25 + '\n') + + def test_encode_one_very_long_line(self): + self._test_encode('x' * 200 + '\n', + 2 * ('x' * 75 + '=\n') + 'x' * 50 + '\n') + + def test_encode_one_long_line(self): + self._test_encode('x' * 100 + '\n', 'x' * 75 + '=\n' + 'x' * 25 + '\n') + + def test_encode_shortest_maxlinelen(self): + self._test_encode('=' * 5, '=3D=\n' * 4 + '=3D', maxlinelen=4) def test_encode(self): eq = self.assertEqual diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py --- a/Lib/test/test_peepholer.py +++ b/Lib/test/test_peepholer.py @@ -3,6 +3,7 @@ import sys from io import StringIO import unittest +from math import copysign def disassemble(func): f = StringIO() @@ -207,6 +208,9 @@ def test_folding_of_unaryops_on_constants(self): for line, elem in ( ('-0.5', '(-0.5)'), # unary negative + ('-0.0', '(-0.0)'), # -0.0 + ('-(1.0-1.0)','(-0.0)'), # -0.0 after folding + ('-0', '(0)'), # -0 ('~-2', '(1)'), # unary invert ('+1', '(1)'), # unary positive ): @@ -214,6 +218,13 @@ self.assertIn(elem, asm, asm) self.assertNotIn('UNARY_', asm) + # Check that -0.0 works after marshaling + def negzero(): + return -(1.0-1.0) + + self.assertNotIn('UNARY_', disassemble(negzero)) + self.assertTrue(copysign(1.0, negzero()) < 0) + # Verify that unfoldables are skipped for line, elem in ( ('-"abc"', "('abc')"), # unary negative diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -867,6 +867,7 @@ Frank J. Tobin R Lindsay Todd Bennett Todd +Eugene Toder Matias Torchinsky Sandro Tosi Richard Townsend diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #11244: Remove an unnecessary peepholer check that was preventing + negative zeros from being constant-folded properly. + - Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on Windows if the file is a TTY to workaround a Windows bug. The Windows console returns an error (12: not enough space error) on writing into stdout if diff --git a/Python/peephole.c b/Python/peephole.c --- a/Python/peephole.c +++ b/Python/peephole.c @@ -238,7 +238,7 @@ static int fold_unaryops_on_constants(unsigned char *codestr, PyObject *consts, PyObject *v) { - PyObject *newconst=NULL/*, *v*/; + PyObject *newconst; Py_ssize_t len_consts; int opcode; @@ -250,9 +250,7 @@ opcode = codestr[3]; switch (opcode) { case UNARY_NEGATIVE: - /* Preserve the sign of -0.0 */ - if (PyObject_IsTrue(v) == 1) - newconst = PyNumber_Negative(v); + newconst = PyNumber_Negative(v); break; case UNARY_INVERT: newconst = PyNumber_Invert(v); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 21:05:28 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 23 Mar 2011 21:05:28 +0100 Subject: [Python-checkins] cpython: Add news entry for the _source attribute created by namedtuple. Message-ID: http://hg.python.org/cpython/rev/d44d6b31abfb changeset: 68881:d44d6b31abfb user: Raymond Hettinger date: Wed Mar 23 13:05:02 2011 -0700 summary: Add news entry for the _source attribute created by namedtuple. files: Misc/NEWS | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -87,6 +87,11 @@ - Issue #11591: Prevent "import site" from modifying sys.path when python was started with -S. +- collections.namedtuple() now adds a _source attribute to the generated + class. This make the source more accessible than the outdated + "verbose" option which prints to stdout but doesn't make the source + string available. + - Issue #11371: Mark getopt error messages as localizable. Patch by Filip Gruszczy?ski. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 23 21:21:39 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:21:39 +0100 Subject: [Python-checkins] peps: Initial set of Python Enhancement Proposals Message-ID: http://hg.python.org/peps/rev/052748287b89 changeset: 0:052748287b89 user: Barry Warsaw date: Thu Jul 13 06:33:08 2000 +0000 summary: Initial set of Python Enhancement Proposals files: pep-0000.txt | 31 ++++ pep-0001.txt | 11 + pep-0200.txt | 21 +++ pep-0201.txt | 247 +++++++++++++++++++++++++++++++++++++++ pep-0202.txt | 12 + pep-0203.txt | 12 + 6 files changed, 334 insertions(+), 0 deletions(-) diff --git a/pep-0000.txt b/pep-0000.txt new file mode 100644 --- /dev/null +++ b/pep-0000.txt @@ -0,0 +1,31 @@ +PEP: 0 +Title: Index of Python Enhancement Proposals (PEPs) +Version: $Revision$ +Owner: bwarsaw at beopen.com (Barry A. Warsaw) +Status: Active + + +Introduction + + The PEP contains the index of all Python Enhancement Proposals, + known as PEPs. PEP numbers are assigned by the PEP Editor, and + once assigned are never changed. + +Index + + num filename title + ---- -------- ----- + 0 pep-0000.txt Index of Python Enhance Proposals + 1 pep-0001.txt PEP Guidelines + + 200 pep-0200.txt Python 2.0 Release Schedule + 201 pep-0201.txt Parallel Iteration + 202 pep-0202.txt List Comprehensions + 203 pep-0203.txt Augmented Assignments + + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: diff --git a/pep-0001.txt b/pep-0001.txt new file mode 100644 --- /dev/null +++ b/pep-0001.txt @@ -0,0 +1,11 @@ +PEP: 1 +Title: PEP Guidelines +Version: $Revision$ +Owner: bwarsaw at beopen.com (Barry A. Warsaw) +Status: Incomplete + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: diff --git a/pep-0200.txt b/pep-0200.txt new file mode 100644 --- /dev/null +++ b/pep-0200.txt @@ -0,0 +1,21 @@ +PEP: 200 +Title: Python 2.0 Release Schedule +Version: $Revision$ +Owner: bwarsaw at beopen.com (Barry A. Warsaw) +Python-Version: 2.0 +Status: Incomplete + +Introduction + + This PEP describes the Python 2.0 release schedule, tracking the + status and ownership of the major new features, summarizes + discussions held in mailing list forums, and provides URLs for + further information, patches, and other outstanding issues. The + CVS revision history of this file contains the definitive + historical record. + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: diff --git a/pep-0201.txt b/pep-0201.txt new file mode 100644 --- /dev/null +++ b/pep-0201.txt @@ -0,0 +1,247 @@ +PEP: 201 +Title: Parallel Iteration +Version: $Revision$ +Owner: bwarsaw at beopen.com (Barry A. Warsaw) +Python-Version: 2.0 +Status: Draft + + + +Introduction + + This PEP describes the `parallel iteration' proposal for Python + 2.0, previously known as `parallel for loops'. This PEP tracks + the status and ownership of this feature, slated for introduction + in Python 2.0. It contains a description of the feature and + outlines changes necessary to support the feature. This PEP + summarizes discussions held in mailing list forums, and provides + URLs for further information, where appropriate. The CVS revision + history of this file contains the definitive historical record. + + + +Standard For-Loops + + Motivation for this feature has its roots in a concept described + as `parallel for loops'. A standard for-loop in Python iterates + over every element in the sequence until the sequence is + exhausted. The for-loop can also be explicitly exited with a + `break' statement, and for-loops can have else: clauses, but these + is has no bearing on this PEP. + + For-loops can iterate over built-in types such as lists and + tuples, but they can also iterate over instance types that conform + to an informal sequence protocol. This protocol states that the + instance should implement the __getitem__() method, expecting a + monotonically increasing index starting at 0, and this method + should raise an IndexError when the sequence is exhausted. This + protocol is current undocumented -- a defect in Python's + documentation hopefully soon corrected. + + For loops are described in the language reference manual here + http://www.python.org/doc/devel/ref/for.html + + An example for-loop + + >>> for i in (1, 2, 3): print i + ... + 1 + 2 + 3 + + In this example, the variable `i' is called the `target', and is + assigned the next element of the list, each time through the loop. + + + +Parallel For-Loops + + Parallel for-loops are non-nested iterations over two or more + sequences, such that at each pass through the loop, one element + from each sequence is taken to compose the target. This behavior + can already be accomplished in Python through the use of the map() + built-in function: + + >>> a = (1, 2, 3) + >>> b = (4, 5, 6) + >>> for i in map(None, a, b): print i + ... + (1, 4) + (2, 5) + (3, 6) + + Here, map() returns a list of N-tuples, where N is the number of + sequences in map()'s argument list (after the initial `None'). + Each tuple is constructed of the i-th elements from each of the + argument lists, specifically in this example: + + >>> map(None, a, b) + [(1, 4), (2, 5), (3, 6)] + + The for-loop simply iterates over this list as normal. + + While the map() idiom is a common one in Python, it has several + disadvantages: + + - It is non-obvious to programmers without a functional + programming background. + + - The use of the magic `None' first argument is non-obvious. + + - Its has arbitrary, often unintended, and inflexible semantics + when the lists are not of the same length: the shorter sequences + are padded with `None'. + + >>> c = (4, 5, 6, 7) + >>> map(None, a, c) + [(1, 4), (2, 5), (3, 6), (None, 7)] + + For these reasons, several proposals were floated in the Python + 2.0 beta time frame for providing a better spelling of parallel + for-loops. The initial proposals centered around syntactic + changes to the for statement, but conflicts and problems with the + syntax were unresolvable, especially when parallel for-loops were + combined with another proposed feature called `list + comprehensions' (see pep-0202.txt). + + + +The Proposed Solution + + The proposed solution is to introduce a new built-in sequence + generator function, available in the __builtin__ module. This + function is to be called `marry' and has the following signature: + + marry(seqa, [seqb, [...]], [pad=]) + + marry() takes one or more sequences and weaves their elements + together, just as map(None, ...) does with sequences of equal + length. The optional keyword argument `pad', if supplied, is a + value used to pad all shorter sequences to the length of the + longest sequence. If `pad' is omitted, then weaving stops when + the shortest sequence is exhausted. + + It is not possible to pad short lists with different pad values, + nor will marry() ever raise an exception with lists of different + lengths. To accomplish both of these, the sequences must be + checked and processed before the call to marry(). + + + +Lazy Execution + + For performance purposes, marry() does not construct the list of + tuples immediately. Instead it instantiates an object that + implements a __getitem__() method and conforms to the informal + for-loop protocol. This method constructs the individual tuples + on demand. + + + +Examples + + Here are some examples, based on the reference implementation + below. + + >>> a = (1, 2, 3, 4) + >>> b = (5, 6, 7, 8) + >>> c = (9, 10, 11) + >>> d = (12, 13) + + >>> marry(a, b) + [(1, 5), (2, 6), (3, 7), (4, 8)] + + >>> marry(a, d) + [(1, 12), (2, 13)] + + >>> marry(a, d, pad=0) + [(1, 12), (2, 13), (3, 0), (4, 0)] + + >>> marry(a, d, pid=0) + Traceback (most recent call last): + File "", line 1, in ? + File "/usr/tmp/python-iKAOxR", line 11, in marry + TypeError: unexpected keyword arguments + + >>> marry(a, b, c, d) + [(1, 5, 9, 12), (2, 6, 10, 13)] + + >>> marry(a, b, c, d, pad=None) + [(1, 5, 9, 12), (2, 6, 10, 13), (3, 7, 11, None), (4, 8, None, None)] + >>> map(None, a, b, c, d) + [(1, 5, 9, 12), (2, 6, 10, 13), (3, 7, 11, None), (4, 8, None, None)] + + + +Reference Implementation + + Here is a reference implementation, in Python of the marry() + built-in function and helper class. These would ultimately be + replaced by equivalent C code. + + class _Marriage: + def __init__(self, args, kws): + self.__padgiven = 0 + if kws.has_key('pad'): + self.__padgiven = 1 + self.__pad = kws['pad'] + del kws['pad'] + if kws: + raise TypeError('unexpected keyword arguments') + self.__sequences = args + self.__seqlen = len(args) + + def __getitem__(self, i): + ret = [] + exhausted = 0 + for s in self.__sequences: + try: + ret.append(s[i]) + except IndexError: + if not self.__padgiven: + raise + exhausted = exhausted + 1 + if exhausted == self.__seqlen: + raise + ret.append(self.__pad) + return tuple(ret) + + def __str__(self): + ret = [] + i = 0 + while 1: + try: + ret.append(self[i]) + except IndexError: + break + i = i + 1 + return str(ret) + __repr__ = __str__ + + + def marry(*args, **kws): + return _Marriage(args, kws) + + + +Open Issues + + What should "marry(a)" do? + + Given a = (1, 2, 3), should marry(a) return [(1,), (2,), (3,)] or + should it return [1, 2, 3]? The first is more consistent with the + description given above, while the latter is what map(None, a) + does, and may be more consistent with user expectation. + + The latter interpretation requires special casing, which is not + present in the reference implementation. It returns + + >>> marry(a) + [(1,), (2,), (3,), (4,)] + + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: diff --git a/pep-0202.txt b/pep-0202.txt new file mode 100644 --- /dev/null +++ b/pep-0202.txt @@ -0,0 +1,12 @@ +PEP: 202 +Title: List Comprehensions +Version: $Revision$ +Owner: bwarsaw at beopen.com (Barry A. Warsaw) +Python-Version: 2.0 +Status: Incomplete + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: diff --git a/pep-0203.txt b/pep-0203.txt new file mode 100644 --- /dev/null +++ b/pep-0203.txt @@ -0,0 +1,12 @@ +PEP: 203 +Title: Augmented Assignments +Version: $Revision$ +Owner: bwarsaw at beopen.com (Barry A. Warsaw) +Python-Version: 2.0 +Status: Incomplete + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:21:42 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:21:42 +0100 Subject: [Python-checkins] peps: added names of owners (hope they're right) Message-ID: http://hg.python.org/peps/rev/fa76958150af changeset: 1:fa76958150af user: Jeremy Hylton date: Thu Jul 13 20:25:45 2000 +0000 summary: added names of owners (hope they're right) Barry can fix them if they aren't files: pep-0000.txt | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pep-0000.txt b/pep-0000.txt --- a/pep-0000.txt +++ b/pep-0000.txt @@ -13,15 +13,15 @@ Index - num filename title - ---- -------- ----- - 0 pep-0000.txt Index of Python Enhance Proposals - 1 pep-0001.txt PEP Guidelines + num filename title owner +---- -------- ----- ----- + 0 pep-0000.txt Index of Python Enhance Proposals bwarsaw + 1 pep-0001.txt PEP Guidelines bwarsaw, jhylton - 200 pep-0200.txt Python 2.0 Release Schedule - 201 pep-0201.txt Parallel Iteration - 202 pep-0202.txt List Comprehensions - 203 pep-0203.txt Augmented Assignments + 200 pep-0200.txt Python 2.0 Release Schedule jhylton + 201 pep-0201.txt Parallel Iteration bwarsaw + 202 pep-0202.txt List Comprehensions tim_one + 203 pep-0203.txt Augmented Assignments guido -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:21:47 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:21:47 +0100 Subject: [Python-checkins] peps: believe twouters is actually responsible for 203 Message-ID: http://hg.python.org/peps/rev/3241ebff3677 changeset: 2:3241ebff3677 user: Jeremy Hylton date: Thu Jul 13 20:52:39 2000 +0000 summary: believe twouters is actually responsible for 203 files: pep-0000.txt | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pep-0000.txt b/pep-0000.txt --- a/pep-0000.txt +++ b/pep-0000.txt @@ -21,7 +21,7 @@ 200 pep-0200.txt Python 2.0 Release Schedule jhylton 201 pep-0201.txt Parallel Iteration bwarsaw 202 pep-0202.txt List Comprehensions tim_one - 203 pep-0203.txt Augmented Assignments guido + 203 pep-0203.txt Augmented Assignments twouters -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:21:52 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:21:52 +0100 Subject: [Python-checkins] peps: Added PEP204, Range Literals, initially assigned to Thomas Wouters. Message-ID: http://hg.python.org/peps/rev/e6994b11504d changeset: 3:e6994b11504d user: Barry Warsaw date: Fri Jul 14 03:27:42 2000 +0000 summary: Added PEP204, Range Literals, initially assigned to Thomas Wouters. Slight reformatting. files: pep-0000.txt | 17 +++++++++-------- 1 files changed, 9 insertions(+), 8 deletions(-) diff --git a/pep-0000.txt b/pep-0000.txt --- a/pep-0000.txt +++ b/pep-0000.txt @@ -13,16 +13,16 @@ Index - num filename title owner ----- -------- ----- ----- - 0 pep-0000.txt Index of Python Enhance Proposals bwarsaw - 1 pep-0001.txt PEP Guidelines bwarsaw, jhylton + num filename title owner + --- ----------- ----- ----- + 0 pep-0000.txt Index of Python Enhance Proposals bwarsaw + 1 pep-0001.txt PEP Guidelines bwarsaw, jhylton - 200 pep-0200.txt Python 2.0 Release Schedule jhylton - 201 pep-0201.txt Parallel Iteration bwarsaw - 202 pep-0202.txt List Comprehensions tim_one - 203 pep-0203.txt Augmented Assignments twouters - + 200 pep-0200.txt Python 2.0 Release Schedule jhylton + 201 pep-0201.txt Parallel Iteration bwarsaw + 202 pep-0202.txt List Comprehensions tim_one + 203 pep-0203.txt Augmented Assignments twouters + 204 pep-0204.txt Range Literals twouters Local Variables: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:21:54 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:21:54 +0100 Subject: [Python-checkins] peps: Range Literals PEP, initially assigned to Thomas Wouters. Message-ID: http://hg.python.org/peps/rev/71e9cfc4a6c6 changeset: 4:71e9cfc4a6c6 user: Barry Warsaw date: Fri Jul 14 03:29:11 2000 +0000 summary: Range Literals PEP, initially assigned to Thomas Wouters. files: pep-0204.txt | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/pep-0204.txt b/pep-0204.txt new file mode 100644 --- /dev/null +++ b/pep-0204.txt @@ -0,0 +1,13 @@ +PEP: 203 +Title: Range Literals +Version: $Revision$ +Owner: thomas at xs4all.net (Thomas Wouters) +Python-Version: 2.0 +Status: Incomplete + + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:01 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:01 +0100 Subject: [Python-checkins] peps: Assign to Tim Peters. Message-ID: http://hg.python.org/peps/rev/cfaff68456cb changeset: 5:cfaff68456cb user: Barry Warsaw date: Fri Jul 14 03:29:52 2000 +0000 summary: Assign to Tim Peters. files: pep-0202.txt | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pep-0202.txt b/pep-0202.txt --- a/pep-0202.txt +++ b/pep-0202.txt @@ -1,7 +1,7 @@ PEP: 202 Title: List Comprehensions Version: $Revision$ -Owner: bwarsaw at beopen.com (Barry A. Warsaw) +Owner: tpeters at beopen.com (Tim Peters) Python-Version: 2.0 Status: Incomplete -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:02 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:02 +0100 Subject: [Python-checkins] peps: Assign to Thomas Wouters. Message-ID: http://hg.python.org/peps/rev/a64001b066c1 changeset: 6:a64001b066c1 user: Barry Warsaw date: Fri Jul 14 03:30:20 2000 +0000 summary: Assign to Thomas Wouters. files: pep-0203.txt | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/pep-0203.txt b/pep-0203.txt --- a/pep-0203.txt +++ b/pep-0203.txt @@ -1,10 +1,11 @@ PEP: 203 Title: Augmented Assignments Version: $Revision$ -Owner: bwarsaw at beopen.com (Barry A. Warsaw) +Owner: thomas at xs4all.net (Thomas Wouters) Python-Version: 2.0 Status: Incomplete + Local Variables: mode: indented-text -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:03 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:03 +0100 Subject: [Python-checkins] peps: Weak References PEP, assigned to Fred Drake Message-ID: http://hg.python.org/peps/rev/bf9c09b6c1ed changeset: 7:bf9c09b6c1ed user: Barry Warsaw date: Fri Jul 14 03:44:01 2000 +0000 summary: Weak References PEP, assigned to Fred Drake files: pep-0205.txt | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/pep-0205.txt b/pep-0205.txt new file mode 100644 --- /dev/null +++ b/pep-0205.txt @@ -0,0 +1,13 @@ +PEP: 205 +Title: Weak References +Version: $Revision$ +Owner: fdrake at beopen.com (Fred Drake) +Python-Version: 2.1 +Status: Incomplete + + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:05 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:05 +0100 Subject: [Python-checkins] peps: PEP 205, Weak References, assigned to Fred Drake Message-ID: http://hg.python.org/peps/rev/d8afe4a0a3ab changeset: 8:d8afe4a0a3ab user: Barry Warsaw date: Fri Jul 14 03:44:27 2000 +0000 summary: PEP 205, Weak References, assigned to Fred Drake files: pep-0000.txt | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/pep-0000.txt b/pep-0000.txt --- a/pep-0000.txt +++ b/pep-0000.txt @@ -23,6 +23,7 @@ 202 pep-0202.txt List Comprehensions tim_one 203 pep-0203.txt Augmented Assignments twouters 204 pep-0204.txt Range Literals twouters + 205 pep-0205.txt Weak References fdrake Local Variables: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:05 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:05 +0100 Subject: [Python-checkins] peps: 2.0 Batteries Included PEP, owned by Moshe Zadka. The list of Message-ID: http://hg.python.org/peps/rev/309697a0b8d2 changeset: 9:309697a0b8d2 user: Barry Warsaw date: Fri Jul 14 03:53:53 2000 +0000 summary: 2.0 Batteries Included PEP, owned by Moshe Zadka. The list of standard extensions to include in the 2.0 release. files: pep-0206.txt | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/pep-0206.txt b/pep-0206.txt new file mode 100644 --- /dev/null +++ b/pep-0206.txt @@ -0,0 +1,13 @@ +PEP: 206 +Title: 2.0 Batteries Included +Version: $Revision$ +Owner: moshez at math.huji.ac.il (Moshe Zadka) +Python-Version: 2.0 +Status: Incomplete + + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:06 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:06 +0100 Subject: [Python-checkins] peps: Added PEP206, called "2.0 Batteries Included", the list of extension Message-ID: http://hg.python.org/peps/rev/01ac2b2da99b changeset: 10:01ac2b2da99b user: Barry Warsaw date: Fri Jul 14 03:54:49 2000 +0000 summary: Added PEP206, called "2.0 Batteries Included", the list of extension modules to include in the fat distribution. Owned by Moshe Zadka. files: pep-0000.txt | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/pep-0000.txt b/pep-0000.txt --- a/pep-0000.txt +++ b/pep-0000.txt @@ -24,6 +24,7 @@ 203 pep-0203.txt Augmented Assignments twouters 204 pep-0204.txt Range Literals twouters 205 pep-0205.txt Weak References fdrake + 206 pep-0206.txt 2.0 Batteries Included moshez Local Variables: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:14 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:14 +0100 Subject: [Python-checkins] peps: The contents of PEP206 as provided by Moshe. Spell checked, Message-ID: http://hg.python.org/peps/rev/486047b77ee8 changeset: 11:486047b77ee8 user: Barry Warsaw date: Fri Jul 14 14:21:51 2000 +0000 summary: The contents of PEP206 as provided by Moshe. Spell checked, formatting, XXX=>TBD, and a few other editor's notes added by Barry. files: pep-0206.txt | 78 +++++++++++++++++++++++++++++++++++++++- 1 files changed, 77 insertions(+), 1 deletions(-) diff --git a/pep-0206.txt b/pep-0206.txt --- a/pep-0206.txt +++ b/pep-0206.txt @@ -3,7 +3,83 @@ Version: $Revision$ Owner: moshez at math.huji.ac.il (Moshe Zadka) Python-Version: 2.0 -Status: Incomplete +Status: Draft + + + +Introduction + + This PEP describes the `batteries included' proposal for Python + 2.0, the fat distribution containing commonly used third party + extension modules. This PEP tracks the status and ownership of + this proposal, slated for introduction in Python 2.0. It contains + a description of the proposal and outlines how to support it. + + + +Batteries Included Philosophy + + The Python source distribution always maintained the philosophy of + "batteries included" -- having a rich and versatile standard + library which is immediately available, without making the user + download separate packages. This gives the Python language a head + start in many projects. However, the Python standard library + often relies on important Open Source libraries which might be + unavailable on many computers, so that the user has to separately + download and compile those. Some examples are the zlib + compression library, and the gmp number manipulation library. + + TBD -- can anyone give reference to some article describing + TBD -- "batteries included?" + + + +The Proposed Solution + + The proposed solution is to download a few important third-party + libraries, and distribute them with the source distribution of + Python. In addition, the build procedure will be changed to build + those libraries by default, and build the Python modules which + rely on them linked against those libraries. Individual users + will still be able to link the Python modules against already + installed libraries, or disable them completely. + + Additionally, some Open Source third-party modules will also be + distributed together with the source distribution. + + TBD -- does this mean some will be distributed but not enabled by + default? [ed] + + Here is the list of libraries which are proposed to be dealt with + in this manner, and where they can be downloaded: + + zlib -- http://www.info-zip.org/pub/infozip/zlib/zlib.tar.gz + expat -- ftp://ftp.jclark.com/pub/xml/expat.zip. + Tcl -- http://dev.scriptics.com:80/download/tcl/tcl8_3/tcl8.3.1.tar.gz + Tk -- http://dev.scriptics.com:80/download/tcl/tcl8_3/tk8.3.1.tar.gz + PIL -- http://www.pythonware.com/downloads/Imaging-1.1.tar.gz + libjpeg -- ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz + ncurses -- ftp://dickey.his.com/ncurses/ncurses.tar.gz + + + +Software covered by the GNU Public License + + TBD -- please explain why GPL'd software is not included in Python + (and perhaps the difference between GPL and LGPL). + + + +Open Issues + + Where does all this source live? + + What should the build procedure look like? + + What to do if compilation of a supporting library fails? + + ESR also mentioned libpng, but I don't know of a Python module + that uses it. -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:18 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:18 +0100 Subject: [Python-checkins] peps: An update from Moshe, and another question from the editor. Message-ID: http://hg.python.org/peps/rev/f97b0d5a33c9 changeset: 12:f97b0d5a33c9 user: Barry Warsaw date: Fri Jul 14 14:37:20 2000 +0000 summary: An update from Moshe, and another question from the editor. files: pep-0206.txt | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/pep-0206.txt b/pep-0206.txt --- a/pep-0206.txt +++ b/pep-0206.txt @@ -54,12 +54,18 @@ in this manner, and where they can be downloaded: zlib -- http://www.info-zip.org/pub/infozip/zlib/zlib.tar.gz - expat -- ftp://ftp.jclark.com/pub/xml/expat.zip. + expat -- ftp://ftp.jclark.com/pub/xml/expat.zip Tcl -- http://dev.scriptics.com:80/download/tcl/tcl8_3/tcl8.3.1.tar.gz Tk -- http://dev.scriptics.com:80/download/tcl/tcl8_3/tk8.3.1.tar.gz PIL -- http://www.pythonware.com/downloads/Imaging-1.1.tar.gz + ncurses -- ftp://dickey.his.com/ncurses/ncurses.tar.gz + + TBD, the following four: + libjpeg -- ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz - ncurses -- ftp://dickey.his.com/ncurses/ncurses.tar.gz + NumPy -- http://download.sourceforge.net/numpy/Numerical-15.3.tgz + Pmw -- ftp://ftp.dscpl.com.au/pub/pmw/Pmw.0.8.4.tar.gz + BLT -- ftp://ftp.tcltk.com/aa004735/pub/blt/BLT2.4u.tar.gz @@ -81,6 +87,8 @@ ESR also mentioned libpng, but I don't know of a Python module that uses it. + How does all this fit in with distutils? + Local Variables: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:18 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:18 +0100 Subject: [Python-checkins] peps: Another round of updates from Moshe. A reference to the term Message-ID: http://hg.python.org/peps/rev/a088a5af9893 changeset: 13:a088a5af9893 user: Barry Warsaw date: Fri Jul 14 15:21:52 2000 +0000 summary: Another round of updates from Moshe. A reference to the term "batteries included" was added. The question about open source 3rd party modules was answered, as was the explanation of GPL/LGPL. files: pep-0206.txt | 36 +++++++++++++++++++++++------------- 1 files changed, 23 insertions(+), 13 deletions(-) diff --git a/pep-0206.txt b/pep-0206.txt --- a/pep-0206.txt +++ b/pep-0206.txt @@ -29,8 +29,10 @@ download and compile those. Some examples are the zlib compression library, and the gmp number manipulation library. - TBD -- can anyone give reference to some article describing - TBD -- "batteries included?" + The original coinage of the term "batteries included" can be found + here: + + http://www.uk.research.att.com/~fms/ipc7/tr-1998-9.html @@ -44,25 +46,26 @@ will still be able to link the Python modules against already installed libraries, or disable them completely. - Additionally, some Open Source third-party modules will also be - distributed together with the source distribution. + Additionally, some Open Source third-party Python modules will + also be distributed together with the source distribution. The + difference between those and external libraries is that the latter + are distributed in order to make the Python distribution self + contained, and the former are added so there will be new + functionality in out-of-the-box Python. - TBD -- does this mean some will be distributed but not enabled by - default? [ed] - - Here is the list of libraries which are proposed to be dealt with - in this manner, and where they can be downloaded: + Here is the tentative list of libraries which are proposed to be + dealt with in this manner, and where they can be downloaded: zlib -- http://www.info-zip.org/pub/infozip/zlib/zlib.tar.gz expat -- ftp://ftp.jclark.com/pub/xml/expat.zip Tcl -- http://dev.scriptics.com:80/download/tcl/tcl8_3/tcl8.3.1.tar.gz Tk -- http://dev.scriptics.com:80/download/tcl/tcl8_3/tk8.3.1.tar.gz PIL -- http://www.pythonware.com/downloads/Imaging-1.1.tar.gz + libjpeg -- ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz ncurses -- ftp://dickey.his.com/ncurses/ncurses.tar.gz - TBD, the following four: + TBD, the following three: - libjpeg -- ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz NumPy -- http://download.sourceforge.net/numpy/Numerical-15.3.tgz Pmw -- ftp://ftp.dscpl.com.au/pub/pmw/Pmw.0.8.4.tar.gz BLT -- ftp://ftp.tcltk.com/aa004735/pub/blt/BLT2.4u.tar.gz @@ -71,8 +74,15 @@ Software covered by the GNU Public License - TBD -- please explain why GPL'd software is not included in Python - (and perhaps the difference between GPL and LGPL). + While many Python modules rely on software distributed under the + GNU General Public License and the GNU Lesser General Public + License, no such sources are proposed here to be added to the + Python interpreter. Currently, the Python interpreter is + distributed under a closed-source-friendly license, which means + that it is possible to include it in a closed source product. + Making redistributers worry about which parts they need to remove + to make closed-source redistribution legal might cost more then + the benefits. -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:22 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:22 +0100 Subject: [Python-checkins] peps: PEP 211, Adding New Operators to Python, owner Greg Wilson. Message-ID: http://hg.python.org/peps/rev/62521cf9bf01 changeset: 14:62521cf9bf01 user: Barry Warsaw date: Sat Jul 15 23:25:49 2000 +0000 summary: PEP 211, Adding New Operators to Python, owner Greg Wilson. files: pep-0211.txt | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/pep-0211.txt b/pep-0211.txt new file mode 100644 --- /dev/null +++ b/pep-0211.txt @@ -0,0 +1,13 @@ +PEP: 211 +Title: Adding New Operators to Python +Version: $Revision$ +Owner: gvwilson at nevex.com (Greg Wilson) +Python-Version: 2.1 +Status: Incomplete + + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:25 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:25 +0100 Subject: [Python-checkins] peps: Added PEPs 207 - 211 Message-ID: http://hg.python.org/peps/rev/1a30f2482c79 changeset: 15:1a30f2482c79 user: Barry Warsaw date: Sat Jul 15 23:26:36 2000 +0000 summary: Added PEPs 207 - 211 files: pep-0000.txt | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/pep-0000.txt b/pep-0000.txt --- a/pep-0000.txt +++ b/pep-0000.txt @@ -25,6 +25,11 @@ 204 pep-0204.txt Range Literals twouters 205 pep-0205.txt Weak References fdrake 206 pep-0206.txt 2.0 Batteries Included moshez + 207 pep-0207.txt Rich Comparisons davida + 208 pep-0208.txt Reworking the Coercion Model davida + 209 pep-0209.txt Adding Multidimensional Arrays davida + 210 pep-0210.txt Decoupling the Interpreter Loop davida + 211 pep-0211.txt Adding New Operators to Python gvwilson Local Variables: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:26 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:26 +0100 Subject: [Python-checkins] peps: New PEPs, all initially owned by David Ascher. Message-ID: http://hg.python.org/peps/rev/cca267380200 changeset: 16:cca267380200 user: Barry Warsaw date: Sat Jul 15 23:28:27 2000 +0000 summary: New PEPs, all initially owned by David Ascher. files: pep-0207.txt | 13 +++++++++++++ pep-0208.txt | 13 +++++++++++++ pep-0209.txt | 13 +++++++++++++ pep-0210.txt | 13 +++++++++++++ 4 files changed, 52 insertions(+), 0 deletions(-) diff --git a/pep-0207.txt b/pep-0207.txt new file mode 100644 --- /dev/null +++ b/pep-0207.txt @@ -0,0 +1,13 @@ +PEP: 207 +Title: Rich Comparisions +Version: $Revision$ +Owner: davida at activestate.com (David Ascher) +Python-Version: 2.1 +Status: Incomplete + + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: diff --git a/pep-0208.txt b/pep-0208.txt new file mode 100644 --- /dev/null +++ b/pep-0208.txt @@ -0,0 +1,13 @@ +PEP: 208 +Title: Reworking the Coercion Model +Version: $Revision$ +Owner: davida at activestate.com (David Ascher) +Python-Version: 2.1 +Status: Incomplete + + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: diff --git a/pep-0209.txt b/pep-0209.txt new file mode 100644 --- /dev/null +++ b/pep-0209.txt @@ -0,0 +1,13 @@ +PEP: 209 +Title: Adding Multidimensional Arrays +Version: $Revision$ +Owner: davida at activestate.com (David Ascher) +Python-Version: 2.0 +Status: Incomplete + + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: diff --git a/pep-0210.txt b/pep-0210.txt new file mode 100644 --- /dev/null +++ b/pep-0210.txt @@ -0,0 +1,13 @@ +PEP: 210 +Title: Decoupling the Interpreter Loop +Version: $Revision$ +Owner: davida at activestate.com (David Ascher) +Python-Version: 2.0 +Status: Incomplete + + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:27 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:27 +0100 Subject: [Python-checkins] peps: Moshe sez: Message-ID: http://hg.python.org/peps/rev/b0649652edc3 changeset: 17:b0649652edc3 user: Barry Warsaw date: Sat Jul 15 23:52:40 2000 +0000 summary: Moshe sez: Added paragraphs about relation to distutils. files: pep-0206.txt | 16 ++++++++++++++-- 1 files changed, 14 insertions(+), 2 deletions(-) diff --git a/pep-0206.txt b/pep-0206.txt --- a/pep-0206.txt +++ b/pep-0206.txt @@ -70,6 +70,20 @@ Pmw -- ftp://ftp.dscpl.com.au/pub/pmw/Pmw.0.8.4.tar.gz BLT -- ftp://ftp.tcltk.com/aa004735/pub/blt/BLT2.4u.tar.gz + +Connection to Distutils + + Since Python 2.0 comes with a new mechanism of distributing Python + modules, called ``distutils'', we should be able to use it. Specificially, + since distutils has the capability or building Python modules in an + automatic fashion, it is hoped that some of the work will consist in + creating a new directory with the source, and having the ``super-make'' + run "./setup --install" in those directories. This should at least take + care of PIL, NumPy and Pmw. In addition, it is hoped that this mechanism + will be easy enough to add other Python modules as user requests direct + us. + + Software covered by the GNU Public License @@ -97,8 +111,6 @@ ESR also mentioned libpng, but I don't know of a Python module that uses it. - How does all this fit in with distutils? - Local Variables: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:27 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:27 +0100 Subject: [Python-checkins] peps: Incomplete version of the augmented assignment PEP. It currently includes Message-ID: http://hg.python.org/peps/rev/45468dd27505 changeset: 18:45468dd27505 user: Thomas Wouters date: Sun Jul 16 16:07:29 2000 +0000 summary: Incomplete version of the augmented assignment PEP. It currently includes only the arguments for/against inclusion of augmented assignment in Python, not yet the technical details. I decided to upload this half-completed version to give people some time to respond before I finish it :-) Feel free to bring up any and all arguments. The point of the PEP is to archive those, after all! files: pep-0203.txt | 142 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 142 insertions(+), 0 deletions(-) diff --git a/pep-0203.txt b/pep-0203.txt --- a/pep-0203.txt +++ b/pep-0203.txt @@ -7,6 +7,148 @@ +Introduction + + This PEP describes the `augmented assignment' proposal for Python + 2.0. This PEP tracks the status and ownership of this feature, + slated for introduction in Python 2.0. It contains a description + of the feature and outlines changes necessary to support the + feature. This PEP summarizes discussions held in mailing list + forums, and provides URLs for further information, where + appropriate. The CVS revision history of this file contains the + definitive historical record. + + + +The Origin of Augmented Assignment + + Augmented assignment refers to binary operators that combine two + existing operators: the assignment operator, and one of the binary + operators. Its origins lie in other programming languages, most + notably `C', where it was defined for performance reasons. They + are meant to replace the repetetive syntax of, for instance, + adding the number '1' to a variable: + + x = x + 1; + + with an expression that is shorter, less error-prone and easier to + optimize (by the compiler): + + x += 1; + + The same goes for all other binary operands, resulting in the + following augmented assignment operator list, based on Python's + current binary operator list: + + +=, -=, /=, *=, %=, **=, >>=, <<=, &=, |=, ^= + + See the documentation of each operator on what they do. + + + +Augmented Assignment in Python + + The traditional reasons for augmented assignment, readability and + optimization, are not as obvious in Python, for several reasons. + + - Numbers are immutable, they cannot be changed. In other + programming languages, a variable holds a value, and altering + the variable changes the value it holds. In Python, variables + hold `references' to values, and altering an immutable value + means changing the variable, not what it points to. + + - Assignment is a different operation in Python. In most + languages, variables are containers, and assignment copies a + value into that container. In Python, assignment binds a value + to a name, it does not copy the value into a new storage space. + + - The augmented assignment operators map fairly directly into the + underlying hardware. Python does not deal directly with the + hardware it runs on, so this `natural inclusion' does not make + sense. + + - The augmented assigment syntax is subtly different in more + complex expressions. What to do, for instance, in a case such + as this: + + seq[i:calc(seq, i)] *= r + + It is unclear whether 'seq' gets indexed once or twice, and + whether 'calc' gets called once or twice. + + + +Normal operators + + There are, however, good reasons to include augented assignment. + One of these has to do with Python's way of handling operators. In + Python, a user defined class can implement one or more of the + binary operators by supplying a 'magic' method name. For instance, + for a class to support ' + ', the '__add__' + method should be defined. This method should return a new object, + which is the result of the expression. + + For the case of ' + ', where 'object' does not + have an '__add__' method, the class can define a '__radd__' + method, which then should behave exactly as '__add__'. Indeed, + '__radd__' is often a different name for the same method. + + For C extention types, a similar technique is available, through + the PyNumberMethods and PySequenceMethods members of the PyType + structure. + + However, the problem with this approach is that the '__add__' + method cannot know in what context it is called. It cannot tell + whether it should create a new object, or whether it is allowed to + modify itself. (As would be the case in 'x = x + 1') As a result, + the '__add__' method, and all other such 'magic' methods, should + always return a new object. For large objects, this can be very + inefficient. + + This inefficiency is often solved by adding a method that does the + appropriate modification 'in-place'. List objects, for instance, + have the 'extend' method that behaves exactly as the '+' operator, + except the operation is done on the list itself, instead of on a + copy. + + The augmented assignment syntax can support this behaviour + explicitly. When the magic method for 'in-place' operation are + missing, it can fall back to the normal methods for that + operation, maintaining full backward compatibility even when + mixing the new syntax with old objects. + + The other benifit of augmented assignment is readability. After + the general concept of augmented assignment is grasped, all the + augmented assigment operators instantly become obvious. There is + no need for non-obvious and non-standard method names to implement + efficient, in-place operations, and there is no need to check the + type of an object before operating on it: the augmented assignment + will work for all types that implement that basic operation, not + merely those that implement the augmented variant. + + And the last problem with augmented assignment, what to do with + indexes and function calls in the expression, can be solved in a + very Pythonic manner: if it looks like it's only called once, it + *is* only called once. Taking this expression: + + seq[func(x)] += x + + The function 'func' is called once, and 'seq' is indexed twice: + once to retrieve the value (__getitem__), and once to store it + (__setitem__). So the expression can be rewritten as: + + tmp = func(x) + seq[tmp] = seq[tmp] + x + + The augmented assignment form of this expression is much more + readable. + + + + + + + Local Variables: mode: indented-text indent-tabs-mode: nil -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:28 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:28 +0100 Subject: [Python-checkins] peps: Latest update. Message-ID: http://hg.python.org/peps/rev/ff76cb6c841d changeset: 19:ff76cb6c841d user: Barry Warsaw date: Mon Jul 17 18:49:21 2000 +0000 summary: Latest update. After consultation with Guido, zip() is chosen as the name of this built-in. In reference implementation added an __len__() method. Added a `Rejected Elaborations' section to talk about suggestions from the list that I've rejected (and the reasoning behind the rejection). Also: rewrite of paragraph 1 under "Standard For-Loops" for clarity; Spelling and grammar fixes; use a References section. files: pep-0201.txt | 195 ++++++++++++++++++++++++++++++++------- 1 files changed, 160 insertions(+), 35 deletions(-) diff --git a/pep-0201.txt b/pep-0201.txt --- a/pep-0201.txt +++ b/pep-0201.txt @@ -25,9 +25,10 @@ Motivation for this feature has its roots in a concept described as `parallel for loops'. A standard for-loop in Python iterates over every element in the sequence until the sequence is - exhausted. The for-loop can also be explicitly exited with a - `break' statement, and for-loops can have else: clauses, but these - is has no bearing on this PEP. + exhausted. A `break' statement inside the loop suite causes an + explicit loop exit. For-loops also have else: clauses which get + executed when the loop exits normally (i.e. not by execution of a + break). For-loops can iterate over built-in types such as lists and tuples, but they can also iterate over instance types that conform @@ -35,13 +36,13 @@ instance should implement the __getitem__() method, expecting a monotonically increasing index starting at 0, and this method should raise an IndexError when the sequence is exhausted. This - protocol is current undocumented -- a defect in Python's + protocol is currently undocumented -- a defect in Python's documentation hopefully soon corrected. - For loops are described in the language reference manual here - http://www.python.org/doc/devel/ref/for.html + For-loops are described in the Python language reference + manual[1]. - An example for-loop + An example for-loop: >>> for i in (1, 2, 3): print i ... @@ -88,7 +89,7 @@ - The use of the magic `None' first argument is non-obvious. - - Its has arbitrary, often unintended, and inflexible semantics + - It has arbitrary, often unintended, and inflexible semantics when the lists are not of the same length: the shorter sequences are padded with `None'. @@ -110,11 +111,11 @@ The proposed solution is to introduce a new built-in sequence generator function, available in the __builtin__ module. This - function is to be called `marry' and has the following signature: + function is to be called `zip' and has the following signature: - marry(seqa, [seqb, [...]], [pad=]) + zip(seqa, [seqb, [...]], [pad=]) - marry() takes one or more sequences and weaves their elements + zip() takes one or more sequences and weaves their elements together, just as map(None, ...) does with sequences of equal length. The optional keyword argument `pad', if supplied, is a value used to pad all shorter sequences to the length of the @@ -122,15 +123,15 @@ the shortest sequence is exhausted. It is not possible to pad short lists with different pad values, - nor will marry() ever raise an exception with lists of different - lengths. To accomplish both of these, the sequences must be - checked and processed before the call to marry(). + nor will zip() ever raise an exception with lists of different + lengths. To accomplish either behavior, the sequences must be + checked and processed before the call to zip(). Lazy Execution - For performance purposes, marry() does not construct the list of + For performance purposes, zip() does not construct the list of tuples immediately. Instead it instantiates an object that implements a __getitem__() method and conforms to the informal for-loop protocol. This method constructs the individual tuples @@ -148,25 +149,25 @@ >>> c = (9, 10, 11) >>> d = (12, 13) - >>> marry(a, b) + >>> zip(a, b) [(1, 5), (2, 6), (3, 7), (4, 8)] - >>> marry(a, d) + >>> zip(a, d) [(1, 12), (2, 13)] - >>> marry(a, d, pad=0) + >>> zip(a, d, pad=0) [(1, 12), (2, 13), (3, 0), (4, 0)] - >>> marry(a, d, pid=0) + >>> zip(a, d, pid=0) Traceback (most recent call last): File "", line 1, in ? - File "/usr/tmp/python-iKAOxR", line 11, in marry + File "/usr/tmp/python-iKAOxR", line 11, in zip TypeError: unexpected keyword arguments - >>> marry(a, b, c, d) + >>> zip(a, b, c, d) [(1, 5, 9, 12), (2, 6, 10, 13)] - >>> marry(a, b, c, d, pad=None) + >>> zip(a, b, c, d, pad=None) [(1, 5, 9, 12), (2, 6, 10, 13), (3, 7, 11, None), (4, 8, None, None)] >>> map(None, a, b, c, d) [(1, 5, 9, 12), (2, 6, 10, 13), (3, 7, 11, None), (4, 8, None, None)] @@ -175,17 +176,19 @@ Reference Implementation - Here is a reference implementation, in Python of the marry() + Here is a reference implementation, in Python of the zip() built-in function and helper class. These would ultimately be replaced by equivalent C code. - class _Marriage: + class _Zipper: def __init__(self, args, kws): + # Defaults self.__padgiven = 0 if kws.has_key('pad'): self.__padgiven = 1 self.__pad = kws['pad'] del kws['pad'] + # Assert no unknown arguments are left if kws: raise TypeError('unexpected keyword arguments') self.__sequences = args @@ -206,6 +209,23 @@ ret.append(self.__pad) return tuple(ret) + def __len__(self): + # If we're padding, then len is the length of the longest sequence, + # otherwise it's the length of the shortest sequence. + if not self.__padgiven: + shortest = -1 + for s in self.__sequences: + slen = len(s) + if shortest < 0 or slen < shortest: + shortest = slen + return shortest + longest = 0 + for s in self.__sequences: + slen = len(s) + if slen > longest: + longest = slen + return longest + def __str__(self): ret = [] i = 0 @@ -219,25 +239,130 @@ __repr__ = __str__ - def marry(*args, **kws): - return _Marriage(args, kws) + def zip(*args, **kws): + return _Zipper(args, kws) + + + +Rejected Elaborations + + Some people have suggested that the user be able to specify the + type of the inner and outer containers for the zipped sequence. + This would be specified by additional keyword arguments to zip(), + named `inner' and `outer'. + + This elaboration is rejected for several reasons. First, there + really is no outer container, even though there appears to be an + outer list container the example above. This is simply an + artifact of the repr() of the zipped object. User code can do its + own looping over the zipped object via __getitem__(), and build + any type of outer container for the fully evaluated, concrete + sequence. For example, to build a zipped object with lists as an + outer container, use + + >>> list(zip(sequence_a, sequence_b, sequence_c)) + + for tuple outer container, use + + >>> tuple(zip(sequence_a, sequence_b, sequence_c)) + + This type of construction will usually not be necessary though, + since it is expected that zipped objects will most often appear in + for-loops. + + Second, allowing the user to specify the inner container + introduces needless complexity and arbitrary decisions. You might + imagine that instead of the default tuple inner container, the + user could prefer a list, or a dictionary, or instances of some + sequence-like class. + + One problem is the API. Should the argument to `inner' be a type + or a template object? For flexibility, the argument should + probably be a type object (i.e. TupleType, ListType, DictType), or + a class. For classes, the implementation could just pass the zip + element to the constructor. But what about built-in types that + don't have constructors? They would have to be special-cased in + the implementation (i.e. what is the constructor for TupleType? + The tuple() built-in). + + Another problem that arises is for zips greater than length two. + Say you had three sequences and you wanted the inner type to be a + dictionary. What would the semantics of the following be? + + >>> zip(sequence_a, sequence_b, sequence_c, inner=DictType) + + Would the key be (element_a, element_b) and the value be + element_c, or would the key be element_a and the value be + (element_b, element_c)? Or should an exception be thrown? + + This suggests that the specification of the inner container type + is needless complexity. It isn't likely that the inner container + will need to be specified very often, and it is easy to roll your + own should you need it. Tuples are chosen for the inner container + type due to their (slight) memory footprint and performance + advantages. Open Issues - What should "marry(a)" do? + - What should "zip(a)" do? Given - Given a = (1, 2, 3), should marry(a) return [(1,), (2,), (3,)] or - should it return [1, 2, 3]? The first is more consistent with the - description given above, while the latter is what map(None, a) - does, and may be more consistent with user expectation. + a = (1, 2, 3); zip(a) - The latter interpretation requires special casing, which is not - present in the reference implementation. It returns + three outcomes are possible. - >>> marry(a) - [(1,), (2,), (3,), (4,)] + 1) Returns [(1,), (2,), (3,)] + + Pros: no special casing in the implementation or in user + code, and is more consistent with the description of it's + semantics. Cons: this isn't what map(None, a) would return, + and may be counter to user expectations. + + 2) Returns [1, 2, 3] + + Pros: consistency with map(None, a), and simpler code for + for-loops, e.g. + + for i in zip(a): + + instead of + + for (i,) in zip(a): + + Cons: too much complexity and special casing for what should + be a relatively rare usage pattern. + + 3) Raises TypeError + + Pros: None + + Cons: needless restriction + + Current scoring seems to generally favor outcome 1. + + - The name of the built-in `zip' may cause some initial confusion + with the zip compression algorithm. Other suggestions include + (but are not limited to!): marry, weave, parallel, lace, braid, + interlace, permute, furl, tuples, lists, stitch, collate, knit, + plait, and with. All have disadvantages, and there is no clear + unanimous choice, therefore the decision was made to go with + `zip' because the same functionality is available in other + languages (e.g. Haskell) under the name `zip'[2]. + + + +References + + [1] http://www.python.org/doc/devel/ref/for.html + [2] http://www.haskell.org/onlinereport/standard-prelude.html#$vzip + + TBD: URL to python-dev archives + + +Copyright + + This document has been placed in the public domain. -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:28 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:28 +0100 Subject: [Python-checkins] peps: First draft of the range-literals PEP. Not sprinkeled with explicit 'TBD's, Message-ID: http://hg.python.org/peps/rev/84d64ee787e0 changeset: 20:84d64ee787e0 user: Thomas Wouters date: Tue Jul 18 10:01:12 2000 +0000 summary: First draft of the range-literals PEP. Not sprinkeled with explicit 'TBD's, and the one TBD in there should be an 'XXX' in my opinion ;) but with a lot of issues under 'Open issues'. Please, comment freely, on anything from specific arguments and spelling errors to style issues and argument-flow. I wrote all this on the train to and from work, listening to UB40 on the way to work, and to my girlfriend complaining about her work and her colleagues on the way home ;) So it might be a bit incoherent in places. One TBD that's going to come up a lot in PEPs, I think: how to wrap long URLs ? I think whoever invents a good way to do that can become a millionaire. Can we define/steal a good, standard way to wrap URLs, please ? files: pep-0204.txt | 264 ++++++++++++++++++++++++++++++++++++++- 1 files changed, 262 insertions(+), 2 deletions(-) diff --git a/pep-0204.txt b/pep-0204.txt --- a/pep-0204.txt +++ b/pep-0204.txt @@ -1,12 +1,272 @@ -PEP: 203 +PEP: 204 Title: Range Literals Version: $Revision$ Owner: thomas at xs4all.net (Thomas Wouters) Python-Version: 2.0 -Status: Incomplete +Status: Draft +Introduction + + This PEP describes the `range literal' proposal for Python 2.0. + This PEP tracks the status and ownership of this feature, slated + for introduction in Python 2.0. It contains a description of the + feature and outlines changes necessary to support the feature. + This PEP summarizes discussions held in mailing list forums, and + provides URLs for further information, where appropriate. The CVS + revision history of this file contains the definitive historical + record. + + + +List ranges + + Ranges are sequences of numbers of a fixed stepping, often used in + for-loops. The Python for-loop is designed to iterate over a + sequence directly: + + >>> l = ['a', 'b', 'c', 'd'] + >>> for item in l: + ... print item + a + b + c + d + + However, this solution is not always prudent. Firstly, problems + arise when altering the sequence in the body of the for-loop, + resulting in the for-loop skipping items. Secondly, it is not + possible to iterate over, say, every second element of the + sequence. And thirdly, it is sometimes necessary to process an + element based on its index, which is not readily available in the + above construct. + + For these instances, and others where a range of numbers is + desired, Python provides the `range' builtin function, which + creates a list of numbers. The `range' function takes three + arguments, `start', `end' and `step'. `start' and `step' are + optional, and default to 0 and 1, respectively. + + The `range' function creates a list of numbers, starting at + `start', with a step of `step', up to, but not including `end', so + that `range(10)' produces a list that has exactly 10 items, the + numbers 0 through 9. + + Using the `range' function, the above example would look like + this: + + >>> for i in range(len(l)): + ... print l[i] + a + b + c + d + + Or, to start at the second element of `l' and processing only + every second element from then on: + + >>> for i in range(1, len(l), 2): + ... print l[i] + b + d + + There are several disadvantages with this approach: + + - Clarity of purpose: Adding another functioncall, possibly with + extra arithmatic to determine the desired length and step of the + list, does not improve readability of the code. Also, it is + possible to `shadow' the builtin `range' function by supplying a + local or global variable with the same name, effectively + replacing it. This may or may not be a desired effect. + + - Efficiency: because the `range' function can be overridden, the + Python compiler cannot make assumptions about the for-loop, and + has to maintain a seperate loop counter. + + - Consistency: There already is a syntax that is used to denote + ranges, as shown below. This syntax uses the exact same + arguments, though all optional, in the exact same way. It seems + logical to extend this syntax to ranges, to form `range + literals'. + + + +Slice Indices + + In Python, a sequence can be indexed in one of two ways: + retrieving a single item, or retrieving a range of items. + Retrieving a range of items results in a new object of the same + type as the original sequence, containing zero or more items from + the original sequence. This is done using a `range notation': + + >>> l[2:4] + ['c', 'd'] + + This range notation consists of zero, one or two indices seperated + by a colon. The first index is the `start' index, the second the + `end'. When either is left out, they default to respectively the + start and the end of the sequence. + + There is also an extended range notation, which incorporates + `step' as well. Though this notation is not currently supported + by most builtin types, if it were, it would work as follows: + + >>> l[1:4:2] + ['b', 'd'] + + The third `argument' to the slice syntax is exactly the same as + the `step' argument to range(). The underlying mechanisms of + standard and these extended slices are sufficiently different and + inconsistent that many classes and extensions outside of + mathematical packages do not implement support for the extended + variant, and this should definately be resolved, but this is + beyond the scope of this PEP. + + Extended slices do show, however, that there is already a + perfectly valid and applicable syntax to denote ranges in a way + that solve all of the earlier stated disadvantages of the use of + the range() function: + + - It is clearer, more concise syntax, which has already proven to + be both intuitive and easy to learn. + + - It is consistent with the other use of ranges in Python + (slices.) + + - Because it is built-in syntax, instead of a builtin function, it + cannot be overridden. This means both that a viewer can be + certain about what the code does, and that an optimizer will not + have to worry about range() being `shadowed'. + + + +The Proposed Solution + + The proposed implementation of range-literals combines the syntax + for list literals with the syntax for (extended) slices, to form + range literals: + + >>> [1:10] + [1, 2, 3, 4, 5, 6, 7, 8, 9] + >>> [:5] + [0, 1, 2, 3, 4] + >>> [5:1:-1] + [5, 4, 3, 2] + + There is one minor difference between range literals and the slice + syntax: though it is possible to omit all of `start', `end' and + `step' in slices, it does not make sense to omit `end' in range + literals. In slices, `end' would default to the end of the list, + but this has no meaning in range literals. + + + +Reference Implementation + + The proposed implementation can be found on SourceForge[1]. It + adds a new bytecode, BUILD_RANGE, that takes three arguments from + the stack and builds a list on the bases of those. The list is + pushed back on the stack. + + The use of a new bytecode is necessary to be able to build ranges + based on other calculations, whose outcome is not known at compile + time. + + The code introduces two new functions to listobject.c, which are + currently hovering between private functions and full-fledged API + calls. + + PyObject * PyList_FromRange(long start, long end, long step) + builds a list from start, end and step, returning NULL if an error + occurs. + + long PyList_GetLenOfRange(long start, long end, long step) is a + helper function to determine the length of a range. It was + previously a static function in bltinmodule.c, but is now + necessary in both listobject.c and bltinmodule.c (for xrange). It + is made non-static solely to avoid code duplication. + + +Open issues + + One possible solution to the discrepancy of requiring the `end' + argument in range literals is to allow the range syntax to create + a `generator', rather than a list, such as the `xrange' builtin + function does. However, a generator would not be a list, and it + would be impossible, for instance, to assign to items in the + generator, or append to it. + + The range syntax could conceivably be extended to include tuples, + immutable lists, which could then be safely implemented as + generators. Especially for large number arrays, this may be a + desirable solution: generators require very little in the way of + storage and initialization, and there is only a small performance + impact in calculating and creating the appropriate number on + request. (TBD: is there any at all ? Cursory testing suggests + equal performance even in the case of ranges of length 1.) + + However, even if idea was adopted, would it be wise to `special + case' the second argument, making it optional in one instance of + the syntax, and non-optional in other cases ? + + + Should it be possible to mix range syntax with normal list + literals, creating a single list, like so: + + >>> [5, 6, 1:6, 7, 9] + to create + [5, 6, 1, 2, 3, 4, 5, 7, 9] + + + How should range literals interact with another proposed new + feature, `list comprehensions', PEP-202 ? In specific, should it + be possible to create lists in list comprehensions, like so: + + >>> [x:y for x in (1,2) y in (3, 4)] + + Should this example return a single list with multiple ranges: + [1, 2, 1, 2, 3, 2, 2, 3] + + Or a list of lists, like so: + [[1, 2], [1, 2, 3], [2], [2, 3]] + + However, as the syntax and semantics of list comprehensions are + still subject of hot debate, these issues are probably best + addressed by the `list comprehensions' PEP. + + + Range literals accept objects other than integers: it performs + PyInt_AsLong() on the objects passed in, so as long as the objects + can be coerced into integers, they will be accepted. The + resulting list, however, is always composed of standard integers. + + Should range literals create a list of the passed-in type ? It + might be desirable in the cases of other builtin types, such as + longs and strings: + + >>> [ 1L : 2L<<64 : 2<<32L ] + >>> ["a":"z":"b"] + >>> ["a":"z":2] + + However, this might be too much `magic' to be obvious. It might + also present problems with user-defined classes: even if the base + class can be found and a new instance created, the instance may + require additional arguments to __init__, causing the creation to + fail. + + + The PyList_FromRange() and PyList_GetLenOfRange() functions need + to be classified: are they part of the API, or should they be made + private functions ? + + +References: + + [1] +http://sourceforge.net/patch/?func=detailpatch&patch_id=100902&group_id=5470 + + Local Variables: mode: indented-text indent-tabs-mode: nil -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:30 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:30 +0100 Subject: [Python-checkins] peps: In the examples section, show how zip() is reversible. Message-ID: http://hg.python.org/peps/rev/e09ccf8ee11d changeset: 21:e09ccf8ee11d user: Barry Warsaw date: Wed Jul 19 04:19:54 2000 +0000 summary: In the examples section, show how zip() is reversible. Patches to the reference implementation: __getitem__() raises IndexError immediately if no sequences were given. __len__() returns 0 if no sequences were given. __cmp__() new method Added a little more explanation to raise-a-TypeError-for-zip(a) Added `fold' as one of the alternative names proposed. files: pep-0201.txt | 57 +++++++++++++++++++++++++++++++++++++-- 1 files changed, 53 insertions(+), 4 deletions(-) diff --git a/pep-0201.txt b/pep-0201.txt --- a/pep-0201.txt +++ b/pep-0201.txt @@ -172,6 +172,26 @@ >>> map(None, a, b, c, d) [(1, 5, 9, 12), (2, 6, 10, 13), (3, 7, 11, None), (4, 8, None, None)] + Note that when the sequences are of the same length, zip() is + reversible: + + >>> a = (1, 2, 3) + >>> b = (4, 5, 6) + >>> x = zip(a, b) + >>> y = zip(*x) # alternatively, apply(zip, x) + >>> z = zip(*y) # alternatively, apply(zip, y) + >>> x + [(1, 4), (2, 5), (3, 6)] + >>> y + [(1, 2, 3), (4, 5, 6)] + >>> z + [(1, 4), (2, 5), (3, 6)] + >>> x == z + 1 + + It is not possible to reverse zip this way when the sequences are + not all the same length. + Reference Implementation @@ -195,6 +215,8 @@ self.__seqlen = len(args) def __getitem__(self, i): + if not self.__sequences: + raise IndexError ret = [] exhausted = 0 for s in self.__sequences: @@ -218,6 +240,8 @@ slen = len(s) if shortest < 0 or slen < shortest: shortest = slen + if shortest < 0: + return 0 return shortest longest = 0 for s in self.__sequences: @@ -226,6 +250,30 @@ longest = slen return longest + def __cmp__(self, other): + i = 0 + smore = 1 + omore = 1 + while 1: + try: + si = self[i] + except IndexError: + smore = 0 + try: + oi = other[i] + except IndexError: + omore = 0 + if not smore and not omore: + return 0 + elif not smore: + return -1 + elif not omore: + return 1 + test = cmp(si, oi) + if test: + return test + i = i + 1 + def __str__(self): ret = [] i = 0 @@ -335,7 +383,8 @@ 3) Raises TypeError - Pros: None + Pros: zip(a) doesn't make much sense and could be confusing + to explain. Cons: needless restriction @@ -345,9 +394,9 @@ with the zip compression algorithm. Other suggestions include (but are not limited to!): marry, weave, parallel, lace, braid, interlace, permute, furl, tuples, lists, stitch, collate, knit, - plait, and with. All have disadvantages, and there is no clear - unanimous choice, therefore the decision was made to go with - `zip' because the same functionality is available in other + plait, fold, and with. All have disadvantages, and there is no + clear unanimous choice, therefore the decision was made to go + with `zip' because the same functionality is available in other languages (e.g. Haskell) under the name `zip'[2]. -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:38 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:38 +0100 Subject: [Python-checkins] peps: converts pep-*.txt to pep-*.html and loads them up with the help of scp Message-ID: http://hg.python.org/peps/rev/fd8bca46c698 changeset: 22:fd8bca46c698 user: Peter Schneider-Kamp date: Thu Jul 20 22:29:24 2000 +0000 summary: converts pep-*.txt to pep-*.html and loads them up with the help of scp it would be nice if you could call it after committing changes on a pep Syntax: python pep2html [sf_username] files: pep2html.py | 79 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 79 insertions(+), 0 deletions(-) diff --git a/pep2html.py b/pep2html.py new file mode 100755 --- /dev/null +++ b/pep2html.py @@ -0,0 +1,79 @@ +#!/usr/bin/env python +""" +convert PEP's to (X)HTML - courtesy of /F + +Syntax: pep2html [sf_username] + +The user name 'sf_username' is used to upload the converted files +to the web pages at source forge. +""" + +import cgi, glob, os, re, sys + +fixpat = re.compile("((http|ftp):[-_a-zA-Z0-9/.+?~:#$]+)|(pep-\d+(.txt)?)|.") + +def fixanchor(match): + text = match.group(0) + link = None + if text[:5] == "http:" or text[:4] == "ftp:": + link = text + elif text[:3] == "pep": + link = os.path.splitext(text)[0] + ".html" + if link: + return "%s" % (link, cgi.escape(link)) + return cgi.escape(match.group(0)) + +def fixfile(infile, outfile): + # convert plain text pep to minimal XHTML markup + fi = open(infile) + fo = open(outfile, "w") + fo.write("\n") + # head + header = [] + fo.write("\n") + while 1: + line = fi.readline() + if not line or ":" not in line: + break + key, value = line.split(":", 1) + value = value.strip() + header.append((key, value)) + if key.lower() == "title": + fo.write("%s\n" % cgi.escape(value)) + fo.write("\n") + # body + fo.write("\n") + fo.write("
    \n")
    +    for k, v in header:
    +        fo.write("%s: %s\n" % (cgi.escape(k), cgi.escape(v)))
    +    title = 0
    +    while 1:
    +        line = fi.readline()
    +        if not line:
    +            break
    +        if line[:1] == "\f":
    +            fo.write("
    \n") + title = 1 + else: + line = fixpat.sub(fixanchor, line) + if title: + fo.write("

    %s

    \n" % line) + else: + fo.write(line) + title = 0 + fo.write("
    \n") + fo.write("\n") + fo.write("\n") + +for file in glob.glob("pep-*.txt"): + print file, "..." + fixfile(file, os.path.splitext(file)[0] + ".html") + +if len(sys.argv) == 1: + username = "" +elif len(sys.argv) == 2: + username = sys.argv[1]+"@" +else: + raise "Syntax: "+sys.argv[0]+" [sf_username]" + +os.system("scp pep-*.html "+username+"shell.sourceforge.net:/home/groups/python/htdocs/peps") -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:41 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:41 +0100 Subject: [Python-checkins] peps: incorporating changes from /F Message-ID: http://hg.python.org/peps/rev/1721d9c7a378 changeset: 23:1721d9c7a378 user: Peter Schneider-Kamp date: Thu Jul 20 22:44:36 2000 +0000 summary: incorporating changes from /F not including pep-0000.txt -> index.html (a symbolic link does just fine) files: pep2html.py | 40 ++++++++++++++++++++++++++++++++-------- 1 files changed, 32 insertions(+), 8 deletions(-) diff --git a/pep2html.py b/pep2html.py --- a/pep2html.py +++ b/pep2html.py @@ -10,7 +10,13 @@ import cgi, glob, os, re, sys -fixpat = re.compile("((http|ftp):[-_a-zA-Z0-9/.+?~:#$]+)|(pep-\d+(.txt)?)|.") +# this doesn't validate -- you cannot use
    and

    inside
    +# tags.  but if I change that, the result doesn't look very nice...
    +
    +DTD = ('')
    +
    +fixpat = re.compile("((http|ftp):[-_a-zA-Z0-9/.+~:?#$=&]+)|(pep-\d+(.txt)?)|.")
     
     def fixanchor(match):
         text = match.group(0)
    @@ -21,16 +27,18 @@
             link = os.path.splitext(text)[0] + ".html"
         if link:
             return "%s" % (link, cgi.escape(link))
    -    return cgi.escape(match.group(0))
    +    return cgi.escape(match.group(0)) # really slow, but it works...
     
     def fixfile(infile, outfile):
         # convert plain text pep to minimal XHTML markup
         fi = open(infile)
         fo = open(outfile, "w")
    -    fo.write("\n")
    +    fo.write("%s\n\n" % DTD)
         # head
         header = []
         fo.write("\n")
    +    pep = ""
    +    title = ""
         while 1:
             line = fi.readline()
             if not line or ":" not in line:
    @@ -39,11 +47,22 @@
             value = value.strip()
             header.append((key, value))
             if key.lower() == "title":
    -            fo.write("%s\n" % cgi.escape(value))
    +            title = value
    +        if key.lower() == "pep":
    +            pep = value
    +    if pep:
    +        title = "PEP " + pep + " -- " + title
    +    if title:
    +        fo.write("%s\n" % cgi.escape(title))
         fo.write("\n")
         # body
         fo.write("\n")
         fo.write("
    \n")
    +    fo.write("[home]")
    +    if os.path.basename(file) != "pep-0000.txt":
    +        fo.write(" [index]")
    +    fo.write("\n
    \n") + # fo.write("\n

    \n")
         for k, v in header:
             fo.write("%s: %s\n" % (cgi.escape(k), cgi.escape(v)))
         title = 0
    @@ -52,15 +71,20 @@
             if not line:
                 break
             if line[:1] == "\f":
    -            fo.write("
    \n") + fo.write("\n
    \n") + # fo.write("\n

    \n")
                 title = 1
    -        else:
    +        elif title >= 0:
                 line = fixpat.sub(fixanchor, line)
                 if title:
    -                fo.write("

    %s

    \n" % line) + if line.strip() == "Local Variables:": + title = -1 + else: + fo.write("

    %s

    \n" % line) + # fo.write("

    %s

    \n" % line)
    +                    title = 0
                 else:
                     fo.write(line)
    -            title = 0
         fo.write("
    \n") fo.write("\n") fo.write("\n") -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:42 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:42 +0100 Subject: [Python-checkins] peps: Moderate first formatting pass of Jeremy's content for this PEP. Message-ID: http://hg.python.org/peps/rev/109f5829f49a changeset: 24:109f5829f49a user: Barry Warsaw date: Fri Jul 21 18:13:15 2000 +0000 summary: Moderate first formatting pass of Jeremy's content for this PEP. files: pep-0200.txt | 59 +++++++++++++++++++++++++++++++++++++++- 1 files changed, 58 insertions(+), 1 deletions(-) diff --git a/pep-0200.txt b/pep-0200.txt --- a/pep-0200.txt +++ b/pep-0200.txt @@ -1,7 +1,7 @@ PEP: 200 Title: Python 2.0 Release Schedule Version: $Revision$ -Owner: bwarsaw at beopen.com (Barry A. Warsaw) +Owner: Jeremy Hylton Python-Version: 2.0 Status: Incomplete @@ -14,6 +14,63 @@ CVS revision history of this file contains the definitive historical record. +Accepted and completed + +Accepted and in progress + + * SyntaxError enhancements - Fredrik Lundh + http://www.python.org/pipermail/python-dev/2000-July/012981.html + + * interface to poll system call - Andrew Kuchling + An OO interface to the poll system call will be added to the + select module. + + * Compression of Unicode database - Fredrik Lundh + http://hem.passagen.se/eff/bot.htm#456806 + + * SRE - Fredrik Lundh + The test suite still fails on test_re. + + * snprintf - owner??? + Use snprintf to avoid buffer overflows. Need configure hackery + to discovery if it is available on the current platform and a + default implementation if it is not. + http://www.python.org/pipermail/python-dev/2000-April/010051.html + This function is expected to be part of C9X (check). + + * Support for opcode arguments > 2**16 - Charles Waldman + Source files longer than 32K and sequences with more than 32K + elements both fail because opcode arguments are limited to + 16-bit values. + + * Range literals - Thomas Wouters + Make range(1, 10, 2) == [1:10:2] + +Open: proposed but not accepted or declined + + * List comprehensions - Tim Peters? + Need a coherent proposal. Lots of confusing discussion going + on. + + * Eliminated SET_LINENO opcode - Vladimir Marangozov + Small optimization achieved by using the code object's lnotab + instead of the SET_LINENO instruction. Uses code rewriting + technique (that Guido's growns on) to support debugger, which + uses SET_LINENO. + + http://starship.python.net/~vlad/lineno/ + for (working at the time) patches + + Discussions on python-dev: + + - http://www.python.org/pipermail/python-dev/2000-April/subject.html + Subject: "Why do we need Traceback Objects?" + + - http://www.python.org/pipermail/python-dev/1999-August/002252.html + +Declined + + Local Variables: mode: indented-text -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:43 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:43 +0100 Subject: [Python-checkins] peps: Added Emacs page breaks Message-ID: http://hg.python.org/peps/rev/15f046b2c055 changeset: 25:15f046b2c055 user: Barry Warsaw date: Fri Jul 21 18:29:05 2000 +0000 summary: Added Emacs page breaks files: pep-0200.txt | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/pep-0200.txt b/pep-0200.txt --- a/pep-0200.txt +++ b/pep-0200.txt @@ -5,6 +5,8 @@ Python-Version: 2.0 Status: Incomplete + + Introduction This PEP describes the Python 2.0 release schedule, tracking the @@ -14,8 +16,12 @@ CVS revision history of this file contains the definitive historical record. + + Accepted and completed + + Accepted and in progress * SyntaxError enhancements - Fredrik Lundh @@ -46,6 +52,8 @@ * Range literals - Thomas Wouters Make range(1, 10, 2) == [1:10:2] + + Open: proposed but not accepted or declined * List comprehensions - Tim Peters? @@ -68,6 +76,8 @@ - http://www.python.org/pipermail/python-dev/1999-August/002252.html + + Declined -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:44 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:44 +0100 Subject: [Python-checkins] peps: Added PEP 212, Additional Builtin Generators, assigned bwarsaw Message-ID: http://hg.python.org/peps/rev/aef09b159d11 changeset: 26:aef09b159d11 user: Barry Warsaw date: Fri Jul 21 20:03:17 2000 +0000 summary: Added PEP 212, Additional Builtin Generators, assigned bwarsaw Added PEP 213, Attribute Access Handlers, assigned prescod files: pep-0000.txt | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/pep-0000.txt b/pep-0000.txt --- a/pep-0000.txt +++ b/pep-0000.txt @@ -30,6 +30,9 @@ 209 pep-0209.txt Adding Multidimensional Arrays davida 210 pep-0210.txt Decoupling the Interpreter Loop davida 211 pep-0211.txt Adding New Operators to Python gvwilson + 212 pep-0212.txt Additional Builtin Generators bwarsaw + 213 pep-0213.txt Attribute Access Handlers prescod + Local Variables: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:47 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:47 +0100 Subject: [Python-checkins] peps: PEP 213, Attribute Access Handlers, assigned to Paul Prescod Message-ID: http://hg.python.org/peps/rev/e40b23dd57b1 changeset: 27:e40b23dd57b1 user: Barry Warsaw date: Fri Jul 21 20:05:07 2000 +0000 summary: PEP 213, Attribute Access Handlers, assigned to Paul Prescod files: pep-0213.txt | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/pep-0213.txt b/pep-0213.txt new file mode 100644 --- /dev/null +++ b/pep-0213.txt @@ -0,0 +1,13 @@ +PEP: 213 +Title: Attribute Access Handlers +Version: $Revision$ +Owner: paul at prescod.net (Paul Prescod) +Python-Version: 2.0 +Status: Incomplete + + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:47 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:47 +0100 Subject: [Python-checkins] peps: Added content. First real version of this PEP Message-ID: http://hg.python.org/peps/rev/b4938632c5c2 changeset: 28:b4938632c5c2 user: Paul Prescod date: Fri Jul 21 21:14:26 2000 +0000 summary: Added content. First real version of this PEP files: pep-0213.txt | 191 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 191 insertions(+), 0 deletions(-) diff --git a/pep-0213.txt b/pep-0213.txt --- a/pep-0213.txt +++ b/pep-0213.txt @@ -6,6 +6,197 @@ Status: Incomplete +Introduction + + It is possible (and even relatively common) in Python code and + in extension modules to "trap" when an instance's client code + attempts to set an attribute and execute code instead. In other + words it is possible to allow users to use attribute assignment/ + retrieval/deletion syntax even though the underlying implementation + is doing some computation rather than directly modifying a + binding. + + This PEP describes a feature that makes it easier, more efficient + and safer to implement these handlers for Python instances. + +Justification + + Scenario 1: + + You have a deployed class that works on an attribute named + "stdout". After a while, you think it would be better to + check that stdout is really an object with a "write" method + at the moment of assignment. Rather than change to a + setstdout method (which would be incompatible with deployed + code) you would rather trap the assignment and check the + object's type. + + Scenario 2: + + You want to be as compatible as possible with an object + model that has a concept of attribute assignment. It could + be the W3C Document Object Model or a particular COM + interface (e.g. the PowerPoint interface). In that case + you may well want attributes in the model to show up as + attributes in the Python interface, even though the + underlying implementation may not use attributes at all. + + Scenario 3: + + A user wants to make an attribute read-only. + + In short, this feature allows programmers to separate the + interface of their module from the underlying implementation + for whatever purpose. Again, this is not a new feature but + merely a new syntax for an existing convention. + +Current Solution + + To make some attributes read-only: + + class foo: + def __setattr__( self, name, val ): + if name=="readonlyattr": + raise TypeError + elif name=="readonlyattr2": + raise TypeError + ... + else: + self.__dict__["name"]=val + + This has the following problems: + + 1. The creator of the method must be intimately aware of whether + somewhere else in the class hiearchy __setattr__ has also been + trapped for any particular purpose. If so, she must specifically + call that method rather than assigning to the dictionary. There + are many different reasons to overload __setattr__ so there is a + decent potential for clashes. For instance object database + implementations often overload setattr for an entirely unrelated + purpose. + + 2. The string-based switch statement forces all attribute handlers + to be specified in one place in the code. They may then dispatch + to task-specific methods (for modularity) but this could cause + performance problems. + + 3. Logic for the setting, getting and deleting must live in + __getattr__, __setattr__ and __delattr__. Once again, this can be + mitigated through an extra level of method call but this is + inefficient. + +Proposed Syntax + + Special methods should declare themselves with declarations of the + following form: + + class x: + def __attr_XXX__(self, op, val ): + if op=="get": + return someComputedValue(self.internal) + elif op=="set": + self.internal=someComputedValue(val) + elif op=="del": + del self.internal + + Client code looks like this: + + fooval=x.foo + x.foo=fooval+5 + del x.foo + + Semantics + + Attribute references of all three kinds should call the method. + The op parameter can be "get"/"set"/"del". Of course this string + will be interned so the actual checks for the string will be + very fast. + + It is disallowed to actually have an attribute named XXX in the + same instance as a method named __attr_XXX__. + + An implementation of __attr_XXX__ takes precedence over an + implementation of __getattr__ based on the principle that + __getattr__ is supposed to be invoked only after finding an + appropriate attribute has failed. + + An implementation of __attr_XXX__ takes precedence over an + implementation of __setattr__ in order to be consistent. The + opposite choice seems fairly feasible also, however. The same + goes for __del_y__. + +Proposed Implementation + + There is a new object type called an attribute access handler. + Objects of this type have the following attributes: + + name (e.g. XXX, not __attr__XXX__ + method (pointer to a method object + + In PyClass_New, methods of + the appropriate form will be detected and converted into objects + (just like unbound method objects). If there are any attribute access + handlers in an instance at all, a flag is set. Let's call + it "I_have_computed_attributes" for now. Derived classes inherit + the flag from base classes. Instances inherit the flag from + classes. + + A get proceeds as usual until just before the object is returned. + In addition to the current check whether the returned object is a + method it would also check whether a returned object is an access + handler. If so, it would invoke the getter method and return + the value. To remove an attribute access handler you could directly + fiddle with the dictionary. + + A set proceeds by checking the "I_have_computed_attributes" flag. If + it is not set, everything proceeds as it does today. If it is set + then we must do a dictionary get on the requested object name. If it + returns an attribute access handler then we call the setter function + with the value. If it returns any other object then we discard the + result and continue as we do today. Note that having an attribute + access handler will mildly affect attribute "setting" performance for + all sets on a particular instance, but no more so than today, using + __setattr__. Gets are more efficient than they are today with + __getattr__. + + The I_have_computed_attributes flag is intended to eliminate the + performance degradation of an extra "get" per "set" for objects not + using this feature. Checking this flag should have miniscule + performance implications for all objects. + + The implementation of delete is analogous to the implementation + of set. + +Caveats + + 1. You might note that I have not proposed any logic to keep + the I_have_computed_attributes flag up to date as attributes + are added and removed from the instance's dictionary. This is + consistent with current Python. If you add a __setattr__ method + to an object after it is in use, that method will not behave as + it would if it were available at "compile" time. The dynamism is + arguably not worth the extra implementation effort. This snippet + demonstrates the current behavior: + + >>> def prn(*args):print args + >>> class a: + ... __setattr__=prn + >>> a().foo=5 + (<__main__.a instance at 882890>, 'foo', 5) + + >>> class b: pass + >>> bi=b() + >>> bi.__setattr__=prn + >>> b.foo=5 + + 2. Assignment to __dict__["XXX"] can overwrite the attribute + access handler for __attr_XXX__. Typically the access handlers will + store information away in private __XXX variables + + 3. An attribute access handler that attempts to call setattr or getattr + on the object itself can cause an infinite loop (as with __getattr__) + Once again, the solution is to use a special (typically private) + variable such as __XXX. Local Variables: mode: indented-text -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:49 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:49 +0100 Subject: [Python-checkins] peps: Update suggested by gmcm -- method is stored in dict alongside Message-ID: http://hg.python.org/peps/rev/5a659d181adf changeset: 29:5a659d181adf user: Paul Prescod date: Fri Jul 21 21:59:29 2000 +0000 summary: Update suggested by gmcm -- method is stored in dict alongside attribute access handler files: pep-0213.txt | 16 +++++++++------- 1 files changed, 9 insertions(+), 7 deletions(-) diff --git a/pep-0213.txt b/pep-0213.txt --- a/pep-0213.txt +++ b/pep-0213.txt @@ -133,13 +133,15 @@ name (e.g. XXX, not __attr__XXX__ method (pointer to a method object - In PyClass_New, methods of - the appropriate form will be detected and converted into objects - (just like unbound method objects). If there are any attribute access - handlers in an instance at all, a flag is set. Let's call - it "I_have_computed_attributes" for now. Derived classes inherit - the flag from base classes. Instances inherit the flag from - classes. + In PyClass_New, methods of the appropriate form will be detected and + converted into objects (just like unbound method objects). These are + stored in the class __dict__ under the name XXX. The original method + is stored as an unbound method under its original name. + + If there are any attribute access handlers in an instance at all, + a flag is set. Let's call it "I_have_computed_attributes" for + now. Derived classes inherit the flag from base classes. Instances + inherit the flag from classes. A get proceeds as usual until just before the object is returned. In addition to the current check whether the returned object is a -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:50 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:50 +0100 Subject: [Python-checkins] peps: added pep-0212.txt (empty template adapted from 210) Message-ID: http://hg.python.org/peps/rev/05e891100d34 changeset: 30:05e891100d34 user: Peter Schneider-Kamp date: Sat Jul 22 09:02:49 2000 +0000 summary: added pep-0212.txt (empty template adapted from 210) files: pep-0212.txt | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/pep-0212.txt b/pep-0212.txt new file mode 100644 --- /dev/null +++ b/pep-0212.txt @@ -0,0 +1,13 @@ +PEP: 212 +Title: Additional Builtin Generators +Version: $Revision$ +Owner: bwarsaw at beopen.com (Barry A. Warsaw) +Python-Version: 2.0 +Status: Incomplete + + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:52 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:52 +0100 Subject: [Python-checkins] peps: A little more, but still pretty incomplete Message-ID: http://hg.python.org/peps/rev/35036bd0feab changeset: 31:35036bd0feab user: Barry Warsaw date: Sat Jul 22 15:13:23 2000 +0000 summary: A little more, but still pretty incomplete files: pep-0212.txt | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) diff --git a/pep-0212.txt b/pep-0212.txt --- a/pep-0212.txt +++ b/pep-0212.txt @@ -7,6 +7,39 @@ +Introduction + + This PEP describes some proposed additional generator-creating + builtin functions for Python 2.0. This PEP tracks the status and + ownership of this feature, slated for introduction in Python 2.0. + It contains a description of the feature and outlines changes + necessary to support the feature. This PEP summarizes discussions + held in mailing list forums, and provides URLs for further + information, where appropriate. The CVS revision history of this + file contains the definitive historical record. + + + +New functions + + irange() + tuples() + lists() + dict() + + + +Reference Implementation + + + + +Copyright + + This document has been placed in the public domain. + + + Local Variables: mode: indented-text indent-tabs-mode: nil -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:57 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:57 +0100 Subject: [Python-checkins] peps: Added PEP 214, Extended Print Statement, owned by bwarsaw Message-ID: http://hg.python.org/peps/rev/0dfacb23c324 changeset: 32:0dfacb23c324 user: Barry Warsaw date: Mon Jul 24 17:37:59 2000 +0000 summary: Added PEP 214, Extended Print Statement, owned by bwarsaw files: pep-0000.txt | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/pep-0000.txt b/pep-0000.txt --- a/pep-0000.txt +++ b/pep-0000.txt @@ -32,6 +32,7 @@ 211 pep-0211.txt Adding New Operators to Python gvwilson 212 pep-0212.txt Additional Builtin Generators bwarsaw 213 pep-0213.txt Attribute Access Handlers prescod + 214 pep-0214.txt Extended Print Statement bwarsaw -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:57 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:57 +0100 Subject: [Python-checkins] peps: PEP 214, Extended Print Statement, owned by bwarsaw Message-ID: http://hg.python.org/peps/rev/e06543a34f61 changeset: 33:e06543a34f61 user: Barry Warsaw date: Mon Jul 24 17:38:35 2000 +0000 summary: PEP 214, Extended Print Statement, owned by bwarsaw files: pep-0214.txt | 153 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 153 insertions(+), 0 deletions(-) diff --git a/pep-0214.txt b/pep-0214.txt new file mode 100644 --- /dev/null +++ b/pep-0214.txt @@ -0,0 +1,153 @@ +PEP: 214 +Title: Extended Print Statement +Version: $Revision$ +Owner: bwarsaw at beopen.com (Barry A. Warsaw) +Python-Version: 2.0 +Status: Draft + + + +Introduction + + This PEP describes a syntax to extend the standard `print' + statement so that it can be used to print to any file-like object, + instead of the default sys.stdout. This PEP tracks the status and + ownership of this feature. It contains a description of the + feature and outlines changes necessary to support the feature. + This PEP summarizes discussions held in mailing list forums, and + provides URLs for further information, where appropriate. The CVS + revision history of this file contains the definitive historical + record. + + + +Justification + + `print' is a Python keyword and introduces the print statement as + described in section 6.6 of the language reference manual[1]. + The print statement has a number of features: + + - it auto-converts the items to strings + - it inserts spaces between items automatically + - it appends a newline unless the statement ends in a comma + + The formatting that the print statement performs is limited; for + more control over the output, a combination of sys.stdout.write(), + and string interpolation can be used. + + The print statement by definition outputs to sys.stdout. More + specifically, sys.stdout must be a file-like object with a write() + method, but it can be rebound to redirect output to files other + than specifically standard output. A typical idiom is + + oldstdout = sys.stdout + sys.stdout = mylogfile + try: + print 'this message goes to my log file' + finally: + sys.stdout = oldstdout + + The problem with this approach is that the binding is global, and + so affects every statement inside the try: clause. For example, + if we added a call to a function that actually did want to print + to stdout, this output too would get redirected to the logfile. + + + +Proposal + + This proposal introduces a syntax change to the print statement, + which allows the programmer to optionally specify the output file + target. An example usage is as follows: + + print >> mylogfile, 'this message goes to my log file' + + Formally, the syntax of the extended print statement is + + print_stmt: "print" [">>" expr ","] [ expr ("," expr)* [","] ] + + Where the the expression just after >> must yield an object with a + write() method (i.e. a file-like object). Thus these two + statements are equivalent: + + print 'hello world' + print >> sys.stdout, 'hello world' + + + +Reference Implementation + + A reference implementation, in the form of a patch against the + Python 2.0 source tree, is available on SourceForge's patch + manager[2]. The approach this patch takes is to introduce two new + opcodes, one which temporarily rebinds sys.stdout to the specified + file object, performs the print as normal, and then bind + sys.stdout back to sys.__stdout__ (which is the real physical + standard out and should not be changed). In some ways this is + equivalent to the try/finally idiom above, except that the + rebinding of sys.stdout is in effect only for the duration of the + print statement itself. + + An alternative approach is possible, where only one new opcode is + added. This opcode would be exactly like the existing PRINT_ITEM + opcode except that it would find the target file object at the top + of the stack, and use this file instead of digging it out of + sys.stdout. + + + +Alternative Approaches + + An alternative to this syntax change has been proposed (originally + by Moshe Zadka) which requires no syntax changes to Python. A + writeln() function could be provided (possibly as a builtin), that + would act much like extended print, with a few additional + features. + + def writeln(*args, **kws): + import sys + file = sys.stdout + sep = ' ' + end = '\n' + if kws.has_key('file'): + file = kws['file'] + del kws['file'] + if kws.has_key('nl'): + if not kws['nl']: + end = ' ' + del kws['nl'] + if kws.has_key('sep'): + sep = kws['sep'] + del kws['sep'] + if kws: + raise TypeError('unexpected keywords') + file.write(sep.join(map(str, args)) + end) + + writeln() takes a three optional keyword arguments. In the + context of this proposal, the relevant argument is `file' which + can be set to a file-like object with a write() method. Thus + + print >> mylogfile, 'this goes to my log file' + + would be written as + + writeln('this goes to my log file', file=mylogfile) + + writeln() has the additional functionality that the keyword + argument `nl' is a flag specifying whether to append a newline or + not, and an argument `sep' which specifies the separator to output + in between each item. + + + +References + + [1] http://www.python.org/doc/current/ref/print.html + [2] http://sourceforge.net/patch/download.php?id=100970 + + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:22:59 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:22:59 +0100 Subject: [Python-checkins] peps: Added a few more open issues: Message-ID: http://hg.python.org/peps/rev/a229a82a4f16 changeset: 34:a229a82a4f16 user: Barry Warsaw date: Mon Jul 24 17:40:00 2000 +0000 summary: Added a few more open issues: - what should "zip()" do (i.e. zip with no arguments). - should zip() be included in the builtins? - the padtuple proposal files: pep-0201.txt | 29 ++++++++++++++++++++++++++++- 1 files changed, 28 insertions(+), 1 deletions(-) diff --git a/pep-0201.txt b/pep-0201.txt --- a/pep-0201.txt +++ b/pep-0201.txt @@ -125,7 +125,8 @@ It is not possible to pad short lists with different pad values, nor will zip() ever raise an exception with lists of different lengths. To accomplish either behavior, the sequences must be - checked and processed before the call to zip(). + checked and processed before the call to zip() -- but see the Open + Issues below for more discussion. @@ -390,6 +391,14 @@ Current scoring seems to generally favor outcome 1. + - What should "zip()" do? + + Along similar lines, zip() with no arguments (or zip() with just + a pad argument) can have ambiguous semantics. Should this + return no elements or an infinite number? For these reaons, + raising a TypeError exception in this case makes the most + sense. + - The name of the built-in `zip' may cause some initial confusion with the zip compression algorithm. Other suggestions include (but are not limited to!): marry, weave, parallel, lace, braid, @@ -399,6 +408,24 @@ with `zip' because the same functionality is available in other languages (e.g. Haskell) under the name `zip'[2]. + - Should zip() be including in the builtins module or should it be + in a separate generators module (possibly with other candidate + functions like irange())? + + - Padding short sequences with different values. A suggestion has + been made to allow a `padtuple' (probably better called `pads' + or `padseq') argument similar to `pad'. This sequence must have + a length equal to the number of sequences given. It is a + sequence of the individual pad values to use for each sequence, + should it be shorter than the maximum length. + + One problem is what to do if `padtuple' itself isn't of the + right length? A TypeError seems to be the only choice here. + + How does `pad' and `padtuple' interact? Perhaps if padtuple + were too short, it could use pad as a fallback. padtuple would + always override pad if both were given. + References -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:00 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:00 +0100 Subject: [Python-checkins] peps: Added PEP 215, String Interpolation, owned by ping Message-ID: http://hg.python.org/peps/rev/f725eec960f4 changeset: 35:f725eec960f4 user: Barry Warsaw date: Mon Jul 24 19:01:55 2000 +0000 summary: Added PEP 215, String Interpolation, owned by ping files: pep-0000.txt | 1 + pep-0215.txt | 12 ++++++++++++ 2 files changed, 13 insertions(+), 0 deletions(-) diff --git a/pep-0000.txt b/pep-0000.txt --- a/pep-0000.txt +++ b/pep-0000.txt @@ -33,6 +33,7 @@ 212 pep-0212.txt Additional Builtin Generators bwarsaw 213 pep-0213.txt Attribute Access Handlers prescod 214 pep-0214.txt Extended Print Statement bwarsaw + 215 pep-0215.txt String Interpolation ping diff --git a/pep-0215.txt b/pep-0215.txt new file mode 100644 --- /dev/null +++ b/pep-0215.txt @@ -0,0 +1,12 @@ +PEP: 215 +Title: String Interpolation +Version: $Revision$ +Owner: ping at lfw.org (Ka-Ping Yee) +Python-Version: 2.0 +Status: Incomplete + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:02 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:02 +0100 Subject: [Python-checkins] peps: Abscond with PEP-0160 for the 1.6 release schedule. Message-ID: http://hg.python.org/peps/rev/586470a7ee2e changeset: 36:586470a7ee2e user: Fred Drake date: Tue Jul 25 02:13:43 2000 +0000 summary: Abscond with PEP-0160 for the 1.6 release schedule. files: pep-0000.txt | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/pep-0000.txt b/pep-0000.txt --- a/pep-0000.txt +++ b/pep-0000.txt @@ -18,6 +18,8 @@ 0 pep-0000.txt Index of Python Enhance Proposals bwarsaw 1 pep-0001.txt PEP Guidelines bwarsaw, jhylton + 160 pep-0160.txt Python 1.6 Release Schedule fdrake + 200 pep-0200.txt Python 2.0 Release Schedule jhylton 201 pep-0201.txt Parallel Iteration bwarsaw 202 pep-0202.txt List Comprehensions tim_one -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:02 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:02 +0100 Subject: [Python-checkins] peps: Minor formatting cleanup; columns should line up with headers. Message-ID: http://hg.python.org/peps/rev/7bd5b470dad0 changeset: 37:7bd5b470dad0 user: Fred Drake date: Tue Jul 25 02:26:38 2000 +0000 summary: Minor formatting cleanup; columns should line up with headers. files: pep-0000.txt | 42 ++++++++++++++++++++-------------------- 1 files changed, 21 insertions(+), 21 deletions(-) diff --git a/pep-0000.txt b/pep-0000.txt --- a/pep-0000.txt +++ b/pep-0000.txt @@ -13,29 +13,29 @@ Index - num filename title owner - --- ----------- ----- ----- - 0 pep-0000.txt Index of Python Enhance Proposals bwarsaw - 1 pep-0001.txt PEP Guidelines bwarsaw, jhylton + num filename title owner + --- ------------ ----- ----- + 0 pep-0000.txt Index of Python Enhance Proposals bwarsaw + 1 pep-0001.txt PEP Guidelines bwarsaw, jhylton - 160 pep-0160.txt Python 1.6 Release Schedule fdrake + 160 pep-0160.txt Python 1.6 Release Schedule fdrake - 200 pep-0200.txt Python 2.0 Release Schedule jhylton - 201 pep-0201.txt Parallel Iteration bwarsaw - 202 pep-0202.txt List Comprehensions tim_one - 203 pep-0203.txt Augmented Assignments twouters - 204 pep-0204.txt Range Literals twouters - 205 pep-0205.txt Weak References fdrake - 206 pep-0206.txt 2.0 Batteries Included moshez - 207 pep-0207.txt Rich Comparisons davida - 208 pep-0208.txt Reworking the Coercion Model davida - 209 pep-0209.txt Adding Multidimensional Arrays davida - 210 pep-0210.txt Decoupling the Interpreter Loop davida - 211 pep-0211.txt Adding New Operators to Python gvwilson - 212 pep-0212.txt Additional Builtin Generators bwarsaw - 213 pep-0213.txt Attribute Access Handlers prescod - 214 pep-0214.txt Extended Print Statement bwarsaw - 215 pep-0215.txt String Interpolation ping + 200 pep-0200.txt Python 2.0 Release Schedule jhylton + 201 pep-0201.txt Parallel Iteration bwarsaw + 202 pep-0202.txt List Comprehensions tim_one + 203 pep-0203.txt Augmented Assignments twouters + 204 pep-0204.txt Range Literals twouters + 205 pep-0205.txt Weak References fdrake + 206 pep-0206.txt 2.0 Batteries Included moshez + 207 pep-0207.txt Rich Comparisons davida + 208 pep-0208.txt Reworking the Coercion Model davida + 209 pep-0209.txt Adding Multidimensional Arrays davida + 210 pep-0210.txt Decoupling the Interpreter Loop davida + 211 pep-0211.txt Adding New Operators to Python gvwilson + 212 pep-0212.txt Additional Builtin Generators bwarsaw + 213 pep-0213.txt Attribute Access Handlers prescod + 214 pep-0214.txt Extended Print Statement bwarsaw + 215 pep-0215.txt String Interpolation ping -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:04 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:04 +0100 Subject: [Python-checkins] peps: Tell CVS to ignore generated HTML files. Message-ID: http://hg.python.org/peps/rev/defe28c3687f changeset: 38:defe28c3687f user: Fred Drake date: Tue Jul 25 03:25:14 2000 +0000 summary: Tell CVS to ignore generated HTML files. files: .cvsignore | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/.cvsignore b/.cvsignore new file mode 100644 --- /dev/null +++ b/.cvsignore @@ -0,0 +1,1 @@ +pep-????.html -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:05 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:05 +0100 Subject: [Python-checkins] peps: Start of 1.6 release schedule. Message-ID: http://hg.python.org/peps/rev/8ef32da3345f changeset: 39:8ef32da3345f user: Fred Drake date: Tue Jul 25 03:38:53 2000 +0000 summary: Start of 1.6 release schedule. files: pep-0160.txt | 40 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 40 insertions(+), 0 deletions(-) diff --git a/pep-0160.txt b/pep-0160.txt new file mode 100644 --- /dev/null +++ b/pep-0160.txt @@ -0,0 +1,40 @@ +PEP: 160 +Title: Python 1.6 Release Schedule +Version: $Revision$ +Owner: fdrake at beopen.com (Fred L. Drake, Jr.) +Python-Version: 2.0 +Status: Incomplete + + +Introduction + + This PEP describes the Python 1.6 release schedule, tracking the + status and ownership of the major new features, summarizes + discussions held in mailing list forums, and provides URLs for + further information, patches, and other outstanding issues. The + CVS revision history of this file contains the definitive + historical record. + + +Schedule + August 1 1.6 beta 1 release. + August 15 1.6 final release. + + +Features + + A number of features are required for Python 1.6 in order to + fulfill the various promises that have been made. The following + are required to be fully operational, documented, and forward + compatible with the plans for Python 2.0: + + * Unicode support: The Unicode object defined for Python 2.0 must + be provided, including all methods and codec support. + + + + +Local Variables: +mode: indented-text +indent-tabs-mode: nil +End: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:06 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:06 +0100 Subject: [Python-checkins] peps: Revise the generated HTML to be a little nicer, but still pretty simple. Message-ID: http://hg.python.org/peps/rev/1a74debcbd5f changeset: 40:1a74debcbd5f user: Fred Drake date: Tue Jul 25 03:51:44 2000 +0000 summary: Revise the generated HTML to be a little nicer, but still pretty simple. Also add a -n option to suppress installing the generated HTML at SourceForge to allow local use. files: pep2html.py | 83 ++++++++++++++++++++++++---------------- 1 files changed, 49 insertions(+), 34 deletions(-) diff --git a/pep2html.py b/pep2html.py --- a/pep2html.py +++ b/pep2html.py @@ -2,10 +2,14 @@ """ convert PEP's to (X)HTML - courtesy of /F -Syntax: pep2html [sf_username] +Syntax: pep2html [-n] [sf_username] The user name 'sf_username' is used to upload the converted files to the web pages at source forge. + +If -n is given, the script doesn't actually try to install the +generated HTML at SourceForge. + """ import cgi, glob, os, re, sys @@ -13,30 +17,29 @@ # this doesn't validate -- you cannot use
    and

    inside
     # tags.  but if I change that, the result doesn't look very nice...
     
    -DTD = ('')
    +DTD = ('')
     
     fixpat = re.compile("((http|ftp):[-_a-zA-Z0-9/.+~:?#$=&]+)|(pep-\d+(.txt)?)|.")
     
    -def fixanchor(match):
    +def fixanchor(current, match):
         text = match.group(0)
         link = None
         if text[:5] == "http:" or text[:4] == "ftp:":
             link = text
    -    elif text[:3] == "pep":
    +    elif text[:4] == "pep-" and text != current:
             link = os.path.splitext(text)[0] + ".html"
         if link:
    -        return "%s" % (link, cgi.escape(link))
    +        return "%s" % (link, cgi.escape(text))
         return cgi.escape(match.group(0)) # really slow, but it works...
     
     def fixfile(infile, outfile):
         # convert plain text pep to minimal XHTML markup
         fi = open(infile)
         fo = open(outfile, "w")
    -    fo.write("%s\n\n" % DTD)
    +    fo.write(DTD + "\n\n\n")
         # head
         header = []
    -    fo.write("\n")
         pep = ""
         title = ""
         while 1:
    @@ -57,47 +60,59 @@
         fo.write("\n")
         # body
         fo.write("\n")
    -    fo.write("
    \n")
    -    fo.write("[home]")
    -    if os.path.basename(file) != "pep-0000.txt":
    -        fo.write(" [index]")
    -    fo.write("\n
    \n") - # fo.write("\n

    \n")
    +    fo.write("[home]\n")
    +    if os.path.basename(infile) != "pep-0000.txt":
    +        fo.write("[index]\n")
    +    fo.write("
    \n\n") for k, v in header: - fo.write("%s: %s\n" % (cgi.escape(k), cgi.escape(v))) + fo.write(" \n" + % (cgi.escape(k), cgi.escape(v))) title = 0 + fo.write("
    %s:%s
    \n
    ")
         while 1:
             line = fi.readline()
             if not line:
                 break
             if line[:1] == "\f":
    -            fo.write("\n
    \n") + fo.write("
    ") # fo.write("\n

    \n")
                 title = 1
    -        elif title >= 0:
    -            line = fixpat.sub(fixanchor, line)
    +        else:
    +            line = fixpat.sub(lambda x, c=infile: fixanchor(c, x), line)
                 if title:
                     if line.strip() == "Local Variables:":
    -                    title = -1
    -                else:
    -                    fo.write("

    %s

    \n" % line) - # fo.write("

    %s

    \n" % line)
    -                    title = 0
    +                    break
    +                fo.write("
    \n

    %s

    \n
    " % line.strip())
    +                # fo.write("

    %s

    \n" % line)
    +                title = 0
                 else:
                     fo.write(line)
         fo.write("
    \n") fo.write("\n") fo.write("\n") -for file in glob.glob("pep-*.txt"): - print file, "..." - fixfile(file, os.path.splitext(file)[0] + ".html") -if len(sys.argv) == 1: - username = "" -elif len(sys.argv) == 2: - username = sys.argv[1]+"@" -else: - raise "Syntax: "+sys.argv[0]+" [sf_username]" - -os.system("scp pep-*.html "+username+"shell.sourceforge.net:/home/groups/python/htdocs/peps") +def main(): + update = 1 + for file in glob.glob("pep-*.txt"): + print file, "..." + fixfile(file, os.path.splitext(file)[0] + ".html") + + if len(sys.argv) > 1 and sys.argv[1] == "-n": + update = 0 + del sys.argv[1] + + if len(sys.argv) == 1: + username = "" + elif len(sys.argv) == 2: + username = sys.argv[1]+"@" + else: + raise "Syntax: "+sys.argv[0]+" [-n] [sf_username]" + + if update: + os.system("scp pep-*.html " + username + + "shell.sourceforge.net:/home/groups/python/htdocs/peps") + + +if __name__ == "__main__": + main() -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:10 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:10 +0100 Subject: [Python-checkins] peps: Add statement that this in the public domain. Message-ID: http://hg.python.org/peps/rev/eb26e095da3b changeset: 41:eb26e095da3b user: Fred Drake date: Tue Jul 25 04:00:57 2000 +0000 summary: Add statement that this in the public domain. files: pep-0160.txt | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/pep-0160.txt b/pep-0160.txt --- a/pep-0160.txt +++ b/pep-0160.txt @@ -32,6 +32,11 @@ be provided, including all methods and codec support. + +Copyright + + This document has been placed in the public domain. + Local Variables: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:10 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:10 +0100 Subject: [Python-checkins] peps: try to change rights of peps to rw-rw-r-- Message-ID: http://hg.python.org/peps/rev/faf7c8ee91fe changeset: 42:faf7c8ee91fe user: Peter Schneider-Kamp date: Tue Jul 25 04:12:28 2000 +0000 summary: try to change rights of peps to rw-rw-r-- files: pep2html.py | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pep2html.py b/pep2html.py --- a/pep2html.py +++ b/pep2html.py @@ -17,6 +17,9 @@ # this doesn't validate -- you cannot use
    and

    inside
     # tags.  but if I change that, the result doesn't look very nice...
     
    +HOST = "shell.sourceforge.net" # host for update
    +HDIR = "/home/groups/python/htdocs/peps" # target host directory
    +
     DTD = ('')
     
    @@ -90,6 +93,8 @@
         fo.write("
    \n") fo.write("\n") fo.write("\n") + fo.close() + os.chmod(outfile, 0664) def main(): @@ -110,8 +115,8 @@ raise "Syntax: "+sys.argv[0]+" [-n] [sf_username]" if update: - os.system("scp pep-*.html " + username - + "shell.sourceforge.net:/home/groups/python/htdocs/peps") + os.system("scp pep-*.html " + username + HOST + ":" + HDIR) + os.system("ssh " + username + HOST + " chmod 664 " + HDIR + "/*") if __name__ == "__main__": -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:12 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:12 +0100 Subject: [Python-checkins] peps: add tentative release schedule and contributor guidelines Message-ID: http://hg.python.org/peps/rev/281696d18779 changeset: 43:281696d18779 user: Jeremy Hylton date: Tue Jul 25 14:11:19 2000 +0000 summary: add tentative release schedule and contributor guidelines files: pep-0200.txt | 65 +++++++++++++++++++++++++++++++++++---- 1 files changed, 58 insertions(+), 7 deletions(-) diff --git a/pep-0200.txt b/pep-0200.txt --- a/pep-0200.txt +++ b/pep-0200.txt @@ -6,7 +6,6 @@ Status: Incomplete - Introduction This PEP describes the Python 2.0 release schedule, tracking the @@ -16,12 +15,67 @@ CVS revision history of this file contains the definitive historical record. +Tentative Release Schedule - +Aug. 14: All 2.0 PEPs finished / feature freeze +Aug. 28: 2.0 beta 1 +Sep. 29: 2.0 final + +Guidelines for submitting patches and making changes + +Use good sense when committing changes. You should know what we mean +by good sense or we wouldn't have given you commit privileges <0.5 +wink>. Some specific examples of good sense include: + + - Do whatever the dictator tells you. + + - Discuss any controversial changes on python-dev first. If you + get a lot of +1 votes and no -1 votes, make the change. If you + get a some -1 votes, think twice; consider asking Guido what he + thinks. + + - If the change is to code you contributed, it probably makes + sense for you to fix it. + + - If the change affects code someone else wrote, it probably makes + sense to ask him or her first. + + - You can use the SF Patch Manager to submit a patch and assign it + to someone for review. + +Any significant new feature must be described in a PEP and approved +before it is checked in. + +Any significant code addition, such as a new module or large patch, +must include test cases for the regression test and documentation. A +patch should not be checked in until the tests and documentation are +ready. + +If you fix a bug, you should write a test case that would have caught +the bug. + +If you commit a patch from the SF Patch Manager or fix a bug from the +Jitterbug database, be sure to reference the patch/bug number in the +CVS log message. Also be sure to change the status in the patch +manager or bug database (if you have access to the bug database). + +It is not acceptable for any checked in code to cause the regression +test to fail. If a checkin causes a failure, it must be fixed within +24 hours or it will be backed out. + +All contributed C code must be ANSI C. If possible check it with two +different compilers, e.g. gcc and MSVC. + +All contributed Python code must follow Guido's Python style guide. +http://www.python.org/doc/essays/styleguide.html + +It is understood that any code contributed will be released under an +Open Source license. Do not contribute code if it can't be released +this way. + Accepted and completed - Accepted and in progress * SyntaxError enhancements - Fredrik Lundh @@ -37,12 +91,11 @@ * SRE - Fredrik Lundh The test suite still fails on test_re. - * snprintf - owner??? + * PyErr_SafeFormat / snprintf - owner??? Use snprintf to avoid buffer overflows. Need configure hackery to discovery if it is available on the current platform and a default implementation if it is not. http://www.python.org/pipermail/python-dev/2000-April/010051.html - This function is expected to be part of C9X (check). * Support for opcode arguments > 2**16 - Charles Waldman Source files longer than 32K and sequences with more than 32K @@ -53,7 +106,6 @@ Make range(1, 10, 2) == [1:10:2] - Open: proposed but not accepted or declined * List comprehensions - Tim Peters? @@ -77,7 +129,6 @@ - http://www.python.org/pipermail/python-dev/1999-August/002252.html - Declined -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:13 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:13 +0100 Subject: [Python-checkins] peps: some content to start things off (maybe someone else will add to it...) Message-ID: http://hg.python.org/peps/rev/bcf483d2b43d changeset: 44:bcf483d2b43d user: Skip Montanaro date: Tue Jul 25 15:07:28 2000 +0000 summary: some content to start things off (maybe someone else will add to it...) files: pep-0202.txt | 108 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 108 insertions(+), 0 deletions(-) diff --git a/pep-0202.txt b/pep-0202.txt --- a/pep-0202.txt +++ b/pep-0202.txt @@ -6,6 +6,114 @@ Status: Incomplete +Introduction + + This PEP describes a proposed syntactical extension to Python, list + comprehensions. + + + +The Proposed Solution + + It is proposed to allow conditional construction of list literals using + for and if clauses. They would nest in the same way for loops and if + statements nest now. + + + +Rationale + + List comprehensions provide a more concise way to create lists in + situations where map() and filter() and/or nested loops would currently + be used. + + +Examples + + >>> print [i for i in range(10)] + [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] + + >>> print [i for i in range(20) if i%2 == 0] + [0, 2, 4, 6, 8, 10, 12, 14, 16, 18] + + >>> nums = [1,2,3,4] + >>> fruit = ["Apples", "Peaches", "Pears", "Bananas"] + >>> print [i,f for i in nums for f in fruit] + [(1, 'Apples'), (1, 'Peaches'), (1, 'Pears'), (1, 'Bananas'), + (2, 'Apples'), (2, 'Peaches'), (2, 'Pears'), (2, 'Bananas'), + (3, 'Apples'), (3, 'Peaches'), (3, 'Pears'), (3, 'Bananas'), + (4, 'Apples'), (4, 'Peaches'), (4, 'Pears'), (4, 'Bananas')] + >>> print [i,f for i in nums for f in fruit if f[0] == "P"] + [(1, 'Peaches'), (1, 'Pears'), + (2, 'Peaches'), (2, 'Pears'), + (3, 'Peaches'), (3, 'Pears'), + (4, 'Peaches'), (4, 'Pears')] + >>> print [i,f for i in nums for f in fruit if f[0] == "P" if i%2 == 1] + [(1, 'Peaches'), (1, 'Pears'), (3, 'Peaches'), (3, 'Pears')] + >>> def zip(*args): + ... return apply(map, (None,)+args) + ... + >>> print [i for i in zip(nums,fruit) if i[0]%2==0] + [(2, 'Peaches'), (4, 'Bananas')] + + +Reference Implementation + + Please refer to + + https://sourceforge.net/patch/?func=detailpatch&patch_id=100654&group_id=5470 + + for a patch that adds list comprehensions to Python. + + + +Open Issues + + Syntax + + Several people proposed connecting or separating syntax between the + various clauses, for example, requiring a semicolon between them to + set them apart: + + [i,f; for i in nums; for f in fruit; if f[0]=="P"; if i%2==1] + + To minimize strain on the Python parser, Guido has suggested + requiring parentheses around the initial tuple: + + [(i,f) for i in nums for f in fruit if f[0]=="P" if i%2==1] + + Semantics + + The semantics of multiple for clauses is not obvious to many + people. Currently, it nests, so that + + [i,f for i in nums for f in fruit] + + is functionally equivalent to + + tmp = [] + for i in nums: + for f in fruit: + tmp.append((i,f)) + + Other people would read it as if it executed + + map(None, nums, fruit) + + It's not clear that this is necessary. The newly proposed zip() + builtin takes care of that case. + + Stability of the Implementation + + The current reference implementation is simply an adaptation of Greg + Ewing's original demonstration of the concept. Other than tracking + changes to the source code to keep it a valid patch, reindenting the + code and switching to function prototypes, nothing has been done to + it. This obviously raises some questions about how stable the code + is. It has not had a lot of exercise, though the patch does include + a few test cases. + + Local Variables: mode: indented-text indent-tabs-mode: nil -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:15 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:15 +0100 Subject: [Python-checkins] peps: Fleshed out the bulk of the guidelines, after internal discussion Message-ID: http://hg.python.org/peps/rev/be7150dbe20c changeset: 45:be7150dbe20c user: Barry Warsaw date: Tue Jul 25 17:59:08 2000 +0000 summary: Fleshed out the bulk of the guidelines, after internal discussion among the PEP authors and the BDFL. files: pep-0001.txt | 206 ++++++++++++++++++++++++++++++++++++++- 1 files changed, 203 insertions(+), 3 deletions(-) diff --git a/pep-0001.txt b/pep-0001.txt --- a/pep-0001.txt +++ b/pep-0001.txt @@ -1,8 +1,208 @@ PEP: 1 -Title: PEP Guidelines +Title: PEP Purpose and Guidelines Version: $Revision$ -Owner: bwarsaw at beopen.com (Barry A. Warsaw) -Status: Incomplete +Author: bwarsaw at beopen.com (Barry A. Warsaw), + jeremy at beopen.com (Jeremy Hylton) +Status: Draft +Type: Informational +Created: 13-Jun-2000 +Post-History: + + +What is a PEP? + + PEP standards for Python Enhancement Proposal. A PEP is a design + document providing information to the Python community, or + describing a new feature for Python. The PEP should provide a + concise technical specification of the feature and a rationale for + the feature. + + We intend PEPs to be the primary mechanisms for proposing new + features, for collecting community input on an issue, and for + documenting the design decisions that have gone into Python. The + PEP author is responsible for building consensus within the + community and documenting dissenting opinions. + + Because the PEPs are maintained as plain text files under CVS + control, their revision history is the historical record of the + feature proposal. + + +Kinds of PEPs + + There are two kinds of PEPs. A standards track PEP describes a + new feature for Python. An informational PEP describes a Python + design issue, or provides general guidelines or information to the + Python community, but does not propose a new feature. + + +PEP Workflow + + The PEP editor, Barry Warsaw , assigns numbers + for each PEP and changes its status. + + When a new feature is introduced on python-dev, a brief high-level + discussion should be conducted, not on the merits of the proposal, + but on whether the idea is significant enough to warrant a PEP. + Should consensus on PEP-ability be reached, a champion must be + identified. The champion offers to take the discussion off-line + and specifies a location (e.g. egroups, python.org, Roundup). + + The champion then emails the PEP editor describing the proposal + and its title. If the PEP editor approves, he will assign the PEP + a number, label it as standards track or informational, give it + status 'draft', and create and check-in an initial template for + the PEP. The PEP editor will not unreasonably deny a PEP. + Reasons for denying PEP status include duplication of effort, + being technically unsound, or not in keeping with the Python + philosophy; the BDFL (Benevolent Dictator for Life, Guido van + Rossum ) is the final arbitrator of the latter. + + Discussion concerning a PEP should initially be kept out of the + python-dev and python-list mailing lists. Instead, comments + should be sent to, and collected by, the PEP owner, who has the + responsibility to incorporate these comments into the document. + + The authors of the PEP are then responsible for writing the PEP + and marshaling community support for it. The structure of a PEP + is described in detail below. The PEP consists of two parts, a + design document and a reference implementation. The PEP should be + reviewed and accepted before a reference implementation is begun, + unless a reference implementation will aid people in studying the + PEP. A Standards Track PEP must include an implementation - in + the form of code, patch, or URL to same - before it can be + considered Final. + + PEP authors are responsible for collecting community feedback on a + PEP before submitting it for review. A PEP that has not been + discussed on python-list and python-dev will not be accepted for + review. However, wherever possible, long open-ended discussions + on public mailing lists should be avoided. A better strategy is + to encourage public feedback directly to the PEP author, who + collects and integrates the comments back into the PEP. + + Once the authors have completed a PEP, they must inform the PEP + editor that it is ready for review. PEPs are reviewed by the BDFL + and his chosen consultants, who may accept or reject a PEP or send + it back to the author(s) for revision. + + Once a PEP has been accepted, the reference implementation must be + completed. When the reference implementation is complete and + accepted by the BDFL, the status will be changed to `Final.' + + A PEP can also be assigned status `Deferred.' The PEP author or + editor can assign the PEP this status when no progress is being + made on the PEP. Once a PEP is deferred, the PEP editor can + re-assign it to draft status. + + A PEP can also be `Rejected'. Perhaps after all is said and done + it was not a good idea. It is still important to have a record of + this fact. + + PEP work flow is as follows: + + Draft -> Accepted -> Final + ^ + +----> Rejected + v + Deferred + + +What belongs in a successful PEP? + + Each PEP should have the following parts: + + 1. Title -- a short, descriptive title + + 2. Author(s) -- names and contact info for each author + + 3. Abstract -- a short (~200 word) description of the technical issue + being addressed + + 4. Copyright/public domain -- Each PEP must either be explicitly + labelled in the public domain or the Open Publication + License[1]. + + 5. Specification -- The technical specification should describe + the syntax and semantics of any new language feature. The + specification should be detailed enough to allow competing, + interoperable implementations for any of the current Python + platforms (CPython, JPython, Python .NET). + + 6. Rationale -- The rationale fleshes out the specification by + describing what motivated the design and why particular design + decisions were made. It should describe alternate designs that + were considered and related work, e.g. how the feature is + supported in other languages. + + The rationale should provide evidence of consensus within the + community and discuss important objections or concerns raised + during discussion. + + 7. Reference Implementation -- The reference implementation must + be completed before any PEP is given status 'final,' but it + need not be completed before the PEP is accepted. It is better + to finish the specification and rationale first and reach + consensus on it before writing code. + + The final implementation must include test code and + documentation appropriate for either the Python language + reference or the standard library reference. + + +PEP Style + + PEPs are written in plain ASCII text, and should adhere to a + rigid style. There is a Python script that parses this style and + converts the plain text PEP to HTML for viewing on the web. + + Each PEP begins with an RFC822 style header section. Required + headers are as follows, and must appear in this order: + + PEP: + Title: + Version: + Author: + Status: + Type: + Created: + Post-History: + + Standards track PEPs should additionally have a Python-Version: + header which indicates the version of Python that the feature will + be released with. + + While a PEP is in private discussions (usually during the initial + Draft phase), a Discussions-To: header will indicate the mailing + list or URL where the PEP is being discussed. + + PEP heading should begin in column zero and should be capitalized. + The body of each section should be indented 4 spaces. Code + samples inside body sections should be indented a further 4 + spaces, and other indentation can be used as required to make the + text readable. You should use two blank lines between the last + line of a section's body and the next section heading. + + No tabs should appear in the document at all. A PEP should + include the Emacs stanza included by example in this PEP to aid + Emacs editors. + + A PEP must contain a Copyright heading, and it is strongly + recommended to put the PEP in the public domain. + + You should footnote any URLs in the body of the PEP, and a PEP + should include a References section with those URLs expanded. + + +Copyright + + This document has been placed in the public domain. + + +References + + [1] http://www.opencontent.org/openpub/ + Local Variables: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:15 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:15 +0100 Subject: [Python-checkins] peps: More explanation of feature requirements and mechanics of construction. Message-ID: http://hg.python.org/peps/rev/ee26025e67f9 changeset: 46:ee26025e67f9 user: Fred Drake date: Tue Jul 25 20:48:58 2000 +0000 summary: More explanation of feature requirements and mechanics of construction. files: pep-0160.txt | 42 +++++++++++++++++++++++++++------------ 1 files changed, 29 insertions(+), 13 deletions(-) diff --git a/pep-0160.txt b/pep-0160.txt --- a/pep-0160.txt +++ b/pep-0160.txt @@ -1,19 +1,19 @@ -PEP: 160 -Title: Python 1.6 Release Schedule -Version: $Revision$ -Owner: fdrake at beopen.com (Fred L. Drake, Jr.) -Python-Version: 2.0 -Status: Incomplete +PEP: 160 +Title: Python 1.6 Release Schedule +Version: $Revision$ +Owner: Fred L. Drake, Jr. +Python-Version: 1.6 +Status: Incomplete Introduction - This PEP describes the Python 1.6 release schedule, tracking the - status and ownership of the major new features, summarizes - discussions held in mailing list forums, and provides URLs for - further information, patches, and other outstanding issues. The - CVS revision history of this file contains the definitive - historical record. + This PEP describes the Python 1.6 release schedule. The CVS + revision history of this file contains the definitive historical + record. + + This release will be produced by BeOpen PythonLabs staff for the + Corporation for National Research Initiatives (CNRI). Schedule @@ -31,13 +31,29 @@ * Unicode support: The Unicode object defined for Python 2.0 must be provided, including all methods and codec support. + * SRE: Fredrik Lundh's new regular expression engine will be used + to provide support for both 8-bit strings and Unicode strings. + It must pass the regression test used for the pcre-based version + of the re module. + + +Mechanism + + The release will be created as a branch from the development tree + rooted at CNRI's close of business on 16 May 2000. Patches + required from more recent checkins will be merged in by moving the + branch tag on individual files whenever possible in order to + reduce mailing list clutter and avoid divergent and incompatible + implementations. + + Patches and features will be merged to the extent required to pass + regression tests in effect on 16 May 2000. Copyright This document has been placed in the public domain. - Local Variables: mode: indented-text -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:25 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:25 +0100 Subject: [Python-checkins] peps: In a compromise with JHy, and to be more consistent with the style now Message-ID: http://hg.python.org/peps/rev/0be37909cd50 changeset: 47:0be37909cd50 user: Barry Warsaw date: Tue Jul 25 21:51:55 2000 +0000 summary: In a compromise with JHy, and to be more consistent with the style now documented in PEP1, remove the Emacs page breaks. Also, Owner: -> Author:, added Created: and Post-History: headers Changed "Standard For-Loops" section to "Motivation" and shortened considerably; readers already know how for-loops work in Python. Added notes about Guido's veto of lazy evaluation. files: pep-0201.txt | 66 ++++++++++----------------------------- 1 files changed, 18 insertions(+), 48 deletions(-) diff --git a/pep-0201.txt b/pep-0201.txt --- a/pep-0201.txt +++ b/pep-0201.txt @@ -1,12 +1,13 @@ PEP: 201 Title: Parallel Iteration Version: $Revision$ -Owner: bwarsaw at beopen.com (Barry A. Warsaw) +Author: bwarsaw at beopen.com (Barry A. Warsaw) Python-Version: 2.0 Status: Draft +Created: 13-Jul-2000 +Post-History: - Introduction This PEP describes the `parallel iteration' proposal for Python @@ -19,42 +20,19 @@ history of this file contains the definitive historical record. - -Standard For-Loops +Motivation - Motivation for this feature has its roots in a concept described - as `parallel for loops'. A standard for-loop in Python iterates - over every element in the sequence until the sequence is - exhausted. A `break' statement inside the loop suite causes an - explicit loop exit. For-loops also have else: clauses which get - executed when the loop exits normally (i.e. not by execution of a - break). + Standard for-loops in Python iterate over every element in a + sequence until the sequence is exhausted[1]. However, for-loops + iterate over only a single sequence, and it is often desirable to + loop over more than one sequence, in a lock-step, "Chinese Menu" + type of way. - For-loops can iterate over built-in types such as lists and - tuples, but they can also iterate over instance types that conform - to an informal sequence protocol. This protocol states that the - instance should implement the __getitem__() method, expecting a - monotonically increasing index starting at 0, and this method - should raise an IndexError when the sequence is exhausted. This - protocol is currently undocumented -- a defect in Python's - documentation hopefully soon corrected. + The common idioms used to accomplish this are unintuitive and + inflexible. This PEP proposes a standard way of performing such + iterations by introducing a new builtin function called `zip'. - For-loops are described in the Python language reference - manual[1]. - An example for-loop: - - >>> for i in (1, 2, 3): print i - ... - 1 - 2 - 3 - - In this example, the variable `i' is called the `target', and is - assigned the next element of the list, each time through the loop. - - - Parallel For-Loops Parallel for-loops are non-nested iterations over two or more @@ -70,12 +48,6 @@ (1, 4) (2, 5) (3, 6) - - Here, map() returns a list of N-tuples, where N is the number of - sequences in map()'s argument list (after the initial `None'). - Each tuple is constructed of the i-th elements from each of the - argument lists, specifically in this example: - >>> map(None, a, b) [(1, 4), (2, 5), (3, 6)] @@ -106,7 +78,6 @@ comprehensions' (see pep-0202.txt). - The Proposed Solution The proposed solution is to introduce a new built-in sequence @@ -129,7 +100,6 @@ Issues below for more discussion. - Lazy Execution For performance purposes, zip() does not construct the list of @@ -138,8 +108,9 @@ for-loop protocol. This method constructs the individual tuples on demand. + Guido is strongly opposed to lazy execution. See Open Issues. - + Examples Here are some examples, based on the reference implementation @@ -194,7 +165,6 @@ not all the same length. - Reference Implementation Here is a reference implementation, in Python of the zip() @@ -292,7 +262,6 @@ return _Zipper(args, kws) - Rejected Elaborations Some people have suggested that the user be able to specify the @@ -352,9 +321,12 @@ advantages. - Open Issues + - Guido opposes lazy evaluation for zip(). He believes zip() + should return a real list, with an xzip() lazy evaluator added + later if necessary. + - What should "zip(a)" do? Given a = (1, 2, 3); zip(a) @@ -427,7 +399,6 @@ always override pad if both were given. - References [1] http://www.python.org/doc/devel/ref/for.html @@ -435,7 +406,6 @@ TBD: URL to python-dev archives - Copyright This document has been placed in the public domain. -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:26 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:26 +0100 Subject: [Python-checkins] peps: Added Paul's latest crop of names to the list of proposed alternatives Message-ID: http://hg.python.org/peps/rev/1d290942c24d changeset: 48:1d290942c24d user: Barry Warsaw date: Tue Jul 25 22:00:05 2000 +0000 summary: Added Paul's latest crop of names to the list of proposed alternatives in Open Issues. files: pep-0201.txt | 11 +++++++---- 1 files changed, 7 insertions(+), 4 deletions(-) diff --git a/pep-0201.txt b/pep-0201.txt --- a/pep-0201.txt +++ b/pep-0201.txt @@ -375,10 +375,13 @@ with the zip compression algorithm. Other suggestions include (but are not limited to!): marry, weave, parallel, lace, braid, interlace, permute, furl, tuples, lists, stitch, collate, knit, - plait, fold, and with. All have disadvantages, and there is no - clear unanimous choice, therefore the decision was made to go - with `zip' because the same functionality is available in other - languages (e.g. Haskell) under the name `zip'[2]. + plait, fold, with, mktuples, maketuples, totuples, gentuples, + tupleorama. + + All have disadvantages, and there is no clear unanimous choice, + therefore the decision was made to go with `zip' because the + same functionality is available in other languages + (e.g. Haskell) under the name `zip'[2]. - Should zip() be including in the builtins module or should it be in a separate generators module (possibly with other candidate -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:27 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:27 +0100 Subject: [Python-checkins] peps: Do not start non-heading content on the first character of the line (after Message-ID: http://hg.python.org/peps/rev/15df0f2a1b39 changeset: 49:15df0f2a1b39 user: Fred Drake date: Wed Jul 26 04:12:42 2000 +0000 summary: Do not start non-heading content on the first character of the line (after the header). files: pep-0200.txt | 59 ++++++++++++++++++++------------------- pep-0204.txt | 3 +- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/pep-0200.txt b/pep-0200.txt --- a/pep-0200.txt +++ b/pep-0200.txt @@ -17,15 +17,15 @@ Tentative Release Schedule -Aug. 14: All 2.0 PEPs finished / feature freeze -Aug. 28: 2.0 beta 1 -Sep. 29: 2.0 final + Aug. 14: All 2.0 PEPs finished / feature freeze + Aug. 28: 2.0 beta 1 + Sep. 29: 2.0 final Guidelines for submitting patches and making changes -Use good sense when committing changes. You should know what we mean -by good sense or we wouldn't have given you commit privileges <0.5 -wink>. Some specific examples of good sense include: + Use good sense when committing changes. You should know what we + mean by good sense or we wouldn't have given you commit privileges + <0.5 wink>. Some specific examples of good sense include: - Do whatever the dictator tells you. @@ -43,35 +43,36 @@ - You can use the SF Patch Manager to submit a patch and assign it to someone for review. -Any significant new feature must be described in a PEP and approved -before it is checked in. + Any significant new feature must be described in a PEP and + approved before it is checked in. -Any significant code addition, such as a new module or large patch, -must include test cases for the regression test and documentation. A -patch should not be checked in until the tests and documentation are -ready. + Any significant code addition, such as a new module or large + patch, must include test cases for the regression test and + documentation. A patch should not be checked in until the tests + and documentation are ready. -If you fix a bug, you should write a test case that would have caught -the bug. + If you fix a bug, you should write a test case that would have + caught the bug. -If you commit a patch from the SF Patch Manager or fix a bug from the -Jitterbug database, be sure to reference the patch/bug number in the -CVS log message. Also be sure to change the status in the patch -manager or bug database (if you have access to the bug database). + If you commit a patch from the SF Patch Manager or fix a bug from + the Jitterbug database, be sure to reference the patch/bug number + in the CVS log message. Also be sure to change the status in the + patch manager or bug database (if you have access to the bug + database). -It is not acceptable for any checked in code to cause the regression -test to fail. If a checkin causes a failure, it must be fixed within -24 hours or it will be backed out. + It is not acceptable for any checked in code to cause the + regression test to fail. If a checkin causes a failure, it must + be fixed within 24 hours or it will be backed out. -All contributed C code must be ANSI C. If possible check it with two -different compilers, e.g. gcc and MSVC. + All contributed C code must be ANSI C. If possible check it with + two different compilers, e.g. gcc and MSVC. -All contributed Python code must follow Guido's Python style guide. -http://www.python.org/doc/essays/styleguide.html + All contributed Python code must follow Guido's Python style + guide. http://www.python.org/doc/essays/styleguide.html -It is understood that any code contributed will be released under an -Open Source license. Do not contribute code if it can't be released -this way. + It is understood that any code contributed will be released under + an Open Source license. Do not contribute code if it can't be + released this way. Accepted and completed @@ -115,7 +116,7 @@ * Eliminated SET_LINENO opcode - Vladimir Marangozov Small optimization achieved by using the code object's lnotab instead of the SET_LINENO instruction. Uses code rewriting - technique (that Guido's growns on) to support debugger, which + technique (that Guido's frowns on) to support debugger, which uses SET_LINENO. http://starship.python.net/~vlad/lineno/ diff --git a/pep-0204.txt b/pep-0204.txt --- a/pep-0204.txt +++ b/pep-0204.txt @@ -263,8 +263,7 @@ References: - [1] -http://sourceforge.net/patch/?func=detailpatch&patch_id=100902&group_id=5470 + [1] http://sourceforge.net/patch/?func=detailpatch&patch_id=100902&group_id=5470 Local Variables: -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:29 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:29 +0100 Subject: [Python-checkins] peps: If form-feeds are not going to be used to indicate what can be marked as Message-ID: http://hg.python.org/peps/rev/71bdff24635e changeset: 50:71bdff24635e user: Fred Drake date: Wed Jul 26 04:14:30 2000 +0000 summary: If form-feeds are not going to be used to indicate what can be marked as a header, use a non-white character in the first column. This looks a little cleaner. files: pep2html.py | 29 ++++++++++++----------------- 1 files changed, 12 insertions(+), 17 deletions(-) diff --git a/pep2html.py b/pep2html.py --- a/pep2html.py +++ b/pep2html.py @@ -59,40 +59,35 @@ if pep: title = "PEP " + pep + " -- " + title if title: - fo.write("%s\n" % cgi.escape(title)) + fo.write(" %s\n" % cgi.escape(title)) fo.write("\n") # body - fo.write("\n") - fo.write("[home]\n") + fo.write('\n') + fo.write('[home]\n') if os.path.basename(infile) != "pep-0000.txt": - fo.write("[index]\n") - fo.write("
    \n\n") + fo.write('[index]\n') + fo.write('
    \n
    \n') for k, v in header: fo.write(" \n" % (cgi.escape(k), cgi.escape(v))) title = 0 - fo.write("
    %s:%s
    \n
    ")
    +    fo.write("

    \n
    \n
    ")
         while 1:
             line = fi.readline()
             if not line:
                 break
    -        if line[:1] == "\f":
    -            fo.write("
    ") - # fo.write("\n

    \n")
    -            title = 1
    -        else:
    -            line = fixpat.sub(lambda x, c=infile: fixanchor(c, x), line)
    -            if title:
    +        if line[0] != "\f":
    +            if line[0].strip():
                     if line.strip() == "Local Variables:":
                         break
                     fo.write("
    \n

    %s

    \n
    " % line.strip())
    -                # fo.write("

    %s

    \n" % line)
                     title = 0
                 else:
    +                line = fixpat.sub(lambda x, c=infile: fixanchor(c, x), line)
                     fo.write(line)
    -    fo.write("
    \n") - fo.write("\n") - fo.write("\n") + fo.write("\n" + "\n" + "\n") fo.close() os.chmod(outfile, 0664) -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:29 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:29 +0100 Subject: [Python-checkins] peps: Fixed reference [1] to point to the current documentation, not the Message-ID: http://hg.python.org/peps/rev/080d60d94b3e changeset: 51:080d60d94b3e user: Barry Warsaw date: Wed Jul 26 04:22:03 2000 +0000 summary: Fixed reference [1] to point to the current documentation, not the devel copy (thanks to Fred Drake, Dr. Docs!) files: pep-0201.txt | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pep-0201.txt b/pep-0201.txt --- a/pep-0201.txt +++ b/pep-0201.txt @@ -404,7 +404,7 @@ References - [1] http://www.python.org/doc/devel/ref/for.html + [1] http://www.python.org/doc/current/ref/for.html [2] http://www.haskell.org/onlinereport/standard-prelude.html#$vzip TBD: URL to python-dev archives -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:32 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:32 +0100 Subject: [Python-checkins] peps: add sterner warning about test case problems Message-ID: http://hg.python.org/peps/rev/926f80174f89 changeset: 52:926f80174f89 user: Jeremy Hylton date: Thu Jul 27 03:03:39 2000 +0000 summary: add sterner warning about test case problems note error in dictionary comparison that raises exception files: pep-0200.txt | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/pep-0200.txt b/pep-0200.txt --- a/pep-0200.txt +++ b/pep-0200.txt @@ -74,6 +74,26 @@ an Open Source license. Do not contribute code if it can't be released this way. +Failing test cases need to get fixed + + We need to resolve errors in the regression test suite quickly. + Changes should not be committed to the CVS tree unless the + regression test runs cleanly with the changes applied. If it + fails, there may be bugs lurking in the code. (There may be bugs + anyway, but that's another matter.) If the test cases are known + to fail, they serve no useful purpose. + + The current test suite runs correctly on my Linux box (July 26). + Heard reports that test_fork1 fails on some Linux boxes and that + test_winreg and test_winreg32 fail on Windows. + +Open items -- should be done/fixed + + Decoding errors when comparing strings. There is a dictionary bug + that prevents objects from being accessible when an exception is + raised during hashing or comparison. + + Accepted and completed -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Wed Mar 23 21:23:32 2011 From: python-checkins at python.org (georg.brandl) Date: Wed, 23 Mar 2011 21:23:32 +0100 Subject: [Python-checkins] peps: Further presentation adjustments, use a style sheet for some things. Message-ID: http://hg.python.org/peps/rev/c7065145df09 changeset: 53:c7065145df09 user: Fred Drake date: Thu Jul 27 18:44:44 2000 +0000 summary: Further presentation adjustments, use a style sheet for some things. files: pep2html.py | 19 ++++++++++++------- style.css | 7 +++++++ 2 files changed, 19 insertions(+), 7 deletions(-) diff --git a/pep2html.py b/pep2html.py --- a/pep2html.py +++ b/pep2html.py @@ -59,19 +59,24 @@ if pep: title = "PEP " + pep + " -- " + title if title: - fo.write(" %s\n" % cgi.escape(title)) + fo.write(" %s\n" + ' \n' + % cgi.escape(title)) fo.write("\n") # body - fo.write('\n') - fo.write('[home]\n') + fo.write('\n' + '\n
    \n" + "
    ")
         while 1:
             line = fi.readline()
             if not line:
    @@ -110,7 +115,7 @@
             raise "Syntax: "+sys.argv[0]+" [-n] [sf_username]"
     
         if update:
    -        os.system("scp pep-*.html " + username + HOST + ":" + HDIR)
    +        os.system("scp pep-*.html style.css " + username + HOST + ":" + HDIR)
             os.system("ssh " + username + HOST + " chmod 664 " + HDIR + "/*")
     
     
    diff --git a/style.css b/style.css
    new file mode 100644
    --- /dev/null
    +++ b/style.css
    @@ -0,0 +1,7 @@
    +.navigation { background: #99ccff;
    +              border: thin solid #ffffff;
    +              width: 100%;
    +              padding: 4pt;
    +              }
    +
    +.header th:after { content: "  " }
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:23:34 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:23:34 +0100
    Subject: [Python-checkins] peps: Identify the branch tag for the Python 1.6
    	release.
    Message-ID: 
    
    http://hg.python.org/peps/rev/204fb2e23dec
    changeset:   54:204fb2e23dec
    user:        Fred Drake 
    date:        Thu Jul 27 18:46:29 2000 +0000
    summary:
      Identify the branch tag for the Python 1.6 release.
    Remove the ugly form-feed characters some people use with Emacs.
    
    files:
      pep-0160.txt |  8 ++------
      1 files changed, 2 insertions(+), 6 deletions(-)
    
    
    diff --git a/pep-0160.txt b/pep-0160.txt
    --- a/pep-0160.txt
    +++ b/pep-0160.txt
    @@ -5,7 +5,6 @@
     Python-Version: 1.6
     Status:         Incomplete
     
    -
     Introduction
     
         This PEP describes the Python 1.6 release schedule.  The CVS
    @@ -15,12 +14,10 @@
         This release will be produced by BeOpen PythonLabs staff for the
         Corporation for National Research Initiatives (CNRI).
     
    -
     Schedule
         August 1     1.6 beta 1 release.
         August 15    1.6 final release.
     
    -
     Features
     
         A number of features are required for Python 1.6 in order to
    @@ -36,7 +33,6 @@
           It must pass the regression test used for the pcre-based version
           of the re module.
     
    -
     Mechanism
     
         The release will be created as a branch from the development tree
    @@ -46,15 +42,15 @@
         reduce mailing list clutter and avoid divergent and incompatible
         implementations.
     
    +    The branch tag is "cnri-16-start".
    +
         Patches and features will be merged to the extent required to pass
         regression tests in effect on 16 May 2000.
     
    -
     Copyright
     
         This document has been placed in the public domain.
     
    -
     Local Variables:
     mode: indented-text
     indent-tabs-mode: nil
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:23:35 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:23:35 +0100
    Subject: [Python-checkins] peps: Updated based on Guido's recent
    	pronouncements on the Open	Issues.
    Message-ID: 
    
    http://hg.python.org/peps/rev/e4678d0f2cbb
    changeset:   55:e4678d0f2cbb
    user:        Barry Warsaw 
    date:        Thu Jul 27 19:15:20 2000 +0000
    summary:
      Updated based on Guido's recent pronouncements on the Open Issues.
    There are now no more open issues.
    
    files:
      pep-0201.txt |  302 ++++++--------------------------------
      1 files changed, 50 insertions(+), 252 deletions(-)
    
    
    diff --git a/pep-0201.txt b/pep-0201.txt
    --- a/pep-0201.txt
    +++ b/pep-0201.txt
    @@ -84,31 +84,17 @@
         generator function, available in the __builtin__ module.  This
         function is to be called `zip' and has the following signature:
     
    -    zip(seqa, [seqb, [...]], [pad=])
    +    zip(seqa, [seqb, [...]])
     
         zip() takes one or more sequences and weaves their elements
         together, just as map(None, ...) does with sequences of equal
    -    length.  The optional keyword argument `pad', if supplied, is a
    -    value used to pad all shorter sequences to the length of the
    -    longest sequence.  If `pad' is omitted, then weaving stops when
    -    the shortest sequence is exhausted.
    +    length.  The weaving stops when the shortest sequence is
    +    exhausted.
     
    -    It is not possible to pad short lists with different pad values,
    -    nor will zip() ever raise an exception with lists of different
    -    lengths.  To accomplish either behavior, the sequences must be
    -    checked and processed before the call to zip() -- but see the Open
    -    Issues below for more discussion.
     
    +Return Value
     
    -Lazy Execution
    -
    -    For performance purposes, zip() does not construct the list of
    -    tuples immediately.  Instead it instantiates an object that
    -    implements a __getitem__() method and conforms to the informal
    -    for-loop protocol.  This method constructs the individual tuples
    -    on demand.
    -
    -    Guido is strongly opposed to lazy execution.  See Open Issues.
    +    zip() returns a real Python list, the same way map() does.
     
     
     Examples
    @@ -127,23 +113,9 @@
         >>> zip(a, d)
         [(1, 12), (2, 13)]
     
    -    >>> zip(a, d, pad=0)
    -    [(1, 12), (2, 13), (3, 0), (4, 0)]
    -    
    -    >>> zip(a, d, pid=0)
    -    Traceback (most recent call last):
    -      File "", line 1, in ?
    -      File "/usr/tmp/python-iKAOxR", line 11, in zip
    -    TypeError: unexpected keyword arguments
    -    
         >>> zip(a, b, c, d)
         [(1, 5, 9, 12), (2, 6, 10, 13)]
     
    -    >>> zip(a, b, c, d, pad=None)
    -    [(1, 5, 9, 12), (2, 6, 10, 13), (3, 7, 11, None), (4, 8, None, None)]
    -    >>> map(None, a, b, c, d)
    -    [(1, 5, 9, 12), (2, 6, 10, 13), (3, 7, 11, None), (4, 8, None, None)]
    -
         Note that when the sequences are of the same length, zip() is
         reversible:
     
    @@ -171,235 +143,60 @@
         built-in function and helper class.  These would ultimately be
         replaced by equivalent C code.
     
    -    class _Zipper:
    -        def __init__(self, args, kws):
    -            # Defaults
    -            self.__padgiven = 0
    -            if kws.has_key('pad'):
    -                self.__padgiven = 1
    -                self.__pad = kws['pad']
    -                del kws['pad']
    -            # Assert no unknown arguments are left
    -            if kws:
    -                raise TypeError('unexpected keyword arguments')
    -            self.__sequences = args
    -            self.__seqlen = len(args)
    +    def zip(*args):
    +        if not args:
    +            raise TypeError('zip() expects one or more sequence arguments')
    +        ret = []
    +        # find the length of the shortest sequence
    +        shortest = min(*map(len, args))
    +        for i in range(shortest):
    +            item = []
    +            for s in args:
    +                item.append(s[i])
    +            ret.append(tuple(item))
    +        return ret
     
    -        def __getitem__(self, i):
    -            if not self.__sequences:
    -                raise IndexError
    -            ret = []
    -            exhausted = 0
    -            for s in self.__sequences:
    -                try:
    -                    ret.append(s[i])
    -                except IndexError:
    -                    if not self.__padgiven:
    -                        raise
    -                    exhausted = exhausted + 1
    -                    if exhausted == self.__seqlen:
    -                        raise
    -                    ret.append(self.__pad)
    -            return tuple(ret)
     
    -        def __len__(self):
    -            # If we're padding, then len is the length of the longest sequence,
    -            # otherwise it's the length of the shortest sequence.
    -            if not self.__padgiven:
    -                shortest = -1
    -                for s in self.__sequences:
    -                    slen = len(s)
    -                    if shortest < 0 or slen < shortest:
    -                        shortest = slen
    -                if shortest < 0:
    -                    return 0
    -                return shortest
    -            longest = 0
    -            for s in self.__sequences:
    -                slen = len(s)
    -                if slen > longest:
    -                    longest = slen
    -            return longest
    +BDFL Pronouncements
     
    -        def __cmp__(self, other):
    -            i = 0
    -            smore = 1
    -            omore = 1
    -            while 1:
    -                try:
    -                    si = self[i]
    -                except IndexError:
    -                    smore = 0
    -                try:
    -                    oi = other[i]
    -                except IndexError:
    -                    omore = 0
    -                if not smore and not omore:
    -                    return 0
    -                elif not smore:
    -                    return -1
    -                elif not omore:
    -                    return 1
    -                test = cmp(si, oi)
    -                if test:
    -                    return test
    -                i = i + 1
    +    Note: the BDFL refers to Guido van Rossum, Python's Benevolent
    +    Dictator For Life.
     
    -        def __str__(self):
    -            ret = []
    -            i = 0
    -            while 1:
    -                try:
    -                    ret.append(self[i])
    -                except IndexError:
    -                    break
    -                i = i + 1
    -            return str(ret)
    -        __repr__ = __str__
    +    - The function's name.  An earlier version of this PEP included an
    +      open issue listing 20+ proposed alternative names to zip().  In
    +      the face of no overwhelmingly better choice, the BDFL strongly
    +      prefers zip() due to it's Haskell[2] heritage.  See version 1.7
    +      of this PEP for the list of alteratives.
     
    +    - zip() shall be a built-in function.
     
    -    def zip(*args, **kws):
    -        return _Zipper(args, kws)
    +    - Optional padding.  An earlier version of this PEP proposed an
    +      optional `pad' keyword argument, which would be used when the
    +      argument sequences were not the same length.  This is similar
    +      behavior to the map(None, ...) semantics except that the user
    +      would be able to specify pad object.  This has been rejected by
    +      the BDFL in favor of always truncating to the shortest sequence.
     
    +    - Lazy evaluation.  An earlier version of this PEP proposed that
    +      zip() return a built-in object that performed lazy evaluation
    +      using __getitem__() protocol.  This has been strongly rejected
    +      by the BDFL in favor of returning a real Python list.  If lazy
    +      evaluation is desired in the future, the BDFL suggests an xzip()
    +      function be added.
     
    -Rejected Elaborations
    +    - zip() with no arguments.  the BDFL strongly prefers this raise a
    +      TypeError exception.
     
    -    Some people have suggested that the user be able to specify the
    -    type of the inner and outer containers for the zipped sequence.
    -    This would be specified by additional keyword arguments to zip(),
    -    named `inner' and `outer'.
    +    - zip() with one argument.  the BDFL strongly prefers that this
    +      return a list of 1-tuples.
     
    -    This elaboration is rejected for several reasons.  First, there
    -    really is no outer container, even though there appears to be an
    -    outer list container the example above.  This is simply an
    -    artifact of the repr() of the zipped object.  User code can do its
    -    own looping over the zipped object via __getitem__(), and build
    -    any type of outer container for the fully evaluated, concrete
    -    sequence.  For example, to build a zipped object with lists as an
    -    outer container, use
    -
    -        >>> list(zip(sequence_a, sequence_b, sequence_c))
    -
    -    for tuple outer container, use
    -    
    -        >>> tuple(zip(sequence_a, sequence_b, sequence_c))
    -
    -    This type of construction will usually not be necessary though,
    -    since it is expected that zipped objects will most often appear in
    -    for-loops.
    -
    -    Second, allowing the user to specify the inner container
    -    introduces needless complexity and arbitrary decisions.  You might
    -    imagine that instead of the default tuple inner container, the
    -    user could prefer a list, or a dictionary, or instances of some
    -    sequence-like class.
    -
    -    One problem is the API.  Should the argument to `inner' be a type
    -    or a template object?  For flexibility, the argument should
    -    probably be a type object (i.e. TupleType, ListType, DictType), or
    -    a class.  For classes, the implementation could just pass the zip
    -    element to the constructor.  But what about built-in types that
    -    don't have constructors?  They would have to be special-cased in
    -    the implementation (i.e. what is the constructor for TupleType?
    -    The tuple() built-in).
    -
    -    Another problem that arises is for zips greater than length two.
    -    Say you had three sequences and you wanted the inner type to be a
    -    dictionary.  What would the semantics of the following be?
    -
    -        >>> zip(sequence_a, sequence_b, sequence_c, inner=DictType)
    -
    -    Would the key be (element_a, element_b) and the value be
    -    element_c, or would the key be element_a and the value be
    -    (element_b, element_c)?  Or should an exception be thrown?
    -
    -    This suggests that the specification of the inner container type
    -    is needless complexity.  It isn't likely that the inner container
    -    will need to be specified very often, and it is easy to roll your
    -    own should you need it.  Tuples are chosen for the inner container
    -    type due to their (slight) memory footprint and performance
    -    advantages.
    -
    -
    -Open Issues
    -
    -    - Guido opposes lazy evaluation for zip().  He believes zip()
    -      should return a real list, with an xzip() lazy evaluator added
    -      later if necessary.
    -
    -    - What should "zip(a)" do?  Given
    -
    -      a = (1, 2, 3); zip(a)
    -
    -      three outcomes are possible.
    -
    -      1) Returns [(1,), (2,), (3,)]
    -
    -         Pros: no special casing in the implementation or in user
    -         code, and is more consistent with the description of it's
    -         semantics.  Cons: this isn't what map(None, a) would return,
    -         and may be counter to user expectations.
    -
    -      2) Returns [1, 2, 3]
    -
    -         Pros: consistency with map(None, a), and simpler code for
    -         for-loops, e.g.
    -
    -         for i in zip(a):
    -
    -         instead of
    -
    -         for (i,) in zip(a):
    -
    -         Cons: too much complexity and special casing for what should
    -         be a relatively rare usage pattern.
    -
    -      3) Raises TypeError
    -
    -         Pros: zip(a) doesn't make much sense and could be confusing
    -         to explain.
    -
    -         Cons: needless restriction
    -
    -      Current scoring seems to generally favor outcome 1.
    -
    -    - What should "zip()" do?
    -
    -      Along similar lines, zip() with no arguments (or zip() with just
    -      a pad argument) can have ambiguous semantics.  Should this
    -      return no elements or an infinite number?  For these reaons,
    -      raising a TypeError exception in this case makes the most
    -      sense.
    -
    -    - The name of the built-in `zip' may cause some initial confusion
    -      with the zip compression algorithm.  Other suggestions include
    -      (but are not limited to!): marry, weave, parallel, lace, braid,
    -      interlace, permute, furl, tuples, lists, stitch, collate, knit,
    -      plait, fold, with, mktuples, maketuples, totuples, gentuples,
    -      tupleorama.
    -
    -      All have disadvantages, and there is no clear unanimous choice,
    -      therefore the decision was made to go with `zip' because the
    -      same functionality is available in other languages
    -      (e.g. Haskell) under the name `zip'[2].
    -
    -    - Should zip() be including in the builtins module or should it be
    -      in a separate generators module (possibly with other candidate
    -      functions like irange())?
    -
    -    - Padding short sequences with different values.  A suggestion has
    -      been made to allow a `padtuple' (probably better called `pads'
    -      or `padseq') argument similar to `pad'.  This sequence must have
    -      a length equal to the number of sequences given.  It is a
    -      sequence of the individual pad values to use for each sequence,
    -      should it be shorter than the maximum length.
    -
    -      One problem is what to do if `padtuple' itself isn't of the
    -      right length?  A TypeError seems to be the only choice here.
    -
    -      How does `pad' and `padtuple' interact?  Perhaps if padtuple
    -      were too short, it could use pad as a fallback.  padtuple would
    -      always override pad if both were given.
    +    - Inner and outer container control.  An earlier version of this
    +      PEP contains a rather lengthy discussion on a feature that some
    +      people wanted, namely the ability to control what the inner and
    +      outer container types were (they are tuples and list
    +      respectively in this version of the PEP).  Given the simplified
    +      API and implementation, this elaboration is rejected.  For a
    +      more detailed analysis, see version 1.7 of this PEP.
     
     
     References
    @@ -409,6 +206,7 @@
     
         TBD: URL to python-dev archives
     
    +
     Copyright
     
         This document has been placed in the public domain.
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:23:38 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:23:38 +0100
    Subject: [Python-checkins] peps: small typo
    Message-ID: 
    
    http://hg.python.org/peps/rev/0833b1757fdf
    changeset:   56:0833b1757fdf
    user:        Barry Warsaw 
    date:        Thu Jul 27 19:17:15 2000 +0000
    summary:
      small typo
    
    files:
      pep-0201.txt |  4 ++--
      1 files changed, 2 insertions(+), 2 deletions(-)
    
    
    diff --git a/pep-0201.txt b/pep-0201.txt
    --- a/pep-0201.txt
    +++ b/pep-0201.txt
    @@ -140,8 +140,8 @@
     Reference Implementation
     
         Here is a reference implementation, in Python of the zip()
    -    built-in function and helper class.  These would ultimately be
    -    replaced by equivalent C code.
    +    built-in function.  These would ultimately be replaced by
    +    equivalent C code.
     
         def zip(*args):
             if not args:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:23:47 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:23:47 +0100
    Subject: [Python-checkins] peps: added Post-History entry
    Message-ID: 
    
    http://hg.python.org/peps/rev/57a97706eb02
    changeset:   57:57a97706eb02
    user:        Barry Warsaw 
    date:        Thu Jul 27 19:17:36 2000 +0000
    summary:
      added Post-History entry
    
    files:
      pep-0201.txt |  2 +-
      1 files changed, 1 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0201.txt b/pep-0201.txt
    --- a/pep-0201.txt
    +++ b/pep-0201.txt
    @@ -5,7 +5,7 @@
     Python-Version: 2.0
     Status: Draft
     Created: 13-Jul-2000
    -Post-History:
    +Post-History: 27-Jul-2000
     
     
     Introduction
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:23:48 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:23:48 +0100
    Subject: [Python-checkins] peps: Handle RFC822-style continuation lines. One
    	of these appeared	in PEP-0001.
    Message-ID: 
    
    http://hg.python.org/peps/rev/a8fc48cfada1
    changeset:   58:a8fc48cfada1
    user:        Fred Drake 
    date:        Thu Jul 27 19:18:59 2000 +0000
    summary:
      Handle RFC822-style continuation lines.  One of these appeared in PEP-0001.
    
    files:
      pep2html.py |  18 +++++++++++++-----
      1 files changed, 13 insertions(+), 5 deletions(-)
    
    
    diff --git a/pep2html.py b/pep2html.py
    --- a/pep2html.py
    +++ b/pep2html.py
    @@ -47,14 +47,22 @@
         title = ""
         while 1:
             line = fi.readline()
    -        if not line or ":" not in line:
    +        if not line.strip():
                 break
    -        key, value = line.split(":", 1)
    -        value = value.strip()
    -        header.append((key, value))
    +        if line[0].strip():
    +            if ":" not in line:
    +                break
    +            key, value = line.split(":", 1)
    +            value = value.strip()
    +            header.append((key, value))
    +        else:
    +            # continuation line
    +            key, value = header[-1]
    +            value = value + line
    +            header[-1] = key, value
             if key.lower() == "title":
                 title = value
    -        if key.lower() == "pep":
    +        elif key.lower() == "pep":
                 pep = value
         if pep:
             title = "PEP " + pep + " -- " + title
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:23:50 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:23:50 +0100
    Subject: [Python-checkins] peps: BDFL pronouncements.
    Message-ID: 
    
    http://hg.python.org/peps/rev/8cd249c174a0
    changeset:   59:8cd249c174a0
    user:        Guido van Rossum 
    date:        Thu Jul 27 20:13:39 2000 +0000
    summary:
      BDFL pronouncements.
    Got rid of ^L.
    
    files:
      pep-0202.txt |  33 +++++++++++++++++++++++----------
      1 files changed, 23 insertions(+), 10 deletions(-)
    
    
    diff --git a/pep-0202.txt b/pep-0202.txt
    --- a/pep-0202.txt
    +++ b/pep-0202.txt
    @@ -5,14 +5,14 @@
     Python-Version: 2.0
     Status: Incomplete
     
    -
    +
     Introduction
     
         This PEP describes a proposed syntactical extension to Python, list
         comprehensions. 
     
     
    -
    +
     The Proposed Solution
     
         It is proposed to allow conditional construction of list literals using
    @@ -20,14 +20,14 @@
         statements nest now.
         
     
    -
    +
     Rationale
     
         List comprehensions provide a more concise way to create lists in
         situations where map() and filter() and/or nested loops would currently
         be used.
     
    -
    +
     Examples
     
         >>> print [i for i in range(10)]
    @@ -38,17 +38,17 @@
     
         >>> nums = [1,2,3,4]
         >>> fruit = ["Apples", "Peaches", "Pears", "Bananas"]
    -    >>> print [i,f for i in nums for f in fruit]
    +    >>> print [(i,f) for i in nums for f in fruit]
         [(1, 'Apples'), (1, 'Peaches'), (1, 'Pears'), (1, 'Bananas'),
          (2, 'Apples'), (2, 'Peaches'), (2, 'Pears'), (2, 'Bananas'),
          (3, 'Apples'), (3, 'Peaches'), (3, 'Pears'), (3, 'Bananas'),
          (4, 'Apples'), (4, 'Peaches'), (4, 'Pears'), (4, 'Bananas')]
    -    >>> print [i,f for i in nums for f in fruit if f[0] == "P"]
    +    >>> print [(i,f) for i in nums for f in fruit if f[0] == "P"]
         [(1, 'Peaches'), (1, 'Pears'),
          (2, 'Peaches'), (2, 'Pears'),
          (3, 'Peaches'), (3, 'Pears'),
          (4, 'Peaches'), (4, 'Pears')]
    -    >>> print [i,f for i in nums for f in fruit if f[0] == "P" if i%2 == 1]
    +    >>> print [(i,f) for i in nums for f in fruit if f[0] == "P" if i%2 == 1]
         [(1, 'Peaches'), (1, 'Pears'), (3, 'Peaches'), (3, 'Pears')]
         >>> def zip(*args):
         ...    return apply(map, (None,)+args)
    @@ -56,7 +56,7 @@
         >>> print [i for i in zip(nums,fruit) if i[0]%2==0]
         [(2, 'Peaches'), (4, 'Bananas')]
     
    -
    +
     Reference Implementation
     
         Please refer to 
    @@ -66,7 +66,20 @@
         for a patch that adds list comprehensions to Python.
     
     
    -
    +BDFL Pronouncements
    +
    +    Note: the BDFL refers to Guido van Rossum, Python's Benevolent
    +    Dictator For Life.
    +
    +    - The syntax proposed above is the Right One.
    +
    +    - The form [x, y for ...] should be disallowed; one should be
    +    required to write [(x, y) for ...].
    +
    +    - The form [... for x... for y...] nests, with the last index
    +    varying fastest, just like nested for loops.
    +
    +
     Open Issues
     
         Syntax
    @@ -113,7 +126,7 @@
             is.  It has not had a lot of exercise, though the patch does include
             a few test cases.
     
    -
    +
     Local Variables:
     mode: indented-text
     indent-tabs-mode: nil
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:23:50 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:23:50 +0100
    Subject: [Python-checkins] peps: Parallel => Lockstep everywhere.
    Message-ID: 
    
    http://hg.python.org/peps/rev/3c9e17945a3c
    changeset:   60:3c9e17945a3c
    user:        Barry Warsaw 
    date:        Fri Jul 28 05:48:25 2000 +0000
    summary:
      Parallel => Lockstep everywhere.
    
    Replaced the reference implementation with one that's closer to what
    the C code will actually look like; i.e. it obeys the iteration
    protocol.
    
    Other grammar and spelling fixes.
    
    files:
      pep-0201.txt |  52 ++++++++++++++++++++-------------------
      1 files changed, 27 insertions(+), 25 deletions(-)
    
    
    diff --git a/pep-0201.txt b/pep-0201.txt
    --- a/pep-0201.txt
    +++ b/pep-0201.txt
    @@ -1,5 +1,5 @@
     PEP: 201
    -Title: Parallel Iteration
    +Title: Lockstep Iteration
     Version: $Revision$
     Author: bwarsaw at beopen.com (Barry A. Warsaw)
     Python-Version: 2.0
    @@ -10,14 +10,14 @@
     
     Introduction
     
    -    This PEP describes the `parallel iteration' proposal for Python
    -    2.0, previously known as `parallel for loops'.  This PEP tracks
    -    the status and ownership of this feature, slated for introduction
    -    in Python 2.0.  It contains a description of the feature and
    -    outlines changes necessary to support the feature.  This PEP
    -    summarizes discussions held in mailing list forums, and provides
    -    URLs for further information, where appropriate.  The CVS revision
    -    history of this file contains the definitive historical record.
    +    This PEP describes the `lockstep iteration' proposal for Python
    +    2.0.  This PEP tracks the status and ownership of this feature,
    +    slated for introduction in Python 2.0.  It contains a description
    +    of the feature and outlines changes necessary to support the
    +    feature.  This PEP summarizes discussions held in mailing list
    +    forums, and provides URLs for further information, where
    +    appropriate.  The CVS revision history of this file contains the
    +    definitive historical record.
     
     
     Motivation
    @@ -33,9 +33,9 @@
         iterations by introducing a new builtin function called `zip'.
     
     
    -Parallel For-Loops
    +Lockstep For-Loops
     
    -    Parallel for-loops are non-nested iterations over two or more
    +    Lockstep for-loops are non-nested iterations over two or more
         sequences, such that at each pass through the loop, one element
         from each sequence is taken to compose the target.  This behavior
         can already be accomplished in Python through the use of the map()
    @@ -70,10 +70,10 @@
           [(1, 4), (2, 5), (3, 6), (None, 7)]
     
         For these reasons, several proposals were floated in the Python
    -    2.0 beta time frame for providing a better spelling of parallel
    +    2.0 beta time frame for providing a better spelling of lockstep
         for-loops.  The initial proposals centered around syntactic
         changes to the for statement, but conflicts and problems with the
    -    syntax were unresolvable, especially when parallel for-loops were
    +    syntax were unresolvable, especially when lockstep for-loops were
         combined with another proposed feature called `list
         comprehensions' (see pep-0202.txt).
     
    @@ -140,21 +140,23 @@
     Reference Implementation
     
         Here is a reference implementation, in Python of the zip()
    -    built-in function.  These would ultimately be replaced by
    -    equivalent C code.
    +    built-in function.  This will be replaced with a C implementation
    +    after final approval.
     
         def zip(*args):
             if not args:
                 raise TypeError('zip() expects one or more sequence arguments')
             ret = []
    -        # find the length of the shortest sequence
    -        shortest = min(*map(len, args))
    -        for i in range(shortest):
    -            item = []
    -            for s in args:
    -                item.append(s[i])
    -            ret.append(tuple(item))
    -        return ret
    +        i = 0
    +        try:
    +            while 1:
    +                item = []
    +                for s in args:
    +                    item.append(s[i])
    +                ret.append(tuple(item))
    +                i = i + 1
    +        except IndexError:
    +            return ret
     
     
     BDFL Pronouncements
    @@ -165,8 +167,8 @@
         - The function's name.  An earlier version of this PEP included an
           open issue listing 20+ proposed alternative names to zip().  In
           the face of no overwhelmingly better choice, the BDFL strongly
    -      prefers zip() due to it's Haskell[2] heritage.  See version 1.7
    -      of this PEP for the list of alteratives.
    +      prefers zip() due to its Haskell[2] heritage.  See version 1.7
    +      of this PEP for the list of alternatives.
     
         - zip() shall be a built-in function.
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:23:52 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:23:52 +0100
    Subject: [Python-checkins] peps: PEP 201 renamed "Lockstep Iteration"
    Message-ID: 
    
    http://hg.python.org/peps/rev/54ac98eb8fb9
    changeset:   61:54ac98eb8fb9
    user:        Barry Warsaw 
    date:        Fri Jul 28 05:48:56 2000 +0000
    summary:
      PEP 201 renamed "Lockstep Iteration"
    
    files:
      pep-0000.txt |  4 ++--
      1 files changed, 2 insertions(+), 2 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -1,4 +1,4 @@
    -PEP: 0
    +yPEP: 0
     Title: Index of Python Enhancement Proposals (PEPs)
     Version: $Revision$
     Owner: bwarsaw at beopen.com (Barry A. Warsaw)
    @@ -21,7 +21,7 @@
          160  pep-0160.txt  Python 1.6 Release Schedule          fdrake
     
          200  pep-0200.txt  Python 2.0 Release Schedule          jhylton  
    -     201  pep-0201.txt  Parallel Iteration                   bwarsaw
    +     201  pep-0201.txt  Lockstep Iteration                   bwarsaw
          202  pep-0202.txt  List Comprehensions                  tim_one
          203  pep-0203.txt  Augmented Assignments                twouters
          204  pep-0204.txt  Range Literals                       twouters
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:23:53 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:23:53 +0100
    Subject: [Python-checkins] peps: minor typo
    Message-ID: 
    
    http://hg.python.org/peps/rev/5c9959727753
    changeset:   62:5c9959727753
    user:        Barry Warsaw 
    date:        Fri Jul 28 05:49:32 2000 +0000
    summary:
      minor typo
    
    files:
      pep-0000.txt |  2 +-
      1 files changed, 1 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -1,4 +1,4 @@
    -yPEP: 0
    +PEP: 0
     Title: Index of Python Enhancement Proposals (PEPs)
     Version: $Revision$
     Owner: bwarsaw at beopen.com (Barry A. Warsaw)
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:23:55 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:23:55 +0100
    Subject: [Python-checkins] peps: Moved "Local Variables:" string farther
    	away from the end of	the file, 
    Message-ID: 
    
    http://hg.python.org/peps/rev/eb2bf2b90119
    changeset:   63:eb2bf2b90119
    user:        Barry Warsaw 
    date:        Fri Jul 28 06:40:10 2000 +0000
    summary:
      Moved "Local Variables:" string farther away from the end of the file,
    so Emacs doesn't think this actually indicates the beginning of a
    local variable section!
    
    files:
      pep2html.py |  3 ++-
      1 files changed, 2 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep2html.py b/pep2html.py
    --- a/pep2html.py
    +++ b/pep2html.py
    @@ -19,6 +19,7 @@
     
     HOST = "shell.sourceforge.net" # host for update
     HDIR = "/home/groups/python/htdocs/peps" # target host directory
    +LOCALVARS = "Local Variables:"
     
     DTD = ('')
    @@ -91,7 +92,7 @@
                 break
             if line[0] != "\f":
                 if line[0].strip():
    -                if line.strip() == "Local Variables:":
    +                if line.strip() == LOCALVARS:
                         break
                     fo.write("
    \n

    %s

    \n
    " % line.strip())
                     title = 0
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:23:55 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:23:55 +0100
    Subject: [Python-checkins] peps: -- Removed those pesky ^L's
    Message-ID: 
    
    http://hg.python.org/peps/rev/d5aaa3b025da
    changeset:   64:d5aaa3b025da
    user:        Moshe Zadka 
    date:        Sat Jul 29 07:05:41 2000 +0000
    summary:
      -- Removed those pesky ^L's
    -- Added line about piddle
    
    files:
      pep-0206.txt |  13 +++++--------
      1 files changed, 5 insertions(+), 8 deletions(-)
    
    
    diff --git a/pep-0206.txt b/pep-0206.txt
    --- a/pep-0206.txt
    +++ b/pep-0206.txt
    @@ -6,7 +6,6 @@
     Status: Draft
     
     
    -
     Introduction
     
         This PEP describes the `batteries included' proposal for Python
    @@ -16,7 +15,6 @@
         a description of the proposal and outlines how to support it.
     
     
    -
     Batteries Included Philosophy
     
         The Python source distribution always maintained the philosophy of
    @@ -35,7 +33,6 @@
         http://www.uk.research.att.com/~fms/ipc7/tr-1998-9.html
     
     
    -
     The Proposed Solution
     
         The proposed solution is to download a few important third-party
    @@ -64,13 +61,16 @@
         libjpeg -- ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz
         ncurses -- ftp://dickey.his.com/ncurses/ncurses.tar.gz
     
    -    TBD, the following three:
    +    TBD, the following:
     
         NumPy -- http://download.sourceforge.net/numpy/Numerical-15.3.tgz
         Pmw --  ftp://ftp.dscpl.com.au/pub/pmw/Pmw.0.8.4.tar.gz
         BLT -- ftp://ftp.tcltk.com/aa004735/pub/blt/BLT2.4u.tar.gz
     
    -
    +    Still waiting for information on last-known-good version:
    +
    +    piddle -- http://sourceforge.net/project/filelist.php?group_id=1074
    +
     Connection to Distutils
     
         Since Python 2.0 comes with a new mechanism of distributing Python 
    @@ -85,7 +85,6 @@
         
     
     
    -
     Software covered by the GNU Public License
     
         While many Python modules rely on software distributed under the
    @@ -99,7 +98,6 @@
         the benefits.
     
     
    -
     Open Issues
     
         Where does all this source live? 
    @@ -112,7 +110,6 @@
         that uses it.
     
     
    -
     Local Variables:
     mode: indented-text
     indent-tabs-mode: nil
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:23:57 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:23:57 +0100
    Subject: [Python-checkins] peps: Changed status of piddle,
    	based on Janko's input.
    Message-ID: 
    
    http://hg.python.org/peps/rev/f2f32686259a
    changeset:   65:f2f32686259a
    user:        Moshe Zadka 
    date:        Sat Jul 29 10:11:19 2000 +0000
    summary:
      Changed status of piddle, based on Janko's input.
    
    files:
      pep-0206.txt |  4 +---
      1 files changed, 1 insertions(+), 3 deletions(-)
    
    
    diff --git a/pep-0206.txt b/pep-0206.txt
    --- a/pep-0206.txt
    +++ b/pep-0206.txt
    @@ -66,10 +66,8 @@
         NumPy -- http://download.sourceforge.net/numpy/Numerical-15.3.tgz
         Pmw --  ftp://ftp.dscpl.com.au/pub/pmw/Pmw.0.8.4.tar.gz
         BLT -- ftp://ftp.tcltk.com/aa004735/pub/blt/BLT2.4u.tar.gz
    +    piddle -- http://download.sourceforge.net/piddle/piddle-1.0b7.tgz
     
    -    Still waiting for information on last-known-good version:
    -
    -    piddle -- http://sourceforge.net/project/filelist.php?group_id=1074
     
     Connection to Distutils
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:23:58 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:23:58 +0100
    Subject: [Python-checkins] peps: PEP 216, Docstring Format,
    	assigned to Moshe Zadka
    Message-ID: 
    
    http://hg.python.org/peps/rev/2677fa4893bd
    changeset:   66:2677fa4893bd
    user:        Barry Warsaw 
    date:        Mon Jul 31 15:05:19 2000 +0000
    summary:
      PEP 216, Docstring Format, assigned to Moshe Zadka
    
    files:
      pep-0216.txt |  14 ++++++++++++++
      1 files changed, 14 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0216.txt b/pep-0216.txt
    new file mode 100644
    --- /dev/null
    +++ b/pep-0216.txt
    @@ -0,0 +1,14 @@
    +PEP: 216
    +Title: Docstring Format
    +Version: $Revision$
    +Owner: moshez at math.huji.ac.il (Moshe Zadka)
    +Python-Version: 2.x
    +Status: Draft
    +
    +
    +
    +
    +Local Variables:
    +mode: indented-text
    +indent-tabs-mode: nil
    +End:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:01 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:01 +0100
    Subject: [Python-checkins] peps: Added PEP 216, Docstring Format,
    	assigned to Moshe Zadka
    Message-ID: 
    
    http://hg.python.org/peps/rev/d6f63b81e0f8
    changeset:   67:d6f63b81e0f8
    user:        Barry Warsaw 
    date:        Mon Jul 31 15:06:47 2000 +0000
    summary:
      Added PEP 216, Docstring Format, assigned to Moshe Zadka
    
    files:
      pep-0000.txt |  3 ++-
      1 files changed, 2 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -4,13 +4,13 @@
     Owner: bwarsaw at beopen.com (Barry A. Warsaw)
     Status: Active
     
    -
     Introduction
     
         The PEP contains the index of all Python Enhancement Proposals,
         known as PEPs.  PEP numbers are assigned by the PEP Editor, and
         once assigned are never changed.
     
    +
     Index
     
          num  filename      title                                owner
    @@ -36,6 +36,7 @@
          213  pep-0213.txt  Attribute Access Handlers            prescod
          214  pep-0214.txt  Extended Print Statement             bwarsaw
          215  pep-0215.txt  String Interpolation                 ping
    +     216  pep-0216.txt  Docstring Format                     moshez
     
     
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:02 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:02 +0100
    Subject: [Python-checkins] peps: Integrated many suggestions from c.l.py and
    	others. Nothing
    Message-ID: 
    
    http://hg.python.org/peps/rev/7775a6117a48
    changeset:   68:7775a6117a48
    user:        Barry Warsaw 
    date:        Mon Jul 31 15:52:45 2000 +0000
    summary:
      Integrated many suggestions from c.l.py and others.  Nothing
    substantial w.r.t. the proposed solution, just clarifications,
    additional references, and an explanation of why most syntax changes
    don't work.
    
    files:
      pep-0201.txt |  52 ++++++++++++++++++++++++---------------
      1 files changed, 32 insertions(+), 20 deletions(-)
    
    
    diff --git a/pep-0201.txt b/pep-0201.txt
    --- a/pep-0201.txt
    +++ b/pep-0201.txt
    @@ -10,14 +10,14 @@
     
     Introduction
     
    -    This PEP describes the `lockstep iteration' proposal for Python
    -    2.0.  This PEP tracks the status and ownership of this feature,
    -    slated for introduction in Python 2.0.  It contains a description
    -    of the feature and outlines changes necessary to support the
    -    feature.  This PEP summarizes discussions held in mailing list
    -    forums, and provides URLs for further information, where
    -    appropriate.  The CVS revision history of this file contains the
    -    definitive historical record.
    +    This PEP describes the `lockstep iteration' proposal.  This PEP
    +    tracks the status and ownership of this feature, slated for
    +    introduction in Python 2.0.  It contains a description of the
    +    feature and outlines changes necessary to support the feature.
    +    This PEP summarizes discussions held in mailing list forums, and
    +    provides URLs for further information, where appropriate.  The CVS
    +    revision history of this file contains the definitive historical
    +    record.
     
     
     Motivation
    @@ -25,13 +25,17 @@
         Standard for-loops in Python iterate over every element in a
         sequence until the sequence is exhausted[1].  However, for-loops
         iterate over only a single sequence, and it is often desirable to
    -    loop over more than one sequence, in a lock-step, "Chinese Menu"
    -    type of way.
    +    loop over more than one sequence in a lock-step fashion.  In other
    +    words, in a way such that nthe i-th iteration through the loop
    +    returns an object containing the i-th element from each sequence.
     
    -    The common idioms used to accomplish this are unintuitive and
    -    inflexible.  This PEP proposes a standard way of performing such
    -    iterations by introducing a new builtin function called `zip'.
    +    The common idioms used to accomplish this are unintuitive.  This
    +    PEP proposes a standard way of performing such iterations by
    +    introducing a new builtin function called `zip'.
     
    +    While the primary motivation for zip() comes from lock-step
    +    iteration, by implementing zip() as a built-in function, it has
    +    additional utility in contexts other than for-loops.
     
     Lockstep For-Loops
     
    @@ -70,13 +74,20 @@
           [(1, 4), (2, 5), (3, 6), (None, 7)]
     
         For these reasons, several proposals were floated in the Python
    -    2.0 beta time frame for providing a better spelling of lockstep
    -    for-loops.  The initial proposals centered around syntactic
    -    changes to the for statement, but conflicts and problems with the
    -    syntax were unresolvable, especially when lockstep for-loops were
    -    combined with another proposed feature called `list
    -    comprehensions' (see pep-0202.txt).
    +    2.0 beta time frame for syntactic support of lockstep for-loops.
    +    Here are two suggestions:
     
    +    for x in seq1, y in seq2:
    +        # stuff
    +
    +    for x, y in seq1, seq2:
    +        # stuff
    +
    +    Neither of these forms would work, since they both already mean
    +    something in Python and changing the meanings would break existing
    +    code.  All other suggestions for new syntax suffered the same
    +    problem, or were in conflict with other another proposed feature
    +    called `list comprehensions' (see pep-0202.txt).
     
     The Proposed Solution
     
    @@ -206,7 +217,8 @@
         [1] http://www.python.org/doc/current/ref/for.html
         [2] http://www.haskell.org/onlinereport/standard-prelude.html#$vzip
     
    -    TBD: URL to python-dev archives
    +    Greg Wilson's questionaire on proposed syntax to some CS grad students
    +    http://www.python.org/pipermail/python-dev/2000-July/013139.html
     
     
     Copyright
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:04 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:04 +0100
    Subject: [Python-checkins] peps: PEP 211 renamed to "Adding New Linear
    	Algebra Operators" at	request of
    Message-ID: 
    
    http://hg.python.org/peps/rev/27f064735897
    changeset:   69:27f064735897
    user:        Barry Warsaw 
    date:        Mon Jul 31 16:38:12 2000 +0000
    summary:
      PEP 211 renamed to "Adding New Linear Algebra Operators" at request of
    gvwilson.  More accurately describes the narrower focus.
    
    files:
      pep-0000.txt |  2 +-
      1 files changed, 1 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -31,7 +31,7 @@
          208  pep-0208.txt  Reworking the Coercion Model         davida
          209  pep-0209.txt  Adding Multidimensional Arrays       davida
          210  pep-0210.txt  Decoupling the Interpreter Loop      davida
    -     211  pep-0211.txt  Adding New Operators to Python       gvwilson
    +     211  pep-0211.txt  Adding New Linear Algebra Operators  gvwilson
          212  pep-0212.txt  Additional Builtin Generators        bwarsaw
          213  pep-0213.txt  Attribute Access Handlers            prescod
          214  pep-0214.txt  Extended Print Statement             bwarsaw
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:04 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:04 +0100
    Subject: [Python-checkins] peps: Added a BDFL justification to why there's
    	no optional pad	argument.
    Message-ID: 
    
    http://hg.python.org/peps/rev/6cdd6cddfabf
    changeset:   70:6cdd6cddfabf
    user:        Barry Warsaw 
    date:        Mon Jul 31 16:52:52 2000 +0000
    summary:
      Added a BDFL justification to why there's no optional pad argument.
    
    files:
      pep-0201.txt |  5 ++++-
      1 files changed, 4 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0201.txt b/pep-0201.txt
    --- a/pep-0201.txt
    +++ b/pep-0201.txt
    @@ -188,7 +188,10 @@
           argument sequences were not the same length.  This is similar
           behavior to the map(None, ...) semantics except that the user
           would be able to specify pad object.  This has been rejected by
    -      the BDFL in favor of always truncating to the shortest sequence.
    +      the BDFL in favor of always truncating to the shortest sequence,
    +      because of the KISS principle.  If there's a true need, it is
    +      easier to add later.  If it is not needed, it would still be
    +      impossible to delete it in the future.
     
         - Lazy evaluation.  An earlier version of this PEP proposed that
           zip() return a built-in object that performed lazy evaluation
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:06 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:06 +0100
    Subject: [Python-checkins] peps: PEP 217, Display Hook for Interactive Use,
    	assigned moshez
    Message-ID: 
    
    http://hg.python.org/peps/rev/1e1ef16e9541
    changeset:   71:1e1ef16e9541
    user:        Barry Warsaw 
    date:        Mon Jul 31 20:15:14 2000 +0000
    summary:
      PEP 217, Display Hook for Interactive Use, assigned moshez
    
    files:
      pep-0217.txt |  27 +++++++++++++++++++++++++++
      1 files changed, 27 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0217.txt b/pep-0217.txt
    new file mode 100644
    --- /dev/null
    +++ b/pep-0217.txt
    @@ -0,0 +1,27 @@
    +PEP: 217
    +Title: Display Hook for Interactive Use
    +Version: $Revision$
    +Author: moshez at math.huji.ac.il (Moshe Zadka)
    +Python-Version: 2.1
    +Status: Draft
    +Created: 31-Jul-2000
    +Post-History: 
    +
    +
    +Abstract
    +
    +    Python's interactive mode is one of the implementation's great
    +    strengths -- being able to write expressions on the command line
    +    and get back a meaningful output.  However, the output function
    +    cannot be all things to all people, and the current output
    +    function too often falls short of this goal.  This PEP describes a
    +    way to provides alternatives to the built-in display function in
    +    Python, so users will have control over the output from the
    +    interactive interpreter.
    +
    +
    +
    +Local Variables:
    +mode: indented-text
    +indent-tabs-mode: nil
    +End:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:07 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:07 +0100
    Subject: [Python-checkins] peps: Added PEP 217,
    	Display Hook for Interactive Use, assigned moshez
    Message-ID: 
    
    http://hg.python.org/peps/rev/c669bdcedc08
    changeset:   72:c669bdcedc08
    user:        Barry Warsaw 
    date:        Mon Jul 31 20:15:48 2000 +0000
    summary:
      Added PEP 217, Display Hook for Interactive Use, assigned moshez
    
    files:
      pep-0000.txt |  1 +
      1 files changed, 1 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -37,6 +37,7 @@
          214  pep-0214.txt  Extended Print Statement             bwarsaw
          215  pep-0215.txt  String Interpolation                 ping
          216  pep-0216.txt  Docstring Format                     moshez
    +     217  pep-0217.txt  Display Hook for Interactive Use     moshez
     
     
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:10 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:10 +0100
    Subject: [Python-checkins] peps: PEP 218, Adding a Built-In Set Object Type,
    	assigned to gvwilson.
    Message-ID: 
    
    http://hg.python.org/peps/rev/f4bd4d098abc
    changeset:   73:f4bd4d098abc
    user:        Barry Warsaw 
    date:        Mon Jul 31 20:20:31 2000 +0000
    summary:
      PEP 218, Adding a Built-In Set Object Type, assigned to gvwilson.
    
    files:
      pep-0218.txt |  25 +++++++++++++++++++++++++
      1 files changed, 25 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0218.txt b/pep-0218.txt
    new file mode 100644
    --- /dev/null
    +++ b/pep-0218.txt
    @@ -0,0 +1,25 @@
    +PEP: 218
    +Title: Adding a Built-In Set Object Type
    +Version: $Revision$
    +Author: gvwilson at nevex.com (Greg Wilson)
    +Python-Version: 2.1
    +Status: Draft
    +Created: 31-Jul-2000
    +Post-History: 
    +
    +
    +Abstract
    +
    +    Sets are a fundamental mathematical structure, and are commonly
    +    used to both specify and implement programs.  Sets are often
    +    implemented as dictionaries with "don't care" values, but this
    +    leaves the meaning of intersection, union, difference, and other
    +    basic operations are ambiguous.  This PEP therefore proposes
    +    syntax and semantics for a concrete, built-in set type.
    +
    +
    +
    +Local Variables:
    +mode: indented-text
    +indent-tabs-mode: nil
    +End:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:20 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:20 +0100
    Subject: [Python-checkins] peps: Added PEP 218,
    	Adding a Built-In Set Object Type, assigned to gvwilson.
    Message-ID: 
    
    http://hg.python.org/peps/rev/2954d04b750a
    changeset:   74:2954d04b750a
    user:        Barry Warsaw 
    date:        Mon Jul 31 20:20:52 2000 +0000
    summary:
      Added PEP 218, Adding a Built-In Set Object Type, assigned to gvwilson.
    
    files:
      pep-0000.txt |  1 +
      1 files changed, 1 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -38,6 +38,7 @@
          215  pep-0215.txt  String Interpolation                 ping
          216  pep-0216.txt  Docstring Format                     moshez
          217  pep-0217.txt  Display Hook for Interactive Use     moshez
    +     218  pep-0218.txt  Adding a Built-In Set Object Type    gvwilson
     
     
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:22 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:22 +0100
    Subject: [Python-checkins] peps: This proposal has been accepted by the BDFL.
    Message-ID: 
    
    http://hg.python.org/peps/rev/0efb9f5c606d
    changeset:   75:0efb9f5c606d
    user:        Barry Warsaw 
    date:        Thu Aug 03 15:41:47 2000 +0000
    summary:
      This proposal has been accepted by the BDFL.
    
    files:
      pep-0201.txt |  2 +-
      1 files changed, 1 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0201.txt b/pep-0201.txt
    --- a/pep-0201.txt
    +++ b/pep-0201.txt
    @@ -3,7 +3,7 @@
     Version: $Revision$
     Author: bwarsaw at beopen.com (Barry A. Warsaw)
     Python-Version: 2.0
    -Status: Draft
    +Status: Accepted
     Created: 13-Jul-2000
     Post-History: 27-Jul-2000
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:23 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:23 +0100
    Subject: [Python-checkins] peps: PEP 201 has been accepted by the BDFL.
    Message-ID: 
    
    http://hg.python.org/peps/rev/27776fa76f15
    changeset:   76:27776fa76f15
    user:        Barry Warsaw 
    date:        Thu Aug 03 15:42:42 2000 +0000
    summary:
      PEP 201 has been accepted by the BDFL.
    
    files:
      pep-0000.txt |  5 ++++-
      1 files changed, 4 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -21,7 +21,7 @@
          160  pep-0160.txt  Python 1.6 Release Schedule          fdrake
     
          200  pep-0200.txt  Python 2.0 Release Schedule          jhylton  
    -     201  pep-0201.txt  Lockstep Iteration                   bwarsaw
    +[*]  201  pep-0201.txt  Lockstep Iteration                   bwarsaw
          202  pep-0202.txt  List Comprehensions                  tim_one
          203  pep-0203.txt  Augmented Assignments                twouters
          204  pep-0204.txt  Range Literals                       twouters
    @@ -41,6 +41,9 @@
          218  pep-0218.txt  Adding a Built-In Set Object Type    gvwilson
     
     
    +[*] denotes accepted proposals.
    +
    +
     
     Local Variables:
     mode: indented-text
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:23 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:23 +0100
    Subject: [Python-checkins] peps: Complete rewrite of the PEP,
    	discarding the previous long explanation about
    Message-ID: 
    
    http://hg.python.org/peps/rev/dc8ffdc2dd8b
    changeset:   77:dc8ffdc2dd8b
    user:        Thomas Wouters 
    date:        Mon Aug 07 12:40:00 2000 +0000
    summary:
      Complete rewrite of the PEP, discarding the previous long explanation about
    augmented assignment. Kept as short as possible, but might still be
    considered wordy :-)
    
    files:
      pep-0203.txt |  279 +++++++++++++++++++++++---------------
      1 files changed, 171 insertions(+), 108 deletions(-)
    
    
    diff --git a/pep-0203.txt b/pep-0203.txt
    --- a/pep-0203.txt
    +++ b/pep-0203.txt
    @@ -3,10 +3,9 @@
     Version: $Revision$
     Owner: thomas at xs4all.net (Thomas Wouters)
     Python-Version: 2.0
    -Status: Incomplete
    +Status: Draft
     
     
    -
     Introduction
     
         This PEP describes the `augmented assignment' proposal for Python
    @@ -19,133 +18,197 @@
         definitive historical record.
     
     
    -
    -The Origin of Augmented Assignment
    +Proposed semantics
     
    -    Augmented assignment refers to binary operators that combine two
    -    existing operators: the assignment operator, and one of the binary
    -    operators. Its origins lie in other programming languages, most
    -    notably `C', where it was defined for performance reasons. They
    -    are meant to replace the repetetive syntax of, for instance,
    -    adding the number '1' to a variable:
    +    The proposed patch that adds augmented assignment to Python
    +    introduces the following new operators:
         
    -      x = x + 1;
    -      
    -    with an expression that is shorter, less error-prone and easier to
    -    optimize (by the compiler):
    +       += -= *= /= %= **= <<= >>= &= ^= |=
         
    -      x += 1;
    -      
    -    The same goes for all other binary operands, resulting in the
    -    following augmented assignment operator list, based on Python's
    -    current binary operator list:
    +    They implement the same operator as their normal binary form, with
    +    the exception that the operation is done `in-place' whenever
    +    possible.
    +    
    +    They truly behave as augmented assignment, in that they perform
    +    all of the normal load and store operations, in addition to the
    +    binary operation they are intended to do. So, given the expression:
    +    
    +       x += y
    +    
    +    The object `x' is loaded, then added with 1, and the resulting
    +    object is stored back in the original place. The precise action
    +    performed on the two arguments depends on the type of `x', and
    +    possibly of `y'.
     
    -      +=, -=, /=, *=, %=, **=, >>=, <<=, &=, |=, ^=
    +    The idea behind augmented assignment in Python is that it isn't
    +    just an easier way to write the common practice of storing the
    +    result of a binary operation in its left-hand operand, but also a
    +    way for the left-hand operand in question to know that it should
    +    operate 'on itself', rather than creating a modified copy of
    +    itself.
    +
    +    To make this possible, a number of new `hooks' are added to Python
    +    classes and C extention types, which are called when the object in
    +    question is used as the left hand side of an augmented assignment
    +    operation. If the class or type does not implement the `in-place'
    +    hooks, the normal hooks for the particular binary operation are
    +    used.
         
    -    See the documentation of each operator on what they do.
    +    So, given an instance object `x', the expression
    +    
    +        x += y
    +    
    +    tries to call x.__add_ab__(y), which is the 'in-place' variant of
    +    __add__. If __add_ab__ is not present, x.__add__(y) is
    +    attempted, and finally y.__radd__(x) if __add__ is missing too. 
    +    There is no `right-hand-side' variant of __add_ab__, because that
    +    would require for `y' to know how to in-place modify `x', which is
    +    an unsafe assumption. The __add_ab__ hook should behave exactly
    +    like __add__, returning the result of the operation (which could
    +    be `self') which is to be stored in the variable `x'.
    + 
    +    For C extention types, the `hooks' are members of the
    +    PyNumberMethods and PySequenceMethods structures, and are called
    +    in exactly the same manner as the existing non-inplace operations,
    +    including argument coercion. C methods should also take care to
    +    return a new reference to the result object, whether it's the same
    +    object or a new one. So if the original object is returned, it
    +    should be INCREF()'d appropriately.
     
    -     
    -
    -Augmented Assignment in Python
     
    -    The traditional reasons for augmented assignment, readability and
    -    optimization, are not as obvious in Python, for several reasons.
    +New methods
    +
    +    The proposed implementation adds the following 11 possible `hooks'
    +    which Python classes can implement to overload the augmented
    +    assignment operations:
         
    -     - Numbers are immutable, they cannot be changed. In other
    -       programming languages, a variable holds a value, and altering
    -       the variable changes the value it holds. In Python, variables
    -       hold `references' to values, and altering an immutable value
    -       means changing the variable, not what it points to.
    +        __add_ab__
    +        __sub_ab__
    +        __mul_ab__
    +        __div_ab__
    +        __mod_ab__
    +        __pow_ab__
    +        __lshift_ab__
    +        __rshift_ab__
    +        __and_ab__
    +        __xor_ab__
    +        __or_ab__
    +    
    +    The `__add_ab__' name is one proposed by Guido[1], and stands for `and
    +    becomes'. Other proposed names include '__iadd__', `__add_in__'
    +    `__inplace_add__'
     
    -     - Assignment is a different operation in Python. In most
    -       languages, variables are containers, and assignment copies a
    -       value into that container. In Python, assignment binds a value
    -       to a name, it does not copy the value into a new storage space.
    -       
    -     - The augmented assignment operators map fairly directly into the
    -       underlying hardware. Python does not deal directly with the
    -       hardware it runs on, so this `natural inclusion' does not make
    -       sense.
    +    For C extention types, the following struct members are added:
    +    
    +    To PyNumberMethods:
    +        binaryfunc nb_inplace_add;
    +        binaryfunc nb_inplace_subtract;
    +        binaryfunc nb_inplace_multiply;
    +        binaryfunc nb_inplace_divide;
    +        binaryfunc nb_inplace_remainder;
    +        binaryfunc nb_inplace_power;
    +        binaryfunc nb_inplace_lshift;
    +        binaryfunc nb_inplace_rshift;
    +        binaryfunc nb_inplace_and;
    +        binaryfunc nb_inplace_xor;
    +        binaryfunc nb_inplace_or;
     
    -     - The augmented assigment syntax is subtly different in more
    -       complex expressions. What to do, for instance, in a case such
    -       as this:
    -       
    -       seq[i:calc(seq, i)] *= r
    -       
    -       It is unclear whether 'seq' gets indexed once or twice, and
    -       whether 'calc' gets called once or twice.
    +    To PySequenceMethods:
    +        binaryfunc sq_inplace_concat;
    +        intargfunc sq_inplace_repeat;
     
    +    In order to keep binary compatibility, the tp_flags TypeObject
    +    member is used to determine whether the TypeObject in question has
    +    allocated room for these slots. Until a clean break in binary
    +    compatibility is made (which may or may not happen before 2.0)
    +    code that wants to use one of the new struct members must first
    +    check that they are available with the 'PyType_HasFeature()' macro:
    +    
    +    if (PyType_HasFeature(x->ob_type, Py_TPFLAGS_HAVE_INPLACE_OPS) &&
    +        x->ob_type->tp_as_number && x->ob_type->tp_as_number->nb_inplace_add) {
    +            /* ... */
     
    -
    -Normal operators
    +    This check must be made even before testing the method slots for
    +    NULL values! The macro only tests whether the slots are available,
    +    not whether they are filled with methods or not.
     
    -    There are, however, good reasons to include augented assignment. 
    -    One of these has to do with Python's way of handling operators. In
    -    Python, a user defined class can implement one or more of the
    -    binary operators by supplying a 'magic' method name. For instance,
    -    for a class to support ' + ', the '__add__'
    -    method should be defined. This method should return a new object,
    -    which is the result of the expression.
    +
    +Implementation
    +
    +    The current implementation of augmented assignment[2] adds, in
    +    addition to the methods and slots alread covered, 13 new bytecodes
    +    and 13 new API functions.
         
    -    For the case of ' + ', where 'object' does not
    -    have an '__add__' method, the class can define a '__radd__'
    -    method, which then should behave exactly as '__add__'. Indeed,
    -    '__radd__' is often a different name for the same method.
    +    The API functions are simply in-place versions of the current
    +    binary-operation API functions:
         
    -    For C extention types, a similar technique is available, through
    -    the PyNumberMethods and PySequenceMethods members of the PyType
    -    structure.
    +        PyNumber_InPlaceAdd(PyObject *o1, PyObject *o2);
    +        PyNumber_InPlaceSubtract(PyObject *o1, PyObject *o2);
    +        PyNumber_InPlaceMultiply(PyObject *o1, PyObject *o2);
    +        PyNumber_InPlaceDivide(PyObject *o1, PyObject *o2);
    +        PyNumber_InPlaceRemainder(PyObject *o1, PyObject *o2);
    +        PyNumber_InPlacePower(PyObject *o1, PyObject *o2);
    +        PyNumber_InPlaceLshift(PyObject *o1, PyObject *o2);
    +        PyNumber_InPlaceRshift(PyObject *o1, PyObject *o2);
    +        PyNumber_InPlaceAnd(PyObject *o1, PyObject *o2);
    +        PyNumber_InPlaceXor(PyObject *o1, PyObject *o2);
    +        PyNumber_InPlaceOr(PyObject *o1, PyObject *o2);
    +        PySequence_InPlaceConcat(PyObject *o1, PyObject *o2);
    +        PySequence_InPlaceRepeat(PyObject *o, int count);
     
    -    However, the problem with this approach is that the '__add__'
    -    method cannot know in what context it is called. It cannot tell
    -    whether it should create a new object, or whether it is allowed to
    -    modify itself. (As would be the case in 'x = x + 1') As a result,
    -    the '__add__' method, and all other such 'magic' methods, should
    -    always return a new object. For large objects, this can be very
    -    inefficient.
    +    They call either the Python class hooks (if either of the objects
    +    is a Python class instance) or the C type's number or sequence
    +    methods.
    +
    +    The new bytecodes are:
    +        INPLACE_ADD
    +        INPLACE_SUBTRACT
    +        INPLACE_MULTIPLY
    +        INPLACE_DIVIDE
    +        INPLACE_REMAINDER
    +        INPLACE_POWER
    +        INPLACE_LEFTSHIFT
    +        INPLACE_RIGHTSHIFT
    +        INPLACE_AND
    +        INPLACE_XOR
    +        INPLACE_OR
    +        ROT_FOUR
    +        DUP_TOPX
         
    -    This inefficiency is often solved by adding a method that does the
    -    appropriate modification 'in-place'. List objects, for instance,
    -    have the 'extend' method that behaves exactly as the '+' operator,
    -    except the operation is done on the list itself, instead of on a
    -    copy.
    +    The INPLACE_* bytecodes mirror the BINARY_* bytecodes, except that
    +    they are implemented as calls to the 'InPlace' API functions. The
    +    other two bytecodes are 'utility' bytecodes: ROT_FOUR behaves like
    +    ROT_THREE except that the four topmost stack items are rotated.
    +    
    +    DUP_TOPX is a bytecode that takes a single argument, which should
    +    be an integer between 1 and 5 (inclusive) which is the number of
    +    items to duplicate in one block. Given a stack like this (where
    +    the left side of the list is the 'top' of the stack):
     
    -    The augmented assignment syntax can support this behaviour
    -    explicitly. When the magic method for 'in-place' operation are
    -    missing, it can fall back to the normal methods for that
    -    operation, maintaining full backward compatibility even when
    -    mixing the new syntax with old objects.
    +        [a, b, c, d, e, f, g]
    +    
    +    "DUP_TOPX 3" would duplicate the top 3 items, resulting in this
    +    stack:
    +    
    +        [a, b, c, d, e, f, g, e, f, g]
     
    -    The other benifit of augmented assignment is readability. After
    -    the general concept of augmented assignment is grasped, all the
    -    augmented assigment operators instantly become obvious. There is
    -    no need for non-obvious and non-standard method names to implement
    -    efficient, in-place operations, and there is no need to check the
    -    type of an object before operating on it: the augmented assignment
    -    will work for all types that implement that basic operation, not
    -    merely those that implement the augmented variant.
    -    
    -    And the last problem with augmented assignment, what to do with
    -    indexes and function calls in the expression, can be solved in a
    -    very Pythonic manner: if it looks like it's only called once, it
    -    *is* only called once. Taking this expression:
    -    
    -    seq[func(x)] += x
    -    
    -    The function 'func' is called once, and 'seq' is indexed twice:
    -    once to retrieve the value (__getitem__), and once to store it
    -    (__setitem__). So the expression can be rewritten as:
    -    
    -    tmp = func(x)
    -    seq[tmp] = seq[tmp] + x
    -    
    -    The augmented assignment form of this expression is much more
    -    readable.
    -    
    +    DUP_TOPX with an argument of 1 is the same as DUP_TOP. The limit
    +    of 5 is purely an implementation limit. The implementation of
    +    augmented assignment requires only DUP_TOPX with an argument of 2
    +    and 3, and could do without this new opcode at the cost of a fair
    +    number of DUP_TOP and ROT_*.
     
    -
     
    +Copyright
    +
    +    This document has been placed in the public domain.
    +
    +
    +References
    +
    +    [1] http://www.python.org/pipermail/python-list/2000-June/059556.html
    +    [2]
    +http://sourceforge.net/patch?func=detailpatch&patch_id=100699&group_id=5470
     
     
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:24 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:24 +0100
    Subject: [Python-checkins] peps: some notes about test cases
    Message-ID: 
    
    http://hg.python.org/peps/rev/07439b427b11
    changeset:   78:07439b427b11
    user:        Jeremy Hylton 
    date:        Mon Aug 07 17:04:27 2000 +0000
    summary:
      some notes about test cases
    couple of more small action items
    
    files:
      pep-0200.txt |  20 ++++++++++++++++----
      1 files changed, 16 insertions(+), 4 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -83,10 +83,16 @@
         anyway, but that's another matter.)  If the test cases are known
         to fail, they serve no useful purpose.
     
    -    The current test suite runs correctly on my Linux box (July 26).
    -    Heard reports that test_fork1 fails on some Linux boxes and that
    -    test_winreg and test_winreg32 fail on Windows.
    -
    +    test case         platform   R B    date reported   note
    +    test_mmap          Win32     X X    July 26, 2000
    +        [believe that was fixed by Mark H.]
    +    test_winreg        Win32     X X    July 26, 2000
    +    test_winreg2       Win32     X X    July 26, 2000
    +    test_popen2        Win32     X X    July 26, 2000   skipped
    +        [believe this was fix by /F]
    +    test_fork1         Linux     X      July 26, 2000   just SMP?  
    +        [no clue; there are probably two bugs here]
    +  
     Open items -- should be done/fixed
     
         Decoding errors when comparing strings.  There is a dictionary bug
    @@ -129,6 +135,12 @@
     
     Open: proposed but not accepted or declined
     
    +    * Fix xrange printing behavior
    +
    +    * Tim O'Malley's cookie module -- but need different license
    +
    +    * test harness for C code - Trent Mick
    +
         * List comprehensions - Tim Peters?
           Need a coherent proposal.  Lots of confusing discussion going
           on.
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:24 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:24 +0100
    Subject: [Python-checkins] peps: PEP proposals must have a title and an
    	abstract.
    Message-ID: 
    
    http://hg.python.org/peps/rev/da9b0155cbd4
    changeset:   79:da9b0155cbd4
    user:        Barry Warsaw 
    date:        Mon Aug 07 23:00:47 2000 +0000
    summary:
      PEP proposals must have a title and an abstract.
    
    files:
      pep-0001.txt |  20 +++++++++++---------
      1 files changed, 11 insertions(+), 9 deletions(-)
    
    
    diff --git a/pep-0001.txt b/pep-0001.txt
    --- a/pep-0001.txt
    +++ b/pep-0001.txt
    @@ -48,15 +48,17 @@
         identified.  The champion offers to take the discussion off-line
         and specifies a location (e.g. egroups, python.org, Roundup).
     
    -    The champion then emails the PEP editor describing the proposal
    -    and its title.  If the PEP editor approves, he will assign the PEP
    -    a number, label it as standards track or informational, give it
    -    status 'draft', and create and check-in an initial template for
    -    the PEP.  The PEP editor will not unreasonably deny a PEP.
    -    Reasons for denying PEP status include duplication of effort,
    -    being technically unsound, or not in keeping with the Python
    -    philosophy; the BDFL (Benevolent Dictator for Life, Guido van
    -    Rossum ) is the final arbitrator of the latter.
    +    The champion then emails the PEP editor with a proposed title and
    +    an abstract of about a paragraph in length.
    +
    +    If the PEP editor approves, he will assign the PEP a number, label
    +    it as standards track or informational, give it status 'draft',
    +    and create and check-in an initial template for the PEP.  The PEP
    +    editor will not unreasonably deny a PEP.  Reasons for denying PEP
    +    status include duplication of effort, being technically unsound,
    +    or not in keeping with the Python philosophy; the BDFL (Benevolent
    +    Dictator for Life, Guido van Rossum ) is the
    +    final arbitrator of the latter.
     
         Discussion concerning a PEP should initially be kept out of the
         python-dev and python-list mailing lists.  Instead, comments
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:25 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:25 +0100
    Subject: [Python-checkins] peps: PEP 2 added.
    Message-ID: 
    
    http://hg.python.org/peps/rev/0e0997a79512
    changeset:   80:0e0997a79512
    user:        Barry Warsaw 
    date:        Tue Aug 08 02:30:24 2000 +0000
    summary:
      PEP 2 added.
    
    Conform headers to PEP 1.
    
    files:
      pep-0000.txt |  6 +++++-
      1 files changed, 5 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -1,8 +1,11 @@
     PEP: 0
     Title: Index of Python Enhancement Proposals (PEPs)
     Version: $Revision$
    -Owner: bwarsaw at beopen.com (Barry A. Warsaw)
    +Author: bwarsaw at beopen.com (Barry A. Warsaw)
     Status: Active
    +Type: Informational
    +Created: 13-Jul-2000
    +Post-History:
     
     Introduction
     
    @@ -17,6 +20,7 @@
          ---  ------------  -----                                -----
            0  pep-0000.txt  Index of Python Enhance Proposals    bwarsaw
            1  pep-0001.txt  PEP Guidelines                       bwarsaw, jhylton
    +       2  pep-0002.txt  Procedure for Adding New Modules     esr
     
          160  pep-0160.txt  Python 1.6 Release Schedule          fdrake
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:28 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:28 +0100
    Subject: [Python-checkins] peps: Informational PEPs can also have a status
    	of Active.
    Message-ID: 
    
    http://hg.python.org/peps/rev/b017ff9e2930
    changeset:   81:b017ff9e2930
    user:        Barry Warsaw 
    date:        Tue Aug 08 02:30:55 2000 +0000
    summary:
      Informational PEPs can also have a status of Active.
    
    files:
      pep-0001.txt |  5 ++++-
      1 files changed, 4 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0001.txt b/pep-0001.txt
    --- a/pep-0001.txt
    +++ b/pep-0001.txt
    @@ -109,6 +109,9 @@
               v
             Deferred
     
    +    Some informational PEPs may also have a status of `Active' if they
    +    are never meant to be completed.  E.g. PEP 1.
    +
     
     What belongs in a successful PEP?
     
    @@ -165,7 +168,7 @@
             Title: 
             Version: 
             Author: 
    -        Status: 
    +        Status: 
             Type: 
             Created: 
             Post-History: 
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:29 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:29 +0100
    Subject: [Python-checkins] peps: PEP 2, Procedure for Adding New Modules,
    	assigned to esr.
    Message-ID: 
    
    http://hg.python.org/peps/rev/f88c24df2000
    changeset:   82:f88c24df2000
    user:        Barry Warsaw 
    date:        Tue Aug 08 02:31:25 2000 +0000
    summary:
      PEP 2, Procedure for Adding New Modules, assigned to esr.
    
    files:
      pep-0002.txt |  22 ++++++++++++++++++++++
      1 files changed, 22 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0002.txt b/pep-0002.txt
    new file mode 100644
    --- /dev/null
    +++ b/pep-0002.txt
    @@ -0,0 +1,22 @@
    +PEP: 2
    +Title: Procedure for Adding New Modules
    +Version: $Revision$
    +Author: esr at snark.thyrsus.com (Eric S. Raymond)
    +Status: Draft
    +Type: Informational
    +Created: 07-Aug-2000
    +Post-History:
    +
    +
    +Abstract
    +
    +    This PEP will describes review and voting procedures for
    +    incorporating candidate modules and extensions into the Python
    +    core.
    +
    +
    +
    +Local Variables:
    +mode: indented-text
    +indent-tabs-mode: nil
    +End:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:30 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:30 +0100
    Subject: [Python-checkins] peps: Some changes in wording,
    	and a different division
    Message-ID: 
    
    http://hg.python.org/peps/rev/8fee00da32d4
    changeset:   83:8fee00da32d4
    user:        Moshe Zadka 
    date:        Fri Aug 11 03:54:16 2000 +0000
    summary:
      Some changes in wording, and a different division
    as discussed with Greg Ward .
    
    files:
      pep-0206.txt |  35 ++++++++++++++++++++++++-----------
      1 files changed, 24 insertions(+), 11 deletions(-)
    
    
    diff --git a/pep-0206.txt b/pep-0206.txt
    --- a/pep-0206.txt
    +++ b/pep-0206.txt
    @@ -35,21 +35,34 @@
     
     The Proposed Solution
     
    -    The proposed solution is to download a few important third-party
    -    libraries, and distribute them with the source distribution of
    -    Python.  In addition, the build procedure will be changed to build
    -    those libraries by default, and build the Python modules which
    -    rely on them linked against those libraries.  Individual users
    -    will still be able to link the Python modules against already
    +    The proposed solution is to maintain an alternate form of distribution,
    +    nicknamed the "sumo" interpreter. It will be structured as a core 
    +    interpreter + extra useful libraries. In addition, the build procedure 
    +    will be changed to build those libraries by default, and build the Python 
    +    modules which rely on them linked against those libraries.  Individual 
    +    users will still be able to link the Python modules against already
         installed libraries, or disable them completely.
     
         Additionally, some Open Source third-party Python modules will
    -    also be distributed together with the source distribution.  The
    -    difference between those and external libraries is that the latter
    +    also be distributed in the "sumo" distribution.  The
    +    difference between those and external libraries is that the former
         are distributed in order to make the Python distribution self
    -    contained, and the former are added so there will be new
    +    contained, and the latter are added so there will be new
         functionality in out-of-the-box Python.
     
    +Python Advanced Library
    +
    +    Since it is decided that the additions to the interpreter will live
    +    in a seperate directory, they can even be distributed seperately, 
    +    as an additional library. This is called the "Python Advanced Library",
    +    or PAL. This will also solve the problem of an advanced library module 
    +    failing -- the core interpreter will still be built, tested and installed.
    +    Since the compilation of the other modules be helped by Python scripts,
    +    it is quite possible that it will even install as many modules as it
    +    can.
    +
    +Suggested Libraries and Modules
    +
         Here is the tentative list of libraries which are proposed to be
         dealt with in this manner, and where they can be downloaded:
     
    @@ -88,7 +101,7 @@
         While many Python modules rely on software distributed under the
         GNU General Public License and the GNU Lesser General Public
         License, no such sources are proposed here to be added to the
    -    Python interpreter.  Currently, the Python interpreter is
    +    sumo interpreter.  Currently, the Python interpreter is
         distributed under a closed-source-friendly license, which means
         that it is possible to include it in a closed source product.
         Making redistributers worry about which parts they need to remove
    @@ -102,7 +115,7 @@
     
         What should the build procedure look like?
     
    -    What to do if compilation of a supporting library fails?
    +    How are the additional modules tested?
     
         ESR also mentioned libpng, but I don't know of a Python module
         that uses it.
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:31 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:31 +0100
    Subject: [Python-checkins] peps: First draft, without feedback from others.
    Message-ID: 
    
    http://hg.python.org/peps/rev/e0d3d9fe421e
    changeset:   84:e0d3d9fe421e
    user:        Moshe Zadka 
    date:        Fri Aug 11 14:18:44 2000 +0000
    summary:
      First draft, without feedback from others.
    
    files:
      pep-0211.txt |  352 ++++++++++++++++++++++++++++++++++++++-
      1 files changed, 350 insertions(+), 2 deletions(-)
    
    
    diff --git a/pep-0211.txt b/pep-0211.txt
    --- a/pep-0211.txt
    +++ b/pep-0211.txt
    @@ -1,11 +1,359 @@
     PEP: 211
    -Title: Adding New Operators to Python
    +Title: Adding New Linear Algebra Operators to Python
     Version: $Revision$
     Owner: gvwilson at nevex.com (Greg Wilson)
     Python-Version: 2.1
    -Status: Incomplete
    +Created: 15-Jul-2000
    +Status: Draft
    +Post-History:
     
     
    +Introduction
    +
    +    This PEP describes a proposal to add linear algebra operators to
    +    Python 2.0.  It discusses why such operators are desirable, and
    +    alternatives that have been considered and discarded.  This PEP
    +    summarizes discussions held in mailing list forums, and provides
    +    URLs for further information, where appropriate.  The CVS revision
    +    history of this file contains the definitive historical record.
    +
    +
    +Proposal
    +
    +    Add a single new infix binary operator '@' ("across"), and
    +    corresponding special methods "__across__()" and "__racross__()".
    +    This operator will perform mathematical matrix multiplication on
    +    NumPy arrays, and generate cross-products when applied to built-in
    +    sequence types.  No existing operator definitions will be changed.
    +
    +
    +Background
    +
    +    Computers were invented to do arithmetic, as was the first
    +    high-level programming language, Fortran.  While Fortran was a
    +    great advance on its machine-level predecessors, there was still a
    +    very large gap between its syntax and the notation used by
    +    mathematicians.  The most influential effort to close this gap was
    +    APL [1]:
    +
    +        The language [APL] was invented by Kenneth E. Iverson while at
    +        Harvard University. The language, originally titled "Iverson
    +        Notation", was designed to overcome the inherent ambiguities
    +        and points of confusion found when dealing with standard
    +        mathematical notation. It was later described in 1962 in a
    +        book simply titled "A Programming Language" (hence APL).
    +        Towards the end of the sixties, largely through the efforts of
    +        IBM, the computer community gained its first exposure to
    +        APL. Iverson received the Turing Award in 1980 for this work.
    +
    +    APL's operators supported both familiar algebraic operations, such
    +    as vector dot product and matrix multiplication, and a wide range
    +    of structural operations, such as stitching vectors together to
    +    create arrays.  Its notation was exceptionally cryptic: many of
    +    its symbols did not exist on standard keyboards, and expressions
    +    had to be read right to left.
    +
    +    Most subsequent work on numerical languages, such as Fortran-90,
    +    MATLAB, and Mathematica, has tried to provide the power of APL
    +    without the obscurity.  Python's NumPy [2] has most of the
    +    features that users of such languages expect, but these are
    +    provided through named functions and methods, rather than
    +    overloaded operators.  This makes NumPy clumsier than its
    +    competitors.
    +
    +    One way to make NumPy more competitive is to provide greater
    +    syntactic support in Python itself for linear algebra.  This
    +    proposal therefore examines the requirements that new linear
    +    algebra operators in Python must satisfy, and proposes a syntax
    +    and semantics for those operators.
    +
    +
    +Requirements
    +
    +    The most important requirement is that there be minimal impact on
    +    the existing definition of Python.  The proposal must not break
    +    existing programs, except possibly those that use NumPy.
    +
    +    The second most important requirement is to be able to do both
    +    elementwise and mathematical matrix multiplication using infix
    +    notation.  The nine cases that must be handled are:
    +
    +        |5 6| *   9   = |45 54|      MS: matrix-scalar multiplication
    +        |7 8|           |63 72|
    +
    +          9   * |5 6| = |45 54|      SM: scalar-matrix multiplication
    +                |7 8|   |63 72|
    +
    +        |2 3| * |4 5| = |8 15|       VE: vector elementwise multiplication
    +
    +
    +        |2 3| *  |4|  =   23         VD: vector dot product
    +                 |5|
    +
    +         |2|  * |4 5| = | 8 10|      VO: vector outer product
    +         |3|            |12 15|
    +
    +        |1 2| * |5 6| = | 5 12|      ME: matrix elementwise multiplication
    +        |3 4|   |7 8|   |21 32|
    +
    +        |1 2| * |5 6| = |19 22|      MM: mathematical matrix multiplication
    +        |3 4|   |7 8|   |43 50|
    +
    +        |1 2| * |5 6| = |19 22|      VM: vector-matrix multiplication
    +                |7 8|
    +
    +        |5 6| *  |1|  =   |17|       MV: matrix-vector multiplication
    +        |7 8|    |2|      |23|
    +
    +    Note that 1-dimensional vectors are treated as rows in VM, as
    +    columns in MV, and as both in VD and VO.  Both are special cases
    +    of 2-dimensional matrices (Nx1 and 1xN respectively).  It may
    +    therefore be reasonable to define the new operator only for
    +    2-dimensional arrays, and provide an easy (and efficient) way for
    +    users to convert 1-dimensional structures to 2-dimensional.
    +    Behavior of a new multiplication operator for built-in types may
    +    then:
    +
    +    (a) be a parsing error (possible only if a constant is one of the
    +        arguments, since names are untyped in Python);
    +
    +    (b) generate a runtime error; or
    +
    +    (c) be derived by plausible extension from its behavior in the
    +        two-dimensional case.
    +
    +    Third, syntactic support should be considered for three other
    +    operations:
    +
    +                         T
    +    (a) transposition:  A   => A[j, i] for A[i, j]
    +
    +                         -1
    +    (b) inverse:        A   => A' such that A' * A = I (the identity matrix)
    +
    +    (c) solution:       A/b => x  such that A * x = b
    +                        A\b => x  such that x * A = b
    +
    +    With regard to (c), it is worth noting that the two syntaxes used
    +    were invented by programmers, not mathematicians.  Mathematicians
    +    do not have a standard, widely-used notation for matrix solution.
    +
    +    It is also worth noting that dozens of matrix inversion and
    +    solution algorithms are widely used.  MATLAB and its kin bind
    +    their inversion and/or solution operators to one which is
    +    reasonably robust in most cases, and require users to call
    +    functions or methods to access others.
    +
    +    Fourth, confusion between Python's notation and those of MATLAB
    +    and Fortran-90 should be avoided.  In particular, mathematical
    +    matrix multiplication (case MM) should not be represented as '.*',
    +    since:
    +
    +    (a) MATLAB uses prefix-'.' forms to mean 'elementwise', and raw
    +        forms to mean "mathematical" [4]; and
    +
    +    (b) even if the Python parser can be taught how to handle dotted
    +        forms, '1.*A' will still be visually ambiguous [4].
    +
    +    One anti-requirement is that new operators are not needed for
    +    addition, subtraction, bitwise operations, and so on, since
    +    mathematicians already treat them elementwise.
    +
    +
    +Proposal:
    +
    +    The meanings of all existing operators will be unchanged.  In
    +    particular, 'A*B' will continue to be interpreted elementwise.
    +    This takes care of the cases MS, SM, VE, and ME, and ensures
    +    minimal impact on existing programs.
    +
    +    A new operator '@' (pronounced "across") will be added to Python,
    +    along with two special methods, "__across__()" and
    +    "__racross__()", with the usual semantics.
    +
    +    NumPy will overload "@" to perform mathematical multiplication of
    +    arrays where shapes permit, and to throw an exception otherwise.
    +    The matrix class's implementation of "@" will treat built-in
    +    sequence types as if they were column vectors.  This takes care of
    +    the cases MM and MV.
    +
    +    An attribute "T" will be added to the NumPy array type, such that
    +    "m.T" is:
    +
    +    (a) the transpose of "m" for a 2-dimensional array
    +
    +    (b) the 1xN matrix transpose of "m" if "m" is a 1-dimensional
    +        array; or
    +
    +    (c) a runtime error for an array with rank >= 3.
    +
    +    This attribute will alias the memory of the base object.  NumPy's
    +    "transpose()" function will be extended to turn built-in sequence
    +    types into row vectors.  This takes care of the VM, VD, and VO
    +    cases.  We propose an attribute because:
    +
    +    (a) the resulting notation is similar to the 'superscript T' (at
    +        least, as similar as ASCII allows), and
    +
    +    (b) it signals that the transposition aliases the original object.
    +
    +    No new operators will be defined to mean "solve a set of linear
    +    equations", or "invert a matrix".  Instead, NumPy will define a
    +    value "inv", which will be recognized by the exponentiation
    +    operator, such that "A ** inv" is the inverse of "A".  This is
    +    similar in spirit to NumPy's existing "newaxis" value.
    +
    +    (Optional) When applied to sequences, the operator will return a
    +    list of tuples containing the cross-product of their elements in
    +    left-to-right order:
    +
    +    >>> [1, 2] @ (3, 4)
    +    [(1, 3), (1, 4), (2, 3), (2, 4)]
    +
    +    >>> [1, 2] @ (3, 4) @ (5, 6)
    +    [(1, 3, 5), (1, 3, 6), 
    +     (1, 4, 5), (1, 4, 6),
    +     (2, 3, 5), (2, 3, 6),
    +     (2, 4, 5), (2, 4, 6)]
    +
    +    This will require the same kind of special support from the parser
    +    as chained comparisons (such as "a>> for (i, j) in [1, 2] @ [3, 4]:
    +    >>>     print i, j
    +    1 3
    +    1 4
    +    2 3
    +    2 4
    +
    +    as a short-hand for the common nested loop idiom:
    +
    +    >>> for i in [1, 2]:
    +    >>>    for j in [3, 4]:
    +    >>>        print i, j
    +
    +    Response to the 'lockstep loop' questionnaire [5] indicated that
    +    newcomers would be comfortable with this (so comfortable, in fact,
    +    that most of them interpreted most multi-loop 'zip' syntaxes [6]
    +    as implementing single-stage nesting).
    +
    +
    +Alternatives:
    +
    +    01. Don't add new operators --- stick to functions and methods.
    +
    +    Python is not primarily a numerical language.  It is not worth
    +    complexifying the language for this special case --- NumPy's
    +    success is proof that users can and will use functions and methods
    +    for linear algebra.
    +
    +    On the positive side, this maintains Python's simplicity.  Its
    +    weakness is that support for real matrix multiplication (and, to a
    +    lesser extent, other linear algebra operations) is frequently
    +    requested, as functional forms are cumbersome for lengthy
    +    formulas, and do not respect the operator precedence rules of
    +    conventional mathematics.  In addition, the method form is
    +    asymmetric in its operands.
    +
    +    02. Introduce prefixed forms of existing operators, such as "@*"
    +        or "~*", or used boxed forms, such as "[*]" or "%*%".
    +
    +    There are (at least) three objections to this.  First, either form
    +    seems to imply that all operators exist in both forms.  This is
    +    more new entities than the problem merits, and would require the
    +    addition of many new overloadable methods, such as __at_mul__.
    +
    +    Second, while it is certainly possible to invent semantics for
    +    these new operators for built-in types, this would be a case of
    +    the tail wagging the dog, i.e. of letting the existence of a
    +    feature "create" a need for it.
    +
    +    Finally, the boxed forms make human parsing more complex, e.g.:
    +
    +        A[*] = B    vs.    A[:] = B
    +
    +    03. (From Moshe Zadka [7], and also considered by Huaiyu Zhou [8]
    +        in his proposal [9]) Retain the existing meaning of all
    +        operators, but create a behavioral accessor for arrays, such
    +        that:
    +
    +            A * B
    +
    +        is elementwise multiplication (ME), but:
    +
    +            A.m() * B.m()
    +
    +        is mathematical multiplication (MM).  The method "A.m()" would
    +        return an object that aliased A's memory (for efficiency), but
    +        which had a different implementation of __mul__().
    +
    +    The advantage of this method is that it has no effect on the
    +    existing implementation of Python: changes are localized in the
    +    Numeric module.  The disadvantages are:
    +
    +    (a) The semantics of "A.m() * B", "A + B.m()", and so on would
    +        have to be defined, and there is no "obvious" choice for them.
    +
    +    (b) Aliasing objects to trigger different operator behavior feels
    +        less Pythonic than either calling methods (as in the existing
    +        Numeric module) or using a different operator.  This PEP is
    +        primarily about look and feel, and about making Python more
    +        attractive to people who are not already using it.
    +
    +    04. (From a proposal [9] by Huaiyu Zhou [8]) Introduce a "delayed
    +        inverse" attribute, similar to the "transpose" attribute
    +        advocated in the third part of this proposal.  The expression
    +        "a.I" would be a delayed handle on the inverse of the matrix
    +        "a", which would be evaluated in context as required.  For
    +        example, "a.I * b" and "b * a.I" would solve sets of linear
    +        equations, without actually calculating the inverse.
    +
    +    The main drawback of this proposal it is reliance on lazy
    +    evaluation, and even more on "smart" lazy evaluation (i.e. the
    +    operation performed depends on the context in which the evaluation
    +    is done).  The BDFL has so far resisted introducing LE into
    +    Python.
    +
    +
    +Related Proposals
    +
    +    0203 :  Augmented Assignments
    +
    +            If new operators for linear algebra are introduced, it may
    +            make sense to introduce augmented assignment forms for
    +            them.
    +
    +    0207 :  Rich Comparisons
    +
    +            It may become possible to overload comparison operators
    +            such as '<' so that an expression such as 'A < B' returns
    +            an array, rather than a scalar value.
    +
    +    0209 :  Adding Multidimensional Arrays
    +
    +            Multidimensional arrays are currently an extension to
    +            Python, rather than a built-in type.
    +
    +
    +Acknowledgments:
    +
    +    I am grateful to Huaiyu Zhu [8] for initiating this discussion,
    +    and for some of the ideas and terminology included below.
    +
    +
    +References:
    +
    +    [1] http://www.acm.org/sigapl/whyapl.htm
    +    [2] http://numpy.sourceforge.net
    +    [3] PEP-0203.txt "Augmented Assignments".
    +    [4] http://bevo.che.wisc.edu/octave/doc/octave_9.html#SEC69
    +    [5] http://www.python.org/pipermail/python-dev/2000-July/013139.html
    +    [6] PEP-0201.txt "Lockstep Iteration"
    +    [7] Moshe Zadka is 'moshez at math.huji.ac.il'.
    +    [8] Huaiyu Zhu is 'hzhu at users.sourceforge.net'
    +    [9] http://www.python.org/pipermail/python-list/2000-August/112529.html
    +
     
     Local Variables:
     mode: indented-text
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:32 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:32 +0100
    Subject: [Python-checkins] peps: special case lines beginning with "[*]" as
    	non-header
    Message-ID: 
    
    http://hg.python.org/peps/rev/9c21f4ecc146
    changeset:   85:9c21f4ecc146
    user:        Peter Schneider-Kamp 
    date:        Fri Aug 11 22:18:04 2000 +0000
    summary:
      special case lines beginning with "[*]" as non-header
    
    add optical sugar
    
    files:
      pep2html.py |  7 ++++---
      1 files changed, 4 insertions(+), 3 deletions(-)
    
    
    diff --git a/pep2html.py b/pep2html.py
    --- a/pep2html.py
    +++ b/pep2html.py
    @@ -91,7 +91,7 @@
             if not line:
                 break
             if line[0] != "\f":
    -            if line[0].strip():
    +            if line[0].strip() and line[:3] != '[*]':
                     if line.strip() == LOCALVARS:
                         break
                     fo.write("\n

    %s

    \n
    " % line.strip())
    @@ -109,8 +109,9 @@
     def main():
         update = 1
         for file in glob.glob("pep-*.txt"):
    -        print file, "..."
    -        fixfile(file, os.path.splitext(file)[0] + ".html")
    +        newfile = os.path.splitext(file)[0] + ".html"
    +        print file, "->", newfile
    +        fixfile(file, newfile)
     
         if len(sys.argv) > 1 and sys.argv[1] == "-n":
             update = 0
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:38 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:38 +0100
    Subject: [Python-checkins] peps: Added Gordo's PEP 219 and 220.
    Message-ID: 
    
    http://hg.python.org/peps/rev/15104d95d26d
    changeset:   86:15104d95d26d
    user:        Barry Warsaw 
    date:        Mon Aug 14 14:46:56 2000 +0000
    summary:
      Added Gordo's PEP 219 and 220.
    
    Expanded the keys a bit (see also PEP 1 update).
    
    Modest reformating.
    
    files:
      pep-0000.txt |  60 ++++++++++++++++++++++-----------------
      1 files changed, 34 insertions(+), 26 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -16,36 +16,44 @@
     
     Index
     
    -     num  filename      title                                owner
    -     ---  ------------  -----                                -----
    -       0  pep-0000.txt  Index of Python Enhance Proposals    bwarsaw
    -       1  pep-0001.txt  PEP Guidelines                       bwarsaw, jhylton
    -       2  pep-0002.txt  Procedure for Adding New Modules     esr
    +     num  filename      title                                 owner
    +     ---  ------------  -----                                 -----
    + I     0  pep-0000.txt  Index of Python Enhance Proposals     bwarsaw
    + I     1  pep-0001.txt  PEP Guidelines                        bwarsaw, jhylton
    + I     2  pep-0002.txt  Procedure for Adding New Modules      esr
     
    -     160  pep-0160.txt  Python 1.6 Release Schedule          fdrake
    + I   160  pep-0160.txt  Python 1.6 Release Schedule           fdrake
     
    -     200  pep-0200.txt  Python 2.0 Release Schedule          jhylton  
    -[*]  201  pep-0201.txt  Lockstep Iteration                   bwarsaw
    -     202  pep-0202.txt  List Comprehensions                  tim_one
    -     203  pep-0203.txt  Augmented Assignments                twouters
    -     204  pep-0204.txt  Range Literals                       twouters
    -     205  pep-0205.txt  Weak References                      fdrake
    -     206  pep-0206.txt  2.0 Batteries Included               moshez
    -     207  pep-0207.txt  Rich Comparisons                     davida
    -     208  pep-0208.txt  Reworking the Coercion Model         davida
    -     209  pep-0209.txt  Adding Multidimensional Arrays       davida
    -     210  pep-0210.txt  Decoupling the Interpreter Loop      davida
    -     211  pep-0211.txt  Adding New Linear Algebra Operators  gvwilson
    -     212  pep-0212.txt  Additional Builtin Generators        bwarsaw
    -     213  pep-0213.txt  Attribute Access Handlers            prescod
    -     214  pep-0214.txt  Extended Print Statement             bwarsaw
    -     215  pep-0215.txt  String Interpolation                 ping
    -     216  pep-0216.txt  Docstring Format                     moshez
    -     217  pep-0217.txt  Display Hook for Interactive Use     moshez
    -     218  pep-0218.txt  Adding a Built-In Set Object Type    gvwilson
    + I   200  pep-0200.txt  Python 2.0 Release Schedule           jhylton
    + SA  201  pep-0201.txt  Lockstep Iteration                    bwarsaw
    + S   202  pep-0202.txt  List Comprehensions                   tim_one
    + S   203  pep-0203.txt  Augmented Assignments                 twouters
    + S   204  pep-0204.txt  Range Literals                        twouters
    + S   205  pep-0205.txt  Weak References                       fdrake
    + I   206  pep-0206.txt  2.0 Batteries Included                moshez
    + S   207  pep-0207.txt  Rich Comparisons                      davida
    + S   208  pep-0208.txt  Reworking the Coercion Model          davida
    + S   209  pep-0209.txt  Adding Multidimensional Arrays        davida
    + S   210  pep-0210.txt  Decoupling the Interpreter Loop       davida
    + T   211  pep-0211.txt  Adding New Linear Algebra Operators   gvwilson
    + S   212  pep-0212.txt  Additional Builtin Generators         bwarsaw
    + S   213  pep-0213.txt  Attribute Access Handlers             prescod
    + S   214  pep-0214.txt  Extended Print Statement              bwarsaw
    + S   215  pep-0215.txt  String Interpolation                  ping
    + I   216  pep-0216.txt  Docstring Format                      moshez
    + S   217  pep-0217.txt  Display Hook for Interactive Use      moshez
    + S   218  pep-0218.txt  Adding a Built-In Set Object Type     gvwilson
    + T   219  pep-0219.txt  Stackless Python                      gmcm
    + I   220  pep-0220.txt  Coroutines, Generators, Continuations gmcm
     
     
    -[*] denotes accepted proposals.
    +Key
    +
    +    I - Informational PEP
    +    S - Standards Track PEP
    +    T - Technical PEP
    +    A - Accepted proposal
    +    R - Rejected proposal
     
     
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:38 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:38 +0100
    Subject: [Python-checkins] peps: There are now three basic types of PEPs:
    	informational, standards
    Message-ID: 
    
    http://hg.python.org/peps/rev/68e6b0cc926e
    changeset:   87:68e6b0cc926e
    user:        Barry Warsaw 
    date:        Mon Aug 14 14:48:20 2000 +0000
    summary:
      There are now three basic types of PEPs: informational, standards
    track, and technical.  The (new) latter type describes internal or
    implementation changes that don't have a direct visible effect on the
    Python language (e.g. Stackless).
    
    files:
      pep-0001.txt |  7 +++++--
      1 files changed, 5 insertions(+), 2 deletions(-)
    
    
    diff --git a/pep-0001.txt b/pep-0001.txt
    --- a/pep-0001.txt
    +++ b/pep-0001.txt
    @@ -30,10 +30,13 @@
     
     Kinds of PEPs
     
    -    There are two kinds of PEPs.  A standards track PEP describes a
    +    There are three kinds of PEPs.  A standards track PEP describes a
         new feature for Python.  An informational PEP describes a Python
         design issue, or provides general guidelines or information to the
    -    Python community, but does not propose a new feature.
    +    Python community, but does not propose a new feature.  A technical
    +    PEP describes a new implementation or other internal modification
    +    that doesn't directly expose new features to the Python
    +    programmer.
     
     
     PEP Workflow
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:40 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:40 +0100
    Subject: [Python-checkins] peps: Gordo's new PEPs
    Message-ID: 
    
    http://hg.python.org/peps/rev/58123efe26e0
    changeset:   88:58123efe26e0
    user:        Barry Warsaw 
    date:        Mon Aug 14 14:48:38 2000 +0000
    summary:
      Gordo's new PEPs
    
    files:
      pep-0219.txt |  25 +++++++++++++++++++++++++
      pep-0220.txt |  26 ++++++++++++++++++++++++++
      2 files changed, 51 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0219.txt b/pep-0219.txt
    new file mode 100644
    --- /dev/null
    +++ b/pep-0219.txt
    @@ -0,0 +1,25 @@
    +PEP: 219
    +Title: Stackless Python
    +Version: $Revision$
    +Author: gmcm at hypernet.com (Gordon McMillan)
    +Status: Active
    +Type: Technical
    +Created: 14-Aug-2000
    +Post-History:
    +
    +
    +Abstract
    +
    +    Argues for changes (mostly to ceval.c and frameobject.c) that
    +    disentangle Python's stack usage from the C stack.  Each frame
    +    gets its own stacklet (just enough for its requirements).  Also
    +    changes ceval.c so that the ceval.c does not cause the interpreter
    +    to recurse (although other C code may still do so).  No impact on
    +    Python's syntax or semantics.
    +
    +
    +
    +Local Variables:
    +mode: indented-text
    +indent-tabs-mode: nil
    +End:
    diff --git a/pep-0220.txt b/pep-0220.txt
    new file mode 100644
    --- /dev/null
    +++ b/pep-0220.txt
    @@ -0,0 +1,26 @@
    +PEP: 220
    +Title: Coroutines, Generators, Continuations
    +Version: $Revision$
    +Author: gmcm at hypernet.com (Gordon McMillan)
    +Status: Active
    +Type: Information
    +Created: 14-Aug-2000
    +Post-History:
    +
    +
    +Abstract
    +
    +    Demonstrates why the changes described in the stackless PEP are
    +    desirable.  A low-level continuations module exists.  With it,
    +    coroutines and generators and "green" threads can be written.  A
    +    higher level module that makes coroutines and generators easy to
    +    create is desirable (and being worked on).  The focus of this PEP
    +    is on showing how coroutines, generators, and green threads can
    +    simplify common programming problems.
    +
    +
    +
    +Local Variables:
    +mode: indented-text
    +indent-tabs-mode: nil
    +End:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:41 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:41 +0100
    Subject: [Python-checkins] peps: Fixed some spelling errors and inconsistent
    	quoting, rewrote some unclear
    Message-ID: 
    
    http://hg.python.org/peps/rev/2e0b7c812bf4
    changeset:   89:2e0b7c812bf4
    user:        Thomas Wouters 
    date:        Mon Aug 14 15:22:52 2000 +0000
    summary:
      Fixed some spelling errors and inconsistent quoting, rewrote some unclear
    parts and added a Rationale and an Open Issues section. Is this something
    like you had in mind when you say 'Rationale', Tim ? :-)
    
    files:
      pep-0203.txt |  133 +++++++++++++++++++++++++++++++++-----
      1 files changed, 114 insertions(+), 19 deletions(-)
    
    
    diff --git a/pep-0203.txt b/pep-0203.txt
    --- a/pep-0203.txt
    +++ b/pep-0203.txt
    @@ -4,6 +4,8 @@
     Owner: thomas at xs4all.net (Thomas Wouters)
     Python-Version: 2.0
     Status: Draft
    +Created: 13-Jul-2000
    +Type: Standard
     
     
     Introduction
    @@ -25,9 +27,10 @@
         
            += -= *= /= %= **= <<= >>= &= ^= |=
         
    -    They implement the same operator as their normal binary form, with
    -    the exception that the operation is done `in-place' whenever
    -    possible.
    +    They implement the same operator as their normal binary form,
    +    except that the operation is done `in-place' when the left-hand
    +    side object supports it, and that the left-hand side is only
    +    evaluated once.
         
         They truly behave as augmented assignment, in that they perform
         all of the normal load and store operations, in addition to the
    @@ -35,16 +38,16 @@
         
            x += y
         
    -    The object `x' is loaded, then added with 1, and the resulting
    -    object is stored back in the original place. The precise action
    -    performed on the two arguments depends on the type of `x', and
    -    possibly of `y'.
    +    The object `x' is loaded, then `y' is added to it, and the
    +    resulting object is stored back in the original place. The precise
    +    action performed on the two arguments depends on the type of `x',
    +    and possibly of `y'.
     
         The idea behind augmented assignment in Python is that it isn't
         just an easier way to write the common practice of storing the
         result of a binary operation in its left-hand operand, but also a
         way for the left-hand operand in question to know that it should
    -    operate 'on itself', rather than creating a modified copy of
    +    operate `on itself', rather than creating a modified copy of
         itself.
     
         To make this possible, a number of new `hooks' are added to Python
    @@ -58,12 +61,12 @@
         
             x += y
         
    -    tries to call x.__add_ab__(y), which is the 'in-place' variant of
    +    tries to call x.__add_ab__(y), which is the `in-place' variant of
         __add__. If __add_ab__ is not present, x.__add__(y) is
         attempted, and finally y.__radd__(x) if __add__ is missing too. 
         There is no `right-hand-side' variant of __add_ab__, because that
         would require for `y' to know how to in-place modify `x', which is
    -    an unsafe assumption. The __add_ab__ hook should behave exactly
    +    an unsafe to say the least. The __add_ab__ hook should behave exactly
         like __add__, returning the result of the operation (which could
         be `self') which is to be stored in the variable `x'.
      
    @@ -76,6 +79,59 @@
         should be INCREF()'d appropriately.
     
     
    +Rationale
    +
    +    There are two main reasons for adding this feature to Python:
    +    simplicity of expression, and support for in-place operations. The
    +    end result is a tradeoff between simplicity of syntax and
    +    simplicity of expression; like most new features, augmented
    +    assignment doesn't add anything that was previously impossible. It
    +    merely makes these things easier to do.
    +    
    +    Adding augmented assignment will make Pythons syntax more complex. 
    +    Instead of a single assignment operation, there are now twelve
    +    assignment operations, eleven of which also perform an binary
    +    operation. However, these eleven new forms of assignment are easy
    +    to understand as the coupling between assignment and the binary
    +    operation, and they require no large conceptual leap to
    +    understand. Furthermore, languages that do have augmented
    +    assignment have shown that they are a popular, much used feature.
    +    Expressions of the form
    +    
    +         =   
    +        
    +    are common enough in those languages to make the extra syntax
    +    worthwhile, and Python does not have significantly less of those
    +    expressions. Quite the opposite, in fact, since in Python you can
    +    also concatenate lists with a binary operator, something that is
    +    done quite frequently. Writing the above expression as
    +    
    +         =  
    +    
    +    is both more readable and less error prone, because it is
    +    instantly obvious to the reader that it is  that is being
    +    changed, and not  that is being replaced by something almost,
    +    but not quite, entirely unlike .
    +    
    +    The new in-place operations are especially useful to matrix
    +    calculation and other applications that require large objects. In
    +    order to efficiently deal with the available program memory, such
    +    packages cannot blindly use the current binary operations. Because
    +    these operations always create a new character, adding a single
    +    item to an existing (large) object would result in copying the
    +    entire object (which may cause the application to run out of
    +    memory), add the single item, and then possibly delete the
    +    original object, depending on reference count.
    +    
    +    To work around this problem, the packages currently have to use
    +    methods or functions to modify an object in-place, which is
    +    definately less readable than an augmented assignment expression. 
    +    Augmented assignment won't solve all the problems for these
    +    packages, since some operations cannot be expressed in the limited
    +    set of binary operators to start with, but it is a start. A
    +    different PEP[3] is looking at adding new operators.
    +
    +
     New methods
     
         The proposed implementation adds the following 11 possible `hooks'
    @@ -94,9 +150,10 @@
             __xor_ab__
             __or_ab__
         
    -    The `__add_ab__' name is one proposed by Guido[1], and stands for `and
    -    becomes'. Other proposed names include '__iadd__', `__add_in__'
    -    `__inplace_add__'
    +    The `__add_ab__' name is one proposed by Guido[1], and stands for
    +    `and becomes'. Other proposed names include `__iadd__',
    +    `__add_in__' and `__inplace_add__'. A firm decision by the BDFL is
    +    probably needed to finalize this issue.
     
         For C extention types, the following struct members are added:
         
    @@ -122,7 +179,8 @@
         allocated room for these slots. Until a clean break in binary
         compatibility is made (which may or may not happen before 2.0)
         code that wants to use one of the new struct members must first
    -    check that they are available with the 'PyType_HasFeature()' macro:
    +    check that they are available with the `PyType_HasFeature()'
    +    macro:
         
         if (PyType_HasFeature(x->ob_type, Py_TPFLAGS_HAVE_INPLACE_OPS) &&
             x->ob_type->tp_as_number && x->ob_type->tp_as_number->nb_inplace_add) {
    @@ -176,21 +234,21 @@
             DUP_TOPX
         
         The INPLACE_* bytecodes mirror the BINARY_* bytecodes, except that
    -    they are implemented as calls to the 'InPlace' API functions. The
    -    other two bytecodes are 'utility' bytecodes: ROT_FOUR behaves like
    +    they are implemented as calls to the `InPlace' API functions. The
    +    other two bytecodes are `utility' bytecodes: ROT_FOUR behaves like
         ROT_THREE except that the four topmost stack items are rotated.
         
         DUP_TOPX is a bytecode that takes a single argument, which should
         be an integer between 1 and 5 (inclusive) which is the number of
         items to duplicate in one block. Given a stack like this (where
    -    the left side of the list is the 'top' of the stack):
    +    the right side of the list is the `top' of the stack):
     
    -        [a, b, c, d, e, f, g]
    +        [1, 2, 3, 4, 5]
         
         "DUP_TOPX 3" would duplicate the top 3 items, resulting in this
         stack:
         
    -        [a, b, c, d, e, f, g, e, f, g]
    +        [1, 2, 3, 4, 5, 3, 4, 5]
     
         DUP_TOPX with an argument of 1 is the same as DUP_TOP. The limit
         of 5 is purely an implementation limit. The implementation of
    @@ -199,6 +257,43 @@
         number of DUP_TOP and ROT_*.
     
     
    +Open Issues
    +
    +    The PyNumber_InPlacePower() function only takes two arguments, not
    +    one like PyNumber_Power(). This is because there is no way to do
    +    an inplace three-argument-power trough the augmented assignment
    +    syntax or the power() function.
    +    
    +
    +    Possibly a more obvious name for the Python hooks can be found. 
    +    `_ab_' is what Guido proposed[1] as a working name, and comes from
    +    an old Algol-68 naming convention.
    +
    +
    +    Documentation needs to be written. The reference manual, the `dis'
    +    section of the library manual, and possibly the tutorial.
    +    
    +
    +    The DUP_TOPX bytecode is a conveniency bytecode, and is not
    +    actually necessary. It should be considered whether this bytecode
    +    is worth having. There seems to be no other possible use for this
    +    bytecode at this time.
    +    
    +
    +    The standard library should be adjusted to provide augmented
    +    assignment hooks, where sensible.
    +
    +
    +    It is not possible to do an inplace operation in the variant of
    +    
    +        += 
    +
    +    Instead, the instance objects' __radd__ hook is called, with the
    +    builtin type as argument. The same goes for the other operations.
    +    It might necessary to add a right-hand version of __add_ab__ after
    +    all, to support something like that.
    +
    +
     Copyright
     
         This document has been placed in the public domain.
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:43 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:43 +0100
    Subject: [Python-checkins] peps: Reflect the fact I just posted this PEP to
    	c.l.py.
    Message-ID: 
    
    http://hg.python.org/peps/rev/a8f601aebcc9
    changeset:   90:a8f601aebcc9
    user:        Thomas Wouters 
    date:        Mon Aug 14 16:08:44 2000 +0000
    summary:
      Reflect the fact I just posted this PEP to c.l.py.
    
    files:
      pep-0203.txt |  1 +
      1 files changed, 1 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0203.txt b/pep-0203.txt
    --- a/pep-0203.txt
    +++ b/pep-0203.txt
    @@ -6,6 +6,7 @@
     Status: Draft
     Created: 13-Jul-2000
     Type: Standard
    +Post-History: 14-Aug-2000
     
     
     Introduction
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:43 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:43 +0100
    Subject: [Python-checkins] peps: Spelling fixes and semantic (both ways)
    	corrections by Aahz	Maruch, Bjorn
    Message-ID: 
    
    http://hg.python.org/peps/rev/27f931feb7c6
    changeset:   91:27f931feb7c6
    user:        Thomas Wouters 
    date:        Mon Aug 14 19:58:09 2000 +0000
    summary:
      Spelling fixes and semantic (both ways) corrections by Aahz Maruch, Bjorn
    Pettersen and Eric Jacobs.
    
    files:
      pep-0203.txt |  35 ++++++++++++++++++-----------------
      1 files changed, 18 insertions(+), 17 deletions(-)
    
    
    diff --git a/pep-0203.txt b/pep-0203.txt
    --- a/pep-0203.txt
    +++ b/pep-0203.txt
    @@ -16,7 +16,7 @@
         slated for introduction in Python 2.0.  It contains a description
         of the feature and outlines changes necessary to support the
         feature.  This PEP summarizes discussions held in mailing list
    -    forums, and provides URLs for further information, where
    +    forums, and provides URLs for further information where
         appropriate.  The CVS revision history of this file contains the
         definitive historical record.
     
    @@ -52,7 +52,7 @@
         itself.
     
         To make this possible, a number of new `hooks' are added to Python
    -    classes and C extention types, which are called when the object in
    +    classes and C extension types, which are called when the object in
         question is used as the left hand side of an augmented assignment
         operation. If the class or type does not implement the `in-place'
         hooks, the normal hooks for the particular binary operation are
    @@ -67,11 +67,11 @@
         attempted, and finally y.__radd__(x) if __add__ is missing too. 
         There is no `right-hand-side' variant of __add_ab__, because that
         would require for `y' to know how to in-place modify `x', which is
    -    an unsafe to say the least. The __add_ab__ hook should behave exactly
    -    like __add__, returning the result of the operation (which could
    -    be `self') which is to be stored in the variable `x'.
    +    unsafe to say the least. The __add_ab__ hook should behave similar
    +    to __add__, returning the result of the operation (which could be
    +    `self') which is to be stored in the variable `x'.
      
    -    For C extention types, the `hooks' are members of the
    +    For C extension types, the `hooks' are members of the
         PyNumberMethods and PySequenceMethods structures, and are called
         in exactly the same manner as the existing non-inplace operations,
         including argument coercion. C methods should also take care to
    @@ -89,7 +89,7 @@
         assignment doesn't add anything that was previously impossible. It
         merely makes these things easier to do.
         
    -    Adding augmented assignment will make Pythons syntax more complex. 
    +    Adding augmented assignment will make Python's syntax more complex. 
         Instead of a single assignment operation, there are now twelve
         assignment operations, eleven of which also perform an binary
         operation. However, these eleven new forms of assignment are easy
    @@ -102,7 +102,7 @@
              =   
             
         are common enough in those languages to make the extra syntax
    -    worthwhile, and Python does not have significantly less of those
    +    worthwhile, and Python does not have significantly fewer of those
         expressions. Quite the opposite, in fact, since in Python you can
         also concatenate lists with a binary operator, something that is
         done quite frequently. Writing the above expression as
    @@ -118,15 +118,15 @@
         calculation and other applications that require large objects. In
         order to efficiently deal with the available program memory, such
         packages cannot blindly use the current binary operations. Because
    -    these operations always create a new character, adding a single
    -    item to an existing (large) object would result in copying the
    -    entire object (which may cause the application to run out of
    -    memory), add the single item, and then possibly delete the
    -    original object, depending on reference count.
    +    these operations always create a new object, adding a single item
    +    to an existing (large) object would result in copying the entire
    +    object (which may cause the application to run out of memory), add
    +    the single item, and then possibly delete the original object,
    +    depending on reference count.
         
         To work around this problem, the packages currently have to use
         methods or functions to modify an object in-place, which is
    -    definately less readable than an augmented assignment expression. 
    +    definitely less readable than an augmented assignment expression. 
         Augmented assignment won't solve all the problems for these
         packages, since some operations cannot be expressed in the limited
         set of binary operators to start with, but it is a start. A
    @@ -156,7 +156,7 @@
         `__add_in__' and `__inplace_add__'. A firm decision by the BDFL is
         probably needed to finalize this issue.
     
    -    For C extention types, the following struct members are added:
    +    For C extension types, the following struct members are added:
         
         To PyNumberMethods:
             binaryfunc nb_inplace_add;
    @@ -195,7 +195,7 @@
     Implementation
     
         The current implementation of augmented assignment[2] adds, in
    -    addition to the methods and slots alread covered, 13 new bytecodes
    +    addition to the methods and slots already covered, 13 new bytecodes
         and 13 new API functions.
         
         The API functions are simply in-place versions of the current
    @@ -305,7 +305,8 @@
         [1] http://www.python.org/pipermail/python-list/2000-June/059556.html
         [2]
     http://sourceforge.net/patch?func=detailpatch&patch_id=100699&group_id=5470
    -
    +    [3] PEP 211, Adding New Linear Algebra Operators,
    +        http://python.sourceforge.net/peps/pep-0211.html
     
     
     Local Variables:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:44 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:44 +0100
    Subject: [Python-checkins] peps: Small adjustments.
    Message-ID: 
    
    http://hg.python.org/peps/rev/b0bc1e7c04c5
    changeset:   92:b0bc1e7c04c5
    user:        Fred Drake 
    date:        Mon Aug 14 20:08:40 2000 +0000
    summary:
      Small adjustments.
    
    files:
      pep-0160.txt |  11 ++++++++++-
      1 files changed, 10 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0160.txt b/pep-0160.txt
    --- a/pep-0160.txt
    +++ b/pep-0160.txt
    @@ -4,6 +4,8 @@
     Owner:          Fred L. Drake, Jr. 
     Python-Version: 1.6
     Status:         Incomplete
    +Type:           Informational
    +Created:        25-Jul-2000
     
     Introduction
     
    @@ -15,7 +17,8 @@
         Corporation for National Research Initiatives (CNRI).
     
     Schedule
    -    August 1     1.6 beta 1 release.
    +    August 1     1.6 beta 1 release (planned).
    +    August 3     1.6 beta 1 release (actual).
         August 15    1.6 final release.
     
     Features
    @@ -33,6 +36,9 @@
           It must pass the regression test used for the pcre-based version
           of the re module.
     
    +    * The curses module was in the middle of a transformation to a
    +      package, so the final form was adopted.
    +
     Mechanism
     
         The release will be created as a branch from the development tree
    @@ -47,6 +53,9 @@
         Patches and features will be merged to the extent required to pass
         regression tests in effect on 16 May 2000.
     
    +    The beta release is tagged "r16b1" in the CVS repository, and the
    +    final Python 1.6 release is tagged "release16" in the repository.
    +
     Copyright
     
         This document has been placed in the public domain.
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:44 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:44 +0100
    Subject: [Python-checkins] peps: Changed the sense of the default behavior.
    	No longer installs	the
    Message-ID: 
    
    http://hg.python.org/peps/rev/e19233412c0d
    changeset:   93:e19233412c0d
    user:        Barry Warsaw 
    date:        Tue Aug 15 05:53:19 2000 +0000
    summary:
      Changed the sense of the default behavior.  No longer installs the
    .html files in SF by default; you must explicitly include the
    -i/--install option in order to upload.
    
    Also, added -h/--help and migrated to getopt for switch parsing.
    Included a usage() function.
    
    Some cosmetic changes.
    
    files:
      pep2html.py |  82 ++++++++++++++++++++++++++++++-----------
      1 files changed, 60 insertions(+), 22 deletions(-)
    
    
    diff --git a/pep2html.py b/pep2html.py
    --- a/pep2html.py
    +++ b/pep2html.py
    @@ -2,30 +2,55 @@
     """
     convert PEP's to (X)HTML - courtesy of /F
     
    -Syntax: pep2html [-n] [sf_username]
    +Usage: %(PROGRAM)s [options] [sf_username]
     
    -The user name 'sf_username' is used to upload the converted files
    -to the web pages at source forge.
    +Options:
     
    -If -n is given, the script doesn't actually try to install the
    -generated HTML at SourceForge.
    +    -i/--install
    +        After generating the HTML, install it SourceForge.  In that case the
    +        user's name is used in the scp and ssh commands, unless sf_username is
    +        given (in which case, it is used instead).  Without -i, sf_username is
    +        ignored.
     
    +    -h/--help
    +        Print this help message and exit.
     """
     
    -import cgi, glob, os, re, sys
    +import sys
    +import os
    +import re
    +import cgi
    +import glob
    +import getopt
     
    -# this doesn't validate -- you cannot use 
    and

    inside
    -# tags.  but if I change that, the result doesn't look very nice...
    +PROGRAM = sys.argv[0]
     
    -HOST = "shell.sourceforge.net" # host for update
    -HDIR = "/home/groups/python/htdocs/peps" # target host directory
    +
    +
    +HOST = "shell.sourceforge.net"                    # host for update
    +HDIR = "/home/groups/python/htdocs/peps"          # target host directory
     LOCALVARS = "Local Variables:"
     
    +# The generated HTML doesn't validate -- you cannot use 
    and

    inside +#
     tags.  But if I change that, the result doesn't look very nice...
     DTD = ('')
     
     fixpat = re.compile("((http|ftp):[-_a-zA-Z0-9/.+~:?#$=&]+)|(pep-\d+(.txt)?)|.")
     
    +
    +
    +def usage(code, msg=''):
    +    sys.stderr.write(__doc__ % globals() + '\n')
    +    if msg:
    +        msg = str(msg)
    +        if msg[-1] <> '\n':
    +            msg = msg + '\n'
    +        sys.stderr.write(msg)
    +    sys.exit(code)
    +
    +
    +
     def fixanchor(current, match):
         text = match.group(0)
         link = None
    @@ -37,6 +62,8 @@
             return "%s" % (link, cgi.escape(text))
         return cgi.escape(match.group(0)) # really slow, but it works...
     
    +
    +
     def fixfile(infile, outfile):
         # convert plain text pep to minimal XHTML markup
         fi = open(infile)
    @@ -106,28 +133,39 @@
         os.chmod(outfile, 0664)
     
     
    +
     def main():
    -    update = 1
    +    # defaults
    +    update = 0
    +    username = ''
    +
    +    try:
    +        opts, args = getopt.getopt(sys.argv[1:], 'ih', ['install', 'help'])
    +    except getopt.error, msg:
    +        usage(1, msg)
    +
    +    if args:
    +        username = args[0] + '@'
    +        del args[0]
    +    if args:
    +        usage(1, 'unexpected arguments')
    +
    +    for opt, arg in opts:
    +        if opt in ('-h', '--help'):
    +            usage(0)
    +        elif opt in ('-i', '--install'):
    +            update = 1
    +
         for file in glob.glob("pep-*.txt"):
             newfile = os.path.splitext(file)[0] + ".html"
             print file, "->", newfile
             fixfile(file, newfile)
     
    -    if len(sys.argv) > 1 and sys.argv[1] == "-n":
    -        update = 0
    -        del sys.argv[1]
    -
    -    if len(sys.argv) == 1:
    -        username = ""
    -    elif len(sys.argv) == 2:
    -        username = sys.argv[1]+"@"
    -    else:
    -        raise "Syntax: "+sys.argv[0]+" [-n] [sf_username]"
    -
         if update:
             os.system("scp pep-*.html style.css " + username + HOST + ":" + HDIR)
             os.system("ssh " + username + HOST + " chmod 664 " + HDIR + "/*")
     
     
    +
     if __name__ == "__main__":
         main()
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:45 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:45 +0100
    Subject: [Python-checkins] peps: Added a second footnote with more
    	information about the	pep2html.py
    Message-ID: 
    
    http://hg.python.org/peps/rev/576e137bc704
    changeset:   94:576e137bc704
    user:        Barry Warsaw 
    date:        Tue Aug 15 05:54:18 2000 +0000
    summary:
      Added a second footnote with more information about the pep2html.py
    script.
    
    files:
      pep-0001.txt |  8 ++++++--
      1 files changed, 6 insertions(+), 2 deletions(-)
    
    
    diff --git a/pep-0001.txt b/pep-0001.txt
    --- a/pep-0001.txt
    +++ b/pep-0001.txt
    @@ -162,7 +162,7 @@
     
         PEPs are written in plain ASCII text, and should adhere to a
         rigid style.  There is a Python script that parses this style and
    -    converts the plain text PEP to HTML for viewing on the web.
    +    converts the plain text PEP to HTML for viewing on the web[2].
     
         Each PEP begins with an RFC822 style header section.  Required
         headers are as follows, and must appear in this order:
    @@ -207,10 +207,14 @@
         This document has been placed in the public domain.
     
     
    -References
    +References and Footnotes
     
         [1] http://www.opencontent.org/openpub/
     
    +    [2] The script referred to here is pep2html.py, which lives in
    +    the same directory in the CVS tree as the PEPs themselves.  Try
    +    "pep2html.py --help" for details.
    +
     
     
     Local Variables:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:45 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:45 +0100
    Subject: [Python-checkins] peps: Updated as best I could.  Help!
    Message-ID: 
    
    http://hg.python.org/peps/rev/b02a1c50faa3
    changeset:   95:b02a1c50faa3
    user:        Tim Peters 
    date:        Tue Aug 15 05:58:29 2000 +0000
    summary:
      Updated as best I could.  Help!
    
    files:
      pep-0200.txt |  81 ++++++++++++++++++++++++++++-----------
      1 files changed, 57 insertions(+), 24 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -15,11 +15,13 @@
         CVS revision history of this file contains the definitive
         historical record.
     
    +
     Tentative Release Schedule
     
    -    Aug. 14: All 2.0 PEPs finished / feature freeze
    -    Aug. 28: 2.0 beta 1
    -    Sep. 29: 2.0 final
    +    14-Aug-2000: All 2.0 PEPs finished / feature freeze
    +    28-Aug-2000: 2.0 beta 1
    +    29-Sep-2000: 2.0 final
    +
     
     Guidelines for submitting patches and making changes
     
    @@ -30,9 +32,9 @@
         - Do whatever the dictator tells you.
     
         - Discuss any controversial changes on python-dev first.  If you
    -      get a lot of +1 votes and no -1 votes, make the change.  If you 
    -      get a some -1 votes, think twice; consider asking Guido what he 
    -      thinks. 
    +      get a lot of +1 votes and no -1 votes, make the change.  If you
    +      get a some -1 votes, think twice; consider asking Guido what he
    +      thinks.
     
         - If the change is to code you contributed, it probably makes
           sense for you to fix it.
    @@ -74,6 +76,7 @@
         an Open Source license.  Do not contribute code if it can't be
         released this way.
     
    +
     Failing test cases need to get fixed
     
         We need to resolve errors in the regression test suite quickly.
    @@ -83,16 +86,42 @@
         anyway, but that's another matter.)  If the test cases are known
         to fail, they serve no useful purpose.
     
    -    test case         platform   R B    date reported   note
    -    test_mmap          Win32     X X    July 26, 2000
    +    [what are the "R" and "B" columns supposed to mean? - tim]
    +
    +    test case         platform   R B    date reported
    +    ---------         --------   --     -------------
    +    test_winreg2      Win32      X X    26-Jul-2000
    +        [still fails 15-Aug-2000 for me, on Win98 - tim
    +         test test_winreg2 failed -- Writing: 'Test Failed: testHives',
    +         expected: 'HKEY_PERFORMANCE_DATA\012'
    +        ]
    +
    +    test_popen2       Win32      X X    26-Jul-2000
    +        [believe this was fix by /F]
    +        [still fails 15-Aug-2000 for me, on Win98 - tim
    +         test test_popen2 crashed -- exceptions.WindowsError :
    +         [Errno 2] The system cannot find the file specified
    +        ]
    +
    +    test_fork1        Linux      X      26-Jul-2000     just SMP?
    +        [no clue; there are probably two bugs here]
    +
    +
    +Previously failing test cases
    +
    +    If you find a test bouncing between this section and the previous one,
    +    the code it's testing is in trouble!
    +
    +    test case         platform   R B    date reported
    +    ---------         --------   --     -------------
    +    test_winreg        Win32     X X    26-Jul-2000
    +        [works 15-Aug-2000 for me, on Win98 - tim]
    +
    +    test_mmap          Win32     X X    26-Jul-2000
             [believe that was fixed by Mark H.]
    -    test_winreg        Win32     X X    July 26, 2000
    -    test_winreg2       Win32     X X    July 26, 2000
    -    test_popen2        Win32     X X    July 26, 2000   skipped
    -        [believe this was fix by /F]
    -    test_fork1         Linux     X      July 26, 2000   just SMP?  
    -        [no clue; there are probably two bugs here]
    -  
    +        [works 15-Aug-2000 for me, on Win98 - tim]
    +
    +
     Open items -- should be done/fixed
     
         Decoding errors when comparing strings.  There is a dictionary bug
    @@ -102,6 +131,14 @@
     
     Accepted and completed
     
    +    * Lockstep iteration ("zip" function) - Barry Warsaw
    +
    +    * SRE - Fredrik Lundh
    +      [at least I *think* it's done, as of 15-Aug-2000 - tim]
    +
    +    * Fix xrange printing behavior - Fred Drake
    +      [although I'm not sure what this one was talking about - tim]
    +
     
     Accepted and in progress
     
    @@ -115,9 +152,6 @@
         * Compression of Unicode database - Fredrik Lundh
           http://hem.passagen.se/eff/bot.htm#456806
     
    -    * SRE - Fredrik Lundh
    -      The test suite still fails on test_re.
    -
         * PyErr_SafeFormat / snprintf - owner???
           Use snprintf to avoid buffer overflows.  Need configure hackery
           to discovery if it is available on the current platform and a
    @@ -132,19 +166,18 @@
         * Range literals - Thomas Wouters
           Make range(1, 10, 2) == [1:10:2]
     
    +    * List comprehensions - Skip Montanaro (Tim Peters for PEP)
    +      Need a coherent proposal.  Lots of confusing discussion going
    +      on.
    +      [note: it's not confusing to Guido  - tim]
    +
     
     Open: proposed but not accepted or declined
     
    -    * Fix xrange printing behavior
    -
         * Tim O'Malley's cookie module -- but need different license
     
         * test harness for C code - Trent Mick
     
    -    * List comprehensions - Tim Peters?
    -      Need a coherent proposal.  Lots of confusing discussion going
    -      on.
    -
         * Eliminated SET_LINENO opcode - Vladimir Marangozov
           Small optimization achieved by using the code object's lnotab
           instead of the SET_LINENO instruction.  Uses code rewriting
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:46 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:46 +0100
    Subject: [Python-checkins] peps: Updated status of test_popen2 on Windows.
    Message-ID: 
    
    http://hg.python.org/peps/rev/8c06a6ebe54d
    changeset:   96:8c06a6ebe54d
    user:        Tim Peters 
    date:        Tue Aug 15 07:34:33 2000 +0000
    summary:
      Updated status of test_popen2 on Windows.
    
    files:
      pep-0200.txt |  12 +++++++-----
      1 files changed, 7 insertions(+), 5 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -89,7 +89,7 @@
         [what are the "R" and "B" columns supposed to mean? - tim]
     
         test case         platform   R B    date reported
    -    ---------         --------   --     -------------
    +    ---------         --------   - -    -------------
         test_winreg2      Win32      X X    26-Jul-2000
             [still fails 15-Aug-2000 for me, on Win98 - tim
              test test_winreg2 failed -- Writing: 'Test Failed: testHives',
    @@ -97,10 +97,12 @@
             ]
     
         test_popen2       Win32      X X    26-Jul-2000
    -        [believe this was fix by /F]
             [still fails 15-Aug-2000 for me, on Win98 - tim
    -         test test_popen2 crashed -- exceptions.WindowsError :
    -         [Errno 2] The system cannot find the file specified
    +             test test_popen2 crashed -- exceptions.AssertionError :
    +         The problem is that the test uses "cat", but there is
    +         no such thing under Windows (unless you install it).
    +         So it's the test that's broken here, not (necessarily)
    +         the code.
             ]
     
         test_fork1        Linux      X      26-Jul-2000     just SMP?
    @@ -113,7 +115,7 @@
         the code it's testing is in trouble!
     
         test case         platform   R B    date reported
    -    ---------         --------   --     -------------
    +    ---------         --------   - -    -------------
         test_winreg        Win32     X X    26-Jul-2000
             [works 15-Aug-2000 for me, on Win98 - tim]
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:46 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:46 +0100
    Subject: [Python-checkins] peps: Add a number of proposed but not accepted
    	or declined projects.	If you feel
    Message-ID: 
    
    http://hg.python.org/peps/rev/69a8d792aa5c
    changeset:   97:69a8d792aa5c
    user:        Thomas Wouters 
    date:        Tue Aug 15 07:47:12 2000 +0000
    summary:
      Add a number of proposed but not accepted or declined projects. If you feel
    these should not be in this PEP -- decline them! Also note that I put
    augmented assignment under proposed, even though Guido and Tim keep saying
    it will be in 2.0, because I still don't know whether the proposal itself is
    accepted :-)
    
    files:
      pep-0200.txt |  15 +++++++++++++++
      1 files changed, 15 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -196,6 +196,21 @@
     
           - http://www.python.org/pipermail/python-dev/1999-August/002252.html
     
    +    * Augmented assignment - Thomas Wouters
    +      Add += and family, plus Python and C hooks, and API functions.
    +
    +    * "import as" - Thomas Wouters
    +      Extend the 'import' and 'from ... import' mechanism to enable
    +      importing a symbol as another name.
    +
    +    * Extended slicing on lists - Michael Hudson
    +      Make lists (and other builtin types) handle extended slices.
    +
    +    * Merge __getitem__ and __getslice__ - Thomas Wouters
    +      Move __getslice__ functionality into __getitem__, using slice objects,
    +      for normal slices as well as for extended ones. First step: use
    +      getitem if there is no getslice.
    +      
     
     Declined
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:47 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:47 +0100
    Subject: [Python-checkins] peps: Add one more proposed item,
    	and change some wording on the 'import as' item.
    Message-ID: 
    
    http://hg.python.org/peps/rev/4c8795c09a61
    changeset:   98:4c8795c09a61
    user:        Thomas Wouters 
    date:        Tue Aug 15 08:05:42 2000 +0000
    summary:
      Add one more proposed item, and change some wording on the 'import as' item.
    
    files:
      pep-0200.txt |  6 +++++-
      1 files changed, 5 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -201,7 +201,7 @@
     
         * "import as" - Thomas Wouters
           Extend the 'import' and 'from ... import' mechanism to enable
    -      importing a symbol as another name.
    +      importing a symbol as another name. (Without adding a new keyword.)
     
         * Extended slicing on lists - Michael Hudson
           Make lists (and other builtin types) handle extended slices.
    @@ -211,6 +211,10 @@
           for normal slices as well as for extended ones. First step: use
           getitem if there is no getslice.
           
    +    * 'indexing-for' - Thomas Wouters
    +      Special syntax to give Python code access to the loop-counter in 'for'
    +      loops. (Without adding a new keyword.)
    +
     
     Declined
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:50 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:50 +0100
    Subject: [Python-checkins] peps: remove superfluous special casing for lines
    	beginning with '[*]'
    Message-ID: 
    
    http://hg.python.org/peps/rev/259ddc1244c7
    changeset:   99:259ddc1244c7
    user:        Peter Schneider-Kamp 
    date:        Tue Aug 15 10:35:17 2000 +0000
    summary:
      remove superfluous special casing for lines beginning with '[*]'
    
    files:
      pep2html.py |  2 +-
      1 files changed, 1 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep2html.py b/pep2html.py
    --- a/pep2html.py
    +++ b/pep2html.py
    @@ -118,7 +118,7 @@
             if not line:
                 break
             if line[0] != "\f":
    -            if line[0].strip() and line[:3] != '[*]':
    +            if line[0].strip():
                     if line.strip() == LOCALVARS:
                         break
                     fo.write("
    \n

    %s

    \n
    " % line.strip())
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:24:59 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:24:59 +0100
    Subject: [Python-checkins] peps: Add PEP 221: "Import As",
    	as posted on python-dev.
    Message-ID: 
    
    http://hg.python.org/peps/rev/ea3bbd855a3d
    changeset:   100:ea3bbd855a3d
    user:        Thomas Wouters 
    date:        Tue Aug 15 13:42:44 2000 +0000
    summary:
      Add PEP 221: "Import As", as posted on python-dev.
    
    files:
      pep-0221.txt |  109 +++++++++++++++++++++++++++++++++++++++
      1 files changed, 109 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0221.txt b/pep-0221.txt
    new file mode 100644
    --- /dev/null
    +++ b/pep-0221.txt
    @@ -0,0 +1,109 @@
    +PEP: 221
    +Title: Import As
    +Version: $Revision$
    +Owner: thomas at xs4all.net (Thomas Wouters)
    +Python-Version: 2.0
    +Status: Draft
    +Created: 15-Aug-2000
    +Type: Standard
    +
    +
    +Introduction
    +
    +    This PEP describes the `import as' proposal for Python 2.0. This
    +    PEP tracks the status and ownership of this feature. It contains a
    +    description of the feature and outlines changes necessary to
    +    support the feature. The CVS revision history of this file
    +    contains the definitive historical record.
    +
    +
    +Rationale
    +
    +    This PEP proposes a small extention of current Python syntax
    +    regarding the `import' and `from  import' statements. 
    +    These statements load in a module, and either bind that module to
    +    a local name, or binds objects from that module to a local name. 
    +    However, it is sometimes desirable to bind those objects to a
    +    different name, for instance to avoid name clashes. Currently, a
    +    round-about way has to be used to achieve this:
    +
    +    import os
    +    real_os = os
    +    del os
    +    
    +    And similar for the `from ... import' statement:
    +    
    +    from os import fdopen, exit, stat
    +    os_fdopen = fdopen
    +    os_stat = stat
    +    del fdopen, stat
    +    
    +    The proposed syntax change would add an optional `as' clause to
    +    both these statements, as follows:
    +
    +    import os as real_os
    +    from os import fdopen as os_fdopen, exit, stat as os_stat
    +    
    +    The `as' name is not intended to be a keyword, and some trickery
    +    has to be used to convince the CPython parser it isn't one. For
    +    more advanced parsers/tokenizers, however, this should not be a
    +    problem.
    +
    +
    +Implementation details
    +
    +    A proposed implementation of this new clause can be found in the
    +    SourceForge patch manager[XX]. The patch uses a NAME field in the
    +    grammar rather than a bare string, to avoid the keyword issue. It
    +    also introduces a new bytecode, IMPORT_FROM_AS, which loads an
    +    object from a module and pushes it onto the stack, so it can be
    +    stored by a normal STORE_NAME opcode.
    +    
    +    The special case of `from module import *' remains a special case,
    +    in that it cannot accomodate an `as' clause. Also, the current
    +    implementation does not use IMPORT_FROM_AS for the old form of
    +    from-import, even though it would make sense to do so. The reason
    +    for this is that the current IMPORT_FROM bytecode loads objects
    +    directly from a module into the local namespace, in one bytecode
    +    operation, and also handles the special case of `*'. As a result
    +    of moving to the IMPORT_FROM_AS bytecode, two things would happen:
    +    
    +    - Two bytecode operations would have to be performed, per symbol,
    +      rather than one.
    +      
    +    - The names imported through `from-import' would be susceptible to
    +      the `global' keyword, which they currently are not. This means
    +      that `from-import' outside of the `*' special case behaves more
    +      like the normal `import' statement, which already follows the
    +      `global' keyword. It also means, however, that the `*' special
    +      case is even more special, compared to the ordinary form of
    +      `from-import'
    +
    +    However, for consistency and for simplicity of implementation, it
    +    is probably best to split off the special case entirely, making a
    +    separate bytecode `IMPORT_ALL' that handles the special case of
    +    `*', and handle all other forms of `from-import' the way the
    +    proposed `IMPORT_FROM_AS' bytecode does.
    +
    +    This dilemma does not apply to the normal `import' statement,
    +    because this is alread split into two opcodes, a `LOAD_MODULE' and a
    +    `STORE_NAME' opcode. Supporting the `import as' syntax is a slight
    +    change to the compiler only.
    +
    +
    +Copyright
    +
    +    This document has been placed in the Public Domain.
    +
    +
    +References
    +
    +    [1]
    +http://sourceforge.net/patch/?func=detailpatch&patch_id=101135&group_id=5470
    +
    +
    +
    +Local Variables:
    +mode: indented-text
    +indent-tabs-mode: nil
    +End:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:00 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:00 +0100
    Subject: [Python-checkins] peps: PEP 221, Import As, assigned Thomas Wouters
    Message-ID: 
    
    http://hg.python.org/peps/rev/90adc9fd593d
    changeset:   101:90adc9fd593d
    user:        Barry Warsaw 
    date:        Tue Aug 15 14:29:21 2000 +0000
    summary:
      PEP 221, Import As, assigned Thomas Wouters
    
    files:
      pep-0000.txt |  1 +
      1 files changed, 1 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -45,6 +45,7 @@
      S   218  pep-0218.txt  Adding a Built-In Set Object Type     gvwilson
      T   219  pep-0219.txt  Stackless Python                      gmcm
      I   220  pep-0220.txt  Coroutines, Generators, Continuations gmcm
    + S   221  pep-0221.txt  Import As                             twouters
     
     
     Key
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:01 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:01 +0100
    Subject: [Python-checkins] peps: added gettext module under proposed section
    Message-ID: 
    
    http://hg.python.org/peps/rev/d5ba5b728024
    changeset:   102:d5ba5b728024
    user:        Barry Warsaw 
    date:        Tue Aug 15 17:09:19 2000 +0000
    summary:
      added gettext module under proposed section
    
    files:
      pep-0200.txt |  3 +++
      1 files changed, 3 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -215,6 +215,9 @@
           Special syntax to give Python code access to the loop-counter in 'for'
           loops. (Without adding a new keyword.)
     
    +    * Integrated gettext module - Barry Warsaw
    +      wrapper around standard internationalization libraries
    +
     
     Declined
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:02 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:02 +0100
    Subject: [Python-checkins] peps: Updated discussion,
    	including two open issues.  I've also changed the
    Message-ID: 
    
    http://hg.python.org/peps/rev/a92de4b1c4b9
    changeset:   103:a92de4b1c4b9
    user:        Barry Warsaw 
    date:        Tue Aug 15 22:45:06 2000 +0000
    summary:
      Updated discussion, including two open issues.  I've also changed the
    Python-Version to 2.1 since this probably needs more discussion,
    unless the BDFL pronounces favorably on it.
    
    files:
      pep-0214.txt |  59 +++++++++++++++++++++++++--------------
      1 files changed, 37 insertions(+), 22 deletions(-)
    
    
    diff --git a/pep-0214.txt b/pep-0214.txt
    --- a/pep-0214.txt
    +++ b/pep-0214.txt
    @@ -1,12 +1,13 @@
     PEP: 214
     Title: Extended Print Statement
     Version: $Revision$
    -Owner: bwarsaw at beopen.com (Barry A. Warsaw)
    -Python-Version: 2.0
    +Author: bwarsaw at beopen.com (Barry A. Warsaw)
    +Python-Version: 2.1
     Status: Draft
    +Created: 24-Jul-2000
    +Post-History:
     
     
    -
     Introduction
     
         This PEP describes a syntax to extend the standard `print'
    @@ -20,7 +21,6 @@
         record.
     
     
    -
     Justification
     
         `print' is a Python keyword and introduces the print statement as
    @@ -52,8 +52,10 @@
         if we added a call to a function that actually did want to print
         to stdout, this output too would get redirected to the logfile.
     
    +    This approach is also very inconvenient for interleaving prints to
    +    various output streams.
     
    -
    +
     Proposal
     
         This proposal introduces a syntax change to the print statement,
    @@ -74,28 +76,42 @@
             print >> sys.stdout, 'hello world'
     
     
    -
    +Open Issues
    +
    +    What should the following do?
    +
    +        print >> file
    +        print >> file,
    +
    +    In the current implementation (see below), the first is a
    +    SyntaxError and the second prints nothing to file.  This is likely
    +    counterintuitive; the first should print just a newline, making
    +    these equivalent:
    +
    +        print >> sys.stdout
    +        print
    +
    +    The second should print just a space and no newline to file.  It
    +    doesn't have a non-extended print equivalent, since this is
    +    illegal:
    +
    +        print ,
    +
    +    The closes equivalent is:
    +
    +        print '',
    +    
    +
     Reference Implementation
     
         A reference implementation, in the form of a patch against the
         Python 2.0 source tree, is available on SourceForge's patch
    -    manager[2].  The approach this patch takes is to introduce two new
    -    opcodes, one which temporarily rebinds sys.stdout to the specified
    -    file object, performs the print as normal, and then bind
    -    sys.stdout back to sys.__stdout__ (which is the real physical
    -    standard out and should not be changed).  In some ways this is
    -    equivalent to the try/finally idiom above, except that the
    -    rebinding of sys.stdout is in effect only for the duration of the
    -    print statement itself.
    +    manager[2].  This approach adds two new opcodes, PRINT_ITEM_TO and
    +    PRINT_NEWLINE_TO, which simply pop the file like object off the
    +    top of the stack and use it instead of sys.stdout as the output
    +    stream.
     
    -    An alternative approach is possible, where only one new opcode is
    -    added.  This opcode would be exactly like the existing PRINT_ITEM
    -    opcode except that it would find the target file object at the top
    -    of the stack, and use this file instead of digging it out of
    -    sys.stdout.
     
    -
    -
     Alternative Approaches
     
         An alternative to this syntax change has been proposed (originally
    @@ -139,7 +155,6 @@
         in between each item.
     
     
    -
     References
     
         [1] http://www.python.org/doc/current/ref/print.html
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:05 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:05 +0100
    Subject: [Python-checkins] peps: Record new test_longexp bug. Move augmented
    	assignments to "in	progress".
    Message-ID: 
    
    http://hg.python.org/peps/rev/31a947b2ea09
    changeset:   104:31a947b2ea09
    user:        Tim Peters 
    date:        Wed Aug 16 03:17:18 2000 +0000
    summary:
      Record new test_longexp bug.  Move augmented assignments to "in progress".
    
    files:
      pep-0200.txt |  17 +++++++++++++----
      1 files changed, 13 insertions(+), 4 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -90,6 +90,15 @@
     
         test case         platform   R B    date reported
         ---------         --------   - -    -------------
    +    test_longexp      Win98+?    ? ?    15-Aug-2000
    +        [fails in release build,
    +         passes in release build under verbose mode but doesn't
    +             look like it should pass,
    +         passes in debug build,
    +         passes in debug build under verbose mode and looks like
    +             it should pass
    +        ]
    +
         test_winreg2      Win32      X X    26-Jul-2000
             [still fails 15-Aug-2000 for me, on Win98 - tim
              test test_winreg2 failed -- Writing: 'Test Failed: testHives',
    @@ -173,6 +182,9 @@
           on.
           [note: it's not confusing to Guido  - tim]
     
    +    * Augmented assignment - Thomas Wouters
    +      Add += and family, plus Python and C hooks, and API functions.
    +
     
     Open: proposed but not accepted or declined
     
    @@ -196,9 +208,6 @@
     
           - http://www.python.org/pipermail/python-dev/1999-August/002252.html
     
    -    * Augmented assignment - Thomas Wouters
    -      Add += and family, plus Python and C hooks, and API functions.
    -
         * "import as" - Thomas Wouters
           Extend the 'import' and 'from ... import' mechanism to enable
           importing a symbol as another name. (Without adding a new keyword.)
    @@ -210,7 +219,7 @@
           Move __getslice__ functionality into __getitem__, using slice objects,
           for normal slices as well as for extended ones. First step: use
           getitem if there is no getslice.
    -      
    +
         * 'indexing-for' - Thomas Wouters
           Special syntax to give Python code access to the loop-counter in 'for'
           loops. (Without adding a new keyword.)
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:06 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:06 +0100
    Subject: [Python-checkins] peps: PEP 214 completed after channeling and
    	encouragement from Tim	Peters.
    Message-ID: 
    
    http://hg.python.org/peps/rev/e62a08b0a247
    changeset:   105:e62a08b0a247
    user:        Barry Warsaw 
    date:        Wed Aug 16 14:59:57 2000 +0000
    summary:
      PEP 214 completed after channeling and encouragement from Tim Peters.
    The referenced SF patch is current with this description.
    
    The proposal section is moved to before the justification.
    
    files:
      pep-0214.txt |  87 ++++++++++++++++-----------------------
      1 files changed, 36 insertions(+), 51 deletions(-)
    
    
    diff --git a/pep-0214.txt b/pep-0214.txt
    --- a/pep-0214.txt
    +++ b/pep-0214.txt
    @@ -2,10 +2,10 @@
     Title: Extended Print Statement
     Version: $Revision$
     Author: bwarsaw at beopen.com (Barry A. Warsaw)
    -Python-Version: 2.1
    +Python-Version: 2.0
     Status: Draft
     Created: 24-Jul-2000
    -Post-History:
    +Post-History: 16-Aug-2000
     
     
     Introduction
    @@ -21,6 +21,37 @@
         record.
     
     
    +Proposal
    +
    +    This proposal introduces a syntax extension to the print
    +    statement, which allows the programmer to optionally specify the
    +    output file target.  An example usage is as follows:
    +
    +        print >> mylogfile, 'this message goes to my log file'
    +
    +    Formally, the syntax of the extended print statement is
    +    
    +        print_stmt: ... | '>>' test [ (',' test)+ [','] ] )
    +
    +    where the ellipsis indicates the original print_stmt syntax
    +    unchanged.  In the extended form, the expression just after >>
    +    must yield an object with a write() method (i.e. a file-like
    +    object).  Thus these two statements are equivalent:
    +
    +	print 'hello world'
    +        print >> sys.stdout, 'hello world'
    +
    +    As are these two statements:
    +
    +        print
    +        print >> sys.stdout
    +
    +    These two statements are syntax errors:
    +
    +        print ,
    +        print >> sys.stdout,
    +
    +
     Justification
     
         `print' is a Python keyword and introduces the print statement as
    @@ -40,12 +71,11 @@
         method, but it can be rebound to redirect output to files other
         than specifically standard output.  A typical idiom is
     
    -	oldstdout = sys.stdout
             sys.stdout = mylogfile
     	try:
     	    print 'this message goes to my log file'
     	finally:
    -	    sys.stdout = oldstdout
    +	    sys.stdout = sys.__stdout__
     
         The problem with this approach is that the binding is global, and
         so affects every statement inside the try: clause.  For example,
    @@ -53,55 +83,10 @@
         to stdout, this output too would get redirected to the logfile.
     
         This approach is also very inconvenient for interleaving prints to
    -    various output streams.
    +    various output streams, and complicates coding in the face of
    +    legitimate try/except or try/finally clauses.
     
     
    -Proposal
    -
    -    This proposal introduces a syntax change to the print statement,
    -    which allows the programmer to optionally specify the output file
    -    target.  An example usage is as follows:
    -
    -        print >> mylogfile, 'this message goes to my log file'
    -
    -    Formally, the syntax of the extended print statement is
    -
    -        print_stmt: "print" [">>" expr ","] [ expr ("," expr)* [","] ]
    -
    -    Where the the expression just after >> must yield an object with a
    -    write() method (i.e. a file-like object).  Thus these two
    -    statements are equivalent:
    -
    -	print 'hello world'
    -        print >> sys.stdout, 'hello world'
    -
    -
    -Open Issues
    -
    -    What should the following do?
    -
    -        print >> file
    -        print >> file,
    -
    -    In the current implementation (see below), the first is a
    -    SyntaxError and the second prints nothing to file.  This is likely
    -    counterintuitive; the first should print just a newline, making
    -    these equivalent:
    -
    -        print >> sys.stdout
    -        print
    -
    -    The second should print just a space and no newline to file.  It
    -    doesn't have a non-extended print equivalent, since this is
    -    illegal:
    -
    -        print ,
    -
    -    The closes equivalent is:
    -
    -        print '',
    -    
    -
     Reference Implementation
     
         A reference implementation, in the form of a patch against the
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:08 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:08 +0100
    Subject: [Python-checkins] peps: Tim forgot to include PEP 214 feature under
    	"proposed but not	accepted
    Message-ID: 
    
    http://hg.python.org/peps/rev/155549e70847
    changeset:   106:155549e70847
    user:        Barry Warsaw 
    date:        Wed Aug 16 15:03:52 2000 +0000
    summary:
      Tim forgot to include PEP 214 feature under "proposed but not accepted
    or declined".
    
    files:
      pep-0200.txt |  6 ++++++
      1 files changed, 6 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -227,6 +227,12 @@
         * Integrated gettext module - Barry Warsaw
           wrapper around standard internationalization libraries
     
    +    * Extended print statement - Barry Warsaw
    +      PEP 214
    +      http://python.sourceforge.net/peps/pep-0214.html
    +      SF Patch #100970
    +      http://sourceforge.net/patch/?func=detailpatch&patch_id=100970&group_id=5470
    +
     
     Declined
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:11 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:11 +0100
    Subject: [Python-checkins] peps: Two typo corrections found by Terry Reedy.
    Message-ID: 
    
    http://hg.python.org/peps/rev/16b507d846b6
    changeset:   107:16b507d846b6
    user:        Barry Warsaw 
    date:        Thu Aug 17 02:53:00 2000 +0000
    summary:
      Two typo corrections found by Terry Reedy.
    
    files:
      pep-0001.txt |  14 +++++++-------
      1 files changed, 7 insertions(+), 7 deletions(-)
    
    
    diff --git a/pep-0001.txt b/pep-0001.txt
    --- a/pep-0001.txt
    +++ b/pep-0001.txt
    @@ -11,7 +11,7 @@
     
     What is a PEP?
     
    -    PEP standards for Python Enhancement Proposal.  A PEP is a design
    +    PEP stands for Python Enhancement Proposal.  A PEP is a design
         document providing information to the Python community, or
         describing a new feature for Python.  The PEP should provide a
         concise technical specification of the feature and a rationale for
    @@ -184,12 +184,12 @@
         Draft phase), a Discussions-To: header will indicate the mailing
         list or URL where the PEP is being discussed.
     
    -    PEP heading should begin in column zero and should be capitalized.
    -    The body of each section should be indented 4 spaces.  Code
    -    samples inside body sections should be indented a further 4
    -    spaces, and other indentation can be used as required to make the
    -    text readable.  You should use two blank lines between the last
    -    line of a section's body and the next section heading.
    +    PEP headings should begin in column zero and should be
    +    capitalized.  The body of each section should be indented 4
    +    spaces.  Code samples inside body sections should be indented a
    +    further 4 spaces, and other indentation can be used as required to
    +    make the text readable.  You should use two blank lines between
    +    the last line of a section's body and the next section heading.
     
         No tabs should appear in the document at all.  A PEP should
         include the Emacs stanza included by example in this PEP to aid
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:13 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:13 +0100
    Subject: [Python-checkins] peps: Added a link to the SF CVSweb pages where
    	the PEP histories can	be
    Message-ID: 
    
    http://hg.python.org/peps/rev/70c00d75dd56
    changeset:   108:70c00d75dd56
    user:        Barry Warsaw 
    date:        Thu Aug 17 03:11:08 2000 +0000
    summary:
      Added a link to the SF CVSweb pages where the PEP histories can be
    retrieved.
    
    files:
      pep-0001.txt |  18 +++++++++++++-----
      1 files changed, 13 insertions(+), 5 deletions(-)
    
    
    diff --git a/pep-0001.txt b/pep-0001.txt
    --- a/pep-0001.txt
    +++ b/pep-0001.txt
    @@ -25,7 +25,7 @@
     
         Because the PEPs are maintained as plain text files under CVS
         control, their revision history is the historical record of the
    -    feature proposal.
    +    feature proposal[1].
         
     
     Kinds of PEPs
    @@ -129,7 +129,7 @@
     
         4. Copyright/public domain -- Each PEP must either be explicitly
            labelled in the public domain or the Open Publication
    -       License[1].
    +       License[2].
     
         5. Specification -- The technical specification should describe
            the syntax and semantics of any new language feature.  The
    @@ -162,7 +162,7 @@
     
         PEPs are written in plain ASCII text, and should adhere to a
         rigid style.  There is a Python script that parses this style and
    -    converts the plain text PEP to HTML for viewing on the web[2].
    +    converts the plain text PEP to HTML for viewing on the web[3].
     
         Each PEP begins with an RFC822 style header section.  Required
         headers are as follows, and must appear in this order:
    @@ -209,13 +209,21 @@
     
     References and Footnotes
     
    -    [1] http://www.opencontent.org/openpub/
    +    [1] This historical record is available by the normal CVS commands
    +    for retrieving older revisions.  For those without direct access
    +    to the CVS tree, you can browse the current and past PEP revisions
    +    via the SourceForge web site at
     
    -    [2] The script referred to here is pep2html.py, which lives in
    +    http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/python/nondist/peps/?cvsroot=python
    +
    +    [2] http://www.opencontent.org/openpub/
    +
    +    [3] The script referred to here is pep2html.py, which lives in
         the same directory in the CVS tree as the PEPs themselves.  Try
         "pep2html.py --help" for details.
     
     
    +
     
     Local Variables:
     mode: indented-text
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:13 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:13 +0100
    Subject: [Python-checkins] peps: Another typo caught by Terry Reedy.
    Message-ID: 
    
    http://hg.python.org/peps/rev/17251d28afdb
    changeset:   109:17251d28afdb
    user:        Barry Warsaw 
    date:        Thu Aug 17 03:19:42 2000 +0000
    summary:
      Another typo caught by Terry Reedy.
    
    files:
      pep-0000.txt |  2 +-
      1 files changed, 1 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -18,7 +18,7 @@
     
          num  filename      title                                 owner
          ---  ------------  -----                                 -----
    - I     0  pep-0000.txt  Index of Python Enhance Proposals     bwarsaw
    + I     0  pep-0000.txt  Index of Python Enhancement Proposals bwarsaw
      I     1  pep-0001.txt  PEP Guidelines                        bwarsaw, jhylton
      I     2  pep-0002.txt  Procedure for Adding New Modules      esr
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:16 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:16 +0100
    Subject: [Python-checkins] peps: Linkify the Author: fields with mailto urls.
    Message-ID: 
    
    http://hg.python.org/peps/rev/7cf39e997171
    changeset:   110:7cf39e997171
    user:        Barry Warsaw 
    date:        Thu Aug 17 04:27:04 2000 +0000
    summary:
      Linkify the Author: fields with mailto urls.
    
    files:
      pep2html.py |  14 +++++++++++++-
      1 files changed, 13 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep2html.py b/pep2html.py
    --- a/pep2html.py
    +++ b/pep2html.py
    @@ -108,8 +108,20 @@
         fo.write('\n'
                  '
    \n\n') for k, v in header: + if k.lower() == 'author': + mailtos = [] + for addr in v.split(): + if '@' in addr: + mailtos.append( + '%s' % + (addr, pep, addr)) + else: + mailtos.append(addr) + v = ' '.join(mailtos) + else: + v = cgi.escape(v) fo.write(" \n" - % (cgi.escape(k), cgi.escape(v))) + % (cgi.escape(k), v)) title = 0 fo.write("
    %s:%s
    \n
    \n
    \n" "
    ")
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:17 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:17 +0100
    Subject: [Python-checkins] peps: Add a link to the PEPs themselves in
    	footnote 3, suggested by Peter
    Message-ID: 
    
    http://hg.python.org/peps/rev/cb0b91e27e61
    changeset:   111:cb0b91e27e61
    user:        Barry Warsaw 
    date:        Thu Aug 17 05:01:20 2000 +0000
    summary:
      Add a link to the PEPs themselves in footnote 3, suggested by Peter
    Schneider-Kamp.
    
    files:
      pep-0001.txt |  3 +++
      1 files changed, 3 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0001.txt b/pep-0001.txt
    --- a/pep-0001.txt
    +++ b/pep-0001.txt
    @@ -222,6 +222,9 @@
         the same directory in the CVS tree as the PEPs themselves.  Try
         "pep2html.py --help" for details.
     
    +    The URL for viewing PEPs on the web is
    +    http://python.sourceforge.net/peps/
    +
     
     
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:26 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:26 +0100
    Subject: [Python-checkins] peps: Based on BDFL pronouncement,
    	this PEP will be reconsidered for Python
    Message-ID: 
    
    http://hg.python.org/peps/rev/c4468c2b8717
    changeset:   112:c4468c2b8717
    user:        Barry Warsaw 
    date:        Thu Aug 17 20:59:35 2000 +0000
    summary:
      Based on BDFL pronouncement, this PEP will be reconsidered for Python
    2.1.  It will not be included in Python 2.0.
    
    files:
      pep-0214.txt |  2 +-
      1 files changed, 1 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0214.txt b/pep-0214.txt
    --- a/pep-0214.txt
    +++ b/pep-0214.txt
    @@ -2,7 +2,7 @@
     Title: Extended Print Statement
     Version: $Revision$
     Author: bwarsaw at beopen.com (Barry A. Warsaw)
    -Python-Version: 2.0
    +Python-Version: 2.1
     Status: Draft
     Created: 24-Jul-2000
     Post-History: 16-Aug-2000
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:27 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:27 +0100
    Subject: [Python-checkins] peps: Close test_longexp bug. Changes in status
    	based on what I	remember
    Message-ID: 
    
    http://hg.python.org/peps/rev/06b8cbd12211
    changeset:   113:06b8cbd12211
    user:        Tim Peters 
    date:        Fri Aug 18 04:25:33 2000 +0000
    summary:
      Close test_longexp bug.  Changes in status based on what I remember
    from way too much email today.
    
    files:
      pep-0200.txt |  76 +++++++++++++++++++++++----------------
      1 files changed, 44 insertions(+), 32 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -90,15 +90,6 @@
     
         test case         platform   R B    date reported
         ---------         --------   - -    -------------
    -    test_longexp      Win98+?    ? ?    15-Aug-2000
    -        [fails in release build,
    -         passes in release build under verbose mode but doesn't
    -             look like it should pass,
    -         passes in debug build,
    -         passes in debug build under verbose mode and looks like
    -             it should pass
    -        ]
    -
         test_winreg2      Win32      X X    26-Jul-2000
             [still fails 15-Aug-2000 for me, on Win98 - tim
              test test_winreg2 failed -- Writing: 'Test Failed: testHives',
    @@ -132,6 +123,22 @@
             [believe that was fixed by Mark H.]
             [works 15-Aug-2000 for me, on Win98 - tim]
     
    +    test_longexp      Win98+?    ? ?    15-Aug-2000
    +        [fails in release build,
    +         passes in release build under verbose mode but doesn't
    +             look like it should pass,
    +         passes in debug build,
    +         passes in debug build under verbose mode and looks like
    +             it should pass
    +        ]
    +        [18-Aug-2000, tim:  can't reproduce, and nobody else
    +         saw it.  I believe there *is* a subtle bug in
    +         regrtest.py when using -v, and I'll pursue that,
    +         but can't provoke anything wrong with test_longexp
    +         anymore; eyeballing Fred's changes didn't turn up
    +         a suspect either
    +        ]
    +
     
     Open items -- should be done/fixed
     
    @@ -139,6 +146,8 @@
         that prevents objects from being accessible when an exception is
         raised during hashing or comparison.
     
    +    Decide what to do about os.path.commonprefix.  Then do it.
    +
     
     Accepted and completed
     
    @@ -185,13 +194,37 @@
         * Augmented assignment - Thomas Wouters
           Add += and family, plus Python and C hooks, and API functions.
     
    +    * "import as" - Thomas Wouters
    +      Extend the 'import' and 'from ... import' mechanism to enable
    +      importing a symbol as another name. (Without adding a new keyword.)
     
    -Open: proposed but not accepted or declined
    +    * Merge __getitem__ and __getslice__ - Thomas Wouters
    +      Move __getslice__ functionality into __getitem__, using slice objects,
    +      for normal slices as well as for extended ones. First step: use
    +      getitem if there is no getslice.
    +
    +
    +Open: proposed but not accepted or rejected
     
         * Tim O'Malley's cookie module -- but need different license
     
         * test harness for C code - Trent Mick
     
    +    * Extended slicing on lists - Michael Hudson
    +      Make lists (and other builtin types) handle extended slices.
    +
    +    * Integrated gettext module - Barry Warsaw
    +      wrapper around standard internationalization libraries
    +
    +
    +Postponed
    +
    +    * Extended print statement - Barry Warsaw
    +      PEP 214
    +      http://python.sourceforge.net/peps/pep-0214.html
    +      SF Patch #100970
    +      http://sourceforge.net/patch/?func=detailpatch&patch_id=100970&group_id=5470
    +
         * Eliminated SET_LINENO opcode - Vladimir Marangozov
           Small optimization achieved by using the code object's lnotab
           instead of the SET_LINENO instruction.  Uses code rewriting
    @@ -208,34 +241,13 @@
     
           - http://www.python.org/pipermail/python-dev/1999-August/002252.html
     
    -    * "import as" - Thomas Wouters
    -      Extend the 'import' and 'from ... import' mechanism to enable
    -      importing a symbol as another name. (Without adding a new keyword.)
     
    -    * Extended slicing on lists - Michael Hudson
    -      Make lists (and other builtin types) handle extended slices.
    -
    -    * Merge __getitem__ and __getslice__ - Thomas Wouters
    -      Move __getslice__ functionality into __getitem__, using slice objects,
    -      for normal slices as well as for extended ones. First step: use
    -      getitem if there is no getslice.
    +Rejected
     
         * 'indexing-for' - Thomas Wouters
           Special syntax to give Python code access to the loop-counter in 'for'
           loops. (Without adding a new keyword.)
     
    -    * Integrated gettext module - Barry Warsaw
    -      wrapper around standard internationalization libraries
    -
    -    * Extended print statement - Barry Warsaw
    -      PEP 214
    -      http://python.sourceforge.net/peps/pep-0214.html
    -      SF Patch #100970
    -      http://sourceforge.net/patch/?func=detailpatch&patch_id=100970&group_id=5470
    -
    -
    -Declined
    -
     
     
     Local Variables:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:27 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:27 +0100
    Subject: [Python-checkins] peps: Added PEP 222, Web Library Enhancements,
    	assigned to akuchlin.
    Message-ID: 
    
    http://hg.python.org/peps/rev/d0e223c0ab4e
    changeset:   114:d0e223c0ab4e
    user:        Barry Warsaw 
    date:        Fri Aug 18 15:21:45 2000 +0000
    summary:
      Added PEP 222, Web Library Enhancements, assigned to akuchlin.
    
    files:
      pep-0000.txt |   2 +-
      pep-0222.txt |  23 +++++++++++++++++++++++
      2 files changed, 24 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -46,7 +46,7 @@
      T   219  pep-0219.txt  Stackless Python                      gmcm
      I   220  pep-0220.txt  Coroutines, Generators, Continuations gmcm
      S   221  pep-0221.txt  Import As                             twouters
    -
    + S   222  pep-0222.txt  Web Library Enhancements              akuchlin
     
     Key
     
    diff --git a/pep-0222.txt b/pep-0222.txt
    new file mode 100644
    --- /dev/null
    +++ b/pep-0222.txt
    @@ -0,0 +1,23 @@
    +PEP: 222
    +Title: Web Library Enhancements
    +Version: $Revision$
    +Author: akuchlin at mems-exchange.org
    +Status: Active
    +Type: Standards Track
    +Created: 18-Aug-2000
    +Post-History:
    +
    +
    +Abstract
    +
    +    This PEP proposes a set of enhancements to the CGI development
    +    facilities in the Python standard library.  Enhancements might be
    +    new features, new modules for tasks such as cookie support, or
    +    removal of obsolete code.
    +
    +
    +
    +Local Variables:
    +mode: indented-text
    +indent-tabs-mode: nil
    +End:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:28 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:28 +0100
    Subject: [Python-checkins] peps: Clarify the what the xrange representation
    	issue was.
    Message-ID: 
    
    http://hg.python.org/peps/rev/cfaed15efd04
    changeset:   115:cfaed15efd04
    user:        Fred Drake 
    date:        Fri Aug 18 20:26:47 2000 +0000
    summary:
      Clarify the what the xrange representation issue was.
    
    files:
      pep-0200.txt |  7 ++++++-
      1 files changed, 6 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -157,7 +157,12 @@
           [at least I *think* it's done, as of 15-Aug-2000 - tim]
     
         * Fix xrange printing behavior - Fred Drake
    -      [although I'm not sure what this one was talking about - tim]
    +      Remove the tp_print handler for the xrange type; it produced a
    +      list display instead of 'xrange(...)'.  The new code produces a
    +      minimal call to xrange(), enclosed in (... * N) when N != 1.
    +      This makes the repr() more human readable while making it do
    +      what reprs are advertised as doing.  It also makes the xrange
    +      objects obvious when working in the interactive interpreter.
     
     
     Accepted and in progress
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:28 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:28 +0100
    Subject: [Python-checkins] peps: Updated all the bug entries. Rehabilitated
    	extended print.	Added latest
    Message-ID: 
    
    http://hg.python.org/peps/rev/03cef15679e5
    changeset:   116:03cef15679e5
    user:        Tim Peters 
    date:        Sun Aug 20 03:25:22 2000 +0000
    summary:
      Updated all the bug entries.  Rehabilitated extended print.  Added latest
    commonprefix development.  Added info about impending death of winreg.py.
    
    files:
      pep-0200.txt |  43 ++++++++++++++++++++++++++++++++++-----
      1 files changed, 37 insertions(+), 6 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -91,6 +91,12 @@
         test case         platform   R B    date reported
         ---------         --------   - -    -------------
         test_winreg2      Win32      X X    26-Jul-2000
    +        [19-Aug-2000 tim
    +         This test will never work on Win98, because it's looking for
    +         a part of registry that doesn't exist under W98.
    +         The module (winreg.py) and this test case will be removed
    +         before 2.0 for other reasons, though.
    +        ]
             [still fails 15-Aug-2000 for me, on Win98 - tim
              test test_winreg2 failed -- Writing: 'Test Failed: testHives',
              expected: 'HKEY_PERFORMANCE_DATA\012'
    @@ -107,6 +113,13 @@
     
         test_fork1        Linux      X      26-Jul-2000     just SMP?
             [no clue; there are probably two bugs here]
    +        [19-Aug-200 tim
    +         Charles Waldman whipped up a patch to give child processes a new
    +         "global lock":
    +         http://sourceforge.net/patch/?func=detailpatch&patch_id=101226&group_id=5470
    +         While this doesn't appear to address the symptoms we *saw*, it
    +         *does* so far appear to be fixing the failing cases anyway
    +        ]
     
     
     Previously failing test cases
    @@ -137,6 +150,11 @@
              but can't provoke anything wrong with test_longexp
              anymore; eyeballing Fred's changes didn't turn up
              a suspect either
    +         19-Aug-2000, tim: the "subtle bug" in regrtest.py -v is
    +         actually a feature:  -v masks *some* kinds of failures,
    +         since it doesn't compare test output with the canned
    +         output; this is what makes it say "test passed" even
    +         in some cases where the test fails without -v
             ]
     
     
    @@ -147,6 +165,19 @@
         raised during hashing or comparison.
     
         Decide what to do about os.path.commonprefix.  Then do it.
    +    [19-Aug-2000 tim
    +     Guido msg on Python-Dev:
    +     - restore the old behavior on all platforms
    +     - add to the docs that to get the common directory you use dirname()
    +     - add testcases that check that this works on all platforms
    +     - don't add commonpathprefix(), because dirname() already does it
    +    ]
    +
    +    Remove winreg.py and test_winreg2.py.  Paul Prescod (the author)
    +    now wants to make a registry API more like the MS .NET API.  Unclear
    +    whether that can be done in time for 2.0, but, regardless, if we
    +    let winreg.py out the door we'll be stuck with it forever, and not
    +    even Paul wants it anymore.
     
     
     Accepted and completed
    @@ -208,6 +239,12 @@
           for normal slices as well as for extended ones. First step: use
           getitem if there is no getslice.
     
    +    * Extended print statement - Barry Warsaw
    +      PEP 214
    +      http://python.sourceforge.net/peps/pep-0214.html
    +      SF Patch #100970
    +      http://sourceforge.net/patch/?func=detailpatch&patch_id=100970&group_id=5470
    +
     
     Open: proposed but not accepted or rejected
     
    @@ -224,12 +261,6 @@
     
     Postponed
     
    -    * Extended print statement - Barry Warsaw
    -      PEP 214
    -      http://python.sourceforge.net/peps/pep-0214.html
    -      SF Patch #100970
    -      http://sourceforge.net/patch/?func=detailpatch&patch_id=100970&group_id=5470
    -
         * Eliminated SET_LINENO opcode - Vladimir Marangozov
           Small optimization achieved by using the code object's lnotab
           instead of the SET_LINENO instruction.  Uses code rewriting
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:29 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:29 +0100
    Subject: [Python-checkins] peps: Closed the "test_popen2 fails under
    	Windows" bug -- although I'm
    Message-ID: 
    
    http://hg.python.org/peps/rev/a4cd5c94122c
    changeset:   117:a4cd5c94122c
    user:        Tim Peters 
    date:        Sun Aug 20 05:59:27 2000 +0000
    summary:
      Closed the "test_popen2 fails under Windows" bug -- although I'm
    only sure about that for Win98SE.
    Moved the test_fork1 bug up to the top since it's the only
    interesting std test failure remaining.
    
    files:
      pep-0200.txt |  45 ++++++++++++++++++++++++----------------
      1 files changed, 27 insertions(+), 18 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -90,6 +90,16 @@
     
         test case         platform   R B    date reported
         ---------         --------   - -    -------------
    +    test_fork1        Linux      X      26-Jul-2000     just SMP?
    +        [no clue; there are probably two bugs here]
    +        [19-Aug-200 tim
    +         Charles Waldman whipped up a patch to give child processes a new
    +         "global lock":
    +         http://sourceforge.net/patch/?func=detailpatch&patch_id=101226&group_id=5470
    +         While this doesn't appear to address the symptoms we *saw*, it
    +         *does* so far appear to be fixing the failing cases anyway
    +        ]
    +
         test_winreg2      Win32      X X    26-Jul-2000
             [19-Aug-2000 tim
              This test will never work on Win98, because it's looking for
    @@ -102,7 +112,24 @@
              expected: 'HKEY_PERFORMANCE_DATA\012'
             ]
     
    +
    +Previously failing test cases
    +
    +    If you find a test bouncing between this section and the previous one,
    +    the code it's testing is in trouble!
    +
    +    test case         platform   R B    date reported
    +    ---------         --------   - -    -------------
         test_popen2       Win32      X X    26-Jul-2000
    +        [20-Aug-2000 tim
    +         changed the popen2.py _test function to use the "more" cmd
    +         when os.name == "nt".  This makes test_popen2 pass under
    +         Win98SE.
    +         HOWEVER, the Win98 "more" invents a leading newline out
    +         of thin air, and I'm not sure that the other Windows flavors
    +         of "more" also do that.
    +         So, somebody please try under other Windows flavors!
    +        ]
             [still fails 15-Aug-2000 for me, on Win98 - tim
                  test test_popen2 crashed -- exceptions.AssertionError :
              The problem is that the test uses "cat", but there is
    @@ -111,24 +138,6 @@
              the code.
             ]
     
    -    test_fork1        Linux      X      26-Jul-2000     just SMP?
    -        [no clue; there are probably two bugs here]
    -        [19-Aug-200 tim
    -         Charles Waldman whipped up a patch to give child processes a new
    -         "global lock":
    -         http://sourceforge.net/patch/?func=detailpatch&patch_id=101226&group_id=5470
    -         While this doesn't appear to address the symptoms we *saw*, it
    -         *does* so far appear to be fixing the failing cases anyway
    -        ]
    -
    -
    -Previously failing test cases
    -
    -    If you find a test bouncing between this section and the previous one,
    -    the code it's testing is in trouble!
    -
    -    test case         platform   R B    date reported
    -    ---------         --------   - -    -------------
         test_winreg        Win32     X X    26-Jul-2000
             [works 15-Aug-2000 for me, on Win98 - tim]
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:31 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:31 +0100
    Subject: [Python-checkins] peps: Make the PEP conform to reality,
    	and add the suggestion to generalize the
    Message-ID: 
    
    http://hg.python.org/peps/rev/ca925a49ea8b
    changeset:   118:ca925a49ea8b
    user:        Thomas Wouters 
    date:        Sun Aug 20 10:49:45 2000 +0000
    summary:
      Make the PEP conform to reality, and add the suggestion to generalize the
    expressions allowed after the 'as' clause. Change some markup, and mark it
    as Accepted (which it is, since the change has been checked in.) Barry, this
    should probably also change in the PEP Index PEP.
    
    files:
      pep-0221.txt |  96 +++++++++++++++++++++------------------
      1 files changed, 52 insertions(+), 44 deletions(-)
    
    
    diff --git a/pep-0221.txt b/pep-0221.txt
    --- a/pep-0221.txt
    +++ b/pep-0221.txt
    @@ -3,7 +3,7 @@
     Version: $Revision$
     Owner: thomas at xs4all.net (Thomas Wouters)
     Python-Version: 2.0
    -Status: Draft
    +Status: Accepted
     Created: 15-Aug-2000
     Type: Standard
     
    @@ -27,68 +27,73 @@
         different name, for instance to avoid name clashes. Currently, a
         round-about way has to be used to achieve this:
     
    -    import os
    -    real_os = os
    -    del os
    +        import os
    +        real_os = os
    +        del os
         
         And similar for the `from ... import' statement:
         
    -    from os import fdopen, exit, stat
    -    os_fdopen = fdopen
    -    os_stat = stat
    -    del fdopen, stat
    +        from os import fdopen, exit, stat
    +        os_fdopen = fdopen
    +        os_stat = stat
    +        del fdopen, stat
         
         The proposed syntax change would add an optional `as' clause to
         both these statements, as follows:
     
    -    import os as real_os
    -    from os import fdopen as os_fdopen, exit, stat as os_stat
    +        import os as real_os
    +        from os import fdopen as os_fdopen, exit, stat as os_stat
         
         The `as' name is not intended to be a keyword, and some trickery
         has to be used to convince the CPython parser it isn't one. For
         more advanced parsers/tokenizers, however, this should not be a
         problem.
    +    
    +    To avoid confusion, importing a submodule `as' another module is
    +    not allowed. When importing a submodule in the normal way,
    +    
    +        import os.path
    +        
    +    The actual name stored locally is `os', not `path' (so that the
    +    newly imported module can be referenced as `os.path'.) When
    +    introducing the `as' keyword, it is unclear whether the `os'
    +    module or the `path' sub-module should be stored `as' the
    +    requested local name.
     
     
     Implementation details
     
    -    A proposed implementation of this new clause can be found in the
    -    SourceForge patch manager[XX]. The patch uses a NAME field in the
    -    grammar rather than a bare string, to avoid the keyword issue. It
    -    also introduces a new bytecode, IMPORT_FROM_AS, which loads an
    -    object from a module and pushes it onto the stack, so it can be
    -    stored by a normal STORE_NAME opcode.
    +    This PEP has been accepted, and the suggested code change has been
    +    checked in. The patch can still be found in the SourceForge patch
    +    manager[1]. Currently, a NAME field is used in the grammar rather
    +    than a bare string, to avoid the keyword issue. It introduces a
    +    new bytecode, IMPORT_STAR, which performs the `from module import
    +    *' behaviour, and changes the behaviour of the IMPORT_FROM
    +    bytecode so that it loads the requested name (which is always a
    +    single name) onto the stack, to be subsequently stored by a STORE
    +    opcode.
    +
    +    The special case of `from module import *' remains a special case,
    +    in that it cannot accomodate an `as' clause, and that no STORE
    +    opcodes are generated; the objects imported are loaded directly
    +    into the local namespace.
         
    -    The special case of `from module import *' remains a special case,
    -    in that it cannot accomodate an `as' clause. Also, the current
    -    implementation does not use IMPORT_FROM_AS for the old form of
    -    from-import, even though it would make sense to do so. The reason
    -    for this is that the current IMPORT_FROM bytecode loads objects
    -    directly from a module into the local namespace, in one bytecode
    -    operation, and also handles the special case of `*'. As a result
    -    of moving to the IMPORT_FROM_AS bytecode, two things would happen:
    -    
    -    - Two bytecode operations would have to be performed, per symbol,
    -      rather than one.
    -      
    -    - The names imported through `from-import' would be susceptible to
    -      the `global' keyword, which they currently are not. This means
    -      that `from-import' outside of the `*' special case behaves more
    -      like the normal `import' statement, which already follows the
    -      `global' keyword. It also means, however, that the `*' special
    -      case is even more special, compared to the ordinary form of
    -      `from-import'
    +    An additional change to this syntax has also been suggested, to
    +    generalize the expression given after the `as' clause. Rather than
    +    a single name, it could be allowed to be any expression that
    +    yields a valid l-value; anything that can be assigned to. The
    +    change to accomodate this is minimal, as the patch proves[2], and
    +    the resulting generalization allows a number of new constructs
    +    that run completely parallel with other Python assignment
    +    constructs.
     
    -    However, for consistency and for simplicity of implementation, it
    -    is probably best to split off the special case entirely, making a
    -    separate bytecode `IMPORT_ALL' that handles the special case of
    -    `*', and handle all other forms of `from-import' the way the
    -    proposed `IMPORT_FROM_AS' bytecode does.
    +        import sys as x['sys']
     
    -    This dilemma does not apply to the normal `import' statement,
    -    because this is alread split into two opcodes, a `LOAD_MODULE' and a
    -    `STORE_NAME' opcode. Supporting the `import as' syntax is a slight
    -    change to the compiler only.
    +        from MyFastcPickle import Pickler as shelve.Pickler
    +        
    +        from sys import version_info as (maj, min, pl, relnam, relno)
    +        
    +        from sys import path as mypath[-1:]
     
     
     Copyright
    @@ -101,6 +106,9 @@
         [1]
     http://sourceforge.net/patch/?func=detailpatch&patch_id=101135&group_id=5470
     
    +    [2]
    +http://sourceforge.net/patch/?func=detailpatch&patch_id=101234&group_id=5470
    +
     
     
     Local Variables:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:31 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:31 +0100
    Subject: [Python-checkins] peps: Remove the winreg module from the project.
    	I don't believe any
    Message-ID: 
    
    http://hg.python.org/peps/rev/a304fb546bde
    changeset:   119:a304fb546bde
    user:        Tim Peters 
    date:        Mon Aug 21 02:27:22 2000 +0000
    summary:
      Remove the winreg module from the project.  I don't believe any
    docs changes are needed (only reference to winreg I could find
    was in libwinreg.tex, which is documenting _winreg, and merely
    mentions that a higher-level winreg module *may* appear someday;
    that's still true).
    
    files:
      pep-0200.txt |  29 +++++++++++++++++------------
      1 files changed, 17 insertions(+), 12 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -100,18 +100,6 @@
              *does* so far appear to be fixing the failing cases anyway
             ]
     
    -    test_winreg2      Win32      X X    26-Jul-2000
    -        [19-Aug-2000 tim
    -         This test will never work on Win98, because it's looking for
    -         a part of registry that doesn't exist under W98.
    -         The module (winreg.py) and this test case will be removed
    -         before 2.0 for other reasons, though.
    -        ]
    -        [still fails 15-Aug-2000 for me, on Win98 - tim
    -         test test_winreg2 failed -- Writing: 'Test Failed: testHives',
    -         expected: 'HKEY_PERFORMANCE_DATA\012'
    -        ]
    -
     
     Previously failing test cases
     
    @@ -166,6 +154,19 @@
              in some cases where the test fails without -v
             ]
     
    +    test_winreg2      Win32      X X    26-Jul-2000
    +        [20-Aug-2000 tim - the test has been removed from the project]
    +        [19-Aug-2000 tim
    +         This test will never work on Win98, because it's looking for
    +         a part of registry that doesn't exist under W98.
    +         The module (winreg.py) and this test case will be removed
    +         before 2.0 for other reasons, though.
    +        ]
    +        [still fails 15-Aug-2000 for me, on Win98 - tim
    +         test test_winreg2 failed -- Writing: 'Test Failed: testHives',
    +         expected: 'HKEY_PERFORMANCE_DATA\012'
    +        ]
    +
     
     Open items -- should be done/fixed
     
    @@ -182,6 +183,10 @@
          - don't add commonpathprefix(), because dirname() already does it
         ]
     
    +
    +Open items -- completed/fixed
    +
    +    [20-Aug-2000 tim - done]
         Remove winreg.py and test_winreg2.py.  Paul Prescod (the author)
         now wants to make a registry API more like the MS .NET API.  Unclear
         whether that can be done in time for 2.0, but, regardless, if we
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:43 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:43 +0100
    Subject: [Python-checkins] peps: PEP 202,
    	change tim's email address to tpeters -- we really need a key
    Message-ID: 
    
    http://hg.python.org/peps/rev/76e5019cd62e
    changeset:   120:76e5019cd62e
    user:        Barry Warsaw 
    date:        Mon Aug 21 13:35:37 2000 +0000
    summary:
      PEP 202, change tim's email address to tpeters -- we really need a key
    for these.
    
    PEP 214 and 221 are accepted, as per recent BDFL pronouncements.
    
    Added PEP 223, Changing the Meaning of \x Escapes, assigned to Tim
    Peters.
    
    files:
      pep-0000.txt |  7 ++++---
      1 files changed, 4 insertions(+), 3 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -26,7 +26,7 @@
     
      I   200  pep-0200.txt  Python 2.0 Release Schedule           jhylton
      SA  201  pep-0201.txt  Lockstep Iteration                    bwarsaw
    - S   202  pep-0202.txt  List Comprehensions                   tim_one
    + S   202  pep-0202.txt  List Comprehensions                   tpeters
      S   203  pep-0203.txt  Augmented Assignments                 twouters
      S   204  pep-0204.txt  Range Literals                        twouters
      S   205  pep-0205.txt  Weak References                       fdrake
    @@ -38,15 +38,16 @@
      T   211  pep-0211.txt  Adding New Linear Algebra Operators   gvwilson
      S   212  pep-0212.txt  Additional Builtin Generators         bwarsaw
      S   213  pep-0213.txt  Attribute Access Handlers             prescod
    - S   214  pep-0214.txt  Extended Print Statement              bwarsaw
    + SA  214  pep-0214.txt  Extended Print Statement              bwarsaw
      S   215  pep-0215.txt  String Interpolation                  ping
      I   216  pep-0216.txt  Docstring Format                      moshez
      S   217  pep-0217.txt  Display Hook for Interactive Use      moshez
      S   218  pep-0218.txt  Adding a Built-In Set Object Type     gvwilson
      T   219  pep-0219.txt  Stackless Python                      gmcm
      I   220  pep-0220.txt  Coroutines, Generators, Continuations gmcm
    - S   221  pep-0221.txt  Import As                             twouters
    + SA  221  pep-0221.txt  Import As                             twouters
      S   222  pep-0222.txt  Web Library Enhancements              akuchlin
    + S   223  pep-0223.txt  Change the Meaning of \x Escapes      tpeters
     
     Key
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:45 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:45 +0100
    Subject: [Python-checkins] peps: BDFL pronounces this PEP accepted for
    	inclusion in Python 2.0
    Message-ID: 
    
    http://hg.python.org/peps/rev/010bb1fd7d45
    changeset:   121:010bb1fd7d45
    user:        Barry Warsaw 
    date:        Mon Aug 21 13:36:22 2000 +0000
    summary:
      BDFL pronounces this PEP accepted for inclusion in Python 2.0
    
    files:
      pep-0214.txt |  4 ++--
      1 files changed, 2 insertions(+), 2 deletions(-)
    
    
    diff --git a/pep-0214.txt b/pep-0214.txt
    --- a/pep-0214.txt
    +++ b/pep-0214.txt
    @@ -2,8 +2,8 @@
     Title: Extended Print Statement
     Version: $Revision$
     Author: bwarsaw at beopen.com (Barry A. Warsaw)
    -Python-Version: 2.1
    -Status: Draft
    +Python-Version: 2.0
    +Status: Accepted
     Created: 24-Jul-2000
     Post-History: 16-Aug-2000
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:45 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:45 +0100
    Subject: [Python-checkins] peps: PEP 223, Changing the Meaning of \x Escapes,
    	assigned to Tim Peters.
    Message-ID: 
    
    http://hg.python.org/peps/rev/71977bd404e6
    changeset:   122:71977bd404e6
    user:        Barry Warsaw 
    date:        Mon Aug 21 13:37:45 2000 +0000
    summary:
      PEP 223, Changing the Meaning of \x Escapes, assigned to Tim Peters.
    
    This PEP is slated for Python 2.1
    
    files:
      pep-0223.txt |  25 +++++++++++++++++++++++++
      1 files changed, 25 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0223.txt b/pep-0223.txt
    new file mode 100644
    --- /dev/null
    +++ b/pep-0223.txt
    @@ -0,0 +1,25 @@
    +PEP: 223
    +Title: Change the Meaning of \x Escapes
    +Version: $Revision$
    +Author: tpeters at beopen.com (Tim Peters)
    +Python-Version: 2.1
    +Status: Draft
    +Created: 20-Aug-2000
    +Post-History: 
    +
    +
    +Abstract
    +
    +    Change \x escapes, in both 8-bit and Unicode strings, to consume
    +    exactly the two hex digits following.  The proposal views this as
    +    correcting an original design flaw, leading to clearer expression
    +    in all flavors of string, a cleaner Unicode story, better
    +    compatibility with Perl regular expressions, and with minimal risk
    +    to existing code.
    +
    +
    +
    +Local Variables:
    +mode: indented-text
    +indent-tabs-mode: nil
    +End:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:49 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:49 +0100
    Subject: [Python-checkins] peps: Assorted updates in 200. Repaired PEPTzar's
    	conservatism in 223.
    Message-ID: 
    
    http://hg.python.org/peps/rev/28b4c8c35189
    changeset:   123:28b4c8c35189
    user:        Tim Peters 
    date:        Tue Aug 22 04:42:19 2000 +0000
    summary:
      Assorted updates in 200.  Repaired PEPTzar's conservatism in 223.
    
    files:
      pep-0200.txt |  51 +++++++++++++++++++++++++++++++++------
      pep-0223.txt |   4 +-
      2 files changed, 45 insertions(+), 10 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -177,12 +177,43 @@
         Decide what to do about os.path.commonprefix.  Then do it.
         [19-Aug-2000 tim
          Guido msg on Python-Dev:
    -     - restore the old behavior on all platforms
    +     - restore the old behavior on all platforms - Skip volunteered for this
          - add to the docs that to get the common directory you use dirname()
          - add testcases that check that this works on all platforms
          - don't add commonpathprefix(), because dirname() already does it
         ]
     
    +    2.0b1:  Get all patches out of Open.
    +
    +    2.0b1:  Get all patches out of Accepted.
    +
    +    2.0b1:  Decide on a license.
    +
    +    2.0b1 Windows:  Look for registry info in HKCU before HKLM - Mark
    +    Hammond.
    +
    +    2.0b1 Windows installer:  If HKLM isn't writable, back off to HKCU (so
    +    Python can be installed on NT & 2000 without admin privileges).
    +
    +    2.0b1 Windows installer:  Install w9xpopen.exe only under Win95/98.
    +
    +    2.0b1 Windows ME:  Don't know anything about it.  Will the installer
    +    even run?  Does it need the w9xpopen hack?
    +
    +    2.0b1 Win98 Guido:  popen is hanging on Guido, and even freezing the
    +    whole machine.  No clue yet.
    +
    +    2.0:  Decide on a license.
    +
    +    2.0:  Finish writing the PEPs for the features that went out
    +    with 2.0b1(! sad, but realistic -- we'll get better with practice).
    +
    +    2.0:  Major effort to whittle the bug database down to size.  I've (tim)
    +    seen this before:  if you can keep all the open bugs fitting on one
    +    screen, people will generally keep it that way.  But let it slobber
    +    over a screen for a month, & it just goes to hell (no "visible
    +    progress" indeed!).
    +
     
     Open items -- completed/fixed
     
    @@ -209,6 +240,12 @@
           what reprs are advertised as doing.  It also makes the xrange
           objects obvious when working in the interactive interpreter.
     
    +    * Extended print statement - Barry Warsaw
    +      PEP 214
    +      http://python.sourceforge.net/peps/pep-0214.html
    +      SF Patch #100970
    +      http://sourceforge.net/patch/?func=detailpatch&patch_id=100970&group_id=5470
    +
     
     Accepted and in progress
     
    @@ -253,19 +290,15 @@
           for normal slices as well as for extended ones. First step: use
           getitem if there is no getslice.
     
    -    * Extended print statement - Barry Warsaw
    -      PEP 214
    -      http://python.sourceforge.net/peps/pep-0214.html
    -      SF Patch #100970
    -      http://sourceforge.net/patch/?func=detailpatch&patch_id=100970&group_id=5470
    +    * Change meaning of \x escapes - PEP 223 - Fredrik Lundh?  Tim Peters?
    +
    +    * Add \U1234678 escapes in u"" strings - Fredrik Lundh?
     
     
     Open: proposed but not accepted or rejected
     
         * Tim O'Malley's cookie module -- but need different license
     
    -    * test harness for C code - Trent Mick
    -
         * Extended slicing on lists - Michael Hudson
           Make lists (and other builtin types) handle extended slices.
     
    @@ -291,6 +324,8 @@
     
           - http://www.python.org/pipermail/python-dev/1999-August/002252.html
     
    +    * test harness for C code - Trent Mick
    +
     
     Rejected
     
    diff --git a/pep-0223.txt b/pep-0223.txt
    --- a/pep-0223.txt
    +++ b/pep-0223.txt
    @@ -2,10 +2,10 @@
     Title: Change the Meaning of \x Escapes
     Version: $Revision$
     Author: tpeters at beopen.com (Tim Peters)
    -Python-Version: 2.1
    +Python-Version: 2.0
     Status: Draft
     Created: 20-Aug-2000
    -Post-History: 
    +Post-History:
     
     
     Abstract
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:50 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:50 +0100
    Subject: [Python-checkins] peps: List PEP owners by last name,
    	and give a key to their email address as
    Message-ID: 
    
    http://hg.python.org/peps/rev/290078ad68d1
    changeset:   124:290078ad68d1
    user:        Barry Warsaw 
    date:        Tue Aug 22 05:14:50 2000 +0000
    summary:
      List PEP owners by last name, and give a key to their email address as
    used in the PEP.
    
    files:
      pep-0000.txt |  80 +++++++++++++++++++++++++---------------
      1 files changed, 50 insertions(+), 30 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -16,38 +16,39 @@
     
     Index
     
    -     num  filename      title                                 owner
    -     ---  ------------  -----                                 -----
    - I     0  pep-0000.txt  Index of Python Enhancement Proposals bwarsaw
    - I     1  pep-0001.txt  PEP Guidelines                        bwarsaw, jhylton
    - I     2  pep-0002.txt  Procedure for Adding New Modules      esr
    +     num  filename      title                                  owner
    +     ---  ------------  -----                                  -----
    + I     0  pep-0000.txt  Index of Python Enhancement Proposals  Warsaw
    + I     1  pep-0001.txt  PEP Guidelines                         Warsaw, Hylton
    + I     2  pep-0002.txt  Procedure for Adding New Modules       Raymond
     
    - I   160  pep-0160.txt  Python 1.6 Release Schedule           fdrake
    + I   160  pep-0160.txt  Python 1.6 Release Schedule            Drake
     
    - I   200  pep-0200.txt  Python 2.0 Release Schedule           jhylton
    - SA  201  pep-0201.txt  Lockstep Iteration                    bwarsaw
    - S   202  pep-0202.txt  List Comprehensions                   tpeters
    - S   203  pep-0203.txt  Augmented Assignments                 twouters
    - S   204  pep-0204.txt  Range Literals                        twouters
    - S   205  pep-0205.txt  Weak References                       fdrake
    - I   206  pep-0206.txt  2.0 Batteries Included                moshez
    - S   207  pep-0207.txt  Rich Comparisons                      davida
    - S   208  pep-0208.txt  Reworking the Coercion Model          davida
    - S   209  pep-0209.txt  Adding Multidimensional Arrays        davida
    - S   210  pep-0210.txt  Decoupling the Interpreter Loop       davida
    - T   211  pep-0211.txt  Adding New Linear Algebra Operators   gvwilson
    - S   212  pep-0212.txt  Additional Builtin Generators         bwarsaw
    - S   213  pep-0213.txt  Attribute Access Handlers             prescod
    - SA  214  pep-0214.txt  Extended Print Statement              bwarsaw
    - S   215  pep-0215.txt  String Interpolation                  ping
    - I   216  pep-0216.txt  Docstring Format                      moshez
    - S   217  pep-0217.txt  Display Hook for Interactive Use      moshez
    - S   218  pep-0218.txt  Adding a Built-In Set Object Type     gvwilson
    - T   219  pep-0219.txt  Stackless Python                      gmcm
    - I   220  pep-0220.txt  Coroutines, Generators, Continuations gmcm
    - SA  221  pep-0221.txt  Import As                             twouters
    - S   222  pep-0222.txt  Web Library Enhancements              akuchlin
    - S   223  pep-0223.txt  Change the Meaning of \x Escapes      tpeters
    + I   200  pep-0200.txt  Python 2.0 Release Schedule            Hylton
    + SA  201  pep-0201.txt  Lockstep Iteration                     Warsaw
    + S   202  pep-0202.txt  List Comprehensions                    Peters
    + S   203  pep-0203.txt  Augmented Assignments                  Wouters
    + S   204  pep-0204.txt  Range Literals                         Wouters
    + S   205  pep-0205.txt  Weak References                        Drake
    + I   206  pep-0206.txt  2.0 Batteries Included                 Zadka
    + S   207  pep-0207.txt  Rich Comparisons                       Ascher
    + S   208  pep-0208.txt  Reworking the Coercion Model           Ascher
    + S   209  pep-0209.txt  Adding Multidimensional Arrays         Ascher
    + S   210  pep-0210.txt  Decoupling the Interpreter Loop        Ascher
    + T   211  pep-0211.txt  Adding New Linear Algebra Operators    Wilson
    + S   212  pep-0212.txt  Additional Builtin Generators          Warsaw
    + S   213  pep-0213.txt  Attribute Access Handlers              Prescod
    + SA  214  pep-0214.txt  Extended Print Statement               Warsaw
    + S   215  pep-0215.txt  String Interpolation                   Yee
    + I   216  pep-0216.txt  Docstring Format                       Zadka
    + S   217  pep-0217.txt  Display Hook for Interactive Use       Zadka
    + S   218  pep-0218.txt  Adding a Built-In Set Object Type      Wilson
    + T   219  pep-0219.txt  Stackless Python                       McMillan
    + I   220  pep-0220.txt  Coroutines, Generators, Continuations  McMillan
    + SA  221  pep-0221.txt  Import As                              Wouters
    + S   222  pep-0222.txt  Web Library Enhancements               Kuchling
    + S   223  pep-0223.txt  Change the Meaning of \x Escapes       Peters
    +
     
     Key
     
    @@ -58,6 +59,25 @@
         R - Rejected proposal
     
     
    +Owners
    +
    +    name                email address
    +    ----------------    -------------
    +    Ascher, David       davida at activestate.com
    +    Drake, Fred         fdrake at beopen.com
    +    Hylton, Jeremy      jeremy at beopen.com
    +    Kuchling, Andrew    akuchlin at mems-exchange.org
    +    McMillan, Gordon    gmcm at hypernet.com
    +    Peters, Tim         tpeters at beopen.com
    +    Prescod, Paul       paul at prescod.net
    +    Raymond, Eric       esr at snark.thyrsus.com
    +    Warsaw, Barry       bwarsaw at beopen.com
    +    Wilson, Greg        gvwilson at nevex.com
    +    Wouters, Thomas     thomas at xs4all.net
    +    Yee, Ka-Ping        ping at lfw.org
    +    Zadka, Moshe        moshez at math.huji.ac.il
    +
    +
     
     Local Variables:
     mode: indented-text
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:50 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:50 +0100
    Subject: [Python-checkins] peps: Added Andrew's name.
    Message-ID: 
    
    http://hg.python.org/peps/rev/0586765ce863
    changeset:   125:0586765ce863
    user:        Barry Warsaw 
    date:        Tue Aug 22 05:15:51 2000 +0000
    summary:
      Added Andrew's name.
    
    files:
      pep-0222.txt |  2 +-
      1 files changed, 1 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0222.txt b/pep-0222.txt
    --- a/pep-0222.txt
    +++ b/pep-0222.txt
    @@ -1,7 +1,7 @@
     PEP: 222
     Title: Web Library Enhancements
     Version: $Revision$
    -Author: akuchlin at mems-exchange.org
    +Author: akuchlin at mems-exchange.org (Andrew Kuchling)
     Status: Active
     Type: Standards Track
     Created: 18-Aug-2000
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:51 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:51 +0100
    Subject: [Python-checkins] peps: Recorded new test failures on Windows. If
    	Jeremy doesn't object, I'll keep
    Message-ID: 
    
    http://hg.python.org/peps/rev/4c74e8d11b03
    changeset:   126:4c74e8d11b03
    user:        Tim Peters 
    date:        Wed Aug 23 03:38:53 2000 +0000
    summary:
      Recorded new test failures on Windows.  If Jeremy doesn't object, I'll keep
    the Windows bugs part of this PEP up-to-date for him.
    
    files:
      pep-0200.txt |  7 +++++++
      1 files changed, 7 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -90,6 +90,13 @@
     
         test case         platform   R B    date reported
         ---------         --------   - -    -------------
    +    test_parser       Windows    ? ?    22-Aug-2000
    +        [probably all platforms]
    +
    +    test_posixpath    Windows    ? ?    22-Aug-2000
    +        [probably all platforms; think it's because Skip backed out
    +         commonpathprefix changes but didn't change the tests]
    +
         test_fork1        Linux      X      26-Jul-2000     just SMP?
             [no clue; there are probably two bugs here]
             [19-Aug-200 tim
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:52 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:52 +0100
    Subject: [Python-checkins] peps: Get rid of the `Technical' PEP category.
    	PEPs are either	Standards
    Message-ID: 
    
    http://hg.python.org/peps/rev/81f8232432f1
    changeset:   127:81f8232432f1
    user:        Barry Warsaw 
    date:        Wed Aug 23 05:04:12 2000 +0000
    summary:
      Get rid of the `Technical' PEP category.  PEPs are either Standards
    Track or Informational.  PEP 211 and 219 become Standards Track.
    
    PEP 212 is hijacked, and renamed "Loop Counter Iteration".  It is
    assigned to Peter Schneider-Kamp.
    
    files:
      pep-0000.txt |  38 +++++++++++++++++++-------------------
      1 files changed, 19 insertions(+), 19 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -35,15 +35,15 @@
      S   208  pep-0208.txt  Reworking the Coercion Model           Ascher
      S   209  pep-0209.txt  Adding Multidimensional Arrays         Ascher
      S   210  pep-0210.txt  Decoupling the Interpreter Loop        Ascher
    - T   211  pep-0211.txt  Adding New Linear Algebra Operators    Wilson
    - S   212  pep-0212.txt  Additional Builtin Generators          Warsaw
    + S   211  pep-0211.txt  Adding New Linear Algebra Operators    Wilson
    + S   212  pep-0212.txt  Loop Counter Iteration                 Schneider-Kamp
      S   213  pep-0213.txt  Attribute Access Handlers              Prescod
      SA  214  pep-0214.txt  Extended Print Statement               Warsaw
      S   215  pep-0215.txt  String Interpolation                   Yee
      I   216  pep-0216.txt  Docstring Format                       Zadka
      S   217  pep-0217.txt  Display Hook for Interactive Use       Zadka
      S   218  pep-0218.txt  Adding a Built-In Set Object Type      Wilson
    - T   219  pep-0219.txt  Stackless Python                       McMillan
    + S   219  pep-0219.txt  Stackless Python                       McMillan
      I   220  pep-0220.txt  Coroutines, Generators, Continuations  McMillan
      SA  221  pep-0221.txt  Import As                              Wouters
      S   222  pep-0222.txt  Web Library Enhancements               Kuchling
    @@ -54,28 +54,28 @@
     
         I - Informational PEP
         S - Standards Track PEP
    -    T - Technical PEP
         A - Accepted proposal
         R - Rejected proposal
     
     
     Owners
     
    -    name                email address
    -    ----------------    -------------
    -    Ascher, David       davida at activestate.com
    -    Drake, Fred         fdrake at beopen.com
    -    Hylton, Jeremy      jeremy at beopen.com
    -    Kuchling, Andrew    akuchlin at mems-exchange.org
    -    McMillan, Gordon    gmcm at hypernet.com
    -    Peters, Tim         tpeters at beopen.com
    -    Prescod, Paul       paul at prescod.net
    -    Raymond, Eric       esr at snark.thyrsus.com
    -    Warsaw, Barry       bwarsaw at beopen.com
    -    Wilson, Greg        gvwilson at nevex.com
    -    Wouters, Thomas     thomas at xs4all.net
    -    Yee, Ka-Ping        ping at lfw.org
    -    Zadka, Moshe        moshez at math.huji.ac.il
    +    name                     email address
    +    ----------------         -------------
    +    Ascher, David            davida at activestate.com
    +    Drake, Fred              fdrake at beopen.com
    +    Hylton, Jeremy           jeremy at beopen.com
    +    Kuchling, Andrew         akuchlin at mems-exchange.org
    +    McMillan, Gordon         gmcm at hypernet.com
    +    Peters, Tim              tpeters at beopen.com
    +    Prescod, Paul            paul at prescod.net
    +    Raymond, Eric            esr at snark.thyrsus.com
    +    Schneider-Kamp, Peter    nownder at nowonder.de
    +    Warsaw, Barry            bwarsaw at beopen.com
    +    Wilson, Greg             gvwilson at nevex.com
    +    Wouters, Thomas          thomas at xs4all.net
    +    Yee, Ka-Ping             ping at lfw.org
    +    Zadka, Moshe             moshez at math.huji.ac.il
     
     
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:53 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:53 +0100
    Subject: [Python-checkins] peps: Get rid of the `Technical' PEP category.
    	PEPs are either	Standards
    Message-ID: 
    
    http://hg.python.org/peps/rev/8a0e9b1e8d4a
    changeset:   128:8a0e9b1e8d4a
    user:        Barry Warsaw 
    date:        Wed Aug 23 05:04:42 2000 +0000
    summary:
      Get rid of the `Technical' PEP category.  PEPs are either Standards
    Track or Informational.
    
    files:
      pep-0001.txt |  12 +++++-------
      1 files changed, 5 insertions(+), 7 deletions(-)
    
    
    diff --git a/pep-0001.txt b/pep-0001.txt
    --- a/pep-0001.txt
    +++ b/pep-0001.txt
    @@ -30,13 +30,11 @@
     
     Kinds of PEPs
     
    -    There are three kinds of PEPs.  A standards track PEP describes a
    -    new feature for Python.  An informational PEP describes a Python
    -    design issue, or provides general guidelines or information to the
    -    Python community, but does not propose a new feature.  A technical
    -    PEP describes a new implementation or other internal modification
    -    that doesn't directly expose new features to the Python
    -    programmer.
    +    There are two kinds of PEPs.  A standards track PEP describes a
    +    new feature or implementation for Python.  An informational PEP
    +    describes a Python design issue, or provides general guidelines or
    +    information to the Python community, but does not propose a new
    +    feature.
     
     
     PEP Workflow
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:54 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:54 +0100
    Subject: [Python-checkins] peps: PEP 212 is hijacked,
    	and renamed "Loop Counter Iteration".  It is
    Message-ID: 
    
    http://hg.python.org/peps/rev/ac13d13a4582
    changeset:   129:ac13d13a4582
    user:        Barry Warsaw 
    date:        Wed Aug 23 05:06:22 2000 +0000
    summary:
      PEP 212 is hijacked, and renamed "Loop Counter Iteration".  It is
    assigned to Peter Schneider-Kamp.  Based on recent discussions with
    the BDFL and the Python 2.0 release manager, this PEP is deferred
    until Python 2.1.
    
    Some minor editorial and formating modifications were performed on the
    text supplied by Peter.  Editor also added footnotes.
    
    files:
      pep-0212.txt |  119 +++++++++++++++++++++++++++++++-------
      1 files changed, 97 insertions(+), 22 deletions(-)
    
    
    diff --git a/pep-0212.txt b/pep-0212.txt
    --- a/pep-0212.txt
    +++ b/pep-0212.txt
    @@ -1,44 +1,119 @@
     PEP: 212
    -Title: Additional Builtin Generators
    +Title: Loop Counter Iteration
     Version: $Revision$
    -Owner: bwarsaw at beopen.com (Barry A. Warsaw)
    -Python-Version: 2.0
    -Status: Incomplete
    +Author: nowonder at nowonder.de (Peter Schneider-Kamp)
    +Status: Draft
    +Type: Standards Track
    +Python-Version: 2.1
    +Created: 22-Aug-2000
     
     
    -
     Introduction
     
    -    This PEP describes some proposed additional generator-creating
    -    builtin functions for Python 2.0.  This PEP tracks the status and
    -    ownership of this feature, slated for introduction in Python 2.0.
    -    It contains a description of the feature and outlines changes
    -    necessary to support the feature.  This PEP summarizes discussions
    -    held in mailing list forums, and provides URLs for further
    -    information, where appropriate.  The CVS revision history of this
    -    file contains the definitive historical record.
    +    This PEP describes the often proposed feature of exposing the loop
    +    counter in for-loops.  This PEP tracks the status and ownership of
    +    this feature.  It contains a description of the feature and
    +    outlines changes necessary to support the feature.  This PEP
    +    summarizes discussions held in mailing list forums, and provides
    +    URLs for further information, where appropriate.  The CVS revision
    +    history of this file contains the definitive historical record.
     
     
    -
    -New functions
    +Motivation
     
    -    irange()
    -    tuples()
    -    lists()
    -    dict()
    +    Standard for-loops in Python iterate over the elements of a
    +    sequence[1].  Often it is desirable to loop over the indices or
    +    both the elements and the indices instead.
     
    +    The common idioms used to accomplish this are unintuitive.  This
    +    PEP proposes two different ways of exposing the indices.
     
    -
    -Reference Implementation
     
    +Loop counter iteration
     
    +    The current idiom for looping over the indices makes use of the
    +    built-in 'range' function:
     
    -
    +        for i in range(len(sequence)):
    +            # work with index i
    +
    +    Looping over both elements and indices can be achieved either by the
    +    old idiom or by using the new 'zip' built-in function[2]:
    +
    +        for i in range(len(sequence)):
    +            e = sequence[i]
    +            # work with index i and element e
    +
    +    or
    +
    +        for i, e in zip(range(len(sequence)), sequence):
    +            # work with index i and element e
    +
    +
    +The Proposed Solutions
    +
    +    There are two solutions that have been discussed.  One adds a
    +    non-reserved keyword, the other adds two built-in functions.
    +
    +    A third solution would have been the addition of 'keys', 'items'
    +    and 'values' methods to sequences, which enable looping over
    +    indices only, both indices and elements, and elements only
    +    respectively.
    +
    +
    +Non-reserved keyword 'indexing'
    +
    +    This solution would extend the syntax of the for-loop by adding
    +    an optional ' indexing' clause which can also be used
    +    instead of the ' in' clause..
    +
    +    Looping over the indices of a sequence would thus become:
    +
    +        for i indexing sequence:
    +            # work with index i
    +
    +    Looping over both indices and elements would similarly be:
    +
    +        for i indexing e in sequence:
    +            # work with index i and element e
    +
    +
    +Built-in functions 'indices' and 'irange'
    +
    +    This solution adds two built-in functions 'indices' and 'irange'.
    +    The semantics of these can be described as follows:
    +
    +        def indices(sequence):
    +            return range(len(sequence))
    +
    +        def irange(sequence):
    +            return zip(range(len(sequence)), sequence)
    +
    +    These functions could be implemented either eagerly or lazily and
    +    should be easy to extend in order to accept more than one sequence
    +    argument.
    +
    +    The use of these functions would simplify the idioms for looping
    +    over the indices and over both elements and indices:
    +
    +        for i in indices(sequence):
    +            # work with index i
    +
    +        for i, e in irange(sequence):
    +            # work with index i and element e
    +
    +
     Copyright
     
         This document has been placed in the public domain.
     
     
    +References
    +
    +    [1] http://www.python.org/doc/current/ref/for.html
    +    [2] Lockstep Iteration, pep-0201.txt
    +
    +
     
     Local Variables:
     mode: indented-text
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:25:59 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:25:59 +0100
    Subject: [Python-checkins] peps: Added the `D'eferred flag,
    	and marked as deferred all standards track
    Message-ID: 
    
    http://hg.python.org/peps/rev/c8186d751b0d
    changeset:   130:c8186d751b0d
    user:        Barry Warsaw 
    date:        Wed Aug 23 05:09:57 2000 +0000
    summary:
      Added the `D'eferred flag, and marked as deferred all standards track
    PEPs pushed back past 2.0: 205, 207-213, 215, 217-219, 222.
    
    files:
      pep-0000.txt |  27 ++++++++++++++-------------
      1 files changed, 14 insertions(+), 13 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -29,24 +29,24 @@
      S   202  pep-0202.txt  List Comprehensions                    Peters
      S   203  pep-0203.txt  Augmented Assignments                  Wouters
      S   204  pep-0204.txt  Range Literals                         Wouters
    - S   205  pep-0205.txt  Weak References                        Drake
    + SD  205  pep-0205.txt  Weak References                        Drake
      I   206  pep-0206.txt  2.0 Batteries Included                 Zadka
    - S   207  pep-0207.txt  Rich Comparisons                       Ascher
    - S   208  pep-0208.txt  Reworking the Coercion Model           Ascher
    - S   209  pep-0209.txt  Adding Multidimensional Arrays         Ascher
    - S   210  pep-0210.txt  Decoupling the Interpreter Loop        Ascher
    - S   211  pep-0211.txt  Adding New Linear Algebra Operators    Wilson
    - S   212  pep-0212.txt  Loop Counter Iteration                 Schneider-Kamp
    - S   213  pep-0213.txt  Attribute Access Handlers              Prescod
    + SD  207  pep-0207.txt  Rich Comparisons                       Ascher
    + SD  208  pep-0208.txt  Reworking the Coercion Model           Ascher
    + SD  209  pep-0209.txt  Adding Multidimensional Arrays         Ascher
    + SD  210  pep-0210.txt  Decoupling the Interpreter Loop        Ascher
    + SD  211  pep-0211.txt  Adding New Linear Algebra Operators    Wilson
    + SD  212  pep-0212.txt  Loop Counter Iteration                 Schneider-Kamp
    + SD  213  pep-0213.txt  Attribute Access Handlers              Prescod
      SA  214  pep-0214.txt  Extended Print Statement               Warsaw
    - S   215  pep-0215.txt  String Interpolation                   Yee
    + SD  215  pep-0215.txt  String Interpolation                   Yee
      I   216  pep-0216.txt  Docstring Format                       Zadka
    - S   217  pep-0217.txt  Display Hook for Interactive Use       Zadka
    - S   218  pep-0218.txt  Adding a Built-In Set Object Type      Wilson
    - S   219  pep-0219.txt  Stackless Python                       McMillan
    + SD  217  pep-0217.txt  Display Hook for Interactive Use       Zadka
    + SD  218  pep-0218.txt  Adding a Built-In Set Object Type      Wilson
    + SD  219  pep-0219.txt  Stackless Python                       McMillan
      I   220  pep-0220.txt  Coroutines, Generators, Continuations  McMillan
      SA  221  pep-0221.txt  Import As                              Wouters
    - S   222  pep-0222.txt  Web Library Enhancements               Kuchling
    + SD  222  pep-0222.txt  Web Library Enhancements               Kuchling
      S   223  pep-0223.txt  Change the Meaning of \x Escapes       Peters
     
     
    @@ -56,6 +56,7 @@
         S - Standards Track PEP
         A - Accepted proposal
         R - Rejected proposal
    +    D - Deferred proposal
     
     
     Owners
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:14 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:14 +0100
    Subject: [Python-checkins] peps: Added Type: header,
    	and rearranged other headers a bit.
    Message-ID: 
    
    http://hg.python.org/peps/rev/81f8158b753f
    changeset:   131:81f8158b753f
    user:        Barry Warsaw 
    date:        Wed Aug 23 05:12:55 2000 +0000
    summary:
      Added Type: header, and rearranged other headers a bit.
    
    files:
      pep-0201.txt |  3 ++-
      1 files changed, 2 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0201.txt b/pep-0201.txt
    --- a/pep-0201.txt
    +++ b/pep-0201.txt
    @@ -2,8 +2,9 @@
     Title: Lockstep Iteration
     Version: $Revision$
     Author: bwarsaw at beopen.com (Barry A. Warsaw)
    +Status: Accepted
    +Type: Standards Track
     Python-Version: 2.0
    -Status: Accepted
     Created: 13-Jul-2000
     Post-History: 27-Jul-2000
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:15 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:15 +0100
    Subject: [Python-checkins] peps: Minor editorial clean ups:
    Message-ID: 
    
    http://hg.python.org/peps/rev/feff5ca55cd1
    changeset:   132:feff5ca55cd1
    user:        Barry Warsaw 
    date:        Wed Aug 23 05:19:21 2000 +0000
    summary:
      Minor editorial clean ups:
        - conform the headers
        - `standard' paragraph wrapping (i.e. how the Editor's editor
          wraps 'em :)
        - move the URL for the patch to the (new) References section
        - added reference to PEP 201
    
    Tim, should this be marked Accepted now?
    
    files:
      pep-0202.txt |  64 +++++++++++++++++++++------------------
      1 files changed, 34 insertions(+), 30 deletions(-)
    
    
    diff --git a/pep-0202.txt b/pep-0202.txt
    --- a/pep-0202.txt
    +++ b/pep-0202.txt
    @@ -1,31 +1,32 @@
     PEP: 202
     Title: List Comprehensions
     Version: $Revision$
    -Owner: tpeters at beopen.com (Tim Peters)
    +Author: tpeters at beopen.com (Tim Peters)
    +Status: Draft
    +Type: Standards Track
     Python-Version: 2.0
    -Status: Incomplete
    +Created: 13-Jul-2000
    +Post-History:
     
     
     Introduction
     
    -    This PEP describes a proposed syntactical extension to Python, list
    -    comprehensions. 
    -
    +    This PEP describes a proposed syntactical extension to Python,
    +    list comprehensions.
     
     
     The Proposed Solution
     
    -    It is proposed to allow conditional construction of list literals using
    -    for and if clauses.  They would nest in the same way for loops and if
    -    statements nest now.
    +    It is proposed to allow conditional construction of list literals
    +    using for and if clauses.  They would nest in the same way for
    +    loops and if statements nest now.
         
     
    -
     Rationale
     
         List comprehensions provide a more concise way to create lists in
    -    situations where map() and filter() and/or nested loops would currently
    -    be used.
    +    situations where map() and filter() and/or nested loops would
    +    currently be used.
     
     
     Examples
    @@ -59,11 +60,7 @@
     
     Reference Implementation
     
    -    Please refer to 
    -
    -        https://sourceforge.net/patch/?func=detailpatch&patch_id=100654&group_id=5470
    -
    -    for a patch that adds list comprehensions to Python.
    +    SourceForge contains a patch that adds list comprehensions to Python[1].
     
     
     BDFL Pronouncements
    @@ -74,19 +71,19 @@
         - The syntax proposed above is the Right One.
     
         - The form [x, y for ...] should be disallowed; one should be
    -    required to write [(x, y) for ...].
    +      required to write [(x, y) for ...].
     
         - The form [... for x... for y...] nests, with the last index
    -    varying fastest, just like nested for loops.
    +      varying fastest, just like nested for loops.
     
     
     Open Issues
     
         Syntax
     
    -        Several people proposed connecting or separating syntax between the
    -        various clauses, for example, requiring a semicolon between them to
    -        set them apart:
    +        Several people proposed connecting or separating syntax
    +        between the various clauses, for example, requiring a
    +        semicolon between them to set them apart:
     
                 [i,f; for i in nums; for f in fruit; if f[0]=="P"; if i%2==1]
     
    @@ -113,18 +110,25 @@
     
                 map(None, nums, fruit)
     
    -        It's not clear that this is necessary.  The newly proposed zip()
    -        builtin takes care of that case.
    +        It's not clear that this is necessary.  The newly proposed
    +        zip() builtin[2] takes care of that case.
     
         Stability of the Implementation
     
    -        The current reference implementation is simply an adaptation of Greg
    -        Ewing's original demonstration of the concept.  Other than tracking
    -        changes to the source code to keep it a valid patch, reindenting the
    -        code and switching to function prototypes, nothing has been done to
    -        it.  This obviously raises some questions about how stable the code
    -        is.  It has not had a lot of exercise, though the patch does include
    -        a few test cases.
    +        The current reference implementation is simply an adaptation
    +        of Greg Ewing's original demonstration of the concept.  Other
    +        than tracking changes to the source code to keep it a valid
    +        patch, reindenting the code and switching to function
    +        prototypes, nothing has been done to it.  This obviously
    +        raises some questions about how stable the code is.  It has
    +        not had a lot of exercise, though the patch does include a few
    +        test cases.
    +
    +
    +References
    +
    +    [1] https://sourceforge.net/patch/?func=detailpatch&patch_id=100654&group_id=5470
    +    [2] Lockstep Iteration, pep-0201.txt
     
     
     Local Variables:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:17 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:17 +0100
    Subject: [Python-checkins] peps: Rearranged a few headers.  Thomas,
    	should this PEP's status be changed
    Message-ID: 
    
    http://hg.python.org/peps/rev/555f7658d6e3
    changeset:   133:555f7658d6e3
    user:        Barry Warsaw 
    date:        Wed Aug 23 05:22:41 2000 +0000
    summary:
      Rearranged a few headers.  Thomas, should this PEP's status be changed
    to Accepted?
    
    files:
      pep-0203.txt |  7 ++++---
      1 files changed, 4 insertions(+), 3 deletions(-)
    
    
    diff --git a/pep-0203.txt b/pep-0203.txt
    --- a/pep-0203.txt
    +++ b/pep-0203.txt
    @@ -1,11 +1,11 @@
     PEP: 203
     Title: Augmented Assignments
     Version: $Revision$
    -Owner: thomas at xs4all.net (Thomas Wouters)
    +Author: thomas at xs4all.net (Thomas Wouters)
    +Status: Draft
    +Type: Standards Track
     Python-Version: 2.0
    -Status: Draft
     Created: 13-Jul-2000
    -Type: Standard
     Post-History: 14-Aug-2000
     
     
    @@ -308,6 +308,7 @@
         [3] PEP 211, Adding New Linear Algebra Operators,
             http://python.sourceforge.net/peps/pep-0211.html
     
    +
     
     Local Variables:
     mode: indented-text
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:17 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:17 +0100
    Subject: [Python-checkins] peps: Editorial review, including:
    Message-ID: 
    
    http://hg.python.org/peps/rev/998df325a50f
    changeset:   134:998df325a50f
    user:        Barry Warsaw 
    date:        Wed Aug 23 05:41:57 2000 +0000
    summary:
      Editorial review, including:
    
        - Rearrange and standardize headers
        - Removed ^L's
        - Spellchecked
        - Indentation and formatting
        - Added reference to PEP 202
    
    Thomas, if the open issues have been decided, they can be `closed' in
    this PEP, and then it should probably be marked as Accepted.
    
    files:
      pep-0204.txt |  249 +++++++++++++++++++-------------------
      1 files changed, 127 insertions(+), 122 deletions(-)
    
    
    diff --git a/pep-0204.txt b/pep-0204.txt
    --- a/pep-0204.txt
    +++ b/pep-0204.txt
    @@ -1,38 +1,39 @@
     PEP: 204
     Title: Range Literals
     Version: $Revision$
    -Owner: thomas at xs4all.net (Thomas Wouters)
    +Author: thomas at xs4all.net (Thomas Wouters)
    +Status: Draft
    +Type: Standards Track
     Python-Version: 2.0
    -Status: Draft
    +Created: 14-Jul-2000
    +Post-History:
     
     
    -
     Introduction
     
    -    This PEP describes the `range literal' proposal for Python 2.0. 
    +    This PEP describes the `range literal' proposal for Python 2.0.
         This PEP tracks the status and ownership of this feature, slated
         for introduction in Python 2.0.  It contains a description of the
    -    feature and outlines changes necessary to support the feature. 
    +    feature and outlines changes necessary to support the feature.
         This PEP summarizes discussions held in mailing list forums, and
         provides URLs for further information, where appropriate.  The CVS
         revision history of this file contains the definitive historical
         record.
     
     
    -
     List ranges
     
         Ranges are sequences of numbers of a fixed stepping, often used in
         for-loops.  The Python for-loop is designed to iterate over a
         sequence directly:
         
    -    >>> l = ['a', 'b', 'c', 'd']
    -    >>> for item in l:
    -    ...     print item
    -    a
    -    b
    -    c
    -    d
    +        >>> l = ['a', 'b', 'c', 'd']
    +        >>> for item in l:
    +        ...     print item
    +        a
    +        b
    +        c
    +        d
         
         However, this solution is not always prudent.  Firstly, problems
         arise when altering the sequence in the body of the for-loop,
    @@ -56,25 +57,25 @@
         Using the `range' function, the above example would look like
         this:
         
    -    >>> for i in range(len(l)):
    -    ...     print l[i]
    -    a
    -    b
    -    c
    -    d
    +        >>> for i in range(len(l)):
    +        ...     print l[i]
    +        a
    +        b
    +        c
    +        d
         
         Or, to start at the second element of `l' and processing only
         every second element from then on:
         
    -    >>> for i in range(1, len(l), 2):
    -    ...     print l[i]
    -    b
    -    d
    +        >>> for i in range(1, len(l), 2):
    +        ...     print l[i]
    +        b
    +        d
         
         There are several disadvantages with this approach:
         
    -    - Clarity of purpose: Adding another functioncall, possibly with
    -      extra arithmatic to determine the desired length and step of the
    +    - Clarity of purpose: Adding another function call, possibly with
    +      extra arithmetic to determine the desired length and step of the
           list, does not improve readability of the code.  Also, it is
           possible to `shadow' the builtin `range' function by supplying a
           local or global variable with the same name, effectively
    @@ -82,7 +83,7 @@
           
         - Efficiency: because the `range' function can be overridden, the
           Python compiler cannot make assumptions about the for-loop, and
    -      has to maintain a seperate loop counter.
    +      has to maintain a separate loop counter.
           
         - Consistency: There already is a syntax that is used to denote
           ranges, as shown below.  This syntax uses the exact same
    @@ -91,7 +92,6 @@
           literals'.
     
     
    -
     Slice Indices
     
         In Python, a sequence can be indexed in one of two ways:
    @@ -100,10 +100,10 @@
         type as the original sequence, containing zero or more items from
         the original sequence.  This is done using a `range notation':
         
    -    >>> l[2:4]
    -    ['c', 'd']
    +        >>> l[2:4]
    +        ['c', 'd']
         
    -    This range notation consists of zero, one or two indices seperated
    +    This range notation consists of zero, one or two indices separated
         by a colon.  The first index is the `start' index, the second the
         `end'.  When either is left out, they default to respectively the
         start and the end of the sequence.
    @@ -112,16 +112,16 @@
         `step' as well.  Though this notation is not currently supported
         by most builtin types, if it were, it would work as follows:
         
    -    >>> l[1:4:2]
    -    ['b', 'd']
    +        >>> l[1:4:2]
    +        ['b', 'd']
     
         The third `argument' to the slice syntax is exactly the same as
    -    the `step' argument to range().  The underlying mechanisms of
    -    standard and these extended slices are sufficiently different and
    -    inconsistent that many classes and extensions outside of
    +    the `step' argument to range().  The underlying mechanisms of the
    +    standard, and these extended slices, are sufficiently different
    +    and inconsistent that many classes and extensions outside of
         mathematical packages do not implement support for the extended
    -    variant, and this should definately be resolved, but this is
    -    beyond the scope of this PEP.
    +    variant.  While this should be resolved, it is beyond the scope of
    +    this PEP.
         
         Extended slices do show, however, that there is already a
         perfectly valid and applicable syntax to denote ranges in a way
    @@ -132,7 +132,7 @@
           be both intuitive and easy to learn.
           
         - It is consistent with the other use of ranges in Python
    -      (slices.)
    +      (e.g. slices).
           
         - Because it is built-in syntax, instead of a builtin function, it
           cannot be overridden.  This means both that a viewer can be
    @@ -140,19 +140,18 @@
           have to worry about range() being `shadowed'.
     
     
    -
     The Proposed Solution
     
         The proposed implementation of range-literals combines the syntax
         for list literals with the syntax for (extended) slices, to form
         range literals:
         
    -    >>> [1:10]
    -    [1, 2, 3, 4, 5, 6, 7, 8, 9]
    -    >>> [:5]
    -    [0, 1, 2, 3, 4]
    -    >>> [5:1:-1]
    -    [5, 4, 3, 2]
    +        >>> [1:10]
    +        [1, 2, 3, 4, 5, 6, 7, 8, 9]
    +        >>> [:5]
    +        [0, 1, 2, 3, 4]
    +        >>> [5:1:-1]
    +        [5, 4, 3, 2]
         
         There is one minor difference between range literals and the slice
         syntax: though it is possible to omit all of `start', `end' and
    @@ -161,7 +160,6 @@
         but this has no meaning in range literals.
         
     
    -
     Reference Implementation
     
         The proposed implementation can be found on SourceForge[1].  It
    @@ -177,93 +175,100 @@
         currently hovering between private functions and full-fledged API
         calls.
     
    -    PyObject * PyList_FromRange(long start, long end, long step)
    -    builds a list from start, end and step, returning NULL if an error
    -    occurs.
    +    PyList_FromRange() builds a list from start, end and step,
    +    returning NULL if an error occurs.  Its prototype is:
    +
    +        PyObject * PyList_FromRange(long start, long end, long step)
         
    -    long PyList_GetLenOfRange(long start, long end, long step) is a
    -    helper function to determine the length of a range.  It was
    -    previously a static function in bltinmodule.c, but is now
    -    necessary in both listobject.c and bltinmodule.c (for xrange).  It
    -    is made non-static solely to avoid code duplication.
    +    PyList_GetLenOfRange() is a helper function used to determine the
    +    length of a range.  Previously, it was a static function in
    +    bltinmodule.c, but is now necessary in both listobject.c and
    +    bltinmodule.c (for xrange).  It is made non-static solely to avoid
    +    code duplication.  Its prototype is:
     
    -
    +        long PyList_GetLenOfRange(long start, long end, long step) 
    +
    +
     Open issues
     
    -    One possible solution to the discrepancy of requiring the `end'
    -    argument in range literals is to allow the range syntax to create
    -    a `generator', rather than a list, such as the `xrange' builtin
    -    function does.  However, a generator would not be a list, and it
    -    would be impossible, for instance, to assign to items in the
    -    generator, or append to it.
    +    - One possible solution to the discrepancy of requiring the `end'
    +      argument in range literals is to allow the range syntax to
    +      create a `generator', rather than a list, such as the `xrange'
    +      builtin function does.  However, a generator would not be a
    +      list, and it would be impossible, for instance, to assign to
    +      items in the generator, or append to it.
    +
    +      The range syntax could conceivably be extended to include tuples
    +      (i.e. immutable lists), which could then be safely implemented
    +      as generators.  This may be a desirable solution, especially for
    +      large number arrays: generators require very little in the way
    +      of storage and initialization, and there is only a small
    +      performance impact in calculating and creating the appropriate
    +      number on request.  (TBD: is there any at all? Cursory testing
    +      suggests equal performance even in the case of ranges of length
    +      1)
    +
    +      However, even if idea was adopted, would it be wise to `special
    +      case' the second argument, making it optional in one instance of
    +      the syntax, and non-optional in other cases ?
    +
    +    - Should it be possible to mix range syntax with normal list
    +      literals, creating a single list?  E.g.:
    +
    +          >>> [5, 6, 1:6, 7, 9]
    +
    +    to create
    +
    +          [5, 6, 1, 2, 3, 4, 5, 7, 9]
    +
    +    - How should range literals interact with another proposed new
    +      feature, `list comprehensions'[2]?  Specifically, should it be
    +      possible to create lists in list comprehensions?  E.g.:
         
    -    The range syntax could conceivably be extended to include tuples,
    -    immutable lists, which could then be safely implemented as
    -    generators.  Especially for large number arrays, this may be a
    -    desirable solution: generators require very little in the way of
    -    storage and initialization, and there is only a small performance
    -    impact in calculating and creating the appropriate number on
    -    request.  (TBD: is there any at all ? Cursory testing suggests
    -    equal performance even in the case of ranges of length 1.)
    +          >>> [x:y for x in (1, 2) y in (3, 4)]
    +
    +      Should this example return a single list with multiple ranges:
    +
    +          [1, 2, 1, 2, 3, 2, 2, 3]
    +
    +      Or a list of lists, like so:
    +
    +          [[1, 2], [1, 2, 3], [2], [2, 3]]
    +
    +      However, as the syntax and semantics of list comprehensions are
    +      still subject of hot debate, these issues are probably best
    +      addressed by the `list comprehensions' PEP.
    +
    +    - Range literals accept objects other than integers: it performs
    +      PyInt_AsLong() on the objects passed in, so as long as the
    +      objects can be coerced into integers, they will be accepted.
    +      The resulting list, however, is always composed of standard
    +      integers.
    +
    +      Should range literals create a list of the passed-in type?  It
    +      might be desirable in the cases of other builtin types, such as
    +      longs and strings:
    +
    +          >>> [ 1L : 2L<<64 : 2<<32L ]    
    +          >>> ["a":"z":"b"]
    +          >>> ["a":"z":2]
    +
    +      However, this might be too much `magic' to be obvious.  It might
    +      also present problems with user-defined classes: even if the
    +      base class can be found and a new instance created, the instance
    +      may require additional arguments to __init__, causing the
    +      creation to fail.
         
    -    However, even if idea was adopted, would it be wise to `special
    -    case' the second argument, making it optional in one instance of
    -    the syntax, and non-optional in other cases ?
    -
    -
    -    Should it be possible to mix range syntax with normal list
    -    literals, creating a single list, like so:
    -
    -    >>> [5, 6, 1:6, 7, 9]
    -    to create
    -    [5, 6, 1, 2, 3, 4, 5, 7, 9]
    -
    -
    -    How should range literals interact with another proposed new
    -    feature, `list comprehensions', PEP-202 ? In specific, should it
    -    be possible to create lists in list comprehensions, like so:
    -    
    -    >>> [x:y for x in (1,2) y in (3, 4)]
    -
    -    Should this example return a single list with multiple ranges:
    -    [1, 2, 1, 2, 3, 2, 2, 3]
    -
    -    Or a list of lists, like so:
    -    [[1, 2], [1, 2, 3], [2], [2, 3]]
    -
    -    However, as the syntax and semantics of list comprehensions are
    -    still subject of hot debate, these issues are probably best
    -    addressed by the `list comprehensions' PEP.
    +    - The PyList_FromRange() and PyList_GetLenOfRange() functions need
    +      to be classified: are they part of the API, or should they be
    +      made private functions?
         
     
    -    Range literals accept objects other than integers: it performs
    -    PyInt_AsLong() on the objects passed in, so as long as the objects
    -    can be coerced into integers, they will be accepted.  The
    -    resulting list, however, is always composed of standard integers.
    -
    -    Should range literals create a list of the passed-in type ? It
    -    might be desirable in the cases of other builtin types, such as
    -    longs and strings:
    -    
    -    >>> [ 1L : 2L<<64 : 2<<32L ]    
    -    >>> ["a":"z":"b"]
    -    >>> ["a":"z":2]
    -    
    -    However, this might be too much `magic' to be obvious.  It might
    -    also present problems with user-defined classes: even if the base
    -    class can be found and a new instance created, the instance may
    -    require additional arguments to __init__, causing the creation to
    -    fail.
    -
    -    
    -    The PyList_FromRange() and PyList_GetLenOfRange() functions need
    -    to be classified: are they part of the API, or should they be made
    -    private functions ?
    -    
    -
     References:
     
         [1] http://sourceforge.net/patch/?func=detailpatch&patch_id=100902&group_id=5470
    +    [2] PEP 202, List Comprehensions, pep-0202.txt
    +
     
     
     Local Variables:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:20 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:20 +0100
    Subject: [Python-checkins] peps: Deferred until Python 2.1.
    Message-ID: 
    
    http://hg.python.org/peps/rev/8f4090e3f377
    changeset:   135:8f4090e3f377
    user:        Barry Warsaw 
    date:        Wed Aug 23 05:44:46 2000 +0000
    summary:
      Deferred until Python 2.1.
    
    files:
      pep-0209.txt |  9 ++++++---
      pep-0210.txt |  9 ++++++---
      2 files changed, 12 insertions(+), 6 deletions(-)
    
    
    diff --git a/pep-0209.txt b/pep-0209.txt
    --- a/pep-0209.txt
    +++ b/pep-0209.txt
    @@ -1,9 +1,12 @@
     PEP: 209
     Title: Adding Multidimensional Arrays
     Version: $Revision$
    -Owner: davida at activestate.com (David Ascher)
    -Python-Version: 2.0
    -Status: Incomplete
    +Author: davida at activestate.com (David Ascher)
    +Status: Draft
    +Type: Standards Track
    +Python-Version: 2.1
    +Created: 15-Jul-2000
    +Post-History:
     
     
     
    diff --git a/pep-0210.txt b/pep-0210.txt
    --- a/pep-0210.txt
    +++ b/pep-0210.txt
    @@ -1,9 +1,12 @@
     PEP: 210
     Title: Decoupling the Interpreter Loop
     Version: $Revision$
    -Owner: davida at activestate.com (David Ascher)
    -Python-Version: 2.0
    -Status: Incomplete
    +Author: davida at activestate.com (David Ascher)
    +Status: Draft
    +Type: Standards Track
    +Python-Version: 2.1
    +Created: 15-Jul-2000
    +Post-History:
     
     
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:20 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:20 +0100
    Subject: [Python-checkins] peps: Deferred to Python 2.1
    Message-ID: 
    
    http://hg.python.org/peps/rev/68ded446ef9a
    changeset:   136:68ded446ef9a
    user:        Barry Warsaw 
    date:        Wed Aug 23 05:47:12 2000 +0000
    summary:
      Deferred to Python 2.1
    
    files:
      pep-0213.txt |  19 +++++++++++++++----
      1 files changed, 15 insertions(+), 4 deletions(-)
    
    
    diff --git a/pep-0213.txt b/pep-0213.txt
    --- a/pep-0213.txt
    +++ b/pep-0213.txt
    @@ -1,9 +1,12 @@
     PEP: 213
     Title: Attribute Access Handlers
     Version: $Revision$
    -Owner: paul at prescod.net (Paul Prescod)
    -Python-Version: 2.0
    -Status: Incomplete
    +Author: paul at prescod.net (Paul Prescod)
    +Status: Draft
    +Type: Standards Track
    +Python-Version: 2.1
    +Created: 21-Jul-2000
    +Post-History:
     
     
     Introduction
    @@ -19,6 +22,7 @@
          This PEP describes a feature that makes it easier, more efficient
          and safer to implement these handlers for Python instances.
     
    +
     Justification
     
         Scenario 1:
    @@ -50,6 +54,7 @@
         for whatever purpose. Again, this is not a new feature but
         merely a new syntax for an existing convention.
     
    +
     Current Solution
     
         To make some attributes read-only:
    @@ -85,6 +90,7 @@
             mitigated through an extra level of method call but this is 
             inefficient.
     
    +
     Proposed Syntax
      
         Special methods should declare themselves with declarations of the
    @@ -105,7 +111,8 @@
         x.foo=fooval+5
         del x.foo
     
    - Semantics
    +
    +Semantics
      
          Attribute references of all three kinds should call the method.
          The op parameter can be "get"/"set"/"del". Of course this string
    @@ -125,6 +132,7 @@
          opposite choice seems fairly feasible also, however. The same
          goes for __del_y__.
     
    +
     Proposed Implementation
      
         There is a new object type called an attribute access handler. 
    @@ -169,6 +177,7 @@
         The implementation of delete is analogous to the implementation
         of set.
     
    +
     Caveats
     
         1. You might note that I have not proposed any logic to keep
    @@ -199,6 +208,8 @@
             on the object itself can cause an infinite loop (as with __getattr__)
             Once again, the solution is to use a special (typically private) 
             variable such as __XXX.
    +
    +
     
     Local Variables:
     mode: indented-text
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:22 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:22 +0100
    Subject: [Python-checkins] peps: Informational PEPs don't need a
    	Python-Version:
    Message-ID: 
    
    http://hg.python.org/peps/rev/a0ae70ade535
    changeset:   137:a0ae70ade535
    user:        Barry Warsaw 
    date:        Wed Aug 23 05:49:27 2000 +0000
    summary:
      Informational PEPs don't need a Python-Version:
    
    files:
      pep-0216.txt |  6 +++---
      1 files changed, 3 insertions(+), 3 deletions(-)
    
    
    diff --git a/pep-0216.txt b/pep-0216.txt
    --- a/pep-0216.txt
    +++ b/pep-0216.txt
    @@ -1,10 +1,10 @@
     PEP: 216
     Title: Docstring Format
     Version: $Revision$
    -Owner: moshez at math.huji.ac.il (Moshe Zadka)
    -Python-Version: 2.x
    +Author: moshez at math.huji.ac.il (Moshe Zadka)
     Status: Draft
    -
    +Type: Informational
    +Created: 31-Jul-2000
     
     
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:22 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:22 +0100
    Subject: [Python-checkins] peps: Added Type: header
    Message-ID: 
    
    http://hg.python.org/peps/rev/5006aa5af271
    changeset:   138:5006aa5af271
    user:        Barry Warsaw 
    date:        Wed Aug 23 05:51:13 2000 +0000
    summary:
      Added Type: header
    
    files:
      pep-0217.txt |  3 ++-
      pep-0218.txt |  3 ++-
      2 files changed, 4 insertions(+), 2 deletions(-)
    
    
    diff --git a/pep-0217.txt b/pep-0217.txt
    --- a/pep-0217.txt
    +++ b/pep-0217.txt
    @@ -2,8 +2,9 @@
     Title: Display Hook for Interactive Use
     Version: $Revision$
     Author: moshez at math.huji.ac.il (Moshe Zadka)
    +Status: Draft
    +Type: Standards Track
     Python-Version: 2.1
    -Status: Draft
     Created: 31-Jul-2000
     Post-History: 
     
    diff --git a/pep-0218.txt b/pep-0218.txt
    --- a/pep-0218.txt
    +++ b/pep-0218.txt
    @@ -2,8 +2,9 @@
     Title: Adding a Built-In Set Object Type
     Version: $Revision$
     Author: gvwilson at nevex.com (Greg Wilson)
    +Status: Draft
    +Type: Standards Track
     Python-Version: 2.1
    -Status: Draft
     Created: 31-Jul-2000
     Post-History: 
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:24 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:24 +0100
    Subject: [Python-checkins] peps: There are now no `technical' PEPs: only
    	standards track and
    Message-ID: 
    
    http://hg.python.org/peps/rev/9f70592f04f8
    changeset:   139:9f70592f04f8
    user:        Barry Warsaw 
    date:        Wed Aug 23 05:52:49 2000 +0000
    summary:
      There are now no `technical' PEPs: only standards track and
    informational.  This one fits better as a standards track PEP.
    
    files:
      pep-0219.txt |  5 +++--
      1 files changed, 3 insertions(+), 2 deletions(-)
    
    
    diff --git a/pep-0219.txt b/pep-0219.txt
    --- a/pep-0219.txt
    +++ b/pep-0219.txt
    @@ -2,8 +2,9 @@
     Title: Stackless Python
     Version: $Revision$
     Author: gmcm at hypernet.com (Gordon McMillan)
    -Status: Active
    -Type: Technical
    +Status: Draft
    +Type: Standards Track
    +Python-Version: 2.1
     Created: 14-Aug-2000
     Post-History:
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:25 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:25 +0100
    Subject: [Python-checkins] peps: Minor editorial changes.
    Message-ID: 
    
    http://hg.python.org/peps/rev/40beece5fef0
    changeset:   140:40beece5fef0
    user:        Barry Warsaw 
    date:        Wed Aug 23 05:57:47 2000 +0000
    summary:
      Minor editorial changes.
    
    files:
      pep-0221.txt |  60 +++++++++++++++++++--------------------
      1 files changed, 29 insertions(+), 31 deletions(-)
    
    
    diff --git a/pep-0221.txt b/pep-0221.txt
    --- a/pep-0221.txt
    +++ b/pep-0221.txt
    @@ -1,37 +1,38 @@
     PEP: 221
     Title: Import As
     Version: $Revision$
    -Owner: thomas at xs4all.net (Thomas Wouters)
    +Author: thomas at xs4all.net (Thomas Wouters)
    +Status: Accepted
    +Type: Standard
     Python-Version: 2.0
    -Status: Accepted
     Created: 15-Aug-2000
    -Type: Standard
    +Post-History:
     
     
     Introduction
     
    -    This PEP describes the `import as' proposal for Python 2.0. This
    -    PEP tracks the status and ownership of this feature. It contains a
    -    description of the feature and outlines changes necessary to
    -    support the feature. The CVS revision history of this file
    +    This PEP describes the `import as' proposal for Python 2.0.  This
    +    PEP tracks the status and ownership of this feature.  It contains
    +    a description of the feature and outlines changes necessary to
    +    support the feature.  The CVS revision history of this file
         contains the definitive historical record.
     
     
     Rationale
     
    -    This PEP proposes a small extention of current Python syntax
    -    regarding the `import' and `from  import' statements. 
    -    These statements load in a module, and either bind that module to
    -    a local name, or binds objects from that module to a local name. 
    -    However, it is sometimes desirable to bind those objects to a
    -    different name, for instance to avoid name clashes. Currently, a
    -    round-about way has to be used to achieve this:
    +    This PEP proposes an extention of Python syntax regarding the
    +    `import' and `from  import' statements.  These statements
    +    load in a module, and either bind that module to a local name, or
    +    binds objects from that module to a local name.  However, it is
    +    sometimes desirable to bind those objects to a different name, for
    +    instance to avoid name clashes.  This can currently be achieved
    +    using the following idiom:
     
             import os
             real_os = os
             del os
         
    -    And similar for the `from ... import' statement:
    +    And similarly for the `from ... import' statement:
         
             from os import fdopen, exit, stat
             os_fdopen = fdopen
    @@ -45,7 +46,7 @@
             from os import fdopen as os_fdopen, exit, stat as os_stat
         
         The `as' name is not intended to be a keyword, and some trickery
    -    has to be used to convince the CPython parser it isn't one. For
    +    has to be used to convince the CPython parser it isn't one.  For
         more advanced parsers/tokenizers, however, this should not be a
         problem.
         
    @@ -54,19 +55,18 @@
         
             import os.path
             
    -    The actual name stored locally is `os', not `path' (so that the
    -    newly imported module can be referenced as `os.path'.) When
    -    introducing the `as' keyword, it is unclear whether the `os'
    -    module or the `path' sub-module should be stored `as' the
    -    requested local name.
    +    The actual name stored locally is `os', not `path', and the newly
    +    imported module can be referenced as `os.path'.  When introducing
    +    the `as' keyword, it is unclear whether the `os' module or the
    +    `path' sub-module should be stored `as' the requested local name.
     
     
     Implementation details
     
         This PEP has been accepted, and the suggested code change has been
    -    checked in. The patch can still be found in the SourceForge patch
    -    manager[1]. Currently, a NAME field is used in the grammar rather
    -    than a bare string, to avoid the keyword issue. It introduces a
    +    checked in.  The patch can still be found in the SourceForge patch
    +    manager[1].  Currently, a NAME field is used in the grammar rather
    +    than a bare string, to avoid the keyword issue.  It introduces a
         new bytecode, IMPORT_STAR, which performs the `from module import
         *' behaviour, and changes the behaviour of the IMPORT_FROM
         bytecode so that it loads the requested name (which is always a
    @@ -79,9 +79,9 @@
         into the local namespace.
         
         An additional change to this syntax has also been suggested, to
    -    generalize the expression given after the `as' clause. Rather than
    -    a single name, it could be allowed to be any expression that
    -    yields a valid l-value; anything that can be assigned to. The
    +    generalize the expression given after the `as' clause.  Rather
    +    than a single name, it could be allowed to be any expression that
    +    yields a valid l-value; anything that can be assigned to.  The
         change to accomodate this is minimal, as the patch proves[2], and
         the resulting generalization allows a number of new constructs
         that run completely parallel with other Python assignment
    @@ -103,11 +103,9 @@
     
     References
     
    -    [1]
    -http://sourceforge.net/patch/?func=detailpatch&patch_id=101135&group_id=5470
    +    [1] http://sourceforge.net/patch/?func=detailpatch&patch_id=101135&group_id=5470
     
    -    [2]
    -http://sourceforge.net/patch/?func=detailpatch&patch_id=101234&group_id=5470
    +    [2] http://sourceforge.net/patch/?func=detailpatch&patch_id=101234&group_id=5470
     
     
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:29 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:29 +0100
    Subject: [Python-checkins] peps: Additional headers needed.
    Message-ID: 
    
    http://hg.python.org/peps/rev/f655af5d2ea6
    changeset:   141:f655af5d2ea6
    user:        Barry Warsaw 
    date:        Wed Aug 23 06:03:29 2000 +0000
    summary:
      Additional headers needed.
    
    files:
      pep-0223.txt |  3 ++-
      1 files changed, 2 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0223.txt b/pep-0223.txt
    --- a/pep-0223.txt
    +++ b/pep-0223.txt
    @@ -2,8 +2,9 @@
     Title: Change the Meaning of \x Escapes
     Version: $Revision$
     Author: tpeters at beopen.com (Tim Peters)
    +Status: Draft
    +Type: Standards Track
     Python-Version: 2.0
    -Status: Draft
     Created: 20-Aug-2000
     Post-History:
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:29 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:29 +0100
    Subject: [Python-checkins] peps: Deferred until Python 2.1.
    Message-ID: 
    
    http://hg.python.org/peps/rev/a8aa307a4ef1
    changeset:   142:a8aa307a4ef1
    user:        Barry Warsaw 
    date:        Wed Aug 23 06:04:33 2000 +0000
    summary:
      Deferred until Python 2.1.
    
    files:
      pep-0215.txt |  10 +++++++---
      pep-0222.txt |   1 +
      2 files changed, 8 insertions(+), 3 deletions(-)
    
    
    diff --git a/pep-0215.txt b/pep-0215.txt
    --- a/pep-0215.txt
    +++ b/pep-0215.txt
    @@ -1,9 +1,13 @@
     PEP: 215
     Title: String Interpolation
     Version: $Revision$
    -Owner: ping at lfw.org (Ka-Ping Yee)
    -Python-Version: 2.0
    -Status: Incomplete
    +Author: ping at lfw.org (Ka-Ping Yee)
    +Status: Draft
    +Type: Standards Track
    +Python-Version: 2.1
    +Created: 24-Jul-2000
    +Post-History:
    +
     
     
     Local Variables:
    diff --git a/pep-0222.txt b/pep-0222.txt
    --- a/pep-0222.txt
    +++ b/pep-0222.txt
    @@ -4,6 +4,7 @@
     Author: akuchlin at mems-exchange.org (Andrew Kuchling)
     Status: Active
     Type: Standards Track
    +Python-Version: 2.1
     Created: 18-Aug-2000
     Post-History:
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:37 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:37 +0100
    Subject: [Python-checkins] peps: Incorporate Guido's decision to go for
    	'__iadd__' for the	Python class
    Message-ID: 
    
    http://hg.python.org/peps/rev/a7fb43bf8c45
    changeset:   143:a7fb43bf8c45
    user:        Thomas Wouters 
    date:        Wed Aug 23 11:32:01 2000 +0000
    summary:
      Incorporate Guido's decision to go for '__iadd__' for the Python class
    hooks, and trim the 'open isues': PyNumber_InPlacePower() is now a
    trinary function, like PyNumber_Power(), and I'm working on the docs and the
    library.
    
    files:
      pep-0203.txt |  59 ++++++++++++++-------------------------
      1 files changed, 21 insertions(+), 38 deletions(-)
    
    
    diff --git a/pep-0203.txt b/pep-0203.txt
    --- a/pep-0203.txt
    +++ b/pep-0203.txt
    @@ -62,12 +62,12 @@
         
             x += y
         
    -    tries to call x.__add_ab__(y), which is the `in-place' variant of
    -    __add__. If __add_ab__ is not present, x.__add__(y) is
    +    tries to call x.__iadd__(y), which is the `in-place' variant of
    +    __add__. If __iadd__ is not present, x.__add__(y) is
         attempted, and finally y.__radd__(x) if __add__ is missing too. 
    -    There is no `right-hand-side' variant of __add_ab__, because that
    +    There is no `right-hand-side' variant of __iadd__, because that
         would require for `y' to know how to in-place modify `x', which is
    -    unsafe to say the least. The __add_ab__ hook should behave similar
    +    unsafe to say the least. The __add__ hook should behave similar
         to __add__, returning the result of the operation (which could be
         `self') which is to be stored in the variable `x'.
      
    @@ -139,22 +139,19 @@
         which Python classes can implement to overload the augmented
         assignment operations:
         
    -        __add_ab__
    -        __sub_ab__
    -        __mul_ab__
    -        __div_ab__
    -        __mod_ab__
    -        __pow_ab__
    -        __lshift_ab__
    -        __rshift_ab__
    -        __and_ab__
    -        __xor_ab__
    -        __or_ab__
    +        __iadd__
    +        __isub__
    +        __imul__
    +        __idiv__
    +        __imod__
    +        __ipow__
    +        __ilshift__
    +        __irshift__
    +        __iand__
    +        __ixor__
    +        __ior__
         
    -    The `__add_ab__' name is one proposed by Guido[1], and stands for
    -    `and becomes'. Other proposed names include `__iadd__',
    -    `__add_in__' and `__inplace_add__'. A firm decision by the BDFL is
    -    probably needed to finalize this issue.
    +    The `i' in `__iadd__' stands for `in-place'.
     
         For C extension types, the following struct members are added:
         
    @@ -260,20 +257,11 @@
     
     Open Issues
     
    -    The PyNumber_InPlacePower() function only takes two arguments, not
    -    one like PyNumber_Power(). This is because there is no way to do
    -    an inplace three-argument-power trough the augmented assignment
    -    syntax or the power() function.
    -    
    +    The PyNumber_InPlace API is only a subset of the normal PyNumber
    +    API: only those functions that are required to support the
    +    augmented assignment syntax are included. If other in-place API
    +    functions are needed, they can be added later.
     
    -    Possibly a more obvious name for the Python hooks can be found. 
    -    `_ab_' is what Guido proposed[1] as a working name, and comes from
    -    an old Algol-68 naming convention.
    -
    -
    -    Documentation needs to be written. The reference manual, the `dis'
    -    section of the library manual, and possibly the tutorial.
    -    
     
         The DUP_TOPX bytecode is a conveniency bytecode, and is not
         actually necessary. It should be considered whether this bytecode
    @@ -281,10 +269,6 @@
         bytecode at this time.
         
     
    -    The standard library should be adjusted to provide augmented
    -    assignment hooks, where sensible.
    -
    -
         It is not possible to do an inplace operation in the variant of
         
             += 
    @@ -303,8 +287,7 @@
     References
     
         [1] http://www.python.org/pipermail/python-list/2000-June/059556.html
    -    [2]
    -http://sourceforge.net/patch?func=detailpatch&patch_id=100699&group_id=5470
    +    [2] http://sourceforge.net/patch?func=detailpatch&patch_id=100699&group_id=5470
         [3] PEP 211, Adding New Linear Algebra Operators,
             http://python.sourceforge.net/peps/pep-0211.html
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:37 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:37 +0100
    Subject: [Python-checkins] peps: Clean up a few items: the 'import os.path
    	as p' syntax and the
    Message-ID: 
    
    http://hg.python.org/peps/rev/e3b977b7348a
    changeset:   144:e3b977b7348a
    user:        Thomas Wouters 
    date:        Wed Aug 23 12:09:07 2000 +0000
    summary:
      Clean up a few items: the 'import os.path as p' syntax and the
    'extended-as'-assignment syntax, both of which Guido has decided on.
    
    files:
      pep-0221.txt |  34 +++++++++++++++-------------------
      1 files changed, 15 insertions(+), 19 deletions(-)
    
    
    diff --git a/pep-0221.txt b/pep-0221.txt
    --- a/pep-0221.txt
    +++ b/pep-0221.txt
    @@ -3,7 +3,7 @@
     Version: $Revision$
     Author: thomas at xs4all.net (Thomas Wouters)
     Status: Accepted
    -Type: Standard
    +Type: Standards Track
     Python-Version: 2.0
     Created: 15-Aug-2000
     Post-History:
    @@ -49,16 +49,19 @@
         has to be used to convince the CPython parser it isn't one.  For
         more advanced parsers/tokenizers, however, this should not be a
         problem.
    +
    +    A slightly special case exists for importing sub-modules.  The
    +    statement
    +
    +        import os.path    
    +
    +    stores the module `os' locally as `os', so that the imported
    +    submodule `path' is accessible as `os.path'.  As a result,
         
    -    To avoid confusion, importing a submodule `as' another module is
    -    not allowed. When importing a submodule in the normal way,
    -    
    -        import os.path
    -        
    -    The actual name stored locally is `os', not `path', and the newly
    -    imported module can be referenced as `os.path'.  When introducing
    -    the `as' keyword, it is unclear whether the `os' module or the
    -    `path' sub-module should be stored `as' the requested local name.
    +        import os.path as p
    +
    +    should store `os.path', not `os', in `p'.  The current
    +    implementation does not yet support this.
     
     
     Implementation details
    @@ -85,15 +88,8 @@
         change to accomodate this is minimal, as the patch proves[2], and
         the resulting generalization allows a number of new constructs
         that run completely parallel with other Python assignment
    -    constructs.
    -
    -        import sys as x['sys']
    -
    -        from MyFastcPickle import Pickler as shelve.Pickler
    -        
    -        from sys import version_info as (maj, min, pl, relnam, relno)
    -        
    -        from sys import path as mypath[-1:]
    +    constructs. However, this idea has been rejected by Guido, as
    +    `hypergeneralization'.
     
     
     Copyright
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:41 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:41 +0100
    Subject: [Python-checkins] peps: Fix typo found by Peter Funk. Thanx, Peter!
    Message-ID: 
    
    http://hg.python.org/peps/rev/ddf56a9da41a
    changeset:   145:ddf56a9da41a
    user:        Thomas Wouters 
    date:        Wed Aug 23 12:34:02 2000 +0000
    summary:
      Fix typo found by Peter Funk. Thanx, Peter!
    
    (Of course, I put it there on purpose, just to see if anyone was paying
    attention. Really! :)
    
    files:
      pep-0203.txt |  2 +-
      1 files changed, 1 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0203.txt b/pep-0203.txt
    --- a/pep-0203.txt
    +++ b/pep-0203.txt
    @@ -67,7 +67,7 @@
         attempted, and finally y.__radd__(x) if __add__ is missing too. 
         There is no `right-hand-side' variant of __iadd__, because that
         would require for `y' to know how to in-place modify `x', which is
    -    unsafe to say the least. The __add__ hook should behave similar
    +    unsafe to say the least. The __iadd__ hook should behave similar
         to __add__, returning the result of the operation (which could be
         `self') which is to be stored in the variable `x'.
      
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:43 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:43 +0100
    Subject: [Python-checkins] peps: remove mystery R & B columns
    Message-ID: 
    
    http://hg.python.org/peps/rev/dee33e35fa8e
    changeset:   146:dee33e35fa8e
    user:        Jeremy Hylton 
    date:        Wed Aug 23 14:34:25 2000 +0000
    summary:
      remove mystery R & B columns
    
    files:
      pep-0200.txt |  26 ++++++++++++--------------
      1 files changed, 12 insertions(+), 14 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -86,18 +86,16 @@
         anyway, but that's another matter.)  If the test cases are known
         to fail, they serve no useful purpose.
     
    -    [what are the "R" and "B" columns supposed to mean? - tim]
    -
    -    test case         platform   R B    date reported
    -    ---------         --------   - -    -------------
    -    test_parser       Windows    ? ?    22-Aug-2000
    +    test case         platform    date reported
    +    ---------         --------    -------------
    +    test_parser       Windows     22-Aug-2000
             [probably all platforms]
     
    -    test_posixpath    Windows    ? ?    22-Aug-2000
    +    test_posixpath    Windows     22-Aug-2000
             [probably all platforms; think it's because Skip backed out
              commonpathprefix changes but didn't change the tests]
     
    -    test_fork1        Linux      X      26-Jul-2000     just SMP?
    +    test_fork1        Linux       26-Jul-2000 
             [no clue; there are probably two bugs here]
             [19-Aug-200 tim
              Charles Waldman whipped up a patch to give child processes a new
    @@ -113,9 +111,9 @@
         If you find a test bouncing between this section and the previous one,
         the code it's testing is in trouble!
     
    -    test case         platform   R B    date reported
    -    ---------         --------   - -    -------------
    -    test_popen2       Win32      X X    26-Jul-2000
    +    test case         platform    date reported
    +    ---------         --------    -------------
    +    test_popen2       Win32       26-Jul-2000
             [20-Aug-2000 tim
              changed the popen2.py _test function to use the "more" cmd
              when os.name == "nt".  This makes test_popen2 pass under
    @@ -133,14 +131,14 @@
              the code.
             ]
     
    -    test_winreg        Win32     X X    26-Jul-2000
    +    test_winreg        Win32      26-Jul-2000
             [works 15-Aug-2000 for me, on Win98 - tim]
     
    -    test_mmap          Win32     X X    26-Jul-2000
    +    test_mmap          Win32      26-Jul-2000
             [believe that was fixed by Mark H.]
             [works 15-Aug-2000 for me, on Win98 - tim]
     
    -    test_longexp      Win98+?    ? ?    15-Aug-2000
    +    test_longexp      Win98+?     15-Aug-2000
             [fails in release build,
              passes in release build under verbose mode but doesn't
                  look like it should pass,
    @@ -161,7 +159,7 @@
              in some cases where the test fails without -v
             ]
     
    -    test_winreg2      Win32      X X    26-Jul-2000
    +    test_winreg2      Win32       26-Jul-2000
             [20-Aug-2000 tim - the test has been removed from the project]
             [19-Aug-2000 tim
              This test will never work on Win98, because it's looking for
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:43 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:43 +0100
    Subject: [Python-checkins] peps: move os.path.commonprefix from open to
    	completed
    Message-ID: 
    
    http://hg.python.org/peps/rev/952bf850412e
    changeset:   147:952bf850412e
    user:        Jeremy Hylton 
    date:        Wed Aug 23 14:43:59 2000 +0000
    summary:
      move os.path.commonprefix from open to completed
    split open items into 2.0b1 and 2.0 sections
    
    files:
      pep-0200.txt |  53 ++++++++++++++++++---------------------
      1 files changed, 24 insertions(+), 29 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -173,51 +173,43 @@
             ]
     
     
    -Open items -- should be done/fixed
    +Open items -- Need to be resolved before 2.0b1 release
     
    -    Decoding errors when comparing strings.  There is a dictionary bug
    -    that prevents objects from being accessible when an exception is
    -    raised during hashing or comparison.
    +    Fix bug 112558
    +    https://sourceforge.net/bugs/?func=detailbug&bug_id=112558&group_id=5470
     
    -    Decide what to do about os.path.commonprefix.  Then do it.
    -    [19-Aug-2000 tim
    -     Guido msg on Python-Dev:
    -     - restore the old behavior on all platforms - Skip volunteered for this
    -     - add to the docs that to get the common directory you use dirname()
    -     - add testcases that check that this works on all platforms
    -     - don't add commonpathprefix(), because dirname() already does it
    -    ]
    +    Get all patches out of Open.
     
    -    2.0b1:  Get all patches out of Open.
    +    Get all patches out of Accepted.
     
    -    2.0b1:  Get all patches out of Accepted.
    +    Decide on a license.
     
    -    2.0b1:  Decide on a license.
    -
    -    2.0b1 Windows:  Look for registry info in HKCU before HKLM - Mark
    +    Windows:  Look for registry info in HKCU before HKLM - Mark
         Hammond.
     
    -    2.0b1 Windows installer:  If HKLM isn't writable, back off to HKCU (so
    +    Windows installer:  If HKLM isn't writable, back off to HKCU (so
         Python can be installed on NT & 2000 without admin privileges).
     
    -    2.0b1 Windows installer:  Install w9xpopen.exe only under Win95/98.
    +    Windows installer:  Install w9xpopen.exe only under Win95/98.
     
    -    2.0b1 Windows ME:  Don't know anything about it.  Will the installer
    +    Windows ME:  Don't know anything about it.  Will the installer
         even run?  Does it need the w9xpopen hack?
     
    -    2.0b1 Win98 Guido:  popen is hanging on Guido, and even freezing the
    +    Win98 Guido:  popen is hanging on Guido, and even freezing the
         whole machine.  No clue yet.
     
    -    2.0:  Decide on a license.
    +Open items -- Need to be resolved before 2.0 final release
     
    -    2.0:  Finish writing the PEPs for the features that went out
    -    with 2.0b1(! sad, but realistic -- we'll get better with practice).
    +    Decide on a license.
     
    -    2.0:  Major effort to whittle the bug database down to size.  I've (tim)
    -    seen this before:  if you can keep all the open bugs fitting on one
    -    screen, people will generally keep it that way.  But let it slobber
    -    over a screen for a month, & it just goes to hell (no "visible
    -    progress" indeed!).
    +    Finish writing the PEPs for the features that went out with
    +    2.0b1(! sad, but realistic -- we'll get better with practice).
    +
    +    Major effort to whittle the bug database down to size.  I've (tim)
    +    seen this before: if you can keep all the open bugs fitting on one
    +    screen, people will generally keep it that way.  But let it
    +    slobber over a screen for a month, & it just goes to hell (no
    +    "visible progress" indeed!).
     
     
     Open items -- completed/fixed
    @@ -232,6 +224,9 @@
     
     Accepted and completed
     
    +    * Restore old os.path.commonprefix behavior
    +      Do we have test cases that work on all platforms?
    +
         * Lockstep iteration ("zip" function) - Barry Warsaw
     
         * SRE - Fredrik Lundh
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:53 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:53 +0100
    Subject: [Python-checkins] peps: confirm that test_parser and test_posixpath
    	fail on Linux too
    Message-ID: 
    
    http://hg.python.org/peps/rev/c7320e91f338
    changeset:   148:c7320e91f338
    user:        Jeremy Hylton 
    date:        Wed Aug 23 14:56:26 2000 +0000
    summary:
      confirm that test_parser and test_posixpath fail on Linux too
    
    files:
      pep-0200.txt |  9 ++++-----
      1 files changed, 4 insertions(+), 5 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -88,12 +88,11 @@
     
         test case         platform    date reported
         ---------         --------    -------------
    -    test_parser       Windows     22-Aug-2000
    -        [probably all platforms]
    +    test_parser       all         22-Aug-2000
     
    -    test_posixpath    Windows     22-Aug-2000
    -        [probably all platforms; think it's because Skip backed out
    -         commonpathprefix changes but didn't change the tests]
    +    test_posixpath    all         22-Aug-2000
    +        [think it's because Skip backed out commonpathprefix changes
    +        but didn't change the tests] 
     
         test_fork1        Linux       26-Jul-2000 
             [no clue; there are probably two bugs here]
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:59 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:59 +0100
    Subject: [Python-checkins] peps: Fred fixed the parser module
    Message-ID: 
    
    http://hg.python.org/peps/rev/2fb0050a4634
    changeset:   149:2fb0050a4634
    user:        Jeremy Hylton 
    date:        Wed Aug 23 15:55:40 2000 +0000
    summary:
      Fred fixed the parser module
    
    files:
      pep-0200.txt |  4 +---
      1 files changed, 1 insertions(+), 3 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -88,11 +88,9 @@
     
         test case         platform    date reported
         ---------         --------    -------------
    -    test_parser       all         22-Aug-2000
    -
         test_posixpath    all         22-Aug-2000
             [think it's because Skip backed out commonpathprefix changes
    -        but didn't change the tests] 
    +        but didn't change the tests; patch to fix exists] 
     
         test_fork1        Linux       26-Jul-2000 
             [no clue; there are probably two bugs here]
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:26:59 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:26:59 +0100
    Subject: [Python-checkins] peps: Accepted,
    	but also added a note about a misfeature that should be
    Message-ID: 
    
    http://hg.python.org/peps/rev/9f43557bcfb4
    changeset:   150:9f43557bcfb4
    user:        Guido van Rossum 
    date:        Wed Aug 23 15:57:21 2000 +0000
    summary:
      Accepted, but also added a note about a misfeature that should be
    fixed.
    
    files:
      pep-0203.txt |  5 ++++-
      1 files changed, 4 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0203.txt b/pep-0203.txt
    --- a/pep-0203.txt
    +++ b/pep-0203.txt
    @@ -2,7 +2,7 @@
     Title: Augmented Assignments
     Version: $Revision$
     Author: thomas at xs4all.net (Thomas Wouters)
    -Status: Draft
    +Status: Accepted
     Type: Standards Track
     Python-Version: 2.0
     Created: 13-Jul-2000
    @@ -79,6 +79,9 @@
         object or a new one. So if the original object is returned, it
         should be INCREF()'d appropriately.
     
    +    [XXX so I am accepting this, but I'm a bit worried about the
    +    argument coercion.  For x+=y, if x supports augmented assignment,
    +    y should only be cast to x's type, not the other way around!]
     
     Rationale
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:01 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:01 +0100
    Subject: [Python-checkins] peps: Accepted PEP-0203.
    Message-ID: 
    
    http://hg.python.org/peps/rev/d267a4b910d6
    changeset:   151:d267a4b910d6
    user:        Guido van Rossum 
    date:        Wed Aug 23 15:58:00 2000 +0000
    summary:
      Accepted PEP-0203.
    
    files:
      pep-0000.txt |  2 +-
      1 files changed, 1 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -27,7 +27,7 @@
      I   200  pep-0200.txt  Python 2.0 Release Schedule            Hylton
      SA  201  pep-0201.txt  Lockstep Iteration                     Warsaw
      S   202  pep-0202.txt  List Comprehensions                    Peters
    - S   203  pep-0203.txt  Augmented Assignments                  Wouters
    + SA  203  pep-0203.txt  Augmented Assignments                  Wouters
      S   204  pep-0204.txt  Range Literals                         Wouters
      SD  205  pep-0205.txt  Weak References                        Drake
      I   206  pep-0206.txt  2.0 Batteries Included                 Zadka
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:01 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:01 +0100
    Subject: [Python-checkins] peps: In order to get a PEP number,
    	you need more than just an abstract.
    Message-ID: 
    
    http://hg.python.org/peps/rev/833b0865f6b2
    changeset:   152:833b0865f6b2
    user:        Barry Warsaw 
    date:        Wed Aug 23 15:58:05 2000 +0000
    summary:
      In order to get a PEP number, you need more than just an abstract.
    You need a rough draft.
    
    files:
      pep-0001.txt |  4 ++--
      1 files changed, 2 insertions(+), 2 deletions(-)
    
    
    diff --git a/pep-0001.txt b/pep-0001.txt
    --- a/pep-0001.txt
    +++ b/pep-0001.txt
    @@ -50,11 +50,11 @@
         and specifies a location (e.g. egroups, python.org, Roundup).
     
         The champion then emails the PEP editor with a proposed title and
    -    an abstract of about a paragraph in length.
    +    a rough, but fleshed out, draft of the PEP.
     
         If the PEP editor approves, he will assign the PEP a number, label
         it as standards track or informational, give it status 'draft',
    -    and create and check-in an initial template for the PEP.  The PEP
    +    and create and check-in the initial draft of the PEP.  The PEP
         editor will not unreasonably deny a PEP.  Reasons for denying PEP
         status include duplication of effort, being technically unsound,
         or not in keeping with the Python philosophy; the BDFL (Benevolent
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:03 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:03 +0100
    Subject: [Python-checkins] peps: Added PEP 224, Attribute Docstrings,
    	assigned to MAL.
    Message-ID: 
    
    http://hg.python.org/peps/rev/c7d930a89453
    changeset:   153:c7d930a89453
    user:        Barry Warsaw 
    date:        Wed Aug 23 16:51:21 2000 +0000
    summary:
      Added PEP 224, Attribute Docstrings, assigned to MAL.
    
    files:
      pep-0000.txt |    2 +
      pep-0224.txt |  150 +++++++++++++++++++++++++++++++++++++++
      2 files changed, 152 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0000.txt b/pep-0000.txt
    --- a/pep-0000.txt
    +++ b/pep-0000.txt
    @@ -48,6 +48,7 @@
      SA  221  pep-0221.txt  Import As                              Wouters
      SD  222  pep-0222.txt  Web Library Enhancements               Kuchling
      S   223  pep-0223.txt  Change the Meaning of \x Escapes       Peters
    + S   224  pep-0224.txt  Attribute Docstrings                   Lemburg
     
     
     Key
    @@ -67,6 +68,7 @@
         Drake, Fred              fdrake at beopen.com
         Hylton, Jeremy           jeremy at beopen.com
         Kuchling, Andrew         akuchlin at mems-exchange.org
    +    Lemburg, Marc-Andre      mal at lemburg.com
         McMillan, Gordon         gmcm at hypernet.com
         Peters, Tim              tpeters at beopen.com
         Prescod, Paul            paul at prescod.net
    diff --git a/pep-0224.txt b/pep-0224.txt
    new file mode 100644
    --- /dev/null
    +++ b/pep-0224.txt
    @@ -0,0 +1,150 @@
    +PEP: 224
    +Title: Attribute Docstrings
    +Version: $Revision$
    +Author: mal at lemburg.com (Marc-Andre Lemburg)
    +Status: Draft
    +Type: Standards Track
    +Python-Version: 2.0
    +Created: 23-Aug-2000
    +Post-History:
    +
    +
    +Introduction
    +
    +    This PEP describes the "attribute docstring" proposal for Python
    +    2.0.  This PEP tracks the status and ownership of this feature.
    +    It contains a description of the feature and outlines changes
    +    necessary to support the feature.  The CVS revision history of
    +    this file contains the definitive historical record.
    +
    +
    +Rationale
    +
    +    This PEP proposes a small addition to the way Python currently
    +    handles docstrings embedded in Python code.
    +
    +    Python currently only handles the case of docstrings which appear
    +    directly after a class definition, a function definition or as
    +    first string literal in a module.  The string literals are added
    +    to the objects in question under the __doc__ attribute and are
    +    from then on available for introspection tools which can extract
    +    the contained information for help, debugging and documentation
    +    purposes.
    +
    +    Docstrings appearing in locations other than the ones mentioned
    +    are simply ignored and don't result in any code generation.
    +
    +    Here is an example:
    +
    +        class C:
    +            "class C doc-string"
    +
    +            a = 1
    +            "attribute C.a doc-string (1)"
    +
    +            b = 2
    +            "attribute C.b doc-string (2)"
    +
    +    The docstrings (1) and (2) are currently being ignored by the
    +    Python byte code compiler, but could obviously be put to good use
    +    for documenting the named assignments that precede them.
    +    
    +    This PEP proposes to also make use of these cases by proposing
    +    semantics for adding their content to the objects in which they
    +    appear under new generated attribute names.
    +
    +    The original idea behind this approach which also inspired the
    +    above example was to enable inline documentation of class
    +    attributes, which can currently only be documented in the class's
    +    docstring or using comments which are not available for
    +    introspection.
    +
    +
    +Implementation
    +
    +    Docstrings are handled by the byte code compiler as expressions.
    +    The current implementation special cases the few locations
    +    mentioned above to make use of these expressions, but otherwise
    +    ignores the strings completely.
    +
    +    To enable use of these docstrings for documenting named
    +    assignments (which is the natural way of defining e.g. class
    +    attributes), the compiler will have to keep track of the last
    +    assigned name and then use this name to assign the content of the
    +    docstring to an attribute of the containing object by means of
    +    storing it in as a constant which is then added to the object's
    +    namespace during object construction time.
    +
    +    In order to preserve features like inheritance and hiding of
    +    Python's special attributes (ones with leading and trailing double
    +    underscores), a special name mangling has to be applied which
    +    uniquely identifies the docstring as belonging to the name
    +    assignment and allows finding the docstring later on by inspecting
    +    the namespace.
    +
    +    The following name mangling scheme achieves all of the above:
    +
    +        __doc____
    +
    +    To keep track of the last assigned name, the byte code compiler
    +    stores this name in a variable of the compiling structure.  This
    +    variable defaults to NULL.  When it sees a docstring, it then
    +    checks the variable and uses the name as basis for the above name
    +    mangling to produce an implicit assignment of the docstring to the
    +    mangled name.  It then resets the variable to NULL to avoid
    +    duplicate assignments.
    +
    +    If the variable does not point to a name (i.e. is NULL), no
    +    assignments are made.  These will continue to be ignored like
    +    before.  All classical docstrings fall under this case, so no
    +    duplicate assignments are done.
    +
    +    In the above example this would result in the following new class
    +    attributes to be created:
    +
    +        C.__doc__a__ == "attribute C.a doc-string (1)"
    +        C.__doc__b__ == "attribute C.b doc-string (2)"
    +
    +
    +Caveats of the Implementation
    +    
    +    Since the implementation does not reset the compiling structure
    +    variable when processing a non-expression, e.g. a function
    +    definition, the last assigned name remains active until either the
    +    next assignment or the next occurrence of a docstring.
    +
    +    This can lead to cases where the docstring and assignment may be
    +    separated by other expressions:
    +
    +        class C:
    +            "C doc string"
    +
    +            b = 2
    +
    +            def x(self):
    +                "C.x doc string"
    +                y = 3
    +                return 1
    +
    +            "b's doc string"
    +
    +    Since the definition of method "x" currently does not reset the
    +    used assignment name variable, it is still valid when the compiler
    +    reaches [TBD: please finish your thought!]
    +
    +    
    +Copyright
    +
    +    This document has been placed in the Public Domain.
    +
    +
    +References
    +
    +    [1] http://sourceforge.net/patch/?func=detailpatch&patch_id=XXX&group_id=5470
    +
    +
    +
    +Local Variables:
    +mode: indented-text
    +indent-tabs-mode: nil
    +End:
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:04 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:04 +0100
    Subject: [Python-checkins] peps: test_parser and test_posixpath fixed
    Message-ID: 
    
    http://hg.python.org/peps/rev/c54483370776
    changeset:   154:c54483370776
    user:        Jeremy Hylton 
    date:        Wed Aug 23 19:40:52 2000 +0000
    summary:
      test_parser and test_posixpath fixed
    Add new action items (bugs with priority higher than 7 are for 2.0b1)
    popen2 support (/F)
    mark many action items as done
    remove SyntaxError enhancements as accepted (Guido didn't like it and
        /F didn't think he was doing it).
    shorten descriptions of other open tasks that have patches associated
    
    files:
      pep-0200.txt |  71 ++++++++++++++++-----------------------
      1 files changed, 30 insertions(+), 41 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -88,10 +88,6 @@
     
         test case         platform    date reported
         ---------         --------    -------------
    -    test_posixpath    all         22-Aug-2000
    -        [think it's because Skip backed out commonpathprefix changes
    -        but didn't change the tests; patch to fix exists] 
    -
         test_fork1        Linux       26-Jul-2000 
             [no clue; there are probably two bugs here]
             [19-Aug-200 tim
    @@ -110,6 +106,9 @@
     
         test case         platform    date reported
         ---------         --------    -------------
    +    test_parser       all         22-Aug-2000
    +    test_posixpath    all         22-Aug-2000
    +
         test_popen2       Win32       26-Jul-2000
             [20-Aug-2000 tim
              changed the popen2.py _test function to use the "more" cmd
    @@ -172,13 +171,19 @@
     
     Open items -- Need to be resolved before 2.0b1 release
     
    -    Fix bug 112558
    -    https://sourceforge.net/bugs/?func=detailbug&bug_id=112558&group_id=5470
    +    Add popen2 support for Linux -- assigned to /F
     
         Get all patches out of Open.
     
         Get all patches out of Accepted.
     
    +    Fix bug 112558
    +    https://sourceforge.net/bugs/?func=detailbug&bug_id=112558&group_id=5470
    +
    +    Fix all other bugs with priority 7 or higher
    +
    +    Review performance and frequency of garbage collection scans.
    +
         Decide on a license.
     
         Windows:  Look for registry info in HKCU before HKLM - Mark
    @@ -197,6 +202,8 @@
     
     Open items -- Need to be resolved before 2.0 final release
     
    +    Improve code coverage of test suite.
    +
         Decide on a license.
     
         Finish writing the PEPs for the features that went out with
    @@ -221,9 +228,18 @@
     
     Accepted and completed
     
    +    * "import as" - Thomas Wouters
    +      Extend the 'import' and 'from ... import' mechanism to enable
    +      importing a symbol as another name. (Without adding a new keyword.)
    +
    +    * List comprehensions - Skip Montanaro
    +      Tim Peters still needs to do PEP.
    +
         * Restore old os.path.commonprefix behavior
           Do we have test cases that work on all platforms?
     
    +    * Tim O'Malley's cookie module with good license
    +
         * Lockstep iteration ("zip" function) - Barry Warsaw
     
         * SRE - Fredrik Lundh
    @@ -246,63 +262,36 @@
     
     Accepted and in progress
     
    -    * SyntaxError enhancements - Fredrik Lundh
    -      http://www.python.org/pipermail/python-dev/2000-July/012981.html
    -
         * interface to poll system call - Andrew Kuchling
    -      An OO interface to the poll system call will be added to the
    -      select module.
    +      SF Patch 100852  
     
         * Compression of Unicode database - Fredrik Lundh
    -      http://hem.passagen.se/eff/bot.htm#456806
    +      SF Patch 100899
     
    -    * PyErr_SafeFormat / snprintf - owner???
    -      Use snprintf to avoid buffer overflows.  Need configure hackery
    -      to discovery if it is available on the current platform and a
    -      default implementation if it is not.
    -      http://www.python.org/pipermail/python-dev/2000-April/010051.html
    +    * PyErr_Format - Fredrik Lundh
    +      Make this function safe from buffer overflows.
     
         * Support for opcode arguments > 2**16 - Charles Waldman
    -      Source files longer than 32K and sequences with more than 32K
    -      elements both fail because opcode arguments are limited to
    -      16-bit values.
    +      SF Patch 100893
     
         * Range literals - Thomas Wouters
    -      Make range(1, 10, 2) == [1:10:2]
    -
    -    * List comprehensions - Skip Montanaro (Tim Peters for PEP)
    -      Need a coherent proposal.  Lots of confusing discussion going
    -      on.
    -      [note: it's not confusing to Guido  - tim]
    +      SF Patch 100902
     
         * Augmented assignment - Thomas Wouters
           Add += and family, plus Python and C hooks, and API functions.
     
    -    * "import as" - Thomas Wouters
    -      Extend the 'import' and 'from ... import' mechanism to enable
    -      importing a symbol as another name. (Without adding a new keyword.)
    -
    -    * Merge __getitem__ and __getslice__ - Thomas Wouters
    -      Move __getslice__ functionality into __getitem__, using slice objects,
    -      for normal slices as well as for extended ones. First step: use
    -      getitem if there is no getslice.
    -
         * Change meaning of \x escapes - PEP 223 - Fredrik Lundh?  Tim Peters?
     
         * Add \U1234678 escapes in u"" strings - Fredrik Lundh?
     
    +    * Integrated gettext module - Barry Warsaw
    +      wrapper around standard internationalization libraries
     
     Open: proposed but not accepted or rejected
     
    -    * Tim O'Malley's cookie module -- but need different license
    -
         * Extended slicing on lists - Michael Hudson
           Make lists (and other builtin types) handle extended slices.
     
    -    * Integrated gettext module - Barry Warsaw
    -      wrapper around standard internationalization libraries
    -
    -
     Postponed
     
         * Eliminated SET_LINENO opcode - Vladimir Marangozov
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:06 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:06 +0100
    Subject: [Python-checkins] peps: Completed, about to post.
    Message-ID: 
    
    http://hg.python.org/peps/rev/4929c4bb5ae3
    changeset:   155:4929c4bb5ae3
    user:        Tim Peters 
    date:        Thu Aug 24 03:26:42 2000 +0000
    summary:
      Completed, about to post.
    
    files:
      pep-0223.txt |  182 ++++++++++++++++++++++++++++++++++++++-
      1 files changed, 180 insertions(+), 2 deletions(-)
    
    
    diff --git a/pep-0223.txt b/pep-0223.txt
    --- a/pep-0223.txt
    +++ b/pep-0223.txt
    @@ -2,11 +2,11 @@
     Title: Change the Meaning of \x Escapes
     Version: $Revision$
     Author: tpeters at beopen.com (Tim Peters)
    -Status: Draft
    +Status: Active
     Type: Standards Track
     Python-Version: 2.0
     Created: 20-Aug-2000
    -Post-History:
    +Post-History: 23-Aug-2000
     
     
     Abstract
    @@ -19,6 +19,184 @@
         to existing code.
     
     
    +Syntax
    +
    +    The syntax of \x escapes, in all flavors of non-raw strings, becomes
    +
    +        \xhh
    +
    +    where h is a hex digit (0-9, a-f, A-F).  The exact syntax in 1.5.2 is
    +    not clearly specified in the Reference Manual; it says
    +
    +        \xhh...
    +
    +    implying "two or more" hex digits, but one-digit forms are also
    +    accepted by the 1.5.2 compiler, and a plain \x is "expanded" to
    +    itself (i.e., a backslash followed by the letter x).  It's unclear
    +    whether the Reference Manual intended either of the 1-digit or
    +    0-digit behaviors.
    +
    +
    +Semantics
    +
    +    In an 8-bit non-raw string,
    +        \xij
    +    expands to the character
    +        chr(int(ij, 16))
    +    Note that this is the same as in 1.6 and before.
    +
    +    In a Unicode string,
    +        \xij
    +    acts the same as
    +        \u00ij
    +    i.e. it expands to the obvious Latin-1 character from the initial
    +    segment of the Unicode space.
    +
    +    An \x not followed by at least two hex digits is a compile-time error,
    +    specifically ValueError in 8-bit strings, and UnicodeError (a subclass
    +    of ValueError) in Unicode strings.  Note that if an \x is followed by
    +    more than two hex digits, only the first two are "consumed".  In 1.6
    +    and before all but the *last* two were silently ignored.
    +
    +
    +Example
    +
    +    In 1.5.2:
    +
    +        >>> "\x123465"  # same as "\x65"
    +        'e'
    +        >>> "\x65"
    +        'e'
    +        >>> "\x1"
    +        '\001'
    +        >>> "\x\x"
    +        '\\x\\x'
    +        >>>
    +
    +    In 2.0:
    +
    +        >>> "\x123465" # \x12 -> \022, "3456" left alone
    +        '\0223456'
    +        >>> "\x65"
    +        'e'
    +        >>> "\x1"
    +        [ValueError is raised]
    +        >>> "\x\x"
    +        [ValueError is raised]
    +        >>>
    +
    +
    +History and Rationale
    +
    +    \x escapes were introduced in C as a way to specify variable-width
    +    character encodings.  Exactly which encodings those were, and how many
    +    hex digits they required, was left up to each implementation.  The
    +    language simply stated that \x "consumed" *all* hex digits following,
    +    and left the meaning up to each implementation.  So, in effect, \x in C
    +    is a standard hook to supply platform-defined behavior.
    +
    +    Because Python explicitly aims at platform independence, the \x escape
    +    in Python (up to and including 1.6) has been treated the same way
    +    across all platforms:  all *except* the last two hex digits were
    +    silently ignored.  So the only actual use for \x escapes in Python was
    +    to specify a single byte using hex notation.
    +
    +    Larry Wall appears to have realized that this was the only real use for
    +    \x escapes in a platform-independent language, as the proposed rule for
    +    Python 2.0 is in fact what Perl has done from the start (although you
    +    need to run in Perl -w mode to get warned about \x escapes with fewer
    +    than 2 hex digits following -- it's clearly more Pythonic to insist on
    +    2 all the time).
    +
    +    When Unicode strings were introduced to Python, \x was generalized so
    +    as to ignore all but the last *four* hex digits in Unicode strings.
    +    This caused a technical difficulty for the new regular expression engine:
    +    SRE tries very hard to allow mixing 8-bit and Unicode patterns and
    +    strings in intuitive ways, and it no longer had any way to guess what,
    +    for example, r"\x123456" should mean as a pattern:  is it asking to match
    +    the 8-bit character \x56 or the Unicode character \u3456?
    +
    +    There are hacky ways to guess, but it doesn't end there.  The ISO C99
    +    standard also introduces 8-digit \U12345678 escapes to cover the entire
    +    ISO 10646 character space, and it's also desired that Python 2 support
    +    that from the start.  But then what are \x escapes supposed to mean?
    +    Do they ignore all but the last *eight* hex digits then?  And if less
    +    than 8 following in a Unicode string, all but the last 4?  And if less
    +    than 4, all but the last 2?
    +
    +    This was getting messier by the minute, and the proposal cuts the
    +    Gordian knot by making \x simpler instead of more complicated.  Note
    +    that the 4-digit generalization to \xijkl in Unicode strings was also
    +    redundant, because it meant exactly the same thing as \uijkl in Unicode
    +    strings.  It's more Pythonic to have just one obvious way to specify a
    +    Unicode character via hex notation.
    +
    +
    +Development and Discussion
    +
    +    The proposal was worked out among Guido van Rossum, Fredrik Lundh and
    +    Tim Peters in email.  It was subsequently explained and disussed on
    +    Python-Dev under subject "Go \x yourself", starting 2000-08-03.
    +    Response was overwhelmingly positive; no objections were raised.
    +
    +
    +Backward Compatibility
    +
    +    Changing the meaning of \x escapes does carry risk of breaking existing
    +    code, although no instances of incompabitility have yet been discovered.
    +    The risk is believed to be minimal.
    +
    +    Tim Peters verified that, except for pieces of the standard test suite
    +    deliberately provoking end cases, there are no instances of \xabcdef...
    +    with fewer or more than 2 hex digits following, in either the Python
    +    CVS development tree, or in assorted Python packages sitting on his
    +    machine.
    +
    +    It's unlikely there are any with fewer than 2, because the Reference
    +    Manual implied they weren't legal (although this is debatable!).  If
    +    there are any with more than 2, Guido is ready to argue they were buggy
    +    anyway <0.9 wink>.
    +
    +    Guido reported that the O'Reilly Python books *already* document that
    +    Python works the proposed way, likely due to their Perl editing
    +    heritage (as above, Perl worked (very close to) the proposed way from
    +    its start).
    +
    +    Finn Bock reported that what JPython does with \x escapes is
    +    unpredictable today.  This proposal gives a clear meaning that can be
    +    consistently and easily implemented across all Python implementations.
    +
    +
    +Effects on Other Tools
    +
    +    Believed to be none.  The candidates for breakage would mostly be
    +    parsing tools, but the author knows of none that worry about the
    +    internal structure of Python strings beyond the approximation "when
    +    there's a backslash, swallow the next character".  Tim Peters checked
    +    python-mode.el, the std tokenize.py and pyclbr.py, and the IDLE syntax
    +    coloring subsystem, and believes there's no need to change any of
    +    them.  Tools like tabnanny.py and checkappend.py inherit their immunity
    +    from tokenize.py.
    +
    +
    +Reference Implementation
    +
    +    The code changes are so simple that a separate patch will not be produced.
    +    Fredrik Lundh is writing the code, is an expert in the area, and will
    +    simply check the changes in before 2.0b1 is released.
    +
    +
    +BDFL Pronouncements
    +
    +    Yes, ValueError, not SyntaxError.  "Problems with literal interpretations
    +    traditionally raise 'runtime' exceptions rather than syntax errors."
    +
    +
    +Copyright
    +
    +    This document has been placed in the public domain.
    +
    +
     
     Local Variables:
     mode: indented-text
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:07 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:07 +0100
    Subject: [Python-checkins] peps: Completed final thought and bumped the
    	Python version number to	2.1.
    Message-ID: 
    
    http://hg.python.org/peps/rev/121deca90877
    changeset:   156:121deca90877
    user:        Marc-Andr? Lemburg 
    date:        Thu Aug 24 14:16:10 2000 +0000
    summary:
      Completed final thought and bumped the Python version number to 2.1.
    The great thing about this PEP is that it is forward compatible :-)
    
    files:
      pep-0224.txt |  13 ++++++++++---
      1 files changed, 10 insertions(+), 3 deletions(-)
    
    
    diff --git a/pep-0224.txt b/pep-0224.txt
    --- a/pep-0224.txt
    +++ b/pep-0224.txt
    @@ -4,7 +4,7 @@
     Author: mal at lemburg.com (Marc-Andre Lemburg)
     Status: Draft
     Type: Standards Track
    -Python-Version: 2.0
    +Python-Version: 2.1
     Created: 23-Aug-2000
     Post-History:
     
    @@ -105,6 +105,9 @@
             C.__doc__a__ == "attribute C.a doc-string (1)"
             C.__doc__b__ == "attribute C.b doc-string (2)"
     
    +    A patch to the current CVS version of Python 2.0 which implements
    +    the above is available on SourceForge at [1].
    +
     
     Caveats of the Implementation
         
    @@ -130,7 +133,11 @@
     
         Since the definition of method "x" currently does not reset the
         used assignment name variable, it is still valid when the compiler
    -    reaches [TBD: please finish your thought!]
    +    reaches the docstring "b's doc string" and thus assigns the string
    +    to __doc__b__.
    +
    +    A possible solution to this problem would be resetting the name
    +    variable for all non-expression nodes.
     
         
     Copyright
    @@ -140,7 +147,7 @@
     
     References
     
    -    [1] http://sourceforge.net/patch/?func=detailpatch&patch_id=XXX&group_id=5470
    +    [1] http://sourceforge.net/patch/?func=detailpatch&patch_id=101264&group_id=5470
     
     
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:17 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:17 +0100
    Subject: [Python-checkins] peps: The popen problem is "solved".
    Message-ID: 
    
    http://hg.python.org/peps/rev/09dce4a2aec6
    changeset:   157:09dce4a2aec6
    user:        Guido van Rossum 
    date:        Thu Aug 24 21:17:33 2000 +0000
    summary:
      The popen problem is "solved".
    
    files:
      pep-0200.txt |  8 +++++---
      1 files changed, 5 insertions(+), 3 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -197,9 +197,6 @@
         Windows ME:  Don't know anything about it.  Will the installer
         even run?  Does it need the w9xpopen hack?
     
    -    Win98 Guido:  popen is hanging on Guido, and even freezing the
    -    whole machine.  No clue yet.
    -
     Open items -- Need to be resolved before 2.0 final release
     
         Improve code coverage of test suite.
    @@ -225,6 +222,11 @@
         let winreg.py out the door we'll be stuck with it forever, and not
         even Paul wants it anymore.
     
    +    [24-Aug-2000 tim+guido - done]
    +    Win98 Guido:  popen is hanging on Guido, and even freezing the
    +    whole machine.  Was caused by Norton Antivirus 2000 (6.10.20) on
    +    Windows 9x.  Resolution: disable virus protection.
    +
     
     Accepted and completed
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:19 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:19 +0100
    Subject: [Python-checkins] peps: update release schedule
    Message-ID: 
    
    http://hg.python.org/peps/rev/de87500aee15
    changeset:   158:de87500aee15
    user:        Jeremy Hylton 
    date:        Thu Aug 24 21:46:53 2000 +0000
    summary:
      update release schedule
    
    files:
      pep-0200.txt |  23 +++++++++++++++--------
      1 files changed, 15 insertions(+), 8 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -17,10 +17,12 @@
     
     
     Tentative Release Schedule
    +    [revised 24 Aug 2000]
     
         14-Aug-2000: All 2.0 PEPs finished / feature freeze
    -    28-Aug-2000: 2.0 beta 1
    -    29-Sep-2000: 2.0 final
    +     5-Sep-2000: 2.0 beta 1
    +   mid-Sep-2000: beta 2 if necessary
    +     6-Oct-2000: 2.0 final
     
     
     Guidelines for submitting patches and making changes
    @@ -171,7 +173,7 @@
     
     Open items -- Need to be resolved before 2.0b1 release
     
    -    Add popen2 support for Linux -- assigned to /F
    +    Add popen2 support for Linux -- Fred Drake
     
         Get all patches out of Open.
     
    @@ -199,6 +201,9 @@
     
     Open items -- Need to be resolved before 2.0 final release
     
    +    Update Tools/compiler so that it is compatible with list
    +    comprehensions, import as, and any other new language features. 
    +
         Improve code coverage of test suite.
     
         Decide on a license.
    @@ -213,6 +218,13 @@
         "visible progress" indeed!).
     
     
    +Open: proposed but not accepted or rejected
    +
    +    * Problems reported with Tkinter, Tk 8.3.2,axs and Unicode
    +
    +    * Extended slicing on lists - Michael Hudson
    +      Make lists (and other builtin types) handle extended slices.
    +
     Open items -- completed/fixed
     
         [20-Aug-2000 tim - done]
    @@ -289,11 +301,6 @@
         * Integrated gettext module - Barry Warsaw
           wrapper around standard internationalization libraries
     
    -Open: proposed but not accepted or rejected
    -
    -    * Extended slicing on lists - Michael Hudson
    -      Make lists (and other builtin types) handle extended slices.
    -
     Postponed
     
         * Eliminated SET_LINENO opcode - Vladimir Marangozov
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:20 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:20 +0100
    Subject: [Python-checkins] peps: Update PEP to reflect reality. Explain the
    	current mechanism	the InPlace
    Message-ID: 
    
    http://hg.python.org/peps/rev/5de7846f6aba
    changeset:   159:5de7846f6aba
    user:        Thomas Wouters 
    date:        Fri Aug 25 11:11:25 2000 +0000
    summary:
      Update PEP to reflect reality. Explain the current mechanism the InPlace functions use to find the right function to call, and when to coerce or not.
    
    files:
      pep-0203.txt |  97 ++++++++++++++++++++++++++++-----------
      1 files changed, 69 insertions(+), 28 deletions(-)
    
    
    diff --git a/pep-0203.txt b/pep-0203.txt
    --- a/pep-0203.txt
    +++ b/pep-0203.txt
    @@ -63,25 +63,76 @@
             x += y
         
         tries to call x.__iadd__(y), which is the `in-place' variant of
    -    __add__. If __iadd__ is not present, x.__add__(y) is
    -    attempted, and finally y.__radd__(x) if __add__ is missing too. 
    -    There is no `right-hand-side' variant of __iadd__, because that
    -    would require for `y' to know how to in-place modify `x', which is
    -    unsafe to say the least. The __iadd__ hook should behave similar
    -    to __add__, returning the result of the operation (which could be
    -    `self') which is to be stored in the variable `x'.
    +    __add__. If __iadd__ is not present, x.__add__(y) is attempted,
    +    and finally y.__radd__(x) if __add__ is missing too.  There is no
    +    `right-hand-side' variant of __iadd__, because that would require
    +    for `y' to know how to in-place modify `x', which is unsafe to say
    +    the least. The __iadd__ hook should behave similar to __add__,
    +    returning the result of the operation (which could be `self')
    +    which is to be assigned to the variable `x'.
      
         For C extension types, the `hooks' are members of the
    -    PyNumberMethods and PySequenceMethods structures, and are called
    -    in exactly the same manner as the existing non-inplace operations,
    -    including argument coercion. C methods should also take care to
    -    return a new reference to the result object, whether it's the same
    -    object or a new one. So if the original object is returned, it
    -    should be INCREF()'d appropriately.
    +    PyNumberMethods and PySequenceMethods structures.  Some special
    +    semantics apply to make the use of these methods, and the mixing
    +    of Python instance objects and C types, as unsurprising as
    +    possible.
     
    -    [XXX so I am accepting this, but I'm a bit worried about the
    -    argument coercion.  For x+=y, if x supports augmented assignment,
    -    y should only be cast to x's type, not the other way around!]
    +    In the generic case of `x  y' (or a similar case using the
    +    PyNumber_InPlace API functions) the principal object being
    +    operated on is `x'.  This differs from normal binary operations,
    +    where `x' and `y' could be considered `co-operating', because
    +    unlike in binary operations, the operands in an in-place operation
    +    cannot be swapped.  However, in-place operations do fall back to
    +    normal binary operations when in-place modification is not
    +    supported, resuling in the following rules:
    +    
    +    - If the left-hand object (`x') is an instance object, and it
    +      has a `__coerce__' method, call that function with `y' as the
    +      argument. If coercion succeeds, and the resulting left-hand
    +      object is a different object than `x', stop processing it as
    +      in-place and call the appropriate function for the normal binary
    +      operation, with the coerced `x' and `y' as arguments. The result
    +      of the operation is whatever that function returns.
    +      
    +      If coercion does not yield a different object for `x', or `x'
    +      does not define a `__coerce__' method, and `x' has the
    +      appropriate `__ihook__' for this operation, call that method
    +      with `y' as the argument, and the result of the operation is
    +      whatever that method returns.
    +
    +    - Otherwise, if the left-hand object is not an instance object,
    +      but its type does define the in-place function for this
    +      operation, call that function with `x' and `y' as the arguments,
    +      and the result of the operation is whatever that function
    +      returns.
    +      
    +      Note that no coercion on either `x' or `y' is done in this case,
    +      and it's perfectly valid for a C type to receive an instance
    +      object as the second argument; that is something that cannot
    +      happen with normal binary operations.
    +
    +    - Otherwise, process it exactly as a normal binary operation (not
    +      in-place), including argument coercion. In short, if either
    +      argument is an instance object, resolve the operation through
    +      `__coerce__', `__hook__' and `__rhook__'. Otherwise, both
    +      objects are C types, and they are coerced and passed to the
    +      appropriate function.
    +   
    +    - If no way to process the operation can be found, raise a
    +      TypeError with an error message specific to the operation.
    +
    +    - Some special casing exists to account for the case of `+' and
    +      `*', which have a special meaning for sequences: for `+',
    +      sequence concatenation, no coercion what so ever is done if a C
    +      type defines sq_concat or sq_inplace_concat. For `*', sequence
    +      repeating, `y' is converted to a C integer before calling either
    +      sq_inplace_repeat and sq_repeat. This is done even if `y' is an
    +      instance, though not if `x' is an instance.
    +
    +    The in-place function should always return a new reference, either
    +    to the old `x' object if the operation was indeed performed
    +    in-place, or to a new object.
    +
     
     Rationale
     
    @@ -133,7 +184,7 @@
         Augmented assignment won't solve all the problems for these
         packages, since some operations cannot be expressed in the limited
         set of binary operators to start with, but it is a start. A
    -    different PEP[3] is looking at adding new operators.
    +    different PEP[2] is looking at adding new operators.
     
     
     New methods
    @@ -194,7 +245,7 @@
     
     Implementation
     
    -    The current implementation of augmented assignment[2] adds, in
    +    The current implementation of augmented assignment[1] adds, in
         addition to the methods and slots already covered, 13 new bytecodes
         and 13 new API functions.
         
    @@ -272,16 +323,6 @@
         bytecode at this time.
         
     
    -    It is not possible to do an inplace operation in the variant of
    -    
    -        += 
    -
    -    Instead, the instance objects' __radd__ hook is called, with the
    -    builtin type as argument. The same goes for the other operations.
    -    It might necessary to add a right-hand version of __add_ab__ after
    -    all, to support something like that.
    -
    -
     Copyright
     
         This document has been placed in the public domain.
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:22 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:22 +0100
    Subject: [Python-checkins] peps: bring up to date
    Message-ID: 
    
    http://hg.python.org/peps/rev/c68d9ef368a9
    changeset:   160:c68d9ef368a9
    user:        Jeremy Hylton 
    date:        Fri Aug 25 13:44:26 2000 +0000
    summary:
      bring up to date
    
    files:
      pep-0200.txt |  53 ++++++++++++++++++++-------------------
      1 files changed, 27 insertions(+), 26 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -188,9 +188,6 @@
     
         Decide on a license.
     
    -    Windows:  Look for registry info in HKCU before HKLM - Mark
    -    Hammond.
    -
         Windows installer:  If HKLM isn't writable, back off to HKCU (so
         Python can be installed on NT & 2000 without admin privileges).
     
    @@ -220,13 +217,38 @@
     
     Open: proposed but not accepted or rejected
     
    -    * Problems reported with Tkinter, Tk 8.3.2,axs and Unicode
    -
         * Extended slicing on lists - Michael Hudson
           Make lists (and other builtin types) handle extended slices.
     
    +    * Problems reported with Tkinter, Tk 8.3.2, and Unicode (?)
    +
    +Accepted and in progress
    +
    +    * Compression of Unicode database - Fredrik Lundh
    +      SF Patch 100899
    +
    +    * PyErr_Format - Fredrik Lundh
    +      Make this function safe from buffer overflows.
    +
    +    * Support for opcode arguments > 2**16 - Charles Waldman
    +      SF Patch 100893
    +
    +    * Range literals - Thomas Wouters
    +      SF Patch 100902
    +
    +    * Change meaning of \x escapes - PEP 223 - Fredrik Lundh
    +
    +    * Add \U1234678 escapes in u"" strings - Fredrik Lundh
    +
    +    * Integrated gettext module - Barry Warsaw
    +      wrapper around standard internationalization libraries
    +
     Open items -- completed/fixed
     
    +    [23-Aug-2000 jeremy - tim reports "completed recently"]
    +    Windows:  Look for registry info in HKCU before HKLM - Mark
    +    Hammond.
    +
         [20-Aug-2000 tim - done]
         Remove winreg.py and test_winreg2.py.  Paul Prescod (the author)
         now wants to make a registry API more like the MS .NET API.  Unclear
    @@ -273,33 +295,12 @@
           SF Patch #100970
           http://sourceforge.net/patch/?func=detailpatch&patch_id=100970&group_id=5470
     
    -
    -Accepted and in progress
    -
         * interface to poll system call - Andrew Kuchling
           SF Patch 100852  
     
    -    * Compression of Unicode database - Fredrik Lundh
    -      SF Patch 100899
    -
    -    * PyErr_Format - Fredrik Lundh
    -      Make this function safe from buffer overflows.
    -
    -    * Support for opcode arguments > 2**16 - Charles Waldman
    -      SF Patch 100893
    -
    -    * Range literals - Thomas Wouters
    -      SF Patch 100902
    -
         * Augmented assignment - Thomas Wouters
           Add += and family, plus Python and C hooks, and API functions.
     
    -    * Change meaning of \x escapes - PEP 223 - Fredrik Lundh?  Tim Peters?
    -
    -    * Add \U1234678 escapes in u"" strings - Fredrik Lundh?
    -
    -    * Integrated gettext module - Barry Warsaw
    -      wrapper around standard internationalization libraries
     
     Postponed
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:23 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:23 +0100
    Subject: [Python-checkins] peps: support for opcode args > 2**16 is finished
    Message-ID: 
    
    http://hg.python.org/peps/rev/64474814331d
    changeset:   161:64474814331d
    user:        Jeremy Hylton 
    date:        Fri Aug 25 13:59:33 2000 +0000
    summary:
      support for opcode args > 2**16 is finished
    
    files:
      pep-0200.txt |  6 +++---
      1 files changed, 3 insertions(+), 3 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -230,9 +230,6 @@
         * PyErr_Format - Fredrik Lundh
           Make this function safe from buffer overflows.
     
    -    * Support for opcode arguments > 2**16 - Charles Waldman
    -      SF Patch 100893
    -
         * Range literals - Thomas Wouters
           SF Patch 100902
     
    @@ -264,6 +261,9 @@
     
     Accepted and completed
     
    +    * Support for opcode arguments > 2**16 - Charles Waldman
    +      SF Patch 100893
    +
         * "import as" - Thomas Wouters
           Extend the 'import' and 'from ... import' mechanism to enable
           importing a symbol as another name. (Without adding a new keyword.)
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:25 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:25 +0100
    Subject: [Python-checkins] peps: Added the essence of my post to c.l.py in
    	defense of the new	syntax.
    Message-ID: 
    
    http://hg.python.org/peps/rev/b8297f714e15
    changeset:   162:b8297f714e15
    user:        Guido van Rossum 
    date:        Fri Aug 25 14:15:49 2000 +0000
    summary:
      Added the essence of my post to c.l.py in defense of the new syntax.
    
    files:
      pep-0214.txt |  112 +++++++++++++++++++++++++++++++++++++++
      1 files changed, 112 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0214.txt b/pep-0214.txt
    --- a/pep-0214.txt
    +++ b/pep-0214.txt
    @@ -140,6 +140,118 @@
         in between each item.
     
     
    +More Justification by the BDFL
    +
    +    The proposal has been challenged on the newsgroup.  One series of
    +    challenges doesn't like '>>' and would rather see some other
    +    symbol.
    +
    +    Challenge: Why not one of these?
    +
    +        print in stderr items,.... 
    +        print + stderr items,.......
    +        print[stderr] items,.....
    +        print to stderr items,.....
    +
    +    Response: If we want to use a special symbol (print 
    +    expression), the Python parser requires that it is not already a
    +    symbol that can start an expression -- otherwise it can't decide
    +    which form of print statement is used.  (The Python parser is a
    +    simple LL(1) or recursive descent parser.)
    +
    +    This means that we can't use the "keyword only in context trick"
    +    that was used for "import as", because an identifier can start an
    +    expression.  This rules out +stderr, [sterr], and to stderr.  It
    +    leaves us with binary operator symbols and other miscellaneous
    +    symbols that are currently illegal here, such as 'import'.
    +
    +    If I had to choose between 'print in file' and 'print >> file' I
    +    would definitely choose '>>'.  In part because 'in' would be a new
    +    invention (I know of no other language that uses it, while '>>' is
    +    used in sh, awk, Perl, and C++), in part because '>>', being
    +    non-alphabetic, stands out more so is more likely to catch the
    +    reader's attention.
    +
    +    Challenge: Why does there have to be a comma between the file and
    +    the rest?
    +
    +    Response: The comma separating the file from the following expression is
    +    necessary!  Of course you want the file to be an arbitrary
    +    expression, not just a single word.  (You definitely want to be
    +    able to write print >>sys.stderr.)  Without the expression the
    +    parser would't be able to distinguish where that expression ends
    +    and where the next one begins, e.g.
    +
    +        print >>i +1, 2
    +        print >>a [1], 2
    +        print >>f (1), 2
    +
    +    Challenge: Why do you need a syntax extension?  Why not
    +    writeln(file, item, ...)?
    +
    +    Response: First of all, this is lacking a feature of the print
    +    statement: the trailing comma to print which suppresses the final
    +    newline.  Note that 'print a,' still isn't equivalent to
    +    'sys.stdout.write(a)' -- print inserts a space between items, and
    +    takes arbitrary objects as arguments; write() doesn't insert a
    +    space and requires a single string.
    +
    +    When you are considering an extension for the print statement,
    +    it's not right to add a function or method that adds a new feature
    +    in one dimension (where the output goes) but takes away in another
    +    dimension (spaces between items, and the choice of trailing
    +    newline or not).  We could add a whole slew of methods or
    +    functions to deal with the various cases but that seems to add
    +    more confusion than necessary, and would only make sense if we
    +    were to deprecate the print statement altogether.
    +
    +    I feel that this debate is really about whether print should have
    +    been a function or method rather than a statement.  If you are in
    +    the function camp, of course adding special syntax to the existing
    +    print statement is not something you like.  I suspect the
    +    objection to the new syntax comes mostly from people who already
    +    think that the print statement was a bad idea.  Am I right?
    +
    +    About 10 years ago I debated with myself whether to make the most
    +    basic from of output a function or a statement; basically I was
    +    trying to decide between "print(item, ...)" and "print item, ...".
    +    I chose to make it a statement because printing needs to be taught
    +    very early on, and is very important in the programs that
    +    beginners write.  Also, because ABC, which lead the way for so
    +    many things, made it a statement.  In a move that's typical for
    +    the interaction between ABC and Python, I changed the name from
    +    WRITE to print, and reversed the convention for adding newlines
    +    from requiring extra syntax to add a newline (ABC used trailing
    +    slashes to indicate newlines) to requiring extra syntax (the
    +    trailing comma) to suppress the newline.  I kept the feature that
    +    items are separated by whitespace on output.
    +
    +    Full example: in ABC,
    +
    +        WRITE 1
    +        WRITE 2/
    +
    +    has the same effect as
    +
    +        print 1,
    +        print 2
    +
    +    has in Python, outputting in effect "1 2\n".
    +
    +    I'm not 100% sure that the choice for a statement was right (ABC
    +    had the compelling reason that it used statement syntax for
    +    anything with side effects, but Python doesn't have this
    +    convention), but I'm also not convinced that it's wrong.  I
    +    certainly like the economy of the print statement.  (I'm a rabid
    +    Lisp-hater -- syntax-wise, not semantics-wise! -- and excessive
    +    parentheses in syntax annoy me.  Don't ever write return(i) or
    +    if(x==y): in your Python code! :-)
    +
    +    Anyway, I'm not ready to deprecate the print statement, and over
    +    the years we've had many requests for an option to specify the
    +    file.
    +
    +
     References
     
         [1] http://www.python.org/doc/current/ref/print.html
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:26 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:26 +0100
    Subject: [Python-checkins] peps: test_fork1 now works,
    	thanks to Charles Waldman's patch
    Message-ID: 
    
    http://hg.python.org/peps/rev/d402fa3f7797
    changeset:   163:d402fa3f7797
    user:        Jeremy Hylton 
    date:        Mon Aug 28 15:47:00 2000 +0000
    summary:
      test_fork1 now works, thanks to Charles Waldman's patch
    
    files:
      pep-0200.txt |  22 ++++++++++++----------
      1 files changed, 12 insertions(+), 10 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -90,16 +90,7 @@
     
         test case         platform    date reported
         ---------         --------    -------------
    -    test_fork1        Linux       26-Jul-2000 
    -        [no clue; there are probably two bugs here]
    -        [19-Aug-200 tim
    -         Charles Waldman whipped up a patch to give child processes a new
    -         "global lock":
    -         http://sourceforge.net/patch/?func=detailpatch&patch_id=101226&group_id=5470
    -         While this doesn't appear to address the symptoms we *saw*, it
    -         *does* so far appear to be fixing the failing cases anyway
    -        ]
    -
    +    [None currently failing.]
     
     Previously failing test cases
     
    @@ -108,6 +99,17 @@
     
         test case         platform    date reported
         ---------         --------    -------------
    +    test_fork1        Linux       26-Jul-2000 
    +        [28-aug-2000 fixed by cgw; solution is to create copies of
    +        lock in child process]
    +        [19-Aug-2000 tim
    +         Charles Waldman whipped up a patch to give child processes a new
    +         "global lock":
    +         http://sourceforge.net/patch/?func=detailpatch&patch_id=101226&group_id=5470
    +         While this doesn't appear to address the symptoms we *saw*, it
    +         *does* so far appear to be fixing the failing cases anyway
    +        ]
    +
         test_parser       all         22-Aug-2000
         test_posixpath    all         22-Aug-2000
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:34 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:34 +0100
    Subject: [Python-checkins] peps: new usage to support conversion of only
    	specified PEPs
    Message-ID: 
    
    http://hg.python.org/peps/rev/13b210596813
    changeset:   164:13b210596813
    user:        Jeremy Hylton 
    date:        Mon Aug 28 16:00:49 2000 +0000
    summary:
      new usage to support conversion of only specified PEPs
    
    Usage: %(PROGRAM)s [options] [peps]
    Notes:
        The optional argument peps can be either pep numbers or .txt files.
    Options:
        -u/--user
            SF username
        [rest is the same]
    
    files:
      pep2html.py |  50 +++++++++++++++++++++++++++++++---------
      1 files changed, 38 insertions(+), 12 deletions(-)
    
    
    diff --git a/pep2html.py b/pep2html.py
    --- a/pep2html.py
    +++ b/pep2html.py
    @@ -2,10 +2,17 @@
     """
     convert PEP's to (X)HTML - courtesy of /F
     
    -Usage: %(PROGRAM)s [options] [sf_username]
    +Usage: %(PROGRAM)s [options] [peps]
    +
    +Notes:
    +
    +    The optional argument peps can be either pep numbers or .txt files.
     
     Options:
     
    +    -u/--user
    +        SF username
    +
         -i/--install
             After generating the HTML, install it SourceForge.  In that case the
             user's name is used in the scp and ssh commands, unless sf_username is
    @@ -144,6 +151,19 @@
         fo.close()
         os.chmod(outfile, 0664)
     
    +
    +def find_pep(pep_str):
    +    """Find the .txt file indicated by a cmd line argument"""
    +    if os.path.exists(pep_str):
    +        return pep_str
    +    num = int(pep_str)
    +    return "pep-%04d.txt" % num
    +
    +def make_html(file):
    +    newfile = os.path.splitext(file)[0] + ".html"
    +    print file, "->", newfile
    +    fixfile(file, newfile)
    +    return newfile
     
     
     def main():
    @@ -156,25 +176,31 @@
         except getopt.error, msg:
             usage(1, msg)
     
    -    if args:
    -        username = args[0] + '@'
    -        del args[0]
    -    if args:
    -        usage(1, 'unexpected arguments')
    -
         for opt, arg in opts:
             if opt in ('-h', '--help'):
                 usage(0)
             elif opt in ('-i', '--install'):
                 update = 1
    +        elif opt in ('-u', '--user'):
    +            username = arg + "@"
     
    -    for file in glob.glob("pep-*.txt"):
    -        newfile = os.path.splitext(file)[0] + ".html"
    -        print file, "->", newfile
    -        fixfile(file, newfile)
    +    if args:
    +        html = []
    +        for pep in args:
    +            file = find_pep(pep)
    +            newfile = make_html(file)
    +            html.append(newfile)
    +        os.system("scp %s style.css " % " ".join(html) \
    +                  + username + HOST + ":" + HDIR)
    +    else:
    +        # do them all
    +        for file in glob.glob("pep-*.txt"):
    +            make_html(file)
    +        if update:
    +            os.system("scp pep-*.html style.css " + \
    +                      username + HOST + ":" + HDIR)
     
         if update:
    -        os.system("scp pep-*.html style.css " + username + HOST + ":" + HDIR)
             os.system("ssh " + username + HOST + " chmod 664 " + HDIR + "/*")
     
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:35 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:35 +0100
    Subject: [Python-checkins] peps: move range literals and unicode database to
    	postponed
    Message-ID: 
    
    http://hg.python.org/peps/rev/3732caa0d9df
    changeset:   165:3732caa0d9df
    user:        Jeremy Hylton 
    date:        Tue Aug 29 15:01:34 2000 +0000
    summary:
      move range literals and unicode database to postponed
    rearrange the sections a bit
    
    files:
      pep-0200.txt |  139 +++++++++++++++++++-------------------
      1 files changed, 70 insertions(+), 69 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -92,6 +92,68 @@
         ---------         --------    -------------
         [None currently failing.]
     
    +Open items -- Need to be resolved before 2.0b1 release
    +
    +    Add popen2 support for Linux -- Fred Drake
    +
    +    Get all patches out of Open.
    +
    +    Get all patches out of Accepted.
    +
    +    Fix bug 112558
    +    https://sourceforge.net/bugs/?func=detailbug&bug_id=112558&group_id=5470
    +
    +    Fix all other bugs with priority 7 or higher
    +
    +    Review performance and frequency of garbage collection scans.
    +
    +    Decide on a license.
    +
    +    Windows installer:  If HKLM isn't writable, back off to HKCU (so
    +    Python can be installed on NT & 2000 without admin privileges).
    +
    +    Windows installer:  Install w9xpopen.exe only under Win95/98.
    +
    +    Windows ME:  Don't know anything about it.  Will the installer
    +    even run?  Does it need the w9xpopen hack?
    +
    +Open items -- Need to be resolved before 2.0 final release
    +
    +    Update Tools/compiler so that it is compatible with list
    +    comprehensions, import as, and any other new language features. 
    +
    +    Improve code coverage of test suite.
    +
    +    Decide on a license.
    +
    +    Finish writing the PEPs for the features that went out with
    +    2.0b1(! sad, but realistic -- we'll get better with practice).
    +
    +    Major effort to whittle the bug database down to size.  I've (tim)
    +    seen this before: if you can keep all the open bugs fitting on one
    +    screen, people will generally keep it that way.  But let it
    +    slobber over a screen for a month, & it just goes to hell (no
    +    "visible progress" indeed!).
    +
    +Accepted and in progress
    +
    +    * PyErr_Format - Fredrik Lundh
    +      Make this function safe from buffer overflows.
    +
    +    * Change meaning of \x escapes - PEP 223 - Fredrik Lundh
    +
    +    * Add \U1234678 escapes in u"" strings - Fredrik Lundh
    +
    +    * Integrated gettext module - Barry Warsaw
    +      wrapper around standard internationalization libraries
    +
    +Open: proposed but not accepted or rejected
    +
    +    * Extended slicing on lists - Michael Hudson
    +      Make lists (and other builtin types) handle extended slices.
    +
    +    * Problems reported with Tkinter, Tk 8.3.2, and Unicode (?)
    +
     Previously failing test cases
     
         If you find a test bouncing between this section and the previous one,
    @@ -173,75 +235,6 @@
             ]
     
     
    -Open items -- Need to be resolved before 2.0b1 release
    -
    -    Add popen2 support for Linux -- Fred Drake
    -
    -    Get all patches out of Open.
    -
    -    Get all patches out of Accepted.
    -
    -    Fix bug 112558
    -    https://sourceforge.net/bugs/?func=detailbug&bug_id=112558&group_id=5470
    -
    -    Fix all other bugs with priority 7 or higher
    -
    -    Review performance and frequency of garbage collection scans.
    -
    -    Decide on a license.
    -
    -    Windows installer:  If HKLM isn't writable, back off to HKCU (so
    -    Python can be installed on NT & 2000 without admin privileges).
    -
    -    Windows installer:  Install w9xpopen.exe only under Win95/98.
    -
    -    Windows ME:  Don't know anything about it.  Will the installer
    -    even run?  Does it need the w9xpopen hack?
    -
    -Open items -- Need to be resolved before 2.0 final release
    -
    -    Update Tools/compiler so that it is compatible with list
    -    comprehensions, import as, and any other new language features. 
    -
    -    Improve code coverage of test suite.
    -
    -    Decide on a license.
    -
    -    Finish writing the PEPs for the features that went out with
    -    2.0b1(! sad, but realistic -- we'll get better with practice).
    -
    -    Major effort to whittle the bug database down to size.  I've (tim)
    -    seen this before: if you can keep all the open bugs fitting on one
    -    screen, people will generally keep it that way.  But let it
    -    slobber over a screen for a month, & it just goes to hell (no
    -    "visible progress" indeed!).
    -
    -
    -Open: proposed but not accepted or rejected
    -
    -    * Extended slicing on lists - Michael Hudson
    -      Make lists (and other builtin types) handle extended slices.
    -
    -    * Problems reported with Tkinter, Tk 8.3.2, and Unicode (?)
    -
    -Accepted and in progress
    -
    -    * Compression of Unicode database - Fredrik Lundh
    -      SF Patch 100899
    -
    -    * PyErr_Format - Fredrik Lundh
    -      Make this function safe from buffer overflows.
    -
    -    * Range literals - Thomas Wouters
    -      SF Patch 100902
    -
    -    * Change meaning of \x escapes - PEP 223 - Fredrik Lundh
    -
    -    * Add \U1234678 escapes in u"" strings - Fredrik Lundh
    -
    -    * Integrated gettext module - Barry Warsaw
    -      wrapper around standard internationalization libraries
    -
     Open items -- completed/fixed
     
         [23-Aug-2000 jeremy - tim reports "completed recently"]
    @@ -306,6 +299,14 @@
     
     Postponed
     
    +    * Compression of Unicode database - Fredrik Lundh
    +      SF Patch 100899
    +      At least for 2.0b1.  May be included in 2.0 as a bug fix.
    +
    +    * Range literals - Thomas Wouters
    +      SF Patch 100902
    +      We ended up having a lot of doubt about the proposal.
    +
         * Eliminated SET_LINENO opcode - Vladimir Marangozov
           Small optimization achieved by using the code object's lnotab
           instead of the SET_LINENO instruction.  Uses code rewriting
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:36 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:36 +0100
    Subject: [Python-checkins] peps: Changed the name mangling from
    	__doc____ to	__doc___ and
    Message-ID: 
    
    http://hg.python.org/peps/rev/2be804940316
    changeset:   166:2be804940316
    user:        Marc-Andr? Lemburg 
    date:        Wed Aug 30 09:08:16 2000 +0000
    summary:
      Changed the name mangling from __doc____ to __doc___ and
    added comments about possible problems.
    
    files:
      pep-0224.txt |  39 ++++++++++++++++++++++++++++++++++-----
      1 files changed, 34 insertions(+), 5 deletions(-)
    
    
    diff --git a/pep-0224.txt b/pep-0224.txt
    --- a/pep-0224.txt
    +++ b/pep-0224.txt
    @@ -84,7 +84,7 @@
     
         The following name mangling scheme achieves all of the above:
     
    -        __doc____
    +        __doc___
     
         To keep track of the last assigned name, the byte code compiler
         stores this name in a variable of the compiling structure.  This
    @@ -102,8 +102,8 @@
         In the above example this would result in the following new class
         attributes to be created:
     
    -        C.__doc__a__ == "attribute C.a doc-string (1)"
    -        C.__doc__b__ == "attribute C.b doc-string (2)"
    +        C.__doc_a__ == "attribute C.a doc-string (1)"
    +        C.__doc_b__ == "attribute C.b doc-string (2)"
     
         A patch to the current CVS version of Python 2.0 which implements
         the above is available on SourceForge at [1].
    @@ -134,10 +134,39 @@
         Since the definition of method "x" currently does not reset the
         used assignment name variable, it is still valid when the compiler
         reaches the docstring "b's doc string" and thus assigns the string
    -    to __doc__b__.
    +    to __doc_b__.
     
         A possible solution to this problem would be resetting the name
    -    variable for all non-expression nodes.
    +    variable for all non-expression nodes in the compiler.
    +
    +
    +Possible Problems
    +
    +    Even though highly unlikely, attribute docstrings could get
    +    accidentally concatenated to the attribute's value:
    +
    +    class C:
    +	  x = "text" \
    +	  "x's docstring"
    +
    +    The trailing slash would cause the Python compiler to concatenate
    +    the attribute value and the docstring.
    +
    +    A modern syntax highlighting editor would easily make this
    +    accident visible, though, and by simply inserting emtpy lines
    +    between the attribute definition and the docstring you can avoid
    +    the possible concatenation completely, so the problem is
    +    negligible.
    +
    +    Another possible problem is that of using triple quoted strings as
    +    a way to uncomment parts of your code. 
    +
    +    If there happens to be an assignment just before the start of the
    +    comment string, then the compiler will treat the comment as
    +    docstring attribute and apply the above logic to it.
    +
    +    Besides generating a docstring for an otherwise undocumented
    +    attribute there is no breakage.
     
         
     Copyright
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:38 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:38 +0100
    Subject: [Python-checkins] peps: The gettext.py module is complete.
    Message-ID: 
    
    http://hg.python.org/peps/rev/3e3849a2c6bd
    changeset:   167:3e3849a2c6bd
    user:        Barry Warsaw 
    date:        Thu Aug 31 21:24:20 2000 +0000
    summary:
      The gettext.py module is complete.
    
    files:
      pep-0200.txt |  5 ++---
      1 files changed, 2 insertions(+), 3 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -144,9 +144,6 @@
     
         * Add \U1234678 escapes in u"" strings - Fredrik Lundh
     
    -    * Integrated gettext module - Barry Warsaw
    -      wrapper around standard internationalization libraries
    -
     Open: proposed but not accepted or rejected
     
         * Extended slicing on lists - Michael Hudson
    @@ -296,6 +293,8 @@
         * Augmented assignment - Thomas Wouters
           Add += and family, plus Python and C hooks, and API functions.
     
    +    * gettext.py module - Barry Warsaw
    +
     
     Postponed
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:38 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:38 +0100
    Subject: [Python-checkins] peps: lookdict bug is closed
    Message-ID: 
    
    http://hg.python.org/peps/rev/0feadc39062c
    changeset:   168:0feadc39062c
    user:        Jeremy Hylton 
    date:        Fri Sep 01 02:20:46 2000 +0000
    summary:
      lookdict bug is closed
    
    files:
      pep-0200.txt |  3 ---
      1 files changed, 0 insertions(+), 3 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -100,9 +100,6 @@
     
         Get all patches out of Accepted.
     
    -    Fix bug 112558
    -    https://sourceforge.net/bugs/?func=detailbug&bug_id=112558&group_id=5470
    -
         Fix all other bugs with priority 7 or higher
     
         Review performance and frequency of garbage collection scans.
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:40 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:40 +0100
    Subject: [Python-checkins] peps: add notes about popen2 problem on Windows
    	and SocketServer	changes
    Message-ID: 
    
    http://hg.python.org/peps/rev/db1c67aa4e93
    changeset:   169:db1c67aa4e93
    user:        Jeremy Hylton 
    date:        Fri Sep 01 02:50:24 2000 +0000
    summary:
      add notes about popen2 problem on Windows and SocketServer changes
    
    files:
      pep-0200.txt |  3 +++
      1 files changed, 3 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -95,6 +95,9 @@
     Open items -- Need to be resolved before 2.0b1 release
     
         Add popen2 support for Linux -- Fred Drake
    +    There are some threads problems on windows...
    +
    +    Deal with buffering problem with SocketServer -- GvR
     
         Get all patches out of Open.
     
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:27:41 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:27:41 +0100
    Subject: [Python-checkins] peps: add the anti-tab action item
    Message-ID: 
    
    http://hg.python.org/peps/rev/9e117fbd5225
    changeset:   170:9e117fbd5225
    user:        Jeremy Hylton 
    date:        Fri Sep 01 03:06:39 2000 +0000
    summary:
      add the anti-tab action item
    
    files:
      pep-0200.txt |  2 ++
      1 files changed, 2 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0200.txt b/pep-0200.txt
    --- a/pep-0200.txt
    +++ b/pep-0200.txt
    @@ -99,6 +99,8 @@
     
         Deal with buffering problem with SocketServer -- GvR
     
    +    Make sure there are no tabs in the std library.
    +
         Get all patches out of Open.
     
         Get all patches out of Accepted.
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:35:43 2011
    From: python-checkins at python.org (phillip.eby)
    Date: Wed, 23 Mar 2011 21:35:43 +0100 (CET)
    Subject: [Python-checkins] r88792 -
    	sandbox/trunk/setuptools/setuptools/package_index.py
    Message-ID: <3Pw2hv0Lf5z7LrM@mail.python.org>
    
    Author: phillip.eby
    Date: Wed Mar 23 21:35:42 2011
    New Revision: 88792
    
    Log:
    Handle multiple Content-Length headers, and support HTTP credentials for 
    SVN checkouts.
    
    
    Modified:
       sandbox/trunk/setuptools/setuptools/package_index.py
    
    Modified: sandbox/trunk/setuptools/setuptools/package_index.py
    ==============================================================================
    --- sandbox/trunk/setuptools/setuptools/package_index.py	(original)
    +++ sandbox/trunk/setuptools/setuptools/package_index.py	Wed Mar 23 21:35:42 2011
    @@ -550,7 +550,7 @@
                 bs = self.dl_blocksize
                 size = -1
                 if "content-length" in headers:
    -                size = int(headers["Content-Length"])
    +                size = max(map(int,headers.getheaders("Content-Length")))
                     self.reporthook(url, filename, blocknum, bs, size)
                 tfp = open(filename,'wb')
                 while True:
    @@ -639,10 +639,39 @@
             os.unlink(filename)
             raise DistutilsError("Unexpected HTML page found at "+url)
     
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
         def _download_svn(self, url, filename):
             url = url.split('#',1)[0]   # remove any fragment for svn's sake
    +        creds = ''
    +        if url.lower().startswith('svn:') and '@' in url:
    +            scheme, netloc, path, p, q, f = urlparse.urlparse(url)
    +            if not netloc and path.startswith('//') and '/' in path[2:]:
    +                netloc, path = path[2:].split('/',1)
    +                auth, host = urllib.splituser(netloc)
    +                if auth:
    +                    if ':' in auth:
    +                        user, pw = auth.split(':',1)
    +                        creds = " --username=%s --password=%s" % (user, pw)
    +                    else:
    +                        creds = " --username="+auth
    +                    netloc = host
    +                    url = urlparse.urlunparse((scheme, netloc, url, p, q, f))
             self.info("Doing subversion checkout from %s to %s", url, filename)
    -        os.system("svn checkout -q %s %s" % (url, filename))
    +        os.system("svn checkout%s -q %s %s" % (creds, url, filename))
             return filename
     
         def debug(self, msg, *args):
    @@ -654,6 +683,18 @@
         def warn(self, msg, *args):
             log.warn(msg, *args)
     
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
     # This pattern matches a character entity reference (a decimal numeric
     # references, a hexadecimal numeric reference, or a named reference).
     entity_sub = re.compile(r'&(#(\d+|x[\da-fA-F]+)|[\w.:-]+);?').sub
    
    From tjreedy at udel.edu  Wed Mar 23 21:36:01 2011
    From: tjreedy at udel.edu (Terry Reedy)
    Date: Wed, 23 Mar 2011 16:36:01 -0400
    Subject: [Python-checkins] peps: Fleshed out the bulk of the guidelines,
     after internal discussion
    In-Reply-To: 
    References: 
    Message-ID: <4D8A59B1.5040303@udel.edu>
    
    
    > +    Because the PEPs are maintained as plain text files under CVS
    
    CVS => Mercurial ? or both, for complete history?
    
    > +    control, their revision history is the historical record of the
    > +    feature proposal.
    
    > _______________________________________________
    > Python-checkins mailing list
    > Python-checkins at python.org
    > http://mail.python.org/mailman/listinfo/python-checkins
    
    From python-checkins at python.org  Wed Mar 23 21:38:13 2011
    From: python-checkins at python.org (phillip.eby)
    Date: Wed, 23 Mar 2011 21:38:13 +0100 (CET)
    Subject: [Python-checkins] r88793 - in sandbox/branches/setuptools-0.6:
    	EasyInstall.txt setuptools/package_index.py
    Message-ID: <3Pw2ln0Ny3z7Lkn@mail.python.org>
    
    Author: phillip.eby
    Date: Wed Mar 23 21:38:12 2011
    New Revision: 88793
    
    Log:
    Backport.
    
    
    Modified:
       sandbox/branches/setuptools-0.6/EasyInstall.txt
       sandbox/branches/setuptools-0.6/setuptools/package_index.py
    
    Modified: sandbox/branches/setuptools-0.6/EasyInstall.txt
    ==============================================================================
    --- sandbox/branches/setuptools-0.6/EasyInstall.txt	(original)
    +++ sandbox/branches/setuptools-0.6/EasyInstall.txt	Wed Mar 23 21:38:12 2011
    @@ -1231,6 +1231,10 @@
      * Extract copies of hardlinked and symlinked files in tarballs when extracting
        source
     
    + * Support HTTP servers that return multiple 'Content-Length' headers
    +
    + * Support user/password credentials in Subversion (svnserve) URLs
    +
     0.6c11
      * Fix installed script .exe files not working with 64-bit Python on Windows
        (wasn't actually released in 0.6c10 due to a lost checkin)
    
    Modified: sandbox/branches/setuptools-0.6/setuptools/package_index.py
    ==============================================================================
    --- sandbox/branches/setuptools-0.6/setuptools/package_index.py	(original)
    +++ sandbox/branches/setuptools-0.6/setuptools/package_index.py	Wed Mar 23 21:38:12 2011
    @@ -550,7 +550,7 @@
                 bs = self.dl_blocksize
                 size = -1
                 if "content-length" in headers:
    -                size = int(headers["Content-Length"])
    +                size = max(map(int,headers.getheaders("Content-Length")))
                     self.reporthook(url, filename, blocknum, bs, size)
                 tfp = open(filename,'wb')
                 while True:
    @@ -639,10 +639,39 @@
             os.unlink(filename)
             raise DistutilsError("Unexpected HTML page found at "+url)
     
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
         def _download_svn(self, url, filename):
             url = url.split('#',1)[0]   # remove any fragment for svn's sake
    +        creds = ''
    +        if url.lower().startswith('svn:') and '@' in url:
    +            scheme, netloc, path, p, q, f = urlparse.urlparse(url)
    +            if not netloc and path.startswith('//') and '/' in path[2:]:
    +                netloc, path = path[2:].split('/',1)
    +                auth, host = urllib.splituser(netloc)
    +                if auth:
    +                    if ':' in auth:
    +                        user, pw = auth.split(':',1)
    +                        creds = " --username=%s --password=%s" % (user, pw)
    +                    else:
    +                        creds = " --username="+auth
    +                    netloc = host
    +                    url = urlparse.urlunparse((scheme, netloc, url, p, q, f))
             self.info("Doing subversion checkout from %s to %s", url, filename)
    -        os.system("svn checkout -q %s %s" % (url, filename))
    +        os.system("svn checkout%s -q %s %s" % (creds, url, filename))
             return filename
     
         def debug(self, msg, *args):
    @@ -654,6 +683,18 @@
         def warn(self, msg, *args):
             log.warn(msg, *args)
     
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
     # This pattern matches a character entity reference (a decimal numeric
     # references, a hexadecimal numeric reference, or a named reference).
     entity_sub = re.compile(r'&(#(\d+|x[\da-fA-F]+)|[\w.:-]+);?').sub
    
    From python-checkins at python.org  Wed Mar 23 21:49:42 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Wed, 23 Mar 2011 21:49:42 +0100
    Subject: [Python-checkins] peps: Test commit to trigger the rebuild hook.
    Message-ID: 
    
    http://hg.python.org/peps/rev/918a2d650098
    changeset:   3844:918a2d650098
    user:        Georg Brandl 
    date:        Wed Mar 23 21:49:47 2011 +0100
    summary:
      Test commit to trigger the rebuild hook.
    
    files:
      pep-0398.txt |  2 +-
      1 files changed, 1 insertions(+), 1 deletions(-)
    
    
    diff --git a/pep-0398.txt b/pep-0398.txt
    --- a/pep-0398.txt
    +++ b/pep-0398.txt
    @@ -72,7 +72,7 @@
     
     Other planned large-scale changes:
     
    -* Addition of the "packaging" module, replacing "distutils"
    +* Addition of the "packaging" module, replacing "distutils".
     
     
     Copyright
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 21:56:29 2011
    From: python-checkins at python.org (phillip.eby)
    Date: Wed, 23 Mar 2011 21:56:29 +0100 (CET)
    Subject: [Python-checkins] r88794 -
    	sandbox/trunk/setuptools/setuptools/archive_util.py
    Message-ID: <3Pw38s43rkz7Lq7@mail.python.org>
    
    Author: phillip.eby
    Date: Wed Mar 23 21:56:29 2011
    New Revision: 88794
    
    Log:
    Fix rejecting filenames with '..' in them
    
    
    Modified:
       sandbox/trunk/setuptools/setuptools/archive_util.py
    
    Modified: sandbox/trunk/setuptools/setuptools/archive_util.py
    ==============================================================================
    --- sandbox/trunk/setuptools/setuptools/archive_util.py	(original)
    +++ sandbox/trunk/setuptools/setuptools/archive_util.py	Wed Mar 23 21:56:29 2011
    @@ -138,7 +138,7 @@
                 name = info.filename
     
                 # don't extract absolute paths or ones with .. in them
    -            if name.startswith('/') or '..' in name:
    +            if name.startswith('/') or '..' in name.split('/'):
                     continue
     
                 target = os.path.join(extract_dir, *name.split('/'))
    @@ -180,7 +180,7 @@
             for member in tarobj:
                 name = member.name
                 # don't extract absolute paths or ones with .. in them
    -            if not name.startswith('/') and '..' not in name:
    +            if not name.startswith('/') and '..' not in name.split('/'):
                     dst = os.path.join(extract_dir, *name.split('/'))
                     while member is not None and (member.islnk() or member.issym()):
                         linkpath = member.linkname
    
    From python-checkins at python.org  Wed Mar 23 22:09:16 2011
    From: python-checkins at python.org (phillip.eby)
    Date: Wed, 23 Mar 2011 22:09:16 +0100 (CET)
    Subject: [Python-checkins] r88795 - in sandbox/branches/setuptools-0.6:
    	EasyInstall.txt setuptools/archive_util.py
    Message-ID: <3Pw3Rc30Z8z7LnQ@mail.python.org>
    
    Author: phillip.eby
    Date: Wed Mar 23 22:09:16 2011
    New Revision: 88795
    
    Log:
    Fixed skipping extraction of files or directories containing '..' in 
    their names.
    
    
    Modified:
       sandbox/branches/setuptools-0.6/EasyInstall.txt
       sandbox/branches/setuptools-0.6/setuptools/archive_util.py
    
    Modified: sandbox/branches/setuptools-0.6/EasyInstall.txt
    ==============================================================================
    --- sandbox/branches/setuptools-0.6/EasyInstall.txt	(original)
    +++ sandbox/branches/setuptools-0.6/EasyInstall.txt	Wed Mar 23 22:09:16 2011
    @@ -1235,6 +1235,12 @@
     
      * Support user/password credentials in Subversion (svnserve) URLs
     
    + * Fixed problems accessing /dev/null inside the script sandbox, and the sandbox
    +   swapping the ``open`` and file`` builtins.
    +
    + * Fixed skipping extraction of files or directories containing '..' in their
    +   names
    +
     0.6c11
      * Fix installed script .exe files not working with 64-bit Python on Windows
        (wasn't actually released in 0.6c10 due to a lost checkin)
    
    Modified: sandbox/branches/setuptools-0.6/setuptools/archive_util.py
    ==============================================================================
    --- sandbox/branches/setuptools-0.6/setuptools/archive_util.py	(original)
    +++ sandbox/branches/setuptools-0.6/setuptools/archive_util.py	Wed Mar 23 22:09:16 2011
    @@ -138,7 +138,7 @@
                 name = info.filename
     
                 # don't extract absolute paths or ones with .. in them
    -            if name.startswith('/') or '..' in name:
    +            if name.startswith('/') or '..' in name.split('/'):
                     continue
     
                 target = os.path.join(extract_dir, *name.split('/'))
    @@ -180,7 +180,7 @@
             for member in tarobj:
                 name = member.name
                 # don't extract absolute paths or ones with .. in them
    -            if not name.startswith('/') and '..' not in name:
    +            if not name.startswith('/') and '..' not in name.split('/'):
                     dst = os.path.join(extract_dir, *name.split('/'))
                     while member is not None and (member.islnk() or member.issym()):
                         linkpath = member.linkname
    
    From python-checkins at python.org  Wed Mar 23 22:17:04 2011
    From: python-checkins at python.org (antoine.pitrou)
    Date: Wed, 23 Mar 2011 22:17:04 +0100
    Subject: [Python-checkins] peps: Ignore pyc files
    Message-ID: 
    
    http://hg.python.org/peps/rev/464c996ec8f6
    changeset:   3845:464c996ec8f6
    user:        Antoine Pitrou 
    date:        Wed Mar 23 22:17:01 2011 +0100
    summary:
      Ignore pyc files
    
    files:
      .hgignore |  2 ++
      1 files changed, 2 insertions(+), 0 deletions(-)
    
    
    diff --git a/.hgignore b/.hgignore
    --- a/.hgignore
    +++ b/.hgignore
    @@ -1,3 +1,5 @@
     syntax:glob
     pep-0000.txt
     pep-????.html
    +*.pyc
    +*.pyo
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 22:38:48 2011
    From: python-checkins at python.org (raymond.hettinger)
    Date: Wed, 23 Mar 2011 22:38:48 +0100
    Subject: [Python-checkins] cpython: Minor clean-ups.
    Message-ID: 
    
    http://hg.python.org/cpython/rev/59127dcefd87
    changeset:   68882:59127dcefd87
    user:        Raymond Hettinger 
    date:        Wed Mar 23 14:38:39 2011 -0700
    summary:
      Minor clean-ups.
    
    files:
      Lib/collections/__init__.py |  7 ++++---
      1 files changed, 4 insertions(+), 3 deletions(-)
    
    
    diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py
    --- a/Lib/collections/__init__.py
    +++ b/Lib/collections/__init__.py
    @@ -321,7 +321,9 @@
             for index, name in enumerate(field_names):
                 if (not all(c.isalnum() or c=='_' for c in name)
                     or _iskeyword(name)
    -                or not name or name[0].isdigit() or name.startswith('_')
    +                or not name
    +                or name[0].isdigit()
    +                or name.startswith('_')
                     or name in seen):
                     field_names[index] = '_%d' % index
                 seen.add(name)
    @@ -351,8 +353,7 @@
                                    for index, name in enumerate(field_names))
         )
     
    -    # Execute the class definition string in a temporary namespace and
    -    # support tracing utilities by setting a value for frame.f_globals['__name__']
    +    # Execute the class definition string in a temporary namespace
         namespace = {}
         try:
             exec(class_definition, namespace)
    
    -- 
    Repository URL: http://hg.python.org/cpython
    
    From python-checkins at python.org  Wed Mar 23 22:39:33 2011
    From: python-checkins at python.org (brett.cannon)
    Date: Wed, 23 Mar 2011 22:39:33 +0100 (CET)
    Subject: [Python-checkins] r88796 - in sandbox/trunk/pep362: pep362.py
    	setup.py test_pep362.py tests
    Message-ID: <3Pw46Y065Fz7Lln@mail.python.org>
    
    Author: brett.cannon
    Date: Wed Mar 23 22:39:32 2011
    New Revision: 88796
    
    Log:
    Update code for future inclusion in Python 3.3 (when I get around to it).
    
    Added:
       sandbox/trunk/pep362/test_pep362.py
          - copied, changed from r88415, /sandbox/trunk/pep362/tests/test_pep362.py
    Removed:
       sandbox/trunk/pep362/setup.py
       sandbox/trunk/pep362/tests/
    Modified:
       sandbox/trunk/pep362/   (props changed)
       sandbox/trunk/pep362/pep362.py
    
    Modified: sandbox/trunk/pep362/pep362.py
    ==============================================================================
    --- sandbox/trunk/pep362/pep362.py	(original)
    +++ sandbox/trunk/pep362/pep362.py	Wed Mar 23 22:39:32 2011
    @@ -8,7 +8,7 @@
         pass
     
     
    -class Parameter(object):
    +class Parameter:
     
         """Represent a parameter in a function signature.
     
    @@ -31,8 +31,9 @@
     
         """
     
    -    def __init__(self, name, position, has_default=False, default_value=None,
    -                 keyword_only=False, has_annotation=False, annotation=None):
    +    def __init__(self, name, position, *, has_default=False,
    +                 default=None, keyword_only=False, has_annotation=False,
    +                 annotation=None):
             """Initialize a Parameter instance.
     
             For has_* arguments, if they are False then the corresponding *
    @@ -42,13 +43,13 @@
             self.name = name
             self.position = position
             if has_default:
    -            self.default_value = default_value
    +            self.default = default
             self.keyword_only = keyword_only
             if has_annotation:
                 self.annotation = annotation
     
     
    -class Signature(object):
    +class Signature:
     
         """Object to represent the signature of a function/method.
     
    @@ -74,39 +75,19 @@
     
         def __init__(self, func):
             """Initialize from a function or method object."""
    -        if hasattr(func, 'im_func'):
    -            func = func.im_func
    -        try:
    -            func_code = func.__code__
    -        except AttributeError:
    -            # Compatibility for versions < 2.6.
    -            func_code = func.func_code
    -
    +        func_code = func.__code__
             self.name = func.__name__
    -
    -        try:
    -            # Unneeded once 2.x support is removed; can easily get info the
    -            #  "hard" way.
    -            argspec = inspect.getfullargspec(func)[:4]
    -        except AttributeError:
    -            # Needed only for tuple parameters.
    -            argspec = inspect.getargspec(func)
    +        # XXX replace with own implementation
    +        argspec = inspect.getfullargspec(func)[:4]
             parameters = {}
     
             # Parameter information.
             pos_count = func_code.co_argcount
    -        if hasattr(func_code, 'co_kwonlyargcount'):
    -            keyword_only_count = func_code.co_kwonlyargcount
    -        else:
    -            keyword_only_count = 0
    +        keyword_only_count = func_code.co_kwonlyargcount
             positional = argspec[0]
             keyword_only = func_code.co_varnames[pos_count:
                                                     pos_count+keyword_only_count]
    -        try:
    -            fxn_defaults = func.__defaults__
    -        except AttributeError:
    -            # Deal with old names prior to 2.6.
    -            fxn_defaults = func.func_defaults
    +        fxn_defaults = func.__defaults__
             if fxn_defaults:
                 pos_default_count = len(fxn_defaults)
             else:
    @@ -126,7 +107,7 @@
                 has_annotation, annotation = self._find_annotation(func, name)
                 default_value = fxn_defaults[offset]
                 param = Parameter(name, offset+non_default_count,
    -                                has_default=True, default_value=default_value,
    +                                has_default=True, default=default_value,
                                     has_annotation=has_annotation,
                                     annotation=annotation)
                 parameters[name] = param
    @@ -134,16 +115,14 @@
             for offset, name in enumerate(keyword_only):
                 has_annotation, annotation = self._find_annotation(func, name)
                 has_default, default_value = False, None
    -            # hasattr check only needed for versions < 2.6.
    -            if (hasattr(func, '__kwdefaults__') and func.__kwdefaults__ and
    -                    name in func.__kwdefaults__):
    +            if func.__kwdefaults__ and name in func.__kwdefaults__:
                     has_default = True
                     default_value = func.__kwdefaults__[name]
                 param = Parameter(name, offset+pos_count, keyword_only=True,
    -                                has_default=has_default,
    -                                default_value=default_value,
    -                                has_annotation=has_annotation,
    -                                annotation=annotation)
    +                              has_default=has_default,
    +                              default=default_value,
    +                              has_annotation=has_annotation,
    +                              annotation=annotation)
                 parameters[name] = param
             # Variable parameters.
             index = pos_count + keyword_only_count
    @@ -172,9 +151,8 @@
             self._parameters = parameters
     
             # Return annotation.
    -        if hasattr(func, '__annotations__'):
    -            if 'return' in func.__annotations__:
    -                self.return_annotation = func.__annotations__['return']
    +        if 'return' in func.__annotations__:
    +            self.return_annotation = func.__annotations__['return']
     
         def __getitem__(self, key):
             return self._parameters[key]
    @@ -186,10 +164,9 @@
             """Return True if an annotation exists for the named parameter along
             with its annotation, else return False and None."""
             has_annotation, annotation = False, None
    -        if hasattr(func, '__annotations__'):
    -            if name in func.__annotations__:
    -                has_annotation = True
    -                annotation = func.__annotations__[name]
    +        if name in func.__annotations__:
    +            has_annotation = True
    +            annotation = func.__annotations__[name]
             return has_annotation, annotation
     
         def _convert_name(self, name):
    @@ -234,7 +211,7 @@
                         break
                     else:
                         raise BindError("too many positional arguments")
    -            self._tuple_bind(bindings, param.name, position_arg)
    +            bindings[param.name] = position_arg
                 args = args[1:]
             # Keyword arguments & default values.
             else:
    @@ -247,9 +224,8 @@
                         except KeyError:
                             raise BindError("%r unbound" % param_name)
                     else:
    -                    if hasattr(positional_param, 'default_value'):
    -                        self._tuple_bind(bindings, param_name,
    -                                            positional_param.default_value)
    +                    if hasattr(positional_param, 'default'):
    +                        bindings[param_name] = positional_param.default
                         else:
                             raise BindError("%r parameter lacking default value" %
                                             param_name)
    @@ -276,39 +252,14 @@
             # Keyword-only default values.
             else:
                 for name, param in keyword_only.items():
    -                if hasattr(param, 'default_value'):
    -                    bindings[name] = param.default_value
    +                if hasattr(param, 'default'):
    +                    bindings[name] = param.default
                     else:
                         raise BindError("%s parameter lacking a default value" %
                                         name)
     
             return bindings
     
    -    def _tuple_bind(self, bindings, possible_tuple, value):
    -        """Where a tuple could be a parameter, handle binding the values to the
    -        tuple and storing into the bindings mapping."""
    -        if not isinstance(possible_tuple, tuple):
    -            bindings[possible_tuple] = value
    -        else:
    -            # Need to make sure that value is as long as the parameter, but not
    -            # vice-versa.
    -            error_msg = "not enough values to unpack for %r"
    -            tuple_iter = iter(possible_tuple)
    -            try:
    -                value_iter = iter(value)
    -            except TypeError:
    -                raise BindError(error_msg % possible_tuple)
    -            while True:
    -                try:
    -                    sub_param = tuple_iter.next()
    -                except StopIteration:
    -                    break
    -                try:
    -                    sub_value = value_iter.next()
    -                except StopIteration:
    -                    raise BindError(error_msg % possible_tuple)
    -                self._tuple_bind(bindings, sub_param, sub_value)
    -
     
     def signature(func):
         """Return a Signature object for the function or method.
    @@ -318,15 +269,9 @@
         attribute if possible (but is not required).
     
         """
    -    if hasattr(func, 'im_func'):
    -        func = func.im_func
    -    sig = Signature(func)
    -    if not hasattr(func, '__signature__'):
    -        try:
    -            func.__signature__ = sig
    -        except AttributeError:
    -            pass
    -    else:
    -        sig = func.__signature__
    -
    -    return sig
    +    try:
    +        return func.__signature__
    +    except AttributeError:
    +        sig = Signature(func)
    +        func.__signature__ = sig
    +        return sig
    
    Deleted: sandbox/trunk/pep362/setup.py
    ==============================================================================
    --- sandbox/trunk/pep362/setup.py	Wed Mar 23 22:39:32 2011
    +++ (empty file)
    @@ -1,25 +0,0 @@
    -from distutils.core import setup
    -
    -setup(
    -        # Package metadata.
    -        name='pep362',
    -        version='0.6.2',
    -        description='Implementation of PEP 362 (Function Signature objects)',
    -        author='Brett Cannon',
    -        author_email='brett at python.org',
    -        url='http://svn.python.org/view/sandbox/trunk/pep362/',
    -        # Files.
    -        py_modules=['pep362', 'examples'],
    -        packages=['tests'],
    -        data_files=['README'],
    -        classifiers=[
    -            'Programming Language :: Python :: 2',
    -            'Programming Language :: Python :: 2.5',
    -            'Programming Language :: Python :: 2.6',
    -            'Programming Language :: Python :: 2.7',
    -            'Programming Language :: Python :: 3',
    -            'Programming Language :: Python :: 3.0',
    -            'Programming Language :: Python :: 3.1',
    -            'Programming Language :: Python :: 3.2',
    -        ]
    -    )
    
    Copied: sandbox/trunk/pep362/test_pep362.py (from r88415, /sandbox/trunk/pep362/tests/test_pep362.py)
    ==============================================================================
    --- /sandbox/trunk/pep362/tests/test_pep362.py	(original)
    +++ sandbox/trunk/pep362/test_pep362.py	Wed Mar 23 22:39:32 2011
    @@ -1,23 +1,49 @@
     import pep362
     
     import unittest
    -from tests import pep362_fodder
    -try:
    -    from tests import pep362_py2_fodder
    -    from test import test_support
    -except SyntaxError:
    -    from tests import pep362_py3k_fodder
    -    from test import support as test_support
    +from test import support as test_support
     from sys import version_info
     
     
    -def version_specific(major_number):
    -    def inner(fxn):
    -        if version_info[0] == major_number:
    -            return fxn
    -        else:
    -            return lambda self: self
    -    return inner
    +def no_args():
    +    pass
    +
    +def var_args(*args):
    +    pass
    +
    +def var_kw_args(**kwargs):
    +    pass
    +
    +def no_default_args(a):
    +    pass
    +
    +def default_args(a=42):
    +    pass
    +
    +def keyword_only(*, a):
    +    pass
    +
    +def keyword_only_default(*, a=42):
    +    pass
    +
    +def arg_annotation(a:int):
    +    pass
    +
    +def arg_annotation_default(a:int=42):
    +    pass
    +
    +def arg_annotation_var(*args:int, **kwargs:str):
    +    pass
    +
    +def arg_annotation_keyword_only(*, a:int):
    +    pass
    +
    +def return_annotation() -> int:
    +    pass
    +
    +def all_args(a:int, d=0, *args:int,
    +                g:int, h:int=8, **kwargs:int) -> int:
    +    return a, d, g, h, args, kwargs
     
     
     class ParameterObjectTests(unittest.TestCase):
    @@ -41,13 +67,14 @@
             self.assertEqual(param.position, pos)
     
         def test_default_values(self):
    -        # Testing that 'default_value' is not set is handled in the testing of
    +        # Testing that 'default' is not set is handled in the testing of
             # that attribute.
             default_value = 42
    -        param = pep362.Parameter('_', 0, True, default_value)
    -        self.assertEqual(param.default_value, default_value)
    -        param = pep362.Parameter('_', 0, False)
    -        self.assertTrue(not hasattr(param, 'default_value'))
    +        param = pep362.Parameter('_', 0, has_default=True,
    +                                 default=default_value)
    +        self.assertEqual(param.default, default_value)
    +        param = pep362.Parameter('_', 0, has_default=False)
    +        self.assertTrue(not hasattr(param, 'default'))
     
         def test_keyword_only(self):
             # Setting the value for keyword_only should create an attribute.
    @@ -70,21 +97,21 @@
         def test_getitem(self):
             # __getitem__() should return the Parameter object for the name
             # parameter.
    -        sig = pep362.Signature(pep362_fodder.default_args)
    +        sig = pep362.Signature(default_args)
             self.assertTrue(sig['a'])
             param = sig['a']
             self.assertTrue(param.name, 'a')
     
         def test_iter(self):
             # The iterator should return all Parameter objects in the proper order.
    -        sig = pep362.Signature(pep362_fodder.default_args)
    +        sig = pep362.Signature(default_args)
             params = list(sig)
             self.assertEqual(len(params), 1)
             self.assertEqual(params[0].name, 'a')
     
         def test_no_args(self):
             # Test a function with no arguments.
    -        sig = pep362.Signature(pep362_fodder.no_args)
    +        sig = pep362.Signature(no_args)
             self.assertEqual('no_args', sig.name)
             self.assertTrue(not sig.var_args)
             self.assertTrue(not sig.var_kw_args)
    @@ -92,115 +119,87 @@
     
         def test_var_args(self):
             # Test the var_args attribute.
    -        sig = pep362.Signature(pep362_fodder.var_args)
    +        sig = pep362.Signature(var_args)
             self.assertEqual('args', sig.var_args)
             self.assertEqual(0, len(list(sig)))
    -        sig = pep362.Signature(pep362_fodder.no_args)
    +        sig = pep362.Signature(no_args)
             self.assertEqual('', sig.var_args)
     
         def test_var_kw_args(self):
             # Test the var_kw_args attribute and annotations.
    -        sig = pep362.Signature(pep362_fodder.var_kw_args)
    +        sig = pep362.Signature(var_kw_args)
             self.assertEqual('var_kw_args', sig.name)
             self.assertEqual('kwargs', sig.var_kw_args)
             self.assertEqual(0, len(list(sig)))
    -        sig = pep362.Signature(pep362_fodder.no_args)
    +        sig = pep362.Signature(no_args)
             self.assertEqual('', sig.var_kw_args)
     
         def test_parameter_positional(self):
             # A function with positional arguments should work.
    -        sig = pep362.Signature(pep362_fodder.no_default_args)
    +        sig = pep362.Signature(no_default_args)
             self.assertEqual('no_default_args', sig.name)
             param = sig['a']
             self.assertEqual('a', param.name)
             self.assertEqual(0, param.position)
    -        self.assertTrue(not hasattr(param, 'default_value'))
    +        self.assertTrue(not hasattr(param, 'default'))
     
         def test_parameter_default(self):
             # Default parameters for a function should work.
    -        sig = pep362.Signature(pep362_fodder.default_args)
    +        sig = pep362.Signature(default_args)
             self.assertEqual('default_args', sig.name)
             param = sig['a']
             self.assertEqual('a', param.name)
             self.assertEqual(0, param.position)
    -        self.assertEqual(42, param.default_value)
    -
    -    @version_specific(2)
    -    def test_parameter_tuple(self):
    -        # A function with a tuple as a parameter should work.
    -        sig = pep362.Signature(pep362_py2_fodder.tuple_args)
    -        self.assertEqual('tuple_args', sig.name)
    -        param = list(sig)[0]
    -        self.assertTrue(isinstance(param.name, tuple))
    -        self.assertEqual(('a', ('b',)), param.name)
    -        self.assertEqual(0, param.position)
    -        self.assertTrue(not hasattr(param, 'default_value'))
    +        self.assertEqual(42, param.default)
     
    -    @version_specific(2)
    -    def test_parameter_tuple_default(self):
    -        # A default argument for a tuple parameter needs to work.
    -        sig = pep362.Signature(pep362_py2_fodder.default_tuple_args)
    -        self.assertEqual('default_tuple_args', sig.name)
    -        param = list(sig)[0]
    -        self.assertEqual(('a', ('b',)), param.name)
    -        self.assertEqual(0, param.position)
    -        self.assertEqual((1, (2,)), param.default_value)
    -
    -    @version_specific(3)
         def test_keyword_only(self):
             # Is a function containing keyword-only parameters handled properly?
    -        sig = pep362.Signature(pep362_py3k_fodder.keyword_only)
    +        sig = pep362.Signature(keyword_only)
             param = sig['a']
             self.assertEqual(param.name, 'a')
             self.assertTrue(param.keyword_only)
             self.assertEqual(param.position, 0)
     
    -    @version_specific(3)
         def test_keyword_only_default(self):
             # Default arguments can work for keyword-only parameters.
    -        sig = pep362.Signature(pep362_py3k_fodder.keyword_only_default)
    +        sig = pep362.Signature(keyword_only_default)
             param = sig['a']
             self.assertEqual(param.name, 'a')
             self.assertTrue(param.keyword_only)
             self.assertEqual(param.position, 0)
    -        self.assertEqual(param.default_value, 42)
    +        self.assertEqual(param.default, 42)
     
    -    @version_specific(3)
         def test_annotations(self):
             # Make sure the proper annotation is found.
    -        sig = pep362.Signature(pep362_py3k_fodder.arg_annotation)
    +        sig = pep362.Signature(arg_annotation)
             param = sig['a']
             self.assertEqual(param.name, 'a')
             self.assertEqual(param.annotation, int)
     
    -    @version_specific(3)
         def test_annotations_default(self):
             # Annotations with a default value should work.
    -        sig = pep362.Signature(pep362_py3k_fodder.arg_annotation_default)
    +        sig = pep362.Signature(arg_annotation_default)
             param = sig['a']
             self.assertEqual(param.name, 'a')
             self.assertEqual(param.annotation, int)
    -        self.assertEqual(param.default_value, 42)
    +        self.assertEqual(param.default, 42)
     
    -    @version_specific(3)
         def test_annotation_keyword_only(self):
             # Keyword-only parameters can have an annotation.
    -        sig = pep362.Signature(pep362_py3k_fodder.arg_annotation_keyword_only)
    +        sig = pep362.Signature(arg_annotation_keyword_only)
             param = sig['a']
             self.assertEqual(param.name, 'a')
             self.assertEqual(param.annotation, int)
             self.assertTrue(param.keyword_only)
     
    -    @version_specific(3)
         def test_return_annotation(self):
             # The return value annotation.
    -        sig = pep362.Signature(pep362_py3k_fodder.return_annotation)
    +        sig = pep362.Signature(return_annotation)
             self.assertEqual(sig.return_annotation, int)
     
    -    @version_specific(3)
         def test_var_annotations(self):
             # Annotation on variable arguments (*args & **kwargs).
    -        sig = pep362.Signature(pep362_py3k_fodder.arg_annotation_var)
    +        sig = pep362.Signature(arg_annotation_var)
             self.assertEqual(sig.var_annotations[sig.var_args], int)
             self.assertEqual(sig.var_annotations[sig.var_kw_args], str)
     
    @@ -224,14 +223,14 @@
         """Test Signature.bind()."""
     
         def test_no_parameters(self):
    -        sig = pep362.Signature(pep362_fodder.no_args)
    +        sig = pep362.Signature(no_args)
             binding = sig.bind()
             self.assertEqual({}, binding)
             self.assertRaises(pep362.BindError, sig.bind, 42)
             self.assertRaises(pep362.BindError, sig.bind, a=0)
     
         def test_var_parameters(self):
    -        sig = pep362.Signature(pep362_fodder.var_args)
    +        sig = pep362.Signature(var_args)
             binding = sig.bind(0, 1, 2)
             self.assertEqual({'args':(0, 1, 2)}, binding)
             binding = sig.bind()
    @@ -239,7 +238,7 @@
             self.assertRaises(pep362.BindError, sig.bind, a=0)
     
         def test_var_kw_parameters(self):
    -        sig = pep362.Signature(pep362_fodder.var_kw_args)
    +        sig = pep362.Signature(var_kw_args)
             binding = sig.bind(a=0)
             self.assertEqual({'kwargs':{'a':0}}, binding)
             binding = sig.bind()
    @@ -247,7 +246,7 @@
             self.assertRaises(pep362.BindError, sig.bind, 42)
     
         def test_positional_parameters(self):
    -        sig = pep362.Signature(pep362_fodder.no_default_args)
    +        sig = pep362.Signature(no_default_args)
             binding = sig.bind(42)
             self.assertEqual({'a':42}, binding)
             binding = sig.bind(a=42)
    @@ -257,7 +256,7 @@
             self.assertRaises(pep362.BindError, sig.bind, b=0)
     
         def test_keyword_parameters(self):
    -        sig = pep362.Signature(pep362_fodder.default_args)
    +        sig = pep362.Signature(default_args)
             binding = sig.bind()
             self.assertEqual({'a':42}, binding)
             binding = sig.bind(0)
    @@ -268,73 +267,24 @@
             self.assertRaises(pep362.BindError, sig.bind, a=0, b=1)
             self.assertRaises(pep362.BindError, sig.bind, b=1)
     
    -    @version_specific(2)
    -    def test_tuple_parameter(self):
    -        sig = pep362.Signature(pep362_py2_fodder.tuple_args)
    -        arg = (1, ((2,),))
    -        binding = sig.bind(arg)
    -        self.assertEqual({'a':1, 'b':(2,)}, binding)
    -        self.assertRaises(pep362.BindError, sig.bind, (1,2,3))
    -        self.assertRaises(pep362.BindError, sig.bind, (1, 2))
    -
    -    @version_specific(2)
    -    def test_default_tuple_parameter(self):
    -        sig = pep362.Signature(pep362_py2_fodder.default_tuple_args)
    -        binding = sig.bind()
    -        self.assertEqual({'a':1, 'b':2}, binding)
    -        arg = (0, (1,))
    -        binding = sig.bind(arg)
    -        self.assertEqual({'a':0, 'b':1}, binding)
    -
    -    @version_specific(2)
    -    def test_py2_all_args(self):
    -        sig = pep362.Signature(pep362_py2_fodder.all_args)
    -        # a, (b, (c,)), d=0, (e, (f,))=(4, (5,)), *g, **h
    -        # name, position, has_default, default value
    -        expect = (('a', 0, False, None),
    -                    (('b', ('c',)), 1, False, None),
    -                    ('d', 2, True, 0),
    -                    (('e', ('f',)), 3, True, (4, (5,))))
    -        self.assertEqual(len(list(sig)), len(expect))
    -        for param, check in zip(list(sig), expect):
    -            name, pos, has_default, default_value = check
    -            self.assertEqual(param.name, name)
    -            self.assertEqual(param.position, pos)
    -            if has_default:
    -                self.assertEqual(param.default_value, default_value)
    -            else:
    -                self.assertTrue(not hasattr(param, 'default_value'))
    -            self.assertTrue(not param.keyword_only)
    -            self.assertTrue(not hasattr(param, 'annotation'))
    -        self.assertEqual(sig.var_args, 'g')
    -        self.assertEqual(sig.var_kw_args, 'h')
    -        self.assertEqual(len(sig.var_annotations), 0)
    -        binding = sig.bind(0, (1, (2,)), d=3, i=7)
    -        expected = {'a':0, 'b':1, 'c':2, 'd':3, 'e':4, 'f':5, 'g':tuple(),
    -                    'h':{'i':7}}
    -        self.assertEqual(expected, binding)
    -
    -    @version_specific(3)
         def test_keyword_only(self):
    -        sig = pep362.Signature(pep362_py3k_fodder.keyword_only)
    +        sig = pep362.Signature(keyword_only)
             binding = sig.bind(a=42)
             self.assertEqual(binding, {'a':42})
             self.assertRaises(pep362.BindError, sig.bind)
             self.assertRaises(pep362.BindError, sig.bind, 42)
     
    -    @version_specific(3)
         def test_keyword_only_default(self):
    -        sig = pep362.Signature(pep362_py3k_fodder.keyword_only_default)
    +        sig = pep362.Signature(keyword_only_default)
             binding = sig.bind()
             self.assertEqual(binding, {'a':42})
             binding = sig.bind(a=1)
             self.assertEqual(binding, {'a':1})
             self.assertRaises(pep362.BindError, sig.bind, 1)
     
    -    @version_specific(3)
         def test_all_py3k_args(self):
             # a:int, d=0, *args:int, g:int, h:int=8, **kwargs:int) -> int
    -        sig = pep362.Signature(pep362_py3k_fodder.all_args)
    +        sig = pep362.Signature(all_args)
             # name, position, kw only, has_default, default, has anno, anno
             expected = (('a', 0, False, False, None, True, int),
                         ('d', 1, False, True, 0, False, None),
    @@ -353,9 +303,9 @@
                 else:
                     self.assertTrue(not param.keyword_only)
                 if has_default:
    -                self.assertEqual(param.default_value, default)
    +                self.assertEqual(param.default, default)
                 else:
    -                self.assertTrue(not hasattr(param, 'default_value'))
    +                self.assertTrue(not hasattr(param, 'default'))
                 if has_anno:
                     self.assertEqual(param.annotation, anno)
                 else:
    @@ -373,7 +323,7 @@
     
         def test_too_many_arguments(self):
             # Only one argument should pair up with a parameter.
    -        sig = pep362.Signature(pep362_fodder.no_default_args)
    +        sig = pep362.Signature(no_default_args)
             self.assertRaises(pep362.BindError, sig.bind, 1, a=1)
     
     
    
    From python-checkins at python.org  Wed Mar 23 22:48:29 2011
    From: python-checkins at python.org (brett.cannon)
    Date: Wed, 23 Mar 2011 22:48:29 +0100
    Subject: [Python-checkins] peps: Denote my goals for Python 3.3.
    Message-ID: 
    
    http://hg.python.org/peps/rev/734f22e24fbb
    changeset:   3846:734f22e24fbb
    user:        Brett Cannon 
    date:        Wed Mar 23 14:48:16 2011 -0700
    summary:
      Denote my goals for Python 3.3.
    
    files:
      pep-0398.txt |  2 ++
      1 files changed, 2 insertions(+), 0 deletions(-)
    
    
    diff --git a/pep-0398.txt b/pep-0398.txt
    --- a/pep-0398.txt
    +++ b/pep-0398.txt
    @@ -59,6 +59,7 @@
     
     Candidate PEPs:
     
    +* PEP 362: Function Signature Object
     * PEP 380: Syntax for Delegating to a Subgenerator
     * PEP 382: Namespace Packages
     * PEP 393: Flexible String Representation
    @@ -73,6 +74,7 @@
     Other planned large-scale changes:
     
     * Addition of the "packaging" module, replacing "distutils".
    +* Implementing ``__import__`` using importlib.
     
     
     Copyright
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Wed Mar 23 23:05:16 2011
    From: python-checkins at python.org (antoine.pitrou)
    Date: Wed, 23 Mar 2011 23:05:16 +0100
    Subject: [Python-checkins] cpython (3.2): Issue #11653: fix -W with -j in
    	regrtest
    Message-ID: 
    
    http://hg.python.org/cpython/rev/9aa6097131ef
    changeset:   68883:9aa6097131ef
    branch:      3.2
    parent:      68876:df613f7b726a
    user:        Antoine Pitrou 
    date:        Wed Mar 23 23:01:49 2011 +0100
    summary:
      Issue #11653: fix -W with -j in regrtest
    
    files:
      Lib/test/regrtest.py |  21 ++++++++++++++-------
      1 files changed, 14 insertions(+), 7 deletions(-)
    
    
    diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
    --- a/Lib/test/regrtest.py
    +++ b/Lib/test/regrtest.py
    @@ -535,7 +535,7 @@
                     args_tuple = (
                         (test, verbose, quiet),
                         dict(huntrleaks=huntrleaks, use_resources=use_resources,
    -                        debug=debug)
    +                         debug=debug, rerun_failed=verbose3)
                     )
                     yield (test, args_tuple)
             pending = tests_and_args()
    @@ -609,11 +609,9 @@
                                   globals=globals(), locals=vars())
                 else:
                     try:
    -                    result = runtest(test, verbose, quiet, huntrleaks, debug)
    +                    result = runtest(test, verbose, quiet, huntrleaks, debug,
    +                                     rerun_failed=verbose3)
                         accumulate_result(test, result)
    -                    if verbose3 and result[0] == FAILED:
    -                        print("Re-running test {} in verbose mode".format(test))
    -                        runtest(test, True, quiet, huntrleaks, debug)
                     except KeyboardInterrupt:
                         interrupted = True
                         break
    @@ -758,7 +756,8 @@
         atexit.register(restore_stdout)
     
     def runtest(test, verbose, quiet,
    -            huntrleaks=False, debug=False, use_resources=None):
    +            huntrleaks=False, debug=False, use_resources=None,
    +            rerun_failed=False):
         """Run a single test.
     
         test -- the name of the test
    @@ -767,6 +766,7 @@
         test_times -- a list of (time, test_name) pairs
         huntrleaks -- run multiple times to test for leaks; requires a debug
                       build; a triple corresponding to -R's three arguments
    +    rerun_failed -- if true, re-run in verbose mode when failed
     
         Returns one of the test result constants:
             INTERRUPTED      KeyboardInterrupt when run under -j
    @@ -781,7 +781,14 @@
         if use_resources is not None:
             support.use_resources = use_resources
         try:
    -        return runtest_inner(test, verbose, quiet, huntrleaks, debug)
    +        result = runtest_inner(test, verbose, quiet, huntrleaks, debug)
    +        if result[0] == FAILED and rerun_failed:
    +            cleanup_test_droppings(test, verbose)
    +            sys.stdout.flush()
    +            sys.stderr.flush()
    +            print("Re-running test {} in verbose mode".format(test))
    +            runtest(test, True, quiet, huntrleaks, debug)
    +        return result
         finally:
             cleanup_test_droppings(test, verbose)
     
    
    -- 
    Repository URL: http://hg.python.org/cpython
    
    From python-checkins at python.org  Wed Mar 23 23:05:17 2011
    From: python-checkins at python.org (antoine.pitrou)
    Date: Wed, 23 Mar 2011 23:05:17 +0100
    Subject: [Python-checkins] cpython (3.2): Add NEWS entry for 9aa6097131ef
    Message-ID: 
    
    http://hg.python.org/cpython/rev/53f80427f105
    changeset:   68884:53f80427f105
    branch:      3.2
    user:        Antoine Pitrou 
    date:        Wed Mar 23 23:02:31 2011 +0100
    summary:
      Add NEWS entry for 9aa6097131ef
    
    files:
      Misc/NEWS |  2 ++
      1 files changed, 2 insertions(+), 0 deletions(-)
    
    
    diff --git a/Misc/NEWS b/Misc/NEWS
    --- a/Misc/NEWS
    +++ b/Misc/NEWS
    @@ -161,6 +161,8 @@
     Tests
     -----
     
    +- Issue #11653: fix -W with -j in regrtest.
    +
     - Issue #11577: improve test coverage of binhex.py. Patch by Arkady Koplyarov.
     
     - Issue #11578: added test for the timeit module.  Patch Michael Henry.
    
    -- 
    Repository URL: http://hg.python.org/cpython
    
    From python-checkins at python.org  Wed Mar 23 23:05:18 2011
    From: python-checkins at python.org (antoine.pitrou)
    Date: Wed, 23 Mar 2011 23:05:18 +0100
    Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #11653: fix
    	-W with -j in	regrtest.
    Message-ID: 
    
    http://hg.python.org/cpython/rev/c381b35e4f31
    changeset:   68885:c381b35e4f31
    parent:      68882:59127dcefd87
    parent:      68884:53f80427f105
    user:        Antoine Pitrou 
    date:        Wed Mar 23 23:05:07 2011 +0100
    summary:
      Issue #11653: fix -W with -j in regrtest.
    
    files:
      Lib/test/regrtest.py |  21 ++++++++++++++-------
      Misc/NEWS            |   2 ++
      2 files changed, 16 insertions(+), 7 deletions(-)
    
    
    diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
    --- a/Lib/test/regrtest.py
    +++ b/Lib/test/regrtest.py
    @@ -542,7 +542,7 @@
                     args_tuple = (
                         (test, verbose, quiet),
                         dict(huntrleaks=huntrleaks, use_resources=use_resources,
    -                        debug=debug)
    +                         debug=debug, rerun_failed=verbose3)
                     )
                     yield (test, args_tuple)
             pending = tests_and_args()
    @@ -616,11 +616,9 @@
                                   globals=globals(), locals=vars())
                 else:
                     try:
    -                    result = runtest(test, verbose, quiet, huntrleaks, debug)
    +                    result = runtest(test, verbose, quiet, huntrleaks, debug,
    +                                     rerun_failed=verbose3)
                         accumulate_result(test, result)
    -                    if verbose3 and result[0] == FAILED:
    -                        print("Re-running test {} in verbose mode".format(test))
    -                        runtest(test, True, quiet, huntrleaks, debug)
                     except KeyboardInterrupt:
                         interrupted = True
                         break
    @@ -765,7 +763,8 @@
         atexit.register(restore_stdout)
     
     def runtest(test, verbose, quiet,
    -            huntrleaks=False, debug=False, use_resources=None):
    +            huntrleaks=False, debug=False, use_resources=None,
    +            rerun_failed=False):
         """Run a single test.
     
         test -- the name of the test
    @@ -774,6 +773,7 @@
         test_times -- a list of (time, test_name) pairs
         huntrleaks -- run multiple times to test for leaks; requires a debug
                       build; a triple corresponding to -R's three arguments
    +    rerun_failed -- if true, re-run in verbose mode when failed
     
         Returns one of the test result constants:
             INTERRUPTED      KeyboardInterrupt when run under -j
    @@ -788,7 +788,14 @@
         if use_resources is not None:
             support.use_resources = use_resources
         try:
    -        return runtest_inner(test, verbose, quiet, huntrleaks, debug)
    +        result = runtest_inner(test, verbose, quiet, huntrleaks, debug)
    +        if result[0] == FAILED and rerun_failed:
    +            cleanup_test_droppings(test, verbose)
    +            sys.stdout.flush()
    +            sys.stderr.flush()
    +            print("Re-running test {} in verbose mode".format(test))
    +            runtest(test, True, quiet, huntrleaks, debug)
    +        return result
         finally:
             cleanup_test_droppings(test, verbose)
     
    diff --git a/Misc/NEWS b/Misc/NEWS
    --- a/Misc/NEWS
    +++ b/Misc/NEWS
    @@ -293,6 +293,8 @@
     Tests
     -----
     
    +- Issue #11653: fix -W with -j in regrtest.
    +
     - The email test suite now lives in the Lib/test/test_email package.  The test
       harness code has also been modernized to allow use of new unittest features.
     
    
    -- 
    Repository URL: http://hg.python.org/cpython
    
    From python-checkins at python.org  Thu Mar 24 00:07:23 2011
    From: python-checkins at python.org (brett.cannon)
    Date: Thu, 24 Mar 2011 00:07:23 +0100
    Subject: [Python-checkins] cpython: Have importlib use the repr of a module
    	name in error	messages.
    Message-ID: 
    
    http://hg.python.org/cpython/rev/9f9b7b656761
    changeset:   68886:9f9b7b656761
    user:        Brett Cannon 
    date:        Wed Mar 23 16:06:00 2011 -0700
    summary:
      Have importlib use the repr of a module name in error messages.
    
    This makes it obvious that an import failed because of some extraneous
    whitespace (e.g., a newline).
    
    This is a partial fix for issue #8754.
    
    files:
      Lib/importlib/_bootstrap.py |  2 +-
      Misc/NEWS                   |  2 ++
      2 files changed, 3 insertions(+), 1 deletions(-)
    
    
    diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py
    --- a/Lib/importlib/_bootstrap.py
    +++ b/Lib/importlib/_bootstrap.py
    @@ -758,7 +758,7 @@
     
     _IMPLICIT_META_PATH = [BuiltinImporter, FrozenImporter, _DefaultPathFinder]
     
    -_ERR_MSG = 'No module named {}'
    +_ERR_MSG = 'No module named {!r}'
     
     def _gcd_import(name, package=None, level=0):
         """Import and return the module based on its name, the package the call is
    diff --git a/Misc/NEWS b/Misc/NEWS
    --- a/Misc/NEWS
    +++ b/Misc/NEWS
    @@ -84,6 +84,8 @@
     Library
     -------
     
    +- Issue #8754: Have importlib use the repr of a module name in error messages.
    +
     - Issue #11591: Prevent "import site" from modifying sys.path when python
       was started with -S.
     
    
    -- 
    Repository URL: http://hg.python.org/cpython
    
    From python-checkins at python.org  Thu Mar 24 00:16:06 2011
    From: python-checkins at python.org (brett.cannon)
    Date: Thu, 24 Mar 2011 00:16:06 +0100
    Subject: [Python-checkins] cpython: Make importlib compatible with
    	__import__ by "fixing"	code.co_filename
    Message-ID: 
    
    http://hg.python.org/cpython/rev/5deb2094f033
    changeset:   68887:5deb2094f033
    user:        Brett Cannon 
    date:        Wed Mar 23 16:14:42 2011 -0700
    summary:
      Make importlib compatible with __import__ by "fixing" code.co_filename
    paths.
    
    __import__ does a little trick when importing from bytecode by
    back-patching the co_filename paths to point to the file location
    where the code object was loaded from, *not* where the code object was
    originally created. This allows co_filename to point to a valid path.
    Problem is that co_filename is immutable from Python, so a private
    function -- imp._fix_co_filename() -- had to be introduced in order to
    get things working properly. Originally the plan was to add a file
    argument to marshal.loads(), but that failed as the algorithm used by
    __import__ is not fully recursive as one might expect, so to be fully
    backwards-compatible the code used by __import__ needed to be exposed.
    
    This closes issue #6811 by taking a different approach than outlined
    in the issue.
    
    files:
      Lib/importlib/_bootstrap.py |   1 +
      Misc/NEWS                   |   4 +++
      Python/import.c             |  27 +++++++++++++++++++++++++
      3 files changed, 32 insertions(+), 0 deletions(-)
    
    
    diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py
    --- a/Lib/importlib/_bootstrap.py
    +++ b/Lib/importlib/_bootstrap.py
    @@ -404,6 +404,7 @@
                         else:
                             found = marshal.loads(bytes_data)
                             if isinstance(found, code_type):
    +                            imp._fix_co_filename(found, source_path)
                                 return found
                             else:
                                 msg = "Non-code object in {}"
    diff --git a/Misc/NEWS b/Misc/NEWS
    --- a/Misc/NEWS
    +++ b/Misc/NEWS
    @@ -84,6 +84,10 @@
     Library
     -------
     
    +- Issue #6811: Allow importlib to change a code object's co_filename attribute
    +  to match the path to where the source code currently is, not where the code
    +  object originally came from.
    +
     - Issue #8754: Have importlib use the repr of a module name in error messages.
     
     - Issue #11591: Prevent "import site" from modifying sys.path when python
    diff --git a/Python/import.c b/Python/import.c
    --- a/Python/import.c
    +++ b/Python/import.c
    @@ -1374,6 +1374,32 @@
         Py_DECREF(oldname);
     }
     
    +static PyObject *
    +imp_fix_co_filename(PyObject *self, PyObject *args)
    +{
    +    PyObject *co;
    +    PyObject *file_path;
    +
    +    if (!PyArg_ParseTuple(args, "OO:_fix_co_filename", &co, &file_path))
    +        return NULL;
    +
    +    if (!PyCode_Check(co)) {
    +        PyErr_SetString(PyExc_TypeError,
    +                        "first argument must be a code object");
    +        return NULL;
    +    }
    +
    +    if (!PyUnicode_Check(file_path)) {
    +        PyErr_SetString(PyExc_TypeError,
    +                        "second argument must be a string");
    +        return NULL;
    +    }
    +
    +    update_compiled_module((PyCodeObject*)co, file_path);
    +
    +    Py_RETURN_NONE;
    +}
    +
     /* Load a source module from a given file and return its module
        object WITH INCREMENTED REFERENCE COUNT.  If there's a matching
        byte-compiled file, use that instead. */
    @@ -3976,6 +4002,7 @@
     #endif
         {"load_package",            imp_load_package,       METH_VARARGS},
         {"load_source",             imp_load_source,        METH_VARARGS},
    +    {"_fix_co_filename",        imp_fix_co_filename,    METH_VARARGS},
         {NULL,                      NULL}           /* sentinel */
     };
     
    
    -- 
    Repository URL: http://hg.python.org/cpython
    
    From python-checkins at python.org  Thu Mar 24 02:12:33 2011
    From: python-checkins at python.org (brett.cannon)
    Date: Thu, 24 Mar 2011 02:12:33 +0100
    Subject: [Python-checkins] cpython: Remove a stale comment.
    Message-ID: 
    
    http://hg.python.org/cpython/rev/05e1ca25f7dc
    changeset:   68888:05e1ca25f7dc
    user:        Brett Cannon 
    date:        Wed Mar 23 18:12:24 2011 -0700
    summary:
      Remove a stale comment.
    
    files:
      Lib/importlib/test/regrtest.py |  7 -------
      1 files changed, 0 insertions(+), 7 deletions(-)
    
    
    diff --git a/Lib/importlib/test/regrtest.py b/Lib/importlib/test/regrtest.py
    --- a/Lib/importlib/test/regrtest.py
    +++ b/Lib/importlib/test/regrtest.py
    @@ -5,13 +5,6 @@
     Otherwise all command-line options valid for test.regrtest are also valid for
     this script.
     
    -XXX FAILING
    -  * test_import
    -    - test_incorrect_code_name
    -        file name differing between __file__ and co_filename (r68360 on trunk)
    -    - test_import_by_filename
    -        exception for trying to import by file name does not match
    -
     """
     import importlib
     import sys
    
    -- 
    Repository URL: http://hg.python.org/cpython
    
    From python-checkins at python.org  Thu Mar 24 03:08:42 2011
    From: python-checkins at python.org (r.david.murray)
    Date: Thu, 24 Mar 2011 03:08:42 +0100
    Subject: [Python-checkins] peps: Add email6 to the list of intended changes.
    Message-ID: 
    
    http://hg.python.org/peps/rev/6a96e377e5fa
    changeset:   3847:6a96e377e5fa
    user:        R David Murray 
    date:        Wed Mar 23 22:08:30 2011 -0400
    summary:
      Add email6 to the list of intended changes.
    
    files:
      pep-0398.txt |  5 +++--
      1 files changed, 3 insertions(+), 2 deletions(-)
    
    
    diff --git a/pep-0398.txt b/pep-0398.txt
    --- a/pep-0398.txt
    +++ b/pep-0398.txt
    @@ -73,8 +73,9 @@
     
     Other planned large-scale changes:
     
    -* Addition of the "packaging" module, replacing "distutils".
    -* Implementing ``__import__`` using importlib.
    +* Addition of the "packaging" module, replacing "distutils"
    +* Implementing ``__import__`` using importlib
    +* Email version 6
     
     
     Copyright
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Thu Mar 24 04:34:01 2011
    From: python-checkins at python.org (raymond.hettinger)
    Date: Thu, 24 Mar 2011 04:34:01 +0100
    Subject: [Python-checkins] cpython: Add tests for _source to importable and
    	exec'able.
    Message-ID: 
    
    http://hg.python.org/cpython/rev/f09f7ab40ce6
    changeset:   68889:f09f7ab40ce6
    user:        Raymond Hettinger 
    date:        Wed Mar 23 20:33:30 2011 -0700
    summary:
      Add tests for _source to importable and exec'able.
    Move __name__ back out of the template; the responsibility
    for setting __name__ lies with the caller (which knows
    something about the new namespace), not with the class
    definition (which doesn't know about the namespace it is
    being built in).
    
    files:
      Lib/collections/__init__.py  |   7 ++--
      Lib/test/test_collections.py |  34 ++++++++++++++++++++++++
      2 files changed, 37 insertions(+), 4 deletions(-)
    
    
    diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py
    --- a/Lib/collections/__init__.py
    +++ b/Lib/collections/__init__.py
    @@ -234,8 +234,6 @@
     ################################################################################
     
     _class_template = '''\
    -__name__ = 'namedtuple_{typename}'
    -
     from builtins import property as _property, tuple as _tuple
     from operator import itemgetter as _itemgetter
     from collections import OrderedDict
    @@ -353,8 +351,9 @@
                                    for index, name in enumerate(field_names))
         )
     
    -    # Execute the class definition string in a temporary namespace
    -    namespace = {}
    +    # Execute the template string in a temporary namespace and
    +    # support tracing utilities by setting a value for frame.f_globals['__name__']
    +    namespace = dict(__name__='namedtuple_%s' % typename)
         try:
             exec(class_definition, namespace)
         except SyntaxError as e:
    diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py
    --- a/Lib/test/test_collections.py
    +++ b/Lib/test/test_collections.py
    @@ -1,6 +1,7 @@
     """Unit tests for collections.py."""
     
     import unittest, doctest, operator
    +from test.support import TESTFN, forget, unlink
     import inspect
     from test import support
     from collections import namedtuple, Counter, OrderedDict, _count_elements
    @@ -327,6 +328,39 @@
                 pass
             self.assertEqual(repr(B(1)), 'B(x=1)')
     
    +    def test_source(self):
    +        # verify that _source can be run through exec()
    +        tmp = namedtuple('Color', 'red green blue')
    +        self.assertNotIn('Color', globals())
    +        exec(tmp._source, globals())
    +        self.assertIn('Color', globals())
    +        c = Color(10, 20, 30)
    +        self.assertEqual((c.red, c.green, c.blue), (10, 20, 30))
    +        self.assertEqual(Color._fields, ('red', 'green', 'blue'))
    +
    +    def test_source_importable(self):
    +        tmp = namedtuple('Color', 'hue sat val')
    +
    +        compiled = None
    +        source = TESTFN + '.py'
    +        with open(source, 'w') as f:
    +            print(tmp._source, file=f)
    +
    +        if TESTFN in sys.modules:
    +            del sys.modules[TESTFN]
    +        try:
    +            mod = __import__(TESTFN)
    +            compiled = mod.__file__
    +            Color = mod.Color
    +            c = Color(10, 20, 30)
    +            self.assertEqual((c.hue, c.sat, c.val), (10, 20, 30))
    +            self.assertEqual(Color._fields, ('hue', 'sat', 'val'))
    +        finally:
    +            forget(TESTFN)
    +            if compiled:
    +                unlink(compiled)
    +            unlink(source)
    +
     
     ################################################################################
     ### Abstract Base Classes
    
    -- 
    Repository URL: http://hg.python.org/cpython
    
    From python-checkins at python.org  Thu Mar 24 04:47:51 2011
    From: python-checkins at python.org (senthil.kumaran)
    Date: Thu, 24 Mar 2011 04:47:51 +0100
    Subject: [Python-checkins] cpython (3.2): issue10883 - Silence some ftp
    	related ResourceWarnings	in test_urllib2net.
    Message-ID: 
    
    http://hg.python.org/cpython/rev/2e5aff2a9e54
    changeset:   68890:2e5aff2a9e54
    branch:      3.2
    parent:      68884:53f80427f105
    user:        Senthil Kumaran 
    date:        Thu Mar 24 11:46:19 2011 +0800
    summary:
      issue10883 - Silence some ftp related ResourceWarnings in test_urllib2net. Patch by Nadeem Vawda.
    
    files:
      Lib/urllib/request.py |  10 +++++++---
      1 files changed, 7 insertions(+), 3 deletions(-)
    
    
    diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py
    --- a/Lib/urllib/request.py
    +++ b/Lib/urllib/request.py
    @@ -2136,7 +2136,7 @@
                 # Try to retrieve as a file
                 try:
                     cmd = 'RETR ' + file
    -                conn = self.ftp.ntransfercmd(cmd)
    +                conn, retrlen = self.ftp.ntransfercmd(cmd)
                 except ftplib.error_perm as reason:
                     if str(reason)[:3] != '550':
                         raise URLError('ftp error', reason).with_traceback(
    @@ -2157,10 +2157,14 @@
                     cmd = 'LIST ' + file
                 else:
                     cmd = 'LIST'
    -            conn = self.ftp.ntransfercmd(cmd)
    +            conn, retrlen = self.ftp.ntransfercmd(cmd)
             self.busy = 1
    +
    +        ftpobj = addclosehook(conn.makefile('rb'), self.endtransfer)
    +        conn.close()
             # Pass back both a suitably decorated object and a retrieval length
    -        return (addclosehook(conn[0].makefile('rb'), self.endtransfer), conn[1])
    +        return (ftpobj, retrlen)
    +
         def endtransfer(self):
             if not self.busy:
                 return
    
    -- 
    Repository URL: http://hg.python.org/cpython
    
    From python-checkins at python.org  Thu Mar 24 04:47:53 2011
    From: python-checkins at python.org (senthil.kumaran)
    Date: Thu, 24 Mar 2011 04:47:53 +0100
    Subject: [Python-checkins] cpython (merge 3.2 -> default): issue10883 -
    	Silence some ftp related	ResourceWarnings in test_urllib2net.
    Message-ID: 
    
    http://hg.python.org/cpython/rev/0937b3618b86
    changeset:   68891:0937b3618b86
    parent:      68889:f09f7ab40ce6
    parent:      68890:2e5aff2a9e54
    user:        Senthil Kumaran 
    date:        Thu Mar 24 11:47:29 2011 +0800
    summary:
      issue10883 - Silence some ftp related ResourceWarnings in test_urllib2net. Patch by Nadeem Vawda
    
    files:
      Lib/urllib/request.py |  10 +++++++---
      1 files changed, 7 insertions(+), 3 deletions(-)
    
    
    diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py
    --- a/Lib/urllib/request.py
    +++ b/Lib/urllib/request.py
    @@ -2136,7 +2136,7 @@
                 # Try to retrieve as a file
                 try:
                     cmd = 'RETR ' + file
    -                conn = self.ftp.ntransfercmd(cmd)
    +                conn, retrlen = self.ftp.ntransfercmd(cmd)
                 except ftplib.error_perm as reason:
                     if str(reason)[:3] != '550':
                         raise URLError('ftp error', reason).with_traceback(
    @@ -2157,10 +2157,14 @@
                     cmd = 'LIST ' + file
                 else:
                     cmd = 'LIST'
    -            conn = self.ftp.ntransfercmd(cmd)
    +            conn, retrlen = self.ftp.ntransfercmd(cmd)
             self.busy = 1
    +
    +        ftpobj = addclosehook(conn.makefile('rb'), self.endtransfer)
    +        conn.close()
             # Pass back both a suitably decorated object and a retrieval length
    -        return (addclosehook(conn[0].makefile('rb'), self.endtransfer), conn[1])
    +        return (ftpobj, retrlen)
    +
         def endtransfer(self):
             if not self.busy:
                 return
    
    -- 
    Repository URL: http://hg.python.org/cpython
    
    From solipsis at pitrou.net  Thu Mar 24 05:07:16 2011
    From: solipsis at pitrou.net (solipsis at pitrou.net)
    Date: Thu, 24 Mar 2011 05:07:16 +0100
    Subject: [Python-checkins] Daily reference leaks (05e1ca25f7dc): sum=0
    Message-ID: 
    
    results for 05e1ca25f7dc on branch "default"
    --------------------------------------------
    
    
    
    Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/refloge8cQRq', '-x']
    
    From python-checkins at python.org  Thu Mar 24 08:08:52 2011
    From: python-checkins at python.org (martin.v.loewis)
    Date: Thu, 24 Mar 2011 08:08:52 +0100 (CET)
    Subject: [Python-checkins] r88797 - in tracker/instances/python-dev:
    	extensions/create_patch.py html/issue.item.html schema.py
    Message-ID: <3PwJlS35DCz7Ljr@mail.python.org>
    
    Author: martin.v.loewis
    Date: Thu Mar 24 08:08:52 2011
    New Revision: 88797
    
    Log:
    Support branch on hgrepos.
    
    
    Modified:
       tracker/instances/python-dev/extensions/create_patch.py
       tracker/instances/python-dev/html/issue.item.html
       tracker/instances/python-dev/schema.py
    
    Modified: tracker/instances/python-dev/extensions/create_patch.py
    ==============================================================================
    --- tracker/instances/python-dev/extensions/create_patch.py	(original)
    +++ tracker/instances/python-dev/extensions/create_patch.py	Thu Mar 24 08:08:52 2011
    @@ -4,7 +4,7 @@
     class NotChanged(ValueError):
         pass
     
    -def download_patch(source, lastrev):
    +def download_patch(source, lastrev, patchbranch):
         from mercurial import hg, ui, localrepo, commands, bundlerepo
         UI = ui.ui()
         bundle = tempfile.mktemp(dir="/var/tmp")
    @@ -15,10 +15,12 @@
             repo0.ui.quiet=True
             repo0.ui.pushbuffer()
             commands.pull(repo0.ui, repo0, quiet=True)
    -        commands.update(repo0.ui, repo0)
             repo0.ui.popbuffer() # discard all pull output
    +        # find out what the head revision of the given branch is
             repo0.ui.pushbuffer()
    -        if commands.incoming(repo0.ui, repo0, source=source, branch=['default'], bundle=bundle, force=False) != 0:
    +        head = repo0.ui.popbuffer().strip()
    +        repo0.ui.pushbuffer()
    +        if commands.incoming(repo0.ui, repo0, source=source, branch=[patchbranch], bundle=bundle, force=False) != 0:
                 raise ValueError, "Repository contains no changes"
             rhead = repo0.ui.popbuffer()
             if rhead:
    @@ -28,7 +30,8 @@
                 raise NotChanged
             repo=bundlerepo.bundlerepository(UI, ".", bundle)
             repo.ui.pushbuffer()
    -        commands.diff(repo.ui, repo, rev=['ancestor(.,default)', 'default'])
    +        old = 'max(p1(min(outgoing() and branch(%s))) or p2(max(merge() and outgoing() and branch(%s))))' % (patchbranch, patchbranch)
    +        commands.diff(repo.ui, repo, rev=[old, patchbranch])
             result = repo.ui.popbuffer()
         finally:
             os.chdir(cwd)
    @@ -53,8 +56,11 @@
                 self.client.error_message.append('unknown hgrepo url')
                 return
             lastrev = db.hgrepo.get(repo, 'lastrev')
    +        branch = db.hgrepo.get(repo, 'patchbranch')
    +        if not branch:
    +            branch = 'default'
             try:
    -            diff, head = download_patch(url, lastrev)
    +            diff, head = download_patch(url, lastrev, branch)
             except NotChanged:
                 self.client.error_message.append('%s.diff is already available' % lastrev)
                 return
    
    Modified: tracker/instances/python-dev/html/issue.item.html
    ==============================================================================
    --- tracker/instances/python-dev/html/issue.item.html	(original)
    +++ tracker/instances/python-dev/html/issue.item.html	Thu Mar 24 08:08:52 2011
    @@ -269,11 +269,27 @@
     
     
     
    - 
    + 
    +  
    +  
    
    From python-checkins at python.org  Thu Mar 24 09:11:00 2011
    From: python-checkins at python.org (georg.brandl)
    Date: Thu, 24 Mar 2011 09:11:00 +0100
    Subject: [Python-checkins] peps: Fix mentions of svn.python.org and remove
    	unneeded files.
    Message-ID: 
    
    http://hg.python.org/peps/rev/6ed64d05aec6
    changeset:   3848:6ed64d05aec6
    user:        Georg Brandl 
    date:        Thu Mar 24 09:10:55 2011 +0100
    summary:
      Fix mentions of svn.python.org and remove unneeded files.
    
    files:
      .hgsvnexternals   |   2 -
      Makefile          |   2 +-
      pep0/constants.py |   6 +-
      pep2html.py       |   2 +-
      pep2pyramid.py    |   2 +-
      propcheck.py      |  75 -----------------------------------
      6 files changed, 6 insertions(+), 83 deletions(-)
    
    
    diff --git a/.hgsvnexternals b/.hgsvnexternals
    deleted file mode 100644
    --- a/.hgsvnexternals
    +++ /dev/null
    @@ -1,2 +0,0 @@
    -[.]
    - docutils -r5461 svn://svn.berlios.de/docutils/trunk/docutils/docutils
    diff --git a/Makefile b/Makefile
    --- a/Makefile
    +++ b/Makefile
    @@ -29,7 +29,7 @@
     	-rm *.html
     
     update:
    -	svn update
    +	hg pull --update http://hg.python.org/peps
     
     propcheck:
     	$(PYTHON) propcheck.py
    diff --git a/pep0/constants.py b/pep0/constants.py
    --- a/pep0/constants.py
    +++ b/pep0/constants.py
    @@ -17,13 +17,13 @@
     intro = u"""
         The PEP contains the index of all Python Enhancement Proposals,
         known as PEPs.  PEP numbers are assigned by the PEP Editor, and
    -    once assigned are never changed.  The SVN history[1] of the PEP
    -    texts represent their historical record.
    +    once assigned are never changed.  The Mercurial history[1] of
    +    the PEP texts represent their historical record.
     """
     
     references = u"""
         [1] View PEP history online
    -        http://svn.python.org/projects/peps/trunk/
    +        http://hg.python.org/peps/
     """
     
     footer = u"""
    diff --git a/pep2html.py b/pep2html.py
    --- a/pep2html.py
    +++ b/pep2html.py
    @@ -49,7 +49,7 @@
     PROGRAM = sys.argv[0]
     RFCURL = 'http://www.faqs.org/rfcs/rfc%d.html'
     PEPURL = 'pep-%04d.html'
    -PEPCVSURL = ('http://svn.python.org/view/peps/trunk/pep-%04d.txt')
    +PEPCVSURL = ('http://hg.python.org/peps/file/tip/pep-%04d.txt')
     PEPDIRRUL = 'http://www.python.org/peps/'
     
     
    diff --git a/pep2pyramid.py b/pep2pyramid.py
    --- a/pep2pyramid.py
    +++ b/pep2pyramid.py
    @@ -43,7 +43,7 @@
     SERVER_DEST_DIR_BASE = (
         '/data/ftp.python.org/pub/beta.python.org/build/data/dev/peps')
     RFCURL = 'http://www.faqs.org/rfcs/rfc%d.html'
    -PEPCVSURL = 'http://svn.python.org/view/*checkout*/peps/trunk/pep-%04d.txt'
    +PEPCVSURL = 'http://hg.python.org/peps/file/tip/pep-%04d.txt'
     PEPDIRURL = '/dev/peps/'
     PEPURL = PEPDIRURL + 'pep-%04d'
     PEPANCHOR = '%i'
    diff --git a/propcheck.py b/propcheck.py
    deleted file mode 100755
    --- a/propcheck.py
    +++ /dev/null
    @@ -1,75 +0,0 @@
    -#!/usr/bin/env python
    -"""Perform an integrity check upon all PEPs to make sure the needed svn
    -properties are set."""
    -
    -import glob
    -import pdb
    -import subprocess
    -from xml.etree import ElementTree
    -
    -PROPS = {'svn:eol-style': "native", 'svn:keywords': "Author Date Id Revision"}
    -
    -
    -def get_props():
    -    """Return the properties set on pep-*.txt files as an ElementTree instance.
    -
    -    Files with no properties set will not be contained in the returned data.
    -
    -    """
    -    cmd = 'svn proplist --xml pep-*.txt'
    -    proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE)
    -    xml_results = proc.communicate()[0]
    -    if proc.returncode:
    -        raise subprocess.CalledProcessError("%s returned %d" %
    -                                            (cmd, proc.returncode))
    -    return ElementTree.fromstring(xml_results)
    -
    -
    -def missing_props(props):
    -    """Figure out what properties are missing on what PEPs, returning a sequence
    -    of (path, [missing_props]) pairs.
    -
    -    For the set properties (as calculated by get_props()), see which PEPs are
    -    lacking any properties. For the PEPs that are not even listed in the set
    -    properties, assume they are missing all needed properties.
    -
    -    """
    -    problems = []
    -    missing_files = set(glob.glob('pep-*.txt'))
    -    missing_files.remove('pep-0000.txt')
    -    for target in props:
    -        assert target.tag == 'target'
    -        needs = PROPS.keys()
    -        path = target.attrib['path']
    -        missing_files.remove(path)
    -        for property in target.getchildren():
    -            assert property.tag == 'property'
    -            try:
    -                needs.remove(property.attrib['name'])
    -            except ValueError:
    -                pass
    -        if needs:
    -            problems.append([path, needs])
    -    for path in missing_files:
    -        problems.append([path, PROPS.keys()])
    -    return problems
    -
    -
    -def fix_props(missing_props):
    -    """Fix the missing properties."""
    -    for path, missing in missing_props:
    -        print "For %s, setting %s" % (path, missing)
    -        for problem in missing:
    -            cmd = 'svn propset %s "%s" %s' % (problem, PROPS[problem], path)
    -            subprocess.check_call(cmd, shell=True)
    -
    -
    -def main():
    -    props = get_props()
    -    need_fixing = missing_props(props)
    -    fix_props(need_fixing)
    -
    -
    -
    -if __name__ == '__main__':
    -    main()
    
    -- 
    Repository URL: http://hg.python.org/peps
    
    From python-checkins at python.org  Thu Mar 24 09:45:07 2011
    From: python-checkins at python.org (martin.v.loewis)
    Date: Thu, 24 Mar 2011 09:45:07 +0100 (CET)
    Subject: [Python-checkins] r88800 -
    	tracker/instances/python-dev/html/user.item.html
    Message-ID: <3PwLtW4FH4z7LjY@mail.python.org>
    
    Author: martin.v.loewis
    Date: Thu Mar 24 09:45:07 2011
    New Revision: 88800
    
    Log:
    Fix form name for calendar popup.
    
    
    Modified:
       tracker/instances/python-dev/html/user.item.html
    
    Modified: tracker/instances/python-dev/html/user.item.html
    ==============================================================================
    --- tracker/instances/python-dev/html/user.item.html	(original)
    +++ tracker/instances/python-dev/html/user.item.html	Thu Mar 24 09:45:07 2011
    @@ -42,6 +42,7 @@
     
    - + on: + + + +
    From python-checkins at python.org Thu Mar 24 15:27:16 2011 From: python-checkins at python.org (senthil.kumaran) Date: Thu, 24 Mar 2011 15:27:16 +0100 Subject: [Python-checkins] cpython: issue11236 getpass.getpass to respond ctrl-c or ctrl-z Message-ID: http://hg.python.org/cpython/rev/c177faafec51 changeset: 68892:c177faafec51 user: Senthil Kumaran date: Thu Mar 24 22:27:01 2011 +0800 summary: issue11236 getpass.getpass to respond ctrl-c or ctrl-z files: Lib/getpass.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Lib/getpass.py b/Lib/getpass.py --- a/Lib/getpass.py +++ b/Lib/getpass.py @@ -62,7 +62,7 @@ try: old = termios.tcgetattr(fd) # a copy to save new = old[:] - new[3] &= ~(termios.ECHO|termios.ISIG) # 3 == 'lflags' + new[3] &= ~termios.ECHO # 3 == 'lflags' tcsetattr_flags = termios.TCSAFLUSH if hasattr(termios, 'TCSASOFT'): tcsetattr_flags |= termios.TCSASOFT -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 24 15:49:10 2011 From: python-checkins at python.org (antoine.pitrou) Date: Thu, 24 Mar 2011 15:49:10 +0100 Subject: [Python-checkins] cpython (3.2): Add tests for the atexit hook in concurrent.futures (part of #11635) Message-ID: http://hg.python.org/cpython/rev/76a898433a02 changeset: 68893:76a898433a02 branch: 3.2 parent: 68890:2e5aff2a9e54 user: Antoine Pitrou date: Thu Mar 24 15:47:39 2011 +0100 summary: Add tests for the atexit hook in concurrent.futures (part of #11635) files: Lib/test/test_concurrent_futures.py | 55 ++++++++++++---- 1 files changed, 40 insertions(+), 15 deletions(-) diff --git a/Lib/test/test_concurrent_futures.py b/Lib/test/test_concurrent_futures.py --- a/Lib/test/test_concurrent_futures.py +++ b/Lib/test/test_concurrent_futures.py @@ -9,6 +9,9 @@ # without thread support. test.support.import_module('threading') +from test.script_helper import assert_python_ok + +import sys import threading import time import unittest @@ -43,9 +46,30 @@ time.sleep(t) raise Exception('this is an exception') +def sleep_and_print(t, msg): + time.sleep(t) + print(msg) + sys.stdout.flush() + class ExecutorMixin: worker_count = 5 + + def setUp(self): + self.t1 = time.time() + try: + self.executor = self.executor_type(max_workers=self.worker_count) + except NotImplementedError as e: + self.skipTest(str(e)) + self._prime_executor() + + def tearDown(self): + self.executor.shutdown(wait=True) + dt = time.time() - self.t1 + if test.support.verbose: + print("%.2fs" % dt, end=' ') + self.assertLess(dt, 60, "synchronization issue: test lasted too long") + def _prime_executor(self): # Make sure that the executor is ready to do work before running the # tests. This should reduce the probability of timeouts in the tests. @@ -57,24 +81,11 @@ class ThreadPoolMixin(ExecutorMixin): - def setUp(self): - self.executor = futures.ThreadPoolExecutor(max_workers=5) - self._prime_executor() - - def tearDown(self): - self.executor.shutdown(wait=True) + executor_type = futures.ThreadPoolExecutor class ProcessPoolMixin(ExecutorMixin): - def setUp(self): - try: - self.executor = futures.ProcessPoolExecutor(max_workers=5) - except NotImplementedError as e: - self.skipTest(str(e)) - self._prime_executor() - - def tearDown(self): - self.executor.shutdown(wait=True) + executor_type = futures.ProcessPoolExecutor class ExecutorShutdownTest(unittest.TestCase): @@ -84,6 +95,20 @@ self.executor.submit, pow, 2, 5) + def test_interpreter_shutdown(self): + # Test the atexit hook for shutdown of worker threads and processes + rc, out, err = assert_python_ok('-c', """if 1: + from concurrent.futures import {executor_type} + from time import sleep + from test.test_concurrent_futures import sleep_and_print + t = {executor_type}(5) + t.submit(sleep_and_print, 1.0, "apple") + """.format(executor_type=self.executor_type.__name__)) + # Errors in atexit hooks don't change the process exit code, check + # stderr manually. + self.assertFalse(err) + self.assertEqual(out.strip(), b"apple") + class ThreadPoolShutdownTest(ThreadPoolMixin, ExecutorShutdownTest): def _prime_executor(self): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 24 15:49:12 2011 From: python-checkins at python.org (antoine.pitrou) Date: Thu, 24 Mar 2011 15:49:12 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Add tests for the atexit hook in concurrent.futures (part of #11635) Message-ID: http://hg.python.org/cpython/rev/d6bbde982c1c changeset: 68894:d6bbde982c1c parent: 68892:c177faafec51 parent: 68893:76a898433a02 user: Antoine Pitrou date: Thu Mar 24 15:48:26 2011 +0100 summary: Add tests for the atexit hook in concurrent.futures (part of #11635) files: Lib/test/test_concurrent_futures.py | 55 ++++++++++++---- 1 files changed, 40 insertions(+), 15 deletions(-) diff --git a/Lib/test/test_concurrent_futures.py b/Lib/test/test_concurrent_futures.py --- a/Lib/test/test_concurrent_futures.py +++ b/Lib/test/test_concurrent_futures.py @@ -9,6 +9,9 @@ # without thread support. test.support.import_module('threading') +from test.script_helper import assert_python_ok + +import sys import threading import time import unittest @@ -43,9 +46,30 @@ time.sleep(t) raise Exception('this is an exception') +def sleep_and_print(t, msg): + time.sleep(t) + print(msg) + sys.stdout.flush() + class ExecutorMixin: worker_count = 5 + + def setUp(self): + self.t1 = time.time() + try: + self.executor = self.executor_type(max_workers=self.worker_count) + except NotImplementedError as e: + self.skipTest(str(e)) + self._prime_executor() + + def tearDown(self): + self.executor.shutdown(wait=True) + dt = time.time() - self.t1 + if test.support.verbose: + print("%.2fs" % dt, end=' ') + self.assertLess(dt, 60, "synchronization issue: test lasted too long") + def _prime_executor(self): # Make sure that the executor is ready to do work before running the # tests. This should reduce the probability of timeouts in the tests. @@ -57,24 +81,11 @@ class ThreadPoolMixin(ExecutorMixin): - def setUp(self): - self.executor = futures.ThreadPoolExecutor(max_workers=5) - self._prime_executor() - - def tearDown(self): - self.executor.shutdown(wait=True) + executor_type = futures.ThreadPoolExecutor class ProcessPoolMixin(ExecutorMixin): - def setUp(self): - try: - self.executor = futures.ProcessPoolExecutor(max_workers=5) - except NotImplementedError as e: - self.skipTest(str(e)) - self._prime_executor() - - def tearDown(self): - self.executor.shutdown(wait=True) + executor_type = futures.ProcessPoolExecutor class ExecutorShutdownTest(unittest.TestCase): @@ -84,6 +95,20 @@ self.executor.submit, pow, 2, 5) + def test_interpreter_shutdown(self): + # Test the atexit hook for shutdown of worker threads and processes + rc, out, err = assert_python_ok('-c', """if 1: + from concurrent.futures import {executor_type} + from time import sleep + from test.test_concurrent_futures import sleep_and_print + t = {executor_type}(5) + t.submit(sleep_and_print, 1.0, "apple") + """.format(executor_type=self.executor_type.__name__)) + # Errors in atexit hooks don't change the process exit code, check + # stderr manually. + self.assertFalse(err) + self.assertEqual(out.strip(), b"apple") + class ThreadPoolShutdownTest(ThreadPoolMixin, ExecutorShutdownTest): def _prime_executor(self): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 24 16:39:49 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 24 Mar 2011 16:39:49 +0100 Subject: [Python-checkins] cpython (3.1): test_multiprocessing: use assertLess() to see the timeout on error Message-ID: http://hg.python.org/cpython/rev/e53097288c8c changeset: 68895:e53097288c8c branch: 3.1 parent: 68875:45cc298d40eb user: Victor Stinner date: Thu Mar 24 16:24:07 2011 +0100 summary: test_multiprocessing: use assertLess() to see the timeout on error files: Lib/test/test_multiprocessing.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -1084,7 +1084,7 @@ self.pool.terminate() join = TimingWrapper(self.pool.join) join() - self.assertTrue(join.elapsed < 0.2) + self.assertLess(join.elapsed, 0.2) # # Test that manager has expected number of shared objects left # -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 24 16:39:50 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 24 Mar 2011 16:39:50 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge 3.1 Message-ID: http://hg.python.org/cpython/rev/7a767910db5d changeset: 68896:7a767910db5d branch: 3.2 parent: 68893:76a898433a02 parent: 68895:e53097288c8c user: Victor Stinner date: Thu Mar 24 16:39:07 2011 +0100 summary: Merge 3.1 files: Lib/test/test_multiprocessing.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -1088,7 +1088,7 @@ self.pool.terminate() join = TimingWrapper(self.pool.join) join() - self.assertTrue(join.elapsed < 0.5) + self.assertLess(join.elapsed, 0.5) def raising(): raise KeyError("key") -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 24 16:39:51 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 24 Mar 2011 16:39:51 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2 Message-ID: http://hg.python.org/cpython/rev/d944431a2b04 changeset: 68897:d944431a2b04 parent: 68894:d6bbde982c1c parent: 68896:7a767910db5d user: Victor Stinner date: Thu Mar 24 16:39:34 2011 +0100 summary: Merge 3.2 files: Lib/test/test_multiprocessing.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -1100,7 +1100,7 @@ self.pool.terminate() join = TimingWrapper(self.pool.join) join() - self.assertTrue(join.elapsed < 0.5) + self.assertLess(join.elapsed, 0.5) def raising(): raise KeyError("key") -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 24 17:29:41 2011 From: python-checkins at python.org (r.david.murray) Date: Thu, 24 Mar 2011 17:29:41 +0100 Subject: [Python-checkins] cpython (3.1): #11606: improved body_encode algorithm, no longer produces overlong lines Message-ID: http://hg.python.org/cpython/rev/37ba11d806c5 changeset: 68898:37ba11d806c5 branch: 3.1 parent: 68895:e53097288c8c user: R David Murray date: Thu Mar 24 12:19:26 2011 -0400 summary: #11606: improved body_encode algorithm, no longer produces overlong lines Algorithm and initial patch by Michael Henry. files: Lib/email/quoprimime.py | 143 +++++++++++++--------- Lib/email/test/test_email.py | 19 ++- 2 files changed, 102 insertions(+), 60 deletions(-) diff --git a/Lib/email/quoprimime.py b/Lib/email/quoprimime.py --- a/Lib/email/quoprimime.py +++ b/Lib/email/quoprimime.py @@ -40,6 +40,7 @@ ] import re +import io from string import ascii_letters, digits, hexdigits @@ -147,6 +148,59 @@ return '=?%s?q?%s?=' % (charset, EMPTYSTRING.join(encoded)) +class _body_accumulator(io.StringIO): + + def __init__(self, maxlinelen, eol, *args, **kw): + super().__init__(*args, **kw) + self.eol = eol + self.maxlinelen = self.room = maxlinelen + + def write_str(self, s): + """Add string s to the accumulated body.""" + self.write(s) + self.room -= len(s) + + def newline(self): + """Write eol, then start new line.""" + self.write_str(self.eol) + self.room = self.maxlinelen + + def write_soft_break(self): + """Write a soft break, then start a new line.""" + self.write_str('=') + self.newline() + + def write_wrapped(self, s, extra_room=0): + """Add a soft line break if needed, then write s.""" + if self.room < len(s) + extra_room: + self.write_soft_break() + self.write_str(s) + + def write_char(self, c, is_last_char): + if not is_last_char: + # Another character follows on this line, so we must leave + # extra room, either for it or a soft break, and whitespace + # need not be quoted. + self.write_wrapped(c, extra_room=1) + elif c not in ' \t': + # For this and remaining cases, no more characters follow, + # so there is no need to reserve extra room (since a hard + # break will immediately follow). + self.write_wrapped(c) + elif self.room >= 3: + # It's a whitespace character at end-of-line, and we have room + # for the three-character quoted encoding. + self.write(quote(c)) + elif self.room == 2: + # There's room for the whitespace character and a soft break. + self.write(c) + self.write_soft_break() + else: + # There's room only for a soft break. The quoted whitespace + # will be the only content on the subsequent line. + self.write_soft_break() + self.write(quote(c)) + def body_encode(body, maxlinelen=76, eol=NL): """Encode with quoted-printable, wrapping at maxlinelen characters. @@ -155,72 +209,43 @@ this to "\\r\\n" if you will be using the result of this function directly in an email. - Each line will be wrapped at, at most, maxlinelen characters (defaults to - 76 characters). Long lines will have the `soft linefeed' quoted-printable - character "=" appended to them, so the decoded text will be identical to - the original text. + Each line will be wrapped at, at most, maxlinelen characters before the + eol string (maxlinelen defaults to 76 characters, the maximum value + permitted by RFC 2045). Long lines will have the 'soft line break' + quoted-printable character "=" appended to them, so the decoded text will + be identical to the original text. + + The minimum maxlinelen is 4 to have room for a quoted character ("=XX") + followed by a soft line break. Smaller values will generate a + ValueError. + """ + + if maxlinelen < 4: + raise ValueError("maxlinelen must be at least 4") if not body: return body - # BAW: We're accumulating the body text by string concatenation. That - # can't be very efficient, but I don't have time now to rewrite it. It - # just feels like this algorithm could be more efficient. - encoded_body = '' - lineno = -1 - # Preserve line endings here so we can check later to see an eol needs to - # be added to the output later. - lines = body.splitlines(1) - for line in lines: - # But strip off line-endings for processing this line. - if line.endswith(CRLF): - line = line[:-2] - elif line[-1] in CRLF: - line = line[:-1] + # The last line may or may not end in eol, but all other lines do. + last_has_eol = (body[-1] in '\r\n') - lineno += 1 - encoded_line = '' - prev = None - linelen = len(line) - # Now we need to examine every character to see if it needs to be - # quopri encoded. BAW: again, string concatenation is inefficient. - for j in range(linelen): - c = line[j] - prev = c + # This accumulator will make it easier to build the encoded body. + encoded_body = _body_accumulator(maxlinelen, eol) + + lines = body.splitlines() + last_line_no = len(lines) - 1 + for line_no, line in enumerate(lines): + last_char_index = len(line) - 1 + for i, c in enumerate(line): if body_check(ord(c)): c = quote(c) - elif j+1 == linelen: - # Check for whitespace at end of line; special case - if c not in ' \t': - encoded_line += c - prev = c - continue - # Check to see to see if the line has reached its maximum length - if len(encoded_line) + len(c) >= maxlinelen: - encoded_body += encoded_line + '=' + eol - encoded_line = '' - encoded_line += c - # Now at end of line.. - if prev and prev in ' \t': - # Special case for whitespace at end of file - if lineno + 1 == len(lines): - prev = quote(prev) - if len(encoded_line) + len(prev) > maxlinelen: - encoded_body += encoded_line + '=' + eol + prev - else: - encoded_body += encoded_line + prev - # Just normal whitespace at end of line - else: - encoded_body += encoded_line + prev + '=' + eol - encoded_line = '' - # Now look at the line we just finished and it has a line ending, we - # need to add eol to the end of the line. - if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF: - encoded_body += encoded_line + eol - else: - encoded_body += encoded_line - encoded_line = '' - return encoded_body + encoded_body.write_char(c, i==last_char_index) + # Add an eol if input line had eol. All input lines have eol except + # possibly the last one. + if line_no < last_line_no or last_has_eol: + encoded_body.newline() + + return encoded_body.getvalue() diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -3041,6 +3041,14 @@ def test_encode_one_line_one_space(self): self._test_encode(' \n', '=20\n') +# XXX: body_encode() expect strings, but uses ord(char) from these strings +# to index into a 256-entry list. For code points above 255, this will fail. +# Should there be a check for 8-bit only ord() values in body, or at least +# a comment about the expected input? + + def test_encode_two_lines_one_space(self): + self._test_encode(' \n \n', '=20\n=20\n') + def test_encode_one_word_trailing_spaces(self): self._test_encode('hello ', 'hello =20') @@ -3056,8 +3064,14 @@ def test_encode_trailing_space_before_maxlinelen(self): self._test_encode('abcd \n1234', 'abcd =\n\n1234', maxlinelen=6) + def test_encode_trailing_space_at_maxlinelen(self): + self._test_encode('abcd \n1234', 'abcd=\n=20\n1234', maxlinelen=5) + def test_encode_trailing_space_beyond_maxlinelen(self): - self._test_encode('abcd \n1234', 'abc=\nd =\n\n1234', maxlinelen=4) + self._test_encode('abcd \n1234', 'abc=\nd=20\n1234', maxlinelen=4) + + def test_encode_whitespace_lines(self): + self._test_encode(' \n' * 5, '=20\n' * 5) def test_encode_quoted_equals(self): self._test_encode('a = b', 'a =3D b') @@ -3078,6 +3092,9 @@ def test_encode_shortest_maxlinelen(self): self._test_encode('=' * 5, '=3D=\n' * 4 + '=3D', maxlinelen=4) + def test_encode_maxlinelen_too_small(self): + self.assertRaises(ValueError, self._test_encode, '', '', maxlinelen=3) + def test_encode(self): eq = self.assertEqual eq(quoprimime.body_encode(''), '') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 24 17:29:42 2011 From: python-checkins at python.org (r.david.murray) Date: Thu, 24 Mar 2011 17:29:42 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge #11606: improved body_encode algorithm, no longer produces overlong lines Message-ID: http://hg.python.org/cpython/rev/b801d55a9979 changeset: 68899:b801d55a9979 branch: 3.2 parent: 68896:7a767910db5d parent: 68898:37ba11d806c5 user: R David Murray date: Thu Mar 24 12:27:23 2011 -0400 summary: Merge #11606: improved body_encode algorithm, no longer produces overlong lines files: Lib/email/quoprimime.py | 143 +++++++++++++--------- Lib/email/test/test_email.py | 19 ++- 2 files changed, 102 insertions(+), 60 deletions(-) diff --git a/Lib/email/quoprimime.py b/Lib/email/quoprimime.py --- a/Lib/email/quoprimime.py +++ b/Lib/email/quoprimime.py @@ -40,6 +40,7 @@ ] import re +import io from string import ascii_letters, digits, hexdigits @@ -147,6 +148,59 @@ return '=?%s?q?%s?=' % (charset, EMPTYSTRING.join(encoded)) +class _body_accumulator(io.StringIO): + + def __init__(self, maxlinelen, eol, *args, **kw): + super().__init__(*args, **kw) + self.eol = eol + self.maxlinelen = self.room = maxlinelen + + def write_str(self, s): + """Add string s to the accumulated body.""" + self.write(s) + self.room -= len(s) + + def newline(self): + """Write eol, then start new line.""" + self.write_str(self.eol) + self.room = self.maxlinelen + + def write_soft_break(self): + """Write a soft break, then start a new line.""" + self.write_str('=') + self.newline() + + def write_wrapped(self, s, extra_room=0): + """Add a soft line break if needed, then write s.""" + if self.room < len(s) + extra_room: + self.write_soft_break() + self.write_str(s) + + def write_char(self, c, is_last_char): + if not is_last_char: + # Another character follows on this line, so we must leave + # extra room, either for it or a soft break, and whitespace + # need not be quoted. + self.write_wrapped(c, extra_room=1) + elif c not in ' \t': + # For this and remaining cases, no more characters follow, + # so there is no need to reserve extra room (since a hard + # break will immediately follow). + self.write_wrapped(c) + elif self.room >= 3: + # It's a whitespace character at end-of-line, and we have room + # for the three-character quoted encoding. + self.write(quote(c)) + elif self.room == 2: + # There's room for the whitespace character and a soft break. + self.write(c) + self.write_soft_break() + else: + # There's room only for a soft break. The quoted whitespace + # will be the only content on the subsequent line. + self.write_soft_break() + self.write(quote(c)) + def body_encode(body, maxlinelen=76, eol=NL): """Encode with quoted-printable, wrapping at maxlinelen characters. @@ -155,72 +209,43 @@ this to "\\r\\n" if you will be using the result of this function directly in an email. - Each line will be wrapped at, at most, maxlinelen characters (defaults to - 76 characters). Long lines will have the `soft linefeed' quoted-printable - character "=" appended to them, so the decoded text will be identical to - the original text. + Each line will be wrapped at, at most, maxlinelen characters before the + eol string (maxlinelen defaults to 76 characters, the maximum value + permitted by RFC 2045). Long lines will have the 'soft line break' + quoted-printable character "=" appended to them, so the decoded text will + be identical to the original text. + + The minimum maxlinelen is 4 to have room for a quoted character ("=XX") + followed by a soft line break. Smaller values will generate a + ValueError. + """ + + if maxlinelen < 4: + raise ValueError("maxlinelen must be at least 4") if not body: return body - # BAW: We're accumulating the body text by string concatenation. That - # can't be very efficient, but I don't have time now to rewrite it. It - # just feels like this algorithm could be more efficient. - encoded_body = '' - lineno = -1 - # Preserve line endings here so we can check later to see an eol needs to - # be added to the output later. - lines = body.splitlines(1) - for line in lines: - # But strip off line-endings for processing this line. - if line.endswith(CRLF): - line = line[:-2] - elif line[-1] in CRLF: - line = line[:-1] + # The last line may or may not end in eol, but all other lines do. + last_has_eol = (body[-1] in '\r\n') - lineno += 1 - encoded_line = '' - prev = None - linelen = len(line) - # Now we need to examine every character to see if it needs to be - # quopri encoded. BAW: again, string concatenation is inefficient. - for j in range(linelen): - c = line[j] - prev = c + # This accumulator will make it easier to build the encoded body. + encoded_body = _body_accumulator(maxlinelen, eol) + + lines = body.splitlines() + last_line_no = len(lines) - 1 + for line_no, line in enumerate(lines): + last_char_index = len(line) - 1 + for i, c in enumerate(line): if body_check(ord(c)): c = quote(c) - elif j+1 == linelen: - # Check for whitespace at end of line; special case - if c not in ' \t': - encoded_line += c - prev = c - continue - # Check to see to see if the line has reached its maximum length - if len(encoded_line) + len(c) >= maxlinelen: - encoded_body += encoded_line + '=' + eol - encoded_line = '' - encoded_line += c - # Now at end of line.. - if prev and prev in ' \t': - # Special case for whitespace at end of file - if lineno + 1 == len(lines): - prev = quote(prev) - if len(encoded_line) + len(prev) > maxlinelen: - encoded_body += encoded_line + '=' + eol + prev - else: - encoded_body += encoded_line + prev - # Just normal whitespace at end of line - else: - encoded_body += encoded_line + prev + '=' + eol - encoded_line = '' - # Now look at the line we just finished and it has a line ending, we - # need to add eol to the end of the line. - if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF: - encoded_body += encoded_line + eol - else: - encoded_body += encoded_line - encoded_line = '' - return encoded_body + encoded_body.write_char(c, i==last_char_index) + # Add an eol if input line had eol. All input lines have eol except + # possibly the last one. + if line_no < last_line_no or last_has_eol: + encoded_body.newline() + + return encoded_body.getvalue() diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -3495,6 +3495,14 @@ def test_encode_one_line_one_space(self): self._test_encode(' \n', '=20\n') +# XXX: body_encode() expect strings, but uses ord(char) from these strings +# to index into a 256-entry list. For code points above 255, this will fail. +# Should there be a check for 8-bit only ord() values in body, or at least +# a comment about the expected input? + + def test_encode_two_lines_one_space(self): + self._test_encode(' \n \n', '=20\n=20\n') + def test_encode_one_word_trailing_spaces(self): self._test_encode('hello ', 'hello =20') @@ -3510,8 +3518,14 @@ def test_encode_trailing_space_before_maxlinelen(self): self._test_encode('abcd \n1234', 'abcd =\n\n1234', maxlinelen=6) + def test_encode_trailing_space_at_maxlinelen(self): + self._test_encode('abcd \n1234', 'abcd=\n=20\n1234', maxlinelen=5) + def test_encode_trailing_space_beyond_maxlinelen(self): - self._test_encode('abcd \n1234', 'abc=\nd =\n\n1234', maxlinelen=4) + self._test_encode('abcd \n1234', 'abc=\nd=20\n1234', maxlinelen=4) + + def test_encode_whitespace_lines(self): + self._test_encode(' \n' * 5, '=20\n' * 5) def test_encode_quoted_equals(self): self._test_encode('a = b', 'a =3D b') @@ -3532,6 +3546,9 @@ def test_encode_shortest_maxlinelen(self): self._test_encode('=' * 5, '=3D=\n' * 4 + '=3D', maxlinelen=4) + def test_encode_maxlinelen_too_small(self): + self.assertRaises(ValueError, self._test_encode, '', '', maxlinelen=3) + def test_encode(self): eq = self.assertEqual eq(quoprimime.body_encode(''), '') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 24 17:29:43 2011 From: python-checkins at python.org (r.david.murray) Date: Thu, 24 Mar 2011 17:29:43 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #11606: improved body_encode algorithm, no longer produces overlong lines Message-ID: http://hg.python.org/cpython/rev/0c40f4939174 changeset: 68900:0c40f4939174 parent: 68897:d944431a2b04 parent: 68899:b801d55a9979 user: R David Murray date: Thu Mar 24 12:28:39 2011 -0400 summary: Merge #11606: improved body_encode algorithm, no longer produces overlong lines files: Lib/email/quoprimime.py | 143 ++++++++++------- Lib/test/test_email/test_email.py | 19 ++- 2 files changed, 102 insertions(+), 60 deletions(-) diff --git a/Lib/email/quoprimime.py b/Lib/email/quoprimime.py --- a/Lib/email/quoprimime.py +++ b/Lib/email/quoprimime.py @@ -40,6 +40,7 @@ ] import re +import io from string import ascii_letters, digits, hexdigits @@ -147,6 +148,59 @@ return '=?%s?q?%s?=' % (charset, EMPTYSTRING.join(encoded)) +class _body_accumulator(io.StringIO): + + def __init__(self, maxlinelen, eol, *args, **kw): + super().__init__(*args, **kw) + self.eol = eol + self.maxlinelen = self.room = maxlinelen + + def write_str(self, s): + """Add string s to the accumulated body.""" + self.write(s) + self.room -= len(s) + + def newline(self): + """Write eol, then start new line.""" + self.write_str(self.eol) + self.room = self.maxlinelen + + def write_soft_break(self): + """Write a soft break, then start a new line.""" + self.write_str('=') + self.newline() + + def write_wrapped(self, s, extra_room=0): + """Add a soft line break if needed, then write s.""" + if self.room < len(s) + extra_room: + self.write_soft_break() + self.write_str(s) + + def write_char(self, c, is_last_char): + if not is_last_char: + # Another character follows on this line, so we must leave + # extra room, either for it or a soft break, and whitespace + # need not be quoted. + self.write_wrapped(c, extra_room=1) + elif c not in ' \t': + # For this and remaining cases, no more characters follow, + # so there is no need to reserve extra room (since a hard + # break will immediately follow). + self.write_wrapped(c) + elif self.room >= 3: + # It's a whitespace character at end-of-line, and we have room + # for the three-character quoted encoding. + self.write(quote(c)) + elif self.room == 2: + # There's room for the whitespace character and a soft break. + self.write(c) + self.write_soft_break() + else: + # There's room only for a soft break. The quoted whitespace + # will be the only content on the subsequent line. + self.write_soft_break() + self.write(quote(c)) + def body_encode(body, maxlinelen=76, eol=NL): """Encode with quoted-printable, wrapping at maxlinelen characters. @@ -155,72 +209,43 @@ this to "\\r\\n" if you will be using the result of this function directly in an email. - Each line will be wrapped at, at most, maxlinelen characters (defaults to - 76 characters). Long lines will have the `soft linefeed' quoted-printable - character "=" appended to them, so the decoded text will be identical to - the original text. + Each line will be wrapped at, at most, maxlinelen characters before the + eol string (maxlinelen defaults to 76 characters, the maximum value + permitted by RFC 2045). Long lines will have the 'soft line break' + quoted-printable character "=" appended to them, so the decoded text will + be identical to the original text. + + The minimum maxlinelen is 4 to have room for a quoted character ("=XX") + followed by a soft line break. Smaller values will generate a + ValueError. + """ + + if maxlinelen < 4: + raise ValueError("maxlinelen must be at least 4") if not body: return body - # BAW: We're accumulating the body text by string concatenation. That - # can't be very efficient, but I don't have time now to rewrite it. It - # just feels like this algorithm could be more efficient. - encoded_body = '' - lineno = -1 - # Preserve line endings here so we can check later to see an eol needs to - # be added to the output later. - lines = body.splitlines(1) - for line in lines: - # But strip off line-endings for processing this line. - if line.endswith(CRLF): - line = line[:-2] - elif line[-1] in CRLF: - line = line[:-1] + # The last line may or may not end in eol, but all other lines do. + last_has_eol = (body[-1] in '\r\n') - lineno += 1 - encoded_line = '' - prev = None - linelen = len(line) - # Now we need to examine every character to see if it needs to be - # quopri encoded. BAW: again, string concatenation is inefficient. - for j in range(linelen): - c = line[j] - prev = c + # This accumulator will make it easier to build the encoded body. + encoded_body = _body_accumulator(maxlinelen, eol) + + lines = body.splitlines() + last_line_no = len(lines) - 1 + for line_no, line in enumerate(lines): + last_char_index = len(line) - 1 + for i, c in enumerate(line): if body_check(ord(c)): c = quote(c) - elif j+1 == linelen: - # Check for whitespace at end of line; special case - if c not in ' \t': - encoded_line += c - prev = c - continue - # Check to see to see if the line has reached its maximum length - if len(encoded_line) + len(c) >= maxlinelen: - encoded_body += encoded_line + '=' + eol - encoded_line = '' - encoded_line += c - # Now at end of line.. - if prev and prev in ' \t': - # Special case for whitespace at end of file - if lineno + 1 == len(lines): - prev = quote(prev) - if len(encoded_line) + len(prev) > maxlinelen: - encoded_body += encoded_line + '=' + eol + prev - else: - encoded_body += encoded_line + prev - # Just normal whitespace at end of line - else: - encoded_body += encoded_line + prev + '=' + eol - encoded_line = '' - # Now look at the line we just finished and it has a line ending, we - # need to add eol to the end of the line. - if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF: - encoded_body += encoded_line + eol - else: - encoded_body += encoded_line - encoded_line = '' - return encoded_body + encoded_body.write_char(c, i==last_char_index) + # Add an eol if input line had eol. All input lines have eol except + # possibly the last one. + if line_no < last_line_no or last_has_eol: + encoded_body.newline() + + return encoded_body.getvalue() diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -3502,6 +3502,14 @@ def test_encode_one_line_one_space(self): self._test_encode(' \n', '=20\n') +# XXX: body_encode() expect strings, but uses ord(char) from these strings +# to index into a 256-entry list. For code points above 255, this will fail. +# Should there be a check for 8-bit only ord() values in body, or at least +# a comment about the expected input? + + def test_encode_two_lines_one_space(self): + self._test_encode(' \n \n', '=20\n=20\n') + def test_encode_one_word_trailing_spaces(self): self._test_encode('hello ', 'hello =20') @@ -3517,8 +3525,14 @@ def test_encode_trailing_space_before_maxlinelen(self): self._test_encode('abcd \n1234', 'abcd =\n\n1234', maxlinelen=6) + def test_encode_trailing_space_at_maxlinelen(self): + self._test_encode('abcd \n1234', 'abcd=\n=20\n1234', maxlinelen=5) + def test_encode_trailing_space_beyond_maxlinelen(self): - self._test_encode('abcd \n1234', 'abc=\nd =\n\n1234', maxlinelen=4) + self._test_encode('abcd \n1234', 'abc=\nd=20\n1234', maxlinelen=4) + + def test_encode_whitespace_lines(self): + self._test_encode(' \n' * 5, '=20\n' * 5) def test_encode_quoted_equals(self): self._test_encode('a = b', 'a =3D b') @@ -3539,6 +3553,9 @@ def test_encode_shortest_maxlinelen(self): self._test_encode('=' * 5, '=3D=\n' * 4 + '=3D', maxlinelen=4) + def test_encode_maxlinelen_too_small(self): + self.assertRaises(ValueError, self._test_encode, '', '', maxlinelen=3) + def test_encode(self): eq = self.assertEqual eq(quoprimime.body_encode(''), '') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 24 17:45:54 2011 From: python-checkins at python.org (raymond.hettinger) Date: Thu, 24 Mar 2011 17:45:54 +0100 Subject: [Python-checkins] cpython: Isolate the test_source() test in test_collections Message-ID: http://hg.python.org/cpython/rev/4f1cd92fe835 changeset: 68901:4f1cd92fe835 user: Raymond Hettinger date: Thu Mar 24 09:45:43 2011 -0700 summary: Isolate the test_source() test in test_collections files: Lib/test/test_collections.py | 13 ++++++++----- 1 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py --- a/Lib/test/test_collections.py +++ b/Lib/test/test_collections.py @@ -330,13 +330,16 @@ def test_source(self): # verify that _source can be run through exec() - tmp = namedtuple('Color', 'red green blue') - self.assertNotIn('Color', globals()) + tmp = namedtuple('NTColor', 'red green blue') + globals().pop('NTColor', None) # remove artifacts from other tests + self.assertNotIn('NTColor', globals()) exec(tmp._source, globals()) - self.assertIn('Color', globals()) - c = Color(10, 20, 30) + self.assertIn('NTColor', globals()) + c = NTColor(10, 20, 30) self.assertEqual((c.red, c.green, c.blue), (10, 20, 30)) - self.assertEqual(Color._fields, ('red', 'green', 'blue')) + self.assertEqual(NTColor._fields, ('red', 'green', 'blue')) + globals().pop('NTColor', None) # clean-up after this test + self.assertNotIn('NTColor', globals()) def test_source_importable(self): tmp = namedtuple('Color', 'hue sat val') -- Repository URL: http://hg.python.org/cpython From benjamin at python.org Thu Mar 24 17:51:46 2011 From: benjamin at python.org (Benjamin Peterson) Date: Thu, 24 Mar 2011 11:51:46 -0500 Subject: [Python-checkins] cpython: Isolate the test_source() test in test_collections In-Reply-To: References: Message-ID: 2011/3/24 raymond.hettinger : > http://hg.python.org/cpython/rev/4f1cd92fe835 > changeset: ? 68901:4f1cd92fe835 > user: ? ? ? ?Raymond Hettinger > date: ? ? ? ?Thu Mar 24 09:45:43 2011 -0700 > summary: > ?Isolate the test_source() test in test_collections > > files: > ?Lib/test/test_collections.py | ?13 ++++++++----- > ?1 files changed, 8 insertions(+), 5 deletions(-) > > > diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py > --- a/Lib/test/test_collections.py > +++ b/Lib/test/test_collections.py > @@ -330,13 +330,16 @@ > > ? ? def test_source(self): > ? ? ? ? # verify that _source can be run through exec() > - ? ? ? ?tmp = namedtuple('Color', 'red green blue') > - ? ? ? ?self.assertNotIn('Color', globals()) > + ? ? ? ?tmp = namedtuple('NTColor', 'red green blue') > + ? ? ? ?globals().pop('NTColor', None) ? ? ? ? ?# remove artifacts from other tests > + ? ? ? ?self.assertNotIn('NTColor', globals()) Shouldn't these other tests cleanup after themselves? -- Regards, Benjamin From python-checkins at python.org Thu Mar 24 18:51:26 2011 From: python-checkins at python.org (raymond.hettinger) Date: Thu, 24 Mar 2011 18:51:26 +0100 Subject: [Python-checkins] cpython: Remove test_importable(). Couldn't see how to make this reliable across all Message-ID: http://hg.python.org/cpython/rev/5adddc6be3c1 changeset: 68902:5adddc6be3c1 user: Raymond Hettinger date: Thu Mar 24 10:51:06 2011 -0700 summary: Remove test_importable(). Couldn't see how to make this reliable across all platforms. files: Lib/test/test_collections.py | 25 ------------------------ 1 files changed, 0 insertions(+), 25 deletions(-) diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py --- a/Lib/test/test_collections.py +++ b/Lib/test/test_collections.py @@ -332,37 +332,12 @@ # verify that _source can be run through exec() tmp = namedtuple('NTColor', 'red green blue') globals().pop('NTColor', None) # remove artifacts from other tests - self.assertNotIn('NTColor', globals()) exec(tmp._source, globals()) self.assertIn('NTColor', globals()) c = NTColor(10, 20, 30) self.assertEqual((c.red, c.green, c.blue), (10, 20, 30)) self.assertEqual(NTColor._fields, ('red', 'green', 'blue')) globals().pop('NTColor', None) # clean-up after this test - self.assertNotIn('NTColor', globals()) - - def test_source_importable(self): - tmp = namedtuple('Color', 'hue sat val') - - compiled = None - source = TESTFN + '.py' - with open(source, 'w') as f: - print(tmp._source, file=f) - - if TESTFN in sys.modules: - del sys.modules[TESTFN] - try: - mod = __import__(TESTFN) - compiled = mod.__file__ - Color = mod.Color - c = Color(10, 20, 30) - self.assertEqual((c.hue, c.sat, c.val), (10, 20, 30)) - self.assertEqual(Color._fields, ('hue', 'sat', 'val')) - finally: - forget(TESTFN) - if compiled: - unlink(compiled) - unlink(source) ################################################################################ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 24 19:35:46 2011 From: python-checkins at python.org (r.david.murray) Date: Thu, 24 Mar 2011 19:35:46 +0100 Subject: [Python-checkins] cpython: #11030: make --coverdir work for relative directories again. Message-ID: http://hg.python.org/cpython/rev/6ff4e479f03b changeset: 68903:6ff4e479f03b user: R David Murray date: Thu Mar 24 14:35:30 2011 -0400 summary: #11030: make --coverdir work for relative directories again. files: Lib/test/regrtest.py | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -315,7 +315,9 @@ elif o in ('-T', '--coverage'): trace = True elif o in ('-D', '--coverdir'): - coverdir = os.path.join(os.getcwd(), a) + # CWD is replaced with a temporary dir before calling main(), so we + # need join it with the saved CWD so it goes where the user expects. + coverdir = os.path.join(support.SAVEDCWD, a) elif o in ('-N', '--nocoverdir'): coverdir = None elif o in ('-R', '--huntrleaks'): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 24 19:43:12 2011 From: python-checkins at python.org (r.david.murray) Date: Thu, 24 Mar 2011 19:43:12 +0100 Subject: [Python-checkins] cpython: #11031: Add --testdir to specify where to find tests Message-ID: http://hg.python.org/cpython/rev/ef393e6ac31b changeset: 68904:ef393e6ac31b user: R David Murray date: Thu Mar 24 14:42:58 2011 -0400 summary: #11031: Add --testdir to specify where to find tests Patch by Sandro Tosi. The main purpose of this option is to allow an alternate set of tests files to be used when running tests of the regrtest tool itself. files: Lib/test/regrtest.py | 20 ++++++++++++++++++-- 1 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -42,6 +42,9 @@ -- specify which special resource intensive tests to run -M/--memlimit LIMIT -- run very large memory-consuming tests + --testdir DIR + -- execute test files in the specified directory (instead + of the Python stdlib test suite) Special runs @@ -265,7 +268,7 @@ 'use=', 'threshold=', 'trace', 'coverdir=', 'nocoverdir', 'runleaks', 'huntrleaks=', 'memlimit=', 'randseed=', 'multiprocess=', 'coverage', 'slaveargs=', 'forever', 'debug', - 'start=', 'nowindows', 'header']) + 'start=', 'nowindows', 'header', 'testdir=']) except getopt.error as msg: usage(msg) @@ -395,6 +398,10 @@ print() # Force a newline (just in case) print(json.dumps(result)) sys.exit(0) + elif o == '--testdir': + # CWD is replaced with a temporary dir before calling main(), so we + # join it with the saved CWD so it ends up where the user expects. + testdir = os.path.join(support.SAVEDCWD, a) else: print(("No handler for option {}. Please report this as a bug " "at http://bugs.python.org.").format(o), file=sys.stderr) @@ -469,7 +476,13 @@ print("== ", os.getcwd()) print("Testing with flags:", sys.flags) - alltests = findtests(testdir, stdtests, nottests) + # if testdir is set, then we are not running the python tests suite, so + # don't add default tests to be executed or skipped (pass empty values) + if testdir: + alltests = findtests(testdir, list(), set()) + else: + alltests = findtests(testdir, stdtests, nottests) + selected = tests or args or alltests if single: selected = selected[:1] @@ -715,6 +728,8 @@ sys.exit(len(bad) > 0 or interrupted) +# small set of tests to determine if we have a basically functioning interpreter +# (i.e. if any of these fail, then anything else is likely to follow) STDTESTS = [ 'test_grammar', 'test_opcodes', @@ -727,6 +742,7 @@ 'test_doctest2', ] +# set of tests that we don't want to be executed when using regrtest NOTTESTS = { 'test_future1', 'test_future2', -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 24 19:57:26 2011 From: python-checkins at python.org (r.david.murray) Date: Thu, 24 Mar 2011 19:57:26 +0100 Subject: [Python-checkins] cpython: #11093: make NOTTESTS empty by renaming confusingly named files in test dir. Message-ID: http://hg.python.org/cpython/rev/6a649a15cd14 changeset: 68905:6a649a15cd14 user: R David Murray date: Thu Mar 24 14:57:05 2011 -0400 summary: #11093: make NOTTESTS empty by renaming confusingly named files in test dir. Patch by Sandro Tosi. files: Lib/test/test_future1.py | Bin Lib/test/test_future2.py | Bin Lib/test/regrtest.py | 5 +---- Lib/test/test_future.py | 12 ++++++------ 4 files changed, 7 insertions(+), 10 deletions(-) diff --git a/Lib/test/test_future1.py b/Lib/test/future_test1.py rename from Lib/test/test_future1.py rename to Lib/test/future_test1.py diff --git a/Lib/test/test_future2.py b/Lib/test/future_test2.py rename from Lib/test/test_future2.py rename to Lib/test/future_test2.py diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -743,10 +743,7 @@ ] # set of tests that we don't want to be executed when using regrtest -NOTTESTS = { - 'test_future1', - 'test_future2', -} +NOTTESTS = set() def findtests(testdir=None, stdtests=STDTESTS, nottests=NOTTESTS): """Return a list of all applicable test modules.""" diff --git a/Lib/test/test_future.py b/Lib/test/test_future.py --- a/Lib/test/test_future.py +++ b/Lib/test/test_future.py @@ -13,14 +13,14 @@ class FutureTest(unittest.TestCase): def test_future1(self): - support.unload('test_future1') - from test import test_future1 - self.assertEqual(test_future1.result, 6) + support.unload('future_test1') + from test import future_test1 + self.assertEqual(future_test1.result, 6) def test_future2(self): - support.unload('test_future2') - from test import test_future2 - self.assertEqual(test_future2.result, 6) + support.unload('future_test2') + from test import future_test2 + self.assertEqual(future_test2.result, 6) def test_future3(self): support.unload('test_future3') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 24 21:51:23 2011 From: python-checkins at python.org (eli.bendersky) Date: Thu, 24 Mar 2011 21:51:23 +0100 Subject: [Python-checkins] cpython: Issue #11634: Remove misleading paragraph from a comment Message-ID: http://hg.python.org/cpython/rev/a729dfdbd24b changeset: 68906:a729dfdbd24b user: Eli Bendersky date: Thu Mar 24 22:32:56 2011 +0200 summary: Issue #11634: Remove misleading paragraph from a comment files: Objects/bytesobject.c | 8 ++------ 1 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -41,10 +41,6 @@ #define PyBytesObject_SIZE (offsetof(PyBytesObject, ob_sval) + 1) /* - For both PyBytes_FromString() and PyBytes_FromStringAndSize(), the - parameter `size' denotes number of characters to allocate, not counting any - null terminating character. - For PyBytes_FromString(), the parameter `str' points to a null-terminated string containing exactly `size' bytes. @@ -61,8 +57,8 @@ The PyObject member `op->ob_size', which denotes the number of "extra items" in a variable-size object, will contain the number of bytes - allocated for string data, not counting the null terminating character. It - is therefore equal to the equal to the `size' parameter (for + allocated for string data, not counting the null terminating character. + It is therefore equal to the `size' parameter (for PyBytes_FromStringAndSize()) or the length of the string in the `str' parameter (for PyBytes_FromString()). */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 24 21:56:49 2011 From: python-checkins at python.org (eli.bendersky) Date: Thu, 24 Mar 2011 21:56:49 +0100 Subject: [Python-checkins] cpython (2.7): Issue #11634: Remove misleading paragraph from a comment Message-ID: http://hg.python.org/cpython/rev/44749e501982 changeset: 68907:44749e501982 branch: 2.7 parent: 68856:24179f82b7de user: Eli Bendersky date: Thu Mar 24 22:38:25 2011 +0200 summary: Issue #11634: Remove misleading paragraph from a comment files: Objects/stringobject.c | 8 ++------ 1 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Objects/stringobject.c b/Objects/stringobject.c --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -32,10 +32,6 @@ #define PyStringObject_SIZE (offsetof(PyStringObject, ob_sval) + 1) /* - For both PyString_FromString() and PyString_FromStringAndSize(), the - parameter `size' denotes number of characters to allocate, not counting any - null terminating character. - For PyString_FromString(), the parameter `str' points to a null-terminated string containing exactly `size' bytes. @@ -52,8 +48,8 @@ The PyObject member `op->ob_size', which denotes the number of "extra items" in a variable-size object, will contain the number of bytes - allocated for string data, not counting the null terminating character. It - is therefore equal to the equal to the `size' parameter (for + allocated for string data, not counting the null terminating character. + It is therefore equal to the `size' parameter (for PyString_FromStringAndSize()) or the length of the string in the `str' parameter (for PyString_FromString()). */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 00:36:20 2011 From: python-checkins at python.org (martin.v.loewis) Date: Fri, 25 Mar 2011 00:36:20 +0100 (CET) Subject: [Python-checkins] r88801 - tracker/instances/python-dev/extensions/create_patch.py Message-ID: <3Pwkfr5KMzz7LjR@mail.python.org> Author: martin.v.loewis Date: Fri Mar 25 00:36:20 2011 New Revision: 88801 Log: Only consider merges as base if the p2 revision is not outgoing. Modified: tracker/instances/python-dev/extensions/create_patch.py Modified: tracker/instances/python-dev/extensions/create_patch.py ============================================================================== --- tracker/instances/python-dev/extensions/create_patch.py (original) +++ tracker/instances/python-dev/extensions/create_patch.py Fri Mar 25 00:36:20 2011 @@ -30,7 +30,7 @@ raise NotChanged repo=bundlerepo.bundlerepository(UI, ".", bundle) repo.ui.pushbuffer() - old = 'max(p1(min(outgoing() and branch(%s))) or max(p2(merge() and outgoing() and branch(%s)) and branch(%s)))' % (patchbranch, patchbranch, sourcebranch) + old = 'max(p1(min(outgoing() and branch(%s))) or max(p2(merge() and outgoing() and branch(%s)) and branch(%s) and not outgoing()))' % (patchbranch, patchbranch, sourcebranch) commands.diff(repo.ui, repo, rev=[old, patchbranch]) result = repo.ui.popbuffer() finally: From python-checkins at python.org Fri Mar 25 00:49:11 2011 From: python-checkins at python.org (martin.v.loewis) Date: Fri, 25 Mar 2011 00:49:11 +0100 (CET) Subject: [Python-checkins] r88802 - tracker/instances/python-dev/scripts/addpatchsets Message-ID: <3Pwkxg20Hnz7LjR@mail.python.org> Author: martin.v.loewis Date: Fri Mar 25 00:49:11 2011 New Revision: 88802 Log: Don't skip over closed issues anymore Modified: tracker/instances/python-dev/scripts/addpatchsets Modified: tracker/instances/python-dev/scripts/addpatchsets ============================================================================== --- tracker/instances/python-dev/scripts/addpatchsets (original) +++ tracker/instances/python-dev/scripts/addpatchsets Fri Mar 25 00:49:11 2011 @@ -118,10 +118,10 @@ continue nodeid = nodeid[0] roundup = RoundupIssue.objects.get(id=nodeid) - if roundup._status == closed: - if verbose: - print "issue",nodeid,"is closed" - continue + #if roundup._status == closed: + # if verbose: + # print "issue",nodeid,"is closed" + # continue filename = os.path.join(basedir, "db", "files", "file", str(f.id/1000), "file"+str(f.id)) if not os.path.exists(filename): From python-checkins at python.org Fri Mar 25 00:53:21 2011 From: python-checkins at python.org (martin.v.loewis) Date: Fri, 25 Mar 2011 00:53:21 +0100 (CET) Subject: [Python-checkins] r88803 - tracker/instances/python-dev/scripts/addpatchsets Message-ID: <3Pwl2T4Vkfz7Lmp@mail.python.org> Author: martin.v.loewis Date: Fri Mar 25 00:53:21 2011 New Revision: 88803 Log: Continue not just if verbose. Modified: tracker/instances/python-dev/scripts/addpatchsets Modified: tracker/instances/python-dev/scripts/addpatchsets ============================================================================== --- tracker/instances/python-dev/scripts/addpatchsets (original) +++ tracker/instances/python-dev/scripts/addpatchsets Fri Mar 25 00:53:21 2011 @@ -131,7 +131,7 @@ if not data.startswith('diff -r ') and data.find('\ndiff -r ')==-1: if verbose: print filename, "is not a patch" - continue + continue issue = Issue.objects.filter(id=nodeid) if not issue: c.execute("select _address from _user,issue_nosy where nodeid=%s and id=linkid", From solipsis at pitrou.net Fri Mar 25 05:09:26 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Fri, 25 Mar 2011 05:09:26 +0100 Subject: [Python-checkins] Daily reference leaks (a729dfdbd24b): sum=0 Message-ID: results for a729dfdbd24b on branch "default" -------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogzSYeid', '-x'] From python-checkins at python.org Fri Mar 25 05:33:02 2011 From: python-checkins at python.org (kurt.kaiser) Date: Fri, 25 Mar 2011 05:33:02 +0100 Subject: [Python-checkins] cpython (3.1): toggle non-functional when NumLock set Message-ID: http://hg.python.org/cpython/rev/a7d50a4e124e changeset: 68908:a7d50a4e124e branch: 3.1 parent: 68828:3aec82018a18 user: Kurt B. Kaiser date: Mon Mar 21 02:13:42 2011 -0400 summary: toggle non-functional when NumLock set on Windows. Issue3851. files: Lib/idlelib/EditorWindow.py | 6 +++--- Lib/idlelib/NEWS.txt | 8 ++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -304,9 +304,9 @@ return "break" def home_callback(self, event): - if (event.state & 12) != 0 and event.keysym == "Home": - # state&1==shift, state&4==control, state&8==alt - return # ; fall back to class binding + if (event.state & 4) != 0 and event.keysym == "Home": + # state&4==Control. If , use the Tk binding. + return if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,3 +1,11 @@ +What's New in IDLE 3.1.4? +========================= + +*Release date: XX-XXX-XX* + +- toggle non-functional when NumLock set on Windows. Issue3851. + + What's New in IDLE 3.1b1? ========================= -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 05:33:04 2011 From: python-checkins at python.org (kurt.kaiser) Date: Fri, 25 Mar 2011 05:33:04 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge from 3.1 Message-ID: http://hg.python.org/cpython/rev/2e88ff463c72 changeset: 68909:2e88ff463c72 branch: 3.2 parent: 68831:f3b8ebf28011 parent: 68908:a7d50a4e124e user: Kurt B. Kaiser date: Tue Mar 22 19:26:46 2011 -0400 summary: Merge from 3.1 files: Lib/idlelib/EditorWindow.py | 6 +++--- Lib/idlelib/NEWS.txt | 10 +++++++++- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -303,9 +303,9 @@ return "break" def home_callback(self, event): - if (event.state & 12) != 0 and event.keysym == "Home": - # state&1==shift, state&4==control, state&8==alt - return # ; fall back to class binding + if (event.state & 4) != 0 and event.keysym == "Home": + # state&4==Control. If , use the Tk binding. + return if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,4 +1,12 @@ -What's New in IDLE 3.1? +What's New in IDLE 3.1.4? +========================= + +*Release date: XX-XXX-XX* + +- toggle non-functional when NumLock set on Windows. Issue3851. + + +What's New in IDLE 3.1b1? ========================= *Release date: 27-Jun-09* -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 05:33:07 2011 From: python-checkins at python.org (kurt.kaiser) Date: Fri, 25 Mar 2011 05:33:07 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge from 3.2 Message-ID: http://hg.python.org/cpython/rev/35c84251cd25 changeset: 68910:35c84251cd25 parent: 68834:d50a71994f51 parent: 68909:2e88ff463c72 user: Kurt B. Kaiser date: Tue Mar 22 20:05:18 2011 -0400 summary: Merge from 3.2 files: Lib/idlelib/EditorWindow.py | 6 +++--- Lib/idlelib/NEWS.txt | 10 +++++++++- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -303,9 +303,9 @@ return "break" def home_callback(self, event): - if (event.state & 12) != 0 and event.keysym == "Home": - # state&1==shift, state&4==control, state&8==alt - return # ; fall back to class binding + if (event.state & 4) != 0 and event.keysym == "Home": + # state&4==Control. If , use the Tk binding. + return if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,4 +1,12 @@ -What's New in IDLE 3.1? +What's New in IDLE 3.1.4? +========================= + +*Release date: XX-XXX-XX* + +- toggle non-functional when NumLock set on Windows. Issue3851. + + +What's New in IDLE 3.1b1? ========================= *Release date: 27-Jun-09* -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 05:33:08 2011 From: python-checkins at python.org (kurt.kaiser) Date: Fri, 25 Mar 2011 05:33:08 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merge 3.2 Message-ID: http://hg.python.org/cpython/rev/905af7b69bec changeset: 68911:905af7b69bec parent: 68897:d944431a2b04 parent: 68910:35c84251cd25 user: Kurt B. Kaiser date: Thu Mar 24 12:51:10 2011 -0400 summary: Merge 3.2 files: Lib/idlelib/EditorWindow.py | 6 +++--- Lib/idlelib/NEWS.txt | 10 +++++++++- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -303,9 +303,9 @@ return "break" def home_callback(self, event): - if (event.state & 12) != 0 and event.keysym == "Home": - # state&1==shift, state&4==control, state&8==alt - return # ; fall back to class binding + if (event.state & 4) != 0 and event.keysym == "Home": + # state&4==Control. If , use the Tk binding. + return if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,4 +1,12 @@ -What's New in IDLE 3.1? +What's New in IDLE 3.1.4? +========================= + +*Release date: XX-XXX-XX* + +- toggle non-functional when NumLock set on Windows. Issue3851. + + +What's New in IDLE 3.1b1? ========================= *Release date: 27-Jun-09* -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 05:33:10 2011 From: python-checkins at python.org (kurt.kaiser) Date: Fri, 25 Mar 2011 05:33:10 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merge 3.2 Message-ID: http://hg.python.org/cpython/rev/182bfffb2792 changeset: 68912:182bfffb2792 parent: 68901:4f1cd92fe835 parent: 68911:905af7b69bec user: Kurt B. Kaiser date: Thu Mar 24 15:03:14 2011 -0400 summary: Merge 3.2 files: Lib/idlelib/EditorWindow.py | 6 +++--- Lib/idlelib/NEWS.txt | 10 +++++++++- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -303,9 +303,9 @@ return "break" def home_callback(self, event): - if (event.state & 12) != 0 and event.keysym == "Home": - # state&1==shift, state&4==control, state&8==alt - return # ; fall back to class binding + if (event.state & 4) != 0 and event.keysym == "Home": + # state&4==Control. If , use the Tk binding. + return if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,4 +1,12 @@ -What's New in IDLE 3.1? +What's New in IDLE 3.1.4? +========================= + +*Release date: XX-XXX-XX* + +- toggle non-functional when NumLock set on Windows. Issue3851. + + +What's New in IDLE 3.1b1? ========================= *Release date: 27-Jun-09* -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 05:33:12 2011 From: python-checkins at python.org (kurt.kaiser) Date: Fri, 25 Mar 2011 05:33:12 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merge heads Message-ID: http://hg.python.org/cpython/rev/82bbfd1cade2 changeset: 68913:82bbfd1cade2 parent: 68912:182bfffb2792 parent: 68905:6a649a15cd14 user: Kurt B. Kaiser date: Thu Mar 24 15:10:28 2011 -0400 summary: Merge heads files: Lib/test/test_future1.py | Bin Lib/test/test_future2.py | Bin Lib/test/regrtest.py | 29 +++++++++++++++++----- Lib/test/test_collections.py | 25 ------------------- Lib/test/test_future.py | 12 ++++---- 5 files changed, 28 insertions(+), 38 deletions(-) diff --git a/Lib/test/test_future1.py b/Lib/test/future_test1.py rename from Lib/test/test_future1.py rename to Lib/test/future_test1.py diff --git a/Lib/test/test_future2.py b/Lib/test/future_test2.py rename from Lib/test/test_future2.py rename to Lib/test/future_test2.py diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -42,6 +42,9 @@ -- specify which special resource intensive tests to run -M/--memlimit LIMIT -- run very large memory-consuming tests + --testdir DIR + -- execute test files in the specified directory (instead + of the Python stdlib test suite) Special runs @@ -265,7 +268,7 @@ 'use=', 'threshold=', 'trace', 'coverdir=', 'nocoverdir', 'runleaks', 'huntrleaks=', 'memlimit=', 'randseed=', 'multiprocess=', 'coverage', 'slaveargs=', 'forever', 'debug', - 'start=', 'nowindows', 'header']) + 'start=', 'nowindows', 'header', 'testdir=']) except getopt.error as msg: usage(msg) @@ -315,7 +318,9 @@ elif o in ('-T', '--coverage'): trace = True elif o in ('-D', '--coverdir'): - coverdir = os.path.join(os.getcwd(), a) + # CWD is replaced with a temporary dir before calling main(), so we + # need join it with the saved CWD so it goes where the user expects. + coverdir = os.path.join(support.SAVEDCWD, a) elif o in ('-N', '--nocoverdir'): coverdir = None elif o in ('-R', '--huntrleaks'): @@ -393,6 +398,10 @@ print() # Force a newline (just in case) print(json.dumps(result)) sys.exit(0) + elif o == '--testdir': + # CWD is replaced with a temporary dir before calling main(), so we + # join it with the saved CWD so it ends up where the user expects. + testdir = os.path.join(support.SAVEDCWD, a) else: print(("No handler for option {}. Please report this as a bug " "at http://bugs.python.org.").format(o), file=sys.stderr) @@ -467,7 +476,13 @@ print("== ", os.getcwd()) print("Testing with flags:", sys.flags) - alltests = findtests(testdir, stdtests, nottests) + # if testdir is set, then we are not running the python tests suite, so + # don't add default tests to be executed or skipped (pass empty values) + if testdir: + alltests = findtests(testdir, list(), set()) + else: + alltests = findtests(testdir, stdtests, nottests) + selected = tests or args or alltests if single: selected = selected[:1] @@ -713,6 +728,8 @@ sys.exit(len(bad) > 0 or interrupted) +# small set of tests to determine if we have a basically functioning interpreter +# (i.e. if any of these fail, then anything else is likely to follow) STDTESTS = [ 'test_grammar', 'test_opcodes', @@ -725,10 +742,8 @@ 'test_doctest2', ] -NOTTESTS = { - 'test_future1', - 'test_future2', -} +# set of tests that we don't want to be executed when using regrtest +NOTTESTS = set() def findtests(testdir=None, stdtests=STDTESTS, nottests=NOTTESTS): """Return a list of all applicable test modules.""" diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py --- a/Lib/test/test_collections.py +++ b/Lib/test/test_collections.py @@ -332,37 +332,12 @@ # verify that _source can be run through exec() tmp = namedtuple('NTColor', 'red green blue') globals().pop('NTColor', None) # remove artifacts from other tests - self.assertNotIn('NTColor', globals()) exec(tmp._source, globals()) self.assertIn('NTColor', globals()) c = NTColor(10, 20, 30) self.assertEqual((c.red, c.green, c.blue), (10, 20, 30)) self.assertEqual(NTColor._fields, ('red', 'green', 'blue')) globals().pop('NTColor', None) # clean-up after this test - self.assertNotIn('NTColor', globals()) - - def test_source_importable(self): - tmp = namedtuple('Color', 'hue sat val') - - compiled = None - source = TESTFN + '.py' - with open(source, 'w') as f: - print(tmp._source, file=f) - - if TESTFN in sys.modules: - del sys.modules[TESTFN] - try: - mod = __import__(TESTFN) - compiled = mod.__file__ - Color = mod.Color - c = Color(10, 20, 30) - self.assertEqual((c.hue, c.sat, c.val), (10, 20, 30)) - self.assertEqual(Color._fields, ('hue', 'sat', 'val')) - finally: - forget(TESTFN) - if compiled: - unlink(compiled) - unlink(source) ################################################################################ diff --git a/Lib/test/test_future.py b/Lib/test/test_future.py --- a/Lib/test/test_future.py +++ b/Lib/test/test_future.py @@ -13,14 +13,14 @@ class FutureTest(unittest.TestCase): def test_future1(self): - support.unload('test_future1') - from test import test_future1 - self.assertEqual(test_future1.result, 6) + support.unload('future_test1') + from test import future_test1 + self.assertEqual(future_test1.result, 6) def test_future2(self): - support.unload('test_future2') - from test import test_future2 - self.assertEqual(test_future2.result, 6) + support.unload('future_test2') + from test import future_test2 + self.assertEqual(future_test2.result, 6) def test_future3(self): support.unload('test_future3') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 05:33:13 2011 From: python-checkins at python.org (kurt.kaiser) Date: Fri, 25 Mar 2011 05:33:13 +0100 Subject: [Python-checkins] cpython (merge default -> default): Merge default heads Message-ID: http://hg.python.org/cpython/rev/909c11cd3d85 changeset: 68914:909c11cd3d85 parent: 68913:82bbfd1cade2 parent: 68906:a729dfdbd24b user: Kurt B. Kaiser date: Thu Mar 24 23:41:20 2011 -0400 summary: Merge default heads files: Objects/bytesobject.c | 8 ++------ 1 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -41,10 +41,6 @@ #define PyBytesObject_SIZE (offsetof(PyBytesObject, ob_sval) + 1) /* - For both PyBytes_FromString() and PyBytes_FromStringAndSize(), the - parameter `size' denotes number of characters to allocate, not counting any - null terminating character. - For PyBytes_FromString(), the parameter `str' points to a null-terminated string containing exactly `size' bytes. @@ -61,8 +57,8 @@ The PyObject member `op->ob_size', which denotes the number of "extra items" in a variable-size object, will contain the number of bytes - allocated for string data, not counting the null terminating character. It - is therefore equal to the equal to the `size' parameter (for + allocated for string data, not counting the null terminating character. + It is therefore equal to the `size' parameter (for PyBytes_FromStringAndSize()) or the length of the string in the `str' parameter (for PyBytes_FromString()). */ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 05:33:16 2011 From: python-checkins at python.org (kurt.kaiser) Date: Fri, 25 Mar 2011 05:33:16 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> 3.2): Merge 3.2 heads Message-ID: http://hg.python.org/cpython/rev/6c421c24c183 changeset: 68915:6c421c24c183 branch: 3.2 parent: 68899:b801d55a9979 parent: 68909:2e88ff463c72 user: Kurt B. Kaiser date: Fri Mar 25 00:22:09 2011 -0400 summary: Merge 3.2 heads files: Lib/idlelib/EditorWindow.py | 6 +++--- Lib/idlelib/NEWS.txt | 10 +++++++++- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -303,9 +303,9 @@ return "break" def home_callback(self, event): - if (event.state & 12) != 0 and event.keysym == "Home": - # state&1==shift, state&4==control, state&8==alt - return # ; fall back to class binding + if (event.state & 4) != 0 and event.keysym == "Home": + # state&4==Control. If , use the Tk binding. + return if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,4 +1,12 @@ -What's New in IDLE 3.1? +What's New in IDLE 3.1.4? +========================= + +*Release date: XX-XXX-XX* + +- toggle non-functional when NumLock set on Windows. Issue3851. + + +What's New in IDLE 3.1b1? ========================= *Release date: 27-Jun-09* -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 05:33:18 2011 From: python-checkins at python.org (kurt.kaiser) Date: Fri, 25 Mar 2011 05:33:18 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge from 3.2 again Message-ID: http://hg.python.org/cpython/rev/ffa5be46c6a5 changeset: 68916:ffa5be46c6a5 parent: 68914:909c11cd3d85 parent: 68915:6c421c24c183 user: Kurt B. Kaiser date: Fri Mar 25 00:26:11 2011 -0400 summary: Merge from 3.2 again files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 05:33:18 2011 From: python-checkins at python.org (kurt.kaiser) Date: Fri, 25 Mar 2011 05:33:18 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.1): Merge 3.1 Message-ID: http://hg.python.org/cpython/rev/fcc280d471de changeset: 68917:fcc280d471de branch: 3.1 parent: 68895:e53097288c8c parent: 68908:a7d50a4e124e user: Kurt B. Kaiser date: Thu Mar 24 12:03:36 2011 -0400 summary: Merge 3.1 files: Lib/idlelib/EditorWindow.py | 6 +++--- Lib/idlelib/NEWS.txt | 8 ++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -304,9 +304,9 @@ return "break" def home_callback(self, event): - if (event.state & 12) != 0 and event.keysym == "Home": - # state&1==shift, state&4==control, state&8==alt - return # ; fall back to class binding + if (event.state & 4) != 0 and event.keysym == "Home": + # state&4==Control. If , use the Tk binding. + return if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,3 +1,11 @@ +What's New in IDLE 3.1.4? +========================= + +*Release date: XX-XXX-XX* + +- toggle non-functional when NumLock set on Windows. Issue3851. + + What's New in IDLE 3.1b1? ========================= -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 05:33:22 2011 From: python-checkins at python.org (kurt.kaiser) Date: Fri, 25 Mar 2011 05:33:22 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.1): Merge 3.1 Message-ID: http://hg.python.org/cpython/rev/503be06d110b changeset: 68918:503be06d110b branch: 3.1 parent: 68898:37ba11d806c5 parent: 68917:fcc280d471de user: Kurt B. Kaiser date: Thu Mar 24 13:19:35 2011 -0400 summary: Merge 3.1 files: Lib/idlelib/EditorWindow.py | 6 +++--- Lib/idlelib/NEWS.txt | 8 ++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -304,9 +304,9 @@ return "break" def home_callback(self, event): - if (event.state & 12) != 0 and event.keysym == "Home": - # state&1==shift, state&4==control, state&8==alt - return # ; fall back to class binding + if (event.state & 4) != 0 and event.keysym == "Home": + # state&4==Control. If , use the Tk binding. + return if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,3 +1,11 @@ +What's New in IDLE 3.1.4? +========================= + +*Release date: XX-XXX-XX* + +- toggle non-functional when NumLock set on Windows. Issue3851. + + What's New in IDLE 3.1b1? ========================= -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 05:33:23 2011 From: python-checkins at python.org (kurt.kaiser) Date: Fri, 25 Mar 2011 05:33:23 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge from 3.1 again Message-ID: http://hg.python.org/cpython/rev/c5b47a746a7f changeset: 68919:c5b47a746a7f branch: 3.2 parent: 68915:6c421c24c183 parent: 68918:503be06d110b user: Kurt B. Kaiser date: Fri Mar 25 00:30:40 2011 -0400 summary: Merge from 3.1 again files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 05:33:25 2011 From: python-checkins at python.org (kurt.kaiser) Date: Fri, 25 Mar 2011 05:33:25 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge from 3.2 again Message-ID: http://hg.python.org/cpython/rev/9c0838f2f86c changeset: 68920:9c0838f2f86c parent: 68916:ffa5be46c6a5 parent: 68919:c5b47a746a7f user: Kurt B. Kaiser date: Fri Mar 25 00:32:23 2011 -0400 summary: Merge from 3.2 again files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 11:43:20 2011 From: python-checkins at python.org (thomas.wouters) Date: Fri, 25 Mar 2011 11:43:20 +0100 Subject: [Python-checkins] cpython: Revert the Lib/test/test_bigmem.py changes from commit 17891566a478 (and a Message-ID: http://hg.python.org/cpython/rev/11dc3f270594 changeset: 68921:11dc3f270594 user: Thomas Wouters date: Fri Mar 25 11:42:37 2011 +0100 summary: Revert the Lib/test/test_bigmem.py changes from commit 17891566a478 (and a few other assertEqual tests that snuck in), and expand the docstrings and comments explaining why and how these tests are supposed to work. files: Lib/test/support.py | 5 + Lib/test/test_bigmem.py | 81 ++++++++++++++++++---------- 2 files changed, 58 insertions(+), 28 deletions(-) diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1029,6 +1029,11 @@ return decorator def precisionbigmemtest(size, memuse): + """Decorator for bigmem tests that need exact sizes. + + Like bigmemtest, but without the size scaling upward to fill available + memory. + """ def decorator(f): def wrapper(self): size = wrapper.size diff --git a/Lib/test/test_bigmem.py b/Lib/test/test_bigmem.py --- a/Lib/test/test_bigmem.py +++ b/Lib/test/test_bigmem.py @@ -1,3 +1,13 @@ +"""Bigmem tests - tests for the 32-bit boundary in containers. + +These tests try to exercise the 32-bit boundary that is sometimes, if +rarely, exceeded in practice, but almost never tested. They are really only +meaningful on 64-bit builds on machines with a *lot* of memory, but the +tests are always run, usually with very low memory limits to make sure the +tests themselves don't suffer from bitrot. To run them for real, pass a +high memory limit to regrtest, with the -M option. +""" + from test import support from test.support import bigmemtest, _1G, _2G, _4G, precisionbigmemtest @@ -6,30 +16,45 @@ import sys import functools +# These tests all use one of the bigmemtest decorators to indicate how much +# memory they use and how much memory they need to be even meaningful. The +# decorators take two arguments: a 'memuse' indicator declaring +# (approximate) bytes per size-unit the test will use (at peak usage), and a +# 'minsize' indicator declaring a minimum *useful* size. A test that +# allocates a bytestring to test various operations near the end will have a +# minsize of at least 2Gb (or it wouldn't reach the 32-bit limit, so the +# test wouldn't be very useful) and a memuse of 1 (one byte per size-unit, +# if it allocates only one big string at a time.) +# +# When run with a memory limit set, both decorators skip tests that need +# more memory than available to be meaningful. The precisionbigmemtest will +# always pass minsize as size, even if there is much more memory available. +# The bigmemtest decorator will scale size upward to fill available memory. +# # Bigmem testing houserules: # # - Try not to allocate too many large objects. It's okay to rely on -# refcounting semantics, but don't forget that 's = create_largestring()' +# refcounting semantics, and don't forget that 's = create_largestring()' # doesn't release the old 's' (if it exists) until well after its new # value has been created. Use 'del s' before the create_largestring call. # -# - Do *not* compare large objects using assertEqual or similar. It's a -# lengthy operation and the errormessage will be utterly useless due to -# its size. To make sure whether a result has the right contents, better -# to use the strip or count methods, or compare meaningful slices. +# - Do *not* compare large objects using assertEqual, assertIn or similar. +# It's a lengthy operation and the errormessage will be utterly useless +# due to its size. To make sure whether a result has the right contents, +# better to use the strip or count methods, or compare meaningful slices. # # - Don't forget to test for large indices, offsets and results and such, -# in addition to large sizes. +# in addition to large sizes. Anything that probes the 32-bit boundary. # # - When repeating an object (say, a substring, or a small list) to create # a large object, make the subobject of a length that is not a power of # 2. That way, int-wrapping problems are more easily detected. # -# - While the bigmemtest decorator speaks of 'minsize', all tests will -# actually be called with a much smaller number too, in the normal -# test run (5Kb currently.) This is so the tests themselves get frequent -# testing. Consequently, always make all large allocations based on the -# passed-in 'size', and don't rely on the size being very large. Also, +# - While the bigmem decorators speak of 'minsize', all tests will actually +# be called with a much smaller number too, in the normal test run (5Kb +# currently.) This is so the tests themselves get frequent testing. +# Consequently, always make all large allocations based on the passed-in +# 'size', and don't rely on the size being very large. Also, # memuse-per-size should remain sane (less than a few thousand); if your # test uses more, adjust 'size' upward, instead. @@ -92,7 +117,7 @@ _ = self.from_latin1 s = _('-') * size tabsize = 8 - self.assertEqual(s.expandtabs(), s) + self.assertTrue(s.expandtabs() == s) del s slen, remainder = divmod(size, tabsize) s = _(' \t') * slen @@ -519,19 +544,19 @@ edge = _('-') * (size // 2) s = _('').join([edge, SUBSTR, edge]) del edge - self.assertIn(SUBSTR, s) - self.assertNotIn(SUBSTR * 2, s) - self.assertIn(_('-'), s) - self.assertNotIn(_('a'), s) + self.assertTrue(SUBSTR in s) + self.assertFalse(SUBSTR * 2 in s) + self.assertTrue(_('-') in s) + self.assertFalse(_('a') in s) s += _('a') - self.assertIn(_('a'), s) + self.assertTrue(_('a') in s) @bigmemtest(minsize=_2G + 10, memuse=2) def test_compare(self, size): _ = self.from_latin1 s1 = _('-') * size s2 = _('-') * size - self.assertEqual(s1, s2) + self.assertTrue(s1 == s2) del s2 s2 = s1 + _('a') self.assertFalse(s1 == s2) @@ -552,7 +577,7 @@ h1 = hash(s) del s s = _('\x00') * (size + 1) - self.assertFalse(h1 == hash(s)) + self.assertNotEqual(h1, hash(s)) class StrTest(unittest.TestCase, BaseStrTest): @@ -633,7 +658,7 @@ def test_format(self, size): s = '-' * size sf = '%s' % (s,) - self.assertEqual(s, sf) + self.assertTrue(s == sf) del sf sf = '..%s..' % (s,) self.assertEqual(len(sf), len(s) + 4) @@ -743,7 +768,7 @@ def test_compare(self, size): t1 = ('',) * size t2 = ('',) * size - self.assertEqual(t1, t2) + self.assertTrue(t1 == t2) del t2 t2 = ('',) * (size + 1) self.assertFalse(t1 == t2) @@ -774,9 +799,9 @@ def test_contains(self, size): t = (1, 2, 3, 4, 5) * size self.assertEqual(len(t), size * 5) - self.assertIn(5, t) - self.assertNotIn((1, 2, 3, 4, 5), t) - self.assertNotIn(0, t) + self.assertTrue(5 in t) + self.assertFalse((1, 2, 3, 4, 5) in t) + self.assertFalse(0 in t) @bigmemtest(minsize=_2G + 10, memuse=8) def test_hash(self, size): @@ -879,7 +904,7 @@ def test_compare(self, size): l1 = [''] * size l2 = [''] * size - self.assertEqual(l1, l2) + self.assertTrue(l1 == l2) del l2 l2 = [''] * (size + 1) self.assertFalse(l1 == l2) @@ -925,9 +950,9 @@ def test_contains(self, size): l = [1, 2, 3, 4, 5] * size self.assertEqual(len(l), size * 5) - self.assertIn(5, l) - self.assertNotIn([1, 2, 3, 4, 5], l) - self.assertNotIn(0, l) + self.assertTrue(5 in l) + self.assertFalse([1, 2, 3, 4, 5] in l) + self.assertFalse(0 in l) @bigmemtest(minsize=_2G + 10, memuse=8) def test_hash(self, size): -- Repository URL: http://hg.python.org/cpython From ncoghlan at gmail.com Fri Mar 25 12:37:09 2011 From: ncoghlan at gmail.com (Nick Coghlan) Date: Fri, 25 Mar 2011 21:37:09 +1000 Subject: [Python-checkins] cpython: Remove test_importable(). Couldn't see how to make this reliable across all In-Reply-To: References: Message-ID: On Fri, Mar 25, 2011 at 3:51 AM, raymond.hettinger wrote: > http://hg.python.org/cpython/rev/5adddc6be3c1 > changeset: ? 68902:5adddc6be3c1 > user: ? ? ? ?Raymond Hettinger > date: ? ? ? ?Thu Mar 24 10:51:06 2011 -0700 > summary: > ?Remove test_importable(). ?Couldn't see how to make this reliable across all platforms. For this particular use case, a temporary directory added to sys,path, then some subsequent cleanup of sys.modules, sys.path and sys.path_importer_cache would likely do the trick. I've actually never been a fan of using TESTFN in tests - the tempfile module always struck me as being significantly more useful. It also makes tidying up the files afterwards really easy - the temporary directory context manager will blow everything away for you. Then again, quite a few of the tests I've written involved convoluted module hierarchies, so I'm likely a little biased by my typical use cases :) Cheers, Nick. -- Nick Coghlan?? |?? ncoghlan at gmail.com?? |?? Brisbane, Australia From python-checkins at python.org Fri Mar 25 13:27:13 2011 From: python-checkins at python.org (ezio.melotti) Date: Fri, 25 Mar 2011 13:27:13 +0100 Subject: [Python-checkins] cpython (3.1): #2650: Refactor the tests for re.escape. Message-ID: http://hg.python.org/cpython/rev/1402c719b7cf changeset: 68922:1402c719b7cf branch: 3.1 parent: 68918:503be06d110b user: Ezio Melotti date: Fri Mar 25 14:08:44 2011 +0200 summary: #2650: Refactor the tests for re.escape. files: Lib/test/test_re.py | 62 +++++++++++++++++++++----------- 1 files changed, 40 insertions(+), 22 deletions(-) diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -1,7 +1,10 @@ from test.support import verbose, run_unittest import re from re import Scanner -import sys, os, traceback +import os +import sys +import string +import traceback from weakref import proxy # Misc tests from Tim Peters' re.doc @@ -411,31 +414,46 @@ self.assertEqual(re.search("\s(b)", " b").group(1), "b") self.assertEqual(re.search("a\s", "a ").group(0), "a ") + def assertMatch(self, pattern, text, match=None, span=None, + matcher=re.match): + if match is None and span is None: + # the pattern matches the whole text + match = text + span = (0, len(text)) + elif match is None or span is None: + raise ValueError('If match is not None, span should be specified ' + '(and vice versa).') + m = matcher(pattern, text) + self.assertTrue(m) + self.assertEqual(m.group(), match) + self.assertEqual(m.span(), span) + def test_re_escape(self): - p="" - self.assertEqual(re.escape(p), p) - for i in range(0, 256): - p = p + chr(i) - self.assertEqual(re.match(re.escape(chr(i)), chr(i)) is not None, - True) - self.assertEqual(re.match(re.escape(chr(i)), chr(i)).span(), (0,1)) - - pat=re.compile(re.escape(p)) - self.assertEqual(pat.match(p) is not None, True) - self.assertEqual(pat.match(p).span(), (0,256)) + alnum_chars = string.ascii_letters + string.digits + p = ''.join(chr(i) for i in range(256)) + for c in p: + if c in alnum_chars: + self.assertEqual(re.escape(c), c) + elif c == '\x00': + self.assertEqual(re.escape(c), '\\000') + else: + self.assertEqual(re.escape(c), '\\' + c) + self.assertMatch(re.escape(c), c) + self.assertMatch(re.escape(p), p) def test_re_escape_byte(self): - p=b"" - self.assertEqual(re.escape(p), p) - for i in range(0, 256): + alnum_chars = (string.ascii_letters + string.digits).encode('ascii') + p = bytes(range(256)) + for i in p: b = bytes([i]) - p += b - self.assertEqual(re.match(re.escape(b), b) is not None, True) - self.assertEqual(re.match(re.escape(b), b).span(), (0,1)) - - pat=re.compile(re.escape(p)) - self.assertEqual(pat.match(p) is not None, True) - self.assertEqual(pat.match(p).span(), (0,256)) + if b in alnum_chars: + self.assertEqual(re.escape(b), b) + elif i == 0: + self.assertEqual(re.escape(b), b'\\000') + else: + self.assertEqual(re.escape(b), b'\\' + b) + self.assertMatch(re.escape(b), b) + self.assertMatch(re.escape(p), p) def pickle_test(self, pickle): oldpat = re.compile('a(?:b|(c|e){1,2}?|d)+?(.)') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 13:27:14 2011 From: python-checkins at python.org (ezio.melotti) Date: Fri, 25 Mar 2011 13:27:14 +0100 Subject: [Python-checkins] cpython (3.1): #2650: Add tests with non-ascii chars for re.escape. Message-ID: http://hg.python.org/cpython/rev/9147f7ed75b3 changeset: 68923:9147f7ed75b3 branch: 3.1 user: Ezio Melotti date: Fri Mar 25 14:09:33 2011 +0200 summary: #2650: Add tests with non-ascii chars for re.escape. files: Lib/test/test_re.py | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -455,6 +455,22 @@ self.assertMatch(re.escape(b), b) self.assertMatch(re.escape(p), p) + def test_re_escape_non_ascii(self): + s = 'xxx\u2620\u2620\u2620xxx' + s_escaped = re.escape(s) + self.assertEqual(s_escaped, 'xxx\\\u2620\\\u2620\\\u2620xxx') + self.assertMatch(s_escaped, s) + self.assertMatch('.%s+.' % re.escape('\u2620'), s, + 'x\u2620\u2620\u2620x', (2, 7), re.search) + + def test_re_escape_non_ascii_bytes(self): + b = 'y\u2620y\u2620y'.encode('utf-8') + b_escaped = re.escape(b) + self.assertEqual(b_escaped, b'y\\\xe2\\\x98\\\xa0y\\\xe2\\\x98\\\xa0y') + self.assertMatch(b_escaped, b) + res = re.findall(re.escape('\u2620'.encode('utf-8')), b) + self.assertEqual(len(res), 2) + def pickle_test(self, pickle): oldpat = re.compile('a(?:b|(c|e){1,2}?|d)+?(.)') s = pickle.dumps(oldpat) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 13:27:15 2011 From: python-checkins at python.org (ezio.melotti) Date: Fri, 25 Mar 2011 13:27:15 +0100 Subject: [Python-checkins] cpython (3.1): #2650: Refactor re.escape to use enumerate(). Message-ID: http://hg.python.org/cpython/rev/ed02db9921ac changeset: 68924:ed02db9921ac branch: 3.1 user: Ezio Melotti date: Fri Mar 25 14:19:30 2011 +0200 summary: #2650: Refactor re.escape to use enumerate(). files: Lib/re.py | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/Lib/re.py b/Lib/re.py --- a/Lib/re.py +++ b/Lib/re.py @@ -223,8 +223,7 @@ if isinstance(pattern, str): alphanum = _alphanum_str s = list(pattern) - for i in range(len(pattern)): - c = pattern[i] + for i, c in enumerate(pattern): if c not in alphanum: if c == "\000": s[i] = "\\000" -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 13:27:21 2011 From: python-checkins at python.org (ezio.melotti) Date: Fri, 25 Mar 2011 13:27:21 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): #2650: Merge with 3.1. Message-ID: http://hg.python.org/cpython/rev/42ab3ebb8c2c changeset: 68925:42ab3ebb8c2c branch: 3.2 parent: 68919:c5b47a746a7f parent: 68924:ed02db9921ac user: Ezio Melotti date: Fri Mar 25 14:25:36 2011 +0200 summary: #2650: Merge with 3.1. files: Lib/re.py | 3 +- Lib/test/test_re.py | 75 +++++++++++++++++++++++--------- 2 files changed, 55 insertions(+), 23 deletions(-) diff --git a/Lib/re.py b/Lib/re.py --- a/Lib/re.py +++ b/Lib/re.py @@ -224,8 +224,7 @@ if isinstance(pattern, str): alphanum = _alphanum_str s = list(pattern) - for i in range(len(pattern)): - c = pattern[i] + for i, c in enumerate(pattern): if c not in alphanum: if c == "\000": s[i] = "\\000" diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -1,7 +1,9 @@ from test.support import verbose, run_unittest import re from re import Scanner -import sys, traceback +import sys +import string +import traceback from weakref import proxy # Misc tests from Tim Peters' re.doc @@ -411,31 +413,62 @@ self.assertEqual(re.search("\s(b)", " b").group(1), "b") self.assertEqual(re.search("a\s", "a ").group(0), "a ") + def assertMatch(self, pattern, text, match=None, span=None, + matcher=re.match): + if match is None and span is None: + # the pattern matches the whole text + match = text + span = (0, len(text)) + elif match is None or span is None: + raise ValueError('If match is not None, span should be specified ' + '(and vice versa).') + m = matcher(pattern, text) + self.assertTrue(m) + self.assertEqual(m.group(), match) + self.assertEqual(m.span(), span) + def test_re_escape(self): - p="" - self.assertEqual(re.escape(p), p) - for i in range(0, 256): - p = p + chr(i) - self.assertEqual(re.match(re.escape(chr(i)), chr(i)) is not None, - True) - self.assertEqual(re.match(re.escape(chr(i)), chr(i)).span(), (0,1)) - - pat=re.compile(re.escape(p)) - self.assertEqual(pat.match(p) is not None, True) - self.assertEqual(pat.match(p).span(), (0,256)) + alnum_chars = string.ascii_letters + string.digits + p = ''.join(chr(i) for i in range(256)) + for c in p: + if c in alnum_chars: + self.assertEqual(re.escape(c), c) + elif c == '\x00': + self.assertEqual(re.escape(c), '\\000') + else: + self.assertEqual(re.escape(c), '\\' + c) + self.assertMatch(re.escape(c), c) + self.assertMatch(re.escape(p), p) def test_re_escape_byte(self): - p=b"" - self.assertEqual(re.escape(p), p) - for i in range(0, 256): + alnum_chars = (string.ascii_letters + string.digits).encode('ascii') + p = bytes(range(256)) + for i in p: b = bytes([i]) - p += b - self.assertEqual(re.match(re.escape(b), b) is not None, True) - self.assertEqual(re.match(re.escape(b), b).span(), (0,1)) + if b in alnum_chars: + self.assertEqual(re.escape(b), b) + elif i == 0: + self.assertEqual(re.escape(b), b'\\000') + else: + self.assertEqual(re.escape(b), b'\\' + b) + self.assertMatch(re.escape(b), b) + self.assertMatch(re.escape(p), p) - pat=re.compile(re.escape(p)) - self.assertEqual(pat.match(p) is not None, True) - self.assertEqual(pat.match(p).span(), (0,256)) + def test_re_escape_non_ascii(self): + s = 'xxx\u2620\u2620\u2620xxx' + s_escaped = re.escape(s) + self.assertEqual(s_escaped, 'xxx\\\u2620\\\u2620\\\u2620xxx') + self.assertMatch(s_escaped, s) + self.assertMatch('.%s+.' % re.escape('\u2620'), s, + 'x\u2620\u2620\u2620x', (2, 7), re.search) + + def test_re_escape_non_ascii_bytes(self): + b = 'y\u2620y\u2620y'.encode('utf-8') + b_escaped = re.escape(b) + self.assertEqual(b_escaped, b'y\\\xe2\\\x98\\\xa0y\\\xe2\\\x98\\\xa0y') + self.assertMatch(b_escaped, b) + res = re.findall(re.escape('\u2620'.encode('utf-8')), b) + self.assertEqual(len(res), 2) def pickle_test(self, pickle): oldpat = re.compile('a(?:b|(c|e){1,2}?|d)+?(.)') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 13:27:22 2011 From: python-checkins at python.org (ezio.melotti) Date: Fri, 25 Mar 2011 13:27:22 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): #2650: Merge with 3.2. Message-ID: http://hg.python.org/cpython/rev/9da300ad8255 changeset: 68926:9da300ad8255 parent: 68921:11dc3f270594 parent: 68925:42ab3ebb8c2c user: Ezio Melotti date: Fri Mar 25 14:26:56 2011 +0200 summary: #2650: Merge with 3.2. files: Lib/re.py | 3 +- Lib/test/test_re.py | 75 +++++++++++++++++++++++--------- 2 files changed, 55 insertions(+), 23 deletions(-) diff --git a/Lib/re.py b/Lib/re.py --- a/Lib/re.py +++ b/Lib/re.py @@ -224,8 +224,7 @@ if isinstance(pattern, str): alphanum = _alphanum_str s = list(pattern) - for i in range(len(pattern)): - c = pattern[i] + for i, c in enumerate(pattern): if c not in alphanum: if c == "\000": s[i] = "\\000" diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -1,7 +1,9 @@ from test.support import verbose, run_unittest import re from re import Scanner -import sys, traceback +import sys +import string +import traceback from weakref import proxy # Misc tests from Tim Peters' re.doc @@ -411,31 +413,62 @@ self.assertEqual(re.search("\s(b)", " b").group(1), "b") self.assertEqual(re.search("a\s", "a ").group(0), "a ") + def assertMatch(self, pattern, text, match=None, span=None, + matcher=re.match): + if match is None and span is None: + # the pattern matches the whole text + match = text + span = (0, len(text)) + elif match is None or span is None: + raise ValueError('If match is not None, span should be specified ' + '(and vice versa).') + m = matcher(pattern, text) + self.assertTrue(m) + self.assertEqual(m.group(), match) + self.assertEqual(m.span(), span) + def test_re_escape(self): - p="" - self.assertEqual(re.escape(p), p) - for i in range(0, 256): - p = p + chr(i) - self.assertEqual(re.match(re.escape(chr(i)), chr(i)) is not None, - True) - self.assertEqual(re.match(re.escape(chr(i)), chr(i)).span(), (0,1)) - - pat=re.compile(re.escape(p)) - self.assertEqual(pat.match(p) is not None, True) - self.assertEqual(pat.match(p).span(), (0,256)) + alnum_chars = string.ascii_letters + string.digits + p = ''.join(chr(i) for i in range(256)) + for c in p: + if c in alnum_chars: + self.assertEqual(re.escape(c), c) + elif c == '\x00': + self.assertEqual(re.escape(c), '\\000') + else: + self.assertEqual(re.escape(c), '\\' + c) + self.assertMatch(re.escape(c), c) + self.assertMatch(re.escape(p), p) def test_re_escape_byte(self): - p=b"" - self.assertEqual(re.escape(p), p) - for i in range(0, 256): + alnum_chars = (string.ascii_letters + string.digits).encode('ascii') + p = bytes(range(256)) + for i in p: b = bytes([i]) - p += b - self.assertEqual(re.match(re.escape(b), b) is not None, True) - self.assertEqual(re.match(re.escape(b), b).span(), (0,1)) + if b in alnum_chars: + self.assertEqual(re.escape(b), b) + elif i == 0: + self.assertEqual(re.escape(b), b'\\000') + else: + self.assertEqual(re.escape(b), b'\\' + b) + self.assertMatch(re.escape(b), b) + self.assertMatch(re.escape(p), p) - pat=re.compile(re.escape(p)) - self.assertEqual(pat.match(p) is not None, True) - self.assertEqual(pat.match(p).span(), (0,256)) + def test_re_escape_non_ascii(self): + s = 'xxx\u2620\u2620\u2620xxx' + s_escaped = re.escape(s) + self.assertEqual(s_escaped, 'xxx\\\u2620\\\u2620\\\u2620xxx') + self.assertMatch(s_escaped, s) + self.assertMatch('.%s+.' % re.escape('\u2620'), s, + 'x\u2620\u2620\u2620x', (2, 7), re.search) + + def test_re_escape_non_ascii_bytes(self): + b = 'y\u2620y\u2620y'.encode('utf-8') + b_escaped = re.escape(b) + self.assertEqual(b_escaped, b'y\\\xe2\\\x98\\\xa0y\\\xe2\\\x98\\\xa0y') + self.assertMatch(b_escaped, b) + res = re.findall(re.escape('\u2620'.encode('utf-8')), b) + self.assertEqual(len(res), 2) def pickle_test(self, pickle): oldpat = re.compile('a(?:b|(c|e){1,2}?|d)+?(.)') -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 13:51:07 2011 From: python-checkins at python.org (ezio.melotti) Date: Fri, 25 Mar 2011 13:51:07 +0100 Subject: [Python-checkins] cpython (2.7): #2650: Refactor re.escape and its tests. Message-ID: http://hg.python.org/cpython/rev/d52b1faa7b11 changeset: 68927:d52b1faa7b11 branch: 2.7 parent: 68907:44749e501982 user: Ezio Melotti date: Fri Mar 25 14:50:52 2011 +0200 summary: #2650: Refactor re.escape and its tests. files: Lib/re.py | 3 +- Lib/test/test_re.py | 66 ++++++++++++++++++++++++++++----- 2 files changed, 57 insertions(+), 12 deletions(-) diff --git a/Lib/re.py b/Lib/re.py --- a/Lib/re.py +++ b/Lib/re.py @@ -207,8 +207,7 @@ "Escape all non-alphanumeric characters in pattern." s = list(pattern) alphanum = _alphanum - for i in range(len(pattern)): - c = pattern[i] + for i, c in enumerate(pattern): if c not in alphanum: if c == "\000": s[i] = "\\000" diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -1,7 +1,9 @@ from test.test_support import verbose, run_unittest, import_module import re from re import Scanner -import sys, traceback +import sys +import string +import traceback from weakref import proxy # Misc tests from Tim Peters' re.doc @@ -429,17 +431,61 @@ self.assertEqual(re.search("\s(b)", " b").group(1), "b") self.assertEqual(re.search("a\s", "a ").group(0), "a ") + def assertMatch(self, pattern, text, match=None, span=None, + matcher=re.match): + if match is None and span is None: + # the pattern matches the whole text + match = text + span = (0, len(text)) + elif match is None or span is None: + raise ValueError('If match is not None, span should be specified ' + '(and vice versa).') + m = matcher(pattern, text) + self.assertTrue(m) + self.assertEqual(m.group(), match) + self.assertEqual(m.span(), span) + def test_re_escape(self): - p="" - for i in range(0, 256): - p = p + chr(i) - self.assertEqual(re.match(re.escape(chr(i)), chr(i)) is not None, - True) - self.assertEqual(re.match(re.escape(chr(i)), chr(i)).span(), (0,1)) + alnum_chars = string.ascii_letters + string.digits + p = u''.join(unichr(i) for i in range(256)) + for c in p: + if c in alnum_chars: + self.assertEqual(re.escape(c), c) + elif c == u'\x00': + self.assertEqual(re.escape(c), u'\\000') + else: + self.assertEqual(re.escape(c), u'\\' + c) + self.assertMatch(re.escape(c), c) + self.assertMatch(re.escape(p), p) - pat=re.compile(re.escape(p)) - self.assertEqual(pat.match(p) is not None, True) - self.assertEqual(pat.match(p).span(), (0,256)) + def test_re_escape_byte(self): + alnum_chars = (string.ascii_letters + string.digits).encode('ascii') + p = ''.join(chr(i) for i in range(256)) + for b in p: + if b in alnum_chars: + self.assertEqual(re.escape(b), b) + elif b == b'\x00': + self.assertEqual(re.escape(b), b'\\000') + else: + self.assertEqual(re.escape(b), b'\\' + b) + self.assertMatch(re.escape(b), b) + self.assertMatch(re.escape(p), p) + + def test_re_escape_non_ascii(self): + s = u'xxx\u2620\u2620\u2620xxx' + s_escaped = re.escape(s) + self.assertEqual(s_escaped, u'xxx\\\u2620\\\u2620\\\u2620xxx') + self.assertMatch(s_escaped, s) + self.assertMatch(u'.%s+.' % re.escape(u'\u2620'), s, + u'x\u2620\u2620\u2620x', (2, 7), re.search) + + def test_re_escape_non_ascii_bytes(self): + b = u'y\u2620y\u2620y'.encode('utf-8') + b_escaped = re.escape(b) + self.assertEqual(b_escaped, b'y\\\xe2\\\x98\\\xa0y\\\xe2\\\x98\\\xa0y') + self.assertMatch(b_escaped, b) + res = re.findall(re.escape(u'\u2620'.encode('utf-8')), b) + self.assertEqual(len(res), 2) def test_pickling(self): import pickle -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 20:32:56 2011 From: python-checkins at python.org (r.david.murray) Date: Fri, 25 Mar 2011 20:32:56 +0100 Subject: [Python-checkins] cpython (3.2): #11584: Since __getitem__ returns headers, make decode_header handle them. Message-ID: http://hg.python.org/cpython/rev/b21fdfa0019c changeset: 68928:b21fdfa0019c branch: 3.2 parent: 68925:42ab3ebb8c2c user: R David Murray date: Fri Mar 25 15:10:55 2011 -0400 summary: #11584: Since __getitem__ returns headers, make decode_header handle them. Why I consider this a bug rather than an API change: the API change was to Message, which didn't used to return Headers unless you added them yourself. Now it does (for 8bit binary header input), so decode_header needs to be able to handle them. files: Lib/email/header.py | 6 ++++++ Lib/email/test/test_email.py | 14 ++++++++++++++ 2 files changed, 20 insertions(+), 0 deletions(-) diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -66,9 +66,15 @@ otherwise a lower-case string containing the name of the character set specified in the encoded string. + header may be a string that may or may not contain RFC2047 encoded words, + or it may be a Header object. + An email.errors.HeaderParseError may be raised when certain decoding error occurs (e.g. a base64 decoding exception). """ + # If it is a Header object, we can just return the chunks. + if hasattr(header, '_chunks'): + return list(header._chunks) # If no encoding, just return the header with no charset. if not ecre.search(header): return [(header, None)] diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -3918,6 +3918,20 @@ h.append(x, errors='replace') eq(str(h), e) + def test_escaped_8bit_header(self): + x = b'Ynwp4dUEbay Auction Semiar- No Charge \x96 Earn Big' + x = x.decode('ascii', 'surrogateescape') + h = Header(x, charset=email.charset.UNKNOWN8BIT) + self.assertEqual(str(h), + 'Ynwp4dUEbay Auction Semiar- No Charge \uFFFD Earn Big') + self.assertEqual(email.header.decode_header(h), [(x, 'unknown-8bit')]) + + def test_modify_returned_list_does_not_change_header(self): + h = Header('test') + chunks = email.header.decode_header(h) + chunks.append(('ascii', 'test2')) + self.assertEqual(str(h), 'test') + def test_encoded_adjacent_nonencoded(self): eq = self.assertEqual h = Header() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 20:32:57 2011 From: python-checkins at python.org (r.david.murray) Date: Fri, 25 Mar 2011 20:32:57 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #11584: Since __getitem__ returns headers, make decode_header handle them. Message-ID: http://hg.python.org/cpython/rev/12e39cd7a0e4 changeset: 68929:12e39cd7a0e4 parent: 68926:9da300ad8255 parent: 68928:b21fdfa0019c user: R David Murray date: Fri Mar 25 15:31:52 2011 -0400 summary: Merge #11584: Since __getitem__ returns headers, make decode_header handle them. files: Lib/email/header.py | 6 ++++++ Lib/test/test_email/test_email.py | 14 ++++++++++++++ 2 files changed, 20 insertions(+), 0 deletions(-) diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -66,9 +66,15 @@ otherwise a lower-case string containing the name of the character set specified in the encoded string. + header may be a string that may or may not contain RFC2047 encoded words, + or it may be a Header object. + An email.errors.HeaderParseError may be raised when certain decoding error occurs (e.g. a base64 decoding exception). """ + # If it is a Header object, we can just return the chunks. + if hasattr(header, '_chunks'): + return list(header._chunks) # If no encoding, just return the header with no charset. if not ecre.search(header): return [(header, None)] diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -3925,6 +3925,20 @@ h.append(x, errors='replace') eq(str(h), e) + def test_escaped_8bit_header(self): + x = b'Ynwp4dUEbay Auction Semiar- No Charge \x96 Earn Big' + x = x.decode('ascii', 'surrogateescape') + h = Header(x, charset=email.charset.UNKNOWN8BIT) + self.assertEqual(str(h), + 'Ynwp4dUEbay Auction Semiar- No Charge \uFFFD Earn Big') + self.assertEqual(email.header.decode_header(h), [(x, 'unknown-8bit')]) + + def test_modify_returned_list_does_not_change_header(self): + h = Header('test') + chunks = email.header.decode_header(h) + chunks.append(('ascii', 'test2')) + self.assertEqual(str(h), 'test') + def test_encoded_adjacent_nonencoded(self): eq = self.assertEqual h = Header() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 20:41:44 2011 From: python-checkins at python.org (raymond.hettinger) Date: Fri, 25 Mar 2011 20:41:44 +0100 Subject: [Python-checkins] cpython (3.2): Issue #11071: Fix whatsnew description of O/S access to raw bytes. Message-ID: http://hg.python.org/cpython/rev/a805d4415e34 changeset: 68930:a805d4415e34 branch: 3.2 parent: 68928:b21fdfa0019c user: Raymond Hettinger date: Fri Mar 25 12:41:07 2011 -0700 summary: Issue #11071: Fix whatsnew description of O/S access to raw bytes. files: Doc/whatsnew/3.2.rst | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -1499,11 +1499,11 @@ >>> os.fsencode(filename) b'Sehensw\xc3\xbcrdigkeiten' -Some operating systems allow direct access to the unencoded bytes in the +Some operating systems allow direct access to encoded bytes in the environment. If so, the :attr:`os.supports_bytes_environ` constant will be true. -For direct access to unencoded environment variables (if available), +For direct access to encoded environment variables (if available), use the new :func:`os.getenvb` function or use :data:`os.environb` which is a bytes version of :data:`os.environ`. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 20:41:45 2011 From: python-checkins at python.org (raymond.hettinger) Date: Fri, 25 Mar 2011 20:41:45 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #11071: Fix whatsnew description of O/S access to raw bytes. Message-ID: http://hg.python.org/cpython/rev/df1a1774a544 changeset: 68931:df1a1774a544 parent: 68929:12e39cd7a0e4 parent: 68930:a805d4415e34 user: Raymond Hettinger date: Fri Mar 25 12:41:34 2011 -0700 summary: Issue #11071: Fix whatsnew description of O/S access to raw bytes. files: Doc/whatsnew/3.2.rst | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -1499,11 +1499,11 @@ >>> os.fsencode(filename) b'Sehensw\xc3\xbcrdigkeiten' -Some operating systems allow direct access to the unencoded bytes in the +Some operating systems allow direct access to encoded bytes in the environment. If so, the :attr:`os.supports_bytes_environ` constant will be true. -For direct access to unencoded environment variables (if available), +For direct access to encoded environment variables (if available), use the new :func:`os.getenvb` function or use :data:`os.environb` which is a bytes version of :data:`os.environ`. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 21:21:33 2011 From: python-checkins at python.org (r.david.murray) Date: Fri, 25 Mar 2011 21:21:33 +0100 Subject: [Python-checkins] cpython (3.1): #9557: eliminate 3 seconds of static overhead from test_mailbox. Message-ID: http://hg.python.org/cpython/rev/9a184d8211f5 changeset: 68932:9a184d8211f5 branch: 3.1 parent: 68924:ed02db9921ac user: R David Murray date: Fri Mar 25 16:03:47 2011 -0400 summary: #9557: eliminate 3 seconds of static overhead from test_mailbox. This patch doesn't quite fix the 'run in a VM with Samba share' timing problem, but it should at least make it better. files: Lib/test/test_mailbox.py | 18 +++++++++++------- 1 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Lib/test/test_mailbox.py b/Lib/test/test_mailbox.py --- a/Lib/test/test_mailbox.py +++ b/Lib/test/test_mailbox.py @@ -741,8 +741,6 @@ self.assertFalse((perms & 0o111)) # Execute bits should all be off. def test_reread(self): - # Wait for 2 seconds - time.sleep(2) # Initially, the mailbox has not been read and the time is null. assert getattr(self._box, '_last_read', None) is None @@ -751,15 +749,21 @@ self._box._refresh() assert getattr(self._box, '_last_read', None) is not None - # Try calling _refresh() again; the modification times shouldn't have - # changed, so the mailbox should not be re-reading. Re-reading causes - # the ._toc attribute to be assigned a new dictionary object, so - # we'll check that the ._toc attribute isn't a different object. + # Put the last modified times more than one second into the past + # (because mtime has a one second granularity, a refresh is done + # unconditionally if called for within the same second, just in case + # the mbox has changed). + for subdir in ('cur', 'new'): + os.utime(os.path.join(self._box._path, subdir), + (time.time()-5,)*2) + + # Re-reading causes the ._toc attribute to be assigned a new dictionary + # object, so we'll check that the ._toc attribute isn't a different + # object. orig_toc = self._box._toc def refreshed(): return self._box._toc is not orig_toc - time.sleep(1) # Wait 1sec to ensure time.time()'s value changes self._box._refresh() assert not refreshed() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 21:21:34 2011 From: python-checkins at python.org (r.david.murray) Date: Fri, 25 Mar 2011 21:21:34 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge #9557: eliminate 3 seconds of static overhead from test_mailbox. Message-ID: http://hg.python.org/cpython/rev/268ab32a89a9 changeset: 68933:268ab32a89a9 branch: 3.2 parent: 68930:a805d4415e34 parent: 68932:9a184d8211f5 user: R David Murray date: Fri Mar 25 16:16:54 2011 -0400 summary: Merge #9557: eliminate 3 seconds of static overhead from test_mailbox. files: Lib/test/test_mailbox.py | 18 +++++++++++------- 1 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Lib/test/test_mailbox.py b/Lib/test/test_mailbox.py --- a/Lib/test/test_mailbox.py +++ b/Lib/test/test_mailbox.py @@ -869,8 +869,6 @@ self.assertFalse((perms & 0o111)) # Execute bits should all be off. def test_reread(self): - # Wait for 2 seconds - time.sleep(2) # Initially, the mailbox has not been read and the time is null. assert getattr(self._box, '_last_read', None) is None @@ -879,15 +877,21 @@ self._box._refresh() assert getattr(self._box, '_last_read', None) is not None - # Try calling _refresh() again; the modification times shouldn't have - # changed, so the mailbox should not be re-reading. Re-reading causes - # the ._toc attribute to be assigned a new dictionary object, so - # we'll check that the ._toc attribute isn't a different object. + # Put the last modified times more than one second into the past + # (because mtime has a one second granularity, a refresh is done + # unconditionally if called for within the same second, just in case + # the mbox has changed). + for subdir in ('cur', 'new'): + os.utime(os.path.join(self._box._path, subdir), + (time.time()-5,)*2) + + # Re-reading causes the ._toc attribute to be assigned a new dictionary + # object, so we'll check that the ._toc attribute isn't a different + # object. orig_toc = self._box._toc def refreshed(): return self._box._toc is not orig_toc - time.sleep(1) # Wait 1sec to ensure time.time()'s value changes self._box._refresh() assert not refreshed() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 21:21:40 2011 From: python-checkins at python.org (r.david.murray) Date: Fri, 25 Mar 2011 21:21:40 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #9557: eliminate 3 seconds of static overhead from test_mailbox. Message-ID: http://hg.python.org/cpython/rev/03c7a83bbdd3 changeset: 68934:03c7a83bbdd3 parent: 68931:df1a1774a544 parent: 68933:268ab32a89a9 user: R David Murray date: Fri Mar 25 16:20:16 2011 -0400 summary: Merge #9557: eliminate 3 seconds of static overhead from test_mailbox. files: Lib/test/test_mailbox.py | 18 +++++++++++------- 1 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Lib/test/test_mailbox.py b/Lib/test/test_mailbox.py --- a/Lib/test/test_mailbox.py +++ b/Lib/test/test_mailbox.py @@ -869,8 +869,6 @@ self.assertFalse((perms & 0o111)) # Execute bits should all be off. def test_reread(self): - # Wait for 2 seconds - time.sleep(2) # Initially, the mailbox has not been read and the time is null. assert getattr(self._box, '_last_read', None) is None @@ -879,15 +877,21 @@ self._box._refresh() assert getattr(self._box, '_last_read', None) is not None - # Try calling _refresh() again; the modification times shouldn't have - # changed, so the mailbox should not be re-reading. Re-reading causes - # the ._toc attribute to be assigned a new dictionary object, so - # we'll check that the ._toc attribute isn't a different object. + # Put the last modified times more than one second into the past + # (because mtime has a one second granularity, a refresh is done + # unconditionally if called for within the same second, just in case + # the mbox has changed). + for subdir in ('cur', 'new'): + os.utime(os.path.join(self._box._path, subdir), + (time.time()-5,)*2) + + # Re-reading causes the ._toc attribute to be assigned a new dictionary + # object, so we'll check that the ._toc attribute isn't a different + # object. orig_toc = self._box._toc def refreshed(): return self._box._toc is not orig_toc - time.sleep(1) # Wait 1sec to ensure time.time()'s value changes self._box._refresh() assert not refreshed() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 22:16:48 2011 From: python-checkins at python.org (raymond.hettinger) Date: Fri, 25 Mar 2011 22:16:48 +0100 Subject: [Python-checkins] cpython (3.2): Issue #11666: Teach pydoc to display full help for named tuples Message-ID: http://hg.python.org/cpython/rev/daa408ad7440 changeset: 68935:daa408ad7440 branch: 3.2 parent: 68933:268ab32a89a9 user: Raymond Hettinger date: Fri Mar 25 14:15:24 2011 -0700 summary: Issue #11666: Teach pydoc to display full help for named tuples files: Lib/pydoc.py | 21 ++++++++++++--------- Lib/test/test_pydoc.py | 12 +++++++++++- Misc/NEWS | 3 +++ 3 files changed, 26 insertions(+), 10 deletions(-) diff --git a/Lib/pydoc.py b/Lib/pydoc.py --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -165,7 +165,7 @@ no.append(x) return yes, no -def visiblename(name, all=None): +def visiblename(name, all=None, obj=None): """Decide whether to show documentation on a variable.""" # Certain special names are redundant. _hidden_names = ('__builtins__', '__doc__', '__file__', '__path__', @@ -175,6 +175,9 @@ if name in _hidden_names: return 0 # Private names are hidden, but special names are displayed. if name.startswith('__') and name.endswith('__'): return 1 + # Namedtuples have public fields and methods with a single leading underscore + if name.startswith('_') and hasattr(obj, '_fields'): + return True if all is not None: # only document that which the programmer exported in __all__ return name in all @@ -642,7 +645,7 @@ # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or (inspect.getmodule(value) or object) is object): - if visiblename(key, all): + if visiblename(key, all, object): classes.append((key, value)) cdict[key] = cdict[value] = '#' + key for key, value in classes: @@ -658,13 +661,13 @@ # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or inspect.isbuiltin(value) or inspect.getmodule(value) is object): - if visiblename(key, all): + if visiblename(key, all, object): funcs.append((key, value)) fdict[key] = '#-' + key if inspect.isfunction(value): fdict[value] = fdict[key] data = [] for key, value in inspect.getmembers(object, isdata): - if visiblename(key, all): + if visiblename(key, all, object): data.append((key, value)) doc = self.markup(getdoc(object), self.preformat, fdict, cdict) @@ -789,7 +792,7 @@ attrs = [(name, kind, cls, value) for name, kind, cls, value in classify_class_attrs(object) - if visiblename(name)] + if visiblename(name, obj=object)] mdict = {} for key, kind, homecls, value in attrs: @@ -1056,18 +1059,18 @@ # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or (inspect.getmodule(value) or object) is object): - if visiblename(key, all): + if visiblename(key, all, object): classes.append((key, value)) funcs = [] for key, value in inspect.getmembers(object, inspect.isroutine): # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or inspect.isbuiltin(value) or inspect.getmodule(value) is object): - if visiblename(key, all): + if visiblename(key, all, object): funcs.append((key, value)) data = [] for key, value in inspect.getmembers(object, isdata): - if visiblename(key, all): + if visiblename(key, all, object): data.append((key, value)) modpkgs = [] @@ -1206,7 +1209,7 @@ attrs = [(name, kind, cls, value) for name, kind, cls, value in classify_class_attrs(object) - if visiblename(name)] + if visiblename(name, obj=object)] while attrs: if mro: diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -12,9 +12,10 @@ import xml.etree import textwrap from io import StringIO +from collections import namedtuple from contextlib import contextmanager from test.support import TESTFN, forget, rmtree, EnvironmentVarGuard, \ - reap_children, captured_output + reap_children, captured_output, captured_stdout from test import pydoc_mod @@ -373,6 +374,15 @@ finally: pydoc.getpager = getpager_old + def test_namedtuple_public_underscore(self): + NT = namedtuple('NT', ['abc', 'def'], rename=True) + with captured_stdout() as help_io: + help(NT) + helptext = help_io.getvalue() + self.assertIn('_1', helptext) + self.assertIn('_replace', helptext) + self.assertIn('_asdict', helptext) + class TestDescriptions(unittest.TestCase): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -51,6 +51,9 @@ - Issue #11628: cmp_to_key generated class should use __slots__ +- Issue #11666: let help() display named tuple attributes and methods + that start with a leading underscore. + - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 22:16:48 2011 From: python-checkins at python.org (raymond.hettinger) Date: Fri, 25 Mar 2011 22:16:48 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #11666: Teach pydoc to display full help for named tuples Message-ID: http://hg.python.org/cpython/rev/374982e17f36 changeset: 68936:374982e17f36 parent: 68934:03c7a83bbdd3 parent: 68935:daa408ad7440 user: Raymond Hettinger date: Fri Mar 25 14:16:13 2011 -0700 summary: Issue #11666: Teach pydoc to display full help for named tuples files: Lib/pydoc.py | 21 ++++++++++++--------- Lib/test/test_pydoc.py | 12 +++++++++++- Misc/NEWS | 3 +++ 3 files changed, 26 insertions(+), 10 deletions(-) diff --git a/Lib/pydoc.py b/Lib/pydoc.py --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -165,7 +165,7 @@ no.append(x) return yes, no -def visiblename(name, all=None): +def visiblename(name, all=None, obj=None): """Decide whether to show documentation on a variable.""" # Certain special names are redundant. if name in {'__builtins__', '__doc__', '__file__', '__path__', @@ -175,6 +175,9 @@ return 0 # Private names are hidden, but special names are displayed. if name.startswith('__') and name.endswith('__'): return 1 + # Namedtuples have public fields and methods with a single leading underscore + if name.startswith('_') and hasattr(obj, '_fields'): + return True if all is not None: # only document that which the programmer exported in __all__ return name in all @@ -642,7 +645,7 @@ # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or (inspect.getmodule(value) or object) is object): - if visiblename(key, all): + if visiblename(key, all, object): classes.append((key, value)) cdict[key] = cdict[value] = '#' + key for key, value in classes: @@ -658,13 +661,13 @@ # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or inspect.isbuiltin(value) or inspect.getmodule(value) is object): - if visiblename(key, all): + if visiblename(key, all, object): funcs.append((key, value)) fdict[key] = '#-' + key if inspect.isfunction(value): fdict[value] = fdict[key] data = [] for key, value in inspect.getmembers(object, isdata): - if visiblename(key, all): + if visiblename(key, all, object): data.append((key, value)) doc = self.markup(getdoc(object), self.preformat, fdict, cdict) @@ -789,7 +792,7 @@ attrs = [(name, kind, cls, value) for name, kind, cls, value in classify_class_attrs(object) - if visiblename(name)] + if visiblename(name, obj=object)] mdict = {} for key, kind, homecls, value in attrs: @@ -1056,18 +1059,18 @@ # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or (inspect.getmodule(value) or object) is object): - if visiblename(key, all): + if visiblename(key, all, object): classes.append((key, value)) funcs = [] for key, value in inspect.getmembers(object, inspect.isroutine): # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or inspect.isbuiltin(value) or inspect.getmodule(value) is object): - if visiblename(key, all): + if visiblename(key, all, object): funcs.append((key, value)) data = [] for key, value in inspect.getmembers(object, isdata): - if visiblename(key, all): + if visiblename(key, all, object): data.append((key, value)) modpkgs = [] @@ -1206,7 +1209,7 @@ attrs = [(name, kind, cls, value) for name, kind, cls, value in classify_class_attrs(object) - if visiblename(name)] + if visiblename(name, obj=object)] while attrs: if mro: diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -12,9 +12,10 @@ import xml.etree import textwrap from io import StringIO +from collections import namedtuple from contextlib import contextmanager from test.support import TESTFN, forget, rmtree, EnvironmentVarGuard, \ - reap_children, captured_output + reap_children, captured_output, captured_stdout from test import pydoc_mod @@ -379,6 +380,15 @@ finally: pydoc.getpager = getpager_old + def test_namedtuple_public_underscore(self): + NT = namedtuple('NT', ['abc', 'def'], rename=True) + with captured_stdout() as help_io: + help(NT) + helptext = help_io.getvalue() + self.assertIn('_1', helptext) + self.assertIn('_replace', helptext) + self.assertIn('_asdict', helptext) + class TestDescriptions(unittest.TestCase): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -105,6 +105,9 @@ - Issue #11628: cmp_to_key generated class should use __slots__. +- Issue #11666: let help() display named tuple attributes and methods + that start with a leading underscore. + - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 22:42:44 2011 From: python-checkins at python.org (martin.v.loewis) Date: Fri, 25 Mar 2011 22:42:44 +0100 (CET) Subject: [Python-checkins] r88804 - tracker/instances/python-dev/html/issue.item.html Message-ID: <3PxJ5J1v4Rz7LrH@mail.python.org> Author: martin.v.loewis Date: Fri Mar 25 22:42:44 2011 New Revision: 88804 Log: Use # instead of : Modified: tracker/instances/python-dev/html/issue.item.html Modified: tracker/instances/python-dev/html/issue.item.html ============================================================================== --- tracker/instances/python-dev/html/issue.item.html (original) +++ tracker/instances/python-dev/html/issue.item.html Fri Mar 25 22:42:44 2011 @@ -274,7 +274,7 @@
    Repositories containing patches
    Repositories containing patches
    link + tal:content="hgrepo/url">link: + + edit (change branch) + + +
    + + + +
    Author: martin.v.loewis Date: Thu Mar 24 08:31:11 2011 New Revision: 88798 Log: Allow sourcebranch configuration. Modified: tracker/instances/python-dev/extensions/create_patch.py tracker/instances/python-dev/schema.py Modified: tracker/instances/python-dev/extensions/create_patch.py ============================================================================== --- tracker/instances/python-dev/extensions/create_patch.py (original) +++ tracker/instances/python-dev/extensions/create_patch.py Thu Mar 24 08:31:11 2011 @@ -4,7 +4,7 @@ class NotChanged(ValueError): pass -def download_patch(source, lastrev, patchbranch): +def download_patch(source, lastrev, sourcebranch, patchbranch): from mercurial import hg, ui, localrepo, commands, bundlerepo UI = ui.ui() bundle = tempfile.mktemp(dir="/var/tmp") @@ -30,7 +30,7 @@ raise NotChanged repo=bundlerepo.bundlerepository(UI, ".", bundle) repo.ui.pushbuffer() - old = 'max(p1(min(outgoing() and branch(%s))) or p2(max(merge() and outgoing() and branch(%s))))' % (patchbranch, patchbranch) + old = 'max(p1(min(outgoing() and branch(%s))) or max(p2(merge() and outgoing() and branch(%s)) and branch(%s)))' % (patchbranch, patchbranch, sourcebranch) commands.diff(repo.ui, repo, rev=[old, patchbranch]) result = repo.ui.popbuffer() finally: @@ -56,11 +56,14 @@ self.client.error_message.append('unknown hgrepo url') return lastrev = db.hgrepo.get(repo, 'lastrev') - branch = db.hgrepo.get(repo, 'patchbranch') - if not branch: - branch = 'default' + sourcebranch = db.hgrepo.get(repo, 'sourcebranch') + if not sourcebranch: + sourcebranch = 'default' + patchbranch = db.hgrepo.get(repo, 'patchbranch') + if not patchbranch: + patchbranch = 'default' try: - diff, head = download_patch(url, lastrev, branch) + diff, head = download_patch(url, lastrev, sourcebranch, patchbranch) except NotChanged: self.client.error_message.append('%s.diff is already available' % lastrev) return Modified: tracker/instances/python-dev/schema.py ============================================================================== --- tracker/instances/python-dev/schema.py (original) +++ tracker/instances/python-dev/schema.py Thu Mar 24 08:31:11 2011 @@ -145,6 +145,7 @@ hgrepo = Class(db, "hgrepo", url=String(), lastrev=String(), + sourcebranch=String(), patchbranch=String(), ) @@ -205,7 +206,7 @@ return userid == db.hgrepo.get(itemid, "creator") db.security.addPermissionToRole('User', 'Create', 'hgrepo') p = db.security.addPermission(name='Edit', klass='hgrepo', check=may_edit_hgrepo, - properties=['url', 'patchbranch']) + properties=['url', 'sourcebranch', 'patchbranch']) db.security.addPermissionToRole('User', p) class may_view_spam: From python-checkins at python.org Thu Mar 24 09:06:01 2011 From: python-checkins at python.org (martin.v.loewis) Date: Thu, 24 Mar 2011 09:06:01 +0100 (CET) Subject: [Python-checkins] r88799 - in tracker/instances/python-dev: extensions/pydevutils.py extensions/suppress_history.py html/user.item.html Message-ID: <3PwL1P0D7Sz7LjX@mail.python.org> Author: martin.v.loewis Date: Thu Mar 24 09:06:00 2011 New Revision: 88799 Log: Display contrib_form_date unconditionally to coordinators. Added: tracker/instances/python-dev/extensions/pydevutils.py - copied, changed from r88785, /tracker/instances/python-dev/extensions/suppress_history.py Removed: tracker/instances/python-dev/extensions/suppress_history.py Modified: tracker/instances/python-dev/html/user.item.html Copied: tracker/instances/python-dev/extensions/pydevutils.py (from r88785, /tracker/instances/python-dev/extensions/suppress_history.py) ============================================================================== --- /tracker/instances/python-dev/extensions/suppress_history.py (original) +++ tracker/instances/python-dev/extensions/pydevutils.py Thu Mar 24 09:06:00 2011 @@ -9,5 +9,11 @@ # currently not used return True +def is_coordinator(request): + user = request.client.userid + db = request.client.db + return 'Coordinator' in db.user.get(user, 'roles') + def init(instance): instance.registerUtil('is_history_ok', is_history_ok) + instance.registerUtil('is_coordinator', is_coordinator) Deleted: tracker/instances/python-dev/extensions/suppress_history.py ============================================================================== --- tracker/instances/python-dev/extensions/suppress_history.py Thu Mar 24 09:06:00 2011 +++ (empty file) @@ -1,13 +0,0 @@ -def is_history_ok(request): - user = request.client.userid - db = request.client.db - classname = request.classname - nodeid = request.nodeid - # restrict display of user history to user itself only - if classname == 'user': - return user == nodeid or 'Coordinator' in db.user.get(user, 'roles') - # currently not used - return True - -def init(instance): - instance.registerUtil('is_history_ok', is_history_ok) Modified: tracker/instances/python-dev/html/user.item.html ============================================================================== --- tracker/instances/python-dev/html/user.item.html (original) +++ tracker/instances/python-dev/html/user.item.html Thu Mar 24 09:06:00 2011 @@ -110,7 +110,7 @@
    Contributor Form Received - + on:
    link:# From python-checkins at python.org Fri Mar 25 22:50:41 2011 From: python-checkins at python.org (kurt.kaiser) Date: Fri, 25 Mar 2011 22:50:41 +0100 Subject: [Python-checkins] cpython (2.7): toggle failing on Tk 8.5, causing IDLE exits. Issue 3851. Message-ID: http://hg.python.org/cpython/rev/500e48708470 changeset: 68937:500e48708470 branch: 2.7 parent: 68927:d52b1faa7b11 user: Kurt B. Kaiser date: Fri Mar 25 17:48:27 2011 -0400 summary: toggle failing on Tk 8.5, causing IDLE exits. Issue 3851. files: Lib/idlelib/EditorWindow.py | 21 +++++++++------------ Lib/idlelib/NEWS.txt | 5 ++++- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -310,10 +310,10 @@ if (event.state & 4) != 0 and event.keysym == "Home": # state&4==Control. If , use the Tk binding. return - if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ self.text.compare("insert linestart", "<=", "iomark"): + # In Shell on input line, go to just after prompt insertpt = int(self.text.index("iomark").split(".")[1]) else: line = self.text.get("insert linestart", "insert lineend") @@ -322,30 +322,27 @@ break else: insertpt=len(line) - lineat = int(self.text.index("insert").split('.')[1]) - if insertpt == lineat: insertpt = 0 - dest = "insert linestart+"+str(insertpt)+"c" - if (event.state&1) == 0: - # shift not pressed + # shift was not pressed self.text.tag_remove("sel", "1.0", "end") else: if not self.text.index("sel.first"): - self.text.mark_set("anchor","insert") - + self.text.mark_set("my_anchor", "insert") # there was no previous selection + else: + if self.text.compare(self.text.index("sel.first"), "<", self.text.index("insert")): + self.text.mark_set("my_anchor", "sel.first") # extend back + else: + self.text.mark_set("my_anchor", "sel.last") # extend forward first = self.text.index(dest) - last = self.text.index("anchor") - + last = self.text.index("my_anchor") if self.text.compare(first,">",last): first,last = last,first - self.text.tag_remove("sel", "1.0", "end") self.text.tag_add("sel", first, last) - self.text.mark_set("insert", dest) self.text.see("insert") return "break" diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -3,7 +3,10 @@ *Release date: XX-XX-XXXX* -- toggle non-functional when NumLock set on Windows. Issue3851. +- toggle failing on Tk 8.5, causing IDLE exits and strange selection + behavior. Issue 4676. Improve selection extension behaviour. +- toggle non-functional when NumLock set on Windows. Issue 3851. + What's New in IDLE 2.7? ======================= -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 22:56:57 2011 From: python-checkins at python.org (benjamin.peterson) Date: Fri, 25 Mar 2011 22:56:57 +0100 Subject: [Python-checkins] cpython (2.7): remove this dead subversion code Message-ID: http://hg.python.org/cpython/rev/5cf8f6da8743 changeset: 68938:5cf8f6da8743 branch: 2.7 parent: 68927:d52b1faa7b11 user: Benjamin Peterson date: Fri Mar 25 16:57:30 2011 -0500 summary: remove this dead subversion code files: Python/sysmodule.c | 67 ++------------------------------- 1 files changed, 5 insertions(+), 62 deletions(-) diff --git a/Python/sysmodule.c b/Python/sysmodule.c --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1143,8 +1143,6 @@ } /* Subversion branch and revision management */ -static const char _patchlevel_revision[] = PY_PATCHLEVEL_REVISION; -static const char headurl[] = "$HeadURL$"; static int svn_initialized; static char patchlevel_revision[50]; /* Just the number */ static char branch[50]; @@ -1154,69 +1152,14 @@ static void svnversion_init(void) { - const char *python, *br_start, *br_end, *br_end2, *svnversion; - Py_ssize_t len; - int istag; - if (svn_initialized) return; - - python = strstr(headurl, "/python/"); - if (!python) { - /* XXX quick hack to get bzr working */ - *patchlevel_revision = '\0'; - strcpy(branch, ""); - strcpy(shortbranch, "unknown"); - svn_revision = ""; - return; - /* Py_FatalError("subversion keywords missing"); */ - } - - br_start = python + 8; - br_end = strchr(br_start, '/'); - assert(br_end); - - /* Works even for trunk, - as we are in trunk/Python/sysmodule.c */ - br_end2 = strchr(br_end+1, '/'); - - istag = strncmp(br_start, "tags", 4) == 0; - if (strncmp(br_start, "trunk", 5) == 0) { - strcpy(branch, "trunk"); - strcpy(shortbranch, "trunk"); - - } - else if (istag || strncmp(br_start, "branches", 8) == 0) { - len = br_end2 - br_start; - strncpy(branch, br_start, len); - branch[len] = '\0'; - - len = br_end2 - (br_end + 1); - strncpy(shortbranch, br_end + 1, len); - shortbranch[len] = '\0'; - } - else { - Py_FatalError("bad HeadURL"); - return; - } - - - svnversion = _Py_svnversion(); - if (strcmp(svnversion, "Unversioned directory") != 0 && strcmp(svnversion, "exported") != 0) - svn_revision = svnversion; - else if (istag) { - len = strlen(_patchlevel_revision); - assert(len >= 13); - assert(len < (sizeof(patchlevel_revision) + 13)); - strncpy(patchlevel_revision, _patchlevel_revision + 11, - len - 13); - patchlevel_revision[len - 13] = '\0'; - svn_revision = patchlevel_revision; - } - else - svn_revision = ""; - svn_initialized = 1; + *patchlevel_revision = '\0'; + strcpy(branch, ""); + strcpy(shortbranch, "unknown"); + svn_revision = ""; + return; } /* Return svnversion output if available. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 22:56:58 2011 From: python-checkins at python.org (benjamin.peterson) Date: Fri, 25 Mar 2011 22:56:58 +0100 Subject: [Python-checkins] cpython (merge 2.7 -> 2.7): merge heads Message-ID: http://hg.python.org/cpython/rev/b1f830ae0d68 changeset: 68939:b1f830ae0d68 branch: 2.7 parent: 68938:5cf8f6da8743 parent: 68937:500e48708470 user: Benjamin Peterson date: Fri Mar 25 16:58:31 2011 -0500 summary: merge heads files: Lib/idlelib/EditorWindow.py | 21 +++++++++------------ Lib/idlelib/NEWS.txt | 5 ++++- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -310,10 +310,10 @@ if (event.state & 4) != 0 and event.keysym == "Home": # state&4==Control. If , use the Tk binding. return - if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ self.text.compare("insert linestart", "<=", "iomark"): + # In Shell on input line, go to just after prompt insertpt = int(self.text.index("iomark").split(".")[1]) else: line = self.text.get("insert linestart", "insert lineend") @@ -322,30 +322,27 @@ break else: insertpt=len(line) - lineat = int(self.text.index("insert").split('.')[1]) - if insertpt == lineat: insertpt = 0 - dest = "insert linestart+"+str(insertpt)+"c" - if (event.state&1) == 0: - # shift not pressed + # shift was not pressed self.text.tag_remove("sel", "1.0", "end") else: if not self.text.index("sel.first"): - self.text.mark_set("anchor","insert") - + self.text.mark_set("my_anchor", "insert") # there was no previous selection + else: + if self.text.compare(self.text.index("sel.first"), "<", self.text.index("insert")): + self.text.mark_set("my_anchor", "sel.first") # extend back + else: + self.text.mark_set("my_anchor", "sel.last") # extend forward first = self.text.index(dest) - last = self.text.index("anchor") - + last = self.text.index("my_anchor") if self.text.compare(first,">",last): first,last = last,first - self.text.tag_remove("sel", "1.0", "end") self.text.tag_add("sel", first, last) - self.text.mark_set("insert", dest) self.text.see("insert") return "break" diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -3,7 +3,10 @@ *Release date: XX-XX-XXXX* -- toggle non-functional when NumLock set on Windows. Issue3851. +- toggle failing on Tk 8.5, causing IDLE exits and strange selection + behavior. Issue 4676. Improve selection extension behaviour. +- toggle non-functional when NumLock set on Windows. Issue 3851. + What's New in IDLE 2.7? ======================= -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 23:01:21 2011 From: python-checkins at python.org (mark.dickinson) Date: Fri, 25 Mar 2011 23:01:21 +0100 Subject: [Python-checkins] cpython (2.7): Issue #11673: Fix multiprocessing.[Raw]Array constructor to accept a size of Message-ID: http://hg.python.org/cpython/rev/2d183b1dae5a changeset: 68940:2d183b1dae5a branch: 2.7 user: Mark Dickinson date: Fri Mar 25 22:01:06 2011 +0000 summary: Issue #11673: Fix multiprocessing.[Raw]Array constructor to accept a size of type long. Thanks Robert Kern. files: Lib/multiprocessing/sharedctypes.py | 2 +- Lib/test/test_multiprocessing.py | 7 +++++++ Misc/NEWS | 3 +++ 3 files changed, 11 insertions(+), 1 deletions(-) diff --git a/Lib/multiprocessing/sharedctypes.py b/Lib/multiprocessing/sharedctypes.py --- a/Lib/multiprocessing/sharedctypes.py +++ b/Lib/multiprocessing/sharedctypes.py @@ -78,7 +78,7 @@ Returns a ctypes array allocated from shared memory ''' type_ = typecode_to_type.get(typecode_or_type, typecode_or_type) - if isinstance(size_or_initializer, int): + if isinstance(size_or_initializer, (int, long)): type_ = type_ * size_or_initializer return _new_value(type_) else: diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -918,6 +918,13 @@ self.test_array(raw=True) @unittest.skipIf(c_int is None, "requires _ctypes") + def test_array_accepts_long(self): + arr = self.Array('i', 10L) + self.assertEqual(len(arr), 10) + raw_arr = self.RawArray('i', 10L) + self.assertEqual(len(raw_arr), 10) + + @unittest.skipIf(c_int is None, "requires _ctypes") def test_getobj_getlock_obj(self): arr1 = self.Array('i', range(10)) lock1 = arr1.get_lock() diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -43,6 +43,9 @@ Library ------- +- Issue #11673: Fix multiprocessing Array and RawArray constructors to accept a + size of type 'long', rather than only accepting 'int'. + - Issue #10042: Fixed the total_ordering decorator to handle cross-type comparisons that could lead to infinite recursion. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Fri Mar 25 23:11:31 2011 From: python-checkins at python.org (martin.v.loewis) Date: Fri, 25 Mar 2011 23:11:31 +0100 (CET) Subject: [Python-checkins] r88805 - in tracker/instances/python-dev: extensions/create_patch.py schema.py Message-ID: <3PxJkW2tTHz7Lrn@mail.python.org> Author: martin.v.loewis Date: Fri Mar 25 23:11:31 2011 New Revision: 88805 Log: Simplify and fix revspec, based on an idea by Baptiste Carvello. Drop sourcebranch from schema. Modified: tracker/instances/python-dev/extensions/create_patch.py tracker/instances/python-dev/schema.py Modified: tracker/instances/python-dev/extensions/create_patch.py ============================================================================== --- tracker/instances/python-dev/extensions/create_patch.py (original) +++ tracker/instances/python-dev/extensions/create_patch.py Fri Mar 25 23:11:31 2011 @@ -30,7 +30,7 @@ raise NotChanged repo=bundlerepo.bundlerepository(UI, ".", bundle) repo.ui.pushbuffer() - old = 'max(p1(min(outgoing() and branch(%s))) or max(p2(merge() and outgoing() and branch(%s)) and branch(%s) and not outgoing()))' % (patchbranch, patchbranch, sourcebranch) + old = 'max(ancestors(branch("%s")))-outgoing("%s"))' % (patchbranch, base) commands.diff(repo.ui, repo, rev=[old, patchbranch]) result = repo.ui.popbuffer() finally: Modified: tracker/instances/python-dev/schema.py ============================================================================== --- tracker/instances/python-dev/schema.py (original) +++ tracker/instances/python-dev/schema.py Fri Mar 25 23:11:31 2011 @@ -145,7 +145,6 @@ hgrepo = Class(db, "hgrepo", url=String(), lastrev=String(), - sourcebranch=String(), patchbranch=String(), ) @@ -206,7 +205,7 @@ return userid == db.hgrepo.get(itemid, "creator") db.security.addPermissionToRole('User', 'Create', 'hgrepo') p = db.security.addPermission(name='Edit', klass='hgrepo', check=may_edit_hgrepo, - properties=['url', 'sourcebranch', 'patchbranch']) + properties=['url', 'patchbranch']) db.security.addPermissionToRole('User', p) class may_view_spam: From python-checkins at python.org Fri Mar 25 23:16:40 2011 From: python-checkins at python.org (martin.v.loewis) Date: Fri, 25 Mar 2011 23:16:40 +0100 (CET) Subject: [Python-checkins] r88806 - tracker/instances/python-dev/extensions/create_patch.py Message-ID: <3PxJrS68K8z7Ls9@mail.python.org> Author: martin.v.loewis Date: Fri Mar 25 23:16:40 2011 New Revision: 88806 Log: Drop more references to sourcebranch. Modified: tracker/instances/python-dev/extensions/create_patch.py Modified: tracker/instances/python-dev/extensions/create_patch.py ============================================================================== --- tracker/instances/python-dev/extensions/create_patch.py (original) +++ tracker/instances/python-dev/extensions/create_patch.py Fri Mar 25 23:16:40 2011 @@ -4,7 +4,7 @@ class NotChanged(ValueError): pass -def download_patch(source, lastrev, sourcebranch, patchbranch): +def download_patch(source, lastrev, patchbranch): from mercurial import hg, ui, localrepo, commands, bundlerepo UI = ui.ui() bundle = tempfile.mktemp(dir="/var/tmp") @@ -56,14 +56,11 @@ self.client.error_message.append('unknown hgrepo url') return lastrev = db.hgrepo.get(repo, 'lastrev') - sourcebranch = db.hgrepo.get(repo, 'sourcebranch') - if not sourcebranch: - sourcebranch = 'default' patchbranch = db.hgrepo.get(repo, 'patchbranch') if not patchbranch: patchbranch = 'default' try: - diff, head = download_patch(url, lastrev, sourcebranch, patchbranch) + diff, head = download_patch(url, lastrev, patchbranch) except NotChanged: self.client.error_message.append('%s.diff is already available' % lastrev) return From python-checkins at python.org Sat Mar 26 00:00:36 2011 From: python-checkins at python.org (raymond.hettinger) Date: Sat, 26 Mar 2011 00:00:36 +0100 Subject: [Python-checkins] cpython (2.7): Issue #11666: Teach pydoc to display full help for named tuples Message-ID: http://hg.python.org/cpython/rev/46aaa365111f changeset: 68941:46aaa365111f branch: 2.7 user: Raymond Hettinger date: Fri Mar 25 16:00:13 2011 -0700 summary: Issue #11666: Teach pydoc to display full help for named tuples files: Lib/pydoc.py | 21 ++++++++++++--------- Lib/test/test_pydoc.py | 12 +++++++++++- Misc/NEWS | 3 +++ 3 files changed, 26 insertions(+), 10 deletions(-) diff --git a/Lib/pydoc.py b/Lib/pydoc.py --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -156,7 +156,7 @@ no.append(x) return yes, no -def visiblename(name, all=None): +def visiblename(name, all=None, obj=None): """Decide whether to show documentation on a variable.""" # Certain special names are redundant. _hidden_names = ('__builtins__', '__doc__', '__file__', '__path__', @@ -164,6 +164,9 @@ if name in _hidden_names: return 0 # Private names are hidden, but special names are displayed. if name.startswith('__') and name.endswith('__'): return 1 + # Namedtuples have public fields and methods with a single leading underscore + if name.startswith('_') and hasattr(obj, '_fields'): + return 1 if all is not None: # only document that which the programmer exported in __all__ return name in all @@ -627,7 +630,7 @@ # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or (inspect.getmodule(value) or object) is object): - if visiblename(key, all): + if visiblename(key, all, object): classes.append((key, value)) cdict[key] = cdict[value] = '#' + key for key, value in classes: @@ -643,13 +646,13 @@ # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or inspect.isbuiltin(value) or inspect.getmodule(value) is object): - if visiblename(key, all): + if visiblename(key, all, object): funcs.append((key, value)) fdict[key] = '#-' + key if inspect.isfunction(value): fdict[value] = fdict[key] data = [] for key, value in inspect.getmembers(object, isdata): - if visiblename(key, all): + if visiblename(key, all, object): data.append((key, value)) doc = self.markup(getdoc(object), self.preformat, fdict, cdict) @@ -773,7 +776,7 @@ push('\n') return attrs - attrs = filter(lambda data: visiblename(data[0]), + attrs = filter(lambda data: visiblename(data[0], obj=object), classify_class_attrs(object)) mdict = {} for key, kind, homecls, value in attrs: @@ -1042,18 +1045,18 @@ # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or (inspect.getmodule(value) or object) is object): - if visiblename(key, all): + if visiblename(key, all, object): classes.append((key, value)) funcs = [] for key, value in inspect.getmembers(object, inspect.isroutine): # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or inspect.isbuiltin(value) or inspect.getmodule(value) is object): - if visiblename(key, all): + if visiblename(key, all, object): funcs.append((key, value)) data = [] for key, value in inspect.getmembers(object, isdata): - if visiblename(key, all): + if visiblename(key, all, object): data.append((key, value)) modpkgs = [] @@ -1186,7 +1189,7 @@ name, mod, maxlen=70, doc=doc) + '\n') return attrs - attrs = filter(lambda data: visiblename(data[0]), + attrs = filter(lambda data: visiblename(data[0], obj=object), classify_class_attrs(object)) while attrs: if mro: diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -10,8 +10,9 @@ import xml.etree import test.test_support from contextlib import contextmanager +from collections import namedtuple from test.test_support import ( - TESTFN, forget, rmtree, EnvironmentVarGuard, reap_children) + TESTFN, forget, rmtree, EnvironmentVarGuard, reap_children, captured_stdout) from test import pydoc_mod @@ -340,6 +341,15 @@ expected = 'C in module %s object' % __name__ self.assertIn(expected, pydoc.render_doc(c)) + def test_namedtuple_public_underscore(self): + NT = namedtuple('NT', ['abc', 'def'], rename=True) + with captured_stdout() as help_io: + help(NT) + helptext = help_io.getvalue() + self.assertIn('_1', helptext) + self.assertIn('_replace', helptext) + self.assertIn('_asdict', helptext) + def test_main(): test.test_support.run_unittest(PyDocDocTest, diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -43,6 +43,9 @@ Library ------- +- Issue #11666: let help() display named tuple attributes and methods + that start with a leading underscore. + - Issue #11673: Fix multiprocessing Array and RawArray constructors to accept a size of type 'long', rather than only accepting 'int'. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 01:35:23 2011 From: python-checkins at python.org (kurt.kaiser) Date: Sat, 26 Mar 2011 01:35:23 +0100 Subject: [Python-checkins] cpython (3.1): toggle failing on Tk 8.5, causing IDLE exits. Issue #4676 Message-ID: http://hg.python.org/cpython/rev/c4d355363114 changeset: 68942:c4d355363114 branch: 3.1 parent: 68932:9a184d8211f5 user: Kurt B. Kaiser date: Fri Mar 25 20:29:13 2011 -0400 summary: toggle failing on Tk 8.5, causing IDLE exits. Issue #4676 files: Lib/idlelib/EditorWindow.py | 21 +++++++++------------ Lib/idlelib/NEWS.txt | 5 ++++- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -307,10 +307,10 @@ if (event.state & 4) != 0 and event.keysym == "Home": # state&4==Control. If , use the Tk binding. return - if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ self.text.compare("insert linestart", "<=", "iomark"): + # In Shell on input line, go to just after prompt insertpt = int(self.text.index("iomark").split(".")[1]) else: line = self.text.get("insert linestart", "insert lineend") @@ -319,30 +319,27 @@ break else: insertpt=len(line) - lineat = int(self.text.index("insert").split('.')[1]) - if insertpt == lineat: insertpt = 0 - dest = "insert linestart+"+str(insertpt)+"c" - if (event.state&1) == 0: - # shift not pressed + # shift was not pressed self.text.tag_remove("sel", "1.0", "end") else: if not self.text.index("sel.first"): - self.text.mark_set("anchor","insert") - + self.text.mark_set("my_anchor", "insert") # there was no previous selection + else: + if self.text.compare(self.text.index("sel.first"), "<", self.text.index("insert")): + self.text.mark_set("my_anchor", "sel.first") # extend back + else: + self.text.mark_set("my_anchor", "sel.last") # extend forward first = self.text.index(dest) - last = self.text.index("anchor") - + last = self.text.index("my_anchor") if self.text.compare(first,">",last): first,last = last,first - self.text.tag_remove("sel", "1.0", "end") self.text.tag_add("sel", first, last) - self.text.mark_set("insert", dest) self.text.see("insert") return "break" diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -3,7 +3,10 @@ *Release date: XX-XXX-XX* -- toggle non-functional when NumLock set on Windows. Issue3851. +- toggle failing on Tk 8.5, causing IDLE exits and strange selection + behavior. Issue 4676. Improve selection extension behaviour. +- toggle non-functional when NumLock set on Windows. Issue 3851. + What's New in IDLE 3.1b1? -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 01:35:24 2011 From: python-checkins at python.org (kurt.kaiser) Date: Sat, 26 Mar 2011 01:35:24 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge from 3.1 Message-ID: http://hg.python.org/cpython/rev/bf4f806920af changeset: 68943:bf4f806920af branch: 3.2 parent: 68935:daa408ad7440 parent: 68942:c4d355363114 user: Kurt B. Kaiser date: Fri Mar 25 20:32:00 2011 -0400 summary: Merge from 3.1 files: Lib/idlelib/EditorWindow.py | 21 +++++++++------------ Lib/idlelib/NEWS.txt | 5 ++++- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -306,10 +306,10 @@ if (event.state & 4) != 0 and event.keysym == "Home": # state&4==Control. If , use the Tk binding. return - if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ self.text.compare("insert linestart", "<=", "iomark"): + # In Shell on input line, go to just after prompt insertpt = int(self.text.index("iomark").split(".")[1]) else: line = self.text.get("insert linestart", "insert lineend") @@ -318,30 +318,27 @@ break else: insertpt=len(line) - lineat = int(self.text.index("insert").split('.')[1]) - if insertpt == lineat: insertpt = 0 - dest = "insert linestart+"+str(insertpt)+"c" - if (event.state&1) == 0: - # shift not pressed + # shift was not pressed self.text.tag_remove("sel", "1.0", "end") else: if not self.text.index("sel.first"): - self.text.mark_set("anchor","insert") - + self.text.mark_set("my_anchor", "insert") # there was no previous selection + else: + if self.text.compare(self.text.index("sel.first"), "<", self.text.index("insert")): + self.text.mark_set("my_anchor", "sel.first") # extend back + else: + self.text.mark_set("my_anchor", "sel.last") # extend forward first = self.text.index(dest) - last = self.text.index("anchor") - + last = self.text.index("my_anchor") if self.text.compare(first,">",last): first,last = last,first - self.text.tag_remove("sel", "1.0", "end") self.text.tag_add("sel", first, last) - self.text.mark_set("insert", dest) self.text.see("insert") return "break" diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -3,7 +3,10 @@ *Release date: XX-XXX-XX* -- toggle non-functional when NumLock set on Windows. Issue3851. +- toggle failing on Tk 8.5, causing IDLE exits and strange selection + behavior. Issue 4676. Improve selection extension behaviour. +- toggle non-functional when NumLock set on Windows. Issue 3851. + What's New in IDLE 3.1b1? -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 01:35:24 2011 From: python-checkins at python.org (kurt.kaiser) Date: Sat, 26 Mar 2011 01:35:24 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge from 3.2 Message-ID: http://hg.python.org/cpython/rev/9ea72ff3527a changeset: 68944:9ea72ff3527a parent: 68936:374982e17f36 parent: 68943:bf4f806920af user: Kurt B. Kaiser date: Fri Mar 25 20:34:11 2011 -0400 summary: Merge from 3.2 files: Lib/idlelib/EditorWindow.py | 21 +++++++++------------ Lib/idlelib/NEWS.txt | 5 ++++- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -306,10 +306,10 @@ if (event.state & 4) != 0 and event.keysym == "Home": # state&4==Control. If , use the Tk binding. return - if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ self.text.compare("insert linestart", "<=", "iomark"): + # In Shell on input line, go to just after prompt insertpt = int(self.text.index("iomark").split(".")[1]) else: line = self.text.get("insert linestart", "insert lineend") @@ -318,30 +318,27 @@ break else: insertpt=len(line) - lineat = int(self.text.index("insert").split('.')[1]) - if insertpt == lineat: insertpt = 0 - dest = "insert linestart+"+str(insertpt)+"c" - if (event.state&1) == 0: - # shift not pressed + # shift was not pressed self.text.tag_remove("sel", "1.0", "end") else: if not self.text.index("sel.first"): - self.text.mark_set("anchor","insert") - + self.text.mark_set("my_anchor", "insert") # there was no previous selection + else: + if self.text.compare(self.text.index("sel.first"), "<", self.text.index("insert")): + self.text.mark_set("my_anchor", "sel.first") # extend back + else: + self.text.mark_set("my_anchor", "sel.last") # extend forward first = self.text.index(dest) - last = self.text.index("anchor") - + last = self.text.index("my_anchor") if self.text.compare(first,">",last): first,last = last,first - self.text.tag_remove("sel", "1.0", "end") self.text.tag_add("sel", first, last) - self.text.mark_set("insert", dest) self.text.see("insert") return "break" diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -3,7 +3,10 @@ *Release date: XX-XXX-XX* -- toggle non-functional when NumLock set on Windows. Issue3851. +- toggle failing on Tk 8.5, causing IDLE exits and strange selection + behavior. Issue 4676. Improve selection extension behaviour. +- toggle non-functional when NumLock set on Windows. Issue 3851. + What's New in IDLE 3.1b1? -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 02:04:01 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 02:04:01 +0100 Subject: [Python-checkins] cpython (3.1): Use universal construct os.path.expanduser('~') instead of os.environ['HOME'] Message-ID: http://hg.python.org/cpython/rev/2879c986c5b4 changeset: 68945:2879c986c5b4 branch: 3.1 parent: 68924:ed02db9921ac user: ?ric Araujo date: Fri Mar 25 20:31:50 2011 +0100 summary: Use universal construct os.path.expanduser('~') instead of os.environ['HOME'] files: Doc/library/http.cookiejar.rst | 2 +- Doc/library/readline.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/http.cookiejar.rst b/Doc/library/http.cookiejar.rst --- a/Doc/library/http.cookiejar.rst +++ b/Doc/library/http.cookiejar.rst @@ -719,7 +719,7 @@ import os, http.cookiejar, urllib.request cj = http.cookiejar.MozillaCookieJar() - cj.load(os.path.join(os.environ["HOME"], ".netscape/cookies.txt")) + cj.load(os.path.join(os.path.expanduser("~"), ".netscape", "cookies.txt")) opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj)) r = opener.open("http://example.com/") diff --git a/Doc/library/readline.rst b/Doc/library/readline.rst --- a/Doc/library/readline.rst +++ b/Doc/library/readline.rst @@ -197,7 +197,7 @@ import os import readline - histfile = os.path.join(os.environ["HOME"], ".pyhist") + histfile = os.path.join(os.path.expanduser("~"), ".pyhist") try: readline.read_history_file(histfile) except IOError: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 02:04:02 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 02:04:02 +0100 Subject: [Python-checkins] cpython (3.1): Remove untrue statement from tutorial Message-ID: http://hg.python.org/cpython/rev/a81133cd4f30 changeset: 68946:a81133cd4f30 branch: 3.1 user: ?ric Araujo date: Fri Mar 25 21:53:58 2011 +0100 summary: Remove untrue statement from tutorial files: Doc/tutorial/interactive.rst | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/Doc/tutorial/interactive.rst b/Doc/tutorial/interactive.rst --- a/Doc/tutorial/interactive.rst +++ b/Doc/tutorial/interactive.rst @@ -123,10 +123,7 @@ # bound to the Esc key by default (you can change it - see readline docs). # # Store the file in ~/.pystartup, and set an environment variable to point - # to it: "export PYTHONSTARTUP=/home/user/.pystartup" in bash. - # - # Note that PYTHONSTARTUP does *not* expand "~", so you have to put in the - # full path to your home directory. + # to it: "export PYTHONSTARTUP=~/.pystartup" in bash. import atexit import os -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 02:04:08 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 02:04:08 +0100 Subject: [Python-checkins] cpython (3.1): Tweaks to sys.flags description table. Message-ID: http://hg.python.org/cpython/rev/0d2ef718ae67 changeset: 68947:0d2ef718ae67 branch: 3.1 user: ?ric Araujo date: Sat Mar 26 00:47:04 2011 +0100 summary: Tweaks to sys.flags description table. The options listed in the table are now links to their documentation, and the table uses compact markup to make it easier to read and edit. First proposed in #10998. files: Doc/library/sys.rst | 40 ++++++++++++-------------------- 1 files changed, 15 insertions(+), 25 deletions(-) diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -206,31 +206,21 @@ The struct sequence *flags* exposes the status of command line flags. The attributes are read only. - +------------------------------+------------------------------------------+ - | attribute | flag | - +==============================+==========================================+ - | :const:`debug` | -d | - +------------------------------+------------------------------------------+ - | :const:`division_warning` | -Q | - +------------------------------+------------------------------------------+ - | :const:`inspect` | -i | - +------------------------------+------------------------------------------+ - | :const:`interactive` | -i | - +------------------------------+------------------------------------------+ - | :const:`optimize` | -O or -OO | - +------------------------------+------------------------------------------+ - | :const:`dont_write_bytecode` | -B | - +------------------------------+------------------------------------------+ - | :const:`no_user_site` | -s | - +------------------------------+------------------------------------------+ - | :const:`no_site` | -S | - +------------------------------+------------------------------------------+ - | :const:`ignore_environment` | -E | - +------------------------------+------------------------------------------+ - | :const:`verbose` | -v | - +------------------------------+------------------------------------------+ - | :const:`bytes_warning` | -b | - +------------------------------+------------------------------------------+ + ============================= ============================= + attribute flag + ============================= ============================= + :const:`debug` :option:`-d` + :const:`division_warning` :option:`-Q` + :const:`inspect` :option:`-i` + :const:`interactive` :option:`-i` + :const:`optimize` :option:`-O` or :option:`-OO` + :const:`dont_write_bytecode` :option:`-B` + :const:`no_user_site` :option:`-s` + :const:`no_site` :option:`-S` + :const:`ignore_environment` :option:`-E` + :const:`verbose` :option:`-v` + :const:`bytes_warning` :option:`-b` + ============================= ============================= .. data:: float_info -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 02:04:11 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 02:04:11 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.1): Branch merge Message-ID: http://hg.python.org/cpython/rev/6077424007f5 changeset: 68948:6077424007f5 branch: 3.1 parent: 68932:9a184d8211f5 parent: 68947:0d2ef718ae67 user: ?ric Araujo date: Sat Mar 26 00:47:47 2011 +0100 summary: Branch merge files: Doc/library/http.cookiejar.rst | 2 +- Doc/library/readline.rst | 2 +- Doc/library/sys.rst | 40 ++++++++------------- Doc/tutorial/interactive.rst | 5 +-- 4 files changed, 18 insertions(+), 31 deletions(-) diff --git a/Doc/library/http.cookiejar.rst b/Doc/library/http.cookiejar.rst --- a/Doc/library/http.cookiejar.rst +++ b/Doc/library/http.cookiejar.rst @@ -719,7 +719,7 @@ import os, http.cookiejar, urllib.request cj = http.cookiejar.MozillaCookieJar() - cj.load(os.path.join(os.environ["HOME"], ".netscape/cookies.txt")) + cj.load(os.path.join(os.path.expanduser("~"), ".netscape", "cookies.txt")) opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj)) r = opener.open("http://example.com/") diff --git a/Doc/library/readline.rst b/Doc/library/readline.rst --- a/Doc/library/readline.rst +++ b/Doc/library/readline.rst @@ -197,7 +197,7 @@ import os import readline - histfile = os.path.join(os.environ["HOME"], ".pyhist") + histfile = os.path.join(os.path.expanduser("~"), ".pyhist") try: readline.read_history_file(histfile) except IOError: diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -206,31 +206,21 @@ The struct sequence *flags* exposes the status of command line flags. The attributes are read only. - +------------------------------+------------------------------------------+ - | attribute | flag | - +==============================+==========================================+ - | :const:`debug` | -d | - +------------------------------+------------------------------------------+ - | :const:`division_warning` | -Q | - +------------------------------+------------------------------------------+ - | :const:`inspect` | -i | - +------------------------------+------------------------------------------+ - | :const:`interactive` | -i | - +------------------------------+------------------------------------------+ - | :const:`optimize` | -O or -OO | - +------------------------------+------------------------------------------+ - | :const:`dont_write_bytecode` | -B | - +------------------------------+------------------------------------------+ - | :const:`no_user_site` | -s | - +------------------------------+------------------------------------------+ - | :const:`no_site` | -S | - +------------------------------+------------------------------------------+ - | :const:`ignore_environment` | -E | - +------------------------------+------------------------------------------+ - | :const:`verbose` | -v | - +------------------------------+------------------------------------------+ - | :const:`bytes_warning` | -b | - +------------------------------+------------------------------------------+ + ============================= ============================= + attribute flag + ============================= ============================= + :const:`debug` :option:`-d` + :const:`division_warning` :option:`-Q` + :const:`inspect` :option:`-i` + :const:`interactive` :option:`-i` + :const:`optimize` :option:`-O` or :option:`-OO` + :const:`dont_write_bytecode` :option:`-B` + :const:`no_user_site` :option:`-s` + :const:`no_site` :option:`-S` + :const:`ignore_environment` :option:`-E` + :const:`verbose` :option:`-v` + :const:`bytes_warning` :option:`-b` + ============================= ============================= .. data:: float_info diff --git a/Doc/tutorial/interactive.rst b/Doc/tutorial/interactive.rst --- a/Doc/tutorial/interactive.rst +++ b/Doc/tutorial/interactive.rst @@ -123,10 +123,7 @@ # bound to the Esc key by default (you can change it - see readline docs). # # Store the file in ~/.pystartup, and set an environment variable to point - # to it: "export PYTHONSTARTUP=/home/user/.pystartup" in bash. - # - # Note that PYTHONSTARTUP does *not* expand "~", so you have to put in the - # full path to your home directory. + # to it: "export PYTHONSTARTUP=~/.pystartup" in bash. import atexit import os -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 02:04:13 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 02:04:13 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge doc touchups from 3.1 Message-ID: http://hg.python.org/cpython/rev/2ff899814b4d changeset: 68949:2ff899814b4d branch: 3.2 parent: 68935:daa408ad7440 parent: 68948:6077424007f5 user: ?ric Araujo date: Sat Mar 26 00:50:16 2011 +0100 summary: Merge doc touchups from 3.1 files: Doc/library/http.cookiejar.rst | 2 +- Doc/library/readline.rst | 2 +- Doc/library/sys.rst | 43 ++++++++------------- Doc/tutorial/interactive.rst | 5 +-- 4 files changed, 19 insertions(+), 33 deletions(-) diff --git a/Doc/library/http.cookiejar.rst b/Doc/library/http.cookiejar.rst --- a/Doc/library/http.cookiejar.rst +++ b/Doc/library/http.cookiejar.rst @@ -722,7 +722,7 @@ import os, http.cookiejar, urllib.request cj = http.cookiejar.MozillaCookieJar() - cj.load(os.path.join(os.environ["HOME"], ".netscape/cookies.txt")) + cj.load(os.path.join(os.path.expanduser("~"), ".netscape", "cookies.txt")) opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj)) r = opener.open("http://example.com/") diff --git a/Doc/library/readline.rst b/Doc/library/readline.rst --- a/Doc/library/readline.rst +++ b/Doc/library/readline.rst @@ -196,7 +196,7 @@ import os import readline - histfile = os.path.join(os.environ["HOME"], ".pyhist") + histfile = os.path.join(os.path.expanduser("~"), ".pyhist") try: readline.read_history_file(histfile) except IOError: diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -239,33 +239,22 @@ The struct sequence *flags* exposes the status of command line flags. The attributes are read only. - +------------------------------+------------------------------------------+ - | attribute | flag | - +==============================+==========================================+ - | :const:`debug` | -d | - +------------------------------+------------------------------------------+ - | :const:`division_warning` | -Q | - +------------------------------+------------------------------------------+ - | :const:`inspect` | -i | - +------------------------------+------------------------------------------+ - | :const:`interactive` | -i | - +------------------------------+------------------------------------------+ - | :const:`optimize` | -O or -OO | - +------------------------------+------------------------------------------+ - | :const:`dont_write_bytecode` | -B | - +------------------------------+------------------------------------------+ - | :const:`no_user_site` | -s | - +------------------------------+------------------------------------------+ - | :const:`no_site` | -S | - +------------------------------+------------------------------------------+ - | :const:`ignore_environment` | -E | - +------------------------------+------------------------------------------+ - | :const:`verbose` | -v | - +------------------------------+------------------------------------------+ - | :const:`bytes_warning` | -b | - +------------------------------+------------------------------------------+ - | :const:`quiet` | -q | - +------------------------------+------------------------------------------+ + ============================= ============================= + attribute flag + ============================= ============================= + :const:`debug` :option:`-d` + :const:`division_warning` :option:`-Q` + :const:`inspect` :option:`-i` + :const:`interactive` :option:`-i` + :const:`optimize` :option:`-O` or :option:`-OO` + :const:`dont_write_bytecode` :option:`-B` + :const:`no_user_site` :option:`-s` + :const:`no_site` :option:`-S` + :const:`ignore_environment` :option:`-E` + :const:`verbose` :option:`-v` + :const:`bytes_warning` :option:`-b` + :const:`quiet` :option:`-q` + ============================= ============================= .. versionchanged:: 3.2 Added ``quiet`` attribute for the new :option:`-q` flag. diff --git a/Doc/tutorial/interactive.rst b/Doc/tutorial/interactive.rst --- a/Doc/tutorial/interactive.rst +++ b/Doc/tutorial/interactive.rst @@ -123,10 +123,7 @@ # bound to the Esc key by default (you can change it - see readline docs). # # Store the file in ~/.pystartup, and set an environment variable to point - # to it: "export PYTHONSTARTUP=/home/user/.pystartup" in bash. - # - # Note that PYTHONSTARTUP does *not* expand "~", so you have to put in the - # full path to your home directory. + # to it: "export PYTHONSTARTUP=~/.pystartup" in bash. import atexit import os -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 02:04:20 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 02:04:20 +0100 Subject: [Python-checkins] cpython: Remove traces of division_warning left over from Python 2 (#10998) Message-ID: http://hg.python.org/cpython/rev/c19752ea037f changeset: 68950:c19752ea037f parent: 68934:03c7a83bbdd3 user: ?ric Araujo date: Sat Mar 26 01:55:15 2011 +0100 summary: Remove traces of division_warning left over from Python 2 (#10998) files: Doc/library/sys.rst | 2 -- Doc/whatsnew/3.3.rst | 4 ++++ Include/pydebug.h | 1 - Lib/test/test_cmd_line.py | 6 ------ Lib/test/test_sys.py | 2 +- Misc/NEWS | 3 +++ Misc/python.man | 13 ------------- Objects/object.c | 2 -- Python/sysmodule.c | 6 ++---- 9 files changed, 10 insertions(+), 29 deletions(-) diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -232,8 +232,6 @@ +==============================+==========================================+ | :const:`debug` | -d | +------------------------------+------------------------------------------+ - | :const:`division_warning` | -Q | - +------------------------------+------------------------------------------+ | :const:`inspect` | -i | +------------------------------+------------------------------------------+ | :const:`interactive` | -i | diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -133,3 +133,7 @@ ``import site`` will not add site-specific paths to the module search paths. In previous versions, it did. See changeset for doc changes in various files. Contributed by Carl Meyer with editions by ?ric Araujo. + +.. Issue #10998: -Q command-line flags are related artifacts have been + removed. Code checking sys.flags.division_warning will need updating. + Contributed by ?ric Araujo. diff --git a/Include/pydebug.h b/Include/pydebug.h --- a/Include/pydebug.h +++ b/Include/pydebug.h @@ -16,7 +16,6 @@ PyAPI_DATA(int) Py_UseClassExceptionsFlag; PyAPI_DATA(int) Py_FrozenFlag; PyAPI_DATA(int) Py_IgnoreEnvironmentFlag; -PyAPI_DATA(int) Py_DivisionWarningFlag; PyAPI_DATA(int) Py_DontWriteBytecodeFlag; PyAPI_DATA(int) Py_NoUserSiteDirectory; PyAPI_DATA(int) Py_UnbufferedStdioFlag; diff --git a/Lib/test/test_cmd_line.py b/Lib/test/test_cmd_line.py --- a/Lib/test/test_cmd_line.py +++ b/Lib/test/test_cmd_line.py @@ -31,12 +31,6 @@ self.verify_valid_flag('-O') self.verify_valid_flag('-OO') - def test_q(self): - self.verify_valid_flag('-Qold') - self.verify_valid_flag('-Qnew') - self.verify_valid_flag('-Qwarn') - self.verify_valid_flag('-Qwarnall') - def test_site_flag(self): self.verify_valid_flag('-S') diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -501,7 +501,7 @@ def test_sys_flags(self): self.assertTrue(sys.flags) - attrs = ("debug", "division_warning", + attrs = ("debug", "inspect", "interactive", "optimize", "dont_write_bytecode", "no_user_site", "no_site", "ignore_environment", "verbose", "bytes_warning", "quiet") diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #10998: Remove mentions of -Q, sys.flags.division_warning and + Py_DivisionWarningFlag left over from Python 2. + - Issue #11244: Remove an unnecessary peepholer check that was preventing negative zeros from being constant-folded properly. diff --git a/Misc/python.man b/Misc/python.man --- a/Misc/python.man +++ b/Misc/python.man @@ -37,10 +37,6 @@ .B \-O0 ] [ -.B -Q -.I argument -] -[ .B \-s ] [ @@ -152,15 +148,6 @@ Do not print the version and copyright messages. These messages are also suppressed in non-interactive mode. .TP -.BI "\-Q " argument -Division control; see PEP 238. The argument must be one of "old" (the -default, int/int and long/long return an int or long), "new" (new -division semantics, i.e. int/int and long/long returns a float), -"warn" (old division semantics with a warning for int/int and -long/long), or "warnall" (old division semantics with a warning for -all use of the division operator). For a use of "warnall", see the -Tools/scripts/fixdiv.py script. -.TP .B \-s Don't add user site directory to sys.path. .TP diff --git a/Objects/object.c b/Objects/object.c --- a/Objects/object.c +++ b/Objects/object.c @@ -29,8 +29,6 @@ } #endif /* Py_REF_DEBUG */ -int Py_DivisionWarningFlag; - /* Object allocation routines used by NEWOBJ and NEWVAROBJ macros. These are used by the individual routines for object creation. Do not call them otherwise, they do not initialize the object! */ diff --git a/Python/sysmodule.c b/Python/sysmodule.c --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1312,7 +1312,6 @@ static PyStructSequence_Field flags_fields[] = { {"debug", "-d"}, - {"division_warning", "-Q"}, {"inspect", "-i"}, {"interactive", "-i"}, {"optimize", "-O or -OO"}, @@ -1336,9 +1335,9 @@ flags__doc__, /* doc */ flags_fields, /* fields */ #ifdef RISCOS - 13 + 12 #else - 12 + 11 #endif }; @@ -1356,7 +1355,6 @@ PyStructSequence_SET_ITEM(seq, pos++, PyLong_FromLong(flag)) SetFlag(Py_DebugFlag); - SetFlag(Py_DivisionWarningFlag); SetFlag(Py_InspectFlag); SetFlag(Py_InteractiveFlag); SetFlag(Py_OptimizeFlag); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 02:04:21 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 02:04:21 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.1): Branch merge Message-ID: http://hg.python.org/cpython/rev/ec25055d30f1 changeset: 68951:ec25055d30f1 branch: 3.1 parent: 68942:c4d355363114 parent: 68948:6077424007f5 user: ?ric Araujo date: Sat Mar 26 01:55:56 2011 +0100 summary: Branch merge files: Doc/library/http.cookiejar.rst | 2 +- Doc/library/readline.rst | 2 +- Doc/library/sys.rst | 40 ++++++++------------- Doc/tutorial/interactive.rst | 5 +-- 4 files changed, 18 insertions(+), 31 deletions(-) diff --git a/Doc/library/http.cookiejar.rst b/Doc/library/http.cookiejar.rst --- a/Doc/library/http.cookiejar.rst +++ b/Doc/library/http.cookiejar.rst @@ -719,7 +719,7 @@ import os, http.cookiejar, urllib.request cj = http.cookiejar.MozillaCookieJar() - cj.load(os.path.join(os.environ["HOME"], ".netscape/cookies.txt")) + cj.load(os.path.join(os.path.expanduser("~"), ".netscape", "cookies.txt")) opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj)) r = opener.open("http://example.com/") diff --git a/Doc/library/readline.rst b/Doc/library/readline.rst --- a/Doc/library/readline.rst +++ b/Doc/library/readline.rst @@ -197,7 +197,7 @@ import os import readline - histfile = os.path.join(os.environ["HOME"], ".pyhist") + histfile = os.path.join(os.path.expanduser("~"), ".pyhist") try: readline.read_history_file(histfile) except IOError: diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -206,31 +206,21 @@ The struct sequence *flags* exposes the status of command line flags. The attributes are read only. - +------------------------------+------------------------------------------+ - | attribute | flag | - +==============================+==========================================+ - | :const:`debug` | -d | - +------------------------------+------------------------------------------+ - | :const:`division_warning` | -Q | - +------------------------------+------------------------------------------+ - | :const:`inspect` | -i | - +------------------------------+------------------------------------------+ - | :const:`interactive` | -i | - +------------------------------+------------------------------------------+ - | :const:`optimize` | -O or -OO | - +------------------------------+------------------------------------------+ - | :const:`dont_write_bytecode` | -B | - +------------------------------+------------------------------------------+ - | :const:`no_user_site` | -s | - +------------------------------+------------------------------------------+ - | :const:`no_site` | -S | - +------------------------------+------------------------------------------+ - | :const:`ignore_environment` | -E | - +------------------------------+------------------------------------------+ - | :const:`verbose` | -v | - +------------------------------+------------------------------------------+ - | :const:`bytes_warning` | -b | - +------------------------------+------------------------------------------+ + ============================= ============================= + attribute flag + ============================= ============================= + :const:`debug` :option:`-d` + :const:`division_warning` :option:`-Q` + :const:`inspect` :option:`-i` + :const:`interactive` :option:`-i` + :const:`optimize` :option:`-O` or :option:`-OO` + :const:`dont_write_bytecode` :option:`-B` + :const:`no_user_site` :option:`-s` + :const:`no_site` :option:`-S` + :const:`ignore_environment` :option:`-E` + :const:`verbose` :option:`-v` + :const:`bytes_warning` :option:`-b` + ============================= ============================= .. data:: float_info diff --git a/Doc/tutorial/interactive.rst b/Doc/tutorial/interactive.rst --- a/Doc/tutorial/interactive.rst +++ b/Doc/tutorial/interactive.rst @@ -123,10 +123,7 @@ # bound to the Esc key by default (you can change it - see readline docs). # # Store the file in ~/.pystartup, and set an environment variable to point - # to it: "export PYTHONSTARTUP=/home/user/.pystartup" in bash. - # - # Note that PYTHONSTARTUP does *not* expand "~", so you have to put in the - # full path to your home directory. + # to it: "export PYTHONSTARTUP=~/.pystartup" in bash. import atexit import os -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 02:04:24 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 02:04:24 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge 3.1 Message-ID: http://hg.python.org/cpython/rev/12e044c29e6a changeset: 68952:12e044c29e6a branch: 3.2 parent: 68943:bf4f806920af parent: 68951:ec25055d30f1 user: ?ric Araujo date: Sat Mar 26 01:59:47 2011 +0100 summary: Merge 3.1 files: Doc/library/http.cookiejar.rst | 2 +- Doc/library/readline.rst | 2 +- Doc/library/sys.rst | 43 ++++++++------------- Doc/tutorial/interactive.rst | 5 +-- 4 files changed, 19 insertions(+), 33 deletions(-) diff --git a/Doc/library/http.cookiejar.rst b/Doc/library/http.cookiejar.rst --- a/Doc/library/http.cookiejar.rst +++ b/Doc/library/http.cookiejar.rst @@ -722,7 +722,7 @@ import os, http.cookiejar, urllib.request cj = http.cookiejar.MozillaCookieJar() - cj.load(os.path.join(os.environ["HOME"], ".netscape/cookies.txt")) + cj.load(os.path.join(os.path.expanduser("~"), ".netscape", "cookies.txt")) opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj)) r = opener.open("http://example.com/") diff --git a/Doc/library/readline.rst b/Doc/library/readline.rst --- a/Doc/library/readline.rst +++ b/Doc/library/readline.rst @@ -196,7 +196,7 @@ import os import readline - histfile = os.path.join(os.environ["HOME"], ".pyhist") + histfile = os.path.join(os.path.expanduser("~"), ".pyhist") try: readline.read_history_file(histfile) except IOError: diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -239,33 +239,22 @@ The struct sequence *flags* exposes the status of command line flags. The attributes are read only. - +------------------------------+------------------------------------------+ - | attribute | flag | - +==============================+==========================================+ - | :const:`debug` | -d | - +------------------------------+------------------------------------------+ - | :const:`division_warning` | -Q | - +------------------------------+------------------------------------------+ - | :const:`inspect` | -i | - +------------------------------+------------------------------------------+ - | :const:`interactive` | -i | - +------------------------------+------------------------------------------+ - | :const:`optimize` | -O or -OO | - +------------------------------+------------------------------------------+ - | :const:`dont_write_bytecode` | -B | - +------------------------------+------------------------------------------+ - | :const:`no_user_site` | -s | - +------------------------------+------------------------------------------+ - | :const:`no_site` | -S | - +------------------------------+------------------------------------------+ - | :const:`ignore_environment` | -E | - +------------------------------+------------------------------------------+ - | :const:`verbose` | -v | - +------------------------------+------------------------------------------+ - | :const:`bytes_warning` | -b | - +------------------------------+------------------------------------------+ - | :const:`quiet` | -q | - +------------------------------+------------------------------------------+ + ============================= ============================= + attribute flag + ============================= ============================= + :const:`debug` :option:`-d` + :const:`division_warning` :option:`-Q` + :const:`inspect` :option:`-i` + :const:`interactive` :option:`-i` + :const:`optimize` :option:`-O` or :option:`-OO` + :const:`dont_write_bytecode` :option:`-B` + :const:`no_user_site` :option:`-s` + :const:`no_site` :option:`-S` + :const:`ignore_environment` :option:`-E` + :const:`verbose` :option:`-v` + :const:`bytes_warning` :option:`-b` + :const:`quiet` :option:`-q` + ============================= ============================= .. versionchanged:: 3.2 Added ``quiet`` attribute for the new :option:`-q` flag. diff --git a/Doc/tutorial/interactive.rst b/Doc/tutorial/interactive.rst --- a/Doc/tutorial/interactive.rst +++ b/Doc/tutorial/interactive.rst @@ -123,10 +123,7 @@ # bound to the Esc key by default (you can change it - see readline docs). # # Store the file in ~/.pystartup, and set an environment variable to point - # to it: "export PYTHONSTARTUP=/home/user/.pystartup" in bash. - # - # Note that PYTHONSTARTUP does *not* expand "~", so you have to put in the - # full path to your home directory. + # to it: "export PYTHONSTARTUP=~/.pystartup" in bash. import atexit import os -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 02:04:24 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 02:04:24 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> 3.2): Branch merge Message-ID: http://hg.python.org/cpython/rev/089e8dc9a6d8 changeset: 68953:089e8dc9a6d8 branch: 3.2 parent: 68952:12e044c29e6a parent: 68949:2ff899814b4d user: ?ric Araujo date: Sat Mar 26 02:00:08 2011 +0100 summary: Branch merge files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 02:04:26 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 02:04:26 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2 Message-ID: http://hg.python.org/cpython/rev/3fda0eba5765 changeset: 68954:3fda0eba5765 parent: 68944:9ea72ff3527a parent: 68953:089e8dc9a6d8 user: ?ric Araujo date: Sat Mar 26 02:00:51 2011 +0100 summary: Merge 3.2 files: Doc/library/http.cookiejar.rst | 2 +- Doc/library/readline.rst | 2 +- Doc/library/sys.rst | 43 ++++++++------------- Doc/tutorial/interactive.rst | 5 +-- 4 files changed, 19 insertions(+), 33 deletions(-) diff --git a/Doc/library/http.cookiejar.rst b/Doc/library/http.cookiejar.rst --- a/Doc/library/http.cookiejar.rst +++ b/Doc/library/http.cookiejar.rst @@ -722,7 +722,7 @@ import os, http.cookiejar, urllib.request cj = http.cookiejar.MozillaCookieJar() - cj.load(os.path.join(os.environ["HOME"], ".netscape/cookies.txt")) + cj.load(os.path.join(os.path.expanduser("~"), ".netscape", "cookies.txt")) opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj)) r = opener.open("http://example.com/") diff --git a/Doc/library/readline.rst b/Doc/library/readline.rst --- a/Doc/library/readline.rst +++ b/Doc/library/readline.rst @@ -196,7 +196,7 @@ import os import readline - histfile = os.path.join(os.environ["HOME"], ".pyhist") + histfile = os.path.join(os.path.expanduser("~"), ".pyhist") try: readline.read_history_file(histfile) except IOError: diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -227,33 +227,22 @@ The struct sequence *flags* exposes the status of command line flags. The attributes are read only. - +------------------------------+------------------------------------------+ - | attribute | flag | - +==============================+==========================================+ - | :const:`debug` | -d | - +------------------------------+------------------------------------------+ - | :const:`division_warning` | -Q | - +------------------------------+------------------------------------------+ - | :const:`inspect` | -i | - +------------------------------+------------------------------------------+ - | :const:`interactive` | -i | - +------------------------------+------------------------------------------+ - | :const:`optimize` | -O or -OO | - +------------------------------+------------------------------------------+ - | :const:`dont_write_bytecode` | -B | - +------------------------------+------------------------------------------+ - | :const:`no_user_site` | -s | - +------------------------------+------------------------------------------+ - | :const:`no_site` | -S | - +------------------------------+------------------------------------------+ - | :const:`ignore_environment` | -E | - +------------------------------+------------------------------------------+ - | :const:`verbose` | -v | - +------------------------------+------------------------------------------+ - | :const:`bytes_warning` | -b | - +------------------------------+------------------------------------------+ - | :const:`quiet` | -q | - +------------------------------+------------------------------------------+ + ============================= ============================= + attribute flag + ============================= ============================= + :const:`debug` :option:`-d` + :const:`division_warning` :option:`-Q` + :const:`inspect` :option:`-i` + :const:`interactive` :option:`-i` + :const:`optimize` :option:`-O` or :option:`-OO` + :const:`dont_write_bytecode` :option:`-B` + :const:`no_user_site` :option:`-s` + :const:`no_site` :option:`-S` + :const:`ignore_environment` :option:`-E` + :const:`verbose` :option:`-v` + :const:`bytes_warning` :option:`-b` + :const:`quiet` :option:`-q` + ============================= ============================= .. versionchanged:: 3.2 Added ``quiet`` attribute for the new :option:`-q` flag. diff --git a/Doc/tutorial/interactive.rst b/Doc/tutorial/interactive.rst --- a/Doc/tutorial/interactive.rst +++ b/Doc/tutorial/interactive.rst @@ -123,10 +123,7 @@ # bound to the Esc key by default (you can change it - see readline docs). # # Store the file in ~/.pystartup, and set an environment variable to point - # to it: "export PYTHONSTARTUP=/home/user/.pystartup" in bash. - # - # Note that PYTHONSTARTUP does *not* expand "~", so you have to put in the - # full path to your home directory. + # to it: "export PYTHONSTARTUP=~/.pystartup" in bash. import atexit import os -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 02:04:27 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 02:04:27 +0100 Subject: [Python-checkins] cpython (merge default -> default): Branch merge Message-ID: http://hg.python.org/cpython/rev/1e237063198c changeset: 68955:1e237063198c parent: 68954:3fda0eba5765 parent: 68950:c19752ea037f user: ?ric Araujo date: Sat Mar 26 02:01:33 2011 +0100 summary: Branch merge files: Doc/library/sys.rst | 1 - Doc/whatsnew/3.3.rst | 4 ++++ Include/pydebug.h | 1 - Lib/test/test_cmd_line.py | 6 ------ Lib/test/test_sys.py | 2 +- Misc/NEWS | 3 +++ Misc/python.man | 13 ------------- Objects/object.c | 2 -- Python/sysmodule.c | 6 ++---- 9 files changed, 10 insertions(+), 28 deletions(-) diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -231,7 +231,6 @@ attribute flag ============================= ============================= :const:`debug` :option:`-d` - :const:`division_warning` :option:`-Q` :const:`inspect` :option:`-i` :const:`interactive` :option:`-i` :const:`optimize` :option:`-O` or :option:`-OO` diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -133,3 +133,7 @@ ``import site`` will not add site-specific paths to the module search paths. In previous versions, it did. See changeset for doc changes in various files. Contributed by Carl Meyer with editions by ?ric Araujo. + +.. Issue #10998: -Q command-line flags are related artifacts have been + removed. Code checking sys.flags.division_warning will need updating. + Contributed by ?ric Araujo. diff --git a/Include/pydebug.h b/Include/pydebug.h --- a/Include/pydebug.h +++ b/Include/pydebug.h @@ -16,7 +16,6 @@ PyAPI_DATA(int) Py_UseClassExceptionsFlag; PyAPI_DATA(int) Py_FrozenFlag; PyAPI_DATA(int) Py_IgnoreEnvironmentFlag; -PyAPI_DATA(int) Py_DivisionWarningFlag; PyAPI_DATA(int) Py_DontWriteBytecodeFlag; PyAPI_DATA(int) Py_NoUserSiteDirectory; PyAPI_DATA(int) Py_UnbufferedStdioFlag; diff --git a/Lib/test/test_cmd_line.py b/Lib/test/test_cmd_line.py --- a/Lib/test/test_cmd_line.py +++ b/Lib/test/test_cmd_line.py @@ -31,12 +31,6 @@ self.verify_valid_flag('-O') self.verify_valid_flag('-OO') - def test_q(self): - self.verify_valid_flag('-Qold') - self.verify_valid_flag('-Qnew') - self.verify_valid_flag('-Qwarn') - self.verify_valid_flag('-Qwarnall') - def test_site_flag(self): self.verify_valid_flag('-S') diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -501,7 +501,7 @@ def test_sys_flags(self): self.assertTrue(sys.flags) - attrs = ("debug", "division_warning", + attrs = ("debug", "inspect", "interactive", "optimize", "dont_write_bytecode", "no_user_site", "no_site", "ignore_environment", "verbose", "bytes_warning", "quiet") diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #10998: Remove mentions of -Q, sys.flags.division_warning and + Py_DivisionWarningFlag left over from Python 2. + - Issue #11244: Remove an unnecessary peepholer check that was preventing negative zeros from being constant-folded properly. diff --git a/Misc/python.man b/Misc/python.man --- a/Misc/python.man +++ b/Misc/python.man @@ -37,10 +37,6 @@ .B \-O0 ] [ -.B -Q -.I argument -] -[ .B \-s ] [ @@ -152,15 +148,6 @@ Do not print the version and copyright messages. These messages are also suppressed in non-interactive mode. .TP -.BI "\-Q " argument -Division control; see PEP 238. The argument must be one of "old" (the -default, int/int and long/long return an int or long), "new" (new -division semantics, i.e. int/int and long/long returns a float), -"warn" (old division semantics with a warning for int/int and -long/long), or "warnall" (old division semantics with a warning for -all use of the division operator). For a use of "warnall", see the -Tools/scripts/fixdiv.py script. -.TP .B \-s Don't add user site directory to sys.path. .TP diff --git a/Objects/object.c b/Objects/object.c --- a/Objects/object.c +++ b/Objects/object.c @@ -29,8 +29,6 @@ } #endif /* Py_REF_DEBUG */ -int Py_DivisionWarningFlag; - /* Object allocation routines used by NEWOBJ and NEWVAROBJ macros. These are used by the individual routines for object creation. Do not call them otherwise, they do not initialize the object! */ diff --git a/Python/sysmodule.c b/Python/sysmodule.c --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1312,7 +1312,6 @@ static PyStructSequence_Field flags_fields[] = { {"debug", "-d"}, - {"division_warning", "-Q"}, {"inspect", "-i"}, {"interactive", "-i"}, {"optimize", "-O or -OO"}, @@ -1336,9 +1335,9 @@ flags__doc__, /* doc */ flags_fields, /* fields */ #ifdef RISCOS - 13 + 12 #else - 12 + 11 #endif }; @@ -1356,7 +1355,6 @@ PyStructSequence_SET_ITEM(seq, pos++, PyLong_FromLong(flag)) SetFlag(Py_DebugFlag); - SetFlag(Py_DivisionWarningFlag); SetFlag(Py_InspectFlag); SetFlag(Py_InteractiveFlag); SetFlag(Py_OptimizeFlag); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 02:18:32 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 02:18:32 +0100 Subject: [Python-checkins] cpython (2.7): Use universal construct os.path.expanduser('~') instead of os.environ['HOME'] Message-ID: http://hg.python.org/cpython/rev/fa66a848b6dc changeset: 68956:fa66a848b6dc branch: 2.7 parent: 68941:46aaa365111f user: ?ric Araujo date: Sat Mar 26 01:24:47 2011 +0100 summary: Use universal construct os.path.expanduser('~') instead of os.environ['HOME'] files: Doc/library/cookielib.rst | 2 +- Doc/library/readline.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/cookielib.rst b/Doc/library/cookielib.rst --- a/Doc/library/cookielib.rst +++ b/Doc/library/cookielib.rst @@ -750,7 +750,7 @@ import os, cookielib, urllib2 cj = cookielib.MozillaCookieJar() - cj.load(os.path.join(os.environ["HOME"], ".netscape/cookies.txt")) + cj.load(os.path.join(os.path.expanduser("~"), ".netscape", "cookies.txt")) opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj)) r = opener.open("http://example.com/") diff --git a/Doc/library/readline.rst b/Doc/library/readline.rst --- a/Doc/library/readline.rst +++ b/Doc/library/readline.rst @@ -211,7 +211,7 @@ import os import readline - histfile = os.path.join(os.environ["HOME"], ".pyhist") + histfile = os.path.join(os.path.expanduser("~"), ".pyhist") try: readline.read_history_file(histfile) except IOError: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 02:18:33 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 02:18:33 +0100 Subject: [Python-checkins] cpython (2.7): Remove untrue statement from tutorial Message-ID: http://hg.python.org/cpython/rev/c715429ff53e changeset: 68957:c715429ff53e branch: 2.7 user: ?ric Araujo date: Sat Mar 26 01:26:08 2011 +0100 summary: Remove untrue statement from tutorial files: Doc/tutorial/interactive.rst | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/Doc/tutorial/interactive.rst b/Doc/tutorial/interactive.rst --- a/Doc/tutorial/interactive.rst +++ b/Doc/tutorial/interactive.rst @@ -123,10 +123,7 @@ # bound to the Esc key by default (you can change it - see readline docs). # # Store the file in ~/.pystartup, and set an environment variable to point - # to it: "export PYTHONSTARTUP=/home/user/.pystartup" in bash. - # - # Note that PYTHONSTARTUP does *not* expand "~", so you have to put in the - # full path to your home directory. + # to it: "export PYTHONSTARTUP=~/.pystartup" in bash. import atexit import os -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 02:18:34 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 02:18:34 +0100 Subject: [Python-checkins] cpython (2.7): Tweaks to sys.flags description table. Message-ID: http://hg.python.org/cpython/rev/814599728ac0 changeset: 68958:814599728ac0 branch: 2.7 user: ?ric Araujo date: Sat Mar 26 02:09:14 2011 +0100 summary: Tweaks to sys.flags description table. The options listed in the table are now links to their documentation, and the table uses compact markup to make it easier to read and edit. First proposed in #10998. files: Doc/library/sys.rst | 52 ++++++++++++-------------------- 1 files changed, 19 insertions(+), 33 deletions(-) diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -269,39 +269,25 @@ The struct sequence *flags* exposes the status of command line flags. The attributes are read only. - +------------------------------+------------------------------------------+ - | attribute | flag | - +==============================+==========================================+ - | :const:`debug` | -d | - +------------------------------+------------------------------------------+ - | :const:`py3k_warning` | -3 | - +------------------------------+------------------------------------------+ - | :const:`division_warning` | -Q | - +------------------------------+------------------------------------------+ - | :const:`division_new` | -Qnew | - +------------------------------+------------------------------------------+ - | :const:`inspect` | -i | - +------------------------------+------------------------------------------+ - | :const:`interactive` | -i | - +------------------------------+------------------------------------------+ - | :const:`optimize` | -O or -OO | - +------------------------------+------------------------------------------+ - | :const:`dont_write_bytecode` | -B | - +------------------------------+------------------------------------------+ - | :const:`no_user_site` | -s | - +------------------------------+------------------------------------------+ - | :const:`no_site` | -S | - +------------------------------+------------------------------------------+ - | :const:`ignore_environment` | -E | - +------------------------------+------------------------------------------+ - | :const:`tabcheck` | -t or -tt | - +------------------------------+------------------------------------------+ - | :const:`verbose` | -v | - +------------------------------+------------------------------------------+ - | :const:`unicode` | -U | - +------------------------------+------------------------------------------+ - | :const:`bytes_warning` | -b | - +------------------------------+------------------------------------------+ + ============================= =================================== + attribute flag + ============================= =================================== + :const:`debug` :option:`-d` + :const:`py3k_warning` :option:`-3` + :const:`division_warning` :option:`-Q` + :const:`division_new` :option:`-Qnew <-Q>` + :const:`inspect` :option:`-i` + :const:`interactive` :option:`-i` + :const:`optimize` :option:`-O` or :option:`-OO` + :const:`dont_write_bytecode` :option:`-B` + :const:`no_user_site` :option:`-s` + :const:`no_site` :option:`-S` + :const:`ignore_environment` :option:`-E` + :const:`tabcheck` :option:`-t` or :option:`-tt <-t>` + :const:`verbose` :option:`-v` + :const:`unicode` :option:`-U` + :const:`bytes_warning` :option:`-b` + ============================= =================================== .. versionadded:: 2.6 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 03:23:56 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 03:23:56 +0100 Subject: [Python-checkins] cpython (3.2): #10553: Explain why compileall has no command-line argument to control Message-ID: http://hg.python.org/cpython/rev/81c001680b36 changeset: 68959:81c001680b36 branch: 3.2 parent: 68953:089e8dc9a6d8 user: ?ric Araujo date: Sat Mar 26 03:22:55 2011 +0100 summary: #10553: Explain why compileall has no command-line argument to control optimization files: Doc/library/compileall.rst | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Doc/library/compileall.rst b/Doc/library/compileall.rst --- a/Doc/library/compileall.rst +++ b/Doc/library/compileall.rst @@ -68,6 +68,9 @@ .. versionchanged:: 3.2 Added the ``-i``, ``-b`` and ``-h`` options. +There is no command-line option to control the optimization level used by the +:func:`compile` function, because the Python interpreter itself already +provides the option: :program:`python -O -m compileall`. Public functions ---------------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 03:23:57 2011 From: python-checkins at python.org (eric.araujo) Date: Sat, 26 Mar 2011 03:23:57 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #10553 followup from 3.2 Message-ID: http://hg.python.org/cpython/rev/125fbebbb5cd changeset: 68960:125fbebbb5cd parent: 68955:1e237063198c parent: 68959:81c001680b36 user: ?ric Araujo date: Sat Mar 26 03:23:43 2011 +0100 summary: Merge #10553 followup from 3.2 files: Doc/library/compileall.rst | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Doc/library/compileall.rst b/Doc/library/compileall.rst --- a/Doc/library/compileall.rst +++ b/Doc/library/compileall.rst @@ -68,6 +68,9 @@ .. versionchanged:: 3.2 Added the ``-i``, ``-b`` and ``-h`` options. +There is no command-line option to control the optimization level used by the +:func:`compile` function, because the Python interpreter itself already +provides the option: :program:`python -O -m compileall`. Public functions ---------------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 04:49:35 2011 From: python-checkins at python.org (nick.coghlan) Date: Sat, 26 Mar 2011 04:49:35 +0100 Subject: [Python-checkins] peps: Don't mandate 2.5 when generating PEP 0 directly Message-ID: http://hg.python.org/peps/rev/8a593495fb10 changeset: 3849:8a593495fb10 user: Nick Coghlan date: Sat Mar 26 13:49:11 2011 +1000 summary: Don't mandate 2.5 when generating PEP 0 directly files: genpepindex.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/genpepindex.py b/genpepindex.py old mode 100644 new mode 100755 --- a/genpepindex.py +++ b/genpepindex.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.5 +#!/usr/bin/env python """Auto-generate PEP 0 (PEP index). Generating the PEP index is a multi-step process. To begin, you must first -- Repository URL: http://hg.python.org/peps From solipsis at pitrou.net Sat Mar 26 04:59:42 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Sat, 26 Mar 2011 04:59:42 +0100 Subject: [Python-checkins] Daily reference leaks (125fbebbb5cd): sum=0 Message-ID: results for 125fbebbb5cd on branch "default" -------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflog6J4Crd', '-x'] From python-checkins at python.org Sat Mar 26 05:05:13 2011 From: python-checkins at python.org (nick.coghlan) Date: Sat, 26 Mar 2011 05:05:13 +0100 Subject: [Python-checkins] peps: Reference tracker issue for PEP 380 forward port to 3.3 Message-ID: http://hg.python.org/peps/rev/9bd2aaf4c1fe changeset: 3850:9bd2aaf4c1fe user: Nick Coghlan date: Sat Mar 26 14:04:32 2011 +1000 summary: Reference tracker issue for PEP 380 forward port to 3.3 files: pep-0380.txt | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/pep-0380.txt b/pep-0380.txt --- a/pep-0380.txt +++ b/pep-0380.txt @@ -449,6 +449,12 @@ .. _Examples and Implementation: http://www.cosc.canterbury.ac.nz/greg.ewing/python/yield-from/ +A version of the implementation updated for Python 3.3 is available from +tracker `issue #11682`_ + +.. _issue #11682 + http://bugs.python.org/issue11682 + Copyright ========= @@ -456,7 +462,6 @@ This document has been placed in the public domain. - .. Local Variables: mode: indented-text -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Sat Mar 26 05:28:01 2011 From: python-checkins at python.org (nick.coghlan) Date: Sat, 26 Mar 2011 05:28:01 +0100 Subject: [Python-checkins] peps: Fix typo Message-ID: http://hg.python.org/peps/rev/51f5c89834c6 changeset: 3851:51f5c89834c6 user: Nick Coghlan date: Sat Mar 26 14:27:51 2011 +1000 summary: Fix typo files: pep-0380.txt | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pep-0380.txt b/pep-0380.txt --- a/pep-0380.txt +++ b/pep-0380.txt @@ -452,7 +452,7 @@ A version of the implementation updated for Python 3.3 is available from tracker `issue #11682`_ -.. _issue #11682 +.. _issue #11682: http://bugs.python.org/issue11682 -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Sat Mar 26 11:02:46 2011 From: python-checkins at python.org (mark.dickinson) Date: Sat, 26 Mar 2011 11:02:46 +0100 Subject: [Python-checkins] cpython (2.7): Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects. Message-ID: http://hg.python.org/cpython/rev/2af0c2c106ea changeset: 68961:2af0c2c106ea branch: 2.7 parent: 68958:814599728ac0 user: Mark Dickinson date: Sat Mar 26 10:02:37 2011 +0000 summary: Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects. files: Lib/multiprocessing/sharedctypes.py | 4 +++- Lib/test/test_multiprocessing.py | 15 +++++++++++++++ Misc/NEWS | 4 ++++ 3 files changed, 22 insertions(+), 1 deletions(-) diff --git a/Lib/multiprocessing/sharedctypes.py b/Lib/multiprocessing/sharedctypes.py --- a/Lib/multiprocessing/sharedctypes.py +++ b/Lib/multiprocessing/sharedctypes.py @@ -80,7 +80,9 @@ type_ = typecode_to_type.get(typecode_or_type, typecode_or_type) if isinstance(size_or_initializer, (int, long)): type_ = type_ * size_or_initializer - return _new_value(type_) + obj = _new_value(type_) + ctypes.memset(ctypes.addressof(obj), 0, ctypes.sizeof(obj)) + return obj else: type_ = type_ * len(size_or_initializer) result = _new_value(type_) diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -914,6 +914,21 @@ self.assertEqual(list(arr[:]), seq) @unittest.skipIf(c_int is None, "requires _ctypes") + def test_array_from_size(self): + size = 10 + # Test for zeroing (see issue #11675). + # The repetition below strengthens the test by increasing the chances + # of previously allocated non-zero memory being used for the new array + # on the 2nd and 3rd loops. + for _ in range(3): + arr = self.Array('i', size) + self.assertEqual(len(arr), size) + self.assertEqual(list(arr), [0] * size) + arr[:] = range(10) + self.assertEqual(list(arr), range(10)) + del arr + + @unittest.skipIf(c_int is None, "requires _ctypes") def test_rawarray(self): self.test_array(raw=True) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -9,6 +9,10 @@ Core and Builtins ----------------- +- Issue #11675: multiprocessing.[Raw]Array objects created from an integer size + are now zeroed on creation. This matches the behaviour specified by the + documentation. + - Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when there are many tags (e.g. when using mq). Patch by Nadeem Vawda. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 11:23:33 2011 From: python-checkins at python.org (mark.dickinson) Date: Sat, 26 Mar 2011 11:23:33 +0100 Subject: [Python-checkins] cpython (3.1): Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects. Message-ID: http://hg.python.org/cpython/rev/0cb276628528 changeset: 68962:0cb276628528 branch: 3.1 parent: 68951:ec25055d30f1 user: Mark Dickinson date: Sat Mar 26 10:19:03 2011 +0000 summary: Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects. files: Lib/multiprocessing/sharedctypes.py | 4 +++- Lib/test/test_multiprocessing.py | 15 +++++++++++++++ Misc/NEWS | 4 ++++ 3 files changed, 22 insertions(+), 1 deletions(-) diff --git a/Lib/multiprocessing/sharedctypes.py b/Lib/multiprocessing/sharedctypes.py --- a/Lib/multiprocessing/sharedctypes.py +++ b/Lib/multiprocessing/sharedctypes.py @@ -80,7 +80,9 @@ type_ = typecode_to_type.get(typecode_or_type, typecode_or_type) if isinstance(size_or_initializer, int): type_ = type_ * size_or_initializer - return _new_value(type_) + obj = _new_value(type_) + ctypes.memset(ctypes.addressof(obj), 0, ctypes.sizeof(obj)) + return obj else: type_ = type_ * len(size_or_initializer) result = _new_value(type_) diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -914,6 +914,21 @@ self.assertEqual(list(arr[:]), seq) @unittest.skipIf(c_int is None, "requires _ctypes") + def test_array_from_size(self): + size = 10 + # Test for zeroing (see issue #11675). + # The repetition below strengthens the test by increasing the chances + # of previously allocated non-zero memory being used for the new array + # on the 2nd and 3rd loops. + for _ in range(3): + arr = self.Array('i', size) + self.assertEqual(len(arr), size) + self.assertEqual(list(arr), [0] * size) + arr[:] = range(10) + self.assertEqual(list(arr), list(range(10))) + del arr + + @unittest.skipIf(c_int is None, "requires _ctypes") def test_rawarray(self): self.test_array(raw=True) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,10 @@ Core and Builtins ----------------- +- Issue #11675: multiprocessing.[Raw]Array objects created from an integer size + are now zeroed on creation. This matches the behaviour specified by the + documentation. + - Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int (length bigger than 2^31-1 bytes). -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 11:23:34 2011 From: python-checkins at python.org (mark.dickinson) Date: Sat, 26 Mar 2011 11:23:34 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge #11675 Message-ID: http://hg.python.org/cpython/rev/64ab52a64cc9 changeset: 68963:64ab52a64cc9 branch: 3.2 parent: 68959:81c001680b36 parent: 68962:0cb276628528 user: Mark Dickinson date: Sat Mar 26 10:21:20 2011 +0000 summary: Merge #11675 files: Lib/multiprocessing/sharedctypes.py | 4 +++- Lib/test/test_multiprocessing.py | 15 +++++++++++++++ Misc/NEWS | 4 ++++ 3 files changed, 22 insertions(+), 1 deletions(-) diff --git a/Lib/multiprocessing/sharedctypes.py b/Lib/multiprocessing/sharedctypes.py --- a/Lib/multiprocessing/sharedctypes.py +++ b/Lib/multiprocessing/sharedctypes.py @@ -80,7 +80,9 @@ type_ = typecode_to_type.get(typecode_or_type, typecode_or_type) if isinstance(size_or_initializer, int): type_ = type_ * size_or_initializer - return _new_value(type_) + obj = _new_value(type_) + ctypes.memset(ctypes.addressof(obj), 0, ctypes.sizeof(obj)) + return obj else: type_ = type_ * len(size_or_initializer) result = _new_value(type_) diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -917,6 +917,21 @@ self.assertEqual(list(arr[:]), seq) @unittest.skipIf(c_int is None, "requires _ctypes") + def test_array_from_size(self): + size = 10 + # Test for zeroing (see issue #11675). + # The repetition below strengthens the test by increasing the chances + # of previously allocated non-zero memory being used for the new array + # on the 2nd and 3rd loops. + for _ in range(3): + arr = self.Array('i', size) + self.assertEqual(len(arr), size) + self.assertEqual(list(arr), [0] * size) + arr[:] = range(10) + self.assertEqual(list(arr), list(range(10))) + del arr + + @unittest.skipIf(c_int is None, "requires _ctypes") def test_rawarray(self): self.test_array(raw=True) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,10 @@ Core and Builtins ----------------- +- Issue #11675: multiprocessing.[Raw]Array objects created from an integer size + are now zeroed on creation. This matches the behaviour specified by the + documentation. + - Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on Windows if the file is a TTY to workaround a Windows bug. The Windows console returns an error (12: not enough space error) on writing into stdout if -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 11:23:35 2011 From: python-checkins at python.org (mark.dickinson) Date: Sat, 26 Mar 2011 11:23:35 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #11675 Message-ID: http://hg.python.org/cpython/rev/f60e55b14d92 changeset: 68964:f60e55b14d92 parent: 68960:125fbebbb5cd parent: 68963:64ab52a64cc9 user: Mark Dickinson date: Sat Mar 26 10:22:56 2011 +0000 summary: Merge #11675 files: Lib/multiprocessing/sharedctypes.py | 4 +++- Lib/test/test_multiprocessing.py | 15 +++++++++++++++ Misc/NEWS | 4 ++++ 3 files changed, 22 insertions(+), 1 deletions(-) diff --git a/Lib/multiprocessing/sharedctypes.py b/Lib/multiprocessing/sharedctypes.py --- a/Lib/multiprocessing/sharedctypes.py +++ b/Lib/multiprocessing/sharedctypes.py @@ -80,7 +80,9 @@ type_ = typecode_to_type.get(typecode_or_type, typecode_or_type) if isinstance(size_or_initializer, int): type_ = type_ * size_or_initializer - return _new_value(type_) + obj = _new_value(type_) + ctypes.memset(ctypes.addressof(obj), 0, ctypes.sizeof(obj)) + return obj else: type_ = type_ * len(size_or_initializer) result = _new_value(type_) diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -929,6 +929,21 @@ self.assertEqual(list(arr[:]), seq) @unittest.skipIf(c_int is None, "requires _ctypes") + def test_array_from_size(self): + size = 10 + # Test for zeroing (see issue #11675). + # The repetition below strengthens the test by increasing the chances + # of previously allocated non-zero memory being used for the new array + # on the 2nd and 3rd loops. + for _ in range(3): + arr = self.Array('i', size) + self.assertEqual(len(arr), size) + self.assertEqual(list(arr), [0] * size) + arr[:] = range(10) + self.assertEqual(list(arr), list(range(10))) + del arr + + @unittest.skipIf(c_int is None, "requires _ctypes") def test_rawarray(self): self.test_array(raw=True) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,10 @@ Core and Builtins ----------------- +- Issue #11675: multiprocessing.[Raw]Array objects created from an integer size + are now zeroed on creation. This matches the behaviour specified by the + documentation. + - Issue #10998: Remove mentions of -Q, sys.flags.division_warning and Py_DivisionWarningFlag left over from Python 2. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 13:30:17 2011 From: python-checkins at python.org (mark.dickinson) Date: Sat, 26 Mar 2011 13:30:17 +0100 Subject: [Python-checkins] cpython (2.7): Issue #11144: Fix corner cases where float-to-int conversion unnecessarily Message-ID: http://hg.python.org/cpython/rev/e1ebec2446cd changeset: 68965:e1ebec2446cd branch: 2.7 parent: 68961:2af0c2c106ea user: Mark Dickinson date: Sat Mar 26 12:18:00 2011 +0000 summary: Issue #11144: Fix corner cases where float-to-int conversion unnecessarily returned a long. files: Lib/test/test_float.py | 42 ++++++++++++++++++++++++++++++ Misc/NEWS | 4 ++ Objects/floatobject.c | 17 +++++++----- 3 files changed, 56 insertions(+), 7 deletions(-) diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -52,6 +52,48 @@ float('.' + '1'*1000) float(unicode('.' + '1'*1000)) + def check_conversion_to_int(self, x): + """Check that int(x) has the correct value and type, for a float x.""" + n = int(x) + if x >= 0.0: + # x >= 0 and n = int(x) ==> n <= x < n + 1 + self.assertLessEqual(n, x) + self.assertLess(x, n + 1) + else: + # x < 0 and n = int(x) ==> n >= x > n - 1 + self.assertGreaterEqual(n, x) + self.assertGreater(x, n - 1) + + # Result should be an int if within range, else a long. + if -sys.maxint-1 <= n <= sys.maxint: + self.assertEqual(type(n), int) + else: + self.assertEqual(type(n), long) + + # Double check. + self.assertEqual(type(int(n)), type(n)) + + def test_conversion_to_int(self): + # Check that floats within the range of an int convert to type + # int, not long. (issue #11144.) + boundary = float(sys.maxint + 1) + epsilon = 2**-sys.float_info.mant_dig * boundary + + # These 2 floats are either side of the positive int/long boundary on + # both 32-bit and 64-bit systems. + self.check_conversion_to_int(boundary - epsilon) + self.check_conversion_to_int(boundary) + + # These floats are either side of the negative long/int boundary on + # 64-bit systems... + self.check_conversion_to_int(-boundary - 2*epsilon) + self.check_conversion_to_int(-boundary) + + # ... and these ones are either side of the negative long/int + # boundary on 32-bit systems. + self.check_conversion_to_int(-boundary - 1.0) + self.check_conversion_to_int(-boundary - 1.0 + 2*epsilon) + @test_support.run_with_locale('LC_NUMERIC', 'fr_FR', 'de_DE') def test_float_with_comma(self): # set locale to something that doesn't use '.' for the decimal point diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -9,6 +9,10 @@ Core and Builtins ----------------- +- Issue #11144: Ensure that int(a_float) returns an int whenever possible. + Previously, there were some corner cases where a long was returned even + though the result was within the range of an int. + - Issue #11675: multiprocessing.[Raw]Array objects created from an integer size are now zeroed on creation. This matches the behaviour specified by the documentation. diff --git a/Objects/floatobject.c b/Objects/floatobject.c --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -1035,14 +1035,17 @@ * happens if the double is too big to fit in a long. Some rare * systems raise an exception then (RISCOS was mentioned as one, * and someone using a non-default option on Sun also bumped into - * that). Note that checking for >= and <= LONG_{MIN,MAX} would - * still be vulnerable: if a long has more bits of precision than - * a double, casting MIN/MAX to double may yield an approximation, - * and if that's rounded up, then, e.g., wholepart=LONG_MAX+1 would - * yield true from the C expression wholepart<=LONG_MAX, despite - * that wholepart is actually greater than LONG_MAX. + * that). Note that checking for <= LONG_MAX is unsafe: if a long + * has more bits of precision than a double, casting LONG_MAX to + * double may yield an approximation, and if that's rounded up, + * then, e.g., wholepart=LONG_MAX+1 would yield true from the C + * expression wholepart<=LONG_MAX, despite that wholepart is + * actually greater than LONG_MAX. However, assuming a two's complement + * machine with no trap representation, LONG_MIN will be a power of 2 (and + * hence exactly representable as a double), and LONG_MAX = -1-LONG_MIN, so + * the comparisons with (double)LONG_MIN below should be safe. */ - if (LONG_MIN < wholepart && wholepart < LONG_MAX) { + if ((double)LONG_MIN <= wholepart && wholepart < -(double)LONG_MIN) { const long aslong = (long)wholepart; return PyInt_FromLong(aslong); } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 14:48:24 2011 From: python-checkins at python.org (steven.bethard) Date: Sat, 26 Mar 2011 14:48:24 +0100 Subject: [Python-checkins] cpython: Issue #11174: Add argparse.MetavarTypeHelpFormatter, which uses type names Message-ID: http://hg.python.org/cpython/rev/a15d65d8f269 changeset: 68966:a15d65d8f269 parent: 68964:f60e55b14d92 user: Steven Bethard date: Sat Mar 26 14:48:04 2011 +0100 summary: Issue #11174: Add argparse.MetavarTypeHelpFormatter, which uses type names for the names of optional and positional arguments in help messages. files: Doc/library/argparse.rst | 36 +++++++++++++++++++------- Lib/argparse.py | 33 +++++++++++++++++++++--- Lib/test/test_argparse.py | 31 +++++++++++++++++++++++ Misc/NEWS | 3 ++ 4 files changed, 89 insertions(+), 14 deletions(-) diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -356,13 +356,10 @@ ^^^^^^^^^^^^^^^ :class:`ArgumentParser` objects allow the help formatting to be customized by -specifying an alternate formatting class. Currently, there are three such -classes: :class:`argparse.RawDescriptionHelpFormatter`, -:class:`argparse.RawTextHelpFormatter` and -:class:`argparse.ArgumentDefaultsHelpFormatter`. The first two allow more -control over how textual descriptions are displayed, while the last -automatically adds information about argument default values. +specifying an alternate formatting class. +:class:`RawDescriptionHelpFormatter` and :class:`RawTextHelpFormatter` give +more control over how textual descriptions are displayed. By default, :class:`ArgumentParser` objects line-wrap the description_ and epilog_ texts in command-line help messages:: @@ -386,7 +383,7 @@ likewise for this epilog whose whitespace will be cleaned up and whose words will be wrapped across a couple lines -Passing :class:`argparse.RawDescriptionHelpFormatter` as ``formatter_class=`` +Passing :class:`RawDescriptionHelpFormatter` as ``formatter_class=`` indicates that description_ and epilog_ are already correctly formatted and should not be line-wrapped:: @@ -412,11 +409,11 @@ optional arguments: -h, --help show this help message and exit -:class:`RawTextHelpFormatter` maintains whitespace for all sorts of help text +:class:`RawTextHelpFormatter` maintains whitespace for all sorts of help text, including argument descriptions. -The other formatter class available, :class:`ArgumentDefaultsHelpFormatter`, -will add information about the default value of each of the arguments:: +:class:`ArgumentDefaultsHelpFormatter` automatically adds information about +default values to each of the argument help messages:: >>> parser = argparse.ArgumentParser( ... prog='PROG', @@ -433,6 +430,25 @@ -h, --help show this help message and exit --foo FOO FOO! (default: 42) +:class:`MetavarTypeHelpFormatter` uses the name of the type_ argument for each +argument as as the display name for its values (rather than using the dest_ +as the regular formatter does):: + + >>> parser = argparse.ArgumentParser( + ... prog='PROG', + ... formatter_class=argparse.MetavarTypeHelpFormatter) + >>> parser.add_argument('--foo', type=int) + >>> parser.add_argument('bar', type=float) + >>> parser.print_help() + usage: PROG [-h] [--foo int] float + + positional arguments: + float + + optional arguments: + -h, --help show this help message and exit + --foo int + conflict_handler ^^^^^^^^^^^^^^^^ diff --git a/Lib/argparse.py b/Lib/argparse.py --- a/Lib/argparse.py +++ b/Lib/argparse.py @@ -71,6 +71,7 @@ 'ArgumentDefaultsHelpFormatter', 'RawDescriptionHelpFormatter', 'RawTextHelpFormatter', + 'MetavarTypeHelpFormatter', 'Namespace', 'Action', 'ONE_OR_MORE', @@ -422,7 +423,8 @@ # produce all arg strings elif not action.option_strings: - part = self._format_args(action, action.dest) + default = self._get_default_metavar_for_positional(action) + part = self._format_args(action, default) # if it's in a group, strip the outer [] if action in group_actions: @@ -444,7 +446,7 @@ # if the Optional takes a value, format is: # -s ARGS or --long ARGS else: - default = action.dest.upper() + default = self._get_default_metavar_for_optional(action) args_string = self._format_args(action, default) part = '%s %s' % (option_string, args_string) @@ -530,7 +532,8 @@ def _format_action_invocation(self, action): if not action.option_strings: - metavar, = self._metavar_formatter(action, action.dest)(1) + default = self._get_default_metavar_for_positional(action) + metavar, = self._metavar_formatter(action, default)(1) return metavar else: @@ -544,7 +547,7 @@ # if the Optional takes a value, format is: # -s ARGS, --long ARGS else: - default = action.dest.upper() + default = self._get_default_metavar_for_optional(action) args_string = self._format_args(action, default) for option_string in action.option_strings: parts.append('%s %s' % (option_string, args_string)) @@ -622,6 +625,12 @@ def _get_help_string(self, action): return action.help + def _get_default_metavar_for_optional(self, action): + return action.dest.upper() + + def _get_default_metavar_for_positional(self, action): + return action.dest + class RawDescriptionHelpFormatter(HelpFormatter): """Help message formatter which retains any formatting in descriptions. @@ -662,6 +671,22 @@ return help +class MetavarTypeHelpFormatter(HelpFormatter): + """Help message formatter which uses the argument 'type' as the default + metavar value (instead of the argument 'dest') + + Only the name of this class is considered a public API. All the methods + provided by the class are considered an implementation detail. + """ + + def _get_default_metavar_for_optional(self, action): + return action.type.__name__ + + def _get_default_metavar_for_positional(self, action): + return action.type.__name__ + + + # ===================== # Options and Arguments # ===================== diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py --- a/Lib/test/test_argparse.py +++ b/Lib/test/test_argparse.py @@ -3940,6 +3940,37 @@ ''' version = '' + +class TestHelpMetavarTypeFormatter(HelpTestCase): + """""" + + def custom_type(string): + return string + + parser_signature = Sig(prog='PROG', description='description', + formatter_class=argparse.MetavarTypeHelpFormatter) + argument_signatures = [Sig('a', type=int), + Sig('-b', type=custom_type), + Sig('-c', type=float, metavar='SOME FLOAT')] + argument_group_signatures = [] + usage = '''\ + usage: PROG [-h] [-b custom_type] [-c SOME FLOAT] int + ''' + help = usage + '''\ + + description + + positional arguments: + int + + optional arguments: + -h, --help show this help message and exit + -b custom_type + -c SOME FLOAT + ''' + version = '' + + # ===================================== # Optional/Positional constructor tests # ===================================== diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -291,6 +291,9 @@ - Issue #11388: Added a clear() method to MutableSequence +- Issue #11174: Add argparse.MetavarTypeHelpFormatter, which uses type names + for the names of optional and positional arguments in help messages. + Build ----- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 17:59:13 2011 From: python-checkins at python.org (steven.bethard) Date: Sat, 26 Mar 2011 17:59:13 +0100 Subject: [Python-checkins] cpython (3.2): Issue #9348: Raise an early error if argparse nargs and metavar don't match. Message-ID: http://hg.python.org/cpython/rev/c89db9b36ea6 changeset: 68967:c89db9b36ea6 branch: 3.2 parent: 68963:64ab52a64cc9 user: Steven Bethard date: Sat Mar 26 17:33:56 2011 +0100 summary: Issue #9348: Raise an early error if argparse nargs and metavar don't match. files: Lib/argparse.py | 7 + Lib/test/test_argparse.py | 171 ++++++++++++++++++++++++++ Misc/NEWS | 2 + 3 files changed, 180 insertions(+), 0 deletions(-) diff --git a/Lib/argparse.py b/Lib/argparse.py --- a/Lib/argparse.py +++ b/Lib/argparse.py @@ -1294,6 +1294,13 @@ if not _callable(type_func): raise ValueError('%r is not callable' % type_func) + # raise an error if the metavar does not match the type + if hasattr(self, "_get_formatter"): + try: + self._get_formatter()._format_args(action, None) + except TypeError: + raise ValueError("length of metavar tuple does not match nargs") + return self._add_action(action) def add_argument_group(self, *args, **kwargs): diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py --- a/Lib/test/test_argparse.py +++ b/Lib/test/test_argparse.py @@ -4394,6 +4394,177 @@ self.assertEqual(NS(v=3, spam=True, badger="B"), args) self.assertEqual(["C", "--foo", "4"], extras) +# ========================== +# add_argument metavar tests +# ========================== + +class TestAddArgumentMetavar(TestCase): + + EXPECTED_MESSAGE = "length of metavar tuple does not match nargs" + + def do_test_no_exception(self, nargs, metavar): + parser = argparse.ArgumentParser() + parser.add_argument("--foo", nargs=nargs, metavar=metavar) + + def do_test_exception(self, nargs, metavar): + parser = argparse.ArgumentParser() + with self.assertRaises(ValueError) as cm: + parser.add_argument("--foo", nargs=nargs, metavar=metavar) + self.assertEqual(cm.exception.args[0], self.EXPECTED_MESSAGE) + + # Unit tests for different values of metavar when nargs=None + + def test_nargs_None_metavar_string(self): + self.do_test_no_exception(nargs=None, metavar="1") + + def test_nargs_None_metavar_length0(self): + self.do_test_exception(nargs=None, metavar=tuple()) + + def test_nargs_None_metavar_length1(self): + self.do_test_no_exception(nargs=None, metavar=("1")) + + def test_nargs_None_metavar_length2(self): + self.do_test_exception(nargs=None, metavar=("1", "2")) + + def test_nargs_None_metavar_length3(self): + self.do_test_exception(nargs=None, metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=? + + def test_nargs_optional_metavar_string(self): + self.do_test_no_exception(nargs="?", metavar="1") + + def test_nargs_optional_metavar_length0(self): + self.do_test_exception(nargs="?", metavar=tuple()) + + def test_nargs_optional_metavar_length1(self): + self.do_test_no_exception(nargs="?", metavar=("1")) + + def test_nargs_optional_metavar_length2(self): + self.do_test_exception(nargs="?", metavar=("1", "2")) + + def test_nargs_optional_metavar_length3(self): + self.do_test_exception(nargs="?", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=* + + def test_nargs_zeroormore_metavar_string(self): + self.do_test_no_exception(nargs="*", metavar="1") + + def test_nargs_zeroormore_metavar_length0(self): + self.do_test_exception(nargs="*", metavar=tuple()) + + def test_nargs_zeroormore_metavar_length1(self): + self.do_test_no_exception(nargs="*", metavar=("1")) + + def test_nargs_zeroormore_metavar_length2(self): + self.do_test_no_exception(nargs="*", metavar=("1", "2")) + + def test_nargs_zeroormore_metavar_length3(self): + self.do_test_exception(nargs="*", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=+ + + def test_nargs_oneormore_metavar_string(self): + self.do_test_no_exception(nargs="+", metavar="1") + + def test_nargs_oneormore_metavar_length0(self): + self.do_test_exception(nargs="+", metavar=tuple()) + + def test_nargs_oneormore_metavar_length1(self): + self.do_test_no_exception(nargs="+", metavar=("1")) + + def test_nargs_oneormore_metavar_length2(self): + self.do_test_no_exception(nargs="+", metavar=("1", "2")) + + def test_nargs_oneormore_metavar_length3(self): + self.do_test_exception(nargs="+", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=... + + def test_nargs_remainder_metavar_string(self): + self.do_test_no_exception(nargs="...", metavar="1") + + def test_nargs_remainder_metavar_length0(self): + self.do_test_no_exception(nargs="...", metavar=tuple()) + + def test_nargs_remainder_metavar_length1(self): + self.do_test_no_exception(nargs="...", metavar=("1")) + + def test_nargs_remainder_metavar_length2(self): + self.do_test_no_exception(nargs="...", metavar=("1", "2")) + + def test_nargs_remainder_metavar_length3(self): + self.do_test_no_exception(nargs="...", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=A... + + def test_nargs_parser_metavar_string(self): + self.do_test_no_exception(nargs="A...", metavar="1") + + def test_nargs_parser_metavar_length0(self): + self.do_test_exception(nargs="A...", metavar=tuple()) + + def test_nargs_parser_metavar_length1(self): + self.do_test_no_exception(nargs="A...", metavar=("1")) + + def test_nargs_parser_metavar_length2(self): + self.do_test_exception(nargs="A...", metavar=("1", "2")) + + def test_nargs_parser_metavar_length3(self): + self.do_test_exception(nargs="A...", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=1 + + def test_nargs_1_metavar_string(self): + self.do_test_no_exception(nargs=1, metavar="1") + + def test_nargs_1_metavar_length0(self): + self.do_test_exception(nargs=1, metavar=tuple()) + + def test_nargs_1_metavar_length1(self): + self.do_test_no_exception(nargs=1, metavar=("1")) + + def test_nargs_1_metavar_length2(self): + self.do_test_exception(nargs=1, metavar=("1", "2")) + + def test_nargs_1_metavar_length3(self): + self.do_test_exception(nargs=1, metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=2 + + def test_nargs_2_metavar_string(self): + self.do_test_no_exception(nargs=2, metavar="1") + + def test_nargs_2_metavar_length0(self): + self.do_test_exception(nargs=2, metavar=tuple()) + + def test_nargs_2_metavar_length1(self): + self.do_test_no_exception(nargs=2, metavar=("1")) + + def test_nargs_2_metavar_length2(self): + self.do_test_no_exception(nargs=2, metavar=("1", "2")) + + def test_nargs_2_metavar_length3(self): + self.do_test_exception(nargs=2, metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=3 + + def test_nargs_3_metavar_string(self): + self.do_test_no_exception(nargs=3, metavar="1") + + def test_nargs_3_metavar_length0(self): + self.do_test_exception(nargs=3, metavar=tuple()) + + def test_nargs_3_metavar_length1(self): + self.do_test_no_exception(nargs=3, metavar=("1")) + + def test_nargs_3_metavar_length2(self): + self.do_test_exception(nargs=3, metavar=("1", "2")) + + def test_nargs_3_metavar_length3(self): + self.do_test_no_exception(nargs=3, metavar=("1", "2", "3")) + # ============================ # from argparse import * tests # ============================ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -1364,6 +1364,8 @@ - Issue #9948: Fixed problem of losing filename case information. +- Issue #9348: Raise an early error if argparse nargs and metavar don't match. + Extension Modules ----------------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 17:59:14 2011 From: python-checkins at python.org (steven.bethard) Date: Sat, 26 Mar 2011 17:59:14 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #9348: Raise an early error if argparse nargs and metavar don't match. Message-ID: http://hg.python.org/cpython/rev/b93a50bb74f2 changeset: 68968:b93a50bb74f2 parent: 68966:a15d65d8f269 parent: 68967:c89db9b36ea6 user: Steven Bethard date: Sat Mar 26 17:35:11 2011 +0100 summary: Issue #9348: Raise an early error if argparse nargs and metavar don't match. (Merge from 3.2.) files: Lib/argparse.py | 7 + Lib/test/test_argparse.py | 171 ++++++++++++++++++++++++++ Misc/NEWS | 2 + 3 files changed, 180 insertions(+), 0 deletions(-) diff --git a/Lib/argparse.py b/Lib/argparse.py --- a/Lib/argparse.py +++ b/Lib/argparse.py @@ -1319,6 +1319,13 @@ if not _callable(type_func): raise ValueError('%r is not callable' % type_func) + # raise an error if the metavar does not match the type + if hasattr(self, "_get_formatter"): + try: + self._get_formatter()._format_args(action, None) + except TypeError: + raise ValueError("length of metavar tuple does not match nargs") + return self._add_action(action) def add_argument_group(self, *args, **kwargs): diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py --- a/Lib/test/test_argparse.py +++ b/Lib/test/test_argparse.py @@ -4425,6 +4425,177 @@ self.assertEqual(NS(v=3, spam=True, badger="B"), args) self.assertEqual(["C", "--foo", "4"], extras) +# ========================== +# add_argument metavar tests +# ========================== + +class TestAddArgumentMetavar(TestCase): + + EXPECTED_MESSAGE = "length of metavar tuple does not match nargs" + + def do_test_no_exception(self, nargs, metavar): + parser = argparse.ArgumentParser() + parser.add_argument("--foo", nargs=nargs, metavar=metavar) + + def do_test_exception(self, nargs, metavar): + parser = argparse.ArgumentParser() + with self.assertRaises(ValueError) as cm: + parser.add_argument("--foo", nargs=nargs, metavar=metavar) + self.assertEqual(cm.exception.args[0], self.EXPECTED_MESSAGE) + + # Unit tests for different values of metavar when nargs=None + + def test_nargs_None_metavar_string(self): + self.do_test_no_exception(nargs=None, metavar="1") + + def test_nargs_None_metavar_length0(self): + self.do_test_exception(nargs=None, metavar=tuple()) + + def test_nargs_None_metavar_length1(self): + self.do_test_no_exception(nargs=None, metavar=("1")) + + def test_nargs_None_metavar_length2(self): + self.do_test_exception(nargs=None, metavar=("1", "2")) + + def test_nargs_None_metavar_length3(self): + self.do_test_exception(nargs=None, metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=? + + def test_nargs_optional_metavar_string(self): + self.do_test_no_exception(nargs="?", metavar="1") + + def test_nargs_optional_metavar_length0(self): + self.do_test_exception(nargs="?", metavar=tuple()) + + def test_nargs_optional_metavar_length1(self): + self.do_test_no_exception(nargs="?", metavar=("1")) + + def test_nargs_optional_metavar_length2(self): + self.do_test_exception(nargs="?", metavar=("1", "2")) + + def test_nargs_optional_metavar_length3(self): + self.do_test_exception(nargs="?", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=* + + def test_nargs_zeroormore_metavar_string(self): + self.do_test_no_exception(nargs="*", metavar="1") + + def test_nargs_zeroormore_metavar_length0(self): + self.do_test_exception(nargs="*", metavar=tuple()) + + def test_nargs_zeroormore_metavar_length1(self): + self.do_test_no_exception(nargs="*", metavar=("1")) + + def test_nargs_zeroormore_metavar_length2(self): + self.do_test_no_exception(nargs="*", metavar=("1", "2")) + + def test_nargs_zeroormore_metavar_length3(self): + self.do_test_exception(nargs="*", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=+ + + def test_nargs_oneormore_metavar_string(self): + self.do_test_no_exception(nargs="+", metavar="1") + + def test_nargs_oneormore_metavar_length0(self): + self.do_test_exception(nargs="+", metavar=tuple()) + + def test_nargs_oneormore_metavar_length1(self): + self.do_test_no_exception(nargs="+", metavar=("1")) + + def test_nargs_oneormore_metavar_length2(self): + self.do_test_no_exception(nargs="+", metavar=("1", "2")) + + def test_nargs_oneormore_metavar_length3(self): + self.do_test_exception(nargs="+", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=... + + def test_nargs_remainder_metavar_string(self): + self.do_test_no_exception(nargs="...", metavar="1") + + def test_nargs_remainder_metavar_length0(self): + self.do_test_no_exception(nargs="...", metavar=tuple()) + + def test_nargs_remainder_metavar_length1(self): + self.do_test_no_exception(nargs="...", metavar=("1")) + + def test_nargs_remainder_metavar_length2(self): + self.do_test_no_exception(nargs="...", metavar=("1", "2")) + + def test_nargs_remainder_metavar_length3(self): + self.do_test_no_exception(nargs="...", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=A... + + def test_nargs_parser_metavar_string(self): + self.do_test_no_exception(nargs="A...", metavar="1") + + def test_nargs_parser_metavar_length0(self): + self.do_test_exception(nargs="A...", metavar=tuple()) + + def test_nargs_parser_metavar_length1(self): + self.do_test_no_exception(nargs="A...", metavar=("1")) + + def test_nargs_parser_metavar_length2(self): + self.do_test_exception(nargs="A...", metavar=("1", "2")) + + def test_nargs_parser_metavar_length3(self): + self.do_test_exception(nargs="A...", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=1 + + def test_nargs_1_metavar_string(self): + self.do_test_no_exception(nargs=1, metavar="1") + + def test_nargs_1_metavar_length0(self): + self.do_test_exception(nargs=1, metavar=tuple()) + + def test_nargs_1_metavar_length1(self): + self.do_test_no_exception(nargs=1, metavar=("1")) + + def test_nargs_1_metavar_length2(self): + self.do_test_exception(nargs=1, metavar=("1", "2")) + + def test_nargs_1_metavar_length3(self): + self.do_test_exception(nargs=1, metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=2 + + def test_nargs_2_metavar_string(self): + self.do_test_no_exception(nargs=2, metavar="1") + + def test_nargs_2_metavar_length0(self): + self.do_test_exception(nargs=2, metavar=tuple()) + + def test_nargs_2_metavar_length1(self): + self.do_test_no_exception(nargs=2, metavar=("1")) + + def test_nargs_2_metavar_length2(self): + self.do_test_no_exception(nargs=2, metavar=("1", "2")) + + def test_nargs_2_metavar_length3(self): + self.do_test_exception(nargs=2, metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=3 + + def test_nargs_3_metavar_string(self): + self.do_test_no_exception(nargs=3, metavar="1") + + def test_nargs_3_metavar_length0(self): + self.do_test_exception(nargs=3, metavar=tuple()) + + def test_nargs_3_metavar_length1(self): + self.do_test_no_exception(nargs=3, metavar=("1")) + + def test_nargs_3_metavar_length2(self): + self.do_test_exception(nargs=3, metavar=("1", "2")) + + def test_nargs_3_metavar_length3(self): + self.do_test_no_exception(nargs=3, metavar=("1", "2", "3")) + # ============================ # from argparse import * tests # ============================ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -1530,6 +1530,8 @@ - Issue #9948: Fixed problem of losing filename case information. +- Issue #9348: Raise an early error if argparse nargs and metavar don't match. + Extension Modules ----------------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 17:59:15 2011 From: python-checkins at python.org (steven.bethard) Date: Sat, 26 Mar 2011 17:59:15 +0100 Subject: [Python-checkins] cpython (2.7): Issue #9348: Raise an early error if argparse nargs and metavar don't match. Message-ID: http://hg.python.org/cpython/rev/4bb651eb7539 changeset: 68969:4bb651eb7539 branch: 2.7 parent: 68965:e1ebec2446cd user: Steven Bethard date: Sat Mar 26 17:57:52 2011 +0100 summary: Issue #9348: Raise an early error if argparse nargs and metavar don't match. (Merge from 3.2.) files: Lib/argparse.py | 7 + Lib/test/test_argparse.py | 171 ++++++++++++++++++++++++++ Misc/NEWS | 2 + 3 files changed, 180 insertions(+), 0 deletions(-) diff --git a/Lib/argparse.py b/Lib/argparse.py --- a/Lib/argparse.py +++ b/Lib/argparse.py @@ -1284,6 +1284,13 @@ if not _callable(type_func): raise ValueError('%r is not callable' % type_func) + # raise an error if the metavar does not match the type + if hasattr(self, "_get_formatter"): + try: + self._get_formatter()._format_args(action, None) + except TypeError: + raise ValueError("length of metavar tuple does not match nargs") + return self._add_action(action) def add_argument_group(self, *args, **kwargs): diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py --- a/Lib/test/test_argparse.py +++ b/Lib/test/test_argparse.py @@ -4359,6 +4359,177 @@ self.assertEqual(NS(v=3, spam=True, badger="B"), args) self.assertEqual(["C", "--foo", "4"], extras) +# ========================== +# add_argument metavar tests +# ========================== + +class TestAddArgumentMetavar(TestCase): + + EXPECTED_MESSAGE = "length of metavar tuple does not match nargs" + + def do_test_no_exception(self, nargs, metavar): + parser = argparse.ArgumentParser() + parser.add_argument("--foo", nargs=nargs, metavar=metavar) + + def do_test_exception(self, nargs, metavar): + parser = argparse.ArgumentParser() + with self.assertRaises(ValueError) as cm: + parser.add_argument("--foo", nargs=nargs, metavar=metavar) + self.assertEqual(cm.exception.args[0], self.EXPECTED_MESSAGE) + + # Unit tests for different values of metavar when nargs=None + + def test_nargs_None_metavar_string(self): + self.do_test_no_exception(nargs=None, metavar="1") + + def test_nargs_None_metavar_length0(self): + self.do_test_exception(nargs=None, metavar=tuple()) + + def test_nargs_None_metavar_length1(self): + self.do_test_no_exception(nargs=None, metavar=("1")) + + def test_nargs_None_metavar_length2(self): + self.do_test_exception(nargs=None, metavar=("1", "2")) + + def test_nargs_None_metavar_length3(self): + self.do_test_exception(nargs=None, metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=? + + def test_nargs_optional_metavar_string(self): + self.do_test_no_exception(nargs="?", metavar="1") + + def test_nargs_optional_metavar_length0(self): + self.do_test_exception(nargs="?", metavar=tuple()) + + def test_nargs_optional_metavar_length1(self): + self.do_test_no_exception(nargs="?", metavar=("1")) + + def test_nargs_optional_metavar_length2(self): + self.do_test_exception(nargs="?", metavar=("1", "2")) + + def test_nargs_optional_metavar_length3(self): + self.do_test_exception(nargs="?", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=* + + def test_nargs_zeroormore_metavar_string(self): + self.do_test_no_exception(nargs="*", metavar="1") + + def test_nargs_zeroormore_metavar_length0(self): + self.do_test_exception(nargs="*", metavar=tuple()) + + def test_nargs_zeroormore_metavar_length1(self): + self.do_test_no_exception(nargs="*", metavar=("1")) + + def test_nargs_zeroormore_metavar_length2(self): + self.do_test_no_exception(nargs="*", metavar=("1", "2")) + + def test_nargs_zeroormore_metavar_length3(self): + self.do_test_exception(nargs="*", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=+ + + def test_nargs_oneormore_metavar_string(self): + self.do_test_no_exception(nargs="+", metavar="1") + + def test_nargs_oneormore_metavar_length0(self): + self.do_test_exception(nargs="+", metavar=tuple()) + + def test_nargs_oneormore_metavar_length1(self): + self.do_test_no_exception(nargs="+", metavar=("1")) + + def test_nargs_oneormore_metavar_length2(self): + self.do_test_no_exception(nargs="+", metavar=("1", "2")) + + def test_nargs_oneormore_metavar_length3(self): + self.do_test_exception(nargs="+", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=... + + def test_nargs_remainder_metavar_string(self): + self.do_test_no_exception(nargs="...", metavar="1") + + def test_nargs_remainder_metavar_length0(self): + self.do_test_no_exception(nargs="...", metavar=tuple()) + + def test_nargs_remainder_metavar_length1(self): + self.do_test_no_exception(nargs="...", metavar=("1")) + + def test_nargs_remainder_metavar_length2(self): + self.do_test_no_exception(nargs="...", metavar=("1", "2")) + + def test_nargs_remainder_metavar_length3(self): + self.do_test_no_exception(nargs="...", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=A... + + def test_nargs_parser_metavar_string(self): + self.do_test_no_exception(nargs="A...", metavar="1") + + def test_nargs_parser_metavar_length0(self): + self.do_test_exception(nargs="A...", metavar=tuple()) + + def test_nargs_parser_metavar_length1(self): + self.do_test_no_exception(nargs="A...", metavar=("1")) + + def test_nargs_parser_metavar_length2(self): + self.do_test_exception(nargs="A...", metavar=("1", "2")) + + def test_nargs_parser_metavar_length3(self): + self.do_test_exception(nargs="A...", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=1 + + def test_nargs_1_metavar_string(self): + self.do_test_no_exception(nargs=1, metavar="1") + + def test_nargs_1_metavar_length0(self): + self.do_test_exception(nargs=1, metavar=tuple()) + + def test_nargs_1_metavar_length1(self): + self.do_test_no_exception(nargs=1, metavar=("1")) + + def test_nargs_1_metavar_length2(self): + self.do_test_exception(nargs=1, metavar=("1", "2")) + + def test_nargs_1_metavar_length3(self): + self.do_test_exception(nargs=1, metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=2 + + def test_nargs_2_metavar_string(self): + self.do_test_no_exception(nargs=2, metavar="1") + + def test_nargs_2_metavar_length0(self): + self.do_test_exception(nargs=2, metavar=tuple()) + + def test_nargs_2_metavar_length1(self): + self.do_test_no_exception(nargs=2, metavar=("1")) + + def test_nargs_2_metavar_length2(self): + self.do_test_no_exception(nargs=2, metavar=("1", "2")) + + def test_nargs_2_metavar_length3(self): + self.do_test_exception(nargs=2, metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=3 + + def test_nargs_3_metavar_string(self): + self.do_test_no_exception(nargs=3, metavar="1") + + def test_nargs_3_metavar_length0(self): + self.do_test_exception(nargs=3, metavar=tuple()) + + def test_nargs_3_metavar_length1(self): + self.do_test_no_exception(nargs=3, metavar=("1")) + + def test_nargs_3_metavar_length2(self): + self.do_test_exception(nargs=3, metavar=("1", "2")) + + def test_nargs_3_metavar_length3(self): + self.do_test_no_exception(nargs=3, metavar=("1", "2", "3")) + # ============================ # from argparse import * tests # ============================ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -1343,6 +1343,8 @@ - Issue #8374: Update the internal alias table in the :mod:`locale` module to cover recent locale changes and additions. +- Issue #9348: Raise an early error if argparse nargs and metavar don't match. + Extension Modules ----------------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 18:11:48 2011 From: python-checkins at python.org (georg.brandl) Date: Sat, 26 Mar 2011 18:11:48 +0100 Subject: [Python-checkins] peps: Update README w.r.t. docutils. Message-ID: http://hg.python.org/peps/rev/054286563aa7 changeset: 3852:054286563aa7 user: Georg Brandl date: Sat Mar 26 18:11:51 2011 +0100 summary: Update README w.r.t. docutils. files: README.txt | 8 +++----- 1 files changed, 3 insertions(+), 5 deletions(-) diff --git a/README.txt b/README.txt --- a/README.txt +++ b/README.txt @@ -6,9 +6,7 @@ (also, technically plaintext). These two formats are described in PEP 9 and PEP 12 respectively. The pep2html.py processing and installation script knows how to produce the HTML for either PEP -format. A local copy of the Docutils package is included for -processing reStructuredText PEPs. +format. -Please report any problems or questions to -docutils-develop at lists.sourceforge.net or to David Goodger -(goodger at python.org). +For processing reStructuredText format PEPs, you need the docutils +package, which is available from PyPI. -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Sat Mar 26 18:35:36 2011 From: python-checkins at python.org (steven.bethard) Date: Sat, 26 Mar 2011 18:35:36 +0100 Subject: [Python-checkins] cpython (3.2): Fix NEWS item that ended up in wrong section Message-ID: http://hg.python.org/cpython/rev/f144ed91acfb changeset: 68970:f144ed91acfb branch: 3.2 parent: 68967:c89db9b36ea6 user: Steven Bethard date: Sat Mar 26 18:29:48 2011 +0100 summary: Fix NEWS item that ended up in wrong section files: Misc/NEWS | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -152,6 +152,8 @@ - Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers larger than 4GB. Patch by Nadeem Vawda. +- Issue #9348: Raise an early error if argparse nargs and metavar don't match. + Build ----- @@ -1364,8 +1366,6 @@ - Issue #9948: Fixed problem of losing filename case information. -- Issue #9348: Raise an early error if argparse nargs and metavar don't match. - Extension Modules ----------------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 18:35:37 2011 From: python-checkins at python.org (steven.bethard) Date: Sat, 26 Mar 2011 18:35:37 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Fix NEWS item that ended up in wrong section Message-ID: http://hg.python.org/cpython/rev/402d54e97686 changeset: 68971:402d54e97686 parent: 68968:b93a50bb74f2 parent: 68970:f144ed91acfb user: Steven Bethard date: Sat Mar 26 18:35:21 2011 +0100 summary: Fix NEWS item that ended up in wrong section files: Misc/NEWS | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -294,6 +294,8 @@ - Issue #11174: Add argparse.MetavarTypeHelpFormatter, which uses type names for the names of optional and positional arguments in help messages. +- Issue #9348: Raise an early error if argparse nargs and metavar don't match. + Build ----- @@ -1530,8 +1532,6 @@ - Issue #9948: Fixed problem of losing filename case information. -- Issue #9348: Raise an early error if argparse nargs and metavar don't match. - Extension Modules ----------------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 18:40:01 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 26 Mar 2011 18:40:01 +0100 Subject: [Python-checkins] cpython (3.2): test_urllibnet: make it so that transient_internet() applies to the Message-ID: http://hg.python.org/cpython/rev/b65f417dd266 changeset: 68972:b65f417dd266 branch: 3.2 parent: 68967:c89db9b36ea6 user: Antoine Pitrou date: Sat Mar 26 18:36:42 2011 +0100 summary: test_urllibnet: make it so that transient_internet() applies to the whole HTTP exchange, not only the opening. files: Lib/test/test_urllibnet.py | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Lib/test/test_urllibnet.py b/Lib/test/test_urllibnet.py --- a/Lib/test/test_urllibnet.py +++ b/Lib/test/test_urllibnet.py @@ -43,8 +43,10 @@ def urlopen(self, *args, **kwargs): resource = args[0] - with support.transient_internet(resource): - return urllib.request.urlopen(*args, **kwargs) + cm = support.transient_internet(resource) + cm.__enter__() + self.addCleanup(cm.__exit__, None, None, None) + return urllib.request.urlopen(*args, **kwargs) def test_basic(self): # Simple test expected to pass. @@ -135,8 +137,10 @@ def urlretrieve(self, *args): resource = args[0] - with support.transient_internet(resource): - return urllib.request.urlretrieve(*args) + cm = support.transient_internet(resource) + cm.__enter__() + self.addCleanup(cm.__exit__, None, None, None) + return urllib.request.urlretrieve(*args) def test_basic(self): # Test basic functionality. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 18:40:04 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 26 Mar 2011 18:40:04 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> 3.2): Read HTTP response inside transient_internet() Message-ID: http://hg.python.org/cpython/rev/aa46bdbe641d changeset: 68973:aa46bdbe641d branch: 3.2 parent: 68970:f144ed91acfb parent: 68972:b65f417dd266 user: Antoine Pitrou date: Sat Mar 26 18:38:06 2011 +0100 summary: Read HTTP response inside transient_internet() files: Lib/test/test_urllibnet.py | 15 ++++++++++----- 1 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Lib/test/test_urllibnet.py b/Lib/test/test_urllibnet.py --- a/Lib/test/test_urllibnet.py +++ b/Lib/test/test_urllibnet.py @@ -12,6 +12,7 @@ class URLTimeoutTest(unittest.TestCase): + # XXX this test doesn't seem to test anything useful. TIMEOUT = 30.0 @@ -24,7 +25,7 @@ def testURLread(self): with support.transient_internet("www.python.org"): f = urllib.request.urlopen("http://www.python.org/") - x = f.read() + x = f.read() class urlopenNetworkTests(unittest.TestCase): """Tests urllib.reqest.urlopen using the network. @@ -43,8 +44,10 @@ def urlopen(self, *args, **kwargs): resource = args[0] - with support.transient_internet(resource): - return urllib.request.urlopen(*args, **kwargs) + cm = support.transient_internet(resource) + cm.__enter__() + self.addCleanup(cm.__exit__, None, None, None) + return urllib.request.urlopen(*args, **kwargs) def test_basic(self): # Simple test expected to pass. @@ -135,8 +138,10 @@ def urlretrieve(self, *args): resource = args[0] - with support.transient_internet(resource): - return urllib.request.urlretrieve(*args) + cm = support.transient_internet(resource) + cm.__enter__() + self.addCleanup(cm.__exit__, None, None, None) + return urllib.request.urlretrieve(*args) def test_basic(self): # Test basic functionality. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 18:40:07 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 26 Mar 2011 18:40:07 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge from 3.2 Message-ID: http://hg.python.org/cpython/rev/09fc6a2b68fd changeset: 68974:09fc6a2b68fd parent: 68971:402d54e97686 parent: 68973:aa46bdbe641d user: Antoine Pitrou date: Sat Mar 26 18:39:55 2011 +0100 summary: Merge from 3.2 files: Lib/test/test_urllibnet.py | 15 ++++++++++----- 1 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Lib/test/test_urllibnet.py b/Lib/test/test_urllibnet.py --- a/Lib/test/test_urllibnet.py +++ b/Lib/test/test_urllibnet.py @@ -12,6 +12,7 @@ class URLTimeoutTest(unittest.TestCase): + # XXX this test doesn't seem to test anything useful. TIMEOUT = 30.0 @@ -24,7 +25,7 @@ def testURLread(self): with support.transient_internet("www.python.org"): f = urllib.request.urlopen("http://www.python.org/") - x = f.read() + x = f.read() class urlopenNetworkTests(unittest.TestCase): """Tests urllib.reqest.urlopen using the network. @@ -43,8 +44,10 @@ def urlopen(self, *args, **kwargs): resource = args[0] - with support.transient_internet(resource): - return urllib.request.urlopen(*args, **kwargs) + cm = support.transient_internet(resource) + cm.__enter__() + self.addCleanup(cm.__exit__, None, None, None) + return urllib.request.urlopen(*args, **kwargs) def test_basic(self): # Simple test expected to pass. @@ -135,8 +138,10 @@ def urlretrieve(self, *args): resource = args[0] - with support.transient_internet(resource): - return urllib.request.urlretrieve(*args) + cm = support.transient_internet(resource) + cm.__enter__() + self.addCleanup(cm.__exit__, None, None, None) + return urllib.request.urlretrieve(*args) def test_basic(self): # Test basic functionality. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 19:00:10 2011 From: python-checkins at python.org (local-hg) Date: Sat, 26 Mar 2011 19:00:10 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge from 3.2 Message-ID: http://hg.python.org/cpython/rev/09fc6a2b68fd changeset: 68974:09fc6a2b68fd parent: 68971:402d54e97686 parent: 68973:aa46bdbe641d user: Antoine Pitrou date: Sat Mar 26 18:39:55 2011 +0100 summary: Merge from 3.2 files: Lib/test/test_urllibnet.py | 15 ++++++++++----- 1 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Lib/test/test_urllibnet.py b/Lib/test/test_urllibnet.py --- a/Lib/test/test_urllibnet.py +++ b/Lib/test/test_urllibnet.py @@ -12,6 +12,7 @@ class URLTimeoutTest(unittest.TestCase): + # XXX this test doesn't seem to test anything useful. TIMEOUT = 30.0 @@ -24,7 +25,7 @@ def testURLread(self): with support.transient_internet("www.python.org"): f = urllib.request.urlopen("http://www.python.org/") - x = f.read() + x = f.read() class urlopenNetworkTests(unittest.TestCase): """Tests urllib.reqest.urlopen using the network. @@ -43,8 +44,10 @@ def urlopen(self, *args, **kwargs): resource = args[0] - with support.transient_internet(resource): - return urllib.request.urlopen(*args, **kwargs) + cm = support.transient_internet(resource) + cm.__enter__() + self.addCleanup(cm.__exit__, None, None, None) + return urllib.request.urlopen(*args, **kwargs) def test_basic(self): # Simple test expected to pass. @@ -135,8 +138,10 @@ def urlretrieve(self, *args): resource = args[0] - with support.transient_internet(resource): - return urllib.request.urlretrieve(*args) + cm = support.transient_internet(resource) + cm.__enter__() + self.addCleanup(cm.__exit__, None, None, None) + return urllib.request.urlretrieve(*args) def test_basic(self): # Test basic functionality. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 19:17:55 2011 From: python-checkins at python.org (local-hg) Date: Sat, 26 Mar 2011 19:17:55 +0100 Subject: [Python-checkins] hooks: Fix buildbot hook after buildmaster upgrade (*sigh* buildbot) Message-ID: http://hg.python.org/hooks/rev/7603fce3166e changeset: 69:7603fce3166e user: Antoine Pitrou date: Sat Mar 26 19:17:55 2011 +0100 summary: Fix buildbot hook after buildmaster upgrade (*sigh* buildbot) files: hgbuildbot.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hgbuildbot.py b/hgbuildbot.py --- a/hgbuildbot.py +++ b/hgbuildbot.py @@ -44,7 +44,7 @@ # send change information to one master from buildbot.clients import sendchange - s = sendchange.Sender(master, None) + s = sendchange.Sender(master) d = defer.Deferred() reactor.callLater(0, d.callback, None) @@ -103,7 +103,7 @@ # add artificial prefix if configured files = [prefix + f for f in files] changes.append({ - 'user': user, + 'who': user, 'revision': hex(node), 'comments': desc, 'revlink': (url % {'rev': hex(node)}) if url else '', -- Repository URL: http://hg.python.org/hooks From python-checkins at python.org Sat Mar 26 19:26:42 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sat, 26 Mar 2011 19:26:42 +0100 (CET) Subject: [Python-checkins] r88807 - tracker/instances/python-dev/scripts/addpatchsets Message-ID: <3Pxqhf1KC4z7Ljd@mail.python.org> Author: martin.v.loewis Date: Sat Mar 26 19:26:41 2011 New Revision: 88807 Log: Support --git-style diffs. Modified: tracker/instances/python-dev/scripts/addpatchsets Modified: tracker/instances/python-dev/scripts/addpatchsets ============================================================================== --- tracker/instances/python-dev/scripts/addpatchsets (original) +++ tracker/instances/python-dev/scripts/addpatchsets Sat Mar 26 19:26:41 2011 @@ -57,7 +57,7 @@ patches = [] filename = None for line in data.splitlines(True): - if line.startswith('diff -r'): + if line.startswith('diff '): if filename: chunks = patching.ParsePatchToChunks(diff) if not chunks: @@ -66,6 +66,9 @@ patches.append((filename, ''.join(diff), chunks)) diff = [] filename = line.split()[-1] + if filename.startswith("b/"): + # git style + filename = filename[2:] continue if filename: diff.append(line) @@ -78,13 +81,14 @@ return patches def find_bases(data): - if not data.startswith("diff -r "): + if not data.startswith("diff "): # this should only be called if there is actually is a diff in the file - head, tail = data.split("\ndiff -r ", 1) - data = "diff -r "+tail - first, second, rev = data.split()[:3] - if first != 'diff' or second != '-r' or len(rev) != 12: - return None, None + head, tail = data.split("\ndiff ", 1) + data = "diff "+tail + # default to default branch if no revision is found + rev = 'default' + if data.startswith("diff -r "): + first, second, rev = data.split()[:3] c = connection.cursor() pieces = hg_splitpatch(data) if not pieces: @@ -128,7 +132,7 @@ print filename,"not found" continue data = open(filename).read() - if not data.startswith('diff -r ') and data.find('\ndiff -r ')==-1: + if not data.startswith('diff ') and data.find('\ndiff ')==-1: if verbose: print filename, "is not a patch" continue From python-checkins at python.org Sat Mar 26 19:33:59 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 26 Mar 2011 19:33:59 +0100 Subject: [Python-checkins] cpython (3.2): Issue #11635: Don't use polling in worker threads and processes launched by Message-ID: http://hg.python.org/cpython/rev/4390d6939a56 changeset: 68975:4390d6939a56 branch: 3.2 parent: 68973:aa46bdbe641d user: Antoine Pitrou date: Sat Mar 26 19:29:44 2011 +0100 summary: Issue #11635: Don't use polling in worker threads and processes launched by concurrent.futures. files: Lib/concurrent/futures/process.py | 110 ++++++++++------- Lib/concurrent/futures/thread.py | 60 ++++----- Misc/NEWS | 3 + 3 files changed, 95 insertions(+), 78 deletions(-) diff --git a/Lib/concurrent/futures/process.py b/Lib/concurrent/futures/process.py --- a/Lib/concurrent/futures/process.py +++ b/Lib/concurrent/futures/process.py @@ -66,28 +66,17 @@ # workers to exit when their work queues are empty and then waits until the # threads/processes finish. -_thread_references = set() +_threads_queues = weakref.WeakKeyDictionary() _shutdown = False def _python_exit(): global _shutdown _shutdown = True - for thread_reference in _thread_references: - thread = thread_reference() - if thread is not None: - thread.join() - -def _remove_dead_thread_references(): - """Remove inactive threads from _thread_references. - - Should be called periodically to prevent memory leaks in scenarios such as: - >>> while True: - >>> ... t = ThreadPoolExecutor(max_workers=5) - >>> ... t.map(int, ['1', '2', '3', '4', '5']) - """ - for thread_reference in set(_thread_references): - if thread_reference() is None: - _thread_references.discard(thread_reference) + items = list(_threads_queues.items()) + for t, q in items: + q.put(None) + for t, q in items: + t.join() # Controls how many more calls than processes will be queued in the call queue. # A smaller number will mean that processes spend more time idle waiting for @@ -130,11 +119,15 @@ """ while True: try: - call_item = call_queue.get(block=True, timeout=0.1) + call_item = call_queue.get(block=True) except queue.Empty: if shutdown.is_set(): return else: + if call_item is None: + # Wake up queue management thread + result_queue.put(None) + return try: r = call_item.fn(*call_item.args, **call_item.kwargs) except BaseException as e: @@ -209,40 +202,56 @@ process workers that they should exit when their work queue is empty. """ + nb_shutdown_processes = 0 + def shutdown_one_process(): + """Tell a worker to terminate, which will in turn wake us again""" + nonlocal nb_shutdown_processes + call_queue.put(None) + nb_shutdown_processes += 1 while True: _add_call_item_to_queue(pending_work_items, work_ids_queue, call_queue) try: - result_item = result_queue.get(block=True, timeout=0.1) + result_item = result_queue.get(block=True) except queue.Empty: - executor = executor_reference() - # No more work items can be added if: - # - The interpreter is shutting down OR - # - The executor that owns this worker has been collected OR - # - The executor that owns this worker has been shutdown. - if _shutdown or executor is None or executor._shutdown_thread: - # Since no new work items can be added, it is safe to shutdown - # this thread if there are no pending work items. - if not pending_work_items: - shutdown_process_event.set() + pass + else: + if result_item is not None: + work_item = pending_work_items[result_item.work_id] + del pending_work_items[result_item.work_id] - # If .join() is not called on the created processes then - # some multiprocessing.Queue methods may deadlock on Mac OS - # X. - for p in processes: - p.join() - return - del executor - else: - work_item = pending_work_items[result_item.work_id] - del pending_work_items[result_item.work_id] + if result_item.exception: + work_item.future.set_exception(result_item.exception) + else: + work_item.future.set_result(result_item.result) + continue + # If we come here, we either got a timeout or were explicitly woken up. + # In either case, check whether we should start shutting down. + executor = executor_reference() + # No more work items can be added if: + # - The interpreter is shutting down OR + # - The executor that owns this worker has been collected OR + # - The executor that owns this worker has been shutdown. + if _shutdown or executor is None or executor._shutdown_thread: + # Since no new work items can be added, it is safe to shutdown + # this thread if there are no pending work items. + if not pending_work_items: + shutdown_process_event.set() - if result_item.exception: - work_item.future.set_exception(result_item.exception) + while nb_shutdown_processes < len(processes): + shutdown_one_process() + # If .join() is not called on the created processes then + # some multiprocessing.Queue methods may deadlock on Mac OS + # X. + for p in processes: + p.join() + return else: - work_item.future.set_result(result_item.result) + # Start shutting down by telling a process it can exit. + shutdown_one_process() + del executor _system_limits_checked = False _system_limited = None @@ -279,7 +288,6 @@ worker processes will be created as the machine has processors. """ _check_system_limits() - _remove_dead_thread_references() if max_workers is None: self._max_workers = multiprocessing.cpu_count() @@ -304,10 +312,14 @@ self._pending_work_items = {} def _start_queue_management_thread(self): + # When the executor gets lost, the weakref callback will wake up + # the queue management thread. + def weakref_cb(_, q=self._result_queue): + q.put(None) if self._queue_management_thread is None: self._queue_management_thread = threading.Thread( target=_queue_manangement_worker, - args=(weakref.ref(self), + args=(weakref.ref(self, weakref_cb), self._processes, self._pending_work_items, self._work_ids, @@ -316,7 +328,7 @@ self._shutdown_process_event)) self._queue_management_thread.daemon = True self._queue_management_thread.start() - _thread_references.add(weakref.ref(self._queue_management_thread)) + _threads_queues[self._queue_management_thread] = self._result_queue def _adjust_process_count(self): for _ in range(len(self._processes), self._max_workers): @@ -339,6 +351,8 @@ self._pending_work_items[self._queue_count] = w self._work_ids.put(self._queue_count) self._queue_count += 1 + # Wake up queue management thread + self._result_queue.put(None) self._start_queue_management_thread() self._adjust_process_count() @@ -348,8 +362,10 @@ def shutdown(self, wait=True): with self._shutdown_lock: self._shutdown_thread = True - if wait: - if self._queue_management_thread: + if self._queue_management_thread: + # Wake up queue management thread + self._result_queue.put(None) + if wait: self._queue_management_thread.join() # To reduce the risk of openning too many files, remove references to # objects that use file descriptors. diff --git a/Lib/concurrent/futures/thread.py b/Lib/concurrent/futures/thread.py --- a/Lib/concurrent/futures/thread.py +++ b/Lib/concurrent/futures/thread.py @@ -25,28 +25,17 @@ # workers to exit when their work queues are empty and then waits until the # threads finish. -_thread_references = set() +_threads_queues = weakref.WeakKeyDictionary() _shutdown = False def _python_exit(): global _shutdown _shutdown = True - for thread_reference in _thread_references: - thread = thread_reference() - if thread is not None: - thread.join() - -def _remove_dead_thread_references(): - """Remove inactive threads from _thread_references. - - Should be called periodically to prevent memory leaks in scenarios such as: - >>> while True: - ... t = ThreadPoolExecutor(max_workers=5) - ... t.map(int, ['1', '2', '3', '4', '5']) - """ - for thread_reference in set(_thread_references): - if thread_reference() is None: - _thread_references.discard(thread_reference) + items = list(_threads_queues.items()) + for t, q in items: + q.put(None) + for t, q in items: + t.join() atexit.register(_python_exit) @@ -72,18 +61,23 @@ try: while True: try: - work_item = work_queue.get(block=True, timeout=0.1) + work_item = work_queue.get(block=True) except queue.Empty: - executor = executor_reference() - # Exit if: - # - The interpreter is shutting down OR - # - The executor that owns the worker has been collected OR - # - The executor that owns the worker has been shutdown. - if _shutdown or executor is None or executor._shutdown: - return - del executor + pass else: - work_item.run() + if work_item is not None: + work_item.run() + continue + executor = executor_reference() + # Exit if: + # - The interpreter is shutting down OR + # - The executor that owns the worker has been collected OR + # - The executor that owns the worker has been shutdown. + if _shutdown or executor is None or executor._shutdown: + # Notice other workers + work_queue.put(None) + return + del executor except BaseException as e: _base.LOGGER.critical('Exception in worker', exc_info=True) @@ -95,8 +89,6 @@ max_workers: The maximum number of threads that can be used to execute the given calls. """ - _remove_dead_thread_references() - self._max_workers = max_workers self._work_queue = queue.Queue() self._threads = set() @@ -117,19 +109,25 @@ submit.__doc__ = _base.Executor.submit.__doc__ def _adjust_thread_count(self): + # When the executor gets lost, the weakref callback will wake up + # the worker threads. + def weakref_cb(_, q=self._work_queue): + q.put(None) # TODO(bquinlan): Should avoid creating new threads if there are more # idle threads than items in the work queue. if len(self._threads) < self._max_workers: t = threading.Thread(target=_worker, - args=(weakref.ref(self), self._work_queue)) + args=(weakref.ref(self, weakref_cb), + self._work_queue)) t.daemon = True t.start() self._threads.add(t) - _thread_references.add(weakref.ref(t)) + _threads_queues[t] = self._work_queue def shutdown(self, wait=True): with self._shutdown_lock: self._shutdown = True + self._work_queue.put(None) if wait: for t in self._threads: t.join() diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -53,6 +53,9 @@ Library ------- +- Issue #11635: Don't use polling in worker threads and processes launched by + concurrent.futures. + - Issue #11628: cmp_to_key generated class should use __slots__ - Issue #11666: let help() display named tuple attributes and methods -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 19:34:00 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 26 Mar 2011 19:34:00 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #11635: Don't use polling in worker threads and processes launched by Message-ID: http://hg.python.org/cpython/rev/a76257a99636 changeset: 68976:a76257a99636 parent: 68974:09fc6a2b68fd parent: 68975:4390d6939a56 user: Antoine Pitrou date: Sat Mar 26 19:33:44 2011 +0100 summary: Issue #11635: Don't use polling in worker threads and processes launched by concurrent.futures. files: Lib/concurrent/futures/process.py | 95 ++++++++++++------ Lib/concurrent/futures/thread.py | 45 ++++++--- Misc/NEWS | 3 + 3 files changed, 96 insertions(+), 47 deletions(-) diff --git a/Lib/concurrent/futures/process.py b/Lib/concurrent/futures/process.py --- a/Lib/concurrent/futures/process.py +++ b/Lib/concurrent/futures/process.py @@ -66,14 +66,17 @@ # workers to exit when their work queues are empty and then waits until the # threads/processes finish. -_live_threads = weakref.WeakSet() +_threads_queues = weakref.WeakKeyDictionary() _shutdown = False def _python_exit(): global _shutdown _shutdown = True - for thread in _live_threads: - thread.join() + items = list(_threads_queues.items()) + for t, q in items: + q.put(None) + for t, q in items: + t.join() # Controls how many more calls than processes will be queued in the call queue. # A smaller number will mean that processes spend more time idle waiting for @@ -116,11 +119,15 @@ """ while True: try: - call_item = call_queue.get(block=True, timeout=0.1) + call_item = call_queue.get(block=True) except queue.Empty: if shutdown.is_set(): return else: + if call_item is None: + # Wake up queue management thread + result_queue.put(None) + return try: r = call_item.fn(*call_item.args, **call_item.kwargs) except BaseException as e: @@ -195,40 +202,56 @@ process workers that they should exit when their work queue is empty. """ + nb_shutdown_processes = 0 + def shutdown_one_process(): + """Tell a worker to terminate, which will in turn wake us again""" + nonlocal nb_shutdown_processes + call_queue.put(None) + nb_shutdown_processes += 1 while True: _add_call_item_to_queue(pending_work_items, work_ids_queue, call_queue) try: - result_item = result_queue.get(block=True, timeout=0.1) + result_item = result_queue.get(block=True) except queue.Empty: - executor = executor_reference() - # No more work items can be added if: - # - The interpreter is shutting down OR - # - The executor that owns this worker has been collected OR - # - The executor that owns this worker has been shutdown. - if _shutdown or executor is None or executor._shutdown_thread: - # Since no new work items can be added, it is safe to shutdown - # this thread if there are no pending work items. - if not pending_work_items: - shutdown_process_event.set() + pass + else: + if result_item is not None: + work_item = pending_work_items[result_item.work_id] + del pending_work_items[result_item.work_id] - # If .join() is not called on the created processes then - # some multiprocessing.Queue methods may deadlock on Mac OS - # X. - for p in processes: - p.join() - return - del executor - else: - work_item = pending_work_items[result_item.work_id] - del pending_work_items[result_item.work_id] + if result_item.exception: + work_item.future.set_exception(result_item.exception) + else: + work_item.future.set_result(result_item.result) + continue + # If we come here, we either got a timeout or were explicitly woken up. + # In either case, check whether we should start shutting down. + executor = executor_reference() + # No more work items can be added if: + # - The interpreter is shutting down OR + # - The executor that owns this worker has been collected OR + # - The executor that owns this worker has been shutdown. + if _shutdown or executor is None or executor._shutdown_thread: + # Since no new work items can be added, it is safe to shutdown + # this thread if there are no pending work items. + if not pending_work_items: + shutdown_process_event.set() - if result_item.exception: - work_item.future.set_exception(result_item.exception) + while nb_shutdown_processes < len(processes): + shutdown_one_process() + # If .join() is not called on the created processes then + # some multiprocessing.Queue methods may deadlock on Mac OS + # X. + for p in processes: + p.join() + return else: - work_item.future.set_result(result_item.result) + # Start shutting down by telling a process it can exit. + shutdown_one_process() + del executor _system_limits_checked = False _system_limited = None @@ -289,10 +312,14 @@ self._pending_work_items = {} def _start_queue_management_thread(self): + # When the executor gets lost, the weakref callback will wake up + # the queue management thread. + def weakref_cb(_, q=self._result_queue): + q.put(None) if self._queue_management_thread is None: self._queue_management_thread = threading.Thread( target=_queue_manangement_worker, - args=(weakref.ref(self), + args=(weakref.ref(self, weakref_cb), self._processes, self._pending_work_items, self._work_ids, @@ -301,7 +328,7 @@ self._shutdown_process_event)) self._queue_management_thread.daemon = True self._queue_management_thread.start() - _live_threads.add(self._queue_management_thread) + _threads_queues[self._queue_management_thread] = self._result_queue def _adjust_process_count(self): for _ in range(len(self._processes), self._max_workers): @@ -324,6 +351,8 @@ self._pending_work_items[self._queue_count] = w self._work_ids.put(self._queue_count) self._queue_count += 1 + # Wake up queue management thread + self._result_queue.put(None) self._start_queue_management_thread() self._adjust_process_count() @@ -333,8 +362,10 @@ def shutdown(self, wait=True): with self._shutdown_lock: self._shutdown_thread = True - if wait: - if self._queue_management_thread: + if self._queue_management_thread: + # Wake up queue management thread + self._result_queue.put(None) + if wait: self._queue_management_thread.join() # To reduce the risk of openning too many files, remove references to # objects that use file descriptors. diff --git a/Lib/concurrent/futures/thread.py b/Lib/concurrent/futures/thread.py --- a/Lib/concurrent/futures/thread.py +++ b/Lib/concurrent/futures/thread.py @@ -25,14 +25,18 @@ # workers to exit when their work queues are empty and then waits until the # threads finish. -_live_threads = weakref.WeakSet() +_threads_queues = weakref.WeakKeyDictionary() _shutdown = False def _python_exit(): global _shutdown _shutdown = True - for thread in _live_threads: - thread.join() + items = list(_threads_queues.items()) + for t, q in items: + q.put(None) + for t, q in items: + t.join() + atexit.register(_python_exit) class _WorkItem(object): @@ -57,18 +61,23 @@ try: while True: try: - work_item = work_queue.get(block=True, timeout=0.1) + work_item = work_queue.get(block=True) except queue.Empty: - executor = executor_reference() - # Exit if: - # - The interpreter is shutting down OR - # - The executor that owns the worker has been collected OR - # - The executor that owns the worker has been shutdown. - if _shutdown or executor is None or executor._shutdown: - return - del executor + pass else: - work_item.run() + if work_item is not None: + work_item.run() + continue + executor = executor_reference() + # Exit if: + # - The interpreter is shutting down OR + # - The executor that owns the worker has been collected OR + # - The executor that owns the worker has been shutdown. + if _shutdown or executor is None or executor._shutdown: + # Notice other workers + work_queue.put(None) + return + del executor except BaseException as e: _base.LOGGER.critical('Exception in worker', exc_info=True) @@ -100,19 +109,25 @@ submit.__doc__ = _base.Executor.submit.__doc__ def _adjust_thread_count(self): + # When the executor gets lost, the weakref callback will wake up + # the worker threads. + def weakref_cb(_, q=self._work_queue): + q.put(None) # TODO(bquinlan): Should avoid creating new threads if there are more # idle threads than items in the work queue. if len(self._threads) < self._max_workers: t = threading.Thread(target=_worker, - args=(weakref.ref(self), self._work_queue)) + args=(weakref.ref(self, weakref_cb), + self._work_queue)) t.daemon = True t.start() self._threads.add(t) - _live_threads.add(t) + _threads_queues[t] = self._work_queue def shutdown(self, wait=True): with self._shutdown_lock: self._shutdown = True + self._work_queue.put(None) if wait: for t in self._threads: t.join() diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -91,6 +91,9 @@ Library ------- +- Issue #11635: Don't use polling in worker threads and processes launched by + concurrent.futures. + - Issue #6811: Allow importlib to change a code object's co_filename attribute to match the path to where the source code currently is, not where the code object originally came from. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 19:59:33 2011 From: python-checkins at python.org (steven.bethard) Date: Sat, 26 Mar 2011 19:59:33 +0100 Subject: [Python-checkins] cpython (3.2): Issue #8982: Improve the documentation for the argparse Namespace object. Message-ID: http://hg.python.org/cpython/rev/423b50086b67 changeset: 68977:423b50086b67 branch: 3.2 parent: 68975:4390d6939a56 user: Steven Bethard date: Sat Mar 26 19:50:06 2011 +0100 summary: Issue #8982: Improve the documentation for the argparse Namespace object. files: Doc/library/argparse.rst | 21 ++++++++++++++++----- Misc/NEWS | 2 ++ 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1314,13 +1314,24 @@ Namespace(accumulate=, integers=[1, 2, 3, 4]) -Custom namespaces -^^^^^^^^^^^^^^^^^ +The Namespace object +^^^^^^^^^^^^^^^^^^^^ + +By default, :meth:`parse_args` will return a new object of type :class:`Namespace` +where the necessary attributes have been set. This class is deliberately simple, +just an :class:`object` subclass with a readable string representation. If you +prefer to have dict-like view of the attributes, you can use the standard Python +idiom via :func:`vars`:: + + >>> parser = argparse.ArgumentParser() + >>> parser.add_argument('--foo') + >>> args = parser.parse_args(['--foo', 'BAR']) + >>> vars(args) + {'foo': 'BAR'} It may also be useful to have an :class:`ArgumentParser` assign attributes to an -already existing object, rather than the newly-created :class:`Namespace` object -that is normally used. This can be achieved by specifying the ``namespace=`` -keyword argument:: +already existing object, rather than a new :class:`Namespace` object. This can +be achieved by specifying the ``namespace=`` keyword argument:: >>> class C: ... pass diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -157,6 +157,8 @@ - Issue #9348: Raise an early error if argparse nargs and metavar don't match. +- Issue #8982: Improve the documentation for the argparse Namespace object. + Build ----- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 19:59:34 2011 From: python-checkins at python.org (steven.bethard) Date: Sat, 26 Mar 2011 19:59:34 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #8982: Improve the documentation for the argparse Namespace object. Message-ID: http://hg.python.org/cpython/rev/d832756a82d9 changeset: 68978:d832756a82d9 parent: 68976:a76257a99636 parent: 68977:423b50086b67 user: Steven Bethard date: Sat Mar 26 19:55:36 2011 +0100 summary: Issue #8982: Improve the documentation for the argparse Namespace object. (Merge from 3.2.) files: Doc/library/argparse.rst | 21 ++++++++++++++++----- Misc/NEWS | 2 ++ 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1330,13 +1330,24 @@ Namespace(accumulate=, integers=[1, 2, 3, 4]) -Custom namespaces -^^^^^^^^^^^^^^^^^ +The Namespace object +^^^^^^^^^^^^^^^^^^^^ + +By default, :meth:`parse_args` will return a new object of type :class:`Namespace` +where the necessary attributes have been set. This class is deliberately simple, +just an :class:`object` subclass with a readable string representation. If you +prefer to have dict-like view of the attributes, you can use the standard Python +idiom via :func:`vars`:: + + >>> parser = argparse.ArgumentParser() + >>> parser.add_argument('--foo') + >>> args = parser.parse_args(['--foo', 'BAR']) + >>> vars(args) + {'foo': 'BAR'} It may also be useful to have an :class:`ArgumentParser` assign attributes to an -already existing object, rather than the newly-created :class:`Namespace` object -that is normally used. This can be achieved by specifying the ``namespace=`` -keyword argument:: +already existing object, rather than a new :class:`Namespace` object. This can +be achieved by specifying the ``namespace=`` keyword argument:: >>> class C: ... pass diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -299,6 +299,8 @@ - Issue #9348: Raise an early error if argparse nargs and metavar don't match. +- Issue #8982: Improve the documentation for the argparse Namespace object. + Build ----- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 19:59:36 2011 From: python-checkins at python.org (steven.bethard) Date: Sat, 26 Mar 2011 19:59:36 +0100 Subject: [Python-checkins] cpython (2.7): Issue #8982: Improve the documentation for the argparse Namespace object. Message-ID: http://hg.python.org/cpython/rev/fe72160ea2a3 changeset: 68979:fe72160ea2a3 branch: 2.7 parent: 68969:4bb651eb7539 user: Steven Bethard date: Sat Mar 26 19:59:02 2011 +0100 summary: Issue #8982: Improve the documentation for the argparse Namespace object. (Merge from 3.2.) files: Doc/library/argparse.rst | 21 ++++++++++++++++----- Misc/NEWS | 6 ++++-- 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1310,13 +1310,24 @@ Namespace(accumulate=, integers=[1, 2, 3, 4]) -Custom namespaces -^^^^^^^^^^^^^^^^^ +The Namespace object +^^^^^^^^^^^^^^^^^^^^ + +By default, :meth:`parse_args` will return a new object of type :class:`Namespace` +where the necessary attributes have been set. This class is deliberately simple, +just an :class:`object` subclass with a readable string representation. If you +prefer to have dict-like view of the attributes, you can use the standard Python +idiom via :func:`vars`:: + + >>> parser = argparse.ArgumentParser() + >>> parser.add_argument('--foo') + >>> args = parser.parse_args(['--foo', 'BAR']) + >>> vars(args) + {'foo': 'BAR'} It may also be useful to have an :class:`ArgumentParser` assign attributes to an -already existing object, rather than the newly-created :class:`Namespace` object -that is normally used. This can be achieved by specifying the ``namespace=`` -keyword argument:: +already existing object, rather than a new :class:`Namespace` object. This can +be achieved by specifying the ``namespace=`` keyword argument:: >>> class C(object): ... pass diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -235,6 +235,10 @@ - Issue #9509: argparse now properly handles IOErrors raised by argparse.FileType. +- Issue #9348: Raise an early error if argparse nargs and metavar don't match. + +- Issue #8982: Improve the documentation for the argparse Namespace object. + Extension Modules ----------------- @@ -1343,8 +1347,6 @@ - Issue #8374: Update the internal alias table in the :mod:`locale` module to cover recent locale changes and additions. -- Issue #9348: Raise an early error if argparse nargs and metavar don't match. - Extension Modules ----------------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 20:26:05 2011 From: python-checkins at python.org (ross.lagerwall) Date: Sat, 26 Mar 2011 20:26:05 +0100 Subject: [Python-checkins] cpython (3.1): Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. Message-ID: http://hg.python.org/cpython/rev/bd46aef7cf10 changeset: 68980:bd46aef7cf10 branch: 3.1 parent: 68962:0cb276628528 user: Ross Lagerwall date: Sat Mar 26 21:19:57 2011 +0200 summary: Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. Patch by Ben Hayden. files: Lib/test/test_subprocess.py | 1 + Misc/ACKS | 1 + Misc/NEWS | 3 +++ 3 files changed, 5 insertions(+), 0 deletions(-) diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -874,6 +874,7 @@ stdout=subprocess.PIPE, bufsize=0) f = p.stdout + self.addCleanup(f.close) try: self.assertEqual(f.read(4), b"appl") self.assertIn(f, select.select([f], [], [], 0.0)[0]) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -325,6 +325,7 @@ Larry Hastings Shane Hathaway Rycharde Hawkes +Ben Hayden Jochen Hayek Christian Heimes Thomas Heller diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -48,6 +48,9 @@ Library ------- +- Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. + Patch by Ben Hayden. + - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 20:26:07 2011 From: python-checkins at python.org (ross.lagerwall) Date: Sat, 26 Mar 2011 20:26:07 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge with 3.1 Message-ID: http://hg.python.org/cpython/rev/72f6f5a29e7a changeset: 68981:72f6f5a29e7a branch: 3.2 parent: 68977:423b50086b67 parent: 68980:bd46aef7cf10 user: Ross Lagerwall date: Sat Mar 26 21:21:46 2011 +0200 summary: Merge with 3.1 files: Lib/test/test_subprocess.py | 1 + Misc/ACKS | 1 + Misc/NEWS | 3 +++ 3 files changed, 5 insertions(+), 0 deletions(-) diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -1226,6 +1226,7 @@ stdout=subprocess.PIPE, bufsize=0) f = p.stdout + self.addCleanup(f.close) try: self.assertEqual(f.read(4), b"appl") self.assertIn(f, select.select([f], [], [], 0.0)[0]) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -354,6 +354,7 @@ Larry Hastings Shane Hathaway Rycharde Hawkes +Ben Hayden Jochen Hayek Christian Heimes Thomas Heller diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -53,6 +53,9 @@ Library ------- +- Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. + Patch by Ben Hayden. + - Issue #11635: Don't use polling in worker threads and processes launched by concurrent.futures. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 20:26:08 2011 From: python-checkins at python.org (ross.lagerwall) Date: Sat, 26 Mar 2011 20:26:08 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge with 3.2 Message-ID: http://hg.python.org/cpython/rev/439e185c3a7b changeset: 68982:439e185c3a7b parent: 68978:d832756a82d9 parent: 68981:72f6f5a29e7a user: Ross Lagerwall date: Sat Mar 26 21:22:09 2011 +0200 summary: Merge with 3.2 files: Lib/test/test_subprocess.py | 1 + Misc/ACKS | 1 + Misc/NEWS | 3 +++ 3 files changed, 5 insertions(+), 0 deletions(-) diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -1325,6 +1325,7 @@ stdout=subprocess.PIPE, bufsize=0) f = p.stdout + self.addCleanup(f.close) try: self.assertEqual(f.read(4), b"appl") self.assertIn(f, select.select([f], [], [], 0.0)[0]) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -358,6 +358,7 @@ Larry Hastings Shane Hathaway Rycharde Hawkes +Ben Hayden Jochen Hayek Christian Heimes Thomas Heller diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -91,6 +91,9 @@ Library ------- +- Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. + Patch by Ben Hayden. + - Issue #11635: Don't use polling in worker threads and processes launched by concurrent.futures. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 21:16:11 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 26 Mar 2011 21:16:11 +0100 Subject: [Python-checkins] cpython (3.2): In the Windows clean script for buildbots, also clear the build dir Message-ID: http://hg.python.org/cpython/rev/673a5afce4e0 changeset: 68983:673a5afce4e0 branch: 3.2 parent: 68975:4390d6939a56 user: Antoine Pitrou date: Sat Mar 26 21:15:47 2011 +0100 summary: In the Windows clean script for buildbots, also clear the build dir (so that stale test files, which can be very large, get wiped out) files: Tools/buildbot/clean-amd64.bat | 5 ++++- Tools/buildbot/clean.bat | 3 +++ 2 files changed, 7 insertions(+), 1 deletions(-) diff --git a/Tools/buildbot/clean-amd64.bat b/Tools/buildbot/clean-amd64.bat --- a/Tools/buildbot/clean-amd64.bat +++ b/Tools/buildbot/clean-amd64.bat @@ -1,7 +1,10 @@ @rem Used by the buildbot "clean" step. call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 -cd PCbuild @echo Deleting .pyc/.pyo files ... del /s Lib\*.pyc Lib\*.pyo + at echo Deleting test leftovers ... +rmdir /s /q build +cd PCbuild vcbuild /clean pcbuild.sln "Release|x64" vcbuild /clean pcbuild.sln "Debug|x64" +cd .. diff --git a/Tools/buildbot/clean.bat b/Tools/buildbot/clean.bat --- a/Tools/buildbot/clean.bat +++ b/Tools/buildbot/clean.bat @@ -2,6 +2,9 @@ call "%VS90COMNTOOLS%vsvars32.bat" @echo Deleting .pyc/.pyo files ... del /s Lib\*.pyc Lib\*.pyo + at echo Deleting test leftovers ... +rmdir /s /q build cd PCbuild vcbuild /clean pcbuild.sln "Release|Win32" vcbuild /clean pcbuild.sln "Debug|Win32" +cd .. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 21:16:11 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 26 Mar 2011 21:16:11 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> 3.2): Merge Message-ID: http://hg.python.org/cpython/rev/9dc527ae8b85 changeset: 68984:9dc527ae8b85 branch: 3.2 parent: 68983:673a5afce4e0 parent: 68981:72f6f5a29e7a user: Antoine Pitrou date: Sat Mar 26 21:16:07 2011 +0100 summary: Merge files: Doc/library/argparse.rst | 21 ++++++++++++++++----- Lib/test/test_subprocess.py | 1 + Misc/ACKS | 1 + Misc/NEWS | 5 +++++ 4 files changed, 23 insertions(+), 5 deletions(-) diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1314,13 +1314,24 @@ Namespace(accumulate=, integers=[1, 2, 3, 4]) -Custom namespaces -^^^^^^^^^^^^^^^^^ +The Namespace object +^^^^^^^^^^^^^^^^^^^^ + +By default, :meth:`parse_args` will return a new object of type :class:`Namespace` +where the necessary attributes have been set. This class is deliberately simple, +just an :class:`object` subclass with a readable string representation. If you +prefer to have dict-like view of the attributes, you can use the standard Python +idiom via :func:`vars`:: + + >>> parser = argparse.ArgumentParser() + >>> parser.add_argument('--foo') + >>> args = parser.parse_args(['--foo', 'BAR']) + >>> vars(args) + {'foo': 'BAR'} It may also be useful to have an :class:`ArgumentParser` assign attributes to an -already existing object, rather than the newly-created :class:`Namespace` object -that is normally used. This can be achieved by specifying the ``namespace=`` -keyword argument:: +already existing object, rather than a new :class:`Namespace` object. This can +be achieved by specifying the ``namespace=`` keyword argument:: >>> class C: ... pass diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -1226,6 +1226,7 @@ stdout=subprocess.PIPE, bufsize=0) f = p.stdout + self.addCleanup(f.close) try: self.assertEqual(f.read(4), b"appl") self.assertIn(f, select.select([f], [], [], 0.0)[0]) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -354,6 +354,7 @@ Larry Hastings Shane Hathaway Rycharde Hawkes +Ben Hayden Jochen Hayek Christian Heimes Thomas Heller diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -53,6 +53,9 @@ Library ------- +- Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. + Patch by Ben Hayden. + - Issue #11635: Don't use polling in worker threads and processes launched by concurrent.futures. @@ -157,6 +160,8 @@ - Issue #9348: Raise an early error if argparse nargs and metavar don't match. +- Issue #8982: Improve the documentation for the argparse Namespace object. + Build ----- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 21:18:48 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 26 Mar 2011 21:18:48 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge Message-ID: http://hg.python.org/cpython/rev/2d6745f219b3 changeset: 68985:2d6745f219b3 parent: 68982:439e185c3a7b parent: 68984:9dc527ae8b85 user: Antoine Pitrou date: Sat Mar 26 21:18:44 2011 +0100 summary: Merge files: Tools/buildbot/clean-amd64.bat | 5 ++++- Tools/buildbot/clean.bat | 3 +++ 2 files changed, 7 insertions(+), 1 deletions(-) diff --git a/Tools/buildbot/clean-amd64.bat b/Tools/buildbot/clean-amd64.bat --- a/Tools/buildbot/clean-amd64.bat +++ b/Tools/buildbot/clean-amd64.bat @@ -1,7 +1,10 @@ @rem Used by the buildbot "clean" step. call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 -cd PCbuild @echo Deleting .pyc/.pyo files ... del /s Lib\*.pyc Lib\*.pyo + at echo Deleting test leftovers ... +rmdir /s /q build +cd PCbuild vcbuild /clean pcbuild.sln "Release|x64" vcbuild /clean pcbuild.sln "Debug|x64" +cd .. diff --git a/Tools/buildbot/clean.bat b/Tools/buildbot/clean.bat --- a/Tools/buildbot/clean.bat +++ b/Tools/buildbot/clean.bat @@ -2,6 +2,9 @@ call "%VS90COMNTOOLS%vsvars32.bat" @echo Deleting .pyc/.pyo files ... del /s Lib\*.pyc Lib\*.pyo + at echo Deleting test leftovers ... +rmdir /s /q build cd PCbuild vcbuild /clean pcbuild.sln "Release|Win32" vcbuild /clean pcbuild.sln "Debug|Win32" +cd .. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 21:52:11 2011 From: python-checkins at python.org (steven.bethard) Date: Sat, 26 Mar 2011 21:52:11 +0100 Subject: [Python-checkins] cpython (3.2): Issue #9343: Document that argparse parent parsers must be configured before Message-ID: http://hg.python.org/cpython/rev/d288666c1d58 changeset: 68986:d288666c1d58 branch: 3.2 parent: 68984:9dc527ae8b85 user: Steven Bethard date: Sat Mar 26 21:49:00 2011 +0100 summary: Issue #9343: Document that argparse parent parsers must be configured before their children. files: Doc/library/argparse.rst | 5 +++++ Misc/NEWS | 3 +++ 2 files changed, 8 insertions(+), 0 deletions(-) diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -351,6 +351,11 @@ :class:`ArgumentParser` will see two ``-h/--help`` options (one in the parent and one in the child) and raise an error. +.. note:: + You must fully initialize the parsers before passing them via ``parents=``. + If you change the parent parsers after the child parser, those changes will + not be reflected in the child. + formatter_class ^^^^^^^^^^^^^^^ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -162,6 +162,9 @@ - Issue #8982: Improve the documentation for the argparse Namespace object. +- Issue #9343: Document that argparse parent parsers must be configured before + their children. + Build ----- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 21:52:12 2011 From: python-checkins at python.org (steven.bethard) Date: Sat, 26 Mar 2011 21:52:12 +0100 Subject: [Python-checkins] cpython (2.7): Issue #9343: Document that argparse parent parsers must be configured before Message-ID: http://hg.python.org/cpython/rev/15e98607555d changeset: 68987:15e98607555d branch: 2.7 parent: 68979:fe72160ea2a3 user: Steven Bethard date: Sat Mar 26 21:50:38 2011 +0100 summary: Issue #9343: Document that argparse parent parsers must be configured before their children. (Merge from 3.2.) files: Doc/library/argparse.rst | 5 +++++ Misc/NEWS | 3 +++ 2 files changed, 8 insertions(+), 0 deletions(-) diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -347,6 +347,11 @@ :class:`ArgumentParser` will see two ``-h/--help`` options (one in the parent and one in the child) and raise an error. +.. note:: + You must fully initialize the parsers before passing them via ``parents=``. + If you change the parent parsers after the child parser, those changes will + not be reflected in the child. + formatter_class ^^^^^^^^^^^^^^^ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -239,6 +239,9 @@ - Issue #8982: Improve the documentation for the argparse Namespace object. +- Issue #9343: Document that argparse parent parsers must be configured before + their children. + Extension Modules ----------------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 21:52:17 2011 From: python-checkins at python.org (steven.bethard) Date: Sat, 26 Mar 2011 21:52:17 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #9343: Document that argparse parent parsers must be configured before Message-ID: http://hg.python.org/cpython/rev/8bdc20468cbc changeset: 68988:8bdc20468cbc parent: 68985:2d6745f219b3 parent: 68986:d288666c1d58 user: Steven Bethard date: Sat Mar 26 21:51:56 2011 +0100 summary: Issue #9343: Document that argparse parent parsers must be configured before their children. (Merge from 3.2.) files: Doc/library/argparse.rst | 5 +++++ Misc/NEWS | 3 +++ 2 files changed, 8 insertions(+), 0 deletions(-) diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -351,6 +351,11 @@ :class:`ArgumentParser` will see two ``-h/--help`` options (one in the parent and one in the child) and raise an error. +.. note:: + You must fully initialize the parsers before passing them via ``parents=``. + If you change the parent parsers after the child parser, those changes will + not be reflected in the child. + formatter_class ^^^^^^^^^^^^^^^ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -304,6 +304,9 @@ - Issue #8982: Improve the documentation for the argparse Namespace object. +- Issue #9343: Document that argparse parent parsers must be configured before + their children. + Build ----- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sat Mar 26 22:08:25 2011 From: python-checkins at python.org (antoine.pitrou) Date: Sat, 26 Mar 2011 22:08:25 +0100 Subject: [Python-checkins] cpython (2.7): In the Windows clean script for buildbots, also clear the build dir Message-ID: http://hg.python.org/cpython/rev/203e02427713 changeset: 68989:203e02427713 branch: 2.7 parent: 68987:15e98607555d user: Antoine Pitrou date: Sat Mar 26 22:08:21 2011 +0100 summary: In the Windows clean script for buildbots, also clear the build dir (so that stale test files, which can be very large, get wiped out) files: Tools/buildbot/clean-amd64.bat | 5 ++++- Tools/buildbot/clean.bat | 3 +++ 2 files changed, 7 insertions(+), 1 deletions(-) diff --git a/Tools/buildbot/clean-amd64.bat b/Tools/buildbot/clean-amd64.bat --- a/Tools/buildbot/clean-amd64.bat +++ b/Tools/buildbot/clean-amd64.bat @@ -1,7 +1,10 @@ @rem Used by the buildbot "clean" step. call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 -cd PCbuild @echo Deleting .pyc/.pyo files ... del /s Lib\*.pyc Lib\*.pyo + at echo Deleting test leftovers ... +rmdir /s /q build +cd PCbuild vcbuild /clean pcbuild.sln "Release|x64" vcbuild /clean pcbuild.sln "Debug|x64" +cd .. diff --git a/Tools/buildbot/clean.bat b/Tools/buildbot/clean.bat --- a/Tools/buildbot/clean.bat +++ b/Tools/buildbot/clean.bat @@ -2,6 +2,9 @@ call "%VS90COMNTOOLS%vsvars32.bat" @echo Deleting .pyc/.pyo files ... del /s Lib\*.pyc Lib\*.pyo + at echo Deleting test leftovers ... +rmdir /s /q build cd PCbuild vcbuild /clean pcbuild.sln "Release|Win32" vcbuild /clean pcbuild.sln "Debug|Win32" +cd .. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 00:16:48 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 27 Mar 2011 00:16:48 +0100 Subject: [Python-checkins] cpython (3.1): check possible recursive _as_parameter_ to prevent segfault (closes #1838) Message-ID: http://hg.python.org/cpython/rev/4945a45b8be4 changeset: 68990:4945a45b8be4 branch: 3.1 parent: 68980:bd46aef7cf10 user: Benjamin Peterson date: Sat Mar 26 17:56:28 2011 -0500 summary: check possible recursive _as_parameter_ to prevent segfault (closes #1838) files: Lib/ctypes/test/test_as_parameter.py | 12 +++++++++++ Lib/lib2to3/refactor.py | 2 +- Lib/lib2to3/tests/test_refactor.py | 17 ++++++++++++++++ Misc/NEWS | 3 ++ Modules/_ctypes/_ctypes.c | 11 +++++++++- 5 files changed, 43 insertions(+), 2 deletions(-) diff --git a/Lib/ctypes/test/test_as_parameter.py b/Lib/ctypes/test/test_as_parameter.py --- a/Lib/ctypes/test/test_as_parameter.py +++ b/Lib/ctypes/test/test_as_parameter.py @@ -187,6 +187,18 @@ self.assertEqual((s8i.a, s8i.b, s8i.c, s8i.d, s8i.e, s8i.f, s8i.g, s8i.h), (9*2, 8*3, 7*4, 6*5, 5*6, 4*7, 3*8, 2*9)) + def test_recursive_as_param(self): + from ctypes import c_int + + class A(object): + pass + + a = A() + a._as_parameter_ = a + with self.assertRaises(RuntimeError): + c_int.from_param(a) + + #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ class AsParamWrapper(object): diff --git a/Lib/lib2to3/refactor.py b/Lib/lib2to3/refactor.py --- a/Lib/lib2to3/refactor.py +++ b/Lib/lib2to3/refactor.py @@ -500,7 +500,7 @@ node = new def processed_file(self, new_text, filename, old_text=None, write=False, - encoding=None): + encoding=None, newlines=None): """ Called when a file has been refactored, and there are changes. """ diff --git a/Lib/lib2to3/tests/test_refactor.py b/Lib/lib2to3/tests/test_refactor.py --- a/Lib/lib2to3/tests/test_refactor.py +++ b/Lib/lib2to3/tests/test_refactor.py @@ -231,6 +231,23 @@ os.path.join("a_dir", "stuff.py")] check(tree, tree) + def test_preserve_file_newlines(self): + rt = self.rt(fixers=_2TO3_FIXERS) + for nl in ("\r\n", "\n"): + data = "print y%s%syes%sok%s" % ((nl,) * 4) + handle, tmp = tempfile.mkstemp() + os.close(handle) + try: + with open(tmp, "w") as fp: + fp.write(data) + rt.refactor_file(tmp) + with open(tmp, "r") as fp: + contents = fp.read() + finally: + os.unlink(tmp) + for line in contents.splitlines(True): + self.assertTrue(line.endswith(nl)) + def test_file_encoding(self): fn = os.path.join(TEST_DATA_DIR, "different_encoding.py") self.check_file_refactoring(fn) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -238,6 +238,9 @@ Extensions ---------- +- Issue #1838: Prevent segfault in ctypes, when _as_parameter_ on a class is set + to an instance of the class. + - Issue #678250: Make mmap flush a noop on ACCESS_READ and ACCESS_COPY. Build diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -2004,10 +2004,14 @@ PyCArgObject *parg; struct fielddesc *fd; PyObject *as_parameter; + int res; /* If the value is already an instance of the requested type, we can use it as is */ - if (1 == PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -2036,7 +2040,12 @@ as_parameter = PyObject_GetAttrString(value, "_as_parameter_"); if (as_parameter) { + if (Py_EnterRecursiveCall("while processing _as_parameter_")) { + Py_DECREF(as_parameter); + return NULL; + } value = PyCSimpleType_from_param(type, as_parameter); + Py_LeaveRecursiveCall(); Py_DECREF(as_parameter); return value; } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 00:16:52 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 27 Mar 2011 00:16:52 +0100 Subject: [Python-checkins] cpython (3.1): always check return value of PyObject_IsInstance for error Message-ID: http://hg.python.org/cpython/rev/4f6d10c3841f changeset: 68991:4f6d10c3841f branch: 3.1 user: Benjamin Peterson date: Sat Mar 26 18:04:09 2011 -0500 summary: always check return value of PyObject_IsInstance for error files: Modules/_ctypes/_ctypes.c | 63 ++++++++++++++++++-------- 1 files changed, 44 insertions(+), 19 deletions(-) diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -587,7 +587,10 @@ CDataType_from_param(PyObject *type, PyObject *value) { PyObject *as_parameter; - if (1 == PyObject_IsInstance(value, type)) { + int res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -600,10 +603,14 @@ /* If we got a PyCArgObject, we must check if the object packed in it is an instance of the type's dict->proto */ - if(dict && ob - && PyObject_IsInstance(ob, dict->proto)) { - Py_INCREF(value); - return value; + if(dict && ob) { + res = PyObject_IsInstance(ob, dict->proto); + if (res == -1) + return NULL; + if (res) { + Py_INCREF(value); + return value; + } } ob_name = (ob) ? Py_TYPE(ob)->tp_name : "???"; PyErr_Format(PyExc_TypeError, @@ -953,8 +960,7 @@ Py_INCREF(value); /* _byref steals a refcount */ return _byref(value); case -1: - PyErr_Clear(); - break; + return NULL; default: break; } @@ -1445,6 +1451,7 @@ c_wchar_p_from_param(PyObject *type, PyObject *value) { PyObject *as_parameter; + int res; if (value == Py_None) { Py_INCREF(Py_None); return Py_None; @@ -1465,7 +1472,10 @@ } return (PyObject *)parg; } - if (PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -1506,6 +1516,7 @@ c_char_p_from_param(PyObject *type, PyObject *value) { PyObject *as_parameter; + int res; if (value == Py_None) { Py_INCREF(Py_None); return Py_None; @@ -1526,7 +1537,10 @@ } return (PyObject *)parg; } - if (PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -1568,6 +1582,7 @@ { StgDictObject *stgd; PyObject *as_parameter; + int res; /* None */ if (value == Py_None) { @@ -1645,7 +1660,10 @@ return (PyObject *)parg; } /* c_void_p instance (or subclass) */ - if (PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { /* c_void_p instances */ Py_INCREF(value); return value; @@ -2737,6 +2755,7 @@ Py_ssize_t size, char *ptr) { CDataObject *src; + int err; if (setfunc) return setfunc(ptr, value, size); @@ -2777,7 +2796,10 @@ } src = (CDataObject *)value; - if (PyObject_IsInstance(value, type)) { + err = PyObject_IsInstance(value, type); + if (err == -1) + return NULL; + if (err) { memcpy(ptr, src->b_ptr, size); @@ -4772,14 +4794,17 @@ stgdict = PyObject_stgdict((PyObject *)self); assert(stgdict); /* Cannot be NULL fr pointer instances */ assert(stgdict->proto); - if (!CDataObject_Check(value) - || 0 == PyObject_IsInstance(value, stgdict->proto)) { - /* XXX PyObject_IsInstance could return -1! */ - PyErr_Format(PyExc_TypeError, - "expected %s instead of %s", - ((PyTypeObject *)(stgdict->proto))->tp_name, - Py_TYPE(value)->tp_name); - return -1; + if (!CDataObject_Check(value)) { + int res = PyObject_IsInstance(value, stgdict->proto); + if (res == -1) + return -1; + if (!res) { + PyErr_Format(PyExc_TypeError, + "expected %s instead of %s", + ((PyTypeObject *)(stgdict->proto))->tp_name, + Py_TYPE(value)->tp_name); + return -1; + } } dst = (CDataObject *)value; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 00:16:54 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 27 Mar 2011 00:16:54 +0100 Subject: [Python-checkins] cpython (2.7): check possible recursive _as_parameter_ to prevent segfault (closes #1838) Message-ID: http://hg.python.org/cpython/rev/4bd06503eaca changeset: 68992:4bd06503eaca branch: 2.7 parent: 68989:203e02427713 user: Benjamin Peterson date: Sat Mar 26 17:56:28 2011 -0500 summary: check possible recursive _as_parameter_ to prevent segfault (closes #1838) files: Lib/ctypes/test/test_as_parameter.py | 12 +++++++++++ Lib/lib2to3/refactor.py | 2 +- Lib/lib2to3/tests/test_refactor.py | 17 ++++++++++++++++ Misc/NEWS | 3 ++ Modules/_ctypes/_ctypes.c | 11 +++++++++- 5 files changed, 43 insertions(+), 2 deletions(-) diff --git a/Lib/ctypes/test/test_as_parameter.py b/Lib/ctypes/test/test_as_parameter.py --- a/Lib/ctypes/test/test_as_parameter.py +++ b/Lib/ctypes/test/test_as_parameter.py @@ -187,6 +187,18 @@ self.assertEqual((s8i.a, s8i.b, s8i.c, s8i.d, s8i.e, s8i.f, s8i.g, s8i.h), (9*2, 8*3, 7*4, 6*5, 5*6, 4*7, 3*8, 2*9)) + def test_recursive_as_param(self): + from ctypes import c_int + + class A(object): + pass + + a = A() + a._as_parameter_ = a + with self.assertRaises(RuntimeError): + c_int.from_param(a) + + #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ class AsParamWrapper(object): diff --git a/Lib/lib2to3/refactor.py b/Lib/lib2to3/refactor.py --- a/Lib/lib2to3/refactor.py +++ b/Lib/lib2to3/refactor.py @@ -500,7 +500,7 @@ node = new def processed_file(self, new_text, filename, old_text=None, write=False, - encoding=None): + encoding=None, newlines=None): """ Called when a file has been refactored, and there are changes. """ diff --git a/Lib/lib2to3/tests/test_refactor.py b/Lib/lib2to3/tests/test_refactor.py --- a/Lib/lib2to3/tests/test_refactor.py +++ b/Lib/lib2to3/tests/test_refactor.py @@ -231,6 +231,23 @@ os.path.join("a_dir", "stuff.py")] check(tree, tree) + def test_preserve_file_newlines(self): + rt = self.rt(fixers=_2TO3_FIXERS) + for nl in ("\r\n", "\n"): + data = "print y%s%syes%sok%s" % ((nl,) * 4) + handle, tmp = tempfile.mkstemp() + os.close(handle) + try: + with open(tmp, "w") as fp: + fp.write(data) + rt.refactor_file(tmp) + with open(tmp, "r") as fp: + contents = fp.read() + finally: + os.unlink(tmp) + for line in contents.splitlines(True): + self.assertTrue(line.endswith(nl)) + def test_file_encoding(self): fn = os.path.join(TEST_DATA_DIR, "different_encoding.py") self.check_file_refactoring(fn) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -245,6 +245,9 @@ Extension Modules ----------------- +- Issue #1838: Prevent segfault in ctypes, when _as_parameter_ on a class is set + to an instance of the class. + - Issue #678250: Make mmap flush a noop on ACCESS_READ and ACCESS_COPY. Build diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -2065,10 +2065,14 @@ PyCArgObject *parg; struct fielddesc *fd; PyObject *as_parameter; + int res; /* If the value is already an instance of the requested type, we can use it as is */ - if (1 == PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -2097,7 +2101,12 @@ as_parameter = PyObject_GetAttrString(value, "_as_parameter_"); if (as_parameter) { + if (Py_EnterRecursiveCall("while processing _as_parameter_")) { + Py_DECREF(as_parameter); + return NULL; + } value = PyCSimpleType_from_param(type, as_parameter); + Py_LeaveRecursiveCall(); Py_DECREF(as_parameter); return value; } -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 00:16:55 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 27 Mar 2011 00:16:55 +0100 Subject: [Python-checkins] cpython (2.7): always check return value of PyObject_IsInstance for error Message-ID: http://hg.python.org/cpython/rev/8559cc269d71 changeset: 68993:8559cc269d71 branch: 2.7 user: Benjamin Peterson date: Sat Mar 26 18:04:09 2011 -0500 summary: always check return value of PyObject_IsInstance for error files: Modules/_ctypes/_ctypes.c | 60 ++++++++++++++++++-------- 1 files changed, 41 insertions(+), 19 deletions(-) diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -620,7 +620,10 @@ CDataType_from_param(PyObject *type, PyObject *value) { PyObject *as_parameter; - if (1 == PyObject_IsInstance(value, type)) { + int res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -633,10 +636,14 @@ /* If we got a PyCArgObject, we must check if the object packed in it is an instance of the type's dict->proto */ - if(dict && ob - && PyObject_IsInstance(ob, dict->proto)) { - Py_INCREF(value); - return value; + if(dict && ob) { + res = PyObject_IsInstance(ob, dict->proto); + if (res == -1) + return NULL; + if (res) { + Py_INCREF(value); + return value; + } } ob_name = (ob) ? Py_TYPE(ob)->tp_name : "???"; PyErr_Format(PyExc_TypeError, @@ -989,8 +996,7 @@ Py_INCREF(value); /* _byref steals a refcount */ return _byref(value); case -1: - PyErr_Clear(); - break; + return NULL; default: break; } @@ -1516,7 +1522,10 @@ } return (PyObject *)parg; } - if (PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -1580,7 +1589,10 @@ } return (PyObject *)parg; } - if (PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -1684,7 +1696,10 @@ return (PyObject *)parg; } /* c_void_p instance (or subclass) */ - if (PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { /* c_void_p instances */ Py_INCREF(value); return value; @@ -2836,6 +2851,7 @@ Py_ssize_t size, char *ptr) { CDataObject *src; + int err; if (setfunc) return setfunc(ptr, value, size); @@ -2876,7 +2892,10 @@ } src = (CDataObject *)value; - if (PyObject_IsInstance(value, type)) { + err = PyObject_IsInstance(value, type); + if (err == -1) + return NULL; + if (err) { memcpy(ptr, src->b_ptr, size); @@ -4966,14 +4985,17 @@ stgdict = PyObject_stgdict((PyObject *)self); assert(stgdict); /* Cannot be NULL fr pointer instances */ assert(stgdict->proto); - if (!CDataObject_Check(value) - || 0 == PyObject_IsInstance(value, stgdict->proto)) { - /* XXX PyObject_IsInstance could return -1! */ - PyErr_Format(PyExc_TypeError, - "expected %s instead of %s", - ((PyTypeObject *)(stgdict->proto))->tp_name, - Py_TYPE(value)->tp_name); - return -1; + if (!CDataObject_Check(value)) { + int res = PyObject_IsInstance(value, stgdict->proto); + if (res == -1) + return -1; + if (!res) { + PyErr_Format(PyExc_TypeError, + "expected %s instead of %s", + ((PyTypeObject *)(stgdict->proto))->tp_name, + Py_TYPE(value)->tp_name); + return -1; + } } dst = (CDataObject *)value; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 00:16:56 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 27 Mar 2011 00:16:56 +0100 Subject: [Python-checkins] cpython (2.7): fix missing variable declarations Message-ID: http://hg.python.org/cpython/rev/206129719e7c changeset: 68994:206129719e7c branch: 2.7 user: Benjamin Peterson date: Sat Mar 26 18:09:55 2011 -0500 summary: fix missing variable declarations files: Modules/_ctypes/_ctypes.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -1499,6 +1499,7 @@ c_wchar_p_from_param(PyObject *type, PyObject *value) { PyObject *as_parameter; + int res; #if (PYTHON_API_VERSION < 1012) # error not supported #endif @@ -1566,6 +1567,7 @@ c_char_p_from_param(PyObject *type, PyObject *value) { PyObject *as_parameter; + int res; #if (PYTHON_API_VERSION < 1012) # error not supported #endif @@ -1634,6 +1636,7 @@ { StgDictObject *stgd; PyObject *as_parameter; + int res; #if (PYTHON_API_VERSION < 1012) # error not supported #endif -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 00:16:58 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 27 Mar 2011 00:16:58 +0100 Subject: [Python-checkins] cpython (3.1): revert unintended changes Message-ID: http://hg.python.org/cpython/rev/f4e94850c92f changeset: 68995:f4e94850c92f branch: 3.1 parent: 68991:4f6d10c3841f user: Benjamin Peterson date: Sat Mar 26 18:11:54 2011 -0500 summary: revert unintended changes files: Lib/lib2to3/refactor.py | 2 +- Lib/lib2to3/tests/test_refactor.py | 17 ----------------- 2 files changed, 1 insertions(+), 18 deletions(-) diff --git a/Lib/lib2to3/refactor.py b/Lib/lib2to3/refactor.py --- a/Lib/lib2to3/refactor.py +++ b/Lib/lib2to3/refactor.py @@ -500,7 +500,7 @@ node = new def processed_file(self, new_text, filename, old_text=None, write=False, - encoding=None, newlines=None): + encoding=None): """ Called when a file has been refactored, and there are changes. """ diff --git a/Lib/lib2to3/tests/test_refactor.py b/Lib/lib2to3/tests/test_refactor.py --- a/Lib/lib2to3/tests/test_refactor.py +++ b/Lib/lib2to3/tests/test_refactor.py @@ -231,23 +231,6 @@ os.path.join("a_dir", "stuff.py")] check(tree, tree) - def test_preserve_file_newlines(self): - rt = self.rt(fixers=_2TO3_FIXERS) - for nl in ("\r\n", "\n"): - data = "print y%s%syes%sok%s" % ((nl,) * 4) - handle, tmp = tempfile.mkstemp() - os.close(handle) - try: - with open(tmp, "w") as fp: - fp.write(data) - rt.refactor_file(tmp) - with open(tmp, "r") as fp: - contents = fp.read() - finally: - os.unlink(tmp) - for line in contents.splitlines(True): - self.assertTrue(line.endswith(nl)) - def test_file_encoding(self): fn = os.path.join(TEST_DATA_DIR, "different_encoding.py") self.check_file_refactoring(fn) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 00:17:01 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 27 Mar 2011 00:17:01 +0100 Subject: [Python-checkins] cpython (2.7): revert unintended changes Message-ID: http://hg.python.org/cpython/rev/4f07cacb2c3b changeset: 68996:4f07cacb2c3b branch: 2.7 parent: 68994:206129719e7c user: Benjamin Peterson date: Sat Mar 26 18:11:54 2011 -0500 summary: revert unintended changes files: Lib/lib2to3/refactor.py | 2 +- Lib/lib2to3/tests/test_refactor.py | 17 ----------------- 2 files changed, 1 insertions(+), 18 deletions(-) diff --git a/Lib/lib2to3/refactor.py b/Lib/lib2to3/refactor.py --- a/Lib/lib2to3/refactor.py +++ b/Lib/lib2to3/refactor.py @@ -500,7 +500,7 @@ node = new def processed_file(self, new_text, filename, old_text=None, write=False, - encoding=None, newlines=None): + encoding=None): """ Called when a file has been refactored, and there are changes. """ diff --git a/Lib/lib2to3/tests/test_refactor.py b/Lib/lib2to3/tests/test_refactor.py --- a/Lib/lib2to3/tests/test_refactor.py +++ b/Lib/lib2to3/tests/test_refactor.py @@ -231,23 +231,6 @@ os.path.join("a_dir", "stuff.py")] check(tree, tree) - def test_preserve_file_newlines(self): - rt = self.rt(fixers=_2TO3_FIXERS) - for nl in ("\r\n", "\n"): - data = "print y%s%syes%sok%s" % ((nl,) * 4) - handle, tmp = tempfile.mkstemp() - os.close(handle) - try: - with open(tmp, "w") as fp: - fp.write(data) - rt.refactor_file(tmp) - with open(tmp, "r") as fp: - contents = fp.read() - finally: - os.unlink(tmp) - for line in contents.splitlines(True): - self.assertTrue(line.endswith(nl)) - def test_file_encoding(self): fn = os.path.join(TEST_DATA_DIR, "different_encoding.py") self.check_file_refactoring(fn) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 00:17:02 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 27 Mar 2011 00:17:02 +0100 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): merge 3.1 Message-ID: http://hg.python.org/cpython/rev/d5c819d597fe changeset: 68997:d5c819d597fe branch: 3.2 parent: 68986:d288666c1d58 parent: 68995:f4e94850c92f user: Benjamin Peterson date: Sat Mar 26 18:17:05 2011 -0500 summary: merge 3.1 files: Lib/ctypes/test/test_as_parameter.py | 12 ++ Misc/NEWS | 6 + Modules/_ctypes/_ctypes.c | 74 +++++++++++---- 3 files changed, 72 insertions(+), 20 deletions(-) diff --git a/Lib/ctypes/test/test_as_parameter.py b/Lib/ctypes/test/test_as_parameter.py --- a/Lib/ctypes/test/test_as_parameter.py +++ b/Lib/ctypes/test/test_as_parameter.py @@ -187,6 +187,18 @@ self.assertEqual((s8i.a, s8i.b, s8i.c, s8i.d, s8i.e, s8i.f, s8i.g, s8i.h), (9*2, 8*3, 7*4, 6*5, 5*6, 4*7, 3*8, 2*9)) + def test_recursive_as_param(self): + from ctypes import c_int + + class A(object): + pass + + a = A() + a._as_parameter_ = a + with self.assertRaises(RuntimeError): + c_int.from_param(a) + + #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ class AsParamWrapper(object): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -178,6 +178,12 @@ - Issue #11179: Make ccbench work under Python 3.1 and 2.7 again. +Extensions +---------- + +- Issue #1838: Prevent segfault in ctypes, when _as_parameter_ on a class is set + to an instance of the class. + Tests ----- diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -585,7 +585,10 @@ CDataType_from_param(PyObject *type, PyObject *value) { PyObject *as_parameter; - if (1 == PyObject_IsInstance(value, type)) { + int res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -598,10 +601,14 @@ /* If we got a PyCArgObject, we must check if the object packed in it is an instance of the type's dict->proto */ - if(dict && ob - && PyObject_IsInstance(ob, dict->proto)) { - Py_INCREF(value); - return value; + if(dict && ob) { + res = PyObject_IsInstance(ob, dict->proto); + if (res == -1) + return NULL; + if (res) { + Py_INCREF(value); + return value; + } } ob_name = (ob) ? Py_TYPE(ob)->tp_name : "???"; PyErr_Format(PyExc_TypeError, @@ -951,8 +958,7 @@ Py_INCREF(value); /* _byref steals a refcount */ return _byref(value); case -1: - PyErr_Clear(); - break; + return NULL; default: break; } @@ -1431,6 +1437,7 @@ c_wchar_p_from_param(PyObject *type, PyObject *value) { PyObject *as_parameter; + int res; if (value == Py_None) { Py_INCREF(Py_None); return Py_None; @@ -1451,7 +1458,10 @@ } return (PyObject *)parg; } - if (PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -1492,6 +1502,7 @@ c_char_p_from_param(PyObject *type, PyObject *value) { PyObject *as_parameter; + int res; if (value == Py_None) { Py_INCREF(Py_None); return Py_None; @@ -1512,7 +1523,10 @@ } return (PyObject *)parg; } - if (PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -1554,6 +1568,7 @@ { StgDictObject *stgd; PyObject *as_parameter; + int res; /* None */ if (value == Py_None) { @@ -1631,7 +1646,10 @@ return (PyObject *)parg; } /* c_void_p instance (or subclass) */ - if (PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { /* c_void_p instances */ Py_INCREF(value); return value; @@ -1990,10 +2008,14 @@ PyCArgObject *parg; struct fielddesc *fd; PyObject *as_parameter; + int res; /* If the value is already an instance of the requested type, we can use it as is */ - if (1 == PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -2022,7 +2044,12 @@ as_parameter = PyObject_GetAttrString(value, "_as_parameter_"); if (as_parameter) { + if (Py_EnterRecursiveCall("while processing _as_parameter_")) { + Py_DECREF(as_parameter); + return NULL; + } value = PyCSimpleType_from_param(type, as_parameter); + Py_LeaveRecursiveCall(); Py_DECREF(as_parameter); return value; } @@ -2714,6 +2741,7 @@ Py_ssize_t size, char *ptr) { CDataObject *src; + int err; if (setfunc) return setfunc(ptr, value, size); @@ -2754,7 +2782,10 @@ } src = (CDataObject *)value; - if (PyObject_IsInstance(value, type)) { + err = PyObject_IsInstance(value, type); + if (err == -1) + return NULL; + if (err) { memcpy(ptr, src->b_ptr, size); @@ -4749,14 +4780,17 @@ stgdict = PyObject_stgdict((PyObject *)self); assert(stgdict); /* Cannot be NULL fr pointer instances */ assert(stgdict->proto); - if (!CDataObject_Check(value) - || 0 == PyObject_IsInstance(value, stgdict->proto)) { - /* XXX PyObject_IsInstance could return -1! */ - PyErr_Format(PyExc_TypeError, - "expected %s instead of %s", - ((PyTypeObject *)(stgdict->proto))->tp_name, - Py_TYPE(value)->tp_name); - return -1; + if (!CDataObject_Check(value)) { + int res = PyObject_IsInstance(value, stgdict->proto); + if (res == -1) + return -1; + if (!res) { + PyErr_Format(PyExc_TypeError, + "expected %s instead of %s", + ((PyTypeObject *)(stgdict->proto))->tp_name, + Py_TYPE(value)->tp_name); + return -1; + } } dst = (CDataObject *)value; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 00:17:04 2011 From: python-checkins at python.org (benjamin.peterson) Date: Sun, 27 Mar 2011 00:17:04 +0100 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge 3.2 Message-ID: http://hg.python.org/cpython/rev/b44156fdc7f2 changeset: 68998:b44156fdc7f2 parent: 68988:8bdc20468cbc parent: 68997:d5c819d597fe user: Benjamin Peterson date: Sat Mar 26 18:18:09 2011 -0500 summary: merge 3.2 files: Lib/ctypes/test/test_as_parameter.py | 12 ++ Misc/NEWS | 6 + Modules/_ctypes/_ctypes.c | 74 +++++++++++---- 3 files changed, 72 insertions(+), 20 deletions(-) diff --git a/Lib/ctypes/test/test_as_parameter.py b/Lib/ctypes/test/test_as_parameter.py --- a/Lib/ctypes/test/test_as_parameter.py +++ b/Lib/ctypes/test/test_as_parameter.py @@ -187,6 +187,18 @@ self.assertEqual((s8i.a, s8i.b, s8i.c, s8i.d, s8i.e, s8i.f, s8i.g, s8i.h), (9*2, 8*3, 7*4, 6*5, 5*6, 4*7, 3*8, 2*9)) + def test_recursive_as_param(self): + from ctypes import c_int + + class A(object): + pass + + a = A() + a._as_parameter_ = a + with self.assertRaises(RuntimeError): + c_int.from_param(a) + + #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ class AsParamWrapper(object): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -322,6 +322,12 @@ - Issue #11179: Make ccbench work under Python 3.1 and 2.7 again. +Extensions +---------- + +- Issue #1838: Prevent segfault in ctypes, when _as_parameter_ on a class is set + to an instance of the class. + Tests ----- diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -585,7 +585,10 @@ CDataType_from_param(PyObject *type, PyObject *value) { PyObject *as_parameter; - if (1 == PyObject_IsInstance(value, type)) { + int res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -598,10 +601,14 @@ /* If we got a PyCArgObject, we must check if the object packed in it is an instance of the type's dict->proto */ - if(dict && ob - && PyObject_IsInstance(ob, dict->proto)) { - Py_INCREF(value); - return value; + if(dict && ob) { + res = PyObject_IsInstance(ob, dict->proto); + if (res == -1) + return NULL; + if (res) { + Py_INCREF(value); + return value; + } } ob_name = (ob) ? Py_TYPE(ob)->tp_name : "???"; PyErr_Format(PyExc_TypeError, @@ -951,8 +958,7 @@ Py_INCREF(value); /* _byref steals a refcount */ return _byref(value); case -1: - PyErr_Clear(); - break; + return NULL; default: break; } @@ -1431,6 +1437,7 @@ c_wchar_p_from_param(PyObject *type, PyObject *value) { PyObject *as_parameter; + int res; if (value == Py_None) { Py_INCREF(Py_None); return Py_None; @@ -1451,7 +1458,10 @@ } return (PyObject *)parg; } - if (PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -1492,6 +1502,7 @@ c_char_p_from_param(PyObject *type, PyObject *value) { PyObject *as_parameter; + int res; if (value == Py_None) { Py_INCREF(Py_None); return Py_None; @@ -1512,7 +1523,10 @@ } return (PyObject *)parg; } - if (PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -1554,6 +1568,7 @@ { StgDictObject *stgd; PyObject *as_parameter; + int res; /* None */ if (value == Py_None) { @@ -1631,7 +1646,10 @@ return (PyObject *)parg; } /* c_void_p instance (or subclass) */ - if (PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { /* c_void_p instances */ Py_INCREF(value); return value; @@ -1990,10 +2008,14 @@ PyCArgObject *parg; struct fielddesc *fd; PyObject *as_parameter; + int res; /* If the value is already an instance of the requested type, we can use it as is */ - if (1 == PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -2022,7 +2044,12 @@ as_parameter = PyObject_GetAttrString(value, "_as_parameter_"); if (as_parameter) { + if (Py_EnterRecursiveCall("while processing _as_parameter_")) { + Py_DECREF(as_parameter); + return NULL; + } value = PyCSimpleType_from_param(type, as_parameter); + Py_LeaveRecursiveCall(); Py_DECREF(as_parameter); return value; } @@ -2714,6 +2741,7 @@ Py_ssize_t size, char *ptr) { CDataObject *src; + int err; if (setfunc) return setfunc(ptr, value, size); @@ -2754,7 +2782,10 @@ } src = (CDataObject *)value; - if (PyObject_IsInstance(value, type)) { + err = PyObject_IsInstance(value, type); + if (err == -1) + return NULL; + if (err) { memcpy(ptr, src->b_ptr, size); @@ -4749,14 +4780,17 @@ stgdict = PyObject_stgdict((PyObject *)self); assert(stgdict); /* Cannot be NULL fr pointer instances */ assert(stgdict->proto); - if (!CDataObject_Check(value) - || 0 == PyObject_IsInstance(value, stgdict->proto)) { - /* XXX PyObject_IsInstance could return -1! */ - PyErr_Format(PyExc_TypeError, - "expected %s instead of %s", - ((PyTypeObject *)(stgdict->proto))->tp_name, - Py_TYPE(value)->tp_name); - return -1; + if (!CDataObject_Check(value)) { + int res = PyObject_IsInstance(value, stgdict->proto); + if (res == -1) + return -1; + if (!res) { + PyErr_Format(PyExc_TypeError, + "expected %s instead of %s", + ((PyTypeObject *)(stgdict->proto))->tp_name, + Py_TYPE(value)->tp_name); + return -1; + } } dst = (CDataObject *)value; -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Sun Mar 27 04:54:11 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Sun, 27 Mar 2011 04:54:11 +0200 Subject: [Python-checkins] Daily reference leaks (b44156fdc7f2): sum=0 Message-ID: results for b44156fdc7f2 on branch "default" -------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogvqwc7k', '-x'] From python-checkins at python.org Sun Mar 27 09:47:46 2011 From: python-checkins at python.org (georg.brandl) Date: Sun, 27 Mar 2011 09:47:46 +0200 Subject: [Python-checkins] peps: Update planned changes. Message-ID: http://hg.python.org/peps/rev/5dceea0aaa49 changeset: 3853:5dceea0aaa49 user: Georg Brandl date: Sun Mar 27 09:47:51 2011 +0200 summary: Update planned changes. files: pep-0398.txt | 22 +++++++++++++--------- 1 files changed, 13 insertions(+), 9 deletions(-) diff --git a/pep-0398.txt b/pep-0398.txt --- a/pep-0398.txt +++ b/pep-0398.txt @@ -34,18 +34,18 @@ The current schedule is: -- 3.3 alpha 1: March 3, 2012 -- 3.3 alpha 2: March 31, 2012 -- 3.3 alpha 3: April 28, 2012 -- 3.3 alpha 4: May 26, 2012 -- 3.3 beta 1: June 23, 2012 +- 3.3.0 alpha 1: March 3, 2012 +- 3.3.0 alpha 2: March 31, 2012 +- 3.3.0 alpha 3: April 28, 2012 +- 3.3.0 alpha 4: May 26, 2012 +- 3.3.0 beta 1: June 23, 2012 (No new features beyond this point.) -- 3.3 beta 2: July 14, 2012 -- 3.3 candidate 1: July 28, 2012 -- 3.3 candidate 2: August 11, 2012 -- 3.3 final: August 18, 2012 +- 3.3.0 beta 2: July 14, 2012 +- 3.3.0 candidate 1: July 28, 2012 +- 3.3.0 candidate 2: August 11, 2012 +- 3.3.0 final: August 18, 2012 .. don't forget to update final date above as well @@ -76,6 +76,10 @@ * Addition of the "packaging" module, replacing "distutils" * Implementing ``__import__`` using importlib * Email version 6 +* A standard event-loop interface (PEP by Jim Fulton pending) +* Adding the faulthandler module. +* Breaking out standard library and docs in separate repos? +* A PEP on supplementing C modules with equivalent Python modules? Copyright -- Repository URL: http://hg.python.org/peps From python-checkins at python.org Sun Mar 27 10:16:31 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 27 Mar 2011 10:16:31 +0200 Subject: [Python-checkins] cpython (2.7): Fix short file name generation in bdist_msi. Message-ID: http://hg.python.org/cpython/rev/e51366a05b84 changeset: 68999:e51366a05b84 branch: 2.7 parent: 68996:4f07cacb2c3b user: Martin v. L?wis date: Sun Mar 27 10:10:46 2011 +0200 summary: Fix short file name generation in bdist_msi. Patch by Christoph Gohlke. Closes #7639. files: Lib/msilib/__init__.py | 25 +++++++++++++++++-------- Misc/NEWS | 2 ++ 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/Lib/msilib/__init__.py b/Lib/msilib/__init__.py --- a/Lib/msilib/__init__.py +++ b/Lib/msilib/__init__.py @@ -174,10 +174,10 @@ def make_id(str): #str = str.replace(".", "_") # colons are allowed - str = str.replace(" ", "_") - str = str.replace("-", "_") - if str[0] in string.digits: - str = "_"+str + for c in " -+~;": + str = str.replace(c, "_") + if str[0] in (string.digits + "."): + str = "_" + str assert re.match("^[A-Za-z_][A-Za-z0-9_.]*$", str), "FILE"+str return str @@ -285,19 +285,28 @@ [(feature.id, component)]) def make_short(self, file): + oldfile = file + file = file.replace('+', '_') + file = ''.join(c for c in file if not c in ' "/\[]:;=,') parts = file.split(".") - if len(parts)>1: + if len(parts) > 1: + prefix = "".join(parts[:-1]).upper() suffix = parts[-1].upper() + if not prefix: + prefix = suffix + suffix = None else: + prefix = file.upper() suffix = None - prefix = parts[0].upper() - if len(prefix) <= 8 and (not suffix or len(suffix)<=3): + if len(parts) < 3 and len(prefix) <= 8 and file == oldfile and ( + not suffix or len(suffix) <= 3): if suffix: file = prefix+"."+suffix else: file = prefix - assert file not in self.short_names else: + file = None + if file is None or file in self.short_names: prefix = prefix[:6] if suffix: suffix = suffix[:3] diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -51,6 +51,8 @@ Library ------- +- Issue #7639: Fix short file name generation in bdist_msi. + - Issue #11666: let help() display named tuple attributes and methods that start with a leading underscore. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 10:16:32 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 27 Mar 2011 10:16:32 +0200 Subject: [Python-checkins] cpython (3.1): Fix short file name generation in bdist_msi. Message-ID: http://hg.python.org/cpython/rev/fd8336947f90 changeset: 69000:fd8336947f90 branch: 3.1 parent: 68995:f4e94850c92f user: Martin v. L?wis date: Sun Mar 27 10:12:07 2011 +0200 summary: Fix short file name generation in bdist_msi. Patch by Christoph Gohlke. Closes #7639. files: Lib/msilib/__init__.py | 25 +++++++++++++++++-------- Misc/NEWS | 2 ++ 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/Lib/msilib/__init__.py b/Lib/msilib/__init__.py --- a/Lib/msilib/__init__.py +++ b/Lib/msilib/__init__.py @@ -174,10 +174,10 @@ def make_id(str): #str = str.replace(".", "_") # colons are allowed - str = str.replace(" ", "_") - str = str.replace("-", "_") - if str[0] in string.digits: - str = "_"+str + for c in " -+~;": + str = str.replace(c, "_") + if str[0] in (string.digits + "."): + str = "_" + str assert re.match("^[A-Za-z_][A-Za-z0-9_.]*$", str), "FILE"+str return str @@ -285,19 +285,28 @@ [(feature.id, component)]) def make_short(self, file): + oldfile = file + file = file.replace('+', '_') + file = ''.join(c for c in file if not c in ' "/\[]:;=,') parts = file.split(".") - if len(parts)>1: + if len(parts) > 1: + prefix = "".join(parts[:-1]).upper() suffix = parts[-1].upper() + if not prefix: + prefix = suffix + suffix = None else: + prefix = file.upper() suffix = None - prefix = parts[0].upper() - if len(prefix) <= 8 and (not suffix or len(suffix)<=3): + if len(parts) < 3 and len(prefix) <= 8 and file == oldfile and ( + not suffix or len(suffix) <= 3): if suffix: file = prefix+"."+suffix else: file = prefix - assert file not in self.short_names else: + file = None + if file is None or file in self.short_names: prefix = prefix[:6] if suffix: suffix = suffix[:3] diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -48,6 +48,8 @@ Library ------- +- Issue #7639: Fix short file name generation in bdist_msi. + - Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. Patch by Ben Hayden. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 10:16:40 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 27 Mar 2011 10:16:40 +0200 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): merge #7639 Message-ID: http://hg.python.org/cpython/rev/c7d0fc181376 changeset: 69001:c7d0fc181376 branch: 3.2 parent: 68997:d5c819d597fe parent: 69000:fd8336947f90 user: Martin v. L?wis date: Sun Mar 27 10:14:57 2011 +0200 summary: merge #7639 files: Lib/msilib/__init__.py | 25 +++++++++++++++++-------- Misc/NEWS | 2 ++ 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/Lib/msilib/__init__.py b/Lib/msilib/__init__.py --- a/Lib/msilib/__init__.py +++ b/Lib/msilib/__init__.py @@ -173,10 +173,10 @@ def make_id(str): #str = str.replace(".", "_") # colons are allowed - str = str.replace(" ", "_") - str = str.replace("-", "_") - if str[0] in string.digits: - str = "_"+str + for c in " -+~;": + str = str.replace(c, "_") + if str[0] in (string.digits + "."): + str = "_" + str assert re.match("^[A-Za-z_][A-Za-z0-9_.]*$", str), "FILE"+str return str @@ -284,19 +284,28 @@ [(feature.id, component)]) def make_short(self, file): + oldfile = file + file = file.replace('+', '_') + file = ''.join(c for c in file if not c in ' "/\[]:;=,') parts = file.split(".") - if len(parts)>1: + if len(parts) > 1: + prefix = "".join(parts[:-1]).upper() suffix = parts[-1].upper() + if not prefix: + prefix = suffix + suffix = None else: + prefix = file.upper() suffix = None - prefix = parts[0].upper() - if len(prefix) <= 8 and (not suffix or len(suffix)<=3): + if len(parts) < 3 and len(prefix) <= 8 and file == oldfile and ( + not suffix or len(suffix) <= 3): if suffix: file = prefix+"."+suffix else: file = prefix - assert file not in self.short_names else: + file = None + if file is None or file in self.short_names: prefix = prefix[:6] if suffix: suffix = suffix[:3] diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -53,6 +53,8 @@ Library ------- +- Issue #7639: Fix short file name generation in bdist_msi + - Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. Patch by Ben Hayden. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 10:16:44 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 27 Mar 2011 10:16:44 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge #7639 Message-ID: http://hg.python.org/cpython/rev/a7e0a1dbfbb6 changeset: 69002:a7e0a1dbfbb6 parent: 68998:b44156fdc7f2 parent: 69001:c7d0fc181376 user: Martin v. L?wis date: Sun Mar 27 10:15:57 2011 +0200 summary: merge #7639 files: Lib/msilib/__init__.py | 25 +++++++++++++++++-------- Misc/NEWS | 2 ++ 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/Lib/msilib/__init__.py b/Lib/msilib/__init__.py --- a/Lib/msilib/__init__.py +++ b/Lib/msilib/__init__.py @@ -173,10 +173,10 @@ def make_id(str): #str = str.replace(".", "_") # colons are allowed - str = str.replace(" ", "_") - str = str.replace("-", "_") - if str[0] in string.digits: - str = "_"+str + for c in " -+~;": + str = str.replace(c, "_") + if str[0] in (string.digits + "."): + str = "_" + str assert re.match("^[A-Za-z_][A-Za-z0-9_.]*$", str), "FILE"+str return str @@ -284,19 +284,28 @@ [(feature.id, component)]) def make_short(self, file): + oldfile = file + file = file.replace('+', '_') + file = ''.join(c for c in file if not c in ' "/\[]:;=,') parts = file.split(".") - if len(parts)>1: + if len(parts) > 1: + prefix = "".join(parts[:-1]).upper() suffix = parts[-1].upper() + if not prefix: + prefix = suffix + suffix = None else: + prefix = file.upper() suffix = None - prefix = parts[0].upper() - if len(prefix) <= 8 and (not suffix or len(suffix)<=3): + if len(parts) < 3 and len(prefix) <= 8 and file == oldfile and ( + not suffix or len(suffix) <= 3): if suffix: file = prefix+"."+suffix else: file = prefix - assert file not in self.short_names else: + file = None + if file is None or file in self.short_names: prefix = prefix[:6] if suffix: suffix = suffix[:3] diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -91,6 +91,8 @@ Library ------- +- Issue #7639: Fix short file name generation in bdist_msi + - Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. Patch by Ben Hayden. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 14:04:18 2011 From: python-checkins at python.org (steven.bethard) Date: Sun, 27 Mar 2011 14:04:18 +0200 Subject: [Python-checkins] cpython (3.2): Issue #9026: Fix order of argparse sub-commands in help messages. Message-ID: http://hg.python.org/cpython/rev/74f9ed48ae5d changeset: 69003:74f9ed48ae5d branch: 3.2 parent: 69001:c7d0fc181376 user: Steven Bethard date: Sun Mar 27 13:53:53 2011 +0200 summary: Issue #9026: Fix order of argparse sub-commands in help messages. files: Lib/argparse.py | 3 +- Lib/test/test_argparse.py | 83 ++++++++++++++++++++++++++- Misc/NEWS | 2 + 3 files changed, 84 insertions(+), 4 deletions(-) diff --git a/Lib/argparse.py b/Lib/argparse.py --- a/Lib/argparse.py +++ b/Lib/argparse.py @@ -82,6 +82,7 @@ ] +import collections as _collections import copy as _copy import os as _os import re as _re @@ -1041,7 +1042,7 @@ self._prog_prefix = prog self._parser_class = parser_class - self._name_parser_map = {} + self._name_parser_map = _collections.OrderedDict() self._choices_actions = [] super(_SubParsersAction, self).__init__( diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py --- a/Lib/test/test_argparse.py +++ b/Lib/test/test_argparse.py @@ -2837,16 +2837,22 @@ parser = argparse.ArgumentParser( *tester.parser_signature.args, **tester.parser_signature.kwargs) - for argument_sig in tester.argument_signatures: + for argument_sig in getattr(tester, 'argument_signatures', []): parser.add_argument(*argument_sig.args, **argument_sig.kwargs) - group_signatures = tester.argument_group_signatures - for group_sig, argument_sigs in group_signatures: + group_sigs = getattr(tester, 'argument_group_signatures', []) + for group_sig, argument_sigs in group_sigs: group = parser.add_argument_group(*group_sig.args, **group_sig.kwargs) for argument_sig in argument_sigs: group.add_argument(*argument_sig.args, **argument_sig.kwargs) + subparsers_sigs = getattr(tester, 'subparsers_signatures', []) + if subparsers_sigs: + subparsers = parser.add_subparsers() + for subparser_sig in subparsers_sigs: + subparsers.add_parser(*subparser_sig.args, + **subparser_sig.kwargs) return parser def _test(self, tester, parser_text): @@ -3940,6 +3946,77 @@ ''' version = '' +class TestHelpSubparsersOrdering(HelpTestCase): + """Test ordering of subcommands in help matches the code""" + parser_signature = Sig(prog='PROG', + description='display some subcommands', + version='0.1') + + subparsers_signatures = [Sig(name=name) + for name in ('a', 'b', 'c', 'd', 'e')] + + usage = '''\ + usage: PROG [-h] [-v] {a,b,c,d,e} ... + ''' + + help = usage + '''\ + + display some subcommands + + positional arguments: + {a,b,c,d,e} + + optional arguments: + -h, --help show this help message and exit + -v, --version show program's version number and exit + ''' + + version = '''\ + 0.1 + ''' + +class TestHelpSubparsersWithHelpOrdering(HelpTestCase): + """Test ordering of subcommands in help matches the code""" + parser_signature = Sig(prog='PROG', + description='display some subcommands', + version='0.1') + + subcommand_data = (('a', 'a subcommand help'), + ('b', 'b subcommand help'), + ('c', 'c subcommand help'), + ('d', 'd subcommand help'), + ('e', 'e subcommand help'), + ) + + subparsers_signatures = [Sig(name=name, help=help) + for name, help in subcommand_data] + + usage = '''\ + usage: PROG [-h] [-v] {a,b,c,d,e} ... + ''' + + help = usage + '''\ + + display some subcommands + + positional arguments: + {a,b,c,d,e} + a a subcommand help + b b subcommand help + c c subcommand help + d d subcommand help + e e subcommand help + + optional arguments: + -h, --help show this help message and exit + -v, --version show program's version number and exit + ''' + + version = '''\ + 0.1 + ''' + + # ===================================== # Optional/Positional constructor tests # ===================================== diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -167,6 +167,8 @@ - Issue #9343: Document that argparse parent parsers must be configured before their children. +- Issue #9026: Fix order of argparse sub-commands in help messages. + Build ----- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 14:04:19 2011 From: python-checkins at python.org (steven.bethard) Date: Sun, 27 Mar 2011 14:04:19 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #9026: Fix order of argparse sub-commands in help messages. (Merged from Message-ID: http://hg.python.org/cpython/rev/de29472c6a84 changeset: 69004:de29472c6a84 parent: 69002:a7e0a1dbfbb6 parent: 69003:74f9ed48ae5d user: Steven Bethard date: Sun Mar 27 14:04:03 2011 +0200 summary: Issue #9026: Fix order of argparse sub-commands in help messages. (Merged from 3.2.) files: Lib/argparse.py | 3 +- Lib/test/test_argparse.py | 83 ++++++++++++++++++++++++++- Misc/NEWS | 2 + 3 files changed, 84 insertions(+), 4 deletions(-) diff --git a/Lib/argparse.py b/Lib/argparse.py --- a/Lib/argparse.py +++ b/Lib/argparse.py @@ -83,6 +83,7 @@ ] +import collections as _collections import copy as _copy import os as _os import re as _re @@ -1066,7 +1067,7 @@ self._prog_prefix = prog self._parser_class = parser_class - self._name_parser_map = {} + self._name_parser_map = _collections.OrderedDict() self._choices_actions = [] super(_SubParsersAction, self).__init__( diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py --- a/Lib/test/test_argparse.py +++ b/Lib/test/test_argparse.py @@ -2837,16 +2837,22 @@ parser = argparse.ArgumentParser( *tester.parser_signature.args, **tester.parser_signature.kwargs) - for argument_sig in tester.argument_signatures: + for argument_sig in getattr(tester, 'argument_signatures', []): parser.add_argument(*argument_sig.args, **argument_sig.kwargs) - group_signatures = tester.argument_group_signatures - for group_sig, argument_sigs in group_signatures: + group_sigs = getattr(tester, 'argument_group_signatures', []) + for group_sig, argument_sigs in group_sigs: group = parser.add_argument_group(*group_sig.args, **group_sig.kwargs) for argument_sig in argument_sigs: group.add_argument(*argument_sig.args, **argument_sig.kwargs) + subparsers_sigs = getattr(tester, 'subparsers_signatures', []) + if subparsers_sigs: + subparsers = parser.add_subparsers() + for subparser_sig in subparsers_sigs: + subparsers.add_parser(*subparser_sig.args, + **subparser_sig.kwargs) return parser def _test(self, tester, parser_text): @@ -3940,6 +3946,77 @@ ''' version = '' +class TestHelpSubparsersOrdering(HelpTestCase): + """Test ordering of subcommands in help matches the code""" + parser_signature = Sig(prog='PROG', + description='display some subcommands', + version='0.1') + + subparsers_signatures = [Sig(name=name) + for name in ('a', 'b', 'c', 'd', 'e')] + + usage = '''\ + usage: PROG [-h] [-v] {a,b,c,d,e} ... + ''' + + help = usage + '''\ + + display some subcommands + + positional arguments: + {a,b,c,d,e} + + optional arguments: + -h, --help show this help message and exit + -v, --version show program's version number and exit + ''' + + version = '''\ + 0.1 + ''' + +class TestHelpSubparsersWithHelpOrdering(HelpTestCase): + """Test ordering of subcommands in help matches the code""" + parser_signature = Sig(prog='PROG', + description='display some subcommands', + version='0.1') + + subcommand_data = (('a', 'a subcommand help'), + ('b', 'b subcommand help'), + ('c', 'c subcommand help'), + ('d', 'd subcommand help'), + ('e', 'e subcommand help'), + ) + + subparsers_signatures = [Sig(name=name, help=help) + for name, help in subcommand_data] + + usage = '''\ + usage: PROG [-h] [-v] {a,b,c,d,e} ... + ''' + + help = usage + '''\ + + display some subcommands + + positional arguments: + {a,b,c,d,e} + a a subcommand help + b b subcommand help + c c subcommand help + d d subcommand help + e e subcommand help + + optional arguments: + -h, --help show this help message and exit + -v, --version show program's version number and exit + ''' + + version = '''\ + 0.1 + ''' + + class TestHelpMetavarTypeFormatter(HelpTestCase): """""" diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -309,6 +309,8 @@ - Issue #9343: Document that argparse parent parsers must be configured before their children. +- Issue #9026: Fix order of argparse sub-commands in help messages. + Build ----- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 14:04:51 2011 From: python-checkins at python.org (steven.bethard) Date: Sun, 27 Mar 2011 14:04:51 +0200 Subject: [Python-checkins] cpython (2.7): Issue #9026: Fix order of argparse sub-commands in help messages. (Merged from Message-ID: http://hg.python.org/cpython/rev/75ec20b4c50e changeset: 69005:75ec20b4c50e branch: 2.7 parent: 68999:e51366a05b84 user: Steven Bethard date: Sun Mar 27 13:57:55 2011 +0200 summary: Issue #9026: Fix order of argparse sub-commands in help messages. (Merged from 3.2.) files: Lib/argparse.py | 3 +- Lib/test/test_argparse.py | 83 ++++++++++++++++++++++++++- Misc/NEWS | 2 + 3 files changed, 84 insertions(+), 4 deletions(-) diff --git a/Lib/argparse.py b/Lib/argparse.py --- a/Lib/argparse.py +++ b/Lib/argparse.py @@ -82,6 +82,7 @@ ] +import collections as _collections import copy as _copy import os as _os import re as _re @@ -1037,7 +1038,7 @@ self._prog_prefix = prog self._parser_class = parser_class - self._name_parser_map = {} + self._name_parser_map = _collections.OrderedDict() self._choices_actions = [] super(_SubParsersAction, self).__init__( diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py --- a/Lib/test/test_argparse.py +++ b/Lib/test/test_argparse.py @@ -2802,16 +2802,22 @@ parser = argparse.ArgumentParser( *tester.parser_signature.args, **tester.parser_signature.kwargs) - for argument_sig in tester.argument_signatures: + for argument_sig in getattr(tester, 'argument_signatures', []): parser.add_argument(*argument_sig.args, **argument_sig.kwargs) - group_signatures = tester.argument_group_signatures - for group_sig, argument_sigs in group_signatures: + group_sigs = getattr(tester, 'argument_group_signatures', []) + for group_sig, argument_sigs in group_sigs: group = parser.add_argument_group(*group_sig.args, **group_sig.kwargs) for argument_sig in argument_sigs: group.add_argument(*argument_sig.args, **argument_sig.kwargs) + subparsers_sigs = getattr(tester, 'subparsers_signatures', []) + if subparsers_sigs: + subparsers = parser.add_subparsers() + for subparser_sig in subparsers_sigs: + subparsers.add_parser(*subparser_sig.args, + **subparser_sig.kwargs) return parser def _test(self, tester, parser_text): @@ -3905,6 +3911,77 @@ ''' version = '' +class TestHelpSubparsersOrdering(HelpTestCase): + """Test ordering of subcommands in help matches the code""" + parser_signature = Sig(prog='PROG', + description='display some subcommands', + version='0.1') + + subparsers_signatures = [Sig(name=name) + for name in ('a', 'b', 'c', 'd', 'e')] + + usage = '''\ + usage: PROG [-h] [-v] {a,b,c,d,e} ... + ''' + + help = usage + '''\ + + display some subcommands + + positional arguments: + {a,b,c,d,e} + + optional arguments: + -h, --help show this help message and exit + -v, --version show program's version number and exit + ''' + + version = '''\ + 0.1 + ''' + +class TestHelpSubparsersWithHelpOrdering(HelpTestCase): + """Test ordering of subcommands in help matches the code""" + parser_signature = Sig(prog='PROG', + description='display some subcommands', + version='0.1') + + subcommand_data = (('a', 'a subcommand help'), + ('b', 'b subcommand help'), + ('c', 'c subcommand help'), + ('d', 'd subcommand help'), + ('e', 'e subcommand help'), + ) + + subparsers_signatures = [Sig(name=name, help=help) + for name, help in subcommand_data] + + usage = '''\ + usage: PROG [-h] [-v] {a,b,c,d,e} ... + ''' + + help = usage + '''\ + + display some subcommands + + positional arguments: + {a,b,c,d,e} + a a subcommand help + b b subcommand help + c c subcommand help + d d subcommand help + e e subcommand help + + optional arguments: + -h, --help show this help message and exit + -v, --version show program's version number and exit + ''' + + version = '''\ + 0.1 + ''' + + # ===================================== # Optional/Positional constructor tests # ===================================== diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -244,6 +244,8 @@ - Issue #9343: Document that argparse parent parsers must be configured before their children. +- Issue #9026: Fix order of argparse sub-commands in help messages. + Extension Modules ----------------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 16:32:16 2011 From: python-checkins at python.org (mark.dickinson) Date: Sun, 27 Mar 2011 16:32:16 +0200 Subject: [Python-checkins] cpython (2.7): Move Misc/NEWS entry to correct section. Message-ID: http://hg.python.org/cpython/rev/1b07c155dbc2 changeset: 69006:1b07c155dbc2 branch: 2.7 user: Mark Dickinson date: Sun Mar 27 15:32:05 2011 +0100 summary: Move Misc/NEWS entry to correct section. files: Misc/NEWS | 67 +++++++++++++++++++++--------------------- 1 files changed, 34 insertions(+), 33 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -13,44 +13,44 @@ Previously, there were some corner cases where a long was returned even though the result was within the range of an int. +- Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when + there are many tags (e.g. when using mq). Patch by Nadeem Vawda. + +- Issue #10451: memoryview objects could allow to mutate a readable buffer. + Initial patch by Ross Lagerwall. + +- Issue #10892: Don't segfault when trying to delete __abstractmethods__ from a + class. + +- Issue #8020: Avoid a crash where the small objects allocator would read + non-Python managed memory while it is being modified by another thread. + Patch by Matt Bandy. + +- Issue #11004: Repaired edge case in deque.count(). + +- Issue #8278: On Windows and with a NTFS filesystem, os.stat() and os.utime() + can now handle dates after 2038. + +- Issue #4236: Py_InitModule4 now checks the import machinery directly + rather than the Py_IsInitialized flag, avoiding a Fatal Python + error in certain circumstances when an import is done in __del__. + +- Issue #10674: Remove unused 'dictmaker' rule from grammar. + +- Issue #10596: Fix float.__mod__ to have the same behaviour as + float.__divmod__ with respect to signed zeros. -4.0 % 4.0 should be + 0.0, not -0.0. + +- Issue #11386: bytearray.pop() now throws IndexError when the bytearray is + empty, instead of OverflowError. + +Library +------- + - Issue #11675: multiprocessing.[Raw]Array objects created from an integer size are now zeroed on creation. This matches the behaviour specified by the documentation. -- Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when - there are many tags (e.g. when using mq). Patch by Nadeem Vawda. - -- Issue #10451: memoryview objects could allow to mutate a readable buffer. - Initial patch by Ross Lagerwall. - -- Issue #10892: Don't segfault when trying to delete __abstractmethods__ from a - class. - -- Issue #8020: Avoid a crash where the small objects allocator would read - non-Python managed memory while it is being modified by another thread. - Patch by Matt Bandy. - -- Issue #11004: Repaired edge case in deque.count(). - -- Issue #8278: On Windows and with a NTFS filesystem, os.stat() and os.utime() - can now handle dates after 2038. - -- Issue #4236: Py_InitModule4 now checks the import machinery directly - rather than the Py_IsInitialized flag, avoiding a Fatal Python - error in certain circumstances when an import is done in __del__. - -- Issue #10674: Remove unused 'dictmaker' rule from grammar. - -- Issue #10596: Fix float.__mod__ to have the same behaviour as - float.__divmod__ with respect to signed zeros. -4.0 % 4.0 should be - 0.0, not -0.0. - -- Issue #11386: bytearray.pop() now throws IndexError when the bytearray is - empty, instead of OverflowError. - -Library -------- - - Issue #7639: Fix short file name generation in bdist_msi. - Issue #11666: let help() display named tuple attributes and methods -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 16:52:22 2011 From: python-checkins at python.org (mark.dickinson) Date: Sun, 27 Mar 2011 16:52:22 +0200 Subject: [Python-checkins] cpython (3.1): Fix misplaced Misc/NEWS entry. Message-ID: http://hg.python.org/cpython/rev/15945b28f761 changeset: 69007:15945b28f761 branch: 3.1 parent: 69000:fd8336947f90 user: Mark Dickinson date: Sun Mar 27 15:46:32 2011 +0100 summary: Fix misplaced Misc/NEWS entry. files: Misc/NEWS | 67 +++++++++++++++++++++--------------------- 1 files changed, 34 insertions(+), 33 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,44 +10,44 @@ Core and Builtins ----------------- +- Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file + doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int + (length bigger than 2^31-1 bytes). + +- Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when + there are many tags (e.g. when using mq). Patch by Nadeem Vawda. + +- Issue #10451: memoryview objects could allow to mutate a readable buffer. + Initial patch by Ross Lagerwall. + +- Issue #10892: Don't segfault when trying to delete __abstractmethods__ from a + class. + +- Issue #8020: Avoid a crash where the small objects allocator would read + non-Python managed memory while it is being modified by another thread. + Patch by Matt Bandy. + +- Issue #8278: On Windows and with a NTFS filesystem, os.stat() and os.utime() + can now handle dates after 2038. + +- Issue #4236: PyModule_Create2 now checks the import machinery directly + rather than the Py_IsInitialized flag, avoiding a Fatal Python + error in certain circumstances when an import is done in __del__. + +- Issue #10596: Fix float.__mod__ to have the same behaviour as + float.__divmod__ with respect to signed zeros. -4.0 % 4.0 should be + 0.0, not -0.0. + +- Issue #5587: add a repr to dict_proxy objects. Patch by David Stanek and + Daniel Urban. + +Library +------- + - Issue #11675: multiprocessing.[Raw]Array objects created from an integer size are now zeroed on creation. This matches the behaviour specified by the documentation. -- Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file - doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int - (length bigger than 2^31-1 bytes). - -- Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when - there are many tags (e.g. when using mq). Patch by Nadeem Vawda. - -- Issue #10451: memoryview objects could allow to mutate a readable buffer. - Initial patch by Ross Lagerwall. - -- Issue #10892: Don't segfault when trying to delete __abstractmethods__ from a - class. - -- Issue #8020: Avoid a crash where the small objects allocator would read - non-Python managed memory while it is being modified by another thread. - Patch by Matt Bandy. - -- Issue #8278: On Windows and with a NTFS filesystem, os.stat() and os.utime() - can now handle dates after 2038. - -- Issue #4236: PyModule_Create2 now checks the import machinery directly - rather than the Py_IsInitialized flag, avoiding a Fatal Python - error in certain circumstances when an import is done in __del__. - -- Issue #10596: Fix float.__mod__ to have the same behaviour as - float.__divmod__ with respect to signed zeros. -4.0 % 4.0 should be - 0.0, not -0.0. - -- Issue #5587: add a repr to dict_proxy objects. Patch by David Stanek and - Daniel Urban. - -Library -------- - - Issue #7639: Fix short file name generation in bdist_msi. - Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 16:52:22 2011 From: python-checkins at python.org (mark.dickinson) Date: Sun, 27 Mar 2011 16:52:22 +0200 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Move misplaced Misc/NEWS item (merge from 3.1) Message-ID: http://hg.python.org/cpython/rev/0b9c7bfcb1ea changeset: 69008:0b9c7bfcb1ea branch: 3.2 parent: 69003:74f9ed48ae5d parent: 69007:15945b28f761 user: Mark Dickinson date: Sun Mar 27 15:50:04 2011 +0100 summary: Move misplaced Misc/NEWS item (merge from 3.1) files: Misc/NEWS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,10 +10,6 @@ Core and Builtins ----------------- -- Issue #11675: multiprocessing.[Raw]Array objects created from an integer size - are now zeroed on creation. This matches the behaviour specified by the - documentation. - - Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on Windows if the file is a TTY to workaround a Windows bug. The Windows console returns an error (12: not enough space error) on writing into stdout if @@ -53,6 +49,10 @@ Library ------- +- Issue #11675: multiprocessing.[Raw]Array objects created from an integer size + are now zeroed on creation. This matches the behaviour specified by the + documentation. + - Issue #7639: Fix short file name generation in bdist_msi - Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 16:52:23 2011 From: python-checkins at python.org (mark.dickinson) Date: Sun, 27 Mar 2011 16:52:23 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): Fix misplaced Misc/NEWS entry (merge from 3.2) Message-ID: http://hg.python.org/cpython/rev/0547b887a361 changeset: 69009:0547b887a361 parent: 69004:de29472c6a84 parent: 69008:0b9c7bfcb1ea user: Mark Dickinson date: Sun Mar 27 15:52:03 2011 +0100 summary: Fix misplaced Misc/NEWS entry (merge from 3.2) files: Misc/NEWS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,10 +10,6 @@ Core and Builtins ----------------- -- Issue #11675: multiprocessing.[Raw]Array objects created from an integer size - are now zeroed on creation. This matches the behaviour specified by the - documentation. - - Issue #10998: Remove mentions of -Q, sys.flags.division_warning and Py_DivisionWarningFlag left over from Python 2. @@ -91,6 +87,10 @@ Library ------- +- Issue #11675: multiprocessing.[Raw]Array objects created from an integer size + are now zeroed on creation. This matches the behaviour specified by the + documentation. + - Issue #7639: Fix short file name generation in bdist_msi - Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 17:15:28 2011 From: python-checkins at python.org (mark.dickinson) Date: Sun, 27 Mar 2011 17:15:28 +0200 Subject: [Python-checkins] cpython (2.7): Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when Message-ID: http://hg.python.org/cpython/rev/d3f9a6d7f6e4 changeset: 69010:d3f9a6d7f6e4 branch: 2.7 parent: 69006:1b07c155dbc2 user: Mark Dickinson date: Sun Mar 27 16:15:24 2011 +0100 summary: Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when trying to pack a negative (in-range) integer. files: Lib/test/test_xdrlib.py | 2 ++ Lib/xdrlib.py | 4 +++- Misc/ACKS | 1 + Misc/NEWS | 3 +++ 4 files changed, 9 insertions(+), 1 deletions(-) diff --git a/Lib/test/test_xdrlib.py b/Lib/test/test_xdrlib.py --- a/Lib/test/test_xdrlib.py +++ b/Lib/test/test_xdrlib.py @@ -12,6 +12,7 @@ a = ['what', 'is', 'hapnin', 'doctor'] p.pack_int(42) + p.pack_int(-17) p.pack_uint(9) p.pack_bool(True) p.pack_bool(False) @@ -29,6 +30,7 @@ self.assertEqual(up.get_position(), 0) self.assertEqual(up.unpack_int(), 42) + self.assertEqual(up.unpack_int(), -17) self.assertEqual(up.unpack_uint(), 9) self.assertTrue(up.unpack_bool() is True) diff --git a/Lib/xdrlib.py b/Lib/xdrlib.py --- a/Lib/xdrlib.py +++ b/Lib/xdrlib.py @@ -53,7 +53,9 @@ def pack_uint(self, x): self.__buf.write(struct.pack('>L', x)) - pack_int = pack_uint + def pack_int(self, x): + self.__buf.write(struct.pack('>l', x)) + pack_enum = pack_int def pack_bool(self, x): diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -306,6 +306,7 @@ Duncan Grisby Fabian Groffen Dag Gruneau +Filip Gruszczy?ski Michael Guravage Lars Gust?bel Thomas G?ttler diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -47,6 +47,9 @@ Library ------- +- Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when + trying to pack a negative (in-range) integer. + - Issue #11675: multiprocessing.[Raw]Array objects created from an integer size are now zeroed on creation. This matches the behaviour specified by the documentation. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 17:35:08 2011 From: python-checkins at python.org (ross.lagerwall) Date: Sun, 27 Mar 2011 17:35:08 +0200 Subject: [Python-checkins] cpython: Issue #11692: Remove unnecessary demo functions in subprocess module. Message-ID: http://hg.python.org/cpython/rev/cae30f34bd16 changeset: 69011:cae30f34bd16 parent: 69009:0547b887a361 user: Ross Lagerwall date: Sun Mar 27 17:34:22 2011 +0200 summary: Issue #11692: Remove unnecessary demo functions in subprocess module. files: Lib/subprocess.py | 65 ----------------------------------- Misc/NEWS | 2 + 2 files changed, 2 insertions(+), 65 deletions(-) diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -1723,68 +1723,3 @@ """Kill the process with SIGKILL """ self.send_signal(signal.SIGKILL) - - -def _demo_posix(): - # - # Example 1: Simple redirection: Get process list - # - plist = Popen(["ps"], stdout=PIPE).communicate()[0] - print("Process list:") - print(plist) - - # - # Example 2: Change uid before executing child - # - if os.getuid() == 0: - p = Popen(["id"], preexec_fn=lambda: os.setuid(100)) - p.wait() - - # - # Example 3: Connecting several subprocesses - # - print("Looking for 'hda'...") - p1 = Popen(["dmesg"], stdout=PIPE) - p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE) - print(repr(p2.communicate()[0])) - - # - # Example 4: Catch execution error - # - print() - print("Trying a weird file...") - try: - print(Popen(["/this/path/does/not/exist"]).communicate()) - except OSError as e: - if e.errno == errno.ENOENT: - print("The file didn't exist. I thought so...") - print("Child traceback:") - print(e.child_traceback) - else: - print("Error", e.errno) - else: - print("Gosh. No error.", file=sys.stderr) - - -def _demo_windows(): - # - # Example 1: Connecting several subprocesses - # - print("Looking for 'PROMPT' in set output...") - p1 = Popen("set", stdout=PIPE, shell=True) - p2 = Popen('find "PROMPT"', stdin=p1.stdout, stdout=PIPE) - print(repr(p2.communicate()[0])) - - # - # Example 2: Simple execution of program - # - print("Executing calc...") - p = Popen("calc") - p.wait() - - -if __name__ == "__main__": - if mswindows: - _demo_windows() - else: - _demo_posix() diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -87,6 +87,8 @@ Library ------- +- Issue #11692: Remove unnecessary demo functions in subprocess module. + - Issue #11675: multiprocessing.[Raw]Array objects created from an integer size are now zeroed on creation. This matches the behaviour specified by the documentation. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 17:39:59 2011 From: python-checkins at python.org (mark.dickinson) Date: Sun, 27 Mar 2011 17:39:59 +0200 Subject: [Python-checkins] cpython (3.1): Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when Message-ID: http://hg.python.org/cpython/rev/bd5e821f201c changeset: 69012:bd5e821f201c branch: 3.1 parent: 69007:15945b28f761 user: Mark Dickinson date: Sun Mar 27 16:25:40 2011 +0100 summary: Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when trying to pack a negative (in-range) integer. files: Lib/test/test_xdrlib.py | 2 ++ Lib/xdrlib.py | 4 +++- Misc/ACKS | 1 + Misc/NEWS | 3 +++ 4 files changed, 9 insertions(+), 1 deletions(-) diff --git a/Lib/test/test_xdrlib.py b/Lib/test/test_xdrlib.py --- a/Lib/test/test_xdrlib.py +++ b/Lib/test/test_xdrlib.py @@ -12,6 +12,7 @@ a = [b'what', b'is', b'hapnin', b'doctor'] p.pack_int(42) + p.pack_int(-17) p.pack_uint(9) p.pack_bool(True) p.pack_bool(False) @@ -29,6 +30,7 @@ self.assertEqual(up.get_position(), 0) self.assertEqual(up.unpack_int(), 42) + self.assertEqual(up.unpack_int(), -17) self.assertEqual(up.unpack_uint(), 9) self.assertTrue(up.unpack_bool() is True) diff --git a/Lib/xdrlib.py b/Lib/xdrlib.py --- a/Lib/xdrlib.py +++ b/Lib/xdrlib.py @@ -50,7 +50,9 @@ def pack_uint(self, x): self.__buf.write(struct.pack('>L', x)) - pack_int = pack_uint + def pack_int(self, x): + self.__buf.write(struct.pack('>l', x)) + pack_enum = pack_int def pack_bool(self, x): diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -303,6 +303,7 @@ Duncan Grisby Fabian Groffen Dag Gruneau +Filip Gruszczy?ski Michael Guravage Lars Gust?bel Thomas G?ttler diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -44,6 +44,9 @@ Library ------- +- Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when + trying to pack a negative (in-range) integer. + - Issue #11675: multiprocessing.[Raw]Array objects created from an integer size are now zeroed on creation. This matches the behaviour specified by the documentation. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 17:40:00 2011 From: python-checkins at python.org (mark.dickinson) Date: Sun, 27 Mar 2011 17:40:00 +0200 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge #9696 Message-ID: http://hg.python.org/cpython/rev/391b2ddbc1b7 changeset: 69013:391b2ddbc1b7 branch: 3.2 parent: 69008:0b9c7bfcb1ea parent: 69012:bd5e821f201c user: Mark Dickinson date: Sun Mar 27 16:30:07 2011 +0100 summary: Merge #9696 files: Lib/test/test_xdrlib.py | 2 ++ Lib/xdrlib.py | 4 +++- Misc/ACKS | 1 + Misc/NEWS | 3 +++ 4 files changed, 9 insertions(+), 1 deletions(-) diff --git a/Lib/test/test_xdrlib.py b/Lib/test/test_xdrlib.py --- a/Lib/test/test_xdrlib.py +++ b/Lib/test/test_xdrlib.py @@ -12,6 +12,7 @@ a = [b'what', b'is', b'hapnin', b'doctor'] p.pack_int(42) + p.pack_int(-17) p.pack_uint(9) p.pack_bool(True) p.pack_bool(False) @@ -29,6 +30,7 @@ self.assertEqual(up.get_position(), 0) self.assertEqual(up.unpack_int(), 42) + self.assertEqual(up.unpack_int(), -17) self.assertEqual(up.unpack_uint(), 9) self.assertTrue(up.unpack_bool() is True) diff --git a/Lib/xdrlib.py b/Lib/xdrlib.py --- a/Lib/xdrlib.py +++ b/Lib/xdrlib.py @@ -50,7 +50,9 @@ def pack_uint(self, x): self.__buf.write(struct.pack('>L', x)) - pack_int = pack_uint + def pack_int(self, x): + self.__buf.write(struct.pack('>l', x)) + pack_enum = pack_int def pack_bool(self, x): diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -331,6 +331,7 @@ Fabian Groffen Eric Groo Dag Gruneau +Filip Gruszczy?ski Michael Guravage Lars Gust?bel Thomas G?ttler diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -49,6 +49,9 @@ Library ------- +- Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when + trying to pack a negative (in-range) integer. + - Issue #11675: multiprocessing.[Raw]Array objects created from an integer size are now zeroed on creation. This matches the behaviour specified by the documentation. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 17:40:00 2011 From: python-checkins at python.org (mark.dickinson) Date: Sun, 27 Mar 2011 17:40:00 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge #9696 Message-ID: http://hg.python.org/cpython/rev/d9b64a86d5a7 changeset: 69014:d9b64a86d5a7 parent: 69009:0547b887a361 parent: 69013:391b2ddbc1b7 user: Mark Dickinson date: Sun Mar 27 16:30:50 2011 +0100 summary: Merge #9696 files: Lib/test/test_xdrlib.py | 2 ++ Lib/xdrlib.py | 4 +++- Misc/NEWS | 3 +++ 3 files changed, 8 insertions(+), 1 deletions(-) diff --git a/Lib/test/test_xdrlib.py b/Lib/test/test_xdrlib.py --- a/Lib/test/test_xdrlib.py +++ b/Lib/test/test_xdrlib.py @@ -12,6 +12,7 @@ a = [b'what', b'is', b'hapnin', b'doctor'] p.pack_int(42) + p.pack_int(-17) p.pack_uint(9) p.pack_bool(True) p.pack_bool(False) @@ -29,6 +30,7 @@ self.assertEqual(up.get_position(), 0) self.assertEqual(up.unpack_int(), 42) + self.assertEqual(up.unpack_int(), -17) self.assertEqual(up.unpack_uint(), 9) self.assertTrue(up.unpack_bool() is True) diff --git a/Lib/xdrlib.py b/Lib/xdrlib.py --- a/Lib/xdrlib.py +++ b/Lib/xdrlib.py @@ -50,7 +50,9 @@ def pack_uint(self, x): self.__buf.write(struct.pack('>L', x)) - pack_int = pack_uint + def pack_int(self, x): + self.__buf.write(struct.pack('>l', x)) + pack_enum = pack_int def pack_bool(self, x): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -87,6 +87,9 @@ Library ------- +- Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when + trying to pack a negative (in-range) integer. + - Issue #11675: multiprocessing.[Raw]Array objects created from an integer size are now zeroed on creation. This matches the behaviour specified by the documentation. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 17:40:06 2011 From: python-checkins at python.org (mark.dickinson) Date: Sun, 27 Mar 2011 17:40:06 +0200 Subject: [Python-checkins] cpython (merge default -> default): merge Message-ID: http://hg.python.org/cpython/rev/34adc0b917d0 changeset: 69015:34adc0b917d0 parent: 69011:cae30f34bd16 parent: 69014:d9b64a86d5a7 user: Mark Dickinson date: Sun Mar 27 16:39:53 2011 +0100 summary: merge files: Lib/test/test_xdrlib.py | 2 ++ Lib/xdrlib.py | 4 +++- Misc/NEWS | 3 +++ 3 files changed, 8 insertions(+), 1 deletions(-) diff --git a/Lib/test/test_xdrlib.py b/Lib/test/test_xdrlib.py --- a/Lib/test/test_xdrlib.py +++ b/Lib/test/test_xdrlib.py @@ -12,6 +12,7 @@ a = [b'what', b'is', b'hapnin', b'doctor'] p.pack_int(42) + p.pack_int(-17) p.pack_uint(9) p.pack_bool(True) p.pack_bool(False) @@ -29,6 +30,7 @@ self.assertEqual(up.get_position(), 0) self.assertEqual(up.unpack_int(), 42) + self.assertEqual(up.unpack_int(), -17) self.assertEqual(up.unpack_uint(), 9) self.assertTrue(up.unpack_bool() is True) diff --git a/Lib/xdrlib.py b/Lib/xdrlib.py --- a/Lib/xdrlib.py +++ b/Lib/xdrlib.py @@ -50,7 +50,9 @@ def pack_uint(self, x): self.__buf.write(struct.pack('>L', x)) - pack_int = pack_uint + def pack_int(self, x): + self.__buf.write(struct.pack('>l', x)) + pack_enum = pack_int def pack_bool(self, x): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -89,6 +89,9 @@ - Issue #11692: Remove unnecessary demo functions in subprocess module. +- Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when + trying to pack a negative (in-range) integer. + - Issue #11675: multiprocessing.[Raw]Array objects created from an integer size are now zeroed on creation. This matches the behaviour specified by the documentation. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 21:09:50 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 27 Mar 2011 21:09:50 +0200 Subject: [Python-checkins] cpython (2.7): Closes #11696: Fix ID generation in msilib. Message-ID: http://hg.python.org/cpython/rev/ec84bd4c5ac4 changeset: 69016:ec84bd4c5ac4 branch: 2.7 parent: 69010:d3f9a6d7f6e4 user: Martin v. L?wis date: Sun Mar 27 20:58:52 2011 +0200 summary: Closes #11696: Fix ID generation in msilib. Patch by Mark Mc Mahon. files: Lib/msilib/__init__.py | 5 ++--- Misc/ACKS | 1 + Misc/NEWS | 2 ++ 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Lib/msilib/__init__.py b/Lib/msilib/__init__.py --- a/Lib/msilib/__init__.py +++ b/Lib/msilib/__init__.py @@ -173,9 +173,8 @@ add_data(db, table, getattr(module, table)) def make_id(str): - #str = str.replace(".", "_") # colons are allowed - for c in " -+~;": - str = str.replace(c, "_") + identifier_chars = string.ascii_letters + string.digits + "._" + str = "".join([c if c in identifier_chars else "_" for c in str]) if str[0] in (string.digits + "."): str = "_" + str assert re.match("^[A-Za-z_][A-Za-z0-9_.]*$", str), "FILE"+str diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -529,6 +529,7 @@ Greg McFarlane Alan McIntyre Michael McLay +Mark Mc Mahon Gordon McMillan Caolan McNamara Andrew McNamara diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -47,6 +47,8 @@ Library ------- +- Issue #11696: Fix ID generation in msilib. + - Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when trying to pack a negative (in-range) integer. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 21:09:51 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 27 Mar 2011 21:09:51 +0200 Subject: [Python-checkins] cpython (2.7): Add missing file from #11696. Message-ID: http://hg.python.org/cpython/rev/df66ce66834b changeset: 69017:df66ce66834b branch: 2.7 user: Martin v. L?wis date: Sun Mar 27 21:01:03 2011 +0200 summary: Add missing file from #11696. files: Lib/test/test_msilib.py | 46 +++++++++++++++++++++++++++++ 1 files changed, 46 insertions(+), 0 deletions(-) diff --git a/Lib/test/test_msilib.py b/Lib/test/test_msilib.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_msilib.py @@ -0,0 +1,46 @@ +""" Test suite for the code in msilib """ +import unittest +import os +from test_support import run_unittest, import_module +msilib = import_module('msilib') + +class Test_make_id(unittest.TestCase): + #http://msdn.microsoft.com/en-us/library/aa369212(v=vs.85).aspx + """The Identifier data type is a text string. Identifiers may contain the + ASCII characters A-Z (a-z), digits, underscores (_), or periods (.). + However, every identifier must begin with either a letter or an + underscore. + """ + + def test_is_no_change_required(self): + self.assertEqual( + msilib.make_id("short"), "short") + self.assertEqual( + msilib.make_id("nochangerequired"), "nochangerequired") + self.assertEqual( + msilib.make_id("one.dot"), "one.dot") + self.assertEqual( + msilib.make_id("_"), "_") + self.assertEqual( + msilib.make_id("a"), "a") + #self.assertEqual( + # msilib.make_id(""), "") + + def test_invalid_first_char(self): + self.assertEqual( + msilib.make_id("9.short"), "_9.short") + self.assertEqual( + msilib.make_id(".short"), "_.short") + + def test_invalid_any_char(self): + self.assertEqual( + msilib.make_id(".s\x82ort"), "_.s_ort") + self.assertEqual ( + msilib.make_id(".s\x82o?*+rt"), "_.s_o___rt") + + +def test_main(): + run_unittest(__name__) + +if __name__ == '__main__': + test_main() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 21:09:58 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 27 Mar 2011 21:09:58 +0200 Subject: [Python-checkins] cpython (3.1): Closes #11696: Fix ID generation in msilib. Message-ID: http://hg.python.org/cpython/rev/f3d96d28a86e changeset: 69018:f3d96d28a86e branch: 3.1 parent: 69012:bd5e821f201c user: Martin v. L?wis date: Sun Mar 27 21:05:51 2011 +0200 summary: Closes #11696: Fix ID generation in msilib. Patch by Mark Mc Mahon. files: Lib/msilib/__init__.py | 5 +- Lib/test/test_msilib.py | 46 +++++++++++++++++++++++++++++ Misc/ACKS | 1 + Misc/NEWS | 2 + 4 files changed, 51 insertions(+), 3 deletions(-) diff --git a/Lib/msilib/__init__.py b/Lib/msilib/__init__.py --- a/Lib/msilib/__init__.py +++ b/Lib/msilib/__init__.py @@ -173,9 +173,8 @@ add_data(db, table, getattr(module, table)) def make_id(str): - #str = str.replace(".", "_") # colons are allowed - for c in " -+~;": - str = str.replace(c, "_") + identifier_chars = string.ascii_letters + string.digits + "._" + str = "".join([c if c in identifier_chars else "_" for c in str]) if str[0] in (string.digits + "."): str = "_" + str assert re.match("^[A-Za-z_][A-Za-z0-9_.]*$", str), "FILE"+str diff --git a/Lib/test/test_msilib.py b/Lib/test/test_msilib.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_msilib.py @@ -0,0 +1,46 @@ +""" Test suite for the code in msilib """ +import unittest +import os +from test.support import run_unittest, import_module +msilib = import_module('msilib') + +class Test_make_id(unittest.TestCase): + #http://msdn.microsoft.com/en-us/library/aa369212(v=vs.85).aspx + """The Identifier data type is a text string. Identifiers may contain the + ASCII characters A-Z (a-z), digits, underscores (_), or periods (.). + However, every identifier must begin with either a letter or an + underscore. + """ + + def test_is_no_change_required(self): + self.assertEqual( + msilib.make_id("short"), "short") + self.assertEqual( + msilib.make_id("nochangerequired"), "nochangerequired") + self.assertEqual( + msilib.make_id("one.dot"), "one.dot") + self.assertEqual( + msilib.make_id("_"), "_") + self.assertEqual( + msilib.make_id("a"), "a") + #self.assertEqual( + # msilib.make_id(""), "") + + def test_invalid_first_char(self): + self.assertEqual( + msilib.make_id("9.short"), "_9.short") + self.assertEqual( + msilib.make_id(".short"), "_.short") + + def test_invalid_any_char(self): + self.assertEqual( + msilib.make_id(".s\x82ort"), "_.s_ort") + self.assertEqual ( + msilib.make_id(".s\x82o?*+rt"), "_.s_o___rt") + + +def test_main(): + run_unittest(__name__) + +if __name__ == '__main__': + test_main() diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -531,6 +531,7 @@ Greg McFarlane Alan McIntyre Michael McLay +Mark Mc Mahon Gordon McMillan Caolan McNamara Andrew McNamara diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -44,6 +44,8 @@ Library ------- +- Issue #11696: Fix ID generation in msilib. + - Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when trying to pack a negative (in-range) integer. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 21:09:59 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 27 Mar 2011 21:09:59 +0200 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): merge #11696 Message-ID: http://hg.python.org/cpython/rev/4dff2e436191 changeset: 69019:4dff2e436191 branch: 3.2 parent: 69013:391b2ddbc1b7 parent: 69018:f3d96d28a86e user: Martin v. L?wis date: Sun Mar 27 21:07:13 2011 +0200 summary: merge #11696 files: Lib/msilib/__init__.py | 5 +- Lib/test/test_msilib.py | 46 +++++++++++++++++++++++++++++ Misc/ACKS | 1 + Misc/NEWS | 2 + 4 files changed, 51 insertions(+), 3 deletions(-) diff --git a/Lib/msilib/__init__.py b/Lib/msilib/__init__.py --- a/Lib/msilib/__init__.py +++ b/Lib/msilib/__init__.py @@ -172,9 +172,8 @@ add_data(db, table, getattr(module, table)) def make_id(str): - #str = str.replace(".", "_") # colons are allowed - for c in " -+~;": - str = str.replace(c, "_") + identifier_chars = string.ascii_letters + string.digits + "._" + str = "".join([c if c in identifier_chars else "_" for c in str]) if str[0] in (string.digits + "."): str = "_" + str assert re.match("^[A-Za-z_][A-Za-z0-9_.]*$", str), "FILE"+str diff --git a/Lib/test/test_msilib.py b/Lib/test/test_msilib.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_msilib.py @@ -0,0 +1,46 @@ +""" Test suite for the code in msilib """ +import unittest +import os +from test.support import run_unittest, import_module +msilib = import_module('msilib') + +class Test_make_id(unittest.TestCase): + #http://msdn.microsoft.com/en-us/library/aa369212(v=vs.85).aspx + """The Identifier data type is a text string. Identifiers may contain the + ASCII characters A-Z (a-z), digits, underscores (_), or periods (.). + However, every identifier must begin with either a letter or an + underscore. + """ + + def test_is_no_change_required(self): + self.assertEqual( + msilib.make_id("short"), "short") + self.assertEqual( + msilib.make_id("nochangerequired"), "nochangerequired") + self.assertEqual( + msilib.make_id("one.dot"), "one.dot") + self.assertEqual( + msilib.make_id("_"), "_") + self.assertEqual( + msilib.make_id("a"), "a") + #self.assertEqual( + # msilib.make_id(""), "") + + def test_invalid_first_char(self): + self.assertEqual( + msilib.make_id("9.short"), "_9.short") + self.assertEqual( + msilib.make_id(".short"), "_.short") + + def test_invalid_any_char(self): + self.assertEqual( + msilib.make_id(".s\x82ort"), "_.s_ort") + self.assertEqual ( + msilib.make_id(".s\x82o?*+rt"), "_.s_o___rt") + + +def test_main(): + run_unittest(__name__) + +if __name__ == '__main__': + test_main() diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -570,6 +570,7 @@ Greg McFarlane Alan McIntyre Michael McLay +Mark Mc Mahon Gordon McMillan Caolan McNamara Andrew McNamara diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -49,6 +49,8 @@ Library ------- +- Issue #11696: Fix ID generation in msilib. + - Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when trying to pack a negative (in-range) integer. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Sun Mar 27 21:10:00 2011 From: python-checkins at python.org (martin.v.loewis) Date: Sun, 27 Mar 2011 21:10:00 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge #11696 Message-ID: http://hg.python.org/cpython/rev/c12e1ea49532 changeset: 69020:c12e1ea49532 parent: 69015:34adc0b917d0 parent: 69019:4dff2e436191 user: Martin v. L?wis date: Sun Mar 27 21:09:00 2011 +0200 summary: merge #11696 files: Lib/msilib/__init__.py | 5 +- Lib/test/test_msilib.py | 46 +++++++++++++++++++++++++++++ Misc/ACKS | 1 + Misc/NEWS | 2 + 4 files changed, 51 insertions(+), 3 deletions(-) diff --git a/Lib/msilib/__init__.py b/Lib/msilib/__init__.py --- a/Lib/msilib/__init__.py +++ b/Lib/msilib/__init__.py @@ -172,9 +172,8 @@ add_data(db, table, getattr(module, table)) def make_id(str): - #str = str.replace(".", "_") # colons are allowed - for c in " -+~;": - str = str.replace(c, "_") + identifier_chars = string.ascii_letters + string.digits + "._" + str = "".join([c if c in identifier_chars else "_" for c in str]) if str[0] in (string.digits + "."): str = "_" + str assert re.match("^[A-Za-z_][A-Za-z0-9_.]*$", str), "FILE"+str diff --git a/Lib/test/test_msilib.py b/Lib/test/test_msilib.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_msilib.py @@ -0,0 +1,46 @@ +""" Test suite for the code in msilib """ +import unittest +import os +from test.support import run_unittest, import_module +msilib = import_module('msilib') + +class Test_make_id(unittest.TestCase): + #http://msdn.microsoft.com/en-us/library/aa369212(v=vs.85).aspx + """The Identifier data type is a text string. Identifiers may contain the + ASCII characters A-Z (a-z), digits, underscores (_), or periods (.). + However, every identifier must begin with either a letter or an + underscore. + """ + + def test_is_no_change_required(self): + self.assertEqual( + msilib.make_id("short"), "short") + self.assertEqual( + msilib.make_id("nochangerequired"), "nochangerequired") + self.assertEqual( + msilib.make_id("one.dot"), "one.dot") + self.assertEqual( + msilib.make_id("_"), "_") + self.assertEqual( + msilib.make_id("a"), "a") + #self.assertEqual( + # msilib.make_id(""), "") + + def test_invalid_first_char(self): + self.assertEqual( + msilib.make_id("9.short"), "_9.short") + self.assertEqual( + msilib.make_id(".short"), "_.short") + + def test_invalid_any_char(self): + self.assertEqual( + msilib.make_id(".s\x82ort"), "_.s_ort") + self.assertEqual ( + msilib.make_id(".s\x82o?*+rt"), "_.s_o___rt") + + +def test_main(): + run_unittest(__name__) + +if __name__ == '__main__': + test_main() diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -574,6 +574,7 @@ Greg McFarlane Alan McIntyre Michael McLay +Mark Mc Mahon Gordon McMillan Caolan McNamara Andrew McNamara diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -87,6 +87,8 @@ Library ------- +- Issue #11696: Fix ID generation in msilib. + - Issue #11692: Remove unnecessary demo functions in subprocess module. - Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 28 03:52:18 2011 From: python-checkins at python.org (raymond.hettinger) Date: Mon, 28 Mar 2011 03:52:18 +0200 Subject: [Python-checkins] cpython: Add optional *func* argument to itertools.accumulate(). Message-ID: http://hg.python.org/cpython/rev/79ccefd30a37 changeset: 69021:79ccefd30a37 user: Raymond Hettinger date: Sun Mar 27 18:52:10 2011 -0700 summary: Add optional *func* argument to itertools.accumulate(). files: Doc/library/itertools.rst | 33 ++++++++++++++++++++++--- Lib/test/test_itertools.py | 12 ++++++++- Misc/NEWS | 3 ++ Modules/itertoolsmodule.c | 18 +++++++++++--- 4 files changed, 56 insertions(+), 10 deletions(-) diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -46,7 +46,7 @@ ==================== ============================ ================================================= ============================================================= Iterator Arguments Results Example ==================== ============================ ================================================= ============================================================= -:func:`accumulate` p p0, p0+p1, p0+p1+p2, ... ``accumulate([1,2,3,4,5]) --> 1 3 6 10 15`` +:func:`accumulate` p [,func] p0, p0+p1, p0+p1+p2, ... ``accumulate([1,2,3,4,5]) --> 1 3 6 10 15`` :func:`chain` p, q, ... p0, p1, ... plast, q0, q1, ... ``chain('ABC', 'DEF') --> A B C D E F`` :func:`compress` data, selectors (d[0] if s[0]), (d[1] if s[1]), ... ``compress('ABCDEF', [1,0,1,0,1,1]) --> A C E F`` :func:`dropwhile` pred, seq seq[n], seq[n+1], starting when pred fails ``dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1`` @@ -84,23 +84,46 @@ streams of infinite length, so they should only be accessed by functions or loops that truncate the stream. -.. function:: accumulate(iterable) +.. function:: accumulate(iterable[, func]) Make an iterator that returns accumulated sums. Elements may be any addable - type including :class:`Decimal` or :class:`Fraction`. Equivalent to:: + type including :class:`Decimal` or :class:`Fraction`. If the optional + *func* argument is supplied, it should be a function of two arguments + and it will be used instead of addition. - def accumulate(iterable): + Equivalent to:: + + def accumulate(iterable, func=operator.add): 'Return running totals' # accumulate([1,2,3,4,5]) --> 1 3 6 10 15 + # accumulate([1,2,3,4,5], operator.mul) --> 1 2 6 24 120 it = iter(iterable) total = next(it) yield total for element in it: - total = total + element + total = func(total, element) yield total + Uses for the *func* argument include :func:`min` for a running minimum, + :func:`max` for a running maximum, and :func:`operator.mul` for a running + product:: + + >>> data = [3, 4, 6, 2, 1, 9, 0, 7, 5, 8] + >>> list(accumulate(data, operator.mul)) # running product + [3, 12, 72, 144, 144, 1296, 0, 0, 0, 0] + >>> list(accumulate(data, max)) # running maximum + [3, 4, 6, 6, 6, 9, 9, 9, 9, 9] + + # Amortize a 5% loan of 1000 with 4 annual payments of 90 + >>> cashflows = [1000, -90, -90, -90, -90] + >>> list(accumulate(cashflows, lambda bal, pmt: bal*1.05 + pmt)) + [1000, 960.0, 918.0, 873.9000000000001, 827.5950000000001] + .. versionadded:: 3.2 + .. versionchanged:: 3.3 + Added the optional *func* parameter. + .. function:: chain(*iterables) Make an iterator that returns elements from the first iterable until it is diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -69,11 +69,21 @@ self.assertEqual(list(accumulate('abc')), ['a', 'ab', 'abc']) # works with non-numeric self.assertEqual(list(accumulate([])), []) # empty iterable self.assertEqual(list(accumulate([7])), [7]) # iterable of length one - self.assertRaises(TypeError, accumulate, range(10), 5) # too many args + self.assertRaises(TypeError, accumulate, range(10), 5, 6) # too many args self.assertRaises(TypeError, accumulate) # too few args self.assertRaises(TypeError, accumulate, x=range(10)) # unexpected kwd arg self.assertRaises(TypeError, list, accumulate([1, []])) # args that don't add + s = [2, 8, 9, 5, 7, 0, 3, 4, 1, 6] + self.assertEqual(list(accumulate(s, min)), + [2, 2, 2, 2, 2, 0, 0, 0, 0, 0]) + self.assertEqual(list(accumulate(s, max)), + [2, 8, 9, 9, 9, 9, 9, 9, 9, 9]) + self.assertEqual(list(accumulate(s, operator.mul)), + [2, 16, 144, 720, 5040, 0, 0, 0, 0, 0]) + with self.assertRaises(TypeError): + list(accumulate(s, chr)) # unary-operation + def test_chain(self): def chain2(*iterables): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -89,6 +89,9 @@ - Issue #11696: Fix ID generation in msilib. +- itertools.accumulate now supports an optional *func* argument for + a user-supplied binary function. + - Issue #11692: Remove unnecessary demo functions in subprocess module. - Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -2590,6 +2590,7 @@ PyObject_HEAD PyObject *total; PyObject *it; + PyObject *binop; } accumulateobject; static PyTypeObject accumulate_type; @@ -2597,12 +2598,14 @@ static PyObject * accumulate_new(PyTypeObject *type, PyObject *args, PyObject *kwds) { - static char *kwargs[] = {"iterable", NULL}; + static char *kwargs[] = {"iterable", "func", NULL}; PyObject *iterable; PyObject *it; + PyObject *binop = NULL; accumulateobject *lz; - if (!PyArg_ParseTupleAndKeywords(args, kwds, "O:accumulate", kwargs, &iterable)) + if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|O:accumulate", + kwargs, &iterable, &binop)) return NULL; /* Get iterator. */ @@ -2617,6 +2620,8 @@ return NULL; } + Py_XINCREF(binop); + lz->binop = binop; lz->total = NULL; lz->it = it; return (PyObject *)lz; @@ -2626,6 +2631,7 @@ accumulate_dealloc(accumulateobject *lz) { PyObject_GC_UnTrack(lz); + Py_XDECREF(lz->binop); Py_XDECREF(lz->total); Py_XDECREF(lz->it); Py_TYPE(lz)->tp_free(lz); @@ -2634,6 +2640,7 @@ static int accumulate_traverse(accumulateobject *lz, visitproc visit, void *arg) { + Py_VISIT(lz->binop); Py_VISIT(lz->it); Py_VISIT(lz->total); return 0; @@ -2653,8 +2660,11 @@ lz->total = val; return lz->total; } - - newtotal = PyNumber_Add(lz->total, val); + + if (lz->binop == NULL) + newtotal = PyNumber_Add(lz->total, val); + else + newtotal = PyObject_CallFunctionObjArgs(lz->binop, lz->total, val, NULL); Py_DECREF(val); if (newtotal == NULL) return NULL; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 28 04:00:00 2011 From: python-checkins at python.org (raymond.hettinger) Date: Mon, 28 Mar 2011 04:00:00 +0200 Subject: [Python-checkins] cpython: Update docstrings for itertools.accumulate(). Message-ID: http://hg.python.org/cpython/rev/822c7c0d27d1 changeset: 69022:822c7c0d27d1 user: Raymond Hettinger date: Sun Mar 27 18:59:51 2011 -0700 summary: Update docstrings for itertools.accumulate(). files: Modules/itertoolsmodule.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -2678,9 +2678,9 @@ } PyDoc_STRVAR(accumulate_doc, -"accumulate(iterable) --> accumulate object\n\ +"accumulate(iterable[, func]) --> accumulate object\n\ \n\ -Return series of accumulated sums."); +Return series of accumulated sums (or other binary function results)."); static PyTypeObject accumulate_type = { PyVarObject_HEAD_INIT(NULL, 0) @@ -3638,7 +3638,7 @@ repeat(elem [,n]) --> elem, elem, elem, ... endlessly or up to n times\n\ \n\ Iterators terminating on the shortest input sequence:\n\ -accumulate(p, start=0) --> p0, p0+p1, p0+p1+p2\n\ +accumulate(p[, func]) --> p0, p0+p1, p0+p1+p2\n\ chain(p, q, ...) --> p0, p1, ... plast, q0, q1, ... \n\ compress(data, selectors) --> (d[0] if s[0]), (d[1] if s[1]), ...\n\ dropwhile(pred, seq) --> seq[n], seq[n+1], starting when pred fails\n\ -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Mon Mar 28 04:55:15 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Mon, 28 Mar 2011 04:55:15 +0200 Subject: [Python-checkins] Daily reference leaks (c12e1ea49532): sum=0 Message-ID: results for c12e1ea49532 on branch "default" -------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogvDAWU3', '-x'] From python-checkins at python.org Mon Mar 28 12:46:37 2011 From: python-checkins at python.org (ezio.melotti) Date: Mon, 28 Mar 2011 12:46:37 +0200 Subject: [Python-checkins] cpython (2.7): #10617: add class directives to collections ABCs. Message-ID: http://hg.python.org/cpython/rev/cc04b591d768 changeset: 69023:cc04b591d768 branch: 2.7 parent: 69017:df66ce66834b user: Ezio Melotti date: Mon Mar 28 13:46:28 2011 +0300 summary: #10617: add class directives to collections ABCs. files: Doc/library/collections.rst | 58 +++++++++++++++++++++--- 1 files changed, 50 insertions(+), 8 deletions(-) diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -858,10 +858,10 @@ ABCs - abstract base classes ---------------------------- -The collections module offers the following ABCs: +The collections module offers the following :term:`ABCs `: ========================= ===================== ====================== ==================================================== -ABC Inherits Abstract Methods Mixin Methods +ABC Inherits from Abstract Methods Mixin Methods ========================= ===================== ====================== ==================================================== :class:`Container` ``__contains__`` :class:`Hashable` ``__hash__`` @@ -874,15 +874,15 @@ :class:`Iterable`, ``index``, and ``count`` :class:`Container` -:class:`MutableSequence` :class:`Sequence` ``__setitem__`` Inherited Sequence methods and +:class:`MutableSequence` :class:`Sequence` ``__setitem__``, Inherited :class:`Sequence` methods and ``__delitem__``, ``append``, ``reverse``, ``extend``, ``pop``, - and ``insert`` ``remove``, and ``__iadd__`` + ``insert`` ``remove``, and ``__iadd__`` :class:`Set` :class:`Sized`, ``__le__``, ``__lt__``, ``__eq__``, ``__ne__``, :class:`Iterable`, ``__gt__``, ``__ge__``, ``__and__``, ``__or__``, :class:`Container` ``__sub__``, ``__xor__``, and ``isdisjoint`` -:class:`MutableSet` :class:`Set` ``add`` and Inherited Set methods and +:class:`MutableSet` :class:`Set` ``add``, Inherited :class:`Set` methods and ``discard`` ``clear``, ``pop``, ``remove``, ``__ior__``, ``__iand__``, ``__ixor__``, and ``__isub__`` @@ -890,19 +890,61 @@ :class:`Iterable`, ``get``, ``__eq__``, and ``__ne__`` :class:`Container` -:class:`MutableMapping` :class:`Mapping` ``__setitem__`` and Inherited Mapping methods and +:class:`MutableMapping` :class:`Mapping` ``__setitem__``, Inherited :class:`Mapping` methods and ``__delitem__`` ``pop``, ``popitem``, ``clear``, ``update``, and ``setdefault`` :class:`MappingView` :class:`Sized` ``__len__`` +:class:`ItemsView` :class:`MappingView`, ``__contains__``, + :class:`Set` ``__iter__`` :class:`KeysView` :class:`MappingView`, ``__contains__``, :class:`Set` ``__iter__`` -:class:`ItemsView` :class:`MappingView`, ``__contains__``, - :class:`Set` ``__iter__`` :class:`ValuesView` :class:`MappingView` ``__contains__``, ``__iter__`` ========================= ===================== ====================== ==================================================== + +.. class:: Container + Hashable + Sized + Callable + + ABCs for classes that provide respectively the methods :meth:`__contains__`, + :meth:`__hash__`, :meth:`__len__`, and :meth:`__call__`. + +.. class:: Iterable + + ABC for classes that provide the :meth:`__iter__` method. + See also the definition of :term:`iterable`. + +.. class:: Iterator + + ABC for classes that provide the :meth:`__iter__` and :meth:`next` methods. + See also the definition of :term:`iterator`. + +.. class:: Sequence + MutableSequence + + ABCs for read-only and mutable :term:`sequences `. + +.. class:: Set + MutableSet + + ABCs for read-only and mutable sets. + +.. class:: Mapping + MutableMapping + + ABCs for read-only and mutable :term:`mappings `. + +.. class:: MappingView + ItemsView + KeysView + ValuesView + + ABCs for mapping, items, keys, and values :term:`views `. + + These ABCs allow us to ask classes or instances if they provide particular functionality, for example:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 28 17:18:57 2011 From: python-checkins at python.org (r.david.murray) Date: Mon, 28 Mar 2011 17:18:57 +0200 Subject: [Python-checkins] devguide: Clarify that when creating a feature branch hg push --new-branch is needed. Message-ID: http://hg.python.org/devguide/rev/7868d364f191 changeset: 404:7868d364f191 user: R David Murray date: Mon Mar 28 11:18:38 2011 -0400 summary: Clarify that when creating a feature branch hg push --new-branch is needed. files: committing.rst | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/committing.rst b/committing.rst --- a/committing.rst +++ b/committing.rst @@ -326,6 +326,7 @@ $ hg branch mywork $ hg commit -m "Creating branch mywork" + $ hg push --new-branch You can now work on your feature, commit changes as you will, and push them when desired:: -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Mon Mar 28 17:58:05 2011 From: python-checkins at python.org (martin.v.loewis) Date: Mon, 28 Mar 2011 17:58:05 +0200 (CEST) Subject: [Python-checkins] r88808 - in tracker/instances/python-dev/html: issue.item.html issue.item.js Message-ID: <3Pz0JF3ZN7z7Ljc@mail.python.org> Author: martin.v.loewis Date: Mon Mar 28 17:58:05 2011 New Revision: 88808 Log: Fold forms. Modified: tracker/instances/python-dev/html/issue.item.html tracker/instances/python-dev/html/issue.item.js Modified: tracker/instances/python-dev/html/issue.item.html ============================================================================== --- tracker/instances/python-dev/html/issue.item.html (original) +++ tracker/instances/python-dev/html/issue.item.html Mon Mar 28 17:58:05 2011 @@ -27,7 +27,7 @@ replace="context/id" i18n:name="id" /> Editing - +

    @@ -38,12 +38,22 @@ Please login with your username and password.

    + -
    classification +
    classification
    @@ -85,7 +95,7 @@
    process - +
    - +
    + + Modified: tracker/instances/python-dev/html/issue.item.js ============================================================================== --- tracker/instances/python-dev/html/issue.item.js (original) +++ tracker/instances/python-dev/html/issue.item.js Mon Mar 28 17:58:05 2011 @@ -1,4 +1,11 @@ window.onload = function () { + var condensed = document.getElementById("condensed"); + if(condensed) { + condensed.style.display = "block"; + document.getElementById("classification").style.display="none"; + document.getElementById("processfields").style.display="none"; + } + // create the input button and use it to replace the span/placeholder -- // users without javascript won't notice anything. // This might eventually be replaced by jquery @@ -41,3 +48,10 @@ nosy.style.display = 'inline'; nosy.style.width = new_width + "px"; } + +function unfold() { + document.getElementById("condensed").style.display = "none"; + document.getElementById("classification").style.display = "block"; + document.getElementById("processfields").style.display = "block"; + +} From python-checkins at python.org Mon Mar 28 18:01:07 2011 From: python-checkins at python.org (martin.v.loewis) Date: Mon, 28 Mar 2011 18:01:07 +0200 (CEST) Subject: [Python-checkins] r88809 - tracker/instances/python-dev/html/issue.item.html Message-ID: <3Pz0Ml4gFXz7LjR@mail.python.org> Author: martin.v.loewis Date: Mon Mar 28 18:01:07 2011 New Revision: 88809 Log: Don't fold comment field away. Modified: tracker/instances/python-dev/html/issue.item.html Modified: tracker/instances/python-dev/html/issue.item.html ============================================================================== --- tracker/instances/python-dev/html/issue.item.html (original) +++ tracker/instances/python-dev/html/issue.item.html Mon Mar 28 18:01:07 2011 @@ -185,6 +185,8 @@ +
    File: @@ -347,6 +358,6 @@ -
    + -
    -
    File: From python-checkins at python.org Mon Mar 28 18:27:29 2011 From: python-checkins at python.org (ezio.melotti) Date: Mon, 28 Mar 2011 18:27:29 +0200 Subject: [Python-checkins] cpython (3.1): #10617: add class directives to collections ABCs. Message-ID: http://hg.python.org/cpython/rev/c5de208d205c changeset: 69024:c5de208d205c branch: 3.1 parent: 69018:f3d96d28a86e user: Ezio Melotti date: Mon Mar 28 13:50:41 2011 +0300 summary: #10617: add class directives to collections ABCs. files: Doc/library/collections.rst | 58 +++++++++++++++++++++--- 1 files changed, 50 insertions(+), 8 deletions(-) diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -907,10 +907,10 @@ ABCs - abstract base classes ---------------------------- -The collections module offers the following ABCs: +The collections module offers the following :term:`ABCs `: ========================= ===================== ====================== ==================================================== -ABC Inherits Abstract Methods Mixin Methods +ABC Inherits from Abstract Methods Mixin Methods ========================= ===================== ====================== ==================================================== :class:`Container` ``__contains__`` :class:`Hashable` ``__hash__`` @@ -923,15 +923,15 @@ :class:`Iterable`, ``index``, and ``count`` :class:`Container` -:class:`MutableSequence` :class:`Sequence` ``__setitem__`` Inherited Sequence methods and +:class:`MutableSequence` :class:`Sequence` ``__setitem__``, Inherited :class:`Sequence` methods and ``__delitem__``, ``append``, ``reverse``, ``extend``, ``pop``, - and ``insert`` ``remove``, and ``__iadd__`` + ``insert`` ``remove``, and ``__iadd__`` :class:`Set` :class:`Sized`, ``__le__``, ``__lt__``, ``__eq__``, ``__ne__``, :class:`Iterable`, ``__gt__``, ``__ge__``, ``__and__``, ``__or__``, :class:`Container` ``__sub__``, ``__xor__``, and ``isdisjoint`` -:class:`MutableSet` :class:`Set` ``add`` and Inherited Set methods and +:class:`MutableSet` :class:`Set` ``add``, Inherited :class:`Set` methods and ``discard`` ``clear``, ``pop``, ``remove``, ``__ior__``, ``__iand__``, ``__ixor__``, and ``__isub__`` @@ -939,19 +939,61 @@ :class:`Iterable`, ``get``, ``__eq__``, and ``__ne__`` :class:`Container` -:class:`MutableMapping` :class:`Mapping` ``__setitem__`` and Inherited Mapping methods and +:class:`MutableMapping` :class:`Mapping` ``__setitem__``, Inherited :class:`Mapping` methods and ``__delitem__`` ``pop``, ``popitem``, ``clear``, ``update``, and ``setdefault`` :class:`MappingView` :class:`Sized` ``__len__`` +:class:`ItemsView` :class:`MappingView`, ``__contains__``, + :class:`Set` ``__iter__`` :class:`KeysView` :class:`MappingView`, ``__contains__``, :class:`Set` ``__iter__`` -:class:`ItemsView` :class:`MappingView`, ``__contains__``, - :class:`Set` ``__iter__`` :class:`ValuesView` :class:`MappingView` ``__contains__``, ``__iter__`` ========================= ===================== ====================== ==================================================== + +.. class:: Container + Hashable + Sized + Callable + + ABCs for classes that provide respectively the methods :meth:`__contains__`, + :meth:`__hash__`, :meth:`__len__`, and :meth:`__call__`. + +.. class:: Iterable + + ABC for classes that provide the :meth:`__iter__` method. + See also the definition of :term:`iterable`. + +.. class:: Iterator + + ABC for classes that provide the :meth:`__iter__` and :meth:`next` methods. + See also the definition of :term:`iterator`. + +.. class:: Sequence + MutableSequence + + ABCs for read-only and mutable :term:`sequences `. + +.. class:: Set + MutableSet + + ABCs for read-only and mutable sets. + +.. class:: Mapping + MutableMapping + + ABCs for read-only and mutable :term:`mappings `. + +.. class:: MappingView + ItemsView + KeysView + ValuesView + + ABCs for mapping, items, keys, and values :term:`views `. + + These ABCs allow us to ask classes or instances if they provide particular functionality, for example:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 28 18:27:30 2011 From: python-checkins at python.org (ezio.melotti) Date: Mon, 28 Mar 2011 18:27:30 +0200 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): #10617: merge with 3.1. Message-ID: http://hg.python.org/cpython/rev/3daca2b76297 changeset: 69025:3daca2b76297 branch: 3.2 parent: 69019:4dff2e436191 parent: 69024:c5de208d205c user: Ezio Melotti date: Mon Mar 28 13:53:40 2011 +0300 summary: #10617: merge with 3.1. files: Doc/library/collections.rst | 58 +++++++++++++++++++++--- 1 files changed, 50 insertions(+), 8 deletions(-) diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -964,10 +964,10 @@ ABCs - abstract base classes ---------------------------- -The collections module offers the following ABCs: +The collections module offers the following :term:`ABCs `: ========================= ===================== ====================== ==================================================== -ABC Inherits Abstract Methods Mixin Methods +ABC Inherits from Abstract Methods Mixin Methods ========================= ===================== ====================== ==================================================== :class:`Container` ``__contains__`` :class:`Hashable` ``__hash__`` @@ -980,15 +980,15 @@ :class:`Iterable`, ``index``, and ``count`` :class:`Container` -:class:`MutableSequence` :class:`Sequence` ``__setitem__`` Inherited Sequence methods and +:class:`MutableSequence` :class:`Sequence` ``__setitem__``, Inherited :class:`Sequence` methods and ``__delitem__``, ``append``, ``reverse``, ``extend``, ``pop``, - and ``insert`` ``remove``, and ``__iadd__`` + ``insert`` ``remove``, and ``__iadd__`` :class:`Set` :class:`Sized`, ``__le__``, ``__lt__``, ``__eq__``, ``__ne__``, :class:`Iterable`, ``__gt__``, ``__ge__``, ``__and__``, ``__or__``, :class:`Container` ``__sub__``, ``__xor__``, and ``isdisjoint`` -:class:`MutableSet` :class:`Set` ``add`` and Inherited Set methods and +:class:`MutableSet` :class:`Set` ``add``, Inherited :class:`Set` methods and ``discard`` ``clear``, ``pop``, ``remove``, ``__ior__``, ``__iand__``, ``__ixor__``, and ``__isub__`` @@ -996,19 +996,61 @@ :class:`Iterable`, ``get``, ``__eq__``, and ``__ne__`` :class:`Container` -:class:`MutableMapping` :class:`Mapping` ``__setitem__`` and Inherited Mapping methods and +:class:`MutableMapping` :class:`Mapping` ``__setitem__``, Inherited :class:`Mapping` methods and ``__delitem__`` ``pop``, ``popitem``, ``clear``, ``update``, and ``setdefault`` :class:`MappingView` :class:`Sized` ``__len__`` +:class:`ItemsView` :class:`MappingView`, ``__contains__``, + :class:`Set` ``__iter__`` :class:`KeysView` :class:`MappingView`, ``__contains__``, :class:`Set` ``__iter__`` -:class:`ItemsView` :class:`MappingView`, ``__contains__``, - :class:`Set` ``__iter__`` :class:`ValuesView` :class:`MappingView` ``__contains__``, ``__iter__`` ========================= ===================== ====================== ==================================================== + +.. class:: Container + Hashable + Sized + Callable + + ABCs for classes that provide respectively the methods :meth:`__contains__`, + :meth:`__hash__`, :meth:`__len__`, and :meth:`__call__`. + +.. class:: Iterable + + ABC for classes that provide the :meth:`__iter__` method. + See also the definition of :term:`iterable`. + +.. class:: Iterator + + ABC for classes that provide the :meth:`__iter__` and :meth:`next` methods. + See also the definition of :term:`iterator`. + +.. class:: Sequence + MutableSequence + + ABCs for read-only and mutable :term:`sequences `. + +.. class:: Set + MutableSet + + ABCs for read-only and mutable sets. + +.. class:: Mapping + MutableMapping + + ABCs for read-only and mutable :term:`mappings `. + +.. class:: MappingView + ItemsView + KeysView + ValuesView + + ABCs for mapping, items, keys, and values :term:`views `. + + These ABCs allow us to ask classes or instances if they provide particular functionality, for example:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Mon Mar 28 18:27:31 2011 From: python-checkins at python.org (ezio.melotti) Date: Mon, 28 Mar 2011 18:27:31 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): #10617: merge with 3.2. Message-ID: http://hg.python.org/cpython/rev/30a026a25167 changeset: 69026:30a026a25167 parent: 69022:822c7c0d27d1 parent: 69025:3daca2b76297 user: Ezio Melotti date: Mon Mar 28 19:27:09 2011 +0300 summary: #10617: merge with 3.2. files: Doc/library/collections.abc.rst | 58 ++++++++++++++++++-- 1 files changed, 50 insertions(+), 8 deletions(-) diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst --- a/Doc/library/collections.abc.rst +++ b/Doc/library/collections.abc.rst @@ -28,10 +28,10 @@ Collections Abstract Base Classes --------------------------------- -The collections module offers the following ABCs: +The collections module offers the following :term:`ABCs `: ========================= ===================== ====================== ==================================================== -ABC Inherits Abstract Methods Mixin Methods +ABC Inherits from Abstract Methods Mixin Methods ========================= ===================== ====================== ==================================================== :class:`Container` ``__contains__`` :class:`Hashable` ``__hash__`` @@ -44,15 +44,15 @@ :class:`Iterable`, ``index``, and ``count`` :class:`Container` -:class:`MutableSequence` :class:`Sequence` ``__setitem__`` Inherited Sequence methods and +:class:`MutableSequence` :class:`Sequence` ``__setitem__`` Inherited :class:`Sequence` methods and ``__delitem__``, ``append``, ``reverse``, ``extend``, ``pop``, - and ``insert`` ``remove``, ``clear``, and ``__iadd__`` + ``insert`` ``remove``, ``clear``, and ``__iadd__`` :class:`Set` :class:`Sized`, ``__le__``, ``__lt__``, ``__eq__``, ``__ne__``, :class:`Iterable`, ``__gt__``, ``__ge__``, ``__and__``, ``__or__``, :class:`Container` ``__sub__``, ``__xor__``, and ``isdisjoint`` -:class:`MutableSet` :class:`Set` ``add`` and Inherited Set methods and +:class:`MutableSet` :class:`Set` ``add``, Inherited :class:`Set` methods and ``discard`` ``clear``, ``pop``, ``remove``, ``__ior__``, ``__iand__``, ``__ixor__``, and ``__isub__`` @@ -60,19 +60,61 @@ :class:`Iterable`, ``get``, ``__eq__``, and ``__ne__`` :class:`Container` -:class:`MutableMapping` :class:`Mapping` ``__setitem__`` and Inherited Mapping methods and +:class:`MutableMapping` :class:`Mapping` ``__setitem__``, Inherited :class:`Mapping` methods and ``__delitem__`` ``pop``, ``popitem``, ``clear``, ``update``, and ``setdefault`` :class:`MappingView` :class:`Sized` ``__len__`` +:class:`ItemsView` :class:`MappingView`, ``__contains__``, + :class:`Set` ``__iter__`` :class:`KeysView` :class:`MappingView`, ``__contains__``, :class:`Set` ``__iter__`` -:class:`ItemsView` :class:`MappingView`, ``__contains__``, - :class:`Set` ``__iter__`` :class:`ValuesView` :class:`MappingView` ``__contains__``, ``__iter__`` ========================= ===================== ====================== ==================================================== + +.. class:: Container + Hashable + Sized + Callable + + ABCs for classes that provide respectively the methods :meth:`__contains__`, + :meth:`__hash__`, :meth:`__len__`, and :meth:`__call__`. + +.. class:: Iterable + + ABC for classes that provide the :meth:`__iter__` method. + See also the definition of :term:`iterable`. + +.. class:: Iterator + + ABC for classes that provide the :meth:`__iter__` and :meth:`next` methods. + See also the definition of :term:`iterator`. + +.. class:: Sequence + MutableSequence + + ABCs for read-only and mutable :term:`sequences `. + +.. class:: Set + MutableSet + + ABCs for read-only and mutable sets. + +.. class:: Mapping + MutableMapping + + ABCs for read-only and mutable :term:`mappings `. + +.. class:: MappingView + ItemsView + KeysView + ValuesView + + ABCs for mapping, items, keys, and values :term:`views `. + + These ABCs allow us to ask classes or instances if they provide particular functionality, for example:: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 00:24:33 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 29 Mar 2011 00:24:33 +0200 Subject: [Python-checkins] cpython (3.1): let's keep parenthesis around sizeof Message-ID: http://hg.python.org/cpython/rev/8517e1f5d927 changeset: 69027:8517e1f5d927 branch: 3.1 parent: 69024:c5de208d205c user: Benjamin Peterson date: Mon Mar 28 17:25:15 2011 -0500 summary: let's keep parenthesis around sizeof files: Modules/getbuildinfo.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -42,9 +42,9 @@ const char * Py_GetBuildInfo(void) { - static char buildinfo[50 + sizeof HGVERSION + - ((sizeof HGTAG > sizeof HGBRANCH) ? - sizeof HGTAG : sizeof HGBRANCH)]; + static char buildinfo[50 + sizeof(HGVERSION) + + ((sizeof(HGTAG) > sizeof(HGBRANCH)) ? + sizeof(HGTAG) : sizeof(HGBRANCH))]; const char *revision = _Py_hgversion(); const char *sep = *revision ? ":" : ""; const char *hgid = _Py_hgidentifier(); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 00:24:35 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 29 Mar 2011 00:24:35 +0200 Subject: [Python-checkins] cpython (2.7): let's keep parenthesis around sizeof Message-ID: http://hg.python.org/cpython/rev/fe5b90b1e8ea changeset: 69028:fe5b90b1e8ea branch: 2.7 parent: 69023:cc04b591d768 user: Benjamin Peterson date: Mon Mar 28 17:25:15 2011 -0500 summary: let's keep parenthesis around sizeof files: Modules/getbuildinfo.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -42,9 +42,9 @@ const char * Py_GetBuildInfo(void) { - static char buildinfo[50 + sizeof HGVERSION + - ((sizeof HGTAG > sizeof HGBRANCH) ? - sizeof HGTAG : sizeof HGBRANCH)]; + static char buildinfo[50 + sizeof(HGVERSION) + + ((sizeof(HGTAG) > sizeof(HGBRANCH)) ? + sizeof(HGTAG) : sizeof(HGBRANCH))]; const char *revision = _Py_hgversion(); const char *sep = *revision ? ":" : ""; const char *hgid = _Py_hgidentifier(); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 00:24:35 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 29 Mar 2011 00:24:35 +0200 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): merge 3.1 Message-ID: http://hg.python.org/cpython/rev/2a9ba6efbc56 changeset: 69029:2a9ba6efbc56 branch: 3.2 parent: 69025:3daca2b76297 parent: 69027:8517e1f5d927 user: Benjamin Peterson date: Mon Mar 28 17:25:50 2011 -0500 summary: merge 3.1 files: Modules/getbuildinfo.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -42,9 +42,9 @@ const char * Py_GetBuildInfo(void) { - static char buildinfo[50 + sizeof HGVERSION + - ((sizeof HGTAG > sizeof HGBRANCH) ? - sizeof HGTAG : sizeof HGBRANCH)]; + static char buildinfo[50 + sizeof(HGVERSION) + + ((sizeof(HGTAG) > sizeof(HGBRANCH)) ? + sizeof(HGTAG) : sizeof(HGBRANCH))]; const char *revision = _Py_hgversion(); const char *sep = *revision ? ":" : ""; const char *hgid = _Py_hgidentifier(); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 00:24:41 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 29 Mar 2011 00:24:41 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge 3.2 Message-ID: http://hg.python.org/cpython/rev/00217100b9e7 changeset: 69030:00217100b9e7 parent: 69026:30a026a25167 parent: 69029:2a9ba6efbc56 user: Benjamin Peterson date: Mon Mar 28 17:26:04 2011 -0500 summary: merge 3.2 files: Modules/getbuildinfo.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -34,9 +34,9 @@ const char * Py_GetBuildInfo(void) { - static char buildinfo[50 + sizeof HGVERSION + - ((sizeof HGTAG > sizeof HGBRANCH) ? - sizeof HGTAG : sizeof HGBRANCH)]; + static char buildinfo[50 + sizeof(HGVERSION) + + ((sizeof(HGTAG) > sizeof(HGBRANCH)) ? + sizeof(HGTAG) : sizeof(HGBRANCH))]; const char *revision = _Py_hgversion(); const char *sep = *revision ? ":" : ""; const char *hgid = _Py_hgidentifier(); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 00:41:05 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 29 Mar 2011 00:41:05 +0200 Subject: [Python-checkins] cpython (3.2): Correct handling of functions with only kwarg args in getcallargs (closes Message-ID: http://hg.python.org/cpython/rev/57e99f5f5e8f changeset: 69031:57e99f5f5e8f branch: 3.2 parent: 69029:2a9ba6efbc56 user: Benjamin Peterson date: Mon Mar 28 17:32:31 2011 -0500 summary: Correct handling of functions with only kwarg args in getcallargs (closes #11256) A patch from Daniel Urban. files: Lib/inspect.py | 10 ++++++- Lib/test/test_inspect.py | 33 ++++++++++++++++++++++++++++ Misc/NEWS | 3 ++ 3 files changed, 44 insertions(+), 2 deletions(-) diff --git a/Lib/inspect.py b/Lib/inspect.py --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -944,8 +944,14 @@ f_name, 'at most' if defaults else 'exactly', num_args, 'arguments' if num_args > 1 else 'argument', num_total)) elif num_args == 0 and num_total: - raise TypeError('%s() takes no arguments (%d given)' % - (f_name, num_total)) + if varkw or kwonlyargs: + if num_pos: + # XXX: We should use num_pos, but Python also uses num_total: + raise TypeError('%s() takes exactly 0 positional arguments ' + '(%d given)' % (f_name, num_total)) + else: + raise TypeError('%s() takes no arguments (%d given)' % + (f_name, num_total)) for arg in itertools.chain(args, kwonlyargs): if arg in named: diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -632,6 +632,16 @@ self.assertEqualCallArgs(f, '2, c=4, **collections.UserDict(b=3)') self.assertEqualCallArgs(f, 'b=2, **collections.UserDict(a=3, c=4)') + def test_varkw_only(self): + # issue11256: + f = self.makeCallable('**c') + self.assertEqualCallArgs(f, '') + self.assertEqualCallArgs(f, 'a=1') + self.assertEqualCallArgs(f, 'a=1, b=2') + self.assertEqualCallArgs(f, 'c=3, **{"a": 1, "b": 2}') + self.assertEqualCallArgs(f, '**collections.UserDict(a=1, b=2)') + self.assertEqualCallArgs(f, 'c=3, **collections.UserDict(a=1, b=2)') + def test_keyword_only(self): f = self.makeCallable('a=3, *, c, d=2') self.assertEqualCallArgs(f, 'c=3') @@ -643,6 +653,11 @@ self.assertEqualException(f, 'a=3') self.assertEqualException(f, 'd=4') + f = self.makeCallable('*, c, d=2') + self.assertEqualCallArgs(f, 'c=3') + self.assertEqualCallArgs(f, 'c=3, d=4') + self.assertEqualCallArgs(f, 'd=4, c=3') + def test_multiple_features(self): f = self.makeCallable('a, b=2, *f, **g') self.assertEqualCallArgs(f, '2, 3, 7') @@ -656,6 +671,17 @@ '(4,[5,6])]), **collections.UserDict(' 'y=9, z=10)') + f = self.makeCallable('a, b=2, *f, x, y=99, **g') + self.assertEqualCallArgs(f, '2, 3, x=8') + self.assertEqualCallArgs(f, '2, 3, x=8, *[(4,[5,6]), 7]') + self.assertEqualCallArgs(f, '2, x=8, *[3, (4,[5,6]), 7], y=9, z=10') + self.assertEqualCallArgs(f, 'x=8, *[2, 3, (4,[5,6])], y=9, z=10') + self.assertEqualCallArgs(f, 'x=8, *collections.UserList(' + '[2, 3, (4,[5,6])]), q=0, **{"y":9, "z":10}') + self.assertEqualCallArgs(f, '2, x=8, *collections.UserList([3, ' + '(4,[5,6])]), q=0, **collections.UserDict(' + 'y=9, z=10)') + def test_errors(self): f0 = self.makeCallable('') f1 = self.makeCallable('a, b') @@ -692,6 +718,13 @@ # - for functions and bound methods: unexpected keyword 'c' # - for unbound methods: multiple values for keyword 'a' #self.assertEqualException(f, '1, c=3, a=2') + # issue11256: + f3 = self.makeCallable('**c') + self.assertEqualException(f3, '1, 2') + self.assertEqualException(f3, '1, 2, a=1, b=2') + f4 = self.makeCallable('*, a, b=0') + self.assertEqualException(f3, '1, 2') + self.assertEqualException(f3, '1, 2, a=1, b=2') class TestGetcallargsMethods(TestGetcallargsFunctions): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -49,6 +49,9 @@ Library ------- +- Issue #11256: Fix inspect.getcallargs on functions that take only keyword + arguments. + - Issue #11696: Fix ID generation in msilib. - Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 00:41:06 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 29 Mar 2011 00:41:06 +0200 Subject: [Python-checkins] cpython (2.7): Correct handling of functions with only kwarg args in getcallargs (closes Message-ID: http://hg.python.org/cpython/rev/b19d76d9d2a7 changeset: 69032:b19d76d9d2a7 branch: 2.7 parent: 69028:fe5b90b1e8ea user: Benjamin Peterson date: Mon Mar 28 17:32:31 2011 -0500 summary: Correct handling of functions with only kwarg args in getcallargs (closes #11256) A patch from Daniel Urban. files: Lib/inspect.py | 10 ++++++++-- Lib/test/test_inspect.py | 14 ++++++++++++++ Misc/NEWS | 3 +++ 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/Lib/inspect.py b/Lib/inspect.py --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -943,8 +943,14 @@ f_name, 'at most' if defaults else 'exactly', num_args, 'arguments' if num_args > 1 else 'argument', num_total)) elif num_args == 0 and num_total: - raise TypeError('%s() takes no arguments (%d given)' % - (f_name, num_total)) + if varkw: + if num_pos: + # XXX: We should use num_pos, but Python also uses num_total: + raise TypeError('%s() takes exactly 0 arguments ' + '(%d given)' % (f_name, num_total)) + else: + raise TypeError('%s() takes no arguments (%d given)' % + (f_name, num_total)) for arg in args: if isinstance(arg, str) and arg in named: if is_assigned(arg): diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -632,6 +632,16 @@ self.assertEqualCallArgs(f, '2, c=4, **{u"b":3}') self.assertEqualCallArgs(f, 'b=2, **{u"a":3, u"c":4}') + def test_varkw_only(self): + # issue11256: + f = self.makeCallable('**c') + self.assertEqualCallArgs(f, '') + self.assertEqualCallArgs(f, 'a=1') + self.assertEqualCallArgs(f, 'a=1, b=2') + self.assertEqualCallArgs(f, 'c=3, **{"a": 1, "b": 2}') + self.assertEqualCallArgs(f, '**UserDict(a=1, b=2)') + self.assertEqualCallArgs(f, 'c=3, **UserDict(a=1, b=2)') + def test_tupleargs(self): f = self.makeCallable('(b,c), (d,(e,f))=(0,[1,2])') self.assertEqualCallArgs(f, '(2,3)') @@ -693,6 +703,10 @@ self.assertEqualException(f, '1') self.assertEqualException(f, '[1]') self.assertEqualException(f, '(1,2,3)') + # issue11256: + f3 = self.makeCallable('**c') + self.assertEqualException(f3, '1, 2') + self.assertEqualException(f3, '1, 2, a=1, b=2') class TestGetcallargsMethods(TestGetcallargsFunctions): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -47,6 +47,9 @@ Library ------- +- Issue #11256: Fix inspect.getcallargs on functions that take only keyword + arguments. + - Issue #11696: Fix ID generation in msilib. - Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 00:41:07 2011 From: python-checkins at python.org (benjamin.peterson) Date: Tue, 29 Mar 2011 00:41:07 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): merge 3.2 Message-ID: http://hg.python.org/cpython/rev/6a1ebd530b9e changeset: 69033:6a1ebd530b9e parent: 69030:00217100b9e7 parent: 69031:57e99f5f5e8f user: Benjamin Peterson date: Mon Mar 28 17:42:35 2011 -0500 summary: merge 3.2 files: Lib/inspect.py | 10 ++++++- Lib/test/test_inspect.py | 33 ++++++++++++++++++++++++++++ Misc/NEWS | 3 ++ 3 files changed, 44 insertions(+), 2 deletions(-) diff --git a/Lib/inspect.py b/Lib/inspect.py --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -944,8 +944,14 @@ f_name, 'at most' if defaults else 'exactly', num_args, 'arguments' if num_args > 1 else 'argument', num_total)) elif num_args == 0 and num_total: - raise TypeError('%s() takes no arguments (%d given)' % - (f_name, num_total)) + if varkw or kwonlyargs: + if num_pos: + # XXX: We should use num_pos, but Python also uses num_total: + raise TypeError('%s() takes exactly 0 positional arguments ' + '(%d given)' % (f_name, num_total)) + else: + raise TypeError('%s() takes no arguments (%d given)' % + (f_name, num_total)) for arg in itertools.chain(args, kwonlyargs): if arg in named: diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -632,6 +632,16 @@ self.assertEqualCallArgs(f, '2, c=4, **collections.UserDict(b=3)') self.assertEqualCallArgs(f, 'b=2, **collections.UserDict(a=3, c=4)') + def test_varkw_only(self): + # issue11256: + f = self.makeCallable('**c') + self.assertEqualCallArgs(f, '') + self.assertEqualCallArgs(f, 'a=1') + self.assertEqualCallArgs(f, 'a=1, b=2') + self.assertEqualCallArgs(f, 'c=3, **{"a": 1, "b": 2}') + self.assertEqualCallArgs(f, '**collections.UserDict(a=1, b=2)') + self.assertEqualCallArgs(f, 'c=3, **collections.UserDict(a=1, b=2)') + def test_keyword_only(self): f = self.makeCallable('a=3, *, c, d=2') self.assertEqualCallArgs(f, 'c=3') @@ -643,6 +653,11 @@ self.assertEqualException(f, 'a=3') self.assertEqualException(f, 'd=4') + f = self.makeCallable('*, c, d=2') + self.assertEqualCallArgs(f, 'c=3') + self.assertEqualCallArgs(f, 'c=3, d=4') + self.assertEqualCallArgs(f, 'd=4, c=3') + def test_multiple_features(self): f = self.makeCallable('a, b=2, *f, **g') self.assertEqualCallArgs(f, '2, 3, 7') @@ -656,6 +671,17 @@ '(4,[5,6])]), **collections.UserDict(' 'y=9, z=10)') + f = self.makeCallable('a, b=2, *f, x, y=99, **g') + self.assertEqualCallArgs(f, '2, 3, x=8') + self.assertEqualCallArgs(f, '2, 3, x=8, *[(4,[5,6]), 7]') + self.assertEqualCallArgs(f, '2, x=8, *[3, (4,[5,6]), 7], y=9, z=10') + self.assertEqualCallArgs(f, 'x=8, *[2, 3, (4,[5,6])], y=9, z=10') + self.assertEqualCallArgs(f, 'x=8, *collections.UserList(' + '[2, 3, (4,[5,6])]), q=0, **{"y":9, "z":10}') + self.assertEqualCallArgs(f, '2, x=8, *collections.UserList([3, ' + '(4,[5,6])]), q=0, **collections.UserDict(' + 'y=9, z=10)') + def test_errors(self): f0 = self.makeCallable('') f1 = self.makeCallable('a, b') @@ -692,6 +718,13 @@ # - for functions and bound methods: unexpected keyword 'c' # - for unbound methods: multiple values for keyword 'a' #self.assertEqualException(f, '1, c=3, a=2') + # issue11256: + f3 = self.makeCallable('**c') + self.assertEqualException(f3, '1, 2') + self.assertEqualException(f3, '1, 2, a=1, b=2') + f4 = self.makeCallable('*, a, b=0') + self.assertEqualException(f3, '1, 2') + self.assertEqualException(f3, '1, 2, a=1, b=2') class TestGetcallargsMethods(TestGetcallargsFunctions): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -87,6 +87,9 @@ Library ------- +- Issue #11256: Fix inspect.getcallargs on functions that take only keyword + arguments. + - Issue #11696: Fix ID generation in msilib. - itertools.accumulate now supports an optional *func* argument for -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 02:16:54 2011 From: python-checkins at python.org (vinay.sajip) Date: Tue, 29 Mar 2011 02:16:54 +0200 Subject: [Python-checkins] cpython (2.6): Issue #11639: Configuration function documentation referred to logging.XXX Message-ID: http://hg.python.org/cpython/rev/bfa2a8d91859 changeset: 69034:bfa2a8d91859 branch: 2.6 parent: 68802:b99c94261225 user: Vinay Sajip date: Tue Mar 29 01:07:50 2011 +0100 summary: Issue #11639: Configuration function documentation referred to logging.XXX rather than logging.config.XXX. files: Doc/library/logging.rst | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -2545,6 +2545,8 @@ in :mod:`logging` itself) and defining handlers which are declared either in :mod:`logging` or :mod:`logging.handlers`. +.. currentmodule:: logging.config + .. function:: fileConfig(fname[, defaults]) @@ -2578,6 +2580,8 @@ :func:`listen`. +.. currentmodule:: logging + .. _logging-config-fileformat: Configuration file format -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 02:16:56 2011 From: python-checkins at python.org (vinay.sajip) Date: Tue, 29 Mar 2011 02:16:56 +0200 Subject: [Python-checkins] cpython (merge 2.6 -> 2.7): Issue #11639: Configuration function documentation referred to logging.XXX Message-ID: http://hg.python.org/cpython/rev/f494339674e7 changeset: 69035:f494339674e7 branch: 2.7 parent: 69032:b19d76d9d2a7 parent: 69034:bfa2a8d91859 user: Vinay Sajip date: Tue Mar 29 01:15:37 2011 +0100 summary: Issue #11639: Configuration function documentation referred to logging.XXX rather than logging.config.XXX. files: Doc/library/logging.rst | 18 ++++++++++++++++-- 1 files changed, 16 insertions(+), 2 deletions(-) diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -2880,8 +2880,13 @@ in :mod:`logging` itself) and defining handlers which are declared either in :mod:`logging` or :mod:`logging.handlers`. +<<<<<<< local .. function:: dictConfig(config) - +======= +.. currentmodule:: logging.config +>>>>>>> other + +<<<<<<< local Takes the logging configuration from a dictionary. The contents of this dictionary are described in :ref:`logging-config-dictschema` below. @@ -2923,6 +2928,8 @@ in the default, uncustomized state. .. versionadded:: 2.7 +======= +>>>>>>> other .. function:: fileConfig(fname[, defaults]) @@ -2955,8 +2962,13 @@ :func:`listen`. +<<<<<<< local .. _logging-config-dictschema: - +======= +.. currentmodule:: logging +>>>>>>> other + +<<<<<<< local Configuration dictionary schema ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -3351,6 +3363,8 @@ to ``config_dict['handlers']['myhandler']['mykey']['123']`` if that fails. +======= +>>>>>>> other .. _logging-config-fileformat: Configuration file format -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 02:22:39 2011 From: python-checkins at python.org (vinay.sajip) Date: Tue, 29 Mar 2011 02:22:39 +0200 Subject: [Python-checkins] cpython (2.7): Issue #11639: Configuration function documentation referred to logging.XXX Message-ID: http://hg.python.org/cpython/rev/1a5aab273332 changeset: 69036:1a5aab273332 branch: 2.7 user: Vinay Sajip date: Tue Mar 29 01:21:48 2011 +0100 summary: Issue #11639: Configuration function documentation referred to logging.XXX rather than logging.config.XXX. files: Doc/library/logging.rst | 23 ++++++----------------- 1 files changed, 6 insertions(+), 17 deletions(-) diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -2880,13 +2880,10 @@ in :mod:`logging` itself) and defining handlers which are declared either in :mod:`logging` or :mod:`logging.handlers`. -<<<<<<< local +.. currentmodule:: logging.config + .. function:: dictConfig(config) -======= -.. currentmodule:: logging.config ->>>>>>> other - -<<<<<<< local + Takes the logging configuration from a dictionary. The contents of this dictionary are described in :ref:`logging-config-dictschema` below. @@ -2928,8 +2925,6 @@ in the default, uncustomized state. .. versionadded:: 2.7 -======= ->>>>>>> other .. function:: fileConfig(fname[, defaults]) @@ -2961,14 +2956,10 @@ This is typically called before calling :meth:`join` on the return value from :func:`listen`. - -<<<<<<< local +.. currentmodule:: logging + .. _logging-config-dictschema: -======= -.. currentmodule:: logging ->>>>>>> other - -<<<<<<< local + Configuration dictionary schema ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -3363,8 +3354,6 @@ to ``config_dict['handlers']['myhandler']['mykey']['123']`` if that fails. -======= ->>>>>>> other .. _logging-config-fileformat: Configuration file format -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Tue Mar 29 04:55:27 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Tue, 29 Mar 2011 04:55:27 +0200 Subject: [Python-checkins] Daily reference leaks (6a1ebd530b9e): sum=0 Message-ID: results for 6a1ebd530b9e on branch "default" -------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogLd2R2R', '-x'] From python-checkins at python.org Tue Mar 29 16:00:07 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 29 Mar 2011 16:00:07 +0200 Subject: [Python-checkins] cpython: Add a __main__.py to test_email so it works with -m like it did before move. Message-ID: http://hg.python.org/cpython/rev/7a8ada66c07d changeset: 69037:7a8ada66c07d parent: 69033:6a1ebd530b9e user: R David Murray date: Tue Mar 29 09:59:45 2011 -0400 summary: Add a __main__.py to test_email so it works with -m like it did before move. files: Lib/test/test_email/__main__.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Lib/test/test_email/__main__.py b/Lib/test/test_email/__main__.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/__main__.py @@ -0,0 +1,3 @@ +from test.test_email import test_main + +test_main() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 17:33:08 2011 From: python-checkins at python.org (r.david.murray) Date: Tue, 29 Mar 2011 17:33:08 +0200 Subject: [Python-checkins] cpython: Remove the 'strict' argument to Parser, deprecated since 2.4. Message-ID: http://hg.python.org/cpython/rev/5a71d41ea20a changeset: 69038:5a71d41ea20a user: R David Murray date: Tue Mar 29 11:32:35 2011 -0400 summary: Remove the 'strict' argument to Parser, deprecated since 2.4. files: Doc/library/email.parser.rst | 11 +++-------- Lib/email/parser.py | 24 ++---------------------- Misc/NEWS | 3 +++ 3 files changed, 8 insertions(+), 30 deletions(-) diff --git a/Doc/library/email.parser.rst b/Doc/library/email.parser.rst --- a/Doc/library/email.parser.rst +++ b/Doc/library/email.parser.rst @@ -102,7 +102,7 @@ class. -.. class:: Parser(_class=email.message.Message, strict=None) +.. class:: Parser(_class=email.message.Message) The constructor for the :class:`Parser` class takes an optional argument *_class*. This must be a callable factory (such as a function or a class), and @@ -110,13 +110,8 @@ :class:`~email.message.Message` (see :mod:`email.message`). The factory will be called without arguments. - The optional *strict* flag is ignored. - - .. deprecated:: 2.4 - Because the :class:`Parser` class is a backward compatible API wrapper - around the new-in-Python 2.4 :class:`FeedParser`, *all* parsing is - effectively non-strict. You should simply stop passing a *strict* flag to - the :class:`Parser` constructor. + .. versionchanged:: 3.2 + Removed the *strict* argument that was deprecated in 2.4. The other public :class:`Parser` methods are: diff --git a/Lib/email/parser.py b/Lib/email/parser.py --- a/Lib/email/parser.py +++ b/Lib/email/parser.py @@ -15,7 +15,7 @@ class Parser: - def __init__(self, *args, **kws): + def __init__(self, _class=Message): """Parser of RFC 2822 and MIME email messages. Creates an in-memory object tree representing the email message, which @@ -31,27 +31,7 @@ must be created. This class must have a constructor that can take zero arguments. Default is Message.Message. """ - if len(args) >= 1: - if '_class' in kws: - raise TypeError("Multiple values for keyword arg '_class'") - kws['_class'] = args[0] - if len(args) == 2: - if 'strict' in kws: - raise TypeError("Multiple values for keyword arg 'strict'") - kws['strict'] = args[1] - if len(args) > 2: - raise TypeError('Too many arguments') - if '_class' in kws: - self._class = kws['_class'] - del kws['_class'] - else: - self._class = Message - if 'strict' in kws: - warnings.warn("'strict' argument is deprecated (and ignored)", - DeprecationWarning, 2) - del kws['strict'] - if kws: - raise TypeError('Unexpected keyword arguments') + self._class = _class def parse(self, fp, headersonly=False): """Create a message structure from the data in a file. diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -87,6 +87,9 @@ Library ------- +- Removed the 'strict' argument to email.parser.Parser, which has been + deprecated since Python 2.4. + - Issue #11256: Fix inspect.getcallargs on functions that take only keyword arguments. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 18:20:50 2011 From: python-checkins at python.org (vinay.sajip) Date: Tue, 29 Mar 2011 18:20:50 +0200 Subject: [Python-checkins] cpython: Closes issue #11557: Added Natalia Bidart's patch to improve test coverage. Message-ID: http://hg.python.org/cpython/rev/c7f7672b70a9 changeset: 69039:c7f7672b70a9 user: Vinay Sajip date: Tue Mar 29 17:20:34 2011 +0100 summary: Closes issue #11557: Added Natalia Bidart's patch to improve test coverage. files: Lib/logging/__init__.py | 8 +- Lib/test/test_logging.py | 537 +++++++++++++++++++++++++- 2 files changed, 518 insertions(+), 27 deletions(-) diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2001-2010 by Vinay Sajip. All Rights Reserved. +# Copyright 2001-2011 by Vinay Sajip. All Rights Reserved. # # Permission to use, copy, modify, and distribute this software and its # documentation for any purpose and without fee is hereby granted, @@ -18,7 +18,7 @@ Logging package for Python. Based on PEP 282 and comments thereto in comp.lang.python, and influenced by Apache's log4j system. -Copyright (C) 2001-2010 Vinay Sajip. All Rights Reserved. +Copyright (C) 2001-2011 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! """ @@ -1826,10 +1826,10 @@ package. """ def handle(self, record): - pass + """Stub.""" def emit(self, record): - pass + """Stub.""" def createLock(self): self.lock = None diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -40,7 +40,7 @@ import struct import sys import tempfile -from test.support import captured_stdout, run_with_locale, run_unittest +from test.support import captured_stdout, run_with_locale, run_unittest, patch import textwrap import unittest import warnings @@ -1082,28 +1082,39 @@ def test_warnings(self): with warnings.catch_warnings(): logging.captureWarnings(True) - try: - warnings.filterwarnings("always", category=UserWarning) - file = io.StringIO() - h = logging.StreamHandler(file) - logger = logging.getLogger("py.warnings") - logger.addHandler(h) - warnings.warn("I'm warning you...") - logger.removeHandler(h) - s = file.getvalue() - h.close() - self.assertTrue(s.find("UserWarning: I'm warning you...\n") > 0) - - #See if an explicit file uses the original implementation - file = io.StringIO() - warnings.showwarning("Explicit", UserWarning, "dummy.py", 42, - file, "Dummy line") - s = file.getvalue() - file.close() - self.assertEqual(s, - "dummy.py:42: UserWarning: Explicit\n Dummy line\n") - finally: - logging.captureWarnings(False) + self.addCleanup(lambda: logging.captureWarnings(False)) + warnings.filterwarnings("always", category=UserWarning) + stream = io.StringIO() + h = logging.StreamHandler(stream) + logger = logging.getLogger("py.warnings") + logger.addHandler(h) + warnings.warn("I'm warning you...") + logger.removeHandler(h) + s = stream.getvalue() + h.close() + self.assertTrue(s.find("UserWarning: I'm warning you...\n") > 0) + + #See if an explicit file uses the original implementation + a_file = io.StringIO() + warnings.showwarning("Explicit", UserWarning, "dummy.py", 42, + a_file, "Dummy line") + s = a_file.getvalue() + a_file.close() + self.assertEqual(s, + "dummy.py:42: UserWarning: Explicit\n Dummy line\n") + + def test_warnings_no_handlers(self): + with warnings.catch_warnings(): + logging.captureWarnings(True) + self.addCleanup(lambda: logging.captureWarnings(False)) + + # confirm our assumption: no loggers are set + logger = logging.getLogger("py.warnings") + assert logger.handlers == [] + + warnings.showwarning("Explicit", UserWarning, "dummy.py", 42) + self.assertTrue(len(logger.handlers) == 1) + self.assertIsInstance(logger.handlers[0], logging.NullHandler) def formatFunc(format, datefmt=None): @@ -2007,6 +2018,11 @@ self.assertEqual(logged, ['should appear in logged']) + def test_set_log_record_factory(self): + man = logging.Manager(None) + expected = object() + man.setLogRecordFactory(expected) + self.assertEqual(man.logRecordFactory, expected) class ChildLoggerTest(BaseTest): def test_child_loggers(self): @@ -2198,6 +2214,479 @@ logging.raiseExceptions = old_raise_exceptions +class FakeHandler: + + def __init__(self, identifier, called): + for method in ('acquire', 'flush', 'close', 'release'): + setattr(self, method, self.record_call(identifier, method, called)) + + def record_call(self, identifier, method_name, called): + def inner(): + called.append('{} - {}'.format(identifier, method_name)) + return inner + + +class RecordingHandler(logging.NullHandler): + + def __init__(self, *args, **kwargs): + super(RecordingHandler, self).__init__(*args, **kwargs) + self.records = [] + + def handle(self, record): + """Keep track of all the emitted records.""" + self.records.append(record) + + +class ShutdownTest(BaseTest): + + """Tets suite for the shutdown method.""" + + def setUp(self): + super(ShutdownTest, self).setUp() + self.called = [] + + raise_exceptions = logging.raiseExceptions + self.addCleanup(lambda: setattr(logging, 'raiseExceptions', raise_exceptions)) + + def raise_error(self, error): + def inner(): + raise error() + return inner + + def test_no_failure(self): + # create some fake handlers + handler0 = FakeHandler(0, self.called) + handler1 = FakeHandler(1, self.called) + handler2 = FakeHandler(2, self.called) + + # create live weakref to those handlers + handlers = map(logging.weakref.ref, [handler0, handler1, handler2]) + + logging.shutdown(handlerList=list(handlers)) + + expected = ['2 - acquire', '2 - flush', '2 - close', '2 - release', + '1 - acquire', '1 - flush', '1 - close', '1 - release', + '0 - acquire', '0 - flush', '0 - close', '0 - release'] + self.assertEqual(expected, self.called) + + def _test_with_failure_in_method(self, method, error): + handler = FakeHandler(0, self.called) + setattr(handler, method, self.raise_error(error)) + handlers = [logging.weakref.ref(handler)] + + logging.shutdown(handlerList=list(handlers)) + + self.assertEqual('0 - release', self.called[-1]) + + def test_with_ioerror_in_acquire(self): + self._test_with_failure_in_method('acquire', IOError) + + def test_with_ioerror_in_flush(self): + self._test_with_failure_in_method('flush', IOError) + + def test_with_ioerror_in_close(self): + self._test_with_failure_in_method('close', IOError) + + def test_with_valueerror_in_acquire(self): + self._test_with_failure_in_method('acquire', ValueError) + + def test_with_valueerror_in_flush(self): + self._test_with_failure_in_method('flush', ValueError) + + def test_with_valueerror_in_close(self): + self._test_with_failure_in_method('close', ValueError) + + def test_with_other_error_in_acquire_without_raise(self): + logging.raiseExceptions = False + self._test_with_failure_in_method('acquire', IndexError) + + def test_with_other_error_in_flush_without_raise(self): + logging.raiseExceptions = False + self._test_with_failure_in_method('flush', IndexError) + + def test_with_other_error_in_close_without_raise(self): + logging.raiseExceptions = False + self._test_with_failure_in_method('close', IndexError) + + def test_with_other_error_in_acquire_with_raise(self): + logging.raiseExceptions = True + self.assertRaises(IndexError, self._test_with_failure_in_method, + 'acquire', IndexError) + + def test_with_other_error_in_flush_with_raise(self): + logging.raiseExceptions = True + self.assertRaises(IndexError, self._test_with_failure_in_method, + 'flush', IndexError) + + def test_with_other_error_in_close_with_raise(self): + logging.raiseExceptions = True + self.assertRaises(IndexError, self._test_with_failure_in_method, + 'close', IndexError) + + +class ModuleLevelMiscTest(BaseTest): + + """Tets suite for some module level methods.""" + + def test_disable(self): + old_disable = logging.root.manager.disable + # confirm our assumptions are correct + assert old_disable == 0 + self.addCleanup(lambda: logging.disable(old_disable)) + + logging.disable(83) + self.assertEqual(logging.root.manager.disable, 83) + + def _test_log(self, method, level=None): + called = [] + patch(self, logging, 'basicConfig', + lambda *a, **kw: called.append(a, kw)) + + recording = RecordingHandler() + logging.root.addHandler(recording) + + log_method = getattr(logging, method) + if level is not None: + log_method(level, "test me: %r", recording) + else: + log_method("test me: %r", recording) + + self.assertEqual(len(recording.records), 1) + record = recording.records[0] + self.assertEqual(record.getMessage(), "test me: %r" % recording) + + expected_level = level if level is not None else getattr(logging, method.upper()) + self.assertEqual(record.levelno, expected_level) + + # basicConfig was not called! + self.assertEqual(called, []) + + def test_log(self): + self._test_log('log', logging.ERROR) + + def test_debug(self): + self._test_log('debug') + + def test_info(self): + self._test_log('info') + + def test_warning(self): + self._test_log('warning') + + def test_error(self): + self._test_log('error') + + def test_critical(self): + self._test_log('critical') + + def test_set_logger_class(self): + self.assertRaises(TypeError, logging.setLoggerClass, object) + + class MyLogger(logging.Logger): + pass + + logging.setLoggerClass(MyLogger) + self.assertEqual(logging.getLoggerClass(), MyLogger) + + logging.setLoggerClass(logging.Logger) + self.assertEqual(logging.getLoggerClass(), logging.Logger) + + +class BasicConfigTest(unittest.TestCase): + + """Tets suite for logging.basicConfig.""" + + def setUp(self): + super(BasicConfigTest, self).setUp() + handlers = logging.root.handlers + self.addCleanup(lambda: setattr(logging.root, 'handlers', handlers)) + logging.root.handlers = [] + + def tearDown(self): + logging.shutdown() + super(BasicConfigTest, self).tearDown() + + def test_no_kwargs(self): + logging.basicConfig() + + # handler defaults to a StreamHandler to sys.stderr + self.assertEqual(len(logging.root.handlers), 1) + handler = logging.root.handlers[0] + self.assertIsInstance(handler, logging.StreamHandler) + self.assertEqual(handler.stream, sys.stderr) + + formatter = handler.formatter + # format defaults to logging.BASIC_FORMAT + self.assertEqual(formatter._style._fmt, logging.BASIC_FORMAT) + # datefmt defaults to None + self.assertIsNone(formatter.datefmt) + # style defaults to % + self.assertIsInstance(formatter._style, logging.PercentStyle) + + # level is not explicitely set + self.assertEqual(logging.root.level, logging.WARNING) + + def test_filename(self): + logging.basicConfig(filename='test.log') + + self.assertEqual(len(logging.root.handlers), 1) + handler = logging.root.handlers[0] + self.assertIsInstance(handler, logging.FileHandler) + + expected = logging.FileHandler('test.log', 'a') + self.addCleanup(expected.close) + self.assertEqual(handler.stream.mode, expected.stream.mode) + self.assertEqual(handler.stream.name, expected.stream.name) + + def test_filemode(self): + logging.basicConfig(filename='test.log', filemode='wb') + + handler = logging.root.handlers[0] + expected = logging.FileHandler('test.log', 'wb') + self.addCleanup(expected.close) + self.assertEqual(handler.stream.mode, expected.stream.mode) + + def test_stream(self): + stream = io.StringIO() + self.addCleanup(stream.close) + logging.basicConfig(stream=stream) + + self.assertEqual(len(logging.root.handlers), 1) + handler = logging.root.handlers[0] + self.assertIsInstance(handler, logging.StreamHandler) + self.assertEqual(handler.stream, stream) + + def test_format(self): + logging.basicConfig(format='foo') + + formatter = logging.root.handlers[0].formatter + self.assertEqual(formatter._style._fmt, 'foo') + + def test_datefmt(self): + logging.basicConfig(datefmt='bar') + + formatter = logging.root.handlers[0].formatter + self.assertEqual(formatter.datefmt, 'bar') + + def test_style(self): + logging.basicConfig(style='$') + + formatter = logging.root.handlers[0].formatter + self.assertIsInstance(formatter._style, logging.StringTemplateStyle) + + def test_level(self): + old_level = logging.root.level + self.addCleanup(lambda: logging.root.setLevel(old_level)) + + logging.basicConfig(level=57) + self.assertEqual(logging.root.level, 57) + + def _test_log(self, method, level=None): + # logging.root has no handlers so basicConfig should be called + called = [] + + old_basic_config = logging.basicConfig + def my_basic_config(*a, **kw): + old_basic_config() + old_level = logging.root.level + logging.root.setLevel(100) # avoid having messages in stderr + self.addCleanup(lambda: logging.root.setLevel(old_level)) + called.append((a, kw)) + + patch(self, logging, 'basicConfig', my_basic_config) + + log_method = getattr(logging, method) + if level is not None: + log_method(level, "test me") + else: + log_method("test me") + + # basicConfig was called with no arguments + self.assertEqual(called, [((), {})]) + + def test_log(self): + self._test_log('log', logging.WARNING) + + def test_debug(self): + self._test_log('debug') + + def test_info(self): + self._test_log('info') + + def test_warning(self): + self._test_log('warning') + + def test_error(self): + self._test_log('error') + + def test_critical(self): + self._test_log('critical') + + +class LoggerAdapterTest(unittest.TestCase): + + def setUp(self): + super(LoggerAdapterTest, self).setUp() + old_handler_list = logging._handlerList[:] + + self.recording = RecordingHandler() + self.logger = logging.root + self.logger.addHandler(self.recording) + self.addCleanup(lambda: self.logger.removeHandler(self.recording)) + self.addCleanup(self.recording.close) + + def cleanup(): + logging._handlerList[:] = old_handler_list + + self.addCleanup(cleanup) + self.addCleanup(logging.shutdown) + self.adapter = logging.LoggerAdapter(logger=self.logger, extra=None) + + def test_exception(self): + msg = 'testing exception: %r' + exc = None + try: + assert False + except AssertionError as e: + exc = e + self.adapter.exception(msg, self.recording) + + self.assertEqual(len(self.recording.records), 1) + record = self.recording.records[0] + self.assertEqual(record.levelno, logging.ERROR) + self.assertEqual(record.msg, msg) + self.assertEqual(record.args, (self.recording,)) + self.assertEqual(record.exc_info, + (exc.__class__, exc, exc.__traceback__)) + + def test_critical(self): + msg = 'critical test! %r' + self.adapter.critical(msg, self.recording) + + self.assertEqual(len(self.recording.records), 1) + record = self.recording.records[0] + self.assertEqual(record.levelno, logging.CRITICAL) + self.assertEqual(record.msg, msg) + self.assertEqual(record.args, (self.recording,)) + + def test_is_enabled_for(self): + old_disable = self.adapter.logger.manager.disable + self.adapter.logger.manager.disable = 33 + self.addCleanup(lambda: setattr(self.adapter.logger.manager, + 'disable', old_disable)) + self.assertFalse(self.adapter.isEnabledFor(32)) + + def test_has_handlers(self): + self.assertTrue(self.adapter.hasHandlers()) + + for handler in self.logger.handlers: + self.logger.removeHandler(handler) + assert not self.logger.hasHandlers() + + self.assertFalse(self.adapter.hasHandlers()) + + +class LoggerTest(BaseTest): + + def setUp(self): + super(LoggerTest, self).setUp() + self.recording = RecordingHandler() + self.logger = logging.Logger(name='blah') + self.logger.addHandler(self.recording) + self.addCleanup(lambda: self.logger.removeHandler(self.recording)) + self.addCleanup(self.recording.close) + self.addCleanup(logging.shutdown) + + def test_set_invalid_level(self): + self.assertRaises(TypeError, self.logger.setLevel, object()) + + def test_exception(self): + msg = 'testing exception: %r' + exc = None + try: + assert False + except AssertionError as e: + exc = e + self.logger.exception(msg, self.recording) + + self.assertEqual(len(self.recording.records), 1) + record = self.recording.records[0] + self.assertEqual(record.levelno, logging.ERROR) + self.assertEqual(record.msg, msg) + self.assertEqual(record.args, (self.recording,)) + self.assertEqual(record.exc_info, + (exc.__class__, exc, exc.__traceback__)) + + def test_log_invalid_level_with_raise(self): + old_raise = logging.raiseExceptions + self.addCleanup(lambda: setattr(logging, 'raiseExecptions', old_raise)) + + logging.raiseExceptions = True + self.assertRaises(TypeError, self.logger.log, '10', 'test message') + + def test_log_invalid_level_no_raise(self): + old_raise = logging.raiseExceptions + self.addCleanup(lambda: setattr(logging, 'raiseExecptions', old_raise)) + + logging.raiseExceptions = False + self.logger.log('10', 'test message') # no exception happens + + def test_find_caller_with_stack_info(self): + called = [] + patch(self, logging.traceback, 'print_stack', + lambda f, file: called.append(file.getvalue())) + + self.logger.findCaller(stack_info=True) + + self.assertEqual(len(called), 1) + self.assertEqual('Stack (most recent call last):\n', called[0]) + + def test_make_record_with_extra_overwrite(self): + name = 'my record' + level = 13 + fn = lno = msg = args = exc_info = func = sinfo = None + rv = logging._logRecordFactory(name, level, fn, lno, msg, args, + exc_info, func, sinfo) + + for key in ('message', 'asctime') + tuple(rv.__dict__.keys()): + extra = {key: 'some value'} + self.assertRaises(KeyError, self.logger.makeRecord, name, level, + fn, lno, msg, args, exc_info, + extra=extra, sinfo=sinfo) + + def test_make_record_with_extra_no_overwrite(self): + name = 'my record' + level = 13 + fn = lno = msg = args = exc_info = func = sinfo = None + extra = {'valid_key': 'some value'} + result = self.logger.makeRecord(name, level, fn, lno, msg, args, + exc_info, extra=extra, sinfo=sinfo) + self.assertIn('valid_key', result.__dict__) + + def test_has_handlers(self): + self.assertTrue(self.logger.hasHandlers()) + + for handler in self.logger.handlers: + self.logger.removeHandler(handler) + assert not self.logger.hasHandlers() + + self.assertFalse(self.logger.hasHandlers()) + + def test_has_handlers_no_propagate(self): + child_logger = logging.getLogger('blah.child') + child_logger.propagate = False + assert child_logger.handlers == [] + + self.assertFalse(child_logger.hasHandlers()) + + def test_is_enabled_for(self): + old_disable = self.logger.manager.disable + self.logger.manager.disable = 23 + self.addCleanup(lambda: setattr(self.logger.manager, + 'disable', old_disable)) + self.assertFalse(self.logger.isEnabledFor(22)) + + class BaseFileTest(BaseTest): "Base class for handler tests that write log files" @@ -2319,6 +2808,8 @@ EncodingTest, WarningsTest, ConfigDictTest, ManagerTest, FormatterTest, LogRecordFactoryTest, ChildLoggerTest, QueueHandlerTest, + ShutdownTest, ModuleLevelMiscTest, BasicConfigTest, + LoggerAdapterTest, LoggerTest, RotatingFileHandlerTest, LastResortTest, TimedRotatingFileHandlerTest -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 21:00:22 2011 From: python-checkins at python.org (ezio.melotti) Date: Tue, 29 Mar 2011 21:00:22 +0200 Subject: [Python-checkins] devguide: Add a table of contents to the FAQ. Message-ID: http://hg.python.org/devguide/rev/f722956afeac changeset: 405:f722956afeac user: Ezio Melotti date: Tue Mar 29 22:00:13 2011 +0300 summary: Add a table of contents to the FAQ. files: faq.rst | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -3,6 +3,9 @@ Python Developer FAQ ~~~~~~~~~~~~~~~~~~~~ +.. contents:: + :local: + Version Control ================================== -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Tue Mar 29 21:42:10 2011 From: python-checkins at python.org (ezio.melotti) Date: Tue, 29 Mar 2011 21:42:10 +0200 Subject: [Python-checkins] devguide: Add a FAQ about splitting files. Message-ID: http://hg.python.org/devguide/rev/2903907665c1 changeset: 406:2903907665c1 user: Ezio Melotti date: Tue Mar 29 22:42:03 2011 +0300 summary: Add a FAQ about splitting files. files: faq.rst | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/faq.rst b/faq.rst --- a/faq.rst +++ b/faq.rst @@ -382,6 +382,24 @@ the file(s) to your local repository. +What's the best way to split a file into several files? +------------------------------------------------------------------------------- + +To split a file into several files (e.g. a module converted to a package or a +long doc file divided in two separate documents) use ``hg copy``:: + + hg copy module.rst module2.rst + +and then remove the parts that are not necessary from ``module.rst`` and +``module2.rst``. This allows Mercurial to know that the content of +``module2.rst`` used to be in ``module.rst``, and will make subsequent merges +easier. If necessary, you can also use ``hg copy`` several times. + +If you simply create ``module2.rst``, add it with ``hg add``, and copy part of +the content from ``module.rst``, Mercurial won't know that the two file are +related. + + .. _hg-commit: How do I commit a change to a file? -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Tue Mar 29 22:10:55 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:10:55 +0200 Subject: [Python-checkins] cpython (2.5): Issue 22663: fix redirect vulnerability in urllib/urllib2. Message-ID: http://hg.python.org/cpython/rev/dd852a0f92d6 changeset: 69040:dd852a0f92d6 branch: 2.5 parent: 68801:f9763c363cc3 user: guido at google.com date: Thu Mar 24 08:07:45 2011 -0700 summary: Issue 22663: fix redirect vulnerability in urllib/urllib2. files: Lib/urllib.py | 13 +++++++++++-- Lib/urllib2.py | 7 +++++++ 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Lib/urllib.py b/Lib/urllib.py --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -638,10 +638,19 @@ newurl = headers['uri'] else: return + + # In case the server sent a relative URL, join with original: + newurl = basejoin(self.type + ":" + url, newurl) + + # For security reasons we do not allow redirects to protocols + # other than HTTP or HTTPS. + newurl_lower = newurl.lower() + if not (newurl_lower.startswith('http://') or + newurl_lower.startswith('https://')): + return + void = fp.read() fp.close() - # In case the server sent a relative URL, join with original: - newurl = basejoin(self.type + ":" + url, newurl) return self.open(newurl) def http_error_301(self, url, fp, errcode, errmsg, headers, data=None): diff --git a/Lib/urllib2.py b/Lib/urllib2.py --- a/Lib/urllib2.py +++ b/Lib/urllib2.py @@ -555,6 +555,13 @@ return newurl = urlparse.urljoin(req.get_full_url(), newurl) + # For security reasons we do not allow redirects to protocols + # other than HTTP or HTTPS. + newurl_lower = newurl.lower() + if not (newurl_lower.startswith('http://') or + newurl_lower.startswith('https://')): + return + # XXX Probably want to forget about the state of the current # request, although that might interact poorly with other # handlers that also use handler-specific request attributes -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:10:56 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:10:56 +0200 Subject: [Python-checkins] cpython (2.5): Add FTP to the allowed url schemes. Add Misc/NEWS. Message-ID: http://hg.python.org/cpython/rev/ca3b117c40f3 changeset: 69041:ca3b117c40f3 branch: 2.5 user: guido at google.com date: Thu Mar 24 10:44:17 2011 -0700 summary: Add FTP to the allowed url schemes. Add Misc/NEWS. files: Lib/urllib.py | 5 +++-- Lib/urllib2.py | 5 +++-- Misc/NEWS | 3 +++ 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Lib/urllib.py b/Lib/urllib.py --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -643,10 +643,11 @@ newurl = basejoin(self.type + ":" + url, newurl) # For security reasons we do not allow redirects to protocols - # other than HTTP or HTTPS. + # other than HTTP, HTTPS or FTP. newurl_lower = newurl.lower() if not (newurl_lower.startswith('http://') or - newurl_lower.startswith('https://')): + newurl_lower.startswith('https://') or + newurl_lower.startswith('ftp://')): return void = fp.read() diff --git a/Lib/urllib2.py b/Lib/urllib2.py --- a/Lib/urllib2.py +++ b/Lib/urllib2.py @@ -556,10 +556,11 @@ newurl = urlparse.urljoin(req.get_full_url(), newurl) # For security reasons we do not allow redirects to protocols - # other than HTTP or HTTPS. + # other than HTTP, HTTPS or FTP. newurl_lower = newurl.lower() if not (newurl_lower.startswith('http://') or - newurl_lower.startswith('https://')): + newurl_lower.startswith('https://') or + newurl_lower.startswith('ftp://')): return # XXX Probably want to forget about the state of the current diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,9 @@ Library ------- +- Issue #11662: Make urllib and urllib2 ignore redirections if the + scheme is not HTTP, HTTPS or FTP. This fixes a security hole. + - Issue #8674: Fixed a number of incorrect or undefined-behaviour-inducing overflow checks in the audioop module (CVE-2010-1634). -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:10:56 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:10:56 +0200 Subject: [Python-checkins] cpython (2.5): Add tests for the urllib[2] vulnerability. Change to raise exceptions. Message-ID: http://hg.python.org/cpython/rev/9d06d5eb1a7e changeset: 69042:9d06d5eb1a7e branch: 2.5 user: guido at google.com date: Mon Mar 28 13:47:01 2011 -0700 summary: Add tests for the urllib[2] vulnerability. Change to raise exceptions. files: Lib/test/test_urllib.py | 14 ++++++++++++++ Lib/test/test_urllib2.py | 21 +++++++++++++++++++++ Lib/urllib.py | 10 ++++++---- Lib/urllib2.py | 5 ++++- 4 files changed, 45 insertions(+), 5 deletions(-) diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -122,6 +122,20 @@ finally: self.unfakehttp() + def test_invalid_redirect(self): + # urlopen() should raise IOError for many error codes. + self.fakehttp("""HTTP/1.1 302 Found +Date: Wed, 02 Jan 2008 03:03:54 GMT +Server: Apache/1.3.33 (Debian GNU/Linux) mod_ssl/2.8.22 OpenSSL/0.9.7e +Location: file:README +Connection: close +Content-Type: text/html; charset=iso-8859-1 +""") + try: + self.assertRaises(IOError, urllib.urlopen, "http://python.org/") + finally: + self.unfakehttp() + def test_empty_socket(self): """urlopen() raises IOError if the underlying socket does not send any data. (#1680230) """ diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -857,6 +857,27 @@ self.assertEqual(count, urllib2.HTTPRedirectHandler.max_redirections) + def test_invalid_redirect(self): + from_url = "http://example.com/a.html" + valid_schemes = ['http', 'https', 'ftp'] + invalid_schemes = ['file', 'imap', 'ldap'] + schemeless_url = "example.com/b.html" + h = urllib2.HTTPRedirectHandler() + o = h.parent = MockOpener() + req = Request(from_url) + + for scheme in invalid_schemes: + invalid_url = scheme + '://' + schemeless_url + self.assertRaises(urllib2.HTTPError, h.http_error_302, + req, MockFile(), 302, "Security Loophole", + MockHeaders({"location": invalid_url})) + + for scheme in valid_schemes: + valid_url = scheme + '://' + schemeless_url + h.http_error_302(req, MockFile(), 302, "That's fine", + MockHeaders({"location": valid_url})) + self.assertEqual(o.req.get_full_url(), valid_url) + def test_cookie_redirect(self): # cookies shouldn't leak into redirected requests from cookielib import CookieJar diff --git a/Lib/urllib.py b/Lib/urllib.py --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -638,7 +638,8 @@ newurl = headers['uri'] else: return - + void = fp.read() + fp.close() # In case the server sent a relative URL, join with original: newurl = basejoin(self.type + ":" + url, newurl) @@ -648,10 +649,11 @@ if not (newurl_lower.startswith('http://') or newurl_lower.startswith('https://') or newurl_lower.startswith('ftp://')): - return + raise IOError('redirect error', errcode, + errmsg + " - Redirection to url '%s' is not allowed" % + newurl, + headers) - void = fp.read() - fp.close() return self.open(newurl) def http_error_301(self, url, fp, errcode, errmsg, headers, data=None): diff --git a/Lib/urllib2.py b/Lib/urllib2.py --- a/Lib/urllib2.py +++ b/Lib/urllib2.py @@ -561,7 +561,10 @@ if not (newurl_lower.startswith('http://') or newurl_lower.startswith('https://') or newurl_lower.startswith('ftp://')): - return + raise HTTPError(newurl, code, + msg + " - Redirection to url '%s' is not allowed" % + newurl, + headers, fp) # XXX Probably want to forget about the state of the current # request, although that might interact poorly with other -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:11:02 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:11:02 +0200 Subject: [Python-checkins] cpython (2.5): Add CVE number to urllib/urllib2 news item. Message-ID: http://hg.python.org/cpython/rev/f03e2acb9826 changeset: 69043:f03e2acb9826 branch: 2.5 user: guido at google.com date: Mon Mar 28 13:53:40 2011 -0700 summary: Add CVE number to urllib/urllib2 news item. files: Misc/NEWS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -13,7 +13,7 @@ ------- - Issue #11662: Make urllib and urllib2 ignore redirections if the - scheme is not HTTP, HTTPS or FTP. This fixes a security hole. + scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). - Issue #8674: Fixed a number of incorrect or undefined-behaviour-inducing overflow checks in the audioop module (CVE-2010-1634). -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:11:04 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:11:04 +0200 Subject: [Python-checkins] cpython (2.5): Adding .hgignore (copied from default branch). Message-ID: http://hg.python.org/cpython/rev/92293101839c changeset: 69044:92293101839c branch: 2.5 user: guido at google.com date: Tue Mar 29 09:53:33 2011 -0700 summary: Adding .hgignore (copied from default branch). files: .hgignore | 66 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 66 insertions(+), 0 deletions(-) diff --git a/.hgignore b/.hgignore new file mode 100644 --- /dev/null +++ b/.hgignore @@ -0,0 +1,66 @@ +.gdb_history +.purify +.svn/ +Makefile$ +Makefile.pre$ +TAGS$ +autom4te.cache$ +build/ +buildno$ +config.cache +config.log +config.status +config.status.lineno +db_home +platform$ +pyconfig.h$ +python$ +python.exe$ +reflog.txt$ +tags$ +Lib/plat-mac/errors.rsrc.df.rsrc +Doc/tools/sphinx/ +Doc/tools/docutils/ +Doc/tools/jinja/ +Doc/tools/jinja2/ +Doc/tools/pygments/ +Misc/python.pc +Modules/Setup$ +Modules/Setup.config +Modules/Setup.local +Modules/config.c +Modules/ld_so_aix$ +Parser/pgen$ +Parser/pgen.stamp$ +^core +^python-gdb.py +^python.exe-gdb.py +^pybuilddir.txt + +syntax: glob +libpython*.a +*.swp +*.o +*.pyc +*.pyo +*.pyd +*.cover +*.orig +*.rej +*~ +Lib/lib2to3/*.pickle +Lib/test/data/* +Misc/*.wpu +PC/python_nt*.h +PC/pythonnt_rc*.h +PC/*.obj +PCbuild/*.exe +PCbuild/*.dll +PCbuild/*.pdb +PCbuild/*.lib +PCbuild/*.exp +PCbuild/*.o +PCbuild/*.ncb +PCbuild/*.bsc +PCbuild/Win32-temp-* +__pycache__ -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:11:05 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:11:05 +0200 Subject: [Python-checkins] cpython (merge 2.5 -> 2.6): Merge urllib/urllib2 security fix from 2.5 branch. Message-ID: http://hg.python.org/cpython/rev/c15ab33017ff changeset: 69045:c15ab33017ff branch: 2.6 parent: 68802:b99c94261225 parent: 69044:92293101839c user: guido at google.com date: Tue Mar 29 10:48:23 2011 -0700 summary: Merge urllib/urllib2 security fix from 2.5 branch. files: Lib/test/test_urllib.py | 14 ++++++++++++++ Lib/test/test_urllib2.py | 22 ++++++++++++++++++++++ Lib/urllib.py | 12 ++++++++++++ Lib/urllib2.py | 11 +++++++++++ Misc/NEWS | 2 ++ 5 files changed, 61 insertions(+), 0 deletions(-) diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -162,6 +162,20 @@ finally: self.unfakehttp() + def test_invalid_redirect(self): + # urlopen() should raise IOError for many error codes. + self.fakehttp("""HTTP/1.1 302 Found +Date: Wed, 02 Jan 2008 03:03:54 GMT +Server: Apache/1.3.33 (Debian GNU/Linux) mod_ssl/2.8.22 OpenSSL/0.9.7e +Location: file:README +Connection: close +Content-Type: text/html; charset=iso-8859-1 +""") + try: + self.assertRaises(IOError, urllib.urlopen, "http://python.org/") + finally: + self.unfakehttp() + def test_empty_socket(self): # urlopen() raises IOError if the underlying socket does not send any # data. (#1680230) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -942,6 +942,28 @@ self.assertEqual(count, urllib2.HTTPRedirectHandler.max_redirections) + def test_invalid_redirect(self): + from_url = "http://example.com/a.html" + valid_schemes = ['http', 'https', 'ftp'] + invalid_schemes = ['file', 'imap', 'ldap'] + schemeless_url = "example.com/b.html" + h = urllib2.HTTPRedirectHandler() + o = h.parent = MockOpener() + req = Request(from_url) + req.timeout = socket._GLOBAL_DEFAULT_TIMEOUT + + for scheme in invalid_schemes: + invalid_url = scheme + '://' + schemeless_url + self.assertRaises(urllib2.HTTPError, h.http_error_302, + req, MockFile(), 302, "Security Loophole", + MockHeaders({"location": invalid_url})) + + for scheme in valid_schemes: + valid_url = scheme + '://' + schemeless_url + h.http_error_302(req, MockFile(), 302, "That's fine", + MockHeaders({"location": valid_url})) + self.assertEqual(o.req.get_full_url(), valid_url) + def test_cookie_redirect(self): # cookies shouldn't leak into redirected requests from cookielib import CookieJar diff --git a/Lib/urllib.py b/Lib/urllib.py --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -652,6 +652,18 @@ fp.close() # In case the server sent a relative URL, join with original: newurl = basejoin(self.type + ":" + url, newurl) + + # For security reasons we do not allow redirects to protocols + # other than HTTP, HTTPS or FTP. + newurl_lower = newurl.lower() + if not (newurl_lower.startswith('http://') or + newurl_lower.startswith('https://') or + newurl_lower.startswith('ftp://')): + raise IOError('redirect error', errcode, + errmsg + " - Redirection to url '%s' is not allowed" % + newurl, + headers) + return self.open(newurl) def http_error_301(self, url, fp, errcode, errmsg, headers, data=None): diff --git a/Lib/urllib2.py b/Lib/urllib2.py --- a/Lib/urllib2.py +++ b/Lib/urllib2.py @@ -578,6 +578,17 @@ newurl = urlparse.urljoin(req.get_full_url(), newurl) + # For security reasons we do not allow redirects to protocols + # other than HTTP, HTTPS or FTP. + newurl_lower = newurl.lower() + if not (newurl_lower.startswith('http://') or + newurl_lower.startswith('https://') or + newurl_lower.startswith('ftp://')): + raise HTTPError(newurl, code, + msg + " - Redirection to url '%s' is not allowed" % + newurl, + headers, fp) + # XXX Probably want to forget about the state of the current # request, although that might interact poorly with other # handlers that also use handler-specific request attributes diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,8 @@ *NOTE: Python 2.6 is in security-fix-only mode. No non-security bug fixes are allowed. Python 2.6.7 and beyond will be source only releases.* +- Issue #11662: Make urllib and urllib2 ignore redirections if the + scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). Core and Builtins ----------------- -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:11:07 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:11:07 +0200 Subject: [Python-checkins] cpython (merge 2.6 -> 2.7): Merge urllib/urllib2 security fix from 2.6 branch. Message-ID: http://hg.python.org/cpython/rev/163dc7be1afd changeset: 69046:163dc7be1afd branch: 2.7 parent: 68856:24179f82b7de parent: 69045:c15ab33017ff user: guido at google.com date: Tue Mar 29 11:14:01 2011 -0700 summary: Merge urllib/urllib2 security fix from 2.6 branch. files: Lib/test/test_urllib.py | 14 ++++++++++++++ Lib/test/test_urllib2.py | 22 ++++++++++++++++++++++ Lib/urllib.py | 12 ++++++++++++ Lib/urllib2.py | 11 +++++++++++ Misc/NEWS | 2 ++ 5 files changed, 61 insertions(+), 0 deletions(-) diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -161,6 +161,20 @@ finally: self.unfakehttp() + def test_invalid_redirect(self): + # urlopen() should raise IOError for many error codes. + self.fakehttp("""HTTP/1.1 302 Found +Date: Wed, 02 Jan 2008 03:03:54 GMT +Server: Apache/1.3.33 (Debian GNU/Linux) mod_ssl/2.8.22 OpenSSL/0.9.7e +Location: file:README +Connection: close +Content-Type: text/html; charset=iso-8859-1 +""") + try: + self.assertRaises(IOError, urllib.urlopen, "http://python.org/") + finally: + self.unfakehttp() + def test_empty_socket(self): # urlopen() raises IOError if the underlying socket does not send any # data. (#1680230) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -969,6 +969,28 @@ self.assertEqual(count, urllib2.HTTPRedirectHandler.max_redirections) + def test_invalid_redirect(self): + from_url = "http://example.com/a.html" + valid_schemes = ['http', 'https', 'ftp'] + invalid_schemes = ['file', 'imap', 'ldap'] + schemeless_url = "example.com/b.html" + h = urllib2.HTTPRedirectHandler() + o = h.parent = MockOpener() + req = Request(from_url) + req.timeout = socket._GLOBAL_DEFAULT_TIMEOUT + + for scheme in invalid_schemes: + invalid_url = scheme + '://' + schemeless_url + self.assertRaises(urllib2.HTTPError, h.http_error_302, + req, MockFile(), 302, "Security Loophole", + MockHeaders({"location": invalid_url})) + + for scheme in valid_schemes: + valid_url = scheme + '://' + schemeless_url + h.http_error_302(req, MockFile(), 302, "That's fine", + MockHeaders({"location": valid_url})) + self.assertEqual(o.req.get_full_url(), valid_url) + def test_cookie_redirect(self): # cookies shouldn't leak into redirected requests from cookielib import CookieJar diff --git a/Lib/urllib.py b/Lib/urllib.py --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -644,6 +644,18 @@ fp.close() # In case the server sent a relative URL, join with original: newurl = basejoin(self.type + ":" + url, newurl) + + # For security reasons we do not allow redirects to protocols + # other than HTTP, HTTPS or FTP. + newurl_lower = newurl.lower() + if not (newurl_lower.startswith('http://') or + newurl_lower.startswith('https://') or + newurl_lower.startswith('ftp://')): + raise IOError('redirect error', errcode, + errmsg + " - Redirection to url '%s' is not allowed" % + newurl, + headers) + return self.open(newurl) def http_error_301(self, url, fp, errcode, errmsg, headers, data=None): diff --git a/Lib/urllib2.py b/Lib/urllib2.py --- a/Lib/urllib2.py +++ b/Lib/urllib2.py @@ -578,6 +578,17 @@ newurl = urlparse.urljoin(req.get_full_url(), newurl) + # For security reasons we do not allow redirects to protocols + # other than HTTP, HTTPS or FTP. + newurl_lower = newurl.lower() + if not (newurl_lower.startswith('http://') or + newurl_lower.startswith('https://') or + newurl_lower.startswith('ftp://')): + raise HTTPError(newurl, code, + msg + " - Redirection to url '%s' is not allowed" % + newurl, + headers, fp) + # XXX Probably want to forget about the state of the current # request, although that might interact poorly with other # handlers that also use handler-specific request attributes diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -42,6 +42,8 @@ Library ------- +- Issue #11662: Make urllib and urllib2 ignore redirections if the + scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). - Issue #10042: Fixed the total_ordering decorator to handle cross-type comparisons that could lead to infinite recursion. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:11:08 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:11:08 +0200 Subject: [Python-checkins] cpython (3.1): Issue 11662: Fix vulnerability in urllib/urllib2. Message-ID: http://hg.python.org/cpython/rev/5937d2119a20 changeset: 69047:5937d2119a20 branch: 3.1 parent: 68898:37ba11d806c5 user: guido at google.com date: Tue Mar 29 11:41:02 2011 -0700 summary: Issue 11662: Fix vulnerability in urllib/urllib2. (This version is a cleaned-up backport of a fix by Senthil Kumaran.) files: Doc/library/urllib.request.rst | 4 +++ Lib/test/test_urllib.py | 16 +++++++++++++ Lib/test/test_urllib2.py | 24 +++++++++++++++++++ Lib/urllib/request.py | 27 ++++++++++++++++++++++ Misc/NEWS | 3 ++ 5 files changed, 74 insertions(+), 0 deletions(-) diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -783,6 +783,10 @@ is the case, :exc:`HTTPError` is raised. See :rfc:`2616` for details of the precise meanings of the various redirection codes. + An :class:`HTTPError` exception raised as a security consideration if the + HTTPRedirectHandler is presented with a redirected url which is not an HTTP, + HTTPS or FTP url. + .. method:: HTTPRedirectHandler.redirect_request(req, fp, code, msg, hdrs, newurl) diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -2,6 +2,7 @@ import urllib.parse import urllib.request +import urllib.error import http.client import email.message import io @@ -183,6 +184,21 @@ finally: self.unfakehttp() + def test_invalid_redirect(self): + # urlopen() should raise IOError for many error codes. + self.fakehttp(b'''HTTP/1.1 302 Found +Date: Wed, 02 Jan 2008 03:03:54 GMT +Server: Apache/1.3.33 (Debian GNU/Linux) mod_ssl/2.8.22 OpenSSL/0.9.7e +Location: file://guidocomputer.athome.com:/python/license +Connection: close +Content-Type: text/html; charset=iso-8859-1 +''') + try: + self.assertRaises(urllib.error.HTTPError, urlopen, + "http://python.org/") + finally: + self.unfakehttp() + def test_empty_socket(self): # urlopen() raises IOError if the underlying socket does not send any # data. (#1680230) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -9,6 +9,7 @@ # The proxy bypass method imported below has logic specific to the OSX # proxy config data structure but is testable on all platforms. from urllib.request import Request, OpenerDirector, _proxy_bypass_macosx_sysconf +import urllib.error # XXX # Request @@ -985,6 +986,29 @@ self.assertEqual(count, urllib.request.HTTPRedirectHandler.max_redirections) + + def test_invalid_redirect(self): + from_url = "http://example.com/a.html" + valid_schemes = ['http','https','ftp'] + invalid_schemes = ['file','imap','ldap'] + schemeless_url = "example.com/b.html" + h = urllib.request.HTTPRedirectHandler() + o = h.parent = MockOpener() + req = Request(from_url) + req.timeout = socket._GLOBAL_DEFAULT_TIMEOUT + + for scheme in invalid_schemes: + invalid_url = scheme + '://' + schemeless_url + self.assertRaises(urllib.error.HTTPError, h.http_error_302, + req, MockFile(), 302, "Security Loophole", + MockHeaders({"location": invalid_url})) + + for scheme in valid_schemes: + valid_url = scheme + '://' + schemeless_url + h.http_error_302(req, MockFile(), 302, "That's fine", + MockHeaders({"location": valid_url})) + self.assertEqual(o.req.get_full_url(), valid_url) + def test_cookie_redirect(self): # cookies shouldn't leak into redirected requests from http.cookiejar import CookieJar diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -528,6 +528,17 @@ # fix a possible malformed URL urlparts = urlparse(newurl) + + # For security reasons we don't allow redirection to anything other + # than http, https or ftp. + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, code, + msg + + " - Redirection to url '%s' is not allowed" % + newurl, + headers, fp) + if not urlparts.path: urlparts = list(urlparts) urlparts[2] = "/" @@ -1864,8 +1875,24 @@ return void = fp.read() fp.close() + # In case the server sent a relative URL, join with original: newurl = urljoin(self.type + ":" + url, newurl) + + urlparts = urlparse(newurl) + + # For security reasons, we don't allow redirection to anything other + # than http, https and ftp. + + # We are using newer HTTPError with older redirect_internal method + # This older method will get deprecated in 3.3 + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, errcode, + errmsg + + " Redirection to url '%s' is not allowed." % newurl, + headers, fp) + return self.open(newurl) def http_error_301(self, url, fp, errcode, errmsg, headers, data=None): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -44,6 +44,9 @@ Library ------- +- Issue #11662: Make urllib and urllib2 ignore redirections if the + scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). + - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:11:17 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:11:17 +0200 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge Issue 11662 from 3.1 branch. Message-ID: http://hg.python.org/cpython/rev/96a6c128822b changeset: 69048:96a6c128822b branch: 3.2 parent: 68899:b801d55a9979 parent: 69047:5937d2119a20 user: guido at google.com date: Tue Mar 29 11:51:26 2011 -0700 summary: Merge Issue 11662 from 3.1 branch. files: Doc/library/urllib.request.rst | 4 +++ Lib/test/test_urllib.py | 16 +++++++++++++ Lib/test/test_urllib2.py | 24 +++++++++++++++++++ Lib/urllib/request.py | 27 ++++++++++++++++++++++ Misc/NEWS | 3 ++ Objects/typeslots.inc | 2 +- 6 files changed, 75 insertions(+), 1 deletions(-) diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -650,6 +650,10 @@ is the case, :exc:`HTTPError` is raised. See :rfc:`2616` for details of the precise meanings of the various redirection codes. + An :class:`HTTPError` exception raised as a security consideration if the + HTTPRedirectHandler is presented with a redirected url which is not an HTTP, + HTTPS or FTP url. + .. method:: HTTPRedirectHandler.redirect_request(req, fp, code, msg, hdrs, newurl) diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -2,6 +2,7 @@ import urllib.parse import urllib.request +import urllib.error import http.client import email.message import io @@ -206,6 +207,21 @@ finally: self.unfakehttp() + def test_invalid_redirect(self): + # urlopen() should raise IOError for many error codes. + self.fakehttp(b'''HTTP/1.1 302 Found +Date: Wed, 02 Jan 2008 03:03:54 GMT +Server: Apache/1.3.33 (Debian GNU/Linux) mod_ssl/2.8.22 OpenSSL/0.9.7e +Location: file://guidocomputer.athome.com:/python/license +Connection: close +Content-Type: text/html; charset=iso-8859-1 +''') + try: + self.assertRaises(urllib.error.HTTPError, urlopen, + "http://python.org/") + finally: + self.unfakehttp() + def test_empty_socket(self): # urlopen() raises IOError if the underlying socket does not send any # data. (#1680230) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -10,6 +10,7 @@ # The proxy bypass method imported below has logic specific to the OSX # proxy config data structure but is testable on all platforms. from urllib.request import Request, OpenerDirector, _proxy_bypass_macosx_sysconf +import urllib.error # XXX # Request @@ -1031,6 +1032,29 @@ self.assertEqual(count, urllib.request.HTTPRedirectHandler.max_redirections) + + def test_invalid_redirect(self): + from_url = "http://example.com/a.html" + valid_schemes = ['http','https','ftp'] + invalid_schemes = ['file','imap','ldap'] + schemeless_url = "example.com/b.html" + h = urllib.request.HTTPRedirectHandler() + o = h.parent = MockOpener() + req = Request(from_url) + req.timeout = socket._GLOBAL_DEFAULT_TIMEOUT + + for scheme in invalid_schemes: + invalid_url = scheme + '://' + schemeless_url + self.assertRaises(urllib.error.HTTPError, h.http_error_302, + req, MockFile(), 302, "Security Loophole", + MockHeaders({"location": invalid_url})) + + for scheme in valid_schemes: + valid_url = scheme + '://' + schemeless_url + h.http_error_302(req, MockFile(), 302, "That's fine", + MockHeaders({"location": valid_url})) + self.assertEqual(o.req.get_full_url(), valid_url) + def test_cookie_redirect(self): # cookies shouldn't leak into redirected requests from http.cookiejar import CookieJar diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -545,6 +545,17 @@ # fix a possible malformed URL urlparts = urlparse(newurl) + + # For security reasons we don't allow redirection to anything other + # than http, https or ftp. + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, code, + msg + + " - Redirection to url '%s' is not allowed" % + newurl, + headers, fp) + if not urlparts.path: urlparts = list(urlparts) urlparts[2] = "/" @@ -1903,8 +1914,24 @@ return void = fp.read() fp.close() + # In case the server sent a relative URL, join with original: newurl = urljoin(self.type + ":" + url, newurl) + + urlparts = urlparse(newurl) + + # For security reasons, we don't allow redirection to anything other + # than http, https and ftp. + + # We are using newer HTTPError with older redirect_internal method + # This older method will get deprecated in 3.3 + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, errcode, + errmsg + + " Redirection to url '%s' is not allowed." % newurl, + headers, fp) + return self.open(newurl) def http_error_301(self, url, fp, errcode, errmsg, headers, data=None): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -49,6 +49,9 @@ Library ------- +- Issue #11662: Make urllib and urllib2 ignore redirections if the + scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). + - Issue #11628: cmp_to_key generated class should use __slots__ - Issue #5537: Fix time2isoz() and time2netscape() functions of diff --git a/Objects/typeslots.inc b/Objects/typeslots.inc --- a/Objects/typeslots.inc +++ b/Objects/typeslots.inc @@ -1,4 +1,4 @@ -/* Generated by typeslots.py $Revision: 87806 $ */ +/* Generated by typeslots.py $Revision$ */ 0, 0, offsetof(PyHeapTypeObject, as_mapping.mp_ass_subscript), -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:11:18 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:11:18 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge Issue 11662 from 3.2 branch. Message-ID: http://hg.python.org/cpython/rev/a778b963eae3 changeset: 69049:a778b963eae3 parent: 68901:4f1cd92fe835 parent: 69048:96a6c128822b user: guido at google.com date: Tue Mar 29 12:02:49 2011 -0700 summary: Merge Issue 11662 from 3.2 branch. files: Doc/library/urllib.request.rst | 4 +++ Lib/test/test_urllib.py | 16 +++++++++++++ Lib/test/test_urllib2.py | 24 +++++++++++++++++++ Lib/urllib/request.py | 27 ++++++++++++++++++++++ Misc/NEWS | 3 ++ 5 files changed, 74 insertions(+), 0 deletions(-) diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -650,6 +650,10 @@ is the case, :exc:`HTTPError` is raised. See :rfc:`2616` for details of the precise meanings of the various redirection codes. + An :class:`HTTPError` exception raised as a security consideration if the + HTTPRedirectHandler is presented with a redirected url which is not an HTTP, + HTTPS or FTP url. + .. method:: HTTPRedirectHandler.redirect_request(req, fp, code, msg, hdrs, newurl) diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -2,6 +2,7 @@ import urllib.parse import urllib.request +import urllib.error import http.client import email.message import io @@ -206,6 +207,21 @@ finally: self.unfakehttp() + def test_invalid_redirect(self): + # urlopen() should raise IOError for many error codes. + self.fakehttp(b'''HTTP/1.1 302 Found +Date: Wed, 02 Jan 2008 03:03:54 GMT +Server: Apache/1.3.33 (Debian GNU/Linux) mod_ssl/2.8.22 OpenSSL/0.9.7e +Location: file://guidocomputer.athome.com:/python/license +Connection: close +Content-Type: text/html; charset=iso-8859-1 +''') + try: + self.assertRaises(urllib.error.HTTPError, urlopen, + "http://python.org/") + finally: + self.unfakehttp() + def test_empty_socket(self): # urlopen() raises IOError if the underlying socket does not send any # data. (#1680230) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -10,6 +10,7 @@ # The proxy bypass method imported below has logic specific to the OSX # proxy config data structure but is testable on all platforms. from urllib.request import Request, OpenerDirector, _proxy_bypass_macosx_sysconf +import urllib.error # XXX # Request @@ -1031,6 +1032,29 @@ self.assertEqual(count, urllib.request.HTTPRedirectHandler.max_redirections) + + def test_invalid_redirect(self): + from_url = "http://example.com/a.html" + valid_schemes = ['http','https','ftp'] + invalid_schemes = ['file','imap','ldap'] + schemeless_url = "example.com/b.html" + h = urllib.request.HTTPRedirectHandler() + o = h.parent = MockOpener() + req = Request(from_url) + req.timeout = socket._GLOBAL_DEFAULT_TIMEOUT + + for scheme in invalid_schemes: + invalid_url = scheme + '://' + schemeless_url + self.assertRaises(urllib.error.HTTPError, h.http_error_302, + req, MockFile(), 302, "Security Loophole", + MockHeaders({"location": invalid_url})) + + for scheme in valid_schemes: + valid_url = scheme + '://' + schemeless_url + h.http_error_302(req, MockFile(), 302, "That's fine", + MockHeaders({"location": valid_url})) + self.assertEqual(o.req.get_full_url(), valid_url) + def test_cookie_redirect(self): # cookies shouldn't leak into redirected requests from http.cookiejar import CookieJar diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -545,6 +545,17 @@ # fix a possible malformed URL urlparts = urlparse(newurl) + + # For security reasons we don't allow redirection to anything other + # than http, https or ftp. + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, code, + msg + + " - Redirection to url '%s' is not allowed" % + newurl, + headers, fp) + if not urlparts.path: urlparts = list(urlparts) urlparts[2] = "/" @@ -1903,8 +1914,24 @@ return void = fp.read() fp.close() + # In case the server sent a relative URL, join with original: newurl = urljoin(self.type + ":" + url, newurl) + + urlparts = urlparse(newurl) + + # For security reasons, we don't allow redirection to anything other + # than http, https and ftp. + + # We are using newer HTTPError with older redirect_internal method + # This older method will get deprecated in 3.3 + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, errcode, + errmsg + + " Redirection to url '%s' is not allowed." % newurl, + headers, fp) + return self.open(newurl) def http_error_301(self, url, fp, errcode, errmsg, headers, data=None): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -84,6 +84,9 @@ Library ------- +- Issue #11662: Make urllib and urllib2 ignore redirections if the + scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). + - Issue #6811: Allow importlib to change a code object's co_filename attribute to match the path to where the source code currently is, not where the code object originally came from. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:11:26 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:11:26 +0200 Subject: [Python-checkins] cpython (merge default -> default): Merge. Message-ID: http://hg.python.org/cpython/rev/adbcba130143 changeset: 69050:adbcba130143 parent: 69049:a778b963eae3 parent: 69039:c7f7672b70a9 user: guido at google.com date: Tue Mar 29 12:09:45 2011 -0700 summary: Merge. files: Doc/library/argparse.rst | 62 +- Doc/library/collections.abc.rst | 58 +- Doc/library/compileall.rst | 3 + Doc/library/email.parser.rst | 11 +- Doc/library/http.cookiejar.rst | 2 +- Doc/library/itertools.rst | 33 +- Doc/library/readline.rst | 2 +- Doc/library/sys.rst | 42 +- Doc/tutorial/interactive.rst | 5 +- Doc/whatsnew/3.2.rst | 4 +- Doc/whatsnew/3.3.rst | 4 + Include/pydebug.h | 1 - Lib/argparse.py | 43 +- Lib/concurrent/futures/process.py | 95 +- Lib/concurrent/futures/thread.py | 45 +- Lib/ctypes/test/test_as_parameter.py | 12 + Lib/email/header.py | 6 + Lib/email/parser.py | 24 +- Lib/idlelib/EditorWindow.py | 27 +- Lib/idlelib/NEWS.txt | 13 +- Lib/inspect.py | 10 +- Lib/logging/__init__.py | 8 +- Lib/msilib/__init__.py | 26 +- Lib/multiprocessing/sharedctypes.py | 4 +- Lib/pydoc.py | 21 +- Lib/re.py | 3 +- Lib/subprocess.py | 65 - Lib/test/test_future1.py | Bin Lib/test/test_future2.py | Bin Lib/test/regrtest.py | 29 +- Lib/test/support.py | 5 + Lib/test/test_argparse.py | 285 +++++++- Lib/test/test_bigmem.py | 81 +- Lib/test/test_cmd_line.py | 6 - Lib/test/test_collections.py | 25 - Lib/test/test_email/__main__.py | 3 + Lib/test/test_email/test_email.py | 14 + Lib/test/test_future.py | 12 +- Lib/test/test_inspect.py | 33 + Lib/test/test_itertools.py | 12 +- Lib/test/test_logging.py | 537 ++++++++++++++- Lib/test/test_mailbox.py | 18 +- Lib/test/test_msilib.py | 46 + Lib/test/test_multiprocessing.py | 15 + Lib/test/test_pydoc.py | 12 +- Lib/test/test_re.py | 75 +- Lib/test/test_subprocess.py | 1 + Lib/test/test_sys.py | 2 +- Lib/test/test_urllibnet.py | 15 +- Lib/test/test_xdrlib.py | 2 + Lib/xdrlib.py | 4 +- Misc/ACKS | 2 + Misc/NEWS | 53 +- Misc/python.man | 13 - Modules/_ctypes/_ctypes.c | 74 +- Modules/getbuildinfo.c | 6 +- Modules/itertoolsmodule.c | 24 +- Objects/bytesobject.c | 8 +- Objects/object.c | 2 - Python/sysmodule.c | 6 +- Tools/buildbot/clean-amd64.bat | 5 +- Tools/buildbot/clean.bat | 3 + 62 files changed, 1610 insertions(+), 447 deletions(-) diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -351,18 +351,20 @@ :class:`ArgumentParser` will see two ``-h/--help`` options (one in the parent and one in the child) and raise an error. +.. note:: + You must fully initialize the parsers before passing them via ``parents=``. + If you change the parent parsers after the child parser, those changes will + not be reflected in the child. + formatter_class ^^^^^^^^^^^^^^^ :class:`ArgumentParser` objects allow the help formatting to be customized by -specifying an alternate formatting class. Currently, there are three such -classes: :class:`argparse.RawDescriptionHelpFormatter`, -:class:`argparse.RawTextHelpFormatter` and -:class:`argparse.ArgumentDefaultsHelpFormatter`. The first two allow more -control over how textual descriptions are displayed, while the last -automatically adds information about argument default values. +specifying an alternate formatting class. +:class:`RawDescriptionHelpFormatter` and :class:`RawTextHelpFormatter` give +more control over how textual descriptions are displayed. By default, :class:`ArgumentParser` objects line-wrap the description_ and epilog_ texts in command-line help messages:: @@ -386,7 +388,7 @@ likewise for this epilog whose whitespace will be cleaned up and whose words will be wrapped across a couple lines -Passing :class:`argparse.RawDescriptionHelpFormatter` as ``formatter_class=`` +Passing :class:`RawDescriptionHelpFormatter` as ``formatter_class=`` indicates that description_ and epilog_ are already correctly formatted and should not be line-wrapped:: @@ -412,11 +414,11 @@ optional arguments: -h, --help show this help message and exit -:class:`RawTextHelpFormatter` maintains whitespace for all sorts of help text +:class:`RawTextHelpFormatter` maintains whitespace for all sorts of help text, including argument descriptions. -The other formatter class available, :class:`ArgumentDefaultsHelpFormatter`, -will add information about the default value of each of the arguments:: +:class:`ArgumentDefaultsHelpFormatter` automatically adds information about +default values to each of the argument help messages:: >>> parser = argparse.ArgumentParser( ... prog='PROG', @@ -433,6 +435,25 @@ -h, --help show this help message and exit --foo FOO FOO! (default: 42) +:class:`MetavarTypeHelpFormatter` uses the name of the type_ argument for each +argument as as the display name for its values (rather than using the dest_ +as the regular formatter does):: + + >>> parser = argparse.ArgumentParser( + ... prog='PROG', + ... formatter_class=argparse.MetavarTypeHelpFormatter) + >>> parser.add_argument('--foo', type=int) + >>> parser.add_argument('bar', type=float) + >>> parser.print_help() + usage: PROG [-h] [--foo int] float + + positional arguments: + float + + optional arguments: + -h, --help show this help message and exit + --foo int + conflict_handler ^^^^^^^^^^^^^^^^ @@ -1314,13 +1335,24 @@ Namespace(accumulate=, integers=[1, 2, 3, 4]) -Custom namespaces -^^^^^^^^^^^^^^^^^ +The Namespace object +^^^^^^^^^^^^^^^^^^^^ + +By default, :meth:`parse_args` will return a new object of type :class:`Namespace` +where the necessary attributes have been set. This class is deliberately simple, +just an :class:`object` subclass with a readable string representation. If you +prefer to have dict-like view of the attributes, you can use the standard Python +idiom via :func:`vars`:: + + >>> parser = argparse.ArgumentParser() + >>> parser.add_argument('--foo') + >>> args = parser.parse_args(['--foo', 'BAR']) + >>> vars(args) + {'foo': 'BAR'} It may also be useful to have an :class:`ArgumentParser` assign attributes to an -already existing object, rather than the newly-created :class:`Namespace` object -that is normally used. This can be achieved by specifying the ``namespace=`` -keyword argument:: +already existing object, rather than a new :class:`Namespace` object. This can +be achieved by specifying the ``namespace=`` keyword argument:: >>> class C: ... pass diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst --- a/Doc/library/collections.abc.rst +++ b/Doc/library/collections.abc.rst @@ -28,10 +28,10 @@ Collections Abstract Base Classes --------------------------------- -The collections module offers the following ABCs: +The collections module offers the following :term:`ABCs `: ========================= ===================== ====================== ==================================================== -ABC Inherits Abstract Methods Mixin Methods +ABC Inherits from Abstract Methods Mixin Methods ========================= ===================== ====================== ==================================================== :class:`Container` ``__contains__`` :class:`Hashable` ``__hash__`` @@ -44,15 +44,15 @@ :class:`Iterable`, ``index``, and ``count`` :class:`Container` -:class:`MutableSequence` :class:`Sequence` ``__setitem__`` Inherited Sequence methods and +:class:`MutableSequence` :class:`Sequence` ``__setitem__`` Inherited :class:`Sequence` methods and ``__delitem__``, ``append``, ``reverse``, ``extend``, ``pop``, - and ``insert`` ``remove``, ``clear``, and ``__iadd__`` + ``insert`` ``remove``, ``clear``, and ``__iadd__`` :class:`Set` :class:`Sized`, ``__le__``, ``__lt__``, ``__eq__``, ``__ne__``, :class:`Iterable`, ``__gt__``, ``__ge__``, ``__and__``, ``__or__``, :class:`Container` ``__sub__``, ``__xor__``, and ``isdisjoint`` -:class:`MutableSet` :class:`Set` ``add`` and Inherited Set methods and +:class:`MutableSet` :class:`Set` ``add``, Inherited :class:`Set` methods and ``discard`` ``clear``, ``pop``, ``remove``, ``__ior__``, ``__iand__``, ``__ixor__``, and ``__isub__`` @@ -60,19 +60,61 @@ :class:`Iterable`, ``get``, ``__eq__``, and ``__ne__`` :class:`Container` -:class:`MutableMapping` :class:`Mapping` ``__setitem__`` and Inherited Mapping methods and +:class:`MutableMapping` :class:`Mapping` ``__setitem__``, Inherited :class:`Mapping` methods and ``__delitem__`` ``pop``, ``popitem``, ``clear``, ``update``, and ``setdefault`` :class:`MappingView` :class:`Sized` ``__len__`` +:class:`ItemsView` :class:`MappingView`, ``__contains__``, + :class:`Set` ``__iter__`` :class:`KeysView` :class:`MappingView`, ``__contains__``, :class:`Set` ``__iter__`` -:class:`ItemsView` :class:`MappingView`, ``__contains__``, - :class:`Set` ``__iter__`` :class:`ValuesView` :class:`MappingView` ``__contains__``, ``__iter__`` ========================= ===================== ====================== ==================================================== + +.. class:: Container + Hashable + Sized + Callable + + ABCs for classes that provide respectively the methods :meth:`__contains__`, + :meth:`__hash__`, :meth:`__len__`, and :meth:`__call__`. + +.. class:: Iterable + + ABC for classes that provide the :meth:`__iter__` method. + See also the definition of :term:`iterable`. + +.. class:: Iterator + + ABC for classes that provide the :meth:`__iter__` and :meth:`next` methods. + See also the definition of :term:`iterator`. + +.. class:: Sequence + MutableSequence + + ABCs for read-only and mutable :term:`sequences `. + +.. class:: Set + MutableSet + + ABCs for read-only and mutable sets. + +.. class:: Mapping + MutableMapping + + ABCs for read-only and mutable :term:`mappings `. + +.. class:: MappingView + ItemsView + KeysView + ValuesView + + ABCs for mapping, items, keys, and values :term:`views `. + + These ABCs allow us to ask classes or instances if they provide particular functionality, for example:: diff --git a/Doc/library/compileall.rst b/Doc/library/compileall.rst --- a/Doc/library/compileall.rst +++ b/Doc/library/compileall.rst @@ -68,6 +68,9 @@ .. versionchanged:: 3.2 Added the ``-i``, ``-b`` and ``-h`` options. +There is no command-line option to control the optimization level used by the +:func:`compile` function, because the Python interpreter itself already +provides the option: :program:`python -O -m compileall`. Public functions ---------------- diff --git a/Doc/library/email.parser.rst b/Doc/library/email.parser.rst --- a/Doc/library/email.parser.rst +++ b/Doc/library/email.parser.rst @@ -102,7 +102,7 @@ class. -.. class:: Parser(_class=email.message.Message, strict=None) +.. class:: Parser(_class=email.message.Message) The constructor for the :class:`Parser` class takes an optional argument *_class*. This must be a callable factory (such as a function or a class), and @@ -110,13 +110,8 @@ :class:`~email.message.Message` (see :mod:`email.message`). The factory will be called without arguments. - The optional *strict* flag is ignored. - - .. deprecated:: 2.4 - Because the :class:`Parser` class is a backward compatible API wrapper - around the new-in-Python 2.4 :class:`FeedParser`, *all* parsing is - effectively non-strict. You should simply stop passing a *strict* flag to - the :class:`Parser` constructor. + .. versionchanged:: 3.2 + Removed the *strict* argument that was deprecated in 2.4. The other public :class:`Parser` methods are: diff --git a/Doc/library/http.cookiejar.rst b/Doc/library/http.cookiejar.rst --- a/Doc/library/http.cookiejar.rst +++ b/Doc/library/http.cookiejar.rst @@ -722,7 +722,7 @@ import os, http.cookiejar, urllib.request cj = http.cookiejar.MozillaCookieJar() - cj.load(os.path.join(os.environ["HOME"], ".netscape/cookies.txt")) + cj.load(os.path.join(os.path.expanduser("~"), ".netscape", "cookies.txt")) opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj)) r = opener.open("http://example.com/") diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -46,7 +46,7 @@ ==================== ============================ ================================================= ============================================================= Iterator Arguments Results Example ==================== ============================ ================================================= ============================================================= -:func:`accumulate` p p0, p0+p1, p0+p1+p2, ... ``accumulate([1,2,3,4,5]) --> 1 3 6 10 15`` +:func:`accumulate` p [,func] p0, p0+p1, p0+p1+p2, ... ``accumulate([1,2,3,4,5]) --> 1 3 6 10 15`` :func:`chain` p, q, ... p0, p1, ... plast, q0, q1, ... ``chain('ABC', 'DEF') --> A B C D E F`` :func:`compress` data, selectors (d[0] if s[0]), (d[1] if s[1]), ... ``compress('ABCDEF', [1,0,1,0,1,1]) --> A C E F`` :func:`dropwhile` pred, seq seq[n], seq[n+1], starting when pred fails ``dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1`` @@ -84,23 +84,46 @@ streams of infinite length, so they should only be accessed by functions or loops that truncate the stream. -.. function:: accumulate(iterable) +.. function:: accumulate(iterable[, func]) Make an iterator that returns accumulated sums. Elements may be any addable - type including :class:`Decimal` or :class:`Fraction`. Equivalent to:: + type including :class:`Decimal` or :class:`Fraction`. If the optional + *func* argument is supplied, it should be a function of two arguments + and it will be used instead of addition. - def accumulate(iterable): + Equivalent to:: + + def accumulate(iterable, func=operator.add): 'Return running totals' # accumulate([1,2,3,4,5]) --> 1 3 6 10 15 + # accumulate([1,2,3,4,5], operator.mul) --> 1 2 6 24 120 it = iter(iterable) total = next(it) yield total for element in it: - total = total + element + total = func(total, element) yield total + Uses for the *func* argument include :func:`min` for a running minimum, + :func:`max` for a running maximum, and :func:`operator.mul` for a running + product:: + + >>> data = [3, 4, 6, 2, 1, 9, 0, 7, 5, 8] + >>> list(accumulate(data, operator.mul)) # running product + [3, 12, 72, 144, 144, 1296, 0, 0, 0, 0] + >>> list(accumulate(data, max)) # running maximum + [3, 4, 6, 6, 6, 9, 9, 9, 9, 9] + + # Amortize a 5% loan of 1000 with 4 annual payments of 90 + >>> cashflows = [1000, -90, -90, -90, -90] + >>> list(accumulate(cashflows, lambda bal, pmt: bal*1.05 + pmt)) + [1000, 960.0, 918.0, 873.9000000000001, 827.5950000000001] + .. versionadded:: 3.2 + .. versionchanged:: 3.3 + Added the optional *func* parameter. + .. function:: chain(*iterables) Make an iterator that returns elements from the first iterable until it is diff --git a/Doc/library/readline.rst b/Doc/library/readline.rst --- a/Doc/library/readline.rst +++ b/Doc/library/readline.rst @@ -196,7 +196,7 @@ import os import readline - histfile = os.path.join(os.environ["HOME"], ".pyhist") + histfile = os.path.join(os.path.expanduser("~"), ".pyhist") try: readline.read_history_file(histfile) except IOError: diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -227,33 +227,21 @@ The struct sequence *flags* exposes the status of command line flags. The attributes are read only. - +------------------------------+------------------------------------------+ - | attribute | flag | - +==============================+==========================================+ - | :const:`debug` | -d | - +------------------------------+------------------------------------------+ - | :const:`division_warning` | -Q | - +------------------------------+------------------------------------------+ - | :const:`inspect` | -i | - +------------------------------+------------------------------------------+ - | :const:`interactive` | -i | - +------------------------------+------------------------------------------+ - | :const:`optimize` | -O or -OO | - +------------------------------+------------------------------------------+ - | :const:`dont_write_bytecode` | -B | - +------------------------------+------------------------------------------+ - | :const:`no_user_site` | -s | - +------------------------------+------------------------------------------+ - | :const:`no_site` | -S | - +------------------------------+------------------------------------------+ - | :const:`ignore_environment` | -E | - +------------------------------+------------------------------------------+ - | :const:`verbose` | -v | - +------------------------------+------------------------------------------+ - | :const:`bytes_warning` | -b | - +------------------------------+------------------------------------------+ - | :const:`quiet` | -q | - +------------------------------+------------------------------------------+ + ============================= ============================= + attribute flag + ============================= ============================= + :const:`debug` :option:`-d` + :const:`inspect` :option:`-i` + :const:`interactive` :option:`-i` + :const:`optimize` :option:`-O` or :option:`-OO` + :const:`dont_write_bytecode` :option:`-B` + :const:`no_user_site` :option:`-s` + :const:`no_site` :option:`-S` + :const:`ignore_environment` :option:`-E` + :const:`verbose` :option:`-v` + :const:`bytes_warning` :option:`-b` + :const:`quiet` :option:`-q` + ============================= ============================= .. versionchanged:: 3.2 Added ``quiet`` attribute for the new :option:`-q` flag. diff --git a/Doc/tutorial/interactive.rst b/Doc/tutorial/interactive.rst --- a/Doc/tutorial/interactive.rst +++ b/Doc/tutorial/interactive.rst @@ -123,10 +123,7 @@ # bound to the Esc key by default (you can change it - see readline docs). # # Store the file in ~/.pystartup, and set an environment variable to point - # to it: "export PYTHONSTARTUP=/home/user/.pystartup" in bash. - # - # Note that PYTHONSTARTUP does *not* expand "~", so you have to put in the - # full path to your home directory. + # to it: "export PYTHONSTARTUP=~/.pystartup" in bash. import atexit import os diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -1499,11 +1499,11 @@ >>> os.fsencode(filename) b'Sehensw\xc3\xbcrdigkeiten' -Some operating systems allow direct access to the unencoded bytes in the +Some operating systems allow direct access to encoded bytes in the environment. If so, the :attr:`os.supports_bytes_environ` constant will be true. -For direct access to unencoded environment variables (if available), +For direct access to encoded environment variables (if available), use the new :func:`os.getenvb` function or use :data:`os.environb` which is a bytes version of :data:`os.environ`. diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -133,3 +133,7 @@ ``import site`` will not add site-specific paths to the module search paths. In previous versions, it did. See changeset for doc changes in various files. Contributed by Carl Meyer with editions by ?ric Araujo. + +.. Issue #10998: -Q command-line flags are related artifacts have been + removed. Code checking sys.flags.division_warning will need updating. + Contributed by ?ric Araujo. diff --git a/Include/pydebug.h b/Include/pydebug.h --- a/Include/pydebug.h +++ b/Include/pydebug.h @@ -16,7 +16,6 @@ PyAPI_DATA(int) Py_UseClassExceptionsFlag; PyAPI_DATA(int) Py_FrozenFlag; PyAPI_DATA(int) Py_IgnoreEnvironmentFlag; -PyAPI_DATA(int) Py_DivisionWarningFlag; PyAPI_DATA(int) Py_DontWriteBytecodeFlag; PyAPI_DATA(int) Py_NoUserSiteDirectory; PyAPI_DATA(int) Py_UnbufferedStdioFlag; diff --git a/Lib/argparse.py b/Lib/argparse.py --- a/Lib/argparse.py +++ b/Lib/argparse.py @@ -71,6 +71,7 @@ 'ArgumentDefaultsHelpFormatter', 'RawDescriptionHelpFormatter', 'RawTextHelpFormatter', + 'MetavarTypeHelpFormatter', 'Namespace', 'Action', 'ONE_OR_MORE', @@ -82,6 +83,7 @@ ] +import collections as _collections import copy as _copy import os as _os import re as _re @@ -422,7 +424,8 @@ # produce all arg strings elif not action.option_strings: - part = self._format_args(action, action.dest) + default = self._get_default_metavar_for_positional(action) + part = self._format_args(action, default) # if it's in a group, strip the outer [] if action in group_actions: @@ -444,7 +447,7 @@ # if the Optional takes a value, format is: # -s ARGS or --long ARGS else: - default = action.dest.upper() + default = self._get_default_metavar_for_optional(action) args_string = self._format_args(action, default) part = '%s %s' % (option_string, args_string) @@ -530,7 +533,8 @@ def _format_action_invocation(self, action): if not action.option_strings: - metavar, = self._metavar_formatter(action, action.dest)(1) + default = self._get_default_metavar_for_positional(action) + metavar, = self._metavar_formatter(action, default)(1) return metavar else: @@ -544,7 +548,7 @@ # if the Optional takes a value, format is: # -s ARGS, --long ARGS else: - default = action.dest.upper() + default = self._get_default_metavar_for_optional(action) args_string = self._format_args(action, default) for option_string in action.option_strings: parts.append('%s %s' % (option_string, args_string)) @@ -622,6 +626,12 @@ def _get_help_string(self, action): return action.help + def _get_default_metavar_for_optional(self, action): + return action.dest.upper() + + def _get_default_metavar_for_positional(self, action): + return action.dest + class RawDescriptionHelpFormatter(HelpFormatter): """Help message formatter which retains any formatting in descriptions. @@ -662,6 +672,22 @@ return help +class MetavarTypeHelpFormatter(HelpFormatter): + """Help message formatter which uses the argument 'type' as the default + metavar value (instead of the argument 'dest') + + Only the name of this class is considered a public API. All the methods + provided by the class are considered an implementation detail. + """ + + def _get_default_metavar_for_optional(self, action): + return action.type.__name__ + + def _get_default_metavar_for_positional(self, action): + return action.type.__name__ + + + # ===================== # Options and Arguments # ===================== @@ -1041,7 +1067,7 @@ self._prog_prefix = prog self._parser_class = parser_class - self._name_parser_map = {} + self._name_parser_map = _collections.OrderedDict() self._choices_actions = [] super(_SubParsersAction, self).__init__( @@ -1294,6 +1320,13 @@ if not _callable(type_func): raise ValueError('%r is not callable' % type_func) + # raise an error if the metavar does not match the type + if hasattr(self, "_get_formatter"): + try: + self._get_formatter()._format_args(action, None) + except TypeError: + raise ValueError("length of metavar tuple does not match nargs") + return self._add_action(action) def add_argument_group(self, *args, **kwargs): diff --git a/Lib/concurrent/futures/process.py b/Lib/concurrent/futures/process.py --- a/Lib/concurrent/futures/process.py +++ b/Lib/concurrent/futures/process.py @@ -66,14 +66,17 @@ # workers to exit when their work queues are empty and then waits until the # threads/processes finish. -_live_threads = weakref.WeakSet() +_threads_queues = weakref.WeakKeyDictionary() _shutdown = False def _python_exit(): global _shutdown _shutdown = True - for thread in _live_threads: - thread.join() + items = list(_threads_queues.items()) + for t, q in items: + q.put(None) + for t, q in items: + t.join() # Controls how many more calls than processes will be queued in the call queue. # A smaller number will mean that processes spend more time idle waiting for @@ -116,11 +119,15 @@ """ while True: try: - call_item = call_queue.get(block=True, timeout=0.1) + call_item = call_queue.get(block=True) except queue.Empty: if shutdown.is_set(): return else: + if call_item is None: + # Wake up queue management thread + result_queue.put(None) + return try: r = call_item.fn(*call_item.args, **call_item.kwargs) except BaseException as e: @@ -195,40 +202,56 @@ process workers that they should exit when their work queue is empty. """ + nb_shutdown_processes = 0 + def shutdown_one_process(): + """Tell a worker to terminate, which will in turn wake us again""" + nonlocal nb_shutdown_processes + call_queue.put(None) + nb_shutdown_processes += 1 while True: _add_call_item_to_queue(pending_work_items, work_ids_queue, call_queue) try: - result_item = result_queue.get(block=True, timeout=0.1) + result_item = result_queue.get(block=True) except queue.Empty: - executor = executor_reference() - # No more work items can be added if: - # - The interpreter is shutting down OR - # - The executor that owns this worker has been collected OR - # - The executor that owns this worker has been shutdown. - if _shutdown or executor is None or executor._shutdown_thread: - # Since no new work items can be added, it is safe to shutdown - # this thread if there are no pending work items. - if not pending_work_items: - shutdown_process_event.set() + pass + else: + if result_item is not None: + work_item = pending_work_items[result_item.work_id] + del pending_work_items[result_item.work_id] - # If .join() is not called on the created processes then - # some multiprocessing.Queue methods may deadlock on Mac OS - # X. - for p in processes: - p.join() - return - del executor - else: - work_item = pending_work_items[result_item.work_id] - del pending_work_items[result_item.work_id] + if result_item.exception: + work_item.future.set_exception(result_item.exception) + else: + work_item.future.set_result(result_item.result) + continue + # If we come here, we either got a timeout or were explicitly woken up. + # In either case, check whether we should start shutting down. + executor = executor_reference() + # No more work items can be added if: + # - The interpreter is shutting down OR + # - The executor that owns this worker has been collected OR + # - The executor that owns this worker has been shutdown. + if _shutdown or executor is None or executor._shutdown_thread: + # Since no new work items can be added, it is safe to shutdown + # this thread if there are no pending work items. + if not pending_work_items: + shutdown_process_event.set() - if result_item.exception: - work_item.future.set_exception(result_item.exception) + while nb_shutdown_processes < len(processes): + shutdown_one_process() + # If .join() is not called on the created processes then + # some multiprocessing.Queue methods may deadlock on Mac OS + # X. + for p in processes: + p.join() + return else: - work_item.future.set_result(result_item.result) + # Start shutting down by telling a process it can exit. + shutdown_one_process() + del executor _system_limits_checked = False _system_limited = None @@ -289,10 +312,14 @@ self._pending_work_items = {} def _start_queue_management_thread(self): + # When the executor gets lost, the weakref callback will wake up + # the queue management thread. + def weakref_cb(_, q=self._result_queue): + q.put(None) if self._queue_management_thread is None: self._queue_management_thread = threading.Thread( target=_queue_manangement_worker, - args=(weakref.ref(self), + args=(weakref.ref(self, weakref_cb), self._processes, self._pending_work_items, self._work_ids, @@ -301,7 +328,7 @@ self._shutdown_process_event)) self._queue_management_thread.daemon = True self._queue_management_thread.start() - _live_threads.add(self._queue_management_thread) + _threads_queues[self._queue_management_thread] = self._result_queue def _adjust_process_count(self): for _ in range(len(self._processes), self._max_workers): @@ -324,6 +351,8 @@ self._pending_work_items[self._queue_count] = w self._work_ids.put(self._queue_count) self._queue_count += 1 + # Wake up queue management thread + self._result_queue.put(None) self._start_queue_management_thread() self._adjust_process_count() @@ -333,8 +362,10 @@ def shutdown(self, wait=True): with self._shutdown_lock: self._shutdown_thread = True - if wait: - if self._queue_management_thread: + if self._queue_management_thread: + # Wake up queue management thread + self._result_queue.put(None) + if wait: self._queue_management_thread.join() # To reduce the risk of openning too many files, remove references to # objects that use file descriptors. diff --git a/Lib/concurrent/futures/thread.py b/Lib/concurrent/futures/thread.py --- a/Lib/concurrent/futures/thread.py +++ b/Lib/concurrent/futures/thread.py @@ -25,14 +25,18 @@ # workers to exit when their work queues are empty and then waits until the # threads finish. -_live_threads = weakref.WeakSet() +_threads_queues = weakref.WeakKeyDictionary() _shutdown = False def _python_exit(): global _shutdown _shutdown = True - for thread in _live_threads: - thread.join() + items = list(_threads_queues.items()) + for t, q in items: + q.put(None) + for t, q in items: + t.join() + atexit.register(_python_exit) class _WorkItem(object): @@ -57,18 +61,23 @@ try: while True: try: - work_item = work_queue.get(block=True, timeout=0.1) + work_item = work_queue.get(block=True) except queue.Empty: - executor = executor_reference() - # Exit if: - # - The interpreter is shutting down OR - # - The executor that owns the worker has been collected OR - # - The executor that owns the worker has been shutdown. - if _shutdown or executor is None or executor._shutdown: - return - del executor + pass else: - work_item.run() + if work_item is not None: + work_item.run() + continue + executor = executor_reference() + # Exit if: + # - The interpreter is shutting down OR + # - The executor that owns the worker has been collected OR + # - The executor that owns the worker has been shutdown. + if _shutdown or executor is None or executor._shutdown: + # Notice other workers + work_queue.put(None) + return + del executor except BaseException as e: _base.LOGGER.critical('Exception in worker', exc_info=True) @@ -100,19 +109,25 @@ submit.__doc__ = _base.Executor.submit.__doc__ def _adjust_thread_count(self): + # When the executor gets lost, the weakref callback will wake up + # the worker threads. + def weakref_cb(_, q=self._work_queue): + q.put(None) # TODO(bquinlan): Should avoid creating new threads if there are more # idle threads than items in the work queue. if len(self._threads) < self._max_workers: t = threading.Thread(target=_worker, - args=(weakref.ref(self), self._work_queue)) + args=(weakref.ref(self, weakref_cb), + self._work_queue)) t.daemon = True t.start() self._threads.add(t) - _live_threads.add(t) + _threads_queues[t] = self._work_queue def shutdown(self, wait=True): with self._shutdown_lock: self._shutdown = True + self._work_queue.put(None) if wait: for t in self._threads: t.join() diff --git a/Lib/ctypes/test/test_as_parameter.py b/Lib/ctypes/test/test_as_parameter.py --- a/Lib/ctypes/test/test_as_parameter.py +++ b/Lib/ctypes/test/test_as_parameter.py @@ -187,6 +187,18 @@ self.assertEqual((s8i.a, s8i.b, s8i.c, s8i.d, s8i.e, s8i.f, s8i.g, s8i.h), (9*2, 8*3, 7*4, 6*5, 5*6, 4*7, 3*8, 2*9)) + def test_recursive_as_param(self): + from ctypes import c_int + + class A(object): + pass + + a = A() + a._as_parameter_ = a + with self.assertRaises(RuntimeError): + c_int.from_param(a) + + #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ class AsParamWrapper(object): diff --git a/Lib/email/header.py b/Lib/email/header.py --- a/Lib/email/header.py +++ b/Lib/email/header.py @@ -66,9 +66,15 @@ otherwise a lower-case string containing the name of the character set specified in the encoded string. + header may be a string that may or may not contain RFC2047 encoded words, + or it may be a Header object. + An email.errors.HeaderParseError may be raised when certain decoding error occurs (e.g. a base64 decoding exception). """ + # If it is a Header object, we can just return the chunks. + if hasattr(header, '_chunks'): + return list(header._chunks) # If no encoding, just return the header with no charset. if not ecre.search(header): return [(header, None)] diff --git a/Lib/email/parser.py b/Lib/email/parser.py --- a/Lib/email/parser.py +++ b/Lib/email/parser.py @@ -15,7 +15,7 @@ class Parser: - def __init__(self, *args, **kws): + def __init__(self, _class=Message): """Parser of RFC 2822 and MIME email messages. Creates an in-memory object tree representing the email message, which @@ -31,27 +31,7 @@ must be created. This class must have a constructor that can take zero arguments. Default is Message.Message. """ - if len(args) >= 1: - if '_class' in kws: - raise TypeError("Multiple values for keyword arg '_class'") - kws['_class'] = args[0] - if len(args) == 2: - if 'strict' in kws: - raise TypeError("Multiple values for keyword arg 'strict'") - kws['strict'] = args[1] - if len(args) > 2: - raise TypeError('Too many arguments') - if '_class' in kws: - self._class = kws['_class'] - del kws['_class'] - else: - self._class = Message - if 'strict' in kws: - warnings.warn("'strict' argument is deprecated (and ignored)", - DeprecationWarning, 2) - del kws['strict'] - if kws: - raise TypeError('Unexpected keyword arguments') + self._class = _class def parse(self, fp, headersonly=False): """Create a message structure from the data in a file. diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -303,13 +303,13 @@ return "break" def home_callback(self, event): - if (event.state & 12) != 0 and event.keysym == "Home": - # state&1==shift, state&4==control, state&8==alt - return # ; fall back to class binding - + if (event.state & 4) != 0 and event.keysym == "Home": + # state&4==Control. If , use the Tk binding. + return if self.text.index("iomark") and \ self.text.compare("iomark", "<=", "insert lineend") and \ self.text.compare("insert linestart", "<=", "iomark"): + # In Shell on input line, go to just after prompt insertpt = int(self.text.index("iomark").split(".")[1]) else: line = self.text.get("insert linestart", "insert lineend") @@ -318,30 +318,27 @@ break else: insertpt=len(line) - lineat = int(self.text.index("insert").split('.')[1]) - if insertpt == lineat: insertpt = 0 - dest = "insert linestart+"+str(insertpt)+"c" - if (event.state&1) == 0: - # shift not pressed + # shift was not pressed self.text.tag_remove("sel", "1.0", "end") else: if not self.text.index("sel.first"): - self.text.mark_set("anchor","insert") - + self.text.mark_set("my_anchor", "insert") # there was no previous selection + else: + if self.text.compare(self.text.index("sel.first"), "<", self.text.index("insert")): + self.text.mark_set("my_anchor", "sel.first") # extend back + else: + self.text.mark_set("my_anchor", "sel.last") # extend forward first = self.text.index(dest) - last = self.text.index("anchor") - + last = self.text.index("my_anchor") if self.text.compare(first,">",last): first,last = last,first - self.text.tag_remove("sel", "1.0", "end") self.text.tag_add("sel", first, last) - self.text.mark_set("insert", dest) self.text.see("insert") return "break" diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,4 +1,15 @@ -What's New in IDLE 3.1? +What's New in IDLE 3.1.4? +========================= + +*Release date: XX-XXX-XX* + +- toggle failing on Tk 8.5, causing IDLE exits and strange selection + behavior. Issue 4676. Improve selection extension behaviour. +- toggle non-functional when NumLock set on Windows. Issue 3851. + + + +What's New in IDLE 3.1b1? ========================= *Release date: 27-Jun-09* diff --git a/Lib/inspect.py b/Lib/inspect.py --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -944,8 +944,14 @@ f_name, 'at most' if defaults else 'exactly', num_args, 'arguments' if num_args > 1 else 'argument', num_total)) elif num_args == 0 and num_total: - raise TypeError('%s() takes no arguments (%d given)' % - (f_name, num_total)) + if varkw or kwonlyargs: + if num_pos: + # XXX: We should use num_pos, but Python also uses num_total: + raise TypeError('%s() takes exactly 0 positional arguments ' + '(%d given)' % (f_name, num_total)) + else: + raise TypeError('%s() takes no arguments (%d given)' % + (f_name, num_total)) for arg in itertools.chain(args, kwonlyargs): if arg in named: diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2001-2010 by Vinay Sajip. All Rights Reserved. +# Copyright 2001-2011 by Vinay Sajip. All Rights Reserved. # # Permission to use, copy, modify, and distribute this software and its # documentation for any purpose and without fee is hereby granted, @@ -18,7 +18,7 @@ Logging package for Python. Based on PEP 282 and comments thereto in comp.lang.python, and influenced by Apache's log4j system. -Copyright (C) 2001-2010 Vinay Sajip. All Rights Reserved. +Copyright (C) 2001-2011 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! """ @@ -1826,10 +1826,10 @@ package. """ def handle(self, record): - pass + """Stub.""" def emit(self, record): - pass + """Stub.""" def createLock(self): self.lock = None diff --git a/Lib/msilib/__init__.py b/Lib/msilib/__init__.py --- a/Lib/msilib/__init__.py +++ b/Lib/msilib/__init__.py @@ -172,11 +172,10 @@ add_data(db, table, getattr(module, table)) def make_id(str): - #str = str.replace(".", "_") # colons are allowed - str = str.replace(" ", "_") - str = str.replace("-", "_") - if str[0] in string.digits: - str = "_"+str + identifier_chars = string.ascii_letters + string.digits + "._" + str = "".join([c if c in identifier_chars else "_" for c in str]) + if str[0] in (string.digits + "."): + str = "_" + str assert re.match("^[A-Za-z_][A-Za-z0-9_.]*$", str), "FILE"+str return str @@ -284,19 +283,28 @@ [(feature.id, component)]) def make_short(self, file): + oldfile = file + file = file.replace('+', '_') + file = ''.join(c for c in file if not c in ' "/\[]:;=,') parts = file.split(".") - if len(parts)>1: + if len(parts) > 1: + prefix = "".join(parts[:-1]).upper() suffix = parts[-1].upper() + if not prefix: + prefix = suffix + suffix = None else: + prefix = file.upper() suffix = None - prefix = parts[0].upper() - if len(prefix) <= 8 and (not suffix or len(suffix)<=3): + if len(parts) < 3 and len(prefix) <= 8 and file == oldfile and ( + not suffix or len(suffix) <= 3): if suffix: file = prefix+"."+suffix else: file = prefix - assert file not in self.short_names else: + file = None + if file is None or file in self.short_names: prefix = prefix[:6] if suffix: suffix = suffix[:3] diff --git a/Lib/multiprocessing/sharedctypes.py b/Lib/multiprocessing/sharedctypes.py --- a/Lib/multiprocessing/sharedctypes.py +++ b/Lib/multiprocessing/sharedctypes.py @@ -80,7 +80,9 @@ type_ = typecode_to_type.get(typecode_or_type, typecode_or_type) if isinstance(size_or_initializer, int): type_ = type_ * size_or_initializer - return _new_value(type_) + obj = _new_value(type_) + ctypes.memset(ctypes.addressof(obj), 0, ctypes.sizeof(obj)) + return obj else: type_ = type_ * len(size_or_initializer) result = _new_value(type_) diff --git a/Lib/pydoc.py b/Lib/pydoc.py --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -165,7 +165,7 @@ no.append(x) return yes, no -def visiblename(name, all=None): +def visiblename(name, all=None, obj=None): """Decide whether to show documentation on a variable.""" # Certain special names are redundant. if name in {'__builtins__', '__doc__', '__file__', '__path__', @@ -175,6 +175,9 @@ return 0 # Private names are hidden, but special names are displayed. if name.startswith('__') and name.endswith('__'): return 1 + # Namedtuples have public fields and methods with a single leading underscore + if name.startswith('_') and hasattr(obj, '_fields'): + return True if all is not None: # only document that which the programmer exported in __all__ return name in all @@ -642,7 +645,7 @@ # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or (inspect.getmodule(value) or object) is object): - if visiblename(key, all): + if visiblename(key, all, object): classes.append((key, value)) cdict[key] = cdict[value] = '#' + key for key, value in classes: @@ -658,13 +661,13 @@ # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or inspect.isbuiltin(value) or inspect.getmodule(value) is object): - if visiblename(key, all): + if visiblename(key, all, object): funcs.append((key, value)) fdict[key] = '#-' + key if inspect.isfunction(value): fdict[value] = fdict[key] data = [] for key, value in inspect.getmembers(object, isdata): - if visiblename(key, all): + if visiblename(key, all, object): data.append((key, value)) doc = self.markup(getdoc(object), self.preformat, fdict, cdict) @@ -789,7 +792,7 @@ attrs = [(name, kind, cls, value) for name, kind, cls, value in classify_class_attrs(object) - if visiblename(name)] + if visiblename(name, obj=object)] mdict = {} for key, kind, homecls, value in attrs: @@ -1056,18 +1059,18 @@ # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or (inspect.getmodule(value) or object) is object): - if visiblename(key, all): + if visiblename(key, all, object): classes.append((key, value)) funcs = [] for key, value in inspect.getmembers(object, inspect.isroutine): # if __all__ exists, believe it. Otherwise use old heuristic. if (all is not None or inspect.isbuiltin(value) or inspect.getmodule(value) is object): - if visiblename(key, all): + if visiblename(key, all, object): funcs.append((key, value)) data = [] for key, value in inspect.getmembers(object, isdata): - if visiblename(key, all): + if visiblename(key, all, object): data.append((key, value)) modpkgs = [] @@ -1206,7 +1209,7 @@ attrs = [(name, kind, cls, value) for name, kind, cls, value in classify_class_attrs(object) - if visiblename(name)] + if visiblename(name, obj=object)] while attrs: if mro: diff --git a/Lib/re.py b/Lib/re.py --- a/Lib/re.py +++ b/Lib/re.py @@ -224,8 +224,7 @@ if isinstance(pattern, str): alphanum = _alphanum_str s = list(pattern) - for i in range(len(pattern)): - c = pattern[i] + for i, c in enumerate(pattern): if c not in alphanum: if c == "\000": s[i] = "\\000" diff --git a/Lib/subprocess.py b/Lib/subprocess.py --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -1723,68 +1723,3 @@ """Kill the process with SIGKILL """ self.send_signal(signal.SIGKILL) - - -def _demo_posix(): - # - # Example 1: Simple redirection: Get process list - # - plist = Popen(["ps"], stdout=PIPE).communicate()[0] - print("Process list:") - print(plist) - - # - # Example 2: Change uid before executing child - # - if os.getuid() == 0: - p = Popen(["id"], preexec_fn=lambda: os.setuid(100)) - p.wait() - - # - # Example 3: Connecting several subprocesses - # - print("Looking for 'hda'...") - p1 = Popen(["dmesg"], stdout=PIPE) - p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE) - print(repr(p2.communicate()[0])) - - # - # Example 4: Catch execution error - # - print() - print("Trying a weird file...") - try: - print(Popen(["/this/path/does/not/exist"]).communicate()) - except OSError as e: - if e.errno == errno.ENOENT: - print("The file didn't exist. I thought so...") - print("Child traceback:") - print(e.child_traceback) - else: - print("Error", e.errno) - else: - print("Gosh. No error.", file=sys.stderr) - - -def _demo_windows(): - # - # Example 1: Connecting several subprocesses - # - print("Looking for 'PROMPT' in set output...") - p1 = Popen("set", stdout=PIPE, shell=True) - p2 = Popen('find "PROMPT"', stdin=p1.stdout, stdout=PIPE) - print(repr(p2.communicate()[0])) - - # - # Example 2: Simple execution of program - # - print("Executing calc...") - p = Popen("calc") - p.wait() - - -if __name__ == "__main__": - if mswindows: - _demo_windows() - else: - _demo_posix() diff --git a/Lib/test/test_future1.py b/Lib/test/future_test1.py rename from Lib/test/test_future1.py rename to Lib/test/future_test1.py diff --git a/Lib/test/test_future2.py b/Lib/test/future_test2.py rename from Lib/test/test_future2.py rename to Lib/test/future_test2.py diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -42,6 +42,9 @@ -- specify which special resource intensive tests to run -M/--memlimit LIMIT -- run very large memory-consuming tests + --testdir DIR + -- execute test files in the specified directory (instead + of the Python stdlib test suite) Special runs @@ -265,7 +268,7 @@ 'use=', 'threshold=', 'trace', 'coverdir=', 'nocoverdir', 'runleaks', 'huntrleaks=', 'memlimit=', 'randseed=', 'multiprocess=', 'coverage', 'slaveargs=', 'forever', 'debug', - 'start=', 'nowindows', 'header']) + 'start=', 'nowindows', 'header', 'testdir=']) except getopt.error as msg: usage(msg) @@ -315,7 +318,9 @@ elif o in ('-T', '--coverage'): trace = True elif o in ('-D', '--coverdir'): - coverdir = os.path.join(os.getcwd(), a) + # CWD is replaced with a temporary dir before calling main(), so we + # need join it with the saved CWD so it goes where the user expects. + coverdir = os.path.join(support.SAVEDCWD, a) elif o in ('-N', '--nocoverdir'): coverdir = None elif o in ('-R', '--huntrleaks'): @@ -393,6 +398,10 @@ print() # Force a newline (just in case) print(json.dumps(result)) sys.exit(0) + elif o == '--testdir': + # CWD is replaced with a temporary dir before calling main(), so we + # join it with the saved CWD so it ends up where the user expects. + testdir = os.path.join(support.SAVEDCWD, a) else: print(("No handler for option {}. Please report this as a bug " "at http://bugs.python.org.").format(o), file=sys.stderr) @@ -467,7 +476,13 @@ print("== ", os.getcwd()) print("Testing with flags:", sys.flags) - alltests = findtests(testdir, stdtests, nottests) + # if testdir is set, then we are not running the python tests suite, so + # don't add default tests to be executed or skipped (pass empty values) + if testdir: + alltests = findtests(testdir, list(), set()) + else: + alltests = findtests(testdir, stdtests, nottests) + selected = tests or args or alltests if single: selected = selected[:1] @@ -713,6 +728,8 @@ sys.exit(len(bad) > 0 or interrupted) +# small set of tests to determine if we have a basically functioning interpreter +# (i.e. if any of these fail, then anything else is likely to follow) STDTESTS = [ 'test_grammar', 'test_opcodes', @@ -725,10 +742,8 @@ 'test_doctest2', ] -NOTTESTS = { - 'test_future1', - 'test_future2', -} +# set of tests that we don't want to be executed when using regrtest +NOTTESTS = set() def findtests(testdir=None, stdtests=STDTESTS, nottests=NOTTESTS): """Return a list of all applicable test modules.""" diff --git a/Lib/test/support.py b/Lib/test/support.py --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -1029,6 +1029,11 @@ return decorator def precisionbigmemtest(size, memuse): + """Decorator for bigmem tests that need exact sizes. + + Like bigmemtest, but without the size scaling upward to fill available + memory. + """ def decorator(f): def wrapper(self): size = wrapper.size diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py --- a/Lib/test/test_argparse.py +++ b/Lib/test/test_argparse.py @@ -2837,16 +2837,22 @@ parser = argparse.ArgumentParser( *tester.parser_signature.args, **tester.parser_signature.kwargs) - for argument_sig in tester.argument_signatures: + for argument_sig in getattr(tester, 'argument_signatures', []): parser.add_argument(*argument_sig.args, **argument_sig.kwargs) - group_signatures = tester.argument_group_signatures - for group_sig, argument_sigs in group_signatures: + group_sigs = getattr(tester, 'argument_group_signatures', []) + for group_sig, argument_sigs in group_sigs: group = parser.add_argument_group(*group_sig.args, **group_sig.kwargs) for argument_sig in argument_sigs: group.add_argument(*argument_sig.args, **argument_sig.kwargs) + subparsers_sigs = getattr(tester, 'subparsers_signatures', []) + if subparsers_sigs: + subparsers = parser.add_subparsers() + for subparser_sig in subparsers_sigs: + subparsers.add_parser(*subparser_sig.args, + **subparser_sig.kwargs) return parser def _test(self, tester, parser_text): @@ -3940,6 +3946,108 @@ ''' version = '' +class TestHelpSubparsersOrdering(HelpTestCase): + """Test ordering of subcommands in help matches the code""" + parser_signature = Sig(prog='PROG', + description='display some subcommands', + version='0.1') + + subparsers_signatures = [Sig(name=name) + for name in ('a', 'b', 'c', 'd', 'e')] + + usage = '''\ + usage: PROG [-h] [-v] {a,b,c,d,e} ... + ''' + + help = usage + '''\ + + display some subcommands + + positional arguments: + {a,b,c,d,e} + + optional arguments: + -h, --help show this help message and exit + -v, --version show program's version number and exit + ''' + + version = '''\ + 0.1 + ''' + +class TestHelpSubparsersWithHelpOrdering(HelpTestCase): + """Test ordering of subcommands in help matches the code""" + parser_signature = Sig(prog='PROG', + description='display some subcommands', + version='0.1') + + subcommand_data = (('a', 'a subcommand help'), + ('b', 'b subcommand help'), + ('c', 'c subcommand help'), + ('d', 'd subcommand help'), + ('e', 'e subcommand help'), + ) + + subparsers_signatures = [Sig(name=name, help=help) + for name, help in subcommand_data] + + usage = '''\ + usage: PROG [-h] [-v] {a,b,c,d,e} ... + ''' + + help = usage + '''\ + + display some subcommands + + positional arguments: + {a,b,c,d,e} + a a subcommand help + b b subcommand help + c c subcommand help + d d subcommand help + e e subcommand help + + optional arguments: + -h, --help show this help message and exit + -v, --version show program's version number and exit + ''' + + version = '''\ + 0.1 + ''' + + + +class TestHelpMetavarTypeFormatter(HelpTestCase): + """""" + + def custom_type(string): + return string + + parser_signature = Sig(prog='PROG', description='description', + formatter_class=argparse.MetavarTypeHelpFormatter) + argument_signatures = [Sig('a', type=int), + Sig('-b', type=custom_type), + Sig('-c', type=float, metavar='SOME FLOAT')] + argument_group_signatures = [] + usage = '''\ + usage: PROG [-h] [-b custom_type] [-c SOME FLOAT] int + ''' + help = usage + '''\ + + description + + positional arguments: + int + + optional arguments: + -h, --help show this help message and exit + -b custom_type + -c SOME FLOAT + ''' + version = '' + + # ===================================== # Optional/Positional constructor tests # ===================================== @@ -4394,6 +4502,177 @@ self.assertEqual(NS(v=3, spam=True, badger="B"), args) self.assertEqual(["C", "--foo", "4"], extras) +# ========================== +# add_argument metavar tests +# ========================== + +class TestAddArgumentMetavar(TestCase): + + EXPECTED_MESSAGE = "length of metavar tuple does not match nargs" + + def do_test_no_exception(self, nargs, metavar): + parser = argparse.ArgumentParser() + parser.add_argument("--foo", nargs=nargs, metavar=metavar) + + def do_test_exception(self, nargs, metavar): + parser = argparse.ArgumentParser() + with self.assertRaises(ValueError) as cm: + parser.add_argument("--foo", nargs=nargs, metavar=metavar) + self.assertEqual(cm.exception.args[0], self.EXPECTED_MESSAGE) + + # Unit tests for different values of metavar when nargs=None + + def test_nargs_None_metavar_string(self): + self.do_test_no_exception(nargs=None, metavar="1") + + def test_nargs_None_metavar_length0(self): + self.do_test_exception(nargs=None, metavar=tuple()) + + def test_nargs_None_metavar_length1(self): + self.do_test_no_exception(nargs=None, metavar=("1")) + + def test_nargs_None_metavar_length2(self): + self.do_test_exception(nargs=None, metavar=("1", "2")) + + def test_nargs_None_metavar_length3(self): + self.do_test_exception(nargs=None, metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=? + + def test_nargs_optional_metavar_string(self): + self.do_test_no_exception(nargs="?", metavar="1") + + def test_nargs_optional_metavar_length0(self): + self.do_test_exception(nargs="?", metavar=tuple()) + + def test_nargs_optional_metavar_length1(self): + self.do_test_no_exception(nargs="?", metavar=("1")) + + def test_nargs_optional_metavar_length2(self): + self.do_test_exception(nargs="?", metavar=("1", "2")) + + def test_nargs_optional_metavar_length3(self): + self.do_test_exception(nargs="?", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=* + + def test_nargs_zeroormore_metavar_string(self): + self.do_test_no_exception(nargs="*", metavar="1") + + def test_nargs_zeroormore_metavar_length0(self): + self.do_test_exception(nargs="*", metavar=tuple()) + + def test_nargs_zeroormore_metavar_length1(self): + self.do_test_no_exception(nargs="*", metavar=("1")) + + def test_nargs_zeroormore_metavar_length2(self): + self.do_test_no_exception(nargs="*", metavar=("1", "2")) + + def test_nargs_zeroormore_metavar_length3(self): + self.do_test_exception(nargs="*", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=+ + + def test_nargs_oneormore_metavar_string(self): + self.do_test_no_exception(nargs="+", metavar="1") + + def test_nargs_oneormore_metavar_length0(self): + self.do_test_exception(nargs="+", metavar=tuple()) + + def test_nargs_oneormore_metavar_length1(self): + self.do_test_no_exception(nargs="+", metavar=("1")) + + def test_nargs_oneormore_metavar_length2(self): + self.do_test_no_exception(nargs="+", metavar=("1", "2")) + + def test_nargs_oneormore_metavar_length3(self): + self.do_test_exception(nargs="+", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=... + + def test_nargs_remainder_metavar_string(self): + self.do_test_no_exception(nargs="...", metavar="1") + + def test_nargs_remainder_metavar_length0(self): + self.do_test_no_exception(nargs="...", metavar=tuple()) + + def test_nargs_remainder_metavar_length1(self): + self.do_test_no_exception(nargs="...", metavar=("1")) + + def test_nargs_remainder_metavar_length2(self): + self.do_test_no_exception(nargs="...", metavar=("1", "2")) + + def test_nargs_remainder_metavar_length3(self): + self.do_test_no_exception(nargs="...", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=A... + + def test_nargs_parser_metavar_string(self): + self.do_test_no_exception(nargs="A...", metavar="1") + + def test_nargs_parser_metavar_length0(self): + self.do_test_exception(nargs="A...", metavar=tuple()) + + def test_nargs_parser_metavar_length1(self): + self.do_test_no_exception(nargs="A...", metavar=("1")) + + def test_nargs_parser_metavar_length2(self): + self.do_test_exception(nargs="A...", metavar=("1", "2")) + + def test_nargs_parser_metavar_length3(self): + self.do_test_exception(nargs="A...", metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=1 + + def test_nargs_1_metavar_string(self): + self.do_test_no_exception(nargs=1, metavar="1") + + def test_nargs_1_metavar_length0(self): + self.do_test_exception(nargs=1, metavar=tuple()) + + def test_nargs_1_metavar_length1(self): + self.do_test_no_exception(nargs=1, metavar=("1")) + + def test_nargs_1_metavar_length2(self): + self.do_test_exception(nargs=1, metavar=("1", "2")) + + def test_nargs_1_metavar_length3(self): + self.do_test_exception(nargs=1, metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=2 + + def test_nargs_2_metavar_string(self): + self.do_test_no_exception(nargs=2, metavar="1") + + def test_nargs_2_metavar_length0(self): + self.do_test_exception(nargs=2, metavar=tuple()) + + def test_nargs_2_metavar_length1(self): + self.do_test_no_exception(nargs=2, metavar=("1")) + + def test_nargs_2_metavar_length2(self): + self.do_test_no_exception(nargs=2, metavar=("1", "2")) + + def test_nargs_2_metavar_length3(self): + self.do_test_exception(nargs=2, metavar=("1", "2", "3")) + + # Unit tests for different values of metavar when nargs=3 + + def test_nargs_3_metavar_string(self): + self.do_test_no_exception(nargs=3, metavar="1") + + def test_nargs_3_metavar_length0(self): + self.do_test_exception(nargs=3, metavar=tuple()) + + def test_nargs_3_metavar_length1(self): + self.do_test_no_exception(nargs=3, metavar=("1")) + + def test_nargs_3_metavar_length2(self): + self.do_test_exception(nargs=3, metavar=("1", "2")) + + def test_nargs_3_metavar_length3(self): + self.do_test_no_exception(nargs=3, metavar=("1", "2", "3")) + # ============================ # from argparse import * tests # ============================ diff --git a/Lib/test/test_bigmem.py b/Lib/test/test_bigmem.py --- a/Lib/test/test_bigmem.py +++ b/Lib/test/test_bigmem.py @@ -1,3 +1,13 @@ +"""Bigmem tests - tests for the 32-bit boundary in containers. + +These tests try to exercise the 32-bit boundary that is sometimes, if +rarely, exceeded in practice, but almost never tested. They are really only +meaningful on 64-bit builds on machines with a *lot* of memory, but the +tests are always run, usually with very low memory limits to make sure the +tests themselves don't suffer from bitrot. To run them for real, pass a +high memory limit to regrtest, with the -M option. +""" + from test import support from test.support import bigmemtest, _1G, _2G, _4G, precisionbigmemtest @@ -6,30 +16,45 @@ import sys import functools +# These tests all use one of the bigmemtest decorators to indicate how much +# memory they use and how much memory they need to be even meaningful. The +# decorators take two arguments: a 'memuse' indicator declaring +# (approximate) bytes per size-unit the test will use (at peak usage), and a +# 'minsize' indicator declaring a minimum *useful* size. A test that +# allocates a bytestring to test various operations near the end will have a +# minsize of at least 2Gb (or it wouldn't reach the 32-bit limit, so the +# test wouldn't be very useful) and a memuse of 1 (one byte per size-unit, +# if it allocates only one big string at a time.) +# +# When run with a memory limit set, both decorators skip tests that need +# more memory than available to be meaningful. The precisionbigmemtest will +# always pass minsize as size, even if there is much more memory available. +# The bigmemtest decorator will scale size upward to fill available memory. +# # Bigmem testing houserules: # # - Try not to allocate too many large objects. It's okay to rely on -# refcounting semantics, but don't forget that 's = create_largestring()' +# refcounting semantics, and don't forget that 's = create_largestring()' # doesn't release the old 's' (if it exists) until well after its new # value has been created. Use 'del s' before the create_largestring call. # -# - Do *not* compare large objects using assertEqual or similar. It's a -# lengthy operation and the errormessage will be utterly useless due to -# its size. To make sure whether a result has the right contents, better -# to use the strip or count methods, or compare meaningful slices. +# - Do *not* compare large objects using assertEqual, assertIn or similar. +# It's a lengthy operation and the errormessage will be utterly useless +# due to its size. To make sure whether a result has the right contents, +# better to use the strip or count methods, or compare meaningful slices. # # - Don't forget to test for large indices, offsets and results and such, -# in addition to large sizes. +# in addition to large sizes. Anything that probes the 32-bit boundary. # # - When repeating an object (say, a substring, or a small list) to create # a large object, make the subobject of a length that is not a power of # 2. That way, int-wrapping problems are more easily detected. # -# - While the bigmemtest decorator speaks of 'minsize', all tests will -# actually be called with a much smaller number too, in the normal -# test run (5Kb currently.) This is so the tests themselves get frequent -# testing. Consequently, always make all large allocations based on the -# passed-in 'size', and don't rely on the size being very large. Also, +# - While the bigmem decorators speak of 'minsize', all tests will actually +# be called with a much smaller number too, in the normal test run (5Kb +# currently.) This is so the tests themselves get frequent testing. +# Consequently, always make all large allocations based on the passed-in +# 'size', and don't rely on the size being very large. Also, # memuse-per-size should remain sane (less than a few thousand); if your # test uses more, adjust 'size' upward, instead. @@ -92,7 +117,7 @@ _ = self.from_latin1 s = _('-') * size tabsize = 8 - self.assertEqual(s.expandtabs(), s) + self.assertTrue(s.expandtabs() == s) del s slen, remainder = divmod(size, tabsize) s = _(' \t') * slen @@ -519,19 +544,19 @@ edge = _('-') * (size // 2) s = _('').join([edge, SUBSTR, edge]) del edge - self.assertIn(SUBSTR, s) - self.assertNotIn(SUBSTR * 2, s) - self.assertIn(_('-'), s) - self.assertNotIn(_('a'), s) + self.assertTrue(SUBSTR in s) + self.assertFalse(SUBSTR * 2 in s) + self.assertTrue(_('-') in s) + self.assertFalse(_('a') in s) s += _('a') - self.assertIn(_('a'), s) + self.assertTrue(_('a') in s) @bigmemtest(minsize=_2G + 10, memuse=2) def test_compare(self, size): _ = self.from_latin1 s1 = _('-') * size s2 = _('-') * size - self.assertEqual(s1, s2) + self.assertTrue(s1 == s2) del s2 s2 = s1 + _('a') self.assertFalse(s1 == s2) @@ -552,7 +577,7 @@ h1 = hash(s) del s s = _('\x00') * (size + 1) - self.assertFalse(h1 == hash(s)) + self.assertNotEqual(h1, hash(s)) class StrTest(unittest.TestCase, BaseStrTest): @@ -633,7 +658,7 @@ def test_format(self, size): s = '-' * size sf = '%s' % (s,) - self.assertEqual(s, sf) + self.assertTrue(s == sf) del sf sf = '..%s..' % (s,) self.assertEqual(len(sf), len(s) + 4) @@ -743,7 +768,7 @@ def test_compare(self, size): t1 = ('',) * size t2 = ('',) * size - self.assertEqual(t1, t2) + self.assertTrue(t1 == t2) del t2 t2 = ('',) * (size + 1) self.assertFalse(t1 == t2) @@ -774,9 +799,9 @@ def test_contains(self, size): t = (1, 2, 3, 4, 5) * size self.assertEqual(len(t), size * 5) - self.assertIn(5, t) - self.assertNotIn((1, 2, 3, 4, 5), t) - self.assertNotIn(0, t) + self.assertTrue(5 in t) + self.assertFalse((1, 2, 3, 4, 5) in t) + self.assertFalse(0 in t) @bigmemtest(minsize=_2G + 10, memuse=8) def test_hash(self, size): @@ -879,7 +904,7 @@ def test_compare(self, size): l1 = [''] * size l2 = [''] * size - self.assertEqual(l1, l2) + self.assertTrue(l1 == l2) del l2 l2 = [''] * (size + 1) self.assertFalse(l1 == l2) @@ -925,9 +950,9 @@ def test_contains(self, size): l = [1, 2, 3, 4, 5] * size self.assertEqual(len(l), size * 5) - self.assertIn(5, l) - self.assertNotIn([1, 2, 3, 4, 5], l) - self.assertNotIn(0, l) + self.assertTrue(5 in l) + self.assertFalse([1, 2, 3, 4, 5] in l) + self.assertFalse(0 in l) @bigmemtest(minsize=_2G + 10, memuse=8) def test_hash(self, size): diff --git a/Lib/test/test_cmd_line.py b/Lib/test/test_cmd_line.py --- a/Lib/test/test_cmd_line.py +++ b/Lib/test/test_cmd_line.py @@ -31,12 +31,6 @@ self.verify_valid_flag('-O') self.verify_valid_flag('-OO') - def test_q(self): - self.verify_valid_flag('-Qold') - self.verify_valid_flag('-Qnew') - self.verify_valid_flag('-Qwarn') - self.verify_valid_flag('-Qwarnall') - def test_site_flag(self): self.verify_valid_flag('-S') diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py --- a/Lib/test/test_collections.py +++ b/Lib/test/test_collections.py @@ -332,37 +332,12 @@ # verify that _source can be run through exec() tmp = namedtuple('NTColor', 'red green blue') globals().pop('NTColor', None) # remove artifacts from other tests - self.assertNotIn('NTColor', globals()) exec(tmp._source, globals()) self.assertIn('NTColor', globals()) c = NTColor(10, 20, 30) self.assertEqual((c.red, c.green, c.blue), (10, 20, 30)) self.assertEqual(NTColor._fields, ('red', 'green', 'blue')) globals().pop('NTColor', None) # clean-up after this test - self.assertNotIn('NTColor', globals()) - - def test_source_importable(self): - tmp = namedtuple('Color', 'hue sat val') - - compiled = None - source = TESTFN + '.py' - with open(source, 'w') as f: - print(tmp._source, file=f) - - if TESTFN in sys.modules: - del sys.modules[TESTFN] - try: - mod = __import__(TESTFN) - compiled = mod.__file__ - Color = mod.Color - c = Color(10, 20, 30) - self.assertEqual((c.hue, c.sat, c.val), (10, 20, 30)) - self.assertEqual(Color._fields, ('hue', 'sat', 'val')) - finally: - forget(TESTFN) - if compiled: - unlink(compiled) - unlink(source) ################################################################################ diff --git a/Lib/test/test_email/__main__.py b/Lib/test/test_email/__main__.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_email/__main__.py @@ -0,0 +1,3 @@ +from test.test_email import test_main + +test_main() diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -3925,6 +3925,20 @@ h.append(x, errors='replace') eq(str(h), e) + def test_escaped_8bit_header(self): + x = b'Ynwp4dUEbay Auction Semiar- No Charge \x96 Earn Big' + x = x.decode('ascii', 'surrogateescape') + h = Header(x, charset=email.charset.UNKNOWN8BIT) + self.assertEqual(str(h), + 'Ynwp4dUEbay Auction Semiar- No Charge \uFFFD Earn Big') + self.assertEqual(email.header.decode_header(h), [(x, 'unknown-8bit')]) + + def test_modify_returned_list_does_not_change_header(self): + h = Header('test') + chunks = email.header.decode_header(h) + chunks.append(('ascii', 'test2')) + self.assertEqual(str(h), 'test') + def test_encoded_adjacent_nonencoded(self): eq = self.assertEqual h = Header() diff --git a/Lib/test/test_future.py b/Lib/test/test_future.py --- a/Lib/test/test_future.py +++ b/Lib/test/test_future.py @@ -13,14 +13,14 @@ class FutureTest(unittest.TestCase): def test_future1(self): - support.unload('test_future1') - from test import test_future1 - self.assertEqual(test_future1.result, 6) + support.unload('future_test1') + from test import future_test1 + self.assertEqual(future_test1.result, 6) def test_future2(self): - support.unload('test_future2') - from test import test_future2 - self.assertEqual(test_future2.result, 6) + support.unload('future_test2') + from test import future_test2 + self.assertEqual(future_test2.result, 6) def test_future3(self): support.unload('test_future3') diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -632,6 +632,16 @@ self.assertEqualCallArgs(f, '2, c=4, **collections.UserDict(b=3)') self.assertEqualCallArgs(f, 'b=2, **collections.UserDict(a=3, c=4)') + def test_varkw_only(self): + # issue11256: + f = self.makeCallable('**c') + self.assertEqualCallArgs(f, '') + self.assertEqualCallArgs(f, 'a=1') + self.assertEqualCallArgs(f, 'a=1, b=2') + self.assertEqualCallArgs(f, 'c=3, **{"a": 1, "b": 2}') + self.assertEqualCallArgs(f, '**collections.UserDict(a=1, b=2)') + self.assertEqualCallArgs(f, 'c=3, **collections.UserDict(a=1, b=2)') + def test_keyword_only(self): f = self.makeCallable('a=3, *, c, d=2') self.assertEqualCallArgs(f, 'c=3') @@ -643,6 +653,11 @@ self.assertEqualException(f, 'a=3') self.assertEqualException(f, 'd=4') + f = self.makeCallable('*, c, d=2') + self.assertEqualCallArgs(f, 'c=3') + self.assertEqualCallArgs(f, 'c=3, d=4') + self.assertEqualCallArgs(f, 'd=4, c=3') + def test_multiple_features(self): f = self.makeCallable('a, b=2, *f, **g') self.assertEqualCallArgs(f, '2, 3, 7') @@ -656,6 +671,17 @@ '(4,[5,6])]), **collections.UserDict(' 'y=9, z=10)') + f = self.makeCallable('a, b=2, *f, x, y=99, **g') + self.assertEqualCallArgs(f, '2, 3, x=8') + self.assertEqualCallArgs(f, '2, 3, x=8, *[(4,[5,6]), 7]') + self.assertEqualCallArgs(f, '2, x=8, *[3, (4,[5,6]), 7], y=9, z=10') + self.assertEqualCallArgs(f, 'x=8, *[2, 3, (4,[5,6])], y=9, z=10') + self.assertEqualCallArgs(f, 'x=8, *collections.UserList(' + '[2, 3, (4,[5,6])]), q=0, **{"y":9, "z":10}') + self.assertEqualCallArgs(f, '2, x=8, *collections.UserList([3, ' + '(4,[5,6])]), q=0, **collections.UserDict(' + 'y=9, z=10)') + def test_errors(self): f0 = self.makeCallable('') f1 = self.makeCallable('a, b') @@ -692,6 +718,13 @@ # - for functions and bound methods: unexpected keyword 'c' # - for unbound methods: multiple values for keyword 'a' #self.assertEqualException(f, '1, c=3, a=2') + # issue11256: + f3 = self.makeCallable('**c') + self.assertEqualException(f3, '1, 2') + self.assertEqualException(f3, '1, 2, a=1, b=2') + f4 = self.makeCallable('*, a, b=0') + self.assertEqualException(f3, '1, 2') + self.assertEqualException(f3, '1, 2, a=1, b=2') class TestGetcallargsMethods(TestGetcallargsFunctions): diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -69,11 +69,21 @@ self.assertEqual(list(accumulate('abc')), ['a', 'ab', 'abc']) # works with non-numeric self.assertEqual(list(accumulate([])), []) # empty iterable self.assertEqual(list(accumulate([7])), [7]) # iterable of length one - self.assertRaises(TypeError, accumulate, range(10), 5) # too many args + self.assertRaises(TypeError, accumulate, range(10), 5, 6) # too many args self.assertRaises(TypeError, accumulate) # too few args self.assertRaises(TypeError, accumulate, x=range(10)) # unexpected kwd arg self.assertRaises(TypeError, list, accumulate([1, []])) # args that don't add + s = [2, 8, 9, 5, 7, 0, 3, 4, 1, 6] + self.assertEqual(list(accumulate(s, min)), + [2, 2, 2, 2, 2, 0, 0, 0, 0, 0]) + self.assertEqual(list(accumulate(s, max)), + [2, 8, 9, 9, 9, 9, 9, 9, 9, 9]) + self.assertEqual(list(accumulate(s, operator.mul)), + [2, 16, 144, 720, 5040, 0, 0, 0, 0, 0]) + with self.assertRaises(TypeError): + list(accumulate(s, chr)) # unary-operation + def test_chain(self): def chain2(*iterables): diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -40,7 +40,7 @@ import struct import sys import tempfile -from test.support import captured_stdout, run_with_locale, run_unittest +from test.support import captured_stdout, run_with_locale, run_unittest, patch import textwrap import unittest import warnings @@ -1082,28 +1082,39 @@ def test_warnings(self): with warnings.catch_warnings(): logging.captureWarnings(True) - try: - warnings.filterwarnings("always", category=UserWarning) - file = io.StringIO() - h = logging.StreamHandler(file) - logger = logging.getLogger("py.warnings") - logger.addHandler(h) - warnings.warn("I'm warning you...") - logger.removeHandler(h) - s = file.getvalue() - h.close() - self.assertTrue(s.find("UserWarning: I'm warning you...\n") > 0) - - #See if an explicit file uses the original implementation - file = io.StringIO() - warnings.showwarning("Explicit", UserWarning, "dummy.py", 42, - file, "Dummy line") - s = file.getvalue() - file.close() - self.assertEqual(s, - "dummy.py:42: UserWarning: Explicit\n Dummy line\n") - finally: - logging.captureWarnings(False) + self.addCleanup(lambda: logging.captureWarnings(False)) + warnings.filterwarnings("always", category=UserWarning) + stream = io.StringIO() + h = logging.StreamHandler(stream) + logger = logging.getLogger("py.warnings") + logger.addHandler(h) + warnings.warn("I'm warning you...") + logger.removeHandler(h) + s = stream.getvalue() + h.close() + self.assertTrue(s.find("UserWarning: I'm warning you...\n") > 0) + + #See if an explicit file uses the original implementation + a_file = io.StringIO() + warnings.showwarning("Explicit", UserWarning, "dummy.py", 42, + a_file, "Dummy line") + s = a_file.getvalue() + a_file.close() + self.assertEqual(s, + "dummy.py:42: UserWarning: Explicit\n Dummy line\n") + + def test_warnings_no_handlers(self): + with warnings.catch_warnings(): + logging.captureWarnings(True) + self.addCleanup(lambda: logging.captureWarnings(False)) + + # confirm our assumption: no loggers are set + logger = logging.getLogger("py.warnings") + assert logger.handlers == [] + + warnings.showwarning("Explicit", UserWarning, "dummy.py", 42) + self.assertTrue(len(logger.handlers) == 1) + self.assertIsInstance(logger.handlers[0], logging.NullHandler) def formatFunc(format, datefmt=None): @@ -2007,6 +2018,11 @@ self.assertEqual(logged, ['should appear in logged']) + def test_set_log_record_factory(self): + man = logging.Manager(None) + expected = object() + man.setLogRecordFactory(expected) + self.assertEqual(man.logRecordFactory, expected) class ChildLoggerTest(BaseTest): def test_child_loggers(self): @@ -2198,6 +2214,479 @@ logging.raiseExceptions = old_raise_exceptions +class FakeHandler: + + def __init__(self, identifier, called): + for method in ('acquire', 'flush', 'close', 'release'): + setattr(self, method, self.record_call(identifier, method, called)) + + def record_call(self, identifier, method_name, called): + def inner(): + called.append('{} - {}'.format(identifier, method_name)) + return inner + + +class RecordingHandler(logging.NullHandler): + + def __init__(self, *args, **kwargs): + super(RecordingHandler, self).__init__(*args, **kwargs) + self.records = [] + + def handle(self, record): + """Keep track of all the emitted records.""" + self.records.append(record) + + +class ShutdownTest(BaseTest): + + """Tets suite for the shutdown method.""" + + def setUp(self): + super(ShutdownTest, self).setUp() + self.called = [] + + raise_exceptions = logging.raiseExceptions + self.addCleanup(lambda: setattr(logging, 'raiseExceptions', raise_exceptions)) + + def raise_error(self, error): + def inner(): + raise error() + return inner + + def test_no_failure(self): + # create some fake handlers + handler0 = FakeHandler(0, self.called) + handler1 = FakeHandler(1, self.called) + handler2 = FakeHandler(2, self.called) + + # create live weakref to those handlers + handlers = map(logging.weakref.ref, [handler0, handler1, handler2]) + + logging.shutdown(handlerList=list(handlers)) + + expected = ['2 - acquire', '2 - flush', '2 - close', '2 - release', + '1 - acquire', '1 - flush', '1 - close', '1 - release', + '0 - acquire', '0 - flush', '0 - close', '0 - release'] + self.assertEqual(expected, self.called) + + def _test_with_failure_in_method(self, method, error): + handler = FakeHandler(0, self.called) + setattr(handler, method, self.raise_error(error)) + handlers = [logging.weakref.ref(handler)] + + logging.shutdown(handlerList=list(handlers)) + + self.assertEqual('0 - release', self.called[-1]) + + def test_with_ioerror_in_acquire(self): + self._test_with_failure_in_method('acquire', IOError) + + def test_with_ioerror_in_flush(self): + self._test_with_failure_in_method('flush', IOError) + + def test_with_ioerror_in_close(self): + self._test_with_failure_in_method('close', IOError) + + def test_with_valueerror_in_acquire(self): + self._test_with_failure_in_method('acquire', ValueError) + + def test_with_valueerror_in_flush(self): + self._test_with_failure_in_method('flush', ValueError) + + def test_with_valueerror_in_close(self): + self._test_with_failure_in_method('close', ValueError) + + def test_with_other_error_in_acquire_without_raise(self): + logging.raiseExceptions = False + self._test_with_failure_in_method('acquire', IndexError) + + def test_with_other_error_in_flush_without_raise(self): + logging.raiseExceptions = False + self._test_with_failure_in_method('flush', IndexError) + + def test_with_other_error_in_close_without_raise(self): + logging.raiseExceptions = False + self._test_with_failure_in_method('close', IndexError) + + def test_with_other_error_in_acquire_with_raise(self): + logging.raiseExceptions = True + self.assertRaises(IndexError, self._test_with_failure_in_method, + 'acquire', IndexError) + + def test_with_other_error_in_flush_with_raise(self): + logging.raiseExceptions = True + self.assertRaises(IndexError, self._test_with_failure_in_method, + 'flush', IndexError) + + def test_with_other_error_in_close_with_raise(self): + logging.raiseExceptions = True + self.assertRaises(IndexError, self._test_with_failure_in_method, + 'close', IndexError) + + +class ModuleLevelMiscTest(BaseTest): + + """Tets suite for some module level methods.""" + + def test_disable(self): + old_disable = logging.root.manager.disable + # confirm our assumptions are correct + assert old_disable == 0 + self.addCleanup(lambda: logging.disable(old_disable)) + + logging.disable(83) + self.assertEqual(logging.root.manager.disable, 83) + + def _test_log(self, method, level=None): + called = [] + patch(self, logging, 'basicConfig', + lambda *a, **kw: called.append(a, kw)) + + recording = RecordingHandler() + logging.root.addHandler(recording) + + log_method = getattr(logging, method) + if level is not None: + log_method(level, "test me: %r", recording) + else: + log_method("test me: %r", recording) + + self.assertEqual(len(recording.records), 1) + record = recording.records[0] + self.assertEqual(record.getMessage(), "test me: %r" % recording) + + expected_level = level if level is not None else getattr(logging, method.upper()) + self.assertEqual(record.levelno, expected_level) + + # basicConfig was not called! + self.assertEqual(called, []) + + def test_log(self): + self._test_log('log', logging.ERROR) + + def test_debug(self): + self._test_log('debug') + + def test_info(self): + self._test_log('info') + + def test_warning(self): + self._test_log('warning') + + def test_error(self): + self._test_log('error') + + def test_critical(self): + self._test_log('critical') + + def test_set_logger_class(self): + self.assertRaises(TypeError, logging.setLoggerClass, object) + + class MyLogger(logging.Logger): + pass + + logging.setLoggerClass(MyLogger) + self.assertEqual(logging.getLoggerClass(), MyLogger) + + logging.setLoggerClass(logging.Logger) + self.assertEqual(logging.getLoggerClass(), logging.Logger) + + +class BasicConfigTest(unittest.TestCase): + + """Tets suite for logging.basicConfig.""" + + def setUp(self): + super(BasicConfigTest, self).setUp() + handlers = logging.root.handlers + self.addCleanup(lambda: setattr(logging.root, 'handlers', handlers)) + logging.root.handlers = [] + + def tearDown(self): + logging.shutdown() + super(BasicConfigTest, self).tearDown() + + def test_no_kwargs(self): + logging.basicConfig() + + # handler defaults to a StreamHandler to sys.stderr + self.assertEqual(len(logging.root.handlers), 1) + handler = logging.root.handlers[0] + self.assertIsInstance(handler, logging.StreamHandler) + self.assertEqual(handler.stream, sys.stderr) + + formatter = handler.formatter + # format defaults to logging.BASIC_FORMAT + self.assertEqual(formatter._style._fmt, logging.BASIC_FORMAT) + # datefmt defaults to None + self.assertIsNone(formatter.datefmt) + # style defaults to % + self.assertIsInstance(formatter._style, logging.PercentStyle) + + # level is not explicitely set + self.assertEqual(logging.root.level, logging.WARNING) + + def test_filename(self): + logging.basicConfig(filename='test.log') + + self.assertEqual(len(logging.root.handlers), 1) + handler = logging.root.handlers[0] + self.assertIsInstance(handler, logging.FileHandler) + + expected = logging.FileHandler('test.log', 'a') + self.addCleanup(expected.close) + self.assertEqual(handler.stream.mode, expected.stream.mode) + self.assertEqual(handler.stream.name, expected.stream.name) + + def test_filemode(self): + logging.basicConfig(filename='test.log', filemode='wb') + + handler = logging.root.handlers[0] + expected = logging.FileHandler('test.log', 'wb') + self.addCleanup(expected.close) + self.assertEqual(handler.stream.mode, expected.stream.mode) + + def test_stream(self): + stream = io.StringIO() + self.addCleanup(stream.close) + logging.basicConfig(stream=stream) + + self.assertEqual(len(logging.root.handlers), 1) + handler = logging.root.handlers[0] + self.assertIsInstance(handler, logging.StreamHandler) + self.assertEqual(handler.stream, stream) + + def test_format(self): + logging.basicConfig(format='foo') + + formatter = logging.root.handlers[0].formatter + self.assertEqual(formatter._style._fmt, 'foo') + + def test_datefmt(self): + logging.basicConfig(datefmt='bar') + + formatter = logging.root.handlers[0].formatter + self.assertEqual(formatter.datefmt, 'bar') + + def test_style(self): + logging.basicConfig(style='$') + + formatter = logging.root.handlers[0].formatter + self.assertIsInstance(formatter._style, logging.StringTemplateStyle) + + def test_level(self): + old_level = logging.root.level + self.addCleanup(lambda: logging.root.setLevel(old_level)) + + logging.basicConfig(level=57) + self.assertEqual(logging.root.level, 57) + + def _test_log(self, method, level=None): + # logging.root has no handlers so basicConfig should be called + called = [] + + old_basic_config = logging.basicConfig + def my_basic_config(*a, **kw): + old_basic_config() + old_level = logging.root.level + logging.root.setLevel(100) # avoid having messages in stderr + self.addCleanup(lambda: logging.root.setLevel(old_level)) + called.append((a, kw)) + + patch(self, logging, 'basicConfig', my_basic_config) + + log_method = getattr(logging, method) + if level is not None: + log_method(level, "test me") + else: + log_method("test me") + + # basicConfig was called with no arguments + self.assertEqual(called, [((), {})]) + + def test_log(self): + self._test_log('log', logging.WARNING) + + def test_debug(self): + self._test_log('debug') + + def test_info(self): + self._test_log('info') + + def test_warning(self): + self._test_log('warning') + + def test_error(self): + self._test_log('error') + + def test_critical(self): + self._test_log('critical') + + +class LoggerAdapterTest(unittest.TestCase): + + def setUp(self): + super(LoggerAdapterTest, self).setUp() + old_handler_list = logging._handlerList[:] + + self.recording = RecordingHandler() + self.logger = logging.root + self.logger.addHandler(self.recording) + self.addCleanup(lambda: self.logger.removeHandler(self.recording)) + self.addCleanup(self.recording.close) + + def cleanup(): + logging._handlerList[:] = old_handler_list + + self.addCleanup(cleanup) + self.addCleanup(logging.shutdown) + self.adapter = logging.LoggerAdapter(logger=self.logger, extra=None) + + def test_exception(self): + msg = 'testing exception: %r' + exc = None + try: + assert False + except AssertionError as e: + exc = e + self.adapter.exception(msg, self.recording) + + self.assertEqual(len(self.recording.records), 1) + record = self.recording.records[0] + self.assertEqual(record.levelno, logging.ERROR) + self.assertEqual(record.msg, msg) + self.assertEqual(record.args, (self.recording,)) + self.assertEqual(record.exc_info, + (exc.__class__, exc, exc.__traceback__)) + + def test_critical(self): + msg = 'critical test! %r' + self.adapter.critical(msg, self.recording) + + self.assertEqual(len(self.recording.records), 1) + record = self.recording.records[0] + self.assertEqual(record.levelno, logging.CRITICAL) + self.assertEqual(record.msg, msg) + self.assertEqual(record.args, (self.recording,)) + + def test_is_enabled_for(self): + old_disable = self.adapter.logger.manager.disable + self.adapter.logger.manager.disable = 33 + self.addCleanup(lambda: setattr(self.adapter.logger.manager, + 'disable', old_disable)) + self.assertFalse(self.adapter.isEnabledFor(32)) + + def test_has_handlers(self): + self.assertTrue(self.adapter.hasHandlers()) + + for handler in self.logger.handlers: + self.logger.removeHandler(handler) + assert not self.logger.hasHandlers() + + self.assertFalse(self.adapter.hasHandlers()) + + +class LoggerTest(BaseTest): + + def setUp(self): + super(LoggerTest, self).setUp() + self.recording = RecordingHandler() + self.logger = logging.Logger(name='blah') + self.logger.addHandler(self.recording) + self.addCleanup(lambda: self.logger.removeHandler(self.recording)) + self.addCleanup(self.recording.close) + self.addCleanup(logging.shutdown) + + def test_set_invalid_level(self): + self.assertRaises(TypeError, self.logger.setLevel, object()) + + def test_exception(self): + msg = 'testing exception: %r' + exc = None + try: + assert False + except AssertionError as e: + exc = e + self.logger.exception(msg, self.recording) + + self.assertEqual(len(self.recording.records), 1) + record = self.recording.records[0] + self.assertEqual(record.levelno, logging.ERROR) + self.assertEqual(record.msg, msg) + self.assertEqual(record.args, (self.recording,)) + self.assertEqual(record.exc_info, + (exc.__class__, exc, exc.__traceback__)) + + def test_log_invalid_level_with_raise(self): + old_raise = logging.raiseExceptions + self.addCleanup(lambda: setattr(logging, 'raiseExecptions', old_raise)) + + logging.raiseExceptions = True + self.assertRaises(TypeError, self.logger.log, '10', 'test message') + + def test_log_invalid_level_no_raise(self): + old_raise = logging.raiseExceptions + self.addCleanup(lambda: setattr(logging, 'raiseExecptions', old_raise)) + + logging.raiseExceptions = False + self.logger.log('10', 'test message') # no exception happens + + def test_find_caller_with_stack_info(self): + called = [] + patch(self, logging.traceback, 'print_stack', + lambda f, file: called.append(file.getvalue())) + + self.logger.findCaller(stack_info=True) + + self.assertEqual(len(called), 1) + self.assertEqual('Stack (most recent call last):\n', called[0]) + + def test_make_record_with_extra_overwrite(self): + name = 'my record' + level = 13 + fn = lno = msg = args = exc_info = func = sinfo = None + rv = logging._logRecordFactory(name, level, fn, lno, msg, args, + exc_info, func, sinfo) + + for key in ('message', 'asctime') + tuple(rv.__dict__.keys()): + extra = {key: 'some value'} + self.assertRaises(KeyError, self.logger.makeRecord, name, level, + fn, lno, msg, args, exc_info, + extra=extra, sinfo=sinfo) + + def test_make_record_with_extra_no_overwrite(self): + name = 'my record' + level = 13 + fn = lno = msg = args = exc_info = func = sinfo = None + extra = {'valid_key': 'some value'} + result = self.logger.makeRecord(name, level, fn, lno, msg, args, + exc_info, extra=extra, sinfo=sinfo) + self.assertIn('valid_key', result.__dict__) + + def test_has_handlers(self): + self.assertTrue(self.logger.hasHandlers()) + + for handler in self.logger.handlers: + self.logger.removeHandler(handler) + assert not self.logger.hasHandlers() + + self.assertFalse(self.logger.hasHandlers()) + + def test_has_handlers_no_propagate(self): + child_logger = logging.getLogger('blah.child') + child_logger.propagate = False + assert child_logger.handlers == [] + + self.assertFalse(child_logger.hasHandlers()) + + def test_is_enabled_for(self): + old_disable = self.logger.manager.disable + self.logger.manager.disable = 23 + self.addCleanup(lambda: setattr(self.logger.manager, + 'disable', old_disable)) + self.assertFalse(self.logger.isEnabledFor(22)) + + class BaseFileTest(BaseTest): "Base class for handler tests that write log files" @@ -2319,6 +2808,8 @@ EncodingTest, WarningsTest, ConfigDictTest, ManagerTest, FormatterTest, LogRecordFactoryTest, ChildLoggerTest, QueueHandlerTest, + ShutdownTest, ModuleLevelMiscTest, BasicConfigTest, + LoggerAdapterTest, LoggerTest, RotatingFileHandlerTest, LastResortTest, TimedRotatingFileHandlerTest diff --git a/Lib/test/test_mailbox.py b/Lib/test/test_mailbox.py --- a/Lib/test/test_mailbox.py +++ b/Lib/test/test_mailbox.py @@ -869,8 +869,6 @@ self.assertFalse((perms & 0o111)) # Execute bits should all be off. def test_reread(self): - # Wait for 2 seconds - time.sleep(2) # Initially, the mailbox has not been read and the time is null. assert getattr(self._box, '_last_read', None) is None @@ -879,15 +877,21 @@ self._box._refresh() assert getattr(self._box, '_last_read', None) is not None - # Try calling _refresh() again; the modification times shouldn't have - # changed, so the mailbox should not be re-reading. Re-reading causes - # the ._toc attribute to be assigned a new dictionary object, so - # we'll check that the ._toc attribute isn't a different object. + # Put the last modified times more than one second into the past + # (because mtime has a one second granularity, a refresh is done + # unconditionally if called for within the same second, just in case + # the mbox has changed). + for subdir in ('cur', 'new'): + os.utime(os.path.join(self._box._path, subdir), + (time.time()-5,)*2) + + # Re-reading causes the ._toc attribute to be assigned a new dictionary + # object, so we'll check that the ._toc attribute isn't a different + # object. orig_toc = self._box._toc def refreshed(): return self._box._toc is not orig_toc - time.sleep(1) # Wait 1sec to ensure time.time()'s value changes self._box._refresh() assert not refreshed() diff --git a/Lib/test/test_msilib.py b/Lib/test/test_msilib.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_msilib.py @@ -0,0 +1,46 @@ +""" Test suite for the code in msilib """ +import unittest +import os +from test.support import run_unittest, import_module +msilib = import_module('msilib') + +class Test_make_id(unittest.TestCase): + #http://msdn.microsoft.com/en-us/library/aa369212(v=vs.85).aspx + """The Identifier data type is a text string. Identifiers may contain the + ASCII characters A-Z (a-z), digits, underscores (_), or periods (.). + However, every identifier must begin with either a letter or an + underscore. + """ + + def test_is_no_change_required(self): + self.assertEqual( + msilib.make_id("short"), "short") + self.assertEqual( + msilib.make_id("nochangerequired"), "nochangerequired") + self.assertEqual( + msilib.make_id("one.dot"), "one.dot") + self.assertEqual( + msilib.make_id("_"), "_") + self.assertEqual( + msilib.make_id("a"), "a") + #self.assertEqual( + # msilib.make_id(""), "") + + def test_invalid_first_char(self): + self.assertEqual( + msilib.make_id("9.short"), "_9.short") + self.assertEqual( + msilib.make_id(".short"), "_.short") + + def test_invalid_any_char(self): + self.assertEqual( + msilib.make_id(".s\x82ort"), "_.s_ort") + self.assertEqual ( + msilib.make_id(".s\x82o?*+rt"), "_.s_o___rt") + + +def test_main(): + run_unittest(__name__) + +if __name__ == '__main__': + test_main() diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -929,6 +929,21 @@ self.assertEqual(list(arr[:]), seq) @unittest.skipIf(c_int is None, "requires _ctypes") + def test_array_from_size(self): + size = 10 + # Test for zeroing (see issue #11675). + # The repetition below strengthens the test by increasing the chances + # of previously allocated non-zero memory being used for the new array + # on the 2nd and 3rd loops. + for _ in range(3): + arr = self.Array('i', size) + self.assertEqual(len(arr), size) + self.assertEqual(list(arr), [0] * size) + arr[:] = range(10) + self.assertEqual(list(arr), list(range(10))) + del arr + + @unittest.skipIf(c_int is None, "requires _ctypes") def test_rawarray(self): self.test_array(raw=True) diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -12,9 +12,10 @@ import xml.etree import textwrap from io import StringIO +from collections import namedtuple from contextlib import contextmanager from test.support import TESTFN, forget, rmtree, EnvironmentVarGuard, \ - reap_children, captured_output + reap_children, captured_output, captured_stdout from test import pydoc_mod @@ -379,6 +380,15 @@ finally: pydoc.getpager = getpager_old + def test_namedtuple_public_underscore(self): + NT = namedtuple('NT', ['abc', 'def'], rename=True) + with captured_stdout() as help_io: + help(NT) + helptext = help_io.getvalue() + self.assertIn('_1', helptext) + self.assertIn('_replace', helptext) + self.assertIn('_asdict', helptext) + class TestDescriptions(unittest.TestCase): diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -1,7 +1,9 @@ from test.support import verbose, run_unittest import re from re import Scanner -import sys, traceback +import sys +import string +import traceback from weakref import proxy # Misc tests from Tim Peters' re.doc @@ -411,31 +413,62 @@ self.assertEqual(re.search("\s(b)", " b").group(1), "b") self.assertEqual(re.search("a\s", "a ").group(0), "a ") + def assertMatch(self, pattern, text, match=None, span=None, + matcher=re.match): + if match is None and span is None: + # the pattern matches the whole text + match = text + span = (0, len(text)) + elif match is None or span is None: + raise ValueError('If match is not None, span should be specified ' + '(and vice versa).') + m = matcher(pattern, text) + self.assertTrue(m) + self.assertEqual(m.group(), match) + self.assertEqual(m.span(), span) + def test_re_escape(self): - p="" - self.assertEqual(re.escape(p), p) - for i in range(0, 256): - p = p + chr(i) - self.assertEqual(re.match(re.escape(chr(i)), chr(i)) is not None, - True) - self.assertEqual(re.match(re.escape(chr(i)), chr(i)).span(), (0,1)) - - pat=re.compile(re.escape(p)) - self.assertEqual(pat.match(p) is not None, True) - self.assertEqual(pat.match(p).span(), (0,256)) + alnum_chars = string.ascii_letters + string.digits + p = ''.join(chr(i) for i in range(256)) + for c in p: + if c in alnum_chars: + self.assertEqual(re.escape(c), c) + elif c == '\x00': + self.assertEqual(re.escape(c), '\\000') + else: + self.assertEqual(re.escape(c), '\\' + c) + self.assertMatch(re.escape(c), c) + self.assertMatch(re.escape(p), p) def test_re_escape_byte(self): - p=b"" - self.assertEqual(re.escape(p), p) - for i in range(0, 256): + alnum_chars = (string.ascii_letters + string.digits).encode('ascii') + p = bytes(range(256)) + for i in p: b = bytes([i]) - p += b - self.assertEqual(re.match(re.escape(b), b) is not None, True) - self.assertEqual(re.match(re.escape(b), b).span(), (0,1)) + if b in alnum_chars: + self.assertEqual(re.escape(b), b) + elif i == 0: + self.assertEqual(re.escape(b), b'\\000') + else: + self.assertEqual(re.escape(b), b'\\' + b) + self.assertMatch(re.escape(b), b) + self.assertMatch(re.escape(p), p) - pat=re.compile(re.escape(p)) - self.assertEqual(pat.match(p) is not None, True) - self.assertEqual(pat.match(p).span(), (0,256)) + def test_re_escape_non_ascii(self): + s = 'xxx\u2620\u2620\u2620xxx' + s_escaped = re.escape(s) + self.assertEqual(s_escaped, 'xxx\\\u2620\\\u2620\\\u2620xxx') + self.assertMatch(s_escaped, s) + self.assertMatch('.%s+.' % re.escape('\u2620'), s, + 'x\u2620\u2620\u2620x', (2, 7), re.search) + + def test_re_escape_non_ascii_bytes(self): + b = 'y\u2620y\u2620y'.encode('utf-8') + b_escaped = re.escape(b) + self.assertEqual(b_escaped, b'y\\\xe2\\\x98\\\xa0y\\\xe2\\\x98\\\xa0y') + self.assertMatch(b_escaped, b) + res = re.findall(re.escape('\u2620'.encode('utf-8')), b) + self.assertEqual(len(res), 2) def pickle_test(self, pickle): oldpat = re.compile('a(?:b|(c|e){1,2}?|d)+?(.)') diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -1325,6 +1325,7 @@ stdout=subprocess.PIPE, bufsize=0) f = p.stdout + self.addCleanup(f.close) try: self.assertEqual(f.read(4), b"appl") self.assertIn(f, select.select([f], [], [], 0.0)[0]) diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -501,7 +501,7 @@ def test_sys_flags(self): self.assertTrue(sys.flags) - attrs = ("debug", "division_warning", + attrs = ("debug", "inspect", "interactive", "optimize", "dont_write_bytecode", "no_user_site", "no_site", "ignore_environment", "verbose", "bytes_warning", "quiet") diff --git a/Lib/test/test_urllibnet.py b/Lib/test/test_urllibnet.py --- a/Lib/test/test_urllibnet.py +++ b/Lib/test/test_urllibnet.py @@ -12,6 +12,7 @@ class URLTimeoutTest(unittest.TestCase): + # XXX this test doesn't seem to test anything useful. TIMEOUT = 30.0 @@ -24,7 +25,7 @@ def testURLread(self): with support.transient_internet("www.python.org"): f = urllib.request.urlopen("http://www.python.org/") - x = f.read() + x = f.read() class urlopenNetworkTests(unittest.TestCase): """Tests urllib.reqest.urlopen using the network. @@ -43,8 +44,10 @@ def urlopen(self, *args, **kwargs): resource = args[0] - with support.transient_internet(resource): - return urllib.request.urlopen(*args, **kwargs) + cm = support.transient_internet(resource) + cm.__enter__() + self.addCleanup(cm.__exit__, None, None, None) + return urllib.request.urlopen(*args, **kwargs) def test_basic(self): # Simple test expected to pass. @@ -135,8 +138,10 @@ def urlretrieve(self, *args): resource = args[0] - with support.transient_internet(resource): - return urllib.request.urlretrieve(*args) + cm = support.transient_internet(resource) + cm.__enter__() + self.addCleanup(cm.__exit__, None, None, None) + return urllib.request.urlretrieve(*args) def test_basic(self): # Test basic functionality. diff --git a/Lib/test/test_xdrlib.py b/Lib/test/test_xdrlib.py --- a/Lib/test/test_xdrlib.py +++ b/Lib/test/test_xdrlib.py @@ -12,6 +12,7 @@ a = [b'what', b'is', b'hapnin', b'doctor'] p.pack_int(42) + p.pack_int(-17) p.pack_uint(9) p.pack_bool(True) p.pack_bool(False) @@ -29,6 +30,7 @@ self.assertEqual(up.get_position(), 0) self.assertEqual(up.unpack_int(), 42) + self.assertEqual(up.unpack_int(), -17) self.assertEqual(up.unpack_uint(), 9) self.assertTrue(up.unpack_bool() is True) diff --git a/Lib/xdrlib.py b/Lib/xdrlib.py --- a/Lib/xdrlib.py +++ b/Lib/xdrlib.py @@ -50,7 +50,9 @@ def pack_uint(self, x): self.__buf.write(struct.pack('>L', x)) - pack_int = pack_uint + def pack_int(self, x): + self.__buf.write(struct.pack('>l', x)) + pack_enum = pack_int def pack_bool(self, x): diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -358,6 +358,7 @@ Larry Hastings Shane Hathaway Rycharde Hawkes +Ben Hayden Jochen Hayek Christian Heimes Thomas Heller @@ -573,6 +574,7 @@ Greg McFarlane Alan McIntyre Michael McLay +Mark Mc Mahon Gordon McMillan Caolan McNamara Andrew McNamara diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #10998: Remove mentions of -Q, sys.flags.division_warning and + Py_DivisionWarningFlag left over from Python 2. + - Issue #11244: Remove an unnecessary peepholer check that was preventing negative zeros from being constant-folded properly. @@ -84,8 +87,33 @@ Library ------- -- Issue #11662: Make urllib and urllib2 ignore redirections if the - scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). +- Removed the 'strict' argument to email.parser.Parser, which has been + deprecated since Python 2.4. + +- Issue #11256: Fix inspect.getcallargs on functions that take only keyword + arguments. + +- Issue #11696: Fix ID generation in msilib. + +- itertools.accumulate now supports an optional *func* argument for + a user-supplied binary function. + +- Issue #11692: Remove unnecessary demo functions in subprocess module. + +- Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when + trying to pack a negative (in-range) integer. + +- Issue #11675: multiprocessing.[Raw]Array objects created from an integer size + are now zeroed on creation. This matches the behaviour specified by the + documentation. + +- Issue #7639: Fix short file name generation in bdist_msi + +- Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. + Patch by Ben Hayden. + +- Issue #11635: Don't use polling in worker threads and processes launched by + concurrent.futures. - Issue #6811: Allow importlib to change a code object's co_filename attribute to match the path to where the source code currently is, not where the code @@ -108,6 +136,9 @@ - Issue #11628: cmp_to_key generated class should use __slots__. +- Issue #11666: let help() display named tuple attributes and methods + that start with a leading underscore. + - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. @@ -284,6 +315,18 @@ - Issue #11388: Added a clear() method to MutableSequence +- Issue #11174: Add argparse.MetavarTypeHelpFormatter, which uses type names + for the names of optional and positional arguments in help messages. + +- Issue #9348: Raise an early error if argparse nargs and metavar don't match. + +- Issue #8982: Improve the documentation for the argparse Namespace object. + +- Issue #9343: Document that argparse parent parsers must be configured before + their children. + +- Issue #9026: Fix order of argparse sub-commands in help messages. + Build ----- @@ -299,6 +342,12 @@ - Issue #11179: Make ccbench work under Python 3.1 and 2.7 again. +Extensions +---------- + +- Issue #1838: Prevent segfault in ctypes, when _as_parameter_ on a class is set + to an instance of the class. + Tests ----- diff --git a/Misc/python.man b/Misc/python.man --- a/Misc/python.man +++ b/Misc/python.man @@ -37,10 +37,6 @@ .B \-O0 ] [ -.B -Q -.I argument -] -[ .B \-s ] [ @@ -152,15 +148,6 @@ Do not print the version and copyright messages. These messages are also suppressed in non-interactive mode. .TP -.BI "\-Q " argument -Division control; see PEP 238. The argument must be one of "old" (the -default, int/int and long/long return an int or long), "new" (new -division semantics, i.e. int/int and long/long returns a float), -"warn" (old division semantics with a warning for int/int and -long/long), or "warnall" (old division semantics with a warning for -all use of the division operator). For a use of "warnall", see the -Tools/scripts/fixdiv.py script. -.TP .B \-s Don't add user site directory to sys.path. .TP diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -585,7 +585,10 @@ CDataType_from_param(PyObject *type, PyObject *value) { PyObject *as_parameter; - if (1 == PyObject_IsInstance(value, type)) { + int res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -598,10 +601,14 @@ /* If we got a PyCArgObject, we must check if the object packed in it is an instance of the type's dict->proto */ - if(dict && ob - && PyObject_IsInstance(ob, dict->proto)) { - Py_INCREF(value); - return value; + if(dict && ob) { + res = PyObject_IsInstance(ob, dict->proto); + if (res == -1) + return NULL; + if (res) { + Py_INCREF(value); + return value; + } } ob_name = (ob) ? Py_TYPE(ob)->tp_name : "???"; PyErr_Format(PyExc_TypeError, @@ -951,8 +958,7 @@ Py_INCREF(value); /* _byref steals a refcount */ return _byref(value); case -1: - PyErr_Clear(); - break; + return NULL; default: break; } @@ -1431,6 +1437,7 @@ c_wchar_p_from_param(PyObject *type, PyObject *value) { PyObject *as_parameter; + int res; if (value == Py_None) { Py_INCREF(Py_None); return Py_None; @@ -1451,7 +1458,10 @@ } return (PyObject *)parg; } - if (PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -1492,6 +1502,7 @@ c_char_p_from_param(PyObject *type, PyObject *value) { PyObject *as_parameter; + int res; if (value == Py_None) { Py_INCREF(Py_None); return Py_None; @@ -1512,7 +1523,10 @@ } return (PyObject *)parg; } - if (PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -1554,6 +1568,7 @@ { StgDictObject *stgd; PyObject *as_parameter; + int res; /* None */ if (value == Py_None) { @@ -1631,7 +1646,10 @@ return (PyObject *)parg; } /* c_void_p instance (or subclass) */ - if (PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { /* c_void_p instances */ Py_INCREF(value); return value; @@ -1990,10 +2008,14 @@ PyCArgObject *parg; struct fielddesc *fd; PyObject *as_parameter; + int res; /* If the value is already an instance of the requested type, we can use it as is */ - if (1 == PyObject_IsInstance(value, type)) { + res = PyObject_IsInstance(value, type); + if (res == -1) + return NULL; + if (res) { Py_INCREF(value); return value; } @@ -2022,7 +2044,12 @@ as_parameter = PyObject_GetAttrString(value, "_as_parameter_"); if (as_parameter) { + if (Py_EnterRecursiveCall("while processing _as_parameter_")) { + Py_DECREF(as_parameter); + return NULL; + } value = PyCSimpleType_from_param(type, as_parameter); + Py_LeaveRecursiveCall(); Py_DECREF(as_parameter); return value; } @@ -2714,6 +2741,7 @@ Py_ssize_t size, char *ptr) { CDataObject *src; + int err; if (setfunc) return setfunc(ptr, value, size); @@ -2754,7 +2782,10 @@ } src = (CDataObject *)value; - if (PyObject_IsInstance(value, type)) { + err = PyObject_IsInstance(value, type); + if (err == -1) + return NULL; + if (err) { memcpy(ptr, src->b_ptr, size); @@ -4749,14 +4780,17 @@ stgdict = PyObject_stgdict((PyObject *)self); assert(stgdict); /* Cannot be NULL fr pointer instances */ assert(stgdict->proto); - if (!CDataObject_Check(value) - || 0 == PyObject_IsInstance(value, stgdict->proto)) { - /* XXX PyObject_IsInstance could return -1! */ - PyErr_Format(PyExc_TypeError, - "expected %s instead of %s", - ((PyTypeObject *)(stgdict->proto))->tp_name, - Py_TYPE(value)->tp_name); - return -1; + if (!CDataObject_Check(value)) { + int res = PyObject_IsInstance(value, stgdict->proto); + if (res == -1) + return -1; + if (!res) { + PyErr_Format(PyExc_TypeError, + "expected %s instead of %s", + ((PyTypeObject *)(stgdict->proto))->tp_name, + Py_TYPE(value)->tp_name); + return -1; + } } dst = (CDataObject *)value; diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -34,9 +34,9 @@ const char * Py_GetBuildInfo(void) { - static char buildinfo[50 + sizeof HGVERSION + - ((sizeof HGTAG > sizeof HGBRANCH) ? - sizeof HGTAG : sizeof HGBRANCH)]; + static char buildinfo[50 + sizeof(HGVERSION) + + ((sizeof(HGTAG) > sizeof(HGBRANCH)) ? + sizeof(HGTAG) : sizeof(HGBRANCH))]; const char *revision = _Py_hgversion(); const char *sep = *revision ? ":" : ""; const char *hgid = _Py_hgidentifier(); diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -2590,6 +2590,7 @@ PyObject_HEAD PyObject *total; PyObject *it; + PyObject *binop; } accumulateobject; static PyTypeObject accumulate_type; @@ -2597,12 +2598,14 @@ static PyObject * accumulate_new(PyTypeObject *type, PyObject *args, PyObject *kwds) { - static char *kwargs[] = {"iterable", NULL}; + static char *kwargs[] = {"iterable", "func", NULL}; PyObject *iterable; PyObject *it; + PyObject *binop = NULL; accumulateobject *lz; - if (!PyArg_ParseTupleAndKeywords(args, kwds, "O:accumulate", kwargs, &iterable)) + if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|O:accumulate", + kwargs, &iterable, &binop)) return NULL; /* Get iterator. */ @@ -2617,6 +2620,8 @@ return NULL; } + Py_XINCREF(binop); + lz->binop = binop; lz->total = NULL; lz->it = it; return (PyObject *)lz; @@ -2626,6 +2631,7 @@ accumulate_dealloc(accumulateobject *lz) { PyObject_GC_UnTrack(lz); + Py_XDECREF(lz->binop); Py_XDECREF(lz->total); Py_XDECREF(lz->it); Py_TYPE(lz)->tp_free(lz); @@ -2634,6 +2640,7 @@ static int accumulate_traverse(accumulateobject *lz, visitproc visit, void *arg) { + Py_VISIT(lz->binop); Py_VISIT(lz->it); Py_VISIT(lz->total); return 0; @@ -2653,8 +2660,11 @@ lz->total = val; return lz->total; } - - newtotal = PyNumber_Add(lz->total, val); + + if (lz->binop == NULL) + newtotal = PyNumber_Add(lz->total, val); + else + newtotal = PyObject_CallFunctionObjArgs(lz->binop, lz->total, val, NULL); Py_DECREF(val); if (newtotal == NULL) return NULL; @@ -2668,9 +2678,9 @@ } PyDoc_STRVAR(accumulate_doc, -"accumulate(iterable) --> accumulate object\n\ +"accumulate(iterable[, func]) --> accumulate object\n\ \n\ -Return series of accumulated sums."); +Return series of accumulated sums (or other binary function results)."); static PyTypeObject accumulate_type = { PyVarObject_HEAD_INIT(NULL, 0) @@ -3628,7 +3638,7 @@ repeat(elem [,n]) --> elem, elem, elem, ... endlessly or up to n times\n\ \n\ Iterators terminating on the shortest input sequence:\n\ -accumulate(p, start=0) --> p0, p0+p1, p0+p1+p2\n\ +accumulate(p[, func]) --> p0, p0+p1, p0+p1+p2\n\ chain(p, q, ...) --> p0, p1, ... plast, q0, q1, ... \n\ compress(data, selectors) --> (d[0] if s[0]), (d[1] if s[1]), ...\n\ dropwhile(pred, seq) --> seq[n], seq[n+1], starting when pred fails\n\ diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -41,10 +41,6 @@ #define PyBytesObject_SIZE (offsetof(PyBytesObject, ob_sval) + 1) /* - For both PyBytes_FromString() and PyBytes_FromStringAndSize(), the - parameter `size' denotes number of characters to allocate, not counting any - null terminating character. - For PyBytes_FromString(), the parameter `str' points to a null-terminated string containing exactly `size' bytes. @@ -61,8 +57,8 @@ The PyObject member `op->ob_size', which denotes the number of "extra items" in a variable-size object, will contain the number of bytes - allocated for string data, not counting the null terminating character. It - is therefore equal to the equal to the `size' parameter (for + allocated for string data, not counting the null terminating character. + It is therefore equal to the `size' parameter (for PyBytes_FromStringAndSize()) or the length of the string in the `str' parameter (for PyBytes_FromString()). */ diff --git a/Objects/object.c b/Objects/object.c --- a/Objects/object.c +++ b/Objects/object.c @@ -29,8 +29,6 @@ } #endif /* Py_REF_DEBUG */ -int Py_DivisionWarningFlag; - /* Object allocation routines used by NEWOBJ and NEWVAROBJ macros. These are used by the individual routines for object creation. Do not call them otherwise, they do not initialize the object! */ diff --git a/Python/sysmodule.c b/Python/sysmodule.c --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1312,7 +1312,6 @@ static PyStructSequence_Field flags_fields[] = { {"debug", "-d"}, - {"division_warning", "-Q"}, {"inspect", "-i"}, {"interactive", "-i"}, {"optimize", "-O or -OO"}, @@ -1336,9 +1335,9 @@ flags__doc__, /* doc */ flags_fields, /* fields */ #ifdef RISCOS - 13 + 12 #else - 12 + 11 #endif }; @@ -1356,7 +1355,6 @@ PyStructSequence_SET_ITEM(seq, pos++, PyLong_FromLong(flag)) SetFlag(Py_DebugFlag); - SetFlag(Py_DivisionWarningFlag); SetFlag(Py_InspectFlag); SetFlag(Py_InteractiveFlag); SetFlag(Py_OptimizeFlag); diff --git a/Tools/buildbot/clean-amd64.bat b/Tools/buildbot/clean-amd64.bat --- a/Tools/buildbot/clean-amd64.bat +++ b/Tools/buildbot/clean-amd64.bat @@ -1,7 +1,10 @@ @rem Used by the buildbot "clean" step. call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 -cd PCbuild @echo Deleting .pyc/.pyo files ... del /s Lib\*.pyc Lib\*.pyo + at echo Deleting test leftovers ... +rmdir /s /q build +cd PCbuild vcbuild /clean pcbuild.sln "Release|x64" vcbuild /clean pcbuild.sln "Debug|x64" +cd .. diff --git a/Tools/buildbot/clean.bat b/Tools/buildbot/clean.bat --- a/Tools/buildbot/clean.bat +++ b/Tools/buildbot/clean.bat @@ -2,6 +2,9 @@ call "%VS90COMNTOOLS%vsvars32.bat" @echo Deleting .pyc/.pyo files ... del /s Lib\*.pyc Lib\*.pyo + at echo Deleting test leftovers ... +rmdir /s /q build cd PCbuild vcbuild /clean pcbuild.sln "Release|Win32" vcbuild /clean pcbuild.sln "Debug|Win32" +cd .. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:11:28 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:11:28 +0200 Subject: [Python-checkins] cpython (merge 2.5 -> 2.6): Merge issue 11662 from 2.5. Message-ID: http://hg.python.org/cpython/rev/9eeda8e3a13f changeset: 69051:9eeda8e3a13f branch: 2.6 parent: 69034:bfa2a8d91859 parent: 69044:92293101839c user: Guido van Rossum date: Tue Mar 29 12:51:16 2011 -0700 summary: Merge issue 11662 from 2.5. files: Lib/test/test_urllib.py | 14 ++++++++++++++ Lib/test/test_urllib2.py | 21 +++++++++++++++++++++ Lib/urllib.py | 12 ++++++++++++ Lib/urllib2.py | 11 +++++++++++ Misc/NEWS | 13 ++----------- 5 files changed, 60 insertions(+), 11 deletions(-) diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -162,6 +162,20 @@ finally: self.unfakehttp() + def test_invalid_redirect(self): + # urlopen() should raise IOError for many error codes. + self.fakehttp("""HTTP/1.1 302 Found +Date: Wed, 02 Jan 2008 03:03:54 GMT +Server: Apache/1.3.33 (Debian GNU/Linux) mod_ssl/2.8.22 OpenSSL/0.9.7e +Location: file:README +Connection: close +Content-Type: text/html; charset=iso-8859-1 +""") + try: + self.assertRaises(IOError, urllib.urlopen, "http://python.org/") + finally: + self.unfakehttp() + def test_empty_socket(self): # urlopen() raises IOError if the underlying socket does not send any # data. (#1680230) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -942,6 +942,27 @@ self.assertEqual(count, urllib2.HTTPRedirectHandler.max_redirections) + def test_invalid_redirect(self): + from_url = "http://example.com/a.html" + valid_schemes = ['http', 'https', 'ftp'] + invalid_schemes = ['file', 'imap', 'ldap'] + schemeless_url = "example.com/b.html" + h = urllib2.HTTPRedirectHandler() + o = h.parent = MockOpener() + req = Request(from_url) + + for scheme in invalid_schemes: + invalid_url = scheme + '://' + schemeless_url + self.assertRaises(urllib2.HTTPError, h.http_error_302, + req, MockFile(), 302, "Security Loophole", + MockHeaders({"location": invalid_url})) + + for scheme in valid_schemes: + valid_url = scheme + '://' + schemeless_url + h.http_error_302(req, MockFile(), 302, "That's fine", + MockHeaders({"location": valid_url})) + self.assertEqual(o.req.get_full_url(), valid_url) + def test_cookie_redirect(self): # cookies shouldn't leak into redirected requests from cookielib import CookieJar diff --git a/Lib/urllib.py b/Lib/urllib.py --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -652,6 +652,18 @@ fp.close() # In case the server sent a relative URL, join with original: newurl = basejoin(self.type + ":" + url, newurl) + + # For security reasons we do not allow redirects to protocols + # other than HTTP, HTTPS or FTP. + newurl_lower = newurl.lower() + if not (newurl_lower.startswith('http://') or + newurl_lower.startswith('https://') or + newurl_lower.startswith('ftp://')): + raise IOError('redirect error', errcode, + errmsg + " - Redirection to url '%s' is not allowed" % + newurl, + headers) + return self.open(newurl) def http_error_301(self, url, fp, errcode, errmsg, headers, data=None): diff --git a/Lib/urllib2.py b/Lib/urllib2.py --- a/Lib/urllib2.py +++ b/Lib/urllib2.py @@ -578,6 +578,17 @@ newurl = urlparse.urljoin(req.get_full_url(), newurl) + # For security reasons we do not allow redirects to protocols + # other than HTTP, HTTPS or FTP. + newurl_lower = newurl.lower() + if not (newurl_lower.startswith('http://') or + newurl_lower.startswith('https://') or + newurl_lower.startswith('ftp://')): + raise HTTPError(newurl, code, + msg + " - Redirection to url '%s' is not allowed" % + newurl, + headers, fp) + # XXX Probably want to forget about the state of the current # request, although that might interact poorly with other # handlers that also use handler-specific request attributes diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -19,19 +19,8 @@ Library ------- -- Issue #9129: smtpd.py is vulnerable to DoS attacks deriving from missing - error handling when accepting a new connection. - -What's New in Python 2.6.6? -=========================== - -*Release date: 2010-08-24* - -Core and Builtins ------------------ - -Library -------- +- Issue #11662: Make urllib and urllib2 ignore redirections if the + scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). What's New in Python 2.6.6 rc 2? -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:11:29 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:11:29 +0200 Subject: [Python-checkins] cpython (merge 2.6 -> 2.7): Merge issue 11662 from 2.6. Message-ID: http://hg.python.org/cpython/rev/b2934d98dac1 changeset: 69052:b2934d98dac1 branch: 2.7 parent: 69036:1a5aab273332 parent: 69051:9eeda8e3a13f user: Guido van Rossum date: Tue Mar 29 12:53:55 2011 -0700 summary: Merge issue 11662 from 2.6. files: Lib/test/test_urllib.py | 14 ++++++++++++++ Lib/test/test_urllib2.py | 21 +++++++++++++++++++++ Lib/urllib.py | 12 ++++++++++++ Lib/urllib2.py | 11 +++++++++++ Misc/NEWS | 3 +++ 5 files changed, 61 insertions(+), 0 deletions(-) diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -161,6 +161,20 @@ finally: self.unfakehttp() + def test_invalid_redirect(self): + # urlopen() should raise IOError for many error codes. + self.fakehttp("""HTTP/1.1 302 Found +Date: Wed, 02 Jan 2008 03:03:54 GMT +Server: Apache/1.3.33 (Debian GNU/Linux) mod_ssl/2.8.22 OpenSSL/0.9.7e +Location: file:README +Connection: close +Content-Type: text/html; charset=iso-8859-1 +""") + try: + self.assertRaises(IOError, urllib.urlopen, "http://python.org/") + finally: + self.unfakehttp() + def test_empty_socket(self): # urlopen() raises IOError if the underlying socket does not send any # data. (#1680230) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -969,6 +969,27 @@ self.assertEqual(count, urllib2.HTTPRedirectHandler.max_redirections) + def test_invalid_redirect(self): + from_url = "http://example.com/a.html" + valid_schemes = ['http', 'https', 'ftp'] + invalid_schemes = ['file', 'imap', 'ldap'] + schemeless_url = "example.com/b.html" + h = urllib2.HTTPRedirectHandler() + o = h.parent = MockOpener() + req = Request(from_url) + + for scheme in invalid_schemes: + invalid_url = scheme + '://' + schemeless_url + self.assertRaises(urllib2.HTTPError, h.http_error_302, + req, MockFile(), 302, "Security Loophole", + MockHeaders({"location": invalid_url})) + + for scheme in valid_schemes: + valid_url = scheme + '://' + schemeless_url + h.http_error_302(req, MockFile(), 302, "That's fine", + MockHeaders({"location": valid_url})) + self.assertEqual(o.req.get_full_url(), valid_url) + def test_cookie_redirect(self): # cookies shouldn't leak into redirected requests from cookielib import CookieJar diff --git a/Lib/urllib.py b/Lib/urllib.py --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -644,6 +644,18 @@ fp.close() # In case the server sent a relative URL, join with original: newurl = basejoin(self.type + ":" + url, newurl) + + # For security reasons we do not allow redirects to protocols + # other than HTTP, HTTPS or FTP. + newurl_lower = newurl.lower() + if not (newurl_lower.startswith('http://') or + newurl_lower.startswith('https://') or + newurl_lower.startswith('ftp://')): + raise IOError('redirect error', errcode, + errmsg + " - Redirection to url '%s' is not allowed" % + newurl, + headers) + return self.open(newurl) def http_error_301(self, url, fp, errcode, errmsg, headers, data=None): diff --git a/Lib/urllib2.py b/Lib/urllib2.py --- a/Lib/urllib2.py +++ b/Lib/urllib2.py @@ -578,6 +578,17 @@ newurl = urlparse.urljoin(req.get_full_url(), newurl) + # For security reasons we do not allow redirects to protocols + # other than HTTP, HTTPS or FTP. + newurl_lower = newurl.lower() + if not (newurl_lower.startswith('http://') or + newurl_lower.startswith('https://') or + newurl_lower.startswith('ftp://')): + raise HTTPError(newurl, code, + msg + " - Redirection to url '%s' is not allowed" % + newurl, + headers, fp) + # XXX Probably want to forget about the state of the current # request, although that might interact poorly with other # handlers that also use handler-specific request attributes diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -16,6 +16,9 @@ - Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when there are many tags (e.g. when using mq). Patch by Nadeem Vawda. +- Issue #11662: Make urllib and urllib2 ignore redirections if the + scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). + - Issue #10451: memoryview objects could allow to mutate a readable buffer. Initial patch by Ross Lagerwall. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:11:33 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:11:33 +0200 Subject: [Python-checkins] cpython (merge 3.1 -> 3.1): Merge issue 11662. Message-ID: http://hg.python.org/cpython/rev/3dc90ebc540a changeset: 69053:3dc90ebc540a branch: 3.1 parent: 69027:8517e1f5d927 parent: 69047:5937d2119a20 user: Guido van Rossum date: Tue Mar 29 12:55:41 2011 -0700 summary: Merge issue 11662. files: Doc/library/urllib.request.rst | 4 +++ Lib/test/test_urllib.py | 16 +++++++++++++ Lib/test/test_urllib2.py | 24 +++++++++++++++++++ Lib/urllib/request.py | 27 ++++++++++++++++++++++ Misc/NEWS | 3 ++ 5 files changed, 74 insertions(+), 0 deletions(-) diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -783,6 +783,10 @@ is the case, :exc:`HTTPError` is raised. See :rfc:`2616` for details of the precise meanings of the various redirection codes. + An :class:`HTTPError` exception raised as a security consideration if the + HTTPRedirectHandler is presented with a redirected url which is not an HTTP, + HTTPS or FTP url. + .. method:: HTTPRedirectHandler.redirect_request(req, fp, code, msg, hdrs, newurl) diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -2,6 +2,7 @@ import urllib.parse import urllib.request +import urllib.error import http.client import email.message import io @@ -183,6 +184,21 @@ finally: self.unfakehttp() + def test_invalid_redirect(self): + # urlopen() should raise IOError for many error codes. + self.fakehttp(b'''HTTP/1.1 302 Found +Date: Wed, 02 Jan 2008 03:03:54 GMT +Server: Apache/1.3.33 (Debian GNU/Linux) mod_ssl/2.8.22 OpenSSL/0.9.7e +Location: file://guidocomputer.athome.com:/python/license +Connection: close +Content-Type: text/html; charset=iso-8859-1 +''') + try: + self.assertRaises(urllib.error.HTTPError, urlopen, + "http://python.org/") + finally: + self.unfakehttp() + def test_empty_socket(self): # urlopen() raises IOError if the underlying socket does not send any # data. (#1680230) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -9,6 +9,7 @@ # The proxy bypass method imported below has logic specific to the OSX # proxy config data structure but is testable on all platforms. from urllib.request import Request, OpenerDirector, _proxy_bypass_macosx_sysconf +import urllib.error # XXX # Request @@ -985,6 +986,29 @@ self.assertEqual(count, urllib.request.HTTPRedirectHandler.max_redirections) + + def test_invalid_redirect(self): + from_url = "http://example.com/a.html" + valid_schemes = ['http','https','ftp'] + invalid_schemes = ['file','imap','ldap'] + schemeless_url = "example.com/b.html" + h = urllib.request.HTTPRedirectHandler() + o = h.parent = MockOpener() + req = Request(from_url) + req.timeout = socket._GLOBAL_DEFAULT_TIMEOUT + + for scheme in invalid_schemes: + invalid_url = scheme + '://' + schemeless_url + self.assertRaises(urllib.error.HTTPError, h.http_error_302, + req, MockFile(), 302, "Security Loophole", + MockHeaders({"location": invalid_url})) + + for scheme in valid_schemes: + valid_url = scheme + '://' + schemeless_url + h.http_error_302(req, MockFile(), 302, "That's fine", + MockHeaders({"location": valid_url})) + self.assertEqual(o.req.get_full_url(), valid_url) + def test_cookie_redirect(self): # cookies shouldn't leak into redirected requests from http.cookiejar import CookieJar diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -528,6 +528,17 @@ # fix a possible malformed URL urlparts = urlparse(newurl) + + # For security reasons we don't allow redirection to anything other + # than http, https or ftp. + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, code, + msg + + " - Redirection to url '%s' is not allowed" % + newurl, + headers, fp) + if not urlparts.path: urlparts = list(urlparts) urlparts[2] = "/" @@ -1864,8 +1875,24 @@ return void = fp.read() fp.close() + # In case the server sent a relative URL, join with original: newurl = urljoin(self.type + ":" + url, newurl) + + urlparts = urlparse(newurl) + + # For security reasons, we don't allow redirection to anything other + # than http, https and ftp. + + # We are using newer HTTPError with older redirect_internal method + # This older method will get deprecated in 3.3 + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, errcode, + errmsg + + " Redirection to url '%s' is not allowed." % newurl, + headers, fp) + return self.open(newurl) def http_error_301(self, url, fp, errcode, errmsg, headers, data=None): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -58,6 +58,9 @@ - Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. Patch by Ben Hayden. +- Issue #11662: Make urllib and urllib2 ignore redirections if the + scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). + - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:11:36 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:11:36 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> 3.2): Merge issue 11662. Message-ID: http://hg.python.org/cpython/rev/968bca2cab60 changeset: 69054:968bca2cab60 branch: 3.2 parent: 69031:57e99f5f5e8f parent: 69048:96a6c128822b user: Guido van Rossum date: Tue Mar 29 12:58:29 2011 -0700 summary: Merge issue 11662. files: Doc/library/urllib.request.rst | 4 +++ Lib/test/test_urllib.py | 16 +++++++++++++ Lib/test/test_urllib2.py | 24 +++++++++++++++++++ Lib/urllib/request.py | 27 ++++++++++++++++++++++ Misc/NEWS | 3 ++ 5 files changed, 74 insertions(+), 0 deletions(-) diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -650,6 +650,10 @@ is the case, :exc:`HTTPError` is raised. See :rfc:`2616` for details of the precise meanings of the various redirection codes. + An :class:`HTTPError` exception raised as a security consideration if the + HTTPRedirectHandler is presented with a redirected url which is not an HTTP, + HTTPS or FTP url. + .. method:: HTTPRedirectHandler.redirect_request(req, fp, code, msg, hdrs, newurl) diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -2,6 +2,7 @@ import urllib.parse import urllib.request +import urllib.error import http.client import email.message import io @@ -206,6 +207,21 @@ finally: self.unfakehttp() + def test_invalid_redirect(self): + # urlopen() should raise IOError for many error codes. + self.fakehttp(b'''HTTP/1.1 302 Found +Date: Wed, 02 Jan 2008 03:03:54 GMT +Server: Apache/1.3.33 (Debian GNU/Linux) mod_ssl/2.8.22 OpenSSL/0.9.7e +Location: file://guidocomputer.athome.com:/python/license +Connection: close +Content-Type: text/html; charset=iso-8859-1 +''') + try: + self.assertRaises(urllib.error.HTTPError, urlopen, + "http://python.org/") + finally: + self.unfakehttp() + def test_empty_socket(self): # urlopen() raises IOError if the underlying socket does not send any # data. (#1680230) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -10,6 +10,7 @@ # The proxy bypass method imported below has logic specific to the OSX # proxy config data structure but is testable on all platforms. from urllib.request import Request, OpenerDirector, _proxy_bypass_macosx_sysconf +import urllib.error # XXX # Request @@ -1031,6 +1032,29 @@ self.assertEqual(count, urllib.request.HTTPRedirectHandler.max_redirections) + + def test_invalid_redirect(self): + from_url = "http://example.com/a.html" + valid_schemes = ['http','https','ftp'] + invalid_schemes = ['file','imap','ldap'] + schemeless_url = "example.com/b.html" + h = urllib.request.HTTPRedirectHandler() + o = h.parent = MockOpener() + req = Request(from_url) + req.timeout = socket._GLOBAL_DEFAULT_TIMEOUT + + for scheme in invalid_schemes: + invalid_url = scheme + '://' + schemeless_url + self.assertRaises(urllib.error.HTTPError, h.http_error_302, + req, MockFile(), 302, "Security Loophole", + MockHeaders({"location": invalid_url})) + + for scheme in valid_schemes: + valid_url = scheme + '://' + schemeless_url + h.http_error_302(req, MockFile(), 302, "That's fine", + MockHeaders({"location": valid_url})) + self.assertEqual(o.req.get_full_url(), valid_url) + def test_cookie_redirect(self): # cookies shouldn't leak into redirected requests from http.cookiejar import CookieJar diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -545,6 +545,17 @@ # fix a possible malformed URL urlparts = urlparse(newurl) + + # For security reasons we don't allow redirection to anything other + # than http, https or ftp. + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, code, + msg + + " - Redirection to url '%s' is not allowed" % + newurl, + headers, fp) + if not urlparts.path: urlparts = list(urlparts) urlparts[2] = "/" @@ -1903,8 +1914,24 @@ return void = fp.read() fp.close() + # In case the server sent a relative URL, join with original: newurl = urljoin(self.type + ":" + url, newurl) + + urlparts = urlparse(newurl) + + # For security reasons, we don't allow redirection to anything other + # than http, https and ftp. + + # We are using newer HTTPError with older redirect_internal method + # This older method will get deprecated in 3.3 + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, errcode, + errmsg + + " Redirection to url '%s' is not allowed." % newurl, + headers, fp) + return self.open(newurl) def http_error_301(self, url, fp, errcode, errmsg, headers, data=None): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -74,6 +74,9 @@ - Issue #11666: let help() display named tuple attributes and methods that start with a leading underscore. +- Issue #11662: Make urllib and urllib2 ignore redirections if the + scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). + - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:11:38 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:11:38 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge issue 11662. Message-ID: http://hg.python.org/cpython/rev/c8701b9256cf changeset: 69055:c8701b9256cf parent: 69050:adbcba130143 parent: 69054:968bca2cab60 user: Guido van Rossum date: Tue Mar 29 13:00:28 2011 -0700 summary: Merge issue 11662. files: Misc/NEWS | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -139,6 +139,9 @@ - Issue #11666: let help() display named tuple attributes and methods that start with a leading underscore. +- Issue #11662: Make urllib and urllib2 ignore redirections if the + scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). + - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:11:44 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:11:44 +0200 Subject: [Python-checkins] cpython (merge 2.6 -> 2.6): Merge cleanup. Message-ID: http://hg.python.org/cpython/rev/202078f2856f changeset: 69056:202078f2856f branch: 2.6 parent: 69051:9eeda8e3a13f parent: 69045:c15ab33017ff user: Guido van Rossum date: Tue Mar 29 13:03:10 2011 -0700 summary: Merge cleanup. files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Tue Mar 29 22:11:48 2011 From: python-checkins at python.org (guido.van.rossum) Date: Tue, 29 Mar 2011 22:11:48 +0200 Subject: [Python-checkins] cpython (merge 2.7 -> 2.7): Merge cleanup. Message-ID: http://hg.python.org/cpython/rev/34d5d794ccc1 changeset: 69057:34d5d794ccc1 branch: 2.7 parent: 69052:b2934d98dac1 parent: 69046:163dc7be1afd user: Guido van Rossum date: Tue Mar 29 13:04:24 2011 -0700 summary: Merge cleanup. files: Lib/test/test_urllib2.py | 1 + Misc/NEWS | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -977,6 +977,7 @@ h = urllib2.HTTPRedirectHandler() o = h.parent = MockOpener() req = Request(from_url) + req.timeout = socket._GLOBAL_DEFAULT_TIMEOUT for scheme in invalid_schemes: invalid_url = scheme + '://' + schemeless_url diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -16,9 +16,6 @@ - Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when there are many tags (e.g. when using mq). Patch by Nadeem Vawda. -- Issue #11662: Make urllib and urllib2 ignore redirections if the - scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). - - Issue #10451: memoryview objects could allow to mutate a readable buffer. Initial patch by Ross Lagerwall. @@ -50,6 +47,9 @@ Library ------- +- Issue #11662: Make urllib and urllib2 ignore redirections if the + scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). + - Issue #11256: Fix inspect.getcallargs on functions that take only keyword arguments. -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 30 02:33:43 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 30 Mar 2011 02:33:43 +0200 Subject: [Python-checkins] cpython (2.7): Issue 11713: clarify docstring for collections.deque() Message-ID: http://hg.python.org/cpython/rev/f4e6e18cae4b changeset: 69058:f4e6e18cae4b branch: 2.7 user: Raymond Hettinger date: Tue Mar 29 17:28:25 2011 -0700 summary: Issue 11713: clarify docstring for collections.deque() files: Modules/_collectionsmodule.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -1060,7 +1060,7 @@ PyDoc_STRVAR(deque_doc, "deque(iterable[, maxlen]) --> deque object\n\ \n\ -Build an ordered collection accessible from endpoints only."); +Build an ordered collection with optimized access from its endpoints."); static PyTypeObject deque_type = { PyVarObject_HEAD_INIT(NULL, 0) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 30 02:33:44 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 30 Mar 2011 02:33:44 +0200 Subject: [Python-checkins] cpython (3.1): Issue 11713: clarify docstring for collections.deque() Message-ID: http://hg.python.org/cpython/rev/36344c9505b2 changeset: 69059:36344c9505b2 branch: 3.1 parent: 69053:3dc90ebc540a user: Raymond Hettinger date: Tue Mar 29 17:30:01 2011 -0700 summary: Issue 11713: clarify docstring for collections.deque() files: Modules/_collectionsmodule.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -913,7 +913,7 @@ PyDoc_STRVAR(deque_doc, "deque(iterable[, maxlen]) --> deque object\n\ \n\ -Build an ordered collection accessible from endpoints only."); +Build an ordered collection with optimized access from its endpoints."); static PyTypeObject deque_type = { PyVarObject_HEAD_INIT(NULL, 0) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 30 02:38:36 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 30 Mar 2011 02:38:36 +0200 Subject: [Python-checkins] cpython (3.2): Issue 11713: clarify docstring for collections.deque() Message-ID: http://hg.python.org/cpython/rev/075637897403 changeset: 69060:075637897403 branch: 3.2 parent: 69054:968bca2cab60 user: Raymond Hettinger date: Tue Mar 29 17:36:31 2011 -0700 summary: Issue 11713: clarify docstring for collections.deque() files: Modules/_collectionsmodule.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -1002,7 +1002,7 @@ PyDoc_STRVAR(deque_doc, "deque(iterable[, maxlen]) --> deque object\n\ \n\ -Build an ordered collection accessible from endpoints only."); +Build an ordered collection with optimized access from its endpoints."); static PyTypeObject deque_type = { PyVarObject_HEAD_INIT(NULL, 0) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 30 02:38:38 2011 From: python-checkins at python.org (raymond.hettinger) Date: Wed, 30 Mar 2011 02:38:38 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue 11713: clarify docstring for collections.deque() Message-ID: http://hg.python.org/cpython/rev/80e71592b114 changeset: 69061:80e71592b114 parent: 69055:c8701b9256cf parent: 69060:075637897403 user: Raymond Hettinger date: Tue Mar 29 17:38:15 2011 -0700 summary: Issue 11713: clarify docstring for collections.deque() files: Modules/_collectionsmodule.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -1002,7 +1002,7 @@ PyDoc_STRVAR(deque_doc, "deque(iterable[, maxlen]) --> deque object\n\ \n\ -Build an ordered collection accessible from endpoints only."); +Build an ordered collection with optimized access from its endpoints."); static PyTypeObject deque_type = { PyVarObject_HEAD_INIT(NULL, 0) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 30 13:56:43 2011 From: python-checkins at python.org (kristjan.jonsson) Date: Wed, 30 Mar 2011 13:56:43 +0200 Subject: [Python-checkins] cpython (3.1): Bugfix: Properly test for errors from PyLong_AsLong() in itertools.cycle. Message-ID: http://hg.python.org/cpython/rev/9a6da9bc257d changeset: 69062:9a6da9bc257d branch: 3.1 parent: 69027:8517e1f5d927 user: Kristjan Valur Jonsson date: Wed Mar 30 11:04:28 2011 +0000 summary: Bugfix: Properly test for errors from PyLong_AsLong() in itertools.cycle. ti can raise an exception even if PyLong_Check() has succeeded. files: Lib/test/test_itertools.py | 5 +++++ Modules/itertoolsmodule.c | 9 ++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -339,6 +339,8 @@ list(range(maxsize-5, maxsize+5))) self.assertEqual(list(islice(count(-maxsize-5), 10)), list(range(-maxsize-5, -maxsize+5))) + self.assertEqual(list(islice(count(10, maxsize+5), 3)), + list(range(10, 10+3*(maxsize+5), maxsize+5))) c = count(3) self.assertEqual(repr(c), 'count(3)') next(c) @@ -361,6 +363,9 @@ self.assertEqual(next(copy.deepcopy(c)), value) self.assertEqual(next(pickle.loads(pickle.dumps(c))), value) + #check proper internal error handling for large "step' sizes + count(1, maxsize+5); sys.exc_info() + def test_count_with_stride(self): self.assertEqual(lzip('abc',count(2,3)), [('a', 2), ('b', 5), ('c', 8)]) self.assertEqual(lzip('abc',count(start=2,step=3)), diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -2918,6 +2918,7 @@ Py_ssize_t cnt = 0; PyObject *long_cnt = NULL; PyObject *long_step = NULL; + long step; static char *kwlist[] = {"start", "step", 0}; if (!PyArg_ParseTupleAndKeywords(args, kwds, "|OO:count", @@ -2955,9 +2956,11 @@ assert(long_cnt != NULL && long_step != NULL); /* Fast mode only works when the step is 1 */ - if (!PyLong_Check(long_step) || - PyLong_AS_LONG(long_step) != 1) { - slow_mode = 1; + step = PyLong_AsLong(long_step); + if (step != 1) { + slow_mode = 1; + if (step == -1 && PyErr_Occurred()) + PyErr_Clear(); } if (slow_mode) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 30 13:56:44 2011 From: python-checkins at python.org (kristjan.jonsson) Date: Wed, 30 Mar 2011 13:56:44 +0200 Subject: [Python-checkins] cpython (merge 3.1 -> 3.2): Merge 3.1 Message-ID: http://hg.python.org/cpython/rev/50e9d4515ea2 changeset: 69063:50e9d4515ea2 branch: 3.2 parent: 69031:57e99f5f5e8f parent: 69062:9a6da9bc257d user: Kristjan Valur Jonsson date: Wed Mar 30 11:24:58 2011 +0000 summary: Merge 3.1 files: Lib/test/test_itertools.py | 5 +++++ Modules/itertoolsmodule.c | 9 ++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -357,6 +357,8 @@ list(range(maxsize-5, maxsize+5))) self.assertEqual(list(islice(count(-maxsize-5), 10)), list(range(-maxsize-5, -maxsize+5))) + self.assertEqual(list(islice(count(10, maxsize+5), 3)), + list(range(10, 10+3*(maxsize+5), maxsize+5))) c = count(3) self.assertEqual(repr(c), 'count(3)') next(c) @@ -379,6 +381,9 @@ self.assertEqual(next(copy.deepcopy(c)), value) self.assertEqual(next(pickle.loads(pickle.dumps(c))), value) + #check proper internal error handling for large "step' sizes + count(1, maxsize+5); sys.exc_info() + def test_count_with_stride(self): self.assertEqual(lzip('abc',count(2,3)), [('a', 2), ('b', 5), ('c', 8)]) self.assertEqual(lzip('abc',count(start=2,step=3)), diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -3050,6 +3050,7 @@ Py_ssize_t cnt = 0; PyObject *long_cnt = NULL; PyObject *long_step = NULL; + long step; static char *kwlist[] = {"start", "step", 0}; if (!PyArg_ParseTupleAndKeywords(args, kwds, "|OO:count", @@ -3087,9 +3088,11 @@ assert(long_cnt != NULL && long_step != NULL); /* Fast mode only works when the step is 1 */ - if (!PyLong_Check(long_step) || - PyLong_AS_LONG(long_step) != 1) { - slow_mode = 1; + step = PyLong_AsLong(long_step); + if (step != 1) { + slow_mode = 1; + if (step == -1 && PyErr_Occurred()) + PyErr_Clear(); } if (slow_mode) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 30 13:56:50 2011 From: python-checkins at python.org (kristjan.jonsson) Date: Wed, 30 Mar 2011 13:56:50 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2 Message-ID: http://hg.python.org/cpython/rev/b63eeb5a5c07 changeset: 69064:b63eeb5a5c07 parent: 69037:7a8ada66c07d parent: 69063:50e9d4515ea2 user: Kristjan Valur Jonsson date: Wed Mar 30 11:32:06 2011 +0000 summary: Merge 3.2 files: Lib/test/test_itertools.py | 5 +++++ Modules/itertoolsmodule.c | 9 ++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -367,6 +367,8 @@ list(range(maxsize-5, maxsize+5))) self.assertEqual(list(islice(count(-maxsize-5), 10)), list(range(-maxsize-5, -maxsize+5))) + self.assertEqual(list(islice(count(10, maxsize+5), 3)), + list(range(10, 10+3*(maxsize+5), maxsize+5))) c = count(3) self.assertEqual(repr(c), 'count(3)') next(c) @@ -389,6 +391,9 @@ self.assertEqual(next(copy.deepcopy(c)), value) self.assertEqual(next(pickle.loads(pickle.dumps(c))), value) + #check proper internal error handling for large "step' sizes + count(1, maxsize+5); sys.exc_info() + def test_count_with_stride(self): self.assertEqual(lzip('abc',count(2,3)), [('a', 2), ('b', 5), ('c', 8)]) self.assertEqual(lzip('abc',count(start=2,step=3)), diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -3060,6 +3060,7 @@ Py_ssize_t cnt = 0; PyObject *long_cnt = NULL; PyObject *long_step = NULL; + long step; static char *kwlist[] = {"start", "step", 0}; if (!PyArg_ParseTupleAndKeywords(args, kwds, "|OO:count", @@ -3097,9 +3098,11 @@ assert(long_cnt != NULL && long_step != NULL); /* Fast mode only works when the step is 1 */ - if (!PyLong_Check(long_step) || - PyLong_AS_LONG(long_step) != 1) { - slow_mode = 1; + step = PyLong_AsLong(long_step); + if (step != 1) { + slow_mode = 1; + if (step == -1 && PyErr_Occurred()) + PyErr_Clear(); } if (slow_mode) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 30 13:56:52 2011 From: python-checkins at python.org (kristjan.jonsson) Date: Wed, 30 Mar 2011 13:56:52 +0200 Subject: [Python-checkins] cpython (merge default -> default): Merge Message-ID: http://hg.python.org/cpython/rev/22ae2b002865 changeset: 69065:22ae2b002865 parent: 69064:b63eeb5a5c07 parent: 69061:80e71592b114 user: Kristjan Valur Jonsson date: Wed Mar 30 11:39:24 2011 +0000 summary: Merge files: Doc/library/email.parser.rst | 11 +- Doc/library/urllib.request.rst | 4 + Lib/email/parser.py | 24 +- Lib/logging/__init__.py | 8 +- Lib/test/test_logging.py | 537 ++++++++++++++++++++- Lib/test/test_urllib.py | 16 + Lib/test/test_urllib2.py | 24 + Lib/urllib/request.py | 27 + Misc/NEWS | 6 + Modules/_collectionsmodule.c | 2 +- 10 files changed, 601 insertions(+), 58 deletions(-) diff --git a/Doc/library/email.parser.rst b/Doc/library/email.parser.rst --- a/Doc/library/email.parser.rst +++ b/Doc/library/email.parser.rst @@ -102,7 +102,7 @@ class. -.. class:: Parser(_class=email.message.Message, strict=None) +.. class:: Parser(_class=email.message.Message) The constructor for the :class:`Parser` class takes an optional argument *_class*. This must be a callable factory (such as a function or a class), and @@ -110,13 +110,8 @@ :class:`~email.message.Message` (see :mod:`email.message`). The factory will be called without arguments. - The optional *strict* flag is ignored. - - .. deprecated:: 2.4 - Because the :class:`Parser` class is a backward compatible API wrapper - around the new-in-Python 2.4 :class:`FeedParser`, *all* parsing is - effectively non-strict. You should simply stop passing a *strict* flag to - the :class:`Parser` constructor. + .. versionchanged:: 3.2 + Removed the *strict* argument that was deprecated in 2.4. The other public :class:`Parser` methods are: diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -650,6 +650,10 @@ is the case, :exc:`HTTPError` is raised. See :rfc:`2616` for details of the precise meanings of the various redirection codes. + An :class:`HTTPError` exception raised as a security consideration if the + HTTPRedirectHandler is presented with a redirected url which is not an HTTP, + HTTPS or FTP url. + .. method:: HTTPRedirectHandler.redirect_request(req, fp, code, msg, hdrs, newurl) diff --git a/Lib/email/parser.py b/Lib/email/parser.py --- a/Lib/email/parser.py +++ b/Lib/email/parser.py @@ -15,7 +15,7 @@ class Parser: - def __init__(self, *args, **kws): + def __init__(self, _class=Message): """Parser of RFC 2822 and MIME email messages. Creates an in-memory object tree representing the email message, which @@ -31,27 +31,7 @@ must be created. This class must have a constructor that can take zero arguments. Default is Message.Message. """ - if len(args) >= 1: - if '_class' in kws: - raise TypeError("Multiple values for keyword arg '_class'") - kws['_class'] = args[0] - if len(args) == 2: - if 'strict' in kws: - raise TypeError("Multiple values for keyword arg 'strict'") - kws['strict'] = args[1] - if len(args) > 2: - raise TypeError('Too many arguments') - if '_class' in kws: - self._class = kws['_class'] - del kws['_class'] - else: - self._class = Message - if 'strict' in kws: - warnings.warn("'strict' argument is deprecated (and ignored)", - DeprecationWarning, 2) - del kws['strict'] - if kws: - raise TypeError('Unexpected keyword arguments') + self._class = _class def parse(self, fp, headersonly=False): """Create a message structure from the data in a file. diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2001-2010 by Vinay Sajip. All Rights Reserved. +# Copyright 2001-2011 by Vinay Sajip. All Rights Reserved. # # Permission to use, copy, modify, and distribute this software and its # documentation for any purpose and without fee is hereby granted, @@ -18,7 +18,7 @@ Logging package for Python. Based on PEP 282 and comments thereto in comp.lang.python, and influenced by Apache's log4j system. -Copyright (C) 2001-2010 Vinay Sajip. All Rights Reserved. +Copyright (C) 2001-2011 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! """ @@ -1826,10 +1826,10 @@ package. """ def handle(self, record): - pass + """Stub.""" def emit(self, record): - pass + """Stub.""" def createLock(self): self.lock = None diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -40,7 +40,7 @@ import struct import sys import tempfile -from test.support import captured_stdout, run_with_locale, run_unittest +from test.support import captured_stdout, run_with_locale, run_unittest, patch import textwrap import unittest import warnings @@ -1082,28 +1082,39 @@ def test_warnings(self): with warnings.catch_warnings(): logging.captureWarnings(True) - try: - warnings.filterwarnings("always", category=UserWarning) - file = io.StringIO() - h = logging.StreamHandler(file) - logger = logging.getLogger("py.warnings") - logger.addHandler(h) - warnings.warn("I'm warning you...") - logger.removeHandler(h) - s = file.getvalue() - h.close() - self.assertTrue(s.find("UserWarning: I'm warning you...\n") > 0) - - #See if an explicit file uses the original implementation - file = io.StringIO() - warnings.showwarning("Explicit", UserWarning, "dummy.py", 42, - file, "Dummy line") - s = file.getvalue() - file.close() - self.assertEqual(s, - "dummy.py:42: UserWarning: Explicit\n Dummy line\n") - finally: - logging.captureWarnings(False) + self.addCleanup(lambda: logging.captureWarnings(False)) + warnings.filterwarnings("always", category=UserWarning) + stream = io.StringIO() + h = logging.StreamHandler(stream) + logger = logging.getLogger("py.warnings") + logger.addHandler(h) + warnings.warn("I'm warning you...") + logger.removeHandler(h) + s = stream.getvalue() + h.close() + self.assertTrue(s.find("UserWarning: I'm warning you...\n") > 0) + + #See if an explicit file uses the original implementation + a_file = io.StringIO() + warnings.showwarning("Explicit", UserWarning, "dummy.py", 42, + a_file, "Dummy line") + s = a_file.getvalue() + a_file.close() + self.assertEqual(s, + "dummy.py:42: UserWarning: Explicit\n Dummy line\n") + + def test_warnings_no_handlers(self): + with warnings.catch_warnings(): + logging.captureWarnings(True) + self.addCleanup(lambda: logging.captureWarnings(False)) + + # confirm our assumption: no loggers are set + logger = logging.getLogger("py.warnings") + assert logger.handlers == [] + + warnings.showwarning("Explicit", UserWarning, "dummy.py", 42) + self.assertTrue(len(logger.handlers) == 1) + self.assertIsInstance(logger.handlers[0], logging.NullHandler) def formatFunc(format, datefmt=None): @@ -2007,6 +2018,11 @@ self.assertEqual(logged, ['should appear in logged']) + def test_set_log_record_factory(self): + man = logging.Manager(None) + expected = object() + man.setLogRecordFactory(expected) + self.assertEqual(man.logRecordFactory, expected) class ChildLoggerTest(BaseTest): def test_child_loggers(self): @@ -2198,6 +2214,479 @@ logging.raiseExceptions = old_raise_exceptions +class FakeHandler: + + def __init__(self, identifier, called): + for method in ('acquire', 'flush', 'close', 'release'): + setattr(self, method, self.record_call(identifier, method, called)) + + def record_call(self, identifier, method_name, called): + def inner(): + called.append('{} - {}'.format(identifier, method_name)) + return inner + + +class RecordingHandler(logging.NullHandler): + + def __init__(self, *args, **kwargs): + super(RecordingHandler, self).__init__(*args, **kwargs) + self.records = [] + + def handle(self, record): + """Keep track of all the emitted records.""" + self.records.append(record) + + +class ShutdownTest(BaseTest): + + """Tets suite for the shutdown method.""" + + def setUp(self): + super(ShutdownTest, self).setUp() + self.called = [] + + raise_exceptions = logging.raiseExceptions + self.addCleanup(lambda: setattr(logging, 'raiseExceptions', raise_exceptions)) + + def raise_error(self, error): + def inner(): + raise error() + return inner + + def test_no_failure(self): + # create some fake handlers + handler0 = FakeHandler(0, self.called) + handler1 = FakeHandler(1, self.called) + handler2 = FakeHandler(2, self.called) + + # create live weakref to those handlers + handlers = map(logging.weakref.ref, [handler0, handler1, handler2]) + + logging.shutdown(handlerList=list(handlers)) + + expected = ['2 - acquire', '2 - flush', '2 - close', '2 - release', + '1 - acquire', '1 - flush', '1 - close', '1 - release', + '0 - acquire', '0 - flush', '0 - close', '0 - release'] + self.assertEqual(expected, self.called) + + def _test_with_failure_in_method(self, method, error): + handler = FakeHandler(0, self.called) + setattr(handler, method, self.raise_error(error)) + handlers = [logging.weakref.ref(handler)] + + logging.shutdown(handlerList=list(handlers)) + + self.assertEqual('0 - release', self.called[-1]) + + def test_with_ioerror_in_acquire(self): + self._test_with_failure_in_method('acquire', IOError) + + def test_with_ioerror_in_flush(self): + self._test_with_failure_in_method('flush', IOError) + + def test_with_ioerror_in_close(self): + self._test_with_failure_in_method('close', IOError) + + def test_with_valueerror_in_acquire(self): + self._test_with_failure_in_method('acquire', ValueError) + + def test_with_valueerror_in_flush(self): + self._test_with_failure_in_method('flush', ValueError) + + def test_with_valueerror_in_close(self): + self._test_with_failure_in_method('close', ValueError) + + def test_with_other_error_in_acquire_without_raise(self): + logging.raiseExceptions = False + self._test_with_failure_in_method('acquire', IndexError) + + def test_with_other_error_in_flush_without_raise(self): + logging.raiseExceptions = False + self._test_with_failure_in_method('flush', IndexError) + + def test_with_other_error_in_close_without_raise(self): + logging.raiseExceptions = False + self._test_with_failure_in_method('close', IndexError) + + def test_with_other_error_in_acquire_with_raise(self): + logging.raiseExceptions = True + self.assertRaises(IndexError, self._test_with_failure_in_method, + 'acquire', IndexError) + + def test_with_other_error_in_flush_with_raise(self): + logging.raiseExceptions = True + self.assertRaises(IndexError, self._test_with_failure_in_method, + 'flush', IndexError) + + def test_with_other_error_in_close_with_raise(self): + logging.raiseExceptions = True + self.assertRaises(IndexError, self._test_with_failure_in_method, + 'close', IndexError) + + +class ModuleLevelMiscTest(BaseTest): + + """Tets suite for some module level methods.""" + + def test_disable(self): + old_disable = logging.root.manager.disable + # confirm our assumptions are correct + assert old_disable == 0 + self.addCleanup(lambda: logging.disable(old_disable)) + + logging.disable(83) + self.assertEqual(logging.root.manager.disable, 83) + + def _test_log(self, method, level=None): + called = [] + patch(self, logging, 'basicConfig', + lambda *a, **kw: called.append(a, kw)) + + recording = RecordingHandler() + logging.root.addHandler(recording) + + log_method = getattr(logging, method) + if level is not None: + log_method(level, "test me: %r", recording) + else: + log_method("test me: %r", recording) + + self.assertEqual(len(recording.records), 1) + record = recording.records[0] + self.assertEqual(record.getMessage(), "test me: %r" % recording) + + expected_level = level if level is not None else getattr(logging, method.upper()) + self.assertEqual(record.levelno, expected_level) + + # basicConfig was not called! + self.assertEqual(called, []) + + def test_log(self): + self._test_log('log', logging.ERROR) + + def test_debug(self): + self._test_log('debug') + + def test_info(self): + self._test_log('info') + + def test_warning(self): + self._test_log('warning') + + def test_error(self): + self._test_log('error') + + def test_critical(self): + self._test_log('critical') + + def test_set_logger_class(self): + self.assertRaises(TypeError, logging.setLoggerClass, object) + + class MyLogger(logging.Logger): + pass + + logging.setLoggerClass(MyLogger) + self.assertEqual(logging.getLoggerClass(), MyLogger) + + logging.setLoggerClass(logging.Logger) + self.assertEqual(logging.getLoggerClass(), logging.Logger) + + +class BasicConfigTest(unittest.TestCase): + + """Tets suite for logging.basicConfig.""" + + def setUp(self): + super(BasicConfigTest, self).setUp() + handlers = logging.root.handlers + self.addCleanup(lambda: setattr(logging.root, 'handlers', handlers)) + logging.root.handlers = [] + + def tearDown(self): + logging.shutdown() + super(BasicConfigTest, self).tearDown() + + def test_no_kwargs(self): + logging.basicConfig() + + # handler defaults to a StreamHandler to sys.stderr + self.assertEqual(len(logging.root.handlers), 1) + handler = logging.root.handlers[0] + self.assertIsInstance(handler, logging.StreamHandler) + self.assertEqual(handler.stream, sys.stderr) + + formatter = handler.formatter + # format defaults to logging.BASIC_FORMAT + self.assertEqual(formatter._style._fmt, logging.BASIC_FORMAT) + # datefmt defaults to None + self.assertIsNone(formatter.datefmt) + # style defaults to % + self.assertIsInstance(formatter._style, logging.PercentStyle) + + # level is not explicitely set + self.assertEqual(logging.root.level, logging.WARNING) + + def test_filename(self): + logging.basicConfig(filename='test.log') + + self.assertEqual(len(logging.root.handlers), 1) + handler = logging.root.handlers[0] + self.assertIsInstance(handler, logging.FileHandler) + + expected = logging.FileHandler('test.log', 'a') + self.addCleanup(expected.close) + self.assertEqual(handler.stream.mode, expected.stream.mode) + self.assertEqual(handler.stream.name, expected.stream.name) + + def test_filemode(self): + logging.basicConfig(filename='test.log', filemode='wb') + + handler = logging.root.handlers[0] + expected = logging.FileHandler('test.log', 'wb') + self.addCleanup(expected.close) + self.assertEqual(handler.stream.mode, expected.stream.mode) + + def test_stream(self): + stream = io.StringIO() + self.addCleanup(stream.close) + logging.basicConfig(stream=stream) + + self.assertEqual(len(logging.root.handlers), 1) + handler = logging.root.handlers[0] + self.assertIsInstance(handler, logging.StreamHandler) + self.assertEqual(handler.stream, stream) + + def test_format(self): + logging.basicConfig(format='foo') + + formatter = logging.root.handlers[0].formatter + self.assertEqual(formatter._style._fmt, 'foo') + + def test_datefmt(self): + logging.basicConfig(datefmt='bar') + + formatter = logging.root.handlers[0].formatter + self.assertEqual(formatter.datefmt, 'bar') + + def test_style(self): + logging.basicConfig(style='$') + + formatter = logging.root.handlers[0].formatter + self.assertIsInstance(formatter._style, logging.StringTemplateStyle) + + def test_level(self): + old_level = logging.root.level + self.addCleanup(lambda: logging.root.setLevel(old_level)) + + logging.basicConfig(level=57) + self.assertEqual(logging.root.level, 57) + + def _test_log(self, method, level=None): + # logging.root has no handlers so basicConfig should be called + called = [] + + old_basic_config = logging.basicConfig + def my_basic_config(*a, **kw): + old_basic_config() + old_level = logging.root.level + logging.root.setLevel(100) # avoid having messages in stderr + self.addCleanup(lambda: logging.root.setLevel(old_level)) + called.append((a, kw)) + + patch(self, logging, 'basicConfig', my_basic_config) + + log_method = getattr(logging, method) + if level is not None: + log_method(level, "test me") + else: + log_method("test me") + + # basicConfig was called with no arguments + self.assertEqual(called, [((), {})]) + + def test_log(self): + self._test_log('log', logging.WARNING) + + def test_debug(self): + self._test_log('debug') + + def test_info(self): + self._test_log('info') + + def test_warning(self): + self._test_log('warning') + + def test_error(self): + self._test_log('error') + + def test_critical(self): + self._test_log('critical') + + +class LoggerAdapterTest(unittest.TestCase): + + def setUp(self): + super(LoggerAdapterTest, self).setUp() + old_handler_list = logging._handlerList[:] + + self.recording = RecordingHandler() + self.logger = logging.root + self.logger.addHandler(self.recording) + self.addCleanup(lambda: self.logger.removeHandler(self.recording)) + self.addCleanup(self.recording.close) + + def cleanup(): + logging._handlerList[:] = old_handler_list + + self.addCleanup(cleanup) + self.addCleanup(logging.shutdown) + self.adapter = logging.LoggerAdapter(logger=self.logger, extra=None) + + def test_exception(self): + msg = 'testing exception: %r' + exc = None + try: + assert False + except AssertionError as e: + exc = e + self.adapter.exception(msg, self.recording) + + self.assertEqual(len(self.recording.records), 1) + record = self.recording.records[0] + self.assertEqual(record.levelno, logging.ERROR) + self.assertEqual(record.msg, msg) + self.assertEqual(record.args, (self.recording,)) + self.assertEqual(record.exc_info, + (exc.__class__, exc, exc.__traceback__)) + + def test_critical(self): + msg = 'critical test! %r' + self.adapter.critical(msg, self.recording) + + self.assertEqual(len(self.recording.records), 1) + record = self.recording.records[0] + self.assertEqual(record.levelno, logging.CRITICAL) + self.assertEqual(record.msg, msg) + self.assertEqual(record.args, (self.recording,)) + + def test_is_enabled_for(self): + old_disable = self.adapter.logger.manager.disable + self.adapter.logger.manager.disable = 33 + self.addCleanup(lambda: setattr(self.adapter.logger.manager, + 'disable', old_disable)) + self.assertFalse(self.adapter.isEnabledFor(32)) + + def test_has_handlers(self): + self.assertTrue(self.adapter.hasHandlers()) + + for handler in self.logger.handlers: + self.logger.removeHandler(handler) + assert not self.logger.hasHandlers() + + self.assertFalse(self.adapter.hasHandlers()) + + +class LoggerTest(BaseTest): + + def setUp(self): + super(LoggerTest, self).setUp() + self.recording = RecordingHandler() + self.logger = logging.Logger(name='blah') + self.logger.addHandler(self.recording) + self.addCleanup(lambda: self.logger.removeHandler(self.recording)) + self.addCleanup(self.recording.close) + self.addCleanup(logging.shutdown) + + def test_set_invalid_level(self): + self.assertRaises(TypeError, self.logger.setLevel, object()) + + def test_exception(self): + msg = 'testing exception: %r' + exc = None + try: + assert False + except AssertionError as e: + exc = e + self.logger.exception(msg, self.recording) + + self.assertEqual(len(self.recording.records), 1) + record = self.recording.records[0] + self.assertEqual(record.levelno, logging.ERROR) + self.assertEqual(record.msg, msg) + self.assertEqual(record.args, (self.recording,)) + self.assertEqual(record.exc_info, + (exc.__class__, exc, exc.__traceback__)) + + def test_log_invalid_level_with_raise(self): + old_raise = logging.raiseExceptions + self.addCleanup(lambda: setattr(logging, 'raiseExecptions', old_raise)) + + logging.raiseExceptions = True + self.assertRaises(TypeError, self.logger.log, '10', 'test message') + + def test_log_invalid_level_no_raise(self): + old_raise = logging.raiseExceptions + self.addCleanup(lambda: setattr(logging, 'raiseExecptions', old_raise)) + + logging.raiseExceptions = False + self.logger.log('10', 'test message') # no exception happens + + def test_find_caller_with_stack_info(self): + called = [] + patch(self, logging.traceback, 'print_stack', + lambda f, file: called.append(file.getvalue())) + + self.logger.findCaller(stack_info=True) + + self.assertEqual(len(called), 1) + self.assertEqual('Stack (most recent call last):\n', called[0]) + + def test_make_record_with_extra_overwrite(self): + name = 'my record' + level = 13 + fn = lno = msg = args = exc_info = func = sinfo = None + rv = logging._logRecordFactory(name, level, fn, lno, msg, args, + exc_info, func, sinfo) + + for key in ('message', 'asctime') + tuple(rv.__dict__.keys()): + extra = {key: 'some value'} + self.assertRaises(KeyError, self.logger.makeRecord, name, level, + fn, lno, msg, args, exc_info, + extra=extra, sinfo=sinfo) + + def test_make_record_with_extra_no_overwrite(self): + name = 'my record' + level = 13 + fn = lno = msg = args = exc_info = func = sinfo = None + extra = {'valid_key': 'some value'} + result = self.logger.makeRecord(name, level, fn, lno, msg, args, + exc_info, extra=extra, sinfo=sinfo) + self.assertIn('valid_key', result.__dict__) + + def test_has_handlers(self): + self.assertTrue(self.logger.hasHandlers()) + + for handler in self.logger.handlers: + self.logger.removeHandler(handler) + assert not self.logger.hasHandlers() + + self.assertFalse(self.logger.hasHandlers()) + + def test_has_handlers_no_propagate(self): + child_logger = logging.getLogger('blah.child') + child_logger.propagate = False + assert child_logger.handlers == [] + + self.assertFalse(child_logger.hasHandlers()) + + def test_is_enabled_for(self): + old_disable = self.logger.manager.disable + self.logger.manager.disable = 23 + self.addCleanup(lambda: setattr(self.logger.manager, + 'disable', old_disable)) + self.assertFalse(self.logger.isEnabledFor(22)) + + class BaseFileTest(BaseTest): "Base class for handler tests that write log files" @@ -2319,6 +2808,8 @@ EncodingTest, WarningsTest, ConfigDictTest, ManagerTest, FormatterTest, LogRecordFactoryTest, ChildLoggerTest, QueueHandlerTest, + ShutdownTest, ModuleLevelMiscTest, BasicConfigTest, + LoggerAdapterTest, LoggerTest, RotatingFileHandlerTest, LastResortTest, TimedRotatingFileHandlerTest diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -2,6 +2,7 @@ import urllib.parse import urllib.request +import urllib.error import http.client import email.message import io @@ -206,6 +207,21 @@ finally: self.unfakehttp() + def test_invalid_redirect(self): + # urlopen() should raise IOError for many error codes. + self.fakehttp(b'''HTTP/1.1 302 Found +Date: Wed, 02 Jan 2008 03:03:54 GMT +Server: Apache/1.3.33 (Debian GNU/Linux) mod_ssl/2.8.22 OpenSSL/0.9.7e +Location: file://guidocomputer.athome.com:/python/license +Connection: close +Content-Type: text/html; charset=iso-8859-1 +''') + try: + self.assertRaises(urllib.error.HTTPError, urlopen, + "http://python.org/") + finally: + self.unfakehttp() + def test_empty_socket(self): # urlopen() raises IOError if the underlying socket does not send any # data. (#1680230) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -10,6 +10,7 @@ # The proxy bypass method imported below has logic specific to the OSX # proxy config data structure but is testable on all platforms. from urllib.request import Request, OpenerDirector, _proxy_bypass_macosx_sysconf +import urllib.error # XXX # Request @@ -1031,6 +1032,29 @@ self.assertEqual(count, urllib.request.HTTPRedirectHandler.max_redirections) + + def test_invalid_redirect(self): + from_url = "http://example.com/a.html" + valid_schemes = ['http','https','ftp'] + invalid_schemes = ['file','imap','ldap'] + schemeless_url = "example.com/b.html" + h = urllib.request.HTTPRedirectHandler() + o = h.parent = MockOpener() + req = Request(from_url) + req.timeout = socket._GLOBAL_DEFAULT_TIMEOUT + + for scheme in invalid_schemes: + invalid_url = scheme + '://' + schemeless_url + self.assertRaises(urllib.error.HTTPError, h.http_error_302, + req, MockFile(), 302, "Security Loophole", + MockHeaders({"location": invalid_url})) + + for scheme in valid_schemes: + valid_url = scheme + '://' + schemeless_url + h.http_error_302(req, MockFile(), 302, "That's fine", + MockHeaders({"location": valid_url})) + self.assertEqual(o.req.get_full_url(), valid_url) + def test_cookie_redirect(self): # cookies shouldn't leak into redirected requests from http.cookiejar import CookieJar diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -545,6 +545,17 @@ # fix a possible malformed URL urlparts = urlparse(newurl) + + # For security reasons we don't allow redirection to anything other + # than http, https or ftp. + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, code, + msg + + " - Redirection to url '%s' is not allowed" % + newurl, + headers, fp) + if not urlparts.path: urlparts = list(urlparts) urlparts[2] = "/" @@ -1903,8 +1914,24 @@ return void = fp.read() fp.close() + # In case the server sent a relative URL, join with original: newurl = urljoin(self.type + ":" + url, newurl) + + urlparts = urlparse(newurl) + + # For security reasons, we don't allow redirection to anything other + # than http, https and ftp. + + # We are using newer HTTPError with older redirect_internal method + # This older method will get deprecated in 3.3 + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, errcode, + errmsg + + " Redirection to url '%s' is not allowed." % newurl, + headers, fp) + return self.open(newurl) def http_error_301(self, url, fp, errcode, errmsg, headers, data=None): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -87,6 +87,9 @@ Library ------- +- Removed the 'strict' argument to email.parser.Parser, which has been + deprecated since Python 2.4. + - Issue #11256: Fix inspect.getcallargs on functions that take only keyword arguments. @@ -136,6 +139,9 @@ - Issue #11666: let help() display named tuple attributes and methods that start with a leading underscore. +- Issue #11662: Make urllib and urllib2 ignore redirections if the + scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). + - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -1002,7 +1002,7 @@ PyDoc_STRVAR(deque_doc, "deque(iterable[, maxlen]) --> deque object\n\ \n\ -Build an ordered collection accessible from endpoints only."); +Build an ordered collection with optimized access from its endpoints."); static PyTypeObject deque_type = { PyVarObject_HEAD_INIT(NULL, 0) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 30 13:56:53 2011 From: python-checkins at python.org (kristjan.jonsson) Date: Wed, 30 Mar 2011 13:56:53 +0200 Subject: [Python-checkins] cpython (merge 3.1 -> 3.1): Merge 3.1 Message-ID: http://hg.python.org/cpython/rev/8e074d9b1587 changeset: 69066:8e074d9b1587 branch: 3.1 parent: 69062:9a6da9bc257d parent: 69059:36344c9505b2 user: Kristjan Valur Jonsson date: Wed Mar 30 11:54:13 2011 +0000 summary: Merge 3.1 files: Doc/library/urllib.request.rst | 4 +++ Lib/test/test_urllib.py | 16 +++++++++++++ Lib/test/test_urllib2.py | 24 +++++++++++++++++++ Lib/urllib/request.py | 27 ++++++++++++++++++++++ Misc/NEWS | 3 ++ Modules/_collectionsmodule.c | 2 +- 6 files changed, 75 insertions(+), 1 deletions(-) diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -783,6 +783,10 @@ is the case, :exc:`HTTPError` is raised. See :rfc:`2616` for details of the precise meanings of the various redirection codes. + An :class:`HTTPError` exception raised as a security consideration if the + HTTPRedirectHandler is presented with a redirected url which is not an HTTP, + HTTPS or FTP url. + .. method:: HTTPRedirectHandler.redirect_request(req, fp, code, msg, hdrs, newurl) diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -2,6 +2,7 @@ import urllib.parse import urllib.request +import urllib.error import http.client import email.message import io @@ -183,6 +184,21 @@ finally: self.unfakehttp() + def test_invalid_redirect(self): + # urlopen() should raise IOError for many error codes. + self.fakehttp(b'''HTTP/1.1 302 Found +Date: Wed, 02 Jan 2008 03:03:54 GMT +Server: Apache/1.3.33 (Debian GNU/Linux) mod_ssl/2.8.22 OpenSSL/0.9.7e +Location: file://guidocomputer.athome.com:/python/license +Connection: close +Content-Type: text/html; charset=iso-8859-1 +''') + try: + self.assertRaises(urllib.error.HTTPError, urlopen, + "http://python.org/") + finally: + self.unfakehttp() + def test_empty_socket(self): # urlopen() raises IOError if the underlying socket does not send any # data. (#1680230) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -9,6 +9,7 @@ # The proxy bypass method imported below has logic specific to the OSX # proxy config data structure but is testable on all platforms. from urllib.request import Request, OpenerDirector, _proxy_bypass_macosx_sysconf +import urllib.error # XXX # Request @@ -985,6 +986,29 @@ self.assertEqual(count, urllib.request.HTTPRedirectHandler.max_redirections) + + def test_invalid_redirect(self): + from_url = "http://example.com/a.html" + valid_schemes = ['http','https','ftp'] + invalid_schemes = ['file','imap','ldap'] + schemeless_url = "example.com/b.html" + h = urllib.request.HTTPRedirectHandler() + o = h.parent = MockOpener() + req = Request(from_url) + req.timeout = socket._GLOBAL_DEFAULT_TIMEOUT + + for scheme in invalid_schemes: + invalid_url = scheme + '://' + schemeless_url + self.assertRaises(urllib.error.HTTPError, h.http_error_302, + req, MockFile(), 302, "Security Loophole", + MockHeaders({"location": invalid_url})) + + for scheme in valid_schemes: + valid_url = scheme + '://' + schemeless_url + h.http_error_302(req, MockFile(), 302, "That's fine", + MockHeaders({"location": valid_url})) + self.assertEqual(o.req.get_full_url(), valid_url) + def test_cookie_redirect(self): # cookies shouldn't leak into redirected requests from http.cookiejar import CookieJar diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -528,6 +528,17 @@ # fix a possible malformed URL urlparts = urlparse(newurl) + + # For security reasons we don't allow redirection to anything other + # than http, https or ftp. + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, code, + msg + + " - Redirection to url '%s' is not allowed" % + newurl, + headers, fp) + if not urlparts.path: urlparts = list(urlparts) urlparts[2] = "/" @@ -1864,8 +1875,24 @@ return void = fp.read() fp.close() + # In case the server sent a relative URL, join with original: newurl = urljoin(self.type + ":" + url, newurl) + + urlparts = urlparse(newurl) + + # For security reasons, we don't allow redirection to anything other + # than http, https and ftp. + + # We are using newer HTTPError with older redirect_internal method + # This older method will get deprecated in 3.3 + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, errcode, + errmsg + + " Redirection to url '%s' is not allowed." % newurl, + headers, fp) + return self.open(newurl) def http_error_301(self, url, fp, errcode, errmsg, headers, data=None): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -58,6 +58,9 @@ - Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. Patch by Ben Hayden. +- Issue #11662: Make urllib and urllib2 ignore redirections if the + scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). + - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -913,7 +913,7 @@ PyDoc_STRVAR(deque_doc, "deque(iterable[, maxlen]) --> deque object\n\ \n\ -Build an ordered collection accessible from endpoints only."); +Build an ordered collection with optimized access from its endpoints."); static PyTypeObject deque_type = { PyVarObject_HEAD_INIT(NULL, 0) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Wed Mar 30 13:56:55 2011 From: python-checkins at python.org (kristjan.jonsson) Date: Wed, 30 Mar 2011 13:56:55 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> 3.2): Merge Message-ID: http://hg.python.org/cpython/rev/e74299695014 changeset: 69067:e74299695014 branch: 3.2 parent: 69063:50e9d4515ea2 parent: 69060:075637897403 user: Kristjan Valur Jonsson date: Wed Mar 30 11:55:52 2011 +0000 summary: Merge files: Doc/library/urllib.request.rst | 4 +++ Lib/test/test_urllib.py | 16 +++++++++++++ Lib/test/test_urllib2.py | 24 +++++++++++++++++++ Lib/urllib/request.py | 27 ++++++++++++++++++++++ Misc/NEWS | 3 ++ Modules/_collectionsmodule.c | 2 +- 6 files changed, 75 insertions(+), 1 deletions(-) diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -650,6 +650,10 @@ is the case, :exc:`HTTPError` is raised. See :rfc:`2616` for details of the precise meanings of the various redirection codes. + An :class:`HTTPError` exception raised as a security consideration if the + HTTPRedirectHandler is presented with a redirected url which is not an HTTP, + HTTPS or FTP url. + .. method:: HTTPRedirectHandler.redirect_request(req, fp, code, msg, hdrs, newurl) diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -2,6 +2,7 @@ import urllib.parse import urllib.request +import urllib.error import http.client import email.message import io @@ -206,6 +207,21 @@ finally: self.unfakehttp() + def test_invalid_redirect(self): + # urlopen() should raise IOError for many error codes. + self.fakehttp(b'''HTTP/1.1 302 Found +Date: Wed, 02 Jan 2008 03:03:54 GMT +Server: Apache/1.3.33 (Debian GNU/Linux) mod_ssl/2.8.22 OpenSSL/0.9.7e +Location: file://guidocomputer.athome.com:/python/license +Connection: close +Content-Type: text/html; charset=iso-8859-1 +''') + try: + self.assertRaises(urllib.error.HTTPError, urlopen, + "http://python.org/") + finally: + self.unfakehttp() + def test_empty_socket(self): # urlopen() raises IOError if the underlying socket does not send any # data. (#1680230) diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -10,6 +10,7 @@ # The proxy bypass method imported below has logic specific to the OSX # proxy config data structure but is testable on all platforms. from urllib.request import Request, OpenerDirector, _proxy_bypass_macosx_sysconf +import urllib.error # XXX # Request @@ -1031,6 +1032,29 @@ self.assertEqual(count, urllib.request.HTTPRedirectHandler.max_redirections) + + def test_invalid_redirect(self): + from_url = "http://example.com/a.html" + valid_schemes = ['http','https','ftp'] + invalid_schemes = ['file','imap','ldap'] + schemeless_url = "example.com/b.html" + h = urllib.request.HTTPRedirectHandler() + o = h.parent = MockOpener() + req = Request(from_url) + req.timeout = socket._GLOBAL_DEFAULT_TIMEOUT + + for scheme in invalid_schemes: + invalid_url = scheme + '://' + schemeless_url + self.assertRaises(urllib.error.HTTPError, h.http_error_302, + req, MockFile(), 302, "Security Loophole", + MockHeaders({"location": invalid_url})) + + for scheme in valid_schemes: + valid_url = scheme + '://' + schemeless_url + h.http_error_302(req, MockFile(), 302, "That's fine", + MockHeaders({"location": valid_url})) + self.assertEqual(o.req.get_full_url(), valid_url) + def test_cookie_redirect(self): # cookies shouldn't leak into redirected requests from http.cookiejar import CookieJar diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -545,6 +545,17 @@ # fix a possible malformed URL urlparts = urlparse(newurl) + + # For security reasons we don't allow redirection to anything other + # than http, https or ftp. + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, code, + msg + + " - Redirection to url '%s' is not allowed" % + newurl, + headers, fp) + if not urlparts.path: urlparts = list(urlparts) urlparts[2] = "/" @@ -1903,8 +1914,24 @@ return void = fp.read() fp.close() + # In case the server sent a relative URL, join with original: newurl = urljoin(self.type + ":" + url, newurl) + + urlparts = urlparse(newurl) + + # For security reasons, we don't allow redirection to anything other + # than http, https and ftp. + + # We are using newer HTTPError with older redirect_internal method + # This older method will get deprecated in 3.3 + + if not urlparts.scheme in ('http', 'https', 'ftp'): + raise HTTPError(newurl, errcode, + errmsg + + " Redirection to url '%s' is not allowed." % newurl, + headers, fp) + return self.open(newurl) def http_error_301(self, url, fp, errcode, errmsg, headers, data=None): diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -74,6 +74,9 @@ - Issue #11666: let help() display named tuple attributes and methods that start with a leading underscore. +- Issue #11662: Make urllib and urllib2 ignore redirections if the + scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). + - Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar for expiration year greater than 2038 on 32-bit systems. diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -1002,7 +1002,7 @@ PyDoc_STRVAR(deque_doc, "deque(iterable[, maxlen]) --> deque object\n\ \n\ -Build an ordered collection accessible from endpoints only."); +Build an ordered collection with optimized access from its endpoints."); static PyTypeObject deque_type = { PyVarObject_HEAD_INIT(NULL, 0) -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Wed Mar 30 04:55:49 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Wed, 30 Mar 2011 04:55:49 +0200 Subject: [Python-checkins] Daily reference leaks (80e71592b114): sum=0 Message-ID: results for 80e71592b114 on branch "default" -------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflog5D_2pX', '-x'] From python-checkins at python.org Wed Mar 30 22:59:14 2011 From: python-checkins at python.org (antoine.pitrou) Date: Wed, 30 Mar 2011 22:59:14 +0200 Subject: [Python-checkins] devguide: Add a page about continuous integration (buildbots) Message-ID: http://hg.python.org/devguide/rev/74f6a2fea6d1 changeset: 407:74f6a2fea6d1 user: Antoine Pitrou date: Wed Mar 30 22:59:11 2011 +0200 summary: Add a page about continuous integration (buildbots) files: buildbots.rst | 177 ++++++++++++++++++++++++++++++++++++++ index.rst | 10 +- 2 files changed, 183 insertions(+), 4 deletions(-) diff --git a/buildbots.rst b/buildbots.rst new file mode 100644 --- /dev/null +++ b/buildbots.rst @@ -0,0 +1,177 @@ +.. _buildbots: + +Continuous Integration +====================== + +To assert that there are no regressions in the :doc:`development and maintenance +branches `, Python has a set of dedicated machines (called *buildbots* or +*build slaves*) used for continuous integration. They span a number of +hardware/operating system combinations. Furthermore, each machine hosts +several *builders*, one per active branch: when a new change is pushed +to this branch on the public Mercurial repository, all corresponding builders +will schedule a new build to be run as soon as possible. + +The build steps run by the buildbots are the following: + +* Checkout of the source tree for the changeset which triggered the build +* Compiling Python +* Running the test suite using :ref:`strenuous settings ` +* Cleaning up the build tree + +It is your responsibility, as a core developer, to check the automatic +build results after you push a change to the repository. It is therefore +important that you get acquainted with the way these results are presented, +and how various kinds of failures can be explained and diagnosed. + +Checking results of automatic builds +------------------------------------ + +There are two ways of visualizing recent build results: + +* The Web interface for each branch at http://python.org/dev/buildbot/, + where the so-called "waterfall" view presents a vertical rundown of recent + builds for each builder. When interested in one build, you'll have to + click on it to know which changesets it corresponds to. + +* The command-line ``bbreport.py`` client, which you can get from + http://code.google.com/p/bbreport/. Installing it is trivial: just add + the directory containing ``bbreport.py`` to your system path so that + you can run it from any filesystem location. For example, if you want + to display the latest build results on the development ("default") branch, + type:: + + bbreport.py -q 3.x + +Some buildbots are much faster than others. Over time, you will learn which +ones produce the quickest results after a build, and which ones take the +longest time. + +Also, when several changesets are pushed in a quick succession in the same +branch, it often happens that a single build is scheduled for all these +changesets. + +Stability +--------- + +A subset of the buildbots are marked "stable". They are taken into account +when making a new release. The rule is that no stable buildbot must witness +persistent failures when the release is cut. It is absolutely **vital** +that core developers fix any issue they introduce on the stable buildbots, +as soon as possible. + +This does not mean that other builders' test results can be taken lightly, +either. Some of them are known for having platform-specific issues that +prevent some tests from succeeding (or even terminating at all), but +introducing additional failures should generally not be an option. + +Flags-dependent failures +------------------------ + +Sometimes, while you have run the :doc:`whole test suite ` before +committing, you may witness unexpected failures on the buildbots. One source +of such discrepancies is if different flags have been passed to the test runner +or to Python itself. To reproduce, make sure you use the same flags as the +buildbots: they can be found out simply by clicking the **stdio** link for +the failing build's tests. For example:: + + ./python.exe -Wd -E -bb ./Lib/test/regrtest.py -uall -rwW + +.. note:: + Running ``Lib/test/regrtest.py`` is exactly equivalent to running + ``-m test``. + +Ordering-dependent failures +--------------------------- + +Sometimes even the failure is subtler, as it relies on the order in which +the tests are run. The buildbots *randomize* test order (by using the ``-r`` +option to the test runner) to maximize the probability that potential +interferences between library modules are exercised; the downside is that it +can make for seemingly sporadic failures. + +The ``--randseed`` option makes it easy to reproduce the exact randomization +used in a given build. Again, open the ``stdio`` link for the failing test +run, and check the beginning of the test output proper. + +Let's assume, for the sake of example, that the output starts with:: + + ./python -Wd -E -bb Lib/test/regrtest.py -uall -rwW + == CPython 3.3a0 (default:22ae2b002865, Mar 30 2011, 13:58:40) [GCC 4.4.5] + == Linux-2.6.36-gentoo-r5-x86_64-AMD_Athlon-tm-_64_X2_Dual_Core_Processor_4400+-with-gentoo-1.12.14 little-endian + == /home/buildbot/buildarea/3.x.ochtman-gentoo-amd64/build/build/test_python_29628 + Testing with flags: sys.flags(debug=0, inspect=0, interactive=0, optimize=0, dont_write_bytecode=0, no_user_site=0, no_site=0, ignore_environment=1, verbose=0, bytes_warning=2, quiet=0) + Using random seed 2613169 + [ 1/353] test_augassign + [ 2/353] test_functools + +You can reproduce the exact same order using:: + + ./python -Wd -E -bb -m test -uall -rwW --randseed 2613169 + +It will run the following sequence (trimmed for brevity):: + + [ 1/353] test_augassign + [ 2/353] test_functools + [ 3/353] test_bool + [ 4/353] test_contains + [ 5/353] test_compileall + [ 6/353] test_unicode + +If this is enough to reproduce the failure on your setup, you can then +bisect the test sequence to look for the specific interference causing the +failure. Copy and paste the test sequence in a text file, then use the +``--fromfile`` (or ``-f``) option of the test runner to run the exact +sequence recorded in that text file:: + + ./python -Wd -E -bb -m test -uall -rwW --fromfile mytestsequence.txt + +In the example sequence above, if ``test_unicode`` had failed, you would +first test the following sequence:: + + [ 1/353] test_augassign + [ 2/353] test_functools + [ 3/353] test_bool + [ 6/353] test_unicode + +And, if it succeeds, the following one instead (which, hopefully, shall +fail):: + + [ 4/353] test_contains + [ 5/353] test_compileall + [ 6/353] test_unicode + +Then, recursively, narrow down the search until you get a single pair of +tests which triggers the failure. It is very rare that such an interference +involves more than **two** tests. If this is the case, we can only wish you +good luck! + +.. note:: + You cannot use the ``-j`` option (for parallel testing) when diagnosing + ordering-dependent failures. Using ``-j`` isolates each test in a + pristine subprocess and, therefore, prevents you from reproducing any + interference between tests. + + +Transient failures +------------------ + +While we try to make the test suite as reliable as possible, some tests do +not reach a perfect level of reproduceability. Some of them will sometimes +display spurious failures, depending on various conditions. Here are common +offenders: + +* Network-related tests, such as ``test_poplib``, ``test_urllibnet``, etc. + Their failures can stem from adverse network conditions, or imperfect + thread synchronization in the test code, which often has to run a + server in a separate thread. + +* Tests dealing with delicate issues such as inter-thread or inter-process + synchronization, or Unix signals: ``test_multiprocessing``, + ``test_threading``, ``test_subprocess``, ``test_threadsignals``. + +When you think a failure might be transient, it is recommended you confirm by +waiting for the next build. Still, even if the failure does turn out sporadic +and unpredictable, the issue should be reported on the bug tracker; even +better if it can be diagnosed and suppressed by fixing the test's implementation, +or by making its parameters - such as a timeout - more robust. + diff --git a/index.rst b/index.rst --- a/index.rst +++ b/index.rst @@ -21,6 +21,7 @@ developers committing devcycle + buildbots stdlibchanges langchanges @@ -40,7 +41,7 @@ contributing to Python. * `Issue tracker `_ -* Buildbots_ +* `Buildbot status`_ * :doc:`faq` * PEPs_ (Python Enhancement Proposals) @@ -69,7 +70,7 @@ * :doc:`coverage` * Advanced tasks for once you are comfortable * :doc:`silencewarnings` - * Fixing issues found by the buildbots_ + * Fixing issues found by the :doc:`buildbots ` * :doc:`fixingissues` * :doc:`helptriage` * :doc:`devrole` @@ -79,6 +80,7 @@ * :doc:`coredev` * :doc:`committing` * :doc:`devcycle` + * :doc:`buildbots` Proposing changes to Python itself @@ -102,7 +104,7 @@ tracker for the issue tracker) * :doc:`experts` * `Firefox search engine plug-in`_ -* Buildbots_ +* `Buildbot status`_ * Source code * `Browse online `_ * `Snapshot of py3k `_ @@ -120,7 +122,7 @@ * :doc:`developers` -.. _buildbots: http://python.org/dev/buildbot/ +.. _Buildbot status: http://python.org/dev/buildbot/ .. _Firefox search engine plug-in: http://www.python.org/dev/searchplugin/ .. _Misc directory: http://hg.python.org/cpython/file/tip/Misc .. _PEPs: http://www.python.org/dev/peps -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Thu Mar 31 01:05:26 2011 From: python-checkins at python.org (antoine.pitrou) Date: Thu, 31 Mar 2011 01:05:26 +0200 Subject: [Python-checkins] cpython (3.2): Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Message-ID: http://hg.python.org/cpython/rev/9b12af6e9ea9 changeset: 69068:9b12af6e9ea9 branch: 3.2 user: Antoine Pitrou date: Thu Mar 31 01:00:32 2011 +0200 summary: Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Windows. files: Lib/test/lock_tests.py | 10 ++++ Misc/NEWS | 2 + Python/thread_nt.h | 67 +++-------------------------- 3 files changed, 20 insertions(+), 59 deletions(-) diff --git a/Lib/test/lock_tests.py b/Lib/test/lock_tests.py --- a/Lib/test/lock_tests.py +++ b/Lib/test/lock_tests.py @@ -213,6 +213,16 @@ lock.acquire() lock.release() + def test_state_after_timeout(self): + # Issue #11618: check that lock is in a proper state after a + # (non-zero) timeout. + lock = self.locktype() + lock.acquire() + self.assertFalse(lock.acquire(timeout=0.01)) + lock.release() + self.assertFalse(lock.locked()) + self.assertTrue(lock.acquire(blocking=False)) + class RLockTests(BaseLockTests): """ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -49,6 +49,8 @@ Library ------- +- Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Windows. + - Issue #11256: Fix inspect.getcallargs on functions that take only keyword arguments. diff --git a/Python/thread_nt.h b/Python/thread_nt.h --- a/Python/thread_nt.h +++ b/Python/thread_nt.h @@ -9,82 +9,31 @@ #include #endif -typedef struct NRMUTEX { - LONG owned ; - DWORD thread_id ; - HANDLE hevent ; -} NRMUTEX, *PNRMUTEX ; +#define PNRMUTEX HANDLE - -BOOL -InitializeNonRecursiveMutex(PNRMUTEX mutex) +PNRMUTEX +AllocNonRecursiveMutex() { - mutex->owned = -1 ; /* No threads have entered NonRecursiveMutex */ - mutex->thread_id = 0 ; - mutex->hevent = CreateEvent(NULL, FALSE, FALSE, NULL) ; - return mutex->hevent != NULL ; /* TRUE if the mutex is created */ + return CreateSemaphore(NULL, 1, 1, NULL); } VOID -DeleteNonRecursiveMutex(PNRMUTEX mutex) +FreeNonRecursiveMutex(PNRMUTEX mutex) { /* No in-use check */ - CloseHandle(mutex->hevent) ; - mutex->hevent = NULL ; /* Just in case */ + CloseHandle(mutex); } DWORD EnterNonRecursiveMutex(PNRMUTEX mutex, DWORD milliseconds) { - /* Assume that the thread waits successfully */ - DWORD ret ; - - /* InterlockedIncrement(&mutex->owned) == 0 means that no thread currently owns the mutex */ - if (milliseconds == 0) - { - if (InterlockedCompareExchange(&mutex->owned, 0, -1) != -1) - return WAIT_TIMEOUT ; - ret = WAIT_OBJECT_0 ; - } - else - ret = InterlockedIncrement(&mutex->owned) ? - /* Some thread owns the mutex, let's wait... */ - WaitForSingleObject(mutex->hevent, milliseconds) : WAIT_OBJECT_0 ; - - mutex->thread_id = GetCurrentThreadId() ; /* We own it */ - return ret ; + return WaitForSingleObject(mutex, milliseconds); } BOOL LeaveNonRecursiveMutex(PNRMUTEX mutex) { - /* We don't own the mutex */ - mutex->thread_id = 0 ; - return - InterlockedDecrement(&mutex->owned) < 0 || - SetEvent(mutex->hevent) ; /* Other threads are waiting, wake one on them up */ -} - -PNRMUTEX -AllocNonRecursiveMutex(void) -{ - PNRMUTEX mutex = (PNRMUTEX)malloc(sizeof(NRMUTEX)) ; - if (mutex && !InitializeNonRecursiveMutex(mutex)) - { - free(mutex) ; - mutex = NULL ; - } - return mutex ; -} - -void -FreeNonRecursiveMutex(PNRMUTEX mutex) -{ - if (mutex) - { - DeleteNonRecursiveMutex(mutex) ; - free(mutex) ; - } + return ReleaseSemaphore(mutex, 1, NULL); } long PyThread_get_thread_ident(void); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 01:05:27 2011 From: python-checkins at python.org (antoine.pitrou) Date: Thu, 31 Mar 2011 01:05:27 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Message-ID: http://hg.python.org/cpython/rev/9d658f000419 changeset: 69069:9d658f000419 parent: 69065:22ae2b002865 parent: 69068:9b12af6e9ea9 user: Antoine Pitrou date: Thu Mar 31 01:03:10 2011 +0200 summary: Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Windows. files: Lib/test/lock_tests.py | 10 ++++ Misc/NEWS | 2 + Python/thread_nt.h | 67 +++-------------------------- 3 files changed, 20 insertions(+), 59 deletions(-) diff --git a/Lib/test/lock_tests.py b/Lib/test/lock_tests.py --- a/Lib/test/lock_tests.py +++ b/Lib/test/lock_tests.py @@ -213,6 +213,16 @@ lock.acquire() lock.release() + def test_state_after_timeout(self): + # Issue #11618: check that lock is in a proper state after a + # (non-zero) timeout. + lock = self.locktype() + lock.acquire() + self.assertFalse(lock.acquire(timeout=0.01)) + lock.release() + self.assertFalse(lock.locked()) + self.assertTrue(lock.acquire(blocking=False)) + class RLockTests(BaseLockTests): """ diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -87,6 +87,8 @@ Library ------- +- Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Windows. + - Removed the 'strict' argument to email.parser.Parser, which has been deprecated since Python 2.4. diff --git a/Python/thread_nt.h b/Python/thread_nt.h --- a/Python/thread_nt.h +++ b/Python/thread_nt.h @@ -9,82 +9,31 @@ #include #endif -typedef struct NRMUTEX { - LONG owned ; - DWORD thread_id ; - HANDLE hevent ; -} NRMUTEX, *PNRMUTEX ; +#define PNRMUTEX HANDLE - -BOOL -InitializeNonRecursiveMutex(PNRMUTEX mutex) +PNRMUTEX +AllocNonRecursiveMutex() { - mutex->owned = -1 ; /* No threads have entered NonRecursiveMutex */ - mutex->thread_id = 0 ; - mutex->hevent = CreateEvent(NULL, FALSE, FALSE, NULL) ; - return mutex->hevent != NULL ; /* TRUE if the mutex is created */ + return CreateSemaphore(NULL, 1, 1, NULL); } VOID -DeleteNonRecursiveMutex(PNRMUTEX mutex) +FreeNonRecursiveMutex(PNRMUTEX mutex) { /* No in-use check */ - CloseHandle(mutex->hevent) ; - mutex->hevent = NULL ; /* Just in case */ + CloseHandle(mutex); } DWORD EnterNonRecursiveMutex(PNRMUTEX mutex, DWORD milliseconds) { - /* Assume that the thread waits successfully */ - DWORD ret ; - - /* InterlockedIncrement(&mutex->owned) == 0 means that no thread currently owns the mutex */ - if (milliseconds == 0) - { - if (InterlockedCompareExchange(&mutex->owned, 0, -1) != -1) - return WAIT_TIMEOUT ; - ret = WAIT_OBJECT_0 ; - } - else - ret = InterlockedIncrement(&mutex->owned) ? - /* Some thread owns the mutex, let's wait... */ - WaitForSingleObject(mutex->hevent, milliseconds) : WAIT_OBJECT_0 ; - - mutex->thread_id = GetCurrentThreadId() ; /* We own it */ - return ret ; + return WaitForSingleObject(mutex, milliseconds); } BOOL LeaveNonRecursiveMutex(PNRMUTEX mutex) { - /* We don't own the mutex */ - mutex->thread_id = 0 ; - return - InterlockedDecrement(&mutex->owned) < 0 || - SetEvent(mutex->hevent) ; /* Other threads are waiting, wake one on them up */ -} - -PNRMUTEX -AllocNonRecursiveMutex(void) -{ - PNRMUTEX mutex = (PNRMUTEX)malloc(sizeof(NRMUTEX)) ; - if (mutex && !InitializeNonRecursiveMutex(mutex)) - { - free(mutex) ; - mutex = NULL ; - } - return mutex ; -} - -void -FreeNonRecursiveMutex(PNRMUTEX mutex) -{ - if (mutex) - { - DeleteNonRecursiveMutex(mutex) ; - free(mutex) ; - } + return ReleaseSemaphore(mutex, 1, NULL); } long PyThread_get_thread_ident(void); -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 01:32:00 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 31 Mar 2011 01:32:00 +0200 Subject: [Python-checkins] cpython: Issue #11393: Add the new faulthandler module Message-ID: http://hg.python.org/cpython/rev/b0680b5a5215 changeset: 69070:b0680b5a5215 user: Victor Stinner date: Thu Mar 31 01:31:06 2011 +0200 summary: Issue #11393: Add the new faulthandler module files: Doc/library/debug.rst | 3 +- Doc/library/faulthandler.rst | 129 ++ Doc/using/cmdline.rst | 7 + Doc/whatsnew/3.3.rst | 8 + Include/traceback.h | 40 + Lib/test/regrtest.py | 5 + Lib/test/script_helper.py | 5 +- Lib/test/test_faulthandler.py | 469 ++++++++++ Misc/NEWS | 2 + Modules/Setup.dist | 3 + Modules/faulthandler.c | 971 ++++++++++++++++++++++ Modules/main.c | 1 + PC/config.c | 2 + PCbuild/pythoncore.vcproj | 4 + Python/pythonrun.c | 21 + Python/traceback.c | 235 +++++ configure | 2 +- configure.in | 2 +- pyconfig.h.in | 3 + 19 files changed, 1907 insertions(+), 5 deletions(-) diff --git a/Doc/library/debug.rst b/Doc/library/debug.rst --- a/Doc/library/debug.rst +++ b/Doc/library/debug.rst @@ -10,7 +10,8 @@ .. toctree:: bdb.rst + faulthandler.rst pdb.rst profile.rst timeit.rst - trace.rst \ No newline at end of file + trace.rst diff --git a/Doc/library/faulthandler.rst b/Doc/library/faulthandler.rst new file mode 100644 --- /dev/null +++ b/Doc/library/faulthandler.rst @@ -0,0 +1,129 @@ +:mod:`faulthandler` --- Dump the Python traceback +================================================= + +.. module:: faulthandler + :synopsis: Dump the Python traceback. + +This module contains functions to dump the Python traceback explicitly, on a +fault, after a timeout or on a user signal. Call :func:`faulthandler.enable` to +install fault handlers for :const:`SIGSEGV`, :const:`SIGFPE`, :const:`SIGBUS` +and :const:`SIGILL` signals. You can also enable them at startup by setting the +:envvar:`PYTHONFAULTHANDLER` environment variable or by using :option:`-X` +``faulthandler`` command line option. + +The fault handler is compatible with system fault handlers like Apport or +the Windows fault handler. The module uses an alternative stack for signal +handlers, if the :c:func:`sigaltstack` function is available, to be able to +dump the traceback even on a stack overflow. + +The fault handler is called on catastrophic cases and so can only use +signal-safe functions (e.g. it cannot allocate memory on the heap). That's why +the traceback is limited: only support ASCII encoding (use the +``backslashreplace`` error handler), limit each string to 100 characters, don't +print the source code (only the filename, the function name and the line +number), limit to 100 frames and 100 threads. + +By default, the Python traceback is written to :data:`sys.stderr`. Start your +graphical applications in a terminal and run your server in foreground to see +the traceback, or specify a log file to :func:`faulthandler.enable()`. + +The module is implemented in C to be able to dump a traceback on a crash or +when Python is blocked (e.g. deadlock). + +.. versionadded:: 3.3 + + +Dump the traceback +------------------ + +.. function:: dump_traceback(file=sys.stderr, all_threads=False) + + Dump the traceback of the current thread, or of all threads if *all_threads* + is ``True``, into *file*. + + +Fault handler state +------------------- + +.. function:: enable(file=sys.stderr, all_threads=False) + + Enable the fault handler: install handlers for :const:`SIGSEGV`, + :const:`SIGFPE`, :const:`SIGBUS` and :const:`SIGILL` signals to dump the + Python traceback. It dumps the traceback of the current thread, or all + threads if *all_threads* is ``True``, into *file*. + +.. function:: disable() + + Disable the fault handler: uninstall the signal handlers installed by + :func:`enable`. + +.. function:: is_enabled() + + Check if the fault handler is enabled. + + +Dump the tracebacks after a timeout +----------------------------------- + +.. function:: dump_tracebacks_later(timeout, repeat=False, file=sys.stderr, exit=False) + + Dump the tracebacks of all threads, after a timeout of *timeout* seconds, or + each *timeout* seconds if *repeat* is ``True``. If *exit* is True, call + :cfunc:`_exit` with status=1 after dumping the tracebacks to terminate + immediatly the process, which is not safe. For example, :cfunc:`_exit` + doesn't flush file buffers. If the function is called twice, the new call + replaces previous parameters (resets the timeout). The timer has a + sub-second resolution. + + This function is implemented using a watchdog thread, and therefore is + not available if Python is compiled with threads disabled. + +.. function:: cancel_dump_traceback_later() + + Cancel the last call to :func:`dump_traceback_later`. + + +Dump the traceback on a user signal +----------------------------------- + +.. function:: register(signum, file=sys.stderr, all_threads=False) + + Register a user signal: install a handler for the *signum* signal to dump + the traceback of the current thread, or of all threads if *all_threads* is + ``True``, into *file*. + + Not available on Windows. + +.. function:: unregister(signum) + + Unregister a user signal: uninstall the handler of the *signum* signal + installed by :func:`register`. + + Not available on Windows. + + +File descriptor issue +--------------------- + +:func:`enable`, :func:`dump_traceback_later` and :func:`register` keep the +file descriptor of their *file* argument. If the file is closed and its file +descriptor is reused by a new file, or if :func:`os.dup2` is used to replace +the file descriptor, the traceback will be written into a different file. Call +these functions again each time that the file is replaced. + + +Example +------- + +Example of a segmentation fault on Linux: :: + + $ python -q -X faulthandler + >>> import ctypes + >>> ctypes.string_at(0) + Fatal Python error: Segmentation fault + + Traceback (most recent call first): + File "/home/python/cpython/Lib/ctypes/__init__.py", line 486 in string_at + File "", line 1 in + Segmentation fault + diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -498,6 +498,13 @@ separated string, it is equivalent to specifying :option:`-W` multiple times. +.. envvar:: PYTHONFAULTHANDLER + + If this environment variable is set, :func:`faulthandler.enable` is called + at startup: install a handler for :const:`SIGSEGV`, :const:`SIGFPE`, + :const:`SIGBUS` and :const:`SIGILL` signals to dump the Python traceback. + This is equivalent to :option:`-X` ``faulthandler`` option. + Debug-mode variables ~~~~~~~~~~~~~~~~~~~~ diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -68,6 +68,14 @@ * Stub +faulthandler +------------ + +New module: :mod:`faulthandler`. + + * :envvar:`PYTHONFAULTHANDLER` + * :option:`-X` ``faulthandler`` + os -- diff --git a/Include/traceback.h b/Include/traceback.h --- a/Include/traceback.h +++ b/Include/traceback.h @@ -5,6 +5,8 @@ extern "C" { #endif +#include "pystate.h" + struct _frame; /* Traceback interface */ @@ -28,6 +30,44 @@ PyAPI_DATA(PyTypeObject) PyTraceBack_Type; #define PyTraceBack_Check(v) (Py_TYPE(v) == &PyTraceBack_Type) +/* Write the Python traceback into the file 'fd'. For example: + + Traceback (most recent call first): + File "xxx", line xxx in + File "xxx", line xxx in + ... + File "xxx", line xxx in + + Return 0 on success, -1 on error. + + This function is written for debug purpose only, to dump the traceback in + the worst case: after a segmentation fault, at fatal error, etc. That's why, + it is very limited. Strings are truncated to 100 characters and encoded to + ASCII with backslashreplace. It doesn't write the source code, only the + function name, filename and line number of each frame. Write only the first + 100 frames: if the traceback is truncated, write the line " ...". + + This function is signal safe. */ + +PyAPI_DATA(int) _Py_DumpTraceback( + int fd, + PyThreadState *tstate); + +/* Write the traceback of all threads into the file 'fd'. current_thread can be + NULL. Return NULL on success, or an error message on error. + + This function is written for debug purpose only. It calls + _Py_DumpTraceback() for each thread, and so has the same limitations. It + only write the traceback of the first 100 threads: write "..." if there are + more threads. + + This function is signal safe. */ + +PyAPI_DATA(const char*) _Py_DumpTracebackThreads( + int fd, PyInterpreterState *interp, + PyThreadState *current_thread); + + #ifdef __cplusplus } #endif diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -157,6 +157,7 @@ """ import builtins +import faulthandler import getopt import json import os @@ -490,6 +491,7 @@ next_single_test = alltests[alltests.index(selected[0])+1] except IndexError: next_single_test = None + selected = ['test_faulthandler'] # Remove all the tests that precede start if it's set. if start: try: @@ -1551,6 +1553,9 @@ return TEMPDIR, TESTCWD if __name__ == '__main__': + # Display the Python traceback on segfault and division by zero + faulthandler.enable() + # Remove regrtest.py's own directory from the module search path. Despite # the elimination of implicit relative imports, this is still needed to # ensure that submodules of the test package do not inappropriately appear diff --git a/Lib/test/script_helper.py b/Lib/test/script_helper.py --- a/Lib/test/script_helper.py +++ b/Lib/test/script_helper.py @@ -56,11 +56,12 @@ """ return _assert_python(False, *args, **env_vars) -def spawn_python(*args): +def spawn_python(*args, **kw): cmd_line = [sys.executable, '-E'] cmd_line.extend(args) return subprocess.Popen(cmd_line, stdin=subprocess.PIPE, - stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + stdout=subprocess.PIPE, stderr=subprocess.STDOUT, + **kw) def kill_python(p): p.stdin.close() diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py new file mode 100644 --- /dev/null +++ b/Lib/test/test_faulthandler.py @@ -0,0 +1,469 @@ +from contextlib import contextmanager +import faulthandler +import re +import signal +import subprocess +import sys +from test import support, script_helper +import tempfile +import unittest + +try: + from resource import setrlimit, RLIMIT_CORE, error as resource_error +except ImportError: + prepare_subprocess = None +else: + def prepare_subprocess(): + # don't create core file + try: + setrlimit(RLIMIT_CORE, (0, 0)) + except (ValueError, resource_error): + pass + +def expected_traceback(lineno1, lineno2, header, count=1): + regex = header + regex += r' File "\", line %s in func\n' % lineno1 + regex += r' File "\", line %s in \' % lineno2 + if count != 1: + regex = (regex + '\n') * (count - 1) + regex + return '^' + regex + '$' + + at contextmanager +def temporary_filename(): + filename = tempfile.mktemp() + try: + yield filename + finally: + support.unlink(filename) + +class FaultHandlerTests(unittest.TestCase): + def get_output(self, code, expect_success, filename=None): + """ + Run the specified code in Python (in a new child process) and read the + output from the standard error or from a file (if filename is set). + Return the output lines as a list. + + Strip the reference count from the standard error for Python debug + build, and replace "Current thread 0x00007f8d8fbd9700" by "Current + thread XXX". + """ + options = {} + if prepare_subprocess: + options['preexec_fn'] = prepare_subprocess + process = script_helper.spawn_python('-c', code, **options) + stdout, stderr = process.communicate() + exitcode = process.wait() + if expect_success: + self.assertEqual(exitcode, 0) + else: + self.assertNotEqual(exitcode, 0) + if filename: + with open(filename, "rb") as fp: + output = fp.read() + else: + output = support.strip_python_stderr(stdout) + output = output.decode('ascii', 'backslashreplace') + output = re.sub('Current thread 0x[0-9a-f]+', + 'Current thread XXX', + output) + return output.splitlines() + + def check_fatal_error(self, code, line_number, name_regex, + filename=None, all_threads=False): + """ + Check that the fault handler for fatal errors is enabled and check the + traceback from the child process output. + + Raise an error if the output doesn't match the expected format. + """ + if all_threads: + header = 'Current thread XXX' + else: + header = 'Traceback (most recent call first)' + regex = """ +^Fatal Python error: {name} + +{header}: + File "", line {lineno} in $ +""".strip() + regex = regex.format( + lineno=line_number, + name=name_regex, + header=re.escape(header)) + output = self.get_output(code, False, filename) + output = '\n'.join(output) + self.assertRegex(output, regex) + + def test_read_null(self): + self.check_fatal_error(""" +import faulthandler +faulthandler.enable() +faulthandler._read_null() +""".strip(), + 3, + '(?:Segmentation fault|Bus error)') + + def test_sigsegv(self): + self.check_fatal_error(""" +import faulthandler +faulthandler.enable() +faulthandler._sigsegv() +""".strip(), + 3, + 'Segmentation fault') + + @unittest.skipIf(sys.platform == 'win32', + "SIGFPE cannot be caught on Windows") + def test_sigfpe(self): + self.check_fatal_error(""" +import faulthandler +faulthandler.enable() +faulthandler._sigfpe() +""".strip(), + 3, + 'Floating point exception') + + @unittest.skipIf(not hasattr(faulthandler, '_sigbus'), + "need faulthandler._sigbus()") + def test_sigbus(self): + self.check_fatal_error(""" +import faulthandler +faulthandler.enable() +faulthandler._sigbus() +""".strip(), + 3, + 'Bus error') + + @unittest.skipIf(not hasattr(faulthandler, '_sigill'), + "need faulthandler._sigill()") + def test_sigill(self): + self.check_fatal_error(""" +import faulthandler +faulthandler.enable() +faulthandler._sigill() +""".strip(), + 3, + 'Illegal instruction') + + def test_fatal_error(self): + self.check_fatal_error(""" +import faulthandler +faulthandler._fatal_error(b'xyz') +""".strip(), + 2, + 'xyz') + + @unittest.skipIf(not hasattr(faulthandler, '_stack_overflow'), + 'need faulthandler._stack_overflow()') + def test_stack_overflow(self): + self.check_fatal_error(""" +import faulthandler +faulthandler.enable() +faulthandler._stack_overflow() +""".strip(), + 3, + '(?:Segmentation fault|Bus error)') + + def test_gil_released(self): + self.check_fatal_error(""" +import faulthandler +faulthandler.enable() +faulthandler._read_null(True) +""".strip(), + 3, + '(?:Segmentation fault|Bus error)') + + def test_enable_file(self): + with temporary_filename() as filename: + self.check_fatal_error(""" +import faulthandler +output = open({filename}, 'wb') +faulthandler.enable(output) +faulthandler._read_null(True) +""".strip().format(filename=repr(filename)), + 4, + '(?:Segmentation fault|Bus error)', + filename=filename) + + def test_enable_threads(self): + self.check_fatal_error(""" +import faulthandler +faulthandler.enable(all_threads=True) +faulthandler._read_null(True) +""".strip(), + 3, + '(?:Segmentation fault|Bus error)', + all_threads=True) + + def test_disable(self): + code = """ +import faulthandler +faulthandler.enable() +faulthandler.disable() +faulthandler._read_null() +""".strip() + not_expected = 'Fatal Python error' + stderr = self.get_output(code, False) + stder = '\n'.join(stderr) + self.assertTrue(not_expected not in stderr, + "%r is present in %r" % (not_expected, stderr)) + + def test_is_enabled(self): + was_enabled = faulthandler.is_enabled() + try: + faulthandler.enable() + self.assertTrue(faulthandler.is_enabled()) + faulthandler.disable() + self.assertFalse(faulthandler.is_enabled()) + finally: + if was_enabled: + faulthandler.enable() + else: + faulthandler.disable() + + def check_dump_traceback(self, filename): + """ + Explicitly call dump_traceback() function and check its output. + Raise an error if the output doesn't match the expected format. + """ + code = """ +import faulthandler + +def funcB(): + if {has_filename}: + with open({filename}, "wb") as fp: + faulthandler.dump_traceback(fp) + else: + faulthandler.dump_traceback() + +def funcA(): + funcB() + +funcA() +""".strip() + code = code.format( + filename=repr(filename), + has_filename=bool(filename), + ) + if filename: + lineno = 6 + else: + lineno = 8 + expected = [ + 'Traceback (most recent call first):', + ' File "", line %s in funcB' % lineno, + ' File "", line 11 in funcA', + ' File "", line 13 in ' + ] + trace = self.get_output(code, True, filename) + self.assertEqual(trace, expected) + + def test_dump_traceback(self): + self.check_dump_traceback(None) + with temporary_filename() as filename: + self.check_dump_traceback(filename) + + def check_dump_traceback_threads(self, filename): + """ + Call explicitly dump_traceback(all_threads=True) and check the output. + Raise an error if the output doesn't match the expected format. + """ + code = """ +import faulthandler +from threading import Thread, Event +import time + +def dump(): + if {filename}: + with open({filename}, "wb") as fp: + faulthandler.dump_traceback(fp, all_threads=True) + else: + faulthandler.dump_traceback(all_threads=True) + +class Waiter(Thread): + # avoid blocking if the main thread raises an exception. + daemon = True + + def __init__(self): + Thread.__init__(self) + self.running = Event() + self.stop = Event() + + def run(self): + self.running.set() + self.stop.wait() + +waiter = Waiter() +waiter.start() +waiter.running.wait() +dump() +waiter.stop.set() +waiter.join() +""".strip() + code = code.format(filename=repr(filename)) + output = self.get_output(code, True, filename) + output = '\n'.join(output) + if filename: + lineno = 8 + else: + lineno = 10 + regex = """ +^Thread 0x[0-9a-f]+: +(?: File ".*threading.py", line [0-9]+ in wait +)? File ".*threading.py", line [0-9]+ in wait + File "", line 23 in run + File ".*threading.py", line [0-9]+ in _bootstrap_inner + File ".*threading.py", line [0-9]+ in _bootstrap + +Current thread XXX: + File "", line {lineno} in dump + File "", line 28 in $ +""".strip() + regex = regex.format(lineno=lineno) + self.assertRegex(output, regex) + + def test_dump_traceback_threads(self): + self.check_dump_traceback_threads(None) + with temporary_filename() as filename: + self.check_dump_traceback_threads(filename) + + def _check_dump_tracebacks_later(self, repeat, cancel, filename): + """ + Check how many times the traceback is written in timeout x 2.5 seconds, + or timeout x 3.5 seconds if cancel is True: 1, 2 or 3 times depending + on repeat and cancel options. + + Raise an error if the output doesn't match the expect format. + """ + code = """ +import faulthandler +import time + +def func(repeat, cancel, timeout): + pause = timeout * 2.5 + a = time.time() + time.sleep(pause) + faulthandler.cancel_dump_tracebacks_later() + b = time.time() + # Check that sleep() was not interrupted + assert (b -a) >= pause + + if cancel: + pause = timeout * 1.5 + a = time.time() + time.sleep(pause) + b = time.time() + # Check that sleep() was not interrupted + assert (b -a) >= pause + +timeout = 0.5 +repeat = {repeat} +cancel = {cancel} +if {has_filename}: + file = open({filename}, "wb") +else: + file = None +faulthandler.dump_tracebacks_later(timeout, + repeat=repeat, file=file) +func(repeat, cancel, timeout) +if file is not None: + file.close() +""".strip() + code = code.format( + filename=repr(filename), + has_filename=bool(filename), + repeat=repeat, + cancel=cancel, + ) + trace = self.get_output(code, True, filename) + trace = '\n'.join(trace) + + if repeat: + count = 2 + else: + count = 1 + header = 'Thread 0x[0-9a-f]+:\n' + regex = expected_traceback(7, 30, header, count=count) + self.assertRegex(trace, '^%s$' % regex) + + @unittest.skipIf(not hasattr(faulthandler, 'dump_tracebacks_later'), + 'need faulthandler.dump_tracebacks_later()') + def check_dump_tracebacks_later(self, repeat=False, cancel=False, + file=False): + if file: + with temporary_filename() as filename: + self._check_dump_tracebacks_later(repeat, cancel, filename) + else: + self._check_dump_tracebacks_later(repeat, cancel, None) + + def test_dump_tracebacks_later(self): + self.check_dump_tracebacks_later() + + def test_dump_tracebacks_later_repeat(self): + self.check_dump_tracebacks_later(repeat=True) + + def test_dump_tracebacks_later_repeat_cancel(self): + self.check_dump_tracebacks_later(repeat=True, cancel=True) + + def test_dump_tracebacks_later_file(self): + self.check_dump_tracebacks_later(file=True) + + @unittest.skipIf(not hasattr(faulthandler, "register"), + "need faulthandler.register") + def check_register(self, filename=False, all_threads=False): + """ + Register a handler displaying the traceback on a user signal. Raise the + signal and check the written traceback. + + Raise an error if the output doesn't match the expected format. + """ + code = """ +import faulthandler +import os +import signal + +def func(signum): + os.kill(os.getpid(), signum) + +signum = signal.SIGUSR1 +if {has_filename}: + file = open({filename}, "wb") +else: + file = None +faulthandler.register(signum, file=file, all_threads={all_threads}) +func(signum) +if file is not None: + file.close() +""".strip() + code = code.format( + filename=repr(filename), + has_filename=bool(filename), + all_threads=all_threads, + ) + trace = self.get_output(code, True, filename) + trace = '\n'.join(trace) + if all_threads: + regex = 'Current thread XXX:\n' + else: + regex = 'Traceback \(most recent call first\):\n' + regex = expected_traceback(6, 14, regex) + self.assertTrue(re.match(regex, trace), + "[%s] doesn't match [%s]: use_filename=%s, all_threads=%s" + % (regex, trace, bool(filename), all_threads)) + + def test_register(self): + self.check_register() + + def test_register_file(self): + with temporary_filename() as filename: + self.check_register(filename=filename) + + def test_register_threads(self): + self.check_register(all_threads=True) + + +def test_main(): + support.run_unittest(FaultHandlerTests) + +if __name__ == "__main__": + test_main() diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -87,6 +87,8 @@ Library ------- +- Issue #11393: Add the new faulthandler module. + - Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Windows. - Removed the 'strict' argument to email.parser.Parser, which has been diff --git a/Modules/Setup.dist b/Modules/Setup.dist --- a/Modules/Setup.dist +++ b/Modules/Setup.dist @@ -127,6 +127,9 @@ # builtin module avoids some bootstrapping problems and reduces overhead. zipimport zipimport.c +# faulthandler module +faulthandler faulthandler.c + # The rest of the modules listed in this file are all commented out by # default. Usually they can be detected and built as dynamically # loaded modules by the new setup.py script added in Python 2.1. If diff --git a/Modules/faulthandler.c b/Modules/faulthandler.c new file mode 100644 --- /dev/null +++ b/Modules/faulthandler.c @@ -0,0 +1,971 @@ +#include "Python.h" +#include "pythread.h" +#include +#include +#include +#include + +#ifdef WITH_THREAD +# define FAULTHANDLER_LATER +#endif + +#ifndef MS_WINDOWS + /* register() is useless on Windows, because only SIGSEGV and SIGILL can be + handled by the process, and these signals can only be used with enable(), + not using register() */ +# define FAULTHANDLER_USER +#endif + +#define PUTS(fd, str) write(fd, str, strlen(str)) + +#ifdef HAVE_SIGACTION +typedef struct sigaction _Py_sighandler_t; +#else +typedef PyOS_sighandler_t _Py_sighandler_t; +#endif + +typedef struct { + int signum; + int enabled; + const char* name; + _Py_sighandler_t previous; + int all_threads; +} fault_handler_t; + +static struct { + int enabled; + PyObject *file; + int fd; + int all_threads; +} fatal_error = {0, NULL, -1, 0}; + +#ifdef FAULTHANDLER_LATER +static struct { + PyObject *file; + int fd; + PY_TIMEOUT_T timeout_ms; /* timeout in microseconds */ + int repeat; + volatile int running; + PyInterpreterState *interp; + int exit; + /* released by parent thread when cancel request */ + PyThread_type_lock cancel_event; + /* released by child thread when joined */ + PyThread_type_lock join_event; +} thread; +#endif + +#ifdef FAULTHANDLER_USER +typedef struct { + int enabled; + PyObject *file; + int fd; + int all_threads; + _Py_sighandler_t previous; +} user_signal_t; + +static user_signal_t *user_signals; + +/* the following macros come from Python: Modules/signalmodule.c */ +#if defined(PYOS_OS2) && !defined(PYCC_GCC) +#define NSIG 12 +#endif +#ifndef NSIG +# if defined(_NSIG) +# define NSIG _NSIG /* For BSD/SysV */ +# elif defined(_SIGMAX) +# define NSIG (_SIGMAX + 1) /* For QNX */ +# elif defined(SIGMAX) +# define NSIG (SIGMAX + 1) /* For djgpp */ +# else +# define NSIG 64 /* Use a reasonable default value */ +# endif +#endif + +#endif /* FAULTHANDLER_USER */ + + +static fault_handler_t faulthandler_handlers[] = { +#ifdef SIGBUS + {SIGBUS, 0, "Bus error", }, +#endif +#ifdef SIGILL + {SIGILL, 0, "Illegal instruction", }, +#endif + {SIGFPE, 0, "Floating point exception", }, + /* define SIGSEGV at the end to make it the default choice if searching the + handler fails in faulthandler_fatal_error() */ + {SIGSEGV, 0, "Segmentation fault", } +}; +static const unsigned char faulthandler_nsignals = \ + sizeof(faulthandler_handlers) / sizeof(faulthandler_handlers[0]); + +#ifdef HAVE_SIGALTSTACK +static stack_t stack; +#endif + + +/* Get the file descriptor of a file by calling its fileno() method and then + call its flush() method. + + If file is NULL or Py_None, use sys.stderr as the new file. + + On success, return the new file and write the file descriptor into *p_fd. + On error, return NULL. */ + +static PyObject* +faulthandler_get_fileno(PyObject *file, int *p_fd) +{ + PyObject *result; + long fd_long; + int fd; + + if (file == NULL || file == Py_None) { + file = PySys_GetObject("stderr"); + if (file == NULL) { + PyErr_SetString(PyExc_RuntimeError, "unable to get sys.stderr"); + return NULL; + } + } + + result = PyObject_CallMethod(file, "fileno", ""); + if (result == NULL) + return NULL; + + fd = -1; + if (PyLong_Check(result)) { + fd_long = PyLong_AsLong(result); + if (0 <= fd_long && fd_long < INT_MAX) + fd = (int)fd_long; + } + Py_DECREF(result); + + if (fd == -1) { + PyErr_SetString(PyExc_RuntimeError, + "file.fileno() is not a valid file descriptor"); + return NULL; + } + + result = PyObject_CallMethod(file, "flush", ""); + if (result != NULL) + Py_DECREF(result); + else { + /* ignore flush() error */ + PyErr_Clear(); + } + *p_fd = fd; + return file; +} + +static PyObject* +faulthandler_dump_traceback_py(PyObject *self, + PyObject *args, PyObject *kwargs) +{ + static char *kwlist[] = {"file", "all_threads", NULL}; + PyObject *file = NULL; + int all_threads = 0; + PyThreadState *tstate; + const char *errmsg; + int fd; + + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|Oi:dump_traceback", kwlist, + &file, &all_threads)) + return NULL; + + file = faulthandler_get_fileno(file, &fd); + if (file == NULL) + return NULL; + + /* The caller holds the GIL and so PyThreadState_Get() can be used */ + tstate = PyThreadState_Get(); + if (tstate == NULL) { + PyErr_SetString(PyExc_RuntimeError, + "unable to get the current thread state"); + return NULL; + } + + if (all_threads) { + errmsg = _Py_DumpTracebackThreads(fd, tstate->interp, tstate); + if (errmsg != NULL) { + PyErr_SetString(PyExc_RuntimeError, errmsg); + return NULL; + } + } + else { + _Py_DumpTraceback(fd, tstate); + } + Py_RETURN_NONE; +} + + +/* Handler of SIGSEGV, SIGFPE, SIGBUS and SIGILL signals. + + Display the current Python traceback, restore the previous handler and call + the previous handler. + + On Windows, don't call explictly the previous handler, because Windows + signal handler would not be called (for an unknown reason). The execution of + the program continues at faulthandler_fatal_error() exit, but the same + instruction will raise the same fault (signal), and so the previous handler + will be called. + + This function is signal safe and should only call signal safe functions. */ + +static void +faulthandler_fatal_error( + int signum +#ifdef HAVE_SIGACTION + , siginfo_t *siginfo, void *ucontext +#endif +) +{ + const int fd = fatal_error.fd; + unsigned int i; + fault_handler_t *handler = NULL; + PyThreadState *tstate; + + if (!fatal_error.enabled) + return; + + for (i=0; i < faulthandler_nsignals; i++) { + handler = &faulthandler_handlers[i]; + if (handler->signum == signum) + break; + } + if (handler == NULL) { + /* faulthandler_nsignals == 0 (unlikely) */ + return; + } + + /* restore the previous handler */ +#ifdef HAVE_SIGACTION + (void)sigaction(handler->signum, &handler->previous, NULL); +#else + (void)signal(handler->signum, handler->previous); +#endif + handler->enabled = 0; + + PUTS(fd, "Fatal Python error: "); + PUTS(fd, handler->name); + PUTS(fd, "\n\n"); + + /* SIGSEGV, SIGFPE, SIGBUS and SIGILL are synchronous signals and so are + delivered to the thread that caused the fault. Get the Python thread + state of the current thread. + + PyThreadState_Get() doesn't give the state of the thread that caused the + fault if the thread released the GIL, and so this function cannot be + used. Read the thread local storage (TLS) instead: call + PyGILState_GetThisThreadState(). */ + tstate = PyGILState_GetThisThreadState(); + if (tstate == NULL) + return; + + if (fatal_error.all_threads) + _Py_DumpTracebackThreads(fd, tstate->interp, tstate); + else + _Py_DumpTraceback(fd, tstate); + +#ifndef MS_WINDOWS + /* call the previous signal handler: it is called if we use sigaction() + thanks to SA_NODEFER flag, otherwise it is deferred */ + raise(signum); +#else + /* on Windows, don't call explictly the previous handler, because Windows + signal handler would not be called */ +#endif +} + +/* Install handler for fatal signals (SIGSEGV, SIGFPE, ...). */ + +static PyObject* +faulthandler_enable(PyObject *self, PyObject *args, PyObject *kwargs) +{ + static char *kwlist[] = {"file", "all_threads", NULL}; + PyObject *file = NULL; + int all_threads = 0; + unsigned int i; + fault_handler_t *handler; +#ifdef HAVE_SIGACTION + struct sigaction action; +#endif + int err; + int fd; + + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "|Oi:enable", kwlist, &file, &all_threads)) + return NULL; + + file = faulthandler_get_fileno(file, &fd); + if (file == NULL) + return NULL; + + Py_XDECREF(fatal_error.file); + Py_INCREF(file); + fatal_error.file = file; + fatal_error.fd = fd; + fatal_error.all_threads = all_threads; + + if (!fatal_error.enabled) { + fatal_error.enabled = 1; + + for (i=0; i < faulthandler_nsignals; i++) { + handler = &faulthandler_handlers[i]; +#ifdef HAVE_SIGACTION + action.sa_sigaction = faulthandler_fatal_error; + sigemptyset(&action.sa_mask); + /* Do not prevent the signal from being received from within + its own signal handler */ + action.sa_flags = SA_NODEFER; +#ifdef HAVE_SIGALTSTACK + if (stack.ss_sp != NULL) { + /* Call the signal handler on an alternate signal stack + provided by sigaltstack() */ + action.sa_flags |= SA_ONSTACK; + } +#endif + err = sigaction(handler->signum, &action, &handler->previous); +#else + handler->previous = signal(handler->signum, + faulthandler_fatal_error); + err = (handler->previous == SIG_ERR); +#endif + if (err) { + PyErr_SetFromErrno(PyExc_RuntimeError); + return NULL; + } + handler->enabled = 1; + } + } + Py_RETURN_NONE; +} + +static void +faulthandler_disable(void) +{ + unsigned int i; + fault_handler_t *handler; + + if (fatal_error.enabled) { + fatal_error.enabled = 0; + for (i=0; i < faulthandler_nsignals; i++) { + handler = &faulthandler_handlers[i]; + if (!handler->enabled) + continue; +#ifdef HAVE_SIGACTION + (void)sigaction(handler->signum, &handler->previous, NULL); +#else + (void)signal(handler->signum, handler->previous); +#endif + handler->enabled = 0; + } + } + + Py_CLEAR(fatal_error.file); +} + +static PyObject* +faulthandler_disable_py(PyObject *self) +{ + if (!fatal_error.enabled) { + Py_INCREF(Py_False); + return Py_False; + } + faulthandler_disable(); + Py_INCREF(Py_True); + return Py_True; +} + +static PyObject* +faulthandler_is_enabled(PyObject *self) +{ + return PyBool_FromLong(fatal_error.enabled); +} + +#ifdef FAULTHANDLER_LATER + +static void +faulthandler_thread(void *unused) +{ + PyLockStatus st; + const char* errmsg; + PyThreadState *current; + int ok; + + do { + st = PyThread_acquire_lock_timed(thread.cancel_event, + thread.timeout_ms, 0); + if (st == PY_LOCK_ACQUIRED) { + /* Cancelled by user */ + break; + } + /* Timeout => dump traceback */ + assert(st == PY_LOCK_FAILURE); + + /* get the thread holding the GIL, NULL if no thread hold the GIL */ + current = _Py_atomic_load_relaxed(&_PyThreadState_Current); + + errmsg = _Py_DumpTracebackThreads(thread.fd, thread.interp, current); + ok = (errmsg == NULL); + + if (thread.exit) + _exit(1); + } while (ok && thread.repeat); + + /* The only way out */ + thread.running = 0; + PyThread_release_lock(thread.join_event); + PyThread_release_lock(thread.cancel_event); +} + +static void +faulthandler_cancel_dump_traceback_later(void) +{ + if (thread.running) { + /* Notify cancellation */ + PyThread_release_lock(thread.cancel_event); + /* Wait for thread to join */ + PyThread_acquire_lock(thread.join_event, 1); + assert(thread.running == 0); + PyThread_release_lock(thread.join_event); + } + Py_CLEAR(thread.file); +} + +static PyObject* +faulthandler_dump_traceback_later(PyObject *self, + PyObject *args, PyObject *kwargs) +{ + static char *kwlist[] = {"timeout", "repeat", "file", "exit", NULL}; + double timeout; + PY_TIMEOUT_T timeout_ms; + int repeat = 0; + PyObject *file = NULL; + int fd; + int exit = 0; + + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "d|iOi:dump_tracebacks_later", kwlist, + &timeout, &repeat, &file, &exit)) + return NULL; + timeout *= 1e6; + if (timeout >= (double) PY_TIMEOUT_MAX) { + PyErr_SetString(PyExc_OverflowError, "timeout value is too large"); + return NULL; + } + timeout_ms = (PY_TIMEOUT_T)timeout; + if (timeout_ms <= 0) { + PyErr_SetString(PyExc_ValueError, "timeout must be greater than 0"); + return NULL; + } + + file = faulthandler_get_fileno(file, &fd); + if (file == NULL) + return NULL; + + /* Cancel previous thread, if running */ + faulthandler_cancel_dump_traceback_later(); + + Py_XDECREF(thread.file); + Py_INCREF(file); + thread.file = file; + thread.fd = fd; + thread.timeout_ms = timeout_ms; + thread.repeat = repeat; + thread.interp = PyThreadState_Get()->interp; + thread.exit = exit; + + /* Arm these locks to serve as events when released */ + PyThread_acquire_lock(thread.join_event, 1); + PyThread_acquire_lock(thread.cancel_event, 1); + + thread.running = 1; + if (PyThread_start_new_thread(faulthandler_thread, NULL) == -1) { + thread.running = 0; + Py_CLEAR(thread.file); + PyErr_SetString(PyExc_RuntimeError, + "unable to start watchdog thread"); + return NULL; + } + + Py_RETURN_NONE; +} + +static PyObject* +faulthandler_cancel_dump_traceback_later_py(PyObject *self) +{ + faulthandler_cancel_dump_traceback_later(); + Py_RETURN_NONE; +} +#endif /* FAULTHANDLER_LATER */ + +#ifdef FAULTHANDLER_USER +/* Handler of user signals (e.g. SIGUSR1). + + Dump the traceback of the current thread, or of all threads if + thread.all_threads is true. + + This function is signal safe and should only call signal safe functions. */ + +static void +faulthandler_user(int signum) +{ + user_signal_t *user; + PyThreadState *tstate; + + user = &user_signals[signum]; + if (!user->enabled) + return; + + /* PyThreadState_Get() doesn't give the state of the current thread if + the thread doesn't hold the GIL. Read the thread local storage (TLS) + instead: call PyGILState_GetThisThreadState(). */ + tstate = PyGILState_GetThisThreadState(); + if (tstate == NULL) { + /* unable to get the current thread, do nothing */ + return; + } + + if (user->all_threads) + _Py_DumpTracebackThreads(user->fd, tstate->interp, tstate); + else + _Py_DumpTraceback(user->fd, tstate); +} + +static PyObject* +faulthandler_register(PyObject *self, + PyObject *args, PyObject *kwargs) +{ + static char *kwlist[] = {"signum", "file", "all_threads", NULL}; + int signum; + PyObject *file = NULL; + int all_threads = 0; + int fd; + unsigned int i; + user_signal_t *user; + _Py_sighandler_t previous; +#ifdef HAVE_SIGACTION + struct sigaction action; +#endif + int err; + + if (!PyArg_ParseTupleAndKeywords(args, kwargs, + "i|Oi:register", kwlist, + &signum, &file, &all_threads)) + return NULL; + + if (signum < 1 || NSIG <= signum) { + PyErr_SetString(PyExc_ValueError, "signal number out of range"); + return NULL; + } + + for (i=0; i < faulthandler_nsignals; i++) { + if (faulthandler_handlers[i].signum == signum) { + PyErr_Format(PyExc_RuntimeError, + "signal %i cannot be registered by register(), " + "use enable() instead", + signum); + return NULL; + } + } + + file = faulthandler_get_fileno(file, &fd); + if (file == NULL) + return NULL; + + if (user_signals == NULL) { + user_signals = calloc(NSIG, sizeof(user_signal_t)); + if (user_signals == NULL) + return PyErr_NoMemory(); + } + user = &user_signals[signum]; + + if (!user->enabled) { +#ifdef HAVE_SIGACTION + action.sa_handler = faulthandler_user; + sigemptyset(&action.sa_mask); + /* if the signal is received while the kernel is executing a system + call, try to restart the system call instead of interrupting it and + return EINTR */ + action.sa_flags = SA_RESTART; +#ifdef HAVE_SIGALTSTACK + if (stack.ss_sp != NULL) { + /* Call the signal handler on an alternate signal stack + provided by sigaltstack() */ + action.sa_flags |= SA_ONSTACK; + } +#endif + err = sigaction(signum, &action, &previous); +#else + previous = signal(signum, faulthandler_user); + err = (previous == SIG_ERR); +#endif + if (err) { + PyErr_SetFromErrno(PyExc_OSError); + return NULL; + } + } + + Py_XDECREF(user->file); + Py_INCREF(file); + user->file = file; + user->fd = fd; + user->all_threads = all_threads; + user->previous = previous; + user->enabled = 1; + + Py_RETURN_NONE; +} + +static int +faulthandler_unregister(user_signal_t *user, int signum) +{ + if (user->enabled) + return 0; + user->enabled = 0; +#ifdef HAVE_SIGACTION + (void)sigaction(signum, &user->previous, NULL); +#else + (void)signal(signum, user->previous); +#endif + Py_CLEAR(user->file); + user->fd = -1; + return 1; +} + +static PyObject* +faulthandler_unregister_py(PyObject *self, PyObject *args) +{ + int signum; + user_signal_t *user; + int change; + + if (!PyArg_ParseTuple(args, "i:unregister", &signum)) + return NULL; + + if (signum < 1 || NSIG <= signum) { + PyErr_SetString(PyExc_ValueError, "signal number out of range"); + return NULL; + } + + user = &user_signals[signum]; + change = faulthandler_unregister(user, signum); + return PyBool_FromLong(change); +} +#endif /* FAULTHANDLER_USER */ + + +static PyObject * +faulthandler_read_null(PyObject *self, PyObject *args) +{ + int *x = NULL, y; + int release_gil = 0; + if (!PyArg_ParseTuple(args, "|i:_read_null", &release_gil)) + return NULL; + if (release_gil) { + Py_BEGIN_ALLOW_THREADS + y = *x; + Py_END_ALLOW_THREADS + } else + y = *x; + return PyLong_FromLong(y); + +} + +static PyObject * +faulthandler_sigsegv(PyObject *self, PyObject *args) +{ +#if defined(MS_WINDOWS) + /* faulthandler_fatal_error() restores the previous signal handler and then + gives back the execution flow to the program. In a normal case, the + SIGSEGV was raised by the kernel because of a fault, and so if the + program retries to execute the same instruction, the fault will be + raised again. + + Here the fault is simulated by a fake SIGSEGV signal raised by the + application. We have to raise SIGSEGV at lease twice: once for + faulthandler_fatal_error(), and one more time for the previous signal + handler. */ + while(1) + raise(SIGSEGV); +#else + raise(SIGSEGV); +#endif + Py_RETURN_NONE; +} + +static PyObject * +faulthandler_sigfpe(PyObject *self, PyObject *args) +{ + /* Do an integer division by zero: raise a SIGFPE on Intel CPU, but not on + PowerPC. Use volatile to disable compile-time optimizations. */ + volatile int x = 1, y = 0, z; + z = x / y; + /* if the division by zero didn't raise a SIGFPE, raise it manually */ + raise(SIGFPE); + Py_RETURN_NONE; +} + +#ifdef SIGBUS +static PyObject * +faulthandler_sigbus(PyObject *self, PyObject *args) +{ + raise(SIGBUS); + Py_RETURN_NONE; +} +#endif + +#ifdef SIGILL +static PyObject * +faulthandler_sigill(PyObject *self, PyObject *args) +{ +#if defined(MS_WINDOWS) + /* see faulthandler_sigsegv() for the explanation about while(1) */ + while(1) + raise(SIGILL); +#else + raise(SIGILL); +#endif + Py_RETURN_NONE; +} +#endif + +static PyObject * +faulthandler_fatal_error_py(PyObject *self, PyObject *args) +{ + char *message; + if (!PyArg_ParseTuple(args, "y:fatal_error", &message)) + return NULL; + Py_FatalError(message); + Py_RETURN_NONE; +} + +#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION) +static PyObject * +faulthandler_stack_overflow(PyObject *self) +{ + /* allocate 4096 bytes on the stack at each call */ + unsigned char buffer[4096]; + buffer[0] = 1; + buffer[4095] = 2; + faulthandler_stack_overflow(self); + return PyLong_FromLong(buffer[0] + buffer[4095]); +} +#endif + + +static int +faulthandler_traverse(PyObject *module, visitproc visit, void *arg) +{ +#ifdef FAULTHANDLER_USER + unsigned int index; +#endif + +#ifdef FAULTHANDLER_LATER + Py_VISIT(thread.file); +#endif +#ifdef FAULTHANDLER_USER + if (user_signals != NULL) { + for (index=0; index < NSIG; index++) + Py_VISIT(user_signals[index].file); + } +#endif + Py_VISIT(fatal_error.file); + return 0; +} + +PyDoc_STRVAR(module_doc, +"faulthandler module."); + +static PyMethodDef module_methods[] = { + {"enable", + (PyCFunction)faulthandler_enable, METH_VARARGS|METH_KEYWORDS, + PyDoc_STR("enable(file=sys.stderr, all_threads=False): " + "enable the fault handler")}, + {"disable", (PyCFunction)faulthandler_disable_py, METH_NOARGS, + PyDoc_STR("disable(): disable the fault handler")}, + {"is_enabled", (PyCFunction)faulthandler_is_enabled, METH_NOARGS, + PyDoc_STR("is_enabled()->bool: check if the handler is enabled")}, + {"dump_traceback", + (PyCFunction)faulthandler_dump_traceback_py, METH_VARARGS|METH_KEYWORDS, + PyDoc_STR("dump_traceback(file=sys.stderr, all_threads=False): " + "dump the traceback of the current thread, or of all threads " + "if all_threads is True, into file")}, +#ifdef FAULTHANDLER_LATER + {"dump_tracebacks_later", + (PyCFunction)faulthandler_dump_traceback_later, METH_VARARGS|METH_KEYWORDS, + PyDoc_STR("dump_tracebacks_later(timeout, repeat=False, file=sys.stderr):\n" + "dump the traceback of all threads in timeout seconds,\n" + "or each timeout seconds if repeat is True.")}, + {"cancel_dump_tracebacks_later", + (PyCFunction)faulthandler_cancel_dump_traceback_later_py, METH_NOARGS, + PyDoc_STR("cancel_dump_tracebacks_later():\ncancel the previous call " + "to dump_tracebacks_later().")}, +#endif + +#ifdef FAULTHANDLER_USER + {"register", + (PyCFunction)faulthandler_register, METH_VARARGS|METH_KEYWORDS, + PyDoc_STR("register(signum, file=sys.stderr, all_threads=False): " + "register an handler for the signal 'signum': dump the " + "traceback of the current thread, or of all threads if " + "all_threads is True, into file")}, + {"unregister", + faulthandler_unregister_py, METH_VARARGS|METH_KEYWORDS, + PyDoc_STR("unregister(signum): unregister the handler of the signal " + "'signum' registered by register()")}, +#endif + + {"_read_null", faulthandler_read_null, METH_VARARGS, + PyDoc_STR("_read_null(release_gil=False): read from NULL, raise " + "a SIGSEGV or SIGBUS signal depending on the platform")}, + {"_sigsegv", faulthandler_sigsegv, METH_VARARGS, + PyDoc_STR("_sigsegv(): raise a SIGSEGV signal")}, + {"_sigfpe", (PyCFunction)faulthandler_sigfpe, METH_NOARGS, + PyDoc_STR("_sigfpe(): raise a SIGFPE signal")}, +#ifdef SIGBUS + {"_sigbus", (PyCFunction)faulthandler_sigbus, METH_NOARGS, + PyDoc_STR("_sigbus(): raise a SIGBUS signal")}, +#endif +#ifdef SIGILL + {"_sigill", (PyCFunction)faulthandler_sigill, METH_NOARGS, + PyDoc_STR("_sigill(): raise a SIGILL signal")}, +#endif + {"_fatal_error", faulthandler_fatal_error_py, METH_VARARGS, + PyDoc_STR("_fatal_error(message): call Py_FatalError(message)")}, +#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION) + {"_stack_overflow", (PyCFunction)faulthandler_stack_overflow, METH_NOARGS, + PyDoc_STR("_stack_overflow(): recursive call to raise a stack overflow")}, +#endif + {NULL, NULL} /* terminator */ +}; + +static struct PyModuleDef module_def = { + PyModuleDef_HEAD_INIT, + "faulthandler", + module_doc, + 0, /* non negative size to be able to unload the module */ + module_methods, + NULL, + faulthandler_traverse, + NULL, + NULL +}; + +PyMODINIT_FUNC +PyInit_faulthandler(void) +{ + return PyModule_Create(&module_def); +} + +/* Call faulthandler.enable() if PYTHONFAULTHANDLER environment variable is + defined, or if sys._xoptions has a 'faulthandler' key. */ + +static int +faulthandler_env_options(void) +{ + PyObject *xoptions, *key, *module, *res; + int enable; + + if (!Py_GETENV("PYTHONFAULTHANDLER")) { + xoptions = PySys_GetXOptions(); + if (xoptions == NULL) + return -1; + + key = PyUnicode_FromString("faulthandler"); + if (key == NULL) + return -1; + + enable = PyDict_Contains(xoptions, key); + Py_DECREF(key); + if (!enable) + return 0; + } + else + enable = 1; + + module = PyImport_ImportModule("faulthandler"); + if (module == NULL) { + return -1; + } + res = PyObject_CallMethod(module, "enable", ""); + Py_DECREF(module); + if (res == NULL) + return -1; + Py_DECREF(res); + return 0; +} + +int _PyFaulthandler_Init(void) +{ +#ifdef HAVE_SIGALTSTACK + int err; + + /* Try to allocate an alternate stack for faulthandler() signal handler to + * be able to allocate memory on the stack, even on a stack overflow. If it + * fails, ignore the error. */ + stack.ss_flags = 0; + stack.ss_size = SIGSTKSZ; + stack.ss_sp = PyMem_Malloc(stack.ss_size); + if (stack.ss_sp != NULL) { + err = sigaltstack(&stack, NULL); + if (err) { + PyMem_Free(stack.ss_sp); + stack.ss_sp = NULL; + } + } +#endif +#ifdef FAULTHANDLER_LATER + thread.running = 0; + thread.file = NULL; + thread.cancel_event = PyThread_allocate_lock(); + thread.join_event = PyThread_allocate_lock(); + if (!thread.cancel_event || !thread.join_event) { + PyErr_SetString(PyExc_RuntimeError, + "could not allocate locks for faulthandler"); + return -1; + } +#endif + + return faulthandler_env_options(); +} + +void _PyFaulthandler_Fini(void) +{ +#ifdef FAULTHANDLER_USER + unsigned int i; +#endif + +#ifdef FAULTHANDLER_LATER + /* later */ + faulthandler_cancel_dump_traceback_later(); + if (thread.cancel_event) { + PyThread_free_lock(thread.cancel_event); + thread.cancel_event = NULL; + } + if (thread.join_event) { + PyThread_free_lock(thread.join_event); + thread.join_event = NULL; + } +#endif + +#ifdef FAULTHANDLER_USER + /* user */ + if (user_signals != NULL) { + for (i=0; i < NSIG; i++) + faulthandler_unregister(&user_signals[i], i+1); + free(user_signals); + user_signals = NULL; + } +#endif + + /* fatal */ + faulthandler_disable(); +#ifdef HAVE_SIGALTSTACK + if (stack.ss_sp != NULL) { + PyMem_Free(stack.ss_sp); + stack.ss_sp = NULL; + } +#endif +} diff --git a/Modules/main.c b/Modules/main.c --- a/Modules/main.c +++ b/Modules/main.c @@ -100,6 +100,7 @@ " The default module search path uses %s.\n" "PYTHONCASEOK : ignore case in 'import' statements (Windows).\n" "PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n" +"PYTHONFAULTHANDLER: dump the Python traceback on fatal errors.\n" ; static int diff --git a/PC/config.c b/PC/config.c --- a/PC/config.c +++ b/PC/config.c @@ -12,6 +12,7 @@ extern PyObject* PyInit_binascii(void); extern PyObject* PyInit_cmath(void); extern PyObject* PyInit_errno(void); +extern PyObject* PyInit_faulthandler(void); extern PyObject* PyInit_gc(void); extern PyObject* PyInit_math(void); extern PyObject* PyInit__md5(void); @@ -82,6 +83,7 @@ {"binascii", PyInit_binascii}, {"cmath", PyInit_cmath}, {"errno", PyInit_errno}, + {"faulthandler", PyInit_faulthandler}, {"gc", PyInit_gc}, {"math", PyInit_math}, {"nt", PyInit_nt}, /* Use the NT os functions, not posix */ diff --git a/PCbuild/pythoncore.vcproj b/PCbuild/pythoncore.vcproj --- a/PCbuild/pythoncore.vcproj +++ b/PCbuild/pythoncore.vcproj @@ -1087,6 +1087,10 @@ > + + diff --git a/Python/pythonrun.c b/Python/pythonrun.c --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -70,6 +70,8 @@ extern void _PyUnicode_Fini(void); extern int _PyLong_Init(void); extern void PyLong_Fini(void); +extern int _PyFaulthandler_Init(void); +extern void _PyFaulthandler_Fini(void); #ifdef WITH_THREAD extern void _PyGILState_Init(PyInterpreterState *, PyThreadState *); @@ -286,6 +288,10 @@ _PyImportHooks_Init(); + /* initialize the faulthandler module */ + if (_PyFaulthandler_Init()) + Py_FatalError("Py_Initialize: can't initialize faulthandler"); + /* Initialize _warnings. */ _PyWarnings_Init(); @@ -454,6 +460,9 @@ /* Destroy the database used by _PyImport_{Fixup,Find}Extension */ _PyImport_Fini(); + /* unload faulthandler module */ + _PyFaulthandler_Fini(); + /* Debugging stuff */ #ifdef COUNT_ALLOCS dump_counts(stdout); @@ -2100,11 +2109,23 @@ void Py_FatalError(const char *msg) { + const int fd = fileno(stderr); + PyThreadState *tstate; + fprintf(stderr, "Fatal Python error: %s\n", msg); fflush(stderr); /* it helps in Windows debug build */ if (PyErr_Occurred()) { PyErr_PrintEx(0); } + else { + tstate = _Py_atomic_load_relaxed(&_PyThreadState_Current); + if (tstate != NULL) { + fputc('\n', stderr); + fflush(stderr); + _Py_DumpTraceback(fd, tstate); + } + } + #ifdef MS_WINDOWS { size_t len = strlen(msg); diff --git a/Python/traceback.c b/Python/traceback.c --- a/Python/traceback.c +++ b/Python/traceback.c @@ -13,6 +13,11 @@ #define OFF(x) offsetof(PyTracebackObject, x) +#define PUTS(fd, str) write(fd, str, strlen(str)) +#define MAX_STRING_LENGTH 100 +#define MAX_FRAME_DEPTH 100 +#define MAX_NTHREADS 100 + /* Method from Parser/tokenizer.c */ extern char * PyTokenizer_FindEncoding(int); @@ -402,3 +407,233 @@ err = tb_printinternal((PyTracebackObject *)v, f, limit); return err; } + +/* Reverse a string. For example, "abcd" becomes "dcba". + + This function is signal safe. */ + +static void +reverse_string(char *text, const size_t len) +{ + char tmp; + size_t i, j; + if (len == 0) + return; + for (i=0, j=len-1; i < j; i++, j--) { + tmp = text[i]; + text[i] = text[j]; + text[j] = tmp; + } +} + +/* Format an integer in range [0; 999999] to decimal, + and write it into the file fd. + + This function is signal safe. */ + +static void +dump_decimal(int fd, int value) +{ + char buffer[7]; + int len; + if (value < 0 || 999999 < value) + return; + len = 0; + do { + buffer[len] = '0' + (value % 10); + value /= 10; + len++; + } while (value); + reverse_string(buffer, len); + write(fd, buffer, len); +} + +/* Format an integer in range [0; 0xffffffff] to hexdecimal of 'width' digits, + and write it into the file fd. + + This function is signal safe. */ + +static void +dump_hexadecimal(int width, unsigned long value, int fd) +{ + const char *hexdigits = "0123456789abcdef"; + int len; + char buffer[sizeof(unsigned long) * 2 + 1]; + len = 0; + do { + buffer[len] = hexdigits[value & 15]; + value >>= 4; + len++; + } while (len < width || value); + reverse_string(buffer, len); + write(fd, buffer, len); +} + +/* Write an unicode object into the file fd using ascii+backslashreplace. + + This function is signal safe. */ + +static void +dump_ascii(int fd, PyObject *text) +{ + Py_ssize_t i, size; + int truncated; + Py_UNICODE *u; + char c; + + size = PyUnicode_GET_SIZE(text); + u = PyUnicode_AS_UNICODE(text); + + if (MAX_STRING_LENGTH < size) { + size = MAX_STRING_LENGTH; + truncated = 1; + } + else + truncated = 0; + + for (i=0; i < size; i++, u++) { + if (*u < 128) { + c = (char)*u; + write(fd, &c, 1); + } + else if (*u < 256) { + PUTS(fd, "\\x"); + dump_hexadecimal(2, *u, fd); + } + else +#ifdef Py_UNICODE_WIDE + if (*u < 65536) +#endif + { + PUTS(fd, "\\u"); + dump_hexadecimal(4, *u, fd); +#ifdef Py_UNICODE_WIDE + } + else { + PUTS(fd, "\\U"); + dump_hexadecimal(8, *u, fd); +#endif + } + } + if (truncated) + PUTS(fd, "..."); +} + +/* Write a frame into the file fd: "File "xxx", line xxx in xxx". + + This function is signal safe. */ + +static void +dump_frame(int fd, PyFrameObject *frame) +{ + PyCodeObject *code; + int lineno; + + code = frame->f_code; + PUTS(fd, " File "); + if (code != NULL && code->co_filename != NULL + && PyUnicode_Check(code->co_filename)) + { + write(fd, "\"", 1); + dump_ascii(fd, code->co_filename); + write(fd, "\"", 1); + } else { + PUTS(fd, "???"); + } + + /* PyFrame_GetLineNumber() was introduced in Python 2.7.0 and 3.2.0 */ + lineno = PyCode_Addr2Line(frame->f_code, frame->f_lasti); + PUTS(fd, ", line "); + dump_decimal(fd, lineno); + PUTS(fd, " in "); + + if (code != NULL && code->co_name != NULL + && PyUnicode_Check(code->co_name)) + dump_ascii(fd, code->co_name); + else + PUTS(fd, "???"); + + write(fd, "\n", 1); +} + +static int +dump_traceback(int fd, PyThreadState *tstate, int write_header) +{ + PyFrameObject *frame; + unsigned int depth; + + frame = _PyThreadState_GetFrame(tstate); + if (frame == NULL) + return -1; + + if (write_header) + PUTS(fd, "Traceback (most recent call first):\n"); + depth = 0; + while (frame != NULL) { + if (MAX_FRAME_DEPTH <= depth) { + PUTS(fd, " ...\n"); + break; + } + if (!PyFrame_Check(frame)) + break; + dump_frame(fd, frame); + frame = frame->f_back; + depth++; + } + return 0; +} + +int +_Py_DumpTraceback(int fd, PyThreadState *tstate) +{ + return dump_traceback(fd, tstate, 1); +} + +/* Write the thread identifier into the file 'fd': "Current thread 0xHHHH:\" if + is_current is true, "Thread 0xHHHH:\n" otherwise. + + This function is signal safe. */ + +static void +write_thread_id(int fd, PyThreadState *tstate, int is_current) +{ + if (is_current) + PUTS(fd, "Current thread 0x"); + else + PUTS(fd, "Thread 0x"); + dump_hexadecimal(sizeof(long)*2, (unsigned long)tstate->thread_id, fd); + PUTS(fd, ":\n"); +} + +const char* +_Py_DumpTracebackThreads(int fd, PyInterpreterState *interp, + PyThreadState *current_thread) +{ + PyThreadState *tstate; + unsigned int nthreads; + + /* Get the current interpreter from the current thread */ + tstate = PyInterpreterState_ThreadHead(interp); + if (tstate == NULL) + return "unable to get the thread head state"; + + /* Dump the traceback of each thread */ + tstate = PyInterpreterState_ThreadHead(interp); + nthreads = 0; + do + { + if (nthreads != 0) + write(fd, "\n", 1); + if (nthreads >= MAX_NTHREADS) { + PUTS(fd, "...\n"); + break; + } + write_thread_id(fd, tstate, tstate == current_thread); + dump_traceback(fd, tstate, 0); + tstate = PyThreadState_Next(tstate); + nthreads++; + } while (tstate != NULL); + + return NULL; +} + diff --git a/configure b/configure --- a/configure +++ b/configure @@ -9261,7 +9261,7 @@ select sem_open sem_timedwait sem_getvalue sem_unlink sendfile setegid seteuid \ setgid sethostname \ setlocale setregid setreuid setresuid setresgid setsid setpgid setpgrp setpriority setuid setvbuf \ - sigaction siginterrupt sigrelse snprintf strftime strlcpy symlinkat sync \ + sigaction sigaltstack siginterrupt sigrelse snprintf strftime strlcpy symlinkat sync \ sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \ truncate uname unlinkat unsetenv utimensat utimes waitid waitpid wait3 wait4 \ wcscoll wcsftime wcsxfrm writev _getpty diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -2507,7 +2507,7 @@ select sem_open sem_timedwait sem_getvalue sem_unlink sendfile setegid seteuid \ setgid sethostname \ setlocale setregid setreuid setresuid setresgid setsid setpgid setpgrp setpriority setuid setvbuf \ - sigaction siginterrupt sigrelse snprintf strftime strlcpy symlinkat sync \ + sigaction sigaltstack siginterrupt sigrelse snprintf strftime strlcpy symlinkat sync \ sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \ truncate uname unlinkat unsetenv utimensat utimes waitid waitpid wait3 wait4 \ wcscoll wcsftime wcsxfrm writev _getpty) diff --git a/pyconfig.h.in b/pyconfig.h.in --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -710,6 +710,9 @@ /* Define to 1 if you have the `sigaction' function. */ #undef HAVE_SIGACTION +/* Define to 1 if you have the `sigaltstack' function. */ +#undef HAVE_SIGALTSTACK + /* Define to 1 if you have the `siginterrupt' function. */ #undef HAVE_SIGINTERRUPT -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 01:34:45 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 31 Mar 2011 01:34:45 +0200 Subject: [Python-checkins] cpython: Issue #11393: reenable all tests in regrtest.py (wooops, sorry Antoine) Message-ID: http://hg.python.org/cpython/rev/df240014e72f changeset: 69071:df240014e72f user: Victor Stinner date: Thu Mar 31 01:34:22 2011 +0200 summary: Issue #11393: reenable all tests in regrtest.py (wooops, sorry Antoine) files: Lib/test/regrtest.py | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -491,7 +491,6 @@ next_single_test = alltests[alltests.index(selected[0])+1] except IndexError: next_single_test = None - selected = ['test_faulthandler'] # Remove all the tests that precede start if it's set. if start: try: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 02:07:43 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 31 Mar 2011 02:07:43 +0200 Subject: [Python-checkins] cpython: Issue #11393: Disable test_stack_overflow of test_faulthandler Message-ID: http://hg.python.org/cpython/rev/25a2aeecb34b changeset: 69072:25a2aeecb34b user: Victor Stinner date: Thu Mar 31 02:05:54 2011 +0200 summary: Issue #11393: Disable test_stack_overflow of test_faulthandler files: Lib/test/test_faulthandler.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py --- a/Lib/test/test_faulthandler.py +++ b/Lib/test/test_faulthandler.py @@ -153,6 +153,7 @@ 2, 'xyz') + @unittest.skipIf(True, 'test disabled, see #11393') @unittest.skipIf(not hasattr(faulthandler, '_stack_overflow'), 'need faulthandler._stack_overflow()') def test_stack_overflow(self): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 02:48:01 2011 From: python-checkins at python.org (ned.deily) Date: Thu, 31 Mar 2011 02:48:01 +0200 Subject: [Python-checkins] devguide: Correct tracker user name: is bquinlan. Message-ID: http://hg.python.org/devguide/rev/ef80edc6c1ac changeset: 408:ef80edc6c1ac user: Ned Deily date: Wed Mar 30 17:47:41 2011 -0700 summary: Correct tracker user name: is bquinlan. files: experts.rst | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/experts.rst b/experts.rst --- a/experts.rst +++ b/experts.rst @@ -77,7 +77,7 @@ collections.abc rhettinger, stutzbach colorsys compileall -concurrent.futures brian.quinlan +concurrent.futures bquinlan configparser lukasz.langa contextlib ncoghlan copy alexandre.vassalotti -- Repository URL: http://hg.python.org/devguide From python-checkins at python.org Thu Mar 31 03:22:37 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 31 Mar 2011 03:22:37 +0200 Subject: [Python-checkins] cpython: Issue #11557: disable test_logging.test_no_kwargs (fail on most buildbots) Message-ID: http://hg.python.org/cpython/rev/024967cdc2f0 changeset: 69073:024967cdc2f0 user: Victor Stinner date: Thu Mar 31 03:22:15 2011 +0200 summary: Issue #11557: disable test_logging.test_no_kwargs (fail on most buildbots) files: Lib/test/test_logging.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -2406,6 +2406,7 @@ logging.shutdown() super(BasicConfigTest, self).tearDown() + @unittest.skipIf(True, "test disabled, issue #11557") def test_no_kwargs(self): logging.basicConfig() -- Repository URL: http://hg.python.org/cpython From solipsis at pitrou.net Thu Mar 31 04:55:52 2011 From: solipsis at pitrou.net (solipsis at pitrou.net) Date: Thu, 31 Mar 2011 04:55:52 +0200 Subject: [Python-checkins] Daily reference leaks (024967cdc2f0): sum=0 Message-ID: results for 024967cdc2f0 on branch "default" -------------------------------------------- Command line was: ['./python', '-m', 'test.regrtest', '-uall', '-R', '3:3:/home/antoine/cpython/refleaks/reflogCbjcvr', '-x'] From python-checkins at python.org Thu Mar 31 11:34:29 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 31 Mar 2011 11:34:29 +0200 Subject: [Python-checkins] cpython: Issue #11393: limit stack overflow test to 100 MB Message-ID: http://hg.python.org/cpython/rev/e289b64f355d changeset: 69075:e289b64f355d user: Victor Stinner date: Thu Mar 31 11:34:08 2011 +0200 summary: Issue #11393: limit stack overflow test to 100 MB Stop if the stack overflow doesn't occur after allocating 100 MB on the stack. files: Lib/test/test_faulthandler.py | 8 ++- Modules/faulthandler.c | 39 +++++++++++++++++++--- 2 files changed, 38 insertions(+), 9 deletions(-) diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py --- a/Lib/test/test_faulthandler.py +++ b/Lib/test/test_faulthandler.py @@ -69,7 +69,7 @@ return output.splitlines() def check_fatal_error(self, code, line_number, name_regex, - filename=None, all_threads=False): + filename=None, all_threads=False, other_regex=None): """ Check that the fault handler for fatal errors is enabled and check the traceback from the child process output. @@ -90,6 +90,8 @@ lineno=line_number, name=name_regex, header=re.escape(header)) + if other_regex: + regex += '|' + other_regex output = self.get_output(code, False, filename) output = '\n'.join(output) self.assertRegex(output, regex) @@ -153,7 +155,6 @@ 2, 'xyz') - @unittest.skipIf(True, 'test disabled, see #11393') @unittest.skipIf(not hasattr(faulthandler, '_stack_overflow'), 'need faulthandler._stack_overflow()') def test_stack_overflow(self): @@ -163,7 +164,8 @@ faulthandler._stack_overflow() """.strip(), 3, - '(?:Segmentation fault|Bus error)') + '(?:Segmentation fault|Bus error)', + other_regex='unable to raise a stack overflow') def test_gil_released(self): self.check_fatal_error(""" diff --git a/Modules/faulthandler.c b/Modules/faulthandler.c --- a/Modules/faulthandler.c +++ b/Modules/faulthandler.c @@ -16,6 +16,9 @@ # define FAULTHANDLER_USER #endif +/* Allocate at maximum 100 MB of the stack to raise the stack overflow */ +#define STACK_OVERFLOW_MAX_SIZE (100*1024*1024) + #define PUTS(fd, str) write(fd, str, strlen(str)) #ifdef HAVE_SIGACTION @@ -742,15 +745,39 @@ } #if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION) +void* +stack_overflow(void *min_sp, void *max_sp, size_t *depth) +{ + /* allocate 4096 bytes on the stack at each call */ + unsigned char buffer[4096]; + void *sp = &buffer; + *depth += 1; + if (sp < min_sp || max_sp < sp) + return sp; + buffer[0] = 1; + buffer[4095] = 0; + return stack_overflow(min_sp, max_sp, depth); +} + static PyObject * faulthandler_stack_overflow(PyObject *self) { - /* allocate 4096 bytes on the stack at each call */ - unsigned char buffer[4096]; - buffer[0] = 1; - buffer[4095] = 2; - faulthandler_stack_overflow(self); - return PyLong_FromLong(buffer[0] + buffer[4095]); + size_t depth, size; + void *sp = &depth, *stop; + + depth = 0; + stop = stack_overflow(sp - STACK_OVERFLOW_MAX_SIZE, + sp + STACK_OVERFLOW_MAX_SIZE, + &depth); + if (sp < stop) + size = stop - sp; + else + size = sp - stop; + PyErr_Format(PyExc_RuntimeError, + "unable to raise a stack overflow (allocated %zu bytes " + "on the stack, %zu recursive calls)", + size, depth); + return NULL; } #endif -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 11:34:28 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 31 Mar 2011 11:34:28 +0200 Subject: [Python-checkins] cpython: Issue #11393: Fix the documentation (cancel_dump_traceback_later) Message-ID: http://hg.python.org/cpython/rev/a6d2c703586a changeset: 69074:a6d2c703586a user: Victor Stinner date: Thu Mar 31 03:42:34 2011 +0200 summary: Issue #11393: Fix the documentation (cancel_dump_traceback_later) * dump_traceback_later() => dump_tracebacks_later() * cancel_dump_traceback_later() => cancel_dump_tracebacks_later() files: Doc/library/faulthandler.rst | 6 +++--- Modules/faulthandler.c | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Doc/library/faulthandler.rst b/Doc/library/faulthandler.rst --- a/Doc/library/faulthandler.rst +++ b/Doc/library/faulthandler.rst @@ -78,9 +78,9 @@ This function is implemented using a watchdog thread, and therefore is not available if Python is compiled with threads disabled. -.. function:: cancel_dump_traceback_later() +.. function:: cancel_dump_tracebacks_later() - Cancel the last call to :func:`dump_traceback_later`. + Cancel the last call to :func:`dump_tracebacks_later`. Dump the traceback on a user signal @@ -105,7 +105,7 @@ File descriptor issue --------------------- -:func:`enable`, :func:`dump_traceback_later` and :func:`register` keep the +:func:`enable`, :func:`dump_tracebacks_later` and :func:`register` keep the file descriptor of their *file* argument. If the file is closed and its file descriptor is reused by a new file, or if :func:`os.dup2` is used to replace the file descriptor, the traceback will be written into a different file. Call diff --git a/Modules/faulthandler.c b/Modules/faulthandler.c --- a/Modules/faulthandler.c +++ b/Modules/faulthandler.c @@ -420,7 +420,7 @@ } static void -faulthandler_cancel_dump_traceback_later(void) +faulthandler_cancel_dump_tracebacks_later(void) { if (thread.running) { /* Notify cancellation */ @@ -465,7 +465,7 @@ return NULL; /* Cancel previous thread, if running */ - faulthandler_cancel_dump_traceback_later(); + faulthandler_cancel_dump_tracebacks_later(); Py_XDECREF(thread.file); Py_INCREF(file); @@ -493,9 +493,9 @@ } static PyObject* -faulthandler_cancel_dump_traceback_later_py(PyObject *self) +faulthandler_cancel_dump_tracebacks_later_py(PyObject *self) { - faulthandler_cancel_dump_traceback_later(); + faulthandler_cancel_dump_tracebacks_later(); Py_RETURN_NONE; } #endif /* FAULTHANDLER_LATER */ @@ -799,7 +799,7 @@ "dump the traceback of all threads in timeout seconds,\n" "or each timeout seconds if repeat is True.")}, {"cancel_dump_tracebacks_later", - (PyCFunction)faulthandler_cancel_dump_traceback_later_py, METH_NOARGS, + (PyCFunction)faulthandler_cancel_dump_tracebacks_later_py, METH_NOARGS, PyDoc_STR("cancel_dump_tracebacks_later():\ncancel the previous call " "to dump_tracebacks_later().")}, #endif @@ -939,7 +939,7 @@ #ifdef FAULTHANDLER_LATER /* later */ - faulthandler_cancel_dump_traceback_later(); + faulthandler_cancel_dump_tracebacks_later(); if (thread.cancel_event) { PyThread_free_lock(thread.cancel_event); thread.cancel_event = NULL; -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 13:56:55 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 31 Mar 2011 13:56:55 +0200 Subject: [Python-checkins] cpython: Issue #11393: test_faulthandler checks the exitcode after the output Message-ID: http://hg.python.org/cpython/rev/aa2ac1581d23 changeset: 69076:aa2ac1581d23 user: Victor Stinner date: Thu Mar 31 13:29:56 2011 +0200 summary: Issue #11393: test_faulthandler checks the exitcode after the output files: Lib/test/test_faulthandler.py | 30 +++++++++++----------- 1 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py --- a/Lib/test/test_faulthandler.py +++ b/Lib/test/test_faulthandler.py @@ -37,7 +37,7 @@ support.unlink(filename) class FaultHandlerTests(unittest.TestCase): - def get_output(self, code, expect_success, filename=None): + def get_output(self, code, filename=None): """ Run the specified code in Python (in a new child process) and read the output from the standard error or from a file (if filename is set). @@ -53,10 +53,6 @@ process = script_helper.spawn_python('-c', code, **options) stdout, stderr = process.communicate() exitcode = process.wait() - if expect_success: - self.assertEqual(exitcode, 0) - else: - self.assertNotEqual(exitcode, 0) if filename: with open(filename, "rb") as fp: output = fp.read() @@ -66,7 +62,7 @@ output = re.sub('Current thread 0x[0-9a-f]+', 'Current thread XXX', output) - return output.splitlines() + return output.splitlines(), exitcode def check_fatal_error(self, code, line_number, name_regex, filename=None, all_threads=False, other_regex=None): @@ -92,9 +88,10 @@ header=re.escape(header)) if other_regex: regex += '|' + other_regex - output = self.get_output(code, False, filename) + output, exitcode = self.get_output(code, filename) output = '\n'.join(output) self.assertRegex(output, regex) + self.assertNotEqual(exitcode, 0) def test_read_null(self): self.check_fatal_error(""" @@ -206,10 +203,11 @@ faulthandler._read_null() """.strip() not_expected = 'Fatal Python error' - stderr = self.get_output(code, False) + stderr, exitcode = self.get_output(code) stder = '\n'.join(stderr) self.assertTrue(not_expected not in stderr, "%r is present in %r" % (not_expected, stderr)) + self.assertNotEqual(exitcode, 0) def test_is_enabled(self): was_enabled = faulthandler.is_enabled() @@ -258,8 +256,9 @@ ' File "", line 11 in funcA', ' File "", line 13 in ' ] - trace = self.get_output(code, True, filename) + trace, exitcode = self.get_output(code, filename) self.assertEqual(trace, expected) + self.assertEqual(exitcode, 0) def test_dump_traceback(self): self.check_dump_traceback(None) @@ -304,7 +303,7 @@ waiter.join() """.strip() code = code.format(filename=repr(filename)) - output = self.get_output(code, True, filename) + output, exitcode = self.get_output(code, filename) output = '\n'.join(output) if filename: lineno = 8 @@ -324,6 +323,7 @@ """.strip() regex = regex.format(lineno=lineno) self.assertRegex(output, regex) + self.assertEqual(exitcode, 0) def test_dump_traceback_threads(self): self.check_dump_traceback_threads(None) @@ -378,7 +378,7 @@ repeat=repeat, cancel=cancel, ) - trace = self.get_output(code, True, filename) + trace, exitcode = self.get_output(code, filename) trace = '\n'.join(trace) if repeat: @@ -388,6 +388,7 @@ header = 'Thread 0x[0-9a-f]+:\n' regex = expected_traceback(7, 30, header, count=count) self.assertRegex(trace, '^%s$' % regex) + self.assertEqual(exitcode, 0) @unittest.skipIf(not hasattr(faulthandler, 'dump_tracebacks_later'), 'need faulthandler.dump_tracebacks_later()') @@ -443,16 +444,15 @@ has_filename=bool(filename), all_threads=all_threads, ) - trace = self.get_output(code, True, filename) + trace, exitcode = self.get_output(code, filename) trace = '\n'.join(trace) if all_threads: regex = 'Current thread XXX:\n' else: regex = 'Traceback \(most recent call first\):\n' regex = expected_traceback(6, 14, regex) - self.assertTrue(re.match(regex, trace), - "[%s] doesn't match [%s]: use_filename=%s, all_threads=%s" - % (regex, trace, bool(filename), all_threads)) + self.assertRegex(trace, '^%s$' % regex) + self.assertEqual(exitcode, 0) def test_register(self): self.check_register() -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 13:56:56 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 31 Mar 2011 13:56:56 +0200 Subject: [Python-checkins] cpython (3.2): sys.getfilesystemencoding() raises a RuntimeError if initfsencoding() was not Message-ID: http://hg.python.org/cpython/rev/a00b9a5688da changeset: 69077:a00b9a5688da branch: 3.2 parent: 69068:9b12af6e9ea9 user: Victor Stinner date: Thu Mar 31 13:39:03 2011 +0200 summary: sys.getfilesystemencoding() raises a RuntimeError if initfsencoding() was not called yet: detect bootstrap (startup) issues earlier. files: Misc/NEWS | 3 +++ Python/sysmodule.c | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -49,6 +49,9 @@ Library ------- +- sys.getfilesystemencoding() raises a RuntimeError if initfsencoding() was not + called yet: detect bootstrap (startup) issues earlier. + - Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Windows. - Issue #11256: Fix inspect.getcallargs on functions that take only keyword diff --git a/Python/sysmodule.c b/Python/sysmodule.c --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -259,8 +259,9 @@ { if (Py_FileSystemDefaultEncoding) return PyUnicode_FromString(Py_FileSystemDefaultEncoding); - Py_INCREF(Py_None); - return Py_None; + PyErr_SetString(PyExc_RuntimeError, + "filesystem encoding is not initialized"); + return NULL; } PyDoc_STRVAR(getfilesystemencoding_doc, -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 13:56:57 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 31 Mar 2011 13:56:57 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2: sys.getfilesystemencoding() raises a RuntimeError if Message-ID: http://hg.python.org/cpython/rev/92212a7b85a3 changeset: 69078:92212a7b85a3 parent: 69076:aa2ac1581d23 parent: 69077:a00b9a5688da user: Victor Stinner date: Thu Mar 31 13:40:14 2011 +0200 summary: Merge 3.2: sys.getfilesystemencoding() raises a RuntimeError if initfsencoding() was not called yet: detect bootstrap (startup) issues earlier. files: Misc/NEWS | 3 +++ Python/sysmodule.c | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -87,6 +87,9 @@ Library ------- +- sys.getfilesystemencoding() raises a RuntimeError if initfsencoding() was not + called yet: detect bootstrap (startup) issues earlier. + - Issue #11393: Add the new faulthandler module. - Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Windows. diff --git a/Python/sysmodule.c b/Python/sysmodule.c --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -259,8 +259,9 @@ { if (Py_FileSystemDefaultEncoding) return PyUnicode_FromString(Py_FileSystemDefaultEncoding); - Py_INCREF(Py_None); - return Py_None; + PyErr_SetString(PyExc_RuntimeError, + "filesystem encoding is not initialized"); + return NULL; } PyDoc_STRVAR(getfilesystemencoding_doc, -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 17:40:53 2011 From: python-checkins at python.org (r.david.murray) Date: Thu, 31 Mar 2011 17:40:53 +0200 Subject: [Python-checkins] cpython: Only a few files were opened using findfile; consistently don't use it. Message-ID: http://hg.python.org/cpython/rev/8ff88324c9e9 changeset: 69079:8ff88324c9e9 user: R David Murray date: Thu Mar 31 11:40:20 2011 -0400 summary: Only a few files were opened using findfile; consistently don't use it. files: Lib/test/test_email/test_email.py | 16 +++++----------- 1 files changed, 5 insertions(+), 11 deletions(-) diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -36,7 +36,7 @@ from email import base64mime from email import quoprimime -from test.support import findfile, run_unittest, unlink +from test.support import run_unittest, unlink from test.test_email import __file__ as landmark @@ -65,7 +65,7 @@ raise self.failureException(NL + NL.join(diff)) def _msgobj(self, filename): - with openfile(findfile(filename)) as fp: + with openfile(filename) as fp: return email.message_from_file(fp) @@ -194,7 +194,7 @@ def test_message_rfc822_only(self): # Issue 7970: message/rfc822 not in multipart parsed by # HeaderParser caused an exception when flattened. - with openfile(findfile('msg_46.txt')) as fp: + with openfile('msg_46.txt') as fp: msgdata = fp.read() parser = HeaderParser() msg = parser.parsestr(msgdata) @@ -1055,13 +1055,7 @@ # Test the basic MIMEAudio class class TestMIMEAudio(unittest.TestCase): def setUp(self): - # Make sure we pick up the audiotest.au that lives in email/test/data. - # In Python, there's an audiotest.au living in Lib/test but that isn't - # included in some binary distros that don't include the test - # package. The trailing empty string on the .join() is significant - # since findfile() will do a dirname(). - datadir = os.path.join(os.path.dirname(landmark), 'data', '') - with open(findfile('audiotest.au', datadir), 'rb') as fp: + with openfile('audiotest.au', 'rb') as fp: self._audiodata = fp.read() self._au = MIMEAudio(self._audiodata) @@ -4320,7 +4314,7 @@ class TestSigned(TestEmailBase): def _msg_and_obj(self, filename): - with openfile(findfile(filename)) as fp: + with openfile(filename) as fp: original = fp.read() msg = email.message_from_string(original) return original, msg -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 17:49:36 2011 From: python-checkins at python.org (r.david.murray) Date: Thu, 31 Mar 2011 17:49:36 +0200 Subject: [Python-checkins] cpython (merge 2.6 -> 2.7): Dummy merge from 2.6. Message-ID: http://hg.python.org/cpython/rev/5e7fc2a42c3c changeset: 69080:5e7fc2a42c3c branch: 2.7 parent: 69058:f4e6e18cae4b parent: 69056:202078f2856f user: R David Murray date: Thu Mar 31 11:48:31 2011 -0400 summary: Dummy merge from 2.6. files: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 18:16:37 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 31 Mar 2011 18:16:37 +0200 Subject: [Python-checkins] cpython: regrtest.py checks that child process exit code is zero Message-ID: http://hg.python.org/cpython/rev/8472e76f3a5b changeset: 69081:8472e76f3a5b parent: 69079:8ff88324c9e9 user: Victor Stinner date: Thu Mar 31 18:02:36 2011 +0200 summary: regrtest.py checks that child process exit code is zero files: Lib/test/regrtest.py | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -216,6 +216,7 @@ SKIPPED = -2 RESOURCE_DENIED = -3 INTERRUPTED = -4 +CHILD_ERROR = -5 # error in a child process from test import support @@ -579,10 +580,15 @@ universal_newlines=True, close_fds=(os.name != 'nt')) stdout, stderr = popen.communicate() + retcode = popen.wait() # Strip last refcount output line if it exists, since it # comes from the shutdown of the interpreter in the subcommand. stderr = debug_output_pat.sub("", stderr) stdout, _, result = stdout.strip().rpartition("\n") + if retcode != 0: + result = (CHILD_ERROR, "Exit code %s" % retcode) + output.put((test, stdout.rstrip(), stderr.rstrip(), result)) + return if not result: output.put((None, None, None, None)) return @@ -612,6 +618,8 @@ if result[0] == INTERRUPTED: assert result[1] == 'KeyboardInterrupt' raise KeyboardInterrupt # What else? + if result[0] == CHILD_ERROR: + raise Exception(result[1]) accumulate_result(test, result) test_index += 1 except KeyboardInterrupt: -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 18:16:38 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 31 Mar 2011 18:16:38 +0200 Subject: [Python-checkins] cpython: Issue #11727: add --timeout option to regrtest (disabled by default). Message-ID: http://hg.python.org/cpython/rev/bdc946dc512a changeset: 69082:bdc946dc512a user: Victor Stinner date: Thu Mar 31 18:10:13 2011 +0200 summary: Issue #11727: add --timeout option to regrtest (disabled by default). files: Lib/test/regrtest.py | 29 ++++++++++++++++++++--------- Misc/NEWS | 2 ++ 2 files changed, 22 insertions(+), 9 deletions(-) diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -20,6 +20,9 @@ Options: -h/--help -- print this text and exit +--timeout TIMEOUT + -- dump the traceback and exit if a test takes more + than TIMEOUT seconds Verbosity @@ -236,7 +239,7 @@ findleaks=False, use_resources=None, trace=False, coverdir='coverage', runleaks=False, huntrleaks=False, verbose2=False, print_slow=False, random_seed=None, use_mp=None, verbose3=False, forever=False, - header=False): + header=False, timeout=None): """Execute a test suite. This also parses command-line options and modifies its behavior @@ -270,7 +273,7 @@ 'use=', 'threshold=', 'trace', 'coverdir=', 'nocoverdir', 'runleaks', 'huntrleaks=', 'memlimit=', 'randseed=', 'multiprocess=', 'coverage', 'slaveargs=', 'forever', 'debug', - 'start=', 'nowindows', 'header', 'testdir=']) + 'start=', 'nowindows', 'header', 'testdir=', 'timeout=']) except getopt.error as msg: usage(msg) @@ -404,6 +407,8 @@ # CWD is replaced with a temporary dir before calling main(), so we # join it with the saved CWD so it ends up where the user expects. testdir = os.path.join(support.SAVEDCWD, a) + elif o == '--timeout': + timeout = float(a) else: print(("No handler for option {}. Please report this as a bug " "at http://bugs.python.org.").format(o), file=sys.stderr) @@ -559,7 +564,7 @@ args_tuple = ( (test, verbose, quiet), dict(huntrleaks=huntrleaks, use_resources=use_resources, - debug=debug, rerun_failed=verbose3) + debug=debug, rerun_failed=verbose3, timeout=timeout) ) yield (test, args_tuple) pending = tests_and_args() @@ -619,7 +624,7 @@ assert result[1] == 'KeyboardInterrupt' raise KeyboardInterrupt # What else? if result[0] == CHILD_ERROR: - raise Exception(result[1]) + raise Exception("Child error: {}".format(result[1])) accumulate_result(test, result) test_index += 1 except KeyboardInterrupt: @@ -636,12 +641,12 @@ if trace: # If we're tracing code coverage, then we don't exit with status # if on a false return value from main. - tracer.runctx('runtest(test, verbose, quiet)', + tracer.runctx('runtest(test, verbose, quiet, timeout=timeout)', globals=globals(), locals=vars()) else: try: result = runtest(test, verbose, quiet, huntrleaks, debug, - rerun_failed=verbose3) + rerun_failed=verbose3, timeout=timeout) accumulate_result(test, result) except KeyboardInterrupt: interrupted = True @@ -712,7 +717,7 @@ sys.stdout.flush() try: verbose = True - ok = runtest(test, True, quiet, huntrleaks, debug) + ok = runtest(test, True, quiet, huntrleaks, debug, timeout=timeout) except KeyboardInterrupt: # print a newline separate from the ^C print() @@ -788,7 +793,7 @@ def runtest(test, verbose, quiet, huntrleaks=False, debug=False, use_resources=None, - rerun_failed=False): + rerun_failed=False, timeout=None): """Run a single test. test -- the name of the test @@ -798,6 +803,8 @@ huntrleaks -- run multiple times to test for leaks; requires a debug build; a triple corresponding to -R's three arguments rerun_failed -- if true, re-run in verbose mode when failed + timeout -- dump the traceback and exit if a test takes more than + timeout seconds Returns one of the test result constants: INTERRUPTED KeyboardInterrupt when run under -j @@ -811,6 +818,8 @@ support.verbose = verbose # Tell tests to be moderately quiet if use_resources is not None: support.use_resources = use_resources + if timeout is not None and timeout > 0: + faulthandler.dump_tracebacks_later(timeout, exit=True) try: result = runtest_inner(test, verbose, quiet, huntrleaks, debug) if result[0] == FAILED and rerun_failed: @@ -818,9 +827,11 @@ sys.stdout.flush() sys.stderr.flush() print("Re-running test {} in verbose mode".format(test)) - runtest(test, True, quiet, huntrleaks, debug) + runtest(test, True, quiet, huntrleaks, debug, timeout=timeout) return result finally: + if timeout and 0 < timeout: + faulthandler.cancel_dump_tracebacks_later() cleanup_test_droppings(test, verbose) # Unit tests are supposed to leave the execution environment unchanged diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -361,6 +361,8 @@ Tests ----- +- Issue #11727: add --timeout option to regrtest (disabled by default). + - Issue #11653: fix -W with -j in regrtest. - The email test suite now lives in the Lib/test/test_email package. The test -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 18:16:41 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 31 Mar 2011 18:16:41 +0200 Subject: [Python-checkins] cpython: Issue #11393: check that stdout is empty if we use a file Message-ID: http://hg.python.org/cpython/rev/e91de993964c changeset: 69083:e91de993964c user: Victor Stinner date: Thu Mar 31 18:15:52 2011 +0200 summary: Issue #11393: check that stdout is empty if we use a file files: Lib/test/test_faulthandler.py | 11 ++++++++--- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py --- a/Lib/test/test_faulthandler.py +++ b/Lib/test/test_faulthandler.py @@ -53,12 +53,13 @@ process = script_helper.spawn_python('-c', code, **options) stdout, stderr = process.communicate() exitcode = process.wait() + output = support.strip_python_stderr(stdout) + output = output.decode('ascii', 'backslashreplace') if filename: + self.assertEqual(output, '') with open(filename, "rb") as fp: output = fp.read() - else: - output = support.strip_python_stderr(stdout) - output = output.decode('ascii', 'backslashreplace') + output = output.decode('ascii', 'backslashreplace') output = re.sub('Current thread 0x[0-9a-f]+', 'Current thread XXX', output) @@ -262,6 +263,8 @@ def test_dump_traceback(self): self.check_dump_traceback(None) + + def test_dump_traceback_file(self): with temporary_filename() as filename: self.check_dump_traceback(filename) @@ -327,6 +330,8 @@ def test_dump_traceback_threads(self): self.check_dump_traceback_threads(None) + + def test_dump_traceback_threads_file(self): with temporary_filename() as filename: self.check_dump_traceback_threads(filename) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 18:20:39 2011 From: python-checkins at python.org (r.david.murray) Date: Thu, 31 Mar 2011 18:20:39 +0200 Subject: [Python-checkins] cpython: Move infrastructure into __init__ to lay groundwork for splitting test_email. Message-ID: http://hg.python.org/cpython/rev/976a07bdcd64 changeset: 69084:976a07bdcd64 user: R David Murray date: Thu Mar 31 12:20:23 2011 -0400 summary: Move infrastructure into __init__ to lay groundwork for splitting test_email. The split probably won't happen for a while, but I might as well lay the groundwork now since I'll be adding new test modules before too long. files: Lib/test/test_email/__init__.py | 27 ++++++++++++++++++ Lib/test/test_email/test_email.py | 28 +------------------ 2 files changed, 28 insertions(+), 27 deletions(-) diff --git a/Lib/test/test_email/__init__.py b/Lib/test/test_email/__init__.py --- a/Lib/test/test_email/__init__.py +++ b/Lib/test/test_email/__init__.py @@ -2,6 +2,8 @@ import sys import unittest import test.support +import email +from test.test_email import __file__ as landmark # used by regrtest and __main__. def test_main(): @@ -11,3 +13,28 @@ savepath = sys.path[:] test.support._run_suite(unittest.defaultTestLoader.discover(here)) sys.path[:] = savepath + + +# helper code used by a number of test modules. + +def openfile(filename, *args, **kws): + path = os.path.join(os.path.dirname(landmark), 'data', filename) + return open(path, *args, **kws) + + +# Base test class +class TestEmailBase(unittest.TestCase): + + def ndiffAssertEqual(self, first, second): + """Like assertEqual except use ndiff for readable output.""" + if first != second: + sfirst = str(first) + ssecond = str(second) + rfirst = [repr(line) for line in sfirst.splitlines()] + rsecond = [repr(line) for line in ssecond.splitlines()] + diff = difflib.ndiff(rfirst, rsecond) + raise self.failureException(NL + NL.join(diff)) + + def _msgobj(self, filename): + with openfile(filename) as fp: + return email.message_from_file(fp) diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -37,39 +37,13 @@ from email import quoprimime from test.support import run_unittest, unlink -from test.test_email import __file__ as landmark - +from test.test_email import openfile, TestEmailBase NL = '\n' EMPTYSTRING = '' SPACE = ' ' - -def openfile(filename, *args, **kws): - path = os.path.join(os.path.dirname(landmark), 'data', filename) - return open(path, *args, **kws) - - - -# Base test class -class TestEmailBase(unittest.TestCase): - def ndiffAssertEqual(self, first, second): - """Like assertEqual except use ndiff for readable output.""" - if first != second: - sfirst = str(first) - ssecond = str(second) - rfirst = [repr(line) for line in sfirst.splitlines()] - rsecond = [repr(line) for line in ssecond.splitlines()] - diff = difflib.ndiff(rfirst, rsecond) - raise self.failureException(NL + NL.join(diff)) - - def _msgobj(self, filename): - with openfile(filename) as fp: - return email.message_from_file(fp) - - - # Test various aspects of the Message class's API class TestMessageAPI(TestEmailBase): def test_get_all(self): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 18:28:25 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 31 Mar 2011 18:28:25 +0200 Subject: [Python-checkins] cpython: Issue #11727: Antoine and Arfrever don't like "0 < timeout" style (regrtest.py) Message-ID: http://hg.python.org/cpython/rev/0f3dbf93ac06 changeset: 69085:0f3dbf93ac06 user: Victor Stinner date: Thu Mar 31 18:27:50 2011 +0200 summary: Issue #11727: Antoine and Arfrever don't like "0 < timeout" style (regrtest.py) files: Lib/test/regrtest.py | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -818,7 +818,8 @@ support.verbose = verbose # Tell tests to be moderately quiet if use_resources is not None: support.use_resources = use_resources - if timeout is not None and timeout > 0: + use_timeout = (timeout is not None and timeout > 0) + if use_timeout: faulthandler.dump_tracebacks_later(timeout, exit=True) try: result = runtest_inner(test, verbose, quiet, huntrleaks, debug) @@ -830,7 +831,7 @@ runtest(test, True, quiet, huntrleaks, debug, timeout=timeout) return result finally: - if timeout and 0 < timeout: + if use_timeout: faulthandler.cancel_dump_tracebacks_later() cleanup_test_droppings(test, verbose) -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 18:45:04 2011 From: python-checkins at python.org (martin.v.loewis) Date: Thu, 31 Mar 2011 18:45:04 +0200 (CEST) Subject: [Python-checkins] r88810 - in tracker/instances/python-dev/html: issue.item.html issue.item.js Message-ID: <3Q0sC42C8vz7Ljh@mail.python.org> Author: martin.v.loewis Date: Thu Mar 31 18:45:03 2011 New Revision: 88810 Log: Revert form folding. Modified: tracker/instances/python-dev/html/issue.item.html tracker/instances/python-dev/html/issue.item.js Modified: tracker/instances/python-dev/html/issue.item.html ============================================================================== --- tracker/instances/python-dev/html/issue.item.html (original) +++ tracker/instances/python-dev/html/issue.item.html Thu Mar 31 18:45:03 2011 @@ -27,7 +27,7 @@ replace="context/id" i18n:name="id" /> Editing -
    +

    @@ -38,22 +38,12 @@ Please login with your username and password.

    - -
    classification +
    classification
    @@ -95,7 +85,7 @@
    process - +
    -
    - + Modified: tracker/instances/python-dev/html/issue.item.js ============================================================================== --- tracker/instances/python-dev/html/issue.item.js (original) +++ tracker/instances/python-dev/html/issue.item.js Thu Mar 31 18:45:03 2011 @@ -1,11 +1,4 @@ window.onload = function () { - var condensed = document.getElementById("condensed"); - if(condensed) { - condensed.style.display = "block"; - document.getElementById("classification").style.display="none"; - document.getElementById("processfields").style.display="none"; - } - // create the input button and use it to replace the span/placeholder -- // users without javascript won't notice anything. // This might eventually be replaced by jquery @@ -48,10 +41,3 @@ nosy.style.display = 'inline'; nosy.style.width = new_width + "px"; } - -function unfold() { - document.getElementById("condensed").style.display = "none"; - document.getElementById("classification").style.display = "block"; - document.getElementById("processfields").style.display = "block"; - -} From python-checkins at python.org Thu Mar 31 19:08:15 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 31 Mar 2011 19:08:15 +0200 Subject: [Python-checkins] cpython: Issue #11393: get more information on assertion error (test_faulthandler) Message-ID: http://hg.python.org/cpython/rev/61626c3f3a54 changeset: 69086:61626c3f3a54 user: Victor Stinner date: Thu Mar 31 19:07:58 2011 +0200 summary: Issue #11393: get more information on assertion error (test_faulthandler) files: Lib/test/test_faulthandler.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py --- a/Lib/test/test_faulthandler.py +++ b/Lib/test/test_faulthandler.py @@ -354,7 +354,7 @@ faulthandler.cancel_dump_tracebacks_later() b = time.time() # Check that sleep() was not interrupted - assert (b -a) >= pause + assert (b - a) >= pause, "{{}} < {{}}".format(b - a, pause) if cancel: pause = timeout * 1.5 @@ -362,7 +362,7 @@ time.sleep(pause) b = time.time() # Check that sleep() was not interrupted - assert (b -a) >= pause + assert (b - a) >= pause, "{{}} < {{}}".format(b - a, pause) timeout = 0.5 repeat = {repeat} -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 19:13:31 2011 From: python-checkins at python.org (r.david.murray) Date: Thu, 31 Mar 2011 19:13:31 +0200 Subject: [Python-checkins] cpython: Move assertBytesEqual to base test class, improve it, and hook into assertEqual Message-ID: http://hg.python.org/cpython/rev/d9a1a2eb3069 changeset: 69087:d9a1a2eb3069 user: R David Murray date: Thu Mar 31 13:11:40 2011 -0400 summary: Move assertBytesEqual to base test class, improve it, and hook into assertEqual files: Lib/test/test_email/__init__.py | 11 +++++++++++ Lib/test/test_email/test_email.py | 7 +------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Lib/test/test_email/__init__.py b/Lib/test/test_email/__init__.py --- a/Lib/test/test_email/__init__.py +++ b/Lib/test/test_email/__init__.py @@ -25,6 +25,10 @@ # Base test class class TestEmailBase(unittest.TestCase): + def __init__(self, *args, **kw): + super().__init__(*args, **kw) + self.addTypeEqualityFunc(bytes, self.assertBytesEqual) + def ndiffAssertEqual(self, first, second): """Like assertEqual except use ndiff for readable output.""" if first != second: @@ -38,3 +42,10 @@ def _msgobj(self, filename): with openfile(filename) as fp: return email.message_from_file(fp) + + def _bytes_repr(self, b): + return [repr(x) for x in b.splitlines(True)] + + def assertBytesEqual(self, first, second, msg): + """Our byte strings are really encoded strings; improve diff output""" + self.assertEqual(self._bytes_repr(first), self._bytes_repr(second)) diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -3161,12 +3161,7 @@ b = BytesIO() g = email.generator.BytesGenerator(b, maxheaderlen=0) g.flatten(msg, unixfrom=unixfrom, linesep=self.linesep) - self.assertByteStringsEqual(data, b.getvalue()) - - def assertByteStringsEqual(self, str1, str2): - # Not using self.blinesep here is intentional. This way the output - # is more useful when the failure results in mixed line endings. - self.assertListEqual(str1.split(b'\n'), str2.split(b'\n')) + self.assertEqual(data, b.getvalue()) class TestBytesGeneratorIdempotentNL(BaseTestBytesGeneratorIdempotent, -- Repository URL: http://hg.python.org/cpython From tjreedy at udel.edu Thu Mar 31 19:35:44 2011 From: tjreedy at udel.edu (Terry Reedy) Date: Thu, 31 Mar 2011 13:35:44 -0400 Subject: [Python-checkins] cpython: Issue #11393: get more information on assertion error (test_faulthandler) In-Reply-To: References: Message-ID: <4D94BB70.1040608@udel.edu> On 3/31/2011 1:08 PM, victor.stinner wrote: > http://hg.python.org/cpython/rev/61626c3f3a54 > changeset: 69086:61626c3f3a54 > user: Victor Stinner > date: Thu Mar 31 19:07:58 2011 +0200 > summary: > Issue #11393: get more information on assertion error (test_faulthandler) > > files: > Lib/test/test_faulthandler.py | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > > diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py > --- a/Lib/test/test_faulthandler.py > +++ b/Lib/test/test_faulthandler.py > @@ -354,7 +354,7 @@ > faulthandler.cancel_dump_tracebacks_later() > b = time.time() > # Check that sleep() was not interrupted > - assert (b -a)>= pause > + assert (b - a)>= pause, "{{}}< {{}}".format(b - a, pause) > + assert (b - a)>= pause, "{{}}< {{}}".format(b - a, pause) >>> a,b,pause = 0,0,1 >>> "{{}} < {{}}".format(b - a, pause) '{} < {}' I suspect you want 1 or 3 braces. Terry From python-checkins at python.org Thu Mar 31 21:07:16 2011 From: python-checkins at python.org (raymond.hettinger) Date: Thu, 31 Mar 2011 21:07:16 +0200 Subject: [Python-checkins] cpython (3.2): Add links to make the math docs more usable. Message-ID: http://hg.python.org/cpython/rev/69c91ee0b7dd changeset: 69088:69c91ee0b7dd branch: 3.2 parent: 69077:a00b9a5688da user: Raymond Hettinger date: Thu Mar 31 12:04:53 2011 -0700 summary: Add links to make the math docs more usable. files: Doc/library/math.rst | 30 +++++++++++++++++++++++------- 1 files changed, 23 insertions(+), 7 deletions(-) diff --git a/Doc/library/math.rst b/Doc/library/math.rst --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -156,10 +156,10 @@ .. function:: expm1(x) - Return ``e**x - 1``. For small floats *x*, the subtraction in - ``exp(x) - 1`` can result in a significant loss of precision; the - :func:`expm1` function provides a way to compute this quantity to - full precision:: + Return ``e**x - 1``. For small floats *x*, the subtraction in ``exp(x) - 1`` + can result in a `significant loss of precision + `_\; the :func:`expm1` + function provides a way to compute this quantity to full precision:: >>> from math import exp, expm1 >>> exp(1e-5) - 1 # gives result accurate to 11 places @@ -269,6 +269,9 @@ Hyperbolic functions -------------------- +`Hyperbolic functions `_ +are analogs of trigonometric functions that are based on hyperbolas +instead of circles. .. function:: acosh(x) @@ -305,21 +308,34 @@ .. function:: erf(x) - Return the error function at *x*. + Return the `error function `_ at + *x*. + + The :func:`erf` function can be used to compute traditional statistical + functions such as the `cumulative standard normal distribution + `_:: + + def phi(x): + 'Cumulative distribution function for the standard normal distribution' + return (1.0 + erf(x / sqrt(2.0))) / 2.0 .. versionadded:: 3.2 .. function:: erfc(x) - Return the complementary error function at *x*. + Return the complementary error function at *x*. The `complementary error + function `_ is defined as + ``1.0 - erf(x)``. It is used for large values of *x* where a straight + substraction from *1* would cause a `loss of significance + `_\. .. versionadded:: 3.2 .. function:: gamma(x) - Return the Gamma function at *x*. + Return the `Gamma function` at *x*. .. versionadded:: 3.2 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 21:07:17 2011 From: python-checkins at python.org (raymond.hettinger) Date: Thu, 31 Mar 2011 21:07:17 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): Add links to make the math docs more usable. Message-ID: http://hg.python.org/cpython/rev/992ca4fdaf17 changeset: 69089:992ca4fdaf17 parent: 69087:d9a1a2eb3069 parent: 69088:69c91ee0b7dd user: Raymond Hettinger date: Thu Mar 31 12:06:47 2011 -0700 summary: Add links to make the math docs more usable. files: Doc/library/math.rst | 30 +++++++++++++++++++++++------- 1 files changed, 23 insertions(+), 7 deletions(-) diff --git a/Doc/library/math.rst b/Doc/library/math.rst --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -156,10 +156,10 @@ .. function:: expm1(x) - Return ``e**x - 1``. For small floats *x*, the subtraction in - ``exp(x) - 1`` can result in a significant loss of precision; the - :func:`expm1` function provides a way to compute this quantity to - full precision:: + Return ``e**x - 1``. For small floats *x*, the subtraction in ``exp(x) - 1`` + can result in a `significant loss of precision + `_\; the :func:`expm1` + function provides a way to compute this quantity to full precision:: >>> from math import exp, expm1 >>> exp(1e-5) - 1 # gives result accurate to 11 places @@ -269,6 +269,9 @@ Hyperbolic functions -------------------- +`Hyperbolic functions `_ +are analogs of trigonometric functions that are based on hyperbolas +instead of circles. .. function:: acosh(x) @@ -305,21 +308,34 @@ .. function:: erf(x) - Return the error function at *x*. + Return the `error function `_ at + *x*. + + The :func:`erf` function can be used to compute traditional statistical + functions such as the `cumulative standard normal distribution + `_:: + + def phi(x): + 'Cumulative distribution function for the standard normal distribution' + return (1.0 + erf(x / sqrt(2.0))) / 2.0 .. versionadded:: 3.2 .. function:: erfc(x) - Return the complementary error function at *x*. + Return the complementary error function at *x*. The `complementary error + function `_ is defined as + ``1.0 - erf(x)``. It is used for large values of *x* where a straight + substraction from *1* would cause a `loss of significance + `_\. .. versionadded:: 3.2 .. function:: gamma(x) - Return the Gamma function at *x*. + Return the `Gamma function` at *x*. .. versionadded:: 3.2 -- Repository URL: http://hg.python.org/cpython From ezio.melotti at gmail.com Thu Mar 31 21:14:48 2011 From: ezio.melotti at gmail.com (Ezio Melotti) Date: Thu, 31 Mar 2011 22:14:48 +0300 Subject: [Python-checkins] cpython (3.2): Add links to make the math docs more usable. In-Reply-To: References: Message-ID: <4D94D2A8.3000405@gmail.com> An HTML attachment was scrubbed... URL: From python-checkins at python.org Thu Mar 31 22:36:34 2011 From: python-checkins at python.org (victor.stinner) Date: Thu, 31 Mar 2011 22:36:34 +0200 Subject: [Python-checkins] cpython: Issue #11393: test_faulthandler is more tolerant on inaccurate time Message-ID: http://hg.python.org/cpython/rev/69f58be4688a changeset: 69090:69f58be4688a user: Victor Stinner date: Thu Mar 31 22:35:49 2011 +0200 summary: Issue #11393: test_faulthandler is more tolerant on inaccurate time files: Lib/test/test_faulthandler.py | 17 ++++++++++------- 1 files changed, 10 insertions(+), 7 deletions(-) diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py --- a/Lib/test/test_faulthandler.py +++ b/Lib/test/test_faulthandler.py @@ -22,8 +22,8 @@ def expected_traceback(lineno1, lineno2, header, count=1): regex = header - regex += r' File "\", line %s in func\n' % lineno1 - regex += r' File "\", line %s in \' % lineno2 + regex += ' File "", line %s in func\n' % lineno1 + regex += ' File "", line %s in ' % lineno2 if count != 1: regex = (regex + '\n') * (count - 1) + regex return '^' + regex + '$' @@ -349,20 +349,23 @@ def func(repeat, cancel, timeout): pause = timeout * 2.5 + # on Windows XP, b-a gives 1.249931 after sleep(1.25) + min_pause = pause * 0.9 a = time.time() time.sleep(pause) faulthandler.cancel_dump_tracebacks_later() b = time.time() # Check that sleep() was not interrupted - assert (b - a) >= pause, "{{}} < {{}}".format(b - a, pause) + assert (b - a) >= min_pause, "{{}} < {{}}".format(b - a, min_pause) if cancel: pause = timeout * 1.5 + min_pause = pause * 0.9 a = time.time() time.sleep(pause) b = time.time() # Check that sleep() was not interrupted - assert (b - a) >= pause, "{{}} < {{}}".format(b - a, pause) + assert (b - a) >= min_pause, "{{}} < {{}}".format(b - a, min_pause) timeout = 0.5 repeat = {repeat} @@ -391,8 +394,8 @@ else: count = 1 header = 'Thread 0x[0-9a-f]+:\n' - regex = expected_traceback(7, 30, header, count=count) - self.assertRegex(trace, '^%s$' % regex) + regex = expected_traceback(9, 33, header, count=count) + self.assertRegex(trace, regex) self.assertEqual(exitcode, 0) @unittest.skipIf(not hasattr(faulthandler, 'dump_tracebacks_later'), @@ -456,7 +459,7 @@ else: regex = 'Traceback \(most recent call first\):\n' regex = expected_traceback(6, 14, regex) - self.assertRegex(trace, '^%s$' % regex) + self.assertRegex(trace, regex) self.assertEqual(exitcode, 0) def test_register(self): -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 23:00:16 2011 From: python-checkins at python.org (raymond.hettinger) Date: Thu, 31 Mar 2011 23:00:16 +0200 Subject: [Python-checkins] cpython (3.2): Fix markup and wording. Message-ID: http://hg.python.org/cpython/rev/9797bfe8240f changeset: 69091:9797bfe8240f branch: 3.2 parent: 69088:69c91ee0b7dd user: Raymond Hettinger date: Thu Mar 31 13:59:24 2011 -0700 summary: Fix markup and wording. files: Doc/library/math.rst | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Doc/library/math.rst b/Doc/library/math.rst --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -326,8 +326,8 @@ Return the complementary error function at *x*. The `complementary error function `_ is defined as - ``1.0 - erf(x)``. It is used for large values of *x* where a straight - substraction from *1* would cause a `loss of significance + ``1.0 - erf(x)``. It is used for large values of *x* where a subtraction + from one would cause a `loss of significance `_\. .. versionadded:: 3.2 @@ -335,7 +335,8 @@ .. function:: gamma(x) - Return the `Gamma function` at *x*. + Return the `Gamma function `_ at + *x*. .. versionadded:: 3.2 -- Repository URL: http://hg.python.org/cpython From python-checkins at python.org Thu Mar 31 23:00:18 2011 From: python-checkins at python.org (raymond.hettinger) Date: Thu, 31 Mar 2011 23:00:18 +0200 Subject: [Python-checkins] cpython (merge 3.2 -> default): Fix markup and wording. Message-ID: http://hg.python.org/cpython/rev/3e191db416a6 changeset: 69092:3e191db416a6 parent: 69090:69f58be4688a parent: 69091:9797bfe8240f user: Raymond Hettinger date: Thu Mar 31 13:59:52 2011 -0700 summary: Fix markup and wording. files: Doc/library/math.rst | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Doc/library/math.rst b/Doc/library/math.rst --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -326,8 +326,8 @@ Return the complementary error function at *x*. The `complementary error function `_ is defined as - ``1.0 - erf(x)``. It is used for large values of *x* where a straight - substraction from *1* would cause a `loss of significance + ``1.0 - erf(x)``. It is used for large values of *x* where a subtraction + from one would cause a `loss of significance `_\. .. versionadded:: 3.2 @@ -335,7 +335,8 @@ .. function:: gamma(x) - Return the `Gamma function` at *x*. + Return the `Gamma function `_ at + *x*. .. versionadded:: 3.2 -- Repository URL: http://hg.python.org/cpython
    File: @@ -358,6 +347,6 @@ - +